
@font-face {
    font-family: "Suisse";
    src: url("../fonts/SuisseRegular.otf");
}
@font-face {
    font-family: "Suisse";
    src: url("../fonts/SuisseMedium.otf");
    font-weight: 500;
}
@font-face {
    font-family: "Suisse";
    src: url("../fonts/SuisseLight.otf");
    font-weight: 300;
}

@font-face {
    font-family: "GT-Alpina";
    src: url("../fonts/GT-Alpina-Regular-Trial.otf");
}
@font-face {
    font-family: "GT-Alpina";
    src: url("../fonts/GT-Alpina-Regular-Italic-Trial.otf");
    font-style: italic;
}
@font-face {
    font-family: "GT-Alpina";
    src: url("../fonts/GT-Alpina-Light-Trial.otf");
    font-weight: 300;
}

@font-face {
    font-family: "GT-Alpina-TW";
    src: url("../fonts/GT-Alpina-Typewriter-Regular-Trial.otf");
    font-weight: 400;
}

/* 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 {
	line-height: 1.5;
    font-family: "Suisse", sans-serif;
    color: #164453;
}
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;
}

.row {
    padding-left: 30px;
    padding-right: 30px;
    width: 100%;
    max-width: 1200px;
}

.row.row-mdl {
    max-width: 1080px;
}
.row.row-md {
    max-width: 930px;
}
.row.row-section {
    max-width: 800px;
}
.row.row-sm {
    max-width: 550px;
}
.row.row-xs {
    max-width: 460px;
}
.row.row-full {
    max-width: 100%;
}
.row.row-full.nopad {
    padding-left: 0;
    padding-right: 0;                
}
.row.row-single {
    max-width: 870px;              
}

/* -- main styles -- */

.nopad {
	padding:0px;
}

.nopadleft {
	padding-left:0px;
}

.nopadright {
	padding-right:0px;
}

strong {
	font-weight: 500;
}

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 {
    margin-bottom: 15px;
}


.invi {
	visibility: hidden;
	opacity: 0;
}

/*   hamburger   */

.hamburger {
    font: inherit;
    display: inline-block;
    overflow: visible;
	margin: 0;
	padding: 0;
    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: 28px;
    height: 20px;
    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: 28px;
    height: 2px;
    transition-timing-function: ease;
    transition-duration: .15s;
    transition-property: transform;
    background-color: #746f6c;
}

.hamburger-inner:after,
.hamburger-inner:before {
    display: block;
    content: "";
}

.hamburger-inner:before {
    top: -7px;
}

.hamburger-inner:after {
    bottom: -7px;
}

.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 */

.header {
    position: fixed;
    left: 0;
    right: 0;
    width: 100%;
    top: 0;
    z-index: 500;
    padding: 15px 0;
    border-bottom: 1px solid transparent;
    transition: 0.6s;
}
.header:before {
    content: '';
    position: fixed;
    left: 0;
    right: 0;
    width: 100%;
    top: 0;
    height: 316px;
    background: #4D6B73;
    transform: translateY(-100%);
    transition: 0.5s;
}
.header.slide-down:before {
    transform: translateY(0%);
}
.header {
    transform: translateY(-100%);
}

.header-close {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 499;
    background: #E3E3DF;
    opacity: 0;
    visibility: hidden;
    transition: 0.6s;
}
.header-close.close {
    opacity: 0.3;
    visibility: visible;
}
.header-close-click {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 499;
    background: #E3E3DF;
    opacity: 0;
    visibility: hidden;
    transition: 0.6s;
}
.header-close-click.close {
    opacity: 0.3;
    visibility: visible;
}
.header.close {
    transform: translateY(0%);
}
.header.menu-active {
    background: #4D6B73 !important;
}
.header.menu-active .nav ul li a {
    color: #fff;
}
.header.menu-active .nav-trigger span {
    color: #fff;
}
.header.menu-active .nav-trigger span:before {
    border: 1px solid #fff;
}
.header.menu-active .nav-trigger span:after {
    background: #fff;
}

.logo {
    position: relative;
    z-index: 2;
    min-height: 1px;
    transition: 0.4s;
}

.logo .main-logo {
    position: absolute;
    top: 0;
    left: 0;
}
.logo .main-logo path {
    transition: 0.5s;
}
.header.menu-active .logo .main-logo path {
    fill: #fff;
}

.header.menu-active .nav {
    opacity: 1 !important;
    visibility: visible !important;
    transform: translateY(0) !important;
}

.nav {
    transition: 0.8s;
    transform: translateY(0px);
}

.header.scrolled-down .nav {
    /* opacity: 0; */
    /* visibility: hidden; */
    transform: translateY(-100px);
}

.header.scrolled.scrolled-down {
    background: transparent;
    border-bottom: 1px solid transparent;
}
.header.scrolled {
    
}
.header:after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    right: 0;
    width: 100%;
    top: 0;
    height: calc(100% + 1px);
    background: #fff;
    border-bottom: 1px solid #8ba2ab;
    opacity: 0;
    transform: translateY(-100px);
    transition: 0.8s;
}
.header.scrolled:after {
    transform: translateY(0px);
}
.header.line:after {
    opacity: 1;
}
.header.menu-active:after {
    background: #4D6B73;
    border-color: #4D6B73;
}

.header.scrolled.scrolled-down:after {
    transform: translateY(-100px);
}

.header.scrolled.page-bottom {
    background: transparent;
    border-bottom: 1px solid transparent;
}
.header.scrolled.page-bottom .nav {
    transform: translateY(-100px);
}

.nav {
    position: relative;
    z-index: 2;
}

.nav ul {
    display: inline-block;
}

.nav ul li {
    display: inline-block;
    margin-right: 30px;
    position: relative;
}

.nav ul li:last-child {
    margin-right: 0px;
}

.nav ul li a {
    color: #164453;
    font-size: 18px;
    display: inline-block;
    padding: 10px 0;
    position: relative;
}


.nav > ul > li.current-menu-item > a:after { 
    /* width: 100%;
    left: 0;
    right: 0;
    animation: none; */
}

.nav ul li a:after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 10px;
    width: 0;
    height: 1px;
    background: #164453;
    transition: 0.5s;
    
}
.nav ul li:hover a:after {
    width: 100%;
}

.nav ul li ul li a:after {
    display: none;
}
.header.menu-active .nav ul li a:after {
    background: #fff;
}

.main-logo {
    transform-origin: left center;
    transition: 0.5s;
}

.logo.logo-transition .main-logo {
    transform: translateX(50px) scale(1.2);
}

.logo.symbol-transition .logo-symbol {
    opacity: 1;
}

.logo-symbol {
    position: absolute;
    top: 6px;
    left: 0;
    opacity: 0;
    transition: 0.4s;
}

.nav-trigger span {
    font-size: 24px;
    font-weight: 500;
    line-height: 24px;
    display: inline-block;
    padding: 11px 0;
    padding-left: 23px;
    position: relative;
    cursor: pointer;
}
.nav-trigger span:before {
    content: '';
    position: absolute;
    top: 50%;
    transform: translateY(-50%) scale(1);
    left: 0;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    border: 1px solid #164453;
}

.nav-trigger span:after {
    content: '';
    position: absolute;
    top: 50%;
    transform: translate(-50%, -50%) scale(1);
    left: 8px;
    width: 1px;
    height: 1px;
    opacity: 0;
    border-radius: 50%;
    background: #164453;
    transition: 0.4s;
}

.nav-trigger span:hover:after {
    transform: translate(-50%, -50%) scale(1);
    width: 16px;
    height: 16px;
    opacity: 1;
    animation: pulse 1s infinite;
    
}

@keyframes pulse {
    0% {transform: translate(-50%, -50%) scale(1);}
    50% {transform: translate(-50%, -50%) scale(1.2);}
    100% {transform: translate(-50%, -50%) scale(1);}
}

/* .header-sec {
    padding: 15px 0 0;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: #4D6B73;
    z-index: 2222;
    height: 316px;
    transform: translateY(-100%);
    transition: 0.4s;
}
.header-sec.close {
    transform: translateY(0%);
} */

/* .header-sec .nav ul li {
    position: relative;
}

.header-sec .nav ul li a {
    color: #fff;
} */

.nav ul li ul {
    position: absolute;
    top: 100%;
    margin: 0;
    left: 0;
    padding: 0;
    padding-top: 20px;
    text-align: left;
    opacity: 0;
    visibility: hidden;
    transition: 0.5s;
}

.nav ul li ul li {
   display: block;
}

.nav ul li ul li a {
   white-space: nowrap;
   font-size: 26px;
   opacity: 0.7;
   position: relative;
   padding: 5px 0;
   transition: 0.6s;
}

.nav ul li ul li a:before {
    content: '';
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: -23px;
    width: 15px;
    height: 15px;
    border: solid 1px #ffffff;
    border-radius: 50%;
    opacity: 0;
    transition: 0.6s;
}
.nav ul li ul li a:hover:before {
    opacity: 1;
}

.nav ul li ul li a:hover {
   opacity: 1;
   /* font-weight: 500; */
}

.nav > ul >li:first-child > a {
   /* text-decoration: underline; */
}


.nav.nav-visible ul li:first-child ul {
   opacity: 1;
   visibility: visible;
}

.nav.nav-visible ul:hover li ul {
    opacity: 0;
    visibility: hidden;
}

.nav.nav-visible ul li:hover ul {
    opacity: 1 !important;
    visibility: visible !important;
    transition: 0.5s 0.3s;
}

.nav ul:hover li > a {
    text-decoration: none;
}

.nav > ul > li:hover > a {
    /* text-decoration: underline; */
}

/* .nav-trigger span {
   color: #fff;
}
.nav-trigger span:before {
   border-color: #fff;
} */

.page-template-template-academy .nav.nav-visible ul li:first-child ul {
    opacity: 0;
    visibility: visible;
}
.page-template-template-academy .nav.nav-visible ul li:nth-child(2) ul {
    opacity: 1;
    visibility: visible;
}

.page-template-template-academy .nav.nav-visible ul:hover li ul {
    opacity: 0;
    visibility: hidden;
}
.page-template-template-academy .nav.nav-visible ul li:hover ul {
    opacity: 1;
    visibility: visible;
}

.page-template-template-whoweare .nav.nav-visible ul li:first-child ul {
    opacity: 0;
    visibility: visible;
}
.page-template-template-whoweare .nav.nav-visible ul li:nth-child(4) ul {
    opacity: 1;
    visibility: visible;
}
.page-template-template-whoweare .nav.nav-visible ul:hover li ul {
    opacity: 0;
    visibility: hidden;
}
.page-template-template-whoweare .nav.nav-visible ul li:hover ul {
    opacity: 1;
    visibility: visible;
}
.page-template-template-people .nav.nav-visible ul li:first-child ul {
    opacity: 0;
    visibility: visible;
}
.page-template-template-people .nav.nav-visible ul li:nth-child(4) ul {
    opacity: 1;
    visibility: visible;
}
.page-template-template-people .nav.nav-visible ul:hover li ul {
    opacity: 0;
    visibility: hidden;
}
.page-template-template-people .nav.nav-visible ul li:hover ul {
    opacity: 1;
    visibility: visible;
}
.page-template-template-story .nav.nav-visible ul li:first-child ul {
    opacity: 0;
    visibility: visible;
}
.page-template-template-story .nav.nav-visible ul li:nth-child(4) ul {
    opacity: 1;
    visibility: visible;
}
.page-template-template-story .nav.nav-visible ul:hover li ul {
    opacity: 0;
    visibility: hidden;
}
.page-template-template-story .nav.nav-visible ul li:hover ul {
    opacity: 1;
    visibility: visible;
}

.page-template-template-contact .nav.nav-visible ul li:first-child ul {
    opacity: 0;
    visibility: visible;
}
.page-template-template-contact .nav.nav-visible ul li:nth-child(5) ul {
    opacity: 1;
    visibility: visible;
}
.page-template-template-contact .nav.nav-visible ul:hover li ul {
    opacity: 0;
    visibility: hidden;
}
.page-template-template-contact .nav.nav-visible ul li:hover ul {
    opacity: 1;
    visibility: visible;
}


.header-left-bottom {
    /* font-family: 'GT-Alpina', serif; */
    position: absolute;
    top: 56px;
    left: 30px;
    color: #ffffff;
    font-size: 14px;
    opacity: 0;
    visibility: hidden;
    text-transform: uppercase;
    letter-spacing: 0.23px;
    transition: 0.4s;
}
.header-left-bottom.close {
    opacity: 1;
    visibility: visible;
}

.nav ul li ul li a span {
    position: absolute;
    top: calc(100% + 40px);
    left: 0;
    width: 220px;
    height: 125px;
    background: url(../img/nav-contact.jpg) no-repeat center center;
    background-size: cover !important;
}

.nav ul li ul li a span:before {
    content: '';
    position: absolute;
    bottom: 100%;
    left: 0;
    right: 0;
    height: 50px;
}

body {
    transition: margin 0.8s;
}
body.nav-activated {
    margin-top: 316px;
}

body.oh {
    overflow: hidden;
}

.nav ul li a.nav-magazine {
    width: 400px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.nav-magazine-image {
    float: left;
    width: 220px;
    height: 125px;
    background-size: cover !important;
    transition: 0.6s cubic-bezier(0.33, 1, 0.68, 1);
}

.nav-magazine-content {
    float: left;
    width: calc(100% - 220px);
    padding-left: 15px;
    position: relative;
    transition: 0.6s cubic-bezier(0.33, 1, 0.68, 1);
}

.nav-magazine-content-title {
    color: #ffffff;
    font-family: "GT-Alpina", serif;
    font-size: 18px;
    font-weight: 400;
    line-height: 1.1;
    letter-spacing: 0.3px;
    font-style: italic;
    white-space: normal;
}

.nav-magazine-content-text {
    position: absolute;
    left: 15px;
    bottom: 0;
    color: #ffffff;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.3;
}

.magazine-nav-item {
    position: absolute;
    opacity: 0;
    visibility: hidden;
}

.magazine-link-item {
    margin-top: 25px;
}
.magazine-link-item a:before {
    display: none;
}


/* intro home */

 .intro-home {
    margin-bottom: 120px;
}

.intro-home .row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.intro-home-left {
    position: relative;
    /* opacity: 0; */
    /* visibility: hidden; */
    transition: 1s cubic-bezier(0.33, 1, 0.68, 1);
}

.intro-home-left.close {
    opacity: 1;
    visibility: visible;
}

.intro-home-left:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 40%;
    background: linear-gradient(to bottom, rgba(255,255,255,0.5), rgba(255,255,255,0));
    opacity: 0;
    pointer-events: none;
    z-index: 2;
    transition: 1s cubic-bezier(0.33, 1, 0.68, 1)
}

.split-intro-video:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 40%;
    background: linear-gradient(to bottom, rgba(255,255,255,0.5), rgba(255,255,255,0));
    opacity: 1;
    pointer-events: none;
    z-index: 2;
    transition: 1s cubic-bezier(0.33, 1, 0.68, 1)
}
.home-intro-video:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 40%;
    background: linear-gradient(to bottom, rgba(255,255,255,0.5), rgba(255,255,255,0));
    opacity: 1;
    pointer-events: none;
    z-index: 2;
    transition: 1s cubic-bezier(0.33, 1, 0.68, 1)
}
.split-intro-video-left:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 40%;
    background: linear-gradient(to bottom, rgba(255,255,255,0.5), rgba(255,255,255,0));
    opacity: 1;
    pointer-events: none;
    z-index: 2;
    transition: 1s cubic-bezier(0.33, 1, 0.68, 1)
}

.intro-home-left.gradient:before {
    opacity: 0;
}

.header .row {
    position: relative;
    z-index: 2;
}

.home-intro-video {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    min-height: 100vh;
    background: #a3b8b3;
    transition: 1.4s cubic-bezier(0.33, 1, 0.68, 1)
}
.home-intro-video.resize {
    width: 50%;
}
.home-intro-video.transition {
    transition: 0.2s cubic-bezier(0.33, 1, 0.68, 1);
}
.home-intro-video video {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    min-height: 100%;
    min-width: 100%;
}

.intro-home-right {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    position: relative;
    min-height: 100vh;
}

.home-intro-scroll {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    opacity: 0;
    transition: 1s cubic-bezier(0.33, 1, 0.68, 1);;
}
.home-intro-scroll.close {
    opacity: 1;
}

.btn-scroll-down,
.btn-scroll-down:focus,
.btn-scroll-down:active {
    display: inline-block;
    color: #164453;
    white-space: nowrap;
    font-size: 15px; 
    padding-top: 40px;
}
.btn-scroll-down svg {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: 0;
    width: 32px;
    height: 32px;
}

.btn-scroll-down:hover {
    color: #164453;
}

.btn-scroll-down:before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 32px;
    border: 1px solid #164453;
    border-radius: 15px;
}



.btn-scroll-down:after {
    content: '';
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translate(-50%, 0);
    width: 6px;
    height: 6px;
    background: #164453;
    border-radius: 50%;
    opacity: 0;
}
.btn-scroll-down.close:after {
    animation-duration: 1.5s;
    animation-iteration-count: infinite;
    animation-name: scroll
}

@keyframes scroll {
    0% {
        opacity: 1
    }
    100% {
        opacity: 0;
        transform: translate(-50%, 15px)
    }
}

.home-intro-content {
    padding: 100px 10%;
    opacity: 0;
    transition: 1s cubic-bezier(0.33, 1, 0.68, 1);
}
.home-intro-content.close {
    opacity: 1;
}

.headline {
    font-family: 'GT-Alpina-TW', 'GT-Alpina', serif;
    font-size: 17px;
    line-height: 1.25;
    margin-bottom: 30px;
}
.headline span {
    position: relative;
}
.headline span:after {
    position: absolute;
    content: '';
    bottom: -1px;
    left: 0;
    right: 0;
    width: 100%;
    height: 1px;
    background: #164453;
}

.title-md {
    font-family: 'GT-Alpina', serif;
    font-size: 50px;
    line-height: 1;
}
.title-md strong {
    font-family: "Suisse", sans-serif;
}

/* home */

.tt-block {
    margin-bottom: 90px;
}

.tt-title {
    font-weight: 500;
    font-size: 35px;
    line-height: 1.2;
    margin-bottom: 16px;
    min-height: 1px;
}

.tt-text h1 {
    font-size: 26px;
    font-weight: 500;
    line-height: 1.3;
    margin-bottom: 50px;
}
.tt-text ul {
    margin-bottom: 36px;
}
.tt-text ul li {
    font-size: 26px;
    line-height: 1.4;
    padding-left: 26px;
    position: relative;
}
.tt-text ul li:before {
    content: '';
    position: absolute;
    top: 14px;
    left: 0;
    width: 8px;
    height: 8px;
    background: #164453;
    border-radius: 50%;
}
.tt-text p {
    font-size: 26px;
    line-height: 1.4;
    margin-bottom: 36px;
}
.tt-text strong {
    font-weight: 500;
}

.tt-text p a {
    font-weight: 500;
    color: #164453;
    border-bottom: 1px solid #164453;
    position: relative;
}
.tt-text p a:after {
    content: '';
    position: absolute;
    left: 0;
    transform: translateX(-100%);
    bottom: -1px;
    height: 1px;
    width: 15px;
    background: #fff;
    transition: 0.4s;
}

.tt-text p a:hover:after {
    left: 100%;
    transform: translateX(0%);
}

.tt-text p:last-child {
    margin-bottom: 0px;
}

.media-caption-block {
    margin-bottom: 75px;
}

.media-hold {
    margin-bottom: 15px;
}

.media-title {
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 10px;
    line-height: 1.3;
}

.media-text {
    font-size: 20px;
    line-height: 1.4;
}

.media-video-hold {
    padding-bottom: 56.25%;
    overflow: hidden;
    position: relative;
}
.media-video-hold video {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
}

.overlaping-video {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    z-index: 5;
    transition: 0.5s;
}
.overlaping-video.video-fadeout {
    opacity: 0;
    visibility: hidden;
}

.overlaping-video:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background: #164453;
    z-index: 2;
    opacity: 0.2;
}
.overlaping-video span {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 118px;
    height: 119px;
    background: url(../img/icon-play.svg) no-repeat center center / 100% 100%;
    border-radius: 50%;
    z-index: 6;
    cursor: pointer;
    transition: 0.4s;
}
.overlaping-video span:hover {
    opacity: 0.6;
}

.button-block {
    margin-bottom: 120px;
}

.btn-arrow,
.btn-arrow:focus,
.btn-arrow:active {
    outline: none;
    display: inline-block;
    color: #164453;
    padding: 7px 60px 7px 22px;
    /* border: solid 1px #164453; */
    border-radius: 4px;
    font-weight: 500;
    font-style: italic;
    font-size: 24px; 
    overflow: hidden;
    position: relative;
    -webkit-box-shadow: inset 0px 0px 0px 1px rgba(22,68,83,1);
    -moz-box-shadow: inset 0px 0px 0px 1px rgba(22,68,83,1);
    box-shadow: inset 0px 0px 0px 1px rgba(22,68,83,1);
    transition: 0.5s;
}
.btn-arrow:before {
    content: '';
    position: absolute;
    width: 18px;
    height: 14px;
    left: 22px;
    top: 50%;
    transform: translate(-40px, -50%);
    opacity: 0;
    background: url(../img/arrow-right.png) no-repeat center center / 100% 100%;
    transition: 0.5s;
}
.btn-arrow:hover:before {
    transform: translate(0px, -50%);
    opacity: 1;
    transition: 0.5s 0.2s;
}
.btn-arrow:after {
    content: '';
    position: absolute;
    width: 18px;
    height: 14px;
    top: 50%;
    right: 26px;
    transform: translate(0px, -50%);
    opacity: 1;
    background: url(../img/arrow-right.png) no-repeat center center / 100% 100%;
    transition: 0.5s;
}
.btn-arrow:hover:after {
    transform: translate(40px, -50%);
    opacity: 0;
}

.btn-arrow:hover {
    color: #164453;
    padding: 7px 32px 7px 50px;
    transition: 0.5s 0.1s;
}

.btn-arrow div {
    position: relative;
    z-index: 10;
}
.btn-arrow div:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: -40px;
    height: 100%;
    width: calc(100% + 40px);
    background: #fff;
    opacity: 1;
    transition: 0.5s 0.6s;
}
.btn-arrow.in-view div:after {
    opacity: 0;
}
.btn-arrow span {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}
.btn-arrow span:before {
    content: '';
    position: absolute;
    bottom: 1px;
    left: -1px;
    height: 100%;
    width: 100%;
    background: #fff;
}
.btn-arrow span:after {
    content: '';
    position: absolute;
    top: 1px;
    right: -1px;
    height: 100%;
    width: 100%;
    background: #fff;
}

.btn-arrow.in-view span:before {
    animation: step1 0.3s linear forwards;
}

@keyframes step1 {
    0% {
        width: 100%;
        height: 100%;
    }
    70% {
        width:2px;
        height: 100%;
    }
    100% {
        width: 2px;
        height: 0%;
    }
}
.btn-arrow.in-view span:after {
    animation: step2 0.3s 0.3s linear forwards;
}

@keyframes step2 {
    0% {
        height: 100%;
        width: 100%;
    }
    70% {
        height: 100%;
        width: 2px;
    }
    100% {
        width: 2px;
        height: 0%;
    }
}


.btn-scroll-down span {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 32px;
}
.btn-scroll-down span:before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    height: calc(100% + 10px);
    width: calc(100% + 10px);
    background: #fff;
    border-radius: 10px;
    transform-origin: left top;
    transform: rotate(0deg);
    transition: 1s 0.3s;
    z-index: 2;
}

.btn-scroll-down.close span:before {
    transform: rotate(-90deg);
}


.btn-arrow.btn-arrow-dark,
.btn-arrow.btn-arrow-dark:focus,
.btn-arrow.btn-arrow-dark:active {
    color: #fff;
    background: #164453;
}

.btn-arrow.btn-arrow-dark:hover {
    color: #fff;
}

.btn-arrow.btn-arrow-dark:before {
    -webkit-filter: brightness(10) grayscale(1);
    filter: brightness(10) grayscale(1);
}
.btn-arrow.btn-arrow-dark:after {
    -webkit-filter: brightness(10) grayscale(1);
    filter: brightness(10) grayscale(1);
}

.section-title-block {
    padding: 30px 0 10px;
    background: #acbbb4;
    margin-bottom: 60px;
    position: relative;
    overflow: hidden;
    height: 420px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.section-title-block .headline {
    position: absolute;
    top: 30px;
    left: 50%;
    transform: translateX(-50%);
    margin-bottom: 0;
}

.section-title-video {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
}
.section-title-video video {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    min-height: 100vh;
    min-width: 100%;
    width: auto;
}

.section-title-block .row {
    position: relative;
    z-index: 5;
    width: 100%;
}

.section-title-block .headline {
    color: #fff;
}
.section-title-block .headline span:after {
    background: #fff;
}

.section-title-block .headline a {
    display: inline-block;
    color: #fff;
    position: relative;
    overflow: hidden;
    padding-bottom: 1px;
}
.section-title-block .headline a:before {
    position: absolute;
    content: '';
    bottom: 0px;
    left: 0;
    right: 0;
    width: 100%;
    height: 1px;
    background: #fff;
    transform: translateX(calc(-100% - 40px));
    transition: 0.5s;
}
.section-title-block .headline a:hover:before {
    transform: translateX(0%);
}

.section-title-block .headline a:after {
    position: absolute;
    content: '';
    bottom: 0px;
    left: 0;
    right: 0;
    width: 100%;
    height: 1px;
    background: #fff;
    transition: 0.3s;
}
.section-title-block .headline a:hover:after {
    transform: translateX(100%);
}

.section-title {
    font-family: 'GT-Alpina', serif;
    font-size: 70px;
    line-height: 1;
}
.section-title-block .section-title {
    color: #fff;
}

/* home magazine */

.home-magazine-wrapper {
    padding: 120px 0;
    background: #f7f7f6;
}

.home-magazine-list ul li {
    float: left;
    width: calc(33.333% - 14px);
    margin-right: 21px;
}

.home-magazine-list ul li:nth-child(2) {
    transition-delay: 0.2s;
}
.home-magazine-list ul li:nth-child(3) {
    transition-delay: 0.4s;
}

.home-magazine-list ul li:nth-child(3n) {
    margin-right: 0%;
}
.home-magazine-list ul li a {
    float: left;
    width: 100%;
}
.home-magazine-list ul li a:hover .home-magazine-type {
    padding-left: 15px;
}
.home-magazine-list ul li a:hover .home-magazine-content {
    padding-left: 15px;
    padding-right: 0;
}
.home-magazine-list ul li a:hover .home-magazine-image {
    opacity: 0.8;
    transform: scale(1);
}
.home-magazine-image-hold {
    overflow: hidden;
    margin-bottom: 15px;
    transition: 0.6s cubic-bezier(0.33, 1, 0.68, 1);
}
.home-magazine-list ul li a:hover .home-magazine-image-hold {
    border-radius: 8px;
}
.home-magazine-image-hold {
    overflow: hidden;
}

.home-magazine-type {
    color: #164453;
    font-family: 'GT-Alpina-TW', 'GT-Alpina', serif;
    font-size: 15px;
    text-transform: uppercase;
    transition: 0.6s cubic-bezier(0.33, 1, 0.68, 1);
    margin-bottom: 5px;
}

.home-magazine-top-left {
    overflow: hidden;
}

.home-magazine-image {
    transform: scale(1.05);
    padding-bottom: 74%;
    background-size: cover !important;
    transition: 0.8s cubic-bezier(0.33, 1, 0.68, 1);
}

.home-magazine-content {
    color: #164453;
    font-size: 30px;
    line-height: 1.25;
    padding-right: 15px;
    transition: 0.6s cubic-bezier(0.33, 1, 0.68, 1);
}
.home-magazine-content span {
    font-family: 'GT-Alpina', serif;
    display: block;
    padding-top: 10px;
    font-size: 22px;
    font-weight: 300;
}

.home-magazine-top {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-bottom: 30px;
}

.home-magazine-top-image {
    height: 100%;
    padding-bottom: 91.5%;
    background-size: cover !important;
}

.home-magazine-top-right {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;

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

.home-magazine-top-content {
    padding: 50px 10%;
}

.home-magazine-top-content h3 {
    font-size: 55px;
    font-weight: 500;
    line-height: 1;
    margin-bottom: 15px;
}
.home-magazine-top-content h4 {
    font-family: 'GT-Alpina', serif;
    font-size: 36px;
    font-weight: 300;
    line-height: 1.1;
    margin-bottom: 60px;
}

.home-magazine-top-content p {
    font-size: 22px;
    line-height: 1.35;
    margin-bottom: 60px;
}
.home-magazine-top-content p:last-child {
    margin-bottom: 0px;
}



















/* newsletter */

.newsletter-wrapper {
    padding: 105px 0; 
    background-size: cover !important;
}

.newsletter-title {
    font-family: 'GT-Alpina', serif;
    font-size: 72px;
    line-height: 1;
    margin-bottom: 20px;
}
.newsletter-text {
    font-size: 26px;
    line-height: 1.4;
    margin-bottom: 90px;
}

.newsletter-input {
    margin-bottom: 30px;
}

.newsletter-input input,
.newsletter-input input:focus {
    outline: none;
    display: inline-block;
    margin: 0;
    width: 100%;
    max-width: 300px;
    background: transparent;
    text-align: center;
    font-style: italic;
    font-weight: 300;
    border: none;
    border-bottom: 1px solid #164453;
    box-shadow: none;
    color: #164453;
}

.newsletter-input input::-webkit-input-placeholder {
	color: #164453;
	opacity: 1;
}
.newsletter-input input::-moz-placeholder {
	color: #164453;
	opacity: 1;
}
.newsletter-input input:-ms-input-placeholder {
	color: #164453;
	opacity: 1;
}
.newsletter-input input:-moz-placeholder {
	color: #164453;
	opacity: 1;
}

.btn-blue,
.btn-blue:focus,
.btn-blue:active {
    display: inline-block;
    outline: none;
    border: none;
    background: #164453;
    border: 1px solid #164453;
    border-radius: 5px;
    color: #D2D3CF;
    font-weight: 500;
    font-size: 18px;
    padding: 6px 30px;
    transition: 0.2s;
}
.btn-blue:hover {
    border: 1px solid #164453;
    background: transparent;
    color: #164453;
}

/* footer */

.footer {
    background: #164453;
    color: #fff;
    padding: 30px 0 24px;
    position: relative;
    z-index: 10;
}

.footer-text {
    font-family: 'GT-Alpina', serif;
    font-weight: 300;
    font-size: 30px;
    letter-spacing: -0.36px;
    line-height: 1.25;
    margin-bottom: 440px;
}
.footer-text strong {
    font-family: "Suisse", sans-serif;
    font-weight: 500;
}

.footer-title {
    font-size: 20px;
    font-weight: 300;
    text-transform: uppercase;
    margin-bottom: 16px;
}
.footer-title span {
    display: inline-block;
    border-bottom: 1px solid #fff;
}

.footer-main-nav ul li {
    position: relative;
    overflow: hidden;
}
.footer-main-nav ul li a {
    font-size: 16px;
    color: #fff;
    opacity: 0.5;
    position: relative;
    line-height: 1.6;
}

.footer-main-nav ul li a:before {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 1px;
    background: #fff;
    transition: 0.5s;
}

.footer-main-nav ul li a:hover:before {
    width: 100%;
}

.footer-main-nav-hold {
    margin-bottom: 60px;
}

.footer-sec-nav ul {
    display: inline-block;
}
.footer-sec-nav ul li {
    display: inline-block;
    margin-right: 35px;
}
.footer-sec-nav ul li:last-child {
    margin-right: 0px;
}
.footer-sec-nav ul li a {
    color: #fff;
    font-size: 16px;
    position: relative;
}

.footer-sec-nav ul li a:before {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 1px;
    background: #fff;
    transition: 0.5s;
}

.footer-sec-nav ul li a:hover:before {
    width: 100%;
}

.copyrights-hold {
    border-top: 1px solid #8ba2a9;
    margin-top: 15px;
    padding-top: 15px;
    font-size: 14px;
    color: #8ba2a9;
}
.copyrights-hold span {
    display: block;
}

.main-wrapper {
    position: relative;
    overflow: hidden;
}

/* animations */

.animation-element-straight.fade-left-skew {
    opacity: 0;
    -webkit-transform: translateX(-40px) skewX(-16deg);
    transform: translateX(-40px) skewX(-16deg);
    -webkit-transform-origin: bottom;
    transform-origin: bottom;
    transition: 3s cubic-bezier(.19,1,.22,1);
}

.animation-element-straight.fade-left-skew.in-view {
    opacity: 1;
    -webkit-transform: translateX(0px) skewX(0deg);
    transform: translateX(0px) skewX(0deg);
}
.animation-element.fade-left-skew {
    opacity: 0;
    -webkit-transform: translateX(-40px) skewX(-16deg);
    transform: translateX(-40px) skewX(-16deg);
    -webkit-transform-origin: bottom;
    transform-origin: bottom;
    transition: 3s cubic-bezier(.19,1,.22,1);
}

.animation-element.fade-left-skew.in-view {
    opacity: 1;
    -webkit-transform: translateX(0px) skewX(0deg);
    transform: translateX(0px) skewX(0deg);
}
.animation-element.fade-right-skew {
    opacity: 0;
    -webkit-transform: translateX(25px) skewX(-16deg);
    transform: translateX(25px) skewX(-16deg);
    -webkit-transform-origin: bottom;
    transform-origin: bottom;
    transition: 2s cubic-bezier(.19,1,.22,1);
}

.animation-element.fade-right-skew.in-view {
    opacity: 1;
    -webkit-transform: translateX(0px) skewX(0deg);
    transform: translateX(0px) skewX(0deg);
}

.animation-element.fade-right {
    opacity: 0;
    -webkit-transform: translateX(40px);
    transform: translateX(40px);
    transition: 3s cubic-bezier(.19,1,.22,1);
}

.animation-element.fade-right.in-view {
    opacity: 1;
    -webkit-transform: translateX(0px);
    transform: translateX(0px);
}

.animation-element.fade-zoom {
    -webkit-transform: scale(1);
    transform: scale(1);
    transition: 5s cubic-bezier(0.33, 1, 0.68, 1);
}

.animation-element.fade-zoom.in-view {
    -webkit-transform: scale(1.2);
    transform: scale(1.2);
}

.animation-element.fade-in {
    opacity: 0;
    transition: 1.2s 0.5s cubic-bezier(0.33, 1, 0.68, 1);
}

.animation-element.fade-in.in-view {
    opacity: 1;
}
.animation-element-straight.fade-in {
    opacity: 0;
    transition: 1.2s 0.5s cubic-bezier(0.33, 1, 0.68, 1);
}

.animation-element-straight.fade-in.in-view {
    opacity: 1;
}

.animation-element.zoomout {
    -webkit-transform: scale(1.2);
    transform: scale(1.2);
    transition: 5s cubic-bezier(0.33, 1, 0.68, 1);
}

.animation-element.zoomout.in-view {
    -webkit-transform: scale(1);
    transform: scale(1);
}


.home-preloader {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background: #444f49 url(../img/img-preloader-bg.jpeg) no-repeat center center;
    /* background: #444f49; */
    background-size: cover;
    z-index: 999;
    overflow: hidden;
    opacity: 0;
    transition: 1.2s;
}
.home-preloader.vis {
    opacity: 1;
}
.home-preloader.resize {
    right: 50%;
    width: 50%;
}
.home-preloader.fadeout {
    opacity: 0;
    visibility: hidden;
}
.home-preloader:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background: #fff;
    opacity: 0;
    transition: 3s linear;

}
.home-preloader.overlay:before {
    opacity: 0.5;
}
.home-preloader:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 40%;
    background: linear-gradient(to bottom, rgba(255,255,255,0.4), rgba(255,255,255,0));
    opacity: 1;
    pointer-events: none;
    z-index: -1;
    transition: 1s cubic-bezier(0.33, 1, 0.68, 1);
}

.home-preloader-bg {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background-size: cover !important;
    -webkit-animation: scale 7s linear forwards;
    -moz-animation: scale 7s linear forwards;
    -o-animation: scale 7s linear forwards;
    animation: scale 7s linear forwards;
}



@-webkit-keyframes scale {
    0% {
      transform: scale(1);
      opacity: 1;
    }
    100% {
        transform: scale(1.2);
        opacity: 0;
    }
}
@-moz-keyframes scale {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    100% {
        transform: scale(1.2);
        opacity: 0;
    }
}
@-o-keyframes scale {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    100% {
        transform: scale(1.2);
        opacity: 0;
    }
}
@keyframes scale {
    0% {
        transform: scale(1);
        opacity: 1;
    }
      
    100% {
        transform: scale(1.2);
        opacity: 0;
    }
}

.home-preloader-logo {
    position: absolute;
    top: 50px;
    left: 50%;
    transform: translateX(-50%);
    opacity: 0;
    transition: 1s;
}

.home-preloader.close .home-preloader-logo {
    opacity: 1;
}

.home-preloader.overlay .home-preloader-logo {
    filter: blur(20px);
    opacity: 0;
}

.home-preloader-centered {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 630px;
    padding: 0 30px;
    color: #fff;
    opacity: 0;
    transition: 1s;
}

.home-preloader-loader {
    margin-bottom: 20px;
    transition: 1s 0.5s;
}

.home-preloader.close .home-preloader-centered {
    opacity: 1;
}

.home-preloader.overlay .home-preloader-loader {
    filter: blur(30px);
    opacity: 0;
}

.home-preloader.overlay .home-preloader-quote {
    filter: blur(30px);
    opacity: 0;
}
.home-preloader.overlay .home-preloader-quote {
    filter: blur(30px);
    opacity: 0;
}
.home-preloader.overlay .home-preloader-quote-author {
    filter: blur(30px);
    opacity: 0;
}

.home-preloader-quote {
    font-family: 'GT-Alpina', serif;
    font-size: 28px;
    line-height: 1.2;
    margin-bottom: 15px;
    transition: 1s;
}
.home-preloader-quote-author {
    font-size: 18px;
    line-height: 1.1; 
    transition: 1s;
}

.home-preloader-bottom {
    /* font-family: 'GT-Alpina', serif; */
    letter-spacing: 0.28px;
    color: #fff; 
    font-size: 16px;
    line-height: 1.2;
    /* font-style: italic; */
    position: absolute;
    /* bottom: 40px; */
    top: 52px;
    text-transform: uppercase;
    /* left: 50%; */
    /* transform: translateX(-50%); */
    opacity: 0;
    transition: 1s;
}

.home-preloader-logo img {
    width: 250px;
}

.home-preloader.close .home-preloader-bottom {
    opacity: 1;
}
.home-preloader.overlay .home-preloader-bottom {
    filter: blur(20px);
    opacity: 0;
}

.home-preloader-loader {
    margin-bottom: 25px;
}
.home-preloader-loader span {
    transform: rotate(90deg);
    display: inline-block;
    width: 112px;
    height: 112px;
    border: 1px solid #fff;
    border-radius: 50%;
}

.home-preloader-loader span svg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 114px;
    height: 114px;

}

#preloader-circle  {
    stroke-dasharray: 346;
    stroke-dashoffset: 346;
    animation: laoding 4s cubic-bezier(0.33, 1, 0.68, 1) forwards;
    -webkit-animation: laoding 4s cubic-bezier(0.33, 1, 0.68, 1) forwards;
}

@keyframes laoding {
    from {
        stroke-dashoffset: 346;
    }
    to {
        stroke-dashoffset: 0;
    }
}

/* mob nav */

.mob-nav-hold {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    height: 100%;
    width: 100%;
    z-index: 400;
    overflow: auto;
    padding: 100px 28px 50px;
    background: #4D6B73;
    opacity: 0;
    visibility: hidden;
    transition: 0.3s;
}
.mob-nav-hold.close {
    opacity: 1;
    visibility: visible;
}

.mob-nav ul li a {
    color: #ffffff;
    font-size: 18px;
    font-weight: 600;
    padding-left: 30px;
    position: relative;
    display: inline-block;
}
.mob-nav > ul > li > a:before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 13px;
    height: 13px;
    border: 1px solid #fff;
    border-radius: 50%;
}

.mob-nav > ul > li {
    margin-bottom: 28px;
}
.mob-nav > ul > li:last-child {
    margin-bottom: 0px;
}
.mob-nav ul li ul {
    margin: 0;
}
.mob-nav ul li ul li a {
    font-weight: 400;
    opacity: 0.7;
    padding: 2px 0;
    padding-left: 30px;
}

.mob-nav-label {
    font-family: "GT-Alpina";
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    background: #4D6B73;
    color: #fff;
    padding: 16px 17px;
    text-align: right;
    z-index: 5;
    font-size: 16px;
    line-height: 1.2;
    letter-spacing: 0.3px;
    font-style: italic;
}

/* what we offer */

.intro-split {
    margin-bottom: 200px;
}

.intro-split .row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.title-lg {
    font-family: "GT-Alpina", serif;
    font-size: 70px;
    font-weight: 400;
    line-height: 1;
    margin-bottom: 60px;
}

.intro-split-left {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    position: relative;
    min-height: 100vh;
}

.split-intro-content {
    padding: 100px 10%;
    opacity: 0;
    transform: translateY(30px);
    transition: 1s cubic-bezier(0.33, 1, 0.68, 1);
}
.split-intro-content.close {
    transform: translateY(0px);
    opacity: 1;
}

.intro-split-right {
    opacity: 1;
    position: relative;
    transition: opacity 1s cubic-bezier(0.33, 1, 0.68, 1);
}
.intro-split-right.close {
    opacity: 1;
}
.intro-split-right:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 40%;
    background: linear-gradient(to bottom, rgba(255,255,255,0.5), rgba(255,255,255,0));
    pointer-events: none;
    z-index: 2;
    opacity: 0;
    transition: 1s cubic-bezier(0.33, 1, 0.68, 1);
}
.intro-split-right.gradient:before {
    opacity: 0;
}

.intro-split-right.resize .split-intro-video {
    width: 50%;
}

.split-intro-video {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    height: 100%;
    width: 100vw;
    overflow: hidden;
    transition: 1.4s cubic-bezier(0.33, 1, 0.68, 1);
}
.split-intro-video.transition {
    transition: 0.2s cubic-bezier(0.33, 1, 0.68, 1);
}
.split-intro-video-left {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    overflow: hidden;
    min-height: 100vh;
    transition: 1.4s cubic-bezier(0.33, 1, 0.68, 1);
}
.split-intro-video-left.resize {
    width: 50%;
}

.split-intro-video video {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    min-height: 100%;
    min-width: 100%;
}
.split-intro-video-left video {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    min-height: 100%;
    min-width: 100%;
}

.split-intro-scroll {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    opacity: 0;
    transition: 0.6s;
}
.split-intro-scroll.close {
    opacity: 1;
}

.intro-text {
    font-size: 26px;
    line-height: 1.25;
    position: relative;
    z-index: 10;
}

.tt-block + .tt-block {
    margin-top: -54px;
}

.features-carousel-block {
    background: #f7f7f6;
    padding: 60px 0 220px;
}
.features-carousel-block .row {
    padding-left: 0;
    padding-right: 0;
}

.title-sm {
    font-size: 44px;
    font-weight: 500;
    line-height: 1;
    margin-bottom: 60px;
}

.client-carousel-block {
    background: #e7dbb7;
    padding: 90px 0;
}

.features-carousel-hold-center .owl-stage {
    margin: auto;
}

.features-carousel-item {
    padding: 15px 15px 0;
    width: 460px;
    text-align: center;
}

.features-carousel-icon {
    transition: 1s cubic-bezier(0.33, 1, 0.68, 1);
    margin-bottom: 40px;
    padding: 0 15%;
}

.features-carousel-item:hover .features-carousel-icon {
    transform: scale(1.05);
}

.features-carousel-title {
    font-family: 'GT-Alpina-TW', 'GT-Alpina', serif;
    font-size: 26px;
    line-height: 1.1;
    text-transform: uppercase;
    margin-bottom: 10px;
    padding: 0 20px;
}

.features-carousel-text {
    font-size: 16px;
    line-height: 1.25;
    padding: 0 20px;
}

.owl-carousel.features-carousel .owl-stage-outer {
    padding-left: 15px;
}

.features-carousel-hold {
    /* width: calc(100% + 30px); */
}

.features-carousel-block .title-sm {
    padding-left: 30px;
}

.features-carousel .owl-nav {
    position: absolute;
    top: -102px;
    right: 30px;
}

.owl-carousel .owl-nav button.owl-next, .owl-carousel .owl-nav button.owl-prev, .owl-carousel button.owl-dot {
    outline: none;
}

.features-carousel.owl-carousel .owl-nav button.owl-next, 
.features-carousel.owl-carousel .owl-nav button.owl-prev {
    width: 51px;
    height: 41px;
    position: relative;
    transition: 0.4s;
}

.features-carousel.owl-carousel .owl-nav button.owl-prev {
    margin-right: 10px;
}


.features-carousel.owl-carousel .owl-nav button.owl-next:before, 
.features-carousel.owl-carousel .owl-nav button.owl-prev:before {
    content: '';
    position: absolute;
    width: 41px;
    height: 100%;
    border-radius: 50%;
    top: 0;
    transition: 0.3s;
}

.features-carousel.owl-carousel .owl-nav button.owl-prev:before {
    background: #cfb76f url(../img/slide-prev.png) no-repeat center center / 20px 16px;
    left: 5px;
}
.features-carousel.owl-carousel .owl-nav button.owl-prev:hover:before {
    background: #cfb76f url(../img/slide-prev.png) no-repeat center center / 20px 16px;
    transform: translateX(-5px);
}
.features-carousel.owl-carousel .owl-nav button.owl-next:before {
    background: #cfb76f url(../img/slide-next.png) no-repeat center center / 20px 16px;
    right: 5px;
}
.features-carousel.owl-carousel .owl-nav button.owl-next:hover:before {
    transform: translateX(5px);
}

.features-carousel.owl-carousel .owl-nav button.disabled {
    opacity: 0.5;
}

.features-carousel.owl-carousel .owl-nav button.owl-next span, 
.features-carousel.owl-carousel .owl-nav button.owl-prev span {
    display: none;
}

.client-carousel-item {
    font-family: "GT-Alpina", serif;
    font-size: 30px;
    font-weight: 300;
    line-height: 1.3;
    text-align: center;
}

.client-carousel .owl-dots {
    margin-top: 45px;
    text-align: center;
}

.client-carousel.owl-carousel button.owl-dot span {
    display: inline-block;
    opacity: 0.3;
    width: 12px;
    height: 12px;
    background: #1d4a58;
    border-radius: 50%;
    margin: 0 7px;
    transition: 0.2s;
}
.client-carousel.owl-carousel button.owl-dot.active span {
    opacity: 1;
}

.bt-block {
    padding: 90px 0 120px;
}

.bt-text {
    font-size: 21px;
    line-height: 1.35;
    margin-bottom: 30px;
}

.speciality-wrapper {
    margin-bottom: 120px;
}

.speciality-item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-bottom: 90px;
}
.speciality-item:last-child {
    margin-bottom: 0px;
}

.speciality-item-content-hold {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.speciality-item-image-hold {
    overflow: hidden;
}

.speciality-item-image {
    min-height: 100%;
    padding-bottom: 100%;
    background-size: cover !important;
}

.speciality-item-content {
    padding: 80px 10%;
    text-align: center;
}

.specialty-title {
    font-size: 43px;
    font-weight: 500;
    line-height: 1;
    margin-bottom: 8px;
}

.specialty-subtitle {
    font-family: "GT-Alpina", serif;
    font-size: 32px;
    font-weight: 300;
    line-height: 1.1;
    margin-bottom: 30px;
}

.specialty-author {
    font-size: 20px;
    line-height: 1.3;
    margin-bottom: 60px;
}
.specialty-author strong {
    font-weight: 500;
}

.specialty-text {
    font-size: 20px;
    line-height: 1.3;
    margin-bottom: 60px;
}

.features-carousel-progress ul li {
    float: left;
    height: 1px;
    background: #000;
    transition: 0.2s;
}

.features-carousel .owl-dots {
    position: absolute;
    bottom: -100px;
    width: 100%;
    max-width: 800px;
    left: 50%;
    transform: translateX(-50%);
    height: 4px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}
.features-carousel .owl-dots:before {
    /* content: '';
    position: absolute;
    left: 0;
    right: 0;
    width: 100%;
    height: 1px;
    background: #CFB76F;
    top: 50%;
    transform: translateY(-50%); */
}
.features-carousel .owl-dots:after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    width: 100%;
    height: 40px;
    background: transparent;
    top: 50%;
    transform: translateY(-50%);
    z-index: 500;
}

.owl-carousel.features-carousel button.owl-dot {
    width: 100%;
    height: 4px;
    position: relative;
    transition: 0.5s;
    background: #CFB76F;
    opacity: 0.2;

}

.owl-carousel.features-carousel button.owl-dot.active {
    background: #CFB76F;
    width: 200%;
    opacity: 1;
}

.owl-carousel .owl-item img {
    display: inline-block;
    width: auto;
}

.speciality-item-content .headline {
    margin-bottom: 15px;
}

.section-navigation-hold {
    position: relative;
}

.section-navigation {
    position: absolute;
    top: 0;
    left: 0;
    width: 420px;
    background: #4d6b73;
    border-radius: 5px;
    padding: 20px 20px;
    transform: translateX(-100px);
    opacity: 0;
    transition: 1s cubic-bezier(0.33, 1, 0.68, 1);
}
.section-navigation.in-view {
    transform: translateX(0px);
    opacity: 1;
}

.section-navigation:after {
    content: '';
    display: block;
    clear: both;
}

.section-navigation-label {
    float: left;
    width: 165px;
    color: #fff;
    font-size: 16px;
    font-weight: 300;
}

.section-navigation-links {
    float: left;
    width: calc(100% - 165px);
}

.section-navigation-links ul li {
    margin-bottom: 10px;
}

.section-navigation-links ul li:last-child {
    margin-bottom: 0px;
}

.section-navigation-links ul li a {
    font-size: 16px;
    font-weight: 400;
    color: #fff;
    padding-left: 30px;
    position: relative;
    display: inline-block;
}
.section-navigation-links ul li a span {
    width: calc(100%);
    background-image: linear-gradient(transparent calc(100% - 1px), #fff 1px);
    background-repeat: no-repeat;
    background-size: 0% 100%;
    transition: background-size 0.5s;
}
.section-navigation-links ul li a:hover span {
    background-size: 100% 100%;
}
.section-navigation-links ul li a:before {
    content: '→';
    position: absolute;
    top: 0;
    left: 0;
}

/* specialty */

.intro-specialty {
    min-height: 50vh;
    padding: 100px 0 150px;
    opacity: 0;
    transition: 1s cubic-bezier(0.33, 1, 0.68, 1);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}
.intro-specialty.close {
    opacity: 1;
}
.intro-specialty .title-lg {
    margin-bottom: 0;
}

.image-about {
    background-size: cover !important;
    padding: 150px 0 110px;
    position: relative;
    margin-bottom: 115px;
    min-height: 50vh;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.image-about:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    height: 100%;
    width: 100%;
    background: #444f49 url(../img/img-preloader-bg.jpeg) no-repeat center center;
    background-size: cover;
    transition: 1s cubic-bezier(0.33, 1, 0.68, 1);
}
.image-about.close:before {
    opacity: 0;
    visibility: hidden;
}

.image-about-text {
    color: #ffffff;
    font-size: 26px;
    font-weight: 400;
    padding: 0 5%;
}

.image-about > span {
    position: absolute;
    width: 314px;
    height: 314px;
    overflow: hidden;
    border-radius: 50%;
    background: url(../img/circle-specialty.png) no-repeat center center;
    background-size: cover;
    top: 0;
    left: 50%;
    transform: translate(-50%, -50%);
}
.image-about > span video {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
}
.image-about > span img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.specialty-scroll {
    position: absolute;
    bottom: 25px;
    right: 50px;
    opacity: 0;
    transition: 0.6s;
}
.specialty-scroll.close {
    opacity: 0.7;
}

.btn-scroll-down.btn-scroll-down-white,
.btn-scroll-down.btn-scroll-down-white:focus,
.btn-scroll-down.btn-scroll-down-white:active {
    color: #fff;
}

.btn-scroll-down.btn-scroll-down-white:before {
    border: 1px solid #fff;
}

.btn-scroll-down.btn-scroll-down-white:after {
    background: #fff;
}

.img-full {
    padding-bottom: 46%;
    overflow: hidden;
    position: relative;
}

.img-full-image {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background-size: cover !important;
    
}

.tabs-wrapper {
    background: #f7f7f6;
    padding: 90px 0;
}

.tabs-specialty {
    margin-bottom: 75px;
}

.tabs-specialty .tabs {
    background: transparent;
    border: none;
    margin-bottom: 90px;
}

.tabs-specialty .tabs-title {
    margin-right: 60px;
}
.tabs-specialty .tabs-title:last-child {
    margin-right: 0px;
}

.tabs-specialty .tabs-title>a {
    display: inline-block;
    padding: 0px;
    color: #1d4a58;
    font-size: 30px;
    font-weight: 500;
    line-height: 1;
    border-bottom: 2px solid transparent;
    position: relative;
    z-index: 20;
}
.tabs-specialty .tabs-title>a:before {
    content: '';
    position: absolute;
    left: 0;
    height: 1px;
    background: #1d4a58;
    width: 0;
    bottom: -1px;
    transition: 0.5s;
}
.tabs-specialty .tabs-title>a:hover {
    background: transparent;
}
.tabs-specialty .tabs-title>a:hover:before {
    width: 100%;
}

.tabs-specialty .tabs-title>a:focus, 
.tabs-specialty .tabs-title>a[aria-selected=true] {
    background: transparent;
    border-bottom: 1px solid #1d4a58;
}

.tabs-specialty .tabs-panel {
    padding: 0;
}


.tabs-specialty .tabs-content {
    background: transparent;
    border: none;
}

.tabs-specialty-content ul li {
    font-size: 26px;
    line-height: 1.4;
}

.tabs-specialty-content ul {
    margin-bottom: 36px;
}

.tabs-specialty-content ul:last-child {
    margin-bottom: 0px;
}

.tabs-specialty-content ul li:before {
    content: '→';
    display: inline-block;
    margin-right: 5px;
}
.tabs-specialty-content p {
    font-size: 26px;
    line-height: 1.4;
    margin-bottom: 36px;
}
.tabs-specialty-content p:last-child {
    margin-bottom: 0px;
}

.tabs-specialty-bottom-text {
    font-size: 21px;
    line-height: 1.35;
    margin-bottom: 30px;
}

.tabs-specialty-content {
    animation-duration: 1.5s;
    animation-name: fadeOut;
}
.tabs-specialty-content.is-active {
    animation-duration: 1.5s;
    animation-name: fadeIn;
}
@keyframes fadeIn {
    0% { opacity: 0; }
    30% { opacity: 0; }
    100% { opacity: 1; }
}
@keyframes fadeOut {
    0% { opacity: 1; }
    70% { opacity: 0; }
    100% { opacity: 0; }
}

.client-carousel .owl-item {
    animation-duration: 1s;
    animation-name: fadeOut2;
}
.client-carousel .owl-item.active {
    animation-duration: 1s;
    animation-name: fadeIn2;
}

@keyframes fadeIn2 {
    0% { opacity: 0; }
    70% { opacity: 0; }
    100% { opacity: 1; }
}
@keyframes fadeOut2 {
    0% { opacity: 1; }
    30% { opacity: 0; }
    100% { opacity: 0; }
}

.enrollments-wrapper {
    padding: 120px 0;
}

.tt-title {
    padding-right: 10%;
}

.enrollments-wrapper .speciality-item {
    margin-bottom: 50px;
}

.enrollments-wrapper .speciality-item:last-child {
    margin-bottom: 0px;
}

/* academy */

.intro-full {
    /* padding-bottom: 34.5%; */
    height: 100vh;
    position: relative;
    opacity: 1;
    transition: 1.2s cubic-bezier(0.33, 1, 0.68, 1)
}
.intro-full.resize {
    /* opacity: 1; */
    height: 50vh;
}

.intro-full-content {
    min-height: 50vh;
    padding: 30px 0 100px;
    position: relative;
    opacity: 0;
    transition: 1s cubic-bezier(0.33, 1, 0.68, 1);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;

    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-bottom: 100px;
}
.intro-full-content.close {
    opacity: 1;
}

.intro-full-scroll,
.intro-full-scroll:focus,
.intro-full-scroll:active {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    opacity: 0;
    transition: 1s cubic-bezier(0.33, 1, 0.68, 1);
}
.intro-full-scroll.close {
    opacity: 1;
}

.academies .tt-title {
    padding-top: 92px; 
}
.academies .tabs-specialty .tabs {
    margin-bottom: 60px;
}

.academies .tabs-specialty .tabs-title>a {
    font-size: 20px;
}

.tabs-specialty-content h5 {
    font-size: 20px;
    line-height: 1.5;
    letter-spacing: 0.1px;
    margin-bottom: 60px;
}
.tabs-specialty-content h5:last-child {
    margin-bottom: 0;
}

.academies .tabs-specialty {
    margin-bottom: 0;
}

.academy-desc {
    border-top: solid 1px #164453;
    padding-top: 42px;
}
.academies .academy-desc p {
    margin-bottom: 4px ;
    position: relative;
    padding-left: 40%;
}
.academy-desc p > span {
    position: absolute;
    top: 5px;
    left: 0;
    font-weight: 500;
    max-width: calc(40% - 10px);
    width: 100%;
}

.academies .lead-faculty-style .lead-faculcy p {
    font-family: "GT-Alpina", serif;
    font-weight: 300;
    font-size: 36px;
    margin-bottom: 24px;
}
.academies .lead-faculty-style .lead-faculcy p:last-child {
    margin-bottom: 0px;
}
.lead-faculcy span {
    font-family: "Suisse", sans-serif;
    font-weight: 400;
    font-size: 26px;
}
.lead-faculcy a {
    display: block;
    padding-top: 2px;
    font-family: "Suisse", sans-serif;
    font-weight: 400;
    font-size: 20px;
    color: #164453;
    border-bottom: none !important;
    margin-bottom: 20px;
}
.lead-faculcy a:last-child {
    margin-bottom: 0px;
}
.lead-faculcy a span {
    position: relative;
    border-bottom: 1px solid #164453;
    display: inline-block;
}
.lead-faculcy a span:after {
    content: '';
    position: absolute;
    left: 0;
    transform: translateX(-100%);
    height: 1px;
    width: 15px;
    background: #fff;
    bottom: -1px !important;
    transition: 0.4s;
}
.lead-faculcy a:hover span:after{
    left: 100%;
    transform: translateX(100%);
}

.academy-desc.lead-faculcy,
.academy-desc.price-desc {
    padding-top: 0;
    border-top: none;
}

.academies .section-title-block {
    margin-bottom: 90px;
}

.academies .price-desc p {
    font-size: 20px;
}
.academies .price-desc p span {
    font-size: 26px;
}
.academies .price-desc p strong {
    font-size: 26px;
}

.price-desc {
    margin-bottom: 42px;
}

.academies-contact-form {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.academies-contact-form-left {
    font-size: 20px;
    font-weight: 500;
    width: 140px;
    margin-bottom: 20px;
    padding-right: 20px;
}
.academies-contact-form-right {
    width: calc(100% - 140px);
}

.acf-element {
    margin-bottom: 32px;
}
.acf-text-element {
    margin-bottom: 60px;
}

.acf-element textarea,
.acf-element textarea:focus {
    outline: none;
    margin: 0;
    box-shadow: none;
    background: transparent;
    border: 1px solid #164453;
    border-radius: 5px;
    color: #164453;
    font-size: 16px;
    height: 234px;
    padding: 15px 15px;
    resize: none;
}

.acf-element label {
    color: #164453;
    font-size: 20px;
    font-weight: 500;
}
.acf-element input,
.acf-element input:focus {
    color: #164453;
    font-size: 16px;
    font-weight: 400;
    height: 30px;
    padding: 2px 0;
    outline: none;
    box-shadow: none;
    background: transparent;
    margin: 0;
    border: none;
    border-bottom: 1px solid #164453;
}
.acf-element label input,
.acf-element label input:focus {
    margin-top: 28px;
}

.acf-element textarea::-webkit-input-placeholder,
.acf-element input::-webkit-input-placeholder {
    color: #164453;
    font-weight: 300;
    font-style: italic;
	opacity: 1;
}
.acf-element textarea::-moz-placeholder,
.acf-element input::-moz-placeholder {
    color: #164453;
    font-weight: 300;
    font-style: italic;
	opacity: 1;
}
.acf-element textarea:-ms-input-placeholder,
.acf-element input:-ms-input-placeholder {
    color: #164453;
    font-weight: 300;
    font-style: italic;
	opacity: 1;
}
.acf-element textarea:-moz-placeholder,
.acf-element input:-moz-placeholder {
    color: #164453;
    font-weight: 300;
    font-style: italic;
	opacity: 1;
}

.acf-grid {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.acf-grid .acf-element {
    width: 50%;
}

.acf-element-left {
    padding-right: 11px;
}
.acf-element-right {
    padding-left: 11px;
}

.academies-contact-line {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-bottom: 75px;
}
.academies-contact-line-left {
    width: calc(100% - 300px);
}
.academies-contact-line-left .btn-blue, 
.academies-contact-line-left .btn-blue:focus, 
.academies-contact-line-left .btn-blue:active {
    padding-left: 10px;
    padding-right: 10px;
}
.academies-contact-line-right {
    width: 300px;
}
.academies-contact-line-right {
    font-size: 20px;
    font-weight: 500;
}
.academies-contact-line-right a {
    float: right;
    font-weight: 400;
    /* text-decoration: underline; */
    border-bottom: 1px solid #164453;
    color: #164453;
    position: relative;
}
.academies-contact-line-right a:before {
    content: '';
    position: absolute;
    left: 0;
    transform: translateX(-100%);
    bottom: -1px;
    height: 1px;
    width: 15px;
    background: #fff;
    transition: 0.4s;
}
.academies-contact-line-right a:hover:before {
    left: 100%;
    transform: translateX(0%);
}

/* profile */

.profile-wrapper {
    padding: 170px 40px 90px;
}

.tt-text h5 {
    font-size: 20px;
    line-height: 1.5;
    letter-spacing: 0.1px;
    margin-bottom: 36px;
}
.tt-text h5:last-child {
    margin-bottom: 0px;
}

.profile-hold-left {
    padding-left: 270px;
    position: relative;
    padding-right: 5%;
}
.profile-hold-left > span {
    position: absolute;
    top: 0;
    left: 0;
    width: 242px;
    height: 242px;
    border-radius: 50%;
    background-size: cover !important;
}

.profile-name {
    font-size: 30px;
    font-weight: 500;
    line-height: 1.2;
    margin-bottom: 7px;
}

.profile-name span {
    display: block;
    font-weight: 400;
}

.profile-location {
    font-size: 21px;
    line-height: 1.2;
    margin-bottom: 45px;
}

.profile-contact a {
    display: block;
    color: #164453;
    font-size: 20px;
    border-bottom: 1px solid #164453;
    line-height: 1.2;
    position: relative;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.profile-contact a:after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    transform: translateX(-100%);
    height: 1px;
    width: 20px;
    background: #fff;
    transition: 0.5s;
}
.profile-contact a:hover:after {
    left: 100%;
    transform: translateX(0%);
}

.profile-articles-wrapper {
    background: #f7f7f6;
    padding: 60px 0 115px;
}

.title-xs {
    font-size: 30px;
    font-weight: 500;
    margin-bottom: 56px;
    line-height: 1.1;
}

.article-item a {
    float: left;
    width: 100%;
}

.article-content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.article-title {
    color: #164453;
    font-size: 26px;
    line-height: 1.15;
    position: relative;
    padding-bottom: 30px;
    padding-left: 18px;
    padding-right: 15px;
    transition: 0.6s cubic-bezier(0.33, 1, 0.68, 1)
}

.article-image-hold {
    overflow: hidden;
    transition: 0.6s cubic-bezier(0.33, 1, 0.68, 1)
}


.article-title span {
    position: absolute;
    left: 18px;
    bottom: 0;
    font-size: 18px;
    border-bottom: 1px solid #164453;
    transition: 0.6s cubic-bezier(0.33, 1, 0.68, 1)
}

.article-title span:before {
    content: '';
    position: absolute;
    left: 0;
    bottom: -1px;
    background: #f7f7f6;
    width: 20px;
    height: 1px;
    transform: translateX(-100%);
    transition: 0.5s;
}

.article-item a:hover .article-title span {
    left: 33px;
}
.article-item a:hover .article-title span:before {
    left: 100%;
    transform: translateX(0%);
}
.article-item a:hover .article-title {
    padding-left: 33px;
    padding-right: 0px;
}

.article-item a:hover .article-image {
    opacity: 0.8;
    transform: scale(1);
}
.article-item a:hover .article-image-hold {
    border-radius: 5px;
}

.article-image {
    transform: scale(1.05);
    padding-bottom: 73%;
    background-size: cover !important;
    min-height: 100%;
    transition: 0.8s cubic-bezier(0.33, 1, 0.68, 1);
}

.article-type {
    color: #164453;
    font-family: 'GT-Alpina-TW', 'GT-Alpina', serif;
    font-size: 17px;
    text-transform: uppercase;
    transition: 0.4s;
    margin-bottom: 6px;
}

.article-item {
    margin-bottom: 48px;
}

.article-item:last-child {
    margin-bottom: 0px;
}

.articles-list {
    padding-right: 4%;
}

.articles-explore {
    margin-top: -32px;
    color: #164453;
    font-size: 26px;
    line-height: 1.2;
}
.articles-explore a {
    position: relative;
    color: #164453;
    font-weight: 500;
    display: inline-block;
    border-bottom: 1px  solid #164453;
}
.articles-explore a:before {
    content: '';
    position: absolute;
    left: 0;
    bottom: -1px;
    background: #f7f7f6;
    width: 20px;
    height: 1px;
    transform: translateX(-100%);
    transition: 0.5s;
}
.articles-explore a:hover:before {
    left: 100%;
    transform: translateX(0%);
}

.profile-wrapper .tt-text {
    padding-left: 5%;
}

/* who we are */

.stats-block {
    padding: 120px 0;
    background: #f5f1e2;
}
.stats-block .tt-block {
    margin-bottom: 0;
}

.stats-list {
    margin-top: 90px;
}

.stats-list ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-lines: multiple;
    -moz-box-lines: multiple;
    -ms-flex-wrap: wrap;
    -webkit-flex-wrap:wrap;
    flex-wrap: wrap;
}

.stats-list ul li {
    width: 40%;
    margin-right: 16%;
    margin-bottom: 90px;
    /* opacity: 0; */
    padding-left: 0 !important;
    transition: 0.5s;
}
.stats-list ul li:before {
    display: none !important;
}
.stats-list ul li.close {
    opacity: 1;
}

.stats-list ul li:nth-child(2n) {
    margin-right: 0;
}

.stats-list ul li:nth-last-child(2) {
    margin-bottom: 0;
}

.stats-list ul li:last-child {
    margin-bottom: 0;
}

.stats-list ul li {
    opacity: 0;
    transition: 0.6s;
}
.stats-list ul li.close {
    opacity: 1;
}


.stats-lists-digit {
    color: #194655;
    font-size: 110px;
    line-height: 1;
    margin-bottom: 15px;
}

.stats-lists-text {
    color: #194655;
    font-size: 30px;
    line-height: 1;
    padding-right: 20%;
    opacity: 0;
    transition: 0.6s;
}
.stats-lists-text.close {
    opacity: 1;
}

.it-carousel-block {
    background: #d4c296;
    padding: 45px 0 120px ;
}

.it-carousel-block .title-xs {
    margin-bottom: 45px;
}

.it-carousel-image-circle {
    padding-bottom: 100%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    /* background: #f5f1e2; */
    position: relative;
    overflow: hidden;
    -webkit-mask-image: -webkit-radial-gradient(white, black);
}
.it-carousel-image-circle img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.it-carousel-image-circle video {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
}

.it-carousel-image-circle-video {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    opacity: 0;
    visibility: hidden;
    transition: 0.6s;
}
.it-carousel-image-circle-video.close {
    opacity: 1;
    visibility: visible;
    transition: 0.6s 0.3s;
}

.it-carousel-item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
}

.it-carousel-image-hold {
    padding-right: 10%;
}

.it-carousel-content {
    padding-top: 60px;
    width: calc(100% + 30px);
}

.it-carousel-content h3 {
    font-family: "GT-Alpina", serif;
    font-size: 70px;
    line-height: 1;
    margin-bottom: 60px;
    padding-right: 16%;
    min-height: 140px
}

.it-carousel-list {
    min-height: 144px;
    position: relative;
}

.it-carousel-list-slide {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    visibility: hidden;
    transition: 0.6s;
}
.it-carousel-list-slide.close {
    opacity: 1;
    visibility: visible;
    transition: 0.6s 0.3s;
}

.it-carousel-list p {
    font-size: 24px;
    margin-bottom: 15px;
}
.it-carousel-list p:last-child {
    margin-bottom: 0px;
}
.it-carousel-list ul {
    margin-bottom: 15px;
}
.it-carousel-list ul:last-child {
    margin-bottom: 0px;
}
.it-carousel-list ul li {
    font-size: 24px;
}
.it-carousel-list ul li:before {
    content: '→';
    display: inline-block;
}

.it-carousel .owl-nav {
    position: absolute;
    top: -350px;
    right: 30px;
}

.it-carousel.owl-carousel .owl-nav button.owl-next, 
.it-carousel.owl-carousel .owl-nav button.owl-prev {
    width: 46px;
    height: 41px;
    border-radius: 50%;
    position: relative;
    transition: 0.3s;
}


.it-carousel.owl-carousel .owl-nav button.owl-next:before, 
.it-carousel.owl-carousel .owl-nav button.owl-prev:before {
    content: '';
    position: absolute;
    top: 0;
    height: 100%;
    width: 41px;
    border-radius: 50%;
    transition: 0.3s;
}

.it-carousel.owl-carousel .owl-nav button.owl-prev:before {
    left: 5px;
    background: #164453 url(../img/slide-prev.png) no-repeat center center / 20px 16px;
}
.it-carousel.owl-carousel .owl-nav button.owl-prev:hover:before {
    transform: translateX(-5px);
}

.it-carousel.owl-carousel .owl-nav button.owl-next:before {
    right: 5px;
    background: #164453 url(../img/slide-next.png) no-repeat center center / 20px 16px;
}
.it-carousel.owl-carousel .owl-nav button.owl-next:hover:before {
    transform: translateX(5px);
}

.it-carousel.owl-carousel .owl-nav button.owl-prev {
    margin-right: 20px;
}
.it-carousel.owl-carousel .owl-nav button.disabled {
    opacity: 0.5;
}

.it-carousel.owl-carousel .owl-nav button.owl-next span, 
.it-carousel.owl-carousel .owl-nav button.owl-prev span {
    display: none;
}

.it-carousel .owl-dots {
    position: relative;
    margin-top: 88px;
    margin-left: 5%;
    width: 90%;
    height: 4px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    display: none;
}

.owl-carousel.it-carousel button.owl-dot {
    width: 100%;
    height: 4px;
    background: transparent;
    z-index: 5;
    position: relative;
    transition: 0.2s;
}

.owl-carousel.it-carousel button.owl-dot.active {
    background: #fff;
}

.it-carousel .owl-dots:before {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    width: 100%;
    height: 1px;
    background: #fff;
    top: 50%;
    transform: translateY(-50%);
}

.it-carousel-hold {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;

}

.slider-counter {
    position: absolute;
    top: 0;
    left: 41.666%;
    font-size: 22px;
    line-height: 1.1;
}

.careers-wrapper {
    padding: 105px 0 120px;
    background: #fff;
    position: relative;
    z-index: 10;
}

.cards-list {
    padding: 0 30px;
}

.cards-list ul li {
    float: left;
    width: calc(50% - 10px);
    margin-right: 20px;
}

.cards-list ul li:nth-child(2n) {
    margin-right: 0px;
}

.cards-list ul li a {
    float: left;
    width: 100%;
}

.card-image {
    background-size: cover !important;
    padding-bottom: 98%;
}

.card-button {
    background: #F7F7F6;
    padding: 30px 10px 25px;
    position: relative;
    overflow: hidden;
}
.card-button:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background: #164453;
    transform: translateY(100%);
    transition: 0.3s;
}
.cards-list ul li a:hover .card-button:before {
    transform: translateY(0%);
}

.btn-border-blue,
.btn-border-blue:focus,
.btn-border-blue:active {
    display: inline-block;
    color: #164453;
    padding: 6px 23px;
    border: solid 1px #164453;
    border-radius: 5px;
    font-weight: 500;
    font-style: italic;
    font-size: 24px;
    overflow: hidden;
    position: relative;
    z-index: 2;
    transition: 0.3s;
}

.cards-list ul li a:hover .btn-arrow {
    color: #fff;
    padding: 7px 32px 7px 50px;
    -webkit-box-shadow: inset 0px 0px 0px 1px rgba(255,255,255,1);
    -moz-box-shadow: inset 0px 0px 0px 1px rgba(255,255,255,1);
    box-shadow: inset 0px 0px 0px 1px rgba(255,255,255,1);
}
.cards-list ul li a:hover .btn-arrow:after {
    transform: translate(40px, -50%);
    opacity: 0;
}
.cards-list ul li a .btn-arrow:before {
    -webkit-filter: brightness(10) grayscale(1);
    filter: brightness(10) grayscale(1);
}
.cards-list ul li a:hover .btn-arrow:before {
    transform: translate(0px, -50%);
    opacity: 1;
    transition: 0.5s 0.2s;
}

.chat-hold {
    margin-bottom: 42px;
}

.chat-hold ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}
.chat-hold ul li {
    display: inline-block;
    position: relative;
}
.chat-hold ul li:first-child {
    margin-right: 50px;
}

.chat-image {
    display: inline-block;
    width: 48px;
    height: 48px;
    background-size: cover !important;
    border-radius: 50%;
    opacity: 0;
    transition: 0.5s;
}

.chat-wrapper.in-view .chat-image {
    opacity: 1;
}

.chat-content {
    font-size: 26px;
    font-weight: 400;
    position: relative;
}

.chat-loading {
    position: absolute;
}

.chat-loading span {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
    transition: 0.3s;
}
.chat-loading span:before {
    content: '.';
    position: absolute;
    top: 0;
    left: 6px;
    opacity: 0;
}
.chat-loading span:after {
    content: '.';
    position: absolute;
    top: 0;
    left: 12px;
    opacity: 0;
}

.chat-wrapper.in-view .chat-loading span:before {
    animation: chat 1.0s 0.3s linear infinite;
}
.chat-wrapper.in-view .chat-loading span:after {
    animation: chat 1.0s 0.5s linear infinite;
}
.chat-wrapper.write-done .chat-loading span {
    opacity: 0;
}

.cards-list ul li {
    opacity: 0;
    visibility: hidden;
    transform: translateY(30px);
    transition: 1s cubic-bezier(0.33, 1, 0.68, 1);
}
.chat-wrapper.cards-vis .cards-list ul li {
    opacity: 1;
    transform: translateY(0px);
    visibility: visible;
}
.chat-wrapper.cards-vis .cards-list ul li:nth-child(2) {
    transition-delay: 0.4s;
}

.chat-words span {
    opacity: 0;
    transition: 0.3s;
}
.chat-wrapper.writing .chat-words span {
    opacity: 1;
}
.chat-wrapper.writing .chat-words span:nth-child(2) {
    transition-delay: 0.1s;
}
.chat-wrapper.writing .chat-words span:nth-child(3) {
    transition-delay: 0.2s;
}
.chat-wrapper.writing .chat-words span:nth-child(4) {
    transition-delay: 0.3s;
}
.chat-wrapper.writing .chat-words span:nth-child(5) {
    transition-delay: 0.4s;
}
.chat-wrapper.writing .chat-words span:nth-child(6) {
    transition-delay: 0.5s;
}
.chat-wrapper.writing .chat-words span:nth-child(7) {
    transition-delay: 0.6s;
}
.chat-wrapper.writing .chat-words span:nth-child(8) {
    transition-delay: 0.7s;
}
.chat-wrapper.writing .chat-words span:nth-child(9) {
    transition-delay: 0.8s;
}
.chat-wrapper.writing .chat-words span:nth-child(10) {
    transition-delay: 0.9s;
}
.chat-wrapper.writing .chat-words span:nth-child(11) {
    transition-delay: 1.0s;
}


@keyframes chat {
    0% {
        opacity: 0
    }
    30% {
        opacity: 1;
    }
    60% {
        opacity: 0;
    }
}

/* our people */

.team-block {
     margin-bottom: 160px;
}

.team-list {
    padding: 0 5%;
}

.team-list ul li {
    float: left;
    width: calc(33.333% - 16px);
    margin-right: 24px;
    position: relative;
    /* opacity: 0; */
    transition: 0.3s linear;
}

.team-list ul li.in-view {
    opacity: 1;
}

/* .team-list ul li:nth-child(1) {
    transform: translate(-120px, -120px);
    transition: 1s 0.2s;
}
.team-list ul li.in-view:nth-child(1) {
    transform: translate(0px, 0px);
}

.team-list ul li:nth-child(2) {
    transform: translate(0px, 90px);
    transition: 1.2s 0.4s;
}
.team-list ul li.in-view:nth-child(2) {
    transform: translate(0px, 0px);
}

.team-list ul li:nth-child(3) {
    transform: translate(120px, -90px);
    transition: 1.2s 0.6s;
}
.team-list ul li.in-view:nth-child(3) {
    transform: translate(0px, 0px);
} */

.team-list ul li:nth-child(3n) {
    margin-right: 0px;
}

.team-member {
    padding-bottom: 100%;
    background-size: cover !important;
}

.team-map-block {
    background: #385259 url(../img/bg-map.jpg) no-repeat center center;
    background-size: cover !important;
    padding: 36px 0 30px;
    position: relative;
}
.team-map-block:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    bottom: 0;
    height: 100%;
    background: #385259;
    opacity: 0.5;
}
.team-map-block .row {
    position: relative;
    z-index: 2;
}

.team-map-block .headline {
    color: #fff;
}
.team-map-block .headline span:after {
    background: #fff;
}

.team-map-title {
    color: #fff;
    font-family: "GT-Alpina", serif;
    font-size: 45px;
    line-height: 1;
    margin-bottom: 56px;
}

.team-map-holder {
    display: inline-block;
    position: relative;
}

.team-map {
    margin-bottom: 80px;
}

.members-block {
    background: #FEFEFD;
}

.members-search {
    background: #F7F7F6;
    padding: 14px 18px;
}

.members-search-input {
    display: inline-block;
    width:  275px;
}
.members-search-input input,
.members-search-input input:focus {
    margin: 0;
    box-shadow: none;
    outline: none;
    background: transparent;
    border: none;
    border-bottom: 1px solid #164453;
    padding: 2px 0;
    font-size: 16px;
    height: 28px;
    color: #164453;
}

.members-search-input input::-webkit-input-placeholder {
	color: #164453;
	opacity: 0.5;
}
.members-search-input input::-moz-placeholder {
	color: #164453;
	opacity: 0.5;
}
.members-search-input input:-ms-input-placeholder {
	color: #164453;
	opacity: 0.5;
}
.members-search-input input:-moz-placeholder {
	color: #164453;
	opacity: 0.5;
}

.members-list {
    padding: 15px 18px;
    padding-right: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    white-space: nowrap;
    overflow: hidden;
    height: 95px !important;
}


.members-list-item a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding-right: 20px;
    width: calc((100vw - 100px) / 5);
}

.members-list-image-hold {
    width: 65px;
    min-width: 65px;
}

.members-list-image {
    padding-bottom: 100%;
    background-size: cover !important;
    border-radius: 50%;
}

.members-list-content-hold {
    padding-left: 20px;
}

.members-list-title {
    font-size: 17px;
    letter-spacing: 0.32px;
    color: #164453;
}

.members-list-title span {
    border-bottom: 1px solid #164453;
    position: relative;
}
.members-list-title span:before {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    transform: translateX(-100%);
    height: 1px;
    width: 15px;
    background: #fff;
    transition: 0.4s;
}

.members-list-item a:hover .members-list-title span:before {
    left: 100%;
    transform: translateX(-0%);
}

.members-list-location,
.members-list-position {
    color: #164453;
    font-size: 15px;
    letter-spacing: 0.28px;
    line-height: 1.25;
}


.members-navigation {
    float: right;
}
.members-navigation a {
    display: inline-block;
    margin-right: 20px;
}
.members-navigation a:last-child {
    margin-right: 0px;
}
.members-navigation a img  {
    max-width: 20px;
}

.member-location {
    position: absolute;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #fff;
    transform: translate(-50%, -50%);
    cursor: pointer;
    transition: 0.4s;
}
.member-location:hover {
    z-index: 2;
}
.member-location:before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.1);
    width: 22px;
    height: 22px;
    border-radius: 50%;
    border: 1px solid #fff;
    opacity: 0;
    visibility: hidden;
    -webkit-box-shadow: 0px 2px 4px rgba(0,0,0,0.3);
    -moz-box-shadow: 0px 2px 4px rgba(0,0,0,0.3);
    box-shadow: 0px 2px 4px rgba(0,0,0,0.3);
    transition: 0.4s;
}

.one-clicked .member-location {
    opacity: 0.3;
}
.one-clicked .member-location.clicked {
    opacity: 1;
    -webkit-box-shadow: 0px 2px 4px rgba(0,0,0,0.3);
    -moz-box-shadow: 0px 2px 4px rgba(0,0,0,0.3);
    box-shadow: 0px 2px 4px rgba(0,0,0,0.3);
}
.one-clicked .member-location:hover {
    opacity: 1;
}


.member-location.opacity {
    opacity: 0.5;
}

.member-location.opacity.clicked {
    opacity: 1;
}

.member-location.opacity-clicked {
    opacity: 0.5;
}

.member-location.clicked:before {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
    visibility: visible;
}

.member-location.clicked .map-location-city {
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, 0px);
}

.member-location-content {
    position: absolute;
    width: 1px;
    height: 1px;
    opacity: 0;
    visibility: hidden;
}

.map-location-city {
    position: absolute;
    white-space: nowrap;
    background: #fff;
    padding: 2px 11px;
    font-size: 12px;
    left: 50%;
    bottom: calc(100% + 12px);
    transform: translate(-50%, 5px);
    opacity: 0;
    visibility: hidden;
    -webkit-box-shadow: 0px 2px 4px rgba(0,0,0,0.2);
    -moz-box-shadow: 0px 2px 4px rgba(0,0,0,0.2);
    box-shadow: 0px 2px 4px rgba(0,0,0,0.2);
    transition: 0.5s;
}
.map-location-city:before {
    content: '';
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    border-top: 8px solid #fff;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
}

.member-location:hover .map-location-city {
    transform: translate(-50%, 0px);
    opacity: 1;
    visibility: visible;
}

.members-navigation a img {
    transition: 0.3s;
}

.members-left {
    display: inline-block;
    padding-left: 5px;
}
.members-left:hover img {
    transform: translateX(-5px);
}
.members-right {
    display: inline-block;
    padding-right: 5px;
}
.members-right:hover img {
    transform: translateX(5px);
}




/* contact */

.contact-map-block {
    margin-bottom: 120px;
}

.contacs-list-item {
    margin-bottom: 60px;
    cursor: pointer;
}
.contacs-list-item * {
    opacity: 0.5;
    transition: 0.2s;
}

/* .contacts-list-hold:hover .contacs-list-item * {
    transition: 0.2s;
} */
.contacs-list-item:hover * {
    opacity: 0.7;
}
.contacs-list-item.active * {
    opacity: 1;
}
.contacs-list-item h3 {
    font-weight: 500;
    font-size: 26px;
}
.contacs-list-item p {
    font-size: 22px;
}

.contact-map-hold .sticky {
    width: 100%;
}
.contact-map-holder {
    background: #164453;
    padding: 40px 55px;
    text-align: center;
}

.contacts-list-hold {
    width: 350px;
    padding-top: 190px;
    min-height: 200vh;
    padding-bottom: calc(100vh - 300px);
}

.contact-map-hold {
    width: calc(100% - 350px);
    padding-right: 80px;
}

.map-itself {
    position: relative;
    display: inline-block;
    max-width: 1000px;
}

.page-template-template-contact .header.scrolled-down .logo {
    opacity: 0;
    visibility: hidden;
}
.page-template-template-contact .header.scrolled-down.menu-active .logo {
    opacity: 1;
    visibility: visible;
}

.sticky {
    margin-top: 10px !important;
}

.map-location {
    position: absolute;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #fff;
    transform: translate(-50%, -50%);
    cursor: pointer;
    transition: 0.4s;
}
.map-location.active {
    -webkit-box-shadow: 0px 2px 4px rgba(0,0,0,0.3);
    -moz-box-shadow: 0px 2px 4px rgba(0,0,0,0.3);
    box-shadow: 0px 2px 4px rgba(0,0,0,0.3);
}
.map-location:before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.1);
    width: 22px;
    height: 22px;
    border-radius: 50%;
    border: 1px solid #fff;
    opacity: 0;
    -webkit-box-shadow: 0px 2px 4px rgba(0,0,0,0.3);
    -moz-box-shadow: 0px 2px 4px rgba(0,0,0,0.3);
    box-shadow: 0px 2px 4px rgba(0,0,0,0.3);
    transition: 0.4s;
}
.map-location.active:before {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}

.contact-search-hold {
    margin-bottom: 50px;
    padding-right: 20%;
}
.contact-search-hold input,
.contact-search-hold input:focus {
    outline: none;
    border: none;
    border-bottom: 1px solid #164453;
    height: 42px;
    margin: 0;
    box-shadow: none;
    padding: 2px 0;
    font-size: 22px;
    color: #164453;
}

.contact-map-hold .tt-text h5 {
    min-height: 46px;
    margin-bottom: 24px;
}



.contact-search-hold input::-webkit-input-placeholder {
	color: #164453;
    opacity: 0.5;
    font-style: italic;
}

.contact-search-hold input::-moz-placeholder {
	color: #164453;
    opacity: 0.5;
    font-style: italic;
}

.contact-search-hold input:-ms-input-placeholder {
	color: #164453;
    opacity: 0.5;
    font-style: italic;
}

.contact-search-hold input:-moz-placeholder {
	color: #164453;
    opacity: 0.5;
    font-style: italic;
}

.map-pin-text {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
}

/* our story */

.story-wrapper {
    /* min-height: 100vh; */
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    height: 100%;
    width: 50%;
    opacity: 0;
    visibility: hidden;
    transition: 0.6s;
}
.story-wrapper:before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 150px;
    background: linear-gradient(to top, rgba(255,255,255,1), rgba(255,255,255,0));
    transform: translateY(100%);
    z-index: 1;
    transition: 0.5s;
}
.story-image-hold:before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 130px;
    background: linear-gradient(to top, rgba(255,255,255,1), rgba(255,255,255,0));
    transform: translateY(100%);
    z-index: 1;
    transition: 0.3s;
}
.story-wrapper.no-transition:before {
    transform: translateY(0%);
}

.story-image-hold.no-transition:before {
    transform: translateY(0%);
}
.story-wrapper.close {
    opacity: 1;
    visibility: visible;
}

.story-content-1 .story-content {
    transform: translateY(30px);
    transition: 1s cubic-bezier(0.33, 1, 0.68, 1);
}
.story-wrapper.close .story-content-1 .story-content {
    transform: translateY(0px);
}

.story-image-hold {
    position: fixed;
    top: 0;
    right: 0;
    width: 50%;
    bottom: 0;
    height: 100%;
    overflow: hidden;
    background: #e0d6cd;
    /* opacity: 0; */
    /* visibility: hidden; */
    
    transition: 1.2s cubic-bezier(0.33, 1, 0.68, 1)
}

.story-image-hold.new-animation {
    transform: translateX(100%) !important;
}

.story-image-hold.new-animation.resize {
    transform: translateX(0%) !important;
}

.story-image {
    padding-bottom: 112.5%;
    position: absolute;
    /* top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%; */
    top: 50%;
    left: 50%;
    width: 100%;
    transform: translate(-50%, -50%);
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    -webkit-filter: blur(50px);
    filter: blur(50px);
    transform-origin: top right;
    transition: 1.6s linear;
}

.story-image:before {
    /* content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 50px;
    background: linear-gradient(to bottom, #e0d6cd, transparent); */
}
.story-image:after {
    /* content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 50px;
    background: linear-gradient(to top, #e0d6cd, transparent); */
}

.story-image-hold.blur .story-image {
    -webkit-filter: blur(0px);
    filter: blur(0px);
}

.story-first-scroll {
    height: 20vh;
}

.intro-story-hold {
    height: 100vh;
}

.section-story {
    height: 80vh;
}
.section-story.section-story-gap {
    height: 120vh;
}

.story-content-hold {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    overflow: auto;
    opacity: 0;
    visibility: hidden;
    transition: 1s cubic-bezier(0.33, 1, 0.68, 1);
}

.story-content-hold::-webkit-scrollbar {
    display: none;
    width: 0px;  
    background: transparent;
}

.story-content-hold {
    -ms-overflow-style: none; 
    scrollbar-width: none; 
}

.mCSB_scrollTools .mCSB_draggerRail {
    background-color: #fff;
}

.story-content-hold.close {
    opacity: 1;
    visibility: visible;
}

.story-content {
    width: 100%;
    padding: 0px 10%;
}

.intro-story-scroll {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    opacity: 0;
    transition: 0.6s;
}
.intro-story-scroll.close {
    opacity: 1;
}

.story-location {
    position: absolute;
    transform-origin: center center;
    width: 33px;
    height: 33px;
    border-radius: 50%;
    background: #fff;
    transform: translate(-50%, -50%);
    /* transition: transform 1.6s cubic-bezier(0.65, 0, 0.35, 1), width 0.6s, height 0.6s;
    transition: 1.6s cubic-bezier(0.65, 0, 0.35, 1); */
    transition: 0.4s;
}

.story-location:before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transform-origin: center center;
    border-radius: 50%;
    width: 53px;
    height: 53px;
    border: 2px solid #fff;
    /* transition: 1.6s cubic-bezier(0.65, 0, 0.35, 1); */
    transition: 0.4s;
}

.story-location-1 {
    left: 68%;
    top: 9%;
}

.story-location-2 {
    left: 53%;
    top: 41%;
}

.story-location-3 {
    left: 30%;
    top: 53%;
}

.story-location-4 {
    left: 71%;
    top: 70%;
}

.story-location-5 {
    left: 66%;
    top: 90%;
}

.intro-text p {
    margin-bottom: 24px;
}
.intro-text p:last-child {
    margin-bottom: 0px;
}

.story-content-type-2 {
    width: 100%;
    padding-top: 100px;
    padding-bottom: 100px;
    padding-right: 15px;
    padding-left: 30px;
}
.story-content-type-2 .row {
    padding: 0;
}

.story-title {
    font-family: "GT-Alpina", serif;
    font-size: 40px;
    line-height: 1.15;
    letter-spacing: -0.48px;
    margin-bottom: 70px;
}

.story-title span {
    display: block;
    font-style: italic;
}

.story-year {
    font-family: "GT-Alpina", serif;
    font-size: 16px;
    margin-bottom: 16px;
}

.story-content-image-hold {
    padding-left: 30px;
    margin-bottom: 70px;
}

.story-content-image {
    padding-bottom: 126%;
    background-size: cover !important;
}


.story-content-text p {
    font-size: 20px;
    margin-bottom: 24px;
}
.story-content-text p:last-child {
    margin-bottom: 0px;
}

.intro-story-content-scroll {
    position: fixed;
    bottom: 40px;
    left: calc(100% - 40px);
    transform: translateX(-100%);
    transition: 0.05s linear;
}

.story-content-1 {
    opacity: 1;
    visibility: hidden;
    transition: 0.6s linear;
}

.story-wrapper .story-content-1 {
    opacity: 1;
    visibility: visible;
    transition: 0.6s 1s linear;
}
.story-wrapper.story-2-reached .story-content-hold {
    opacity: 0;
    visibility: hidden;
}
.story-wrapper.story-2-reached .story-content-1 {
    transition: 0.6s linear;
}
.story-wrapper .story-content-hold {
    transform: translateY(30px);
}
.story-wrapper.story-2-reached .story-content-2 {
    opacity: 1;
    visibility: visible;
    transform: translateY(0px);
    transition: 0.6s 1s linear;
}

.story-wrapper.story-2-reached.story-3-reached .story-content-hold {
    opacity: 0;
    visibility: hidden;
}
.story-wrapper.story-2-reached.story-3-reached .story-content-2 {
    transition: 0.6s linear;
}
.story-wrapper.story-2-reached.story-3-reached .story-content-3 {
    opacity: 1;
    visibility: visible;
    transform: translateY(0px);
    transition: 0.6s 1s linear;
}

.story-wrapper.story-2-reached.story-3-reached.story-4-reached .story-content-hold {
    opacity: 0;
    visibility: hidden;
}
.story-wrapper.story-2-reached.story-3-reached.story-4-reached .story-content-3 {
    transition: 0.6s linear;
}
.story-wrapper.story-2-reached.story-3-reached.story-4-reached .story-content-4 {
    opacity: 1;
    visibility: visible;
    transform: translateY(0px);
    transition: 0.6s 1s linear;
}

.story-wrapper.story-2-reached.story-3-reached.story-4-reached.story-5-reached .story-content-hold {
    opacity: 0;
    visibility: hidden;
}
.story-wrapper.story-2-reached.story-3-reached.story-4-reached.story-5-reached .story-content-4 {
    transition: 0.6s linear;
}
.story-wrapper.story-2-reached.story-3-reached.story-4-reached.story-5-reached .story-content-5 {
    opacity: 1;
    visibility: visible;
    transform: translateY(0px);
    transition: 0.6s 1s linear;
}

.story-wrapper.story-2-reached.story-3-reached.story-4-reached.story-5-reached.story-6-reached .story-content-hold {
    opacity: 0;
    visibility: hidden;
}
.story-wrapper.story-2-reached.story-3-reached.story-4-reached.story-5-reached.story-6-reached .story-content-5 {
    transition: 0.6s linear;
}
.story-wrapper.story-2-reached.story-3-reached.story-4-reached.story-5-reached.story-6-reached .story-content-6 {
    opacity: 1;
    visibility: visible;
    transform: translateY(0px);
    transition: 0.6s 1s linear;
}

.story-wrapper.story-2-reached.story-3-reached.story-4-reached.story-5-reached.story-6-reached.story-7-reached .story-content-hold {
    opacity: 0;
    visibility: hidden;
}
.story-wrapper.story-2-reached.story-3-reached.story-4-reached.story-5-reached.story-6-reached.story-7-reached .story-content-6 {
    transition: 0.6s linear;
}
.story-wrapper.story-2-reached.story-3-reached.story-4-reached.story-5-reached.story-6-reached.story-7-reached .story-content-7 {
    opacity: 1;
    visibility: visible;
    transform: translateY(0px);
    transition: 0.6s 1s linear;
}

.story-wrapper.no-transition {
    transition: 0s;
}
.story-image-hold.no-transition {
    transition: 0s !important;
}

.story-image-hold.story-3-reached .story-image {
    transform: translate(-50%, -50%) scale(1.8);
}
.story-image-hold.story-3-reached .story-location {
    /* transform: translate(-50%, -50%) scale(0.55); */
}

.story-image-hold.story-3-reached.story-4-reached .story-image {
    transform: translate(-50%, -50%) scale(1.8);
    transform-origin: 60% 33%;
}
.story-image-hold.story-3-reached.story-4-reached .story-location {
    /* transform: translate(-50%, -50%) scale(0.55); */
}

.story-image-hold.story-3-reached.story-4-reached.story-5-reached .story-image {
    transform: translate(-50%, -50%) scale(1.8);
    transform-origin: 20% 55%;
}
.story-image-hold.story-3-reached.story-4-reached.story-5-reached .story-location {
    /* transform: translate(-50%, -50%) scale(0.55); */
}
.story-image-hold.story-3-reached.story-4-reached.story-5-reached.story-6-reached .story-image {
    transform: translate(-50%, -50%) scale(1.8);
    transform-origin: 80% 85%;
}
.story-image-hold.story-3-reached.story-4-reached.story-5-reached.story-6-reached .story-location {
    /* transform: translate(-50%, -50%) scale(0.55); */
}
.story-image-hold.story-3-reached.story-4-reached.story-5-reached.story-6-reached.story-7-reached .story-image {
    transform: translate(-50%, -50%) scale(2);
    transform-origin: 85% 100%;
}
.story-image-hold.story-3-reached.story-4-reached.story-5-reached.story-6-reached.story-7-reached .story-location {
    /* transform: translate(-50%, -50%) scale(0.5); */
}

.story-content-hold.story-content-hold-block {
    display: block;
}

.story-3-reached .story-location {
    opacity: 0.4;
}
.story-3-reached .story-location-1 {
    opacity: 1;
}
.story-3-reached .story-location-1:before {
}
.story-3-reached .story-location:before {
    border-width: 1px;
    transform: translate(-50%, -50%) scale(0.9);
}
.story-3-reached .story-location:hover:before {
    transform: translate(-51%, -51%) scale(0.75);
}

.story-3-reached .story-tooltip-on-left {
    right: 5px;
}
.story-3-reached .story-tooltip-on-right {
    left: 6px;
}



.story-4-reached .story-location {
    opacity: 0.4;
}
.story-4-reached .story-location-2 {
    opacity: 1;
}
.story-4-reached .story-location-2:before {
}


.story-5-reached .story-location {
    opacity: 0.4;
}
.story-5-reached .story-location-3 {
    opacity: 1;
}
.story-5-reached .story-location-3:before {
}


.story-6-reached .story-location {
    opacity: 0.4;
}
.story-6-reached .story-location-4 {
    opacity: 1;
}
.story-6-reached .story-location-4:before {
}


.story-7-reached .story-location {
    opacity: 0.4;
}
.story-7-reached .story-location-5 {
    opacity: 1;
}
.story-7-reached .story-location-5:before {
}


.story-tooltip {
    position: absolute;
    z-index: 5;
    width: 200px;
    top: -10px;
    background: #fff;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    opacity: 0;
    visibility: hidden;
    transform-origin: top center;
    transition: 0.4s;
}
.story-location:hover .story-tooltip {
    opacity: 1;
    visibility: visible;
    top: -6px;
}
.story-location:hover .story-tooltip-on-left {
    transform: translateX(22px) scale(0.833) !important;
}
.story-location:hover .story-tooltip-on-right {
    transform: translateX(-22px) scale(0.833) !important;
}
.story-tooltip:after {
    content: '';
    position: absolute;
    top: 20px;
    width: 0px;
    height: 2px;
    background: #fff;
    transition: 0.3s 0.2s;
}

.story-3-reached .story-tooltip-on-left {
    transform: translateX(-25px) scale(0.6);
}
.story-3-reached .story-tooltip-on-right {
    transform: translateX(25px) scale(0.6);
}

.story-3-reached .story-location:hover .story-tooltip {
    transform: translateX(0px) scale(0.5) !important;
}


.story-location:hover .story-tooltip:after {
    width: 47px;
}

.tooltip-link span {
    display: inline-block;
    transition: 0.4s;
}
.story-tooltip:hover .tooltip-link span {
    transform: translateX(6px);
}

.story-tooltip-left {
    background-size: Cover !important;
    width: 66px;
}

.story-tooltip-right {
    width: calc(100% - 66px);
    padding: 8px 6px 30px 10px;
    position: relative;
    min-height: 88px;
}

.tooltip-title {
    font-family: "GT-Alpina", serif;
    font-size: 18px;
    font-weight: 300;
    line-height: 1.1;
    letter-spacing: -0.216px;
    color: #164453;
    margin-bottom: 12px;
}
.tooltip-title span {
    display: block;
    font-style: italic;
}

.tooltip-link {
    color: #164453;
    position: absolute;
    bottom: 5px;
    left: 10px;
    font-size: 15px;
}

.story-tooltip-on-left {
    right: calc(100% + 48px);
    transform: translateX(-20px);
}
.story-tooltip-on-right {
    left: calc(100% + 48px);
    transform: translateX(20px);
}
.story-tooltip-on-left:after {
    left: 100%;
}
.story-tooltip-on-right:after {
    right: 100%;
}

.story-location:hover {
    opacity: 1 !important;
    /* width: 42px;
    height: 42px; */
    transform: translate(-50%, -50%) scale(1.2);
}
.story-location:hover:before {
    transform: translate(-50%, -50%) scale(0.833);
}

.story-back {
    position: absolute;
    right: 15px;
    top: 75px;
    transform: translateX(120px);
    opacity: 0;
    visibility: hidden;
    z-index: 50;
    transition: 0.6s;
}

.story-3-reached .story-back {
    transform: translateX(0px);
    opacity: 1;
    visibility: visible;
}

.story-content-2 .intro-text {
    font-size: 22px;
}

.story-mob-content {
    display: none;
}

.story-content-2 {
    padding: 120px 0;
}
.story-content-2 .story-content {
    overflow: auto;
}

.story-mob-intro {
    background-size: cover !important;
    min-height: 100vh;
    padding: 100px 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;

    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-bottom: 80px;
    opacity: 0;
    visibility: hidden;
    transition: 0.6s;
}
.story-mob-intro.close {
    opacity: 1;
    visibility: visible;
}

.story-mob-intro .title-lg {
    margin-bottom: 50vh;
}

.story-mob-map {
    padding-bottom: 50%;
    background-size: cover !important;
    margin-bottom: 30px;
}

.story-mob-item {
    margin-bottom: 80px;
}

.story-mob-image-hold {
    margin-bottom: 60px;
}

.story-mob-image {
    display: inline-block;
    width: 250px;
    height: 320px;
    background-size: cover !important;
}

.mob-story-last {
    padding-bottom: 140%;
    background-size: cover !important;
}

.transition-in {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    height: 100%;
    width: 100%;
    background: #fff;
    z-index: 3333;
    transform: translateY(0%);
    transition: 0.8s;
}
.transition-in.close {
    transform: translateY(-100%);
}

.transition-out {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    height: 100%;
    width: 100%;
    background: #fff;
    z-index: 3333;
    transform: translateY(-100%);
    transition: 0.5s;
}
.transition-out.close {
    transform: translateY(0%);
}

.content-width {
    max-width: 510px;
    margin: 0 auto;
}
.content-width:after {
    content: '';
    display: block;
    clear: both;
}

.newsletter-1 {
    transition: 1.2s cubic-bezier(0.61, 1, 0.88, 1);
}
.newsletter-2 {
    transition: 1.2s 0.15s cubic-bezier(0.61, 1, 0.88, 1);
}
.newsletter-3 {
    transition: 1.2s 0.3s cubic-bezier(0.61, 1, 0.88, 1);
}
.newsletter-4 {
    transition: 1.2s 0.3s cubic-bezier(0.61, 1, 0.88, 1);
}

.newsletter-element {
    opacity: 0;
}

.newsletter-element.in-view {
    opacity: 1;
}

.page-template-template-whatweoffer .tt-block + .tt-block {
    margin-top: 0px;
}

.media-image-hold {
    overflow: hidden;
}

.intro-full-content .title-lg {
    margin-bottom: 40px;
}

.intro-split-preloader {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    z-index: 6666;
    background: #fff;
    transition: 1.2s cubic-bezier(0.33, 1, 0.68, 1);
    overflow: hidden;
}

.intro-split-preloader.fadeout {
    opacity: 0;
    visibility: hidden;
} 

/* .intro-split-preloader video {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    min-height: 100%;
    min-width: 100%;
    opacity: 0;
    transition: 1.2s cubic-bezier(0.33, 1, 0.68, 1);
}
.intro-split-preloader.close video {
    opacity: 1;
}
.intro-split-preloader.resize {
    left: auto;
    width: 50%;
}
 */

 .team-map-block .headline {
    font-family: "Suisse", sans-serif;
    text-transform: uppercase;
    margin-bottom: 20px;
 }

 .page-template-template-story .careers-wrapper {
     position: relative;
 }

 .page-template-template-story .careers-wrapper:before {
     content: '';
     position: absolute;
     bottom: 100%;
     left: 0;
     right: 0;
     width: 100%;
     height: 150px;
     background: linear-gradient(to top, rgba(255,255,255,1), rgba(255,255,255,0));
 }

 .academies-section .tt-block {
     transition: 0.5s;
 }

.intro-specialty .headline {
    margin-bottom: 20px;
}

.single-specialty .tabs-content {
    transition: 0.5s;
}

.intro-video-gap {
    min-height: 80vh;
}
.intro-video-gap-sm {
    min-height: 60vh;
}

.features-carousel-video-hold {
    padding-bottom: 100%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    overflow: hidden;
    position: relative;
    -webkit-mask-image: -webkit-radial-gradient(white, black);
}
.features-carousel-video-hold video {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    min-height: 100%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
}

.features-carousel .owl-item {
    transition: opacity 0.3s;
    opacity: 0.5;
}
.features-carousel .owl-item.active {
    opacity: 1;
}
.features-carousel .owl-item.active.lastactiveitem {
    opacity: 0.5;
}
.features-carousel.last-reached .owl-item.active.lastactiveitem {
    opacity: 1;
}
.features-carousel .owl-item.active.lastactiveitem:not(:last-child) {
    opacity: 0.5;
}
/* .features-carousel .owl-item.active.lastactiveitem + .owl-item {
    opacity: 0.5;
} */

.single-specialty .tabs-specialty .tabs {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.academies-section .tt-block:after {
    content: '';
    display: block;
    clear: both;
}
.academies-section:after {
    content: '';
    display: block;
    clear: both;
}

div.wpcf7-validation-errors, 
div.wpcf7-acceptance-missing,
div.wpcf7-mail-sent-ng {
    border: none !important;
    float: left !important;
    margin: 10px 0 !important;
    padding: 0 !important;
    color: #ef586b !important;
}

div.wpcf7-mail-sent-ok {
    float: left !important;
    border: none !important;
    padding: 0 !important;
    margin: 10px 0 !important;
}

span.wpcf7-not-valid-tip {
	display: none !important;
}

span.wpcf7-list-item {
    margin: 0 !important;
}

.acf-element input.wpcf7-not-valid,
.acf-element input.wpcf7-not-valid:focus,
.acf-element textarea.wpcf7-not-valid,
.acf-element textarea.wpcf7-not-valid:focus {
    border-color: #ef586b;
}

.wpcf7 form.invalid .wpcf7-response-output, .wpcf7 form.unaccepted .wpcf7-response-output {
    float: left;
    width: 100%;
    text-align: center;
    border: none !important;
    padding: 0 !important;
    margin: 0 !important;
    margin-top: 15px !important;
}

.wpcf7 form.sent .wpcf7-response-output {
    float: left;
    width: 100%;
    text-align: center;
    border: none !important;
    padding: 0 !important;
    margin: 0 !important;
    margin-top: 15px !important;
}

.my-tabs-content {
    position: relative;
    transition: 0.8s linear;
}

.my-tabs-panel {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    visibility: hidden;
    transition: 0.2s linear;
}

.my-tabs-panel.is-active {
    opacity: 1;
    visibility: visible;
    transition: 0.4s 0.6s linear;
}

.my-tabs-links {
    margin-bottom: 60px;
}

.my-tabs-links ul li {
    float: left;
    margin-right: 60px;
    padding-left: 0 !important;
}
.my-tabs-links ul li:before {
    display: none !important;
}

.my-tabs-links ul li:last-child {
    margin-right: 0px;
}

.my-tabs-links ul li a {
    display: inline-block;
    padding: 0px;
    color: #1d4a58;
    font-size: 30px;
    font-weight: 500;
    line-height: 1;
    position: relative;
    z-index: 20;
    font-size: 20px;
}

.my-tabs-links ul li a:before {
    content: '';
    position: absolute;
    left: 0;
    height: 1px;
    background: #1d4a58;
    width: 0;
    bottom: -1px;
    transition: 0.5s;
}

.my-tabs-links ul li.is-active a:before,
.my-tabs-links ul li a:hover:before {
    width: 100%;
}

.nav-magazine:hover .nav-magazine-image {
    border-radius: 9px;
}
.nav-magazine:hover .nav-magazine-content {
    transform: translateX(15px);
}

.members-list-item {
    top: auto !important;
    left: auto !important;
    position: relative !important;
    transform: none !important;
    transition: 0.4s;
}

.members-list:hover .members-list-item {
    opacity: 0.5;
}
.members-list .members-list-item:hover {
    opacity: 1;
}

.tabs-specialty-bottom {
    margin-top: 75px;
}

.my-tabs-specialties .my-tabs-links ul li a {
    font-size: 30px;
}
.my-tabs-specialties .my-tabs-links ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.image-about-text {
    opacity: 0;
    transition: 0.8s cubic-bezier(0.33, 1, 0.68, 1);
}
.image-about-text.close {
    opacity: 1;
}

.header-shadow {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 1px;
}

.story-wrapper:after {
    content: '';
    position: absolute;
    left: 0;
    width: 100%;
    top: 0;
    height: 100px;
    background: linear-gradient(to bottom, rgba(255,255,255,1), rgba(255,255,255,0))
}

.page-template-template-story .header.story-header .nav {
    transform: translateY(-100px);
}

.page-template-template-story .header.story-header:after {
    transform: translateY(-100px);
}

.story-content-image-hold {
    position: fixed;
    top: 100px;
    left: 64%;
    transition: 0.05s linear;
}

/* magazine */

.intro-magazine {
    padding: 152px 0 60px;
}

.intro-magazine-text {
    font-size: 26px;
    line-height: 1.4;
}

.magazine-carousel-item {
    padding: 62px 0;
}

.magazine-carousel-item-image-hold {
    padding-right: 1%;
}

.magazine-carousel-item-image-effect {
    position: relative;
    overflow: hidden;
}

.magazine-carousel-item-image {
    padding-bottom: 110%;
    background-size: cover !important;
    transform: scale(1.05);
    transition: 0.8s cubic-bezier(0.33, 1, 0.68, 1);
}

.magazine-carousel-item-block a:hover .magazine-carousel-item-image {
    transform: scale(1);
    opacity: 0.8;
}

.magazine-carousel-item-block {
    /* display: -webkit-box;
    display: -ms-flexbox;
    display: flex;

    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center; */
}
.magazine-carousel-item-block a {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;

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

.facilitators-dialogs {
    background: #ede7cb;
}

.thoughts-leaders-dialogue {
    background: #e7eeee;
}

.title-line {
    font-family: 'GT-Alpina-TW', 'GT-Alpina', serif;
    font-size: 16px;
    line-height: 1.3;
    border-bottom: solid 1px #164453;
    padding-bottom: 6px;
    margin-bottom: 20px;
}

.magazine-carousel-item-title {
    font-size: 30px;
    font-weight: 500;
    line-height: 1;
    margin-bottom: 18px;
    color: #164453;
}
.magazine-carousel-item-subtitle {
    font-family: "GT-Alpina", serif;
    font-size: 26px;
    font-weight: 300;
    line-height: 1.2;
    margin-bottom: 55px;
    color: #164453;
}

.magazine-carousel-item-text {
    font-size: 17px;
    line-height: 1.25;
    margin-bottom: 18px;
    color: #164453;
}

.magazine-carousel-item-content-hold {
    padding: 0 4%;
}

.btn-link-arrow,
.btn-link-arrow:focus,
.btn-link-arrow:active {
    display: inline-block;
    font-size: 17px;
    padding-right: 20px;
    color: #164453;
    border-bottom: 1px solid #164453;
    background: url(../img/arrow-right.png) no-repeat center right / 12px 9px;
    position: relative;
}
.btn-link-arrow:hover {
    color: #164453;
}
.btn-link-arrow:after {
    content: '';
    position: absolute;
    left: 0;
    transform: translateX(-100%);
    bottom: -1px;
    height: 1px;
    width: 15px;
    background: #fff;
    transition: 0.4s;
}
.btn-link-arrow:hover:after {
    left: 100%;
    transform: translateX(0%);
}

.facilitators-dialogs .btn-link-arrow:after {
    background: #ede7cb;
}
.thoughts-leaders-dialogue .btn-link-arrow:after {
    background: #e7eeee;
}

.magazine-highlighted-wrapper .btn-link-arrow:after {
    background: #E6EDED;
}

.magazine-carousel-item-content .headline {
    font-size: 15px;
    margin-bottom: 18px;
    color: #164453;
}

.magazine-carousel-wrapper {
    position: relative;
}

.magazine-slider-counter {
    font-family: 'GT-Alpina-TW', 'GT-Alpina', serif;
    position: absolute;
    bottom: 58px;
    left: calc(50% + 10px);
    z-index: 10;
}

.magazine-carousel.owl-carousel .owl-nav button.owl-next span, 
.magazine-carousel.owl-carousel .owl-nav button.owl-prev span {
    display: none;
}
.magazine-carousel.owl-carousel .owl-nav button.owl-next, 
.magazine-carousel.owl-carousel .owl-nav button.owl-prev {
    position: absolute;
    width: 30px;
    height: 30px;
    bottom: 50px;
}
.magazine-carousel.owl-carousel .owl-nav button.owl-next, 
.magazine-carousel.owl-carousel .owl-nav button.owl-prev {
    position: absolute;
    width: 30px;
    height: 30px;
    bottom: 56px;
}
.magazine-carousel.owl-carousel .owl-nav button.owl-next:before, 
.magazine-carousel.owl-carousel .owl-nav button.owl-prev:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    bottom: 0;
    width: 100%;
}

.magazine-carousel.owl-carousel .owl-nav button.owl-prev {
    right: calc((100vw - 1040px) / 2 + 50px);
}
.magazine-carousel.owl-carousel .owl-nav button.owl-next {
    right: calc((100vw - 1040px) / 2);
}
 
.magazine-carousel.owl-carousel .owl-nav button.owl-prev:before {
    background: url(../img/arrow-right.png) no-repeat center center / 18px 14px;
    transform: rotate(180deg);
    
}
.magazine-carousel.owl-carousel .owl-nav button.owl-next:before {
    background: url(../img/arrow-right.png) no-repeat center center / 18px 14px;
}

.magazine-latest-wrapper {
    padding: 120px 0 150px;
}

.magazine-latest ul li {
    float: left;
    width: calc(33.333% - 14px);
    margin-right: 21px;
}

.magazine-latest ul li:nth-child(1) {
    transition-delay: 0.3s;
}
.magazine-latest ul li:nth-child(2) {
    transition-delay: 0.5s;
}
.magazine-latest ul li:nth-child(3) {
    transition-delay: 0.7s;
}

.magazine-latest ul li:nth-child(3n) {
    margin-right: 0px;
}

.magazine-latest ul li a {
    float: left;
    width: 100%;
}

.magazine-latest-image {
    background-size: cover !important;
    padding-bottom: 74%;
    position: relative;
    transform: scale(1.05);
    transition: 0.8s cubic-bezier(0.33, 1, 0.68, 1);
}
.magazine-latest-image-hold span {
    font-family: 'GT-Alpina-TW', 'GT-Alpina', serif;
    padding: 7px 8px;
    position: absolute;
    top: 10px;
    left: 10px;
    background: #fff;
    color: #164453;
    font-size: 12px;
    line-height: 1.1;
    max-width: 132px;
}

.magazine-latest-title {
    color: #164453;
    font-size: 26px;
    line-height: 1.15;
    margin-bottom: 10px;
    padding-right: 15px;
    transition: 0.6s cubic-bezier(0.33, 1, 0.68, 1);
}
.magazine-latest-author {
    color: #164453;
    font-family: 'GT-Alpina', serif;
    font-size: 19px;
    line-height: 1;
    padding-right: 15px;
    transition: 0.6s cubic-bezier(0.33, 1, 0.68, 1);
}

.magazine-latest-image-hold {
    position: relative;
    overflow: hidden;
    transition: 0.6s cubic-bezier(0.33, 1, 0.68, 1);
    margin-bottom: 15px;
}
.magazine-latest ul li a:hover .magazine-latest-image-hold {
    border-radius: 8px;
}
.magazine-latest ul li a:hover .magazine-latest-image {
    opacity: 0.8;
    transform: scale(1);
}
.magazine-latest ul li a:hover .magazine-latest-title,
.magazine-latest ul li a:hover .magazine-latest-author {
    padding-left: 15px;
    padding-right: 0;
}

.magazine-highlighted-wrapper {
    padding: 60px 0 120px;
    background: #E6EDED;
}

.magazine-highlighted-content a {
    float: left;
    width: 100%;
}

.magazine-highlighted-image-hold {
    position: relative;
    overflow: hidden;
    transition: 0.6s cubic-bezier(0.33, 1, 0.68, 1);
    margin-bottom: 30px;
}

.magazine-highlighted-image-effect {
    padding-bottom: 67%;
    position: relative;
}
.magazine-highlighted-image {
    background-size: cover !important;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    transform: scale(1.05);
    transition: 0.8s cubic-bezier(0.33, 1, 0.68, 1);
}

.magazine-highlighted-content a:hover .magazine-highlighted-image-hold {
    border-radius: 8px;
}
.magazine-highlighted-content a:hover .magazine-highlighted-image {
    transform: scale(1);
    opacity: 0.8;
}
.magazine-highlighted-image-hold span {
    font-family: 'GT-Alpina-TW', 'GT-Alpina', serif;
    padding: 7px 8px;
    position: absolute;
    top: 10px;
    left: 10px;
    background: #fff;
    color: #164453;
    font-size: 12px;
    line-height: 1.1;
    max-width: 132px;
}

.magazine-highlighted-title {
    color: #164453;
    font-size: 30px;
    line-height: 1;
    margin-bottom: 15px;
}
.magazine-highlighted-title span {
    display: inline-block;
    width: 100%;
    max-width: 400px;
}

.magazine-highlighted-author {
    color: #164453;
    font-family: 'GT-Alpina', serif;
    font-size: 26px;
    line-height: 1.2;
    margin-bottom: 30px;
}

.magazine-highlighted-text {
    color: #164453;
    font-size: 17px;
    line-height: 1.25;
    position: relative;
    padding-right: 260px;
}
.magazine-highlighted-text span {
   position: absolute;
   top: 50%;
   transform: translateY(-50%);
   right: 0;
}

.magazine-all-wrapper {
    padding: 120px 0;
}

.magazine-all-item {
    margin-bottom: 45px;
}
.magazine-all-item-start {
    display: none;
}
.magazine-all-item a {
    float: left;
    width: 100%;
}
.magazine-all-item a:hover .magazine-all-item-image {
    transform: scale(1);
    opacity: 0.8;
}

.magazine-all-item-image-effect {
    position: relative;
    overflow: hidden;
    transition: 0.6s cubic-bezier(0.33, 1, 0.68, 1)
}
.magazine-all-item a:hover .magazine-all-item-image-effect {
    border-radius: 8px;
}
.magazine-all-item-image-effect span  {
    font-family: 'GT-Alpina-TW', 'GT-Alpina', serif;
    padding: 7px 8px;
    position: absolute;
    top: 10px;
    left: 10px;
    background: #fff;
    color: #164453;
    font-size: 12px;
    line-height: 1.1;
    max-width: 130px;
}

.magazine-all-item-image {
    padding-bottom: 74%;
    background-size: cover !important;
    transform: scale(1.05);
    transition: 0.8s cubic-bezier(0.33, 1, 0.68, 1)
}

.magazine-all-item-image-hold {
    padding-right: 11%;
}

.magazine-all-item-title {
    color: #164453;
    font-size: 26px;
    line-height: 1.15;
    margin-bottom: 10px;
    padding-right: 15px;
    transition: 0.6s cubic-bezier(0.33, 1, 0.68, 1);
}
.magazine-all-item-title span {
    display: inline-block;
    width: 100%;
    max-width: 100%;
}

.magazine-all-item-author {
    color: #164453;
    font-family: 'GT-Alpina', serif;
    font-size: 19px;
    line-height: 1;
    margin-bottom: 50px;
    padding-right: 15px;
    transition: 0.6s cubic-bezier(0.33, 1, 0.68, 1);
}

.magazine-all-item-button {
    padding-right: 15px;
    transition: 0.6s cubic-bezier(0.33, 1, 0.68, 1);
}

.magazine-all-item a:hover .magazine-all-item-title,
.magazine-all-item a:hover .magazine-all-item-author,
.magazine-all-item a:hover .magazine-all-item-button {
    padding-left: 15px;
    padding-right: 0;
}

.btn-load-more,
.btn-load-more:focus,
.btn-load-more:active {
    outline: none;
    display: inline-block;
    color: #164453;
    padding: 6px 40px;
    border: solid 1px #164453;
    border-radius: 4px;
    font-weight: 500;
    font-style: italic;
    font-size: 24px;
    overflow: hidden;
    position: relative;
    transition: 0.5s;
}
.btn-load-more:hover {
    background: #164453;
    color: #fff;
}
.btn-load-more span {
    font-style: normal;
    margin-left: 5px;
}

.magazine-all-list {
    position: relative;
}
.magazine-all-list:after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    width: 100%;
    bottom: 20px;
    height: 1px;
    background: #164453;
}
.magazine-all-list:before {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    width: 100%;
    bottom: 21px;
    height: 300px;
    pointer-events: none;
    z-index: 5;
    background: linear-gradient(to top, rgba(255,255,255,1), rgba(255,255,255,0));
    opacity: 1;
    transition: 0.3s;
}
.magazine-all-list.all-vis:before {
    opacity: 0;
}

.magazine-all-button {
    margin-top: 30px;
}

.btn-link-arrow, 
.btn-link-arrow:focus, 
.btn-link-arrow:active {
    display: inline-block;
    font-size: 17px;
    padding-right: 20px;
    color: #164453;
    border-bottom: 1px solid #164453;
    background: url(../img/arrow-right.png) no-repeat center right / 12px 9px;
    position: relative;
}

.magazine-story-button {
    margin-top: 110px;
}

.btn-arrow-noborder.btn-arrow, 
.btn-arrow-noborder.btn-arrow:focus, 
.btn-arrow-noborder.btn-arrow:active {
    padding-top: 0;
    padding-bottom: 0;
    box-shadow: none;
    font-size: 30px;
}

.magazine-search-wrapper {
    margin-bottom: 20px;
    position: relative;
    z-index: 2;
}

.magazine-search {
    float: left;
    width: 350px;
    margin-right: 30px;
    position: relative;
}
.magazine-search input,
.magazine-search input:focus {
    outline: none;
    box-shadow: none;
    font-size: 15px;
    border: none;
    margin: 0;
    border-bottom: 1px solid #164453;
    width: calc(100% - 60px);
    color: #164453;
    padding: 1px 0;
}
.magazine-search button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 0;
    width: 36px;
    height: 36px;
    background: url(../img/btn-search.svg) no-repeat center center;
    border: 1px solid #164453;
    border-radius: 50%;
}

.magazine-search input::-webkit-input-placeholder {
	color: #164453;
    opacity: 0.5;
    font-style: italic;
}

.magazine-search input::-moz-placeholder {
	color: #164453;
    opacity: 0.5;
    font-style: italic;
}

.magazine-search input:-ms-input-placeholder {
	color: #164453;
    opacity: 0.5;
    font-style: italic;
}

.magazine-search input:-moz-placeholder {
	color: #164453;
    opacity: 0.5;
    font-style: italic;
}

.magazine-filter {
    float: left;
    position: relative;
}

.magazine-filter span {
    font-size: 16px;
    display: inline-block;
    padding: 8px 0;
    font-weight: 500;
    cursor: pointer;
}
.magazine-filter span b {
    margin-left: 5px;
}
.magazine-filter span b:before {
    content: '+';
    display: inline-block;
}
.magazine-filter.close span b:before {
    content: '-';
}
.magazine-filter.close ul {
    opacity: 1;
    visibility: visible;
}

.magazine-filter ul {
    position: absolute;
    left: 100%;
    top: 50%;
    margin-top: -14px;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: 0.4s;
}
.magazine-filter ul li {
    display: inline-block;
    margin-left: 20px;
}
.magazine-filter ul li a {
    color: #164453;
    font-size: 16px;
    display: inline-block;
    padding: 2px 0;
    position: relative;
}
.magazine-filter ul li a:after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 0;
    height: 1px;
    background: #164453;
    transition: 0.4s;
}
.magazine-filter ul li a:hover:after {
    width: 100%;
}

.magazine-filter ul li.current a {
    border-bottom: 1px solid #164453;
}

/* single post */

.single-post-wrapper {
    padding: 140px 0 120px; 
}

.single-post-top-single-image-hold {
    margin-bottom: 80px;
}
.single-post-top-single-image {
    padding-bottom: 63%;
    background-size: cover !important;
}

.single-padd {
    padding-left: 25%;
}

.single-post-cat {
    font-family: 'GT-Alpina-TW', 'GT-Alpina', serif;
    font-size: 15px;
    margin-bottom: 14px;
}

.single-post-title {
    font-size: 30px;
    font-weight: 500;
    line-height: 1;
    margin-bottom: 20px;
}

.single-post-content-hold {
    margin-bottom: 25px;
} 

.entry .wp-caption {
    max-width: 100%;
}
.entry h2 {
    font-size: 26px;
    line-height: 1.15;
    margin-bottom: 20px;
}
.entry h2:first-child {
    margin-bottom: 60px;
}

.entry p {
    font-size: 20px;
    line-height: 1.45;
    margin-bottom: 20px;
}

.entry blockquote {
    margin-top: 45px;
    margin-bottom: 45px;
    padding-left: 20%;
}
.entry blockquote p {
    color: #164453;
    font-family: 'GT-Alpina', serif;
    font-size: 30px;
    line-height: 1.25;
    letter-spacing: -0.36px;
    margin-bottom: 7px;
}
.entry blockquote h5 {
    color: #164453;
    font-family: "Suisse", sans-serif;
    font-size: 16px;
}
.entry blockquote h5:before {
    content: '—';
    display: inline-block;
    margin-right: 4px;
}

.single-post-content-two-images {
    margin-bottom: 5px;
}

.single-post-content-two-images ul li {
    float: left;
    width: calc(50% - 10px);
    margin-right: 20px;
}

.single-post-content-two-images ul li:nth-child(2n) {
    margin-right: 0px;
    margin-bottom: 0px;
}

.single-post-content-two-images-image {
    background-size: cover !important;
    padding-bottom: 126%;
}

.single-post-content-two-images-title {
    font-size: 13px;
    line-height: 1;
}

.single-post-content-two-images-hold {
    margin-bottom: 45px;
}

.single-post-dialog-line {
    font-size: 20px;
    line-height: 1.45;
    margin-bottom: 20px;
    position: relative;
}
.single-post-dialog-line p {
    margin-bottom: 15px;
}
.single-post-dialog-line p:last-child {
    margin-bottom: 0px;
}
.single-post-dialog-line:last-child {
    margin-bottom: 0;
}
.single-post-dialog-line span {
    position: absolute;
    top: 0;
    left: 0;
    width: calc(25% - 15px);
    text-align: right;
    color: #59595b;
}

.single-post-back {
    margin-bottom: -24px;
}

.btn-back,
.btn-back:active,
.btn-back:focus {
    display: inline-block;
    color: #164453;
    font-size: 17px;
    padding-left: 20px;
    border-bottom: 1px solid #345c69;
    position: relative;
    line-height: 1.2;
}
.btn-back:hover {
    color: #164453;
}
.btn-back:before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 14px;
    height: 10px;
    background: url(../img/arrow-right.png) no-repeat center right / 100% 100%;
    transform: translateY(-50%) rotate(180deg);
}
.btn-back:after {
    content: '';
    position: absolute;
    left: 0;
    transform: translateX(-100%);
    height: 1px;
    width: 15px;
    background: #fff;
    bottom: -1px;
    transition: 0.4s;
}
.btn-back:hover:after {
    left: 100%;
    transform: translateX(0%);
}

.thoughts-leader-dialogue .btn-back:after {
    background: #e7eeee;
}

.thoughts-leader-dialogue {
    background: #e7eeee;
}

.single-post-video-hold {
    margin-bottom: 45px;
}
.single-post-video-hold .overlaping-video span {
    width: 82px;
    height: 82px;
    background: url(../img/icon-play-sm.svg) no-repeat center center / 100% 100%;
} 

.single-post-full-image {
    min-height: 100vh;
    background-size: cover !important;
}

.single-post-full-image-hold {
    margin: 60px 0 45px;
}

.single-post-dialog-line-image-hold {
    position: absolute;
    top: 0;
    left: calc(100% + 20px);
    width: 190px;
}

.single-post-dialog-line-image-text {
    font-size: 13px;
    margin-top: 5px;
}

.single-post-top-two-images-hold {
    margin-bottom: 80px;
}

.single-post-top-two-images ul li {
    float: left;
    width: calc(50% - 10px);
    margin-right: 20px;
}
.single-post-top-two-images ul li:nth-child(2n) {
    margin-right: 0px;
    margin-bottom: 0;
}

.single-post-top-two-image-image {
    padding-bottom: 128.6%;
    background-size: cover !important;
}

.single-post-content-wrapper {
    position: relative; 
}

.single-post-side-author-hold {
    position: absolute;
    top: 0;
    left: 30px;
    max-width: calc(25% - 20px);
    width: 200px;
}

.single-post-side-author-image {
    margin-bottom: 2px;
}

.single-post-side-author-image a {
    display: inline-block;
    width: 76px;
    height: 76px;
    border-radius: 50%;
    background-size: cover !important;
}

.single-post-side-author-title {
    font-size: 17px;
}
.single-post-side-author-title a {
    font-weight: 500;
    color: #164453;
    border-bottom: 1px solid #164453;
    position: relative;
}
.single-post-side-author-title a:before {
    content: '';
    position: absolute;
    left: 0;
    transform: translateX(-100%);
    height: 1px;
    width: 15px;
    background: #fff;
    bottom: -1px;
    transition: 0.4s;
}
.single-post-side-author-title a:hover:before {
    left: 100%;
    transform: translateX(0%);
}

.thoughts-leader-dialogue .single-post-side-author-title a:before {
    background: #e7eeee;
}

.single-post-side-author-talked {
    font-size: 17px;
    margin-top: 15px;
}

.single-others-posts {
    padding: 60px 0;
}

.thoughts-leaders-dialogue .single-others-posts {
    background: rgba(22,68,83,0.1);
}
.facilitators-dialogs .single-others-posts {
    background: #ebe2c3;
}
.practitioners-dialogs .single-others-posts {
    background: #f7f7f6;
}

.facilitators-dialogs .btn-back:after {
    background: #ebe2c3;
}

.facilitators-dialogs .single-post-side-author-title a:before {
    background: #ebe2c3;
}

.single-others-wrapper .title-xs {
    margin-bottom: 20px;
}

.single-post-dialog-hold {
    margin-bottom: 60px;
}

.single-post-full-image-title {
     font-size: 13px;
}

.single-post-content-hold:last-child {
    margin-bottom: 20px;
}

.single-post-author {
    border-bottom: solid 1px #164453;
    padding: 18px 0;
}
.single-post-author:first-child {
    border-top: solid 1px #164453;
}

.single-post-author-image {
    float: left;
    width: 100px;
}
.single-post-author-image a {
    float: left;
    width: 76px;
    height: 76px;
    background-size: cover !important;
    border-radius: 50%;
    transition: 0.3s;
}
.single-post-author-image a:hover {
    opacity: 0.6;
}

.single-post-author-title {
    float: left;
    width: 205px;
    font-size: 17px;
}
.single-post-author-title a {
    border-bottom: 1px solid #164453;
    color: #164453;
    font-weight: 500;
    position: relative;
    transition: 0.3s;
}

.single-post-author-title a:before {
    content: '';
    position: absolute;
    left: 0;
    transform: translateX(-100%);
    height: 1px;
    width: 15px;
    background: #fff;
    bottom: -1px;
    transition: 0.4s;
}
.single-post-author-title a:hover:before {
    left: 100%;
    transform: translateX(0%);
}
.facilitators-dialogs .single-post-author-title a:before {
    background: #ebe2c3;
}
.single-post-author-title span {
    display: block;
}

.single-post-author-text {
    font-size: 17px;
    float: left;
    width: calc(100% - 305px);
}
.single-post-author-text span {
    display: block;
    margin-bottom: 8px;
}
.single-post-author-text a {
    color: #164453;
    font-weight: 500;
    position: relative;
}
.single-post-author-text a:before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    height: 1px;
    width: 0;
    background: #164453;
    transition: 0.4s;
}
.single-post-author-text a:hover:before {
    width: 100%;
}

.single-post-author-wrapper {
    margin: 60px 0 120px
}

.author-option-1 {
    font-size: 17px;
    padding: 18px 0;
    border-top: 1px solid #164453;
    border-bottom: 1px solid #164453;
}

.author-option-2 {
    padding: 18px 0;
    border-bottom: 1px solid #164453;
}

.author-option-2-left {
    float: left;
    width: 305px;
    font-size: 17px;
}
.author-option-2-right {
    float: left;
    width: calc(100% - 305px);
    font-size: 17px;
    position: relative;
    padding-left: 55px;
    line-height: 1.4;
    min-height: 46px;
}
.author-option-2-right span {
    display: block;
}

.author-option-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: solid 1px #979797;
    background: #d8d8d8;
}

.author-option-3 {
    padding: 18px 0;
    border-top: 1px solid #164453;
    border-bottom: 1px solid #164453;
}

.author-option-3-left {
    position: relative;
    padding-left: 100px;
    font-size: 17px;
    line-height: 1.4;
    min-height: 46px;
}
.author-option-3-left span {
    display: block;
}

.author-option-4 {
    padding: 18px 0;
    border-top: 1px solid #164453;
    border-bottom: 1px solid #164453;
}

.author-option-4-left {
    position: relative;
    padding-left: 100px;
    font-size: 17px;
    line-height: 1.4;
    min-height: 46px;
}
.author-option-4-left span {
    float: right;
    margin-left: 10px;
}
.author-option-4-left span a {
    color: #164453;
    font-weight: 500;
    position: relative;
}
.author-option-4-left span a:before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    height: 1px;
    width: 0;
    background: #164453;
    transition: 0.4s;
}
.author-option-4-left span a:hover:before {
    width: 100%;
}

.thoughts-leaders-dialogue .btn-back:after {
    background: #e7eeee;
}

.thoughts-leaders-dialogue .single-post-side-author-title a:before {
    background: #e7eeee;
}

.thoughts-leaders-dialogue .single-post-author-title a:before {
    background: #e7eeee;
}

.single-post-author-simple {
    font-size: 17px;
}

.single-post-author-simple a {
    color: #164453;
    font-weight: 500;
    position: relative;
    float: right;
    line-height: 1.5;
}
.single-post-author-simple a:before {
    content: '';
    position: absolute;
    bottom: 1px;
    left: 0;
    height: 1px;
    width: 0;
    background: #164453;
    transition: 0.4s;
}
.single-post-author-simple a:hover:before {
    width: 100%;
}

.tabs-specialty-content.lead-faculty-style p {
    font-size: 20px;
    margin-bottom: 28px;
}

.single-post-side-no-author {
    font-size: 17px;
}
.single-post-side-no-author a {
    border-bottom: 1px solid #164453;
    color: #164453;
    font-weight: 500;
    position: relative;
    transition: 0.3s;
}
.single-post-side-no-author a:before {
    content: '';
    position: absolute;
    left: 0;
    transform: translateX(-100%);
    height: 1px;
    width: 15px;
    background: #fff;
    bottom: -1px;
    transition: 0.4s;
}
.single-post-side-no-author a:hover:before {
    left: 100%;
    transform: translateX(0%);
}

.facilitators-dialogs .single-post-side-no-author a:before {
    background: #ede7cb;
}
.thoughts-leaders-dialogue .single-post-side-no-author a:before {
    background: #e7eeee;
}

.single-others-posts .home-magazine-list ul li:nth-child(1) {
    transition-delay: 0.3s;
}
.single-others-posts .home-magazine-list ul li:nth-child(2) {
    transition-delay: 0.5s;
}
.single-others-posts .home-magazine-list ul li:nth-child(3) {
    transition-delay: 0.7s;
}

.magazine-total-wrapper {
    display: none;
}

.magazine-main-wrapper {
    min-height: 100vh;
}

.magazine-all-list.no-border:after {
    display: none;
}

.tabs-specialty-content.lead-faculty-style ul li:before {
    content: '';
}

.tabs-specialty-content.lead-faculty-style ul li {
    font-size: 20px;
}

.tt-text .lead-faculty-style ul li:before {
    top: 13px;
    width: 6px;
    height: 6px;
}

.intro-home-right .content-width {
    max-width: 600px;
}

.single-post-side-author-hold .single-post-author-simple {
    margin-bottom: 10px;
}
.single-post-side-author-hold .single-post-author-simple a {
    margin-left: 10px;
}
.single-post-side-author-hold .single-post-author-simple:last-child {
    margin-bottom: 0px;
}

.mc4wp-response {
    float: left;
    width: 100%;
    margin-top: 15px;
    text-align: center;
    font-weight: 300;
}

.cookies-hold {
    position: fixed;
    z-index: 600;
    background: #4d6b73;
    color: #fff;
    padding: 20px 200px;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    opacity: 0;
    visibility: hidden;
    transition: 0.2s;
}
.cookies-hold.close {
    opacity: 1;
    visibility: visible;
}

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

.cookies-text {
    font-size: 17px;
    line-height: 23px;
    text-align: center;
}
.cookies-text a {
    color: #fff;
    text-decoration: underline;
}
.cookies-text a:hover {
    text-decoration: none;
}

.btn-white-border-sm,
.btn-white-border-sm:focus,
.btn-white-border-sm:active {
    display: inline-block;
    outline: none;
    border: 1px solid #fff;
    color: #fff;
    font-size: 17px;
    padding: 0px 13px;
    border-radius: 3px;
    transition: 0.2s;
}
.btn-white-border-sm:hover {
    background: #fff;
    color: #4d6b73;
}

.hiddde {
    display: none;
}

.section-founders {
    padding-top: 120px;
}

.founders-block {
    background: #F7F7F6;
    padding: 120px 7% 100px 7%;
    margin-top: 60px;
    margin-bottom: 90px;
}

.founders-list ul li {
    display: inline-block;
    float: left;
    width: 33.3333%;
    margin-bottom: 22px;
    padding-right: 25px;
    padding-left: 83px;
    position: relative;
    min-height: 65px;
    transition: 0.3s;
    opacity: 1;
}

.founders-list ul li.opacity {
    opacity: 0.3;
}

.object-fit {
    position: relative;
}

.founder-img {
    position: absolute;
    left: 0;
    top: 0;
    border-radius: 50%;
    overflow: hidden;
    width: 65px;
    height: 65px;
}

.founders-list ul li:nth-child(3n+1) {
    clear: both;
}

.object-fit img {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%!important;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
}

.founder-name span {
    border-bottom: 1px solid #164453;
    margin-bottom: 5px;
    display: inline-block;
    line-height: 1.25;

}

.founder-tooltip {
    position: absolute;
    top: 81%;
    left: 35%;
    background: #fff;
    border-radius: 5px;
    padding: 18px 20px;
    line-height: 1.25;
    width: 315px;
    opacity: 0;
    visibility: hidden;
    transition: 0.3s;
    z-index: 5;
    -webkit-box-shadow: 0px 1px 4px rgba(0,0,0, 0.1);
    -moz-box-shadow: 0px 1px 4px rgba(0,0,0, 0.1);
    box-shadow: 0px 1px 4px rgba(0,0,0, 0.1);
}

.founders-list ul li:hover .founder-tooltip {
    opacity: 1;
    visibility: visible;
}

.founders-list ul li:nth-child(3n) .founder-tooltip {
    left: 10%;
}

@media only screen and (max-width: 1800px) {
    .it-carousel .owl-nav {
        top: -250px;
    }
}

@media only screen and (max-width: 1600px) {
    .it-carousel .owl-nav {
        top: -222px;
    }
}
@media only screen and (max-width: 1440px) {
    .features-carousel-icon {
        padding: 0 20%;
    }
    .story-content-text p {
        font-size: 17px;
    }
    .story-content-2 .intro-text {
        font-size: 17px;
    }
    .team-list {
        padding: 0%;
    }
    .it-carousel .owl-nav {
        right: 20px;
        top: -185px;
    }
    .it-carousel .owl-dots {
        margin-top: 75px;
    }
    .it-carousel-block {
        padding: 45px 0 90px;
    }
    .it-carousel-list ul li {
        font-size: 24px;
    }
    .it-carousel-content h3 {
        font-size: 50px;
        min-height: 100px;
        margin-bottom: 30px;
    }
    .it-carousel-image-hold {
        padding-right: 15%;
    }
    .stats-lists-digit {
        font-size: 100px;
    }
    .stats-lists-text {
        font-size: 26px;
    }
    .profile-wrapper {
        padding: 170px 0px 90px;
    }
    .articles-list {
        padding-right: 0;
    }
    .features-carousel-item {
        width: 350px;
        text-align: center;
    }
    .section-navigation {
        width: 370px;
    }
    .section-navigation-label {
        width: 140px;
    }
    .section-navigation-links {
        width: calc(100% - 140px);
    }
    .profile-hold-left {
        padding-right: 0%;
        padding-left: 205px;
    }
    .profile-hold-left > span {
        width: 186px;
        height: 186px;
    }
}

@media only screen and (max-width: 1366px) {
    .it-carousel .owl-nav {
        top: -155px;
    }
}

@media only screen and (max-width: 1280px) {
    .single-post-dialog-line-image-hold {
        width: 150px;
    }
    .members-list-item a {
        padding-right: 40px;
        width: auto;
    }
    .contact-search-hold {
        margin-bottom: 40px;
    }
    .it-carousel .owl-nav {
        top: -125px;
    }
    .members-list-title {
        font-size: 16px;
    }
    .contact-map-hold {
        width: calc(100% - 300px);
    }
    .contacts-list-hold {
        width: 300px;
    }
    .team-map-title {
        font-size: 40px;
        margin-bottom: 42px;
    }
    .careers-wrapper .tt-block {
        margin-bottom: 56px;   
    }
    .stats-lists-text {
        padding-right: 0%;
    }
    .image-about > span {
        width: 256px;
        height: 256px;
    }
    .image-about {
        padding: 160px 0;
    }
    .articles-list {
        width: 100%;
        max-width: 600px;
    }
}

@media only screen and (max-width: 1200px) {
    .tabs-specialty-content.lead-faculty-style ul li {
        font-size: 18px;
    }
    .tabs-specialty-content.lead-faculty-style ul {
        margin-bottom: 20px;
    }
    .tt-text .lead-faculty-style ul li:before {
        top: 11px;
    }
    .tabs-specialty-content.lead-faculty-style p {
        font-size: 18px;
        margin-bottom: 20px;
    }
    .single-post-author-wrapper {
        margin: 50px 0 90px;
    }
    .single-post-side-author-talked {
        font-size: 16px;
        margin-top: 10px;
    }
    .single-post-side-author-title {
        font-size: 16px;
    }
    .entry h2:first-child {
        margin-bottom: 40px;
    }
    .single-post-wrapper {
        padding: 120px 0 80px;
    }
    .single-post-dialog-line {
        font-size: 18px;
    }
    .entry blockquote p {
        font-size: 26px;
    }
    .entry h2 {
        font-size: 22px;
    }
    .single-post-title {
        font-size: 26px;
    }
    .entry p {
        font-size: 18px;
    }
    .single-post-top-two-images-hold {
        margin-bottom: 60px;
    }
    .single-post-top-single-image-hold {
        margin-bottom: 60px;
    }
    .single-post-dialog-line-image-hold {
        position: static;
        margin-top: 10px;
    }
    .single-post-back {
        margin-bottom: 20px;
    }
    .my-tabs-specialties .my-tabs-links ul li a {
        font-size: 26px;
    }
    .it-carousel .owl-nav {
        top: -140px;
    }
    .it-carousel-list {
        min-height: 132px;
    }
    .members-list-item a {
        padding-right: 36px;
    }
    .team-map {
        margin-bottom: 42px;
    }
    .story-title {
        margin-bottom: 50px;
    }
    .story-content-image-hold {
        margin-bottom: 50px;
    }
    .contact-map-holder { 
        padding: 60px 20px;
    }
    .contacts-list-hold {
        padding-top: 150px;
    }
    .contact-search-hold input, .contact-search-hold input:focus {
        height: 36px;
        font-size: 18px;
    }
    .contact-search-hold {
        margin-bottom: 40px;
    }
    .contacs-list-item {
        margin-bottom: 40px;
    }
    .contacs-list-item h3 {
        font-size: 22px;
    }
    .contacs-list-item p {
        font-size: 18px;
    }
    .team-block {
        margin-bottom: 120px;
    }
    .careers-wrapper {
        padding: 100px 0;
    }
    .careers-wrapper .button-block {
        margin-bottom: 90px;
    }
    .chat-hold ul li:first-child {
        margin-right: 30px;
    }
    .chat-content {
        font-size: 22px;
    }
    .btn-border-blue, .btn-border-blue:focus, .btn-border-blue:active {
        font-size: 20px;
    }
    .it-carousel-content h3 {
        font-size: 50px;
        margin-bottom: 40px;
        min-height: 100px;
    }
    .stats-block {
        padding: 100px 0;
    }
    .stats-list ul li {
        margin-bottom: 80px;
    }
    .stats-lists-text {
        font-size: 22px;
    }
    .stats-lists-digit {
        font-size: 88px;
    }
    .profile-wrapper {
        padding: 150px 0px 80px;
    }
    .profile-contact a {
        font-size: 18px;
    }
    .profile-location {
        font-size: 18px;
    }
    .profile-name {
        font-size: 26px;
    }
    .tt-text h5 {
        font-size: 18px;
        margin-bottom: 28px;
    }
    .articles-explore {
        margin-top: -26px;
        font-size: 22px;
    }
    .articles-list {
        max-width: 500px;
    }
    .title-xs {
        font-size: 26px;
        margin-bottom: 42px;
    }
    .article-title {
        font-size: 22px;
    }
    .academies .price-desc p strong {
        font-size: 22px;
    }
    .academies .price-desc p span {
        font-size: 22px;
    }
    .academies .price-desc p {
        font-size: 16px;
    }
    .lead-faculcy span {
        font-size: 18px;
    }
    .lead-faculcy span {
        font-size: 22px;
    }
    .academies .lead-faculty-style .lead-faculcy p {
        font-size: 28px;
    }
    .tabs-specialty-content h5 {
        font-size: 18px;
    }
    .tabs-specialty .tabs-title>a {
        font-size: 26px;
    }
    .tabs-specialty .tabs {
        margin-bottom: 70px;
    }
    .tabs-specialty-content p {
        font-size: 22px;
        margin-bottom: 28px;
    }
    .tabs-specialty-content ul {
        margin-bottom: 28px;
    }
    .tabs-specialty-content ul li {
        font-size: 22px;
    }
    .image-about-text {
        font-size: 22px;
    }
    .section-navigation-links {
        width: calc(100% - 120px);
    }
    .section-navigation-label {
        width: 120px;
    }
    .section-navigation {
        width: 310px;
    }
    .specialty-text {
        font-size: 18px;
        margin-bottom: 40px;
    }
    .specialty-author {
        font-size: 18px;
        margin-bottom: 40px;
    }
    .specialty-subtitle {
        font-size: 28px;
    }
    .specialty-title {
        font-size: 36px;
    }
    .intro-text {
        font-size: 22px;
    }
    .title-lg {
        font-size: 60px;
        margin-bottom: 40px;
    }
    body.nav-activated {
        margin-top: 300px;
    }
    .header-sec {
        height: 300px;
    }
    .nav ul li ul li a {
        font-size: 22px;
    }
    .title-md {
        font-size: 44px;
    }
    .home-magazine-top-content h3 {
        font-size: 48px;
    }
    .home-magazine-top-content h4 {
        font-size: 32px;
        margin-bottom: 40px;
    }
    .home-magazine-top-content p {
        font-size: 18px;
        margin-bottom: 50px;
    }
    .footer-text {
        margin-bottom: 240px;
    }
    .newsletter-text {
        font-size: 22px;
        margin-bottom: 70px;
    }
    .newsletter-title {
        font-size: 66px;
    }
    .home-magazine-content span {
        font-size: 18px;
    }
    .home-magazine-content {
        font-size: 24px;
    }
    .section-title {
        font-size: 60px;
    }
    .media-text {
        font-size: 18px;
    }
    .tt-text h1 {
        font-size: 22px;
        margin-bottom: 40px;
    }
    .tt-text p {
        font-size: 22px;
        margin-bottom: 28px;
    }
    .tt-text ul {
        margin-bottom: 28px;
    }
    .tt-text ul li {
        font-size: 22px;
    }
    .tt-text ul li:before {
        top: 12px;
        width: 6px;
        height: 6px;
    }
    .tt-title {
        font-size: 32px;
    }
    .btn-arrow, .btn-arrow:focus, .btn-arrow:active {
        font-size: 20px;
    }
    .it-carousel-list p {
        font-size: 22px;
    }
    .it-carousel-list ul li {
        font-size: 22px;
    }
}

@media only screen and (max-width: 1100px) {
    .cookies-hold {
        padding: 20px 20px;
        padding-right: 200px;
    }
    .nav {
        text-align: right;
    }
    .magazine-carousel.owl-carousel .owl-nav button.owl-prev {
        right: 50px;
    }
    .magazine-carousel.owl-carousel .owl-nav button.owl-next {
        right: 12px;
    }
    .magazine-story-button {
        margin-top: 80px;
    }
    .magazine-all-wrapper {
        padding: 100px 0;
    }
    .magazine-latest-wrapper {
        padding: 100px 0 120px;
    }
    .magazine-carousel-item-subtitle {
        font-size: 22px;
        margin-bottom: 40px;
    }
    .magazine-carousel-item-title {
        font-size: 26px;
    }
    .magazine-latest-author {
        font-size: 17px;
    }
    .magazine-latest-title {
        font-size: 22px;
    }
    .it-carousel .owl-nav {
        top: -145px;
    }
    .it-carousel-list {
        min-height: 108px;
    }
    .members-list {
        overflow: auto;
    }
    .members-list-location, .members-list-position {
        font-size: 14px;
    }
    .contact-map-hold {
        width: calc(100% - 250px);
        padding-right: 50px;
    }
    .contacts-list-hold {
        width: 250px;
    }
    .team-map-title {
        font-size: 36px;
    }
    .team-block {
        margin-bottom: 100px;
    }
    .it-carousel-content h3 {
        font-size: 40px;
        margin-bottom: 30px;
        min-height: 80px;
    }
    .it-carousel-list p {
        font-size: 18px;
    }
    .it-carousel-list ul li {
        font-size: 18px;
    }
    .stats-list {
        margin-top: 70px;
    }
    .stats-list ul li {
        margin-bottom: 70px;
    }
    .stats-lists-text {
        font-size: 18px;
    }
    .stats-lists-digit {
        font-size: 76px;
    }
    .profile-contact a {
        font-size: 16px;
    }
    .profile-location {
        font-size: 16px;
    }
    .profile-name {
        font-size: 22px;
    }
    .tt-text h5 {
        font-size: 16px;
        margin-bottom: 24px;
    }
    .enrollments-wrapper {
        padding: 100px 0;
    } 
    .section-navigation-links {
        width: calc(100% - 110px);
    }
    .section-navigation-label {
        width: 110px;
    }
    .section-navigation {
        width: 290px;
        padding: 15px 15px;
    }
    .tt-block + .tt-block {
        margin-top: -44px;
    }
    .features-carousel-text {
        font-size: 15px;
        padding: 0 10px;
    }
    .features-carousel-title {
        font-size: 22px;
        padding: 0 10px;
    }
    .intro-text {
        font-size: 20px;
    }
    .title-lg {
        font-size: 50px;
        margin-bottom: 30px;
    }
    .features-carousel-item {
        width: 280px;
    }
    .specialty-subtitle {
        font-size: 22px;
    }
    .specialty-title {
        font-size: 30px;
    }
    .specialty-author {
        font-size: 16px;
    }
    .specialty-text {
        font-size: 16px;
    }
    .newsletter-wrapper {
        padding: 90px 0;
    }
    .newsletter-wrapper .row.row-sm {
        max-width: 450px;
    }
    .newsletter-title {
        font-size: 56px;
    }
    .footer-text {
        margin-bottom: 160px;
        font-size: 26px;
    }
    .home-magazine-wrapper {
        padding: 100px 0;
    }
    .home-magazine-content span {
        font-size: 16px;
    }
    .home-magazine-content {
        font-size: 20px;
    }
    .home-magazine-top-content p {
        font-size: 16px;
        margin-bottom: 40px;
    }
    .home-magazine-top-content h4 {
        font-size: 24px;
    }
    .home-magazine-top-content h3 {
        font-size: 42px;
    }
    .section-title {
        font-size: 52px;
    }
    .media-caption-block {
        margin-bottom: 65px;
    }
    .tt-block {
        margin-bottom: 70px;
    }
    .tt-title {
        font-size: 28px;
    }
    .nav ul li ul li a {
        font-size: 20px;
    }
    .nav-trigger span {
        font-size: 20px;
    }
    .nav ul li {
        margin-right: 24px;
    }
    .title-md {
        font-size: 40px;
    }
    .tt-text h1 {
        font-size: 20px;
        margin-bottom: 30px;
    }
    .tt-text p {
        font-size: 20px;
        margin-bottom: 24px;
    }
    .tt-text ul {
        margin-bottom: 24px;
    }
    .tt-text ul li {
        font-size: 20px;
        padding-left: 20px;
    }
    .title-sm {
        font-size: 36px;
    }
    .features-carousel .owl-nav {
        top: -98px;
    }
    .contact-map-block {
        margin-bottom: 100px;
    }
    .btn-arrow-noborder.btn-arrow, .btn-arrow-noborder.btn-arrow:focus, .btn-arrow-noborder.btn-arrow:active {
        font-size: 26px;
    }
    .btn-load-more, .btn-load-more:focus, .btn-load-more:active {
        padding: 6px 30px;
        font-size: 20px;
    }
}

@media only screen and (min-width: 1024px) {
    .mob-nav-hold {
        display: none !important;
    }
}

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

    .section-founders {
        padding-top: 60px;
    }
    .founders-block {
        padding: 60px 0px 40px 0px;
        margin-bottom: 60px;
    }

    .founders-list ul li:nth-child(3n) .founder-tooltip {
        left: auto;
        right: 0;
        width: 300px;
    }

    .btn-white-border-sm, 
    .btn-white-border-sm:focus, 
    .btn-white-border-sm:active {
        font-size: 14px;
        padding: 2px 13px;
    }
    .cookies-button {
        position: static;
        top: 0px;
        right: 0px;
    }
    .cookies-hold {
        padding: 15px 15px;
    }
    .cookies-text {
        font-size: 14px;
        line-height: 18px;
        text-align: left;
        margin-bottom: 30px;
    }
    .profile-contact a {
        display: inline-block;
    }
    .header-left-bottom {
        display: none;
    }
    .single-post-author-simple {
        font-size: 16px;
    }
    .author-option-4-left {
        font-size: 16px;
        min-height: 44px;
    }
    .author-option-3-left {
        font-size: 16px;
        min-height: 44px;
    }
    .author-option-2-right {
        width: calc(100% - 280px);
        font-size: 16px;
        min-height: 44px;
    }
    .author-option-2-left {
        width: 280px;
        font-size: 16px;
    }
    .author-option-1 {
        font-size: 16px;
    }
    .single-post-author-title {
        width: 180px;
        font-size: 16px;
    }
    .single-post-author-text {
        font-size: 16px;
        width: calc(100% - 280px);
    }
    .single-post-side-author-hold {
        left: 20px;
    }
    .single-post-wrapper {
        padding: 110px 0 70px;
    }
    .magazine-search {
        width: 280px;
    }
    .magazine-story-button {
        margin-top: 70px;
    }
    .magazine-all-item-author {
        font-size: 18px;
        margin-bottom: 40px;
    }
    .magazine-all-item-title {
        font-size: 22px;
    }
    .magazine-all-item-image-hold {
        padding-right: 8%;
    }
    .magazine-highlighted-wrapper {
        padding: 60px 0 90px;
    }
    .magazine-highlighted-wrapper {
        padding: 60px 0 90px;
    }
    .magazine-highlighted-text {
        font-size: 16px;
        padding-right: 140px;
    }
    .magazine-highlighted-author {
        font-size: 22px;
    }
    .magazine-highlighted-title {
        font-size: 26px;
    }
    .magazine-latest-author {
        font-size: 16px;
    }
    .magazine-latest-title {
        font-size: 18px;
    }
    .magazine-latest-wrapper {
        padding: 90px 0 100px;
    }
    .btn-link-arrow, .btn-link-arrow:focus, .btn-link-arrow:active {
        font-size: 16px;
    }
    .magazine-carousel-item-text {
        font-size: 16px;
    }
    .magazine-carousel-item-subtitle {
        font-size: 18px;
        margin-bottom: 30px;
    }
    .magazine-carousel-item-title {
        font-size: 22px;
        margin-bottom: 10px;
    }
    .intro-magazine-text {
        font-size: 22px;
    }
    .magazine-filter ul {
        white-space: normal;
    }
    .magazine-filter ul li {
        white-space: nowrap;
    }
    .intro-magazine {
        padding: 130px 0 60px;
    }
    .owl-carousel.features-carousel .owl-stage-outer {
        padding-left: 5px;
    }
    .features-carousel-block .title-sm {
        padding-left: 20px;
    }
    .header.scrolled:after {
        transform: translateY(-100px);
    }
    .my-tabs-specialties .my-tabs-links ul li a {
        font-size: 22px;
    }
    .my-tabs-links {
        margin-bottom: 42px;
    }
    .my-tabs-links ul li {
        margin-right: 30px;
    }
    .my-tabs-links ul li a {
        font-size: 16px;
    }
    .single-specialty .owl-carousel .owl-dots.disabled {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
    }
    
    .single-specialty .owl-carousel .owl-nav.disabled {
        display: block;
    }
    .features-carousel-hold-center .owl-stage {
        margin: 0;
    }
    .intro-home-right {
        min-height: 1px;
    }
    .intro-video-gap {
        min-height: 1px;
    }
    .intro-video-gap-sm {
        min-height: 1px;
    }
    .intro-split-left,
    .intro-home-right {
        transform: translateY(0) !important;
    }
    .contacs-list-item * {
        opacity: 1;
    }
    .contacs-list-item:hover * {
        opacity: 1;
    }
    .contacts-list-hold {
        width: 100%;
        padding-top: 0px;
    }
    .contact-map-holder {
        display: none;
    }
    .contacts-list-hold {
        padding-bottom: 0;
        min-height: 1px !important;
        height: auto !important;
    }
    .header.scrolled.scrolled-down {
        background: #4D6B73;
        border-bottom: none;
    }
    .header.scrolled {
        background: #4D6B73;
        border-bottom: none;
    }
    .it-carousel .owl-nav {
        top: -65px;
    }
    .it-carousel-content {
        width: calc(100% + 20px);
        padding-top: 90px;
    }
    .it-carousel-hold {
        display: block;
    }
    .intro-split-left {
        min-height: 1px;
    }
    .intro-full.resize {
        height: auto;
    }
    .tabs-specialty .tabs-title {
        margin-right: 30px;
    }
    .story-title {
        font-size: 32px;
        margin-bottom: 36px;
    }
    .story-mob-content {
        display: block;
    }
    .section-story,
    .story-first-scroll,
    .intro-story-hold,
    .story-wrapper,
    .story-image-hold {
        display: none;
    }
    .contact-map-block {
        margin-bottom: 80px;
    }
    .contacs-list-item:last-child {
        margin-bottom: 0;
    }

    .contact-map-hold {
        width: 100%;
        padding-right: 0px;
        min-height: 1px !important;
        height: auto !important;
    }
    .contact-map-hold .sticky {
        position: static !important;
    }
    .contacts-list-hold {
        width: 100%;
        padding-top: 20px;
    }
    .team-map-title {
        font-size: 32px;
    }
    .team-block {
        margin-bottom: 80px;
    }
    .chat-content {
        font-size: 18px;
    }
    .careers-wrapper .button-block {
        margin-bottom: 70px;
    }
    .card-button {
        padding: 20px 10px 15px;
    }
    .btn-border-blue, .btn-border-blue:focus, .btn-border-blue:active {
        font-size: 18px;
    }
    .careers-wrapper {
        padding: 80px 0;
    }
    .it-carousel .owl-dots {
        margin-top: 60px;
    }
    .it-carousel-block {
        padding: 45px 0 70px;
    }
    .it-carousel-item {
        display: block;
    }
    .slider-counter {
        top: 340px;
        left: 0;
        font-size: 18px;
    }
    .it-carousel-image-hold {
        padding-right: 0%;
    }
    .it-carousel-image-circle {
        padding-bottom: 0%;
        display: inline-block;
        width: 300px;
        height: 300px;
    }
    .stats-list ul li {
        margin-bottom: 56px;
    }
    .stats-lists-text {
        font-size: 16px;
    }
    .stats-block {
        padding: 70px 0;
    }
    .stats-lists-digit {
        font-size: 60px;
    }
    .profile-hold-left > span {
        width: 150px;
        height: 150px;
    }
    .profile-hold-left {
        min-height: 180px;
        padding-left: 180px;
    }
    .profile-wrapper .tt-text {
        padding-left: 0;
    }
    .articles-explore {
        margin-top: -22px;
        font-size: 18px;
    }
    .profile-articles-wrapper {
        padding: 60px 0 90px;
    }
    .articles-list {
        max-width: 440px;
    }
    .article-title span {
        font-size: 16px;
    }
    .article-title {
        font-size: 18px;
    }
    .intro-full-content {
        padding: 70px 0 80px;
        min-height: 1px;
        margin: 0;
    }
    .intro-full-scroll, .intro-full-scroll:focus, .intro-full-scroll:active {
        display: none;
    }
    .intro-full {
        padding-bottom: 0;
    }
    .intro-full .mob-intro-video-hold {
        padding-top: 78px;
    }
    .intro-full .mob-intro-video {
        padding-bottom: 75%;
    }
    .academies-contact-line-left {
        width: calc(100% - 250px);
    }
    .academies-contact-line-right {
        width: 250px;
    }
    .academies-contact-form-left {
        font-size: 16px;
        width: 100px;
    }
    .academies-contact-form-right {
        width: calc(100% - 100px);
    }
    .academies-contact-line-right {
        font-size: 16px;
    }
    .academies .price-desc p strong {
        font-size: 18px;
    }
    .academies .price-desc p span {
        font-size: 18px;
    }
    .academies .price-desc p {
        font-size: 14px;
    }
    .lead-faculcy span {
        font-size: 16px;
    }
    .academies .lead-faculty-style .lead-faculcy p {
        font-size: 24px;
        margin-bottom: 18px;
    }
    .academy-desc {
        padding-top: 36px;
    }
    .academies .tabs-specialty .tabs-title {
        flex: auto;
    }
    .academies .tt-title {
        padding-top: 64px;
    }
    .academies .tabs-specialty .tabs {
        margin-bottom: 42px;
    }
    .academies .tabs-specialty .tabs-title>a {
        font-size: 16px;
    }
    .academies .section-title-block {
        margin-bottom: 70px;
    }
    .tabs-specialty-content h5 {
        font-size: 16px;
        margin-bottom: 40px;
    }
    .enrollments-wrapper {
        padding: 80px 0;
    }
    .tabs-specialty .tabs {
        margin-bottom: 56px;
    }
    .tabs-specialty .tabs-title>a {
        font-size: 22px;
    }
    .tabs-wrapper {
        padding: 80px 0;
    }
    .tabs-specialty-bottom-text {
        font-size: 16px;
    }
    .tabs-specialty-content p {
        font-size: 18px;
        margin-bottom: 24px;
    }
    .tabs-specialty-content ul {
        margin-bottom: 24px;
    }
    .tabs-specialty-content ul li {
        font-size: 18px;
    }
    .image-about {
        padding: 130px 0;
        margin-bottom: 90px;
    }
    .image-about > span {
        width: 200px;
        height: 200px;
    }
    .section-navigation {
        position: static;
        width: 100%;
        padding: 20px 20px;
    }
    .section-navigation-links {
        width: calc(100% - 33.333%);
    }
    .section-navigation-label {
        width: 33.333%;
    }
    .section-navigation-hold {
        margin-bottom: 56px;
    }
    .speciality-wrapper {
        margin-bottom: 90px;
    }
    .speciality-item-content {
        padding: 60px 10% 0;
    }
    .speciality-item {
        display: block;
        margin-bottom: 70px;
    }
    .bt-block {
        padding: 70px 0 90px;
    }
    .client-carousel-item {
        font-size: 24px;
    }
    .features-carousel .owl-dots {
        bottom: -80px;
        max-width: 600px;
    }
    .features-carousel-block {
        padding: 60px 0 180px;
    }
    .client-carousel-block {
        padding: 70px 0;
    }
    .features-carousel .owl-nav {
        top: -86px;
        right: 20px;
    }
    .title-sm {
        font-size: 32px;
        margin-bottom: 50px;
    }
    .title-lg {
        font-size: 42px;
    }
    .intro-split {
        margin-bottom: 70px;
    }
    .split-intro-content {
        padding: 70px 10% 0px;
    }
    .intro-split .mob-intro-video-hold {
        padding-top: 78px;
    }
    .intro-split .row {
        display: block;
    }
    .features-carousel-hold {
        /* width: calc(100% + 20px); */
    }
    .header:before {
        display: none;
    }
    .nav-mob-trigger span {
        color: #fff;
        font-size: 17px;
        font-weight: 500;
        display: inline-block;
        padding: 4px 0;
        padding-left: 20px;
        position: relative;
        cursor: pointer;
    }
    .nav-mob-trigger span:before {
        content: '';
        position: absolute;
        left: 0;
        top: 50%;
        transform: translateY(-50%);
        width: 13px;
        height: 13px;
        border: 1px solid #fff;
        border-radius: 50%;
    }
    .logo img {
        max-width: 140px;
    }
    .header {
        background: #4D6B73;
        padding: 12px 0 12px;
    }
    .row {
        padding-left: 20px;
        padding-right: 20px;
    }
    .home-magazine-top-content {
        padding: 30px 10%;
    }
    .newsletter-wrapper .row.row-sm {
        max-width: 400px;
    }
    .footer-title {
        font-size: 18px;
    }
    .footer-text {
        margin-bottom: 100px;
        font-size: 26px;
    }
    .newsletter-wrapper {
        padding: 70px 0;
    }
    .newsletter-text {
        font-size: 20px;
    }
    .newsletter-title {
        font-size: 46px;
    }
    .home-magazine-content span {
        font-size: 14px;
        padding-top: 5px;
    }
    .home-magazine-content {
        font-size: 16px;
    }
    .home-magazine-top-content h4 {
        font-size: 20px;
    }
    .home-magazine-top-content h3 {
        font-size: 36px;
    }
    .button-block {
        margin-bottom: 100px;
    }
    .section-title {
        font-size: 40px;
    }
    .btn-arrow, .btn-arrow:focus, .btn-arrow:active {
        font-size: 18px;
    }
    .media-text {
        font-size: 14px;
    }
    .media-title {
        font-size: 16px;
    }
    .tt-title {
        font-size: 24px;
    }
    .tt-text h1 {
        font-size: 18px;
        margin-bottom: 30px;
    }
    .tt-text p {
        font-size: 18px;
        margin-bottom: 24px;
    }
    .tt-text ul {
        margin-bottom: 24px;
    }
    .tt-text ul li {
        font-size: 18px;
    }
    .tt-text ul li:before {
        top: 10px;
    }
    .intro-home {
        margin-bottom: 100px;
    }
    .home-intro-scroll {
        display: none;
    }
    .intro-home .row {
        display: block;
    }
    .home-intro-content {
        padding: 150px 15% 80px;
    }
    .mob-intro-video-hold {
        padding: 0 20px;
    }
    .mob-intro-video {
        position: relative;
        overflow: hidden;
        padding-bottom: 80%;
    }
    .mob-intro-video:after {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        width: 100%;
        height: 100%;
        background: #fff;
        opacity: 1;
        transition: 2s cubic-bezier(0.33, 1, 0.68, 1);
    }
    .mob-intro-video.close:after {
        opacity: 0;
    }
    .mob-intro-video video {
       position: absolute;
       top: 50%;
       left: 50%;
       transform: translate(-50%, -50%);
       min-height: 100%;
       max-height: 100%;
    }
    .split-intro-scroll {
        display: none;
    }
    .image-about-text {
        font-size: 18px;
    }
    .tabs-specialty {
        margin-bottom: 60px;
    }
    .acf-element label {
        font-size: 18px;
    }
    .article-item {
        margin-bottom: 28px;
    }
    .contact-search-hold {
        padding-right: 0%;
    }
    .story-content-text p {
        font-size: 16px;
    }
    .it-carousel .owl-nav {
        right: 18px;
    }
    .tabs-specialty-bottom {
        margin-top: 60px;
    }
}

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

    .founders-list ul li {
        width: 100%;
        padding-right: 0px;
    }
    .founder-tooltip,
    .founders-list ul li:nth-child(3n) .founder-tooltip {
        left: 0;
        right: 0;
        width: auto;
    }
    .cookies-text br {
        display: none;
    }
    .magazine-carousel-item-image {
        transform: scale(1);
    }
    .tt-text .lead-faculty-style ul li:before {
        top: 8px;
        width: 4px;
        height: 4px;
    }
    .tabs-specialty-content.lead-faculty-style ul li {
        font-size: 14px;
    }
    .tabs-specialty-content.lead-faculty-style p {
        font-size: 14px;
    }
    .features-carousel-icon {
        padding: 0 30px;
    }
    .author-option-3 {
        padding: 12px 0;
    }
    .author-option-4 {
        padding: 12px 0;
    }
    .author-option-4-left span {
        float: none;
        display: block;
        margin-left: 0px;
    }
    .author-option-4-left {
        font-size: 14px;
        min-height: 38px;
        padding-left: 84px;
    }
    .author-option-3-left {
        font-size: 14px;
        padding-left: 84px;
        min-height: 38px;
    }
    .author-option-image {
        width: 38px;
        height: 38px;
    }
    .single-post-author-simple {
        font-size: 14px;
    }
    .author-option-2-right {
        width: 60%;
        font-size: 14px;
        min-height: 38px;
        padding-left: 48px;
    }
    .author-option-2-left {
        width: 40%;
        font-size: 14px;
    }
    .author-option-2 {
        padding: 12px 0;
    }
    .author-option-1 {
        font-size: 14px;
        padding: 12px 0;
    }
    .single-post-author-wrapper {
        margin: 30px 0 56px;
    }
    .single-post-author {
        padding: 12px 0;
    }
    .single-post-author-text span {
        margin-bottom: 3px;
    }
    .single-post-author-text {
        font-size: 14px;
        clear: both;
        padding-left: 84px;
        width: 100%;
        margin-top: -10px;
    }
    .single-post-author-title {
        width: calc(100% - 84px);
        font-size: 14px;
        margin-bottom: 18px;
    }
    .single-post-author-image {
        width: 84px;
    }
    .single-post-author-image a {
        width: 70px;
        height: 70px;
    }
    .single-post-dialog-hold {
        margin-bottom: 45px;
    }
    .single-others-posts {
        padding: 30px 0;
    }
    .single-post-dialog-line-image-hold {
        width: 200px;
    }
    .single-post-full-image {
        min-height: 1px;
        padding-bottom: 72%;
    }
    .single-post-top-two-images-hold {
        margin-bottom: 15px;
    }
    .single-post-top-two-images ul li {
        float: left;
        width: calc(50% - 5px);
        margin-right: 10px;
    }
    .single-post-video-hold {
        margin-bottom: 30px;
    }
    .single-post-video-hold .overlaping-video span {
        width: 40px;
        height: 40px;
    }
    .entry blockquote {
        margin-top: 30px;
        margin-bottom: 30px;
        padding-left: 15%;
    }
    .entry blockquote p {
        font-size: 22px;
    }
    .single-post-dialog-line {
        font-size: 16px;
        margin-bottom: 14px;
    }
    .single-post-dialog-line span {
        position: static;
        display: block;
        width: 100%;
        text-align: left;
        margin-bottom: 4px;
    }
    .single-post-content-two-images-hold {
        margin-bottom: 30px;
    }
    .single-post-content-two-images ul li {
        width: 100%;
        margin-bottom: 14px;
        margin-right: 0;
    }
    .entry h2:first-child {
        margin-bottom: 20px;
    }
    .entry h2 {
        font-size: 18px;
    }
    .entry p {
        font-size: 16px;
        margin-bottom: 14px;
    }
    .single-post-side-author-hold {
        display: none;
    }
    .single-post-top-single-image-hold {
        margin-bottom: 15px;
    }
    .single-post-top-single-image {
        padding-bottom: 112%;
    }
    .single-post-title {
        font-size: 22px;
    }
    .single-post-cat {
        font-size: 12px;
        margin-bottom: 7px;
    }
    .btn-back:before {
        width: 9px;
        height: 7px;
    }
    .single-post-back {
        margin-bottom: 50px;
    }
    .single-post-wrapper {
        padding: 80px 0 0px;
    }
    .btn-back, .btn-back:active, .btn-back:focus {
        font-size: 14px;
    }
    .single-padd {
        padding-left: 0;
    }
    .magazine-search-wrapper {
        margin-bottom: 10px;
        transition: 0.2s 0.2s;
    }
    .magazine-search-wrapper.f-padd {
        padding-bottom: 70px;
        transition: 0.2s;
    }
    .magazine-story-button {
        margin-top: 58px;
    }
    .btn-arrow-noborder.btn-arrow, .btn-arrow-noborder.btn-arrow:focus, .btn-arrow-noborder.btn-arrow:active {
        font-size: 18px;
    }
    .btn-load-more, .btn-load-more:focus, .btn-load-more:active {
        padding: 6px 30px;
        font-size: 17px;
    }
    .magazine-all-list:before {
        bottom: 0px;
        height: 150px;
    }
    .magazine-all-list:after {
        display: none;
    }
    .magazine-all-item {
        margin-bottom: 15px;
    }
    .magazine-all-item-image-effect span {
        display: none;
    }
    .magazine-all-item-cat {
        font-family: 'GT-Alpina-TW', 'GT-Alpina', serif;
        font-size: 10px;
        color: #164453;
        padding-right: 15px;
        transition: 0.6s cubic-bezier(0.33, 1, 0.68, 1);
    }
    .magazine-all-item a:hover .magazine-all-item-cat {
        padding-right: 0;
        padding-left: 15px;
    }
    .magazine-all-item-button {
        display: none;
    }
    .magazine-all-item-author {
        font-size: 14px;
        margin-bottom: 0;
    }
    .magazine-all-item-title {
        font-size: 16px;
        margin-bottom: 5px;
    }
    .magazine-all-item-image {
        padding-bottom: 133%;
    }
    .magazine-all-item-image-hold {
        padding-right: 3%;
    }
    .magazine-highlighted-image-hold {
        margin-bottom: 24px;
    }
    .magazine-all-wrapper {
        padding: 56px 0;
    }
    .magazine-highlighted-text span {
        display: none;
    }
    .magazine-highlighted-wrapper {
        padding: 56px 0;
    }
    .magazine-highlighted-text {
        font-size: 14px;
        padding-right: 0px;
    }
    .magazine-highlighted-author {
        font-size: 18px;
        margin-bottom: 24px;
    }
    .magazine-highlighted-title {
        font-size: 22px;
        margin-bottom: 8px;
    }
    .magazine-highlighted-image-hold span {
        font-size: 10px;
        max-width: 112px;
    }
    .magazine-highlighted-image-effect {
        padding-bottom: 120%;
    }
    .magazine-latest-author {
        font-size: 14px;
    }
    .magazine-latest-title {
        font-size: 16px;
    }
    .magazine-latest-image-hold span {
        font-size: 10px;
        max-width: 112px;
    }
    .magazine-latest ul li {
        width: 100%;
        margin-right: 0px;
        transition-delay: 0s !important;
        margin-bottom: 30px;
    }
    .magazine-latest ul li:last-child {
        margin-bottom: 0px;
    }
    .magazine-latest-wrapper {
        padding: 56px 0;
    }
    .magazine-carousel-mob.owl-carousel .owl-nav button.owl-next span, 
    .magazine-carousel-mob.owl-carousel .owl-nav button.owl-prev span {
        display: none;
    }
    .magazine-carousel-mob.owl-carousel .owl-nav button.owl-next, 
    .magazine-carousel-mob.owl-carousel .owl-nav button.owl-prev {
        position: absolute;
        width: 20px;
        height: 20px;
        top: -45px;
    }
    .magazine-carousel-mob.owl-carousel .owl-nav button.owl-prev {
        right: 40px
    }
    .magazine-carousel-mob.owl-carousel .owl-nav button.owl-next {
        right: 15px;
        top: -46px;
    }
    .magazine-carousel-mob.owl-carousel .owl-nav button.owl-next:before {
        background: url(../img/arrow-right.png) no-repeat center center / 12px 9px;
    }
    .magazine-carousel-mob.owl-carousel .owl-nav button.owl-prev:before {
        background: url(../img/arrow-right.png) no-repeat center center / 12px 9px;
        transform: rotate(180deg);
    }
    .magazine-carousel-mob.owl-carousel .owl-nav button.owl-next:before, 
    .magazine-carousel-mob.owl-carousel .owl-nav button.owl-prev:before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 100%;
        bottom: 0;
        width: 100%;
    }
    .magazine-carousel-item-title {
        padding-right: 10%;
        color: #164453;
    }
    .magazine-carousel-item-subtitle {
        padding-right: 10%;
        color: #164453;
        margin-bottom: 0;
    }
    .magazine-carousel-mob-item a {
        float: left;
        width: 100%;
    }
    .magazine-carousel-mob-item:after {
        content: '';
        display: block;
        clear: both;
    }
    .magazine-carousel-item-image {
        position: relative;
    }
    .magazine-carousel-item-image span {
        font-family: 'GT-Alpina-TW', 'GT-Alpina', serif;
        position: absolute;
        top: 10px;
        left: 10px;
        background: #fff;
        font-size: 10px;
        padding: 7px 8px;
        color: #164453;
        max-width: 112px;
    }
    .magazine-carousel-item-content-hold {
        padding: 0;
    }
    .magazine-carousel-mob-wrapper .row {
        padding-right: 0;
    }
    .magazine-carousel-mob-wrapper {
        background: #f7f7f6;
        padding: 15px 0 35px;
    }
    .magazine-carousel-item-image-hold {
        margin-bottom: 30px;
        margin-right: 0;
    }
    .magazine-carousel-item-image {
        padding-bottom: 130%;
    }
    .magazine-carousel-item-block {
        display: block;
    }
    .title-line {
        font-size: 13px;
    }
    .magazine-carousel-item {
        padding: 15px 0 35px;
    }
    .magazine-filter ul li {
        display: block;
        margin-left: 0px;
    }
    .magazine-filter ul {
        left: 0;
        top: 100%;
        margin-top: -5px;
    }
    .magazine-filter ul li a {
        font-size: 14px;
    }
    .magazine-filter span {
        font-size: 14px;
    }
    .magazine-search button {
        width: 24px;
        height: 24px;
        background: url(../img/btn-search.svg) no-repeat center center / 24px;
    }
    .magazine-search input, .magazine-search input:focus {
        height: 30px;
        font-size: 14px;
    }
    .magazine-search {
        width: 100%;
    }
    
    .intro-magazine .headline {
        margin-bottom: 15px;
        font-size: 13px;
    }
    .intro-magazine {
        padding: 95px 0 60px;
    }
    .intro-magazine-text {
        font-size: 16px;
    }
    .academy-desc p > span {
        top: 1px;
    }
    .owl-carousel.features-carousel .owl-stage-outer {
        padding-left: 0px;
    }
    .features-carousel-block .title-sm {
        padding-left: 15px;
    }
    .tabs-specialty-bottom {
        margin-top: 42px;
    }
    .my-tabs-specialties .my-tabs-links ul li a {
        font-size: 16px;
    }
    .my-tabs-specialties .my-tabs-links ul li {
        padding-right: 0;
        margin-right: 20px;
    }
    .my-tabs-specialties .my-tabs-links ul li:last-child {
        margin-right: 0px;
    }
    .my-tabs-links {
        margin-bottom: 28px;
    }
    .my-tabs-links ul {
        overflow: auto;
        width: calc(100% + 15px);
        padding-right: 20px;
        white-space: nowrap;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
    }
    .my-tabs-links ul li {
        padding-right: 20px;
        white-space: nowrap;
        margin-right: 0;
    }
    .home-preloader-logo {
        top: 30px;
    }
    .home-preloader-bottom {
        font-size: 16px;
        width: 100%;
        text-align: center;
    }
    .home-preloader-quote-author {
        font-size: 14px;
    }
    .home-preloader-quote {
        font-size: 20px;
    }
    .home-preloader-centered {
        width: 100%;
        padding: 0 20px;
    }
    .contacs-list-item p {
        font-size: 14px;
    }
    .it-carousel .owl-nav {
        right: 12px;
    }
    .it-carousel-content {
        width: calc(100% + 15px);
    }
    .it-carousel.owl-carousel .owl-nav button.owl-prev:before {
        background: #164453 url(../img/slide-prev.png) no-repeat center center / 15px 12px;
    }
    .it-carousel.owl-carousel .owl-nav button.owl-next:before {
        background: #164453 url(../img/slide-next.png) no-repeat center center / 15px 12px;
    }
    .it-carousel.owl-carousel .owl-nav button.owl-next:before, .it-carousel.owl-carousel .owl-nav button.owl-prev:before {
        width: 32px;
    }
    .it-carousel .owl-nav {
        top: -68px;
    }
    .home-magazine-list ul li:nth-child(2) {
        transition-delay: 0s;
    }
    .home-magazine-list ul li:nth-child(3) {
        transition-delay: 0s;
    }
    .members-search-input input, .members-search-input input:focus {
        font-size: 14px;
    }
    .members-list {
        padding: 15px 14px;
    }
    .members-search {
        background: #F7F7F6;
        padding: 14px 14px;
    }
    .members-search {
        background: #f1f1f1;
    }
    .members-block {
        background: #F7F7F6;
    }
    .team-map-block {
        padding: 36px 0 0px;
    }
    .members-search-input {
        width: 195px;
    }
    .members-left:hover {
        padding-right: 0px;
    }
    .members-right:hover {
        padding-left: 0px;
    }
    .members-right {
        padding-right: 0px;
    }
    .members-left {
        padding-left: 0px;
    }
    .members-navigation a {
        margin-right: 10px;
    }
    .members-block {
        margin-left: -15px;
        width: calc(100% + 30px);
    }
    .team-map {
        display: none;
    }
    .mob-story-last {
        padding-bottom: 160%;
        margin-left: -15px;
        width: calc(100% + 30px);
    }
    .story-mob-item {
        margin-bottom: 56px;
    }
    .story-content-text p {
        font-size: 14px;
    }
    .story-mob-image-hold {
        margin-bottom: 42px;
    }
    .story-mob-image {
        width: 120px;
        height: 150px;
    }
    .story-title {
        font-size: 26px;
        margin-bottom: 24px;
    }
    .story-mob-map {
        margin-left: -15px;
        width: calc(100% + 30px);
        margin-bottom: 24px;
    }
    .story-mob-intro {
        margin-bottom: 56px;
    }
    .story-mob-intro .title-lg {
        margin-bottom: 35vh;
    }
    .contact-search-hold input, .contact-search-hold input:focus {
        font-size: 16px;
    }
    .contacs-list-item * {
        opacity: 1;
    }
    .contacs-list-item h3 {
        font-size: 16px;
        margin-bottom: 10px;
    }
    
    .team-list ul li {
        width: 100%;
        margin-right: 0px;
        margin-bottom: 15px;
    }
    .team-map-title {
        font-size: 26px;
        margin-bottom: 80px;
    }
    .team-block {
        margin-bottom: 56px;
    }
    .chat-content.writing:after {
        transform: translateX(0%);
        opacity: 0;
    }
    .chat-hold ul li:first-child {
        margin-right: 20px;
    }
    .chat-content {
        font-size: 16px;
    }
    .careers-wrapper .button-block {
        margin-bottom: 60px;
    }
    .cards-list {
        padding: 0px;
    }
    .card-image {
        padding-bottom: 45%;
    }
    .btn-border-blue, .btn-border-blue:focus, .btn-border-blue:active {
        font-size: 17px;
    }
    .cards-list ul li {
        width: 100%;
        margin-right: 0px;
        margin-bottom: 24px;
    }
    .cards-list ul li:last-child {
        margin-bottom: 0px;
    }
    .careers-wrapper .tt-block {
        margin-bottom: 42px;
    }
    .careers-wrapper {
        padding: 56px 0;
    }
    .it-carousel .owl-dots {
        display: none;
    }
    .it-carousel-block {
        padding: 42px 0 70px;
    }
    .it-carousel.owl-carousel .owl-nav button.owl-prev {
        margin-right: 10px;
        opacity: 0.5;
    }
    .it-carousel.owl-carousel .owl-nav button.owl-next, .it-carousel.owl-carousel .owl-nav button.owl-prev {
        width: 37px;
        height: 32px;
    }
    .slider-counter {
        top: 240px;
        left: 0;
        font-size: 14px;
    }
    .it-carousel-list p {
        font-size: 14px;
    }
    .it-carousel-list ul li {
        font-size: 14px;
    }
    .it-carousel-content h3 {
        font-size: 26px;
        margin-bottom: 24px;
        min-height: 52px;
    }
    .it-carousel-image-circle {
        width: 200px;
        height: 200px;
    }
    .stats-list ul li:nth-last-child(2) {
        margin-bottom: 42px;
    }
    .stats-lists-digit {
        margin-bottom: 12px;
    }
    .stats-list ul li {
        margin-bottom: 42px;
        width: 100%;
        margin-right: 0;
    }
    .stats-list {
        margin-top: 42px;
    }
    .stats-block {
        padding: 56px 0;
    }
    .profile-more {
        margin-top: 10px;
    }
    .profile-more a {
        color: #164453;
        font-size: 16px;
        font-weight: 500;
    }
    .profile-wrapper .tt-text {
        height: 236px;
        overflow: hidden;
        position: relative;
    }
    .profile-wrapper .tt-text.close {
        height: auto;
    }
    .profile-wrapper .tt-text.close:after {
        display: none;
    }
    .profile-wrapper .tt-text:after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        height: 100%;
        height: 50px;
        background: linear-gradient(to top, rgba(255,255,255,1), rgba(255,255,255,0));

    }
    .profile-wrapper .tt-text p,
    .profile-wrapper .tt-text h5 {
        margin-bottom: 14px;
    }
    .profile-wrapper {
        padding: 100px 0px 58px;
    }
    .profile-location {
        margin-bottom: 14px;
    }
    .profile-hold-left > span {
        width: 205px;
        height: 205px;
        left: 50%;
        transform: translateX(-50%);
    }
    .profile-hold-left {
        min-height: 1px;
        padding-left: 0;
        padding-top: 230px;
        text-align: center;
        margin-bottom: 58px;
    }
    .articles-explore {
        margin-top: 56px;
        font-size: 16px;
        text-align: left;
    }
    .article-image-hold {
        padding-right: 10px;
    }
    .article-type {
        display: none;
    }
    .article-item {
        margin-bottom: 15px;
    }
    .article-title span {
        font-size: 14px;
        left: 8px;
    }
    .article-title {
        font-size: 16px;
        padding-left: 8px;
        padding-right: 0;
    }
    .article-item a:hover .article-title {
        padding-left: 8px;
    }
    .article-item a:hover .article-title span {
        left: 8px;
    }
    .profile-articles-wrapper {
        padding: 56px 0;
    }
    .title-xs {
        font-size: 22px;
        margin-bottom: 32px;
    }
    .article-image {
        height: 116px;
    }
    .intro-full .mob-intro-video-hold {
        padding-top: 59px;
    }
    .intro-full-content {
        padding: 58px 0;
    }
    .acf-element label {
        font-size: 16px;
    }
    .acf-element label input, .acf-element label input:focus {
        margin-top: 5px;
    }
    .acf-element-right {
        padding-left: 0px;
    }
    .acf-element-left {
        padding-right: 0px;
    }
    .acf-grid .acf-element {
        width: 100%;
    }
    .acf-grid {
        display: block;
    }
    .acf-element {
        margin-bottom: 20px;
    }
    .acf-text-element {
        margin-bottom: 20px;
    }
    .academies-contact-form-right {
        width: 100%;
    }
    .academies-contact-form-left {
        width: 100%;
    }
    .academies-contact-form {
        display: block;
    }
    .academies-contact-line-right {
        width: 100%;
    }
    .academies-contact-line-left {
        width: 100%;
        margin-bottom: 20px;
    }
    .academies-contact-line {
        display: block;
        margin-bottom: 40px;
    }
    .academy-desc {
        padding-top: 28px;
    }
    .tabs-specialty-content h5 {
        font-size: 14px;
        margin-bottom: 28px;
    }
    .academies .tabs-specialty .tabs {
        overflow: auto;
        width: calc(100% + 15px);
        margin-bottom: 28px;
        padding-right: 20px;
        white-space: nowrap;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
    }
    .tabs-specialty .tabs-title {
        margin-right: 0px;
    }
    .single-specialty .tabs-specialty .tabs-title {
        margin-right: 20px;
    }
    .single-specialty .tabs-specialty .tabs-title:last-child {
        margin-right: 0px;
    }
    .academies .tabs-specialty .tabs-title {
        padding-right: 20px;
        white-space: nowrap;
    }
    .academies .section-title-block {
        margin-bottom: 60px;
    }
    .academies .tt-title {
        display: none;
    }
    .lead-faculcy a {
        padding-top: 0px;
        font-size: 14px;
    }
    .academies .lead-faculty-style .lead-faculcy p {
        font-size: 18px;
    }
    .enrollments-wrapper {
        padding: 42px 0 50px;
    }
    .tabs-specialty-bottom-text {
        font-size: 14px;
    }
    .tabs-specialty-bottom {
        text-align: center;
    }
    .tabs-specialty {
        margin-bottom: 42px;
    }
    .tabs-specialty-content p {
        font-size: 16px;
    }
    .tabs-specialty-content ul li {
        font-size: 16px;
    }
    .tabs-specialty .tabs {
        margin-bottom: 42px;
    }
    .tabs-specialty .tabs-title>a {
        font-size: 16px;
    }
    .tabs-wrapper {
        padding: 56px 0;
    }
    .img-full {
        padding-bottom: 126%;
    }
    .image-about {
        padding: 0;
        padding-bottom: 65%;
        margin-bottom: 56px;
    }
    .specialty-scroll {
        display: none;
    }
    .image-about-text {
        display: none;
    }
    .intro-specialty .title-lg {
        margin-bottom: 28px;
    }
    .image-about > span {
        width: 116px;
        height: 116px;
    }
    .section-navigation-links {
        width: calc(100% - 130px);
    }
    .section-navigation-label {
        width: 130px;
    }
    .section-navigation {
        width: calc(100% + 30px);
        border-radius: 0;
        margin-left: -15px;
    }
    .section-navigation-links ul li a {
        font-size: 14px;
    }
    .speciality-wrapper {
        margin-bottom: 60px;
    }
    .speciality-item {
        margin-bottom: 50px;
    }
    .specialty-author {
        font-size: 14px;
        margin-bottom: 28px;
    }
    .speciality-item-content {
        padding: 42px 5% 0;
    }
    .specialty-subtitle {
        font-size: 17px;
        margin-bottom: 14px;
    }
    .specialty-title {
        font-size: 22px;
    }
    .bt-text {
        font-size: 14px;
    }
    .bt-block {
        text-align: center;
        padding: 42px 0 56px;
    }
    .client-carousel .owl-dots {
        margin-top: 36px;
    }
    .client-carousel-item {
        font-size: 17px;
    }
    .client-carousel-block {
        padding: 56px 0;
    }
    .features-carousel .owl-dots {
        left: calc(50% - 8px);
        bottom: -50px;
        max-width: 280px;
    }
    .features-carousel-text {
        font-size: 14px;
    }
    .features-carousel-title {
        font-size: 18px;
        padding: 0px 20px;
        margin-bottom: 20px;
    }
    .features-carousel-block {
        padding: 42px 0 100px;
    }
    .features-carousel-item {
        width: 250px;
    }
    .features-carousel .owl-nav {
        top: -57px;
        right: 15px;
    }
    .features-carousel.owl-carousel .owl-nav button.owl-prev {
        margin-right: 10px;
    }
    .features-carousel.owl-carousel .owl-nav button.owl-next, .features-carousel.owl-carousel .owl-nav button.owl-prev {
        width: 37px;
        height: 32px;
    }.features-carousel.owl-carousel .owl-nav button.owl-next:before, 
    .features-carousel.owl-carousel .owl-nav button.owl-prev:before {
        width: 32px;
    }
    .features-carousel.owl-carousel .owl-nav button.owl-next:before {
        background: #cfb76f url(../img/slide-next.png) no-repeat center center / 15px 12px;
    }
    .features-carousel.owl-carousel .owl-nav button.owl-prev:before {
        background: #cfb76f url(../img/slide-prev.png) no-repeat center center / 15px 12px;
    }
    .title-sm {
        font-size: 22px;
        margin-bottom: 30px;
    }
    .tt-block + .tt-block {
        margin-top: -24px;
    }
    .intro-split {
        margin-bottom: 56px;
    }
    .intro-text {
        font-size: 16px;
    }
    .title-lg {
        font-size: 36px;
    }
    .split-intro-content {
        padding: 56px 20px 0px;
    }
    .intro-split .mob-intro-video-hold {
        padding-top: 59px;
    }
    .features-carousel-hold {
        /* width: calc(100% + 15px); */
    }
    .header {
        padding: 8px 0;
    }
    .nav-mob-trigger span {
        padding: 1px 0;
        padding-left: 20px;
    }
    .logo img {
        max-width: 116px;
    }
    .mob-nav-hold {
        padding: 80px 20px 50px 25px;
    }
    .footer-sec-nav ul li {
        margin: 0 10px;
    }
    .footer-main-nav-hold {
        margin-bottom: 42px;
    }
    .footer-sec-nav ul li a {
        font-size: 14px;
    }
    .footer-main-nav ul li a {
        font-size: 14px;
    }
    .footer-grid {
        margin-bottom: 28px;
    }
    .footer-grid:last-child {
        margin-bottom: 0px;
    }
    .footer-title {
        font-size: 14px;
        margin-bottom: 10px;
    }
    .footer-text {
        margin-bottom: 42px;
        font-size: 22px;
    }
    .newsletter-wrapper {
        padding: 45px 0;
    }
    .newsletter-wrapper .row.row-sm {
        max-width: 290px;
    }
    .newsletter-text {
        font-size: 17px;
    }
    .newsletter-title {
        font-size: 36px;
    }
    .home-magazine-content {
        padding-right: 0px;
        padding-left: 15px;
    }
    .home-magazine-image-hold {
        margin-bottom: 0px;
    }
    .home-magazine-image {
        padding-bottom: 0;
        height: 116px;
    }
    .home-magazine-type {
        display: none;
    }
    .home-magazine-list ul li {
        width: 100%;
        margin-right: 0px;
        margin-bottom: 15px;
    }
    .home-magazine-list ul li:last-child {
        margin-bottom: 0px;
    }
    .home-magazine-top-content p {
        font-size: 14px;
        margin-bottom: 30px;
    }
    .home-magazine-top-content h4 {
        font-size: 18px;
    }
    .home-magazine-top-content {
        padding: 42px 0%;
    }
    .home-magazine-top-content h3 {
        font-size: 30px;
    }
    .home-magazine-top {
        display: block;
    }
    .home-magazine-wrapper {
        padding: 56px 0;
    }
    .headline {
        font-size: 14px;
    }
    .section-title {
        font-size: 30px;
    }
    .button-block {
        margin-bottom: 70px;
        text-align: center;
    }
    .btn-arrow, .btn-arrow:focus, .btn-arrow:active {
        font-size: 17px;
    }
    .media-caption-block {
        margin-bottom: 45px;
    }
    .media-title {
        padding-right: 0;
    }
    .tt-block {
        margin-bottom: 45px;
    }
    .tt-title {
        font-size: 20px;
        padding-right: 0;
    }
    .tt-text h1 {
        font-size: 16px;
        margin-bottom: 25px;
    }
    .tt-text p {
        font-size: 16px;
        margin-bottom: 20px;
    }
    .tt-text ul {
        margin-bottom: 20px;
    }
    .tt-text ul li {
        font-size: 16px;
    }
    .tt-text ul li:before {
        top: 8px;
        width: 5px;
        height: 5px;
    }
    .intro-home {
        margin-bottom: 70px;
    }
    .mob-intro-video-hold {
        padding: 0px 15px;
    }
    .home-intro-content {
        padding: 110px 15px 65px;
    }
    .row {
        padding-left: 15px;
        padding-right: 15px;
    }
    .title-md {
        font-size: 28px;
    }
}


@media screen and (max-height:650px) {
    .story-content-2 .intro-text {
        font-size: 16px;
    }
 }
