/* #region setup */

:root {
	--text-color: #000;
	--dark-color: #5f6063;
	--theme-primary: #9a7b3c;
	--theme-primary-dark: #8d5e00;
	--theme-primary-light: #ffcb62;
	--theme-primary-bg-light: #fff2d9;
	--theme-primary-bg-lighter: #fffaf1;
	--theme-primary-fade: rgba(154, 123, 60, 0.3);
	--theme-primary-alt: #fff;
	--theme-secondary: #000;
	--theme-secondary-alt: #fff;
	--container-width: 1155px;
	--container-sm-width: 880px;
	--container-lg-width: 1440px;
	--column-gutter: 10px;

	/* https://angel-rs.github.io/css-color-filter-generator/ */
	--primary-filter: brightness(0) saturate(100%) invert(50%) sepia(80%) saturate(290%) hue-rotate(2deg) brightness(83%) contrast(93%);
	/* --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: 5.5rem; /*75px;*/
	--header-height-min: 60px;
	--logo-width: 14rem; /*110px;*/
	--section-gap: 5rem;
	--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: var(--header-height);
	scroll-behavior: smooth;
	/* scrollbar-gutter: stable; */
	overflow-x: hidden;
}

html.swal2-shown {
	overflow-y: 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); */
}

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

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: 70px;
		--logo-width: 150px;
		--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-lighter);
}

.light-bg-overlay::after {
	content: "";
	position: absolute;
	inset: 0;
	z-index: -1;
	background-color: var(--theme-primary-fade);
}

.bg-img {
	position: relative;
}

.bg-img::before {
	content: "";
	position: absolute;
	inset: 0;
	background-size: 100% auto;
	background-image: var(--bg-img);
	opacity: 0.1;
}

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

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

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

.section-subtitle::before,
.section-subtitle::after {
	display: inline-block;
	width: 40px;
	height: 2px;
	background-color: var(--theme-primary);
	vertical-align: middle;
	margin: 0 0.5rem;
}

.section-subtitle::before,
.center-header .section-subtitle::after {
	/* content: ""; */
}

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

.section-subtitle + .section-title {
	margin-top: 0.5rem;
}

.section-desc {
	margin-top: 1.5rem;
	max-width: 670px;
	margin-inline: auto;
	font-size: 1.1rem;
	line-height: 1.4;
}

.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 {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 2rem;
	margin-top: var(--section-gap);
}

.swiper-nav-btn {
	--swiper-navigation-sides-offset: 1rem;
	--swiper-navigation-size: 2.5rem;
	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%);
	position: static;
	margin: 0;
}

.header-banner {
	padding-top: 2rem;
	padding-bottom: 2rem;
	background-color: var(--theme-primary-bg-light);
	color: #000;
	text-align: center;
}

.header-banner .section-header {
	margin-block: 1.5rem;
}

.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;
	line-height: 1;
	background-color: var(--theme-primary);
	color: var(--theme-primary-alt);
	position: relative;
	overflow: hidden;
	/* border-radius: 0.5rem; */
	border: 2px solid var(--theme-primary);
	font-weight: 600;
}

.cta-btn:hover {
	background-color: var(--theme-primary-alt);
	color: var(--theme-primary);
	/* 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;
	margin-bottom: 2rem;
}

.section-header-row {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
}

.section-header-row .section-desc {
	margin-right: 0;
	margin-left: auto;
}

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

.section-title {
	/* font-weight: 600; */
	font-size: 2.3rem;
	line-height: 1.2;
	/* padding-bottom: 2rem; */
	position: relative;
	color: var(--theme-primary);
}

.section-title::after {
	/* content: ""; */
	position: absolute;
	bottom: 0;
	left: 0;
	width: 5rem;
	height: 0.25rem;
	background-color: var(--theme-primary);
}

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

.header-banner .section-title::after,
.center-header .section-title::after {
	left: 50%;
	transform: translateX(-50%);
}

[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-header-row {
		flex-direction: column;
		text-align: center;
		align-items: center;
	}

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

	.section-title {
		font-size: 1.6rem;
		/* padding-bottom: 1.1rem; */
	}

	.section-desc {
		font-size: 1rem;
	}

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

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

.top-header-row {
	display: flex;
	/* height: var(--header-height); */
	/* padding-left: calc(var(--logo-width) + 1rem); */
	padding-block: 0.5rem;
	align-items: center;
	justify-content: flex-end;
	gap: 0 2rem;
	/* font-size: 0.9rem; */
}

.header-social-links {
	margin-left: auto;
}

.social-links {
	display: flex;
	gap: 0.5rem;
	/*padding-block: 0.6rem;*/
}

.main-header {
	position: sticky;
	top: 0;
	z-index: 50;
	background-color: #fff;
}

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

.main-header-row {
	display: flex;
	/* justify-content: space-between; */
	align-items: center;
	height: var(--header-height);
	gap: 2rem;
	padding-block: 0.5rem;
	position: relative;
	/* padding-left: calc(var(--logo-width) + 1rem); */
}

.header-logo {
	width: var(--logo-width);
	/* height: calc(var(--header-height) * 2 - 1rem); */
	height: 100%;
	/* padding-block: 0.5rem 0; */
	align-self: flex-end;
	transition: ease 0.3s;
	/* position: absolute; */
	left: 0;
}

.scroll-down .header-logo {
	width: auto;
	height: 100%;
	height: calc(var(--header-height) * 1 - 1rem);
}

.header-nav {
	position: relative;
	/*margin-inline: auto;*/
	height: 100%;
	display: flex;
	align-items: center;
	flex: auto;
	justify-content: flex-end;
}

.header-nav::before {
	/* content: ""; */
	top: calc(-0.5rem - 1px);
	left: 0;
	width: 100%;
	height: 0;
	position: absolute;
	/* border-top: 1px solid #eaeaea; */
}

.header-nav-list {
	display: flex;
	position: relative;
	/* text-transform: uppercase; */
	/* font-weight: 600; */
	gap: 2rem;
	height: 100%;
	font-size: 1rem;
}

.header-nav-list > li {
	height: 100%;
}

.header-nav-list > li > a {
	display: grid;
	height: 100%;
	place-content: center;
}

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

.nav-active > a {
	font-weight: 600;
}

.header-nav-dropdown {
	position: relative;
}

.header-nav-dropdown > a {
	padding-right: 1.5em;
}

.header-nav-dropdown > a::after {
	content: "\f107";
	font: var(--icon-font);
	line-height: 1;
	font-size: 1.1em;
	position: absolute;
	right: 0;
	top: 50%;
	transform: translate(0, -50%);
}

.header-nav-dropdown-list {
	position: absolute;
	top: 100%;
	left: 0;
	z-index: 10;
	width: 100%;
	min-width: 18rem;
	opacity: 0;
	pointer-events: none;
	transition: ease 0.25s;
	background-color: #fff;
	padding-block: 0.5rem;
}

.header-nav-dropdown-list a {
	padding: 0.3rem 1rem;
	display: block;
	/* color: var(--dark-color); */
}

.header-nav-dropdown-list li:hover a {
	background-color: var(--theme-primary);
	color: var(--theme-primary-alt);
}

.header-nav-dropdown:hover > .header-nav-dropdown-list {
	opacity: 1;
	pointer-events: auto;
}

.header-contact-item {
	/* margin-left: 2rem; */
	padding: 0.5rem 1rem;
	text-transform: uppercase;
	font-weight: 600;
	border: 1px solid var(--theme-primary);
	color: var(--theme-primary-alt);
	background-color: var(--theme-primary);
	font-size: 0.9rem;
}

.header-contact-item:hover {
	color: var(--theme-primary);
	background-color: var(--theme-primary-alt);
}

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

	.header-nav-item {
		/* color: #666; */
		display: flex;
		align-items: center;
		gap: 0.3rem;
	}

	.header-nav-item-icon {
		font-size: 1.2rem;
		/* vertical-align: top; */
		line-height: 1;
	}

	.header-nav-item:not(:first-child) {
		padding-left: 2rem;
		border-left: 1px dotted #eaeaea;
	}

	.header-nav-item a {
		/* color: #000; */
		font-size: 0.9rem;
	}
}

@media (max-width: 768px) {
	.top-header,
	.main-header-row > .social-links {
		display: none;
	}

	.main-header-row {
		height: var(--header-height);
		justify-content: space-between;
	}

	.main-header-row .header-logo {
		/* padding-block: 0.5rem; */
		width: auto;
		height: 100%;
	}

	.header-resp-action {
		/* margin-left: auto; */
	}

	.resp-menu-btn {
		font-size: 2rem;
		display: block;
	}

	.header-nav {
		position: fixed;
		top: var(--header-height);
		left: 0;
		width: 100%;
		height: calc(100vh - var(--header-height));
		background-color: #fff;
		color: #000;
		padding: 2rem;
		overflow: auto;
		transform: translateX(100%);
		transition: ease 0.3s transform;
		z-index: -1;
		display: block;
	}

	.header-nav-list {
		flex-direction: column;
		align-items: flex-start;
		height: auto;
		gap: 1rem;
		margin-bottom: 2rem;
	}

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

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

	.menu-active .main-header {
		background-color: #fff;
		color: #000;
	}

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

	.header-nav-dropdown:hover .header-nav-dropdown-list {
		box-shadow: 0 0 1rem rgba(0, 0, 0, 0.15);
		transform: translateY(0);
	}

	.header-resp-nav {
		display: grid;
		gap: 1rem;
	}

	.header-resp-nav .social-links {
		margin-top: 1rem;
	}

	.header-contact-item {
		margin-left: auto;
	}
}

/* #endregion header */

/* #region banner */

.home-banners {
	--title-bg: transparent;
	--button-bg: var(--theme-primary);
	--button-fg: var(--theme-primary-alt);
}

.home-banner-slide::before {
	padding-top: 40%;
	background-color: var(--title-bg);
	z-index: 1;
	position: relative;
}

.home-banner-slide img {
	/* opacity: 0.5; */
	z-index: 0;
}

.home-banner-wrapper {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	z-index: 2;
	/* padding-top: var(--header-height); */
}

.home-banner-wrapper > .container {
	height: 100%;
	display: flex;
	align-items: center;
}

.home-banner-content {
	max-width: 750px;
	width: 100%;
	position: relative;
	color: var(--theme-primary-alt);
	/* padding: 4rem; */
}

.home-banner-content::before {
	/* content: ""; */
	position: absolute;
	inset: 0;
	background-color: var(--title-bg);
	z-index: -1;
	opacity: 0.5;
}

.home-banner-title {
	font-size: 2.5rem;
	/* font-weight: 600; */
	line-height: 1.2;
	margin-bottom: 1rem;
	text-shadow: 0 0.2rem 0.2rem rgb(0 0 0 / 50%);
	text-shadow: 0.15rem 0.2rem 0.2rem rgb(0 0 0 / 25%);
}

.home-banner-subtitle {
	margin-bottom: 1rem;
	font-size: 2.2rem;
	font-weight: 700;
}

.home-banner-text {
	font-size: 1.4rem;
	line-height: 1.4;
	margin-bottom: 1rem;
	padding-top: 1.2rem;
	position: relative;
}

.home-banner-text::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 6rem;
	height: 0.2rem;
	background-color: currentColor;
}

.home-banner-link {
	background-color: var(--button-bg);
	border: 2px solid var(--button-bg);
	color: var(--button-fg);
	display: inline-block;
	padding: 0.5rem 3rem;
	/* text-transform: uppercase; */
	font-weight: 600;
	font-size: 1rem;
	line-height: 2;
	position: relative;
	z-index: 1;
	overflow: hidden;
	transition: ease 0.5s;
	vertical-align: middle;
	/* border-radius: 0.5rem; */
}

.home-banner-link::before {
	content: "";
	background-color: var(--theme-primary);
	position: absolute;
	inset: 0;
	width: 150%;
	left: -25%;
	transform-origin: center;
	transform: skewX(-35deg) translateX(-150%);
	transition: ease 0.5s;
	z-index: -1;
}

.home-banner-link:hover {
	color: var(--theme-primary-alt);
	border-color: var(--theme-primary);
}

.home-banner-link:hover::before {
	transform: skewX(-35deg) translateX(0%);
}

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

	.home-banner-content {
		padding: 1.3rem;
		width: 80%;
	}

	.home-banner-title {
		font-size: 1.5rem;
	}

	.home-banner-text {
		font-size: 1.2rem;
		margin-bottom: 0;
	}

	.home-banner-link {
		font-size: 0.85rem;
		padding: 0.3rem 2rem;
	}
}

/* #endregion banner */

/* #region get started */

.home-get-started {
	position: relative;
	z-index: 1;
}

.home-get-started-row {
	margin-top: -4rem;
	background-color: #fff;
	display: flex;
	flex-wrap: wrap;
}

.home-get-started-col {
	flex: 1 1 0;
	min-width: 15rem;
	display: flex;
	padding: 1.5rem;
	align-items: center;
	gap: 1rem;
	border: 1px solid #dadada;
}

.home-get-started-col:not(:last-child) {
	border-right: 0;
}

.home-get-started-icon {
	font-size: 3rem;
	color: var(--theme-primary);
}

.home-get-started-icon i {
}

.home-get-started-content {
	line-height: 1.5;
}

.home-get-started-title {
	font-size: 1.3rem;
	margin-bottom: 0.5rem;
}

.home-get-started-text {
	color: var(--dark-color);
}

.home-get-started-media {
	padding: 0;
	position: relative;
	border: 0 !important;
}

.home-get-started-thumb {
	position: absolute;
	inset: 0;
}

.home-get-started-thumb img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.home-get-started-action {
	position: absolute;
	top: 50%;
	left: 50%;
	background-color: var(--theme-primary);
	color: var(--theme-primary-alt);
	width: 4rem;
	height: 4rem;
	border-radius: 50%;
	font-size: 2.5rem;
	display: grid;
	place-content: center;
	transform: translate(-50%, -50%);
}

.home-get-started-action::before,
.home-get-started-action::after {
	content: "";
	position: absolute;
	inset: 0;
	animation: pulse 2s infinite forwards ease;
	background-color: var(--theme-primary);
	border-radius: inherit;
	z-index: -1;
}

.home-get-started-action::before {
	animation-delay: 1s;
}

@keyframes pulse {
	0% {
		opacity: 0.65;
		transform: scale(1);
	}
	100% {
		opacity: 0;
		transform: scale(3);
	}
}

.home-get-started-action i {
}

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

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

/* #endregion get started */

/* #region about */

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

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

.home-about-desc {
	margin-bottom: 2rem;
	/* font-size: 1.25rem; */
}

.home-about-desc p {
	margin-bottom: 1rem;
}

.home-about-cta {
	/* margin-top: 1rem; */
}

.home-about-img {
	/* height: 30rem; */
}

.home-about-img img {
	height: 100%;
	width: auto;
	object-fit: cover;
	/* border-radius: 1rem; */
	overflow: hidden;
}

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

	.home-about-img {
		height: auto;
		/* transform: translateY(8rem); */
		order: 1;
		margin-block: 2rem;
	}

	.home-about-col {
		display: contents;
	}

	.home-about-col .section-header {
		/* transform: translateY(-18rem); */
		order: 0;
		margin-bottom: 1rem;
	}

	.home-about-desc {
		order: 2;
	}

	.home-about-cta {
		order: 3;
	}
}

/* #endregion about */

/* #region services */

.home-services-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(20rem, 1fr));
	gap: 2rem;
}

.home-services-card {
	position: relative;
	background-color: #fff;
	/* box-shadow: 0px 4px 50px 0px rgb(0 0 0 / 5%); */
	display: flex;
	flex-direction: column;
	/* border-radius: 1rem; */
	overflow: hidden;
}

.home-services-img::before {
	padding-top: 60%;
}

.home-services-content {
	flex: auto;
	padding: 1.5rem;
	padding-bottom: 4.5rem;
	margin-inline: 1rem;
	margin-top: -3rem;
	background-color: inherit;
	position: relative;
	z-index: 1;
	border-bottom: 0.2rem solid;
	border-color: var(--theme-primary);
	background-color: #fff;
}

.home-services-title {
	font-size: 1.2rem;
	white-space: nowrap;
	height: 1lh;
	overflow: hidden;
	text-overflow: ellipsis;
	line-clamp: 1;
	-webkit-line-clamp: 1;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	text-transform: uppercase;
	margin-bottom: 0.5rem;
	/* text-align: center; */
}

.home-services-desc {
	font-size: 0.9rem;
	/* margin-bottom: 1rem; */
	line-height: 1.6;
	height: 3lh;
	overflow: hidden;
	text-overflow: ellipsis;
	line-clamp: 3;
	-webkit-line-clamp: 3;
	display: -webkit-box;
	-webkit-box-orient: vertical;
}

.home-services-cta {
	background-color: var(--theme-primary);
	color: var(--theme-primary-alt);
	padding: 1rem 1.5rem;
	/* font-weight: 700; */
	font-size: 0.9rem;
	position: absolute;
	bottom: -0.2rem;
	right: 0;
}

.home-services-cta::after {
	/* double angle right */
	content: "\f101";
	font: var(--icon-font);
	font-size: 1em;
	margin-left: 0.2rem;
}

.home-services-cta:hover {
	background-color: var(--theme-primary-dark);
	/* color: var(--theme-primary); */
}

@media (max-width: 768px) {
	.home-services-title {
		font-size: 1.3rem;
	}
}

/* #endregion services */

/* #region why-us */

.home-whyus::before {
	background-position: bottom right;
	background-size: contain;
	background-repeat: no-repeat;
	opacity: 1;
}

.home-whyus-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(15rem, 1fr));
	gap: 2rem;
	/* text-align: center; */
	/* margin-top: 3rem; */
	color: var(--theme-primary-dark);
}

.home-whyus-card {
	position: relative;
	/* padding-top: 4rem; */
	display: flex;
	/* flex-direction: column; */
	align-items: center;
	gap: 1rem;
	justify-content: center;
}

.home-whyus-img {
	/* position: absolute; */
	top: 0;
	left: 50%;
	/* transform: translateX(-50%); */
	z-index: 1;
	width: 4rem;
	height: 4rem;
	/* padding: 1.2rem; */
	flex-shrink: 0;
	border-radius: 50%;
	/* box-shadow: 0 0.5rem 2rem rgb(0 0 0 / 20%); */
	/* background-color: #fff; */
}

.home-whyus-img img {
	width: 100%;
	height: 100%;
	filter: var(--primary-filter);
}

.home-whyus-content {
	/* padding: 2rem; */
	/* padding-top: 6rem; */
	/* background-color: var(--theme-primary-bg-lighter); */
	position: relative;
	z-index: 0;
	/* flex: auto; */
}

.home-whyus-title {
	font-size: 2.2rem;
	color: var(--theme-secondary);
	/* margin-bottom: 0.5rem; */
	line-height: 1;
	font-weight: 700;
}

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

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

/* #endregion why-us */

/* #region delivery */

.home-delivery-grid {
	display: grid;
	grid-template-columns: 2.5fr 4fr 3.5fr;
	align-items: center;
}

.home-delivery-col-1 img {
	margin-inline: auto;
}

.home-delivery-col-2 {
	padding: var(--section-gap) 2rem;
}

.home-delivery-desc {
	margin-bottom: 3rem;
}

.home-delivery-col-3 img {
	margin-inline: auto;
}

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

/* #endregion delivery */

/* #region clients */

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

.home-client-img {
	/* flex: 1 1 100%; */
	border: 1px solid #dadada;
}

.home-client-img::before {
	padding-top: 50%;
}

.home-client-img img {
	padding: 0.5rem;
	object-fit: contain;
	/* filter: grayscale(1); */
}

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

/* #endregion clients */

/* #region testimonials */

.home-testimonials {
}

.home-testimonials-swiper {
	margin-top: 2rem;
}

.home-testimonial-card {
	border: 1px solid #dadada;
	border-radius: 1rem;
	background-color: #fff;
	padding: 1.5rem;
	padding-bottom: 2.5rem;
	margin-bottom: 2rem;
	position: relative;
	height: auto;
}

.home-testimonial-desc {
	line-height: 1.6;
	/* font-size: 0.9rem; */
	margin-bottom: 0.5rem;
}

.home-testimonial-author {
	background-color: var(--theme-primary);
	color: var(--theme-primary-alt);
	padding: 0.7rem 2rem;
	border-radius: 5rem;
	line-height: 1.3;
	position: absolute;
	bottom: -2rem;
	left: 1.5rem;
	z-index: 1;
	right: 1.5rem;
	width: auto;
	display: flex;
}

.home-testimonial-img {
	border-radius: 50%;
	width: 3.5rem;
	overflow: hidden;
	border: 4px solid var(--theme-primary-alt);
	display: none;
}

.home-testimonial-author-details {
}

.home-testimonial-name {
	font-size: 1.1rem;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.home-testimonial-position {
	font-size: 0.9rem;
}

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

/* #endregion testimonials */

/* #region blogs */

.blog-swiper-container {
	/* overflow: visible; */
	--swiper-navigation-sides-offset: -3rem;
	--swiper-navigation-size: 2rem;
	position: relative;
}

.blog-nav-btn {
	transition: ease 0.3s;
}

.blog-nav-btn.swiper-button-disabled {
	opacity: 0;
}

.blog-nav-btn::after {
	font: var(--icon-font);
	font-size: var(--swiper-navigation-size);
}

.blog-nav-btn.swiper-button-prev::after {
	content: "\f060";
}

.blog-nav-btn.swiper-button-next::after {
	content: "\f061";
}

.blogs-section .section-header {
	margin-bottom: 2rem;
	/* color: var(--theme-primary); */
}

.blog-slide {
	padding-inline: 1.2rem;
}

.blog-img {
	overflow: hidden;
	display: block;
	margin-bottom: 2rem;
	border-radius: 1rem;
	position: relative;
	z-index: 2;
	transition: ease 0.5s;
}

.blog-img::before {
	padding-top: 66.6%;
}

.blog-img img {
	transition: ease 0.7s;
}

.blog-slide:hover .blog-img {
	transform: scale(0.97);
}

.blog-slide:hover .blog-img img {
	/* transform: scale(1.1); */
}

.blog-content {
	position: relative;
	z-index: 1;
}

.blog-content::before {
	content: "";
	position: absolute;
	bottom: calc(100% + 0.7rem);
	height: 8rem;
	left: -1.2rem;
	right: -1.2rem;
	background-color: var(--theme-primary-bg-light);
	border-radius: 1rem;
	transition: ease 0.7s height;
}

.blog-slide:hover .blog-content::before {
	height: 12rem;
}

.blog-title {
	font-size: 1.25rem;
	margin-bottom: 0.5rem;
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	line-clamp: 2;
	box-orient: vertical;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	font-weight: 500;
}

.blog-category {
	color: var(--theme-primary);
	/* font-weight: 500; */
}

.blog-link {
	/* font-weight: 500; */
	/* font-size: 1.1rem; */
	position: relative;
	display: inline-block;
	padding-bottom: 0.2rem;
}

.blog-link::after {
	content: "";
	position: absolute;
	bottom: 0.2rem;
	left: 0;
	width: 100%;
	height: 1px;
	transform-origin: left;
	transform: scaleX(0);
	transition: ease 0.25s;
	transition-property: transform;
	background-color: currentColor;
}

.blog-link:hover::after {
	transform: scaleX(1);
}

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

@media (max-width: 768px) {
	.blog-swiper-container {
		--swiper-navigation-sides-offset: 0.5rem;
	}

	.blog-slide {
		padding-inline: 1rem;
	}

	.blog-img {
		margin-bottom: 1.7rem;
	}

	.blog-slide.swiper-slide-active .blog-img {
		transform: scale(0.95);
	}

	.blog-content {
		text-align: center;
		padding-top: 0.5rem;
	}

	.blog-content::before {
		left: -1rem;
		right: -1rem;
	}

	.blog-slide.swiper-slide-active .blog-content::before {
		height: 12rem;
	}
}

/* #endregion blogs */

/* #region org */

.home-org {
	--org-primary: #3c59a6;
	--org-secondary: #f0495b;
	--org-primary-bg: #ebf6fa;

	background-color: var(--org-primary-bg);
}

.home-org::before {
	opacity: 1;
	background-position: left center;
	background-size: auto;
	background-repeat: no-repeat;
}

.home-org-row {
	display: flex;
	align-items: flex-start;
	gap: 1rem 3rem;
	justify-content: center;
}

.home-org .section-title {
	color: var(--org-primary);
}

.home-brand-desc p {
	margin-top: 1rem;
}

.home-org-img img {
	background-color: #fff;
	padding: 0.5rem;
	border-radius: 1rem;
	border: 1px solid #dadada;
}

@media (min-width: 768px) {
	.home-org-col {
		width: 50%;
	}

	.home-org-img {
		width: 25rem;
	}
}

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

/* #endregion org */

/* #region contact */

.home-contact::before {
	opacity: 0.05;
}

.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;
	align-items: baseline;
	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: 2rem;
	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;
	}

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

.home-gallery-grid {
	display: grid;
	gap: 1rem;
	grid-template-columns: repeat(auto-fill, minmax(18rem, 1fr));
}

.home-gallery-item {
	position: relative;
	border-radius: 1rem;
	overflow: hidden;
}

.home-gallery-img {
}

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

.home-gallery-img img {
}

.home-gallery-body {
	position: absolute;
	inset: 0;
	padding: 2rem;
	color: var(--theme-primary-alt);
	display: grid;
	justify-items: center;
	place-content: center;
	text-align: center;
	gap: 1rem;
	z-index: 2;
	transform: translateY(100%);
	opacity: 0;
}

.home-gallery-body::before {
	content: "";
	position: absolute;
	inset: 0;
	background-color: var(--theme-primary-dark);
	z-index: -1;
	opacity: 0.9;
	transform: translateY(-200%);
}

.home-gallery-body,
.home-gallery-body::before {
	transition: ease 0.3s;
}

.home-gallery-item:hover .home-gallery-body {
	transform: translateY(0);
	opacity: 1;
}

.home-gallery-item:hover .home-gallery-body::before {
	transform: translateY(0);
}

.home-gallery-caption {
	font-size: 1.2rem;
	font-weight: 500;
}

.home-gallery-caption:hover {
	color: var(--theme-secondary);
	transition: ease 0.3s;
}

.home-gallery-body::after {
	content: "\f124";
	font: var(--icon-font);
	background-color: var(--theme-secondary);
	color: var(--theme-secondary-alt);
	width: 2.5rem;
	height: 2.5rem;
	font-size: 1.6rem;
	display: grid;
	place-content: center;
	border-radius: 5rem;
	transform: rotate(45deg);
}

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

/* #endregion gallery */

/* #region footer */

.page-footer {
	padding-block: 0.5rem;
	background-color: var(--theme-primary);
	color: var(--theme-primary-alt);
}

.page-footer-row {
	display: flex;
	align-items: flex-start;
	gap: 2rem 4rem;
}

.footer-col {
	flex: 1 1 100%;
}

.footer-col a {
	display: inline-block;
}

.footer-col a:hover {
	color: var(--theme-secondary);
}

.footer-logo {
	margin-bottom: 1rem;
}

.footer-logo img {
	width: 7rem;
}

.footer-title {
	font-size: 1.5rem;
	margin-bottom: 0.5rem;
}

.footer-nav-list li {
	margin-bottom: 0.2rem;
}

.footer-contact-item {
	display: flex;
	align-items: baseline;
	gap: 0.5rem;
	margin-bottom: 1rem;
	line-height: 1.4;
}

.footer-social-links a {
	display: grid;
	place-content: center;
	width: 2.5rem;
	height: 2.5rem;
	border-radius: 5rem;
	background-color: var(--theme-primary-alt);
	color: var(--theme-primary);
	/* border: 1px solid var(--theme-secondary); */
}

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

.footer-form {
	position: relative;
}

.footer-form input {
	width: 100%;
	padding: 0.5rem 1rem;
	background-color: #fff;
	margin-bottom: 0.5rem;
}

.footer-form button {
	display: inline-block;
	padding: 0.5rem 2rem;
	background-color: var(--theme-secondary);
	color: var(--theme-secondary-alt);
}

.copy-footer {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.copy-footer img {
	display: inline-block;
	vertical-align: middle;
}

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

	.page-footer {
		padding-block: 1rem;
	}

	.copy-footer {
		flex-direction: column;
		gap: 1rem;
		text-align: center;
	}

	.copy-footer .social-links {
		padding-block: 0.3rem;
		order: -1;
	}
}

/* #endregion footer */
