/* =========================================================
GLOBAL
========================================================= */

:root {
	--purple: #5F1E64;
	--blue: #00205C;
	--grey: #575756;
	--yellow: #FFDA00;
	--yellowgreen: #CDDE00;
	--pink: #D6006D;
	--reddishpink: #FD495C;
	--white: #ffffff;
	--greywhite: #D1D5DB;
	--lightgreybg: #EEEEEE;
	--darkpurple: #060307;
	--green: #009900;
	--container-1200: 1200px;
	--container-900: 900px;
	--font-body: "Trade Gothic LT Pro", system-ui, sans-serif;
	--font-ghost: "Trade Gothic LT Pro Bd 2", system-ui, sans-serif;
}
* {
	box-sizing: border-box;
}
html, body {
	height: 100%;
	scroll-behavior: smooth;
}
body {
	margin: 0;
	color: var(--white);
	background: var(--darkpurple);
	font-family: var(--font-body);
	line-height: 1.4;
}
*::selection {
  background: var(--purple);
  color: var(--white);
}
*::-moz-selection {
  background: var(--purple);
  color: var(--white);
}
section {
    padding: 106px 0 97px 0;
}
img {
	max-width: 100%;
	display: block;
}
a {
	color: inherit;
	text-decoration: none;
}
p {
	margin: 0 0 1rem;
}
h1,h2,h3,h4 {
	margin: 0 0 .5rem;
	line-height: 1.15;
	font-family: Trade Gothic LT Pro;
    font-weight: 700;
	text-transform: uppercase;
}
h1 {
	font-size: 68px;
	margin-bottom: 11px;
}
h2 {
	font-size: 54px;
}
h3 {
	font-size: 27px;
}
.container-1200 {
	max-width: var(--container-1200);
	margin: 0 auto;
	padding: 0;
	width: 100%;
}
.container-900 {
	max-width: var(--container-900);
	margin: 0 auto;
	padding: 0;
	width: 100%;
}
.placeholder {
	background: rgba(255,255,255,0.1);
    min-height: 60px;
	max-width: 150px;
	position: relative;
}
.sub-header {
	font-family: 'Trade Gothic LT Pro Cn 18';
	font-weight: 400;
	text-transform: uppercase;
	margin: 0;
	font-size: 27px;
}
.sub-header a {
    color: var(--pink);
    font-weight: bold;
    text-decoration: underline;
}

/* Buttons */
.btn {
	display: inline-block;
	padding: 17px 24px 13px 24px;
	font-weight: 600;
	cursor: pointer;
	text-align: center;
	font-family: Trade Gothic LT Pro;
    font-weight: 700;
}
.btn--primary {
	background: var(--pink);
	color: #fff;
	font-size: 18px;
    text-transform: uppercase;
	height: 55px;
}
.btn--primary-grey {
	background: var(--grey);
	text-transform: uppercase;
}
.btn--large {
	font-size: 22px;
	padding: 21px 39px 13px 39px;
	height: 65px;
}
.btn--large:hover {
	background: #707063;
	transform: scale(1.03);
    transition: transform .2s;
}
.btn--primary:hover {
	background: #EF007A;
	transform: scale(1.03);
    transition: transform .2s;
}
.btn--ghost {
	color: var(--white);
	background: transparent;
	text-transform: uppercase;
	font-size: 20px;
	font-family: var(--font-ghost);
	padding: 15px 25px 10px 25px;
}
.btn--ghost:hover {
	background: rgba(205,222,0,0.1);
}
.cta-svg {
	margin: 0 0 0 10px;
}

/* Custom Classes */
.text-highlight-reddishpink {
	color: var(--reddishpink);
}
.text-highlight-purple {
	color: var(--purple);
}
.text-highlight-pink {
	color: var(--pink);
}
.text-italic {
	font-style: italic;
}
.background-lightgrey {
	background: var(--lightgreybg) !important;
}
.background-green {
	background: color-mix(in srgb, var(--green) 90%, transparent) !important;
}
.background-reddishpink {
	background: color-mix(in srgb, var(--reddishpink) 90%, transparent) !important;
}
a.text-link {
	font-weight: bold;
	font-family: 'Trade Gothic LT Pro Bd 2';
	text-transform: none !important;
}
.text-bold {
	font-weight: bold;
	font-family: 'Trade Gothic LT Pro Bd 2';
}

/* Brand Bar */
.brand-bar {
	width: 100%;
	height: 10px;
	background: linear-gradient(
		to right,
		#562865 0%,
		#562865 14.28%,   /* purple */
		#06215A 14.28%,
		#06215A 28.56%,   /* navy */
		#525252 28.56%,
		#525252 42.84%,   /* grey */
		#F8DB4A 42.84%,
		#F8DB4A 57.12%,   /* yellow */
		#D0DB3B 57.12%,
		#D0DB3B 71.4%,    /* lime */
		#C02A67 71.4%,
		#C02A67 85.68%,   /* magenta */
		#EF5355 85.68%,
		#EF5355 100%      /* coral */
	);
}

/* 600px */
@media (max-width: 600px) {
	h1 {
        font-size: 40px;
	}
	section {
		padding: 76px 0 67px 0;
	}
	h2 {
		font-size: 40px;
		text-align: center;
	}
	.sub-header {
		font-size: 20px;
	}
}





/* =========================================================
HEADER / NAVIGATION
========================================================= */

.header {
	top: 0;
	z-index: 10;
}
.header__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 60px 60px 0 60px;
}
.logo {
	width: 75px;
}
.nav {
	display: flex;
	align-items: center;
	gap: 2rem;
	margin-left: auto;
}
.nav__list {
	display: flex;
	align-items: center;
	list-style: none;
	margin: 0;
}
.nav__item {
	position: static;
}
.nav__link {
	background: none;
	border: none;
	color: var(--white);
	font-family: Trade Gothic LT Pro;
	font-weight: 700;
	font-size: 18px;
	padding: 13px 20px 10px 20px;
	text-transform: uppercase;
	cursor: pointer;
}
.nav__link:hover {
	color: var(--yellowgreen);
}

/* Flyout */
.flyout {
	display: none;
	opacity: 0;
	visibility: hidden;
	position: absolute;
	top: 165px;
	left: 0;
	right: 0;
	width: 100%;
	background: var(--purple);
	padding: 40px 0;
	z-index: 20;
}
.nav__item.open .flyout {
	display: block;
	opacity: 1;
	visibility: visible;
	pointer-events: auto;
}

/* Solutions stacked sections */
.flyout__stack {
	display: flex;
	flex-direction: column;
    gap: 20px;
	max-width: var(--container-1200);
	margin: 0 auto;
}

/* Base grid */
.flyout__grid {
	display: grid;
	grid-template-columns: 1fr 3fr;
	align-items: start;
	gap: 2rem;
}
.flyout__title {
	font-size: 18px;
	/* opacity: .5; */
	margin: 0;
	text-transform: uppercase;
	align-self: start;
	color: var(--yellowgreen);
	margin-top: 15px;
}
.flyout__cards {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
}

/* Cards */
.flyout__card {
	display: block;
	padding: 15px 15px 5px 15px;
	border-left: 3px solid rgba(253, 73, 92, 0.2);
}
.flyout__card:hover {
	background: rgba(205, 222, 0, 0.1);
}
.flyout__card h4 {
	margin: 0 0 .25rem;
	font-size: 18px;
}
.flyout__card p {
	margin: 0;
	font-size: 17px;
	color: var(--greywhite);
	font-family: 'Trade Gothic LT Pro';
	font-weight: 400;
}

/* CTA */
.header__cta {
	margin-left: 24px;
}

/* Over 1000px */
@media (min-width: 1000px) {
	button.nav-toggle {
		display: none;
	}
}
/* 1000px */
@media (max-width: 1000px) {
	.flyout__grid {
		grid-template-columns: 1fr;
		gap: 0;
	}
	.flyout__cards {
		grid-template-columns: repeat(2, 1fr);
	}
	.flyout__stack {
        gap: 0;
	}
	.header__inner {
		padding: 40px 40px 0 40px;
		position: relative;
		z-index: 2;
	}

	/* Hamburger button */
	.nav-toggle {
		position: absolute;
		top: 30px;
		right: 30px;
		display: flex;
		flex-direction: column;
		justify-content: center;
		align-items: center;
		width: 40px;
		height: 40px;
		background: none;
		border: none;
		cursor: pointer;
		z-index: 1001;
		transition: all 0.3s ease;
	}

	.nav-toggle span {
		display: block;
		width: 26px;
		height: 2px;
		background: var(--white);
		border-radius: 1px;
		margin: 4px 0;
		transition: all 0.1s ease;
		transform-origin: center; /* ensures rotation stays centered */
	}

	/* Animate hamburger into X */
	.nav-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(6px, 8px);
	}
	.nav-toggle.active span:nth-child(2) {
		opacity: 0;
	}
	.nav-toggle.active span:nth-child(3) {
		transform: rotate(-45deg) translate(6px, -8px);
	}

	/* Mobile nav */
	.nav {
		display: none;
		flex-direction: column;
		width: 100%;
		background: var(--purple);
        padding: 0;
		position: absolute;
		top: 100%;
		left: 0;
		text-align: left;
		z-index: 1000;
	}
	.nav.open {
		display: flex;
		top: 0;
        padding-top: 172px;
		z-index: -1;
	}
	.nav__list {
		display: flex;
		flex-direction: column;
		align-items: flex-start;
		width: 100%;
        padding: 20px 20px 25px 20px;
	}
	.nav__item {
		width: 100%;
		border-bottom: 1px solid rgba(255,255,255,0.1);
	}
	.nav__item:last-child {
		border-bottom: none;
	}
	.nav__link {
		width: 100%;
		text-align: left;
        padding: 17px 20px 13px 20px;
	}
	.flyout__title {
		font-size: 14px;
		opacity: .5;
		margin-bottom: 10px;
        margin-top: 30px;
	}

	/* Flyouts */
	.flyout {
		position: static;
		display: none;
        padding: 0px 20px 0px 20px;
		background: none;
		box-shadow: none;
	}
	.nav__item.active .flyout {
		display: block;
		padding: 0px 20px 20px 20px;
		margin-top: -10px;
	}
	.flyout__cards {
		grid-template-columns: 1fr;
	}
	
	/* Hide desktop CTA button */
	.header__cta {
		display: none;
	}

	/* Show CTA inside open mobile menu */
	.nav.open + .header__cta,
	.nav.open ~ .header__cta {
		display: block;
        margin: 0;
        top: 115px;
        position: absolute;
        width: 100%;
	}
	.header__cta .btn {
        max-width: calc(100% - 80px);
		width: 100%;
	}
}

/* 1000px to 1310px */
@media (min-width: 1000px) and (max-width: 1310px) {
	.nav__item.open .flyout {
		padding-left: 60px;
        padding-right: 60px;
	}
}
/* 600px to 1000px */
@media (min-width: 600px) and (max-width: 1000px) {
	.nav.open + .header__cta,
	.nav.open ~ .header__cta {
		top: 155px;
	}
	.nav.open {
        padding-top: 212px;
    }
}
/* 600px */
@media (max-width: 600px) {
    .header__inner {
        padding: 20px 20px 0 20px;
    }
	.nav-toggle {
        top: 20px;
        right: 20px;
    }
	.header__cta .btn {
        max-width: calc(100% - 40px);
    }
	.logo {
		width: 55px;
	}
}





/* =========================================================
VIDEO BACKGROUND
========================================================= */

.video-background {
	position: fixed;
	top: 0;
	left: 0;
	width: 100vw;
	height: 100vh;
	overflow: hidden;
	z-index: -10;
}
/* .video-background video { */
.video-background iframe {
	position: absolute;
	top: 50%;
	left: 50%;
	width: 100vw;
	height: 56.25vw; /* 16:9 ratio = 9/16 = 0.5625 */
	min-height: 100vh;
	min-width: 177.78vh; /* 16:9 ratio = 16/9 = 1.7778 */
	transform: translate(-50%, -50%);
	pointer-events: none;
}
.video-background::after {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(
		rgba(95, 30, 100, 0.4),
		rgba(0, 32, 92, 0.4)
	);
	backdrop-filter: blur(0px); /* optional, for subtle diffusion */
	z-index: 1; /* sits above video, below content */
	pointer-events: none;
}





/* =========================================================
HERO SECTION
========================================================= */

.hero {
    padding: 94px 0 0 0;
	position: relative;
	overflow: hidden;
}
.hero__bg {
	position: absolute;
	inset: 0;
	opacity: 0.2;
}
.hero__content {
	position: relative;
	z-index: 1;
}
.hero__content .sub-header {
    max-width: 500px;
}
.hero__actions {
    margin-top: 37px;
	display: flex;
	/* justify-content: center; */
	gap: 30px;
}
.hero h4 {
    margin-top: 100px;
    margin-bottom: 7px;
	color: var(--greywhite);
	font-size: 18px;
}

/* 1310px */
@media (max-width: 1310px) {
	section.hero {
		padding-left: 60px;
		padding-right: 60px;
	}
}
/* 1000px */
@media (max-width: 1000px) {
	section.hero {
        padding-left: 40px;
        padding-right: 40px;
    }
	.hero__content .sub-header {
		max-width: 100%;
	}
}
/* 600px */
@media (max-width: 600px) {
	.hero__actions {
		flex-direction: column;
	}
	section.hero {
        padding-left: 20px;
        padding-right: 20px;
    }
	.hero h4 {
		margin-top: 60px;
    	line-height: 25px;
	}
}





/* =========================================================
TICKER
========================================================= */

.ticker {
	overflow: hidden;
	white-space: nowrap;
	padding: 0;
	z-index: -2;
}
.ticker__track {
	display: flex;
	align-items: center;
	animation: ticker 30s linear infinite;
}
.ticker__item {
	width: 180px;
	height: 80px;
	margin: 0 1rem;
	background: rgba(255,255,255,0.1);
}
.ticker--divider {
	color: #fff;
	height: 90px;
	background-color: rgba(0, 32, 92, 0.50); /* fallback */
	/* background: color-mix(in srgb, var(--blue) 50%, transparent); */
}
.ticker-no-bg {
	background-color: rgba(0, 32, 92, 1);
	background-color: rgba(0, 32, 92, 0.80);
}
.ticker__text {
	display: inline-block;
	font-size: .9rem;
	letter-spacing: .05em;
	margin: 0 1rem;
}
.ticker__dot {
	font-size: 1.5rem;
	color: var(--yellow);
	margin-right: 1rem;
}
/* Slick Carousel - https://kenwheeler.github.io/slick/ */
.slick-ticker .slick-slide {
	margin-right: 0;
	font-family: Trade Gothic LT Pro;
    font-weight: 700;
    text-transform: uppercase;
	font-size: 27px;
	margin: 0;
    padding: 30px 0 20px;
}
/* Slick Carousel - Logos */
.ticker--top.slick-ticker {
	padding-top: 36px;
	padding-bottom: 74px;
}
.ticker--top.slick-ticker .slick-slide {
	width: 250px;
	background-color: rgba(255, 255, 255, 0.20); /* fallback */
	/* background: color-mix(in srgb, var(--white) 20%, transparent); */
	margin: 0 15px 0 15px;
	padding: 25px 30px 25px 30px;
	display: flex;
	align-items: center; /* ← this vertically centers content */
	justify-content: center; 
	height: 80px;
}
.ticker--top.slick-ticker .slick-slide img {
	padding: 0px;
	height: auto;
	margin: 0 auto;
	max-height: 100%;
}
.google {

}
.ticker--top.slick-ticker .slick-slide img.the-trade-desk {
	max-height: 75%;
}
.microsoft {

}
.ticker--top.slick-ticker .slick-slide img.amazon {
	margin-top: 5px;
}
.ticker--top.slick-ticker .slick-slide img.magnite {
	max-height: 110%;
	margin-top: 5px;
}
.ticker--top.slick-ticker .slick-slide img.triplelift {
	max-height: 110%;
}
.ticker--top.slick-ticker .slick-slide img.pubmatic {
	max-height: 70%;
}
.ticker--top.slick-ticker .slick-slide img.mediagrid {
	max-height: 90%;
}
.ticker--top.slick-ticker .slick-slide img.gumgum {
	max-height: 130%;
	margin-top: -5px;
}
.ticker--top.slick-ticker .slick-slide img.equativ {
	max-height: 80%;
	margin-top: 5px;
}
.ticker--top.slick-ticker .slick-slide img.openweb {
	max-height: 140%;
}
.ticker--top.slick-ticker .slick-slide img.adaptmx {
	max-height: 110%;
}
.ticker--top.slick-ticker .slick-slide img.sharethrough {
	margin-top: 3px;
}
.ticker--top.slick-ticker .slick-slide img.rich-audience {
	max-height: 70%;
}
.ticker--top.slick-ticker .slick-slide img.sovrn {
	max-height: 65%;
}
.ticker--top.slick-ticker .slick-slide img.inmobi {
	max-height: 60%;
}
.ticker--top.slick-ticker .slick-slide img.loopme {
	max-height: 130%;
	margin-top: 5px;
}
.ticker--top.slick-ticker .slick-slide img.index-exchange {
	max-height: 140%;
	margin-top: 3px;
}
.ticker--top.slick-ticker .slick-slide img.taboola {
	max-height: 90%;
	margin-top: 5px;
}
.ticker--top.slick-ticker .slick-slide img.outbrain {
	max-height: 80%;
}
.criteo {

}
.azerion {

}
.ticker--top.slick-ticker .slick-slide img.media-net {
	max-height: 120%;
}
.slick-ticker .slick-slide .pipe {
	display: inline-block;
	margin: 0 40px;
	color: var(--yellow);
}
.ticker--divider .slick-slide p {
	color: #fff;
	font-size: 0.9rem;
	letter-spacing: .05em;
}
.ticker-fixed-title {
    color: white;
    margin-bottom: -90px;
    background: transparent;
    font-size: 27px;
    height: 90px;
    padding: 33px 20px 20px 60px;
    background: var(--blue);
    width: 180px;
    line-height: 1.15;
    font-family: Trade Gothic LT Pro;
    font-weight: 700;
    text-transform: uppercase;
    margin-left: 0;
	z-index: 100;
    position: relative;
}

@keyframes ticker {
	0% { transform: translateX(0); }
	100% { transform: translateX(-50%); }
}

.ticker--top,
.ticker--divider {
  	opacity: 0;
  	transition: opacity 0.4s ease;
    z-index: 99;
	position: relative;
}
.ticker--top.slick-initialized,
.ticker--divider.slick-initialized {
	opacity: 1;
}

/* 1000px */
@media (max-width: 1000px) {
	.ticker-fixed-title {
		padding: 33px 20px 20px 40px;
		width: 160px;
	}
}

/* 600px */
@media (max-width: 600px) {
	.ticker--top.slick-ticker {
		padding-top: 16px;
		padding-bottom: 44px;
	}
	.ticker-fixed-title {
		padding: 33px 20px 20px 20px;
		width: 140px;
	}
}





/* =========================================================
CTA SECTION
========================================================= */

.cta-section-1-container {
    /* background-image: url(../images/cta-section-1-bg.jpg); */
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    overflow-x: hidden;
	padding: 0;
}
.cta-section {
	background-color: rgba(205, 222, 0, 0.85); /* fallback */
	/* background: color-mix(in srgb, var(--yellowgreen) 85%, transparent); */
	color: #000;
    background-size: cover;
    background-position: center;
    background-blend-mode: overlay;
}
.cta-section__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 2rem;
	align-items: flex-start;
}
.cta-section__inner h2 {
    max-width: 600px;
	color: var(--purple);
	margin-bottom: 16px;
}
.cta-section__inner .sub-header {
    max-width: 750px;
	color: var(--darkpurple);
}
.cta-section__cta {
	font-weight: 700;
	font-family: Trade Gothic LT Pro;
	text-transform: uppercase;
	font-size: 27px;
	color: var(--purple);
}
.cta-section__cta:hover .cta-svg {
	position: relative;
    transform: translateX(8px);
	transition: all 0.2s ease 0s;
}
.cta-section__cta .cta-svg path {
	fill: var(--purple);
}

/* Theme: Purple */
.cta-section-2-container {
    background-image: url(../images/cta-section-2-bg.jpg);
	background-image: url(../images/cta-section-1-bg.jpg);
	/* background-attachment: fixed; */
    /* background-position: 0 -800px; */
	background-position: normal;
    background-repeat: no-repeat;
    background-size: cover;
    overflow-x: hidden;
	padding: 0;
}
.cta-section.theme-purple {
	background-color: rgba(95, 30, 100, 0.90); /* fallback */
    /* background: color-mix(in srgb, var(--purple) 90%, transparent); */
}
.cta-section.theme-purple h2 {
	color: var(--white);
}
.cta-section.theme-purple .sub-header {
	color: var(--white);
	max-width: 650px;
}
.cta-section.theme-purple .cta-section__cta {
	color: var(--yellowgreen);
}
.cta-section.theme-purple .cta-section__cta .cta-svg path {
	fill: var(--yellowgreen);
}

/* 1310px */
@media (max-width: 1310px) {
	section.cta-section {
		padding-left: 60px;
		padding-right: 60px;
	}
}
/* 1000px */
@media (max-width: 1000px) {
    section.cta-section {
        padding-left: 40px;
        padding-right: 40px;
    }
}
/* 800px */
@media (max-width: 800px) {
	.cta-section__inner {
        align-items: flex-start;
        text-align: left;
		flex-direction: column;
	}
	.cta-section__inner h2 {
		text-align: left;
	}
}
/* 600px */
@media (max-width: 600px) {
	section.cta-section {
        padding-left: 20px;
        padding-right: 20px;
    }
}





/* =========================================================
FEATURE CARDS
========================================================= */

.features-section-container {
    background-image: url(../images/features-section-bg.jpg);
	background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    overflow-x: hidden;
	padding: 0;
}
.features {
	background: color-mix(in srgb, var(--blue) 90%, transparent);
	text-align: center;
	padding: 106px 0 110px 0;
}

.features h2 {
    max-width: 800px;
    margin: 0 auto 16px;
	color: var(--yellowgreen);
}
.features .sub-header {
    max-width: 550px;
    margin: 0 auto;
}
.features__grid__4 {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
    gap: 20px;
	margin-top: 3rem;
}
.features__grid__3 {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
    gap: 20px;
	margin-top: 3rem;
}
.features__grid__3.no-top-margin {
	margin-top: 20px;
}
.features__grid__2 {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
    gap: 20px;
	margin-top: 3rem;
}
.feature {
	background-color: rgba(255, 255, 255, 0.20); /* fallback */
	/* background: color-mix(in srgb, var(--white) 20%, transparent); */
	padding: 30px;
	text-align: left;
	position: relative;
}
a.feature:hover {
	background: color-mix(in srgb, var(--white) 25%, transparent);
	transform: scale(1.03);
    transition: transform .2s;
}
.feature h3 {
    margin-top: 30px;
	padding-right: 20px;
	line-height: revert;
	line-height: normal;
}
.feature h3.no-margin {
    margin-bottom: -10px;
}
.feature p {
	font-family: 'Trade Gothic LT Pro';
    font-weight: 400;
    font-size: 17px;
    padding-right: 20px;
	margin: 0;
}
.feature p.no-right-padding {
	padding-right: 0;
}
.feature > svg {
    position: absolute;
    top: 30px;
    right: 30px;
    opacity: 20%;
}
.feature ul {
	padding: 10px 0 0 0;
    margin: 0;
}
.feature ul li {
    padding: 0 0 5px 0;
    font-family: 'Trade Gothic LT Pro';
    font-weight: 400;
    font-size: 17px;
    margin: 0;
	list-style-type: none;
}
.feature ul li:last-child {
    padding: 0 0 0px 0;
}
.feature ul li svg {
	height: 22px;
	margin-bottom: -5px;
	margin-right: 5px;
	background: white;
    border-radius: 10px;
}
.feature ul.positive li svg path {
	fill: var(--green);
}
.feature ul.negative li svg path {
	fill: var(--reddishpink);
}
.feature h3.margin-bottom-0 {
	margin-bottom: -10px;
}
.feature h3.padding-right-0 {
	padding-right: 0;
}
.features__cta {
	margin-top: 41px;
}
.features__cta .btn--ghost {
	color: var(--yellowgreen);
}
.features__cta .btn--ghost svg {
    margin: 0 10px -4px 0;
    height: 24px;
}
.features__cta .btn--ghost svg path {
	fill: var(--yellowgreen);
}

/* Theme: Reddishpink */
.features.theme-reddishpink  {
    background: var(--white);
}
.features.theme-reddishpink h2 {
    color: var(--pink);
	max-width: 700px;
}
.features.theme-reddishpink .sub-header {
    color: var(--reddishpink);
	max-width: 700px;
}
.features.theme-reddishpink .feature {
    background: var(--reddishpink);
}
.features.theme-reddishpink .features__cta .btn--ghost {
    color: var(--reddishpink);
}
.features.theme-reddishpink .features__cta .btn--ghost:hover {
    background: rgba(253, 73, 92, 0.1);
}
.features.theme-reddishpink .features__cta .btn--ghost svg path {
    fill: var(--reddishpink);
}

/* Theme: Purple */
.features.theme-purple  {
    background: var(--lightgreybg);
}
.features.theme-purple h2 {
    color: var(--darkpurple);
	max-width: 700px;
}
.features.theme-purple .sub-header {
    color: var(--reddishpink);
	max-width: 700px;
}
.features.theme-purple .feature {
    background: var(--purple);
}
.features.theme-purple .features__cta .btn--ghost {
    color: var(--reddishpink);
}
.features.theme-purple .features__cta .btn--ghost:hover {
    background: rgba(253, 73, 92, 0.1);
}
.features.theme-purple .features__cta .btn--ghost svg path {
    fill: var(--reddishpink);
}

/* Theme: Dark */
.features.theme-dark  {
    background: var(--yellowgreen);
}
.features.theme-dark h2 {
    color: var(--blue);
	max-width: 700px;
}
.features.theme-dark .sub-header {
    color: var(--blue);
	max-width: 700px;
}
.features.theme-dark .feature {
    background: var(--reddishpink);
}
.features.theme-dark .features__cta .btn--ghost {
    color: var(--blue);
}
.features.theme-dark .features__cta .btn--ghost:hover {
    background: rgba(253, 73, 92, 0.1);
}
.features.theme-dark .features__cta .btn--ghost svg path {
    fill: var(--blue);
}

/* Background Images */
.image-feature {
	position: relative;
	overflow: hidden;
	display: flex;
	flex-direction: column;
	justify-content: flex-end; /* pushes content to bottom */
	height: 100%; /* ensures full height for alignment */
	min-height: 800px;
}
.image-feature .feature-bg {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	z-index: 0;
	opacity: 0.5; /* adjust visibility */
	transition: opacity 0.3s ease;
}
.image-feature h3 {
	position: relative;
	z-index: 1;
	margin: 0;
	padding: 20px; /* add spacing from edges */
	margin: 0 0 -10px 0;
	padding: 0;
}
.image-feature h4 {
    font-size: 20px;
	margin: 24px 0 11px 0;
	position: relative;
    z-index: 1;
}
.image-feature p {
    font-size: 17px;
    margin: 0;
	position: relative;
    z-index: 1;
}
.image-feature:hover .feature-bg {
	opacity: 0.4; /* subtle hover effect */
}

.feature .placeholder {
	max-width: 60px;
}
.feature .placeholder svg {
    top: 10px;
    left: 10px;
    max-width: 40px;
    position: absolute;
}
.feature .placeholder svg path {
	fill: var(--yellowgreen)
}
.features.theme-reddishpink .placeholder svg path {
	fill: var(--white)
}
.features .features-footer h3 {
	color: var(--purple);
    margin-top: 80px;
    font-size: 40px;
    margin-bottom: 20px;
}
.features .features-footer p {
	color: var(--darkpurple);
	font-family: 'Trade Gothic LT Pro';
    font-weight: 400;
    font-size: 20px;
	margin-bottom: -4px;
}

/* 1366px / touch devices */
/*
touch devices (any screen size).
only screen → limits it to screen displays (not print).
(hover: none) → targets devices where you can’t hover (like touchscreens).
(pointer: coarse) → means the pointing device is finger-based, not a precise mouse.
*/
@media only screen and (hover: none) and (pointer: coarse) {
	.features-section-container {
		background: #060606 url("../images/features-section-bg.jpg") center center / cover no-repeat;
		background-attachment: scroll !important; /* Prevents iOS fixed background bug */
		background-size: cover !important;
		background-repeat: no-repeat !important;
		background-position: center center !important;
	}
	/* Ensure blue overlay displays correctly over background */
	.features {
		background: rgba(0, 32, 92, 0.9); /* Deep blue tint */
		backdrop-filter: none; /* Avoid iOS blur rendering issues */
	}
}
/* 1000px */
@media (max-width: 1000px) {
    section.features {
        padding-left: 40px;
        padding-right: 40px;
    }
}
/* 800px */
@media (max-width: 800px) {
	.features__grid__3 {
		grid-template-columns: repeat(1, 1fr);
	}
}
/* 600px */
@media (max-width: 600px) {
	.features__grid {
		grid-template-columns: 1fr;
	}
	section.features {
        padding-left: 20px;
        padding-right: 20px;
    }
	.features {
		padding: 76px 0 80px 0;
	}
	.features__grid__2,
	.features__grid__4,
	.features__grid__3 {
		grid-template-columns: repeat(1, 1fr);
	}
	.features h2 {
		font-size: 35px;
	}
}





/* =========================================================
TESTIMONIALS CAROUSEL
========================================================= */

.testimonials {
	background: var(--lightgreybg);
	color: var(--pink);
	padding: 106px 0 110px 0;
}
.testimonials__head {
	display: flex;
	align-items: flex-start; /* align items to top */
	justify-content: space-between; /* push title left, link right */
}
.testimonials__head a {
	font-weight: 700;
    font-family: Trade Gothic LT Pro;
    text-transform: uppercase;
    font-size: 27px;
}
.testimonials__head a:hover .cta-svg {
	position: relative;
    transform: translateX(8px);
	transition: all 0.2s ease 0s;
}
.testimonials__head a .cta-svg path {
	fill: var(--pink);
}
.testimonials h2 {
    max-width: 700px;
	color: var(--blue);
    margin-bottom: 41px;
}
.testimonials h2.full-width {
    max-width: 100%;
}
.carousel__viewport {
	overflow: hidden;
	width: 100%;
}
.carousel__track {
	display: flex;
	gap: 1.5rem;
	transition: transform 0.6s ease;
	will-change: transform;
}
.testimonial {
	flex: 0 0 calc((100% / 2.5) - 1rem);
	background: var(--pink);
	padding: 2rem;
	text-align: left;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	color: var(--white);
	display: flex;
    flex-direction: column;
    justify-content: flex-start;
}
.testimonial-single {
	flex: 0 0 calc((100% / 1) - 1rem);
}
.testimonial blockquote {
    margin: 0;
    font-family: Trade Gothic LT Pro;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 27px;
	margin-top: 30px;
	margin-top: 15px;
	margin-bottom: auto;
}
.testimonial blockquote.margin-top-0 {
	margin-top: 0px;
}
.testimonial footer {
    font-size: 20px;
	font-family: Trade Gothic LT Pro;
    font-weight: 700;
    text-transform: uppercase;
	margin-top: 30px;
}
.testimonial footer span {
    display: block;
    font-family: 'Trade Gothic LT Pro Cn 18';
}
.testimonial .testimonial__logo {
	background: transparent;
	min-height: 50px;
    max-width: 150px;
	display: flex;
	align-items: end; 
	margin-top: 30px;
}
.testimonial .testimonial__logo img.talk {
	max-height: 25px;
}
.testimonial .testimonial__logo img.cycle {
	max-height: 50px;
}
.testimonial .testimonial__logo img.gem {
	max-height: 50px;
}
.testimonial .testimonial__logo img.drf {
	max-height: 40px;
}
/* Adjust carousel buttons */
.carousel {
	position: relative;
}
.carousel__btn {
	top: 0;
	transform: translateY(-50%);
	width: 60px;
	height: 60px;
	font-size: 1rem;
	background: var(--pink);
	color: #fff;
	border: none;
	cursor: pointer;
	z-index: 2;
	padding: 0;
}
.carousel__btn.prev {	
	position: absolute;
    right: 0;
    transform: translateX(80px);
}
.carousel__btn.next {
	position: absolute;
    left: 0;
    transform: translateX(-80px);
}
.carousel__btn:hover {
	background: var(--purple);
}
.carousel__btn svg path {	
	fill: var(--white);
}
.carousel__btn.prev svg {	
	margin: 4px 0 0 5px;
}
.carousel__btn.next svg {	
	transform: rotate(180deg);
	margin: 4px 0 0 -5px;
}

/* 1400px */
@media (max-width: 1400px) {
	section.testimonials .carousel {
		padding: 0 80px 0 80px;
	}
	.carousel__btn.prev {
		transform: translateX(0px);
	}
	.carousel__btn.next {
		transform: translateX(-0px);
	}
}

/* 1310px */
@media (max-width: 1310px) {
	section.testimonials {
		padding-left: 60px;
		padding-right: 60px;
	}
	.testimonial {
		flex: 0 0 100%;
	}
}
/* 1000px */
@media (max-width: 1000px) {
    section.testimonials {
        padding-left: 40px;
        padding-right: 40px;
    }
	.testimonials__head {
		flex-direction: column;
		align-items: flex-start;
	}
	.testimonials__head a {
		margin-bottom: 37px;
	}
}
/* 600px */
@media (max-width: 600px) {
	.testimonial {
		flex: 0 0 100%;
		text-align: center;
	}
	section.testimonials {
        padding-left: 20px;
        padding-right: 20px;
    }
	.testimonials {
		padding: 76px 0 80px 0;
	}
	.testimonials__head {
        align-items: center;
    }
	section.testimonials .carousel {
        padding: 0;
    }
	.carousel__btn.prev,
	.carousel__btn.next {
        outline: 5px solid #eee;
    }
	section.testimonials .placeholder {
		margin: 0 auto;
		min-width: 150px;
		min-width: auto;
	}
	.testimonial blockquote {
		margin-top: 60px;
	}
}





/* =========================================================
METRICS STRIP
========================================================= */

.metrics-section-container {
    background-image: url(../images/features-section-bg.jpg);
	background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    overflow-x: hidden;
	padding: 0;
}
.metrics {
	background-color: rgba(87, 87, 86, 0.90); /* fallback */
	/* background: color-mix(in srgb, var(--grey) 90%, transparent); */
	color: #fff;
	padding: 0;
	text-align: center;
}
.metrics__grid {
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	align-items: stretch; /* ensures all metric boxes match height */
}
.metric {
	display: flex;
	flex-direction: column;
	justify-content: space-between; /* pushes number to bottom */
	align-items: center;
	text-align: center;
	padding: 36px 30px 0 30px;
	border-left: 5px solid #eee;
	border-right: 5px solid #eee;
	height: 100%; /* ensures all metric cards are equal height */
}
.metric span.metric-value {
	margin-top: auto; /* keeps the red number at the bottom */
	font-size: 54px;
	font-weight: 700;
	color: var(--reddishpink);
	font-family: Trade Gothic LT Pro;
	display: block;
	margin-bottom: 14px;
}
.metric span.metric-value span.metric-value-icon {
	font-size: 40px;
    margin-left: 5px;
    position: relative;
    top: -8px;
}
.metric:first-child {
	border-left: 0px solid #eee;
}
.metric:last-child {
	border-right: 0px solid #eee;
}
.metric small {
	display: block;
	font-size: 20px;
	font-family: Trade Gothic LT Pro;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 10px;
}

/* 1366px / touch devices */
/*
touch devices (any screen size).
only screen → limits it to screen displays (not print).
(hover: none) → targets devices where you can’t hover (like touchscreens).
(pointer: coarse) → means the pointing device is finger-based, not a precise mouse.
*/
@media only screen and (hover: none) and (pointer: coarse) {
	.metrics-section-container {
		background: #060606 url("../images/features-section-bg.jpg") center center / cover no-repeat;
		background-attachment: scroll !important; /* Prevents iOS fixed background bug */
		background-size: cover !important;
		background-repeat: no-repeat !important;
		background-position: center center !important;
	}

	/* Ensure overlay colors stay correct */
	.metrics {
		background: color-mix(in srgb, var(--grey) 90%, transparent); /* Deep blue tint layer */
		backdrop-filter: none; /* Prevent iOS blur rendering issues */
	}
}
/* over 1000px */
@media (min-width: 1000px) {
	.break-line {
        /* margin-right: 6px; */
		display: block;
	}
}
/* 600px to 1000px */
@media (min-width: 600px) and (max-width: 1000px) {
	.break-line {
        display: inline-block;
        margin-right: 6px;
	}
}
/* 1000px */
@media (max-width: 1000px) {
	.metrics__grid {
		display: grid;
		grid-template-columns: repeat(1, 1fr);
		align-items: stretch;
	}
	.metric {
		border: none;
		border-bottom: 1px solid;
	}
}
/* 600px */
@media (max-width: 600px) {
	.break-line {
		display: block;
	}
}





/* =========================================================
CTA BAND
========================================================= */

.cta-band {
	background: var(--yellow);
	color: #000;
	padding: 4rem 0;
}
.cta-band__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 2rem;
}

/* 600px */
@media (max-width: 600px) {
	.cta-band__inner {
		flex-direction: column;
		text-align: center;
	}
}





/* =========================================================
FOOTER
========================================================= */

.footer {
	background: var(--blue);
	color: var(--greywhite);
	padding: 130px 0 60px 0;
	display: flex;
	flex-direction: column;
    gap: 123px;
}
.footer__top {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	flex-wrap: wrap;
    gap: 150px;
}
.footer__logo img {
	width: 90px;
}
.footer__logo p {
	color: var(--greywhite);
	text-transform: uppercase;
	margin-top: 40px;
	font-size: 14px;
}
.footer__nav {
	display: flex;
	flex-direction: column;
    gap: 60px;
	flex: 1;
}
.footer__row {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}
.footer__col h4 {
	font-family: 'Trade Gothic LT Pro';
	font-weight: 700;
	text-transform: uppercase;
	font-size: 22px;
    color: var(--yellowgreen);
    margin-bottom: 26px;
}
.footer__col ul {
	list-style: none;
	margin: 0;
	padding: 0;
}
.footer__col ul li a {
	color: var(--greywhite);
	text-decoration: none;
	font-family: 'Trade Gothic LT Pro';
	font-size: 16px;
	padding: 0 0 15px 0;
    display: block;
	font-weight: 600;
	text-transform: uppercase;
}
.footer__col ul li a:hover {
    color: var(--yellowgreen);
}
.footer__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-wrap: wrap;
	align-items: self-end;
	border-top: 1px solid rgba(255,255,255,0.1);
	padding-top: 40px;
}
.footer__inner p {
	margin: 0;
	text-transform: uppercase;
	font-size: 14px;
}
.footer__brand {
	display: flex;
}
.footer__brand img {
	margin-bottom: 30px;
}
.footer__brand p {
	font-family: 'Trade Gothic LT Pro Cn 18';
	text-transform: uppercase;
    margin: 0 40px 0 0;
	font-size: 18px;
}
.footer__meta {
	display: flex;
	gap: 20px;
	font-family: Trade Gothic LT Pro;
	font-weight: 700;
	text-transform: uppercase;
	color: var(--white);
	font-size: 18px;
}
.footer__meta a:hover {
	color: var(--yellowgreen);
}
.footer__social {
	margin-left: -7.5px;
}
.footer__social a {
	margin: 0;
	display: inline-flex;
	align-items: center;
	vertical-align: middle;
	padding: 7.5px;
}
.footer__social a svg path {
	fill: var(--greywhite)
}
.footer__social a:hover svg path {
	fill: var(--yellowgreen)
}

/* 1310px */
@media (max-width: 1310px) {
	footer.footer {
		padding-left: 60px;
		padding-right: 60px;
	}
}
/* 1000px */
@media (max-width: 1000px) {
    footer.footer {
        padding-left: 40px;
        padding-right: 40px;
    }
	/* .footer__top {
		flex-direction: column;
		align-items: center;
		text-align: center;
	}
	.footer__row {
		grid-template-columns: repeat(2, 1fr);
	} */
}
/* 600px */
@media (max-width: 600px) {
	.footer__row {
		grid-template-columns: 1fr;
	}
	.footer__inner {
		flex-direction: column;
		text-align: center;
		gap: 1rem;
	}
	.footer__inner {
		align-items: flex-start;
	}
	footer.footer {
        padding-left: 20px;
        padding-right: 20px;
    }
	.footer {
		padding: 100px 0 60px 0;
	}
	.footer__inner p {
		text-align: left;
	}
}





/* =========================================================
BOOK A DEMO POPUP
========================================================= */

.demo-popup {
	position: fixed;
	inset: 0;
	display: none;
	align-items: center;
	justify-content: center;
	z-index: 2000;
}
.demo-popup.active {
	display: flex;
}
.demo-popup__overlay {
	position: absolute;
	inset: 0;
	background: rgba(0,0,0,0.6);
	backdrop-filter: blur(3px);
}
.demo-popup__content {
	position: relative;
	background: #fff;
	color: #001750;
	max-width: 520px;
	width: 90%;
	padding: 40px;
	z-index: 1;
	box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
	text-align: left;
}
.demo-popup__close {
    position: absolute;
    top: 26px;
    right: 30px;
    background: none;
    border: none;
    font-size: 50px;
    color: #333;
    cursor: pointer;
    line-height: 1;
    padding: 0;
    margin: 0;
    width: 40px;
    height: 40px;
}
.demo-popup__close svg {
	opacity: 0.75;
}
.demo-popup__close:hover svg path {
	fill: var(--pink);
}
.demo-popup h3 {
	color: var(--blue);
	color: var(--reddishpink);
    margin-bottom: 28px;
}
.demo-popup p {
	color: var(--darkpurple);
    font-size: 16px;
    margin-bottom: 25px;
	padding-right: 40px;
}
.demo-form .form-row {
	display: flex;
	gap: 10px;
}
.demo-form .form-group {
	display: flex;
	flex-direction: column;
	flex: 1;
    margin-bottom: 10px;
}
.demo-form label {
	font-size: 16px;
    font-weight: 600;
    position: absolute;
    height: auto;
    width: 100%;
    padding: 18px 20px 14px 45px;
    top: 0;
    left: 0;
	cursor: pointer;
	border: 3px solid #eee;
    background: #eee;
    z-index: 0;
}
.demo-form input[type="text"],
.demo-form input[type="email"] {
    padding: 4px 20px 0 20px;
	border: 3px solid #e1e1e1;
	font-size: 18px;
	height: 60px;
	font-family: Trade Gothic LT Pro;
    font-weight: 700;
    text-transform: none;
	color: var(--darkpurple);
}
.demo-form input:focus {
	outline: none;
	border-color: var(--pink)
}
.demo-form .checkbox {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    flex-direction: row;
    padding: 0;
    /* border: 3px solid #eee;
    background: #eee; */
    height: 60px;
	font-family: Trade Gothic LT Pro;
    font-weight: 700;
    text-transform: uppercase;
	color: var(--grey);
	position: relative;
	padding: 17px 20px 20px 15px;
}
input#consent {
	z-index: 1;
	margin: 6px;
}
.demo-form button {
    width: 100%;
    margin-top: 40px;
    background: #a68bb7;
    color: #fff;
    border: none;
    font-size: 1rem;
    cursor: pointer;
    background: var(--pink);
    color: #fff;
    font-size: 18px;
    text-transform: uppercase;
    height: 55px;
}
.demo-form button:hover {
    background: #EF007A;
    transform: scale(1.03);
    transition: transform .2s;
}
.demo-popup__content .form-response {
    padding: 17px 20px 13px 20px;
    background: green;
    margin-top: 10px;
    border: 3px solid var(--green);
    background: color-mix(in srgb, var(--green) 25%, transparent);
    font-family: Trade Gothic LT Pro;
    font-weight: 700;
    font-size: 16px;
    text-transform: uppercase;
    text-align: center;
    color: var(--green);
	display: none;
}
.form-response.active {
	display: block;
}


/* 600px */
@media (max-width: 600px) {
	.demo-popup__content {
		max-width: 100%;
		width: 100%;
		height: 100%;
		overflow: auto;
	}
	.demo-popup h3 {
		padding-right: 65px;
	}
	.demo-form .form-row {
		gap: 0;
		flex-direction: column;
	}
}




/* =========================================================
COOKIE PLUGIN
========================================================= */

#cc-main .pm {
	border-radius: 0;
}
#cc-main .cc--anim .cm {
	max-width: 100% !important;
    width: 100% !important;
    left: 0;
	display: block;
	background: transparent;
	box-shadow: none !important;
	padding: 30px;
	bottom: 0;
	margin-left: 0;
}
#cc-main .cm__body {
    display: block;
    padding: 30px !important;
	max-width: 1200px;
    margin: 0 auto;
	background-color: var(--purple);
	backdrop-filter: blur(5px);
    box-shadow: 0 0.625em 1.875em rgba(0,0,2,.3);
	padding-bottom: 27px !important;
}
#cc-main .cm__texts {
    display: inline-block;
    padding: 0;
    width: calc(100% - 280px);
}
#cc-main .cm__desc,
#cc-main .cm__title {
	padding: 0 !important;
    color: #fff;
    font-family: 'Trade Gothic LT Pro';
    font-weight: 400;
    font-size: 17px;
}
#cc-main .pm__section--toggle.is-expanded .pm__section-title {
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
	font-family: Trade Gothic LT Pro;
    color: #111;
    font-size: 18px;
}
#cc-main .pm__section-title {
    border-radius: 0px;
    font-size: .95em;
    /* font-weight: 600; */
	font-family: Trade Gothic LT Pro;
    color: #111;
    font-size: 18px;
}
#cc-main .pm__section-desc {
    line-height: 1.5em;
    color: #000;
	font-family: Trade Gothic LT Pro;
    /* font-weight: 600; */
    font-size: 16px;
}
#cc-main .cm__btns {
    border: 0;
}
#cc-main .cm__btns {
    display: block;
}
#cc-main .cm__btns,
#cc-main .cm__links {
	padding: 0;
    display: inline-block;
	float: right;
}
#cc-main .cm__btn-group {
    display: block;
}
#cc-main .cc--anim .cm__btn,
#cc-main .cc--anim .cm__close {
    border-radius: 0px;
    font-size: 16px;
    height: 48px;
    padding: 0 25px;
	max-width: 120px;
	width: 120px;
	margin-left: 10px;
	margin-top: 0;
	font-weight: 700;
}
#cc-main .cc--anim .cm__btn:first-child {
	border: 3px solid var(--yellowgreen);
	color: var(--yellowgreen);
	background: none;
	float: right;
	font-family: Trade Gothic LT Pro;
    font-size: 17px;
    padding-top: 3px;
	text-transform: uppercase;
}
#cc-main .cc--anim .cm__btn:first-child:hover {
	color: var(--purple);
    background-color: var(--yellowgreen);
}
#cc-main .cc--anim .cm__btn:last-child {
	border: 0;
	color: #777;
    color: var(--greywhite);
    background: var(--grey);
	font-family: Trade Gothic LT Pro;
    font-size: 17px;
    padding-top: 3px;
	text-transform: uppercase;
}
#cc-main .cc--anim .cm__btn:last-child:hover {
	color: var(--purple);
    background-color: var(--yellowgreen);
}
#cc-main button.cc-link {
	color: var(--yellowgreen);
	font-family: Trade Gothic LT Pro;
	font-weight: 600;
}
#cc-main .pm__body,
#cc-main .pm__footer,
#cc-main .pm__header {
    padding: 20px;
}
#cc-main .pm__btn {
	border: 3px solid var(--pink);
    color: var(--pink);
    background: white;
    float: right;
	border-radius: 0px;
    font-size: 16px;
    height: 48px;
    padding: 0 25px;
    margin-left: 0;
    margin-top: 0;
    font-weight: 700;
	text-transform: uppercase;
	font-family: Trade Gothic LT Pro;
    font-size: 17px;
    padding-top: 3px;
}
#cc-main .pm__btn+.pm__btn,
#cc-main .pm__btn-group+.pm__btn-group button {
	border: 0;
    color: #777;
    background: #ccc;
	border-radius: 0px;
    font-size: 16px;
    height: 48px;
    padding: 0 25px;
    margin-left: 10px;
    margin-top: 0;
    font-weight: 700;
	text-transform: uppercase;
	font-family: Trade Gothic LT Pro;
    font-size: 17px;
    padding-top: 3px;
}
#cc-main .cc__link,
#cc-main a {
	color: var(--pink);
	font-family: Trade Gothic LT Pro;
}
#cc-main .toggle__icon {
    background: #999;
	box-shadow: 0 0 0 1px #999;
}
#cc-main .toggle__icon-on svg {
    stroke: var(--pink);
}
#cc-main .section__toggle:checked~.toggle__icon {
    background: var(--pink);
    box-shadow: 0 0 0 1px var(--pink);
}
#cc-main .pm__btn:hover {
    color: #fff;
    background-color: var(--pink);
	border-color: var(--pink);
}
#cc-main .pm__btn+.pm__btn:hover,
#cc-main .pm__btn-group+.pm__btn-group button:hover {
	color: #777;
    background: #BBBBBB;
}
#cc-main .pm__title {
	font-family: Trade Gothic LT Pro;
    color: #111;
    font-size: 27px;
	text-transform: uppercase;
}
#cc-main .pm__section--expandable .pm__section-title {
	text-transform: uppercase;
}
#cc-main .pm__close-btn {
	border-radius: 0;
}
#cc-main .pm__header {
	padding: 40px 40px 20px 40px;
}
#cc-main .pm__body {
	padding: 20px 40px 20px 40px;
}
#cc-main .pm__footer {
	padding: 20px 40px 40px 40px;
}
#cc-main .cc--anim .cm__btn, #cc-main .cc--anim .cm__close {
    transition: none;
}

/* 922px */
@media only screen and (max-width:922px) {
	#cc-main .cm__texts {
		width: 100%;
		margin-bottom: 20px;
	}
	#cc-main .cm__btns, #cc-main .cm__links {
		float: none;
		width: 100%;
		padding-left: 0 !important;
		padding-right: 0 !important;
		border: 0 !important;
	}
	#cc-main .cc--anim .cm__btn, #cc-main .cc--anim .cm__close {
		max-width: calc(50% - 5px);
		width: 50%;
		margin-left: 0;
	}
	#cc-main .cc--anim .cm__btn:first-child {
		margin-right: 0px;
	}
	#cc-main .cc--anim .cm__btn:last-child {
		margin-left: 0px !important;
		margin-top: 0 !important;
	}
	#cc-main .cm__btn-group {
		display: block !important;
	}
}
/* 640px */
@media (max-width: 640px) {
	#cc-main .cm__body {
		padding: 20px !important;
	}
	#cc-main .cc--anim .cm__btn, #cc-main .cc--anim .cm__close {
		max-width: 100%;
		width: 100%;
	}
	#cc-main .cc--anim .cm__btn:first-child {
		margin-right: 0;
	}
	#cc-main .cc--anim .cm__btn:last-child {
		margin-left: 0px !important;
		margin-top: 10px !important;
	}
}
/* 600px */
@media (max-width: 600px) {
	#cc-main .cc--anim .cm {
		padding: 20px;
	}
}
/* 500px */
@media only screen and (max-width:500px) {
	#cc-main .cm__desc, #cc-main .cm__title {
        font-family: 'Trade Gothic LT Pro';
        font-weight: 400;
        font-size: 16px;
        line-height: 1.3;
	}
	#cc-main .pm__section--toggle .pm__section-title {
		padding: 15px 85px 15px 55px !important;
	}
	#cc-main .pm__body,
	#cc-main .pm__footer,
	#cc-main .pm__header {
		padding: 15px !important;
	}
	#cc-main .pm__section-desc {
		font-size: 16px;
		line-height: 19px;
		font-family: Trade Gothic LT Pro;
		color: #000;
		font-weight: 100;
	}
	#cc-main .pm__btn,
	#cc-main .pm__btn-group+.pm__btn-group button {
		margin-left: 0;
	}
	#cc-main .cm__btn-group {
		display: flex !important;
		flex-direction: row !important;
	}
	#cc-main .cc--anim .cm__btn:last-child {
		margin-left: 5px !important;
		margin-top: 0px !important;
	}
	#cc-main .cc--anim .cm__btn:first-child {
		margin-right: 5px;
	}
	#cc-main .cc--anim .cm__btn:first-child,
	#cc-main .cc--anim .cm__btn:last-child {
		padding-top: 0;
		padding: 0;
		padding-top: 3px;
	}
	#cc-main .cm__texts {
		margin-bottom: 15px;
	}
	#cc-main .cm__body {
		padding: 20px !important;
		padding-top: 16px !important;
	}
}





/* =========================================================
PAGE HEADER SECTION
========================================================= */

section.page-header {

}
section.page-header .header-metrics {
	display: flex;
	margin-top: 47px;
	margin-bottom: 13px;
	border: 1px solid var(--yellowgreen);
}
section.page-header .header-metrics-item {
	width: 100%;
	padding: 29px 30px 26px 30px;
	border-right: 1px solid var(--yellowgreen);
}
section.page-header .header-metrics-item:last-child {
	border-right: none;
}
section.page-header .header-metrics-item h4 {
	font-size: 20px;
	color: var(--yellowgreen);
}
section.page-header .header-metrics-item p {
	margin-bottom: 0;
}

/* 1310px */
@media (max-width: 1310px) {
    section.page-header {
        padding-left: 60px;
        padding-right: 60px;
    }
}
/* 1000px */
@media (max-width: 1000px) {
    section.page-header {
        padding-left: 40px;
        padding-right: 40px;
    }
}
/* 600px */
@media (max-width: 600px) {
    section.page-header {
        padding-left: 20px;
        padding-right: 20px;
    }
	section.page-header .header-metrics {
		display: block;
	}
	section.page-header .header-metrics-item {
		border-right: none;
		border-bottom: 1px solid var(--yellowgreen);
		padding: 19px 20px 16px 20px;
	}
	section.page-header .header-metrics-item:last-child {
		border-bottom: none;
	}
}





/* =========================================================
TWO COLUMN
========================================================= */

.two-columns {
	background: var(--white);
	color: var(--darkpurple);
}
.two-columns .sub-header {
    margin-bottom: 32px;
}
.two-column {
	column-count: 2;      
	column-gap: 20px;     
	font-size: 20px;
}

/* 1310px */
@media (max-width: 1310px) {
    section.two-columns {
        padding-left: 60px;
        padding-right: 60px;
    }
}
/* 1000px */
@media (max-width: 1000px) {
    section.two-columns {
        padding-left: 40px;
        padding-right: 40px;
    }
}
/* 600px */
@media (max-width: 600px) {
    section.two-columns {
        padding-left: 20px;
        padding-right: 20px;
		text-align: left;
    }
	section.two-columns h2 {
		text-align: left;
		font-size: 35px;
    }
	div.two-column {
		column-count: 1; 
		text-align: left;
	}
}





/* =========================================================
ARTICLE SECTION
========================================================= */

.article {
	background: var(--white);
	color: var(--darkpurple);
}
.article .sub-header {
    margin-bottom: 32px;
}
.article h3 {
    margin: 50px 0 20px 0;
	font-size: 35px;
}
.article h4 {
    margin: 30px 0 16px 0;
    font-size: 22px;
    text-transform: none;
}
.article a {
	font-size: 20px;
	font-weight: bold;
	text-transform: uppercase;
}
.one-column {
	font-size: 20px;
}
.one-column .custom-dots {
	list-style: none; /* remove default bullets */
	padding: 0;
	margin: 0;
	margin: 0 0 1rem;
}
.one-column .custom-dots li {
	position: relative;
	padding-left: 38px; /* space for custom dot */
	margin-bottom: 10px;
}
.one-column .custom-dots li::before {
	content: '';
    position: absolute;
    left: 15px;
    top: 7px;
    width: 8px;
    height: 8px;
    background: color-mix(in srgb, var(--purple) 100%, transparent);
    border-radius: 50%;
}
.one-column .custom-dots ul {
    margin: 1rem 0 1rem 0;
	list-style-type: none;
	padding-left: 0;
}
.one-column h2 {
    font-size: 27px;
    padding: 32px 0 15px 0;
}
.one-column h2:first-child {
    padding: 0px 0 15px 0;
}
.links {
	margin-top: 40px;
}
.small-padding-bottom {
	padding-bottom: 50px;
}

/* 1310px */
@media (max-width: 1310px) {
    section.article {
        padding-left: 60px;
        padding-right: 60px;
    }
}
/* 1000px */
@media (max-width: 1000px) {
    section.article {
        padding-left: 40px;
        padding-right: 40px;
    }
}
/* 600px */
@media (max-width: 600px) {
    section.article {
        padding-left: 20px;
        padding-right: 20px;
		text-align: left;
    }
	section.article h2 {
		text-align: left;
		font-size: 35px;
    }
	div.two-column {
		column-count: 1; 
		text-align: left;
	}
}





/* =========================================================
TABLE
========================================================= */

.table-container {
	width: 100%;
	overflow-x: auto;
	-webkit-overflow-scrolling: touch;
	margin-top: 2rem;
	margin-bottom: 2rem;
}
.data-table {
	width: 100%;
	border-collapse: collapse;
	min-width: 800px;
	background-color: #fff;
	border: 1px solid #ddd;
}
.data-table th,
.data-table td {
    padding: 20px 25px 15px 25px;
	text-align: left;
	vertical-align: top;
	border-bottom: 1px solid #ddd;
}
.data-table th {
	background-color: #f5f5f5;
	font-weight: bold;
}
.data-table tr:hover {
	background-color: #f9f9f9;
}
.data-table td:last-child {
	text-align: center;
	font-weight: bold;
}

/* 800px */
@media (max-width: 800px) {
	.table-container {
		overflow-x: scroll;
		border: 1px solid #ccc;
	}
	.data-table th,
	.data-table td {
		white-space: nowrap;
	}
}





/* =========================================================
CONTACT FORM
========================================================= */

.contact-form p {
	font-size: 20px;
}
.contact-form p a {
	text-transform: none;
	color: var(--pink);
}
#contactForm {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 75px;
}
#contactForm .row {
	gap: 20px;
	margin-left: 0;
    margin-right: 0;
	padding-left: 0;
    padding-right: 0;
}
#contactForm .row-1,
#contactForm .row-2 {
	display: flex;
	gap: 0;
	margin-left: 0;
	margin-right: 0;
	padding-left: 0;
    padding-right: 0;
}
#contactForm .field {
	display: flex;
	flex-direction: column;
	flex: 1;
}
#contactForm input {
	display: block;
    height: 6rem;
    padding: 1.5rem 2.4rem;
    border: 0;
    outline: none;
    color: #151515;
    font-family: "metropolis-regular", sans-serif;
    font-size: 1.5rem;
    line-height: 3rem;
    max-width: 100%;
    background: rgba(0, 0, 0, 0.12);
}
#contactForm input,
#contactForm textarea {
	display: block;
    height: 6rem;
    padding: 1.5rem 2.4rem;
    border: 0;
    outline: none;
    color: #151515;
    font-family: "metropolis-regular", sans-serif;
    font-size: 1.5rem;
    line-height: 3rem;
    max-width: 100%;
    background: rgba(0, 0, 0, 0.12);
	padding: 4px 20px 0 20px;
    border: 3px solid #e1e1e1;
	font-size: 20px;
    height: 60px;
    font-family: Trade Gothic LT Pro;
    font-weight: 700;
    text-transform: none;
    color: var(--darkpurple);
}
#contactForm input:focus,
#contactForm textarea:focus {
	border-color: var(--pink);
}
#contactForm textarea {
	min-height: 300px;
}
#submitBtn {
    display: inline-block;
    padding: 18px 24px 13px 24px;
    font-weight: 600;
    cursor: pointer;
    text-align: center;
    font-family: Trade Gothic LT Pro;
    font-weight: 700;
    width: 100%;
    margin-top: 0;
    background: #a68bb7;
    color: #fff;
    border: none;
	font-size: 20px;
    cursor: pointer;
    background: var(--pink);
    color: #fff;
    text-transform: uppercase;
    height: 55px;
}
#submitBtn:hover {
	background: #EF007A;
    transform: scale(1.01);
    transition: transform .2s;
}
/* Location Map */
.location-map {
	padding: 0;
	height: 400px;
}
.form-response {
    padding: 17px 20px 13px 20px;
    background: green;
    margin-top: 10px;
    border: 3px solid var(--green);
    background: color-mix(in srgb, var(--green) 25%, transparent);
    font-family: Trade Gothic LT Pro;
    font-weight: 700;
    font-size: 16px;
    text-transform: uppercase;
    text-align: center;
    color: var(--green);
	display: none;
}
.form-response.active {
	display: block;
}

/* 1310px */
@media (max-width: 1310px) {
    section.contact-form  {
        padding-left: 60px;
        padding-right: 60px;
    }
}
/* 1000px */
@media (max-width: 1000px) {
    section.contact-form  {
        padding-left: 40px;
        padding-right: 40px;
    }
}
/* 600px */
@media (max-width: 600px) {
    section.contact-form  {
        padding-left: 20px;
        padding-right: 20px;
		text-align: left;
    }
	section.contact-form h2 {
		text-align: left;
		font-size: 35px;
    }
}





/* =========================================================
INFO SECTION
========================================================= */

.info-section {
	padding-top: 0;
	background: white !important;
}
.info-section .features__grid__3 {
	margin-top: 0;
}
.info-section h2.h2-small {
	text-align: left;
    max-width: 100%;
    font-size: 20px;
	margin-bottom: 24px;
}

/* 1310px */
@media (max-width: 1310px) {
    section.info-section  {
        padding-left: 60px;
        padding-right: 60px;
    }
}
/* 1000px */
@media (max-width: 1000px) {
    section.info-section  {
        padding-left: 40px;
        padding-right: 40px;
    }
}
/* 600px */
@media (max-width: 600px) {
    section.info-section  {
        padding-left: 20px;
        padding-right: 20px;
		text-align: left;
    }
	section.info-section h2 {
		text-align: left;
		font-size: 35px;
    }
}





/* =========================================================
IMAGES BOXES
========================================================= */

section.images-boxes {
	background-color: white;
	color: var(--purple);
	padding-bottom: 0;
}
section.images-boxes h2 {
	text-align: center;
	margin-bottom: 16px;
}
section.images-boxes .sub-header {
	text-align: center;
}
section.images-boxes .features__grid__2 {
    gap: 20px;
    padding: 20px;
}
section.images-boxes .feature {
	min-height: 200px;
    display: flex;
    flex-direction: column;
    justify-content: space-between; /* pushes h3 up and p down */
    height: 100%; /* must have height to allow spacing */
    background-color: rgba(205, 222, 0, 1);
	color: var(--purple);
	padding: 39px 40px 36px 40px;
}
section.images-boxes .feature .feature-1 {
	background-color: rgba(87, 87, 86, 0.90);
}
section.images-boxes .feature .feature-2 {
	background-color: rgba(87, 87, 86, 0.90);
}
section.images-boxes .feature .feature-3 {
	background-color: rgba(87, 87, 86, 0.90);
}
section.images-boxes .feature .feature-4 {
	background-color: rgba(87, 87, 86, 0.90);
}
section.images-boxes .feature p {
	max-width: 350px;
}
section.images-boxes .feature h3 {
	margin-top: 0;
}

/* 1310px */
@media (max-width: 1310px) {
    section.images-boxes  {
        padding-left: 60px;
        padding-right: 60px;
    }
	section.images-boxes .features__grid__2 {
		padding-left: 0;
		padding-right: 0;
	}
}
/* 1000px */
@media (max-width: 1000px) {
    section.images-boxes  {
        padding-left: 40px;
        padding-right: 40px;
    }
}
/* 600px */
@media (max-width: 600px) {
    section.images-boxes  {
        padding-left: 20px;
        padding-right: 20px;
		text-align: left;
    }
	section.images-boxes .features__grid__2 {
		padding-left: 0;
		padding-right: 0;
		grid-template-columns: repeat(1, 1fr);
	}
	section.images-boxes h2 {
		text-align: center;
		font-size: 35px;
    }
}





/* =========================================================
SIDE INFO SECTION
========================================================= */

.side-info-section-container {
    background-image: url(../images/features-section-bg.jpg);
	background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    overflow-x: hidden;
	padding: 0;
}
.side-info-section {
	background-color: rgba(87, 87, 86, 0.85); /* fallback */
}
.side-info-section .features__grid__2 {
    display: grid;
    grid-template-columns: 1fr 2fr; /* same 33/66 split but more flexible */
    gap: 100px;
	margin-top: 0;
}
.side-info-section .feature {
	padding: 0;
	background: transparent;

	display: flex;
    flex-direction: column;
    height: 100%; 
}
.side-info-section .feature h2 {
	text-align: left;
    margin-bottom: 32px;
}
.side-info-section .feature blockquote {
    margin: 0;
    font-family: Trade Gothic LT Pro;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 27px;
	margin-top: auto;
}
.side-info-section .feature p {
    font-size: 20px;
	padding-right: 0;
	margin: 0 0 1rem;
}
.side-info-section .feature p:last-child {
	margin: 0;
}
.side-info-section .feature strong {
    color: var(--yellowgreen);
    font-weight: bold;
    font-size: 20px;
	font-family: 'Trade Gothic LT Pro Bd 2';
}

/* 1310px */
@media (max-width: 1310px) {
    section.side-info-section  {
        padding-left: 60px;
        padding-right: 60px;
    }
}
/* 1000px */
@media (max-width: 1000px) {
    section.side-info-section  {
        padding-left: 40px;
        padding-right: 40px;
    }
	.side-info-section .features__grid__2 {
		display: block;
	}
}
/* 600px */
@media (max-width: 600px) {
    section.side-info-section  {
        padding-left: 20px;
        padding-right: 20px;
		text-align: left;
    }
	section.side-info-section h2 {
		text-align: left;
		font-size: 35px;
    }
}





/* =========================================================
TIMELINE SECTION
========================================================= */

.timeline-section {
	background-color: white;
	position: relative;
	color: var(--darkpurple);
	padding: 0;
}
.timeline-section h2 {
    position: absolute;
    top: 60px;
    left: 60px;
    margin: 0;
    z-index: 10;
    font-size: 48px;
    font-weight: 700;
	color: var(--blue);
	pointer-events: none;
}
.timeline {
	margin: 0 auto;
}
.timeline-inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    padding-left: 182px;
    overflow: auto;
    /* Hide scrollbar - Chrome, Safari, Edge */
    -ms-overflow-style: none;  /* IE + Edge */
    scrollbar-width: none;     /* Firefox */
    padding-top: 176px;
    padding-bottom: 70px;
	background: var(--lightgreybg);
}
.timeline-inner::-webkit-scrollbar {
    display: none; /* Chrome, Safari, Edge */
}
.timeline-date {
	border: 5px solid #FD495C;
    padding: 13px 20px 10px 20px;
    position: absolute;
    left: 60px;
    top: 50%;
    height: 65px;
    font-weight: 700;
    font-size: 27px;
    background: #FD495C;
    margin-top: 16px;
    z-index: 2;
    color: white;
    text-transform: uppercase;
	pointer-events: none;
}
.timeline-top {
	width: 100%;
	display: flex;
}
.timeline-bottom {
	width: 100%;
	display: flex;
}
.timeline-inner h3 {
	margin: 0;
	text-align: center;
	position: relative; 
	color: var(--blue);
}
.timeline-inner p {
	font-size: 20px;
	margin: 0;
	display: none;
}
.timeline-node {
    padding-left: 50px;
    padding-right: 50px;
	min-width: 500px;
}
.timeline-top .timeline-node {
    display: flex;
    flex-direction: column;
    justify-content: flex-end; /* pushes ALL content to the bottom */
    min-width: 500px; /* your existing */
	padding-bottom: 30px;
}
.timeline-bottom .timeline-node {
	padding-top: 38px;
}
.timeline-top .timeline-node {
    border-bottom: 3px solid #FD495C;
}
.timeline-bottom .timeline-node {
    border-top: 3px solid #FD495C;
}
.timeline-top .timeline-node:last-child {
	padding-right: 100px;
}
.timeline-top .timeline-node:first-child {
	padding-right: 100px;
}
.timeline-bottom .timeline-node:last-child {
	padding-right: 100px;
}
.timeline-top .timeline-node:last-child {
	min-width: calc(500px + 260px);
	padding-right: 260px;
}
.timeline-bottom .timeline-node:first-child {
	min-width: calc(500px + 260px);
	padding-left: 260px;
}
.timeline-top h3::after {
    content: "";
    position: absolute;
    bottom: -30px;
    right: 50%;
    width: 6px;
    height: 6px;
    background: var(--reddishpink);
    z-index: 1;
	opacity: 0.5;
}
.timeline-bottom h3::after {
    content: "";
    position: absolute;
    top: -38px;
    right: 50%;
    width: 6px;
    height: 6px;
    background: var(--reddishpink);
    z-index: 1;
	opacity: 0.5;
}

/* 1310px */
@media (max-width: 1310px) {

}
/* 1000px */
@media (max-width: 1000px) {
	.timeline-section h2,
	.timeline-date {
		left: 40px;
	}
	.timeline-inner {
		padding-left: 162px;
	}
}
/* 600px */
@media (max-width: 600px) {
	.timeline-section h2,
	.timeline-date {
		left: 20px;
		margin-top: 0;
	}
	.timeline-section h2 {
		font-size: 20px;
		opacity: 0.5;
		top: 35px;
	}
	.timeline-inner {
		padding-left: 142px;
		padding-top: 100px;
    	padding-bottom: 30px;
	}
}





/* =========================================================
GLOSSARY
========================================================= */

.glossary {
	background-color: white;
	position: relative;
	color: var(--darkpurple);
	padding-top: 45px;
}
.list-section .list {
    max-width: 1200px;
    margin: 0 auto;
}
.list-section .list h2 {
    margin-top: 0;
    position: relative;
    text-transform: uppercase;
    padding-top: 63px;
	margin-bottom: 27px;
}
.list-section .list > div {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
}
.list-section .list .list-item {
    cursor: pointer;
    color: var(--pink);
    position: relative;
    font-size: 22px;
    line-height: inherit;
    margin-bottom: 0;
    padding-top: 30px;
    padding-bottom: 31px;
	padding-right: 31px;
    text-transform: uppercase;
    font-weight: bold;
}
.list-section .list .list-item:hover {
	text-decoration: underline;
}
.o-popover {
    position: absolute;
    top: 85px;
    left: 0;
    max-width: calc(100% - 20px);
    transform: translateX(0%);
    background: #fff;
    padding: 20px 25px 18px 25px;
    white-space: nowrap;
    color: white;
    font-size: 20px;
    display: none;
    background: var(--purple);
    z-index: 1000;
    word-wrap: break-word;
    overflow-wrap: break-word;
    white-space: normal;
    letter-spacing: normal;
    text-transform: uppercase;
}
.list-item .o-popover {
    display: block;
}

/* 1310px */
@media (max-width: 1310px) {
	section.glossary {
        padding-left: 60px;
        padding-right: 60px;
	}
}
/* 1000px */
@media (max-width: 1000px) {
	section.glossary {
        padding-left: 40px;
        padding-right: 40px;
	}
    .list-section .list > div {
        grid-template-columns: repeat(3, 1fr);
    }
}
/* 600px */
@media (max-width: 600px) {
	section.glossary {
        padding-left: 20px;
        padding-right: 20px;
	}
    .list-section .list > div {
        grid-template-columns: repeat(1, 1fr);
    }
	section.glossary h2 {
        text-align: left;
    }
	.list-section .list h2 {
		padding-top: 35px;
	}
	.list-section .list .list-item {
		padding-top: 10px;
		padding-bottom: 10px;
	}
	.o-popover {
		top: 50px;
		max-width: 100%;
	}
}