:root {
  --color_white: #fff;
  --color_grey: #f0f0f0;
	--color_green: #97f5c8;
	--color_charcoal: #3c3c3b;
}

@font-face {
	font-display: swap;
	font-family: alte_haas_grotesk;
	src: url("alte_haas_grotesk.woff2") format("woff2"),
	url("alte_haas_grotesk.woff") format("woff"),
	url("alte_haas_grotesk.ttf") format("ttf");
}


.serif {
	font-family: "Noto Serif", serif;
	font-optical-sizing: auto;
	font-weight: 400;
	font-style: normal;
	font-variation-settings:
		"wdth" 100;
}

.serif a {
	color: var(--color_charcoal);
}
.serif a:hover {
	text-decoration: none;
}

html, body {
	min-height: 100%;
}
body {
	background-color: var(--color_white);
	color: var(--color_charcoal);
	font-family: "alte_haas_grotesk", Helvetica, Arial, sans-serif; 
	font-size: 16px;
	line-height: 1.5;
	-webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
	font-family: "alte_haas_grotesk", Helvetica, Arial, sans-serif; 
}

h1 {
	font-size: 40px;
}
h2 {
	font-size: 30px;
}
h3 {
	font-size: 22px;
}


.dropcap::first-letter {
	float: left;
	font-size: 83px;
	line-height: 0.83;
	padding-right: 10px;
	padding-top: 1px;
	font-weight: 600;
}

.relative {
	position: relative;
}
.img_full {
	display: block;
	width: 100%;
}

.bg_grey {
	background-color: var(--color_grey);
}
.bg_green {
	background-color: var(--color_green);
}
.bg_charcoal {
	background-color: var(--color_charcoal);
}

.white {
	color: var(--color_white);
}


.footer_holder {
	margin-top: 50px;
	padding: 50px 0 50px;
}

.logo_footer {
	height: 72px;
	margin-bottom: 30px;
}
.footer_phone {
	display: block;
	color: var(--color_green);
	font-size: 140%;
	margin: 20px 0 40px;
	text-decoration: none;
}
.footer_phone:hover {
	text-decoration: underline;
}
.footer_socials {
	padding: 50px 0 20px;
}
.footer_link {
	color: var(--color_white);
	text-decoration: none;
	display: block;
	margin-bottom: 20px;
}
.footer_link:hover {
	color: var(--color_green);
	text-decoration: none;
}
.footer_socials {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 18px;
}
.social_icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	text-decoration: none;
}

.social_icon img {
	display: block;
	width: auto;
	height: 36px;
}



@media (max-width: 991px) {
	.spotlight_welcome {
		padding: 20px 0px 30px 0px;
	}
}
@media (min-width: 992px) {
	.spotlight_welcome {
		padding: 0px 0px 0px 40px;
	}
	.spotlight_swiper_holder {
		background-color: var(--color_green);
	}
}
.spotlight_welcome_quote {
	padding-top: 20px; 
}
.spotlight_swiper_holder {
	margin: 30px 0;
}
.spotlight_swiper {
	overflow: hidden;
}
.spotlight_swiper .swiper-slide {
	height: auto;
}
.spotlight_slide {
	position: relative;
}
.spotlight_caption {
	position: absolute;
	left: 0;
	bottom: 20px;
	
	display: block;
	color: var(--color_white);
	background-color: var(--color_charcoal);
	text-decoration: none;
	line-height: 1;	
	padding: 10px 15px;
	
	width: 45%;
}
.spotlight_link {
	color: var(--color_charcoal);
	text-decoration: none;
}
.spotlight_image {
	width: 80%;
	margin-left: 20%;
}

.spotlight_caption_subheading {
	font-size: 11px;
	text-transform: uppercase;
	margin: 16px 0 12px;
}

@media (max-width: 991px) {
	.spotlight_caption_spotlight {
		font-size: 20px;
	}
	.spotlight_caption_name {
		font-size: 20px;
	}
}
@media (min-width: 992px) {
	.spotlight_caption_spotlight {
		font-size: 22px;
	}
	.spotlight_caption_name {
		font-size: 30px;
	}
}





.section_background {
}

.section_holder {
	margin-top: 100px;
	border-top: 1px solid var(--color_charcoal);
	padding: 20px 0 60px;
	position: relative;
}



.section_header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 20px;
	margin-bottom: 24px;
}

.section_heading {
	margin: 0;
	text-transform: capitalize;
}

.section_nav {
	display: flex;
	align-items: center;
	gap: 18px;
	flex: 0 0 auto;
}

.section_arrow {
	width: 34px;
	height: 34px;
	padding: 0;
	border: 0;
	background: transparent;
	cursor: pointer;
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
}

.section_arrow::before {
	content: "";
	display: block;
	width: 22px;
	height: 22px;
	border-top: 1px solid var(--color_charcoal);
	transition: transform 0.2s ease, opacity 0.2s ease;
}

.section_arrow_next::before {
	border-right: 1px solid var(--color_charcoal);
	transform: rotate(45deg);
}

.section_arrow_prev::before {
	border-left: 1px solid var(--color_charcoal);
	transform: rotate(-45deg);
}

.section_arrow_next:hover::before {
	transform: rotate(45deg) translate(2px, -2px);
}

.section_arrow_prev:hover::before {
	transform: rotate(-45deg) translate(-2px, -2px);
}

.section_arrow.swiper-button-disabled {
	opacity: 0;
	cursor: default;
}

.section_arrow.swiper-button-disabled::before {
	transform: none;
}

.section_arrow_next.swiper-button-disabled::before {
	transform: rotate(45deg);
}

.section_arrow_prev.swiper-button-disabled::before {
	transform: rotate(-45deg);
}

.section_swiper {
	overflow: hidden;
}

.swiper-slide {
	height: auto;
}

.section_slide {
	height: 100%;
	display: flex;
	flex-direction: column;
}

.section_slide_image_holder {
	aspect-ratio: calc(3 / var(--slides));
	margin-bottom: 18px;
}



.img_zoom {
	display: block;
	overflow: hidden;
	position: relative;
}

.img_zoom > img {
	width: 100%;
	height: 100%;
	object-fit: cover;

	transition: transform 0.9s ease;
	will-change: transform;
}

.img_zoom:hover > img {
	transform: scale(1.15);
}

.img_zoom::after {
	content: "";
	position: absolute;
	left: 0;
	bottom: 0;
	width: 100%;
	height: 10px;

	background-color: var(--color_green);

	transform: scaleX(0);
	transform-origin: left;
	transition: transform .45s ease-out;

	z-index: 2;
}

.img_zoom:hover::after {
	transform: scaleX(1);
}



.section_type {
	text-transform: uppercase;
	font-size: 14px;
	margin-bottom: 12px;
}

.section_name {
	line-height: 1;
	margin-bottom: 22px;
}

.section_description {
	margin-bottom: 36px;
}

.section_button_holder {
	margin-top: auto;
}

.section_button {
	display: inline-block;
	color: var(--color_white)!important;
	background-color: var(--color_charcoal);
	text-decoration: none;
	text-transform: uppercase;
	padding: 5px 20px;
	font-family: "alte_haas_grotesk", Helvetica, Arial, sans-serif;
	border: none;
	border-radius: 0;
}

.section_button:hover {
	color: var(--color_charcoal)!important;
	background-color: var(--color_white)!important;
}

@media (max-width: 991px) {
	.section_holder {
		margin-top: 60px;
		padding: 16px 0 40px;
	}

	.section_header {
		margin-bottom: 16px;
	}

	.section_heading {
		font-size: 34px;
	}

	.section_nav {
		gap: 10px;
	}

	.section_arrow {
		width: 28px;
		height: 28px;
	}

	.section_arrow::before {
		width: 16px;
		height: 16px;
	}

	.section_image {
		aspect-ratio: calc(1.5 / 1);
	}

	.section_name {
		font-size: 34px;
	}
	.partners_header {
		font-size: 34px;
	}
}

@media (min-width: 992px) {
	.section_name {
		font-size: 40px;
		min-height: 2em;
	}
	.partners_header {
		font-size: 40px;
	}
}

.video_embed {
	aspect-ratio: 3 / 2;
	background-color: var(--color_charcoal);
}

.video_embed iframe {
	width: 100%;
	height: 100%;
}

.gallery_subtitle {
	margin-top: 20px;
	text-transform: uppercase;
	font-family: "alte_haas_grotesk", Helvetica, Arial, sans-serif; 
	font-size: 14px;
}
.gallery_title {
	margin-top: 20px;
	font-family: "alte_haas_grotesk", Helvetica, Arial, sans-serif; 
	font-size: 18px;
}



.item_hero_image {
	display: block;
	width: 100%;
	margin-bottom: 90px;
}
.item_header {
	padding-top: 20px;
}




.item_content {
	display: grid;
	grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr);
	column-gap: 56px;
	align-items: start;
	margin-bottom: 100px;
}

.item_main,
.item_side {
	min-width: 0;
}

.item_side {
	border-left: 1px solid var(--color_charcoal);
	padding-left: 28px;
}

.item_label {
	text-transform: uppercase;
	margin-bottom: 28px;
}

.item_title {
	margin: 0 0 36px;
}

.item_description {
	padding-bottom: 42px;
	border-bottom: 1px solid var(--color_charcoal);
	margin-bottom: 42px;
}
.item_description img {
	display: block;
	width: 100%;
	margin-bottom: 10px;
}
.item_description iframe {
	width: 100%;
}

.item_description h3 {
	border-bottom: 1px solid var(--color_charcoal);
	padding-bottom: 10px;
	margin-bottom: 25px;
}
.item_description hr {
	opacity: 1;
}

.item_rule {
	border: 0;
	border-top: 1px solid var(--color_charcoal);
	margin: 40px 0 34px;
	opacity: 1;
}

.item_sidebar_text h2 {
	border-bottom: 1px solid var(--color_charcoal);
	padding-bottom: 40px;
	margin-bottom: 34px;
	text-transform: uppercase;
	font-family: "alte_haas_grotesk", Helvetica, Arial, sans-serif; 
	font-size: 18px;
}
.item_sidebar_text h3 {
	border-bottom: 1px solid var(--color_charcoal);
	padding-bottom: 10px;
	margin-bottom: 30px;
	text-transform: uppercase;
	font-family: "alte_haas_grotesk", Helvetica, Arial, sans-serif; 
	font-size: 18px;
}

.item_sidebar_text img {
	display: block;
	width: 100%;
}


.item_supporters {
	margin-top: 70px;
}

.item_supporters_logos {
	display: flex;
	flex-wrap: wrap;
	gap: 30px;
	align-items: center;
	margin-top: 20px;
}

.item_supporters_logos img {
	display: block;
	max-height: 48px;
	width: auto;
}

@media (max-width: 991px) {
	.page_hero_image {
		margin-bottom: 40px;
	}

	.item_content {
		grid-template-columns: 1fr;
		row-gap: 40px;
		margin-bottom: 60px;
	}

	.item_side {
		border-left: 0;
		padding-left: 0;
		padding-top: 0;
	}

	.item_title {
		margin-bottom: 24px;
	}

	.item_description {
		margin-bottom: 28px;
	}

	.item_rule {
		margin: 28px 0 24px;
	}

	.item_supporters {
		margin-top: 40px;
	}
}

.item_name_overlay {
	background-color: var(--color_green);
	position: absolute;
	left: 15px;
	bottom: 40px;
	padding: 5px 10px;
	font-size: 40px;
	text-transform: uppercase;
}


.section_page_header {
	padding: 50px 0 50px;
}
.section_page_header .section_heading {
	border-bottom: 1px solid var(--color_charcoal);
	padding-bottom: 30px;
	margin-bottom: 30px;
}
.section_page_section {
	background-color: var(--color_grey);
	padding: 50px 0;
	margin-bottom: 50px;
}

@media (max-width: 991px) {
	.section_page_image {
		margin-bottom: 20px;
	}
}

.table_simple {
	width: 100%;
}
.table_simple td, .table_simple th {
	border: 1px solid var(--color_charcoal);
	padding: 5px 10px;
}

@media (max-width: 767px) {

}
@media (min-width: 768px) {

}
@media (min-width: 992px) {

}
@media (min-width: 1200px) {

}