@charset "UTF-8";
/*
Theme Name: Twenty First
Theme URI: http://underscores.me/
Author: Michael Suen
Author URI: http://whoismichaelsuen.com/
Description: The Wordpress theme for the educational consultancy, 21st Century Learning International.
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: twentyfirst
Tags:

This theme, like WordPress, is licensed under the GPL.
Use it to make something cool, have fun, and share what you've learned with others.

21st Century Learning is based on Underscores http://underscores.me/, (C) 2012-2015 Automattic, Inc.
Underscores is distributed under the terms of the GNU GPL v2 or later.

Normalizing styles have been helped along thanks to the fine work of
Nicolas Gallagher and Jonathan Neal http://necolas.github.com/normalize.css/
*/
/*--------------------------------------------------------------
>>> TABLE OF CONTENTS:
----------------------------------------------------------------
# Normalize
# Typography
# Elements
# Forms
# Navigation
	## Links
	## Menus
# Accessibility
# Alignments
# Clearings
# Widgets
# Content
    ## Posts and pages
	## Asides
	## Comments
# Infinite scroll
# Media
	## Captions
	## Galleries
# Theme Specific Styles
--------------------------------------------------------------*/
/*--------------------------------------------------------------
# Normalize
--------------------------------------------------------------*/
html, body {
    margin: 0px;
    padding: 0px;
    outline: none;
    border: 0px;
    overflow-x: hidden;
    width: 100%;
}

/*--------------------------------------------------------------
# Typography
--------------------------------------------------------------*/
.wf-loading {
    visibility: hidden;
}

.wf-active, .wf-inactive {
    visibility: visible;
}

/*--------------------------------------------------------------
# Elements
--------------------------------------------------------------*/
/*--------------------------------------------------------------
# Forms
--------------------------------------------------------------*/
#applyModal .module__text, #recommendModal .module__text {
    padding: 0;
}

@media only screen and (min-width: 768px) {
    .frm_form_field input {
        margin: 0 10px 0 0;
    }
}

.frm_form_fields fieldset {
    border: none;
}

.frm_form_field input[type="text"], .frm_form_field input[type="email"], .frm_form_field input[type="url"], .frm_form_field textarea {
    border: none;
    border-radius: 0;
    background-color: transparent;
    border-bottom: #ccc solid 4px;
    padding: 0 0 5px 0;
    margin-bottom: 0;
}

@media only screen and (min-width: 768px) {
    .frm_form_field input[type="text"], .frm_form_field input[type="email"], .frm_form_field input[type="url"], .frm_form_field textarea {
        margin-bottom: -5px;
    }
}

.frm_form_field input[type="text"]:focus, .frm_form_field input[type="email"]:focus, .frm_form_field input[type="url"]:focus, .frm_form_field textarea:focus {
    border-bottom: #F1CA0A solid 4px;
}

.frm_form_field input[type="text"]:focus + .frm_primary_label, .frm_form_field input[type="email"]:focus + .frm_primary_label, .frm_form_field input[type="url"]:focus + .frm_primary_label, .frm_form_field textarea:focus + .frm_primary_label {
    color: #3d3d3d;
}

.highlightsection { background-color: #f9f9f9; padding: 10px; }


.frm_form_field input[type="file"] {
    font-size: 12px;
    font-weight: bold;
    border: none;
    padding: 0;
}

.frm_form_field input[type="file"]:focus {
    color: #E2AA09;
}

.frm_form_field textarea:focus, .frm_form_field textarea:active {
    padding: 10px;
    font-size: 0.875em;
}

.frm_submit input[type="submit"] {
    float: right;
}

.frm_submit input[type="submit"]:focus, .frm_submit input[type="submit"]:active {
    background-color: #FFE800;
    color: #000;
    width: 250px;
    border: none;
}

.frm_form_field {
    margin-bottom: 20px;
}

.frm_description {
    font-size: 16px;
    font-style: italic;
    color: #999;
}

.frm_primary_label {
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 1px;
    font-weight: bold;
    color: #999;
}

.frm_question {
    text-transform: none;
    letter-spacing: 0px;
    font-size: 1em;
    display: block;
    color: #3d3d3d;
}

.frm_radio input[type=radio] {
    width: auto;
    margin: 0 10px 0 0;
    display: inline-block;
}

div h3:first-child.frm_section_spacing, .frm_section_spacing {
    margin: 20px 0 20px 0;
}

/*--------------------------------------------------------------
# Navigation
--------------------------------------------------------------*/
/*--------------------------------------------------------------
## Links
--------------------------------------------------------------*/
/*--------------------------------------------------------------
## Menus
--------------------------------------------------------------*/
/* Small menu. */
.menu-toggle,
.main-navigation.toggled ul {
    display: block;
}

ul#menu-mobile {
    list-style-type: none;
}

ul#menu-mobile li:first-of-type {
    padding: 15px;
}

@media screen and (min-width: 37.5em) {
    .menu-toggle {
        display: none;
    }

    .main-navigation ul {
        display: block;
    }
}

.site-main .comment-navigation,
.site-main .posts-navigation,
.site-main .post-navigation {
    margin: 0 0 1.5em;
    overflow: hidden;
}

.comment-navigation .nav-previous,
.posts-navigation .nav-previous,
.post-navigation .nav-previous {
    float: left;
    width: 50%;
}

.comment-navigation .nav-next,
.posts-navigation .nav-next,
.post-navigation .nav-next {
    float: right;
    text-align: right;
    width: 50%;
}

/*--------------------------------------------------------------
# Accessibility
--------------------------------------------------------------*/
/* Text meant only for screen readers. */
.screen-reader-text {
    clip: rect(1px, 1px, 1px, 1px);
    position: absolute !important;
    height: 1px;
    width: 1px;
    overflow: hidden;
}

.screen-reader-text:focus {
    background-color: #f1f1f1;
    border-radius: 3px;
    box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
    clip: auto !important;
    color: #21759b;
    display: block;
    font-size: 14px;
    font-size: 0.875rem;
    font-weight: bold;
    height: auto;
    left: 5px;
    line-height: normal;
    padding: 15px 23px 14px;
    text-decoration: none;
    top: 5px;
    width: auto;
    z-index: 100000;
    /* Above WP toolbar. */
}

/*--------------------------------------------------------------
# Alignments
--------------------------------------------------------------*/
/*--------------------------------------------------------------
# Clearings
--------------------------------------------------------------*/
.clear:before,
.clear:after,
.entry-content:before,
.entry-content:after,
.comment-content:before,
.comment-content:after,
.site-header:before,
.site-header:after,
.site-content:before,
.site-content:after,
.site-footer:before,
.site-footer:after {
    content: "";
    display: table;
}

.clear:after,
.entry-content:after,
.comment-content:after,
.site-header:after,
.site-content:after,
.site-footer:after {
    clear: both;
}

/*--------------------------------------------------------------
# Widgets
--------------------------------------------------------------*/
.widget {
    margin: 0 0 1.5em;
}

/* Make sure select elements fit in widgets. */
.widget select {
    max-width: 100%;
}

/* Search widget. */
.widget_search .search-submit {
    display: none;
}

/*--------------------------------------------------------------
# Content
--------------------------------------------------------------*/
/*--------------------------------------------------------------
## Posts and pages
--------------------------------------------------------------*/
.sticky {
    display: block;
}

.hentry {
    margin: 0;
}

.byline,
.updated:not(.published) {
    display: none;
}

.single .byline,
.group-blog .byline {
    display: inline;
}

.page-content,
.entry-content,
.entry-summary {
    margin: 1.5em 0 0;
}

.page-links {
    clear: both;
    margin: 0 0 1.5em;
}

/*--------------------------------------------------------------
## Asides
--------------------------------------------------------------*/
.blog .format-aside .entry-title,
.archive .format-aside .entry-title {
    display: none;
}

/*--------------------------------------------------------------
## Comments
--------------------------------------------------------------*/
.comment-content a {
    word-wrap: break-word;
}

.bypostauthor {
    display: block;
}

#disqus_thread {
    margin-bottom: 60px;
}

/*--------------------------------------------------------------
# Media
--------------------------------------------------------------*/
.page-content .wp-smiley,
.entry-content .wp-smiley,
.comment-content .wp-smiley {
    border: none;
    margin-bottom: 0;
    margin-top: 0;
    padding: 0;
}

/* Make sure embeds and iframes fit their containers. */
embed,
iframe,
object {
    max-width: 100%;
}

.embed-container {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    max-width: 100%;
}

.embed-container iframe, .embed-container object, .embed-container embed {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/*--------------------------------------------------------------
## Captions
--------------------------------------------------------------*/
.wp-caption {
    margin-bottom: 1.5em;
    max-width: 100%;
}

.wp-caption img[class*="wp-image-"] {
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.wp-caption .wp-caption-text {
    margin: 0.8075em 0;
}

.wp-caption-text {
    text-align: center;
}

/*--------------------------------------------------------------
## Galleries
--------------------------------------------------------------*/
.gallery {
    margin-bottom: 1.5em;
}

.gallery-item {
    display: inline-block;
    text-align: center;
    vertical-align: top;
    width: 100%;
}

.gallery-columns-2 .gallery-item {
    max-width: 50%;
}

.gallery-columns-3 .gallery-item {
    max-width: 33.33%;
}

.gallery-columns-4 .gallery-item {
    max-width: 25%;
}

.gallery-columns-5 .gallery-item {
    max-width: 20%;
}

.gallery-columns-6 .gallery-item {
    max-width: 16.66%;
}

.gallery-columns-7 .gallery-item {
    max-width: 14.28%;
}

.gallery-columns-8 .gallery-item {
    max-width: 12.5%;
}

.gallery-columns-9 .gallery-item {
    max-width: 11.11%;
}

.gallery-caption {
    display: block;
}

/*------------------------------------- -------------------------
# Theme Specific Styles
--------------------------------------------------------------*/
/** GENERAL STYLES **/
html {
    box-sizing: border-box;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
}

body {
    width: 100%;
    height: 100%;
    color: #3d3d3d;
    background-color: #1f1f1f;
    min-height: 100%;
    min-height: 100vh;
    font-size: 24px;
}

.logged-in .menu--desktop {
    top: 32px;
}

*, *:before, *:after {
    box-sizing: inherit;
}

html {
    font-size: 1em;
}

h1, h2, h3, h4, h5 {
    margin-top: 0;
}

h1 {
    font-size: 3.5em;
    line-height: 1;
}

h2 {
    font-size: 2.75em;
    line-height: 1.2;
}

h3 {
    font-size: 1.75em;
    line-height: 1.25;
}

h4 {
    font-size: 1.4em;
    line-height: 1.3;
}

h5 {
    font-size: 1.25em;
    line-height: 1.3;
}

::-webkit-scrollbar {
    display: none;
}

blockquote {
    margin: 0;
}

blockquote.testimonial {
    border-left: 4px solid #F1CA0A;
    padding-left: 20px;
    margin: 0 0 20px 0;
}

blockquote.testimonial p {
    color: #E2AA09;
}

html, body, button, input, select, textarea,
.pure-g [class*="pure-u"] {
    font-family: 'brandon-grotesque', Helvetica, Arial, sans-serif !important;
}

div[role=main] {
    background-color: #f5f5f5;
}

.single div[role=main] {
    background-color: #fff;
}

a {
    color: #E2AA09;
}

a:hover {
    color: #F1CA0A;
}

a.social {
    margin-right: 10px;
    color: rgba(0, 0, 0, 0.3);
}

a.social:hover {
    color: rgba(0, 0, 0, 0.5);
}

a.social:last-child {
    margin: 0;
}

img.size-full {
    max-width: 100%;
    height: auto;
}

#twitter-share-button {
    width: 160px;
    height: 30px;
    background: url(twitter-follow-button.png) no-repeat;
}

#twitter-share-button * {
    opacity: 0;
    filter: alpha(opacity=0);
    /* IE 8 fix */
}

ul {
    font-size: 1em;
    padding-left: 20px;
}

ul.alm-listing {
    padding-left: 0;
}

input, textarea {
    display: block;
    padding: 10px 20px;
    width: 100%;
    -webkit-border-radius: 40px;
    -moz-border-radius: 40px;
    border-radius: 40px;
    border: none;
    outline: none;
    border: 4px #ffffff solid;
    color: #3d3d3d;
    margin-bottom: 15px;
    -webkit-transition: ease-in-out 0.3s all;
    -moz-transition: ease-in-out 0.3 all;
    -o-transition: ease-in-out 0.3s all;
    transition: ease-in-out 0.3s all;
}

input:focus, input:active, textarea:focus, textarea:active {
    width: 100%;
    border: 4px #F1CA0A solid;
}

textarea {
    height: 3em;
}

textarea:focus, textarea:active {
    height: 150px;
    -webkit-transition: ease-in-out 0.3s all;
    -moz-transition: ease-in-out 0.3 all;
    -o-transition: ease-in-out 0.3s all;
    transition: ease-in-out 0.3s all;
}

div h3:first-child, div h4:first-child, .lead:first-child {
    margin-top: 0;
}

div p:last-child {
    margin-bottom: 0;
}

/**
 * Tooltip Styles
 */
/* Add this attribute to the element that needs a tooltip */
[data-tooltip] {
    position: relative;
    z-index: 99;
    cursor: pointer;
}

/* Hide the tooltip content by default */
[data-tooltip]:before,
[data-tooltip]:after {
    visibility: hidden;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    opacity: 0;
    pointer-events: none;
}

/* Position tooltip above the element */
[data-tooltip]:before {
    position: absolute;
    bottom: 110%;
    left: 50%;
    margin-bottom: 5px;
    margin-left: -80px;
    padding: 7px;
    width: 130px;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px;
    background-color: #000;
    background-color: rgba(51, 51, 51, 0.9);
    color: #fff;
    content: attr(data-tooltip);
    text-align: center;
    font-size: 14px;
    line-height: 1.2;
}

/* Triangle hack to make tooltip look like a speech bubble */
[data-tooltip]:after {
    position: absolute;
    bottom: 110%;
    left: 50%;
    margin-left: -5px;
    width: 0;
    border-top: 5px solid #000;
    border-top: 5px solid rgba(51, 51, 51, 0.9);
    border-right: 5px solid transparent;
    border-left: 5px solid transparent;
    content: " ";
    font-size: 0;
    line-height: 0;
}

/* Show tooltip content on hover */
[data-tooltip]:hover:before,
[data-tooltip]:hover:after {
    visibility: visible;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
    filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
    opacity: 1;
}

.foo:valid {
    border: 2px #F1CA0A solid;
}

.foo:invalid {
    border: 2px #ccc solid;
}

.textarea--height:valid {
    height: 150px;
}

.textarea--height:invalid {
    height: 3em;
}

.sort-container {
    display: block;
}

.sort-container:nth-of-type(1) {
    margin: 0 0 20px 0;
}

.sort-container:nth-of-type(2) {
    margin: 0;
}

@media only screen and (min-width: 768px) {
    .sort-container {
        display: inline-block;
    }

    .sort-container:nth-of-type(1) {
        margin: 0 30px 0 0;
    }
}

.archive .sort-container {
    margin: 0;
}

.sort-label {
    width: 40px;
}

.sort-label:first-child {
    margin-right: 20px;
}

.sort--custom {
    cursor: pointer;
    font-size: 0.875em;
    font-weight: bold;
    width: 250px;
    text-align: left;
    padding: 0 20px;
    background-color: #fff;
    z-index: 9999;
}

.sort--custom option.current {
    display: none;
}

.sort-label {
    font-size: 0.875em;
    margin: 0;
}

.sort-label, .sort-select {
    display: inline-block;
}

p {
    font-size: 1em;
    color: #3d3d3d;
    line-height: 1.4;
}

p.lead {
    font-size: 1.25em;
    font-weight: bold;
}

.button {
    text-decoration: none;
    font-size: 0.675em;
    font-weight: bold;
    display: inline-block;
    padding: 15px 55px;
    border: none;
    -webkit-border-radius: 40px;
    -moz-border-radius: 40px;
    border-radius: 40px;
    text-align: center;
    -webkit-transition: ease-in-out 0.3s all;
    -moz-transition: ease-in-out 0.3 all;
    -o-transition: ease-in-out 0.3s all;
    transition: ease-in-out 0.3s all;
}

.button.archived {
    display: none;
}

.button--submit {
    width: 250px;
}

.button--white-hamburger {
    border: 2px #f9f9f9 solid;
    padding: 5px 10px;
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    border-radius: 8px;
}

.button--white-hamburger:hover, .button--black-hamburger:hover {
    cursor: pointer;
    border: 2px #F1CA0A solid;
}

.button--white-hamburger:hover .fa, .slideout-open .button--white-hamburger .fa,
.button--black-hamburger:hover .fa, .slideout-open .button--black-hamburger .fa {
    color: #F1CA0A;
}

.slideout-open .button--white-hamburger, .slideout-open .button--black-hamburger {
    border: 2px #F1CA0A solid;
}

.button--black-hamburger {
    border: 2px #999 solid;
    padding: 5px 10px;
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    border-radius: 8px;
}

.button--black-hamburger .fa {
    color: #999;
}

.button.has-blue-bg:hover {
    background-color: #216ECA;
    color: #fff;
}

.button.has-yellow-bg:hover {
    background-color: #FFE800;
    color: #000;
}

hr {
    border: 5px #F1CA0A solid;
    width: 120px;
    display: inline-block;
}

/** NAVIGATION **/
.logo {
    position: absolute;
    top: 20px;
    left: 20px;
}

.logo__img, .logo__img-color {
    display: inline-block;
    background: url("/wp-content/themes/twentyfirst/assets/img/logo-white.png") center center no-repeat;
    background-size: 210px 65px;
    width: 210px;
    height: 65px;
}

.logo__img-color {
    background: url("/wp-content/themes/twentyfirst/assets/img/logo-color.png") center center no-repeat;
    background-size: 210px 65px;
}

#menu {
    background: #1F1F1F;
    color: #fff;
    margin-top: 46px;
}

nav li {
    padding: 15px 30px;
}

.toggle-button {
    position: absolute;
    top: 20px;
    right: 20px;
}

.slideout-menu {
    position: fixed;
    left: auto;
    top: 0;
    bottom: 0;
    right: 0;
    z-index: 0;
    width: 256px;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    display: none;
}

.slideout-panel {
    position: relative;
    z-index: 1;
}

.slideout-open,
.slideout-open body,
.slideout-open .slideout-panel {
    overflow: hidden;
}

.slideout-open .slideout-menu {
    display: block;
}

.menu--desktop {
    position: absolute;
    left: auto;
    right: 20px;
    top: 0;
    z-index: 12;
}

.navigation a, .navigation--desktop a {
    text-decoration: none;
}

.navigation--desktop li {
    display: inline-block;
    font-size: 0.75em;
    padding: 5px 20px 20px;
    position: relative;
}

body.home .navigation--desktop li,
body.page-template-page-about .navigation--desktop li,
body.page-template-page-iste-standarts-prof-develop .navigation--desktop li
{
    font-size: 1em;
}

.navigation--desktop li ul {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    border-radius: 3px;
    padding: 10px 20px;
    background-color: RGBA(43, 89, 135, 0.75);
    width: 100%;
    min-width: 230px;
}

.navigation--desktop li ul li {
    float: none;
    display: block;
    padding: 10px 0;
    font-size: 1em;
}

.navigation--desktop li:hover {
    cursor: pointer;
}

.navigation--desktop li:hover > ul {
    display: block;
}

.navigation--desktop.is-white a {
    color: #f9f9f9;
    text-shadow: 0px 1px 1px #333;
}

.navigation--desktop.is-black a, .navigation--desktop.is-white .button {
    color: #3d3d3d;
    text-shadow: none;
}

.navigation--desktop.is-black li ul {
    background-color: RGBA(225, 225, 225, 0.75);
}

.navigation--desktop {
    margin: 20px 0 0;
}

.navigation--desktop .button.is-black:hover {
    color: #3d3d3d;
}

.navigation__contact {
    font-size: 0.75em;
}

.navigation--desktop li a[href*="#contact"], .slideout-menu a[href*="#contact"] {
    background-color: #F1CA0A;
    color: #3d3d3d;
    text-shadow: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none;
    font-size: 0.675em;
    font-weight: bold;
    display: inline-block;
    padding: 15px 55px;
    border: none;
    -webkit-border-radius: 40px;
    -moz-border-radius: 40px;
    border-radius: 40px;
    text-align: center;
    -webkit-transition: ease-in-out 0.3s all;
    -moz-transition: ease-in-out 0.3 all;
    -o-transition: ease-in-out 0.3s all;
    transition: ease-in-out 0.3s all;
}

.navigation--desktop li a[href*="#contact"]:hover, .navigation--desktop li a[href*="#contact"]:focus {
    background-color: #FFE800;
    color: #3d3d3d;
}

/** HEADER **/
header, .half-sized {
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    height: 100%;
    height: 100vh;
    max-height: 667px;
    min-height: 480px;
    position: relative;
}

.header-home {
    background-image: url("/wp-content/themes/twentyfirst/assets/img/hero-main-sm.jpg");
    background-color: #4a90e2;
    background-blend-mode: multiply;
    background-size: cover;
}

.header-about {
    background-image: url("/wp-content/themes/twentyfirst/assets/img/hero-about.jpg");
    background-size: cover;
}

.header-post {
    background-size: cover;
    height: 50%;
    height: 50vh;
    max-height: 334px;
    min-height: 240px;
}

.header-study {
    background-color: #000;
    background-size: cover;
}

.header-event {
    background-image: url("/wp-content/themes/twentyfirst/assets/img/event-kim.jpg");
    background-size: cover;
}

.header-study, .header-event {
    -webkit-transition: ease-in-out 0.5s background-color;
    -moz-transition: ease-in-out 0.5s background-color;
    -o-transition: ease-in-out 0.5s background-color;
    transition: ease-in-out 0.5s background-color;
}

.header-study:hover, .header-event:hover {
    background-color: rgba(0, 0, 0, 0.25);
    -webkit-transition: ease-in-out 0.5s background-color;
    -moz-transition: ease-in-out 0.5s background-color;
    -o-transition: ease-in-out 0.5s background-color;
    transition: ease-in-out 0.5s background-color;
}

.header-general {
    background-image: none;
    background-color: #f5f5f5;
}

.header {
    z-index: 10;
    padding: 0 5%;
    text-align: center;
    -webkit-transform-style: preserve-3d;
    -moz-transform-style: preserve-3d;
    transform-style: preserve-3d;
}

.header__title {
    margin: 0 0 20px 0;
}

.header__title--section, .header__title--post {
    margin-bottom: 20px;
}

.header__title--post {
    font-size: 2em;
}

.header__subtitle {
    font-size: 1.2em;
    font-weight: normal;
    margin: 1em auto;
}

.header__description, .header__person {
    font-weight: normal;
    font-size: 1.25em;
}

.header__subtitle, .block__caption {
    max-width: 380px;
}

.header__person {
    margin-top: 10px;
    font-style: italic;
}

/** CONTENT **/
.content h1, .content h2, .content h3, .content h4, .content h5, .content h6 {
    margin: 20px 0;
}

.content #case__caption {
    margin: inherit;
    margin-bottom: 20px;
}

.content table {
    margin: 20px 0;
}

.content table td {
    padding: 10px 20px;
}

/** CAPTION & CTA MODULES **/
.module {
    padding: 50px 5%;
}

.module--thin {
    padding: 15px 5%;
}

.module--sort {
    margin: 0 auto;
    text-align: center;
}

.module--study {
    position: relative;
    padding-top: 582px;
}

.module--study .module__col-text__section {
    margin-bottom: 40px;
}

.module--study .hierarchy {
    position: relative;
    font-size: 0.8em;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.module__caption {
    margin: 0.5em auto;
}

.module__text {
    padding: 0 5%;
    max-width: 800px;
}

.module__img {
    width: 100%;
    left: 0;
    padding: 20px 0;
    margin-left: -5.5%;
    width: 111%;
}

.module__list {
    font-style: italic;
    font-weight: bold;
    color: #999;
    margin: 0 0 20px 0;
    list-style-position: inside;
}

ul.module__list {
    margin: 0 0 30px 0;
}

.module__list, .module__list-item {
    font-size: 1em;
}

.module__list-item {
    margin: 0 0 20px;
}

.module__list-item.one-up {
    font-size: 1em;
}

li.module__list-item {
    list-style-type: disc;
    list-style-position: outside;
}

/** META **/
.didyouknow {
    padding: 15%;
    font-size: 0.875em;
    margin-bottom: 20px;
}

.didyouknow.has-blue-bg .didyouknow__text {
    font-size: 1em;
}

.didyouknow.has-blue-bg .didyouknow__text h1, .didyouknow.has-blue-bg .didyouknow__text h2, .didyouknow.has-blue-bg .didyouknow__text h3, .didyouknow.has-blue-bg .didyouknow__text h4, .didyouknow.has-blue-bg .didyouknow__text h5, .didyouknow.has-blue-bg .didyouknow__text h6, .didyouknow.has-blue-bg .didyouknow__text p, .didyouknow.has-blue-bg .didyouknow__text ul {
    color: rgba(255, 255, 255, 0.65);
}

.didyouknow.has-blue-bg .didyouknow__text a {
    color: #F9F9F9;
}

.didyouknow.has-blue-bg .didyouknow__text img {
    max-width: 100%;
    height: auto;
}

.didyouknow.has-yellow-bg .didyouknow__text {
    font-size: 1em;
}

.didyouknow.has-yellow-bg .didyouknow__text h1, .didyouknow.has-yellow-bg .didyouknow__text h2, .didyouknow.has-yellow-bg .didyouknow__text h3, .didyouknow.has-yellow-bg .didyouknow__text h4, .didyouknow.has-yellow-bg .didyouknow__text h5, .didyouknow.has-yellow-bg .didyouknow__text h6, .didyouknow.has-yellow-bg .didyouknow__text p, .didyouknow.has-yellow-bg .didyouknow__text ul {
    color: rgba(0, 0, 0, 0.3);
}

.didyouknow.has-yellow-bg .didyouknow__text a {
    color: #3D3D3D;
}

.didyouknow.has-yellow-bg .didyouknow__text img {
    max-width: 100%;
    height: auto;
}

.meta {
    font-size: 0.875em;
    background-color: #F1CA0A;
    padding: 40px 15px;
    text-align: center;
}

.meta-up {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
}

.meta .button {
    width: 100%;
    font-size: 1em;
}

.meta dt {
    font-weight: bold;
    color: #fff;
}

.meta dd {
    margin-left: 0;
    color: rgba(0, 0, 0, 0.5);
}

.meta dd strong {
    font-size: 1.25em;
}

.meta .credit img:hover {
    border: 2px #fff solid;
}

.meta .credit {
    display: inline-block;
    margin-top: 3px;
}

.meta .credit img {
    border: 2px #F1CA0A solid;
    width: 50px;
    height: 50px;
}

.event-author {
    margin-bottom: 30px;
}

.event-author:focus {
    outline: none;
}

.event-author.meta {
    padding: 0;
    text-align: left;
}

.post-author__pic {
    margin-bottom: 30px;
}

.post-author__bio div {
    position: relative;
    top: 0;
    -webkit-transform: none;
    -moz-transform: none;
    -ms-transform: none;
    -o-transform: none;
    transform: none;
}

.post-author__pic img {
    width: 150px;
    height: 150px;
}

.event-author__pic img {
    width: 60px;
    height: 60px;
}

.post-author__bio h5 {
    margin-bottom: 0;
    font-size: 1.5em;
}

.event-author__bio h5 {
    margin-bottom: 0;
    font-size: 1.25em;
}

.post .post-author__bio p {
    display: block;
    font-weight: normal;
    font-size: 1.5em;
}

.post .event-author__bio p {
    display: block;
    font-weight: normal;
    font-size: 1em;
    line-height: 1.4;
}

.post .event-author__bio:first-child {
    margin-top: 0;
}

.post-author__bio .social {
    font-size: 2em;
}

/** CTA **/
.cta {
    position: relative;
    min-height: 350px;
    overflow: hidden;
    background-size: cover;
}

.cta__module {
    padding: 0;
    width: 60%;
}

.single-post .cta__module {
    width: 80%;
}

.single-post .cta__module .cta__caption {
    margin-bottom: 0;
}

.single-post .cta__module p {
    margin: 0.275em 0 1.5em 0;
}

.cta__img {
    width: 100%;
    margin-top: -10%;
}

.cta__button {
    display: block;
    margin: 0 auto;
}

.cta__button:focus, .cta__button:hover {
    outline: none;
}

.cta__caption {
    margin: 0 auto 0.75em;
    text-align: center;
}

/** POST **/
.post p, .post li {
    font-size: 1.15em;
    line-height: 1.6;
}

.post p img, .post li img {
    max-width: 100%;
    height: auto;
}

.post-author {
    margin-bottom: 5px;
    font-size: 0.675em;
    font-weight: bold;
}

.post-body {
    margin: 40px 0;
}

.post-body h1, .post-body h2, .post-body h3, .post-body h4, .post-body h5 {
    margin-bottom: 20px;
}

.post-body h1 {
    font-size: 1.5em;
}

.post-body h2 {
    font-size: 1.375em;
}

.post-body h3 {
    font-size: 1.25em;
}

.post-body h4 {
    font-size: 0.875em;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 3px;
}

.post-body table {
    width: 100%;
}

.post-body td {
    font-size: 1em;
    vertical-align: top;
    padding-right: 10px;
}

@media only screen and (min-width: 1200px) {
    .post-body td {
        font-size: 0.75em;
    }
}

.post-body blockquote {
    border-left: 4px #F1CA0A solid;
    padding-left: 20px;
    text-transform: uppercase;
    font-style: italic;
    width: 100%;
    margin: 1.25em 0;
}

@media only screen and (min-width: 768px) {
    .post-body blockquote {
        width: 768px;
        margin: 1.15em -19px;
    }
}

.post-info {
    color: #ccc;
    margin-bottom: 10px;
}

.post-info span {
    color: #3d3d3d;
}

.post-title {
    font-size: 2.5em;
    line-height: 1.3;
    margin-bottom: 5px;
}

.post .post-share {
    text-align: center;
    padding: 0 20px 20px;
    font-size: 18px;
    font-weight: bold;
}

.post .post-share p {
    margin: 0;
}

.post .post-share a {
    font-size: 24px;
}

.post .post-share a:first-of-type {
    margin-right: 20px;
}

.paginate {
    color: #E2AA09;
}

.paginate a {
    margin: 0 20px;
    font-size: 28px;
    text-decoration: none;
}

.paginate a:first-child:before {
    content: '<';
    position: absolute;
    margin-left: -28px;

.
}

.paginate a:last-child:after {
    content: '>';
    position: absolute;
    margin-left: 15px;
}

/** BLOCK MODULES **/
.blocks {
    font-size: 0;
}

.blocks .tablepress { font-size: 16px }

.block {
    position: relative;
    z-index: 10;
}

.block a {
    text-decoration: none;
}

.thin.block {
    width: 100%;
    padding-bottom: 50%;
}

.fourth-height.block {
    padding-bottom: 25%;
}

.half-height.block {
    padding-bottom: 49.9%;
}

.full-height.block {
    padding-bottom: 100%;
}

.fourth-width.block {
    width: 25%;
}

.half-width.block {
    width: 50%;
}

.full-width.block {
    width: 100%;
}

.blocks .block .block {
    font-size: 1rem;
}

.fourth-width.block, .half-width.block, .full-width.block {
    vertical-align: bottom;
    position: relative;
    height: 0;
    font-size: 1rem;
    display: inline-block;
	letter-spacing: 0px !important;
}
.block a {
	letter-spacing: 0px !important;
}

.blocks--sort .fourth-width.fourth-height {
    width: 50%;
    padding-bottom: 50%;
}

button.alm-load-more-btn.loading {
    padding-left: 0;
}

button.alm-load-more-btn.loading:before {
    top: 50%;
    left: 0;
    bottom: 0;
    right: 0;
    margin: 0;
    width: 100%;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
    background: #FFE800 url("../../uploads/2015/10/loader.gif") no-repeat center center;
    height: 100%;
}

.alm-listing {
    overflow: hidden;
    padding: 0;
    margin: 0;
}

.alm-btn-wrap {
    padding: 0;
}

.alm-reveal {
    background-color: #1F1F1F;
}

.alm-reveal a .block {
    font-size: 0;
}

#load-more {
    background-color: #F1CA0A;
    width: 100%;
    padding: 50px;
    font-size: 0.675rem;
    text-transform: uppercase;
    font-weight: bold;
    letter-spacing: 1px;
    height: auto;
    font-family: 'brandon-grotesque', Helvetica, Arial, sans-serif;
    border: none;
    margin-bottom: 0;
}

#load-more:hover, #load-more:focus {
    -webkit-transition: ease-in-out 0.3s all;
    -moz-transition: ease-in-out 0.3 all;
    -o-transition: ease-in-out 0.3s all;
    transition: ease-in-out 0.3s all;
    background-color: #FFE800;
    outline: none;
}

#load-more.done {
    background-color: #eee;
    color: rgba(0, 0, 0, 0.2);
    -webkit-transition: ease-in-out 0.3s all;
    -moz-transition: ease-in-out 0.3 all;
    -o-transition: ease-in-out 0.3s all;
    transition: ease-in-out 0.3s all;
}

#load-more.done:hover {
    cursor: default;
}

.block__title, .block__quote, .block__category {
    z-index: 11;
    margin: 0;
    position: absolute;
}

.block__category-container, .block__category, .block__img {
    width: 100%;
}

.blocks--sort .archived .block__category {
    color: rgba(255, 255, 255, 0.25);
}

.blocks--sort .archived .block__category-item {
    color: rgba(255, 255, 255, 0.3);
}

span.archived {
    text-decoration: line-through;
    color: rgba(255, 201, 0, 0.65);
}

span.archived span {
    color: rgba(255, 255, 255, 0.25);
}

.block__tag {
    position: absolute;
    left: 0px;
    top: 00px;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 6px 10px;
    font-size: 0.5em;
}

.block__tag.information-technology {
    background-color: RGBA(231, 198, 255, 0.65);
}

.block__tag.curriculum-planning {
    background-color: RGBA(130, 240, 236, 0.65);
}

.block__tag.visual-literacy {
    background-color: RGBA(254, 192, 74, 0.65);
}

.block__tag.classroom-management {
    background-color: RGBA(82, 198, 72, 0.65);
}

.block__tag.sustainability {
    background-color: RGBA(224, 0, 37, 0.65);
}

.block__tag.credentialing {
    background-color: RGBA(0, 117, 173, 0.65);
}

.block__tag.conference {
    background-color: RGBA(130, 240, 236, 0.65);
}

.block__tag.workshop {
    background-color: RGBA(231, 198, 255, 0.65);
}

.block__tag.teachmeet {
    background-color: RGBA(254, 192, 74, 0.65);
}

.block__category {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.65em;
}

.block__category-item {
    font-weight: normal;
    font-size: 1em;
    padding: 0 30px;
}

.block__quote {
    width: 80%;
    font-size: 0.875em;
    font-style: italic;
}

.block__category--awards {
    padding: 0 10px;
}

.block__category-item--awards {
    font-size: 0.75em;
    margin-top: 40px;
}

a .has-yellow-bg,
a .has-blue-bg,
a .has-grey-bg {
    color: rgba(0, 0, 0, 0.5);
}

a:hover .has-yellow-bg, a:hover .has-blue-bg, a:hover .has-grey-bg, a:hover .has-black-bg, a:hover .has-yellow-bg:after, a:hover .has-blue-bg:before {
    -webkit-transition: ease-in-out 0.3s all;
    -moz-transition: ease-in-out 0.3 all;
    -o-transition: ease-in-out 0.3s all;
    transition: ease-in-out 0.3s all;
}

a:hover .has-yellow-bg, a:focus .has-yellow-bg {
    background-color: #FFE800;
    color: #333;
}

a:hover .has-blue-bg, a:focus .has-blue-bg {
    background-color: #216ECA;
    color: #333;
}

a:hover .has-black-bg, a:focus .has-black-bg {
    background-color: rgba(0, 0, 0, 0.3);
}

a:hover .has-img-bg.archived, a:focus .has-img-bg.archived c  {
    background-color: #444;
}

.testimonial {
    margin-top: 20px;
    position: relative;
}

.testimonial__photo {
    width: 60px;
    height: 60px;
    display: inline-block;
    margin-right: 10px;
}

.testimonial__name {
    font-style: normal;
    display: inline-block;
    position: absolute;
    top: 40%;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
}

.testimonial__name h4, .testimonial__name h5 {
    font-size: 1em;
    margin: 0;
}

.testimonial__name h5 {
    font-weight: normal;
}

/** COLUMNS **/
.module__col-text, .module__col-button {
    text-align: center;
}

.module__col-text {
    margin-bottom: 20px;
    min-width: 250px;
}

.module__col-button {
    margin-bottom: 15px;
}

/** MODAL **/
.modal {
    width: 100%;
    height: 100%;
    overflow: scroll !important;
    left: 0 !important;
    margin-left: 0 !important;
    padding: 30px;
    display: none;
    background: #FFF;
}

.modal_close {
    color: #999;
}

.modal_close:hover {
    cursor: pointer;
    color: #F1CA0A;
}

.modal_close:hover .button--black-hamburger, .modal_close:hover .button--white-hamburger {
    border-color: #F1CA0A;
}

.modal_close .button--black-hamburger, .modal_close .button--white-hamburger {
    position: fixed;
    right: 20px;
    top: 20px;
    padding: 5px 10px;
    width: 37px;
    text-align: center;
}

/** CONTACT **/
.modal--contact, .modal--application {
    background-color: #356EB2;
}

.modal--contact .module, .modal--application .module {
    padding: 20px 0;
}

.modal--contact p, .modal--application p {
    margin: 0 0 20px 0;
    font-size: 1em;
    line-height: 1.4;
    color: #f9f9f9;
}

.modal--contact h2, .modal--application h2 {
    margin-top: 20px;
    color: rgba(255, 255, 255, 0.4);
}

.modal--application {
    background-color: #f5f5f5;
}

.wpcf7-form input {
    color: #333;
}

.wpcf7-form br {
    display: none;
}

div.wpcf7-mail-sent-ok {
    display: block;
    border: none;
    background-color: rgba(255, 255, 255, 0.25);
    font-size: 0.8em;
    padding: 20px;
    margin: 0;
    text-align: center;
    color: #fff;
}

/** ABOUT **/
#consultants .consultant {
    padding: 20px;
}

#consultants .consultant img {
    width: 100%;
    max-width: 150px;
}

#consultants .consultant h4 {
    font-size: 0.75em;
}

.modal--about .module {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px 0;
}

.modal--about h4 {
    margin: 20px 0 5px;
    font-size: 1em;
}

.modal--about h5 {
    margin: 0 0 10px;
    font-size: 0.875em;
    font-weight: normal;
}

.about-image {
    width: 150px;
    height: 150px;
}

.about-link h5 {
    color: #999;
}

.about-link:hover h4 {
    color: #F1CA0A;
}

/** EVENT **/
.module--event .module__caption {
    margin: 1em 0;
}

.module--event .module__caption:first-child {
    margin: 0;
}

.acf-map {
    overflow: hidden;
    height: 300px;
    width: 768px;
    max-width: 100%;
}

/** FOOTER **/
.footer {
    width: 100%;
    background-color: #1F1F1F;
    padding: 40px 0 10px;
}

.footer-link {
    padding: 0 20px;
    margin-bottom: 20px;
    text-align: center;
}

.footer-link__category {
    font-size: 1em;
    color: #f9f9f9;
    margin-bottom: 0.5em;
}

.footer-link:nth-of-type(4) {
    margin: 0;
}

.footer-link a {
    color: #878787;
    text-decoration: none;
    display: block;
}

.footer-link a.social {
    display: inline-block;
}

.fb {
    margin-right: 10px;
}

.footer-link a:hover {
    color: #f9f9f9;
}

.copyright {
    background-color: #1F1F1F;
    color: #444;
    text-align: center;
    padding: 0 0 25px 0;
    font-size: 0.75em;
}

.copyright a {
    color: #666;
}

.copyright a:hover {
    color: #999;
}

/** 404 **/
.error-page {
    color: #F1CA0A;
    font-size: 8em;
    margin-bottom: 0.15em;
}

/** MEDIA QUERIES **/
@media only screen and (min-width: 568px) {
    .logo__img, .logo__img-color {
        background-size: 168px 52px;
        width: 168px;
        height: 52px;
    }

    .block__quote {
        font-size: 1em;
    }
}

@media only screen and (max-width: 873px) {
    .blocks--alt#core .block:nth-of-type(odd) .block {
        float: left;
    }

    .blocks--alt#core .block:nth-of-type(even) .block {
        float: right;
    }

    .blocks--alt#core .block:nth-of-type(odd) .block.has-greyest-bg:before, #home-radio:before {
        content: '';
        position: absolute;
        top: 50%;
        margin-top: -30px;
        width: 0;
        height: 0;
        border-top: 30px solid transparent;
        border-bottom: 30px solid transparent;
        border-right: 30px solid #eee;
        left: -30px;
    }

    .blocks--alt#core .block:nth-of-type(even) .block.has-greyest-bg:after, #home-blog:after {
        content: '';
        position: absolute;
        top: 50%;
        margin-top: -30px;
        width: 0;
        height: 0;
        border-top: 30px solid transparent;
        border-bottom: 30px solid transparent;
        border-left: 30px solid #eee;
        right: -30px;
    }

    #home-radio:before {
        border-right: 30px solid #356EB2;
    }

    a:hover #home-radio:before {
        border-right: 30px solid #216ECA;
    }

    #home-blog {
        z-index: 11;
    }

    #home-blog:after {
        border-left: 30px solid #F1CA0A;
    }

    a:hover #home-blog:after {
        border-left: 30px solid #FFE800;
    }

    a.social {
        font-size: 1.5em;
    }

    .meta .button {
        max-width: 250px;
    }

    .module__col-button .button {
        position: relative;
        top: 0;
        left: 0;
        -webkit-transform: none;
        -moz-transform: none;
        -ms-transform: none;
        -o-transform: none;
        transform: none;
    }

    .block__category-item {
        margin: 20px 0 0;
    }

    .block__category-item--awards {
        margin: 40px 0 0;
    }

    .hidden-mobile {
        display: none;
    }
}

@media only screen and (min-width: 873px) and (max-width: 1199px) {
    .hidden-tablet {
        display: none;
    }

    .meta .button {
        padding: 15px;
    }

    .module__col-button .button {
        width: 80%;
    }
}

@media only screen and (min-width: 873px) {
    html {
        font-size: 1.25em;
    }

    ul {
        padding-left: 40px;
    }

    p, li {
        font-size: 0.875em;
    }

    p.lead {
        font-size: 1em;
        font-weight: bold;
    }

    input {
        display: inline-block;
    }

    #panel {
        transform: translate3d(0, 0, 0) !important;
    }

    .slideout-open .slideout-menu {
        display: none;
    }

    textarea {
        height: 2.675em;
    }

    .textarea--height:invalid {
        height: 2.675em;
    }

    header {
        max-height: 850px;
        min-height: 700px;
    }

    header.half-sized {
        height: 60%;
        height: 60vh;
        max-height: 510px;
        min-height: 475px;
    }

    .header {
        max-width: 60%;
        text-align: left;
    }

    .header-home {
        background-image: url("/wp-content/themes/twentyfirst/assets/img/hero-main.jpg");
        background-size: cover;
    }

    .header__title {
        width: 550px;
        margin-bottom: 35px;
        font-size: 5em;
    }

    .header__title--section {
        font-size: 3.5em;
        margin: 0;
    }

    .archive .header__title--section {
        font-size: 2.75em;
        margin: 0;
    }

    .header__subtitle {
        width: 550px;
        margin: 1em 0;
    }

    .header__description, .header__person {
        font-size: 1em;
    }

    .meta {
        position: relative;
    }

    .cta--2col {
        padding: 60px 5%;
        max-width: 600px;
        margin: 0 auto;
    }

    .cta__button {
        position: absolute;
        bottom: 19px;
        right: 4px;
    }

    cta__caption {
        text-align: center;
    }

    .sort-label {
        width: auto;
    }

    .module {
        padding: 60px 5%;
    }

    .module--thin {
        padding: 40px 5%;
    }

    .module--sort {
        text-align: left;
    }

    .module--2 {
        max-width: 900px;
    }

    .module--study {
        position: relative;
    }

    .module--study .hierarchy {
        position: absolute;
        top: 0;
        font-size: 0.5em;
    }

    .module__img {
        position: relative;
        width: 100%;
        width: 101vw;
        left: 84%;
        margin-left: -50vw;
    }

    .module__caption {
        max-width: 580px;
        margin: 0.5em 0;
    }

    .module__col-text {
        text-align: left;
        margin-bottom: 0;
        padding-right: 20px;
    }

    .module--event .module__col-text, .module--study .module__col-text {
        padding: 0 60px 0 0;
    }

    .module__col-button {
        position: relative;
        white-space: nowrap;
        text-align: right;
        margin-bottom: 0;
    }

    .module__list {
        font-size: 1em;
    }

    .module__list-item {
        font-size: 0.875em;
    }

    .post-author__pic {
        margin-bottom: 0;
    }

    .post-author__pic, .post-author__bio {
        height: 200px;
    }

    .post-author__pic, .event-author__pic {
        float: left;
        margin-right: 20px;
    }

    .post-author.meta {
        margin: 40px 0;
    }

    .post .post-author__bio p {
        font-size: 1.25em;
        margin: 0;
    }

    .event-author__bio a.social {
        font-size: 1.5em;
    }

    .post-info {
        font-size: 0.75em;
    }

    .meta {
        font-size: 0.65em;
        padding: 20px 40px;
        text-align: left;
    }

    .block__category--awards {
        font-size: 0.5em;
    }

    .block__category-item {
        font-weight: normal;
        font-size: 0.875em;
        margin: 30px 0 0 0;
    }

    .block__category-item.block__category-item--awards {
        font-size: 0.75em;
        line-height: 1.2;
        margin: 40px 0 0 0;
    }

    .blocks--sort .block__category {
        font-size: 0.5em;
    }

    .blocks--sort .fourth-width.fourth-height {
        width: 25%;
        padding-bottom: 25%;
    }

    .block__category-item.big {
        font-size: 2em;
    }

    .block__category-item {
        font-size: 0.9em;
        margin: 25px 0 0 0;
    }

    .block__category-item-2 {
        margin-top: 10px;
    }

    .thin.block {
        width: 100%;
        padding-bottom: 33.333%;
    }

    .event-author {
        font-size: 0.75em;
    }

    .testimonial__name h4, .testimonial__name h5 {
        font-size: 0.675em;
        margin: 0;
    }

    .footer {
        padding: 50px 20px 30px 8%;
    }

    .footer-link {
        margin-bottom: 0;
    }

    .footer-link__category {
        font-size: 0.825em;
    }

    .footer-link a {
        font-size: 0.675em;
    }

    .footer-link a.social {
        float: left;
    }

    .footer-link__category, .footer-link a {
        text-align: left;
    }

    .copyright {
        font-size: 0.625em;
    }

    .modal_close .button--black-hamburger, .modal_close .button--white-hamburger {
        width: 2.05em;
    }

    .blocks--alt#core .block:nth-of-type(4n+1) .block, .blocks--alt#core .block:nth-of-type(4n+2) .block {
        float: left;
    }

    .blocks--alt#core .block:nth-of-type(4n+3) .block, .blocks--alt#core .block:nth-of-type(4n+4) .block {
        float: right;
    }

    .blocks--alt#core .block:nth-of-type(4n+1) .has-greyest-bg.block:before, .blocks--alt#core .block:nth-of-type(4n+2) .has-greyest-bg.block:before, #home-radio:before {
        content: '';
        position: absolute;
        top: 50%;
        margin-top: -25px;
        width: 0;
        height: 0;
        border-top: 30px solid transparent;
        border-bottom: 30px solid transparent;
        border-right: 30px solid #eee;
        left: -30px;
    }

    .blocks--alt#core .block:nth-of-type(4n+3) .has-greyest-bg.block:after, .blocks--alt#core .block:nth-of-type(4n+4) .has-greyest-bg.block:after, #home-blog:after {
        content: '';
        position: absolute;
        top: 50%;
        margin-top: -25px;
        width: 0;
        height: 0;
        border-top: 30px solid transparent;
        border-bottom: 30px solid transparent;
        border-left: 30px solid #eee;
        right: -30px;
    }

    #home-radio:before {
        border-right: 30px solid #356EB2;
    }

    a:hover #home-radio:before {
        border-right: 30px solid #216ECA;
    }

    #home-blog {
        z-index: 11;
    }

    #home-blog:after {
        border-left: 30px solid #F1CA0A;
    }

    a:hover #home-blog:after {
        border-left: 30px solid #FFE800;
    }
}

@media only screen and (min-width: 1200px) {
    html {
        font-size: 1.5em;
    }

    .logo__img, .logo__img-color {
        background-size: 210px 65px;
        width: 210px;
        height: 65px;
    }

    .navigation--desktop li {
        padding: 5px 20px 7px;
    }

    .navigation--desktop li ul, .navigation--desktop.is-black li ul {
        padding: 0 20px;
        background: none;
    }

    .navigation a:hover, .navigation--desktop a:hover {
        color: #FFE800;
    }

    .navigation--desktop.is-black a:hover {
        color: #F1CA0A;
    }

    .header {
        width: 51%;
        max-width: 711px;
    }

    .single-events .header {
        width: auto;
        max-width: 60%;
    }

    .hidden-desktop {
        display: none;
    }

    .header__title {
        width: 710px;
        font-size: 4.75em;
    }

    .header__divider {
        border-width: 10px;
    }

    .half-sized .header__divider {
        border-width: 5px;
    }

    .header__subtitle {
        max-width: 745px;
    }

    .slideout-open .slideout-panel {
        -webkit-transform: translate3d(0px, 0px, 0px) !important;
        -moz-transform: translate3d(0px, 0px, 0px) !important;
        -ms-transform: translate3d(0px, 0px, 0px) !important;
        -o-transform: translate3d(0px, 0px, 0px) !important;
        transform: translate3d(0px, 0px, 0px) !important;
        -webkit-backface-visibility: hidden;
        -webkit-perspective: 1000;
    }

    .cta__button {
        position: absolute;
        bottom: 20px;
        right: 6px;
    }

    .module {
        padding: 80px 0;
    }

    .module--thin {
        padding: 50px 0;
    }

    .module--sort {
        padding: 30px 5%;
    }

    .module__caption, .cta--2 {
        max-width: 800px;
    }

    .module--2 {
        min-width: 1100px;
    }

    .module--2 .module__col-text {
        padding: 0 40px;
    }

    .module--event .module__col-text, .module--study .module__col-text {
        padding: 0 80px 0 0;
    }

    .post-title {
        font-size: 2.125em;
    }

    .post p, .post li {
        font-size: 0.875em;
        line-height: 1.7;
    }

    .post-author__bio h5, .post .post-share p {
        font-size: 1.25em;
    }

    .post .post-author__bio p {
        font-size: 1em;
    }

    .post-author__bio .social {
        font-size: 1.75em;
    }
}

/** IE 9-11 **/
@media screen and (min-width: 0\0
) {
    .has-img-bg, .header-home {
        position: relative;
    }

    .has-img-bg .overlay, .bg-multiply .overlay, .header-home .overlay {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        filter: alpha(opacity=65);
        opacity: 0.65;
    }

    .header-home .overlay, .has-img-bg.has-blue-bg .overlay {
        background-color: #356EB2;
    }

    .has-img-bg.has-yellow-bg .overlay, .has-yellow-bg.bg-multiply .overlay {
        background-color: #F1CA0A;
    }

    .has-img-bg.has-black-bg .overlay, .has-black-bg.bg-multiply .overlay {
        background-color: #333;
        filter: alpha(opacity=75);
        opacity: 0.75;
    }

    .has-img-bg.archived .overlay {
        background-color: #000;
    }
}

/** Helper Classes **/
#lean_overlay {
    position: fixed;
    z-index: 100;
    top: 0px;
    left: 0px;
    height: 100%;
    width: 100%;
    background: #000;
    display: none;
}

.sharp {
    -webkit-font-smoothing: antialiased;
}

.half-spacer {
    height: 20px;
    width: 100%;
}

.spacer {
    height: 40px;
    width: 100%;
}

.spacer-2x {
    height: 80px;
    width: 100%;
}

.is-white {
    color: #F9F9F9;
}

.is-black {
    color: #3d3d3d;
}

.is-transparent {
    color: rgba(0, 0, 0, 0.5);
}

.is-transparenter {
    color: rgba(0, 0, 0, 0.3);
}

.is-transparentless {
    color: rgba(255, 255, 255, 0.65);
}

.is-grey {
    color: #777;
}

.has-img-bg {
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    background-blend-mode: multiply;
}

.has-blue-bg {
    background-color: #356EB2;
}

.has-white-bg {
    background-color: #fff;
}

.has-grey-bg {
    background-color: #f5f5f5;
}

.has-greyer-bg {
    background-color: #f9f9f9;
}

.has-greyest-bg {
    background-color: #eee;
}

.has-yellow-bg {
    background-color: #F1CA0A;
}

.has-black-bg {
    background-color: #777;
}

.has-blacker-bg {
    background-color: #1F1F1F;
}

.has-img-bg.archived {
    background-color: #333;
}

.bg-multiply {
    background-blend-mode: multiply;
}

.multiply {
    mix-blend-mode: multiply;
}

.is-circular, .avatar {
    border-radius: 50%;
}

.is-bnw {
    filter: url("data:image/svg+xml;utf8,&lt;svg xmlns='http://www.w3.org/2000/svg'&gt;&lt;filter id='grayscale'&gt;&lt;feColorMatrix type='matrix' values='0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0 0 0 1 0'/&gt;&lt;/filter&gt;&lt;/svg&gt;#grayscale");
    filter: gray;
    -webkit-filter: grayscale(100%);
}

.is-centered, .aligncenter {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

.is-laligned, .alignleft {
    text-align: left;
}

.is-raligned, .alignright {
    text-align: right;
}

.is-caps {
    text-transform: uppercase;
    letter-spacing: 1px;
}

.no-margin, .top {
    margin-top: 0;
}

.p-up-lower {
    padding-top: 20px;
}

.p-down-lower {
    padding-bottom: 20px;
}

.z-down {
    z-index: -10;
}

.z-up {
    z-index: 10;
}

.z-upper {
    z-index: 11;
}

.is-valigned-r {
    position: relative;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
}

.is-valigned-a {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

.clearfix {
    overflow: auto;
    zoom: 1;
}

.event-card-h3 {
    top: 15%;
    font-size: 0.9em;
}

.event-signature {
    color: #f9f9f9;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    font-size: 0.7em;
}

div.emp-content, .emd-employee-wrap p, .emptitle, .emd-employee-wrap h3 {
    color: #f9f9f9;
}

.event-authors {
    padding: 20px;
}

@media only screen and (max-width: 1400px) and (min-width: 1024px) {
    .event-card-h3 {
        font-size: 0.8em;
        top: 10%;
    }

    .event-signature {
        font-size: 0.65em;
        width: 80%;
    }
}

@media only screen and (max-width: 1024px) {
    .event-card-h3 {
        font-size: 11px;
        top: 10%;
    }

    .event-signature {
        font-size: 0.7em;
        width: 80%;
    }
}

/*# sourceMappingURL=style.css.map */
/*Employees new background*/
.emd_employee-template-default #emd-temp-sing-container {
    background-color: #f5f5f5;
    color: #1F1F1F;
}

.emd_employee-template-default div.emp-content, .emd_employee-template-default .emd-employee-wrap p, .emd_employee-template-default .emptitle, .emd_employee-template-default .emd-employee-wrap h3 {
    color: #1F1F1F;
}

/*Events page events listing bottom sec*/
@media only screen and (min-width: 768px) {
    .pure-u-md-1 .half-height.block {
        width: 25%;
        padding-bottom: 25%;
    }
}

.blocks--sort #ajax-load-more .alm-btn-wrap {

}

/* header css back */
.emd_employee-template-default .header {
    width: 100%;
    max-width: max-content;
}

/* table room price*/
.module--study .module__col-text__section {
    margin-bottom: 20px;
}

#tableroompress {
    margin-top: 0;
}

#tableroompress tbody tr:first-child td {
    border-top: 0;
}

#tableroompress tbody tr:nth-child(odd) {
    background-color: #fff;
}

#tableroompress tbody td, tfoot th {
    border-top: 1px solid #ddd;
}

#tableroompress tbody tr:nth-child(even) td {
    background-color: #f9f9f9;
}

#tableroompress tbody td {
    font-size: 18px;
}

.module--thin.has-blue-bg h3.is-centered.is-white {
    margin: 10px 0;
}

.module--thin.has-blue-bg h3.is-centered.is-white a {
    color: #fff;
}


.tablepress tbody tr td:first-child {
    padding-left: 100px;
}

.tablepress tbody tr td:last-child {
    padding-right: 100px;
    text-align: right;
}

.tablepress tbody tr td.column-5 {
    text-align: center;
}

.tablepress tbody tr td {
    vertical-align: middle;
}

@media (max-width: 1470px) {
    .tablepress tbody tr td:first-child {
        padding-left: 60px;
    }

    .tablepress tbody tr td:last-child {
        padding-right: 60px;
    }
}

@media (max-width: 1370px) and (min-width: 991px) {
    .tablepress tbody tr td:first-child .flag-img {
        min-width: 35px;
    }
}

@media (max-width: 1215px) and (min-width: 991px) {
    .tablepress tbody tr td:first-child .flag-img {
        min-width: 45px;
    }
}

@media (max-width: 640px) {
    .tablepress tbody tr td:first-child {
        padding-left: 20px;
    }

    .tablepress tbody tr td:last-child {
        padding-right: 20px;
    }
}

.custom-radio [type="radio"]:checked,
.custom-radio [type="radio"]:not(:checked) {
  position: absolute;
  left: -9999px;
}

.custom-radio [type="radio"]:checked + label,
.custom-radio [type="radio"]:not(:checked) + label {
  position: relative;
  padding-left: 28px;
  cursor: pointer;
  line-height: 20px;
  display: inline-block;
  color: #666;
}

.custom-radio [type="radio"]:checked + label:before,
.custom-radio [type="radio"]:not(:checked) + label:before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 18px;
  height: 18px;
  border: 1px solid #ddd;
  border-radius: 100%;
  background: #fff;
}

.custom-radio [type="radio"]:checked + label:after,
.custom-radio [type="radio"]:not(:checked) + label:after {
  content: '';
  width: 12px;
  height: 12px;
  background: #F87DA9;
  position: absolute;
  top: 4px;
  left: 4px;
  border-radius: 100%;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}

.custom-radio [type="radio"]:not(:checked) + label:after {
  opacity: 0;
  -webkit-transform: scale(0);
  transform: scale(0);
}

.custom-radio [type="radio"]:checked + label:after {
  opacity: 1;
  -webkit-transform: scale(1);
  transform: scale(1);
}

.content .timeline table td {
    padding: 0 14px;
    vertical-align: top;
}

body{
    line-height: unset !important;
}

@media (max-width: 647px) {
    .header__title--section{
        margin-top: 50px;
    }
}
.elementor-kit-7862 a {
    letter-spacing: 0px !important;
}

.pum-content {font-size: 2em }