@import "colors.css";
/* FONT FACE */

@font-face {
	font-family: 'Switzer';
	src: url('../fonts/subset-Switzer-Light.woff2') format('woff2'),
		url('../fonts/subset-Switzer-Light.woff') format('woff');
	font-weight: 300;
	font-style: normal;
	/*font-display: swap;*/
}

@font-face {
	font-family: 'Switzer';
	src: url('../fonts/subset-Switzer-Semibold.woff2') format('woff2'),
		url('../fonts/subset-Switzer-Semibold.woff') format('woff');
	font-weight: 500;
	font-style: normal;
	/*font-display: swap;*/
}

@font-face {
	font-family: 'Switzer';
	src: url('../fonts/subset-Switzer-Bold.woff2') format('woff2'),
		url('../fonts/subset-Switzer-Bold.woff') format('woff');
	font-weight: bold;
	font-style: normal;
	/*font-display: swap;*/
}

@font-face {
	font-family: 'Switzer';
	src: url('../fonts/subset-Switzer-Regular.woff2') format('woff2'),
		url('../fonts/subset-Switzer-Regular.woff') format('woff');
	font-weight: normal;
	font-style: normal;
	/*font-display: swap;*/
}

@font-face {
    font-family: 'Sitka Display';
    src: url('../fonts/SitkaDisplay.woff2') format('woff2'),
        url('../fonts/SitkaDisplay.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
} 

/* HAMBURGERS */

.hamburger {
	padding: 15px 15px;
	display: inline-block;
	cursor: pointer;
	transition-property: opacity, filter;
	transition-duration: 0.15s;
	transition-timing-function: linear;
	font: inherit;
	color: inherit;
	text-transform: none;
	background-color: transparent;
	border: 0;
	margin: 0;
	overflow: visible;
}

.hamburger:hover {
	opacity: 0.7;
}

.hamburger.is-active:hover {
	opacity: 0.7;
}

.hamburger.is-active .hamburger-inner,
.hamburger.is-active .hamburger-inner::before,
.hamburger.is-active .hamburger-inner::after {
	background-color: #000;
}

.hamburger-box {
	width: 40px;
	height: 24px;
	display: inline-block;
	position: relative;
}

.hamburger-inner {
	display: block;
	top: 50%;
	margin-top: -2px;
}

.hamburger-inner,
.hamburger-inner::before,
.hamburger-inner::after {
	width: 40px;
	height: 4px;
	background-color: #000;
	border-radius: 4px;
	position: absolute;
	transition-property: transform;
	transition-duration: 0.15s;
	transition-timing-function: ease;
}

.hamburger-inner::before,
.hamburger-inner::after {
	content: "";
	display: block;
}

.hamburger-inner::before {
	top: -7px;
}

.hamburger-inner::after {
	bottom: -7px;
}

.hamburger--stand .hamburger-inner {
	transition: transform 0.075s 0.15s cubic-bezier(0.55, 0.055, 0.675, 0.19), background-color 0s 0.075s linear;
	background: transparent;
}

.hamburger--stand .hamburger-inner::before {
	transition: top 0.075s 0.075s ease-in, transform 0.075s 0s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.hamburger--stand .hamburger-inner::after {
	transition: bottom 0.075s 0.075s ease-in, transform 0.075s 0s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.hamburger--stand.is-active .hamburger-inner {
	transform: rotate(90deg);
	background-color: transparent !important;
	transition: transform 0.075s 0s cubic-bezier(0.215, 0.61, 0.355, 1), background-color 0s 0.15s linear;
}

.hamburger--stand.is-active .hamburger-inner::before {
	top: 0;
	transform: rotate(-45deg);
	transition: top 0.075s 0.1s ease-out, transform 0.075s 0.15s cubic-bezier(0.215, 0.61, 0.355, 1);
}

.hamburger--stand.is-active .hamburger-inner::after {
	bottom: 0;
	transform: rotate(45deg);
	transition: bottom 0.075s 0.1s ease-out, transform 0.075s 0.15s cubic-bezier(0.215, 0.61, 0.355, 1);
}

/* GLOBAL */

a,
a:hover,
a:active,
a:focus,
button,
button:hover,
button:active,
button:focus,
input:hover,
input:active,
input:focus,
textarea:focus,
a[href^=tel],
div:active,
div:focus {
	outline: 0;
	text-decoration: none;
	color: rgba(2, 10, 6, 1);
}

h1,
h2,
h3,
h4,
h5,
h6 {
	font-style: normal;
	font-family: sans-serif;
}

html {
	font-size: 16px;
	color: rgba(2, 10, 6, 1);
	background: rgba(248, 246, 244, 1);
	height: -webkit-fill-available; 
}

body {
	font-size: 16px;
	color: rgba(2, 10, 6, 1);
	background: rgba(248, 246, 244, 1);
	-webkit-font-smoothing: antialiased;
	/* font-smoothing: antialiased; */
	overflow-x: hidden;
	max-width: 100vw;
	font-style: normal;

	font-family: 'Switzer';
	font-weight: normal;
	font-style: normal;

	min-height: 100vh;
	/* mobile viewport bug fix */
	min-height: -webkit-fill-available;
}

h1 {
	font-size: 2.5rem;
	line-height: 1.2;
}

h2 {
	font-size: 2rem;
	line-height: 1.3;
}

h3 {
	font-size: 1.75rem;
	line-height: 1.3;
}

h4 {
	font-size: 1.5rem;
	line-height: 1.4;
}

h5 {
	font-size: 1.25rem;
	line-height: 1.5;
}

h6 {
	font-size: 1rem;
	line-height: 1.6;
}



p, a, ul, li, span {
    line-height: 1.5;
    font-size: 17px;
} 

p {
	margin-bottom: 1.6rem;
}

.testbox {
	background: rgba(0, 0, 0, .1);
	padding: 2rem;
	margin-bottom: 2rem;
}

.responsive-container {
	position: relative;
	padding-bottom: 56.25%;
	/* 16:9 */
	padding-top: 0px;
	height: 0;
	overflow: hidden;
}

.responsive-container iframe,
.responsive-container object,
.responsive-container embed,
.responsive-container video {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

.wp-block-embed__wrapper .responsive-container {
	padding: 0;
	position: static;
	height: auto;
}

.wp-embed-responsive .wp-block-embed-spotify .wp-block-embed__wrapper:before {
	padding-top: 0;
}

.wp-embed-responsive .wp-block-embed-spotify.wp-has-aspect-ratio iframe {
	position: static;
	height: revert-layer;
}

.container-main {
	max-width: 1100px;
}

.container-fluid,
.container-main {
	padding-left: 4rem;
	padding-right: 4rem;
}

.box-medium {
    max-width: 675px;
    margin-left: auto;
    margin-right: auto;
}

.section-button {
    margin-bottom: 2rem;
    margin-top: -1rem;
}

.cta {
    display: inline-block;
    font-size: 15px;
    color: white;
    background: var(--green);
    padding: 16px 30px 17px 30px;
    border-radius: 8px;
    font-weight: 500;
    transition: all .2s;
    line-height: 1.4;
    letter-spacing: .5px;
    border: none;
}

.cta:hover,
.cta:focus,
.cta:active {
	color: white;
	background: #0f4d2e;
}

.cta-icon {
	padding-left: 4rem;
}

.cta .glyphicon {
	line-height: 1;
	margin-right: 1rem;
	font-size: 2rem;
	position: absolute;
	left: 1rem;
	top: 50%;
	transform: translateY(-50%);
}

.section-heading {
    font-size: 3rem;
    padding-bottom: 1rem;
    font-family: 'sitka-banner','Sitka Display',serif;
    font-weight: 400;
    letter-spacing: -1px;
    line-height: 1;
    margin-bottom: 1rem;
}

.border-radius {
	border-radius: 1rem;
}

#wpadminbar {
	z-index: 999999999999999;
}


/* HEADER & NAV */

nav ul {
	list-style-type: none;
	margin: 0;
	padding: 0;

}

nav>ul>li {
	display: block;
}

nav li {
	position: relative;
	margin: 0;
	padding: 0;
}

nav li.current-menu-item:before {
    content: '';
    display: inline-block;
    position: absolute;
    left: -21px;
    top: 47%;
    transform: translateY(-50%);
    width: 0.8rem;
    height: 0.8rem;
    border-radius: 50%;
    background: var(--green, #14663d);
    margin-right: 0.6rem;
}

nav li a {
	display: inline-block;
}

nav li a:hover {
	text-decoration: none;
}

.top-header {
    text-align: left;
    width: 380px;
    float: left;
    z-index: 999999999;
    background: rgba(248, 246, 244, .9);
    min-height: 100vh;
    position: relative;
    backdrop-filter: blur(9px);
    -webkit-backdrop-filter: blur(9px);
}

.top-header-inner {
    position: sticky;
    padding: 5rem 0rem 2rem 5.7rem;
    top: 0;
    left: 0;
    width: 100%;
    transform: translateX(0);
    transition: transform 1s .5s;
} 
.top-header-inner.offscreen {
	transform: translateX(-102%);
}

.nav-home li:has(.nav-home-link) {
    margin-top: 0.7rem;
    margin-bottom: 4.5rem;
} 

.nav-home .nav-home-link {
	display: flex;
	align-items: center;
	color: var(--green, #14663d);
	text-decoration: none;
	position: relative;
}

.main-navlist {
	display: block;
}

.main-navlist ul {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 2.25rem; 
}

.main-navlist li {
	margin: 0;
	padding: 0;
}

.main-navlist a {
    font-family: switzer;
    font-weight: 500;
    display: flex;
    align-items: center;
    font-size: 15px;
    color: var(--optical-black, #020a06);
    align-items: center;
    line-height: 1.4;
    letter-spacing: .5px;
    border-radius: 6px;
}

.top-header-inner .hamburger {
    position: absolute;
    right: 6px;
    top: 50%;
    transform: translateY(-50%);
    padding: 8px 1px 7px 7px;
    border-radius: 10px;
    outline-offset: 0px !important;
} 
.top-header-inner .hamburger:hover {
	background: #e0dedd;
}
 
.hamburger-inner, .hamburger-inner::before, .hamburger-inner::after {
    width: 32px;
    height: 2px;
    border-radius: 0;
}

.hamburger-box {
	height: 25px;
	top: 2px;
	transform: scale(.7);
}

/* PAGES */

.page-contentbox {
	width: calc(100% - 380px);
	float: left;
	padding: 3rem 0;
	opacity: 0;
	transition: opacity 1s .2s;
}
body.dom-loaded .page-contentbox {
	opacity: 1;
}
.section-heading.page-heading {
    margin-top: 2.5rem;
    margin-bottom: 1rem;
}
.page-template-page-content .section-heading.page-heading {
    margin-bottom: 3rem;
}

/* HOME INTRO SCREEN */

.cta-white-border {
	font-weight: 500;
	display: inline-block;
	padding: 1rem 2rem 1.1rem 2rem;
	border: 1px solid rgba(255,255,255,.8);
	border-radius: 10px;
	color: white;
	background: none;
}
.cta-white-border:hover,
.cta-white-border:focus
 {
	color: white;
	background: rgba(255,255,255,.1);
}

.home-intro-window {
	position: fixed;
	top: 0;
	left: 0;
	width: 100vw;
	height: 100vh;
	z-index: 9999999999999999;
	background: rgba(0,0,0,0.5);
	transition: backdrop-filter 1.5s, 
					background 1.5s;
}
.home-intro-window.intro-blur {
	background: rgba(0,0,0,0.7);
	backdrop-filter: blur(18px);
	-webkit-backdrop-filter: blur(18px);
}
.home-intro-window.video-loading {
	background: rgba(0,0,0,1);
} 
.home-intro-content {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	width: 100%;
	max-width: calc(100% - 4rem);
	text-align: center;
	transition: opacity 3s 1s;
}
.home-intro-content.visible {
	opacity: 1;
}
.intro-text {
    font-family: 'sitka-banner','Sitka Display',serif;
    font-weight: 400;
    font-size: 3.5rem !important;
    color: rgba(248, 246, 244, 1);
    line-height: 1.3;
    letter-spacing: -.5px;
    max-width: 74rem;
    margin-left: auto;
    margin-right: auto;
    line-height: 1;
}
.intro-head {
	font-weight: 300;
	color: white;
	font-size: 2rem;
}
.home-intro-content .cta {
	margin-top: 2rem;
} 



/* HOME */

.intro-video-box {
    position: relative;
    background: rgba(0, 0, 0, .1);
    margin-top: -1.6rem;
    border-radius: 1rem;
    margin-bottom: 3rem;
    z-index: 999999999;
} 

.intro-video-inner {
	position: relative;
	padding-top: 56%;
} 

.intro-video-box video, 
.intro-video-box #introvid-img,
.intro-video-box #introvid-poster
 {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	border-radius: 1rem;
	z-index: 99999;
}
.intro-video-box.intro-mode video, 
.intro-video-box.intro-mode #introvid-img,
.intro-video-box.intro-mode #introvid-poster
 {
	position: fixed;
	width: 100vw;
	height: 100vh;
}
.intro-video-box #introvid-poster {
	z-index: 999999;
} 
body:not(.wcag-stopmotion) #introvid-poster {
	opacity: 0;
}

/* SECTIONS BUILDER */

.sections-builder-section {
	margin-top: -2rem;
}
/* textbox */

.section-textbox {
    margin: 2rem 0 2rem 0;
}
.section-textbox .section-heading {
	margin-bottom: 1.5rem;
}
.section-ytvideo {
	margin: 5rem auto 4rem;
}

.section-ytvideo>.responsive-container {
	border-radius: 1rem;
}

.section-img-container {
    margin: 1.5rem auto 0px auto;
}

.section-img-container img {
	border-radius: 1rem;
}

.txtsection-buttons {
	margin-top: 1rem;
	display: flex;
	align-items: center;
}
.txtsection-buttons .cta {
	margin-right: 2rem;
}
.txtsection-buttons .speech-read-box {
	margin-top: 1rem;
	margin-bottom: 1rem;
}

/* KNOWLEDGE BASE */

.tabs-nav {
	display: flex;
	/* gap: 2.2rem; */
	width: 100%;
	margin: 3rem 0 2.5rem;
	border-bottom: 2px solid var(--optical-black-10);


}
.tab-nav-item {
    position: relative;
    font-size: 1.2rem;
    padding: 1rem 0;
    margin-right: 2rem;
    font-weight: 500;
    color: var(--optical-black-50);
    cursor: pointer;
    transition: .3s;
    background: none;
    border: none;
    border-radius: 1rem;
    outline-offset: 0;
}

[data-tabnav].tab-nav-active {
	color: var(--green);


}

[data-tabnav].tab-nav-active::after {
	content: '';
	display: block;
	position: absolute;
	bottom: -2px;
	height: 2px;
	background-color: var(--green);
	width: 100%;
}

.tabs-contents .tab-txt {
	font-size: 1.1rem;
	margin-bottom: 7rem;
}

.tab-articles .section-heading,
.media-heading {
	border-bottom: 1px solid var(--optical-black-25);
	margin-bottom: 0;
	padding-bottom: 2rem;
}

.tab-article, .media-article {
    padding: 0rem 0;
    font-size: 0.5rem;
    display: block;
    border-radius: 0;
    outline-offset: 2px;
} 

.tab-article h3,
.media-article h3,
.faq-item-question h4,
.media-article h3 {
	font-family: 'sitka-banner','Sitka Display',serif;
	font-weight: 400;
}

.tab-article h3,
.media-article h3 {
	font-size: 2rem;
	margin: 0;
	padding: 1.2rem 0 .8rem;
	margin-right: 1.5rem;
}

.tab-article h3 {
    padding: .6rem 0 1.3rem 0;
}

.media-article:first-child h3 {
	border-top: 1px solid var(--optical-black-25);
}

.tab-article p,
.media-article p {
	color: var(--optical-black-50);
	border-bottom: 1px solid var(--optical-black-25);
	margin: 0;
	padding-bottom: 1.2rem;
}

.tab-articles, .media {
    margin-bottom: 3rem;
}

.tab-article {
    border-bottom: 1px solid var(--optical-black-25);
    display: block;
    padding: .5rem 0;
}

.media-about-us {
	margin: 3rem 0 3rem 0;
}

.faq-item-answer {
	display: none;
}
.faq-item-answer p {
    font-size: 16px;
    margin-top: 0;
    margin-right: 1.5rem;
    margin-bottom: 0;
    padding-bottom: 1rem;
}

.icon-minus {
	display: none;
}

.tab-faq-item.open .icon-plus {
	display: none;
}

.tab-faq-item.open .icon-minus {
	display: inline;
}



.tab-faq-item {
    padding: .5rem 0 .8rem 0;
    border-bottom: 1px solid var(--optical-black-25);
    cursor: pointer;
}

.faq-item-question {
    background: none;
    border: none;
    text-align: left;
    display: block;
    width: 100%;
    padding: 0;
}
.faq-item-question:focus-visible {
    border-radius: 1rem;
    outline-offset: -2px !important;
}

.faq-item-question h4 {
    font-size: 1.8rem;
    line-height: 1.1;
}

.faq-item-question h4,
.media-article h3 {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;


}

.faq-item-question span {

	font-size: 1.5rem;
	line-height: 1.4;
}

.media-article span {
	font-size: 1.75rem;
	line-height: 1.3;
}

.faq-item-question span img,
.media-article img {
	vertical-align: middle;
	padding-bottom: 0.2rem;
	margin-left: 1.5rem;
}

/* single article */

.knowledge-back {
	display: inline-flex;
	align-items: center;
	font-size: 1.1rem;
	color: var(--optical-black-50);

	margin-top: 2rem;
	margin-bottom: 2.5rem;

}

.knowledge-back:hover {
	color: var(--optical-black-50);

}

.knowledge-back img {
	line-height: .5;
	height: 100%;
	margin: auto 0;
	margin-right: 0.1rem;
}
.knowledge-title {
    margin-top: -1rem;
    margin-bottom: 3rem;
}

.single-knowledge-date {
	margin-top: 1.5rem;
	margin-bottom: 0;
	color: var(--optical-black-50);
}



/* TEAM */
.heading-team {
	padding-top: 4rem;
}

.team-desktop {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-around;
	padding: 0rem 0.4rem 3.2rem 0.4rem;
	margin-top: 2rem;
}

.person-tile {
	cursor: pointer;
}


.person-tile {
	display: flex;
	flex-direction: column;
	padding: 1rem .6rem;
	min-width: 14.5rem;
	max-width: 20rem;
	flex: 0 1 19rem;

}

.person-img {

	width: 100%;
	background-color: var(--optical-black-3);
	box-shadow: 0 1px 4px rgba(2, 10, 6, 0.045);
	border-radius: 1.2rem;
	padding: 1rem;
	transition: all .4s;
}

.person-tile:hover .person-img {
	background: transparent;
	box-shadow: none;
}


.person-tile img {
	width: 100%;
	height: 100%;

	border-radius: 50%;
	aspect-ratio: 1 / 1;
	object-fit: cover;
	box-shadow: 0 1px 8px #a0a0a626;
}


.person-name {
	font-size: 1.11rem;

	color: #232139;

	margin-top: 1.5rem;
	margin-bottom: 0;
}


.person-role {
	font-size: 0.95rem;
	color: #a0a0a6;

}

/* TEAM POPUP */

.person-popup-window {
	position: fixed;
	top: 0;
	left: 0;
	width: 100vw;
	height: 100vh;
	background: rgba(0, 0, 0, 0.8);
	backdrop-filter: blur(8px);
	-webkit-backdrop-filter: blur(8px);
	z-index: 9999999999999;
}

.person-popup-content {
    position: fixed;
    right: 0;
    top: 0;
    width: 500px;
    height: 100vh;
    background: rgba(248, 246, 244, 1);
    z-index: 999999999999999;
    padding: 1.5rem;
    color: white;
    transform: translateX(105%);
    transition: transform 1s;
    overflow-y: auto;
}

.popup-open .person-popup-content {
	transform: translateX(0);
}

.team-popup-close {
    position: absolute;
    padding: 1rem;
    top: 10px;
    right: 26px;
    cursor: pointer;
    border-radius: 7px;
    transition: background .3s;
}
.team-popup-close:hover {
	background: #dfdedc;
}

.person-popup-window img {
	max-width: 280px;
	max-height: 280px;
}

.person-popup-window .person-name {
	font-size: 1.6rem;
}

.person-popup-window .person-role {
	font-size: 1.2rem;
}

.person-popup-window .person-desc {
	color: black;
	margin-top: 1rem;
	margin-right: 1rem;
}
.person-popup-window .speech-read-box {
    margin-bottom: 1rem;
}


/* Reports */

.section-reports {
    margin: 0rem auto 4rem auto;
    /*overflow-x: hidden;*/
}
.reports-carousel {
    position: relative;
    left: 0;
    right: 0;
    width: calc(100% + 2rem);
    margin-top: 4rem;
    margin-left: -1rem;
    padding-right: 0;
    padding-left: 0;
    height: 100%;
    margin-right: -1rem;
}
.reports-carousel .slick-list {
	/*overflow: visible;*/
}
.report {
    margin-right: 1rem;
    padding-bottom: .5rem;
    margin-left: 1rem;
}

.report-imgbox {
	position: relative;
	padding-top: 66%;
}
.report-imgbox img {
	position: absolute;
	top: 0;
	left: 0;
	height: 100%;
	width: 100%;
	background-size: cover;
	object-fit: cover;
	background-position: center;
	background-repeat: no-repeat;
	border-radius: 1rem;
}

.report-txtbox {
	padding: 0 8px;
}

.report h3 {
    font-family: 'sitka-banner','Sitka Display',serif;
    font-weight: 400;
    padding-bottom: 1rem;
    font-size: 2rem;
    line-height: 1;
}

.report p {
	padding-bottom: 1rem;
}

.report .cta {
    position: relative;
    display: inline-flex;
    align-items: center;
    margin-top: 1rem;
    font-weight: 400;
    padding-right: 47px;
}

.report .cta img {
    position: absolute;
    filter: brightness(0) invert(1);
    height: 16px;
    width: auto;
    margin-left: 0.7rem;
    top: 50%;
    right: 23px;
    transform: translateY(-50%);
}

.slick-dots {
	bottom: -50px;
}

.slick-dots li.slick-active button:before {
	color: var(--green);
}

.slick-dots li button:before {
	font-size: 10px;
}

.slick-dots li:hover button:before {
	color: #155536 !important;
}

.slick-dotted.slick-slider {
    margin-bottom: 4rem;
    overflow: visible;
}


/* contact */


.contact-info {
	padding: 2rem 0 0;
}

.contact-label {
    font-size: 1.1rem;
    padding-bottom: 0.8rem;
    letter-spacing: .18px;
}

.contact-person {
	display: flex;
}

.contact-person .imgbox {
	width: 56px;
	height: 56px;
	margin: auto 0;
	margin-right: .8rem;
	overflow: hidden;
	cursor: pointer;
	border-radius: 100rem;
}
.contact-person .imgbox img {
	display: block;
	width: 100%;
	height: 100%;
	transform: scale3d(1.001, 1.001, 1.001);
	transition: transform 1s;
}
.contact-person .imgbox:hover img {
	transform: scale3d(1.1, 1.1, 1.1);
}

.contact-details {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	padding: 0.2rem;
	gap: 0.1rem;
}

.contact-heading {
    width: 60vw;
    max-width: 500px;
    margin-bottom: 3rem;
    margin-top: 2.5rem;
}

.contact-details p {
    margin: 0;
    letter-spacing: .3px;
}

.contact-details span {
    margin-left: 0rem;
    color: #a0a0a6;
} 

.contact-socials {
	margin: 6rem 0;
}
.footer-socials.contact-socials p {
	text-align: left;
	margin-bottom: 1rem;
}
.footer-socials.contact-socials img, 
.footer-socials.contact-socials svg {
    margin-left: 0;
    margin-right: .5rem;
    transition: all .2s;
}


.contact-logotypes {
	margin-top: 3rem;
	display: flex;

	flex-wrap: wrap;
	row-gap: 3rem;

}

.logotypes-info {
    font-size: 14px;
    letter-spacing: .3px;
    margin-bottom: 1.5rem;
}

.contact-logotypes a {
	display: flex;

	max-width: 50%;
	min-width: 25%;

}

.contact-logotypes a img {
    height: 4.2rem;
    max-width: 100%;
    margin: 0 auto 0 0;
    width: auto;
    object-fit: contain;
    object-position: center;
}


/* FOOTER */

.main-footer {
    margin-top: 6rem;
    padding-bottom: 1.5rem;
}

.main-footer .col-lg-12 {
	display: flex;
	justify-content: space-between;
}

.footer-left {
	width: 700px;
	margin-right: 5rem;
}

.main-footer .section-heading {
    font-family: 'switzer' !important;
    font-size: 2.2rem;
    line-height: 1.2;
    font-weight: 300;
    letter-spacing: -.5px;
    margin-bottom: 1rem;
}

.footer-right {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	align-items: end;
}

.footer-socials p {
    text-align: right;
    margin-bottom: .5rem;
}
.footer-socials-links {
    display: flex;
    flex-direction: row-reverse;
}

.footer-socials img, .footer-socials svg {
    height: 46px;
    width: 46px;
    margin-left: 0.5rem;
    transition: all .2s;
}
.footer-socials svg path {
	transition: all .2s;
}
.footer-socials a:hover svg > path {
	fill: rgb(15, 77, 46);
}
.footer-logotypes {
    display: flex;
    flex-direction: column;
    margin-top: 8rem;
    margin-bottom: 2rem;
}

.logotypes {
    display: flex;
    justify-content: space-between;
    padding-top: 1rem;
}

.logotypes a {
	height: 100%;
	cursor: pointer;
	margin: 0 0.2rem;
}

.logotypes img {
    height: 3.5rem;
    margin: auto 0;
    max-width: 22rem;
    width: auto;
    object-fit: contain;
    object-position: center center;
}

.footer-menu li {
	display: inline-block;
	margin: .5rem 2rem .5rem 0;
}

.footer-menu nav li.current-menu-item:before {
	display: none;
} 

/* FOOTER MENU */

.footer-menu {
    border-top: 1px solid rgba(2, 10, 6, 0.25);
    padding-top: .5rem;
    /* text-align: center; */
    display: block;
    width: 100%;
    margin-top: 1rem;
}
.footer-menu a {
	color: rgba(2, 10, 6, 0.5);
	font-size: 14px;
	font-weight: 500;
}
.footer-menu a:hover {
	color: rgba(2, 10, 6, 0.7)
}


/* share */

.share-btn {
    position: relative;
    overflow: hidden;
    display: inline-block;
    vertical-align: top;
    height: 58px;
    min-width: 110px;
    background: rgba(0,0,0,.2);
    padding: 16px 4px;
    text-align: center;
    border-radius: 5px;
    cursor: pointer;
    float: left;
} 
.share-btn svg {
	max-height: 100%;
	width: auto;
}
.share-btn-txt {
    display: inline-block;
    vertical-align: super;
    font-size: 16px;
    line-height: 1.3;
    text-align: left;
    position: relative;
    bottom: 0;
    font-weight: 600;
    margin-right: 6px;
}
.share-navigator {
	background: #14663d;
	transition: all .2s;
}
.share-navigator:hover {
	background: rgb(15, 77, 46);
}
.footer-share {
	text-align: right;
}
.footer-share p {
	margin-bottom: .5rem;
}


/* CAROUSEL */

.slick-arrow {
    width: 48px !important;
    height: 50px !important;
    padding: 1rem;
    z-index: 9999;
}


.slick-prev:before,
.slick-next:before {
	background: url('../img/prev.svg') no-repeat center;
	content: " " !important;
	background-size: contain !important;
	width: 100%;
	height: 100%;
	display: block;
	opacity: 1 !important;
}
.slick-prev:hover, .slick-prev:focus, .slick-next:hover, .slick-next:focus {
    outline-offset: 0px !important;
}

.slick-next:before {
	transform: rotate(180deg);
}

.slick-next {
	right: -35px !important;
}

.slick-prev {
	left: -35px !important;
}
.slick-prev, .slick-next {
    border: 1px solid #020a06;
    border-radius: 10rem;
    background: rgba(248, 246, 244, 1);
    backdrop-filter: blur(5px);
}
.slick-prev.slick-disabled:before, .slick-next.slick-disabled:before {
    opacity: 1;
}
.slick-disabled {
	opacity: .4 !important;
}

.slick-dots li {
    width: 20px;
    height: 20px;
    margin: 0 0px;
}
.slick-dots li button:before {
    font-size: 12px;
}
.slick-dots li.slick-active button:before {
    opacity: 1;
}


/* WCAG */

:focus-visible {
	outline: #14663d solid 3px !important;
	outline-offset: 6px !important;
	border-radius: 10px;
}
.skip-to-content-link {
    display: inline-block;
    background: rgba(2, 10, 6, 1);
    color: white !important;
    left: 10px;
    top: 10px;
    padding: 8px 14px;
    position: absolute;
    transform: translateX(-120%);
    transition: transform 0.3s;
    z-index: 99999999999999999999999;
    font-weight: 400;
    font-size: 14px;
    border-radius: 30px;
}

.skip-to-content-link:focus {
	transform: translateX(0%);
}
body.highcontrast {
	background: rgba(2, 10, 6, 1);
}
body.highcontrast a,
body.highcontrast a:hover,
body.highcontrast h1,
body.highcontrast h2,
body.highcontrast h3,
body.highcontrast h4,
body.highcontrast h5,
body.highcontrast h6,
body.highcontrast ul li,
body.highcontrast p {
	color: white;
}

body[data-fontsize="2"] a,
body[data-fontsize="2"] span,
body[data-fontsize="2"] ul li,
body[data-fontsize="2"] p
{
	font-size: 18px;
}
body[data-fontsize="3"] a,
body[data-fontsize="3"] span,
body[data-fontsize="3"] ul li,
body[data-fontsize="3"] p
{
	font-size: 22px;
}

body[data-fontsize="2"] .cta {
	font-size: 18px;
}
body[data-fontsize="3"] .cta {
	font-size: 21px;
} 

body[data-fontsize="2"] .speech-readtext {
	font-size: 18px;
}
body[data-fontsize="3"] .speech-readtext {
	font-size: 20px;
}

body[data-fontsize="2"] .speech-read-btntxt {
	font-size: 19px;
}
body[data-fontsize="3"] .speech-read-btntxt {
	font-size: 22px;
}


.wcag-menu {
    display: inline-block;
    background: rgba(248, 246, 244, 1);
    border-radius: 2.5rem;
    padding: 4px 1px;
    vertical-align: middle;
}
.wcag-menu button {
    height: auto;
    width: auto;
    border: none;
    background: none;
    display: inline-block;
    vertical-align: middle;
    margin: 0 0.2rem;
    padding: 0;
    border-radius: 40px;
}
.wcag-menu .button-txt {
	display: none !important;
}
.wcag-menu svg {
    display: inline-block;
    vertical-align: middle;
    cursor: pointer;
}
.wcag-contrast-svg {
	/*fill: white;*/
}
.wcag-contrast-svg {
	/*background: rgba(2, 10, 6, 1);*/
}
.wcag-fontsize-svg {
	/*background: rgba(2, 10, 6, 1);*/
	/*fill: white;*/
}
.wcag-stopmotion-stop, 
.wcag-stopmotion-play {
	/*background: rgba(2, 10, 6, 1);*/
	/*fill: white;*/
} 
.wcag-menu .button-txt {
	color: white;
}

body.highcontrast .cta:hover,
body.highcontrast .cta:focus {
	background: white; 
	color: rgba(2, 10, 6, 1);
}
body.highcontrast .speech-readtext {
	border: 1px solid white;
	color: white;
}
body.highcontrast .speech-readtext .speech-icon-play {
	stroke: white;
	fill: white; 
}
body.highcontrast .wcag-contrast-svg path.shape {
	fill: #14663d;
}
body[data-fontsize="2"] .wcag-fontsize-svg path.shape,
body[data-fontsize="3"] .wcag-fontsize-svg path.shape {
	fill: #14663d;
}
body.wcag-stopmotion .wcag-stopmotion-play path.shape {
	fill: #14663d;
}

/* wcag custom */

.top-header .wcag-menu {
	margin-top: 2rem;
	margin-left: -.5rem;
}

.home-intro-window .wcag-menu {
	display: flex;
    margin-top: 1rem;
    position: fixed;
    bottom: 3rem;
    left: 50%;
    transform: translateX(-50%);
} 
.home-intro-window :focus-visible,
.wcag-menu button:focus-visible {
    outline: #14663d solid 5px !important;
    outline-offset: -1px !important;
}

body.highcontrast .home-intro-window {
	background: rgba(0, 0, 0, 0.9) !important;
}

body.highcontrast .top-header {
	background: rgba(2, 10, 6, 1);
}
body.highcontrast .nav-home .nav-home-link {
	color: white;
}
body.highcontrast .main-footer {
	background: rgba(2, 10, 6, 1);
}
body.highcontrast .logotypes {
    background: white;
    padding: 1rem;
}
body.highcontrast .person-popup-content {
	background: black;
}
body.highcontrast .person-popup-window .person-role {
	color: rgba(255,255,255,.9);
}
body.highcontrast .person-popup-window .person-desc {
	color: white;
}
body.highcontrast .team-popup-close {
	background: white;
}
body.highcontrast .person-img {
    background-color: rgba(255,255,255,.1);
}
body.highcontrast [data-tabnav],
body.highcontrast [data-tabnav].tab-nav-active
{
    color: white;
}
body.highcontrast .tabs-contents .tab-txt {
	color: white;
}
body.highcontrast .tab-faq-item,
body.highcontrast .tab-article
 {
	border-color: rgba(255,255,255,.2);
	border-bottom: 1px solid rgba(255,255,255,.2);
}
body.highcontrast .media-article p {
	border-bottom: 1px solid rgba(255,255,255,.2);
}
body.highcontrast .top-header-inner {
	background: black;
}
body.highcontrast .nav-home-link::after {
    background-color: black;
} 
body.highcontrast .top-header-inner .hamburger {
    background: #e0dedd;
}
@media screen and (max-width: 992px) {
    body.highcontrast .main-navlist {
        background: rgba(0, 0, 0, .9);
    }
}

body[data-fontsize="2"] .cta-white-border {
	font-size: 18px;
}
body[data-fontsize="3"] .cta-white-border {
	font-size: 22px;
}

body[data-fontsize="2"] .main-navlist a,
body[data-fontsize="2"] .nav-home-link
{
	font-size: 17px;
}
body[data-fontsize="3"] .main-navlist a,
body[data-fontsize="3"] .nav-home-link
{
	font-size: 19px;
}

body[data-fontsize="2"] .tab-nav-item {
	font-size: 1.4rem;
}
body[data-fontsize="3"] .tab-nav-item {
	font-size: 1.5rem;
}



body[data-fontsize="2"] .faq-item-question h4
{
	font-size: 2rem;
}
body[data-fontsize="3"] .faq-item-question h4
{
	font-size: 2.2rem;
}

body[data-fontsize="2"] .media-article h3
{
	font-size: 2.2rem;
}
body[data-fontsize="3"] .media-article h3
{
	font-size: 2.4rem;
}


#cmplz-document,
#cmplz-document p, 
#cmplz-document li, 
#cmplz-document td, 
#cmplz-document a, 
#cmplz-document span,
.editor-styles-wrapper 
.cmplz-unlinked-mode p, 
.editor-styles-wrapper .cmplz-unlinked-mode li, 
.editor-styles-wrapper .cmplz-unlinked-mode td {
    font-size: 15px;
}

body[data-fontsize="2"] #cmplz-document,
body[data-fontsize="2"] #cmplz-document p, 
body[data-fontsize="2"] #cmplz-document li, 
body[data-fontsize="2"] #cmplz-document td, 
body[data-fontsize="2"] #cmplz-document a, 
body[data-fontsize="2"] #cmplz-document span,
body[data-fontsize="2"] .editor-styles-wrapper 
body[data-fontsize="2"] .cmplz-unlinked-mode p, 
body[data-fontsize="2"] .editor-styles-wrapper .cmplz-unlinked-mode li, 
body[data-fontsize="2"] .editor-styles-wrapper .cmplz-unlinked-mode td {
    font-size: 17px;
}

body[data-fontsize="3"] #cmplz-document,
body[data-fontsize="3"] #cmplz-document p, 
body[data-fontsize="3"] #cmplz-document li, 
body[data-fontsize="3"] #cmplz-document td, 
body[data-fontsize="3"] #cmplz-document a, 
body[data-fontsize="3"] #cmplz-document span,
body[data-fontsize="3"] .editor-styles-wrapper 
body[data-fontsize="3"] .cmplz-unlinked-mode p, 
body[data-fontsize="3"] .editor-styles-wrapper .cmplz-unlinked-mode li, 
body[data-fontsize="3"] .editor-styles-wrapper .cmplz-unlinked-mode td {
    font-size: 19px;
}

/* SPEECH SYNTHESIS */

.speech-read-box {
    margin-bottom: 2rem;
    margin-top: 1rem;
}
.speech-readtext {
    position: relative;
    display: inline-block;
    color: white;
    cursor: pointer;
    padding: .85rem 2rem .85rem 3.5rem;
    min-width: 10rem;
    border-radius: 78px;
    text-align: center;
    border: none;
    font-size: 15px;
    font-weight: 500;
    border: 1px solid rgba(2, 10, 6, 1);
    color: rgba(2, 10, 6, 1);
    background: none;
}

/*.speech-readtext:hover {
	color: rgba(2, 10, 6, 1);
}
.speech-readtext:focus {
	color: rgba(2, 10, 6, 1);
} */

.speech-reading.speech-readtext {
	background: rgba(20, 102, 61, 1);
	border: 1px solid rgba(20, 102, 61, 1);
	color: white;
	padding: .85rem 2rem .85rem 3.5rem;
}
.speech-readtext .speech-icon {
	position: absolute;
	top: 0;
	left: -3px;
	width: 4rem;
	height: 100%;
	text-align: center;
	border-radius: 8px;
}
.speech-readtext:hover .speech-icon {
}
.speech-readtext .speech-icon svg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    width: 1.2rem;
    height: 1.2rem;
    object-fit: contain;
    object-position: center;
}
.speech-read-btntxt {
	position: relative;
	bottom: 1px;
}

.speech-icon-stop {
	display: none;
} 
.speech-reading .speech-icon-stop {
	display: block;
}
.speech-reading .speech-icon-play {
	display: none;
}

body .cmplz-soft-cookiewall {
	display: none;
    background-color: rgba(0, 0, 0, 0.8);
    z-index: 9999999999999999;
}
#cmplz-manage-consent .cmplz-manage-consent {
    display: none !important;
}

/* MEDIA QUERIES */

/* bootstrap MD */
@media screen and (max-width: 1440px) {

	.person-tile {
		padding: 1rem .3rem;
		min-width: 13rem;
		flex: 0 1 calc((100% - 2 * 2.4rem)/3);
	}
}

@media screen and (max-width: 1200px) {
	html {
		font-size: 15px;
	}

	.top-header {
	    width: 335px;
	}
	.page-contentbox {
	    width: calc(100% - 335px);
	}

	/* footer logotypes */
	.logotypes {
		justify-content: space-around;
		flex-wrap: wrap;
	}

	.logotypes a {
		margin-bottom: 2rem;
	}

	.logotypes img {
		height: 2.5rem;

		margin: auto 0;
	}

	.team-desktop {
		justify-content: space-between;
	}

	.report .cta {
		margin-top: 0;
	}
	.report p {
	    font-size: 15px;
	}

	.person-tile {
		min-width: 15rem;
		flex: 0 0 50%;
		max-width: 50%;
	}


	.tabs-nav .tab-nav-item:last-child {
		margin-right: 0;
	}

}

/* bootstrap SM */
@media screen and (max-width: 992px) {

	html,body {
		max-width: 100vw;
		overflow-x: hidden;
	}

	html {
		font-size: 14px;
	}

	h1 {
		margin-top: 3rem;
		margin-bottom: 0;
		padding-bottom: 0;
	}



	.container-main,
	.container-fluid {
		padding-left: 2rem;
		padding-right: 2rem;
	}

	.intro-video-box video, .intro-video-box #introvid-img, .intro-video-box #introvid-poster {
	    object-position: 27% center;
	} 

	.page-contentbox {
		width: 100%;
		float: none;
		clear: both;
	}

	.top-header {
	    text-align: left;
	    float: none;
	    clear: both;
	    width: 100%;
	    position: fixed;
	    left: 0;
	    top: 0;
	    min-height: 2px;
	    margin-bottom: 2rem;
	    height: auto !important;
	    backdrop-filter: none;
	    -webkit-backdrop-filter: none;
	}

	.top-header-inner {
	    position: relative;
	    padding: 2.5rem 2rem 2.5rem 4rem;
	    background-color: var(--optical-white-75);
	}
	.top-header-inner.offscreen {
		transform: translateX(0);
	}

	nav li.current-menu-item:before {

		display: none;


	}

	.nav-home-link:before {
		content: '';
		display: inline-block;
		position: absolute;
		left: -15px;
		top: 50%;
		transform: translateY(-50%);
		width: 0.8rem;
		height: 0.8rem;
		border-radius: 50%;
		background: var(--green, #14663d);
		margin-right: 0.6rem;

	}

	.nav-home li:has(.nav-home-link) {
		position: absolute;

		height: 100%;
		margin-top: 0;
		margin-bottom: 0;
	}

	.main-navlist {
	    position: fixed;
	    display: none;
	    top: 4rem;
	    right: 0;
	    padding: 3rem 2rem 5rem 2rem;
	    width: 100%;
	    text-align: left;
	    backdrop-filter: blur(9px);
	    -webkit-backdrop-filter: blur(9px);
	    background: rgba(248, 246, 244, .9);
	    /*transition: all .3s;*/
	}
	.main-navlist.nav-home {
		display: block !important;
	}
	.main-navlist {
		/*transform: translateX(105%);*/
	}
	.main-navlist.onscreen {
		/*transform: translateX(0);*/
	}
	.main-navlist a {
	    font-size: 16px;
	}
	.main-navlist ul li {
		display: block;
	}

	.main-navlist ul {
		gap: 3rem;
	}

	.nav-home {
	    transform: none !important;
	    padding: 0;
	    margin-top: .3rem;
	}

	.nav-home-link {
		position: absolute;
		top: -35px;
		margin-left: 2rem;
		margin-right: 4rem;
		z-index: 99999999999;
	}

	.intro-video-box {
		margin-top: 2rem;
		z-index: 9999999;
	}


	/* single article */

	.knowledge-back {

		margin-top: 4rem;
		margin-bottom: 2rem;
	}

	.knowledge-back img {
		margin-left: -0.2rem;
	}

	.single-knowledge-date {
		margin-top: 1rem;
		margin-bottom: 1rem;
	}


	.report .cta {
		margin-top: 1.5rem;
	}


	.report-txtbox {
	    padding: 0;
	}
	.reports-carousel .slick-list {
	    overflow: hidden;
	}

	/* team */


	.person-tile {


		min-width: 15rem;
		flex: 0 0 45%;
		max-width: 45%;

	}

	.person-name {
		font-size: 1.3rem;
	}

	.person-role {
		font-size: 1.1rem;
	}



	/* footer */
	.main-footer {
	    margin-top: 0;
	    padding-bottom: 12rem;
	}

	.footer-left {
		margin-right: 1rem;
	}

	.contact-label {
		font-size: 1.3rem;
		padding-bottom: 1rem;
	}
	.logotypes img {
		height: 3rem;

	}

	/* knowlege tabs */
	.tabs-contents .tab-txt {
		font-size: 1.2rem;
		margin-bottom: 5rem;
	}

	.tab-articles {
		margin-bottom: 5rem;
	}

	.top-header .wcag-menu {
	    position: fixed;
	    bottom: calc(-100vh + 11rem);
	    left: calc(50% + 6px);
	    display: block;
	    padding: .6rem;
	    -webkit-box-shadow: -1px 6px 27px -7px rgba(66, 68, 90, 0.34);
	    -moz-box-shadow: -1px 6px 27px -7px rgba(66, 68, 90, 0.34);
	    box-shadow: -1px 6px 27px -7px rgba(66, 68, 90, 0.34);
	    /* border-radius: 1.5rem 0 0 1.5rem; */
	    transform: translateX(-50%);
	}
	.top-header .wcag-menu button {
	    height: 4rem;
	    /*display: block;*/
	    outline-offset: 1px !important;
	}
	.top-header .wcag-menu svg {
		height: 3.2rem;
	}
	.speech-read-box {
	    margin-top: 0rem;
	}
	.speech-read-btntxt {
	    position: relative;
	    bottom: 0px;
	}

	.slick-prev, .slick-next {
	    border: 1px solid #020a06;
	    border-radius: 10rem;
	    top: 29vw;
	    background: rgba(248, 246, 244,1);
	    backdrop-filter: blur(5px);
	    -webkit-backdrop-filter: blur(5px);
	}
	.slick-prev {
	    left: 0 !important;
	}
	.slick-next {
	    right: 0 !important;
	}
	.slick-prev:hover, .slick-prev:focus, .slick-next:hover, .slick-next:focus {
	    background: rgba(248, 246, 244,.9);
	}
	.footer-share {
	    text-align: left;
	    margin-top: 4rem;
	}

}

/* bootstrap XS */
@media screen and (max-width: 768px) {
	html {
		font-size: 12px;
	}

	.slick-arrow {
	    width: 41px !important;
	    height: 42px !important;
	    z-index: 99999;
	}

	.container-main,
	.container-fluid {
		padding-left: 1.5rem;
		padding-right: 1.5rem;
	}

	.section-heading {
		font-size: 48px;
	}

	.nav-home .nav-home-link {
	    left: 9px;
	}

	.page-template-page-content .section-heading.page-heading {
	    margin-bottom: 2rem;
	    margin-top: 5rem;
	}
	.section-heading.page-heading {
	    margin-top: 5rem;
	    margin-bottom: 2rem;
	}

	.speech-readtext,
	.speech-reading.speech-readtext {
	    padding: 1rem 2rem 1.2rem 3.5rem;
	}

	.txtsection-buttons {
	    margin-top: 1rem;
	    display: flex;
	    align-items: flex-start;
	    flex-direction: column-reverse;
	}
	.txtsection-buttons .speech-read-box {
		margin-bottom: 1.7rem;
	}

	.team-mobile .slick-dots {
	    bottom: -15px;
	} 

	.footer-left .section-heading {
		margin-top: 1rem;
	}

	.main-footer .col-lg-12 {
		display: flex;
		flex-direction: column;
		justify-content: space-between;
	}
	.contact-person .imgbox {
	    width: 51px;
	    height: 51px;
	}
	.contact-details {
	    width: calc(100% - 80px);
	}

	.contact-label {
		font-size: 1.4rem;
		padding: 0 0 2rem;
	}

	.footer-left {
	    width: auto;
	    margin-right: 0rem;
	}

	.footer-right {
	    align-items: start;
	    flex-direction: column-reverse;
	} 

	.footer-socials-links {
	    display: flex;
	    flex-direction: row;
	}
	.footer-socials img, .footer-socials svg {
	    margin-left: 0;
	    margin-right: 0.5rem;
	}
	.contact-person .imgbox {
	    width: 56px;
	    height: 56px;
	}

	.fb-page {
		padding-top: 4rem;
	}

	.contact-logotypes a {
		max-width: 90%;
	}

	.contact-logotypes {
		padding-bottom: 0;
		row-gap: 1rem;
		margin-top: 0;
	}

	.footer-socials {
		padding-top: 4rem;
	}

	.contact-socials {
		padding-top: 0;
		margin: 3rem 0;
	}

	.footer-logotypes {
		margin-top: 4rem;

		margin-bottom: 0;
	}

	.logotypes-info {
		font-size: 1.2rem;
	}

	.logotypes {
	    display: block;
	}

	.logotypes a {
		display: block;
	}

	.logotypes img {
		height: 4.2rem;
		width: auto;
	}

	.heading-team {
	    padding-top: 0rem;
	}
	.heading-team .section-heading {
		margin-bottom: 0;
	}
	.team-carousel {
	    display: flex;
	    justify-content: center;
	    align-items: center;
	    margin-left: -1.5rem;
	    margin-right: -1.5rem;
	}
	.person-tile {
	    max-width: none;
	    margin-top: 2rem;
	    padding: 0 1.5rem 1rem 1.5rem;
	}

	.person-box {
		max-width: 35rem;
		margin: 1rem auto;
	}

	.person-name {
		font-size: 1.5rem;
	}

	.person-role {
		font-size: 1.2rem;
	}



	.person-popup-content {
		right: 0;
		left: 0;
		bottom: 0;
		top: auto;
		width: 100vw;
		height: 95vh;
		overflow-y: auto;
		transform: translateY(105%);
	}
	.popup-open .person-popup-content {
	    transform: translateY(0);
	}

	.team-popup-close {
		position: absolute;
		padding: 1rem;
		top: 20px;
		right: 20px;
		cursor: pointer;
	}

	.person-popup-window img {
		max-width: 240px;
		max-height: 240px;
	}

	.person-popup-window .person-name {
		font-size: 1.4rem;
		margin-top: 1rem;
	}

	.person-popup-window .person-role {
		font-size: 1.1rem;
	}

	.person-popup-window .person-desc {
	    font-size: 1.4rem;
	    margin-top: 0;
	}

	/* knowlege tabs */
	.tabs-contents .tab-txt {

		margin-bottom: 3rem;
	}

	.tab-articles {
		margin-bottom: 3rem;
	}

	[data-eqheight-mobile-auto] {
		height: auto !important;
	}

	.slick-dotted.slick-slider {
	    margin-bottom: 3rem;
	}
	.reports-carousel {
	    width: calc(100% + 3rem);
	    margin-left: -1.5rem;
	    margin-right: -1.5rem;
	}
	.report {
	    margin-right: 1.5rem;
	    margin-left: 1.5rem;
	}
	.report .cta img {
	    left: 50%;
	    transform: translate(4rem, -50%);
	}
	[data-eqheight-mobile-auto] {
		height: auto !important;
	}

	.intro-text {
	    font-size: 2.5rem;
	}
	.intro-head {
	    font-size: 1.5rem;
	}

	.home-intro-window .wcag-menu svg {
		height: 3.7rem;
	}
	.home-intro-window .wcag-menu button {
	    height: 4rem; 
	}

	body[data-fontsize="2"] .intro-head {
		font-size: 1.65rem;
	}
	body[data-fontsize="3"] .intro-head {
		font-size: 1.8rem;
	} 
}


@media screen and (max-width: 576px) {

	/* knowlege tabs */

	.report .cta {
		width: 100%;
		display: flex;
		justify-content: center;
	}

	.nav-home-link {
		position: relative;
		z-index: 10000000000000000000;
	}

	.nav-home-link::after {
		content: '';
		position: absolute;
		left: -100px;
		right: 0px;
		z-index: -1;
		width: 200vw;
		height: 100%;
		background-color: var(--optical-white);
	}

	.faq-item-answer p {
		font-size: 14px;
	}

	.contact-details p {
		font-size: 14px;
	}

	.contact-heading {
	    width: 100%;
	    max-width: 315px;
	    margin-right: 2rem;
	    font-size: 2.8rem;
	}

}

@media screen and (max-height: 420px) {

	.home-intro-window .wcag-menu {
	    left: 9rem;
	}
}