@font-face {
    font-family: "Minerva";
    src:url("../fonts/minerva-modern.woff2") format("woff2"),
    url("../fonts/minerva-modern.woff") format("woff"),
    url("../fonts/minerva-modern.otf") format("opentype");
    font-style:normal;
    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: 'muli', sans-serif;
	font-family: 'Mulish', sans-serif;
	color: #404040;
	/* cursor: none; */
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}

.layouts-title {
	font-size: 26px;
	margin:15px 0px;
}

.layouts ul li {
	margin-bottom:5px;
}

.layouts ul li a {
	font-size: 17px;
	display: inline-block;
	padding:3px 10px;
}

.layouts ul li a:hover {
	background:#000;
	color:#fff;
}

/* -- END RESET -- */

.column:last-child:not(:first-child), .columns:last-child:not(:first-child) {
    float: left;
}

.grid-container {
	width: 100%;
	max-width: 1920px;
	padding-left: 5%;
	padding-right: 5%;
	position: relative;
	z-index: 10;
}
.grid-container.grid-container-full {
	max-width: 100%;
}
.grid-container.grid-container-md {
	max-width: 1030px;
	padding-left: 30px;
	padding-right: 30px;
}
.grid-container.nopad {
	padding-left: 0;
	padding-right: 0;
}
.grid-container.nopadleft {
	padding-left: 0;
}
.grid-container.nopadright {
	padding-right: 0;
}

/* -- main styles -- */

.nopad {
	padding:0px;
}

.nopadleft {
	padding-left:0px;
}

.nopadright {
	padding-right:0px;
}

strong, b {
	font-weight: bold;
}

i {
	font-style: italic;
}

em {
	font-style: italic;
}

.clear {
	clear:both;
}

.left {
	float:left;
	margin-right:15px;
	margin-bottom:15px;
}

.right {
	float:right;
	margin-left:15px;
	margin-bottom:15px;
}

.alignleft {
	float:left;
	width: calc(50% - 30px);
	margin-right:30px;
	margin-bottom:30px;
}

.alignright {
	float:right;
	width: calc(50% - 30px);
	margin-left:30px;
	margin-bottom:30px;
}

.aligncenter,
div.aligncenter {
    display: block;
    margin: 5px auto 5px auto;
}

a img.aligncenter {
    display: block;
    margin-left: auto;
    margin-right: auto
}

.wp-caption {
	max-width: 100%;
    margin-bottom: 15px;
}

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

.object-fit {
	position: relative;
}

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

.object-fit.object-contain > img {
    -o-object-fit: contain;
    object-fit: contain;
}

/* preloader */

.preloader {
    display: inline-block;
	width: 25px;
	height: 25px;
	border: 3px solid hsla(0,0%,100%,.3);
    border-top-color: rgba(255, 255, 255, 0.3);
    border-right-color: rgba(255, 255, 255, 0.3);
    border-bottom-color: rgba(255, 255, 255, 0.3);
    border-left-color: rgba(255, 255, 255, 0.3);
	border-radius: 50%;
	border-top-color: #ccc !important;
	-webkit-animation: a 1s ease-in-out infinite;
	animation: a 1s ease-in-out infinite;
	z-index: 50;
}

@-webkit-keyframes a {
    to {
        -webkit-transform: rotate(1turn);
        transform: rotate(1turn)
    }
}
@keyframes a {
    to {
        -webkit-transform: rotate(1turn);
        transform: rotate(1turn)
    }
}

/*   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;
}

.hamburger:hover {
    opacity: 1;
}

.hamburger-box {
    position: relative;
    display: inline-block;
    width: 32px;
    height: 28px;
    float: right;
}

.hamburger-inner {
    top: 50%;
    display: block;
    margin-top: -2px;
}

.hamburger-inner,
.hamburger-inner:after,
.hamburger-inner:before {
    position: absolute;
    width: 32px;
    height: 4px;
    transition-timing-function: ease;
    transition-duration: .15s;
    transition-property: transform;
    background-color: #404040;
}

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

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

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

.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);
}

.home-intro-section {
	padding-top: 190px;
	margin-bottom: 140px;
}

.home-intro-image {
	padding-bottom: 55.56%;
}

.home-intro-top {
	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;
	-webkit-box-pack: justify;
	-moz-box-pack: justify;
	-ms-flex-pack: justify;
	-webkit-justify-content: space-between;
	justify-content: space-between;
	margin-bottom: 56px;
}

.title-160 {
	font-size: 160px;
	/* font-size: 8.3vw; */
	font-size: 6.9vw;
	font-weight: 600;
	line-height: 0.8;
	letter-spacing: -6px;
}
.title-160 strong {
	font-weight: 600;
	color: #797468;
}

.home-intro-left {
	width: 45%;
}
.home-intro-right {
	width: 45%;
	text-align: right;
}

.text-20 {
	font-size: 20px;
	font-weight: 600;
	line-height: 1.2;
	letter-spacing: -0.5px;
	margin-bottom: 40px;
}

.text-20.has-line {
	position: relative;	
	padding-left: 156px;
}
.text-20.has-line:before {
	content: '';
	position: absolute;
	left: 0;
	top: 12px;
	width: 0px;
	height: 1px;
	background: #404040;
	transition: 0.35s cubic-bezier(0.5, 1, 0.89, 1);;
}
.text-20.in-view.has-line:before {
	width: 100px;
}

.text-20 span {
	display: inline-block;
	opacity: 0;
	-webkit-transform: translateX(-20px);
	-moz-transform: translateX(-20px);
	transform: translateX(-20px);
	transition: 0.4s 0.2s cubic-bezier(0.5, 1, 0.89, 1);;
}
.text-20.in-view span {
	opacity: 1;
	-webkit-transform: translateX(0px);
	-moz-transform: translateX(0px);
	transform: translateX(0px);
}


.home-intro-section .text-20 {
	margin-bottom: 64px;
	max-width: 675px;
	font-weight: 400;
}

.title-80 {
	font-weight: 600;
	font-size: 80px;
	line-height: 1;
	letter-spacing: -2px;
	margin-bottom: 40px;
}

.title-80 strong {
	font-weight: 600;
	color: #797468;
}


.padd-section-left {
	padding-left: 12%;
}
.padd-section-both {
	padding-left: 12%;
	padding-right: 12%;
}
.padd-section-right {
	padding-right: 12%;
}

.about-section {
	margin-bottom: 160px;
}

.about-image {
	padding-bottom: 75.47%;
	min-height: 100%;
}

.about-hold {
	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;
	margin-bottom: 160px;
}

.about-left {
	width: 50%;
	padding-right: 16px;
}
.about-right {
	width: 50%;
	padding-left: 13.4%;
}

.text-24 {
	font-size: 24px;
	line-height: 1.5;
	letter-spacing: -1px;
}

.text-24 p {
	margin-bottom: 36px;
}

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

.about-section .title-80 + .about-hold {
	margin-top: 77px;
}
.about-hold .text-20 {
	margin-bottom: 120px
}

.link-arrow,
.link-arrow:focus,
.link-arrow:active {
	display: inline-block;
	font-weight: 700;
    font-size: 20px;
    line-height: 24px;
    color: #000000;
    letter-spacing: -0.5px;
	padding-right: 36px;
	position: relative;
	cursor: pointer;
}
.link-arrow:hover {
    color: #000000;
}
.link-arrow span {
	position: absolute;
	width: 24px;
	height: 24px;
	top: 0;
	right: 0;
	border-radius: 50%;
	background: #000;
	overflow: hidden;
}
.link-arrow span:before,
.link-arrow span:after {
	content: '';
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background: url(../img/arrow-right-white.svg) no-repeat center center;
}
.link-arrow span:before {
	transform: translateX(-100%);
    transition: 0.6s cubic-bezier(0.33, 1, 0.68, 1);
}
.link-arrow span:after {
	transform: translateX(0%);
    transition: 0.6s 0.1s cubic-bezier(0.33, 1, 0.68, 1);
}
.link-arrow:hover span:before {
	transform: translateX(0%);
    transition: 0.6s 0.1s cubic-bezier(0.33, 1, 0.68, 1);
}
.link-arrow:hover span:after {
	transform: translateX(100%);
    transition: 0.6s cubic-bezier(0.33, 1, 0.68, 1);
}

.link-arrow.white,
.link-arrow.white:focus,
.link-arrow.white:active {
	color: #fff;
}
.link-arrow.white:hover {
	color: #fff;
}
.link-arrow.white span {
	background: #fff;
}

.link-arrow.white span:before,
.link-arrow.white span:after {
    background: url(../img/arrow-right-brown.svg) no-repeat center center;
}

.number-text-combo {
	font-family: "minerva-modern", sans-serif;
	font-size: 180px;
	line-height: 1;
	color: #797468;
}
.number-text-combo strong {
	font-family: 'Mulish', sans-serif;
	display: block;
	font-weight: 600;
	font-size: 20px;
	line-height: 1.2;
	letter-spacing: -1px;
}

.about-hold .number-text-combo {
	margin-top: 96px;
}

.about-link {
	margin-top: 40px;
}

.about-hold-sec {
	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;
}

.about-hold-sec-left {
	width: 58%;
	padding-right: 16%;
}
.about-hold-sec-right {
	width: 42%;
}

.about-sec-image {
	min-height: 100%;
}

.about-hold-sec .number-text-combo {
	margin-top: 64px;
}

.sl-image {
	padding-bottom: 56.6%;
	margin-bottom: 120px;
}

.sl-content-hold {
	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;
	-webkit-box-align: end;
	-ms-flex-align: end;
	align-items: flex-end;
}

.sl-content-left {
	width: 55%;
	padding-right: 8%;
}
.sl-content-left .text-24 {
	max-width: 90%;
}
.sl-content-right {
	width: 45%;
}

.mt40 {
	margin-top: 40px;
}

.scrolling-lines-section{
	margin-bottom: 150px;
}

.scrolling-line-1 {
	margin-bottom: 24px;
}

main {
	position: relative;
	overflow: hidden;
}

.scrolling-lines-section .grid-container-full {
	z-index: 11;
	pointer-events: none;
}

.scrolling-line-2 .title-160 {
	margin-bottom: -0.3em;
}

.scrolling-line {
	pointer-events: none;
}

.scrolling-line .title-160 {
	white-space: nowrap;
}

.process-section .title-80 {
	max-width: 770px;
}

.process-section {
	padding: 160px 0 180px;
	/* background: #797468; */
	color: #fff;
	margin-bottom: 160px;
}

body {
	transition: background 0.4s;
}
body.process-reached {
	background: #797468;
}
body.process-ended {
	background: #fff;
}
body.light-on {
	background: #F8F8F8;
}
body.light-ended {
	background: #fff;
}
body.dark-on {
	background: #797468;
}
body.dark-ended {
	background: #fff;
}
body.dark-ended.light-on {
	background: #F8F8F8;
}
body.dark-ended.light-on.light-ended {
	background: #fff;
}
body.light-ended.dark-on.dark-ended {
	background: #fff;
}

/* light2 */
body.light2-on {
	background: #F8F8F8;
}
body.light-ended.light2-on {
	background: #F8F8F8;
}
body.dark-ended.light2-on {
	background: #F8F8F8;
}
body.dark-ended.light-ended.light2-on {
	background: #F8F8F8;
}

.title-80.white strong {
	color: #C7C0B9;
}

.text-20.has-line.white:before {
	background: #fff;
}

.text-20 span {
	display: inline-block;
}
.text-20.has-ml {
	margin-left: 50px;
}

.images-content-carousel-section {
	margin-bottom: 230px;
}

.images-content-carousel-section .section-top {
	margin-bottom: 105px;
}

.ic-item a {
	display: block;
	color: #000000;
}

.ic-item-image {
	padding-bottom: 58.333%;
	margin-bottom: 40px;
}
.ic-item-image:after {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	width: 100%;
	height: 100%;
	background: #070606;
	opacity: 0.3;
	z-index: 2;
	transition: 0.2s;
}
.owl-item.active .ic-item-image:after {
	opacity: 0;
	visibility: hidden;
}

.ic-item-content {
	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;
	-webkit-box-align: end;
	-ms-flex-align: end;
	align-items: flex-end;
}

.ic-item-left {
	width: 50%;
}
.ic-item-right {
	width: 50%;
	padding-left: 8%;
}

.title-48 {
	font-weight: 600;
	font-size: 48px;
	line-height: 1.08;
	letter-spacing: -1px;
}
.title-48 strong {
	font-weight: 600;
	color: #797468;
}
.title-48.white strong {
	color: #C7C0B9;
}

.ic-item-link {
	margin-top: 25px;
}

.text-18 {
	font-size: 18px;
	line-height: 1.44;
	letter-spacing: -0.5px;
}

.ic-carousel.owl-carousel .owl-stage-outer {
	overflow: visible;
}

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

.ic-carousel.owl-carousel .owl-nav button.owl-next, 
.ic-carousel.owl-carousel .owl-nav button.owl-prev {
	position: absolute;
	top: 0;
	bottom: 0;
	height: 100%;
	width: 50vw;
	opacity: 1;
	transition: 0.3s;
}
.ic-carousel.owl-carousel .owl-nav button.owl-next:hover, 
.ic-carousel.owl-carousel .owl-nav button.owl-prev:hover {
	opacity: 1;
}
.ic-carousel.owl-carousel .owl-nav button.owl-prev {
	right: calc(100% + 70px);
}
.ic-carousel.owl-carousel .owl-nav button.owl-next {
	left: calc(100% + 70px);
}

.ic-carousel.owl-carousel .owl-nav button.owl-next span, 
.ic-carousel.owl-carousel .owl-nav button.owl-prev span {
	position: absolute;
	top: calc(50% - 52px);
	transform: translateY(-50%);
	border: 4px solid #C7C0B9;
	width: 140px;
	height: 140px;
	border-radius: 50%;
}

.ic-carousel.owl-carousel .owl-nav button.owl-next span svg, 
.ic-carousel.owl-carousel .owl-nav button.owl-prev span svg {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}
.ic-carousel.owl-carousel .owl-nav button.owl-prev span {
	right: 5px;
}
.ic-carousel.owl-carousel .owl-nav button.owl-next span {
	left: 5px;
}

.about-v2-section {
	margin-bottom: 160px;
}

.about-v2-hold {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;

	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-lines: multiple;
	-moz-box-lines: multiple;
	-ms-flex-wrap: wrap;
	-webkit-flex-wrap:wrap;
	flex-wrap: wrap;
}

.about-v2-left {
	width: 54%;
}
.about-v2-right {
	width: 46%;
	padding-left: 16%;
}

.about-v2-link {
	margin-top: 43px;
}

.about-v2-hold {
	margin-bottom: 88px;
}

.about-v2-image {
	padding-bottom: 51%;
}

.link-arrow.link-arrow-lg,
.link-arrow.link-arrow-lg:focus
.link-arrow.link-arrow-lg:active {
	font-size: 24px;
}

.bg-light {
	background: #F8F8F8;
}

.business-section {
	padding: 160px 0 200px;
}

.business-top {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	/* -webkit-box-align: end;
	-ms-flex-align: end;
	align-items: flex-end; */
	-webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;

	-webkit-box-lines: multiple;
	-moz-box-lines: multiple;
	-ms-flex-wrap: wrap;
	-webkit-flex-wrap:wrap;
	flex-wrap: wrap;
	margin-bottom: 85px;
}

.business-top-left {
	/* width: 50%;
	padding-right: 12%; */
	width: 54%;
}
.business-top-left .title-80 {
	margin-bottom: 0;
}
.business-top-right {
	/* width: 50%; */
	width: 46%;
    padding-left: 16%;
}
.business-top-right .text-16 {
	max-width: 310px;
}

.text-16 {
	font-size: 16px;
	line-height: 1.5;
	letter-spacing: -0.5px;
}

.business-carousel-item {
	width: 360px;
	position: relative;
	opacity: 0.3;
	transition: 0.3s;
}
.business-carousel-hold {
	width: calc(100% - 360px);
}
.owl-item.active .business-carousel-item {
	opacity: 1;
}
.business-carousel-item:after {
	content: '';
	position: absolute;
	top: 26px;
	bottom: 26px;
	height: calc(100% - 52px);
	width: 1px;
	background: #000;
	opacity: 0.3;
	right: -71px;

}
.business-carousel-item a {
	display: block;
	color: #000;
}
.business-carousel-item .title-48 {
	margin-bottom: 32px;
}

.bci-link {
	margin-top: 32px;
}

.business-carousel.owl-carousel .owl-stage-outer {
	overflow: visible;
}

.business-carousel.owl-carousel .owl-nav button.owl-prev {
	/* display: none !important; */
}

.business-carousel.owl-carousel .owl-nav button.owl-next.disabled, 
.business-carousel.owl-carousel .owl-nav button.owl-prev.disabled {
	opacity: 0;
	visibility: hidden;
}
.business-carousel.owl-carousel .owl-nav button.owl-next, 
.business-carousel.owl-carousel .owl-nav button.owl-prev {
	position: absolute;
	top: 0;
	bottom: 0;
	height: 100%;
	width: 220px;
	/* opacity: 0; */
	transition: 0.3s;
}
.business-carousel.owl-carousel .owl-nav button.owl-next:hover, 
.business-carousel.owl-carousel .owl-nav button.owl-prev:hover {
	opacity: 1;
}
.business-carousel.owl-carousel .owl-nav button.owl-prev {
	left: calc(100vw * -0.05);
}
.business-carousel.owl-carousel .owl-nav button.owl-next {
	right: calc(100vw * -0.05 - 360px);
}

.business-carousel.owl-carousel .owl-nav button.owl-next span, 
.business-carousel.owl-carousel .owl-nav button.owl-prev span {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	border: 4px solid #C7C0B9;
	width: 120px;
	height: 120px;
	border-radius: 50%;
}

.business-carousel.owl-carousel .owl-nav button.owl-next span svg, 
.business-carousel.owl-carousel .owl-nav button.owl-prev span svg {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}
.business-carousel.owl-carousel .owl-nav button.owl-prev span {
	right: 0px;
}
.business-carousel.owl-carousel .owl-nav button.owl-next span {
	left: 0px;
}

.blog-home-section {
	padding-bottom: 126px;
}

.blog-home-section .section-top {
	max-width: 80%;
	margin-bottom: 120px;
}

.blog-home-featured {
	border-top: 1px solid #404040;
	border-bottom: 1px solid #404040;
	padding: 32px 0px;
    margin-bottom: 32px;
	position: relative;
	overflow: hidden;

}
.blog-home-featured a {
	width: 100%;
	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;

}

.bhf-left {
	width: 62%;
}
.bhf-right {
	width: 38%;
	padding-left: 8%;
	padding-right: 6%;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}

.bhf-image {
	padding-bottom: 65%;
	min-height: 100%;
}

.title-32 {
	font-weight: 600;
	font-size: 32px;
	line-height: 1.25;
	letter-spacing: -0.8px;
	margin-bottom: 24px;
}

.bhf-right .text-20 {
	margin-bottom: 28px;
	color: #404040;
}

.bhf-right .title-32 {
	color: #000;
}
.bhf-right .text-18 {
	color: #404040;
}

.bhf-link {
	margin-top: 40px;
}

.blog-carousel-image {
	margin-bottom: 42px;
}

.blog-carousel-item {
	opacity: 0.3;
	transition: 0.3s;
}
.owl-item.active .blog-carousel-item {
	opacity: 1;
}

.blog-carousel-item .text-20 {
	margin-bottom: 28px;
	color: #404040;
}
.blog-carousel-item .title-32 {
	color: #000;
}
.blog-carousel-item .text-18 {
	color: #404040;
}

.bhc-link {
	margin-top: 40px;
}

.blog-carousel.owl-carousel .owl-stage-outer {
	overflow: visible;
}

.blog-carousel.owl-carousel .owl-nav button.owl-prev {
	display: none !important;
}

.blog-carousel.owl-carousel .owl-nav button.owl-next, 
.blog-carousel.owl-carousel .owl-nav button.owl-prev {
	position: absolute;
	top: 0;
	bottom: 0;
	height: 100%;
	width: 220px;
	/* opacity: 0; */
	transition: 0.3s;
}
.blog-carousel.owl-carousel .owl-nav button.owl-next:hover, 
.blog-carousel.owl-carousel .owl-nav button.owl-prev:hover {
	opacity: 1;
}
.blog-carousel.owl-carousel .owl-nav button.owl-prev {
	left: calc(100vw * -0.05);
}
.blog-carousel.owl-carousel .owl-nav button.owl-next {
	right: calc(100vw * -0.05);
}

.blog-carousel.owl-carousel .owl-nav button.owl-next span, 
.blog-carousel.owl-carousel .owl-nav button.owl-prev span {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	border: 4px solid #C7C0B9;
	width: 120px;
	height: 120px;
	border-radius: 50%;
}

.blog-carousel.owl-carousel .owl-nav button.owl-next span svg, 
.blog-carousel.owl-carousel .owl-nav button.owl-prev span svg {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}
.blog-carousel.owl-carousel .owl-nav button.owl-prev span {
	right: 0px;
}
.blog-carousel.owl-carousel .owl-nav button.owl-next span {
	left: 0px;
}

footer {
	background: #C7C0B9;
	padding: 77px 0 120px;
}

.link-lg-arrow,
.link-lg-arrow:focus,
.link-lg-arrow:active {
	display: inline-block;
	font-weight: 600;
	font-size: 64px;
	line-height: 0.88;
	letter-spacing: -2px;
	color: #404040;
	padding-right: 80px;
	position: relative;
}
.link-lg-arrow:hover {
	color: #404040;
}

.link-lg-arrow span {
	position: absolute;
	right: 0;
	top: 13px;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	border: 2px solid #464545;
	overflow: hidden;
}

.link-lg-arrow span:before,
.link-lg-arrow span:after {
	content: '';
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background: url(../img/arrow-right-dark-lg.svg) no-repeat center center;
}

.link-lg-arrow span:before {
	transform: translateX(-100%);
    transition: 0.6s cubic-bezier(0.33, 1, 0.68, 1);
}

.link-lg-arrow span:after {
	transform: translateX(0%);
    transition: 0.6s 0.1s cubic-bezier(0.33, 1, 0.68, 1);
}
.link-lg-arrow:hover span:before {
	transform: translateX(0%);
    transition: 0.6s 0.1s cubic-bezier(0.33, 1, 0.68, 1);
}

.link-lg-arrow:hover span:after {
	transform: translateX(100%);
    transition: 0.6s cubic-bezier(0.33, 1, 0.68, 1);
}

.prefooter {
	padding-bottom: 48px;
	margin-bottom: 120px;
	position: relative;
}
.prefooter:after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 0;
	height: 1px;
	background: #404040;
	transition: 0.8s 0.4s cubic-bezier(0.5, 1, 0.89, 1);
}
.prefooter.in-view:after {
	width: 100%;
}

.main-footer {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-moz-box-pack: justify;
	-ms-flex-pack: justify;
	-webkit-justify-content: space-between;
	justify-content: space-between;
	-webkit-box-lines: multiple;
	-moz-box-lines: multiple;
	-ms-flex-wrap: wrap;
	-webkit-flex-wrap:wrap;
	flex-wrap: wrap;
	margin-bottom: 15px;
}

.footer-nav ul li {
	float: left;
	min-width: 200px;
	margin-bottom: 25px;
}
.footer-nav:after {
	content: '';
	display: block;
	clear: both;
}
.footer-nav ul li:nth-child(2n+1) {
	clear: both;
}
.footer-nav ul li a {
	font-weight: 600;
	font-size: 20px;
	line-height: 1.2;
	letter-spacing: -1px;
	color: #000000;
	display: inline-block;
	transition: 0.2s;
}
.footer-nav ul li a:hover {
	color: #797468;
}

.footer-socials {
	margin-bottom: 22px;
}
.footer-socials 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;
}
.footer-socials ul li {
	margin-right: 23px;
	position: relative;
}
.footer-socials ul li:last-child {
	margin-right: 0px;
}
.footer-socials ul li:after {
	content: '';
	position: absolute;
	width: 1px;
	height: 14px;
	right: -12px;
	top: 54%;
	transform: translateY(-50%);
	background: #000;
	opacity: 0.5;
}
.footer-socials ul li:last-child:after {
	display: none;
}
.footer-socials ul li a {
	font-size: 18px;
	line-height: 1.44;
	letter-spacing: -0.5px;
	color: #000;
	transition: 0.2s;
}
.footer-socials ul li a:hover {
	color: #797468;
}

.footer-bottom {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: end;
	-ms-flex-align: end;
	align-items: flex-end;
	-webkit-box-pack: justify;
	-moz-box-pack: justify;
	-ms-flex-pack: justify;
	-webkit-justify-content: space-between;
	justify-content: space-between;
	-webkit-box-lines: multiple;
	-moz-box-lines: multiple;
	-ms-flex-wrap: wrap;
	-webkit-flex-wrap:wrap;
	flex-wrap: wrap;
}

.footer-text {
	font-size: 18px;
	line-height: 1.44;
	letter-spacing: -0.5px;
	color: #797468;
}

.footer-copyrights {
	margin-bottom: 14px;
}

.footer-sec-nav 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;
}
.footer-sec-nav ul li {
	margin-right: 43px;
	position: relative;
}
.footer-sec-nav ul li:last-child {
	margin-right: 0px;
}
.footer-sec-nav ul li:after {
	content: '';
	position: absolute;
	width: 1px;
	height: 14px;
	right: -22px;
	top: 54%;
	transform: translateY(-50%);
	background: #797468;
	opacity: 0.5;
}
.footer-sec-nav ul li:last-child:after {
	display: none;
}
.footer-sec-nav ul li a {
	font-size: 18px;
	line-height: 1.44;
	letter-spacing: -0.5px;
	color: #797468;
	transition: 0.2s;
}
.footer-sec-nav ul li a:hover {
	color: #000;
}

header {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	width: 100%;
	z-index: 500;
	padding: 70px 0 30px;
	-webkit-transform: translateY(50px);
    -moz-transform: translateY(50px);
    transform: translateY(50px);
    opacity: 0;
    transition: transform 0.7s cubic-bezier(0.5, 1, 0.89, 1), opacity 0.7s cubic-bezier(0.5, 1, 0.89, 1);
	/* pointer-events: none; */
}
header.scrolled {
	background: #fff;
	position: fixed;
	padding: 21px 0 21px;
	border-bottom: 1px solid rgba(121,116,104,0.2);
}
header.fade {
	-webkit-transform: translateY(0px);
    -moz-transform: translateY(5px);
    transform: translateY(0px);
    opacity: 1;
}

header.scrolled {
    transition: transform 0.7s;
}
header.scrolling-down {
    transform: translateY(-101%);
    transition: transform 0.7s;
}


.header {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: justify;
	-moz-box-pack: justify;
	-ms-flex-pack: justify;
	-webkit-justify-content: space-between;
	justify-content: space-between;
}

.logo,
.nav-trigger {
	pointer-events: all;
}

.process-fixed-left {
	width: 58%;
}
.process-fixed-right {
	width: 42%;
	padding-top: 30vh;
	padding-bottom: 30vh;
	padding-left: 6%;
	padding-right: 6%;

}

.process-fixed-item {
	margin-bottom: 200px;
	opacity: 0.5;
	transition: 0.3s;
}
.process-fixed-item:last-child {
	margin-bottom: 0px;
}
.process-fixed-item.active {
	opacity: 1;
}

.process-fixed-item .title-48 {
	margin-bottom: 24px;
}

.pfi-link {
	margin-top: 40px;
}

.process-fixed-svg-hold {
	min-height: 100vh;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;

	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	padding-left: 6%;
	padding-right: 7%;
}

.process-fixed-svg {
	width: 100%;
	position: relative;
}

.process-fixed-svg-images {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	border-radius: 50%;
	overflow: hidden;
	width: 83%;
	height: 83%;
}

.process-fixed-svg-images img {
	opacity: 0;
	transition: 0.4s 0.4s;
}
.process-fixed-svg-images img:first-child {
	opacity: 1;
}
.process-fixed-svg-images img.active {
	z-index: 5;
	opacity: 1;
	transition: 0.4s;
}

.progress-circle {
	transition: 0.8s;
}


.process-fixed-svg.step-1 .progress-circle {
	stroke-dashoffset: 1696px;
}
.process-fixed-svg.step-2 .progress-circle {
	stroke-dashoffset: 1131px;
}
.process-fixed-svg.step-3 .progress-circle {
	stroke-dashoffset: 565px;
}
.process-fixed-svg.step-4 .progress-circle {
	stroke-dashoffset: 0px;
}

.process-fixed-svg.step-1 .point-1,
.process-fixed-svg.step-2 .point-2,
.process-fixed-svg.step-3 .point-3,
.process-fixed-svg.step-4 .point-4 {
	transition: 0.3s;
}

.process-fixed-svg.step-1 .point-1 {
	fill: #C7C0B9;
}
.process-fixed-svg.step-2 .point-2 {
	fill: #C7C0B9;
}
.process-fixed-svg.step-3 .point-3 {
	fill: #C7C0B9;
}
.process-fixed-svg.step-4 .point-4 {
	fill: #C7C0B9;
}

.animation-element.fade-in {
    opacity: 0;
    transition: 0.8s 0.1s cubic-bezier(0.5, 1, 0.89, 1);
}
.animation-element.fade-in.in-view {
    opacity: 1;
}
.animation-element.fade-up {
    -webkit-transform: translateY(50px);
    -moz-transform: translateY(50px);
    transform: translateY(50px);
    opacity: 0;
    transition: 0.8s 0.1s cubic-bezier(0.5, 1, 0.89, 1);
}
.animation-element.fade-up.in-view {
    -webkit-transform: translateY(0px);
    -moz-transform: translateY(0px);
    transform: translateY(0px);
    opacity: 1;
}
.animation-element.fade-up-later {
    -webkit-transform: translateY(50px);
    -moz-transform: translateY(50px);
    transform: translateY(50px);
    opacity: 0;
    transition: 0.8s 0.4s cubic-bezier(0.5, 1, 0.89, 1);
}
.animation-element.fade-up-later.in-view {
    -webkit-transform: translateY(0px);
    -moz-transform: translateY(0px);
    transform: translateY(0px);
    opacity: 1;
}

.animation-element.reveal-left,
.animation-element.reveal-right {
	overflow: hidden;
}

.animation-element.reveal-left:after,
.animation-element.reveal-right:after {
	position: absolute;
	content: '';
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	width: 100%;
	height: 100%;
	background-color: #fff;
	-webkit-transform: translateX(0);
	-moz-transform: translateX(0);
	transform: translateX(0);
	transition: 0.8s 0.1s cubic-bezier(0.5, 1, 0.89, 1);
}
.animation-element.reveal-left.in-view:after {
	-webkit-transform: translateX(100%);
	-moz-transform: translateX(100%);
	transform: translateX(100%);
}
.animation-element.reveal-right.in-view:after {
	-webkit-transform: translateX(-100%);
	-moz-transform: translateX(-100%);
	transform: translateX(-100%);
}


.bg-light .animation-element.reveal-left:after, 
.bg-light .animation-element.reveal-right:after {
	background: #F8F8F8;
}

.text-vertical-slider .owl-stage {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
}

.text-item {
	min-height: 100%;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: end;
	-ms-flex-align: end;
	align-items: flex-end;
	-webkit-box-pack: end;
	-moz-box-pack: end;
	-ms-flex-pack: end;
	-webkit-justify-content: flex-end;
	justify-content: flex-end;
	text-align: right;
	padding-bottom: 0.2em;
}

.home-intro-right .owl-item {
	transition: 0.4s;
	transform: translateY(100%);
	position: relative;
}
.home-intro-right .owl-item.active {
	transform: translateY(0%);
}
.home-intro-right .owl-item.owl-animated-out {
	transform: translateY(-100%);
}

.intro-anim span span {
    transform: translateY(105%);
    transition: 800ms cubic-bezier(0.26, 1.00, 0.48, 1.00);
    transition-delay: calc( 200ms * var(--line-index) );
    line-height: 1.25;
    margin-top: -0.2em;
}

.intro-anim.fade span span {
    transform: translateY(0%);
}

.intro-anim span {
    display: inline-block;
    overflow: hidden;
}
.intro-anim span.whitespace {
    width: 0.2em;
}

.intro-anim {
	-webkit-transform: translateY(50px);
    -moz-transform: translateY(50px);
    transform: translateY(50px);
    opacity: 0;
    transition: 0.8s 0.1s cubic-bezier(0.5, 1, 0.89, 1);
}
.intro-anim.fade {
	-webkit-transform: translateY(0px);
    -moz-transform: translateY(5px);
    transform: translateY(0px);
    opacity: 1;
}

.intro-anim-3.fade:before {
	width: 100px;
}

.text-20.intro-anim-3 span {
	-webkit-transform: translateY(40px);
    -moz-transform: translateY(40px);
    transform: translateY(40px);
    opacity: 0;
    transition: 0.6s 0.2s cubic-bezier(0.5, 1, 0.89, 1);
}
.text-20.intro-anim-3.fade span {
	-webkit-transform: translateY(0px);
    -moz-transform: translateY(0px);
    transform: translateY(0px);
    opacity: 1;
}

.about-v2-left .title-80 {
	margin-bottom: 0;
}

.main-footer-left img {
	max-width: 265px;
}

.logo img {
	/* max-width: 141px; */
	height: 35px;
}

.sl-link {
	margin-top: 40px;
}

.pfi-image {
	margin-top: 20px;
	padding-bottom: 68.75%;
}

.process-mob-items .accordion {
    background: transparent;
}
.process-mob-items .accordion-item {
    border-bottom: 1px solid #C7C0B9;
}
.process-mob-items .accordion-title {
    padding: 16px 0;
	padding-right: 60px;
    border: none;
    font-weight: 600;
	font-size: 24px;
	line-height: 30px;
	letter-spacing: -1px;
	color: #FFF;
}

.process-mob-items .accordion-title:focus, 
.process-mob-items .accordion-title:hover {
    background-color: transparent;
}

.process-mob-items .accordion-content {
    padding: 0;
    border: none;
    background-color: transparent;
    color: #FFFFFF;
	padding-bottom: 16px;
}

.process-mob-items .accordion-title::before {
    position: absolute;
    top: auto;
	bottom: 18px;
	right: 0;
    margin-top: 0;
    content: "";
	width: 24px;
	height: 24px;
	border-radius: 50%;
	border: 1px solid #fff;
	background: url(../img/arrow-down-white.svg) no-repeat center center;
}

.process-mob-items .is-active>.accordion-title::before {
    transform: rotate(-90deg);
}


:last-child:not(.is-active)>.accordion-title {
    border-bottom: none;
}
:last-child>.accordion-content:last-child {
    border-bottom: none;
}

.mob-nav-overlay {
	position: fixed;
	top: 0;
	bottom: 0;
	right: 0;
	left: 0;
	z-index: 555;
	background: rgba(0, 0, 0, 0.3);
	opacity: 0;
	visibility: hidden;
	transition: 0.3s;
}
.mob-nav-overlay.close {
	opacity: 1;
	visibility: visible;
}

.mob-nav-hold {
	position: fixed;
	top: 0;
	bottom: 0;
	right: 0;
	z-index: 600;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	transform: translateX(101%);
	transition: 0.4s;
}
.mob-nav-hold.close {
	transform: translateX(0);
}

.mob-trigger {
	position: absolute;
	top: 34px;
	right: calc(100vw * 0.05)
}

.mob-nav-blog-hold {
	background: #C7C0B9;
	width: 375px;
	padding: 56px 68px 56px 56px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: end;
	-ms-flex-align: end;
	align-items: flex-end;
}

.mob-nav-blog-image {
	padding-bottom: 65.2%;
	margin-bottom: 38px;
}

.mob-nav-blog-content a {
	display: block;
}

.mob-nav-blog-title {
	font-weight: 600;
	font-size: 18px;
	line-height: 1.4;
	letter-spacing: -1px;
	color: #404040;
	margin-bottom: 14px;
}

.mob-nav-blog-text {
	font-size: 16px;
	line-height: 1.5;
	letter-spacing: -0.5px;
	color: #404040;
	margin-bottom: 36px;
}

.mob-nav-column {
	background-color: #fff;
	padding: 90px 100px 56px 115px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-flex-direction: column;
	-moz-flex-direction: column;
	-ms-flex-direction: column;
	-o-flex-direction: column;
	flex-direction: column;
	-webkit-box-pack: justify;
	-moz-box-pack: justify;
	-ms-flex-pack: justify;
	-webkit-justify-content: space-between;
	justify-content: space-between;
	overflow: auto;
}

.mob-nav-label {
	font-weight: 600;
	font-size: 18px;
	line-height: 1.4;
	letter-spacing: -1px;
	color: #797468;
	padding-left: 64px;
	position: relative;
	margin-bottom: 24px;
}
.mob-nav-label:before {
	content: '';
    position: absolute;
    left: 0;
    top: 13px;
    width: 40px;
    height: 1px;
    background: #797468;
}

.mob-nav ul li {
	margin-bottom: 16px;
} 
.mob-nav ul li:last-child {
	margin-bottom: 0px;
} 
.mob-nav ul li a {
	display: inline-block;
	font-weight: 600;
	font-size: 40px;
	line-height: 1.1;
	letter-spacing: -1px;
	color: #797468;
	white-space: nowrap;
	transition: 0.2s;
} 
.mob-nav ul li.current a,
.mob-nav ul li.current-menu-item a,
.mob-nav ul li a:hover {
	color: #404040;
} 

.mob-nav {
	margin-bottom: 40px;
}
.mob-nav:last-child {
	margin-bottom: 0px;
}

.mob-nav-socials ul {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
}
.mob-nav-socials ul li {
	margin-right: 33px;
	position: relative;
}
.mob-nav-socials ul li:last-child {
	margin-right: 0px;
}
.mob-nav-socials ul li:after {
	content: '';
	position: absolute;
	top: 54%;
	transform: translateY(-50%);
	right: -17px;
	width: 1px;
	height: 14px;
	background: #404040;
	opacity: 0.5;
}
.mob-nav-socials ul li:last-child:after {
	display: none;
}
.mob-nav-socials ul li a {
	font-size: 16px;
	letter-spacing: -0.5px;
	color: #404040;
	transition: 0.2s;
}
.mob-nav-socials ul li a:hover {
	color: #797468;
}

.mob-nav-column-bottom {
	padding-top: 50px;
}

.mob-nav-column + .mob-nav-column {
	padding-left: 0;
}

.mask {
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
}

.mask-secondary {
  --mask: radial-gradient(
    circle at var(--x, 50%) var(--y, 50%),
    black var(--maskSize1, 0%),
    transparent 0,
    transparent var(--maskSize2, 0%),
    black var(--maskSize2, 0%),
    transparent 0
  );
  position: absolute;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, #40e0d0, #9932cc, #ff1493, orange);
  mask-image: var(--mask);
  -webkit-mask-image: var(--mask);
  /* clip-path: circle(15% at var(--x, 70%) var(--y, 50%)); */
}
.mask-secondary.is-locked {
	touch-action: none;
}

.mask img {
	pointer-events: none;
}


.cursor-pointer {
	position: fixed;
    width: 32px;
    height: 32px;
    background: #C7C0B9;
    border-radius: 50%;
    z-index: 1000;
    pointer-events: none;
    left: -16px;
    top: -16px;
	opacity: 0.6;
	transition: width 0.2s ease-in-out 0.2s, height 0.2s ease-in-out 0.2s, top 0.2s ease-in-out 0.2s, left 0.2s ease-in-out 0.2s;
}
.cursor-pointer.on-link {
	/* width: 60px;
    height: 60px;
	left: -30px;
    top: -30px; */
	/* opacity: 0.2; */
	width: 48px;
    height: 48px;
	left: -24px;
    top: -24px;
}
.cursor-pointer.close {
	opacity: 0;
	visibility: hidden;
	/*transition: width 0.4s, height 0.4s, opacity 0.4s;*/
	width: 400px;
	height: 400px;
	top: -200px;
	left: -200px;
}

.ic-item {
	-webkit-transform: translateY(50px);
    -moz-transform: translateY(50px);
    transform: translateY(50px);
    opacity: 0;
    transition: 0.8s 0.1s cubic-bezier(0.5, 1, 0.89, 1);
}

.images-content-carousel-hold.in-view .ic-item {
	-webkit-transform: translateY(0px);
    -moz-transform: translateY(0px);
    transform: translateY(0px);
    opacity: 1;
}

.images-content-carousel-hold.in-view .owl-item.active .ic-item {
	transition-delay: 0.4s;
}
.images-content-carousel-hold.in-view .owl-item.active + .owl-item .ic-item {
	transition-delay: 0.7s;
}

.images-content-carousel-hold .owl-item.active:last-of-type {
	opacity: 0.3;
}

.blog-carousel-image.size-1 {
	padding-bottom: 100%;
}
.blog-carousel-image.size-2 {
	padding-bottom: 72%;
}
.blog-carousel-image.size-3 {
	padding-bottom: 115%;
}

.title-96 {
	font-weight: 600;
	font-size: 96px;
	line-height: 0.94;
	letter-spacing: -4px;
	margin-bottom: 32px;
}

.title-96 strong {
	font-weight: 600;
	color: #797468;
}

.intro-simple-section {
	padding: 252px 0 0;
}

.intro-about-image {
	margin-top: 64px;
	padding-bottom: 52.63%;
}

.intro-simple-section .title-96 {
	max-width: 1040px;
}
.intro-simple-section .text-24 {
	max-width: 505px;
}
.intro-simple-section .text-16 {
	max-width: 505px;
}

.intro-about-sec-image-hold {
	margin-left: 165px;
	width: 473px;
	margin-top: -60px;
}

.intro-about-sec-image {
	padding-bottom: 58.82%;
}

.about-mission-section {
	padding: 100px 0 0;
	padding: 100px 0 140px;
	position: relative;
	z-index: 5;
}

.about-mission-top {
	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;
	margin-bottom: 116px;
}

.amt-left {
	width: 28%;
}
.amt-right {
	width: 72%;
}
.amt-right .title-80 {
	margin-bottom: 0;
}

.about-mission-bottom {
	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;
}

.amb-left {
	width: 43.5%;
}
.amb-right {
	width: 56.5%;
	padding-left: 9.4%;
	padding-top: 80px;
	padding-right: 7%;
}

.amb-image {
	padding-bottom: 116.67%;
}

.core-values-section {
	/* background: #F8F8F8; */
	padding: 130px 0 48px;
	position: relative;
}
.core-values-section:before {
	content: '';
	position: absolute;
	left: 0;
	right: 0;
	width: 100%;
	bottom: calc(100% - 1px);
	height: 120px;
	background: inherit;
}

.core-values-hold {
	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;
}

.core-values-left {
	width: 50%;
	padding-right: 7%;
}
.core-values-right {
	width: 50%;
	padding-left: 2%;
}

.core-values-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;
	position: relative;
}
.core-values-list ul:before {
	/* content: '';
	position: absolute;
	left: -1px;
	right: -1px;
	width: calc(100% + 2px);
	bottom: 55px;
	height: 3px;
	background: #F8F8F8;
	z-index: 5; */
}

.core-values-list ul li {
	width: 50%;
	padding-right: 8%;
	padding-bottom: 56px;
	margin-bottom: 56px;
	border-bottom: 1px solid #404040;
}
.core-values-list ul li:last-child {
	border-bottom: 1px solid transparent
}
.core-values-list ul li:nth-last-child(2):not(:nth-child(even)) {
	border-bottom: 1px solid transparent
}

.cvl-item-title {
	font-weight: 600;
	font-size: 24px;
	line-height: 1.33;
	letter-spacing: -0.8px;
	color: #000;
}

.cvl-item-text {
	font-size: 16px;
	line-height: 1.5;
	letter-spacing: -0.5px;
}

.cvl-item-icon {
	margin-bottom: 16px;
	height: 80px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;

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

.cvl-item-icon img {
	max-height: 100%;
}

.timeline-section {
	padding: 140px 0 200px;
}

.timeline-top {
	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;
	margin-bottom: 150px;
}

.timeline-top-left {
	width: 28%;
	padding-top: 20px;
}

.timeline-top-right {
	width: 72%;
}

.timeline-top-right .title-80 {
	margin-bottom: 24px
}
.timeline-top-right .text-24 {
	max-width: 548px;
}

.timeline-carousel-item {
	width: 240px;
	min-height: 100%;
	position: relative;
	padding-bottom: 114px;
}

.timeline-carousel-image-hold {
	margin-bottom: 21px;
}

.timeline-carousel-image {
	width: 202px;
	height: 127px;
}

.timeline-carousel-title {
	font-weight: 600;
	font-size: 24px;
	line-height: 1.33;
	letter-spacing: -0.8px;
	color: #000;
	margin-bottom: 12px;
}
.timeline-carousel-text {
	font-size: 16px;
	line-height: 1.5;
	letter-spacing: -0.5px;
}
.timeline-carousel-year {
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	width: 100%;
	font-family: "minerva-modern", sans-serif;
	font-size: 40px;
	line-height: 1;
	color: #797468;
}
.timeline-carousel-year:before {
	content: '';
	position: absolute;
	left: 0;
	right: -106px;
	bottom: 65px;
	width: calc(100% + 106px);
	height: 1px;
	background: #404040;
}
.timeline-carousel-year:after {
	content: '';
	position: absolute;
	left: 0;
	bottom: 57px;
	width: 16px;
	height: 16px;
	border-radius: 50%;
	background: #404040;
}

.timeline-carousel.owl-carousel .owl-stage-outer {
	overflow: visible;
}
.timeline-carousel .owl-stage {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
}

.timeline-carousel.owl-carousel .owl-nav button.owl-next.disabled, 
.timeline-carousel.owl-carousel .owl-nav button.owl-prev.disabled {
	opacity: 0;
	visibility: hidden;
}

.timeline-carousel.owl-carousel .owl-nav button.owl-next, 
.timeline-carousel.owl-carousel .owl-nav button.owl-prev {
	position: absolute;
    top: 70%;
    transform: translateY(-50%);
    border: 4px solid #797468;
    width: 120px;
    height: 120px;
	background: rgba(255, 255, 255, 0.85);
    border-radius: 50%;
}
.timeline-carousel.owl-carousel .owl-nav button.owl-prev {
	left: -194px;
}

.timeline-carousel.owl-carousel .owl-nav button.owl-next {
	right: -194px;
}

.timeline-carousel.owl-carousel .owl-nav button.owl-next svg, 
.timeline-carousel.owl-carousel .owl-nav button.owl-prev svg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.timeline-carousel-hold {
	padding: 0 16%;
}

.stats-section {
	padding: 150px 0 120px;
	background: #797468;
	position: relative;
}
.stats-section:after {
	content: '';
	position: absolute;
	left: 0;
	right: 0;
	top: calc(100% - 1px);
	width: 100%;
	height: 160px;
	background: inherit;
}

.section-dark {
	color: #fff;
}
.section-dark .text-20.has-line:before {
	background: #fff;
}
.section-dark .title-80 strong {
	color: #C7C0B9;
}

.stats-section-top {
	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;
	margin-bottom: 164px;
	-webkit-box-align: end;
	-ms-flex-align: end;
	align-items: flex-end;
}

.sst-left {
	width: 51%
}

.sst-left .title-80 {
	margin-bottom: 0;
}

.sst-right {
	width: 49%;
	padding-left: 11%;
	padding-right: 6%;
}
.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:nth-child(3n+2) {
	transition-delay: 0.15s;
}
.stats-list ul li:nth-child(3n) {
	transition-delay: 0.3s;
}
.stats-list ul li {
	font-weight: 600;
	font-size: 18px;
	line-height: 1.4;
	letter-spacing: -1px;
	width: 32%;
	position: relative;
	padding-left: 9%;
	padding-right: 7%;
	margin-bottom: 66px;
}
.stats-list ul li:after {
	content: '';
	position: absolute;
	right: 0;
	top: 0;
	bottom: -10px;
	height: calc(100% + 10px);
	width: 1px;
	background: rgba(255,255,255,0.4);
}
.stats-list ul li:nth-child(3n) {
	padding-right: 0;
}
.stats-list ul li:nth-child(3n):after {
	display: none;
}
.stats-list ul li:nth-child(3n+2) {
	width: 36%;
}
.stats-list ul li:nth-child(3n+1) {
	padding-left: 0;
}
.stats-list ul li span {
	font-weight: 400;
	font-family: "minerva-modern", sans-serif;
	display: block;
	font-size: 120px;
	line-height: 1;
}

.image-section-hold {
	padding-bottom: 58.437%;
}

.image-section {
	margin-bottom: 100px;
}

.wwd-section {
	padding: 100px 0 163px;
}

.wwd-section .section-top {
	margin-bottom: 148px;
	max-width: 676px;
}

.wwd-list ul {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: baseline;
	-moz-box-align: baseline;
	-ms-flex-align: baseline;
	-webkit-align-items: baseline;
	align-items: baseline;
	-webkit-box-lines: multiple;
	-moz-box-lines: multiple;
	-ms-flex-wrap: wrap;
	-webkit-flex-wrap:wrap;
	flex-wrap: wrap;
	-webkit-box-pack: justify;
	-moz-box-pack: justify;
	-ms-flex-pack: justify;
	-webkit-justify-content: space-between;
	justify-content: space-between;

	/* -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse; */
}
.wwd-list ul li {
	width: 45.17%;
	/* margin-bottom: 123px; */
}

.wwdl-item-image {
	padding-bottom: 114.28%;
	margin-bottom: 40px;
}
.wwd-list ul li:nth-child(4n+3),
.wwd-list ul li:nth-child(4n) {
	margin-top: -105px;
}
.wwd-list ul li:nth-child(4n+2) .wwdl-item-image,
.wwd-list ul li:nth-child(4n+3) .wwdl-item-image {
	padding-bottom: 78.57%;
}
.wwd-list ul li:nth-child(4n+2) {
	-ms-flex-item-align: start;
	-webkit-align-self: flex-start;
	align-self: flex-start;
}

.wwd-list ul li:nth-child(4n):not(:last-child) {
	margin-bottom: 123px;
}

.wwdl-item-title {
	font-weight: 600;
	font-size: 40px;
	line-height: 1.1;
	letter-spacing: -1px;
	color: #000;
	margin-bottom: 24px;
}

.wwdl-item-text {
	font-size: 16px;
	letter-spacing: -0.5px;
	color: #000;
	margin-bottom: 25px;
	max-width: 400px;
}

.leadership-section {
	/* background: #F8F8F8; */
	padding: 177px 0 120px;
}

.leadership-section .title-80 {
	max-width: 920px;
}
.leadership-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;
}
.leadership-list ul li {
	display: none;
	width: calc(33.333% - 40px);
	min-width: calc(33.333% - 40px);
	margin-right: 60px;
	margin-bottom: 60px;
}
.leadership-list ul li:nth-child(3n) {
	margin-right: 0px;
}

.leadership-item-image {
	padding-bottom: 124.5%;
}
.leadership-item-image:after {
	content: '';
	position: absolute;
	left: 0;
	right:0;
	width: 100%;
	bottom: 0;
	height: 39%;
	/* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#000000+0,000000+100&0+0,0.73+100 */
	background: -moz-linear-gradient(top,  rgba(0,0,0,0) 0%, rgba(0,0,0,0.73) 100%); /* FF3.6-15 */
	background: -webkit-linear-gradient(top,  rgba(0,0,0,0) 0%,rgba(0,0,0,0.73) 100%); /* Chrome10-25,Safari5.1-6 */
	background: linear-gradient(to bottom,  rgba(0,0,0,0) 0%,rgba(0,0,0,0.73) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00000000', endColorstr='#ba000000',GradientType=0 ); /* IE6-9 */

}

.leadership-item-content {
	position: absolute;
	color: #fff;
	left: 0;
	right: 0;
	bottom: 24px;
	z-index: 5;
	padding: 0 32px;
}

.leadership-item-title {
	font-weight: 600;
	font-size: 24px;
	line-height: 1.33;
	letter-spacing: -0.8px;
	margin-bottom: 8px;
}

.leadership-item-position {
	font-size: 16px;
	letter-spacing: -0.5px;
}

.leadership-item-hover-content {
	color: #fff;
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	width: 100%;
	height: 100%;
	padding: 56px 32px 40px;
	z-index: 8;
	background: #797468;
	opacity: 0;
	visibility: hidden;
	transition: 0.2s;
}

.leadership-list ul li:hover .leadership-item-hover-content {
	opacity: 1;
	visibility: visible;
}

.leadership-item-text {
	font-size: 16px;
	letter-spacing: -0.5px;
	margin-top: 72px;
}

.leadership-item-position span {
	display: inline-block;
	padding-bottom: 8px;
	padding-right: 10px;
	border-bottom: 1px solid #fff;
}

.leadership-list {
	margin-top: 56px;
	border-top: 1px solid #000;
	padding-top: 40px;
	position: relative;
}
.leadership-list:after {
	content: '';
	position: absolute;
	left: 0;
	right: 0;
	bottom: 20px;
	width: 100%;
	height: 1px;
	background: #000;
}

.leadership-more {
	margin-top: 36px;
}

.intro-reg-top {
	padding-top: 252px;
}

.intro-tti-section {
	padding-bottom: 33px;
}

.intro-tti {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: end;
	-ms-flex-align: end;
	align-items: flex-end;
	-webkit-box-lines: multiple;
	-moz-box-lines: multiple;
	-ms-flex-wrap: wrap;
	-webkit-flex-wrap:wrap;
	flex-wrap: wrap;
	margin-bottom: 90px;
}

.intro-tti-left {
	width: 65%;
}
.intro-tti-right {
	width: 35%;
}

.intro-tti-image {
	padding-bottom: 43.21%;
}

.wwo-section {
	padding: 127px 0 160px;
}

.wwo-hold {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-lines: multiple;
	-moz-box-lines: multiple;
	-ms-flex-wrap: wrap;
	-webkit-flex-wrap:wrap;
	flex-wrap: wrap;
}

.wwo-left {
	width: 54.4%;
}
.wwo-right {
	width: 45.6%;
	padding-left: 8%;
}

.wwo-right .text-16 {
	max-width: 400px;
}

.wwo-stats {
	margin-top: 72px;
	font-size: 16px;
	letter-spacing: -0.5px;
}
.wwo-stats span {
	font-family: "minerva-modern", sans-serif;
	font-size: 180px;
	line-height: 1;
	color: #797468;
	margin-right: 16px;
}

.offices-section {
	/* background: #F8F8F8; */
	padding: 120px 0;
}

.other-locations {
	padding: 160px 0 96px;
}

.other-locations .title-80 {
	margin-bottom: 80px;
}

.other-locations-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;
}

.other-locations-list ul li {
	width: 25%;
	min-width: 25%;
	padding-right: 5%;
	margin-bottom: 64px;
}

.other-locations-list ul li h3 {
	font-weight: 600;
	font-size: 24px;
	line-height: 1.33;
	letter-spacing: -0.8px;
	margin-bottom: 12px;
}

.other-locations-list ul li p {
	font-size: 16px;
	letter-spacing: -0.5px;
	color: rgba(64,64,64,0.7);
	margin-bottom: 12px;
}

.other-locations-list ul li p:last-child {
	margin-bottom: 0px;
}
.other-locations-list ul li a {
	color: rgba(64,64,64,0.7);
}
.other-locations-list ul li a:hover {
	text-decoration: underline;
}

.opportunities-section {
	/* background: #797468; */
	padding: 160px 0 100px;
}
.opportunities-section.opportunities-section-dark {
	background: #797468;
}

.opportunities-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;
}
.opportunities-list ul li {
	width: calc(50% - 28px);
	min-width: calc(50% - 28px);
	margin-right: 56px;
	margin-bottom: 60px;
}
.opportunities-list ul li:nth-child(2n) {
	transition-delay: 0.2s;
}
.opportunities-list ul li a {
	display: block;
}

.opportunities-list ul li a .text-16 {
	max-width: 450px;
	color: #fff;
}

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

.opportunity-image {
 	/* padding-bottom: 90.32%; */
 	padding-bottom: 69.38%;
	margin-bottom: 56px;
}

.opportunity-title {
	font-weight: 600;
	font-size: 40px;
	line-height: 1.1;
	letter-spacing: -1px;
	color: #FFF;
	margin-bottom: 32px;
}

.opportunity-link {
	margin-top: 32px;
}

.cantact-form-section {
	padding: 160px 0;
}

.cf-hold {
	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;
}

.cf-left {
	width: 35%;
}
.cf-right {
	width: 65%;
	padding-left: 6.2%;
	padding-right: 6%;
}

.contact-form {
	max-width: 698px;
}

.contact-form form {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-moz-box-pack: justify;
	-ms-flex-pack: justify;
	-webkit-justify-content: space-between;
	justify-content: space-between;
	-webkit-box-lines: multiple;
	-moz-box-lines: multiple;
	-ms-flex-wrap: wrap;
	-webkit-flex-wrap:wrap;
	flex-wrap: wrap;
}

.form-element {
	width: 100%;
	margin-bottom: 12px;
}

.form-element.form-element-half {
	width: calc(50% - 20px);
}

.form-element input,
.form-element input:focus {
	box-shadow: none;
	border: none;
	margin: 0;
	outline: none;
	border-bottom: 1px solid #404040;
	height: 44px;
	background: transparent;
	padding: 2px 0;
	font-weight: 600;
	font-size: 18px;
	letter-spacing: -1px;
	color: #404040;
}
.form-element select,
.form-element select:focus {
	box-shadow: none;
	border: none;
	margin: 0;
	outline: none;
	border-bottom: 1px solid #404040;
	height: 44px;
	background: transparent url(../img/icon-dropdown.svg) no-repeat right center;
	padding: 2px 0;
	font-weight: 600;
	font-size: 18px;
	letter-spacing: -1px;
	color: rgba(64,64,64,0.5);
}
.form-element select option{
	color: #404040;
}
.form-element textarea,
.form-element textarea:focus {
	box-shadow: none;
	border: 1px solid #404040;
	margin: 0;
	outline: none;
	height: 175px;
	background: transparent;
	padding: 13px 15px;
	font-weight: 600;
	font-size: 18px;
	letter-spacing: -1px;
	color: #404040;
	resize: none;
}


.form-element textarea::-webkit-input-placeholder,
.form-element input::-webkit-input-placeholder {
	color: #404040;
	opacity: 0.5;
}
.form-element textarea::-moz-placeholder,
.form-element input::-moz-placeholder {
	color: #404040;
	opacity: 0.5;
}
.form-element textarea:-ms-input-placeholder,
.form-element input:-ms-input-placeholder {
	color: #404040;
	opacity: 0.5;
}
.form-element textarea:-moz-placeholder,
.form-element input:-moz-placeholder {
	color: #404040;
	opacity: 0.5;
}
.form-element-text-area {
	margin-top: 22px;
}

.form-submit {
	margin-top: 22px;
}

.cf-image {
	min-height: 100%;
}

.intro-tt-section .intro-tti {
	margin-bottom: 0;
}

.intro-tt-section {
	padding-bottom: 115px;
}

.title-40 {
	font-weight: 600;
	font-size: 40px;
	line-height: 1.1;
	letter-spacing: -1px;
	color: #000000;
}

.bhf-content .title-40 {
	margin-bottom: 24px;
}

.featured-blog-section .bhf-image {
    padding-bottom: 60%;
}
.featured-blog-section .bhf-right {
    padding-left: 6%;
    padding-right: 3.5%;
}

.featured-blog-section .blog-home-featured {
    margin-bottom: 0px;
}
.featured-blog-section {
    margin-bottom: 70px;
}

.blog-archive 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;
	margin-left: -12px;
	width: calc(100% + 24px);
}
.blog-archive ul li {
	width: calc(33.333% - 24px);
	min-width: calc(33.333% - 24px);
	margin-left: 12px;
	margin-right: 12px;
	margin-bottom: 100px;
}


.blog-archive .text-20 {
	margin-bottom: 16px;
	color: #404040;
}
.blog-archive .title-32 {
	color: #000;
}
.blog-archive .text-18 {
	color: #404040;
}

.filter-hold {
	border-bottom: 1px solid #000000;
	padding-bottom: 32px;
	margin-bottom: 32px;
	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;
}

.filter-items 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;
}
.filter-items ul li {
	margin-right: 64px;
}
.filter-items ul li:last-child {
	margin-right: 0px;
}
.filter-items ul li a {
	font-weight: 600;
	font-size: 18px;
	letter-spacing: -1px;
	color: #404040;
	opacity: 0.5;
	transition: 0.2s;
}
.filter-items ul li a:hover {
	opacity: 1;
}
.filter-items ul li a.active {
	color: #000;
	opacity: 1;
}

.filter-search {
	margin-left: 64px;
	position: relative;
}
.filter-search input,
.filter-search input:focus {
	height: 25px;
	outline: none;
	border: none;
	box-shadow: none;
	font-size: 18px;
	color: #797468;
	font-weight: 600;
	letter-spacing: -1px;
	width: 200px;
	padding: 2px 0;
	padding-left: 27px;
	margin-bottom: 0;
}
.filter-search button {
	position: absolute;
	top: 0;
	left: 0;
	z-index: 5;
	width: 19px;
	height: 25px;
	background: url(../img/icon-search.svg) no-repeat center center;
	opacity: 0.5;
	transition: 0.2s;
}
.filter-search button:hover {
	opacity: 1;
}

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

.intro-single-section {
	padding: 220px 0 64px;
}

.intro-single-details {
	margin-bottom: 26px;
}
.intro-single-details 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;
}
.intro-single-details ul li {
	font-weight: 600;
	font-size: 18px;
	line-height: 1.4;
	letter-spacing: -1px;
	margin-right: 60px;
}

.intro-single-details ul li:last-child {
	margin-right: 0px;
}

.intro-single-author {
	font-weight: 600;
	font-size: 18px;
	line-height: 1.4;
	letter-spacing: -1px;
}
.intro-single-author a {
	color: #404040;
}
.intro-single-author a:hover {
	color: #404040;
	text-decoration: underline;
}

.intro-single-image {
	margin-top: 46px;
	padding-bottom: 49.34%;
}
.entry:after {
	content: '';
	display: block;
	clear: both;
}

.entry h1:not(:first-child),
.entry h2:not(:first-child),
.entry h3:not(:first-child),
.entry h4:not(:first-child) {
	margin-top: 72px;;
}
.entry h1 {
	font-weight: 600;
	font-size: 96px;
	line-height: 1;
	letter-spacing: -4px;
	color: #000;
	margin-bottom: 48px;
}
.entry h2 {
	font-weight: 600;
	font-size: 72px;
	line-height: 1;
	letter-spacing: -2px;
	color: #000;
	margin-bottom: 48px;
}
.entry h3 {
	font-weight: 600;
	font-size: 56px;
	line-height: 1;
	letter-spacing: -2px;
	color: #000;
	margin-bottom: 48px;
}
.entry h4 {
	font-weight: 600;
	font-size: 40px;
	line-height: 1.1;
	letter-spacing: -1px;
	color: #000;
	margin-bottom: 48px;
}
.entry h5 {
	font-weight: 600;
	font-size: 24px;
	line-height: 1.33;
	letter-spacing: -.8px;
	color: #000;
	margin-bottom: 28px;
}
.entry p {
	font-weight: 400;
	font-size: 16px;
	line-height: 1.5;
	letter-spacing: -0.5px;
	color: #404040;
	margin-bottom: 24px;
}
.entry p.wp-caption-text {
	margin-top: 24px;
	font-size: 14px;
	line-height: 1.75;
	color: #797468;
}
.entry .wp-caption {
	margin-top: 64px;
	margin-bottom: 56px;
}

.entry ul {
	margin-bottom: 56px;
}
.entry ul li {
	font-size: 16px;
	line-height: 1.5;
	letter-spacing: -0.5px;
	margin-bottom: 12px;
}
.entry ul li:before {
	content: '•';
	margin-left: 6px;
	padding-right: 3px;
}
.entry > *:last-child {
	margin-bottom: 0;
}

.single-content-section {
	padding-bottom: 120px;
}

.share-block {
	margin-top: 80px;
}

.share-block-title {
	font-size: 16px;
	letter-spacing: -0.5px;
	color: #000;
	margin-bottom: 17px;
}

.share-block-links ul {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
}
.share-block-links ul li {
	margin-right: 26px;
}
.share-block-links ul li:last-child {
	margin-right: 0px;
}
.share-block-links ul li img {
	max-width: 29px;
	max-height: 29px;
}

.related-section {
	/* background: #F8F8F8; */
	padding: 120px 0;
}

.related-section .title-80 {
	margin-bottom: 56px;
}

.intro-join-button {
	min-width: 100%;
	margin-top: 24px;
	padding-left: 65%;
	margin-bottom: 20px;
}

.btn-dark,
.btn-dark:focus,
.btn-dark:active {
	display: -webkit-inline-box;
	display: -moz-inline-box;
	display: -ms-inline-flexbox;
	display: -webkit-inline-flex;
	display: inline-flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	line-height: 1.5;
	font-size: 20px;
	font-weight: 700;
	letter-spacing: -0.5px;
	outline: none;
	border: none;
	background: #797468;
	color: #fff;
	padding: 11px 25px;
}

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

.has-arrow span {
	display: inline-block;
	width: 22px;
	height: 22px;
	margin-left: 12px;
	border-radius: 50%;
	overflow: hidden;
	position: relative;
}

.btn-dark.has-arrow span {
	background: #fff;
}

.btn-dark.has-arrow span:before,
.btn-dark.has-arrow span:after {
	content: '';
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background: url(../img/arrow-right-brown.svg) no-repeat center center;
}
.btn-dark.has-arrow span:before {
	transform: translateX(-100%);
    transition: 0.6s cubic-bezier(0.33, 1, 0.68, 1);
}
.btn-dark.has-arrow span:after {
	transform: translateX(0%);
    transition: 0.6s 0.1s cubic-bezier(0.33, 1, 0.68, 1);
}

.has-arrow:hover span:before {
	transform: translateX(0%);
    transition: 0.6s 0.1s cubic-bezier(0.33, 1, 0.68, 1);
}
.has-arrow:hover span:after {
	transform: translateX(100%);
    transition: 0.6s cubic-bezier(0.33, 1, 0.68, 1);
}

.paginate 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;
}
.paginate ul li {
	margin-right: 50px;
}

.paginate ul li:last-child {
	margin-right: 0px;
}
.paginate ul li .page-numbers {
	display: block;
	font-weight: 700;
	font-size: 20px;
	line-height: 1.1;
	color: #000;
	opacity: 0.5;
	transition: 0.2s;
}
.paginate ul li .page-numbers:hover {
	opacity: 1;
}
.paginate ul li .page-numbers.current {
	opacity: 1;
}
.paginate ul li .page-numbers.prev,
.paginate ul li .page-numbers.next {
	opacity: 1;
	position: relative;
}
.paginate ul li .page-numbers.prev:hover,
.paginate ul li .page-numbers.next:hover {
	opacity: 0.5;
}
.paginate ul li .page-numbers.prev {
	padding-left: 34px;
}
.paginate ul li .page-numbers.next {
	padding-right: 34px;
}

.paginate ul li .page-numbers.prev:before,
.paginate ul li .page-numbers.next:before {
	content: '';
	position: absolute;
	width: 22px;
	height: 22px;
	border-radius: 50%;
	background: #000;
	top: 0;
}
.paginate ul li .page-numbers.prev:before {
	left: 0;
}
.paginate ul li .page-numbers.next:before {
	right: 0;
}

.paginate ul li .page-numbers.prev:after,
.paginate ul li .page-numbers.next:after {
	content: '';
	position: absolute;
	width: 22px;
	height: 22px;
	border-radius: 50%;
	top: 0;
}
.paginate ul li .page-numbers.prev:after {
	background: url(../img/arrow-right-white.svg) no-repeat center center;
	transform: rotate(180deg);
	left: 0;
}
.paginate ul li .page-numbers.next:after {
	background: url(../img/arrow-right-white.svg) no-repeat center center;
	right: 0;
}

.blog-archive-section {
	padding-bottom: 92px;
}

.paginate {
	margin-top: 20px;
}

.culture-section {
	padding: 90px 0 0;
	position: relative;
}
.culture-section:before {
	content: '';
	position: absolute;
	left: 0;
	right: 0;
	bottom: -1px;
	width: 100%;
	background: #F8F8F8;
	padding-bottom: 25%;
	opacity: 0;
}

.culture-hold {
	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;
}

.culture-left {
	width: 28%;
}
.culture-right {
	width: 72%;
}

.crs-right-image {
	padding-bottom: 66.667%;
}

.culture-right-split {
	margin-top: 60px;
	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;
}

.crs-left {
	width: 50%;
	padding-right: 50px;
}
.crs-left .text-16 {
	max-width: 355px;
}
.crs-right {
	width: 50%;
	padding-left: 7%;
}

.crs-right-image-hold {
	width: 115%;
}

.culture-bottom-image-hold {
	margin-top: 10px;
	max-width: 63%;
	padding-left: 10%;
}

.culture-bottom-image {
	padding-bottom: 65.83%;
}

.company-values-section {
	padding: 160px 0 160px;
	padding: 100px 0 160px;
	/* background: #F8F8F8; */
}

.company-values-hold {
	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;
	-webkit-box-align: end;
	-ms-flex-align: end;
	align-items: flex-end;
}

.company-values-left {
	width: 65%;
	padding-right: 6%;
	padding-left: 5%;
}
.company-values-right {
	width: 35%;
}
.company-values-left #ok span {
	display: inline-block;
	border: 3px solid #fff;
	border-radius: 38px;
	background: rgba(199, 192, 185, 0.7);
	color: #fff;
	padding: 12px 20px;
	min-width: 160px;
	text-align: center;
	font-size: 24px;
	font-style: normal;
	font-weight: 600;
	line-height: 32px;
	letter-spacing: -0.8px;
	position: absolute;
	top: 50%; left: 50%;
	transform: translate(-50%, -50%);
	z-index: 2;
	transition: 0.2s ease-in-out;
}
.company-values-left #ok:hover > span {
	opacity: 0;
	visibility: hidden;
}

.programs-section {
	padding: 160px 0 150px;
}

.tt-hold {
	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;
	-webkit-box-align: end;
	-ms-flex-align: end;
	align-items: flex-end;
	margin-bottom: 64px;
}
.tt-hold .title-80 {
	margin-bottom: 0;
}
.tt-left {
	width: 65%;
	padding-right: 8%;
}
.tt-right {
	width: 35%;
}
.tt-right .text-16 {
	max-width: 390px;
}


.programs-tabs .tabs {
    border: none;
    background: transparent;
	margin-bottom: 46px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	overflow: auto;
}

.programs-tabs .tabs-title {
	padding-right: 32px;
	margin-right: 32px;
	border-right: 1px solid rgba(0,0,0,0.3);
}
.programs-tabs .tabs-title:last-child {
	padding-right: 0px;
	margin-right: 0px;
	border-right: none;
}

.programs-tabs .tabs-title>a {
    padding: 0px;
	font-weight: 600;
	font-size: 24px;
	line-height: 1.33;
	letter-spacing: -0.8px;
	color: #000;
	transition: 0.2s;
	white-space: nowrap;
	opacity: 0.3;
}

.programs-tabs .tabs-title>a:hover {
    background: transparent;
	color: #000;
	opacity: 0.75;
}

.programs-tabs .tabs-title>a:focus, 
.programs-tabs .tabs-title>a[aria-selected=true] {
    background: transparent;
	color: #000;
	opacity: 1;
}

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

.programs-tabs .tabs-content {
    border: none;
    background: transparent;
    color: #404040;

}

.program-item {
	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;
}

.program-image-hold {
	width: 48%;
}

.program-content-hold {
	width: 52%;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	padding-left: 8%;
}

.program-content .title-40 {
	margin-bottom: 32px;
}

.program-link {
	margin-top: 32px;
}

.program-image {
	padding-bottom: 87.912%;
	min-height: 100%;
}

.program-content {
	max-width: 454px;
}

.opportunities-section.opportunities-section-v2 {
	background: #C7C0B9;
}

.opportunities-section-v2 .opportunity-title {
	color: #404040;
}
.opportunities-section-v2 .opportunities-list ul li a .text-16 {
    color: #404040;
}

.testimonials-section {
	/* background: #797468; */
	padding: 120px 0 130px;
}

.testimonials-section .section-top {
	max-width: 750px;
	margin-bottom: 100px;
}

.tc-item {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	padding-right: 58px;
	width: 800px;
	border-right: 1px solid rgba(255,255,255,.3);
	transition: .2s;
}

.owl-item:last-child .tc-item {
	border-right: none;
}

.tc-item-left {
	width: 200px;
}

.tc-item-right {
	padding-top: 20px;
	padding-bottom: 20px;
	width: calc(100% - 200px);
}

.tc-item-image {
	width: 126px;
	height: 126px;
}
.tc-item-image img {
	border-radius: 50%;
}

.tc-item-text {
	font-weight: 600;
	font-size: 24px;
	line-height: 1.33;
	letter-spacing: -0.8px;
	position: relative;
	margin-bottom: 27px;
}
.tc-item-text:before {
	position: absolute;
	top: -56px;
	left: 0;
	content: '“';
	font-size: 88px;
	line-height: 1;
	letter-spacing: -2px;
	opacity: 0.7;
	pointer-events: none;
}

.testimonials-carousel.owl-carousel .owl-stage-outer {
	overflow: visible;
}

.tc-item-details {
	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;
}

.tc-item-author {
	font-weight: 600;
	font-size: 18px;
	line-height: 1.4;
	letter-spacing: -1px;
	opacity: 0.7;
	width: 55%;
}

.tc-item-video {
	width: 45%;
	padding-left: 30px;
}

.link-play,
.link-play:focus,
.link-play:active {
	display: inline-block;
	font-weight: 700;
	font-size: 16px;
	line-height: 18px;
	letter-spacing: -0.5px;
	color: #fff;
	padding-right: 28px;
	position: relative;
	transition: 0.2s;
}
.link-play:hover {
	color: #fff;
	opacity: 0.7;
}
.link-play:before {
	content: '';
	position: absolute;
	top: 1px;
	right: 0;
	width: 16px;
	height: 16px;
	border-radius: 50%;
	background-color: #fff;
}
.link-play:after {
	content: '';
	position: absolute;
	top: 6px;
	right: 5px;
	border-radius: 50%;
	border-left: 4px solid #797468;
	border-top: 3px solid transparent;
	border-bottom: 3px solid transparent;
}

.js-bg-light .link-play,
.js-bg-light .link-play:focus,
.js-bg-light .link-play:active {
	color: #404040;
}
.js-bg-light .link-play:before {
    background-color:#404040;
}
.js-bg-light .link-play:after {
    border-left: 4px solid #fff;
    border-top: 3px solid transparent;
    border-bottom: 3px solid transparent;
}
.js-bg-light .tc-item-image.has-video:after {
    background: #797468 url(../img/icon-play-white.svg) no-repeat center center / 100% 100%;
}

.testimonials-carousel .owl-item .tc-item {
	opacity: 0.3;
}
.testimonials-carousel .owl-item.active .tc-item {
	opacity: 1;
}
.testimonials-carousel .owl-item.active + .owl-item.active .tc-item {
	opacity: 0.3;
}

.tc-item.no-image .tc-item-right {
	width: 100%;
}

.tc-item-image.has-video:after {
	position: absolute;
	content: '';
	right: 0;
	bottom: 0;
	width: 31px;
	height: 31px;
	border-radius: 50%;
	background: #fff url(../img/icon-play.svg) no-repeat center center / 100% 100%;
}



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

.testimonials-carousel.owl-carousel .owl-nav.disabled {
	display: block;
}

.testimonials-carousel.owl-carousel .owl-nav button.owl-next, 
.testimonials-carousel.owl-carousel .owl-nav button.owl-prev {
	position: absolute;
	width: 120px;
	height: 120px;
	border-radius: 50%;
	border: 4px solid #FFF;
	top: 40%;
	transform: translateY(-50%);
}
.testimonials-carousel.owl-carousel .owl-nav button.owl-next svg, 
.testimonials-carousel.owl-carousel .owl-nav button.owl-prev svg {
	position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.testimonials-carousel.owl-carousel .owl-nav button.owl-next.disabled, 
.testimonials-carousel.owl-carousel .owl-nav button.owl-prev.disabled {
	display: none;
}

.testimonials-carousel.owl-carousel .owl-nav button.owl-prev {
	left: -170px;
}

.testimonials-carousel.owl-carousel .owl-nav button.owl-next {
	right: -170px;
}

.open-positions-section {
	padding: 160px 0;
	/* background: #F8F8F8; */
}

.open-positions-section .section-top {
	max-width: 800px;
	margin-bottom: 72px;
}
.open-positions-section .section-top .text-20 {
	margin-bottom: 32px;
}
.open-positions-section .section-top .title-80 {
	margin-bottom: 32px;
}

.open-positions-block {
	margin-bottom: 84px;
}
.open-positions-block:last-child {
	margin-bottom: 0px;
}
.open-positions-block .title-40 {
	color: #797468;
	margin-bottom: 24px;
}

.opb-item a {
	width: 100%;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-lines: multiple;
	-moz-box-lines: multiple;
	-ms-flex-wrap: wrap;
	-webkit-flex-wrap:wrap;
	flex-wrap: wrap;
	position: relative;
	padding: 20px 50px 20px 0;
	border-bottom: 1px solid rgba(64,64,64,0.5);
}
.opb-item:first-child a {
	border-top: 1px solid rgba(64,64,64,0.5);
}

.opb-item-title {
	width: 68%;
	font-weight: 600;
	font-size: 24px;
	line-height: 1.33;
	letter-spacing: -0.8px;
	color: #404040;
	padding-right: 30px;
}

.opb-item-location {
	width: 32%;
	font-size: 16px;
	letter-spacing: -0.5px;
	color: #797468;
}

.opb-item a span {
	position: absolute;
    width: 24px;
    height: 24px;
    top: 50%;
	transform: translateY(-50%);
    right: 0;
    border-radius: 50%;
	background: #404040;
    overflow: hidden;
}
.opb-item a span:before,
.opb-item a span:after {
	content: '';
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background: url(../img/arrow-right-white.svg) no-repeat center center;
}
.opb-item a span:before {
	transform: translateX(-100%);
    transition: 0.6s cubic-bezier(0.33, 1, 0.68, 1);
}
.opb-item a span:after {
	transform: translateX(0%);
    transition: 0.6s 0.1s cubic-bezier(0.33, 1, 0.68, 1);
}
.opb-item a:hover span:before {
	transform: translateX(0%);
    transition: 0.6s 0.1s cubic-bezier(0.33, 1, 0.68, 1);
}
.opb-item a:hover span:after {
	transform: translateX(100%);
    transition: 0.6s cubic-bezier(0.33, 1, 0.68, 1);
}


.intro-environmental-section .intro-about-image {
	margin-top: 90px;
}

.mission-section {
	padding: 160px 0;
}

.mission-section .section-top {
	margin-bottom: 100px;
	max-width: 1060px;
}

.mission-hold {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-lines: multiple;
	-moz-box-lines: multiple;
	-ms-flex-wrap: wrap;
	-webkit-flex-wrap:wrap;
	flex-wrap: wrap;
}

.mission-left {
	width: 42%;
    padding-right: 5%;
}

.mission-right {
	width: 58%;
}

.mission-image {
	padding-bottom: 73.14%;
}

.mission-image-hold {
	width: 110%;
}

.wwd-section.projects-section {
	/* background: #F8F8F8; */
	padding-top: 160px;
}

.projects-section .tt-hold {
	margin-bottom: 120px;
}


.projects-section .tt-hold .text-24 {
	max-width: 405px;
}

.goals-section {
	/* background: #797468; */
	padding: 160px 0 0;
}

.goals-hold {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: end;
	-ms-flex-align: end;
	align-items: flex-end;
	-webkit-box-lines: multiple;
	-moz-box-lines: multiple;
	-ms-flex-wrap: wrap;
	-webkit-flex-wrap:wrap;
	flex-wrap: wrap;
	margin-bottom: 100px;
}

.goals-left {
	width: 50%;
}
.goals-right {
	width: 50%;
	padding-left: 9.6%;
}

.goals-image {
	padding-bottom: 43.28%;
}

.goals-list ul li {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: baseline;
	-moz-box-align: baseline;
	-ms-flex-align: baseline;
	-webkit-align-items: baseline;
	align-items: baseline;
	-webkit-box-pack: justify;
	-moz-box-pack: justify;
	-ms-flex-pack: justify;
	-webkit-justify-content: space-between;
	justify-content: space-between;
	-webkit-box-lines: multiple;
	-moz-box-lines: multiple;
	-ms-flex-wrap: wrap;
	-webkit-flex-wrap:wrap;
	flex-wrap: wrap;
	font-size: 18px;
	line-height: 1.4;
	letter-spacing: -1px;
	border-bottom: 1px solid rgba(255,255,255,.4);
	padding-bottom: 15px;
	margin-bottom: 50px;
}
.goals-list ul li:last-child {
	margin-bottom: 0px;
}
.goals-list ul li span {
	font-family: "minerva-modern", sans-serif;
	font-size: 120px;
	line-height: 1;
	font-weight: 400;
	margin-right: 20px;
}

.projects-section .wwdl-item-text:last-child {
	margin-bottom: 0;
}

.oc-item {
	padding-bottom: 59.18%;
}

.overview-section {
	padding: 125px 0 160px;
}
.overview-section .section-top {
	margin-bottom: 80px;
	max-width: 80%;
}
.overview-section .section-top .text-24 {
	max-width: 775px;
}

.intro-simple-link {
	margin-top: -24px;
	margin-bottom: 96px;
}

.overview-carousel-hold {
	width: calc(100% + 100vw * 0.05);
}

.overview-quote-hold {
	margin-top: 55px;
	max-width: 800px;
}

.overview-quote-text {
	font-weight: 600;
	font-size: 24px;
	line-height: 1.33;
	letter-spacing: -0.8px;
	position: relative;
	padding-top: 40px;
}
.overview-quote-text:before {
	content: '“';
	position: absolute;
	top: 0;
	left: 0;
	opacity: 0.7;
	font-weight: 600;
	font-size: 88px;
	line-height: 0.64;
	letter-spacing: -2px;
}

.overview-quote-author {
	font-weight: 600;
	font-size: 18px;
	line-height: 1.4;
	letter-spacing: -1px;
	opacity: 0.7;
	margin-top: 23px;
}

.differentiators-section {
	padding: 160px 0;
	/* background: #F8F8F8; */
}

.differentiators-section .tt-hold {
	margin-bottom: 120px;
}

.diff-carousel-hold {
    width: calc(100% - 360px);
}

.owl-item.active .diff-carousel-item {
    opacity: 1;
}

.diff-carousel-item {
    width: 360px;
    position: relative;
    opacity: 0.3;
    transition: 0.3s;
}
.diff-carousel-item:before {
    content: '';
	position: absolute;
	right: -60px;
	bottom: 6px;
	top: 60px;
	height: calc(100% - 66px);
	width: 1px;
	background: #404040;

}

.diff-carousel.owl-carousel .owl-stage-outer {
    overflow: visible;
}

.diff-carousel-icon {
	height: 80px;
	margin-bottom: 44px;
	margin-bottom: 16px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;

	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}
.diff-carousel-icon img {
	max-height: 100%;
	max-width: 82px;
}

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

.diff-carousel-title {
	font-weight: 600;
	font-size: 24px;
	line-height: 1.33;
	letter-spacing: -0.8px;
	color: #000000;
	margin-bottom: 15px;
}
.diff-carousel-text {
	font-size: 16px;
	letter-spacing: -0.5px;
}

.diff-carousel.owl-carousel .owl-nav button.owl-next.disabled, 
.diff-carousel.owl-carousel .owl-nav button.owl-prev.disabled {
    opacity: 0;
	visibility: hidden;
}
.diff-carousel.owl-carousel .owl-nav button.owl-next, 
.diff-carousel.owl-carousel .owl-nav button.owl-prev {
    position: absolute;
    top: 60%;
    transform: translateY(-50%);
    border: 4px solid #797468;
    width: 120px;
    height: 120px;
    border-radius: 50%;
}
.diff-carousel.owl-carousel .owl-nav button.owl-prev {
	left: 0;
}
.diff-carousel.owl-carousel .owl-nav button.owl-next {
    right: -360px
}

.diff-carousel.owl-carousel .owl-nav button.owl-prev {
	/* display: none !important; */
}

.awards-section {
	padding: 160px 0 160px;
}
.awards-section .section-top {
	margin-bottom: 80px;
	max-width: 80%;
}


.awards-section .blog-carousel.owl-carousel .owl-nav button.owl-next span, 
.awards-section .blog-carousel.owl-carousel .owl-nav button.owl-prev span {
	border: 4px solid #797468;
	top: 70%;
}

.awards-section .blog-carousel.owl-carousel .owl-nav button.owl-next span svg path, 
.awards-section .blog-carousel.owl-carousel .owl-nav button.owl-prev span svg path {
	stroke: #797468;
}

.awards-section .title-32 {
	padding-right: 54px;
}
.awards-section .text-18 {
	padding-right: 54px;
}

.contact-section {
	padding: 160px 0;
	background: #F8F8F8;
}

.contact-section-link {
	margin-top: 36px;
}

.contact-section-image {
	padding-bottom: 50.62%;
}

.contact-section .tt-hold {
	margin-bottom: 100px;
}

.goals-section .goals-hold .text-24 {
	max-width: 540px;
}

.diff-carousel.owl-carousel .owl-nav button.owl-next svg, 
.diff-carousel.owl-carousel .owl-nav button.owl-prev svg {
	position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.collage-carousel-item {
	width: 540px;
}

.collage-img-1 {
	padding-bottom: 88.889%;
	margin-bottom: 32px;
}
.collage-img-2 {
	padding-bottom: 59.26%;
	margin-bottom: 32px;
}

.collage-img:last-child {
	margin-bottom: 0;
}

.collage-img-content {
	position: absolute;
	bottom: 8px;
	left: 0;
	right: 0;
	padding: 0 24px;
	z-index: 5;
	opacity: 0;
	transition: 0.2s;
}

.collage-img-location {
	font-size: 16px;
	letter-spacing: -0.5px;
	color: #FFF;
	margin-bottom: 8px;
	position: relative;
	padding-left: 31px;
	background: url(../img/icon-loc.svg) no-repeat top 2px left;
}

.collage-img-desc {
	font-size: 16px;
	letter-spacing: -0.5px;
	color: #FFF;
}

.collage-carousel-hold {
	margin-top: 120px;
}

.collage-img:after {
	content: '';
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	width: 100%;
	height: 140px;
	/* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#797468+0,797468+99&0+0,1+100 */
	background: -moz-linear-gradient(top,  rgba(121,116,104,0) 0%, rgba(121,116,104,0.99) 99%, rgba(121,116,104,1) 100%); /* FF3.6-15 */
	background: -webkit-linear-gradient(top,  rgba(121,116,104,0) 0%,rgba(121,116,104,0.99) 99%,rgba(121,116,104,1) 100%); /* Chrome10-25,Safari5.1-6 */
	background: linear-gradient(to bottom,  rgba(121,116,104,0) 0%,rgba(121,116,104,0.99) 99%,rgba(121,116,104,1) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00797468', endColorstr='#797468',GradientType=0 ); /* IE6-9 */
	z-index: 2;
	mix-blend-mode: multiply;
	opacity: 0;
	transition: 0.2s;
}

.collage-img:hover .collage-img-content {
	opacity: 1;
}

.collage-img:hover:after {
	opacity: 1;
}

.community-overview-section {
	padding: 225px 0 160px;
	position: relative;
}
.community-overview-section .section-top {
	max-width: 66%;
	margin-bottom: 120px;
}

.community-overview-hold {
	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;
}

.community-overview-left {
	width: 48%;
}
.community-overview-right {
	width: 52%;
	padding-left: 8%;
	padding-right: 6%;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}
.community-overview-right .text-24 {
	max-width: 440px;
}

.community-overview-image {
	min-height: 100%;
	padding-bottom: 106.25%;
}

.support-section {
	/* background: #797468; */
	padding: 160px 0 90px;
}

.support-section .tt-hold {
	margin-bottom: 120px;
}

.support-logos-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;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	margin-left: -30px;
	width: calc(100% + 60px)
}

.support-logos-list ul li {
	width: 20%;
	min-width: 20%;
	text-align: center;
	margin-bottom: 76px;
}
.support-logos-list ul li img {
	max-height: 66px;
	max-width: 80%;
}

.wwd2-section {
	padding: 160px 0 40px;
}

.success-stories-section {
	padding: 160px 0;
}

.success-stories-section .section-top {
	max-width: 80%;
	margin-bottom: 70px;
}

.ss-carousel-item {
	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;
}

.ssci-left {
	width: 48%;
	padding-right: 5%;
}
.ssci-right {
	width: 52%;
	padding-left: 4%;
	padding-right: 6%;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}

.ssci-image {
	min-height: 100%;
	padding-bottom: 125%;
}

.ssci-content {
	max-width: 440px;
}

.ssci-content .title-40 {
	color: #404040;
	margin-bottom: 32px;
}

.ssci-link {
	margin-top: 32px;
}

.ss-carousel.owl-carousel .owl-nav button.owl-next.disabled, 
.ss-carousel.owl-carousel .owl-nav button.owl-prev.disabled {
	opacity: 0;
	visibility: hidden;
}
.ss-carousel.owl-carousel .owl-nav button.owl-next, 
.ss-carousel.owl-carousel .owl-nav button.owl-prev {
    position: absolute;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    border: 4px solid #C7C0B9;
    top: 60%;
    transform: translateY(-50%);
}
.ss-carousel.owl-carousel .owl-nav button.owl-prev {
    left: -18px;
}
.ss-carousel.owl-carousel .owl-nav button.owl-next {
    right: -23px;
}
.ss-carousel.owl-carousel .owl-nav button.owl-next svg, 
.ss-carousel.owl-carousel .owl-nav button.owl-prev svg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.ss-carousel.owl-carousel .owl-stage-outer {
	overflow: visible;
}

.ss-carousel-hold {
	/* width: calc(100% - 76px); */
}

.ssci-image a {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	width: 100%;
	height: 100%;
	z-index: 2;
}
.ssci-image a:after {
	content: '';
	position: absolute;
	width: 80px;
	height: 80px;
	right: 45px;
	bottom: 50px;
	border-radius: 50%;
	background: rgba(255,255,255,0.8) url(../img/icon-play-dark.svg) no-repeat 55% 50%;
}

.image-dot {
	position: absolute;
	transform: translate(-50%,-50%);
	width: 28px;
	height: 28px;
	z-index: 5;
	border-radius: 50%;
	background: rgba(255,255,255,.5);
	transition: 0.2s;
}
.image-dot:hover {
	background: rgba(255,255,255,.8);
}
.image-dot:before {
	content: '';
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	width: 48px;
	height: 48px;
	opacity: 0.5;
	border-radius: 50%;
	border: 2px solid #fff;
	transition: 0.2s;
}
.image-dot:hover:before {
	opacity: 0.8;
}
.image-dot span {
	position: absolute;
	/* width: 270px; */
	font-weight: 600;
	font-size: 24px;
	line-height: 1.33;
	letter-spacing: -0.8px;
	color: #FFF;
	opacity: 0;
	visibility: hidden;
	transition: 0.2s;
}
.image-dot:hover span {
	opacity: 1;
	visibility: visible;
}
/* .image-dot span:before {
	content: '';
	position: absolute;
	width: 82px;
	height: 38px;
	background: url(../img/line-image-dot.svg) no-repeat center center / 100% 100%;
	top: 19px;
	right: calc(100% + 18px);
} */
.image-dot-line-1 span {
	width: 170px;
	left: calc(100% + 84px); 
	top: 44px;
}

.image-dot-line-1 span:before {
	content: '';
	position: absolute;
	width: 67px;
	height: 20px;
	background: url(../img/line-image-dot-1.svg) no-repeat center center / 100% 100%;
	top: 1px;
    right: calc(100% + 21px);
}

.image-dot-line-2 span {
	width: 240px;
	left: calc(100% + 70px);
    top: -55px;
}

.image-dot-line-2 span:before {
	content: '';
	position: absolute;
	width: 67px;
	height: 20px;
	background: url(../img/line-image-dot-2.svg) no-repeat center center / 100% 100%;
	top: 14px;
    right: calc(100% + 14px);
}
.image-dot-line-3 span {
	width: 240px;
	left: calc(100% + 92px);
    top: -50px;
}

.image-dot-line-3 span:before {
	content: '';
	position: absolute;
	width: 93px;
	height: 20px;
	background: url(../img/line-image-dot-3.svg) no-repeat center center / 100% 100%;
	top: 14px;
    right: calc(100% + 14px);
}

.image-dot-line-4 span {
	width: 230px;
	right: calc(100% + 63px);
    top: -84px;
}

.image-dot-line-4 span:before {
	content: '';
	position: absolute;
	width: 67px;
	height: 20px;
	background: url(../img/line-image-dot-4.svg) no-repeat center center / 100% 100%;
	top: 46px;
    left: calc(100% + 8px);
}

.image-dot-line-5 span {
	width: 270px;
	left: calc(100% + 52px);
    top: -105px;
}

.image-dot-line-5 span:before {
	content: '';
	position: absolute;
	width: 56px;
	height: 72px;
	background: url(../img/line-image-dot-5.svg) no-repeat center center / 100% 100%;
	top: 16px;
    right: calc(100% + 11px);
}

.tt-right .text-24 {
    max-width: 420px;
}

.programs-v2-section {
	background: #F8F8F8;
	padding: 160px 0;
}
.programs-v2-section .tt-hold {
	margin-bottom: 56px;
}

.programs-v2-image {
	padding-bottom: 43.28%;
	margin-bottom: 40px;
}

.programs-v2-bottom {
	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;
}

.programs-v2-bottom-title {
	font-weight: 600;
	font-size: 24px;
	line-height: 1.33;
	letter-spacing: -0.8px;
	margin-bottom: 15px;
}

.programs-v2-bottom-culumn-1 {
	width: 42%;
	padding-right: 6%;
	margin-bottom: 30px;
}

.programs-v2-bottom-culumn-2 {
	width: 28%;
	padding-right: 4%;
}
.programs-v2-bottom-culumn-3 {
	width: 30%;
	padding-left: 4%;
}

.programs-v2-link {
	margin-top: -12px;
}

.wwd2-section .section-top {
	max-width: 50%;
	margin-bottom: 120px;
}
.wwd2-section .section-top .text-24 {
	max-width: 635px;
}

.wwd-list-image {
	padding-bottom: 72%;
	margin-bottom: 24px;
}

.wwd2-list ul li .title-40 {
	margin-bottom: 24px;
}
.wwd2-list ul li .text-16 {
	max-width: 400px;
}

.wwd2-list ul {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	
	-webkit-box-pack: justify;
	-moz-box-pack: justify;
	-ms-flex-pack: justify;
	-webkit-justify-content: space-between;
	justify-content: space-between;
	-webkit-box-lines: multiple;
	-moz-box-lines: multiple;
	-ms-flex-wrap: wrap;
	-webkit-flex-wrap:wrap;
	flex-wrap: wrap;
}
.wwd2-list ul li {
	width: 36%;
	min-width: 36%;
	margin-bottom: 120px;
}
.wwd2-list ul li:nth-child(1) {
	margin-left: 12%;
}
.wwd2-list ul li:nth-child(1) .wwd-list-image {
	padding-bottom: 112.26%;
}
.wwd2-list ul li:nth-child(2) {
	margin-top: -300px;
}
.wwd2-list ul li:nth-child(4) {
	margin-top: -400px;
}
.wwd2-list ul li:nth-child(4) .wwd-list-image {
	padding-bottom: 112.26%;
}
.wwd2-list ul li:nth-child(5) {
	margin-left: 24%;
}

.owl-item:nth-child(even) .collage-carousel-item {
	padding-top: 48px;
}

.orn-rotate {
	position: absolute;
	top: 60px;
	left: 100%;
	transform: translate(-50%, 0);
	width: 700px;
}

#ok {
	/* height: 100%; */
	/* background: wheat; */
	position: relative;
	/* padding-bottom: 100%; */
	padding-bottom: 87.5%;
}

#ok canvas {
	position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100% !important;
    height: 100% !important;
	/* background: transparent !important; */

} 

.home-intro-section .text-20 {
	font-size: 24px;
	line-height: 1.5;
}
.home-intro-section .text-20.has-line:before {
    top: 17px;
}

.js-bg-light .testimonials-carousel.owl-carousel .owl-nav button.owl-next, 
.js-bg-light .testimonials-carousel.owl-carousel .owl-nav button.owl-prev {
	background: rgba(255, 255, 255, 0.75);
	border: 4px solid #797468;
}
.js-bg-light .testimonials-carousel.owl-carousel .owl-nav button.owl-next svg path, 
.js-bg-light .testimonials-carousel.owl-carousel .owl-nav button.owl-prev svg path {
	stroke: #797468;
}

.js-bg-dark .stats-section {
	background: transparent;
}

.js-bg-dark .diff-carousel.owl-carousel .owl-nav button.owl-next, 
.js-bg-dark .diff-carousel.owl-carousel .owl-nav button.owl-prev {
	border: 4px solid #fff;
	background:rgba(121,116,104,0.75)
}
.js-bg-dark .diff-carousel.owl-carousel .owl-nav button.owl-next svg path, 
.js-bg-dark .diff-carousel.owl-carousel .owl-nav button.owl-prev svg path {
	stroke: #fff;
}

.js-bg-dark .diff-carousel-title {
	color: #fff;
}
.js-bg-dark .diff-carousel-item:before {
    background: #fff;
}

.contact-section.white {
	background: transparent;
}

.js-bg-light .business-carousel.owl-carousel .owl-nav button.owl-next span, 
.js-bg-light .business-carousel.owl-carousel .owl-nav button.owl-prev span {
	background: rgba(248,248,248,0.75);
}

.js-bg-dark .testimonials-carousel.owl-carousel .owl-nav button.owl-next, 
.js-bg-dark .testimonials-carousel.owl-carousel .owl-nav button.owl-prev {
	background:rgba(121,116,104,0.75)
}

.blog-carousel2.owl-carousel .owl-nav button.owl-next svg, 
.blog-carousel2.owl-carousel .owl-nav button.owl-prev svg {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}
.blog-carousel2.owl-carousel .owl-nav button.owl-next, 
.blog-carousel2.owl-carousel .owl-nav button.owl-prev {
	position: absolute;
	width: 120px;
	height: 120px;
	border-radius: 50%;
	background: rgba(248, 248, 248, 0.75);
	border: 4px solid #797468;
	top: 40%;
	transform: translateY(-50%);
}

.blog-carousel2.owl-carousel .owl-nav button.owl-prev {
	left: 0;
}
.blog-carousel2.owl-carousel .owl-nav button.owl-next {
	right: 0;
}

.programs-section .process-mob-items .accordion-title {
	color: #404040;
}
.programs-section .process-mob-items .accordion-content {
    color: #404040;
}
.programs-section .process-mob-items .accordion-title::before {
    border: 1px solid #404040;
    background: url(../img/arrow-down-dark.svg) no-repeat center center;
}

.offices-svg svg {
	width: 100% !important;
	height: auto !important;
}

.offices-svg {

	position: relative;
	width: 100%;
	min-height: 100vh;
	background-color: rgba(199,192,185,0.2);
	overflow: hidden;
	position: relative;
}

.offices-svg-hold {
	position: absolute;
	left: 0;
	right: 0;
	width: 100%;
	top: 50%;
	transform: translateY(-50%);
	padding-bottom: 64.286%;
	/* background-image: url(../img/offices-map.svg);
	background-repeat: no-repeat;
	background-size: cover;
	background-position: 50% 50%;
	transform-origin: top right; */
	transition: .6s linear;
}
.offices-svg-hold svg {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	width: 100%;
	height: 100%;
}


.offices-item {
	min-height: 100vh;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;

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

	padding-top: 50px;
}

.offices-left .sticky {
	min-height: 100vh;
}

.title-56 {
	font-size: 56px;
	line-height: 1;
	letter-spacing: -2px;
}

.offices-left {
	width: calc(41.5% - 1px);
	padding-right: 70px;
	/* height: 100vh; */
	min-height: 10px;
}
.offices-right {
	width: 58.5%;
}

.offices-sticky-items {
	width: 1px;
	position: relative;
}

.offices-sticky-item {
	min-height: 100vh;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding-top: 50px;
	position: absolute;
	top: 0;
	left: 0;
	opacity: 0;
	visibility: hidden;
	transition: 0.3s;
}

.offices-item-content {
	/* opacity: 0; */
}

.offices-sticky-item .title-56 {
    margin-bottom: 24px;
}


.offices-item .title-56 {
	margin-bottom: 24px;
}

.office-item-detail {
	margin-top: 64px;
	padding-top: 64px;
	border-top: 1px solid #404040;
	max-width: 312px;
}

.office-item-detail p {
	font-size: 24px;
	line-height: 1.5;
	letter-spacing: -1px;
	color: #404040;
	opacity: 0.7;
	margin-bottom: 16px;
}

.office-item-detail p:last-child {
	margin-bottom: 0;
}

.office-item-detail p a {
	color: #404040;
}

.office-item-detail p a:hover {
	color: #404040;
	text-decoration: underline;
}

.offices-svg.office-1-reached .offices-svg-hold {
	transform: translate(95%, -42%) scale(2.2);
}
.offices-svg.office-1-reached.office-2-reached .offices-svg-hold {
	transform: translate(86%, -45%) scale(2.2);
}
.offices-svg.office-1-reached.office-2-reached.office-3-reached .offices-svg-hold {
	transform: translate(15%, -108%) scale(2.2);
}
.offices-svg.office-1-reached.office-2-reached.office-3-reached.office-4-reached .offices-svg-hold {
	transform: translate(-42%, -30%) scale(2.2);
}



.offices-left.office-1-reached .offices-sticky-item-1 {
	opacity: 1;
	visibility: visible;
	transition: 0.3s .3s;
}
.offices-left.office-1-reached.office-2-reached .offices-sticky-item-1 {
	opacity: 0;
	visibility: hidden;
	transition: 0.3s;
}
.offices-left.office-1-reached.office-2-reached .offices-sticky-item-2 {
	opacity: 1;
	visibility: visible;
	transition: 0.3s .3s;
}
.offices-left.office-1-reached.office-2-reached.office-3-reached .offices-sticky-item-2 {
	opacity: 0;
	visibility: hidden;
	transition: 0.3s;
}
.offices-left.office-1-reached.office-2-reached.office-3-reached .offices-sticky-item-3 {
	opacity: 1;
	visibility: visible;
	transition: 0.3s .3s;
}
.offices-left.office-1-reached.office-2-reached.office-3-reached.office-4-reached .offices-sticky-item-3 {
	opacity: 0;
	visibility: hidden;
	transition: 0.3s;
}
.offices-left.office-1-reached.office-2-reached.office-3-reached.office-4-reached .offices-sticky-item-4 {
	opacity: 1;
	visibility: visible;
	transition: 0.3s .3s;
}

.office-pointer {
	opacity: 0;
	transition: 0.3s;
}
.office-loc {
	fill: rgb(199, 192, 185);
}

.offices-svg.office-1-reached .office-pointer-1  {
	opacity: 1;
}
.offices-svg.office-1-reached.office-2-reached .offices-svg-hold .office-pointer-1  {
	opacity: 0;
}
.offices-svg.office-1-reached.office-2-reached .offices-svg-hold .office-pointer-2  {
	opacity: 1;
}
.offices-svg.office-1-reached.office-2-reached.office-3-reached .offices-svg-hold .office-pointer-2  {
	opacity: 0;
}
.offices-svg.office-1-reached.office-2-reached.office-3-reached .offices-svg-hold .office-pointer-3  {
	opacity: 1;
}
.offices-svg.office-1-reached.office-2-reached.office-3-reached.office-4-reached .offices-svg-hold .office-pointer-3  {
	opacity: 0;
}
.offices-svg.office-1-reached.office-2-reached.office-3-reached.office-4-reached .offices-svg-hold .office-pointer-4  {
	opacity: 1;
}

.offices-svg.office-1-reached .office-loc-1  {
	fill: #797468;
}
.offices-svg.office-1-reached.office-2-reached .offices-svg-hold .office-loc-1  {
	fill: rgb(199, 192, 185);
}
.offices-svg.office-1-reached.office-2-reached .offices-svg-hold .office-loc-2  {
	fill: #797468
}
.offices-svg.office-1-reached.office-2-reached.office-3-reached .offices-svg-hold .office-loc-2  {
	fill: rgb(199, 192, 185);
}
.offices-svg.office-1-reached.office-2-reached.office-3-reached .offices-svg-hold .office-loc-3  {
	fill: #797468
}

.offices-svg.office-1-reached.office-2-reached.office-3-reached.office-4-reached .offices-svg-hold .office-loc-3  {
	fill: rgb(199, 192, 185);
}
.offices-svg.office-1-reached.office-2-reached.office-3-reached.office-4-reached .offices-svg-hold .office-loc-4  {
	fill: #797468
}


.footer-large-link {
	margin-bottom: 25px;
}
.footer-large-link a,
.footer-large-link a:focus,
.footer-large-link a:active {
	display: inline-block;
	font-size: 24px;
	font-style: normal;
	font-weight: 600;
	line-height: 32px;
	letter-spacing: -0.8px;
	color: #404040;
	transition: 0.2s ease-in-out;
}
.footer-large-link a:hover {
	color: #797468;
}

.core-values-list ul li svg path {
	animation-play-state: paused !important;
}
.core-values-list ul li.in-view svg path {
	animation-play-state: running !important;
}

.core-values-list.staggered .cvl-item-title,
.core-values-list.staggered .cvl-item-text {
	-webkit-transform: translateY(30px);
    -moz-transform: translateY(30px);
    transform: translateY(30px);
    opacity: 0;
    transition: 0.8s 0.1s cubic-bezier(0.5, 1, 0.89, 1);
}
.core-values-list.staggered ul li.in-view .cvl-item-title,
.core-values-list.staggered ul li.in-view .cvl-item-text {
	-webkit-transform: translateY(0px);
    -moz-transform: translateY(0px);
    transform: translateY(0px);
    opacity: 1;
}

.diff-carousel-item svg path {
	animation-play-state: paused !important;
}
.diff-carousel-item.in-view svg path {
	animation-play-state: running !important;
}

.diff-carousel.staggered .diff-carousel-title,
.diff-carousel.staggered .diff-carousel-text {
	-webkit-transform: translateY(30px);
    -moz-transform: translateY(30px);
    transform: translateY(30px);
    opacity: 0;
    transition: 0.8s 0.1s cubic-bezier(0.5, 1, 0.89, 1);
}
.diff-carousel.staggered .diff-carousel-item.in-view .diff-carousel-title,
.diff-carousel.staggered .diff-carousel-item.in-view .diff-carousel-text {
	-webkit-transform: translateY(0px);
    -moz-transform: translateY(0px);
    transform: translateY(0px);
    opacity: 1;
}

.intro-env-image {
	margin-top: 64px;
	position: relative;
}
.intro-env-image:after {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	width: 100%;
	height: 100%;
	background: rgba(0,0,0,0.25);
}

.cats-hold {
	margin-bottom: 24px;
	position: relative;
	z-index: 20;
}

.cats-filter {
	max-width: 320px;
	border-bottom: 1px solid #000;
	position: relative;
}
.cats-filter span {
	display: block;
	padding: 9px 0;

	font-size: 18px;
	font-weight: 600;
	line-height: 1.4;
	letter-spacing: -1px;
	position: relative;
}
.cats-filter span:after {
	content: '';
	position: absolute;
	right: 0;
	top: 18px;
	width: 16px;
	height: 9px;
	background: url(../img/angle-down.svg) no-repeat center center;

}
.cats-filter.toggle span:after {
	transform: rotate(180deg);
}

.cats-filter ul {
	position: absolute;
	left: 0;
	top: calc(100% + 13px);
	min-width: 100%;
	background-color: #F8F8F8;
	padding: 24px 24px;
	opacity: 0;
	visibility: hidden;
	transition: 0.2s;
}
.cats-filter.toggle ul {
	opacity: 1;
	visibility: visible;
}
.cats-filter ul li {
	margin-bottom: 32px;
}
.cats-filter ul li:last-child {
	margin-bottom: 0px;
}

.cats-filter ul li input {
	display: none;
}
.cats-filter ul li label {
	color: #404040;
	font-size: 18px;
	font-weight: 600;
	line-height: 1.4;
	letter-spacing: -1px;
	padding-left: 32px;
	position: relative;
	margin: 0;
	opacity: 0.5;
	white-space: nowrap;
	transition: 0.2s;
}
.cats-filter ul li label:hover {
	opacity: 1;
}
.cats-filter ul li input:checked + label {
	opacity: 1;
}
.cats-filter ul li label:before {
	content: '';
	position: absolute;
	left: 0;
	top: 4px;
	width: 16px;
	height: 16px;
	border: 1px solid #000;
}
.cats-filter ul li label:after {
	content: '';
	position: absolute;
	left: 4px;
	top: 8px;
	width: 8px;
	height: 8px;
	background: #000;
	opacity: 0;
}
.cats-filter ul li input:checked + label:after {
	opacity: 1;
}

@media only screen and (min-width: 1200px) {
	.contact-section.white {
		padding-top: 120px;
	}
}

@media only screen and (min-width: 1200px) and (max-height: 880px) {
	.mob-nav-column {
		padding: 80px 100px 48px 115px;
	}
	.mob-nav ul li a {
		font-size: 32px;
	}
}

@media only screen and (min-width: 1200px) and (max-height: 780px) {
	.mob-nav ul li a {
		font-size: 28px;
	}
	.mob-nav ul li {
		margin-bottom: 12px;
	}
	.mob-nav-label {
		margin-bottom: 16px;
	}
	.mob-nav-column {
		padding: 80px 80px 48px 80px;
	}
}

@media only screen and (min-width: 1200px) and (max-height: 700px) {
	
}

@media only screen and (min-width: 1920px) {
	.grid-container {
		padding-left: 100px;
		padding-right: 100px;
	}
}

@media only screen and (max-width: 1600px) {
	.overview-carousel-hold {
		width: calc(100% + 100vw * 0.04);
	}
	.diff-carousel.owl-carousel .owl-nav button.owl-next {
		/* right: -290px */
	}
	.diff-carousel-hold {
		/* width: calc(100% - 280px); */
	}
	.diff-carousel-item {
		width: 280px;
	}
	.projects-section .tt-hold .title-80 {
		max-width: 676px;
	}
	.home-intro-section {
		padding-top: 160px;
	}
	.business-carousel-item {
		width: 320px;
	}
	.mob-trigger {
		right: calc(100vw * 0.04)
	}
	header {
		position: fixed;
		padding: 30px 0 30px;
		transition: 0.7s cubic-bezier(0.5, 1, 0.89, 1);;
	}
	.home-intro-section .text-20 {
		max-width: 50%;
		margin-bottom: 48px;
	}
	.title-160 {
		font-size: 7.6vw;
		letter-spacing: -5px;
	}
	.footer-text {
		font-size: 16px;
	}
	.footer-sec-nav ul li:after {
		right: -17px;
	}
	.footer-sec-nav ul li {
		margin-right: 33px;
	}
	.footer-sec-nav ul li a {
		font-size: 16px;
	}
	.footer-socials ul li a {
		font-size: 16px;
	}
	.footer-nav ul li {
		min-width: 170px;
	}
	.footer-nav ul li a {
		font-size: 18px;
	}
	.link-lg-arrow span {
		top: 6px;
	}
	.link-lg-arrow, .link-lg-arrow:focus, .link-lg-arrow:active {
		font-size: 56px;
		padding-right: 72px;
	}
	footer {
		padding: 48px 0 64px;
	}
	.bhc-link {
		margin-top: 16px;
	}
	.blog-carousel-item .text-20 {
		margin-bottom: 16px;
	}
	.blog-carousel-image {
		margin-bottom: 32px;
	}
	.blog-home-featured {
		padding: 24px 0px;
		margin-bottom: 24px;
	}
	.bhf-link {
		margin-top: 16px;
	}
	.bhf-right .text-20 {
		margin-bottom: 16px;
	}
	.text-18 {
		font-size: 16px;
	}
	.title-32 {
		font-size: 24px;
		margin-bottom: 16px;
	}
	.business-section {
		padding: 120px 0 200px;
	}
	.about-v2-section {
		margin-bottom: 120px;
	}
	.images-content-carousel-section {
		margin-bottom: 195px;
	}
	.ic-item-link {
		margin-top: 16px;
	}
	.ic-item-image {
		margin-bottom: 24px;
	}
	.ic-item-left {
		padding-right: 3%;
	}
	.ic-item-right {
		padding-left: 2%;
	}
	.about-hold {
		margin-bottom: 140px;
	}
	.process-section {
		padding: 140px 0 140px;
		margin-bottom: 140px;
	}
	.title-48 {
		font-size: 40px;
	}
	.padd-section-left {
		padding-left: 10%;
	}
	.padd-section-both {
		padding-left: 10%;
		padding-right: 10%;
	}
	.padd-section-right {
		padding-right: 10%;
	}
	.about-left {
		padding-right: 0;
	}
	.about-image {
		margin-left: calc(100vw * -0.04);
		width: calc(100% + (100vw * 0.04));
	}
	.about-sec-image {
		width: calc(100% + (100vw * 0.04));
	}
	.about-hold .number-text-combo {
		margin-top: 52px;
	}
	.text-20.in-view.has-line:before {
		width: 80px;
	}
	.intro-anim-3.fade:before {
		width: 80px;
	}
	.grid-container {
		padding-left: 4%;
		padding-right: 4%;
	}
	.title-80 {
		font-size: 72px;
	}
	.text-20 {
		font-size: 18px;
	}
	.text-20.has-line {
		padding-left: 112px;
	}
	.about-v2-link {
		margin-top: 33px;
	}
	.ic-carousel.owl-carousel .owl-nav button.owl-next {
		left: calc(100% + 40px);
	}
	.ic-carousel.owl-carousel .owl-nav button.owl-prev {
		right: calc(100% + 40px);
	}
}

@media only screen and (max-width: 1400px) {
	.office-item-detail {
		margin-top: 48px;
		padding-top: 48px;
	}
	.offices-left {
		padding-right: 40px;
	}
	.blog-carousel2.owl-carousel .owl-nav button.owl-next, 
	.blog-carousel2.owl-carousel .owl-nav button.owl-prev {
		width: 80px;
		height: 80px;
	}
	.blog-carousel2.owl-carousel .owl-nav button.owl-next svg, 
	.blog-carousel2.owl-carousel .owl-nav button.owl-prev svg {
		max-width: 40px;
	}
	.orn-rotate {
		top: 100px;
		width: 400px;
	}
	.programs-v2-section {
		padding: 140px 0;
	}
	.success-stories-section {
		padding: 140px 0;
	}
	.wwd2-section .section-top {
		max-width: 56%;
	}
	.wwd2-section {
		padding: 140px 0 40px;
	}
	.support-logos-list ul li {
		margin-bottom: 50px;
	}
	.support-section {
		padding: 140px 0 90px;
	}
	.community-overview-section {
		padding: 140px 0 140px;
	}
	.community-overview-section .section-top {
		max-width: 73%;
	}
	.community-overview-section {
		padding: 160px 0 140px;
	}
	.collage-carousel-item {
		width: 480px;
	}
	.diff-carousel-item:before {
		right: -51px;
	}
	.overview-section .section-top {
		margin-bottom: 80px;
		max-width: 90%;
	}
	.diff-carousel.owl-carousel .owl-nav button.owl-next, 
	.diff-carousel.owl-carousel .owl-nav button.owl-prev {
		width: 80px;
		height: 80px;
	}
	.diff-carousel.owl-carousel .owl-nav button.owl-next svg, 
	.diff-carousel.owl-carousel .owl-nav button.owl-prev svg {
		max-width: 40px;
	}
	.contact-section {
		padding: 140px 0;
	}
	.awards-section {
		padding: 140px 0 140px;
	}
	.overview-section {
		padding: 125px 0 140px;
	}
	.differentiators-section {
		padding: 140px 0;
	}
	.goals-section {
		padding: 140px 0 0;
	}
	.wwd-section.projects-section {
		padding-top: 140px;
	}
	.mission-section {
		padding: 140px 0;
	}
	.goals-list ul li span {
		font-size: 90px;
	}
	.intro-join-button {
		margin-bottom: 0;
	}
	.company-values-section {
		padding: 140px 0 140px;
		padding: 80px 0 140px;
	}
	.programs-section {
		padding: 140px 0 130px;
	}
	.open-positions-section {
		padding: 140px 0;
	}
	.tt-right {
		width: 40%;
	}
	.tt-left {
		width: 60%;
	}
	.company-values-left {
		width: 60%;
	}
	.company-values-right {
		width: 40%;
	}
	.testimonials-carousel.owl-carousel .owl-nav button.owl-prev {
		left: -110px;
	}
	.testimonials-carousel.owl-carousel .owl-nav button.owl-next {
		right: -110px;
	}
	.testimonials-carousel.owl-carousel .owl-nav button.owl-next svg, 
	.testimonials-carousel.owl-carousel .owl-nav button.owl-prev svg {
		max-width: 40px;
	}
	.testimonials-carousel.owl-carousel .owl-nav button.owl-next, 
	.testimonials-carousel.owl-carousel .owl-nav button.owl-prev {
		width: 80px;
		height: 80px;
	}
	.entry h1 {
		font-size: 72px;
	}
	.entry h2 {
		font-size: 56px;
	}
	.entry h3 {
		font-size: 48px;
	}
	.entry h4 {
		font-size: 36px;
	}
	.paginate ul li {
		margin-right: 30px;
	}
	.paginate ul li .page-numbers {
		font-size: 18px;
	}
	.featured-blog-section .bhf-right {
		padding-right: 0;
	}
	.title-40 {
		font-size: 36px;
	}
	.cantact-form-section {
		padding: 140px 0;
	}
	.opportunities-section {
		padding: 140px 0 80px;
	}
	.other-locations {
		padding: 140px 0 70px;
	}
	.wwo-section {
		padding: 120px 0 140px;
	}
	.intro-reg-top {
		padding-top: 220px;
	}
	.intro-simple-section {
		padding: 220px 0 0;
	}
	.text-24 p {
		margin-bottom: 32px;
	}
	.title-96 {
		font-size: 86px;
	}
	.wwdl-item-title {
		font-size: 36px;
	}
	.wwd-list ul li:nth-child(4n+3), .wwd-list ul li:nth-child(4n) {
		margin-top: -70px;
	}
	.leadership-item-hover-content {
		padding: 40px 24px 30px;
	}
	.leadership-item-text {
		font-size: 15px;
		margin-top: 30px;
	}
	.leadership-section {
		padding: 150px 0 120px;
	}
	.wwd-section {
		padding: 80px 0 150px;
	}
	.image-section {
		margin-bottom: 80px;
	}
	.stats-list ul li span {
		font-size: 90px;
	}
	.timeline-top {
		margin-bottom: 120px;
	}
	.timeline-carousel.owl-carousel .owl-nav button.owl-next, 
	.timeline-carousel.owl-carousel .owl-nav button.owl-prev {
		width: 80px;
		height: 80px;
	}
	.timeline-carousel.owl-carousel .owl-nav button.owl-next svg, 
	.timeline-carousel.owl-carousel .owl-nav button.owl-prev svg {
		max-width: 40px;
	}
	.timeline-carousel.owl-carousel .owl-nav button.owl-next {
		right: -160px;
	}
	.timeline-carousel.owl-carousel .owl-nav button.owl-prev {
		left: -160px;
	}
	.timeline-section {
		padding: 150px 0 160px;
	}
	.intro-about-sec-image-hold {
		margin-left: 110px;
		width: 400px;
	}
	.business-carousel-item {
		width: 280px;
	}
	.business-carousel-item:after {
		right: -50px;
	}
	.blog-carousel.owl-carousel .owl-nav button.owl-next, .blog-carousel.owl-carousel .owl-nav button.owl-prev {
		width: 140px;
	}
	.blog-carousel.owl-carousel .owl-nav button.owl-next span svg, 
	.blog-carousel.owl-carousel .owl-nav button.owl-prev span svg {
		max-width: 40px;
	}
	.blog-carousel.owl-carousel .owl-nav button.owl-next span, 
	.blog-carousel.owl-carousel .owl-nav button.owl-prev span {
		width: 80px;
		height: 80px;
	}
	.ic-carousel.owl-carousel .owl-nav button.owl-next span svg, 
	.ic-carousel.owl-carousel .owl-nav button.owl-prev span svg {
		max-width: 40px;
	}
	.ic-carousel.owl-carousel .owl-nav button.owl-next span, 
	.ic-carousel.owl-carousel .owl-nav button.owl-prev span {
		width: 80px;
		height: 80px;
	}
	.business-carousel.owl-carousel .owl-nav button.owl-next, 
	.business-carousel.owl-carousel .owl-nav button.owl-prev {
		width: 140px;
	}
	.business-carousel.owl-carousel .owl-nav button.owl-next span svg, 
	.business-carousel.owl-carousel .owl-nav button.owl-prev span svg {
		max-width: 40px;
	}
	.business-carousel.owl-carousel .owl-nav button.owl-next span, 
	.business-carousel.owl-carousel .owl-nav button.owl-prev span {
		width: 80px;
		height: 80px;
	}
	.title-48 {
		font-size: 36px;
	}
	.text-20.has-ml {
		margin-left: 30px;
	}
	.about-hold-sec-left {
		padding-right: 10%;
	}
	.number-text-combo {
		font-size: 140px;
	}
	.title-80 {
		font-size: 66px;
	}
	.padd-section-left {
		padding-left: 8%;
	}
	.padd-section-both {
		padding-left: 8%;
		padding-right: 8%;
	}
	.padd-section-right {
		padding-right: 8%;
	}
	.about-hold .text-20 {
		margin-bottom: 60px;
	}
	.text-24 {
		font-size: 20px;
	}
	.about-right {
		padding-left: 10%;
	}
	.images-content-carousel-section .section-top {
		margin-bottom: 80px;
	}
	.wwd-section .section-top {
		margin-bottom: 120px;
	}
	.leadership-item-content {
		padding: 0 24px;
	}
	.stats-section-top {
		margin-bottom: 120px;
	}
	.entry h1:not(:first-child), 
	.entry h2:not(:first-child), 
	.entry h3:not(:first-child), 
	.entry h4:not(:first-child) {
		margin-top: 56px;
	}
	.ss-carousel.owl-carousel .owl-nav button.owl-next, 
	.ss-carousel.owl-carousel .owl-nav button.owl-prev {
		width: 80px;
		height: 80px;
	}
	.ss-carousel.owl-carousel .owl-nav button.owl-next svg, 
	.ss-carousel.owl-carousel .owl-nav button.owl-prev svg {
		max-width: 40px;
	}
}

@media only screen and (max-width: 1199px) {
	.company-values-left {
		padding-left: 0;
	}
	.office-item-detail p {
		font-size: 18px;
		margin-bottom: 12px;
	}
	.title-56 {
		font-size: 46px;
	}
	.home-intro-section .text-20 {
		font-size: 20px;
	}
	.home-intro-section .text-20.has-line:before {
		top: 14px;
	}
	.programs-v2-section {
		padding: 120px 0;
	}
	.programs-v2-bottom-culumn-3 {
		padding-left: 2%;
	}
	.ssci-right {
		padding-left: 2%;
	}
	.success-stories-section {
		padding: 120px 0;
	}
	.wwd2-section .section-top {
		max-width: 52%;
		margin-bottom: 90px;
	}
	.wwd2-list ul li:nth-child(4) {
		margin-top: -300px;
	}
	.wwd2-list ul li:nth-child(2) {
		margin-top: -200px;
	}
	.wwd2-list ul li:nth-child(5) {
		margin-left: 20%;
	}
	.wwd2-list ul li:nth-child(1) {
		margin-left: 9%;
	}
	.wwd2-section {
		padding: 120px 0 30px;
	}
	.wwd2-list ul li {
		width: 38%;
		min-width: 38%;
		margin-bottom: 90px;
	}
	.support-section .tt-hold {
		margin-bottom: 90px;
	}
	.support-section {
		padding: 120px 0 70px;
	}
	.support-logos-list ul li {
		width: 25%;
		min-width: 25%;
	}
	.community-overview-section .section-top {
		max-width: 80%;
		margin-bottom: 90px;
	}
	.community-overview-section {
		padding: 130px 0 120px;
	}
	.collage-carousel-hold {
		margin-top: 90px;
	}
	.collage-carousel-item {
		width: 400px;
	}
	.image-dot {
		/* width: 30px;
		height: 30px; */
	}
	.image-dot:before {
		/* width: 50px;
		height: 50px; */
	}
	.image-dot span:before {
		/* top: 14px; */
	}
	.image-dot span {
		/* width: 140px;
		font-size: 20px;
		top: -72px; */
		font-size: 20px;
	}
	.image-dot-line-1 span:before {
		top: -5px;
		right: calc(100% + 16px);
	}
	.image-dot-line-1 span {
		left: calc(100% + 72px);
		top: 50px;
	}
	.image-dot-line-4 span:before {
		top: 40px;
	}
	.image-dot-line-4 span {
		width: 184px;
		right: calc(100% + 62px);
		top: -78px;
	}
	.overview-carousel-hold {
		width: calc(100% + 30px);
	}
	.contact-section {
		padding: 120px 0;
	}
	.awards-section .blog-carousel.owl-carousel .owl-nav button.owl-next span, 
	.awards-section .blog-carousel.owl-carousel .owl-nav button.owl-prev span {
		top: 60%;
	}
	.awards-section .text-18 {
		padding-right: 0;
	}
	.awards-section .title-32 {
		padding-right: 0;
	}
	.awards-section {
		padding: 120px 0 120px;
	}
	.differentiators-section .tt-hold {
		margin-bottom: 90px;
	}
	.differentiators-section {
		padding: 120px 0;
	}
	.overview-section {
		padding: 120px 0 120px;
	}
	.intro-simple-link {
		margin-bottom: 80px;
	}
	.wwd-section {
		padding: 80px 0 120px;
	}
	.goals-list ul li span {
		font-size: 80px;
	}
	.goals-right {
		width: 50%;
		padding-left: 8%;
	}
	.goals-section {
		padding: 120px 0 0;
	}
	.wwd-section.projects-section {
		padding-top: 120px;
	}
	.mission-image-hold {
		width: calc(100% + 30px);
	}
	.mission-section {
		padding: 120px 0;
	}
	.opb-item-location {
		width: 35%;;
	}
	.opb-item-title {
		width: 65%;
		font-size: 20px;
	}
	.open-positions-section {
		padding: 120px 0;
	}
	.testimonials-carousel.owl-carousel .owl-nav button.owl-next, .testimonials-carousel.owl-carousel .owl-nav button.owl-prev {
		display: none;
	}
	.programs-tabs .tabs-title>a {
		font-size: 20px;
	}
	.programs-section {
		padding: 120px 0 120px;
	}
	.company-values-section {
		padding: 120px 0 120px;
		padding: 80px 0 120px;
	}
	.crs-left {
		padding-right: 20px;
	}
	.crs-right-image-hold {
		width: 111%;
	}
	.btn-dark, .btn-dark:focus, .btn-dark:active {
		font-size: 18px;
	}
	.entry h1 {
		font-size: 56px;
	}
	.entry h2 {
		font-size: 48px;
	}
	.entry h3 {
		font-size: 40px;
	}
	.entry h4 {
		font-size: 32px;
	}
	.intro-tt-section {
		padding-bottom: 90px;
	}
	.blog-archive ul li {
		margin-bottom: 80px;
	}
	.title-40 {
		font-size: 32px;
	}
	.featured-blog-section .bhf-right {
		padding-left: 5%;
	}
	.cf-left {
		width: 40%;
	}
	.cf-right {
		width: 60%;
		padding-right: 0;
	}
	.cantact-form-section {
		padding: 120px 0;
	}
	.opportunity-link {
		margin-top: 24px;
	}
	.opportunity-image {
		margin-bottom: 36px;
	}
	.opportunity-title {
		font-size: 36px;
		margin-bottom: 24px;
	}
	.opportunities-section {
		padding: 120px 0 60px;
	}
	.other-locations {
		padding: 120px 0 60px;
	}
	.other-locations .title-80 {
		margin-bottom: 60px;
	}
	.other-locations-list ul li {
		width: 33%;
		min-width: 33%;
	}
	.wwo-stats {
		margin-top: 20px;
	}
	.wwo-stats span {
		font-size: 120px;
	}
	.wwo-section {
		padding: 100px 0 120px;
	}
	.text-24 p {
		margin-bottom: 28px;
	}
	.stats-section-top {
		margin-bottom: 90px;
	}
	.leadership-list {
		padding-bottom: 30px;
	}
	.leadership-item-position span {
		padding-bottom: 2px;
		padding-right: 0px;;
	}
	.leadership-item-text {
		font-size: 14px;
		margin-top: 20px;
	}
	.leadership-item-title {
		font-size: 20px;
		margin-bottom: 5px;
	}
	.leadership-list ul li {
		width: calc(33.333% - 20px);
		min-width: calc(33.333% - 20px);
		margin-right: 30px;
		margin-bottom: 30px;
	}
	.wwd-list ul li:nth-child(4n+3), .wwd-list ul li:nth-child(4n) {
		margin-top: -60px;
	}
	.wwdl-item-title {
		font-size: 32px;
	}
	.wwd-section .section-top {
		margin-bottom: 90px;
	}
	.stats-list ul li span {
		font-size: 80px;
	}
	.core-values-right {
		padding-left: 0;
	}
	.amb-right {
		padding-left: 9%;
		padding-top: 40px;
		padding-right: 4%;
	}
	.about-mission-top {
		margin-bottom: 90px;
	}
	.title-96 {
		font-size: 70px;
	}
	.mob-nav-blog-hold {
		width: 350px;
		padding: 48px 48px;
	}
	.mob-nav-label {
		margin-bottom: 16px;
	}
	.mob-nav ul li {
		margin-bottom: 12px;
	}
	.mob-trigger {
		right: 30px;
	}
	.mob-nav-column {
		padding: 80px 80px 48px 80px;
	}
	.mob-nav ul li a {
		font-size: 28px;
	}
	.bhf-right {
		padding-left: 5%;
		padding-right: 0%;
	}
	.business-carousel-item {
		width: 260px;
	}
	.business-carousel-item .title-48 {
		margin-bottom: 20px;
		font-size: 32px;
	}
	.business-section {
		padding: 120px 0 160px;
	}
	.about-hold {
		margin-bottom: 100px;
	}
	.about-section {
		margin-bottom: 140px;
	}
	.sl-image {
		margin-bottom: 100px;
	}
	.process-section {
		padding: 120px 0 120px;
		margin-bottom: 120px;
	}
	.ic-item-right {
		padding-left: 0;
		width: 100%;
	}
	.ic-item-left {
		padding-right: 0;
		width: 100%;
		margin-bottom: 16px;
	}
	.ic-carousel.owl-carousel .owl-nav button.owl-next, .ic-carousel.owl-carousel .owl-nav button.owl-prev {
		width: 100px;
		opacity: 1;
	}
	.ic-carousel.owl-carousel .owl-nav button.owl-next {
		left: auto;
		right: -110px;
	}
	.ic-carousel.owl-carousel .owl-nav button.owl-prev {
		right: auto;
		left: -110px;
	}
	.images-content-carousel-hold {
		padding: 0 80px !important;
	}
	.about-hold .text-20 {
		margin-bottom: 30px;
	}
	.about-hold-sec .number-text-combo {
		margin-top: 52px;
	}
	.about-link {
		margin-top: 30px;
	}
	.title-80 {
		font-size: 58px;
		margin-bottom: 30px;
	}
	.text-20 {
		margin-bottom: 30px;
	}
	.grid-container {
		padding-left: 30px;
		padding-right: 30px;
	}
	.home-intro-section {
		margin-bottom: 120px;
	}
	.padd-section-left {
		padding-left: 0%;
	}
	.padd-section-both {
		padding-left: 0%;
		padding-right: 0%;
	}
	.padd-section-right {
		padding-right: 0%;
	}
	.about-image {
		margin-left: -30px;
		width: calc(100% + 30px);
	}
	.about-sec-image {
		width: calc(100% + 30px);
	}
	.title-160 {
		font-size: 8vw;
	}
	.number-text-combo {
		font-size: 120px;
	}
	.text-20 {
		font-size: 16px;
	}
	.text-20.has-line:before {
		top: 10px;
	}
	.text-24 {
		font-size: 18px;
	}
	.title-80 {
		font-size: 54px;
	}
	.text-20.has-line {
		padding-left: 70px;
	}
	.text-20.in-view.has-line:before {
		width: 50px;
	}
	.intro-anim-3.fade:before {
		width: 50px;
	}
	.text-20.has-ml {
		margin-left: 20px;
	}
	.stats-section {
		position: relative;
	}
	.diff-carousel-icon {
		/* margin-bottom: 24px; */
	}
	.awards-section .section-top {
		max-width: 90%;
	}
	.contact-section .tt-hold {
		margin-bottom: 80px;
	}
	.contact-section-link {
		margin-top: 24px;
	}
	.ss-carousel.owl-carousel .owl-nav button.owl-next, .ss-carousel.owl-carousel .owl-nav button.owl-prev {
		display: none;
	}
}

@media only screen and (max-width: 1023px) {
	.image-dot-8.image-dot-line-2 span:before {
		top: -4px;
		-webkit-transform: rotateX(180deg) rotateY(180deg);
		-moz-transform: rotateX(180deg) rotateY(180deg);
		transform: rotateX(180deg) rotateY(180deg);
		right: auto;
		left: calc(100% + 12px);
	}
	.image-dot-8.image-dot-line-2 span {
		width: 175px;
		left: auto;
		right: calc(100% + 70px);
		top: 50px;
	}
	.image-dot.image-dot-2 {
		left: 20% !important;
		top: 80%!important;
	}
	.image-dot.image-dot-3 {
		left: 36% !important;
		top: 56%!important;
	}
	.image-dot.image-dot-4 {
		left: 47% !important;
    	top: 45%!important;
	}
	.image-dot.image-dot-8 {
		left: 75% !important;
    	top: 62%!important;
	}
	.image-dot.image-dot-9 {
		left: 67.5% !important;
    	top: 33.5%!important;
	}
	.offices-section .grid-container:nth-child(2) {
		padding-right: 0;
	}
	.title-56 {
		font-size: 40px;
	}
	.office-item-detail {
		margin-top: 32px;
		padding-top: 32px;
	}
	.offices-sticky-item {
		/* min-height: 90vh; */
	}
	.offices-item {
		/* min-height: 90vh; */
		/* min-height: 1px; */
		/* margin-bottom: 10vh; */
		/* padding-top: 0px; */
	}
	.offices-svg {
		/* min-height: 90vh; */
	}
	.mission-image.parallax-1 img {
		transform: translate(0, 0) !important;
	}
	.programs-v2-link {
		margin-top: 0;
	}
	.programs-v2-bottom-title {
		margin-bottom: 12px;
	}
	.programs-v2-bottom-culumn-3 {
		padding-left: 0;
	}
	.programs-v2-bottom-culumn-2 {
		padding-right: 0;
	}
	.programs-v2-bottom-culumn-1 {
		padding-right: 0;
	}
	.programs-v2-bottom-culumn {
		margin-bottom: 24px;
		width: 100%;
	}
	.ssci-image a:after {
		width: 60px;
		height: 60px;
		right: 30px;
		bottom: 30px;
		background: rgba(255,255,255,0.8) url(../img/icon-play-dark.svg) no-repeat 55% 50% / 14px 21px;
	}
	.ssci-image {
		padding-bottom: 60%;
	}
	.ssci-left {
		width: 100%;
		padding-right: 6%;
		margin-bottom: 32px;
	}
	.ssci-right {
		padding-left: 0;
		width: 100%;
	}
	.ssci-content {
		max-width: 100%;
	}
	.wwd2-list ul li:nth-child(4) {
		margin-top: -150px;
	}
	.wwd2-list ul li:nth-child(2) {
		margin-top: -40px;
	}
	.wwd2-list ul li:nth-child(1) {
		margin-left: 0;
	}
	.wwd2-list ul li {
		width: 46%;
		min-width: 46%;
	}
	.wwd2-section .section-top {
		max-width: 100%;
		margin-bottom: 90px;
	}
	.community-overview-right {
		padding-left: 6%;
		padding-right: 0;
	}
	.community-overview-section .section-top {
		max-width: 90%;
	}
	.orn-rotate {
		top: 70px;
		width: 250px;
	}
	.collage-img-1 {
		margin-bottom: 24px;
	}
	.collage-img-2 {
		margin-bottom: 24px;
	}
	.collage-carousel-item {
		width: 350px;
	}
	.awards-section .section-top {
		max-width: 100%;
	}
	.diff-carousel-item {
		width: 260px;
	}
	.diff-carousel-item:before {
		right: -31px;
	}
	.overview-section .section-top {
		max-width: 100%;
	}
	.intro-simple-link {
		margin-top: 24px;
		text-align: left;
	}
	.goals-image {
		padding-bottom: 56%;
	}
	.goals-list ul li span {
		font-size: 100px;
	}
	.goals-right {
		width: 100%;
		padding-left: 0;
	}
	.goals-left {
		width: 100%;
		margin-bottom: 48px;
	}
	.projects-section .tt-hold {
		margin-bottom: 90px;
	}
	.mission-right {
		width: 100%;
	}
	.mission-left {
		width: 100%;
		margin-bottom: 48px;
	}
	.mission-section .section-top {
		margin-bottom: 80px;
	}
	.tc-item-right {
		width: calc(100% - 170px);
	}
	.tc-item-left {
		width: 170px;
	}
	.tc-item-text {
		font-size: 20px;
	}
	.tc-item {
		padding-right: 40px;
		width: 650px;
	}
	.programs-tabs .tabs-title {
		padding-right: 24px;
		margin-right: 24px;
	}
	.programs-tabs .tabs-title>a {
		font-size: 16px;
	}
	.tt-right {
		width: 100%;
	}
	.tt-left {
		width: 100%;
		margin-bottom: 32px;
		padding-right: 0;
	}
	.company-values-right {
		width: 100%;
	}
	.company-values-left {
		width: 100%;
		padding-left: 0;
		padding-right: 0px;
		margin-bottom: 48px;
	}
	.culture-section:before {
		padding-bottom: 18%;
	}
	.culture-bottom-image-hold {
		margin-top: 30px;
	}
	.crs-right-image-hold {
		width: calc(100% + 30px);
	}
	.culture-right {
		width: 100%;
	}
	.culture-left {
		width: 100%;
	}
	.intro-join-button {
		padding-left: 0;
	}
	.owl-carousel.blog-carousel2 .owl-stage-outer {
		overflow: visible;
	}
	.entry h1:not(:first-child), .entry h2:not(:first-child), .entry h3:not(:first-child), .entry h4:not(:first-child) {
		margin-top: 48px;
	}
	.entry h1 {
		font-size: 40px;
		margin-bottom: 32px;
	}
	.entry h2 {
		font-size: 36px;
		margin-bottom: 32px;
	}
	.entry h3 {
		font-size: 32px;
		margin-bottom: 32px;
	}
	.entry h4 {
		font-size: 26px;
		margin-bottom: 32px;
	}
	.entry h5 {
		font-size: 20px;
		margin-bottom: 20px;
	}
	.paginate ul li .page-numbers.prev:before, 
	.paginate ul li .page-numbers.next:before {
		top: -2px;
	}
	.paginate ul li .page-numbers.prev:after, 
	.paginate ul li .page-numbers.next:after {
		top: -2px;
	}
	.paginate ul li .page-numbers {
		font-size: 16px;
	}
	.blog-archive ul li {
		width: calc(50% - 24px);
		min-width: calc(50% - 24px);
	}
	.filter-items ul li {
		margin-right: 48px;
	}
	.featured-blog-section .bhf-right {
		padding-left: 0;
	}
	.cf-right {
		width: 100%;
		padding-left: 30px;
	}
	.cf-left {
		width: 100%;
		margin-bottom: 48px;
	}
	.cf-image {
		padding-bottom: 56%;
	}
	.opportunity-title {
		font-size: 32px;
	}
	.other-locations-list ul li {
		width: 50%;
		min-width: 50%;
		margin-bottom: 36px;
	}
	.wwo-right {
		width: 100%;
		padding-left: 0%;
		margin-bottom: 32px;
	}
	.wwo-left {
		width: 100%;
		order: 2;
	}
	.intro-tti {
		margin-bottom: 64px;
	}
	.intro-tti-right {
		width: 100%;
	}
	.intro-tti-left {
		width: 100%;
		margin-bottom: 36px;
	}
	.leadership-list ul li {
		width: calc(50% - 15px);
		min-width: calc(50% - 15px);
	}
	.leadership-list ul li:nth-child(3n) {
		margin-right: 30px;
	}
	.leadership-list ul li:nth-child(2n) {
		margin-right: 0px;
	}
	.wwd-list ul li:nth-child(4n+3), .wwd-list ul li:nth-child(4n) {
		margin-top: -40px;
	}
	.wwdl-item-title {
		font-size: 28px;
	}
	.stats-list ul li {
		padding-left: 7%;
	}
	.stats-list ul li span {
		font-size: 72px;
	}
	.timeline-carousel-item {
		padding-bottom: 140px;
	}
	.timeline-carousel.owl-carousel .owl-nav button.owl-prev {
		left: -40px;
	}
	.timeline-carousel.owl-carousel .owl-nav button.owl-next {
		right: -40px;
	}
	.timeline-carousel-hold {
		padding: 0 60px;
	}
	.sst-right {
		width: 100%;
		padding-left: 0;
		padding-right: 0;
	}
	.sst-left {
		width: 100%;
		margin-bottom: 36px;
	}
	.timeline-carousel-year {
		font-size: 36px;
	}
	.timeline-top-right {
		width: 100%;
	}
	.timeline-top-left {
		width: 100%;
		padding-top: 0;
	}
	.core-values-right {
		width: 100%;
	}
	.core-values-left {
		width: 100%;
		padding-right: 0;
		margin-bottom: 48px;
	}
	.about-mission-section {
		padding: 100px 0 80px;
	}
	.core-values-section:before {
		display: none;
	}
	.amb-right {
		padding-left: 30px;
		padding-top: 0px;
		width: 100%;
	}
	.amb-left {
		width: 100%;
		margin-bottom: 48px;
	}
	.amb-image {
		padding-bottom: 90%;
	}
	.amt-right {
		width: 100%;
	}
	.amt-left {
		width: 100%;
	}
	.intro-about-sec-image-hold {
		margin-left: 60px;
		width: 300px;
	}
	.mob-nav-blog-hold {
		display: none;
	}
	.cursor-pointer {
		display: none !important;
	}
	body {
		cursor: default;
	}
	.prefooter {
		margin-bottom: 100px;
	}
	.footer-socials {
		margin-bottom: 16px;
	}
	.footer-bottom-right {
		margin-bottom: 16px;
		width: 100%;
	}
	.footer-bottom-left {
		order: 2;
		width: 100%;
	}
	.main-footer-left img {
		max-width: 200px;
	}
	.link-lg-arrow span {
		top: -1px;
	}
	.link-lg-arrow, .link-lg-arrow:focus, .link-lg-arrow:active {
		font-size: 46px;
	}
	.blog-carousel.owl-carousel .owl-nav button.owl-next {
		display: none;
	}
	.bhf-right {
		padding-left: 0;
		width: 100%;
	}
	.bhf-left {
		width: 100%;
		margin-bottom: 24px;
	}
	.business-carousel.owl-carousel .owl-nav button.owl-next {
		display: none;
	}
	.business-carousel-item:after {
		right: -31px;
	}
	.business-top-right .text-16 {
		max-width: 100%;
	}
	.business-top-right {
		width: 100%;

		padding-left: 0;
	}
	.business-top-left {
		width: 100%;
		padding-right: 0;
		margin-bottom: 40px;
	}
	.about-v2-hold {
		margin-bottom: 70px;
	}
	.about-v2-link {
		margin-top: 24px;
	}
	.about-v2-right {
		width: 100%;
		padding-left: 0;
	}
	.about-v2-left {
		width: 100%;
		margin-bottom: 40px;
	}	
	.ic-carousel.owl-carousel .owl-nav button.owl-next,
	.ic-carousel.owl-carousel .owl-nav button.owl-prev {
		display: none;
	}
	.images-content-carousel-hold {
		padding: 0 40px !important;
	}
	.process-fixed-right {
		padding-left: 3%;
		padding-right: 0%;
	}
	.process-fixed-svg-hold {
		padding-left: 0;
		padding-right: 0;
	}
	.sl-content-left {
		width: 100%;
		padding-right: 0;
		margin-bottom: 50px;
	}
	.about-sec-image,
	.about-image {
		transform: translate(0px, 0px) !important;
	}
	.about-hold-sec-right {
		width: 100%;
	}
	.about-sec-image {
		padding-bottom: 129%;
	}
	.about-hold-sec-left {
		padding-right: 0%;
		width: 100%;
		margin-bottom: 48px;
	}
	.about-section .title-80 + .about-hold {
		margin-top: 60px;
	}
	.title-160 {
		font-size: 8vw;
		letter-spacing: -4px;
	}
	.about-left {
		width: 100%;
		order: 2;
	}
	.about-right {
		padding-left: 0%;
		width: 100%;
		margin-bottom: 48px;
	}
	.sl-content-right {
		width: 100%;
	}
	.timeline-top {
		margin-bottom: 90px;
	}
	.entry ul {
		margin-bottom: 48px;
	}
	.diff-carousel.owl-carousel .owl-nav button.owl-next, .diff-carousel.owl-carousel .owl-nav button.owl-prev {
		display: none;
	}
	.success-stories-section .section-top {
		max-width: 100%;
	}

	.mask::after {
		content: 'Tap and drag to see the before and after';
		position: absolute;
		left: 10px;
		top: 50%;
		transform: translateY(-50%);
		right: 10px;
		transition: 0.2s linear;
		color: #fff;
		text-align: center;
		font-size: 14px;

		background: rgba(0,0,0,0.5);
		left: 0;
		right: 0;
		top: 0;
		bottom: 0;
		transform: none;

		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-align: end;
		-ms-flex-align: end;
		align-items: flex-end;
		-webkit-box-pack: center;
		-ms-flex-pack: center;
		justify-content: center;
		padding-bottom: 20px;
	}
	.mask::before {
		/*content: '';
		width: 32px; height: 32px;
		background: url(../img/tap.svg) no-repeat center center;
		background-size: contain;
		position: absolute;
		left: 10px; bottom: 10px;
		transition: 0.2s linear;*/

		content: '';
		background: rgba(0,0,0,0.5);
		position: absolute;
		left: 0;
		bottom: 0;
		top: 0;
		right: 0;
		transition: 0.2s linear;
	}
	.mask.is-locked::before {
		opacity: 0;
	}
	.mask.is-locked::after {
		opacity: 0;
	}
}

@media screen and (max-width:639px) {
	.cats-filter {
		max-width: 100%;
	}
	.intro-env-image {
		margin-top: 36px;
	}
	.offices-right .sticky.inv {
		opacity: 0;
		pointer-events: none;
	}
	.offices-left .sticky {
		top: 0 !important;
		position: relative!important;
	}

	.offices-svg .office-pointer-1,
	.offices-svg .office-pointer-2,
	.offices-svg .office-pointer-3 {
		opacity: 0 !important;
	}
	.offices-svg.office-1-sticky-reached .offices-svg-hold .office-pointer-1  {
		opacity: 1!important;
	}
	.offices-svg.office-1-sticky-reached.office-2-sticky-reached .offices-svg-hold .office-pointer-1  {
		opacity: 0!important;
	}
	.offices-svg.office-1-sticky-reached.office-2-sticky-reached .offices-svg-hold .office-pointer-2  {
		opacity: 1!important;
	}
	.offices-svg.office-1-sticky-reached.office-2-sticky-reached.office-3-sticky-reached .offices-svg-hold .office-pointer-2  {
		opacity: 0!important;
	}
	.offices-svg.office-1-sticky-reached.office-2-sticky-reached.office-3-sticky-reached .offices-svg-hold .office-pointer-3  {
		opacity: 1!important;
	}
	.offices-svg.office-1-sticky-reached.office-2-sticky-reached.office-3-sticky-reached.office-4-sticky-reached .offices-svg-hold .office-pointer-3  {
		opacity: 0!important;
	}
	.offices-svg.office-1-sticky-reached.office-2-sticky-reached.office-3-sticky-reached.office-4-sticky-reached .offices-svg-hold .office-pointer-4  {
		opacity: 1!important;
	}

	
	.offices-svg .office-loc-1,
	.offices-svg .office-loc-2,
	.offices-svg .office-loc-3 {
		fill: rgb(199, 192, 185) !important;
	}
	
	.offices-svg.office-1-sticky-reached .offices-svg-hold .office-loc-1  {
		fill: #797468 !important;
	}
	.offices-svg.office-1-sticky-reached.office-2-sticky-reached .offices-svg-hold .office-loc-1  {
		fill: rgb(199, 192, 185) !important;
	}
	.offices-svg.office-1-sticky-reached.office-2-sticky-reached .offices-svg-hold .office-loc-2  {
		fill: #797468 !important;
	}
	.offices-svg.office-1-sticky-reached.office-2-sticky-reached.office-3-sticky-reached .offices-svg-hold .office-loc-2  {
		fill: rgb(199, 192, 185) !important;
	}
	.offices-svg.office-1-sticky-reached.office-2-sticky-reached.office-3-sticky-reached .offices-svg-hold .office-loc-3  {
		fill: #797468 !important;
	}
	.offices-svg.office-1-sticky-reached.office-2-sticky-reached.office-3-sticky-reached.office-4-sticky-reached .offices-svg-hold .office-loc-3  {
		fill: rgb(199, 192, 185) !important;
	}
	.offices-svg.office-1-sticky-reached.office-2-sticky-reached.office-3-sticky-reached.office-4-sticky-reached .offices-svg-hold .office-loc-4  {
		fill: #797468 !important;
	}
	

	.offices-svg.office-1-sticky-reached .offices-svg-hold {
		transform: translate(95%, -42%) scale(2.2)!important;
	}
	.offices-svg.office-1-sticky-reached.office-2-sticky-reached .offices-svg-hold {
		transform: translate(86%, -40%) scale(2.2)!important;
	}
	.offices-svg.office-1-sticky-reached.office-2-sticky-reached.office-3-sticky-reached .offices-svg-hold {
		transform: translate(15%, -112%) scale(2.2)!important;
	}
	.offices-svg.office-1-sticky-reached.office-2-sticky-reached.office-3-sticky-reached.office-4-sticky-reached .offices-svg-hold {
		transform: translate(-42%, -34%) scale(2.2)!important;
	}
	.offices-right.mob-svg-reached .sticky {
		position: fixed!important;
		top: 0;
	}
	.offices-sticky-item {
		position: relative;
		top: auto;
		left: auto;
		opacity: 1 !important;
		visibility: visible!important;
	}
	.offices-item {
		min-height: 1px;
		/* margin-bottom: 64px; */
		padding-top: 0px;
	}
	.offices-sticky-item {
		min-height: 1px;
		margin-bottom: 64px;
		padding-top: 0px;
	}
	.offices-sticky-item:last-child {
		margin-bottom: 0px;
	}
	.offices-section .grid-container:nth-child(2) {
		padding-right: 20px;
	}
	.offices-left {
		width: calc(100% - 1px);
	}
	.offices-right {
		width: 100%;
	}
	.offices-section .title-80 {
		margin-bottom: 32px;
	}
	.office-item-detail {
		margin-top: 24px;
		padding-top: 24px;
	}
	.offices-right {
		margin-bottom: 0px;
	}
	.offices-left {
		order: 2;
	}
	.title-56 {
		font-size: 28px;
	}
	.office-pointer {
		opacity: 1 !important;
	}
	.offices-svg-hold {
		/* transform: translateY(-50%) !important; */
	}
	.offices-right {
		height: 0 !important;
	}
	.offices-svg {
		background: #eeeceb;
	}
	.offices-right .sticky {
		position: absolute !important;
		width: 100%;
	}
	.offices-right .sticky.is-stuck {
		position: fixed !important;
	}
	.offices-item.offices-item-1 {
		/* padding-top: calc(64.286% + 48px); */
	}
	.offices-sticky-item.offices-sticky-item-1 {
		padding-top: calc(64.286% + 48px);
	}
	.offices-svg {
		min-height: 1px;
		padding-bottom: 64.286%;
	}
	.offices-right .sticky {
		top: 0 !important;
	}
	.office-item-detail {
		max-width: 100%;
	}
	.offices-item {
		/* margin-bottom: 64px; */
	}
	.offices-item:last-child {
		margin-bottom: 0px;
	}
	.offices-left {
		padding-right: 0;
	}
	.office-item-detail p {
		font-size: 16px;
	}
	.business-top {
		margin-bottom: 40px;
	}
	.process-mob-items .program-link {
		margin-top: 24px;
	}
	.blog-carousel2.owl-carousel .owl-nav button.owl-next, .blog-carousel2.owl-carousel .owl-nav button.owl-prev {
		display: none;
	}
	.number-text-combo {
		font-size: 92px;
	}
	.community-overview-image.parallax-1 img {
		transform: translate(0, 0) !important;
	}
	.home-intro-section .text-20.has-line:before {
		top: 13px;
	}
	.home-intro-section .text-20 {
		font-size: 18px;
	}
	.orn-rotate {
		top: 10px;
		width: 150px;
	}
	.programs-v2-section {
		padding: 100px 0;
	}
	.ssci-link {
		margin-top: 20px;
	}
	.ssci-content .title-40 {
		margin-bottom: 20px;
	}
	.success-stories-section .section-top {
		margin-bottom: 64px;
	}
	.success-stories-section {
		padding: 100px 0;
	}
	.wwd2-section {
		padding: 100px 0 52px;
	}
	.wwd2-list ul li:nth-child(5) {
		margin-left: 0;
	}
	.wwd2-list ul li:nth-child(2) {
		margin-top: 0;
	}
	.wwd2-list ul li:nth-child(4) {
		margin-top: 0;
	}
	.wwd2-list ul li {
		width: 100%;
		min-width: 100%;
		margin-bottom: 48px;
	}
	.wwd2-section .section-top {
		margin-bottom: 64px;
	}
	.support-section .tt-hold {
		margin-bottom: 64px;
	}
	.support-section {
		padding: 100px 0 70px;
	}
	.support-logos-list ul li {
		width: 33.333%;
		min-width: 33.333%;
		margin-bottom: 30px;
	}
	.support-logos-list ul {
		margin-left: -15px;
		width: calc(100% + 30px);
	}
	.community-overview-right {
		padding-left: 0;
		width: 100%;
	}
	.community-overview-left {
		width: 100%;
		margin-bottom: 24px;
	}
	.community-overview-section .section-top {
		margin-bottom: 64px;
		max-width: 100%;
	}
	.community-overview-section {
		padding: 100px 0;
	}
	.collage-img-desc {
		font-size: 14px;;
	}
	.collage-img-location {
		font-size: 14px;
		padding-left: 25px;
		background: url(../img/icon-loc.svg) no-repeat top 1px left;
	}
	.collage-carousel-item {
		width: 280px;
	}
	.owl-item:nth-child(even) .collage-carousel-item {
		padding-top: 32px;
	}
	.collage-carousel-hold {
		margin-top: 64px;
	}
	.image-dot span {
		/* width: 60px;
		font-size: 14px; */
		/* top: -46px;
		left: calc(100% + 44px); */
		/* top: -26px;
    	left: calc(100% + 18px); */
		font-size: 14px;
	}
	.image-dot span:before {
		/* top: 8px;
		width: 41px;
		height: 19px;
		right: calc(100% + 8px);
		display: none; */
	}
	.image-dot span:after {
		/* content: '';
		position: absolute;
		right: calc(100% + 4px);
		top: 10px;
		height: 1px;
		width: 10px;
		transform-origin: right bottom;
		transform: rotate(-45deg);
		background: #fff */
	}
	.image-dot:before {
		width: 24px;
		height: 24px;
		border: 1px solid #fff;
	}
	.image-dot {
		width: 14px;
		height: 14px;
	}
	.image-dot.image-dot-2 span:before {
		width: 48px;
		height: 9px;
		background: url(../img/line-image-dot-mob-1.svg) no-repeat center center / 100% 100%;
		top: 10px;
    	right: calc(100% + 9px);
	}
	.image-dot.image-dot-2 span {
		width: 140px;
		left: calc(100% + 52px);
		top: -27px;
	}
	.image-dot.image-dot-3 span:before {
		width: 51px;
		height: 20px;
		background: url(../img/line-image-dot-mob-2.svg) no-repeat center center / 100% 100%;
		top: -9px;
    	right: calc(100% + 9px);
	}
	.image-dot.image-dot-3 span {
		left: calc(100% + 56px);
		top: 34px;
		width: 110px;
	}
	.image-dot.image-dot-4 span:before {
		width: 14px;
		height: 13px;
		background: url(../img/line-image-dot-mob-3.svg) no-repeat center center / 100% 100%;
		top: 28px;
    	left: calc(100% + 6px);
	}
	.image-dot.image-dot-4 span {
		width: 126px;
		right: calc(100% + 16px);
    	top: -50px;
	}

	.image-dot.image-dot-8 span:before {
		width: 33px;
		height: 16px;
		background: url(../img/line-image-dot-mob-4.svg) no-repeat center center / 100% 100%;
		top: -6px;
		left: calc(100% + 0px);
	}
	.image-dot-8.image-dot-line-2 span:before {
		-webkit-transform: rotateX(0deg) rotateY(0deg);
		-moz-transform: rotateX(0deg) rotateY(0deg);
		transform: rotateX(0deg) rotateY(0deg);
	}
	.image-dot.image-dot-8 span {
		width: 120px;
		right: calc(100% + 28px);
    	top: 28px;
	}


	.image-dot.image-dot-9 span:before {
		width: 33px;
		height: 16px;
		background: url(../img/line-image-dot-mob-5.svg) no-repeat center center / 100% 100%;
		top: 8px;
		right: calc(100% + 6px);
	}
	.image-dot.image-dot-9 span {
		width: 70px;
		left: calc(100% + 32px);
		top: -33px;
	}

	.intro-simple-section .grid-container.nopadright {
		padding-left: 0;
	}
	.contact-section .tt-hold {
		margin-bottom: 64px;
	}
	.contact-section {
		padding: 100px 0;
	}
	.awards-section .section-top {
		margin-bottom: 64px;
	}
	.awards-section {
		padding: 100px 0 100px;
	}
	.diff-carousel-item {
		width: calc(100vw - 90px);
	}
	.differentiators-section .tt-hold {
		margin-bottom: 64px;
	}
	.differentiators-section {
		padding: 100px 0;
	}
	.overview-quote-author {
		font-size: 16px;
		margin-top: 16px;
	}
	.overview-quote-text {
		font-size: 20px;
	}
	.overview-quote-hold {
		margin-top: 40px;
		max-width: 800px;
	}
	.overview-carousel-hold {
		width: calc(100% + 20px);
	}
	.overview-section .section-top {
		margin-bottom: 48px;
	}
	.overview-section {
		padding: 100px 0 100px;
	}
	.intro-simple-link {
		margin-top: 16px;
	}
	.goals-list ul li span {
		font-size: 80px;
		display: block;
		min-width: 100%;
	}
	.goals-image{
		margin-left: -20px;
		width: calc(100% + 40px);
	}
	.goals-hold {
		margin-bottom: 64px;
	}
	.goals-section {
		padding: 100px 0 0;
	}
	.projects-section .tt-hold {
		margin-bottom: 64px;
	}
	.wwd-section.projects-section {
		padding-top: 100px;
	}
	.mission-left {
		margin-bottom: 32px;
		padding-right: 0;
	}
	.mission-section .section-top {
		margin-bottom: 48px;
	}
	.mission-section {
		padding: 100px 0;
	}
	.open-positions-block .title-40 {
		color: #797468;
		margin-bottom: 16px;
	}
	.open-positions-block {
		margin-bottom: 64px;
	}
	.opb-item-location {
		width: 100%;
	}
	.opb-item-title {
		width: 100%;
		margin-bottom: 6px;
	}
	.open-positions-section .section-top {
		margin-bottom: 64px;
	}
	.open-positions-section {
		padding: 100px 0;
	}
	.tc-item-text:before {
		top: -48px;
	}
	.tc-item-video {
		width: 100%;
		padding-left: 0px;
	}
	.tc-item-author {
		font-size: 16px;
		width: 100%;
	}
	.tc-item-author:not(:last-child) {
		margin-bottom: 8px;
	}
	.tc-item-text {
		font-size: 18px;
		margin-bottom: 24px;
	}
	.tc-item {
		padding-right: 0;
		width: calc(100vw - 80px);
		border-right: none;
		display: block;
	}
	.tc-item-right {
		width: 100%;
	}
	.tc-item-left {
		width: 100%;
		margin-bottom: 32px;
	}
	.tc-item-image {
		width: 90px;
		height: 90px;
	}
	.testimonials-section .section-top {
		margin-bottom: 64px;
	}
	.testimonials-section {
		padding: 100px 0;
	}
	.tt-hold {
		margin-bottom: 48px;
	}
	.programs-tabs .tabs-title {
		padding-right: 20px;
		margin-right: 20px;
	}
	.programs-tabs .tabs-title:last-child {
		padding-right: 20px;
	}
	.programs-tabs .tabs {
		margin-left: -20px;
		width: calc(100% + 40px);
		min-width: calc(100% + 40px);
		padding-left: 20px;
		margin-bottom: 32px;
	}
	.program-content .title-40 {
		margin-bottom: 24px;
	}
	.program-content-hold {
		width: 100%;
		padding-left: 0;
	}
	.program-image-hold {
		width: 100%;
		margin-bottom: 32px;
	}
	.programs-section {
		padding: 100px 0;
	}
	.company-values-section {
		padding: 100px 0;
		padding: 50px 0;
	}
	.culture-bottom-image-hold {
		margin-top: -20px;
		margin-top: 50px;
		padding-left: 0;
		max-width: 70%;
	}
	.crs-right {
		width: 100%;
		padding-left: 20%;
		margin-top: 40px;
	}
	.culture-right-split {
		margin-top: 32px;
	}
	.crs-left {
		padding-right: 0px;
		width: 100%;
	}	
	.culture-section {
		padding: 70px 0 0;
	}
	.btn-dark, .btn-dark:focus, .btn-dark:active {
		font-size: 16px;
	}
	.related-section .title-80 {
		margin-bottom: 36px;
	}
	.related-section {
		padding: 100px 0;
	}
	.single-content-section {
		padding-bottom: 100px;
	}
	.share-block {
		margin-top: 60px;
	}
	.entry .alignleft {
		float: none;
		width: 100%;
		margin-right: 0;
		margin-bottom: 12px;
	}
	.entry p:empty {
		display: none;
	}
	.entry .alignright {
		float: none;
		width: 100%;
		margin-left: 0px;
		margin-bottom: 12px;
	}
	.entry .wp-caption {
		margin-top: 48px;
		margin-bottom: 48px;
	}
	.entry p.wp-caption-text {
		margin-top: 12px;
		font-size: 12px;
	}
	.intro-single-author {
		font-size: 16px;
	}
	.intro-single-details {
		margin-bottom: 20px;
	}
	.intro-single-details ul li {
		font-size: 16px;
		margin-right: 32px;
	}
	.grid-container.grid-container-md {
		padding-left: 20px;
		padding-right: 20px;
	}
	.intro-single-section {
		padding: 140px 0 64px;
	}
	.paginate ul li .page-numbers.prev {
		padding-left: 0;
	}
	.paginate ul li .page-numbers.next {
		padding-right: 0;
	}
	.paginate ul li .page-numbers.prev:before, 
	.paginate ul li .page-numbers.next:before {
		display: none;
	}
	.paginate ul li .page-numbers.prev:after, 
	.paginate ul li .page-numbers.next:after {
		display: none;
	}
	.paginate ul li {
		margin-right: 16px;
	}
	.blog-archive ul {
		margin-left: 0;
		width: 100%;
	}
	.blog-archive ul li {
		width: 100%;
		min-width: 100%;
		margin-left: 0;
		margin-right: 0;
		margin-bottom: 60px;
	}
	.filter-items ul li {
		margin-right: 24px;
	}
	.filter-search {
		margin-left: 0;
		min-width: 100%;
		margin-top: 24px;
	}
	.title-40 {
		font-size: 26px;
	}
	.intro-tt-section {
		padding-bottom: 64px;
	}
	.form-element.form-element-half {
		width: 100%;
	}
	.cf-right {
		padding-left: 20px;
	}
	.cantact-form-section {
		padding: 100px 0;
	}
	.opportunity-title {
		font-size: 26px;
	}
	.opportunities-list ul li:nth-child(2n) {
		transition-delay: 0.1s;
	}
	.opportunity-image {
		margin-bottom: 24px;
	}
	.opportunities-section {
		padding: 100px 0;
	}
	.opportunities-list ul li {
		width: 100%;
		min-width: 100%;
		margin-right: 0px;
		margin-bottom: 40px;
	}
	.opportunities-list ul li:last-child {
		margin-bottom: 0px;
	}
	.other-locations {
		padding: 100px 0 60px;
	}
	.other-locations .title-80 {
		margin-bottom: 36px;
	}
	.other-locations-list ul li {
		width: 100%;
    	min-width: 100%;
		margin-bottom: 32px;
	}
	.other-locations-list ul li p {
		font-size: 15px;
		margin-bottom: 6px;
	}
	.other-locations-list ul li h3 {
		font-size: 20px;
		margin-bottom: 8px;
	}
	.offices-section {
		padding: 100px 0;
	}
	.wwo-stats span {
		font-size: 80px;
		margin-right: 10px;
	}
	.intro-tti-section {
		padding-bottom: 20px;
	}
	.wwo-section {
		padding: 80px 0 100px;
	}
	.intro-tti-image {
		margin-left: -20px;
		width: calc(100% + 40px);
		padding-bottom: 60%;
	}
	.intro-tti {
		margin-bottom: 48px;
	}
	.intro-tti-left {
		margin-bottom: 24px;
	}
	.intro-reg-top {
		padding-top: 100px;
	}
	.leadership-list:after {
		display: none;;
	}
	.leadership-list {
		border-top: none;
		padding-top: 0;
		padding-bottom: 0;
	}
	.leadership-section {
		padding: 100px 0 100px;
	}
	.leadership-list ul li {
		width: 100%;
		min-width: 100%;
		margin-right: 0;
		margin-bottom: 20px;
	}
	.wwd-list ul li:nth-child(4n+3), .wwd-list ul li:nth-child(4n) {
		margin-top: 0;
	}
	.wwdl-item-text {
		margin-bottom: 16px;
	}
	.wwdl-item-title {
		margin-bottom: 16px;
		font-size: 32px;
	}
	.wwdl-item-image {
		margin-bottom: 24px;
	}
	.wwd-list ul li {
		width: 100%;
		margin-bottom: 32px;
	}
	.wwd-list ul li:last-child {
		margin-bottom: 0px;
	}
	.wwd-section .section-top {
		margin-bottom: 48px;
	}
	.wwd-section {
		padding: 50px 0 100px;
	}
	.image-section {
		margin-bottom: 50px;
	}
	.stats-section:after {
		height: 100px;
	}
	.stats-list ul li span {
		font-size: 90px;
	}
	.stats-list ul li:nth-child(3n+2) {
		transition-delay: 0s;
	}
	.stats-list ul li:nth-child(3n) {
		transition-delay: 0s;
	}
	.stats-list ul li:nth-child(3n+2) {
		width: 100%;
	}
	.stats-list ul li:after {
		display: none;
	}
	.stats-list ul li {
		width: 100%;
		padding-left: 0;
		padding-right: 0;
		margin-bottom: 32px;
	}
	.stats-section-top {
		margin-bottom: 48px;
	}	
	.timeline-section {
		padding: 100px 0 100px;
		padding: 60px 0 100px;
	}
	.timeline-top {
		margin-bottom: 48px;
	}
	.timeline-carousel-item {
		padding-bottom: 100px;
	}
	.timeline-carousel-hold {
		padding: 0 20px;
	}
	.timeline-carousel.owl-carousel .owl-nav button.owl-next, .timeline-carousel.owl-carousel .owl-nav button.owl-prev {
		display: none;
	}
	.core-values-list ul li:nth-last-child(2):not(:nth-child(even)) {
		border-bottom: 1px solid #404040;
	}
	.core-values-section {
		padding: 80px 0 40px;
	}
	.core-values-left {
		margin-bottom: 32px;
	}
	.core-values-list ul li {
		width: 100%;
		padding-right: 0;
		padding-bottom: 32px;
		margin-bottom: 32px;
	}
	.text-24 p {
		margin-bottom: 24px;
	}
	.amb-right {
		padding-left: 20px;
		padding-right: 0;
	}
	.amb-left {
		width: 100%;
		margin-bottom: 32px;
	}
	.amb-image {
		padding-bottom: 116%;
	}
	.about-mission-top {
		margin-bottom: 32px;
	}
	.intro-about-sec-image-hold {
		margin-left: 30px;
		width: 200px;
		margin-top: -30px;
	}
	.intro-about-image {
		margin-top: 36px;
	}
	.title-96 {
		font-size: 46px;
		letter-spacing: -2px;
		margin-bottom: 24px;
	}
	.intro-simple-section {
		padding: 100px 0 0;
	}
	header {
		padding: 20px 0 20px;
	}
	header.scrolled {
		padding: 20px 0;
	}
	.mob-nav ul li a {
		font-size: 24px;
	}
	.mob-nav-column-bottom {
		padding: 0px 20px 48px 20px ;
	}
	.mob-nav-column + .mob-nav-column {
		padding-left: 20px;
		padding-top: 0;
	}
	.mob-nav-column {
		padding: 70px 20px 40px 20px;
		overflow: hidden;
	}
	.mob-nav-hold {
		left: 0;
		width: 100%;
		background: #fff;
		display: block;
		overflow: auto;
	}
	.process-mob-items {
		margin-top: 48px;
	}
	.pfi-link {
		margin-top: 24px;
	}
	.footer-text {
		font-size: 14px;
	}
	.footer-sec-nav ul li:after {
		right: -13px;
	}
	.footer-sec-nav ul li {
		margin-right: 23px;
	}
	.footer-sec-nav ul li a {
		font-size: 14px;
	}
	.footer-socials ul li a {
		font-size: 14px;
	}
	.footer-nav ul li a {
		font-size: 16px;
	}
	.footer-nav ul li {
		min-width: 45%;
		margin-bottom: 32px;
	}
	.footer-nav ul li:nth-child(2n) {
		min-width: 55%;
	}
	.main-footer-left img {
		max-width: 179px;
	}
	.main-footer {
		margin-bottom: 32px;
	}
	.main-footer-right {
		width: 100%;
		margin-bottom: 48px;
	}
	.main-footer-left {
		width: 100%;
		order: 2;
	}
	.link-lg-arrow span:before, 
	.link-lg-arrow span:after {
		background: url(../img/arrow-right-dark.svg) no-repeat center center;
	}
	.link-lg-arrow span {
		width: 24px;
		height: 24px;
		top: 3px;
		border: 1px solid #464545;
	}
	.link-lg-arrow, .link-lg-arrow:focus, .link-lg-arrow:active {
		font-size: 24px;
		padding-right: 48px;
		line-height: 30px;
		letter-spacing: -1px;
	}
	.prefooter {
		margin-bottom: 48px;
		padding-bottom: 24px;
	}
	footer {
		padding: 24px 0 64px;
	}
	.blog-home-section {
		padding-bottom: 80px;
	}
	.blog-carousel-image {
		padding-bottom: 100% !important;
	}
	.blog-carousel-image img {
		position: absolute;
		top: 0;
		left: 0;
		right: 0;
		bottom: 0;
		width: 100%;
		height: 100%;
		object-fit: cover;
		-o-object-fit: cover;
		object-fit: cover;
	}
	.bhf-image {
		padding-bottom: 100%;
	}
	.blog-home-section .section-top {
		max-width: 100%;
		margin-bottom: 32px;
	}
	.bci-link {
		margin-top: 24px;
	}
	.business-carousel-item {
		width: 200px;
	}
	.business-carousel-item .title-48 {
		margin-bottom: 16px;
		font-size: 24px;
	}
	.business-top {
		margin-bottom: 70px;
	}
	.business-top-left {
		margin-bottom: 24px;
	}
	.business-section {
		padding: 120px 0 120px;
	}
	.about-v2-section {
		margin-bottom: 0;
	}
	.about-v2-image {
		padding-bottom: 75%;
		margin-left: -20px;
		width: calc(100% + 40px);
	}
	.about-v2-hold {
		margin-bottom: 40px;
	}
	.about-v2-link {
		margin-top: 32px;
	}
	.link-arrow.link-arrow-lg, .link-arrow.link-arrow-lg:focus .link-arrow.link-arrow-lg:active {
		font-size: 16px;
	}
	.about-v2-left {
		margin-bottom: 24px;
	}
	.images-content-carousel-section {
		margin-bottom: 140px;
	}
	.ic-item {
		opacity: 0.5;
		transition: 0.3s;
	}
	.owl-item.active .ic-item {
		opacity: 1;
	}
	.ic-item-link {
		margin-top: 24px;
	}
	.title-48 {
		font-size: 24px;
	}
	.ic-item-image {
		padding-bottom: 70.6%;
	}
	.images-content-carousel-hold {
		padding: 0 0px !important;
	}
	.images-content-carousel-section .section-top {
		margin-bottom: 40px;
	}
	.process-section {
		padding: 100px 0 100px;
		margin-bottom: 80px;
	}
	.scrolling-lines-section {
		margin-bottom: 105px;
	}
	.sl-link {
		margin-top: 32px;
	}
	.sl-image {
		padding-bottom: 87.5%;
		margin-bottom: 96px;
		margin-left: -20px;
		width: calc(100% + 40px);
	}
	.scrolling-line-2 .title-160 {
		margin-bottom: -0.35em;
	}
	.scrolling-line-1 {
		margin-bottom: 8px;
	}
	.about-section {
		margin-bottom: 100px;
	}
	.about-hold-sec-left {
		margin-bottom: 40px;
	}
	.about-sec-image {
		width: calc(100% + 20px);
		padding-bottom: 137.5%;
	}
	.about-hold-sec .number-text-combo {
		margin-top: 48px;
	}
	.text-24 {
		font-size: 16px;
	}
	.text-20 {
		margin-bottom: 24px;
	}
	.about-hold {
		margin-bottom: 96px;
	}
	.about-image {
		margin-left: -20px;
		width: calc(100% + 20px);
		padding-bottom: 100%;
	}
	.about-hold .number-text-combo {
		margin-top: 48px;
	}
	.number-text-combo strong {
		font-size: 18px;
	}
	.link-arrow span {
		width: 20px;
		height: 20px;
	}
	.link-arrow, .link-arrow:focus, .link-arrow:active {
		font-size: 16px;
		line-height: 20px;
		padding-right: 32px;
	}
	.text-20.in-view.has-line:before {
		width: 40px;
	}
	.about-hold .text-20 {
		margin-bottom: 24px;
	}
	.about-section .title-80 + .about-hold {
		margin-top: 30px;
	}
	.title-80 {
		font-size: 40px;
		margin-bottom: 24px;
	}
	.home-intro-image {
		padding-bottom: 100%;
		margin-left: -20px;
		width: calc(100% + 40px);
	}
	.home-intro-section {
		margin-bottom: 64px;
		padding-top: 100px;
	}
	.home-intro-section .text-20 {
		max-width: 100%;
		margin-bottom: 32px;
	}
	.intro-anim-3.fade:before {
		width: 40px;
	}
	.text-20.has-line {
		padding-left: 64px;
	}
	.text-item {
		-webkit-box-align: start;
		-ms-flex-align: start;
		align-items: flex-start;
		-webkit-box-pack: end;
		-moz-box-pack: start;
		-ms-flex-pack: start;
		-webkit-justify-content: flex-start;
		justify-content: flex-start;
		text-align: left;
		color: #797468;
		padding-bottom: 0;
	}
	.title-160 {
		font-size: 15.8vw;
		letter-spacing: -3px;
		line-height: 1;
	}
	.home-intro-right {
		width: 100%;
		text-align: left;
	}
	.home-intro-left {
		width: 100%;
	}
	
	.hamburger-box {
		width: 24px;
		height: 20px;
	}
	.grid-container {
		padding-left: 20px;
		padding-right: 20px;
	}
	.logo img {
		max-width: 105px;
		height: auto;
	}
	.hamburger-inner:before {
		top: -8px;
	}
	.hamburger-inner:after {
		bottom: -8px;
	}
	.hamburger-inner, .hamburger-inner:after, .hamburger-inner:before {
		width: 24px;
		height: 3px;
	}
	.footer-large-link a, 
	.footer-large-link a:focus, 
	.footer-large-link a:active {
		font-size: 18px;
	}
	.company-values-left #ok span {
		font-size: 18px;
		padding: 8px 20px;
	}
}

/*-------------------------------------------------------*/
/* Bootstrap 5 Padding & Margin to make the site at least a bit usable...
/*-------------------------------------------------------*/
.m-0 {
    margin: 0!important
}

.m-1 {
    margin: .25rem!important
}

.m-2 {
    margin: .5rem!important
}

.m-3 {
    margin: 1rem!important
}

.m-4 {
    margin: 1.5rem!important
}

.m-5 {
    margin: 3rem!important
}

.m-auto {
    margin: auto!important
}

.mx-0 {
    margin-right: 0!important;
    margin-left: 0!important
}

.mx-1 {
    margin-right: .25rem!important;
    margin-left: .25rem!important
}

.mx-2 {
    margin-right: .5rem!important;
    margin-left: .5rem!important
}

.mx-3 {
    margin-right: 1rem!important;
    margin-left: 1rem!important
}

.mx-4 {
    margin-right: 1.5rem!important;
    margin-left: 1.5rem!important
}

.mx-5 {
    margin-right: 3rem!important;
    margin-left: 3rem!important
}

.mx-auto {
    margin-right: auto!important;
    margin-left: auto!important
}

.my-0 {
    margin-top: 0!important;
    margin-bottom: 0!important
}

.my-1 {
    margin-top: .25rem!important;
    margin-bottom: .25rem!important
}

.my-2 {
    margin-top: .5rem!important;
    margin-bottom: .5rem!important
}

.my-3 {
    margin-top: 1rem!important;
    margin-bottom: 1rem!important
}

.my-4 {
    margin-top: 1.5rem!important;
    margin-bottom: 1.5rem!important
}

.my-5 {
    margin-top: 3rem!important;
    margin-bottom: 3rem!important
}

.my-auto {
    margin-top: auto!important;
    margin-bottom: auto!important
}

.mt-0 {
    margin-top: 0!important
}

.mt-1 {
    margin-top: .25rem!important
}

.mt-2 {
    margin-top: .5rem!important
}

.mt-3 {
    margin-top: 1rem!important
}

.mt-4 {
    margin-top: 1.5rem!important
}

.mt-5 {
    margin-top: 3rem!important
}

.mt-auto {
    margin-top: auto!important
}

.me-0 {
    margin-right: 0!important
}

.me-1 {
    margin-right: .25rem!important
}

.me-2 {
    margin-right: .5rem!important
}

.me-3 {
    margin-right: 1rem!important
}

.me-4 {
    margin-right: 1.5rem!important
}

.me-5 {
    margin-right: 3rem!important
}

.me-auto {
    margin-right: auto!important
}

.mb-0 {
    margin-bottom: 0!important
}

.mb-1 {
    margin-bottom: .25rem!important
}

.mb-2 {
    margin-bottom: .5rem!important
}

.mb-3 {
    margin-bottom: 1rem!important
}

.mb-4 {
    margin-bottom: 1.5rem!important
}

.mb-5 {
    margin-bottom: 3rem!important
}

.mb-auto {
    margin-bottom: auto!important
}

.ms-0 {
    margin-left: 0!important
}

.ms-1 {
    margin-left: .25rem!important
}

.ms-2 {
    margin-left: .5rem!important
}

.ms-3 {
    margin-left: 1rem!important
}

.ms-4 {
    margin-left: 1.5rem!important
}

.ms-5 {
    margin-left: 3rem!important
}

.ms-auto {
    margin-left: auto!important
}

.p-0 {
    padding: 0!important
}

.p-1 {
    padding: .25rem!important
}

.p-2 {
    padding: .5rem!important
}

.p-3 {
    padding: 1rem!important
}

.p-4 {
    padding: 1.5rem!important
}

.p-5 {
    padding: 3rem!important
}

.px-0 {
    padding-right: 0!important;
    padding-left: 0!important
}

.px-1 {
    padding-right: .25rem!important;
    padding-left: .25rem!important
}

.px-2 {
    padding-right: .5rem!important;
    padding-left: .5rem!important
}

.px-3 {
    padding-right: 1rem!important;
    padding-left: 1rem!important
}

.px-4 {
    padding-right: 1.5rem!important;
    padding-left: 1.5rem!important
}

.px-5 {
    padding-right: 3rem!important;
    padding-left: 3rem!important
}

.py-0 {
    padding-top: 0!important;
    padding-bottom: 0!important
}

.py-1 {
    padding-top: .25rem!important;
    padding-bottom: .25rem!important
}

.py-2 {
    padding-top: .5rem!important;
    padding-bottom: .5rem!important
}

.py-3 {
    padding-top: 1rem!important;
    padding-bottom: 1rem!important
}

.py-4 {
    padding-top: 1.5rem!important;
    padding-bottom: 1.5rem!important
}

.py-5 {
    padding-top: 3rem!important;
    padding-bottom: 3rem!important
}

.pt-0 {
    padding-top: 0!important
}

.pt-1 {
    padding-top: .25rem!important
}

.pt-2 {
    padding-top: .5rem!important
}

.pt-3 {
    padding-top: 1rem!important
}

.pt-4 {
    padding-top: 1.5rem!important
}

.pt-5 {
    padding-top: 3rem!important
}

.pe-0 {
    padding-right: 0!important
}

.pe-1 {
    padding-right: .25rem!important
}

.pe-2 {
    padding-right: .5rem!important
}

.pe-3 {
    padding-right: 1rem!important
}

.pe-4 {
    padding-right: 1.5rem!important
}

.pe-5 {
    padding-right: 3rem!important
}

.pb-0 {
    padding-bottom: 0!important
}

.pb-1 {
    padding-bottom: .25rem!important
}

.pb-2 {
    padding-bottom: .5rem!important
}

.pb-3 {
    padding-bottom: 1rem!important
}

.pb-4 {
    padding-bottom: 1.5rem!important
}

.pb-5 {
    padding-bottom: 3rem!important
}

.ps-0 {
    padding-left: 0!important
}

.ps-1 {
    padding-left: .25rem!important
}

.ps-2 {
    padding-left: .5rem!important
}

.ps-3 {
    padding-left: 1rem!important
}

.ps-4 {
    padding-left: 1.5rem!important
}

.ps-5 {
    padding-left: 3rem!important
}