@font-face {
    font-family: 'Lufga';
    src:
        url('../fonts/Lufga-Regular.woff2') format('woff2'),
        url('../fonts/Lufga-Regular.woff') format('woff'),
        url('../fonts/Lufga-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Lufga';
    src: url('../fonts/LufgaLight-subset.woff2') format('woff2');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Lufga';
    src:
        url('../fonts/Lufga-Medium.woff2') format('woff2'),
        url('../fonts/Lufga-Medium.woff') format('woff'),
        url('../fonts/Lufga-Medium.ttf') format('truetype');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Lufga';
    src:
        url('../fonts/Lufga-Bold.woff2') format('woff2'),
        url('../fonts/Lufga-Bold.woff') format('woff'),
        url('../fonts/Lufga-Bold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

:root {
    --cream: #F9F9EA;
    --hybrid-green: #BED732;
    --heythere-green: #4E544B;
    --darker-green: #3C4439;
    --spiro-citron: #E1E17C;
    --nspiro-tangerine: #FF5C35;
}

/* 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: 'Lufga', sans-serif;
    background: var(--heythere-green);
}
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 0;
}
.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;
}
.nopad {
	padding:0;
}
.nopadleft {
	padding-left:0;
}
.nopadright {
	padding-right:0;
}
strong, b {
	font-weight: bold;
}
i {
	font-style: italic;
}
em {
	font-style: italic;
}
.clear {
	clear:both;
}
.left {
	float:left;
	margin-right:15px;
	margin-bottom:15px;
}
.right {
	float:right;
	margin-left:15px;
	margin-bottom:15px;
}
.alignleft {
	float:left;
	margin-right:15px;
	margin-bottom:15px;
}
.alignright {
	float:right;
	margin-left:15px;
	margin-bottom:15px;
}
.aligncenter,
div.aligncenter {
    display: block;
    margin: 5px auto 5px auto;
}
a img.aligncenter {
    display: block;
    margin-left: auto;
    margin-right: auto
}
.mx-auto {
	margin-left: auto;
	margin-right: auto;
}
.wp-caption {
	max-width: 100%;
    margin-bottom: 15px;
}
.invi {
	visibility: hidden;
	opacity: 0;
}
.object-fit {
	position: relative;
}
.object-fit > img {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	width: 100%;
	height: 100%;
	-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;

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

.prev-scroll {
    overflow: hidden;
    height: 100%;
    position: relative;
}

.grid-container {
    width: 100%;
    max-width: 1320px;
    padding: 0 40px;
}
.grid-container-1340 {
    max-width: 1420px;
}
.grid-container-820  {
    max-width: 900px;
}

footer {
    position: relative;
}
.footer-anim {
    position: absolute;
    right: 0; 
    bottom: 0;
    pointer-events: none;
    overflow: hidden;
    z-index: -1;
    opacity: 0.5;

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

    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
}
.footer-anim svg {
    width: auto !important;
    max-width: 100%;
    max-height: 100%;
}
.main-footer {
    border-top: 1px solid rgba(252, 255, 235, 0.2);
    padding: 27px 0 25px;
    position: relative;
    z-index: 2;
}
.footer-nav-right ul li {
    margin-bottom: 20px;
    line-height: 0;
}
.footer-nav-right ul li:last-child {
    margin-bottom: 0;
}
.footer-nav-right ul li a {
    color: var(--cream);
    font-size: 14px;
    line-height: 1;
    letter-spacing: 1.6px;
    text-transform: uppercase;
    transition: 200ms linear;
}
.footer-nav-right ul li a:hover {
    color: var(--hybrid-green);
}
.footer-nav-right-box {
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;

    flex-wrap: wrap;
    -ms-flex-wrap: wrap;
}
.footer-nav-item {
    width: 25%;
    padding-right: 20px;
}
.footer-copywrite {
    width: 100%;
    padding-top: 44px;
    color: var(--cream);
    font-size: 16px;
    letter-spacing: -0.48px;
    font-size: 12px;
    letter-spacing: -0.36px;
}
.home-footer {
    padding: 24px 0 140px;
    position: relative;
    z-index: 2;
}
.home-footer.home-footer-lg {
    padding-top: 214px;
}
.home-footer-top {
    margin-bottom: 166px;
}

.btn-link-green,
.btn-link-green:focus,
.btn-link-green:active {
    display: inline-block;
    font-size: 16px;
    font-weight: 500;
    line-height: 125%;
    text-transform: uppercase;
    color: var(--hybrid-green);
    cursor: pointer;
    transition: 0.2s ease-in-out;
    position: relative;
}
.btn-link-green::before {
    content: '';
    width: 20px;
    height: 1px;
    background: var(--hybrid-green);
    position: absolute;
    bottom: -4px; left: 0;
    transition: 600ms cubic-bezier(.215,.61,.355,1);
    -webkit-filter: blur(2.5px);
    filter: blur(2.5px);
}
.btn-link-green::after {
    content: '';
    width: 20px;
    height: 1px;
    background: var(--hybrid-green);
    position: absolute;
    bottom: -4px; left: 0;
    transition: 600ms cubic-bezier(.215,.61,.355,1);
}
.btn-link-green:hover {
    color: var(--hybrid-green);
}
.btn-link-green:hover::before,
.btn-link-green:hover::after {
    width: 100%;
}
.home-footer-left {
    padding-right: 40px;
}
.text-16-upcase {
    font-size: 16px;
    font-weight: 500;
    line-height: 130%;
    letter-spacing: 1.6px;
    text-transform: uppercase;
    color: var(--cream);
}
.title-123 {
    font-size: 123px;
    font-weight: 700;
    line-height: 98%;
    letter-spacing: -4.92px;
    text-transform: uppercase;
    color: var(--cream);
}
.title-123 strong {
    font-weight: 700;
    color: var(--hybrid-green);
}
.title-123 sup {
    font-size: 25%;
    font-style: normal;
    font-weight: 600;
    letter-spacing: 2.12px;
    top: -2.53em;
    margin-left: 2px;
}
.title-123 strong sup {
    display: inline-block;
    width: 0;
    margin-left: 0 !important;
}
.title-123 strong sup span {
    margin-left: 2px;
}
.home-footer-right-btn {
    padding-top: 56px;
}

header {
    position: fixed;
    top: 0; right: 0; left: 0;
    z-index: 99;
    padding: 17px 0;
    transition: transform 0.3s;
}
header::after {
    content: '';
    width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.05);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    position: absolute;
    top: 0; left: 0;
    opacity: 0;
    z-index: -1;
    transition: 0.2s linear;
}
header.is-active {
    background: transparent;
}
header.header-scrolled.scrolling-up::after {
    opacity: 1;
}
header .grid-container {
    max-width: 1400px;
}
header.scrolling-down {
    transform: translateY(-100%) translateZ(0);
}
header.scrolling-up {
    transform: translateY(0px) translateZ(0);
}
.header-box {
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;

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

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

    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}
.header-logo a {
    display: inline-block;
    position: relative;
}
.header-logo img {
    max-height: 32px;
}
.header-nav {
    padding: 0 20px;
}
.header-nav > ul > li {
    display: inline-block;
    margin-right: 48px;
    position: relative;
}
.header-nav > ul > li:last-child {
    margin-right: 0;
}
.header-nav > ul > li > a {
    display: inline-block;
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: 130%;
    letter-spacing: 1.6px;
    text-transform: uppercase;
    color: var(--cream);
    transition: 200ms linear;
    position: relative;
}
.header-nav > ul > li > a::before {
    content: '';
    width: 0;
    height: 1px;
    background: var(--hybrid-green);
    position: absolute;
    bottom: -4px; left: 0;
    transition: 600ms cubic-bezier(.215,.61,.355,1);
    -webkit-filter: blur(2.5px);
    filter: blur(2.5px);
}
.header-nav > ul > li > a::after {
    content: '';
    width: 0;
    height: 1px;
    background: var(--hybrid-green);
    position: absolute;
    bottom: -4px; left: 0;
    transition: 600ms cubic-bezier(.215,.61,.355,1);
}
.header-nav > ul > li > a:hover,
.header-nav > ul > li.is-active > a {
    color: var(--hybrid-green);
}
.header-nav > ul > li > a:hover::before,
.header-nav > ul > li > a:hover::after {
    width: 100%;
}
.header-nav > ul > li.is-active > a::before,
.header-nav > ul > li.is-active > a::after {
    width: 100%;
}
.header-nav > ul > li.current-menu-item a::after {
    width: 100%;
    background: var(--cream);
}
.header-right .btn-link-green,
.header-right .btn-link-green:focus,
.header-right .btn-link-green:active {
    font-size: 14px;
}

.mobile-menu-hold {
    position: fixed;
    top: 0; right: 0; bottom: 0; left: 0;
    background: var(--heythere-green) url(../img/bg-mobile-menu.png) no-repeat top right;
    z-index: 98;
    display: none;
    padding: 120px 10px 80px;
    height: 100vh;
}
header.is-active {
    backdrop-filter: none;
}
.mobile-menu-hold .grid-container {
    height: 100%;
}
.mobile-menu-hold-box {
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;

    display: flex;
    flex-wrap: wrap;
    
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: end;

    height: 100%;
    overflow: auto;
}
.mobile-menu-hold-box > div {
    width: 100%;
}
.btn-green,
.btn-green:focus,
.btn-green:active {
    display: inline-block;
    cursor: pointer;
    background: var(--hybrid-green);
    color: var(--heythere-green);
    font-size: 14px;
    font-weight: 500;
    line-height: 1.29;
    text-transform: uppercase;
    text-align: center;
    padding: 24px 48px;
    transition: 0.2s linear;
	border-radius: 9999px;
    /* border: 1px solid var(--hybrid-green); */
}
.btn-green:hover {
    background: var(--darker-green);
    color: var(--hybrid-green);
}
.btn-green.btn-green-full,
.btn-green.btn-green-full:focus,
.btn-green.btn-green-full:active {
    width: 100%;
}
.mobile-menu-btn {
    padding-top: 24px;
    margin-bottom: 50px;
}
.mobile-menu-sm {
    padding-top: 40px;
}
.mobile-menu-sm ul li {
    line-height: 0;
    margin-bottom: 15px;
}
.mobile-menu-sm ul li:last-child {
    margin-bottom: 0;
}
.mobile-menu-sm ul li a {
    display: inline-block;
    color: var(--cream);
    font-size: 11px;
    line-height: 1.25;
    letter-spacing: -0.315px;
    text-transform: uppercase;
}
.mobile-menu-sm ul li a:hover {
    color: var(--cream);
}
.mobile-menu-sm ul li.current-menu-item a {
    color: var(--hybrid-green);
}
.mobile-menu ul li a {
    color: var(--cream);
    font-size: 48px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    letter-spacing: -1.92px;
    text-transform: uppercase;
}
.mobile-menu ul li a:hover {
    color: var(--cream);
}
.mobile-menu ul li.current-menu-item a {
    color: var(--hybrid-green);
}
.mobile-menu ul li ul li a {
    font-size: 36px;
}

.section-fullvh {
    min-height: 60vh;
    overflow: hidden;
}
.home-intro {
    position: relative;
}
.home-intro .grid-container {
    position: relative;
    z-index: 2;
}
.home-intro-box {
    min-height: 60vh;
    padding: 114px 0 59px;

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

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

    -ms-flex-line-pack: justify;
    align-content: space-between;
}
.home-intro-box > div {
    width: 100%;
}
.home-intro-box-text {
    opacity: 0;
    visibility: hidden;
    transition: 400ms linear;
    -webkit-transition-delay: 800ms;
    -o-transition-delay: 800ms;
    transition-delay: 800ms;
}
.home-intro-box-text .text-24-upcase {
    max-width: 606px;
    /* margin: -22px auto 18px; */
    margin: 0 auto 18px;
    font-size: 24px;
}
.home-intro-video {
    position: absolute;
    top: 0; 
    right: 0; 
    bottom: 0; 
    left: 0;
    pointer-events: none;
    overflow: hidden;
}
.home-intro-video::after {
    content: '';
    width: 100%; height: 100%;
    background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.50)), to(rgba(0, 0, 0, 0.00)));
    background: -o-linear-gradient(top, rgba(0, 0, 0, 0.50) 0%, rgba(0, 0, 0, 0.00) 100%);
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.50) 0%, rgba(0, 0, 0, 0.00) 100%);
    position: absolute;
    top: 0; left: 0;
}
.home-intro-video iframe {
    width: 100vw;
    height: 56.25vw; /* Given a 16:9 aspect ratio, 9/16*100 = 56.25 */
    min-height: 100vh;
    min-width: 177.77vh; /* Given a 16:9 aspect ratio, 16/9*100 = 177.77 */
    position: absolute;
    top: calc(50% + 1px);
    left: 50%;
    transform: translate(-50%, -50%);
}

.full-video-no-play-button {
    overflow: hidden;
}
.full-video-no-play-button img, 
.full-video-no-play-button iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.text-24-upcase {
    color: var(--cream);
    font-size: 20px;
    line-height: 1.29;
    font-weight: 700;
    line-height: normal;
    text-transform: uppercase;
}
.text-24-upcase strong {
    font-weight: 700;
    color: var(--hybrid-green);
}
.btn-video,
.btn-video:focus,
.btn-video:active {
    display: inline-block;
    cursor: pointer;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.25;
    text-transform: uppercase;
    color: var(--hybrid-green);
    padding-left: 28px;
    position: relative;
    transition: 0.2s ease-in-out;
}
.btn-video::before {
    content: "";
    width: 18px; height: 18px;
    background: url(../img/icon-play-green.svg) no-repeat center center;
    background-size: contain;
    position: absolute;
    top: 50%; left: 0;
    transform: translateY(-50%);
}
.btn-video:hover {
    color: var(--hybrid-green);
    opacity: 0.7;
}
.home-intro .animated-title {
    opacity: 0;
}
.home-intro.in-view .animated-title {
    opacity: 1;
}
.home-intro.in-view .animated-title .word {
    transform: translateY(0);
}
.home-intro.in-view .home-intro-box-text {
    opacity: 1;
    visibility: visible;
}

.section-about {
    padding: 105px 0 0;
    position: relative;
	overflow: hidden;
}
.section-about-left {
    padding-right: 20px;
}
.section-about-right {
    position: relative;
}
.pulse-circle-56p {
    display: inline-block;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    margin-right: 20px;
    -webkit-animation: pulse-circle 6000ms infinite;
    animation: pulse-circle 6000ms infinite;  
}

@-webkit-keyframes pulse-circle {
    0% {
		background: #BED732;
        -webkit-box-shadow: 0px 0px 15px 2px rgba(190,215,50,0.4); 
        box-shadow: 0px 0px 15px 2px rgba(190,215,50,0.4);
        filter: blur(0.8px);
	}
	33.333% {
        background: #A5B649;
        -webkit-box-shadow: 0px 0px 15px 2px rgba(190,215,50,0); 
        box-shadow: 0px 0px 15px 2px rgba(190,215,50,0);
        filter: blur(0);
	}
    66.666% {
        background: #A5B649;
        -webkit-box-shadow: 0px 0px 15px 2px rgba(190,215,50,0); 
        box-shadow: 0px 0px 15px 2px rgba(190,215,50,0);
        filter: blur(0);
	}
	100% {
		background: #BED732;
        -webkit-box-shadow: 0px 0px 15px 2px rgba(190,215,50,0.4); 
        box-shadow: 0px 0px 15px 2px rgba(190,215,50,0.4);
        filter: blur(0.8px);
	}
}
@keyframes pulse-circle {
    0% {
		background: #BED732;
        -webkit-box-shadow: 0px 0px 15px 2px rgba(190,215,50,0.4); 
        box-shadow: 0px 0px 15px 2px rgba(190,215,50,0.4);
        filter: blur(0.8px);
	}
	33.333% {
        background: #A5B649;
        -webkit-box-shadow: 0px 0px 15px 2px rgba(190,215,50,0); 
        box-shadow: 0px 0px 15px 2px rgba(190,215,50,0);
        filter: blur(0);
	}
    66.666% {
        background: #A5B649;
        -webkit-box-shadow: 0px 0px 15px 2px rgba(190,215,50,0); 
        box-shadow: 0px 0px 15px 2px rgba(190,215,50,0);
        filter: blur(0);
	}
	100% {
		background: #BED732;
        -webkit-box-shadow: 0px 0px 15px 2px rgba(190,215,50,0.4); 
        box-shadow: 0px 0px 15px 2px rgba(190,215,50,0.4);
        filter: blur(0.8px);
	}
}
.section-about-right .title-76 {
    color: #84BEC7;
}
.animated-title-color .char {
    /* transition: transform 1000ms cubic-bezier(.165,.84,.44,1); */
    transition-delay: calc(40ms*var(--char-index));
}
.animated-title-color.in-view .char {
    color: var(--cream);
}
.title-76 {
    font-size: 76px;
    font-weight: 700;
    line-height: 93%;
    letter-spacing: -2.28px;
   /* text-transform: uppercase; */
    color: var(--cream);
}
.title-76 strong {
    font-weight: 700;
    color: var(--hybrid-green);
}
.section-about-right-btn {
    padding-top: 31px;
}
.btn-link-white,
.btn-link-white:focus,
.btn-link-white:active {
    display: inline-block;
    cursor: pointer;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.25;
    letter-spacing: 1.6px;
    text-transform: uppercase;
    color: var(--cream);
    transition: 600ms cubic-bezier(.215,.61,.355,1);
    position: relative;
}
.btn-link-white:hover {
    color: var(--hybrid-green);
}
.section-about-bottom {
    position: absolute;
    bottom: 54px;
    left: 50%;
    transform: translateX(-50%);
    pointer-events: none;
}
.section-about-bottom-circle {
    width: 300px; height: 300px;
    border: 2px solid var(--darker-green);
    border-radius: 50%;
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%) scale(0.7);
}

.section-works {
    position: relative;
}
.section-works-item a {
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;

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

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

    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;

    width: 100%; height: 100vh;
    position: relative;
    overflow: hidden;
    cursor: none;

    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}
.section-works-item a > div {
    width: 100%;
}
.section-works-item-img {
    position: absolute;
    top: -200px; 
    bottom: 0;
    right: 0; left: 0;
}
.section-works-item-img iframe {
    width: 100vw;
    height: 56.25vw;
    min-height: 100vh;
    min-width: 177.77vh;
    position: absolute;
    top: calc(50% + 1px);
    left: 50%;
    transform: translate(-50%, -50%) scale(1.4);
    z-index: 2;
    pointer-events: none;
}
/* .section-works-item-img img {
    transform: scale(1.5);
} */
.section-works-item-img-box {
    width: 100%;
    height: 100%;
    position: relative;
}
.section-works-item-img-box::after {
    content: '';
    width: 100%; height: 100%;
    background: #000;
    opacity: 0.2;
    position: absolute;
    top: 0; left: 0;
    z-index: 2;
}

.section-works-item-content {
    position: relative;
    z-index: 3;
}
.section-works-items-nav-hold {
    position: absolute;
    top: 0; right: 0; bottom: 0; left: 0;

    pointer-events: none;
}
.section-works-items-nav {
    position: sticky;
    top: 0;
    z-index: 5;
    min-height: 100vh;
    min-height: 100dvh;
    padding: 0 12px 40px;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    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;

    pointer-events: none;
    transition: 0.2s ease-in-out;
}
.section-works-items-navbox {
    border-radius: 10px;
    background: #4E544B;
    position: relative;

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

    width: 100%;
    max-width: 634px;
    padding: 10px;
    overflow: hidden;
    pointer-events: all;
}
.section-works-items-navbox > span {
    display: block;
    height: 100%;
    width: 0;
    background: #BED732;
    position: absolute;
    top: 0;
    left: 0;
}
.section-works-items-nav-item {
    margin-right: 10px;
    height: 54px;

    -webkit-box-flex: 1;
    -ms-flex: 1 1 0px;
    flex: 1 1 0px;
}
.section-works-items-nav-item a {
    display: block;
    width: 100%; height: 100%;
}
.section-works-items-nav-item:last-child {
    margin-right: 0;
}
.section-works-items-nav-item a img {
    opacity: 0.4;
    transition: opacity 0.2s ease-in-out;
}
.section-works-items-nav-item a:hover img {
    opacity: 1;
}
.section-works-items-nav-item.is-active a img {
    opacity: 1;
}
.section-works-item-text-scroll {
    overflow: hidden;
    width: 100vw;
}
.section-works-item-text {
    overflow: hidden;
    display: inline-block;
    white-space: nowrap;
    animation: scrollText 10s linear infinite;
}
.text-scroll-owl .title-123 {
    white-space: nowrap;
}

.circle-explore {
	position: fixed;
	left: -50px;
    top: -50px;
	z-index: 50;
	pointer-events: none;
}
.circle-explore-circle {
    width: 100px; height: 100px;
    border-radius: 50%;
	background: var(--hybrid-green);
	transform: scale(0.2);
    opacity: 0;
    transition: opacity 200ms linear, 400ms cubic-bezier(.165,.84,.44,1);
    position: relative;
    font-size: 16px;
    font-weight: 300;
    line-height: 125%;
    text-transform: uppercase;
    text-align: center;
    color: var(--heythere-green);
}
.circle-explore span {
    position: absolute;
    top: 50%; right: 0; left: 0;
    transform: translateY(-50%);
}
.circle-explore.is-active {
    opacity: 1;
    visibility: visible;
}
.circle-explore.is-active .circle-explore-circle {
    opacity: 1;
    transform: scale(1);
}

.section-404 {
    background: var(--heythere-green);
    position: relative;
    min-height: calc(100vh - 209px);
}
.section-404 .footer-anim {
    height: calc(100vh - 69px);
}
.section-404 .home-footer {
    padding-top: 214px;
}
.section-404 .grid-container {
    position: relative;
}
.section-404-anim {
    position: absolute;
    top: 0; right: 0;
    width: 100%; height: 100%;
    max-width: 540px; max-height: 540px;
    aspect-ratio: 1;
    overflow: visible;
}
/* .section-404-anim::after {
    content: '';
    width: 100%;
    height: 100%;
    background: url(../img/bg-overview-video.svg) no-repeat center center;
    background-size: contain;
    position: absolute;
    top: 0; left: 0;
    z-index: 2;
} */
.section-404-anim iframe,
.section-404-anim video {
    position: absolute;
    top: 0; right: 0; bottom: 0; left: 0;
    width: 100%;
    height: 100%;
    min-width: 100%;
    min-height: 100%;
}

.section-darkg {
    background: var(--darker-green);
}
.section-padding-144 {
    padding: 144px 0;
}
.section-padding-top-144 {
    padding-top: 144px !important;
}
.section-padding-bottom-144 {
    padding-bottom: 144px !important;
}
.text-24 {
    color: var(--cream);
    font-size: 20px;
    line-height: 1.29;
    letter-spacing: 0.24px;
}
.text-24 p {
    margin-bottom: 20px;
}
.text-24 p:last-child {
    margin-bottom: 0;
}
.text-24 strong {
    font-weight: 600;
    color: var(--hybrid-green);
}
.text-24 a {
    display: inline-block;
    color: var(--hybrid-green);
    transition: 0.2s linear;
    word-break: break-all;
    position: relative;
}
.text-24 a::after {
    content: '';
    width: 100%;
    height: 1px;
    background: var(--hybrid-green);
    opacity: 0;
    position: absolute;
    bottom: 4px; 
    left: 0;
    transition: 0.2s linear;
}
.text-24 a:hover {
    color: var(--hybrid-green);
}
.text-24 a:hover::after {
    opacity: 1;
}
.text-24 ul li {
    padding-left: 32px;
    position: relative;
    margin-bottom: 20px;
}
.text-24 ul li::before {
    content: '';
    width: 8px; height: 8px;
    border-radius: 50%;
    background: var(--hybrid-green);
    position: absolute;
    top: 8px; left: 0;
}

.section-story {
    padding: 112px 0 0;
}
.section-story-left {
    padding-right: 80px;
}
.section-story-left .title-76 {
    margin-bottom: 16px;
}
.section-story-left .text-24-upcase {
    margin-bottom: 16px;
}
.section-story-video {
    padding-bottom: 100%;
    position: relative;
}
.section-story-video iframe,
.section-story-video video {
    position: absolute;
    top: 0; right: 0; bottom: 0; left: 0;
    width: 100%;
    height: 100%;
    min-width: 100%;
    min-height: 100%;
    aspect-ratio: 1;
}
/* .section-story-video::after {
    content: '';
    width: 100%;
    height: 100%;
    background: url(../img/bg-overview-video.svg) no-repeat center center;
    background-size: contain;
    position: absolute;
    top: 0; left: 0;
    z-index: 2;
} */

.section-leadership {
    padding: 144px 0 96px;
}
.section-leadership-top {
    margin-bottom: 112px;
}
.section-leadership-top .text-16-upcase {
    padding-right: 40px;
}
.section-leadership-list ul {
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;

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

    width: calc(100% + 20px);
}
.section-leadership-list ul li {
    float: left;
    width: calc(20% - 20px);
    margin: 0 20px 48px 0;
    cursor: pointer;
    position: relative;
}
.leadership-list-hover {
    position: absolute;
    top: 0; right: 0; bottom: 0; left: 0;
    background: var(--hybrid-green);
    opacity: 0;
    visibility: hidden;
    transition: 0.2s linear;

    color: var(--heythere-green);
    text-align: center;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 1;
    text-transform: uppercase;
    overflow: hidden;

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

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

    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}
.section-leadership-list ul li:hover .leadership-list-hover {
    opacity: 1;
    visibility: visible;
}
.leadership-list-hover-marqee {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;

    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;

    white-space: nowrap;

    -webkit-animation: leadershipHoverMarquee 5s linear infinite;
    animation: leadershipHoverMarquee 5s linear infinite;
}
@-webkit-keyframes leadershipHoverMarquee {
    0% {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
    100% {
        -webkit-transform: translate3d(-33.3333%, 0, 0);
        transform: translate3d(-33.3333%, 0, 0);
    }
}
@keyframes leadershipHoverMarquee {
    0% {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
    100% {
        -webkit-transform: translate3d(-33.3333%, 0, 0);
        transform: translate3d(-33.3333%, 0, 0);
    }
}
.leadership-list-photo {
    padding-bottom: 133.6%;
    margin-bottom: 24px;
}
.leadership-list-name {
    color: var(--cream);
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
    line-height: 1;
    letter-spacing: -0.24px;
    text-transform: uppercase;
    margin-bottom: 8px;
    transition: 0.2s linear;
}
.section-leadership-list ul li:hover .leadership-list-name {
    color: var(--hybrid-green);
}
.leadership-list-position {
    color: var(--cream);
    font-size: 16px;
    font-weight: 400;
    line-height: 1.31;
    letter-spacing: -0.48px;
}
.reveal.leadership-reveal {
    max-width: 1030px;
    width: 100%;
    background: var(--heythere-green);
    padding: 85px 65px;
    border: none;
}
.leadership-reveal-box {
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;

    flex-wrap: wrap;
    -ms-flex-wrap: wrap;
}
.leadership-reveal-box-imghold {
    float: left;
    width: 39.4%;
}
.leadership-reveal-box-img {
    padding-bottom: 133.7%;
}
.leadership-reveal-box-texthold {
    width: 60.6%;
    padding-left: 64px;

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

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

    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}
.leadership-reveal-box-texthold > div {
    width: 100%;
}
.leadership-reveal-name {
    color: var(--cream);
    font-size: 39px;
    font-style: normal;
    font-weight: 700;
    line-height: 1;
    letter-spacing: -0.39px;
    text-transform: uppercase;
    margin-bottom: 8px;
}
.leadership-reveal-position {
    color: var(--cream);
    font-size: 16px;
    line-height: 1.31;
    letter-spacing: -0.48px;
    margin-bottom: 8px;
}
.leadership-reveal-social {
    margin-bottom: 8px;
}
.leadership-reveal-social ul {
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;

    margin-left: -10px;
}
.leadership-reveal-social ul li a svg path {
    transition: 0.2s linear;
}
.leadership-reveal-social ul li a:hover svg path {
    fill: var(--hybrid-green);
}
.leadership-reveal-box-texthold .text-24 {
    padding-top: 24px;
}
.leadership-reveal .close-button,
.leadership-reveal .close-button:focus,
.leadership-reveal .close-button:active {
    top: 24px; right: 24px;
}
.leadership-reveal .close-button svg path {
    transition: 0.2s linear;
}
.leadership-reveal .close-button:hover svg path {
    stroke: var(--hybrid-green);
}

.section-multi-items {
    margin-bottom: 144px;
    overflow: hidden;
}
.section-multi-items-awards {
    position: relative;
}
.section-multi-items-awards-anchor {
    position: absolute;
    top: -76px;
    left: 0; right: 0;
    pointer-events: none;
    visibility: hidden;
    opacity: 0;
}
.section-multi > section:last-child {
    margin-bottom: 0;
}
.section-multi-items-top {
    margin-bottom: 105px;
}
.full-logo-slider {
    margin-bottom: 55px;
}
.full-logo-slider:last-child {
    margin-bottom: 0;
}
.full-logo-slider .owl-stage {
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;

    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}
.full-logo-slider .item {
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;

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

    height: 74px;
}
.full-logo-slider .item span {
    display: inline-block;
    padding-right: 72px;
}
.full-logo-slider .item img {
    display: inline-block;
    max-height: 74px;
    width: auto;
    max-width: 100%;
}

.title-63 {
    color: var(--cream);
    font-size: 63px;
    font-weight: 700;
    line-height: 0.94;
    letter-spacing: -1.26px;
/*     text-transform: uppercase; */
}
.title-63 strong {
    color: var(--hybrid-green);
}

.section-awards-left {
    margin-bottom: 50px;
}
.section-awards-left .title-76 {
    margin-bottom: 32px;
}
.section-awards-left .text-24 {
    padding: 0 13%;
}
.section-awards-left > :last-child {
    margin-bottom: 0;
}
.section-awards-right ul {
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;

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

    width: calc(100% + 20px);
    margin-bottom: -34px;
}
.section-awards-right ul li {
    float: left;
    width: calc(16.66% - 26px);
    margin: 0 20px 34px 0;
    height: 182px;

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

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

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

    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;

    background: #3C4439;
    padding: 12px;
}
.section-awards-right ul li img {
    max-height: 87px;
    -webkit-filter: grayscale(1);
    filter: grayscale(1);
}

.featured-arcicle-top {
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;

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

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

    margin-bottom: 64px;
}
.featured-arcicle-top .title-63 {
    width: 67.8%;
    padding-right: 48px;
}
.featured-arcicle-top-link {
    width: 32.2%;
}
.featured-arcicle-owl .owl-stage-outer {
    overflow: visible;
}
.featured-arcicle-owl .owl-stage {
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;

    flex-wrap: wrap;
    -ms-flex-wrap: wrap;
}
.featured-arcicle-owl .item {
    height: 100%;
}
.featured-arcicle-owl .item a {
    display: block;
    width: 100%; height: 100%;
    position: relative;
    padding-bottom: 3px;
}
.featured-arcicle-owl .item a:hover .featured-arcicle-owl-title {
    color: var(--hybrid-green);
}
.featured-arcicle-owl .item a:hover .btn-link-green::before,
.featured-arcicle-owl .item a:hover .btn-link-green::after {
    width: 100%;
}
.featured-arcicle-owl-img {
    padding-bottom: 75%;
    margin-bottom: 24px;
}
.featured-arcicle-owl-title {
    color: var(--cream);
    font-size: 20px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: -0.24px;
    text-transform: uppercase;
    margin-bottom: 12px;
    /* min-height: 72px; */
    transition: 0.2s linear;

    /* overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3; */
}
.featured-arcicle-owl-text {
    color: var(--cream);
    font-size: 16px;
    line-height: 1.31;
    letter-spacing: -0.48px;
    margin-bottom: 16px;
    /* min-height: 42px; */

    /* overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2; */
}

.section-faq {
    overflow: hidden;
}
.section-faq-top {
    margin-bottom: 96px;
}
.faq-accordion {
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;

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

    width: calc(100% + 80px);
}
.faq-accordion ul {
    /* background: transparent; */
    float: left;
    width: calc(50% - 80px);
    margin: 0 80px -48px 0;
}
.faq-accordion .accordion-item {
    border-bottom: 1px solid var(--cream);
    margin: 0 0 48px 0;
}
.faq-accordion .accordion-item:last-child {
    margin-bottom: 0;
}
.faq-accordion .accordion-title {
    padding: 0 48px 48px 0;
    border: none !important;
    background: transparent !important;
    
    color: var(--cream);
    font-size: 20px;
    line-height: 1.29;
    letter-spacing: 0.28px;
    transition: 0.2s linear;
    cursor: pointer;
    position: relative;
}
.faq-accordion .accordion-title::before {
    content: '';
    width: 40px; height: 40px;
    background: url(../img/icon-accordion-plus.svg) no-repeat center center;
    background-size: contain;
    position: absolute;
    top: 0; right: 0;
    transition: 0.2s linear;
    margin: 0;
}
.faq-accordion .accordion-item.is-active .accordion-title::before {
    transform: rotate(45deg);
}
.faq-accordion .accordion-content {
    padding: 20px 0 48px;
    border: none !important;
    background-color: transparent !important;
}
.faq-accordion .accordion-content .text-16 {
    -webkit-animation-delay: 0.3s !important;
    animation-delay: 0.3s !important;
}
.faq-accordion .accordion-item.is-active .text-16 {
    -webkit-animation: fade-in 300ms forwards;
    animation: fade-in 300ms forwards;
}
.faq-accordion .accordion-item.is-active .accordion-title {
    padding-bottom: 20px;
}

.text-16 {
    color: var(--cream);
    font-size: 16px;
    line-height: 1.31;
    letter-spacing: -0.48px;
}
.text-16 p {
    margin-bottom: 20px;
}
.text-16 p:last-child {
    margin-bottom: 0;
}

.archive-section-work {
    padding: 81px 0 0;
}
.archive-section-work .grid-container {
    position: relative;
    z-index: 3;
}
.archive-section-work-top {
    padding-bottom: 64px;
    position: relative;
    z-index: 2;
}
.archive-section-work-filters > ul {
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;

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

    width: calc(100% + 112px);
}
.archive-section-work-filters > ul > li {
    float: left;
    width: calc(50% - 112px);
    margin: 0 112px 0 0;
    position: relative;
}
.archive-section-work-filters > ul > li:first-child {
    z-index: 3;
}
.archive-section-work-filters > ul > li > span {
    display: block;
    color: var(--hybrid-green);
    font-size: 16px;
    font-weight: 500;
    line-height: 1.31;
    letter-spacing: 1.6px;
    text-transform: uppercase;
    margin-bottom: 4px;
}
.archive-section-work-filters-select {
    position: relative;
    color: var(--cream);
    font-size: 16px;
    font-weight: 500;
    line-height: 1.5;
    letter-spacing: 1.6px;
    text-transform: uppercase;
}
.archive-section-work-filters-select-trigger {
    height: 38px;
    position: relative;
    padding: 7px 32px 7px 0;
    cursor: pointer;
    border-bottom: 1px solid var(--spiro-citron);
}
.archive-section-work-filters-select-trigger::before {
    content: '';
    width: 100%; height: 1px;
    background: var(--spiro-citron);
    position: absolute;
    bottom: -1px; left: 0;
    -webkit-filter: blur(2.5px);
    filter: blur(2.5px);
    opacity: 0;
    transition: 0.2s linear;
}
.archive-section-work-filters-select-trigger::after {
    content: '';
    width: 24px; height: 24px;
    background: url(../img/icon-select-chevron-down.svg) no-repeat center center;
    position: absolute;
    top: 50%; right: 0;
    transform: translateY(-50%);
    transition: 0.2s linear;
}
.archive-section-work-filters-select-placeholder {
    position: absolute;
    top: 50%; left: 0;
    transform: translateY(-50%);
    opacity: 0.4;
}
.archive-section-work-filters-select-value {
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
}
.archive-section-work-filters-select.is-active .archive-section-work-filters-select-trigger::after {
    transform: translateY(-50%) rotate(180deg);
}
.archive-section-work-filters-select.is-selected .archive-section-work-filters-select-placeholder {
    opacity: 0;
    visibility: hidden;
}
.archive-section-work-filters-select.is-selected .archive-section-work-filters-select-trigger::before {
   opacity: 1;
}
.archive-section-work-filters-select ul {
    position: absolute;
    top: 100%; left: 0;
    width: 100%;
    margin: 0;
    background: var(--darker-green);
    padding: 12px;
    display: none;
}
.archive-section-work-filters-select ul li {
    margin-bottom: 12px;
    cursor: pointer;
    transition: 0.2s linear;
}
.archive-section-work-filters-select ul li:hover {
    color: var(--hybrid-green);
}
.archive-section-work-filters-select ul li:last-child {
    margin-bottom: 0;
}
.archive-section-work-items {
    overflow: hidden;
    transition: 0.2s linear;
}
.archive-section-work-items.is-active {
    opacity: 0;
    visibility: hidden;
}
.archive-section-work-items ul {
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;

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

    width: calc(100% + 24px);
    margin-bottom: -24px;
    transition: 0.2s linear;
}
.archive-section-work-items ul li {
    float: left;
    margin: 0 24px 24px 0;
}
.archive-section-work-items-lg {
    width: calc(65.84% - 24px);
}
.archive-section-work-items-md {
    width: calc(63% - 24px);
}
.archive-section-work-items-sm {
    width: calc(37% - 24px);
}
.archive-section-work-items-xsm {
    width: calc(34.16% - 24px);
}
.archive-section-work-items ul li a {
    display: block;
    width: 100%; height: 100%;
    position: relative;
    cursor: none;
}
.archive-section-work-items-img {
    height: 100%;
}
.archive-section-work-items-lg .archive-section-work-items-img {
    padding-bottom: 52.073%;
}
.archive-section-work-items-md .archive-section-work-items-img {
    padding-bottom: 54.44%;
}
.archive-section-work-items-sm .archive-section-work-items-img {
    padding-bottom: 94.47%;
}
.archive-section-work-items-xsm .archive-section-work-items-img {
    padding-bottom: 102.8%;
}
.archive-section-work-items-textbox {
    position: absolute;
    top: 0; right: 0; bottom: 0; left: 0;
    z-index: 2;
    padding: 32px 48px;
    transition: 0.2s linear;
    opacity: 0;
    visibility: hidden;
    background: rgba(0, 0, 0, 0.5);

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

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

    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
}
.archive-section-work-items-cat {
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;

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

    padding-top: 12px;
}
.archive-section-work-items-cat > span {
    display: inline-block;
}
.archive-section-work-items-cat > span:nth-child(odd) {
    padding-right: 24px;
}
.archive-section-work-items-cat > span:nth-child(even) {
    padding-left: 24px;
}
.archive-section-work-items ul li a:hover .archive-section-work-items-textbox {
    opacity: 1;
    visibility: visible;
}

/* Work item hover buttons */
.archive-section-work-items-buttons {
    margin-top: 20px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.archive-section-work-items ul li a:hover .archive-section-work-items-buttons {
    opacity: 1;
    visibility: visible;
}

.btn-hover-work {
    font-size: 12px;
    padding: 16px 32px;
    pointer-events: none; /* Prevent button from interfering with link click */
}

/* Custom page work items hover buttons */
.news-resources-grid-section-list-title .archive-section-work-items-buttons {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.archive-section-work-items ul li a:hover .news-resources-grid-section-list-title .archive-section-work-items-buttons {
    opacity: 1;
    visibility: visible;
}

.second-type-intro {
    padding: 114px 0 96px;
    overflow: hidden;
}
.second-type-intro > :last-child {
    margin-bottom: 0;
}
.second-type-intro-words {
    margin-bottom: 96px;
}
.second-type-intro-words .title-123 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;

    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;

    white-space: nowrap;

    /* -webkit-animation: secondTypeIntroWordsMarquee 0 linear infinite;
    animation: secondTypeIntroWordsMarquee 0 linear infinite; */
}
@-webkit-keyframes secondTypeIntroWordsMarquee {
    0% {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
    100% {
        -webkit-transform: translate3d(-33.3333%, 0, 0);
        transform: translate3d(-33.3333%, 0, 0);
    }
}
@keyframes secondTypeIntroWordsMarquee {
    0% {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
    100% {
        -webkit-transform: translate3d(-33.3333%, 0, 0);
        transform: translate3d(-33.3333%, 0, 0);
    }
}
.second-type-intro-about .text-16-upcase {
    padding-right: 40px;
}
.second-type-intro-about .text-16-upcase span {
    display: block;
    margin-bottom: 8px;
}
.second-type-intro-about .text-16-upcase span:last-child {
    margin-bottom: 0;
}

.full-video-section {
    position: relative;
    padding-bottom: 54.2%;
}
.full-video-section a {
    display: block;
    width: 100%; height: 100%;
    position: absolute;
    top: 0; left: 0;
}
.full-video-section a::before {
    content: '';
    width: 100%; height: 100%;
    background: #000;
    opacity: 0.3;
    position: absolute;
    top: 0; left: 0;
    z-index: 1;
}

.title-39 {
    color: var(--cream);
    font-size: 39px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: -0.39px;
    text-transform: uppercase;
    margin-bottom: 24px;
}
.title-39 strong {
    color: var(--hybrid-green);
}

.works-detail-overview-section {
    padding: 112px 0 0;
}
.works-detail-overview-top {
    margin-bottom: 96px;
    overflow: hidden;
}
.works-detail-overview-top-text {
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;

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

    width: calc(100% + 70px);
}
.works-detail-overview-top-text .text-24 {
    float: left;
    width: calc(50% - 70px);
    margin: 0 70px 0 0;
}
.works-detail-overview-img {
    padding-bottom: 50%;
    margin-bottom: 112px;
}
.works-detail-overview-split-item {
    margin-bottom: 112px;
}
.works-detail-overview-split-item-img {
    padding-bottom: 114.8%;
}
.works-detail-overview-split-item-texthold {
    padding: 0 66px 0 0;

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

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

    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}
.works-detail-overview-split-item-imghold {
    padding: 0 0 0 10px;
}
.large-order-2.works-detail-overview-split-item-texthold {
    padding: 0 0 0 66px;
}
.large-order-1.works-detail-overview-split-item-imghold {
    padding: 0 10px 0 0;
}
.works-detail-overview-section-imglghold {
    margin-top: 144px;
}
.works-detail-overview-section-imglg {
    padding-bottom: 54.2%;
}
.works-detail-overview-section-imglg::after {
    content: '';
    width: 100%; height: 100%;
    background: #020540;
    opacity: 0.5;
    position: absolute;
    top: 0; left: 0;
    z-index: 1;
}
.works-detail-gallery-items {
    padding-bottom: 54.2%;
}
.section-padding-144.aspect-carousel-section {
    padding-top: 0;
}
.aspect-carousel-owl .owl-item:nth-child(odd) .item {
    width: 400px;
    padding-bottom: 125%;
}
.aspect-carousel-owl .owl-item:nth-child(even) .item {
    width: 500px;
    padding-bottom: 80%;
}

.text-overline-16 {
    color: var(--cream);
    font-size: 16px;
    font-weight: 500;
    line-height: 1.31;
    letter-spacing: 1.6px;
    text-transform: uppercase;
}
.section-padding-144.section-community-exp {
    padding-top: 0;
}
.section-community-exp-top {
    margin-bottom: 144px;
}
.section-community-exp-top .text-overline-16 {
    margin-bottom: 16px;
}
.section-community-exp-top .text-24 {
    padding-top: 32px;
    max-width: 820px;
    margin: 0 auto;
}
.section-community-exp-list-texthold {
    padding-top: 144px;
    padding-right: 11.15%;
}
.section-community-exp-list-textitem {
    margin-bottom: 112px;
    opacity: 0.2;
    transition: 0.2s linear;
}
.section-community-exp-list-textitem.is-active {
    opacity: 1;
}
.section-community-exp-list-textitem:last-child {
    margin-bottom: 0;
}
.section-community-exp-list-textitem .text-overline-16 {
    margin-bottom: 16px;
}
.section-community-exp-list-textitem .title-63 {
    margin-bottom: 16px;
}
.section-community-exp-list-imghold {
    padding-left: 10px;
}
.section-community-exp-list-img {
    position: sticky;
    top: 15vh;
    padding-bottom: 120%;
}

.section-comm-frame {
    padding: 144px 0 120px;
}
.section-comm-frame-top {
    margin-bottom: 64px;
}
.section-comm-frame-top .text-24 {
    padding-top: 24px;
}
.section-comm-frame-imghold {
    padding-right: 11px;
}
.section-comm-frame-img {
    padding-bottom: 87.146%;
}
.section-comm-frame-list {
    padding-left: 9.3%;

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

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

    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
}
.section-comm-frame-list ul {
    display: inline-block;
    width: 100%;
}
.section-comm-frame-list ul li {
    float: left;
    width: 38.8%;
    margin-right: 22.4%;
    margin-top: 50px;
}
.section-comm-frame-list ul li:nth-child(2n) {
    margin-right: 0;
}
.section-comm-frame-list ul li:nth-child(2n + 1) {
    clear: both;
}
.section-comm-frame-list-title {
    font-weight: 700;
    margin-bottom: 8px;
}

.just-title-intro-section {
    padding: 130px 0 48px;
}
.just-title-intro-section .text-16-upcase {
    margin-bottom: 16px;
}

.blog-archive-featured-owl,
.archive-npsiro-intro-featured {
    padding: 48px 0;
    border-top: 1px solid var(--cream);
    border-bottom: 1px solid var(--cream);
    position: relative;
}
.blog-archive-featured-owl .owl-stage {
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;

    flex-wrap: wrap;
    -ms-flex-wrap: wrap;
}
.blog-archive-featured-owl .item {
    height: 100%;
}
.blog-archive-featured-owl .item a {
    display: block;
    width: 100%; height: 100%;
}
.blog-archive-featured-owl .item a:hover .title-39 {
    color: var(--hybrid-green);
}
.blog-archive-featured-owl .item a:hover .btn-link-green::before,
.blog-archive-featured-owl .item a:hover .btn-link-green::after {
    width: 100%;
}
.blog-archive-featured-owl .item a .grid-x {
    height: 100%;
}
.blog-archive-featured-owl-texthold {
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;

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

    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}
.blog-archive-featured-owl-texthold .text-16-upcase {
    margin-bottom: 16px;
}
.blog-archive-featured-owl-texthold .title-39 {
    transition: 0.2s linear;
    margin-bottom: 24px;
}
.blog-archive-featured-owl-texthold .text-16 {
    margin-bottom: 24px;
}
.blog-archive-featured-owl-imghold {
    padding-left: 4.55%;
}
.blog-archive-featured-owl-img {
    padding-bottom: 66.77%;
    height: 100%;
    position: relative;
    overflow: hidden;
}
.blog-archive-featured-owl-img iframe {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    z-index: 2;
}
.blog-archive-featured-owl-img a {
    display: block;
    position: absolute;
    top: 0; right: 0; bottom: 0; left: 0;
    z-index: 3;
}
.blog-archive-featured-owl-img a .play-btn-green {
    background: var(--nspiro-tangerine);
}
.blog-archive-featured-owl-img a:hover .play-btn-green {
    background: var(--darker-green);
}
.blog-archive-featured-owl-img a:hover .play-btn-green path {
    fill: var(--nspiro-tangerine);
}
.blog-archive-featured-owl .owl-dots {
    position: absolute;
    bottom: -4px; left: 0;
    background: var(--heythere-green);
    padding-right: 20px;
}
.blog-archive-featured-owl .owl-dots .owl-dot {
    display: inline-block;
    float: left;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    margin-right: 16px;
    background: var(--cream) !important;
}
.blog-archive-featured-owl .owl-dots .owl-dot.active {
    background: var(--hybrid-green) !important;
}
.blog-archive-featured-owl .owl-dots .owl-dot:last-child {
    margin-right: 0;
}

.blog-archive-content {
    padding: 100px 0 48px;
}
.blog-archive-list {
    overflow: hidden;
}
.blog-archive-list ul {
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;

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

    width: calc(100% + 20px);
}
.blog-archive-list ul li {
    display: none;
    float: left;
    width: calc(33.333% - 20px);
    margin: 0 20px 54px 0;
}
.blog-archive-list ul li a {
    display: block;
    width: 100%; height: 100%;
}
.blog-archive-list ul li a:hover .featured-arcicle-owl-title {
    color: var(--hybrid-green);
}
.blog-archive-list ul li a:hover .btn-link-green::before,
.blog-archive-list ul li a:hover .btn-link-green::after {
    width: 100%;
}
.blog-archive-content-btn {
    padding-top: 42px;
    display: none;
}
.blog-archive-content-btn .btn-green,
.blog-archive-content-btn .btn-green:focus,
.blog-archive-content-btn .btn-green:active {
    min-width: 246px;
}

.single-blog-intro-section {
    padding: 130px 0 72px;
}
.single-blog-intro-section .text-16-upcase {
    margin-bottom: 24px;
}
.single-blog-intro-img {
    padding-bottom: 50%;
    margin: 56px 0 0;
}

.single-blog-content {
    padding: 0 0 232px;
}
.single-blog-content-info-box {
    position: sticky;
    top: 96px;
}
.single-blog-content-info-text {
    margin-bottom: 39px;
}
.single-blog-content-info-text.text-16 p {
    margin-bottom: 8px;
}
.single-blog-content-info-text strong {
    color: var(--hybrid-green);
}
.single-blog-content-info-share .text-16-upcase{
    margin-bottom: 8px;
}
.single-blog-content-info-share ul {
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;

    transform: translateX(-9px);
}
.single-blog-content-info-share ul li {
    float: left;
}
.single-blog-content-info-share ul li a svg path {
    transition: 0.2s linear;
}
.single-blog-content-info-share ul li a:hover svg path {
    fill: var(--hybrid-green);
}
.single-blog-related {
    padding-bottom: 48px;
    overflow: hidden;
}

.entry {
    color: var(--cream, #F9F9EA);
}
.entry > :last-child {
    margin-bottom: 0 !important;
}
.entry > :first-child {
    margin-top: 0 !important;
}
.entry h2 {
    font-size: 39px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: -0.39px;
    /* text-transform: uppercase; */
    margin-bottom: 24px;
    margin-top: 40px;
}
.entry h3 {
    font-size: 20px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: -0.24px;
    text-transform: uppercase;
    margin-bottom: 16px;
    margin-top: 40px;
}
.entry h4 {
    font-size: 20px;
    font-weight: 400;
    line-height: 1.29;
    letter-spacing: 0.24px;
    margin-bottom: 16px;
}
.entry p {
    font-size: 16px;
    line-height: 1.31;
    letter-spacing: -0.48px;
    margin-bottom: 16px;
}
.entry a {
    display: inline-block;
    color: var(--hybrid-green);
    transition: 0.2s ease-in-out;
    position: relative;
}
.entry a::after {
    content: '';
    width: 100%;
    height: 1px;
    background: var(--hybrid-green);
    opacity: 0;
    position: absolute;
    bottom: 3px; 
    left: 0;
    transition: 0.2s linear;
}
.entry a:hover {
    color: var(--hybrid-green);
}
.entry a:hover::after {
    opacity: 1;
}
.entry img {
    margin: 48px 0;
}
.entry .wp-caption {
    margin: 48px 0;
}
.entry .wp-caption img {
    margin: 0;
}
.entry .wp-caption-text {
    font-size: 12px;
    line-height: 1.33;
    letter-spacing: -0.36px;
    padding-top: 16px;
    margin: 0;
}
.entry ul,
.entry ol {
    margin-left: 0;
    margin-bottom: 16px;
}
.entry ul li,
.entry ol li  {
    position: relative;
    margin-bottom: 0;
    padding-left: 24px;
    margin-bottom: 8px;
    font-size: 16px;
    line-height: 1.31;
    letter-spacing: -0.48px;
}
.entry ul li:last-child,
.entry ol li:last-child {
    margin-bottom: 0;
}
.entry ol {
    counter-reset: item;
}
.entry > ul > li:before  {
    content: '';
    position: absolute;
    top: 8px;
    left: 6px;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: var(--cream);;
}
.entry ol li:before {
    content: counters(item, ".") ".";
    counter-increment: item;
    position: absolute;
    top: 0;
    left: 0;
}
.entry .table-scroll {
    margin-bottom: 16px;
}
.entry table {
    width: 100%;
}
.entry table th {
    font-size: 14px;
    font-weight: 500;
    line-height: 1.31;
    text-align: left;
    background: transparent !important;
    padding: 9px 21px;
    border-bottom: 1px solid var(--cream);
    border-right: 1px solid var(--cream);
    color: var(--hybrid-green);
}
.entry table th:last-child {
    border-right: none;
}
.entry table tbody tr {
    background-color: transparent !important;
}
.entry table tbody, table tfoot, table thead {
    border: none;
    background-color: transparent;
}
.entry table tr td {
    border-bottom: 1px solid var(--cream);
    border-right: 1px solid var(--cream);
    padding: 9px 21px;
    font-size: 14px;
    line-height: 1.31;
}
.entry table tr td * {
    font-size: 14px;
    line-height: 1.31;
}
.entry table tr td:first-child {
    font-weight: 500;
}
.entry table tr td:last-child {
    border-right: none;
}
.entry table tr:last-child td {
    border-bottom: none;
}
.entry table p {
    margin-bottom: 0;
}
.entry strong {
    font-weight: 500;
}
.entry blockquote {
    padding-left: 24px;
    border-left: 1px solid var(--hybrid-green);
    color: var(--cream);
    position: relative;
    font-size: 28px;
    font-weight: 400;
    line-height: 1.29;
    letter-spacing: 0.28px;
    margin: 36px 0 52px;
}
.entry blockquote::after {
    content: '';
    width: 1px; height: 100%;
    background: var(--hybrid-green);
    position: absolute;
    top: 0; left: -1px;
    -webkit-filter: blur(2.5px);
    filter: blur(2.5px);
}
.entry blockquote p {
    color: var(--cream);
}
.entry blockquote p:nth-child(1) {
    font-size: 28px;
    font-weight: 400;
    line-height: 1.29;
    letter-spacing: 0.28px;
}
.entry blockquote p:nth-child(2) {
    display: block;
    padding-top: 12px;
    font-size: 12px;
    font-weight: 400;
    line-height: 1.33;
    letter-spacing: -0.36px;
}

.just-title-intro-btn {
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;

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

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

    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;

    padding-bottom: 18px;
}
.full-width-img-780 {
    padding-bottom: 50%;
}
.section-about-us {
    padding: 112px 0;
}
.section-about-us.section-about-us-padding-no {
	padding-bottom: 0;
}
.section-about-us.section-about-us-padding-no .section-story-right {
	padding-bottom: 112px;
}
.section-about-us-left {
    padding-right: 40px;
}
.section-about-us-left .title-76 {
    margin-bottom: 83px;
}
.section-about-us-right {
    padding: 0 5% 64px 0;
}
.section-about-img {
    display: inline-block;
    margin: 0 auto;
	max-width: 1440px;
	aspect-ratio: 16 / 9;
	width: 100%;
	z-index: -1;
}
.section-about-img iframe,
.section-about-img video {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 100%;
    height: 100%;
    min-height: 100%;
    aspect-ratio: 16 / 9;
    max-width: 1920px;
    transform: translateX(-50%);
    display: none;
}
.webp-video-item img {
    display: none !important;
}
.webp-video-item.is-safari img {
    display: block !important;
}
.webp-video-item.not-safari video {
    display: block !important;
}

.section-core-values-top {
    margin-bottom: 96px;
}
.section-core-values-top .text-24 {
    padding-top: 32px;
}
.section-core-values-list {
    overflow: hidden;
}
.section-core-values-list ul {
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;

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

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

    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse;

    width: calc(100% + 80px);
}
.section-core-values-list ul li {
    float: left;
    width: calc(33.333% - 80px);
    margin: 0 80px 80px 0;
}

.section-core-values-list-img {
    padding-bottom: 65.3%;
    margin-bottom: 32px;
}
.section-core-values-list-textbox {
    position: relative;
    border-left: 1px solid var(--hybrid-green);
    padding-left: 24px;
}
.section-core-values-list-textbox::after {
    content: '';
    width: 1px; height: 100%;
    background: var(--hybrid-green);
    position: absolute;
    top: 0; left: -1px;
    -webkit-filter: blur(2.5px);
    filter: blur(2.5px);
}
.section-core-values-list-title {
    color: var(--cream);
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
    line-height: 1;
    letter-spacing: -0.24px;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.section-talent-acqu {
    padding: 144px 0;
}
.section-talent-acqu-textbox .text-overline-16 {
    margin-bottom: 16px;
}
.section-talent-acqu-textbox .title-76 {
    margin-bottom: 32px;
}
.section-talent-acqu-textbox .text-24 {
    margin-bottom: 56px;
}
.section-talent-acqu-textbox > :last-child {
    margin-bottom: 0;
}
.section-talent-acqu-textbox .section-mission-statement-logos {
    padding-top: 0;
}
.section-talent-acqu-textbox .section-talent-acqu-textbox-btn + .section-mission-statement-logos {
    padding-top: 40px;
}

.section-open-positions {
    padding-top: 72px;
}
.section-open-positions-box {
    background: var(--darker-green);
}
.section-open-positions-box-left {
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;

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

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

    padding: 72px 72px;
}
.section-open-positions-box-left-text > div {
    margin-bottom: 32px;
}
.section-open-positions-box-left-text > div:last-child {
    margin-bottom: 0;
}
.section-open-positions-box-btn {
    padding-top: 16px;
    margin-bottom: -24px;
}
.section-open-positions-box-btn a,
.section-open-positions-box-btn a:focus,
.section-open-positions-box-btn a:active {
    margin: 0 24px 24px 0;
}
.section-open-positions-box-right {
    padding-left: 11px;
}
.section-open-positions-box-right-img {
    height: 100%;
    padding-bottom: 106.6%;
}

.hero-ticker-section {
    padding: 114px 0 94px;
    overflow: hidden;
}
.hero-ticker-section .second-type-intro-words {
    margin-bottom: 0;
}
.section-padding-144.contact-form-section {
    padding-top: 0;
}
.contact-form-section .contact-type-intro-info {
    padding-top: 0;
}
.contact-type-intro {
    padding: 114px 0 112px;
    overflow: hidden;
}
.contact-type-intro .second-type-intro-words {
    margin-bottom: 0;
}
.contact-type-intro-info {
    padding-top: 72px;
}
.contact-type-intro-left {
    padding-right: 70px;
}
.contact-type-intro-left.entry p,
.contact-type-intro-left.entry li {
    font-size: 20px;
    font-weight: 400;
    line-height: 1.29;
    letter-spacing: 0.24px;
}
.contact-type-intro-left.entry ul li::before {
    top: 13px;
}
.contact-type-intro-left.entry h2 {
    margin-bottom: 32px;
}
.contact-type-intro-left.entry h3 {
    margin-top: 56px;
    margin-bottom: 24px;
}
.contact-type-intro-left.entry ul {
    margin-bottom: 56px;
}
.contact-form-box {
    background: var(--cream);
    padding: 48px 64px;
}
.contact-form-box .title-39 {
    color: var(--heythere-green);
    margin-bottom: 48px;
}

.contact-additional-box {
    background: var(--darker-green);
    padding: 112px 64px;
}
.contact-additional-box .title-63 {
    margin-bottom: 72px;
}
.contact-additional-box-list {
    overflow: hidden;
}
.contact-additional-box-list ul {
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;

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

    width: calc(100% + 40px);
    margin-bottom: -40px;
}
.contact-additional-box-list ul li {
    float: left;
    width: calc(50% - 40px);
    margin: 0 40px 40px 0;
}
.contact-additional-box-list-title {
    color: var(--cream);
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 1.31;
    letter-spacing: 1.6px;
    text-transform: uppercase;
    padding-top: 16px;
    border-top: 1px solid var(--cream);
    margin-top: 16px;
}
.contact-additional-box-list-links {
    color: var(--hybrid-green);
    font-size: 28px;
    line-height: 1.29;
    letter-spacing: 0.28px;

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

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

    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}
.contact-additional-box-list-links > div {
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;

    line-height: 0;
}
.contact-additional-box-list-links > div a {
    width: 36px; height: 36px;
}
.contact-additional-box-list-links a {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    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;

    color: var(--hybrid-green);
    transition: 0.2s linear;
}
.contact-additional-box-list-links a:hover {
    color: var(--cream);
}
.contact-additional-box-list-links a svg path {
    transition: 0.2s linear;
}
.contact-additional-box-list-links a:hover svg path {
    fill: var(--cream);
}

.single-blog-intro-section.single-nspiro-intro-section {
    padding: 130px 0 48px;
}
.single-nspiro-intro-section .entry {
    padding-top: 56px;
}

.single-nspiro-resources-list {
    overflow: hidden;
    border-top: 1px solid rgba(99, 99, 99, 0.75);
    padding-top: 96px;
}
.single-nspiro-resources-list ul {
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;

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

    width: calc(100% + 20px);
    margin-bottom: -16px;
}
.single-nspiro-resources-list ul li {
    float: left;
    width: calc(33.333% - 20px);
    margin: 0 20px 64px 0;
}
.single-nspiro-resources-list ul li a {
    display: block;
    width: 100%; height: 100%;
}
.single-nspiro-resources-list ul li a:hover .featured-arcicle-owl-title {
    color: var(--nspiro-tangerine);
}
.single-nspiro-resources-list ul li a:hover .btn-link-green::before,
.single-nspiro-resources-list ul li a:hover .btn-link-green::after {
    width: 100%;
}
/* .single-nspiro-resources-list ul li .featured-arcicle-owl-title {
    min-height: 1px;
    text-overflow: unset;
    display: block;
} */

body.spiro-light-version,
.spiro-light-version .blog-archive-featured-owl .owl-dots,
.spiro-light-version footer {
    background: #FCFCF8;
}
.spiro-light-version .title-123,
.spiro-light-version .title-63,
.spiro-light-version .title-39,
.spiro-light-version .text-24,
.spiro-light-version .text-16,
.spiro-light-version .text-16-upcase,
.spiro-light-version .featured-arcicle-owl-title,
.spiro-light-version .featured-arcicle-owl-text,
.spiro-light-version .title-76,
.spiro-light-version .entry,
.spiro-light-version .entry p,
.spiro-light-version .entry.entry-lg p,
.spiro-light-version .entry blockquote,
.spiro-light-version .entry blockquote p,
.spiro-light-version .header-nav > ul > li > a,
.spiro-light-version .footer-nav-right ul li a,
.spiro-light-version .footer-copywrite {
    color: var(--darker-green);
}
.spiro-light-version .blog-archive-featured-owl,
.spiro-light-version .archive-npsiro-intro-featured,
.spiro-light-version .entry table th,
.spiro-light-version .entry table td {
    border-color: var(--darker-green);
}
.spiro-light-version .title-123 strong,
.spiro-light-version .title-63 strong,
.spiro-light-version .blog-archive-featured-owl .item a:hover .title-39,
.spiro-light-version .btn-link-green, 
.spiro-light-version .btn-link-green:focus, 
.spiro-light-version .btn-link-green:active,
.spiro-light-version .btn-link-green:hover
.spiro-light-version .blog-archive-list ul li a:hover .featured-arcicle-owl-title,
.spiro-light-version .blog-archive-list ul li a:hover .featured-arcicle-owl-title,
.spiro-light-version .entry a,
.spiro-light-version .entry a:hover,
.spiro-light-version .entry table th,
.spiro-light-version .header-nav > ul > li > a:hover,
.spiro-light-version .footer-nav-right ul li a:hover {
    color: var(--nspiro-tangerine);
}
.spiro-light-version .btn-link-green::before,
.spiro-light-version .btn-link-green::after,
.spiro-light-version .entry a::before,
.spiro-light-version .entry a::after,
.spiro-light-version .header-nav > ul > li > a:hover::before,
.spiro-light-version .header-nav > ul > li > a:hover::after {
    background: var(--nspiro-tangerine);
}
.spiro-light-version .blog-archive-featured-owl .owl-dots .owl-dot {
    background: var(--darker-green) !important;
}
.spiro-light-version .blog-archive-featured-owl .owl-dots .owl-dot.active {
    background: var(--nspiro-tangerine) !important;
}
.spiro-light-version .btn-green, 
.spiro-light-version .btn-green:focus, 
.spiro-light-version .btn-green:active,
.spiro-light-version .btn-green:hover {
    background: var(--nspiro-tangerine);
    color: var(--cream);
}
.spiro-light-version .just-title-intro-btn {
    padding-bottom: 0;
}
.spiro-light-version .entry blockquote {
    border-color: var(--nspiro-tangerine);
}
.spiro-light-version .entry blockquote::after {
    background: var(--nspiro-tangerine);
}
.spiro-light-version .entry > ul > li::before,
.spiro-light-version .header-nav > ul > li > a::before,
.spiro-light-version .header-nav > ul > li > a::after {
    background: var(--darker-green);
}
.spiro-light-version header {
    background: rgba(252, 252, 248, 0.05);
}
.spiro-light-version .footer-anim {
    z-index: 0;
}
.spiro-light-version .footer-anim svg g > g {
    opacity: 0.5 !important;
}
.spiro-light-version .main-footer {
    border-top: 1px solid rgba(60, 68, 57, 0.2);
}
.spiro-light-version .hamburger-inner, 
.spiro-light-version .hamburger-inner::after, 
.spiro-light-version .hamburger-inner::before {
    background: #3C4439;
}
.spiro-light-version header.is-active .hamburger-inner,
.spiro-light-version header.is-active .hamburger-inner::after,
.spiro-light-version header.is-active .hamburger-inner::before {
    background-color: var(--hybrid-green);
}
.spiro-light-version .contact-form-box {
    background: #F4F2EF;
}
.spiro-light-version .contact-form .mktoForm .mktoButtonWrap.mktoSimple .mktoButton,
.spiro-light-version .contact-form .mktoForm .mktoButtonWrap.mktoSimple .mktoButton:hover {
    background: var(--nspiro-tangerine) !important;
    color: var(--cream) !important;
}
.spiro-light-version .top-banner-hold-words .title-123 {
    color: var(--cream);
}

.header-logo-nspiro {
    position: absolute;
    top: 0; left: 0;
    opacity: 0;
    z-index: 2;
}
.post-type-archive-nspiro .header-logo img,
.single-nspiro .header-logo img,
.single-nspiro_gated .header-logo img {
    opacity: 0;
}
.post-type-archive-nspiro .header-logo img.header-logo-nspiro,
.single-nspiro .header-logo img.header-logo-nspiro,
.single-nspiro_gated .header-logo img.header-logo-nspiro {
    opacity: 1;
}
.spiro-light-version header.is-active .header-logo img {
    opacity: 1;
}
.spiro-light-version header.is-active .header-logo img.header-logo-nspiro {
    opacity: 0;
}
.post-type-archive-nspiro .footer-nav-item-socials a svg path,
.single-nspiro .footer-nav-item-socials a svg path,
.single-nspiro_gated .footer-nav-item-socials a svg path {
    fill: #4E544B;
}
.post-type-archive-nspiro .footer-nav-item-socials a:hover svg path,
.single-nspiro .footer-nav-item-socials a:hover svg path,
.single-nspiro_gated .footer-nav-item-socials a:hover svg path {
    fill: var(--nspiro-tangerine);
}

.works-home-word-marquee {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;

    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;

    white-space: nowrap;

    -webkit-animation: secondTypeIntroWordsMarquee  10s linear infinite;
    animation: secondTypeIntroWordsMarquee  10s linear infinite;
}

.bg-dark-grey {
	background-color: rgb(82, 86, 89);
}

.fancybox__iframe {
    width: 100% !important;
    height: 100% !important;
    max-width: 1280px !important;
    max-height: 720px !important;
}

.contact-form .mktoForm {
    padding: 0 !important;
    background-color: transparent !important;
    border-radius: 0 !important;
    width: 100% !important;
}
.contact-form .mktoOffset,
.contact-form .mktoGutter {
    display: none !important;
}
.contact-form .mktoForm .mktoFormRow .mktoFormCol .mktoFieldWrap label {
    display: block !important;
    width: 100% !important;
    padding: 0 !important;
    float: none !important;
    font-family: 'Lufga', sans-serif !important;
    color: var(--heythere-green);
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 1.31;
    letter-spacing: 1.6px;
    text-transform: uppercase;
    margin-bottom: 8px;
}
.contact-form .mktoForm .mktoFormRow .mktoFormCol .mktoFieldWrap label .mktoAsterix {
    display: none !important;
}
.contact-form .mktoForm .mktoFieldWrap, 
.contact-form .mktoForm .mktoOffset, 
.contact-form .mktoForm .mktoGutter, 
.contact-form .mktoForm .mktoFormCol {
    float: none !important;
}
.contact-form .mktoForm .mktoFormRow .mktoFormCol {
    margin-bottom: 16px !important;
}
.contact-form .mktoForm .mktoButtonWrap {
    display: block !important;
    margin: 32px 0 0 !important;
}
.contact-form .mktoForm .mktoButtonWrap.mktoSimple .mktoButton {
    display: inline-block !important;
    cursor: pointer !important;
    background: var(--hybrid-green) !important;
    color: var(--heythere-green) !important;
    font-family: 'Lufga', sans-serif !important;
    font-size: 14px !important;
    font-weight: 500 !important;
    line-height: 1.29 !important;
    text-transform: uppercase !important;
    text-align: center !important;
    padding: 24px 48px !important;
    transition: 0.2s linear !important;
    border: none !important;
    margin: 0 !important;
	border-radius: 9999px;
}
.contact-form .mktoForm .mktoButtonWrap.mktoSimple .mktoButton:hover {
    background: var(--darker-green) !important;
    color: var(--hybrid-green) !important;
}
.contact-form .mktoForm .mktoFormRow .mktoFormCol .mktoFieldWrap input.mktoHasWidth,
.contact-form .mktoForm .mktoFormRow .mktoFormCol .mktoFieldWrap select,
.contact-form .mktoForm .mktoFormRow .nice-select,
.contact-form .mktoForm textarea {
    height: 39px !important;
    width: 100% !important;
    border-radius:0 !important;
    border: none !important;
    border-bottom: 1px solid rgba(78, 84, 75, 0.3) !important;
    box-shadow: none !important;
    outline: none !important;
    padding: 0 !important;
    color: var(--heythere-green, #4E544B) !important;
    font-family: 'Lufga', sans-serif !important;
    font-size: 16px !important;
    font-weight: 400 !important;
    line-height: 1.5 !important;
    letter-spacing: -0.48px !important;
    background: transparent !important;
}
.contact-form .mktoForm .mktoFormRow .mktoFormCol .mktoFieldWrap input::placeholder {
    color: var(--heythere-green);
    opacity: 0.4;
}
.contact-form .mktoForm .mktoFormRow .mktoFormCol .mktoFieldWrap input::-webkit-input-placeholder { /* Chrome/Opera/Safari */
    color: var(--heythere-green);
    opacity: 0.4;
}
.contact-form .mktoForm .mktoFormRow .mktoFormCol .mktoFieldWrap input::-moz-placeholder { /* Firefox 19+ */
    color: var(--heythere-green);
    opacity: 0.4;
}
.contact-form .mktoForm .mktoFormRow .mktoFormCol .mktoFieldWrap input:-ms-input-placeholder { /* IE 10+ */
    color: var(--heythere-green);
    opacity: 0.4;
}
.contact-form .mktoForm .mktoFormRow .mktoFormCol .mktoFieldWrap input:-moz-placeholder { /* Firefox 18- */
    color: var(--heythere-green);
    opacity: 0.4;
}
.contact-form .mktoForm .mktoFormRow .mktoFormCol .mktoFieldWrap select,
.contact-form .mktoForm .mktoFormRow .nice-select {
    background: transparent url(../img/icon-select-foirm-chevron-down.svg) no-repeat right center !important;
    padding-right: 48px !important;
}
.contact-form .mktoForm textarea {
   height: 96px !important;
   resize: none !important;
}
.contact-form .mktoForm .mktoFormRow .mktoFormCol .mktoFieldWrap textarea::placeholder {
    color: var(--heythere-green);
    opacity: 0.4;
}
.contact-form .mktoForm .mktoFormRow .mktoFormCol .mktoFieldWrap textarea::-webkit-input-placeholder { /* Chrome/Opera/Safari */
    color: var(--heythere-green);
    opacity: 0.4;
}
.contact-form .mktoForm .mktoFormRow .mktoFormCol .mktoFieldWrap textarea::-moz-placeholder { /* Firefox 19+ */
    color: var(--heythere-green);
    opacity: 0.4;
}
.contact-form .mktoForm .mktoFormRow .mktoFormCol .mktoFieldWrap textarea:-ms-input-placeholder { /* IE 10+ */
    color: var(--heythere-green);
    opacity: 0.4;
}
.contact-form .mktoForm .mktoFormRow .mktoFormCol .mktoFieldWrap textarea:-moz-placeholder { /* Firefox 18- */
    color: var(--heythere-green);
    opacity: 0.4;
}

.home-intro-video-parallax {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%) scale(1.2);
    bottom: 0;
    height: 100vh;
}
.home-intro-video-parallax-move  {
    position: absolute;
    top: 0; 
    right: 0; 
    bottom: 0; 
    left: 0;
}

.page-template-tp-contact .main-footer {
    border-top: none;
    padding-top: 96px;
}

.accordion-for-seo-section {
    opacity: 0;
    visibility: hidden;
    position: relative;
    z-index: -10;
    overflow: hidden;
}
.accordion-for-seo-section .grid-container {
    position: absolute;
    bottom: 0; right: 0; left: 0;
}
.accordion-for-seo-section .faq-accordion {
    padding: 96px 0;
}
.accordion-for-seo-section .faq-accordion ul {
    width: 100%;
    margin: 0;
}
.accordion-for-seo-section .faq-accordion .accordion-item {
    border-bottom: 1px solid var(--cream);
}
.accordion-for-seo-section .accordion-content .entry {
    -webkit-animation-delay: 0.3s !important;
    animation-delay: 0.3s !important;
}
.accordion-for-seo-section .accordion-item.is-active .entry {
    -webkit-animation: fade-in 300ms forwards;
    animation: fade-in 300ms forwards;
}

.single-nspiro-intro-overview {
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;

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

    padding-top: 56px;
}
.single-nspiro-intro-overview-left {
    float: left;
    width: 37.9%;
    padding-right: 8.05%;
}
.single-nspiro-intro-overview-left .entry {
    padding-top: 0;
}
.single-nspiro-intro-overview-link {
    padding-top: 24px;
}
.single-nspiro-intro-overview-right {
    float: left;
    width: 62.1%;
}
.single-nspiro-intro-overview-video {
    padding-bottom: 56.25%;
}
.single-nspiro-intro-overview-video a {
    display: block;
    width: 100%; height: 100%;
    position: absolute;
    top: 0; left: 0;
}
.play-btn-orange {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    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;

    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: var(--nspiro-tangerine);
    -webkit-box-shadow: 0px 4px 14px 0px rgba(0, 0, 0, 0.25);
    box-shadow: 0px 4px 14px 0px rgba(0, 0, 0, 0.25);
    transition: 0.2s linear;
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    z-index: 3;
}
.play-btn-orange svg path {
    transition: 0.2s linear;
}
.single-nspiro-intro-overview-video a:hover .play-btn-orange {
    background: var(--cream);
}
.single-nspiro-intro-overview-video a:hover .play-btn-orange path {
    fill: var(--nspiro-tangerine);
}

.single-nspiro-resources-list ul li a:hover .play-btn-orange {
    background: var(--cream);
}
.single-nspiro-resources-list ul li a:hover .play-btn-orange path {
    fill: var(--nspiro-tangerine);
}

.archive-npsiro-intro .just-title-intro-btn {
    padding-bottom: 14px;
}

.section-community-exp-top .title-76 {
    max-width: 1030px;
    margin-left: auto;
    margin-right: auto;
}
.section-story-left > :last-child {
    margin-bottom: 0;
}

.play-btn-green {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    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;

    width: 94px;
    height: 94px;
    border-radius: 50%;
    background: var(--hybrid-green);
    -webkit-box-shadow: 0px 4px 14px 0px rgba(0, 0, 0, 0.25);
    box-shadow: 0px 4px 14px 0px rgba(0, 0, 0, 0.25);
    transition: 0.2s linear;
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    z-index: 3;
}
.play-btn-green svg {
    width: 32px;
    height: 32px;
}
.play-btn-green svg path {
    transition: 0.2s linear;
}
.full-video-section a:hover .play-btn-green {
    background: var(--darker-green);
}
.full-video-section a:hover .play-btn-green path {
    fill: var(--hybrid-green);
}

div.nspiro-text {
    display: inline;
    text-transform: none;
}

.post-list-three-cards {
    overflow: hidden;
}
.post-list-three-cards ul {
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;

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

    width: calc(100% + 20px);
    margin-bottom: -54px;
}
.post-list-three-cards ul li {
    float: left;
    width: calc(33.333% - 20px);
    margin: 0 20px 54px 0;
}
.post-list-three-cards ul li a {
    display: block;
    width: 100%; height: 100%;
}
.post-list-three-cards ul li a:hover .featured-arcicle-owl-title {
    color: var(--hybrid-green);
}
.post-list-three-cards ul li a:hover .btn-link-green::before,
.post-list-three-cards ul li a:hover .btn-link-green::after {
    width: 100%;
}

.menu-lowercase a {
    text-transform: none !important;
}
.nspiro-archive-featured .text-16-upcase {
    text-transform: none !important;
}

.logo-slider {
    overflow: hidden;
    white-space: nowrap;
}
.logo-slider-box {
    white-space: nowrap;
}
.logo-slider-item img {
    max-height: 74px;
    margin: 0 36px;
}
@-webkit-keyframes logoSlider {
    0% {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
    100% {
        -webkit-transform: translate3d(-50%, 0, 0);
        transform: translate3d(-50%, 0, 0);
    }
}
@keyframes logoSlider {
    0% {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
    100% {
        -webkit-transform: translate3d(-50%, 0, 0);
        transform: translate3d(-50%, 0, 0);
    }
}

.works-detail-gallery-items {
    overflow: hidden;
}
.works-detail-gallery-items img {
    width: calc(100% - 100px);
    height: calc(100% - 56px);
    bottom: auto;
    right: auto;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
}









/* Animations */
.animated-title .word-word {
    display: inline-block;
    overflow: hidden;
	padding-top: 0.13em;
    padding-bottom: 0.3em;
    line-height: 57%;
    white-space: nowrap;
}
.animated-title .word {
    display: inline-block;
    padding-right: 0.04em;
    transform: translateY( 185% );
    transition: transform 700ms cubic-bezier(.165,.84,.44,1);
    transition-delay: calc(75ms*var(--word-index));
}
.animated-title.in-view .word {
    transform: translateY(0);
}
.animated-title {
    opacity: 0;
}
.animated-title.in-view {
    opacity: 1;
}

.fade-up {
    opacity: 0;
    transform: translateY(50px);
}
.fade-up.in-view {
    -webkit-animation: fade-up 1s forwards;
    animation: fade-up 1s forwards;
}
.fade-up.fade-up-later {
    -webkit-animation-delay: 0.5s;
    animation-delay: 0.5s;
}
@-webkit-keyframes fade-up {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
@keyframes fade-up {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    opacity: 0;
}
.fade-in.in-view {
    -webkit-animation: fade-in 1s forwards;
    animation: fade-in 1s forwards;
}
.fade-in.fade-in-later {
    -webkit-animation-delay: 0.5s;
    animation-delay: 0.5s;
}
@-webkit-keyframes fade-in {
    to {
        opacity: 1;
    }
}
@keyframes fade-in {
    to {
        opacity: 1;
    }
}

.home .home-intro .title-123 sup,
.post-type-archive-work .title-123 sup  {
    font-size: 40%;
    top: -1.15em;
    margin-left: 7px;
}

/* header .btn-link-green, 
header .btn-link-green:focus, 
header .btn-link-green:active {
    letter-spacing: 1.6px;
} */
.home .section-works-items .works-home-word-marquee .title-123 {
    padding-left: 0.15em;
}

.contact-type-intro-left.entry h2 strong {
    color: var(--hybrid-green);
    font-weight: 700;
}

.pdfjs-fullscreen {
    display: none;
}
.pdfjs-iframe, 
.pdfjs-wrapper {
    width: 100% !important;
}

.text-green {
    color: var(--hybrid-green);
}

.work-single-back-to-overview {
    padding: 96px 0;
}

.footer-nav-item-socials a svg path {
    transition: 200ms linear;
}
.footer-nav-item-socials a:hover svg path {
    fill: var(--hybrid-green);
}

.cky-always-active,
.cky-show-desc-btn,
.cky-show-desc-btn:focus,
.cky-show-desc-btn:active {
    color: #BED732 !important;
}

.full-video-section.full-video-section-gridded {
    padding-bottom: 50%;
}


.home-intro-box-text-sm {
    margin-top: 22px;

    opacity: 0;
    visibility: hidden;
    transition: 400ms linear;
    transition-delay: 0s;
    -webkit-transition-delay: 800ms;
    -o-transition-delay: 800ms;
    transition-delay: 800ms;
}
.home-intro.in-view .home-intro-box-text-sm {
  opacity: 1;
  visibility: visible;
}
.home-intro-box-text-sm .text-24 {
    max-width: 610px;
    margin: 0 auto;
}
.news-resources-grid-section {
    padding-top: 112px;
}
.news-resources-grid-section-list {
    overflow: hidden;
}
.news-resources-grid-section-list ul {
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;

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

    width: calc(100% + 24px);
    margin-bottom: -24px;
    transition: 0.2s linear;
}
.news-resources-grid-section-list ul li {
    float: left;
    margin: 0 24px 24px 0;
}
.news-resources-grid-section-list ul li a {
    display: block;
    width: 100%; height: 100%;
    position: relative;
    cursor: none;
}
.news-resources-grid-section-list ul li .archive-section-work-items-img::before,
.archive-section-work-items-img-custom::before {
    content: '';
    width: 100%; height: 100%;
    background: #000;
    opacity: 0.2;
    transition: 0.2s ease-in-out;
    position: absolute;
    top: 0; left: 0;
    z-index: 1;
}
.news-resources-grid-section-list ul li a:hover .archive-section-work-items-img::before,
.archive-section-work-items ul li a:hover .archive-section-work-items-img-custom::before {
    opacity: 0.5;
}
.news-resources-grid-section-list-title {
    position: absolute;
    top: 0; right: 0; bottom: 0; left: 0;
    z-index: 2;

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

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

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

    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;

    color: var(--cream);
    font-size: 39px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: -0.39px;
    padding: 24px;
}

.simple-hero-section {
    padding: 146px 0 96px;
}
.simple-hero-section .text-24 {
    margin-top: 42px;
    max-width: 610px;
}

.exhibits-list-section {
    padding-bottom: 196px;
}

.no-padding-list .exhibits-list-section-list ul li {
  padding-bottom: 0 !important;
}

.exhibits-list-section-list .object-fit {
  padding-bottom: 0 !important;
}

.exhibits-list-section-list {
    overflow: hidden;
}
.exhibits-list-section-list ul {
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;

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

    width: calc(100% + 20px);
}
.exhibits-list-section-list ul li {
    float: left;
    width: calc(33.333% - 20px);
    margin: 0 20px 20px 0;
    padding-bottom: 23.8%;
}
.exhibits-list-section + .contact-form-section {
    padding-bottom: 0;
}
.exhibits-list-section-list-click ul li {
    cursor: pointer;
    transition: 0.2s ease-in-out;
}
.exhibits-list-section-list-click ul li:hover {
    opacity: 0.7;
}

.team-list-section {
    padding: 96px 0;
    background: var(--darker-green);
}
.team-list {
    overflow: hidden;
}
.team-list ul {
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;

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

    width: calc(100% + 20px);
}
.team-list ul li {
    float: left;
    width: calc(33.333% - 20px);
    margin: 0 20px 20px 0;
    cursor: pointer;
}
.team-list ul li:hover .leadership-list-hover {
    opacity: 1;
    visibility: visible;
}
.team-list ul li .leadership-list-photo {
    padding-bottom: 100%;
}

.archive-insights-intro .text-24 {
    margin-top: 48px;
    max-width: 610px;
}
.insights-archive-list ul li .featured-arcicle-owl-text {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}
.single-blog-content.single-team-content {
    padding-bottom: 96px;
}

.logo-strip-list {
    overflow: hidden;
}
.logo-strip-list ul {
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;

    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}
.logo-strip-list ul li {
    float: left;
    padding: 0 36px;
}
.logo-strip-list ul li img {
    max-height: 74px;
}

.quote-block-box {
    background: var(--darker-green);
    padding: 96px 105px;
}
.quote-block-box-content {
    padding-left: 210px;
    color: var(--cream);
    position: relative;
}
.quote-block-box-brakets {
    position: absolute;
    top: 0; left: 0;
}
.quote-block-box-content > :last-child {
    margin-bottom: 0;
}
.quote-block-text {
    font-size: 34px;
    font-weight: 400;
    line-height: 1.29;
    letter-spacing: 0.36px;
    margin-bottom: 32px;
}
.quote-block-person {
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    line-height: 1;
    letter-spacing: -0.24px;
    text-transform: uppercase;
    margin-bottom: 8px;
}
.quote-block-company {
    font-size: 16px;
    font-weight: 400;
    line-height: 1.33;
    letter-spacing: -0.48px;
}

.blog-archive-content-btns {
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;

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

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

    padding-top: 42px;
}
.blog-archive-content-btns .blog-archive-content-btn {
    padding-top: 0;
}
.news-and-resources-back-hold {
    padding-left: 20px;
}
.news-and-resources-back-section {
    padding-top: 96px;
}

/* spiro (New Spiro Pages) */
.section-talent-acqu-w-bg-image {
    position: relative;
    min-height: 100vh;

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

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

    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}
.section-talent-acqu-bg-image {
    position: absolute;
    top: 0; right: 0; bottom: 0; left: 0;
    z-index: -1;
}
.section-talent-acqu-bg-image::after {
    content: '';
    width: 100%; height: 100%;
    background: #000;
    opacity: 0.4;
    position: absolute;
    top: 0; left: 0;
}
.section-talent-acqu-w-bg-image .text-24 {
    display: inline-block;
    width: 100%;
    max-width: 712px;
    margin-left: auto;
    margin-right: auto;
}

.section-commitment-list {
    overflow: hidden;
}
.section-commitment-list ul {
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;

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

    width: calc(100% + 20px);
    margin-bottom: -20px;
}
.section-commitment-list ul li {
    float: left;
    width: calc(33.333% - 20px);
    margin: 0 20px 20px 0;
    background: var(--darker-green);
    padding: 32px;
}
.section-commitment-list-icon {
    height: 96px;
    margin-bottom: 72px;
}
.section-commitment-list-icon img {
    max-height: 100%;
}

.section-mission-statement-box .text-16-upcase {
    margin-bottom: 16px;
}
.section-mission-statement-box .title-76,
.section-4-up-cards .title-76, .section-7-up-cards .title-76,
.section-mission-statement-box .entry {
    margin-bottom: 32px;
}
.section-mission-statement-box .entry {
    display: inline-block;
    width: 100%;
    max-width: 820px;
    margin-left: auto;
    margin-right: auto;
}
.section-mission-statement-box > div:last-child {
    margin-bottom: 0;
}
.section-mission-statement-logos {
    padding-top: 10px;
    overflow: hidden;
}
.section-mission-statement-logos ul {
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;

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

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

    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;

    margin-bottom: -32px;
}
.section-mission-statement-logos ul li {
    margin: 0 32px 32px 0;
}
.section-mission-statement-logos ul li:last-child {
    margin-right: 0;
}
.section-mission-statement-logos ul li img {
    max-height: 124px;
}

.bullet-list-block-left {
    padding-right: 60px;
}
.bullet-list-block-left .title-76 {
    margin-bottom: 32px;
}
.bullet-list-block-right {
    padding-left: 10px;
}
.bullet-list-block-list {
    background: var(--darker-green);
    padding: 40px 32px;
}
.bullet-list-block-list ul li {
    position: relative;
    margin-bottom: 32px;
    padding-left: 32px;
    color: var(--cream);
    font-size: 20px;
    line-height: 1.29;
    letter-spacing: 0.24px;
}
.bullet-list-block-list ul li::before {
    content: '';
    width: 8px; height: 8px;
    border-radius: 50%;
    background: var(--hybrid-green);
    position: absolute;
    top: 8px; left: 0;
}
.bullet-list-block-list ul li:last-child {
    margin-bottom: 0;
}

.section-open-positions-box-reverse {
    padding-top: 0;
}
.section-open-positions-box-reverse .section-open-positions-box-right {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;

    padding-left: 0;
    padding-right: 11px;
}
.section-open-positions-box-reverse .section-open-positions-box-left {
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2;
}

.top-banner-hold {
    background: var(--darker-green);
    overflow: hidden;
    position: relative;
}
.top-banner-hold a {
    display: block;
    padding: 16px 0;
}
.top-banner-hold .second-type-intro-words {
    margin-bottom: 0;
}
.top-banner-hold .title-123 {
    font-size: 39px;
    line-height: 100%;
    letter-spacing: -0.39px;
}
.top-banner-hold + header {
    top: 71px;
    transition: transform 0.3s, top 0.3s;
}
.top-banner-hold + header.header-scrolled {
    top: 0;
}
.top-banner-hold + header.banner-hidden {
    top: 0;
}
.top-banner-hold + header.is-active {
    top: 0 !important
}
.top-banner-hold-close {
    position: absolute;
    width: 71px; height: 100%;
    background: var(--darker-green) url(../img/icon-close-40-white.svg) no-repeat center center;
    cursor: pointer;
    z-index: 5;
    position: absolute;
    top: 0; right: 0;
}
.top-banner-hold-close::before {
    content: '';
    width: 71px; height: 100%;
    background: -webkit-gradient(linear, right top, left top, from(#3C4439), color-stop(6.67%, rgba(60, 68, 57, 0.99)), color-stop(13.33%, rgba(60, 68, 57, 0.96)), color-stop(20%, rgba(60, 68, 57, 0.92)), color-stop(26.67%, rgba(60, 68, 57, 0.85)), color-stop(33.33%, rgba(60, 68, 57, 0.77)), color-stop(40%, rgba(60, 68, 57, 0.67)), color-stop(46.67%, rgba(60, 68, 57, 0.56)), color-stop(53.33%, rgba(60, 68, 57, 0.44)), color-stop(60%, rgba(60, 68, 57, 0.33)), color-stop(66.67%, rgba(60, 68, 57, 0.23)), color-stop(73.33%, rgba(60, 68, 57, 0.15)), color-stop(80%, rgba(60, 68, 57, 0.08)), color-stop(86.67%, rgba(60, 68, 57, 0.04)), color-stop(93.33%, rgba(60, 68, 57, 0.01)), to(rgba(60, 68, 57, 0.00)));
    background: -o-linear-gradient(right, #3C4439 0%, rgba(60, 68, 57, 0.99) 6.67%, rgba(60, 68, 57, 0.96) 13.33%, rgba(60, 68, 57, 0.92) 20%, rgba(60, 68, 57, 0.85) 26.67%, rgba(60, 68, 57, 0.77) 33.33%, rgba(60, 68, 57, 0.67) 40%, rgba(60, 68, 57, 0.56) 46.67%, rgba(60, 68, 57, 0.44) 53.33%, rgba(60, 68, 57, 0.33) 60%, rgba(60, 68, 57, 0.23) 66.67%, rgba(60, 68, 57, 0.15) 73.33%, rgba(60, 68, 57, 0.08) 80%, rgba(60, 68, 57, 0.04) 86.67%, rgba(60, 68, 57, 0.01) 93.33%, rgba(60, 68, 57, 0.00) 100%);
    background: linear-gradient(270deg, #3C4439 0%, rgba(60, 68, 57, 0.99) 6.67%, rgba(60, 68, 57, 0.96) 13.33%, rgba(60, 68, 57, 0.92) 20%, rgba(60, 68, 57, 0.85) 26.67%, rgba(60, 68, 57, 0.77) 33.33%, rgba(60, 68, 57, 0.67) 40%, rgba(60, 68, 57, 0.56) 46.67%, rgba(60, 68, 57, 0.44) 53.33%, rgba(60, 68, 57, 0.33) 60%, rgba(60, 68, 57, 0.23) 66.67%, rgba(60, 68, 57, 0.15) 73.33%, rgba(60, 68, 57, 0.08) 80%, rgba(60, 68, 57, 0.04) 86.67%, rgba(60, 68, 57, 0.01) 93.33%, rgba(60, 68, 57, 0.00) 100%);
    position: absolute;
    top: 0; right: 100%;
    pointer-events: none;
}

.header-nav > ul > li > ul {
    background: var(--darker-green);
    padding: 24px;
    margin: 0;
    position: absolute;
    top: calc(100% + 10px); left: -24px;
    display: none;
    min-width: 257px;
}
.header-nav > ul > li > ul li {
    margin-bottom: 12px;
}
.header-nav > ul > li > ul li:last-child {
    margin-bottom: 0;
}
.header-nav > ul > li > ul li a {
    display: block;
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: 130%;
    letter-spacing: 1.6px;
    text-transform: uppercase;
    color: var(--cream);
    transition: 200ms linear;
}
.header-nav > ul > li > ul li a:hover {
    color: var(--hybrid-green);
}

.single-insight-gated-intro {
    padding: 146px 0 0;
}
.single-insight-gated-intro-left {
    padding-right: 70px;
}
/*.single-insight-gated-intro-left .title-63 {
    margin-bottom: 32px;
}*/
.single-insight-gated-intro-right-thnks .title-39 {
    margin-bottom: 32px;
}
.single-insight-gated-intro-right-thnks .text-24 {
    margin-bottom: 32px;
    color: var(--darker-green);
    max-width: 455px;
}
.single-insight-gated-intro-right-thnks-btn {
    padding-top: 16px;
}
.single-insight-back-btn {
    padding-top: 96px;
}

.section-hero-w-list-image {
    padding: 146px 0 87px;
}
.section-hero-w-list-image-left {
    padding-right: 20px;
}
.section-hero-w-list-image-left .title-123,
.section-hero-w-list-image-left .text-24-upcase {
    margin-bottom: 8px;
}
.section-hero-w-list-image-left .entry {
    padding-top: 40px;
}
.entry.entry-lg p {
    color: var(--cream);
    font-size: 20px;
    line-height: 1.29;
    letter-spacing: 0.24px;
    margin-bottom: 20px;
}
.entry.entry-lg li {
    color: var(--cream);
    font-size: 20px;
    line-height: 1.29;
    letter-spacing: 0.24px;
}
.entry.entry-lg > ul > li::before {
    top: 11px;
}

.section-4-up-cards {
    padding: 0 0 112px;
}
.section-4-up-cards-list {
    overflow: hidden;
}
.section-4-up-cards-list ul {
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;

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

    width: calc(100% + 20px);
    margin-bottom: -20px;
}
.section-4-up-cards-list ul li {
    float: left;
    width: calc(25% - 20px);
    margin: 0 20px 20px 0;
    background: var(--darker-green);
    padding: 32px;
    min-height: 332px;

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

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

    -ms-flex-line-pack: justify;
    align-content: space-between; */
}
.section-4-up-cards-list ul li > div {
    width: 100%;
}
.section-4-up-cards-list-top {
    margin-bottom: 32px;
    font-size: 20px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: -0.24px;
    text-transform: uppercase;
    color: var(--cream);
}
.section-4-up-cards-list-top img {
    max-height: 96px;
}

.section-7-up-cards {
    padding: 0 0 112px;
}
.section-7-up-cards-list {
    overflow: hidden;
}
.section-7-up-cards-list ul {
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;

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

    width: calc(100% + 20px);
    margin-bottom: -20px;

    justify-content: center;
}
.section-7-up-cards-list ul li {
    float: left;
    width: calc(25% - 20px);
    margin: 0 20px 20px 0;
    background: var(--darker-green);
    padding: 32px;
    min-height: 332px;
    text-align: center;

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

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

    -ms-flex-line-pack: justify;
    align-content: space-between; */
}
.section-7-up-cards-list ul li > div {
    width: 100%;
}
.section-7-up-cards-list-top {
    margin-bottom: 32px;
    font-size: 20px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: -0.24px;
    text-transform: uppercase;
    color: var(--cream);
}
.section-7-up-cards-list-top img {
    max-height: 96px;
}

.secetion-relative {
    position: relative;
}
.section-mission-statement-box-btn {
    margin-bottom: 32px;
}

.nopad-top {
    padding-top: 0 !important;
}

.nopad-bottom {
    padding-bottom: 0 !important;
}

.section-testimonial-carousel {
    overflow: hidden;
}
.testimonial-carousel-owl-nav {
    margin-top: 48px;
}
.testimonial-carousel-owl-nav ul {
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;

    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
	justify-content: center;
}
.testimonial-carousel-owl-nav ul li {
    float: left;
    width: 66px; height: 66px;
    background: var(--darker-green);
    margin-right: 16px;
    cursor: pointer;
    transition: 0.2s ease-in-out;

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

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

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

    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}
.testimonial-carousel-owl-nav ul li:last-child {
    margin-right: 0;
}
.testimonial-carousel-owl-nav ul li svg path {
    transition: 0.2s ease-in-out;
}
.testimonial-carousel-owl-nav ul li:hover {
    background: var(--hybrid-green);
}
.testimonial-carousel-owl-nav ul li:hover svg path {
    stroke: var(--darker-green);
}
.section-testimonial-carousel {
    justify-content: center;
}
.section-photo-testimonial-carousel-left {
	text-align: center;
}
.section-testimonial-carousel-right {
    padding-left: 72px;
}
.testimonial-carousel-owl {
    padding: 80px 72px;
    color: var(--cream);
}
.testimonial-carousel-owl::after {
    content: '';
    width: 100%;
    height: 100%;
    background: var(--darker-green);
    position: absolute;
    top: 0; left: 0;
    z-index: -1;
}
.testimonial-carousel-owl-text {
    padding-top: 90px;
    position: relative;
    font-size: 36px;
    font-weight: 400;
    line-height: 1.29;
    letter-spacing: 0.36px;
    margin-bottom: 32px;
}
.testimonial-carousel-owl-text svg {
    position: absolute;
    top: 0; left: 0;
}
.testimonial-carousel-owl-name {
    font-size: 24px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: -0.24px;
    text-transform: uppercase;
    margin-bottom: 8px;
}
.testimonial-carousel-owl-position {
    font-size: 16px;
    font-weight: 400;
    line-height: 1.33;
    letter-spacing: -0.48px;
}


.photo-testimonial-wrapper {
	margin-bottom: 4rem;
}

.photo-testimonial-slide {
	display: flex;
	align-items: flex-start;
	gap: 1.5rem;
}

.photo-testimonial-item {
	gap: 20px;
	flex-wrap: nowrap;
}

.photo-testimonial-image img {
	aspect-ratio: 1;
	border-radius: 100000000px;
	position: relative;
}

.photo-testimonial-content {
	display: flex;
	flex-direction: column;
	gap: 1.5rem;
}

.photo-testimonial-title h1 {
	margin-bottom: 1rem;
}

.photo-testimonial-quote svg {
	margin-bottom: 1rem;
	display: block;
}

.photo-testimonial-quote {
	font-size: 1.2rem;
	line-height: 1.6;
	padding-right: 20px;
}

.photo-testimonial-name,
.photo-testimonial-position {
	font-size: 1rem;
	line-height: 1.4;
}

@media screen and (max-width: 767px) {
	.photo-testimonial-slide {
		flex-direction: column;
	}

	.photo-testimonial-image {
		max-width: 100%;
		margin-bottom: 1.5rem;
	}
}



.section-mission-statement-box  .title-76 img {
    max-height: 144px;
}

/* Media */
@media only screen and (max-width: 1290px) {
    .title-123 {
        font-size: 108px;
    }
} /* end of max-width 1290 */

@media only screen and (max-width: 1179px) {
    .contact-additional-box-list ul {
        width: 100%;

        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }
    .contact-additional-box-list ul li {
        width: 100%;
        margin: 0 0 48px 0;
    }
    .contact-additional-box-list ul li:last-child {
        margin-bottom: 0;
    }
    .contact-additional-box-list-first {
        -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
        order: 1;
    }
    .contact-additional-box-list-second {
        -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
        order: 2;
    }
    .contact-additional-box-list-third {
        -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
        order: 3;
    }
    .contact-additional-box-list-fourth {
        -webkit-box-ordinal-group: 5;
        -ms-flex-order: 4;
        order: 4;
    }
} /* end of max-width 1179 */

@media only screen and (max-width: 1139px) {
    .title-123 {
        font-size: 100px;
    }
    .title-123 sup {
        top: -2.55em;
    }
    .section-about-us-right {
        padding-right: 0;
        padding-left: 5%;
    }
    .archive-npsiro-intro .just-title-intro-btn {
        padding-bottom: 9px;
    }
} /* end of max-width 1139 */

@media only screen and (max-width: 1023px) {
    .grid-container.grid-container-p20 {
        padding: 0 20px;
    }
	.hamburger {
		display: inline-block;
	}
    .header-nav,
    .header-right a {
        display: none;
    }
    header {
        padding: 20px 0;
    }
    .main-footer {
        padding: 30px 0 54px;
    }
    .footer-nav-right {
        padding-top: 25px;
    }
    .footer-nav-right-box-m {
        display: -moz-box;
        display: -ms-flexbox;
        display: -webkit-flex;
        display: flex;
    }
    .footer-nav-item {
        width: 50%;
    }
    .footer-nav-right ul {
        margin-bottom: 15px;
    }
    .footer-nav-right ul:last-child {
        margin-bottom: 0;
    }
    .footer-nav-right ul li {
        margin-bottom: 15px;
    }
    .footer-nav-right ul li a {
        font-size: 12px;
        letter-spacing: 1.2px;
    }
    .footer-nav-right-box-mr {
        width: 50%;
    }
    .footer-nav-right-box-mr .footer-nav-item-socials {
        margin-top: 15px;
        margin-left: -5px;
    }
    .footer-nav-right-box-mr .footer-nav-item-socials svg {
        width: 28px; height: 28px;
    }
    .footer-copywrite {
        padding: 0;
        font-size: 12px;
        letter-spacing: -0.36px;
    }
    .footer-m-menu {
        margin-top: 15px;
    }
    .footer-m-menu ul li {
        margin-bottom: 15px;
    }
    .footer-m-menu ul li:last-child {
        margin-bottom: 0;
    }
    .footer-m-menu ul li a {
        font-size: 11px;
        line-height: 1.25;
        letter-spacing: -0.315px;
    }
    .title-123 {
        font-size: 80px;
    }
    .home-footer {
        padding: 120px 0 194px;
    }
    .home-footer-left {
        padding-right: 0;
        margin-bottom: 40px;
    }
    .home-footer-right-btn {
        padding-top: 40px;
    }
    .section-about-left {
        margin-bottom: 30px;
    }
    .section-about {
        padding: 120px 0 0;
    }
    .circle-explore {
        display: none !important;
    }
    .section-works-item a {
        cursor: pointer;
    }
    .section-works-item-btn {
        padding-top: 17px;
        position: relative;
    }
    .section-works-item-btn-circle {
        display: -webkit-inline-box;
        display: -ms-inline-flexbox;
        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;

        width: 75px;
        height: 75px;
        border-radius: 50%;
        background: var(--hybrid-green);
        padding: 5px;
        font-size: 12px;
        font-weight: 300;
        line-height: 1.25;
        text-transform: uppercase;
        color: var(--heythere-green);
    }
    .home-intro-box {
        padding: 160px 0 80px;
    }
    .text-24-upcase,
    .text-24 {
        font-size: 18px;
    }
    .btn-video, 
    .btn-video:focus, 
    .btn-video:active {
        font-size: 14px;
        font-weight: 500;
        line-height: 1;
        padding-left: 26px;
    }
    .btn-video::before {
        width: 16px;
        height: 16px;
    }
    .home-intro-box-text .text-24-upcase {
        margin-bottom: 22px;
        font-size: 18px;
        /* margin-top: -10px; */
    }
    .template-404 footer {
        background: var(--heythere-green);
    }
    .section-404 {
        /* background: var(--heythere-green) url(../img/img-header-circles.png) no-repeat top right; */
        min-height: calc(100vh - 316px);
    }
    .section-404 .home-footer {
        padding: 120px 0 60px;
    }
    .section-leadership-top .text-16-upcase {
        padding-right: 0;
        margin-bottom: 30px;
    }
    .section-leadership-top {
        margin-bottom: 64px;
    }
    .reveal.leadership-reveal {
        padding: 85px 40px;
    }
    .leadership-reveal-name {
        font-size: 28px;
    }
    .section-leadership-list ul li {
        width: calc(33.333% - 20px);
    }
    .full-logo-slider .item {
        height: 54px;
    }
    .full-logo-slider .item img {
        max-height: 54px;
    }
    .logo-slider-item img {
        max-height: 54px;
        margin: 0 26px;
    }
    .featured-arcicle-top .title-63 {
        width: 100%;
        padding-right: 0;
        margin-bottom: 24px;
    }
    .featured-arcicle-top-link {
        width: 100%;
    }
    .faq-accordion {
        width: 100%;
    }
    .faq-accordion ul {
        width: 100%;
        margin: 0 0 48px 0;
    }
    .faq-accordion ul:last-child {
        margin-bottom: 0;
    }
    .section-faq-top .text-16-upcase {
        margin-bottom: 30px;
    }
    .second-type-intro-about .text-16-upcase {
        padding-right: 0;
        margin-bottom: 30px;
    }
    .works-detail-overview-split-item-texthold {
        padding: 0 !important;
        margin-bottom: 64px;
    }
    .works-detail-overview-split-item-imghold {
        padding: 0 !important;
    }
    .archive-section-work-filters > ul {
        width: 100%;
    }
    .archive-section-work-filters > ul > li {
        width: 100%;
        margin: 0 0 48px 0;
    }
    .archive-section-work-filters > ul > li:last-child {
        margin-bottom: 0;
    }
    .archive-section-work-items ul {
        width: 100%;
        margin-bottom: 0;
    }
    .archive-section-work-items ul li {
        width: 100% !important;
        margin: 0 0 24px;
    }
    .archive-section-work-items ul li:last-child {
        margin-bottom: 0;
    }
    .archive-section-work-items-img {
        padding-bottom: 54.44% !important;
    }
    .archive-section-work-items-textbox {
        padding: 32px 32px;
    }
    .archive-section-work-items-cat.text-16 {
        font-size: 12px;
    }
    .section-community-exp-list-imghold {
        padding-left: 0;
        margin-top: 64px;
    }
    .section-community-exp-list-texthold {
        padding-top: 0;
    }
    .section-comm-frame-imghold {
        padding-right: 0;
        margin-bottom: 64px;
    }
    .section-comm-frame-list {
        padding-left: 0;
        display: block;
    }
    .section-comm-frame-list ul li {
        width: 100%;
        margin-right: 0;
        margin-top: 0;
        margin-bottom: 48px;
    }
    .section-comm-frame-list ul li:last-child {
        margin-bottom: 0;
    }
    .blog-archive-featured-owl-imghold {
        padding-left: 0;
        margin-bottom: 24px;
    }
    .blog-archive-list ul li .featured-arcicle-owl-title {
        font-size: 18px;
        /* min-height: 54px; */
    }
    .title-76 {
        font-size: 56px;
    }
    .title-63 {
        font-size: 43px;
    }
    .single-blog-content {
        padding: 0 0 120px;
    }
    .single-blog-content-info {
        padding-top: 64px;
    }
    .just-title-intro-btn {
        display: block;
        padding-bottom: 0;
        padding-top: 32px;
    }
    .section-about-us-left {
        padding-right: 0;
    }
    .section-about-us-left .title-76 {
        margin-bottom: 48px;
    }
    .section-about-us-right {
        padding-left: 0;
    }
    .section-core-values-top .text-16-upcase {
        margin-bottom: 30px;
    }
    .section-talent-acqu {
        padding: 120px 0;
    }
    .section-open-positions-box-right {
        padding-left: 0;
    }
    .section-core-values-list ul li {
        width: calc(50% - 80px);
        margin: 0 80px 80px 0;
    }
    /* .section-open-positions {
        padding-top: 144px;
    } */
    .contact-type-intro-left {
        padding-right: 0;
        margin-bottom: 64px;
    }
    .single-nspiro-resources-list ul li {
        width: calc(50% - 20px);
    }
    .home-footer.home-footer-lg {
        padding-top: 144px;
    }
    .archive-section-work-items-textbox {
        opacity: 1;
        visibility: visible;
        background: rgb(23,27,39);
        background: -moz-linear-gradient(0deg, rgba(23,27,39,1) 20%, rgba(23,27,39,0) 100%);
        background: -webkit-linear-gradient(0deg, rgba(23,27,39,1) 20%, rgba(23,27,39,0) 100%);
        background: linear-gradient(0deg, rgba(23,27,39,1) 20%, rgba(23,27,39,0) 100%);
        filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#171b27",endColorstr="#171b27",GradientType=1);
    }
    .archive-section-work-items ul li a {
        cursor: pointer;
    }
    .single-nspiro-intro-overview-left {
        width: 100%;
        padding-right: 0;
        margin-bottom: 30px;
    }
    .single-nspiro-intro-overview-right {
        width: 100%;
    }
    .single-nspiro-intro-overview > :last-child {
        margin-bottom: 0;
    }
    .archive-npsiro-intro .just-title-intro-btn {
        padding-bottom: 0;
    }
    .section-community-exp-list-textitem:last-child {
        margin-bottom: 48px !important;
    }
    .section-community-exp-top .title-76 {
        max-width: 880px;
    }
    .section-story-left {
        margin-bottom: 16px;
        padding-right: 0;
    }
    .second-type-intro-about-work.second-type-intro-about .text-16-upcase {
        margin-bottom: 0;
        margin-top: 30px;
    }
	.section-about-us.section-about-us-padding-no .section-story-right {
		padding-bottom: 64px;
	}
    .section-story-video.object-fit {
        margin-top: 64px;
    }
    .section-awards-right ul li {
        width: calc(33.333% - 26px);
    }
    .news-resources-grid-section-list ul {
        width: 100%;
        margin-bottom: 0;
    }
    .news-resources-grid-section-list ul li {
        width: 100% !important;
        margin: 0 0 24px;
    }
    .news-resources-grid-section-list ul li:last-child {
        margin-bottom: 0;
    }
    .news-resources-grid-section-list ul li a {
        cursor: pointer;
    }
    .news-resources-grid-section-list-title {
        font-size: 32px;
    }
    .exhibits-list-section {
        padding-bottom: 124px;
    }
    .simple-hero-section {
        padding: 130px 0 80px;
    }
    .single-blog-content.single-team-content {
        padding-bottom: 48px;
    }
    .quote-block-box {
        padding: 48px 64px;
    }
    .quote-block-box-content {
        padding-left: 0;
        padding-top: 110px;
    }
    .quote-block-text {
        font-size: 32px;
    }
    .section-commitment-list ul {
        width: 100%;
        margin-bottom: 0;
    }
    .section-commitment-list ul li {
        width: 100%;
        margin: 0 0 20px 0;
    }
    .section-commitment-list ul li:last-child {
        margin-bottom: 0;
    }
    .bullet-list-block-left {
        padding-right: 0;
        margin-bottom: 32px;
    }
    .bullet-list-block-right {
        padding-left: 0;
    }
    .section-open-positions-box-reverse .section-open-positions-box-right {
        padding-right: 0;
    }
    .top-banner-hold .title-123 {
        font-size: 29px;
    }
    .top-banner-hold + header {
        top: 61px;
    }
    .section-talent-acqu-w-bg-image {
        min-height: 1px;
    }
    .single-insight-gated-intro {
        padding: 130px 0 0;
    }
    .single-insight-gated-intro-left {
        padding-right: 0;
        margin-bottom: 64px;
    }
    .section-hero-w-list-image {
        padding: 130px 0 80px;
    }
    .section-hero-w-list-image-left {
        padding-right: 0;
        margin-bottom: 64px;
    }
    .section-hero-w-list-image-img {
        text-align: center;
    }
    .entry.entry-lg p,
    .entry.entry-lg li {
        font-size: 18px;
    }
    .entry.entry-lg > ul > li::before {
        top: 9px;
    }
    .section-4-up-cards-list ul li {
        width: calc(50% - 20px);
    }
    .section-7-up-cards-list ul li {
        width: calc(50% - 20px);
    }
    .section-testimonial-carousel-right {
        margin-top: 48px;
        padding-left: 0;
    }
    .testimonial-carousel-owl {
        padding: 40px 24px;
    }
    .testimonial-carousel-owl::after {
        width: 100%;
    }
    .testimonial-carousel-owl-text {
        font-size: 24px;
    }
    .testimonial-carousel-owl-name {
        font-size: 18px;
    }
    .testimonial-carousel-owl-position {
        font-size: 14px;
    }
    .testimonial-carousel-owl-nav ul {
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
    }
    .testimonial-carousel-owl-nav {
        margin-top: 32px;
    }
    .section-mission-statement-box  .title-76 img {
        max-height: 106px;
    }
} /* end of max-width 1023 */

@media screen and (max-width:639px) {
    .home .home-intro .title-123 sup,
    .post-type-archive-work .title-123 sup {
        font-size: 50%;
        top: -0.85em;
        margin-left: 3px;
    }
	.title-123 {
        font-size: 40px;
        /* line-height: 68%; */
        letter-spacing: -1.2px;
    }
    .text-16-upcase {
        font-size: 14px;
        letter-spacing: 1.4px;
    }
    .title-76 {
        font-size: 38px;
        letter-spacing: -1.14px;
    }
    .title-63 {
        font-size: 32px;
        letter-spacing: -1.14px;
    }
    .pulse-circle-56p {
        width: 26px;
        height: 26px;
        margin-right: 30px;
    }
    .section-about-bottom-circle {
        width: 240px;
        height: 240px;
    }
    .btn-link-white, .btn-link-white:focus, .btn-link-white:active {
        font-size: 14px;
        letter-spacing: 1.4px;
    }
    .section-works-items-navbox {
        border-radius: 5px;
        padding: 5px;
    }
    .section-works-items-nav-item {
        height: 30px;
    }
    .home-intro .animated-title {
        min-width: calc(100% + 30px);
        margin-left: -15px;
    }
    .section-leadership {
        padding: 120px 0;
    }
    .section-leadership-list ul {
        /* width: 100%; */
        margin-bottom: -48px;
    }
    .section-leadership-list ul li {
        width: calc(50% - 20px);
        /* margin: 0 0 40px 0; */
    }
    .section-leadership-list ul li:last-child {
        margin-bottom: 0;
    }
    .section-leadership-list ul li .leadership-list-name {
        font-size: 18px;
    }
    .section-leadership-list ul li .leadership-list-position {
        font-size: 14px;
    }
    /* .full-logo-slider .item img {
        max-height: 32px;
    } */
    .logo-slider-item img {
        max-height: 32px;
        margin: 0 16px;
    }
    .section-multi-items-top {
        margin-bottom: 64px;
    }
    .section-awards-right ul {
        width: calc(100% + 12px);
        margin-bottom: -12px;
    }
    .section-awards-right ul li {
        width: calc(50% - 12px);
        height: 111px;
        margin: 0 12px 12px 0;
    }
    .section-padding-144 {
        padding: 120px 0;
    }
    .section-padding-top-144 {
        padding-top: 120px !important;
    }
    .section-padding-bottom-144 {
        padding-bottom: 120px !important;
    }
    .section-multi-items {
        margin-bottom: 120px;
    }
    .section-multi-items-top {
        margin-bottom: 48px;
    }
    .full-logo-slider {
        margin-bottom: 48px;
    }
    .section-awards-left {
        margin-bottom: 48px;
    }
    .featured-arcicle-top {
        margin-bottom: 48px;
    }
    .featured-arcicle-owl-title {
        font-size: 18px;
        /* -webkit-line-clamp: 4;
        min-height: 1px; */
    }
    .featured-arcicle-owl-text {
        font-size: 14px;
        /* min-height: 1px; */
    }
    .faq-accordion .accordion-title {
        padding: 0 48px 24px 0;
        font-size: 20px;
    }
    .faq-accordion .accordion-title::before {
        width: 24px;
        height: 24px;
    }
    .faq-accordion .accordion-content {
        padding: 0 0 24px;
    }
    .text-16 {
        font-size: 14px;
    }
    .faq-accordion .accordion-item {
        margin: 0 0 40px 0;
    }
    .section-faq-top {
        margin-bottom: 48px;
    }
    .leadership-reveal-box-imghold {
        width: 100%;
        margin-bottom: 48px;
    }
    .leadership-reveal-box-texthold {
        width: 100%;
        padding-left: 0;
    }
    .second-type-intro-words {
        margin-bottom: 64px;
    }
    .works-detail-overview-split-item {
        margin-bottom: 64px;
    }
    .works-detail-overview-top-text {
        width: 100%;
    }
    .works-detail-overview-top-text .text-24 {
        width: 100%;
        margin: 0 0 20px 0;
    }
    .works-detail-overview-top-text .text-24:last-child {
        margin-bottom: 0;
    }
    .title-39 {
        font-size: 28px;
    }
    .works-detail-overview-top {
        margin-bottom: 64px;
    }
    .works-detail-overview-img {
        margin-bottom: 64px;
    }
    .works-detail-overview-split-item-texthold {
        margin-bottom: 48px;
    }
    .works-detail-overview-section-imglghold {
        margin-top: 64px;
    }
    .aspect-carousel-owl .owl-item:nth-child(odd) .item {
        width: 300px;
        padding-bottom: 125%;
    }
    .aspect-carousel-owl .owl-item:nth-child(even) .item {
        width: 400px;
        padding-bottom: 80%;
    }
    .section-community-exp-list-texthold {
        padding-right: 0;
    }
    .section-community-exp-top {
        margin-bottom: 96px;
    }
    .section-comm-frame {
        padding: 120px 0;
    }
    .blog-archive-content {
        padding: 64px 0 48px;
    }
    .blog-archive-list ul,
    .post-list-three-cards ul {
        width: 100%;
    }
    .post-list-three-cards ul {
        margin-bottom: 0;
    }
    .blog-archive-list ul li,
    .post-list-three-cards ul li {
        width: 100%;
        margin: 0 0 48px 0;
    }
    .post-list-three-cards ul li:last-child {
        margin-bottom: 0;
    }
    .blog-archive-content-btn {
        padding-top: 16px;
    }
    .blog-archive-content-btns {
        padding-top: 16px;
    }
    .entry h2 {
        font-size: 28px;
    }
    .entry h3 {
        font-size: 20px;
    }
    .entry h4 {
        font-size: 18px;
    }
    .entry p {
        font-size: 14px;
    }
    .entry ul li,
    .entry ol li {
        font-size: 14px;
    }
    .entry blockquote p:nth-child(1) {
        font-size: 22px;
    }
    .entry table th,
    .entry table tr td {
        font-size: 12px;
        padding: 6px 10px;
    }
    .entry table tr td * {
        font-size: 12px;
    }
    .section-open-positions-box-left {
        padding: 48px 32px;
    }
    .section-core-values-list ul {
        width: 100%;
    }
    .section-core-values-list ul li {
        width: 100%;
        margin: 0 0 64px 0;
    }
    .section-core-values-list ul li:last-child {
        margin-bottom: 0;
    }
    .section-core-values-top {
        margin-bottom: 64px;
    }
    .section-core-values-list-title {
        font-size: 20px;
    }
    /* .section-open-positions {
        padding-top: 120px;
    } */
    .contact-type-intro-left.entry p,
    .contact-type-intro-left.entry li {
        font-size: 18px;
    }
    .contact-type-intro-left.entry ul li::before {
        top: 10px;
    }
    .contact-type-intro-info {
        padding-top: 64px;
    }
    .contact-type-intro-left {
        padding-right: 0;
    }
    .contact-form-box {
        padding: 48px 32px;
    }
    .contact-additional-box {
        padding: 64px 32px;
    }
    .contact-additional-box-list-links {
        font-size: 20px;
        display: block;
    }
    .contact-additional-box-list-links > div {
        padding-top: 16px;
    }
    .contact-additional-box-list-title {
        font-size: 14px;
    }
    .contact-additional-box .title-63 {
        margin-bottom: 48px;
    }
    .single-nspiro-resources-list ul {
       width: 100%;
       margin-bottom: 0;
    }
    .single-nspiro-resources-list ul li {
        width: 100%;
        margin: 0 0 48px 0;
    }
    .single-nspiro-resources-list {
        padding-top: 48px;
    }
    .footer-copywrite {
        font-size: 11px;
    }
    .home-footer.home-footer-lg {
        padding-top: 120px;
        padding-bottom: 60px;
    }
    .animated-title .word-word {
        line-height: 98%;
    }
    .archive-section-work-items-img {
        padding-bottom: 133.4% !important;
    }
    .play-btn-orange {
        width: 52px;
        height: 52px;
    }
    .section-404-anim {
        max-width: 240px;
        max-height: 240px;
        top: 50%;
        transform: translateY(-50%);
    }
    .works-detail-gallery-items {
        padding-bottom: 90.31%;
    }
    .full-video-section {
        padding-bottom: 90.31%;
    }
    .works-detail-overview-img {
        padding-bottom: 114.8%;
    }
    /* .home-intro-box-text .text-24-upcase {
        margin-top: 0;
    } */
    .section-about-img-hold {
        padding-bottom: 110px;
    }
    .section-awards-left .text-24 {
        padding: 0 0;
    }
    .blog-archive-featured-owl-img {
        padding-bottom: 75%;
    }
    .blog-archive-featured-owl-img iframe {
        transform: scale(1.35);
    }
    .exhibits-list-section-list ul {
        width: 100%;
    }
    .exhibits-list-section-list ul li {
        width: 100%;
        margin: 0 0 20px 0;
        padding-bottom: 75%;
    }
    .exhibits-list-section-list ul li:last-child {
        margin-bottom: 0;
    }
    .team-list ul {
        width: 100%;
    }
    .team-list ul li {
        width: 100%;
        margin: 0 0 48px 0;
    }
    .team-list ul li:last-child {
        margin-bottom: 0;
    }
    .single-blog-content.single-team-content {
        padding-bottom: 0;
    }
    .quote-block-box {
        padding: 48px 32px;
    }
    .quote-block-box-content {
        padding-top: 80px;
    }
    .quote-block-text {
        font-size: 32px;
    }
    .quote-block-box-brakets svg {
        width: 100px; height: 47px;
    }
    .quote-block-text {
        font-size: 24px;
    }
    .quote-block-person {
        font-size: 18px;
    }
    .quote-block-company {
        font-size: 14px;
    }
    .blog-archive-content-btns {
        display: block;
    }
    .news-and-resources-back-hold {
        padding-top: 48px;
        padding-left: 0;
    }
    .mobile-menu ul li a {
        font-size: 32px;
    }
    .mobile-menu ul li ul li a {
        font-size: 26px;
    }
    .section-commitment-list ul li {
        padding: 24px;
    }
    .section-mission-statement-logos ul {
        width: calc(100% + 32px);
    }
    .section-mission-statement-logos ul li {
        float: left;
        width: calc(50% - 32px);
        margin: 0 32px 32px 0 !important;
    }
    .bullet-list-block-list {
        padding: 32px 24px;
    }
    .single-insight-back-btn {
        text-align: left;
        padding-top: 64px;
    }
    .section-4-up-cards-list ul {
        width: 100%;
        margin-bottom: 0;
    }
    .section-7-up-cards-list ul {
        width: 100%;
        margin-bottom: 0;
    }
    .section-4-up-cards-list ul li {
        width: 100%;
        margin-bottom: 0;
        margin: 0 0 20px 0;
        padding: 24px;
        min-height: 1px;
    }
    .section-7-up-cards-list ul li {
        width: 100%;
        margin-bottom: 0;
        margin: 0 0 20px 0;
        padding: 24px;
        min-height: 1px;
    }
    .section-mission-statement-box  .title-76 img {
        max-height: 84px;
    }
} /* end of max-width 639 */

@media screen and (max-width:359px) {
    .mobile-menu ul li a {
        font-size: 32px;
    }
    .mobile-menu-btn {
        padding-top: 20px;
    }
    .btn-green, 
    .btn-green:focus, 
    .btn-green:active {
        padding: 16px 16px;
    }
    .blog-archive-content-btn .btn-green, 
    .blog-archive-content-btn .btn-green:focus, 
    .blog-archive-content-btn .btn-green:active {
        min-width: 100%;
    }
    .news-and-resources-back-hold .btn-green, 
    .news-and-resources-back-hold .btn-green:focus, 
    .news-and-resources-back-hold .btn-green:active {
        min-width: 100%;
    }
    .news-and-resources-back-section-hold .btn-green, 
    .news-and-resources-back-section-hold .btn-green:focus, 
    .news-and-resources-back-section-hold .btn-green:active {
        min-width: 100%;
    }
    .footer-copywrite {
        font-size: 10px;
    }
	.pulse-circle-56p {
	  margin-right: 20px;
	}
    .title-123 {
        font-size: 36px;
    }
    .grid-container {
        padding: 0 30px;
    }
} /* end of max-width 359 */

@media screen and (max-width:339px) {
    .mobile-menu ul li a {
        font-size: 28px;
    }
} /* end of max-width 339 */

@media only screen and (min-width: 1024px) {
    .section-core-values-list ul li:nth-child(3) {
        margin-top: 240px !important;
    }
    .section-core-values-list ul li:nth-child(2) {
        margin-top: 120px !important;
    }
    .section-core-values-list ul li:nth-child(1) {
        margin-top: 0 !important;
    }
    .section-core-values-list ul li:nth-child(3n + 3) {
        margin-top: 0;
    }
    .section-core-values-list ul li:nth-child(3n + 2) {
        margin-top: -120px;
    }
    .section-core-values-list ul li:nth-child(3n + 1) {
        margin-top: -240px;
    }
} /* end of min-width 1024 */

@media only screen and (min-width: 639px) {
    .w-10 {
        width: 10%;
    }

    .w-20 {
        width: 20%;
    }

    .w-30 {
        width: 30%;
    }

    .w-40 {
        width: 40%;
    }

    .w-50 {
        width: 50%;
    }

    .w-60 {
        width: 60%;
    }

    .w-70 {
        width: 70%;
    }

    .w-80 {
        width: 80%;
    }

    .w-90 {
        width: 90%;
    }

    .w-100 {
        width: 100%;
    }
} /* end of min-width 639px */

@media only screen and (min-width: 640px) and (max-width: 1023px) {
    .section-core-values-list ul li:nth-child(2) {
        margin-top: 120px !important;
    }
    .section-core-values-list ul li:nth-child(1) {
        margin-top: 0 !important;
    }
    .section-core-values-list ul li:nth-child(2n + 2) {
        margin-top: 120px;
    }
    .section-core-values-list ul li:nth-child(2n + 1) {
        margin-top: 0;
    }
} /* end of min-width 640 and max-width: 1023px */

@media only screen and (max-width: 374px) and (max-height: 666px) {
    .mobile-menu ul li a {
        font-size: 24px;
    }
    .mobile-menu ul li ul li a {
        font-size: 20px;
    }
    .mobile-menu-sm {
        padding-top: 20px;
    }
    .mobile-menu-btn {
        margin-bottom: 30px;
    }
} /* end of min-width 640 and max-width: 1023px */
/* gated content CSS */
.gated-heading {
	color: #6bb550;
    font-size: 30px;
    text-transform: capitalize;
}
.single-insight-gated-intro h3 {
	font-size: 30px;
    font-weight: bold;
    margin-bottom: 30px;
}
/* end of gated content CSS */