/**
 * Hero
 */

.hero {
	position: relative;
	overflow: hidden;
	background-color: #175844;
	color: #ffffff;
	padding-top: 80px;
	padding-bottom: 0;
}

.has-hero-header .hero {
	padding-top: 156px;
}

.hero__map {
	position: absolute;
	inset: 0;
	z-index: 0;
	overflow: hidden;
	pointer-events: none;
}

.hero__map-image {
	position: absolute;
	left: 50%;
	top: 64%;
	width: 100%;
	max-width: none;
	height: auto;
	opacity: 0.5;
	transform: translate(-50%, -50%);
}

.hero__container {
	position: relative;
	z-index: 1;
	width: 100%;
}

.hero__content {
	display: flex;
	flex-direction: column;
	gap: 160px;
	width: 100%;
	margin-left: auto;
	margin-right: auto;
	padding-left: 16px;
	padding-right: 16px;
}

.hero__eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 7px;
	margin: 0 0 16px;
	background-color: #15654E;
}

.hero__eyebrow-marker {
	width: 10px;
	height: 10px;
	background-color: #9DE7C9;
	flex-shrink: 0;
}

.hero__eyebrow-text {
	font-family: var(--font-family-body);
	font-size: 14px;
	font-weight: 400;
	line-height: 1.4;
	color: #9DE7C9;
}

.hero__heading {
	margin: 0 0 16px;
	font-family: var(--font-family-display);
	font-size: 34px;
	font-weight: 400;
	line-height: 1.2;
	letter-spacing: -0.64px;
	color: var(--color-blue-50);
}

.hero__description {
	margin: 0 0 40px;
	font-family: var(--font-family-body);
	font-size: 16px;
	font-weight: 400;
	line-height: 1.4;
	letter-spacing: 0px;
	color: var(--color-blue-50);
}

.hero__cta {
	margin: 0;
}

.hero__benefits-grid {
	display: flex;
	flex-direction: column;
	gap: 16px;
	width: 100%;
}

.hero__benefit {
	flex: 1;
	padding: 5px 0;
	background-color: #10533f;
}

.hero__benefit-title {
	display: flex;
	align-items: flex-start;
	gap: 12px;
	margin: 0 0 4px;
	font-family: var(--font-family-body);
	font-size: 16px;
	font-weight: 500;
	line-height: 1.4;
	color: #cfe6fa;
}

.hero__benefit-marker {
	width: 8px;
	height: 8px;
	margin-top: 6px;
	background-color: #82d3b2;
	flex-shrink: 0;
}

.hero__benefit-text {
	margin: 0;
	padding-left: 20px;
	font-family: var(--font-family-body);
	font-size: 16px;
	font-weight: 400;
	line-height: 1.4;
	color: #cfe6fa;
}

.hero__logos {
	position: relative;
	z-index: 1;
	margin: 0;
	padding: 30px 0;
	background: linear-gradient(0deg, rgba(16, 83, 63, 0.82) 0%, rgba(23, 88, 68, 0.25) 100%);
	overflow: hidden;
}



.hero__marquee-viewport {
	position: relative;
	z-index: 1;
	overflow: hidden;
}

.hero__marquee-track {
	display: flex;
	width: max-content;
	will-change: transform;
	animation: hero-marquee 35s linear infinite;
}

.hero__marquee-group {
	display: flex;
	align-items: center;
	gap: 64px;
	margin: 0;
	padding-right: 64px;
	list-style: none;
	flex-shrink: 0;
}

.hero__marquee-item {
	flex-shrink: 0;
	line-height: 0;
}

.hero__marquee-img {
	display: block;
	width: auto;
	height: 32px;
	max-width: 140px;
	object-fit: contain;
	filter: brightness(0) invert(1);
}

@keyframes hero-marquee {
	from {
		transform: translate3d(0, 0, 0);
	}

	to {
		transform: translate3d(calc(var(--marquee-offset, 0px) * -1), 0, 0);
	}
}

@media (min-width: 768px) {
	.hero__content {
		padding-left: 32px;
		padding-right: 32px;
	}

	.hero__benefits-grid {
		flex-direction: row;
		gap: 0;
	}

	.hero__heading {
		font-size: 48px;
	}
}

@media (min-width: 992px) {
	.hero__content {
		max-width: 874px;
		padding:0 0 130px 0;
	}

	.hero__heading {
		font-size: 60px;
	}
}

@media (max-width: 768px) {
	.has-hero-header .hero{
		padding-top: 80px;
	}
	.hero__content {
		gap:48px;
		padding-bottom:64px;
	}

	.hero__heading {
		font-size: 32px;
	}
}

@media (prefers-reduced-motion: reduce) {
	.hero__marquee-track {
		animation: none;
	}
}
