/* #region setup */

:root {
	--text-color: #000;
	--dark-color: #141414;
	--theme-primary: #ffe71a;
	--theme-primary-dark: #d4aa00;
	--theme-primary-light: #fff5ce;
	--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: #4372c6;
	--theme-secondary-dark: #2f4b8a;
	--theme-secondary-light: #d2e1ff;
	--theme-secondary-bg-light: #e7f1ff;
	--theme-secondary-bg-lighter: #f6faff;
	--theme-secondary-fade: rgba(67, 115, 198, 0.3);
	--theme-secondary-alt: #fff;
	--container-width: 1200px;
	--container-sm-width: 980px;
	--container-lg-width: 1440px;
	--column-gutter: 15px;

	/* 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: 7rem;
	--logo-width: 6rem;
	--section-gap: 4rem;
	--swiper-theme-color: var(--theme-primary);
	--nav-hover-color: var(--theme-primary);

	--social-facebook: #1877f2;
	--social-facebook-alt: #000;
	--social-instagram: #e1306c;
	--social-instagram-alt: #000;
	--social-twitter: #1da1f2;
	--social-twitter-alt: #000;
	--social-youtube: #ff0000;
	--social-youtube-alt: #000;
	--social-linkedin: #0e76a8;
	--social-linkedin-alt: #fff;
}

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

html {
	box-sizing: border-box;
	font-size: 14px;
	scroll-padding-top: var(--header-height);
	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: 500; */
	/* padding-top: var(--header-height); */
	/* background-color: var(--theme-primary-bg-lighter); */
}

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: 7rem;
		--logo-width: 5rem;
		--section-gap: 3rem;
	}

	html {
		font-size: 14px;
	}
}

/* #endregion setup */

/* #region layout */

.menu-active {
	overflow: hidden;
}

.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 {
	position: relative;
	background-color: var(--theme-primary-bg-light);
}

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

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

.section-title {
	font-weight: 300;
	font-size: 2.2rem;
	line-height: 1.3;
}

.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: calc(2rem + var(--header-height));
	padding-bottom: 2rem;
	background-color: var(--theme-secondary);
	color: var(--theme-secondary-alt);
	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: 0.7rem 1.5rem;
	font-size: 1rem;
	line-height: 1.4;
	background-color: var(--theme-primary);
	color: var(--theme-primary-alt);
	border-radius: 5rem;
}

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

.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: 1rem;
	/* text-align: center; */
	position: relative;
}

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

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

.section-title {
	font-weight: 700;
	font-size: 2.6rem;
	line-height: 1.2;
	/* padding-bottom: 3.5rem; */
	position: relative;
}

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

.section-desc {
	margin-top: 1rem;
	line-height: 1.5;
}

[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);
}

.social-facebook {
	background-color: var(--social-facebook);
	color: #fff;
}

.social-instagram {
	background-color: var(--social-instagram);
	color: #fff;
}

.social-twitter {
	background-color: var(--social-twitter);
	color: #fff;
}

.social-youtube {
	background-color: var(--social-youtube);
	color: #fff;
}

.social-linkedin {
	background-color: var(--social-linkedin);
	color: #fff;
}

@media (max-width: 760px) {
	.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;
	}
}

@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 */

.main-header {
	position: sticky;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 50;
	background-color: #333;
	color: #fff;
	transition: ease 0.3s;
	transition-property: color, background-color, box-shadow;
}

.scroll-down .main-header {
	background-color: #333;
	/* color: #000; */
	box-shadow: 0 0 0.5rem rgba(0, 0, 0, 0.2);
}

.main-header-row {
	display: flex;
	align-items: center;
	padding-block: 0.5rem;
	height: var(--header-height);
	gap: 1rem;
	justify-content: space-between;
}

.header-brand {
	width: var(--logo-width);
	flex-shrink: 0;
}

.header-brand-center {
	flex: auto;
	text-transform: uppercase;
}

.header-brand-title {
	font-size: 1.3rem;
	padding-block: 0.5rem;
	color: var(--theme-primary);
	text-align: center;
}

.header-nav {
	border-top: 1px solid #999;
	display: flex;
	justify-content: space-between;
	gap: 2rem;
}

.header-nav-links {
	display: flex;
	gap: 1rem;
	/* height: 100%; */
	align-items: center;
	justify-content: center;
}

.header-nav-links > li {
}

.header-nav-links > li > a {
	display: inline-block;
	vertical-align: middle;
	padding-block: 0.5rem;
}

.header-nav-links .nav-active {
	color: var(--theme-primary);
}

.social-links {
	display: flex;
	gap: 1rem;
	padding-block: 0.5rem;
}

.social-links i {
	display: grid;
	width: 2rem;
	height: 2rem;
	font-size: 1.2rem;
	place-content: center;
	border: 1px solid #dadada;
	border-radius: 5rem;
	line-height: 1.5;
}

.header-menu-toggle {
	border-top: 1px solid #999;
	padding-block: 0.5rem;
	display: flex;
	justify-content: center;
}

.header-nav-toggle {
	display: grid;
	width: 2.4rem;
	height: 2.4rem;
	font-size: 1.6rem;
	line-height: 1;
	place-content: center;
	border: 1px solid #999;
}

html:not(.menu-active) .menu-open-icon,
.menu-active .menu-closed-icon {
	display: none;
}

.nav-dropdown {
	position: relative;
}

.nav-dropdown > a::after {
	content: "\f107";
	font: var(--icon-font);
	font-size: 1em;
	margin-left: 0.5rem;
}

.nav-dropdown-list {
	position: absolute;
	left: 0;
	width: 15rem;
	background-color: #fff;
	color: var(--text-color);
	/* text-align: left; */
	padding-block: 0.5rem;
	line-height: 1.5;
	box-shadow: 0 0 0.5rem rgba(0, 0, 0, 0.2);
	transform: translateY(0.5rem);
	opacity: 0;
	pointer-events: none;
	transition: ease 0.3s;
	transition-property: opacity, transform;
	z-index: 10;
}

.nav-dropdown-list > li:hover {
	background-color: var(--theme-primary-light);
}

.nav-dropdown:hover .nav-dropdown-list {
	opacity: 1;
	transform: translateY(0);
	pointer-events: auto;
}

.nav-dropdown-list a {
	display: block;
	padding: 0.25rem 1rem;
	font-weight: 500;
}

@media (min-width: 768px) {
	.header-menu-toggle,
	.header-resp-content {
		display: none;
	}
}

@media (max-width: 768px) {
	.header-brand-title {
		font-size: 1rem;
	}

	/* html:not(.menu-active) .header-nav {
		display: none;
	} */

	.menu-active .main-header,
	.header-nav {
		background-color: #333;
	}

	.header-nav {
		position: absolute;
		top: 100%;
		left: 0;
		width: 100%;
		transform: translateY(-100%);
		height: calc(100vh - var(--header-height));
		opacity: 0;
		pointer-events: none;
		transition: ease 0.5s;
		transition-property: transform, opacity;
		flex-direction: column;
		align-items: center;
		padding-inline: var(--column-gutter);
		padding-block: 2rem;
	}

	.menu-active .header-nav {
		transform: translateY(0);
		opacity: 1;
		pointer-events: all;
	}

	.header-nav-links {
		flex-direction: column;
	}

	.nav-dropdown-list {
		left: 50%;
		translate: -50% 0;
		text-align: center;
		width: 20rem;
		max-width: 95vw;
	}
}

/* #endregion header */

/* #region banners */

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

.home-banner-bg {
	position: absolute;
	left: 0;
	width: 100%;
	height: 150vh;
	z-index: 0;
	background-image: var(--bg-img);
	background-size: contain;
	background-position: center;
	background-repeat: no-repeat;
}

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

/* #endregion banners */

/* #region banner-cards */

.home-banner-card-row {
	display: flex;
	margin-top: -5rem;
	position: relative;
	z-index: 1;
	justify-content: center;
}

.home-banner-card {
	flex: 1 1 100%;
	padding: 3.5rem 3rem;
	padding: 1rem;
	display: flex;
	align-items: center;
	/* max-width: 30rem; */
	position: relative;
	box-shadow: 0 0 0.5rem rgb(0 0 0 / 25%);
}

.home-banner-card-content {
	position: relative;
	z-index: 1;
	width: 60%;
	padding: 2rem;
}

.home-banner-card:nth-child(odd) {
	background-color: #fff;
	/* color: #fff; */
}

.home-banner-card:nth-child(even) {
	background-color: var(--theme-primary);
	color: #000;
}

.home-banner-card-title {
	font-weight: 600;
	font-size: 1.5rem;
	margin-bottom: 1rem;
}

.home-banner-card-text {
	margin-bottom: 1rem;
	line-height: 1.3;
	font-style: italic;
}

.home-banner-card-footer {
	font-weight: 500;
	margin-bottom: 1rem;
}

.home-banner-card:nth-child(even) .cta-btn {
	background-color: #444;
	color: #fff;
}

.home-banner-card:nth-child(even) .cta-btn:hover {
	background-color: #000;
}

.home-banner-card-img {
	/* position: absolute; */
	/* z-index: 0; */
	right: 1rem;
	top: 1rem;
	/* height: calc(100% - 2rem); */
	height: 100%;
	width: 40%;
	object-fit: cover;
}

@media (max-width: 768px) {
	.home-banner-card-row {
		flex-wrap: wrap;
	}

	.home-banner-card {
		flex-direction: column-reverse;
		align-items: stretch;
	}

	.home-banner-card-content,
	.home-banner-card-img {
		width: 100%;
	}

	.home-banner-card-content {
		padding: 0.5rem;
		margin-top: 1rem;
	}
}

/* #endregion banner-cards */

/* #region about */

.home-about-row {
	display: flex;
	/* align-items: center; */
	/* gap: 3rem; */
	box-shadow: 0 0 0.5rem rgb(0 0 0 / 25%);
	position: relative;
	z-index: 1;
}

.home-about-img {
	flex: 1 1 35%;
}

.home-about-content {
	flex: 1 1 65%;
	padding: 3rem;
	background-color: #fff;
}

.home-about-img::before {
	padding-top: 140%;
}

.home-about-content .section-title {
	text-transform: uppercase;
}

.home-about-content .section-title-sm {
	color: var(--theme-secondary);
}

.home-about-link {
	margin-top: 1.5rem;
}

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

	.home-about-img,
	.home-about-content {
		flex: 1 1 100%;
	}

	.home-about-content {
		padding: 1.5rem;
	}
}

/* #endregion about */

/* #region events */

.home-events {
	background-color: #111;
	color: #fff;
	position: relative;
}

.home-events-row {
	display: flex;
	gap: 1.5rem;
}

.home-events-container,
.home-events-share {
	background-color: #333;
}

.home-events-container {
	flex: 1 1 65%;
	/* max-width: 710px; */
	width: 0;
}

.home-events-share {
	flex: 1 1 35%;
}

.home-events .section-header {
	padding: 1rem;
	margin-bottom: 0;
	border-bottom: 0.3rem solid currentColor;
}

.home-events-container .section-header {
	border-color: var(--theme-primary);
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 2rem;
}

.home-events-container .section-header .section-title-sm {
	display: flex;
	align-items: center;
	gap: 0.3rem;
}

.home-events-container .section-header .section-title-sm i {
	font-size: 2.4rem;
}

.home-events-container .section-header .section-title-sm span {
	font-size: 0.8rem;
	text-decoration: underline;
}

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

.home-events-slide {
	padding: 1rem;
	display: flex;
	gap: 1rem;
}

.home-event-img {
	flex: 1 1 35%;
}

.home-event-img::before {
	padding-top: 125%;
}

.home-event-details {
	flex: 1 1 65%;
	/* padding: 1rem; */
	padding-bottom: 1.5rem;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
}

.home-event-title {
	font-size: 1.3rem;
	font-weight: 500;
	margin-bottom: 1rem;
}

.home-event-meta {
	/* font-size: 0.9rem; */
	line-height: 1.5;
	border-collapse: collapse;
	/* width: 100%; */
}

.home-event-meta td {
	padding: 0 0.3rem;
}

.home-event-meta i {
	font-size: 1.3rem;
}

.home-event-date {
	color: var(--theme-primary);
}

.home-event-link {
	text-decoration: underline;
}

.home-event-description {
	margin-block: 1rem;
	line-height: 1.5;
}

.home-events-link {
	margin-top: auto;
}

.home-events-share .section-header {
	border-color: var(--theme-secondary);
}

.home-events-share-content {
	padding: 1rem;
}

.home-events-share .section-title-sm {
	text-transform: uppercase;
	font-weight: 300;
	margin-bottom: 1rem;
}

.home-events-share .section-desc {
	font-size: 0.9rem;
}

.home-events-share-links {
	margin-top: 1rem;
	gap: 0;
}

.home-events-share-links a {
	display: block;
}

.home-events-share-links i {
	width: 3.75rem;
	height: 3.75rem;
	border-radius: 0;
	border: 0;
	font-size: 1.8rem;
}

@media (max-width: 768px) {
	.home-events-row {
		flex-wrap: wrap;
	}

	.home-events-slide {
		flex-wrap: wrap;
	}
}

/* #endregion events */

/* #region news */

.home-news {
	background-color: #111;
	color: #fff;
	position: relative;
}

.home-news-row {
	display: flex;
	gap: 1.5rem;
}

.home-news-container,
.home-news-gallery {
	background-color: #333;
}

.home-news-container {
	flex: 1 1 65%;
	width: 0;
}

.home-news-gallery {
	flex: 1 1 35%;
	width: 0;
	display: flex;
	flex-direction: column;
}

.home-news .section-header {
	padding: 1rem;
	margin-bottom: 0;
	border-bottom: 0.3rem solid currentColor;
}

.home-news-container .section-header {
	border-color: #ff691a;
}

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

.home-news-slide {
	padding: 1rem;
	display: flex;
	gap: 1rem;
}

.home-news-img {
	flex: 1 1 35%;
}

.home-news-img::before {
	padding-top: 125%;
}

.home-news-details {
	flex: 1 1 65%;
	/* padding: 1rem; */
	padding-bottom: 1.5rem;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
}

.home-news-title {
	font-size: 1.3rem;
	font-weight: 500;
	margin-bottom: 0.5rem;
}

.home-news-meta {
	font-size: 0.9rem;
	line-height: 1.5;
}

.home-news-meta i {
	font-size: 1.3rem;
}

.home-news-date {
	color: var(--theme-primary);
}

.home-news-description {
	margin-block: 1rem;
	line-height: 1.5;
}

.home-news-link {
	margin-top: auto;
}

.home-news-gallery .section-header {
	border-color: #2e9d3d;
}

.home-gallery-swiper,
.home-gallery-img,
.home-gallery-img img {
	height: 100%;
}

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

.home-gallery-img::before {
	padding-top: 85%;
}

@media (max-width: 768px) {
	.home-news-row {
		flex-wrap: wrap;
	}

	.home-news-container,
	.home-news-gallery {
		flex: 1 1 100%;
		width: 0;
	}

	.home-news-gallery {
		margin-top: 1.5rem;
	}

	.home-news-slide {
		flex-wrap: wrap;
	}

	.home-news-img {
		flex: 1 1 100%;
	}

	.home-news-details {
		flex: 1 1 100%;
	}

	.home-news-img::before {
		/* padding-top: 100%; */
	}
}

/* #endregion news */

/* #region contact */

.home-contact-row {
	display: flex;
	align-items: flex-start;
	gap: 3rem;
}

.home-contact-detials-col {
	width: 50%;
}

.home-contact-links {
	margin-top: 1rem;
}

.home-contact-links li {
	display: flex;
	gap: 0.5rem;
	line-height: 1.4;
	margin-bottom: 0.7rem;
}

.home-contact-links i {
	font-size: 1.3rem;
}

.home-contact-links a {
	color: var(--theme-secondary);
}

.home-contact-links a:hover {
	text-decoration: underline;
}

.home-contact-map {
	margin-top: 1.5rem;
	border-radius: 0.5rem;
	overflow: hidden;
	border: 1px solid #dadada;
	/* box-shadow: 0.2rem 0.3rem 1rem rgb(0 0 0 / 10%); */
}

.home-contact-map::before {
	padding-top: 56.5%;
}

.home-contact-form-col {
	flex: auto;
}

.contact-form-container {
	padding: 2.5rem;
	margin-top: 5rem;
	background-color: #fff;
	border-radius: 1rem;
	box-shadow: 0.2rem 0.3rem 1rem rgb(0 0 0 / 10%);
}

.home-contact-form-field {
	margin-bottom: 1.5rem;
	position: relative;
}

.home-contact-form-input {
	padding-block: 1rem 0.3rem;
	border-bottom: 1px solid #eaeaea;
	font-size: 1rem;
	transition: ease 0.25s;
	transition-property: color, border-color;
}

.home-contact-form-input::placeholder {
	color: transparent;
	opacity: 0;
}

.home-contact-form-label {
	position: absolute;
	top: 0.5rem;
	left: 0;
	font-size: 0.9rem;
	/* pointer-events: none; */
	transition: ease 0.25s;
	transform-origin: left;
	opacity: 0.8;
	font-weight: 500;
}

.home-contact-form-input:focus,
.home-contact-form-input[required]:valid,
.home-contact-form-input:not([required]):not(:placeholder-shown) {
	border-color: var(--theme-primary);
}

.home-contact-form-input:invalid:not(:placeholder-shown):not(:focus) {
	border-color: red;
}

.home-contact-form-input:focus ~ .home-contact-form-label,
.home-contact-form-input:not(:placeholder-shown) ~ .home-contact-form-label {
	transform: translateY(-1rem) scale(0.8);
	opacity: 1;
}

@media (max-width: 768px) {
	.home-contact-row {
		flex-direction: column;
		gap: 2rem;
	}

	.home-contact-detials-col {
		width: 100%;
	}

	.home-contact-form-col {
		width: 100%;
	}

	.contact-form-container {
		margin: 0;
		padding: 1.5rem;
	}

	.home-contact-form-field {
	}

	.home-contact-form-input {
	}

	.home-contact-form-input::placeholder {
	}

	.home-contact-form-label {
	}

	.home-contact-form-input:focus,
	.home-contact-form-input[required]:valid,
	.home-contact-form-input:not([required]):not(:placeholder-shown) {
	}

	.home-contact-form-input:invalid:not(:placeholder-shown):not(:focus) {
	}

	.home-contact-form-input:focus + .home-contact-form-label,
	.home-contact-form-input:not(:placeholder-shown) + .home-contact-form-label {
	}
}

/* #endregion contact */

/* #region footer */

.page-footer {
	padding-block: 1rem;
	text-align: center;
	border-top: 1px solid #dadada;
	color: #555;
}

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

/* #endregion footer */
