@font-face {
    font-family: 'Nuckle';
    src: url('../fonts/HW-Nuckle-Regular.otf') format('opentype'),
         url('../fonts/HW-Nuckle-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
}
@font-face {
    font-family: 'Nuckle';
    src: url('../fonts/HW-Nuckle-Medium.otf') format('opentype'),
         url('../fonts/HW-Nuckle-Medium.ttf') format('truetype');
    font-weight: 500;
    font-style: normal;
}
@font-face {
    font-family: 'Nuckle';
    src: url('../fonts/HW-Nuckle-Semi-Bold.otf') format('opentype'),
         url('../fonts/HW-Nuckle-Semi-Bold.ttf') format('truetype');
    font-weight: 600;
    font-style: normal;
}

:root {
    --black: #000;
    --black-80: rgba(0, 0, 0, 0.80);
    --black-60: rgba(0, 0, 0, 0.60);
    --black-50: rgba(0, 0, 0, 0.50);
    --black-40: rgba(0, 0, 0, 0.40);
    --black-10: rgba(0, 0, 0, 0.10);
    
    --white: #fff;
    --white-80: rgba(255, 255, 255, 0.80);
    --white-50: rgba(255, 255, 255, 0.50);
    --white-30: rgba(255, 255, 255, 0.30);

    --grey: #F7F8F9;
    --grey-dark: #D1D1D1;

    --blue: #0F3DBA;
    --blue-008: rgba(15, 61, 186, 0.08);

    --blue-dark: #092673;
    --other-blue-dark: #05133A;
}

/* Reset */
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
    font-family: 'Nuckle', sans-serif;
    font-weight: 500;
    line-height: 1.5;
    color: var(--black);
    background: var(--grey);
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}
.layouts-title {
	font-size: 26px;
	margin:15px 0px;
}
.layouts ul li {
	margin-bottom:5px;
}
.layouts ul li a {
	font-size: 17px;
	display: inline-block;
	padding:3px 10px;
}
.layouts ul li a:hover {
	background:#000;
	color:#fff;
}

/* -- END RESET -- */

.column:last-child:not(:first-child), .columns:last-child:not(:first-child) {
    float: left;
}
.grid-container {
	width: 100%;
    max-width: 1312px;
    padding-left: 16px;
    padding-right: 16px;
}
/* -- main styles -- */

.nopad {
	padding:0px;
}
.nopadleft {
	padding-left:0px;
}
.nopadright {
	padding-right:0px;
}
strong, b {
	font-weight: bold;
}
i {
	font-style: italic;
}
em {
	font-style: italic;
}
.clear {
	clear:both;
}
.left {
	float:left;
	margin-right:15px;
	margin-bottom:15px;
}
.right {
	float:right;
	margin-left:15px;
	margin-bottom:15px;
}
.alignleft {
	float:left;
	margin-right:15px;
	margin-bottom:15px;
}
.alignright {
	float:right;
	margin-left:15px;
	margin-bottom:15px;
}
.aligncenter,
div.aligncenter {
    display: block;
    margin: 5px auto 5px auto;
}
a img.aligncenter {
    display: block;
    margin-left: auto;
    margin-right: auto
}
.wp-caption {
	max-width: 100%;
    margin-bottom: 15px;
}
.invi {
	visibility: hidden;
	opacity: 0;
}
.object-fit {
	position: relative;
}
.object-fit > img {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	-o-object-fit: cover;
    object-fit: cover;
}
.object-fit.object-contain > img {
    -o-object-fit: contain;
    object-fit: contain;
}
.object-fit > video {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    -o-object-fit: cover;
    object-fit: cover;
}

.fancybox__content :focus:not(.carousel__button.is-close) {
    outline: none;
}

/* preloader */
.preloader {
    display: inline-block;
	width: 25px;
	height: 25px;
	border: 3px solid var(--black-10);
    border-top-color: rgba(255, 255, 255, 0.3);
    border-right-color: rgba(255, 255, 255, 0.3);
    border-bottom-color: rgba(255, 255, 255, 0.3);
    border-left-color: rgba(255, 255, 255, 0.3);
	border-radius: 50%;
	border-top-color: var(--blue) !important;
	-webkit-animation: a 1s ease-in-out infinite;
	animation: a 1s ease-in-out infinite;
	z-index: 50;
}
@-webkit-keyframes a {
    to {
        -webkit-transform: rotate(1turn);
        transform: rotate(1turn)
    }
}
@keyframes a {
    to {
        -webkit-transform: rotate(1turn);
        transform: rotate(1turn)
    }
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}
input[type=number] {
    -moz-appearance: textfield;
}

/*   hamburger   */
.hamburger {
    font: inherit;
    display: inline-block;
    overflow: visible;
	margin: 0;
	padding: 5px;
    cursor: pointer;
    transition-timing-function: linear;
    transition-duration: .15s;
    transition-property: opacity, filter;
    text-transform: none;
    color: inherit;
    border: 0;
    background-color: transparent;
	float: right;

	display: none;
}
.hamburger:hover {
    opacity: 1;
}
.hamburger-box {
    position: relative;
    display: inline-block;
    width: 16px;
    height: 16px;
    float: right;
}
.hamburger-inner {
    top: 50%;
    display: block;
    margin-top: -2px;
}
.hamburger-inner,
.hamburger-inner:after,
.hamburger-inner:before {
	border-radius: 2px;
    position: absolute;
    width: 16px;
    height: 2px;
    transition-timing-function: ease;
    transition-duration: .15s;
    transition-property: transform;
    background-color: var(--black);
}
.hamburger-inner:after,
.hamburger-inner:before {
    display: block;
    content: "";
}
.hamburger-inner:before {
    top: -5px;
}
.hamburger-inner:after {
    bottom: -5px;
}
.hamburger--squeeze .hamburger-inner {
    transition-timing-function: cubic-bezier(.55, .055, .675, .19);
    transition-duration: 75ms;
}
.hamburger--squeeze .hamburger-inner:before {
    transition: top 75ms ease .12s, opacity 75ms ease;
}
.hamburger--squeeze .hamburger-inner:after {
    transition: bottom 75ms ease .12s, transform 75ms cubic-bezier(.55, .055, .675, .19);
}
.hamburger--squeeze.is-active .hamburger-inner {
    transition-delay: .12s;
    transition-timing-function: cubic-bezier(.215, .61, .355, 1);
    transform: rotate(45deg);
}
.hamburger--squeeze.is-active .hamburger-inner:before {
    top: 0;
    transition: top 75ms ease, opacity 75ms ease .12s;
    opacity: 0;
}
.hamburger--squeeze.is-active .hamburger-inner:after {
    bottom: 0;
    transition: bottom 75ms ease, transform 75ms cubic-bezier(.215, .61, .355, 1) .12s;
    transform: rotate(-90deg);
}

header {
    position: fixed;
    top: 0; right: 0; left: 0;
    background: transparent;
    border-bottom: 1px solid transparent;
    transition: 0.2s ease-in-out;
    z-index: 999;
    background: var(--grey);
}
header.header-scrolled:not(.is-active) {
    border-bottom: 1px solid var(--black-10);
    background: var(--white);
}
header.is-active {
    background: var(--white);
}
.header-box {
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;

    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;

    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}
.header-left {
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
}
.header-logo {
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;

    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;

    margin-right: 64px
}
.header-logo img {
    max-height: 48px;
}
.header-nav {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 0px;
    flex: 1 1 0; 
}
.header-nav > ul {
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;

    height: 100%;
}
.header-nav > ul > li {
    float: left;
    margin-right: 40px;
    height: 100%;
    height: 64px;
}
.header-nav > ul > li.menu-item-has-children a {
    padding-right: 28px;
}
.header-nav > ul > li > a {
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;

    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;

    padding: 8px 0;
    height: 100%;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.4;
    letter-spacing: 0.28px; 
    color: var(--black);
    position: relative;
    transition: 0.2s ease-in-out;
}
.header-nav > ul > li > a > span {
    display: block;
    width: 100%; height: 2px;
    background: var(--blue);
    position: absolute;
    bottom: -1px; left: 0;
    opacity: 0;
    transition: 0.2s ease-in-out;
}
.header-nav > ul > li > a:hover span,
.header-nav > ul > li.is-active > a span {
    opacity: 1;
}
.header-nav > ul > li > a:hover,
.header-nav > ul > li.is-active > a {
    color: var(--blue);
}
.header-nav > ul > li.menu-item-has-children > a::before,
.header-nav > ul > li.menu-item-has-children > a::after {
    content: '';
    width: 20px; height: 20px;
    background: url(../img/icon-chev-down-20-black.svg) no-repeat center center;
    background-size: contain !important;
    position: absolute;
    top: 50%; right: 0;
    transform: translateY(-50%);
    transition: 0.2s ease-in-out;
}
.header-nav > ul > li.menu-item-has-children > a::after {
    background: url(../img/icon-chev-down-20-blue.svg) no-repeat center center;
    opacity: 0;
    z-index: 2;
}
.header-nav > ul > li.menu-item-has-children.is-active > a::before {
    opacity: 0;
}
.header-nav > ul > li.menu-item-has-children.is-active > a::after {
    opacity: 1;
}
.header-nav > ul > li.menu-item-has-children.is-active > a::after {
    transform: translateY(-50%) rotate(180deg);
}
.header-nav-submenu-lg {
    position: absolute;
    top: calc(100% + 1px); right: 0; left: 0;
    background: var(--white);
    border-top: 1px solid var(--black-10);
    display: none; 
}
.header-nav-submenu-lg-box {
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;

    opacity: 0;
    transform: translateY(-30px);
    transition-timing-function: cubic-bezier(.4,0,.2,1);
    transition-duration: .4s;
}
.header-nav-subnav.is-active .header-nav-submenu-lg-box {
    transform: translateY(0);
    opacity: 1;
}
.header-nav-submenu-lg-left {
    width: 314px;
    padding: 40px 34px 40px 0;
    border-right: 1px solid var(--black-10);
}
.header-nav-submenu-lg-left ul {
    margin: 0;
}
.header-nav-submenu-lg-left ul li a {
    display: block;
    font-size: 16px;
    font-weight: 600;
    line-height: 1.5;
    color: var(--black-50);
    padding: 16px 60px 14px 24px;
    position: relative;
    transition: 0.2s ease-in-out;
}
.header-nav-submenu-lg-left ul li a::after {
    content: '';
    width: 20px; height: 20px;
    background: url(../img/icon-arrow-20-black.svg) no-repeat center center;
    background-size: contain;
    position: absolute;
    top: 50%; right: 24px;
    transform: translateY(-50%);
    opacity: 0;
    transition: 0.2s ease-in-out;
}
.header-nav-submenu-lg-left ul li.is-active a {
    color: var(--black);
    background: var(--blue-008);
}
.header-nav-submenu-lg-left ul li a:hover {
    color: var(--black);
    background: var(--blue-008);
}
.header-nav-submenu-lg-left ul li.is-active a::after {
    opacity: 1;
}
.header-nav-submenu-lg-right {
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;

    width: calc(100% - 314px);
    padding: 40px 0 65px 63px;
}
.header-nav-submenu-lg-right-item {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 33.333%;
    flex: 1 1 33.333%;

    margin-right: 13.3%;
}
.header-nav-submenu-lg-right-item.header-nav-submenu-lg-right-item-post {
    max-width: 290px;
}
.header-nav-submenu-lg-right-item:last-child {
    margin-right: 0;
}
.header-nav-submenu-lg-right-item ul {
    margin: 0;
}
.header-nav-submenu-lg-post {
    width: 290px;
}
.header-nav-submenu-lg-post a {
    display: block;
    width: 100%; height: 100%;
    position: relative;
}
.header-nav-submenu-lg-post-img {
    padding-bottom: 50.966%;
    margin-bottom: 16px;
}
.header-nav-submenu-lg-post-title {
    font-size: 14px;
    font-weight: 600;
    line-height: 1.4;
    letter-spacing: 0.28px; 
    color: var(--black);
    margin-bottom: 8px;
}
.header-nav-submenu-lg-post-text {
    font-size: 14px;
    font-weight: 500;
    line-height: 1.8;
    letter-spacing: 0.28px; 
    color: var(--black-50);
    margin-bottom: 8px;
}
.header-nav-submenu-lg-post-link {
    padding-top: 8px;
}
.btn-link-black-wchev,
.btn-link-black-wchev:focus,
.btn-link-black-wchev:active {
    display: inline-block;
    font-size: 12px;
    font-style: normal;
    font-weight: 500;
    line-height: 1.6;
    letter-spacing: 0.24px; 
    color: var(--black);
    position: relative;
    padding-right: 20px;
    transition: 0.2s ease-in-out;
    cursor: pointer;
}
.btn-link-black-wchev:before,
.btn-link-black-wchev:after {
    content: '';
    width: 20px; height: 20px;
    background: url(../img/icon-chev-right-20-black.svg) no-repeat center center;
    background-size: contain !important;
    position: absolute;
    top: 50%; right: 0;
    transform: translateY(-50%);
    transition: 0.2s ease-in-out;
}
.btn-link-black-wchev:after {
    background: url(../img/icon-chev-right-20-blue.svg) no-repeat center center;
    opacity: 0;
}
.btn-link-black-wchev:hover,
a:hover .btn-link-black-wchev {
    color: var(--blue);
}
.btn-link-black-wchev:hover::before,
a:hover .btn-link-black-wchev::before {
    opacity: 0;
}
.btn-link-black-wchev:hover::after,
a:hover .btn-link-black-wchev::after {
    opacity: 1;
}
.header-nav-submenu-lg-right-item-list ul li {
    margin-bottom: 32px;
}
.header-nav-submenu-lg-right-item-list ul li:last-child {
    margin-bottom: 0;
}
.header-nav-submenu-lg-right-item-list ul li a {
    display: block;
}
.header-nav-submenu-lg-right-item-list ul li p {
    font-size: 12px;
    font-weight: 500;
    line-height: 1.6;
    letter-spacing: 0.24px; 
    color: var(--black-60);
    padding-top: 8px;
}
.header-nav-submenu-lg-right-subnav {
    display: none;
    width: 100%;
}
.header-nav-submenu-lg-right-subnav.is-active {
    display: block;
}
.header-nav-submenu-lg-right-box {
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
}
.header-right ul {
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;

    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}
.header-right ul li {
    float: left;
    margin-right: 48px;
}
.header-right ul li:last-child {
    margin-right: 0;
}
.btn-link-blue,
.btn-link-blue:focus,
.btn-link-blue:active {
    display: inline-block;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.4;
    letter-spacing: 0.28px; 
    color: var(--blue);
    transition: 0.2s ease-in-out;
    cursor: pointer;
}
.btn-link-blue:hover {
    color: var(--black);
}
.btn-bordered-blue,
.btn-bordered-blue:focus,
.btn-bordered-blue:active {
    display: inline-block;
    padding: 12px 24px 11px 24px;
    border: 1px solid var(--blue);
    border-radius: 40px;
    position: relative;
    cursor: pointer;
    transition: 0.2s ease-in-out;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.4;
    letter-spacing: 0.28px; 
    color: var(--blue);
}
.btn-bordered-blue:hover {
    border-color: var(--blue-dark);
    color: var(--blue-dark);
}
.menu-item-has-children-sm {
    position: relative;
}
.header-nav-submenu-sm {
    position: absolute;
    top: calc(100% + 1px); left: 0;
    width: 280px;
    background: var(--white);
    display: none;
}
.header-nav-submenu-sm ul {
    margin: 0;
    opacity: 0;
    transform: translateY(-10px);
    transition-timing-function: cubic-bezier(.4,0,.2,1);
    transition-duration: .4s;
}
.header-nav-submenu-sm.is-active ul {
    opacity: 1;
    transform: translateY(0);
}
.header-nav-submenu-sm ul li a {
    display: block;
    font-size: 16px;
    font-weight: 600;
    line-height: 1.5;
    color: var(--black-50);
    padding: 16px 60px 14px 24px;
    position: relative;
    transition: 0.2s ease-in-out;
}
.header-nav-submenu-sm ul li a::after {
    content: '';
    width: 20px; height: 20px;
    background: url(../img/icon-arrow-20-black.svg) no-repeat center center;
    background-size: contain;
    position: absolute;
    top: 50%; right: 24px;
    transform: translateY(-50%);
    opacity: 0;
    transition: 0.2s ease-in-out;
}
.header-nav-submenu-sm ul li a:hover {
    color: var(--black);
    background: var(--blue-008);
}
.header-nav-submenu-sm ul li a:hover::after {
    opacity: 1;
}
.mobile-menu ul {
    border-top: 1px solid var(--black-10);
    height: 100%;
    overflow: auto;
}
.mobile-menu ul li {
    border-bottom: 1px solid var(--black-10);
}
.mobile-menu ul li a {
    display: block;
    font-size: 16px;
    font-weight: 600;
    line-height: 1.5;
    color: var(--black);
    padding: 20px 50px 18px 16px;
    position: relative;
    transition: 0.2s ease-in-out;
}
.mobile-menu ul li.has-submenu a::after {
    content: '';
    width: 20px; height: 20px;
    background: url(../img/icon-arrow-20-black.svg) no-repeat center center;
    background-size: contain;
    position: absolute;
    top: 50%; right: 16px;
    transform: translateY(-50%);
}
.mobile-menu-main {
    position: absolute;
    top: 0; right: 0; bottom: 0; left: 0;
    background: var(--white);
    z-index: 2;
    height: 100vh;
    padding-top: 59px;
    display: none;
}
.mobile-menu-subs {
    position: fixed;
    top: 0; right: 0; bottom: 0; left: 0;
    pointer-events: none;
    z-index: 4;
    overflow: hidden;
}
.mobile-menu-subs.is-active {
    opacity: 1;
    visibility: visible;
}
.mobile-menu-sub-item {
    transform: translateX(100%);
    background: var(--white);
    height: 100vh;
    pointer-events: all;
    transition: 0.2s ease-in-out;
    position: fixed;
    top: 0; right: 0; bottom: 0; left: 0;
    overflow: auto;
    padding-bottom: 58px;
}
.mobile-menu-sub-item.is-active {
    transform: translateX(0);
}
.mobile-menu-sub-item-top {
    padding: 16px;

    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;

    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;

    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}
.mobile-menu-back,
.mobile-menu-close {
    cursor: pointer;
    line-height: 0;
}
.mobile-menu-sub-item-content-item:first-child {
    border-top: 1px solid var(--black-10);
}
.mobile-menu-sub-item-content-item a {
    display: block;
    padding: 18px 16px 16px;
    border-bottom: 1px solid var(--black-10);
}

.home-section-intro {
    padding: 140px 0 0;
}
.home-section-intro-box {
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;

    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}
.home-section-intro-left {
    float: left;
    width: 57%;
    padding: 0 40px 80px 0;
    position: relative;
}
.section-title-64 {
    font-size: 64px; 
    font-weight: 600; 
    line-height: 1.2; 
    color: var(--black);
    margin-bottom: 32px;
}
.section-title-64.reveal-up-words {
    line-height: 0.5;
}
.section-title-64 strong {
    font-weight: 600; 
    color: var(--blue);
}
.section-title-64.section-title-64-white {
    color: var(--white);
}
.section-title-64.section-title-64-white strong {
    color: var(--white-50);
}
.home-section-intro-left .section-title-64 {
    margin-bottom: 40px;
}
.text-14 {
    font-size: 14px; 
    font-weight: 500; 
    line-height: 1.8;
    letter-spacing: 0.28px; 
    color: var(--black-80);
}
.text-14.text-14-white {
    color: var(--white-80);
}
.home-section-intro-left .text-14 {
    max-width: 446px;
}
.scroll-down {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 18px;
    height: 60px;
    z-index: 10;
    cursor: pointer;
}
.scroll-down::after {
    position: absolute;
    content: '';
    background: url(../img/icon-arrow-down-11-black.svg) no-repeat center center / 100%;
    left: 0;
    width: 100%;
    top: 0;
    height: 10px;
    -webkit-animation: scroll 3s linear infinite; 
    animation: scroll 3s linear infinite;
}
@-webkit-keyframes scroll {
	0%    { -webkit-transform: translateY(0px); transform: translateY(0px); opacity: 1; }
	100%  { -webkit-transform: translateY(50px); transform: translateY(50px); opacity: 0;}
}
@keyframes scroll {
	0%    { -webkit-transform: translateY(0px); transform: translateY(0px); opacity: 1; }
	100%  { -webkit-transform: translateY(50px); transform: translateY(50px); opacity: 0;}
}
.home-section-intro-right {
    float: left;
    width: 43%;
    padding-left: 40px;
}
.locations-search-form {
    margin-bottom: 64px;
}
.locations-search-form label {
    display: block;
    font-size: 14px; 
    font-weight: 600; 
    line-height: 1.4;
    letter-spacing: 0.28px; 
    color: var(--black);
    margin: 0 0 16px;
}
.locations-search-form-box {
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;

    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;

    position: relative;
}
.locations-search-form input,
.locations-search-form input:focus {
    box-shadow: none;
    margin: 0;
    outline: none;
    border-radius: 40px;
    border: 1px solid var(--blue-008);
    background-color: var(--white); 
    background-image: url(../img/icon-search-16-black.svg); 
    background-repeat: no-repeat; 
    background-position: center left 32px; 
    background-size: 16px 16px;
    font-size: 14px; 
    font-weight: 500; 
    line-height: 1.8;
    letter-spacing: 0.28px; 
    color: var(--black);
    height: 52px;
    padding: 10px 56px;
    width: 316px;
}
.locations-search-form.is-active a:not(.disabled) {
    color: var(--white);
    background: var(--blue-dark);
}
.locations-search-form input::placeholder {
    color: var(--black-40);
    opacity: 1;
}
.locations-search-form input::-webkit-input-placeholder { /* Chrome/Opera/Safari */
    color: var(--black-40);
    opacity: 1;
}
.locations-search-form input::-moz-placeholder { /* Firefox 19+ */
    color: var(--black-40);
    opacity: 1;
}
.locations-search-form input:-ms-input-placeholder { /* IE 10+ */
    color: var(--black-40);
    opacity: 1;
}
.locations-search-form input:-moz-placeholder { /* Firefox 18- */
    color: var(--black-40);
    opacity: 1;
}
.locations-search-form a {
    min-width: 170px;
    margin-left: -50px;
    pointer-events: none;
}
.locations-search-form.is-active a {
    pointer-events: all;
}
.locations-search-form.no-auto input,
.locations-search-form.no-auto input:focus {
    border-color: red;
}
.btn-blue,
.btn-blue:focus,
.btn-blue:active {
    display: inline-block;
    cursor: pointer;
    text-align: center;
    transition: 0.2s ease-in-out;
    font-size: 14px; 
    font-weight: 600; 
    line-height: 1;
    letter-spacing: 0.28px; 
    color: var(--white);
    background: var(--blue);
    padding: 19px 28px 19px 32px;
    border-radius: 48px; 
}
.btn-blue span {
    display: inline-block;
    position: relative;
    padding-right: 28px;
}
.btn-blue span::after {
    content: '';
    width: 20px; height: 20px;
    background: url(../img/icon-btn-arrow-20-white.svg) no-repeat center center;
    background-size: contain;
    position: absolute;
    top: 50%; right: 0;
    transform: translateY(-50%);
    transition: 0.2s ease-in-out;
}
.btn-blue:hover {
    color: var(--white);
    background: var(--blue-dark);
}
.home-section-intro-right-img {
    padding-bottom: 131.7%;
}

.home-section-programs {
    padding: 90px 0 140px;
}
.home-section-programs-title {
    font-size: 14px;
    font-weight: 600;
    line-height: 1.4;
    letter-spacing: 0.28px; 
    margin-bottom: 40px;
}
.home-section-programs-list ul {
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;

    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}
.home-section-programs-list ul li {
    float: left;
    width: 25%;
    position: relative;
    margin-bottom: -1px;
    margin-right: -1px;
}
.home-section-programs-list ul li::after {
    content: '';
    width: 100%; 
    height: 100%;
    border: 1px solid var(--grey-dark);
    position: absolute;
    top: 0; left: 0;
    pointer-events: none;
}
.home-section-programs-list ul li.list-item-large {
    width: 50%;
}
.home-section-programs-list ul li .home-section-programs-list-text {
    max-width: 260px;
}
.home-section-programs-list ul li a {
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;

    -ms-flex-wrap: wrap;
    flex-wrap: wrap;

    -ms-flex-line-pack: justify;
    align-content: space-between;

    padding: 28px;
    min-height: 280px;
    position: relative;
    transition: 0.2s ease-in-out;
    margin-right: 1px;
    height: 100%;
}
.home-section-programs-list ul li a:hover {
    background: var(--black-10);
}
.home-section-programs-list ul li a > div {
    width: 100%;
}
.home-section-programs-list-text {
    font-size: 12px;
    font-weight: 500;
    line-height: 1.6;
    letter-spacing: 0.24px; 
    color: var(--black-50);
    margin-bottom: 16px;
}
.home-section-programs-list-title {
    position: relative;
    padding-top: 64px;
    font-size: 32px;
    font-weight: 500;
    line-height: 1.4;
    color: var(--black);
}
.home-section-programs-list-title::before {
    content: '';
    width: 24px; height: 24px;
    border-radius: 50%;
    background-image: url(../img/icon-arrow-outer-24-blue.svg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: 24px 24px;
    position: absolute;
    top: 26px; left: 0;
    transition: 0.2s ease-in-out;
}
.home-section-programs-list-img {
    height: 100%;
    padding-bottom: 87%;
}

.home-section-blue {
    background: var(--other-blue-dark);
    padding: 100px 0 140px;
}
.home-section-blue .grid-container > :last-child {
    border-bottom: none;
    padding-bottom: 0;
    margin-bottom: 0;
}
.home-section-blue-line {
    padding-bottom: 140px;
    border-bottom: 1px solid var(--white-30);
    margin-bottom: 32px;
    transition-delay: 0.5s !important;
}
.home-section-blue-locations .text-14 {
    max-width: 397px;
}
.home-section-blue-locations-btn {
    padding-top: 32px;
}
.home-section-blue-locations-img img {
    margin-top: -52px;
    max-height: 369px;
}
.home-section-blue-text {
    font-size: 32px;
    font-weight: 500;
    line-height: 1.4; 
    color: var(--white-50);
    margin-bottom: 104px;
    max-width: 725px;
}
.home-section-blue-text.reveal-up-words {
    line-height: 1.119;
}
.home-section-blue-text strong {
    font-weight: 500;
    color: var(--white);  
}
.home-section-blue-slider-accordion {
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;

    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}
.home-section-blue-slider-accordion-left {
    float: left;
    width: 57%;
}
.home-section-blue-slider-accordion-right {
    float: left;
    width: 43%;
    padding-left: 10%;

    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;

    -ms-flex-wrap: wrap;
    flex-wrap: wrap;

    -ms-flex-line-pack: justify;
    align-content: space-between;
}
.home-section-blue-slider-accordion-right > * {
    width: 100%;
}
.slider-accordion-owl-img {
    padding-bottom: 66.7%;
}
.slider-accordion-owl-dot-title {
    font-size: 18px;
    font-weight: 600;
    line-height: 1.4;
    color: var(--white-50);
    padding: 20px 0;
    transition: 0.2s ease-in-out;
    cursor: pointer;
}
.slider-accordion-owl-dot-title:hover {
    color: var(--white);
}
.slider-accordion-owl-dots .owl-dot.active .slider-accordion-owl-dot-title {
    color: var(--white);
}
.slider-accordion-owl-dots > li:first-child .slider-accordion-owl-dot-title {
    padding-top: 0;
}
.slider-accordion-owl-dots > li {
    position: relative;
    border-bottom: 1px solid var(--white-30);
}
.slider-accordion-owl-dots > li::after {
    content: '';
    width: 0; height: 1px;
    background: var(--white);
    position: absolute;
    bottom: -1px; left: 0;
    z-index: 1;
}
.slider-accordion-owl-dots > li.active::after {
    -webkit-animation: slider-accordion-owl-dots 7s linear infinite; 
    animation: slider-accordion-owl-dots 7s linear infinite;
}
@keyframes slider-accordion-owl-dots {
	0%  { width: 0;}
	100%  { width: 100%;}
}
.slider-accordion-owl-dot-text {
    padding: 6px 0 32px;
}
.slider-accordion-owl-dots .slider-accordion-owl-dot-text {
    display: none;
}
.slider-accordion-owl-dots > li:first-child .slider-accordion-owl-dot-text {
    display: block;
}
.slider-accordion-owl-dot-text ul {
    margin: 0;
}
.slider-accordion-owl-dot-text ul li {
    position: relative;
    padding-left: 34px;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.8;
    letter-spacing: 0.28px; 
    color: var(--white-80);
}
.slider-accordion-owl-dot-text ul li::before {
    content: '';
    width: 8px; height: 1px;
    background: var(--white-30);
    position: absolute;
    top: 11px; left: 0;
}
.btn-link-white-warrow,
.btn-link-white-warrow:focus,
.btn-link-white-warrow:active {
    display: inline-block;
    cursor: pointer;
    position: relative;
    transition: 0.2s ease-in-out;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.4;
    letter-spacing: 0.28px; 
    padding-right: 26px;
    color: var(--white);
}
.btn-link-white-warrow::before,
.btn-link-white-warrow::after {
    content: '';
    width: 20px; height: 20px;
    background: url(../img/icon-btn-arrow-20-white.svg) no-repeat center center;
    position: absolute;
    top: 50%; right: 0;
    transform: translateY(-50%);
    transition: 0.2s ease-in-out;
}
.btn-link-white-warrow::after {
    background: url(../img/icon-btn-arrow-20-blue.svg) no-repeat center center;
    opacity: 0;
}
.btn-link-white-warrow:hover {
    color: var(--blue);
}
.btn-link-white-warrow:hover::before {
    opacity: 0;
}
.btn-link-white-warrow:hover::after {
    opacity: 1;
}
.home-section-blue-slider-accordion-right-btn {
    margin-top: 48px;
}
.slider-accordion-owl .owl-nav {
    position: absolute;
    bottom: 0; right: 0;
}
.slider-accordion-owl .owl-nav button,
.slider-accordion-owl .owl-nav button:focus,
.slider-accordion-owl .owl-nav button:active {
    display: inline-block;
    width: 40px; height: 40px;
    border: 1px solid var(--white) !important;
    border-radius: 50%;
    margin-left: 12px;
    background-size: 20px 20px !important;
}
.slider-accordion-owl .owl-nav button.owl-prev,
.slider-accordion-owl .owl-nav button.owl-prev:focus,
.slider-accordion-owl .owl-nav button.owl-prev:active {
    background: url(../img/icon-owl-prev-20-white.svg) no-repeat center center;
}
.slider-accordion-owl .owl-nav button.owl-next,
.slider-accordion-owl .owl-nav button.owl-next:focus,
.slider-accordion-owl .owl-nav button.owl-next:active {
    background: url(../img/icon-owl-next-20-white.svg) no-repeat center center;
}
.slider-accordion-owl .owl-nav button.disabled {
    opacity: 0.5;
}
.slider-accordion-owl .owl-nav button span {
    display: none;
}

.home-section-parallax-bg {
    min-height: 100vh;
    position: relative;
    padding: 120px 0;
}
.home-section-parallax-bg-img {
    position: absolute;
    top: 0; right: 0; bottom: 0; left: 0;
    z-index: -1;
    overflow: hidden;
}
.btn-white,
.btn-white:focus,
.btn-white:active {
    display: inline-block;
    cursor: pointer;
    text-align: center;
    transition: 0.2s ease-in-out;
    font-size: 14px; 
    font-weight: 600; 
    line-height: 1;
    letter-spacing: 0.28px; 
    color: var(--blue-dark);
    background: var(--white);
    padding: 19px 28px 19px 32px;
    border-radius: 48px; 
}
.btn-white span {
    display: inline-block;
    position: relative;
    padding-right: 28px;
}
.btn-white span::before {
    content: '';
    width: 20px; height: 20px;
    background: url(../img/icon-btn-arrow-20-blue-dark.svg) no-repeat center center;
    background-size: contain;
    position: absolute;
    top: 50%; right: 0;
    transform: translateY(-50%);
    transition: 0.2s ease-in-out;
}
.btn-white span::after {
    content: '';
    width: 20px; height: 20px;
    background: url(../img/icon-btn-arrow-20-white.svg) no-repeat center center;
    background-size: contain;
    position: absolute;
    top: 50%; right: 0;
    transform: translateY(-50%);
    transition: 0.2s ease-in-out;
    opacity: 0;
}
.btn-white:hover {
    color: var(--white);
    background: var(--blue-dark);
}
.btn-white:hover span::before {
    opacity: 0;
}
.btn-white:hover span::after {
    opacity: 1;
}
.home-section-parallax-bg-box {
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;

    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}
.home-section-parallax-bg-left {
    float: left;
    width: calc(100% - 440px);
    padding-right: 10%;
}
.home-section-parallax-bg-left .text-14 {
    max-width: 400px;
}
.home-section-parallax-bg-btn {
    padding-top: 32px;
}
.home-section-parallax-bg-right {
    float: left;
    width: 440px;
}
.home-section-parallax-bg-list ul {
    border: 1px solid var(--white-30);
}
.home-section-parallax-bg-list ul li {
    padding: 12px;
    border-bottom: 1px solid var(--white-30);
    margin-bottom: -1px;

    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
}
.home-section-parallax-bg-list ul li:last-child {
    border-bottom: none;
}
.home-section-parallax-bg-list-img {
    float: left;
    width: 200px;
    height: 144px;
}
.home-section-parallax-bg-list-textbox {
    float: left;
    width: calc(100% - 200px);
    padding-left: 16px;
}
.home-section-parallax-bg-list-text {
    font-size: 12px;
    font-weight: 500;
    line-height: 1.6;
    letter-spacing: 0.24px; 
    color: var(--white-80);
    margin-top: 6px;
    margin-bottom: 8px;
}
.home-section-parallax-bg-list-title {
    font-size: 64px;
    font-weight: 600;
    line-height: 1.2;
    color: var(--white);
}

.home-section-why {
    padding: 120px 0 80px;
    /* overflow: hidden; */
}
.home-section-why-box {
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;

    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}
.home-section-why-left {
    float: left;
    width: 50%;
    padding-right: 8%;
}
.home-section-why-left .section-title-64 {
    margin-bottom: 142px;
}
.home-section-why-list ul {
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;

    -ms-flex-wrap: wrap;
    flex-wrap: wrap;

    margin-bottom: -40px;
}
.home-section-why-list ul li {
    float: left;
    width: 41%;
    margin: 0 18% 40px 0;
}
.home-section-why-list ul li:nth-child(2n) {
    margin-right: 0;
}
.home-section-why-list ul li:nth-child(2n + 1) {
    clear: both;
}
.home-section-why-list-icon {
    height: 32px;
    margin-bottom: 16px;
}
.home-section-why-list-text {
    font-size: 14px;
    font-weight: 500;
    line-height: 1.8;
    letter-spacing: 0.28px; 
    color: var(--black-80);
}
.home-section-why-right {
    float: left;
    width: 50%;
    padding-left: 10.16%;
}
.home-section-why-right-box {
    position: relative;
}
.home-section-why-right-img {
    padding-bottom: 136.3%;
}
.home-section-why-right-parallax {
    position: absolute;
    top: 50%; left: -47px;
    transform: translateY(-50%);
}
.home-section-why-right-parallax img {
    position: relative;
}

footer {
    padding: 80px 0 64px;
}
.footer-socials {
    padding-bottom: 24px;
}
.footer-socials ul {
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;

    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}
.footer-socials ul li {
    float: left;
    margin-right: 16px;
    line-height: 0;
}
.footer-socials ul li a {
    display: block;
}
.footer-socials ul li a svg g path {
    transition: 0.2s ease-in-out;
}
.footer-socials ul li a:hover svg g:not(.socials-other) path:nth-child(1),
.footer-socials ul li a:hover svg g:not(.socials-other) path:nth-child(3) {
    fill: var(--black);
    fill-opacity: 1;
}
.footer-socials ul li a:hover svg g:not(.socials-other) path:nth-child(2) {
    fill: var(--white);
    fill-opacity: 1;
}
.footer-socials ul li a:hover svg g.socials-other path:nth-child(2) {
    fill: var(--white);
    fill-opacity: 1;
}
.footer-socials ul li a:hover svg g.socials-other path:nth-child(1) {
    fill: var(--black);
    fill-opacity: 1;
}
.footer-box {
    padding-top: 24px;
    border-top: 1px solid rgba(40, 40, 40, 0.10);
    font-size: 12px;
    font-weight: 500;
    line-height: 1.6;
    letter-spacing: 0.24px; 
    color: var(--black-50);

    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;

    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;

}
.footer-box a {
    color: var(--blue);
    transition: 0.2s ease-in-out;
}
.footer-box a:hover {
    color: var(--blue-darke);
}
.footer-box-left {
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;

    width: 50%;
    padding-right: 8%;
}
.footer-box-left > div {
    float: left;
    width: 41%;
    margin-right: 18%;
    white-space: nowrap;
}
.footer-box-left > div:last-child {
    margin-right: 0;
}

.acf-map img {
   max-width: inherit !important;
}
.locations-section-main {
    min-height: 100vh;
    padding: 88px 0 24px;
    position: relative;
}
.locations-section-main-map {
    position: absolute;
    top: 64px; right: 0; bottom: 0; left: 0;
}
.locations-section-main-map .acf-map  {
    position: absolute;
    top: 0; right: 0; bottom: 0; left: 0;
}
.locations-section-main-box {
    width: 375px;
    background: var(--white);
    position: relative;
    z-index: 10;
    padding: 22px 16px;
    min-height: calc(100vh - 112px);

    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;

    -ms-flex-wrap: wrap;
    flex-wrap: wrap;

    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}
.locations-section-main-box > div {
    width: 100%;
}
.locations-section-main-box-input.locations-search-form {
    margin-bottom: 24px;
}
.locations-section-main-box-input.locations-search-form input, 
.locations-section-main-box-input.locations-search-form input:focus {
    width: 100%;
    background-color: var(--grey);
    padding-right: 20px;
    margin: 0;
}
.locations-section-main-box-input.locations-search-form > span {
    width: 100%;
    margin-top: 12px;
}
.locations-section-main-box-filter {
    margin-bottom: 24px;
    overflow: hidden;
}
.locations-section-main-box-filter ul {
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;

    -ms-flex-wrap: wrap;
    flex-wrap: wrap;

    width: calc(100% + 32px);
    margin-bottom: -12px;
}
.locations-section-main-box-filter ul li {
    float: left;
    width: calc(50% - 32px);
    margin: 0 32px 12px 0;
}
.locations-section-main-box-filter .switch {
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;

    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;

    margin: 0;
}
.locations-section-main-box-filter .switch.tiny {
    height: auto;
}
.locations-section-main-box-filter .switch input {
    display: none;
}
.locations-section-main-box-filter .switch.tiny .switch-paddle {
    width: 28px;
    height: 16px;
    min-width: 28px;
    min-height: 16px;
    font-size: 12px;
    overflow: hidden;
    border-radius: 12px; 
    border: 1px solid var(--blue-008);
    background: var(--blue-008);
}
.locations-section-main-box-filter .switch.tiny .switch-paddle::after {
    top: 1px;
    left: 2px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    -webkit-filter: drop-shadow(0px 1px 2px rgba(16, 24, 40, 0.06)) drop-shadow(0px 1px 3px rgba(16, 24, 40, 0.10));
    filter: drop-shadow(0px 1px 2px rgba(16, 24, 40, 0.06)) drop-shadow(0px 1px 3px rgba(16, 24, 40, 0.10)); 
    background: var(--white);
}
.locations-section-main-box-filter .switch.tiny input:checked ~ label .switch-paddle {
    background: var(--blue);
}
.locations-section-main-box-filter .switch.tiny input:checked ~ label .switch-paddle::after {
    left: 12px;
}
.locations-section-main-box-filter .switch.tiny input:checked ~ label .switch-paddle-text {
    color: var(--black);
}
.locations-section-main-box-filter .switch label {
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;

    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    
    margin: 0;
}
.locations-section-main-box-filter .switch .switch-paddle-text {
    font-size: 12px;
    font-weight: 500;
    line-height: 1.6;
    letter-spacing: 0.24px; 
    color: var(--black-50);
    transition: 0.2s ease-in-out;
    margin-left: 8px;
}
.locations-section-main-box-results-hold {
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;

    -ms-flex-wrap: wrap;
    flex-wrap: wrap;

    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;

    -webkit-box-flex: 1;
    -ms-flex: 1 1 0px;
    flex: 1 1 0; 

    background: var(--grey);
    padding: 20px 16px 0;
}
.locations-section-main-box-results-hold > div {
    width: 100%;
}
.locations-section-main-box-results-title {
    font-size: 14px;
    font-weight: 600;
    line-height: 1.4;
    letter-spacing: 0.28px; 
    padding: 0 40px 12px 0;
    border-bottom: 1px solid var(--blue-008);
    margin-bottom: 12px;
}
.locations-section-main-box-results-list {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 0px;
    flex: 1 1 0; 
    overflow: auto;
}
.locations-section-main-box-results-list ul li {
    padding: 20px;
    background: var(--white);
    margin-bottom: 12px;

    font-size: 14px;
    font-weight: 600;
    line-height: 1.4;
    letter-spacing: 0.28px; 
    color: var(--black);
    cursor: pointer;
}
.locations-section-main-box-results-list ul li:last-child {
    margin-bottom: 20px;
}
.locations-section-main-box-results-list-cat {
   color: var(--black-40);
}
.locations-section-main-box-results-list-address {
    font-size: 12px;
    font-weight: 500;
    line-height: 1.6;
    letter-spacing: 0.24px; 
    color: var(--black-80);
    margin-top: 12px;
}
.locations-section-main-box-results-list-link {
    margin-top: 20px;
    border-top: 1px solid var(--black-10);
    padding-top: 20px;
}
.btn-link-blue-warrow,
.btn-link-blue-warrow:focus,
.btn-link-blue-warrow:active {
    display: inline-block;
    cursor: pointer;
    position: relative;
    transition: 0.2s ease-in-out;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.4;
    letter-spacing: 0.28px; 
    padding-right: 26px;
    color: var(--blue);
}
.btn-link-blue-warrow::before,
.btn-link-blue-warrow::after {
    content: '';
    width: 20px; height: 20px;
    background: url(../img/icon-btn-arrow-20-blue.svg) no-repeat center center;
    position: absolute;
    top: 50%; right: 0;
    transform: translateY(-50%);
    transition: 0.2s ease-in-out;
}
.btn-link-blue-warrow::after {
    background: url(../img/icon-btn-arrow-20-blue-dark.svg) no-repeat center center;
    opacity: 0;
}
.btn-link-blue-warrow:hover {
    color: var(--blue-dark);
}
.btn-link-blue-warrow:hover::before {
    opacity: 0;
}
.btn-link-blue-warrow:hover::after {
    opacity: 1;
}

.cluster {
    color: var(--white);
    font-size: 12px;
    font-weight: 600;
    line-height: 30px;
}
.cluster img {
    transition: 0.2s ease-in-out;
}
.cluster:hover img {
    -webkit-filter: brightness(71.1%);
    filter: brightness(71.1%);
}

.gm-style .gm-style-iw-c {
    font-family: 'Nuckle', sans-serif !important;
    width: 310px !important;
    box-shadow: none !important;
    border-radius: 0 !important;
    padding: 20px !important;
    font-size: 14px !important;
    font-weight: 600 !important;
    line-height: 1.4 !important;
    letter-spacing: 0.28px !important;
}
.gm-style .locations-section-main-box-results-list-title {
    padding-right: 40px;
}
.gm-ui-hover-effect,
.gm-ui-hover-effect:focus,
.gm-ui-hover-effect:active {
    display: inline-block !important;
    width: 16px !important; 
    height: 16px !important;
    background: url(../img/icon-close-16-black.svg) no-repeat center center !important;
    background-size: 16px 16px !important;
    position: absolute !important;
    top: 20px !important; 
    right: 20px !important;
    opacity: 1 !important;
    transition: 0.2s ease-in-out !important;
}
.gm-ui-hover-effect:hover {
    background: url(../img/icon-close-16-blue.svg) no-repeat center center !important;
}
.gm-ui-hover-effect span {
    display: none !important;
}

.four-o-four-section {
    min-height: calc(100vh - 235px);
    padding: 144px 0;
}
.four-o-four-title {
    font-size: 44px;
    font-weight: 600;
    line-height: 1.24;
    margin-bottom: 32px;
}
.four-o-four-title.reveal-up-words {
    line-height: 0.808;
}
.four-o-four-title strong {
    font-weight: 600;
    color: var(--blue);
}

.cluster img {
    width: 28px !important;
    height: 34px !important;
}
.gm-style .gm-style-iw-d {
    padding: 0 !important;
    overflow: visible !important;
}

/* locations v2 */
.location-section-v2 {
    padding: 104px 0 0;
}
.location-section-v2-top-title {
    margin-bottom: 40px;
}


.location-section-v2-mapbox {
    float: left;
    width: calc(100% - 408px);
    background: var(--white);
    padding: 32px 20px 195px;
}
.location-section-v2-searchbox-hold {
    float: left;
    width: 408px;
    padding-left: 8px;
}
.location-section-v2-searchbox {
    background: var(--white);
    padding: 24px 20px;
    height: 100%;
}
.location-section-v2-search {
    margin-bottom: 24px;
}
.location-section-v2-search label {
    font-size: 14px;
    font-weight: 600;
    line-height: 1.4;
    letter-spacing: 0.28px;
    padding: 0 8px;
    margin-bottom: 16px;
}
.location-section-v2-search-input form {
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;

    border-radius: 40px;
    border: 1px solid var(--black-10);
}
.location-section-v2-search input,
.location-section-v2-search input:focus {
    background: transparent url(../img/icon-search-16-black.svg) no-repeat center left 24px;
    box-shadow: none;
    border: none;
    outline: none;
    margin: 0;
    height: 52px;
    padding: 12px 24px 12px 56px;
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: 1.8;
    letter-spacing: 0.28px;
}
.location-section-v2-search input.is-error {
    border-color: red;
}
.location-section-v2-search input::placeholder {
    color: var(--black);
    opacity: 0.4;
}
.location-section-v2-search input::-webkit-input-placeholder { /* Chrome/Opera/Safari */
    color: var(--black);
    opacity: 0.4;
}
.location-section-v2-search input::-moz-placeholder { /* Firefox 19+ */
    color: var(--black);
    opacity: 0.4;
}
.location-section-v2-search input:-ms-input-placeholder { /* IE 10+ */
    color: var(--black);
    opacity: 0.4;
}
.location-section-v2-search input:-moz-placeholder { /* Firefox 18- */
    color: var(--black);
    opacity: 0.4;
}

.location-section-v2-search-my-location span {
    display: inline-block;
    position: relative;
    transition: 0.2s ease-in-out;
    cursor: pointer;
    font-size: 14px;
    font-style: normal;
    font-weight: 600;
    line-height: 1.4;
    letter-spacing: 0.28px; 
    color: var(--blue);
    padding-left: 25px;
}
.location-section-v2-search-my-location span::before,
.location-section-v2-search-my-location span::after {
    content: '';
    width: 17px; height: 16px;
    background-size: contain !important;
    margin-right: 8px;
    position: absolute;
    top: 50%; left: 0;
    transform: translateY(-50%);
    transition: 0.2s ease-in-out;
}
.location-section-v2-search-my-location span::before {
    background: url(../img/icon-my-location.svg) no-repeat center center;
}
.location-section-v2-search-my-location span::after {
    background: url(../img/icon-my-location-dark-blue.svg) no-repeat center center;
    opacity: 0;
}
.location-section-v2-search-my-location span:hover {
    color: var(--blue-dark);
}
.location-section-v2-search-my-location span:hover::before {
    opacity: 0;
}
.location-section-v2-search-my-location span:hover::after {
    opacity: 1;
}
.location-section-v2-search-results-hold {
    position: relative;
    padding-top: 26px;
}
.location-section-v2-search-results-title {
    font-size: 12px;
    font-weight: 500;
    line-height: 1.6;
    letter-spacing: 0.24px; 
    color: var(--black-50);
    margin-bottom: 12px;
}
.location-section-v2-search-results-title-failed {
    display: none;
}
.location-section-v2-search-results ul li a {
    display: block;
    position: relative;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.4;
    letter-spacing: 0.28px; 
    color: var(--black-40);
    padding: 16px 20px 16px 0;
    border-bottom: 1px solid var(--black-10);
    transition: 0.2s ease-in-out;
}
.location-section-v2-search-results ul li:first-child a {
    border-top: 1px solid var(--black-10);
}
.location-section-v2-search-results ul li a strong {
    color: var(--black);
    font-weight: 600;
    transition: 0.2s ease-in-out;
}
.location-section-v2-search-results ul li a strong span {
    color: var(--black-40);
}
.location-section-v2-search-results ul li a > span {
    display: inline-block;
    margin-left: 16px;
}
.location-section-v2-search-results ul li a::before,
.location-section-v2-search-results ul li a::after {
    content: '';
    width: 20px; height: 20px;
    background: url(../img/icon-btn-arrow-20-black.svg) no-repeat center center;
    position: absolute;
    top: 50%; right: 0;
    transform: translateY(-50%);
    transition: 0.2s ease-in-out;
}
.location-section-v2-search-results ul li a::after {
    background: url(../img/icon-btn-arrow-20-blue-dark.svg) no-repeat center center;
    opacity: 0;
}
.location-section-v2-search-results ul li a:hover strong {
    color: var(--blue-dark);
}
.location-section-v2-search-results ul li a:hover::before {
    opacity: 0;
}
.location-section-v2-search-results ul li a:hover::after {
    opacity: 1;
}
.location-section-v2-search-results ul li a.no-link {
    pointer-events: none;
}
.location-section-v2-search-results ul li a.no-link::before,
.location-section-v2-search-results ul li a.no-link::after {
    opacity: 0;
}
.location-section-v2-search-results ul li.is-matched.is-filtered strong span {
    display: none;
}
.location-section-v2-search-results-hold .preloader-hold {
   padding: 50px 0;
}
.location-section-v2-search-results-hold .preloader-hold {
    display: none;
}
.location-section-v2-search-results-hold .preloader-hold.is-active {
    display: block;
}
.location-section-v2-search-results-box {
    display: none;
}

.location-section-v2-locations {
    position: absolute;
    top: 50%; left: 50%;
    background: var(--white);
    box-shadow: 4px 4px 20px 0px rgba(0, 0, 0, 0.25); 
    width: 363px;
   
    z-index: 998;
    padding: 16px 0 16px 16px;
    opacity: 0;
    visibility: hidden;
   
}
.location-section-v2-locations ul {
    max-height: 484px;
    overflow: auto;
    padding-right: 16px;

    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;

    -ms-flex-wrap: wrap;
    flex-wrap: wrap;

    -ms-flex-line-pack: baseline;
    align-content: baseline;
}
.location-section-v2-locations ul li {
    width: 100%;
}
.location-section-v2-locations ul li a {
    padding: 8px 20px 8px 0;
    border-bottom: none;
    border-top: none;
}
.location-section-v2-locations ul li:first-child a {
    border-top: none;
}
.location-section-v2-list-state {
    order: -1;
}
.location-section-v2-locations ul li a.location-section-v2-locations-stateonly {
    border-bottom: 1px solid var(--black-10);
    font-size: 12px;
    font-style: normal;
    font-weight: 500;
    line-height: 1.6;
    letter-spacing: 0.24px; 
    color: var(--black-50);
    padding: 16px 20px 16px 0;
}
.location-section-v2-locations ul li a.location-section-v2-locations-stateonly strong {
    font-weight: 500;
    color: var(--black-50);
}
.location-section-v2-locations ul li a.location-section-v2-locations-stateonly:hover strong {
    color: var(--blue-dark);
}
.location-section-v2-locations ul li a.location-section-v2-locations-stateonly::before {
    background: url(../img/icon-btn-arrow-20-black-05.svg) no-repeat center center;
}
.location-section-v2-locations > span {
    display: inline-block;
    width: 28px; height: 28px;
    border-radius: 50%;
    background: #fff;
    position: absolute;
    top: -36px; right: 0;
    box-shadow: 4px 4px 20px 0px rgba(0, 0, 0, 0.25);
    cursor: pointer;
}
.location-section-v2-locations > span::before,
.location-section-v2-locations > span::after {
    content: '';
    width: 100%; height: 100%;
    background: url(../img/icon-close-16-black.svg) no-repeat center center;
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    transition: 0.2s ease-in-out;
}
.location-section-v2-locations > span::after {
    background: url(../img/icon-close-16-blue.svg) no-repeat center center;
    opacity: 0;
}
.location-section-v2-locations > span:hover::before {
    opacity: 0;
}
.location-section-v2-locations > span:hover::after {
    opacity: 1;
}

.location-section-v2-mapbox-filter {
    margin-bottom: 111px;
}
.location-section-v2-mapbox-filter ul {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;

    padding: 4px 5px;
    background: var(--grey);
    border-radius: 40px; 
}
.location-section-v2-mapbox-filter ul li {
    float: left;
    padding: 6px 16px;
    font-size: 12px;
    font-weight: 500;
    line-height: 1.6;
    letter-spacing: 0.24px; 
    transition: 0.2s ease-in-out;
    cursor: pointer;
    border-radius: 40px; 
}
.location-section-v2-mapbox-filter ul li:hover {
    background: var(--blue-dark);
    color: var(--white);
}
.location-section-v2-mapbox-filter ul li.is-active {
    background: var(--blue);
    color: var(--white);
    pointer-events: none;
}

.location-section-v2-map svg {
    max-width: 100%;
    height: auto;
}
.location-section-v2-map path {
    cursor: pointer;
    transition: 0.2s ease-in-out;
}
.location-section-v2-map circle {
    pointer-events: none;
    transition: 0.2s ease-in-out;
    opacity: 0;
}
.location-section-v2-map #Map > g {
    pointer-events: none;
}
.location-section-v2-map #Map > g.has-some {
    pointer-events: all;
}
.location-section-v2-map #Map > g.has-some-one circle {
    display: none !important;
}
.location-section-v2-map g.has-some path:hover,
.location-section-v2-map g.is-active path {
    fill: var(--blue-dark) !important;
}
.location-section-v2-map text {
    font-style: normal;
    font-weight: 600;
    line-height: 1.6;
    letter-spacing: 0.2px; 
    color: var(--blue-dark);
    transition: 0.2s ease-in-out;
    opacity: 0;
    pointer-events: none;
}
.location-section-v2-map g.has-some circle,
.location-section-v2-map g.has-some text {
    opacity: 1;
}
.location-section-v2-map g.has-some path {
    fill: var(--blue);
}


























/* Animations */
.animation-element.reveal-up-words {
    opacity: 0;
}
.animation-element.reveal-up-words.in-view {
    opacity: 1;
}
.animation-element.reveal-up-words .word {
    display: inline-block;
    position: relative;
    overflow: hidden;
    line-height: 1.2;
}
.animation-element.reveal-up-words.in-view .word .char {
    transform: translateY(0%);
}
.animation-element.reveal-up-words .word .char {
    display: inline-block;
    transform: translateY(100%);
    transition: transform 0.6s;
    transition-delay: calc(30ms* var(--word-index)) !important;
}

.animation-element.fade-up {
    opacity: 0;
    transition: opacity 1s linear, transform 0.9s ease;
}
.animation-element.fade-up.in-view {
    opacity: 1;
    transform: translateY(0px);
}
.animation-element.fade-in {
    opacity: 0;
    transition: opacity 1s linear;
}
.animation-element.fade-in.in-view {
    opacity: 1;
}

/* Media */
@media only screen and (max-width: 1239px) {

    .header-nav-submenu-lg-right {
        padding: 40px 0 65px 40px;
    }
	.header-nav-submenu-lg-right-item {
        margin-right: 8%;
    }
    .header-nav-submenu-lg-post {
        width: 240px;
    }
    .home-section-why-left {
        padding-right: 0;
    }
    .footer-box-left {
        padding-right: 0;
    }
} /* end of max-width 1239 */

@media only screen and (max-width: 1023px) {

    header {
        padding: 8px 0;
    }
    header .grid-container {
        position: relative;
        z-index: 3;
    }
	.hamburger {
		display: inline-block;
	}
    .header-right {
        display: none;
    }
    .header-nav {
        display: none;
    }
    .header-logo img {
        max-height: 42px;
    }
    .header-nav-submenu-post a {
        padding: 20px 16px 38px;
        border-bottom: 1px solid var(--black-10);
    }
    .header-nav-submenu-lg-right-item-list ul li {
        margin-bottom: 0;
    }
    footer {
        padding: 80px 0 40px;
    }
    .home-section-why {
        padding: 64px 0 0;
    }      
    .home-section-why-left {
        width: 100%;
        margin-bottom: 64px;
    }
    .home-section-why-left .section-title-64 {
        margin-bottom: 48px;
    }
    .section-title-64 {
        font-size: 48px;
        line-height: 1.24;
        margin-bottom: 24px;
    }
    .home-section-why-right {
        width: 100%;
        padding-left: 0;
    }
    .home-section-why-right-img {
        padding-bottom: 100%;
    }
    .home-section-why-right-parallax {
        position: absolute;
        left: 50%;
        transform: translate(-65%, -50%);
    }
    .home-section-parallax-bg {
        padding: 64px 0;
    }
    .home-section-parallax-bg-left {
        width: 100%;
        padding-right: 0;
        margin-bottom: 80px;
    }
    .home-section-parallax-bg-btn {
        padding-top: 24px;
    }
    .home-section-parallax-bg-list-title {
        font-size: 48px;
        line-height: 1.24;
    }
    .home-section-blue {
        padding: 64px 0 68px;
        overflow: hidden;
    }
    .home-section-blue-slider-accordion-left {
        width: 100%;
        padding-right: 26.8%;
        position: relative;
    }
    .home-section-blue-slider-accordion-right {
        display: none !important;
    }
    .slider-accordion-owl-img {
        padding-bottom: 71.8%;
    }
    .slider-accordion-owl {
        position: static;
    }
    .slider-accordion-owl .owl-stage-outer {
        overflow: visible;
        padding-bottom: 64px;
    }
    .slider-accordion-owl-dot-title {
        padding: 16px 0;
        cursor: default;
        color: var(--white);
    }
    .slider-accordion-owl-dot-text {
        padding: 0 0 0;
    }
    .home-section-blue-text {
        font-size: 24px;
        line-height: 1.38;
        margin-bottom: 80px;
    }
    .home-section-blue-slider-accordion-right-btn {
        margin-top: 0;
        position: absolute;
        bottom: 8px; left: 0;
    }
    .home-section-blue-locations-img {
        margin-top: 64px;

        display: -moz-box;
        display: -ms-flexbox;
        display: -webkit-flex;
        display: flex;
    
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
    
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
    }
    .home-section-blue-locations-img img {
        margin-top: 0;
        min-width: calc(100% + 32px);
        margin-left: -16px;
    }
    .home-section-blue-line {
        padding-bottom: 88px;
    }
    .home-section-programs {
        padding: 0 0 64px;
    }
    .home-section-programs-list ul li {
        width: 50%;
    }
    .scroll-down {
        display: none;
    }
    .home-section-intro {
        padding: 82px 0 48px;
    }
    .home-section-intro-left {
        width: 100%;
        padding: 0;
        margin-bottom: 48px;
    }
    .home-section-intro-left .section-title-64 {
        margin-bottom: 32px;
    }
    .home-section-intro-right {
        width: 100%;
        padding-left: 0;
    }
    .locations-search-form {
        margin-bottom: 0;
    }
    .home-section-intro-right-img {
        padding-bottom: 100%;
        margin-bottom: 24px;
    }
    .locations-section-main {
        min-height: 100vh;
        padding: 0 0;
    }
    .locations-section-main-map {
        top: 0;
        position: relative;
        height: calc(100vh - 221px);
        margin-top: 59px;
        transition: 0.2s ease-in-out;
    }
    .locations-section-main-map.is-active {
        height: 26vh;
    }
    .locations-section-main-box {
        width: calc(100% + 32px);
        margin-left: -16px;
        padding: 12px 16px 22px;
        min-height: 1px;
    }
    .locations-section-main-box-results-hold {
        min-height: 712px;
    }
    .locations-section-main-box-trigger {
        width: 100%; height: 20px;
        position: relative;
        cursor: pointer;
    }
    .locations-section-main-box-trigger::after {
        content: '';
        width: 64px; height: 3px;
        background: var(--black-10);
        position: absolute;
        top: 0; left: 50%;
        transform: translateX(-50%);
    }
    .locations-section-main-box-input label {
        display: none;
    }
    .four-o-four-section {
        min-height: calc(100vh - 213px);
        padding: 82px 0;
    }
    .four-o-four-title {
        font-size: 36px;
    }
    .btn-blue,
    .btn-blue:focus,
    .btn-blue:active {
        padding: 20px 28px 18px 32px;
    }
    .btn-blue span::after {
        top: calc(50% - 2px);
    }

    .location-section-v2-top-title {
        margin-bottom: 24px;
    }
    .location-section-v2-mapbox {
        width: calc(100% + 32px);
        margin-left: -16px;
        padding: 24px 10px;
        margin-bottom: 16px;
    }
    .location-section-v2-searchbox-hold {
        width: 100%;
        padding-left: 0;
    }
    .location-section-v2 .grid-container {
        position: relative;
    }
    .location-section-v2-locations {
        top: 44px !important;
        left: 16px !important;
        right: 16px !important;
        width: calc(100% - 32px);
    }
    .location-section-v2-mapbox-filter ul li {
        padding: 6px 12px;
    }
} /* end of max-width 1023 */

@media screen and (max-width:639px) {
	.entry iframe {
		max-width: 100%;
	}
    .section-title-64 {
        font-size: 40px;
    }
    .home-section-why-list {
        overflow: hidden;
    }
    .home-section-why-list ul {
        width: calc(100% + 24px);
    }
    .home-section-why-list ul li {
        width: calc(50% - 24px);
        margin: 0 24px 48px 0 !important;
    }
    .home-section-why-list-text {
        font-size: 12px;
        line-height: 1.6;
        letter-spacing: 0.24px;
    }
    .home-section-parallax-bg-right {
        width: 100%;
    }
    .home-section-parallax-bg-list ul li {
        padding: 12px 10px;
    }
    .home-section-parallax-bg-list-title {
        font-size: 36px;
    }
    .home-section-programs-list ul li {
        width: 100% !important;
    }
    .home-section-programs-list ul li.list-item-img {
        display: none;
    }
    .home-section-programs-list ul li a {
        padding: 16px 20px;
        min-height: 200px;
    }
    .home-section-programs-list-title {
        font-size: 24px;
        line-height: 1.38;
        padding-top: 40px;
    }
    .home-section-programs-list-title::before {
        top: 0;
    }
    .locations-search-form-box {
        display: block;
    }
    .locations-search-form input,
    .locations-search-form input:focus {
        width: 100%;
        margin-bottom: 16px;
    }
    .locations-search-form a {
        min-width: 170px;
        margin-left: 0;
        width: 100%;
    }
    .four-o-four-btn a,
    .four-o-four-btn a:focus,
    .four-o-four-btn a:active {
        width: 100%;
    }

    .location-section-v2-search-input form {
        display: block;
        border: none;
    }
    .location-section-v2-search input, 
    .location-section-v2-search input:focus {
        border: 1px solid var(--black-10);
        border-radius: 48px; 
        margin-bottom: 12px;
    }
    .location-section-v2-search-input button,
    .location-section-v2-search-input button:focus,
    .location-section-v2-search-input button:active {
        width: 100%;
        text-align: center;
    }
    .location-section-v2-searchbox {
        padding: 18px 18px;
    }
} /* end of max-width 639 */

@media screen and (max-width:374px) {
    .home-section-parallax-bg-list-img {
        width: 160px;
        height: 104px;
    }
    .home-section-parallax-bg-list-textbox {
        width: calc(100% - 160px);
        padding-left: 12px;
    }
    .home-section-parallax-bg-list-title {
        font-size: 32px;
    }
    .locations-section-main-box-filter .switch .switch-paddle-text {
        font-size: 10px;
    }
    .location-section-v2-mapbox-filter ul li {
        padding: 6px 10px;
        font-size: 11px;
    }
} /* end of max-width 374 */

@media screen and (min-width:1024px) {
    .home-section-programs-list ul li a:hover .home-section-programs-list-title::before {
        width: 48px; height: 48px;
        background-color: var(--white);
        top: 0;
    }
}
@media screen and (min-width:1441px) {
    .locations-section-main .grid-container {
        max-width: 100%;
        padding: 0 80px;
    }
}