/* #region setup */

:root {
	--text-color: #000;
	--dark-color: #141414;
	--theme-primary: #ef6f01;
	--theme-primary-dark: #7107a5;
	--theme-primary-light: #efcfb3;
	--theme-primary-lighter: #f0e0d2;
	--theme-primary-bg-light: #f8f1eb;
	--theme-primary-alt: #fff;
	--theme-secondary: #191c25;
	--theme-secondary-alt: #fff;
	--container-width: 1220px;
	--container-sm-width: 1180px;
	--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%);
	--top-header-height: 60px;
	--header-height: 105px;
	--logo-width: 250px;
	--logo-offset-width: calc(var(--logo-width) + 3rem);
	--logo-height: var(--header-height);
	--font-family: "Poppins", sans-serif;
	--font-family-alt: "Poppins", sans-serif;
	--icon-font: 900 1.2em "Line Awesome Free";
	--swiper-theme-color: var(--theme-primary-dark);
	--nav-hover-color: var(--theme-primary);
	--section-gap: 100px;
}

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

html {
	box-sizing: border-box;
	font-size: 18px;
	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.7;
	font-weight: 400;
}

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

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

@media (max-width: 760px) {
	:root {
		--header-height: 80px;
		--logo-width: 220px;
		--section-gap: 60px;
	}

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

/* .light-bg::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: var(--theme-primary);
	opacity: 0.05;
	z-index: -1;
} */

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

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

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

.section-subtitle {
	font-weight: 800;
	letter-spacing: 2px;
	font-size: 0.9rem;
	font-family: var(--font-family);
	opacity: 0.3;
	line-height: 2;
	text-transform: uppercase;
}

.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: 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 2rem;
	font-size: 1rem;
	border: 2px solid var(--theme-primary);
	background-color: var(--theme-primary);
	color: var(--theme-primary-alt);
	font-weight: 500;
	border-radius: 0.3rem;
	line-height: 1.2;
	transition: ease 0.25s;
	transition-property: color, background-color, border-color;
}

.cta-btn:hover {
	background-color: var(--theme-primary-alt);
	color: var(--theme-primary);
}

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

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

.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: 600;
	color: var(--theme-primary);
	margin-bottom: 0.5em;
}

.section-title {
	font-weight: 600;
	font-size: 2.5rem;
	line-height: 1.3;
	padding-bottom: 3.5rem;
	position: relative;
	--underline-width: 70px;
	--underline-height: 3px;
	--underline-size: 0.85rem;
}

.section-title::before,
.section-title::after {
	content: "";
	position: absolute;
	bottom: 2rem;
	left: 0;
	border-radius: 50px;
}

.section-title.hide-underline {
	padding-bottom: 0;
}

.section-title.hide-underline::after,
.section-title.hide-underline::before {
	content: none;
}

.section-title::before {
	width: var(--underline-width);
	height: var(--underline-height);
	background-color: var(--theme-primary);
	/* opacity: 0.4; */
	transform: translateY(calc(var(--underline-size) * -0.5));
}

.section-title::after {
	width: var(--underline-size);
	height: var(--underline-size);
	background-color: var(--theme-primary);
	/* animation: section_title_underline 3s linear alternate infinite; */
	transform: translate(-50%, calc(var(--underline-height) * -0.5));
	left: var(--underline-width);
}

.center-header .section-title {
	text-align: center;
	--underline-width: 100px;
}

.center-header .section-title::before,
.center-header .section-title::after {
	left: calc(50% - (var(--underline-width) / 2));
}

@keyframes section_title_underline {
	0% {
		transform: translateX(0) translateY(25%);
	}
	100% {
		transform: translateX(calc(var(--underline-width) - var(--underline-size))) translateY(25%);
	}
}

[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) {
	.web-only {
		display: none;
	}

	.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) {
	.resp-only {
		display: none;
	}

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

.top-header {
	background-color: var(--theme-primary-dark);
	color: var(--theme-primary-alt);
	overflow: hidden;
}

.top-header-row {
	display: flex;
	align-items: center;
	/* padding: var(--column-gutter) 0; */
	position: relative;
	justify-content: space-between;
	/* overflow: hidden; */
	height: var(--top-header-height);
}

.header-contact-links {
	position: relative;
	color: var(--theme-primary);
	font-size: 0.9em;
	height: 100%;
}

.header-social-links {
	/* position: relative; */
	line-height: 1;
}

.header-contact-links::before {
	/* content: ""; */
	position: absolute;
	top: -20px;
	left: -25vw;
	width: 1000px;
	bottom: -20px;
	z-index: 0;
	background-color: var(--theme-primary-dark);
	transform: skewX(-40deg);
}

.header-contact-item {
	position: relative;
	z-index: 1;
	color: var(--theme-primary-alt);
	/* font-size: 1.1rem; */
	font-weight: 400;
}

.header-contact-links,
.header-social-links {
	display: flex;
	align-items: center;
	gap: 0.5rem;
}

.header-social-item {
	position: relative;
	z-index: 1;
	color: var(--theme-primary-alt);
	background-color: var(--theme-primary-dark);
	border: 1px solid var(--theme-primary);
	font-size: 1.1rem;
	width: 1em;
	padding: 0.5em;
	box-sizing: content-box;
	border-radius: 0.5rem;
	text-align: center;
}

.header-social-item:hover {
	background-color: var(--theme-primary-bg-light);
	color: var(--theme-primary-dark);
}

.main-header {
	position: sticky;
	top: 0;
	left: 0;
	width: 100%;
	height: var(--header-height);
	background-color: #fff;
	/* box-shadow: 1px 1px 1px #f0f0f0; */
	z-index: 45;
	color: var(--dark-color);
	/* margin-bottom: calc(var(--header-height) * -1); */
	background-color: var(--theme-secondary-alt);
}

.scroll-down .main-header {
	box-shadow: 0px 0px 8px rgb(0 0 0 / 20%);
}

.main-header-row {
	display: flex;
	height: var(--header-height);
	padding-top: 10px;
	padding-bottom: 10px;
	align-items: center;
	/* color: var(--theme-secondary-alt); */
	align-items: center;
	justify-content: flex-end;
	position: relative;
}

.header-logo {
	/* height: calc(var(--header-height) + var(--small-header-height)); */
	width: auto;
	max-width: var(--logo-width);
	/* position: absolute; */
	left: 0;
	bottom: 0;
	transition: ease 0.05s height;
	margin-right: auto;
}

.scroll-down .header-logo {
	height: var(--header-height);
}

.header-logo img {
	height: 100%;
	width: 100%;
	object-fit: contain;
}

.page-header-brand img {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: contain;
	object-position: center;
	padding: 0.5rem 0;
}

.header-nav > ul {
	display: flex;
	gap: 0.9rem;
	color: var(--dark-color);
	font-weight: 500;
	font-size: 1rem;
}

.header-nav .nav-active,
.header-nav a:hover {
	color: var(--theme-primary);
}

.page-header-links {
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.resp-menu-btn {
	font-size: 2rem;
	line-height: 1;
	padding: 0.3rem;
}

.menu-active {
	overflow: hidden;
}

@media (min-width: 760px) {
	.header-resp-action,
	.header-resp-nav {
		display: none;
	}
}

@media (max-width: 760px) {
	.top-header {
		display: none;
	}

	.header-nav {
		position: fixed;
		right: 0;
		bottom: 0;
		top: calc(var(--header-height) + 0px);
		width: 100%;
		background-color: #fff;
		padding: 2rem;
		z-index: 200;
		transform: translateX(100%);
		transition: ease 0.35s transform;
		font-weight: 500;
		overflow: auto;
	}

	.header-logo {
		height: var(--header-height);
	}

	.header-nav > ul {
		flex-direction: column;
		margin-bottom: 2rem;
		color: var(--dark-color);
	}

	.menu-active .header-nav {
		transform: translateX(0);
	}

	.header-menu-open-icon {
		display: block;
	}

	.header-menu-close-icon {
		display: none;
	}

	.menu-active .header-menu-open-icon {
		display: none;
	}

	.menu-active .header-menu-close-icon {
		display: block;
	}

	.header-nav-section {
		margin-top: 1rem;
	}

	.header-nav-title {
		font-size: 1.3rem;
		margin-bottom: 0.5rem;
	}

	.header-nav-item {
		margin-bottom: 0.3rem;
		display: flex;
		gap: 0.5rem;
		align-items: center;
	}

	.header-nav-item-icon {
		font-size: 1.4rem;
		color: var(--theme-primary);
		line-height: 1;
	}

	.header-nav-social-links {
		display: flex;
		gap: 1rem;
		font-size: 1.4rem;
		margin-top: 1.5rem;
	}
}

/* #endregion header */

/* #region banners */

.home-banners {
	background-image: var(--banner-bg);
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
	background-color: var(--theme-primary-bg-light);
	padding-block: calc(var(--section-gap) * 1.5);
	color: var(--theme-primary-alt);
	height: auto;
}

.banner-row {
	display: flex;
	gap: 1rem;
	align-items: center;
	position: relative;
	z-index: 1;
}

.banner-text-col {
	width: 65%;
	display: grid;
	gap: 1rem;
	justify-items: start;
}

.banner-small-title {
	font-size: 1rem;
	color: var(--theme-primary);
	font-weight: 400;
}

.banner-main-title {
	font-size: 2rem;
	line-height: 1.2;
}

.banner-main-title span {
	font-weight: 600;
	/* background-color: var(--theme-primary-alt); */
	/* padding: 0rem 0.5rem; */
	/* border-radius: 0.5rem; */
	/* border: 1px solid #fff; */
	/* text-shadow: 0 0 2px #fff; */
	font-size: 1.2em;
	display: inline-block;
	margin-bottom: 1rem;
}

.banner-link {
	/* font-size: 1.15rem; */
	padding: 1rem 2rem;
	background-color: var(--theme-primary);
	color: var(--theme-primary-alt);
	border-radius: 0.3rem;
	line-height: 1.4;
	margin-top: 1rem;
}

.banner-link:hover {
	background-color: var(--theme-primary-dark);
}

.banner-img-col {
	width: 55%;
}

.banner-img-col img {
	width: 100%;
	animation: banner 2s ease infinite alternate;
}

@keyframes banner {
	0% {
		transform: translateY(0.5rem);
	}
	100% {
		transform: translateY(-0.5rem);
	}
}

@media (min-width: 760px) {
	.banner-overlay {
		position: relative;
	}

	.banner-overlay::before {
		content: "";
		position: absolute;
		inset: 0;
		background-color: #000;
		opacity: 0.3;
		pointer-events: none;
		z-index: 0;
	}
}

@media (max-width: 768px) {
	.home-banners {
		background: none;
		padding: 0;
		color: var(--dark-color);
	}

	.home-banners::before {
		content: "";
		padding-top: 60%;
		display: block;
		background-size: cover;
		background-image: var(--banner-bg);
	}

	.banner-row {
		flex-wrap: wrap;
		gap: 3rem;
	}

	.banner-text-col,
	.banner-img-col {
		width: 100%;
	}

	.banner-text-col {
		padding: 1rem;
	}

	.banner-main-title {
		font-size: 1.3rem;
		line-height: 1.4;
	}
}

/* #endregion banners */

/* #region about */

.home-about-row {
	display: flex;
	gap: 3.5rem;
	align-items: center;
}

.home-about-img-col {
	width: 50%;
	border: 0.5rem solid #fff;
	border-radius: 1.5rem;
	overflow: hidden;
	box-shadow: 0 0.5rem 1.5rem rgb(0 0 0 / 10%);
	position: relative;
}

.home-about-img-col::after {
	content: "\f57c";
	font: var(--icon-font);
	font-size: 4rem;
	position: absolute;
	bottom: -0.1rem;
	left: -0.1rem;
	padding: 1rem;
	border-top-right-radius: 2rem;
	color: var(--theme-primary-dark);
	background-color: var(--theme-primary-alt);
	display: none;
}

.home-about-text-col {
	width: 50%;
}

.home-about-text {
	display: grid;
	gap: 1.5rem;
	justify-items: start;
	line-height: 1.4;
}

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

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

	.home-about-img-col,
	.home-about-text-col {
		width: 100%;
	}

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

/* #endregion about */

/* #region categories */

.home-categories-grid {
	margin-top: 2rem;
	display: grid;
	gap: 1.5rem;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	/* grid-auto-rows: 1fr; */
}

.home-categories-grid-item {
	/* padding: 1.3rem; */
	/* text-align: center; */
	border: 1px solid var(--theme-primary-light);
	border-radius: 1.5rem;
	display: grid;
	/* place-content: center; */
	/* justify-items: center; */
	/* gap: 1rem; */
	align-content: start;
	transition: ease 0.25s;
	overflow: hidden;
	background-color: #fff;
}

.home-categories-item-icon {
	font-size: 2.2rem;
	line-height: 1;
	padding: 1rem;
	background-color: var(--theme-primary);
	color: var(--theme-primary-alt);
	border-radius: 1rem;
	transition: ease 0.25s;
}

.home-categories-grid-item-body {
	padding: 1.2rem;
}

.home-categories-item-label {
	font-size: 1.1rem;
	color: var(--theme-primary-dark);
	font-weight: 600;
	margin-bottom: 1rem;
	text-align: center;
}

.home-categories-grid-item:hover {
	/* background-color: var(--theme-primary-lighter); */
	/* border-color: var(--theme-primary); */
}

.home-categories-grid-item:hover .home-categories-item-icon {
	/* background-color: var(--theme-primary-dark); */
}

.home-categories-item-list {
	/* list-style: disc; */
	font-size: 0.9rem;
	line-height: 1.3;
}

.home-categories-item-list li {
	padding-left: 1.8em;
	margin-bottom: 0.6rem;
	position: relative;
}

.home-categories-item-list li::before {
	content: "\f058";
	font: var(--icon-font);
	position: absolute;
	left: 0;
}

@media (max-width: 768px) {
	.home-categories-item-label {
		font-size: 1.2rem;
	}

	.home-categories-item-list {
		font-size: 1rem;
	}
}

/* #endregion categories */

/* #region stats */

.home-stats {
	background-image: var(--bg-img);
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
}

.home-stats-row {
	display: flex;
	gap: 2rem;
	justify-content: space-between;
}

.home-stats-item {
	flex: 1 1 auto;
	display: grid;
	align-items: center;
	grid-template-columns: 4rem auto;
	gap: 0 1rem;
	grid-template-areas:
		"icon value"
		"icon label";
}

.home-stats-icon {
	font-size: 3.5rem;
	line-height: 1;
	grid-area: icon;
	text-align: center;
}

.home-stats-item-value {
	font-size: 3rem;
	font-weight: 600;
	grid-area: value;
}

.home-stats-item-label {
	font-size: 1.15rem;
	font-weight: 400;
	text-transform: uppercase;
	grid-area: label;
}

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

/* #endregion stats */

/* #region objectives */

.home-objectives-row {
	display: flex;
	gap: 4rem;
	align-items: center;
}

.home-objectives-text-col {
	width: 50%;
}

.home-objectives-text {
	/* font-size: 1.1rem; */
	line-height: 1.6;
	display: grid;
	gap: 1.5rem;
}

.home-objectives-text-para {
	font-size: 1.1rem;
	font-weight: 500;
}

.home-objectives-list {
	/* margin-bottom: 1.5rem; */
}

.home-objectives-list li {
	display: flex;
	/* align-items: baseline; */
	margin-bottom: 0.5rem;
	gap: 0.5rem;
}

.home-objectives-list li::before {
	content: "\f058";
	font: var(--icon-font);
	color: var(--theme-primary);
	font-size: 1.6em;
}

.home-objectives-img-col {
	width: 50%;
	padding-right: 1.5rem;
	padding-block: 1.5rem;
	position: relative;
}

.home-objectives-img-col img {
	width: 100%;
	border-radius: 1rem;
	position: relative;
	z-index: 1;
	height: 100%;
	object-fit: cover;
}

.home-objectives-img-col::before {
	content: "";
	position: absolute;
	right: 0;
	top: 0;
	bottom: 0;
	width: 50%;
	background-color: var(--theme-primary);
	border-radius: 1rem;
	z-index: 0;
}

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

	.home-objectives-text-col,
	.home-objectives-img-col {
		width: 100%;
	}
}

/* #endregion objectives */

/* #region testimonials */

.home-testimonials-swiper .swiper {
	padding: 1.5rem;
	margin-inline: -1.5rem;
}

.home-testimonials-swiper .swiper-pagination-bullet {
	transition: ease 1s;
	transition-property: background, opacity, outline;
	outline: 1px solid transparent;
	outline-offset: 2px;
}

.home-testimonials-swiper .swiper-pagination-bullet-active {
	outline-color: var(--swiper-theme-color);
}

.testimonial-slide {
	margin-top: 2rem;
	transition: ease 1s transform;
}

.testimonial-slide.swiper-slide-active {
	transform: translateY(-2rem);
}

.testimonial-slide-quote {
	display: block;
	padding: 1.5rem;
	text-align: center;
	border: 1px solid #dadada;
	box-shadow: 0 0 1rem rgba(0, 0, 0, 0.1);
	border-radius: 1rem;
	background-color: var(--theme-primary-alt);
	color: #888;
	transition: ease 0.5s;
	transition-property: background-color, color;
}

.testimonial-slide.swiper-slide-active .testimonial-slide-quote {
	background-color: var(--theme-primary-dark);
	color: var(--theme-primary-alt);
}

.testimonial-slide-author {
	padding: 1.5rem;
	text-align: center;
}

.testimonial-slide-author-name {
	font-size: 1.1rem;
	font-weight: 400;
}

.testimonial-slide-author-designation {
	font-size: 0.9rem;
	color: #555;
	font-weight: 400;
}

@media (max-width: 768px) {
	.home-testimonials-swiper {
		padding-inline: 1rem;
	}
}

/* #endregion testimonials */

/* #region partners */

.partner-slide {
	height: auto;
}

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

.partner-slide img {
	object-fit: contain;
}

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

/* #endregion partners */

/* #region cta */

.home-cta-banner-row {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 1.5rem;
}

.home-cta-banner-text {
	font-size: 1.8rem;
}

.home-cta-banner-btn {
	background-color: var(--theme-primary-alt);
	color: var(--theme-primary);
	/* font-size: 1.2rem; */
}

.home-cta-banner-btn:hover {
	background-color: var(--theme-primary-dark);
	color: var(--theme-primary-alt);
}

@media (max-width: 768px) {
	.home-cta-banner-row {
		flex-direction: column;
		text-align: center;
	}
}

/* #endregion cta */

/* #region news */

.news-swiper .swiper {
	padding: 1.5rem;
	margin-inline: -1.5rem;
}

.news-slide {
	box-shadow: 0 0 1rem rgba(0, 0, 0, 0.1);
	border-radius: 1rem;
	overflow: hidden;
}

.news-slide-img::before {
	padding-top: 70%;
}

.news-slide-text {
	padding: 1.5rem;
}

.news-slide-title {
	font-size: 1.2rem;
	font-weight: 500;
	line-height: 1.6;
	margin-bottom: 0.5rem;
}

.news-slide-preview {
	/* font-size: 1.1rem; */
	font-weight: 400;
	color: #555;
	margin-bottom: 1rem;
}

.news-slide-link {
	color: var(--theme-primary);
	/* font-size: 1.15rem; */
}

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

/* #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-primary);
}

.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: -3rem;
	background-color: #fff;
	border-radius: 1rem;
	box-shadow: 0rem 0rem 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;
	}

	.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-top: 1rem; */
	background-color: var(--theme-primary-dark);
	color: var(--theme-primary-alt);
}

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

.footer-col {
	padding-right: 2rem;
	flex: auto;
}

.footer-col-icon {
	font-size: 3rem;
	line-height: 1.3;
	color: var(--theme-primary);
}

.footer-col-title {
	font-size: 1.1rem;
	font-weight: 600;
	margin-bottom: 0.3rem;
}

.footer-col-item {
	font-size: 0.9rem;
	font-weight: 400;
}

.copy-footer {
	/* margin-top: 1rem; */
	/* border-top: 1px solid rgb(0 0 0 / 30%); */
	padding-top: 0.5rem;
	padding-bottom: 0.5rem;
	display: flex;
	align-items: center;
	justify-content: space-between;
	font-weight: 400;
}

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

.footer-social-links a {
	display: grid;
	width: 2.1rem;
	height: 2.1rem;
	place-content: center;
	font-size: 1.3rem;
	border: 1px solid var(--theme-primary);
	border-radius: 50rem;
}

.footer-social-links a:hover {
	background-color: var(--theme-primary);
	color: var(--theme-primary-alt);
}

@media (max-width: 768px) {
	.copy-footer {
		flex-direction: column-reverse;
		gap: 1rem;
		padding-block: 1rem;
	}
}

/* #endregion footer */
