/* #region setup */

:root {
	--text-color: #000;
	--dark-color: #141414;
	--theme-primary: #fac900;
	--theme-primary-dark: #d4aa00;
	--theme-primary-light: #fbe8ab;
	--theme-primary-bg-light: #fff9e5;
	--theme-primary-bg-lighter: #fffdf6;
	--theme-primary-fade: rgba(250, 200, 0, 0.3);
	--theme-primary-alt: #000;
	--theme-secondary: #4a9154;
	--theme-secondary-dark: #3f7f4d;
	--theme-secondary-light: #6abf79;
	--theme-secondary-bg-light: #f1f9f0;
	--theme-secondary-bg-lighter: #f8fcfa;
	--theme-secondary-fade: rgba(74, 145, 84, 0.3);
	--theme-secondary-alt: #fff;
	--theme-tertiary: #ed7b23;
	--theme-tertiary-dark: #d76b1d;
	--theme-tertiary-light: #f9b37b;
	--theme-tertiary-bg-light: #fef8f2;
	--theme-tertiary-bg-lighter: #fefcf9;
	--theme-tertiary-fade: rgba(237, 123, 35, 0.3);
	--theme-tertiary-alt: #fff;
	--container-width: 1300px;
	--container-sm-width: 1000px;
	--container-lg-width: 1440px;
	--column-gutter: 20px;

	/* https://angel-rs.github.io/css-color-filter-generator/ */
	/* --primary-filter: brightness(0) saturate(100%) invert(20%) sepia(99%) saturate(2341%) hue-rotate(184deg) brightness(95%) contrast(101%);
	--secondary-filter: brightness(0) saturate(100%) invert(26%) sepia(51%) saturate(5261%) hue-rotate(330deg) brightness(76%) contrast(111%); */
	--white-filter: brightness(0) saturate(100%) invert(100%);
	--black-filter: brightness(0) saturate(100%) invert(0%);
	--header-height: 50px;
	--header-lg-height: 70px;
	--logo-width: 180px;
	--section-gap: 3rem;
	--swiper-theme-color: var(--theme-primary);
	--nav-hover-color: var(--theme-primary);
}

*,
*::before,
*::after {
	box-sizing: inherit;
	margin: 0;
	padding: 0;
}

html {
	box-sizing: border-box;
	font-size: 16px;
	scroll-padding-top: calc(var(--header-height) + var(--section-gap));
	scroll-behavior: smooth;
	/* scrollbar-gutter: stable; */
	overflow-x: hidden;
}

body {
	color: var(--text-color);
	font-family: var(--font-family);
	/* overflow-x: hidden; */
	line-height: 1.8;
	font-weight: 400;
	/* padding-top: var(--header-height); */
	/* background-color: var(--theme-primary-bg-lighter); */
}

html:has(dialog[open]) {
	overflow: hidden;
	padding-right: var(--scrollbar-width);
}

h1,
h2,
h3,
h4,
h5,
h6 {
	font-family: var(--font-family-alt);
	line-height: 1.3;
}

input,
button,
select,
textarea {
	font: inherit;
	color: inherit;
	border: 0;
	background: none;
	outline: none;
	font-size: 14px;
}

input,
select,
textarea {
	display: block;
	width: 100%;
}

button {
	cursor: pointer;
}

img {
	display: block;
	max-width: 100%;
	max-height: 100%;
}

ul,
ol {
	list-style: none;
}

a {
	text-decoration: none;
	color: inherit;
	transition: ease 0.25s;
	transition-property: color, background-color, border-color;
}

label.error {
	color: red;
	font-size: 0.9em;
}

::selection {
	background-color: var(--theme-primary-fade);
	/* color: var(--theme-primary-alt); */
}

@media (max-width: 760px) {
	:root {
		--header-height: 0;
		--logo-width: 85px;
		--column-gutter: 25px;
	}

	html {
		font-size: 14px;
	}
}

/* #endregion setup */

/* #region layout */

.menu-active {
	overflow: hidden;
	padding-right: var(--scrollbar-width);
}

.container {
	width: var(--container-width);
	margin: 0 auto;
	padding: 0 var(--column-gutter);
	max-width: 100%;
}

.container-sm {
	width: var(--container-sm-width);
}

.container-lg {
	width: var(--container-lg-width);
}

.light-bg {
	background-color: var(--theme-primary-bg-light);
}

.primary-bg {
	background-color: var(--theme-primary);
}

.secondary-bg {
	background-color: var(--theme-secondary);
}

.tertiary-bg {
	background-color: var(--theme-tertiary);
}

.swal2-container .swal2-confirm.swal2-styled {
	background-color: var(--theme-primary);
	color: var(--theme-primary-alt);
}

.swal2-container .swal2-styled.swal2-confirm:focus {
	box-shadow: 0 0 0 3px var(--theme-primary-light);
}

.section-gap {
	padding-block: var(--section-gap);
}

.section-subtitle {
	font-weight: normal;
	/* letter-spacing: 2px; */
	font-size: 1.2rem;
	font-family: var(--font-family);
	/* opacity: 0.3; */
	/* line-height: 2; */
	/* text-transform: uppercase; */
	/* color: var(--theme-primary); */
	margin-top: 1.5rem;
}

.section-title {
	font-weight: 700;
	font-size: 2rem;
	line-height: 1.1;
	color: var(--theme-tertiary);
}

.banner-swiper-nav {
	width: auto;
	background-color: #fff;
	color: #000;
	padding: 40px 15px;
	box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
	font-weight: 600;
	--swiper-navigation-size: 24px;
	margin-top: 0;
	transform: translateY(-50%);
}

.banner-swiper-nav.swiper-button-prev {
	left: 0;
	border-radius: 0 5px 5px 0;
}

.banner-swiper-nav.swiper-button-next {
	right: 0;
	border-radius: 5px 0 0 5px;
}

.swiper-nav-btn {
	--swiper-navigation-sides-offset: 1rem;
	--swiper-navigation-size: 1.6rem;
	width: calc(var(--swiper-navigation-size) + 1rem);
	height: calc(var(--swiper-navigation-size) + 1rem);
	border-radius: 50rem;
	border: 2px solid var(--swiper-theme-color);
	background-color: rgb(255 255 255 / 70%);
}

.header-banner {
	padding-top: 2rem;
	padding-bottom: 2rem;
	/* background-color: #f9f9f9; */
	color: #000;
	text-align: center;
}

.header-banner .section-header {
	margin-bottom: 2rem;
	margin-top: 2rem;
}

.section-header-crumbs {
	margin-top: 1rem;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-wrap: wrap;
	line-height: 1.8;
}

.section-header-crumbs span {
	display: inline-block;
	max-width: 400px;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.section-header-crumbs span:not(:last-child) {
	margin-right: 0.5em;
}

.section-header-crumbs span:not(:last-child)::after {
	font: var(--icon-font);
	content: "\f105";
	font-size: 1em;
	margin-left: 0.5em;
}

.crumb-active {
	color: var(--theme-primary);
}

.site-page > .header-banner + .page-section {
	padding-top: 3rem;
	padding-bottom: 3rem;
}

.cta-btn {
	display: inline-block;
	padding: 1rem 5rem;
	font-size: 1.25rem;
	line-height: 1.4;
	background-color: var(--theme-primary);
	color: var(--theme-primary-alt);
	position: relative;
	padding-right: 8rem;
	overflow: hidden;
}

.cta-btn:hover {
	background-color: var(--theme-primary-dark);
	/* color: var(--theme-primary-bg-lighter); */
}

.cta-btn::before,
.cta-btn::after {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	padding: 1rem;
	width: 4rem;
}

.cta-btn::after {
	content: "\f061";
	font: var(--icon-font);
	font-size: 1.75rem;
	display: grid;
	place-content: center;
}

.cta-btn::before {
	content: "";
	background-color: #fff;
	opacity: 0.5;
}

.cta-btn:hover::after {
	animation: cta-spin 1s ease-in-out alternate;
	/* animation-iteration-count: 2; */
}

.cta-link {
	color: #0863c0;
	line-height: 1.5;
	display: inline-flex;
	align-items: center;
	font-weight: 400;
	gap: 0.3rem;
}

.cta-link::after {
	content: "\f0a9";
	font: var(--icon-font);
	font-size: 2rem;
	display: inline-block;
}

.cta-link:hover {
	color: var(--theme-tertiary);
}

.cta-link:hover::after {
	animation: cta-spin 1s ease-in-out alternate;
	/* animation-iteration-count: 2; */
}

@keyframes cta-spin {
	0% {
		transform: rotateX(0deg);
	}
	100% {
		transform: rotateX(720deg);
	}
}

.application-link {
	--content-width: 7rem;
	--icon-size: 2.2rem;
	--padding: 4px;
	--btn-width: calc(var(--content-width) + var(--icon-size) + (var(--padding) * 2));
	background-color: var(--theme-primary);
	border-radius: 100px;
	display: inline-flex;
	padding: var(--padding);
	align-items: center;
	cursor: pointer;
	text-decoration: none;
	width: var(--btn-width);
	transition: ease-in-out 0.25s box-shadow;
}

.application-link::after {
	content: "\f061";
	font: var(--icon-font);
	padding: 8px;
	width: var(--icon-size);
	height: var(--icon-size);
	display: grid;
	place-items: center;
	font-size: 1.25rem;
	background-color: #fff;
	color: #000;
	line-height: 1;
	border-radius: 50%;
	pointer-events: none;
}

.application-link-content,
.application-link::after {
	transition: ease-in-out 0.3s transform;
}

.application-link .hover-text {
	transition: ease-in-out 0.3s color;
}

/* .application-link::after i {
	width: 20px;
	text-align: center;
} */

.application-link-content {
	overflow: hidden;
	/* height: 100%; */
	width: var(--content-width);
	pointer-events: none;
}

.application-link:hover::after {
	transform: translateX(calc(var(--content-width) * -1));
}

.application-link:hover .application-link-content {
	transform: translateX(var(--icon-size));
}

.application-link .hover-text {
	white-space: nowrap;
	font-weight: 600;
	text-transform: uppercase;
	text-decoration: none;
	padding: 0.3rem 0.8rem;
	font-size: 0.85rem;
	color: #fff;
}

.application-link:hover {
	box-shadow: 1px 1px 4px rgba(0, 0, 0, 0.2);
}

.pagination-wrapper {
	margin-top: 2rem;
}

.page-pagination {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 0.5rem;
}

.page-pagination .page-numbers {
	display: block;
	padding: 0.2rem 1rem;
	font-size: 1rem;
	border: 2px solid var(--theme-primary);
	background-color: var(--theme-primary);
	color: var(--theme-primary-alt);
	border-radius: 0.5rem;
	font-weight: 500;
}

.page-pagination .page-numbers:hover {
	background-color: var(--theme-primary-alt);
	color: var(--theme-primary);
}

.glightbox-open {
	scrollbar-gutter: auto;
}

.glightbox-container.glightbox-default {
	padding-left: 1rem;
	padding-right: 1rem;
}

.glightbox-container.glightbox-default .goverlay {
	background-color: rgba(0, 0, 0, 0.7);
}

.glightbox-container.glightbox-default .ginner-container {
	border-radius: 0.5rem;
}

.glightbox-container.glightbox-default .gslide-media {
	background-color: #fff;
}

.glightbox-container.glightbox-default .gslide-title {
	font-family: var(--font-family-alt);
	font-size: 1.5rem;
	margin-bottom: 0.5em;
}

.glightbox-container.glightbox-default .gslide-desc {
	font-family: var(--font-family);
	font-size: 1rem;
}

.popup-container,
.popup-slide-in .popup-container {
	padding: 2rem;
}

.popup-container .popup-close {
	top: 2.5rem;
	right: 2.5rem;
}

.popup-title {
	font-size: 1.5rem;
	font-family: var(--font-family);
	font-weight: 400;
}

.hlt {
	color: var(--theme-primary);
}

.section-header {
	margin-bottom: 2rem;
	/* text-align: center; */
	position: relative;
}

.section-header.left-header {
	text-align: left;
}

.section-title-sm {
	/* text-transform: uppercase; */
	/* letter-spacing: 3px; */
	font-weight: 400;
	/* color: var(--theme-primary); */
	margin-top: 1em;
	font-size: 1.3rem;
	line-height: 1.3;
}

.center-header {
	text-align: center;
}

[data-bg-shadow] {
	position: relative;
	/* overflow: hidden; */
}

[data-bg-shadow]::before {
	content: attr(data-bg-shadow);
	position: absolute;
	top: -3rem;
	left: -3rem;
	font-size: 18rem;
	opacity: 0.05;
	font-weight: 800;
	line-height: 0.5;
	white-space: nowrap;
	text-transform: uppercase;
}

.bg-cover {
	background-size: cover;
	background-position: center bottom;
}

.bg-cover > * {
	position: relative;
	z-index: 1;
}

.scale-img {
	position: relative;
}

.scale-img::before {
	content: "";
	display: block;
	padding-top: 100%;
}

.scale-img > img,
.scale-img > iframe,
.scale-img > svg {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.swiper-slide {
	box-sizing: border-box;
}

.padded-swiper {
	padding: var(--column-gutter);
	margin-left: calc(var(--column-gutter) * -1);
	margin-right: calc(var(--column-gutter) * -1);
}

@media (max-width: 760px) {
	.section-gap {
		padding-top: 3rem;
		padding-bottom: 3rem;
	}

	.site-page > .header-banner + .page-section {
		padding-top: 1.5rem;
		padding-bottom: 1.5rem;
	}

	.section-subtitle {
		font-size: 0.85rem;
	}

	.section-title {
		font-size: 1.6rem;
	}

	.banner-swiper-nav {
		--swiper-navigation-size: 20px;
		padding: 30px 10px;
	}

	.header-banner .section-header {
		margin-top: 0.5rem;
		margin-bottom: 0.5rem;
	}

	.glightbox-container.glightbox-default .goverlay {
		background-color: rgb(255, 255, 255);
	}

	.glightbox-mobile .glightbox-container.glightbox-default .gslide-description {
		background: #fff;
	}

	.glightbox-mobile .glightbox-container.glightbox-default .gslide-title {
		color: #000;
	}

	.header-cta-btn {
		font-size: 0.9rem;
	}

	.application-link {
		--icon-size: 2rem;
	}

	.application-link::after {
		padding: 4px;
	}

	.section-header {
		margin-bottom: 1rem;
	}
}

@media (min-width: 761px) {
	.glightbox-container.glightbox-default .goverlay {
		background-color: rgba(0, 0, 0, 0.9);
	}

	.glightbox-container.glightbox-default .gslide-description {
		border-bottom-left-radius: inherit;
		border-bottom-right-radius: inherit;
		overflow: hidden;
	}

	.glightbox-container.glightbox-default .gslide-media {
		border-top-left-radius: inherit;
		border-top-right-radius: inherit;
		overflow: hidden;
	}
}

@media print {
	.top-header,
	.page-header,
	.page-menu,
	.header-banner,
	.page-footer {
		display: none;
	}

	.site-page > .header-banner + .page-section {
		padding: 0;
	}
}

/* #endregion layout */

/* #region header */

.page-header {
	position: relative;
	z-index: 110;
	/* padding-inline: var(--column-gutter); */
	background-color: var(--theme-primary);
	color: var(--theme-primary-alt);
}

.page-header-row {
	display: flex;
	align-items: center;
	gap: 1rem 2rem;
	height: var(--header-height);
	/* margin-bottom: calc(var(--header-height) * -1); */
	position: relative;
}

.header-brand {
	align-self: flex-start;
	width: var(--logo-width);
	position: relative;
	z-index: 100;
}

.page-header-row .header-brand {
	/* position: relative; */
}

.page-header-row .header-brand img {
	position: absolute;
	width: 100%;
	top: 0;
	min-height: 13rem;
	object-fit: contain;
	object-position: center;
	/* aspect-ratio: 1; */
	/* opacity: 0; */
	background-image: var(--bg-cover);
	background-size: contain;
	background-repeat: no-repeat;
	padding: 0.5rem;
	padding-bottom: 2rem;
	/* opacity: 0; */
}

.page-header-row .header-brand img:nth-child(2) {
	animation: fade-stack 10s ease infinite;
	/* animation-delay: 2.5s; */
}

@keyframes fade-stack {
	0%,
	40%,
	100% {
		opacity: 0;
	}
	50%,
	90% {
		opacity: 1;
	}
}

.header-menu-btn {
	margin-left: auto;
	font-size: 2.5rem;
	color: #000;
	/* text-shadow: 0 0 0.5rem rgba(0, 0, 0, 0.5); */
	line-height: 0;
	padding: 0.5rem;
	position: fixed;
	top: calc(var(--header-lg-height) * 0.5);
	transform: translateY(-50%);
	right: var(--column-gutter);
	z-index: 160;
	background-color: transparent;
	transition: ease 0.3s;
	transition-property: transform, top, background-color;
}

.page-header-contact {
	display: flex;
	align-items: center;
	gap: 2rem;
	justify-content: flex-end;
	position: absolute;
	top: 0;
	right: 0;
	left: 0;
	height: var(--header-height);
}

.header-social-links {
	display: flex;
	gap: 0.5rem;
}

.header-social-link {
	display: grid;
	width: 1.7rem;
	height: 1.7rem;
	place-content: center;
	border: 1px solid currentColor;
	border-radius: 5rem;
	font-size: 1.2rem;
}

.header-action-link {
	padding: 0.5rem 1.5rem;
	background-color: var(--theme-secondary);
	color: var(--theme-secondary-alt);
	border-radius: 5rem;
	line-height: 1.2;
}

.header-action-link:hover {
	text-decoration: underline;
}

.menu-active .header-menu-btn {
	right: calc(var(--column-gutter) + var(--scrollbar-width));
}

.scroll-down .header-menu-btn {
	/* background-color: var(--theme-primary); */
	/* top: 1rem; */
}

.header-menu {
	position: sticky;
	z-index: 90;
	top: 0;
	right: 0;
	/* width: 25rem; */
	max-width: 100%;
	/* height: 100%; */
	/* background-color: #fff; */
	/* color: var(--theme-primary-alt); */
	/* padding: 6rem 3rem; */
	/* padding-left: 1rem; */
	/* transform: translateX(100%); */
	transition: cubic-bezier(0.3, 0, 0.3, 1) 0.7s transform;
	font-size: 0.9rem;
}

.scroll-down .header-menu {
	box-shadow: 0 0 0.5rem rgba(0, 0, 0, 0.15);
}

.menu-active .header-menu {
	/* right: var(--scrollbar-width); */
	transform: translateX(0);
}

.header-menu-brand {
	position: fixed;
	z-index: 90;
	top: 0;
	width: 100%;
	height: var(--header-lg-height);
	transition: ease 0.3s;
	transition-property: box-shadow, background-color, opacity;
	/* opacity: 0; */
}

.scroll-down .header-menu-brand {
	box-shadow: 0 0 1.5rem rgba(0, 0, 0, 0.2);
	background-color: #fff;
	opacity: 1;
}

.header-menu-brand .header-brand {
	position: absolute;
	/* width: var(--logo-width); */
	/* left: var(--column-gutter); */
	height: 100%;
	height: var(--header-lg-height);
}

.header-menu-brand .header-brand img {
	height: 100%;
	object-fit: contain;
	padding: 1rem 0;
	width: 100%;
}

.header-menu-links {
	font-weight: 500;
}

.header-menu-links > li {
	/* padding-left: 2rem; */
	padding-block: 1rem;
	transition: ease 0.25s;
	transition-property: background-color;
	min-width: 0;
	min-width: fit-content;
}

.header-menu-links li.active > .header-menu-link {
	color: var(--theme-tertiary);
	font-weight: 700;
}

.header-menu-link {
	display: block;
	width: 100%;
	/* padding: 0.5rem 1rem; */
	line-height: 1.5;
	position: relative;
	cursor: pointer;
	border-bottom: 1px solid transparent;
}

.header-dropdown {
	position: relative;
}

.header-dropdown > .header-menu-link {
	padding-right: 1.3rem;
}

.header-dropdown > .header-menu-link::before {
	content: "\f107";
	font: var(--icon-font);
	font-size: 1.1em;
	position: absolute;
	right: 0rem;
	top: 50%;
	transform: translateY(-50%);
}

.header-dropdown-menu > li {
	transition: ease 0.25s;
	transition-property: background-color;
}

.header-dropdown-menu .header-menu-link {
	border-block-color: #fff;
}

@media (min-width: 768px) {
	.header-menu-btn {
		display: none;
	}

	.header-menu-brand {
		background-color: #fff;
	}

	.header-menu-links {
		display: flex;
		justify-content: flex-end;
		/* padding-left: calc(var(--logo-width) + var(--column-gutter)); */
		padding-left: var(--logo-width);
		padding-block: 0.5rem;
		gap: 1.2rem;
		height: var(--header-lg-height);
	}

	.header-dropdown-menu {
		position: absolute;
		z-index: 0;
		/* right: calc(100% - 1rem); */
		top: 100%;
		height: auto;
		width: auto;
		min-width: 15rem;
		max-width: 100%;
		background-color: var(--theme-primary-bg-light);
		color: var(--theme-primary-alt);
		border-top: 2px solid var(--theme-primary);
		/* padding: 1rem 1rem; */
		transform: translateY(-3rem);
		transition: ease 0.5s;
		transition-property: transform, opacity;
		opacity: 0;
		pointer-events: none;
	}

	.header-dropdown:hover > .header-dropdown-menu {
		transform: translateY(0);
		opacity: 1;
		pointer-events: auto;
	}

	.header-menu-links > li:hover {
		/* background-color: var(--theme-primary-light); */
	}

	.header-dropdown-menu > li:hover {
		background-color: var(--theme-primary);
	}

	.header-dropdown-menu .header-menu-link {
		padding: 0.7rem 1.2rem;
	}

	.header-resp-menu {
		display: none;
	}
}

@media (max-width: 768px) {
	.page-header-contact {
		display: none;
	}

	.page-header-row .header-brand img {
		min-height: 8rem;
	}

	.header-menu-brand {
		opacity: 0;
	}

	.header-menu-brand .header-brand {
		width: 10rem;
	}

	.header-menu {
		position: fixed;
		width: 100%;
		overflow: auto;
		/* width: 25rem; */
		height: 100%;
		background-color: var(--theme-primary);
		color: var(--theme-primary-alt);
		padding: 6rem 3rem;
		padding-left: 1rem;
		transform: translateX(100%) translateY(0);
		z-index: 100;
		font-size: 1rem;
	}

	.header-menu .header-brand {
		/* display: none; */
		position: fixed;
		left: 0;
	}

	.header-menu-brand .header-brand img {
		padding-block: 0.5rem;
	}

	.page-header-row .header-brand {
		transition: ease 0.25s;
	}

	.menu-active .page-header-row .header-brand {
		opacity: 0;
	}

	.header-menu-links {
		padding-inline: 0;
	}

	.header-menu-links > li {
		padding-left: 2rem;
		padding-block: 0;
	}

	.header-dropdown > .header-menu-link::before {
		content: "\f0d7";
		right: auto;
		left: -0.5rem;
		font-size: 1.2em;
	}

	.header-dropdown-menu {
		display: none;
		margin-bottom: 1rem;
		background-color: var(--theme-primary-light);
	}

	.header-menu-link {
		padding: 0.5rem 1rem;
		line-height: 2;
	}

	.header-resp-menu {
		margin-block: 1.5rem;
		display: grid;
		gap: 1rem;
		justify-items: start;
		line-height: 1;
		padding-left: 1.5rem;
		font-size: 1.2rem;
	}

	.header-social-link {
		font-size: 1.5rem;
		width: 2.4rem;
		height: 2.4rem;
	}
}

/* #endregion header */

/* #region banners */

html {
	/* scroll-snap-type: y proximity; */
}

.home-page > section {
	scroll-snap-align: start;
}

.banner-slide::before {
	padding-top: 50%;
}

@media (max-width: 768px) {
	.banner-slide::before {
		padding-top: 65%;
	}
}

/* #endregion banners */

/* #region about */

.home-about-row {
	display: flex;
	gap: 1rem;
}

.home-about-col {
	flex: 1 1 100%;
}

.home-about-text {
	margin-top: 1rem;
	line-height: 1.5;
}

.home-about-text p {
	margin-bottom: 0.5rem;
}

.home-about-links {
	margin-top: 3rem;
}

.home-about-media {
	border-radius: 0.5rem;
	overflow: hidden;
	cursor: pointer;
}

.home-about-media:hover {
	transition: ease 0.3s box-shadow !important;
	box-shadow: 0 0 0 0.1rem var(--theme-primary);
}

.home-about-video::before {
	padding-top: 56.5%;
}

.home-about-video iframe {
	opacity: 0;
	pointer-events: none;
	z-index: 0;
}

.home-about-video img {
	z-index: 1;
}

.home-about-video-play {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	font-size: 2rem;
	line-height: 1;
	display: grid;
	place-content: center;
	width: 3rem;
	height: 3rem;
	border-radius: 5rem;
	background-color: var(--theme-primary);
	color: var(--theme-primary-alt);
	z-index: 2;
}

.home-about-video .home-about-video-play,
.home-about-video img {
	opacity: 1;
	transition: ease 0.3s opacity;
}

.yt-playing .home-about-video-play,
.yt-playing img {
	opacity: 0;
	pointer-events: none;
}

.yt-playing iframe {
	opacity: 1;
	pointer-events: auto;
}

.home-about-media-footer {
	padding: 1rem;
	text-align: center;
	border: 1px solid #dadada;
	border-radius: inherit;
	border-top-left-radius: 0;
	border-top-right-radius: 0;
	border-top: 0;
}

.home-about-video-label {
	font-weight: 600;
	font-size: 1.4rem;
}

@media (max-width: 768px) {
	.home-about-row {
		flex-direction: column;
	}

	.home-about-links {
		margin-block: 1rem;
	}

	.home-about-text {
		font-size: 1.2rem;
	}
}

/* #endregion about */

/* #region curriculum */

.home-curriculum-row {
	display: flex;
	gap: 1rem 0;
}

.home-curriculum-col {
	flex: 1 1 100%;
}

.home-curriculum-col::before {
	padding-top: 150%;
}

.home-curriculum-content {
	position: absolute;
	inset: 0;
	padding: 0.5rem;
	text-align: center;
	background-color: rgba(0, 0, 0, 0.2);
	color: #fff;
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
}

.home-curriculum-content::after {
	content: "\f0a9";
	font: var(--icon-font);
	position: absolute;
	bottom: 2rem;
	right: 1rem;
	font-size: 2.5rem;
	transition: ease 0.3s color;
	content: none;
}

.home-curriculum-col:hover .home-curriculum-content::after {
	color: var(--theme-primary);
}

.home-curriculum-icon img {
	margin-inline: auto;
	margin-bottom: 2rem;
}

.home-curriculum-details {
	background-color: rgba(0, 0, 0, 0.6);
	padding: 1rem;
	/* padding-bottom: 1rem; */
	border-radius: 1rem;
}

.home-curriculum-title {
	font-weight: 700;
	font-size: 1.2rem;
	color: var(--theme-primary);
	padding-bottom: 1rem;
}

.home-curriculum-desc {
	line-height: 1.5;
	font-size: 1rem;
	/* line clamp 4 */
	display: -webkit-box;
	-webkit-line-clamp: 4;
	-webkit-box-orient: vertical;
	overflow: hidden;
	text-overflow: ellipsis;
	/* padding: 1rem; */
	height: 4lh;
	transition-property: opacity, transform, height !important;
}

.home-curriculum-col:hover .home-curriculum-desc {
	transition-duration: 0.3s !important;
	transition-delay: 0s !important;
	-webkit-line-clamp: 6;
	height: 6lh;
}

@media (max-width: 768px) {
	.home-curriculum-row {
		flex-direction: column;
	}

	.home-curriculum-col::before {
		padding-top: 100%;
	}

	.home-curriculum-desc {
		font-size: 1.2rem;
	}
}

/* #endregion curriculum */

/* #region results */

.home-results-row {
	display: flex;
	text-align: center;
	gap: 2rem 0;
}

.home-results-col {
	flex: 1 1 100%;
}

.home-results-icon img {
	width: 6.5rem;
	margin-inline: auto;
	margin-bottom: 1rem;
}

.home-results-title {
	font-size: 2.5rem;
	line-height: 1;
	color: var(--theme-secondary);
	font-weight: 600;
	margin-bottom: 0.3rem;
}

.home-results-desc {
	font-size: 1.4rem;
	font-weight: 600;
}

.home-results-actions {
	margin-top: 2rem;
	text-align: center;
}

.home-results-link {
	font-size: 1.2rem;
}

@media (max-width: 768px) {
	.home-results-row {
		flex-direction: column;
	}
}

/* #endregion results */

/* #region diff */

.home-diff-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(20rem, 1fr));
	gap: 0.5rem;
	color: #fff;
}

.home-diff-item::before {
	background-color: #000;
}

.home-diff-item img {
	opacity: 0.7;
}

.home-diff-content {
	position: absolute;
	top: auto;
	width: 100%;
	bottom: 3rem;
	padding: 1rem;
	text-align: center;
}

.home-diff-title {
	font-size: 1.4rem;
	font-weight: 500;
	transition: ease 0.3s;
	transition-property: color, transform;
}

.home-diff-item:hover .home-diff-title {
	color: var(--theme-primary);
	transform: scale(1.2);
}

.home-diff-item::after {
	content: "\f0a9";
	font: var(--icon-font);
	position: absolute;
	bottom: 0.5rem;
	right: 0.5rem;
	font-size: 2.4rem;
	transition: ease 0.3s;
	transition-property: color, font-size;
}

.home-diff-item:hover::after {
	color: var(--theme-primary);
}

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

/* #endregion diff */

/* #region insight */

.home-insight {
	background-color: var(--theme-tertiary);
	color: var(--theme-tertiary-alt);
	text-align: center;
}

.home-insight .section-title {
	color: inherit;
}

.home-insight-row {
	display: flex;
	gap: 2rem 1rem;
}

.home-insight-col {
	flex: 1 1 100%;
}

.home-insight-icon img {
	width: 8rem;
	margin-inline: auto;
}

.home-insight-title {
	font-size: 2.5rem;
	color: var(--theme-primary);
}

.home-insight-desc {
	font-size: 1.2rem;
	line-height: 1.3;
}

.home-insight-actions {
	margin-top: 2rem;
}

.home-insight-link {
	margin-top: 1rem;
	color: inherit;
}

.home-insight-link:hover {
	color: var(--theme-primary);
}

.home-insight-links-row {
	margin-top: 2rem;
	display: flex;
	justify-content: space-between;
	gap: 2rem;
}

.home-insight-links-item {
	border: 1px solid #fff;
	border-radius: 10rem;
	display: flex;
	width: 500px;
	align-items: center;
	/* transition: ease 0.3s; */
	transition-property: background-color, color, opacity, transform !important;
	max-width: 100%;
}

.home-insight-links-alt {
	background-color: #fff;
	color: #0863c0;
}

.home-insight-links-alt:hover {
	background-color: var(--theme-primary);
}

.home-insight-link-text {
	padding: 0.5rem 1rem;
	font-size: 1.5rem;
	padding-left: 2rem;
	line-height: 2;
	flex: auto;
}

.home-insight-link-text .hlt {
	color: var(--theme-secondary);
}

.home-insight-link-img {
	background-color: var(--theme-primary-light);
	border-radius: inherit;
	padding: 0.8rem;
	width: 5.5rem;
	flex-shrink: 0;
	/* height: 100%; */
	margin-right: -1.5rem;
	height: auto;
	align-self: stretch;
}

.home-insight-links-item a {
	font-weight: 500;
}

.home-insight-link-img img {
	width: 100%;
	height: 100%;
	object-fit: contain;
}

.home-admission {
	text-align: center;
	background-color: var(--theme-secondary);
	color: var(--theme-secondary-alt);
	padding-block: 2rem;
	/* border-top: 1px solid #fff; */
}

.home-admission-link {
	font-size: 2.2rem;
	font-weight: 800;
	text-transform: uppercase;
	display: block;
}

.home-admission-link:hover {
	color: var(--theme-primary);
}

.home-admission-more-link {
	margin-top: 1rem;
	color: var(--theme-primary);
}

.home-admission-more-link:hover {
	color: var(--theme-secondary-alt);
}

@media (max-width: 768px) {
	.home-insight-row {
		flex-direction: column;
	}

	.home-insight-links-row {
		display: grid;
		/* align-items: center; */
		grid-template-rows: 1fr 1fr;
		justify-content: center;
	}

	.home-insight-links-item {
		/* min-width: 0; */
		/* max-width: 100%; */
		width: 100%;
	}

	.home-insight-link-text {
		font-size: 1.3rem;
		line-height: 1.2;
		/* text-align: left; */
	}

	.home-admission-link {
		font-size: 1.6rem;
	}
}

/* #endregion insight */

/* #region spotlight */

.home-spotlight-row {
	display: flex;
	gap: 3rem 1rem;
	text-align: center;
}

.home-spotlight-col {
	flex: 1 1 100%;
}

.home-spotlight-img::before {
	padding-top: 56.5%;
}

.home-spotlight-text {
	padding: 1rem;
	font-weight: 400;
}

@media (max-width: 768px) {
	.home-spotlight-row {
		flex-direction: column;
	}
}

/* #endregion spotlight */

/* #region testimonials */

.home-testimonials {
	background-color: var(--theme-primary);
	color: var(--theme-primary-alt);
	font-weight: 400;
}

.home-testimonials-row {
	display: flex;
	gap: 1rem 2rem;
}

.home-testimonials-col {
	flex: 1 1 100%;
	width: 0;
}

.home-testimonial-swiper {
	width: 100%;
}

.home-testimonial-icon {
	width: 10rem;
	margin-inline: auto;
}

.home-testimonial-icon img {
	object-fit: cover;
	border-radius: 50%;
}

.home-testimonial-desc {
	text-align: center;
	padding: 1rem;
}

.home-testimonial-title {
	font-weight: 600;
	margin-bottom: 0.5rem;
}

.home-testimonial-pagination {
	position: relative;
	margin-top: 1rem;
	top: 0;
	bottom: 0;
	--swiper-pagination-bullet-inactive-color: transparent;
	--swiper-pagination-bullet-inactive-opacity: 1;
	--swiper-pagination-color: var(--theme-tertiary);
	--swiper-pagination-bullet-size: 0.8rem;
}

.home-testimonial-pagination .swiper-pagination-bullet {
	border: 2px solid var(--theme-tertiary);
}

.home-testimonial-links {
	margin-top: 1rem;
	text-align: center;
}

@media (max-width: 768px) {
	.home-testimonials-row {
		flex-direction: column;
	}

	.home-testimonials-col {
		width: 100%;
	}
}

/* #endregion testimonials */

/* #region gallery */

.gallery-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
	gap: 30px;
}

.gallery-grid-sm {
	grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
	gap: 20px;
}

.gallery-card {
	padding: 10px;
	box-shadow: 0 0 30px rgba(0, 0, 0, 0.2);
	border-radius: 6px;
	background-color: #fff;
	text-align: center;
	cursor: pointer;
}

.swiper-slide.gallery-card {
	/* margin-block: 2rem; */
	border: 1px solid #eaeaea;
	box-shadow: none;
}

.gallery-card-img {
	margin-bottom: 10px;
}

.gallery-card-img::before {
	padding-top: 75%;
}

.gallery-hover-label {
	position: absolute;
	top: 50%;
	left: 0;
	width: 100%;
	transform: translateY(1rem);
	text-align: center;
	font-size: 1.4rem;
	font-weight: 600;
	opacity: 0;
	pointer-events: none;
	transition: ease 0.5s;
	color: #fff;
	z-index: 2;
}

.gallery-card:hover .gallery-hover-label {
	opacity: 1;
	transform: translateY(-50%);
}

.gallery-card-img::after {
	content: "";
	position: absolute;
	inset: 0;
	background-color: #000;
	z-index: 1;
	transform: scale(0);
	opacity: 0.4;
	transition: ease 0.5s;
}

.gallery-card:hover .gallery-card-img::after {
	transform: scale(1);
}

.gallery-caption {
	font-weight: 700;
}

/* #endregion gallery */

/* #region footer */

.page-footer {
	--footer-img-height: 12rem;
	--footer-padding: 2rem;
	--footer-map-height: 19rem;
	background-color: var(--theme-secondary);
	color: var(--theme-secondary-alt);
	padding-block: var(--footer-padding);
	margin-top: max(var(--footer-img-height), var(--footer-map-height));
	position: relative;
}

.page-footer::before {
	display: block;
	content: "";
	/* top: 0; */
	/* left: 0; */
	width: 100%;
	height: var(--footer-img-height);
	margin-top: calc((var(--footer-img-height) + var(--footer-padding)) * -1);
	margin-bottom: var(--footer-padding);
	/* position: absolute; */
	/* transform: translateY(-100%); */
	background-image: var(--footer-img);
	background-size: auto 100%;
	background-position: center bottom;
	background-repeat: repeat no-repeat;
	pointer-events: none;
}

.page-footer-hover {
	position: absolute;
	bottom: 100%;
	left: 50%;
	transform: translateX(-50%);
	width: 600px;
	height: var(--footer-map-height);
	z-index: -1;
	margin-bottom: 0.5rem;
	overflow: hidden;
	max-width: 100%;
	pointer-events: none;
}

.page-footer-hover-icon {
	position: absolute;
	top: 50%;
	left: 50%;
	width: auto;
	height: 100%;
	transform: translate(-50%, -50%);
	z-index: 1;
	pointer-events: all;
	cursor: pointer;
}

.page-footer-hover-map {
	--map-offset: 10rem;
	position: absolute;
	width: 100%;
	height: calc(var(--footer-map-height) + (var(--map-offset) * 2));
	z-index: 0;
	opacity: 0;
	pointer-events: none;
	border-top-left-radius: 50rem;
	border-top-right-radius: 50rem;
	overflow: hidden;
}

.page-footer-hover:hover {
}

.page-footer-hover:hover .page-footer-hover-map {
	opacity: 1;
	/* pointer-events: all; */
}

.page-footer-hover:hover .page-footer-hover-icon {
	opacity: 0;
}

.page-footer-hover-map iframe {
	margin-top: calc(var(--map-offset) * -1);
}

.page-footer-hover-map iframe,
.page-footer-hover-map img {
	width: 100%;
	height: 100%;
	display: block;
}

.footer-row {
	display: flex;
	gap: 2rem;
}

.footer-col {
	/* flex: 1 1 100%; */
	/* max-width: 300px; */
	padding-right: 2rem;
}

.footer-col-lg {
	/* flex-grow: 2; */
	/* max-width: 600px; */
}

.footer-text {
	display: flex;
	align-items: baseline;
	gap: 0.5rem;
	line-height: 1.6;
	/* flex-wrap: wrap; */
	margin-bottom: 0.5rem;
}

.footer-text i {
	font-size: 1.3rem;
}

.footer-links a {
	white-space: nowrap;
}

.footer-social-links {
	display: flex;
	gap: 1rem;
}

.footer-social-link {
	display: grid;
	width: 2.5rem;
	height: 2.5rem;
	place-content: center;
	border: 1px solid currentColor;
	border-radius: 5rem;
	font-size: 1.2rem;
}

.footer-copy-text {
	text-align: center;
	margin-top: 2rem;
}

@media (max-width: 768px) {
	.page-footer {
		--footer-img-height: 7rem;
		--footer-padding: 4rem;
	}

	.footer-row {
		flex-direction: column;
	}

	.footer-social-links {
		justify-content: center;
	}

	.footer-col {
		padding-right: 0;
	}
}

/* #endregion footer */
