/* #region setup */

:root {
	--text-color: #000;
	--dark-color: #5f6063;
	--theme-primary: #18a99a;
	--theme-primary-dark: #18a99a;
	--theme-primary-light: #9955c1;
	--theme-primary-bg-light: #e5b9ff;
	--theme-primary-bg-lighter: #e6f5fb;
	--theme-primary-fade: hsl(278deg 57% 39% / 30%);
	--theme-primary-alt: #fff;
	--theme-secondary: #18a99a;
	--theme-secondary-alt: #fff;
	--container-width: 1225px;
	--container-sm-width: 1065px;
	--container-lg-width: 1440px;
	--column-gutter: 15px;
	--background-shade: #f7f7f7;
	/* https://angel-rs.github.io/css-color-filter-generator/ */
	--primary-filter: brightness(0) saturate(100%) invert(77%) sepia(30%) saturate(530%) hue-rotate(121deg) brightness(86%) contrast(81%);
	/* --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: 6.5rem;
	/*75px;*/
	--top-header-height: 3.5rem;
	--header-height-min: 60px;
	--logo-width: 16rem;
	/*110px;*/
	--header-spacing: 2rem;
	--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;
}

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

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

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

.dark-bg {
	position: relative;
	background-color: #f8f8f8;
	color: #000;
}

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

.bg-img1 {
	position: relative;
}

.background-shade {
	background-color: var(--background-shade);
}

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

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

.section-subtitle {
	/* letter-spacing: 2px; */
	font-size: 18px;
	font-family: var(--font-family-alt);
	/* opacity: 0.3; */
	/* line-height: 2; */
	text-transform: uppercase;
	color: #999999;
	/* 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-subtitle+.section-title {
	margin-top: 0.5rem;
}

.section-desc {
	margin-top: 1rem;
	max-width: 670px;
	margin-inline: auto;
	font-size: 1.2rem;
	line-height: 1.4;
	color: #000;
}

.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: var(--theme-primary-dark);
	color: var(--theme-secondary);
	text-align: center;
	position: relative;
}

.header-banner::before,
.header-banner::after {
	content: "";
	position: absolute;
	background-size: auto;
	background-repeat: no-repeat;
	height: 100%;
	width: 50%;
	top: 0;
	z-index: 0;
}

/* .header-banner::before {
	background-image: var(--header-banner-img-1);
	background-position: left bottom;
	left: 0;
}

.header-banner::after {
	background-image: var(--header-banner-img-2);
	background-position: top right;
	right: 0;
} */

.header-banner .section-header {
	margin-bottom: 3rem;
	margin-top: 3rem;
	position: relative;
	z-index: 1;
}

.header-banner .section-header .section-title {
	color: #ffffff;
}

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

.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: #f67d2f;
	color: var(--theme-primary-alt);
	position: relative;
	overflow: hidden;
	border-radius: 50px;
	border: 2px solid #f67d2f;
	font-weight: 600;
	/* transition: ease 0.3s; */
	font-family: var(--font-family-alt);
}

.cta-btn:hover {
	background-color: var(--theme-primary);
	color: #fff;
	border: 2px solid var(--theme-primary);
	/* color: var(--theme-primary-bg-lighter); */
}

.cta-btn-alt {
	background-color: var(--theme-secondary);
	color: var(--theme-secondary-alt);
	border-color: var(--theme-secondary);
}

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

.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-alt {
	color: #000;
	font-family: var(--font-family-alt);
	font-weight: 200;
	font-style: normal;
}

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

.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-family: var(--font-family-alt);
	font-weight: 500;
	font-style: normal;
	font-size: 2.5rem;
	line-height: 1.2;
	/* padding-bottom: 2rem; */
	position: relative;
	color: #000;
}

.dark-bg .section-title {
	color: #000;
	font-family: var(--font-family-alt);
	font-weight: 500;
	font-style: normal;
	line-height: 1.2;
}

.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: 2rem;
		padding-bottom: 2rem;
	}

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

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

	.section-title {
		font-size: 2rem;
		padding-bottom: 1.1rem;
	}

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

	.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-secondary); */
	/* color: var(--theme-secondary-alt); */
	background-color: #f8f8f8;
}

.top-header-row {
	background-color: #fff;
	display: flex;
	height: var(--top-header-height);
	padding-left: calc(var(--logo-width) + var(--header-spacing));
	padding-right: var(--header-spacing);
	padding-block: 0.75rem;
	align-items: center;
	justify-content: flex-end;
	gap: 0 2rem;
	font-size: 1rem;
	color: var(--theme-primary-dark);
}

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

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

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

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

.header-logo {
	width: var(--logo-width);
	height: calc(var(--header-height));
	/* background-color: #fff; */
	padding: 0.5rem 2.5rem;
	align-self: flex-end;
	transition: ease 0.3s;
	position: absolute;
	left: 0;
	bottom: 0rem;
	/* top: 0.5rem; */
	/* border-right: 1px solid #dadada; */
}

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

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

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

.header-nav-list {
	display: flex;
	align-items: center;
	position: relative;
	/* text-transform: uppercase; */
	font-weight: 500;
	gap: 2rem;
	height: 100%;
	font-size: 1rem;
	color: var(--theme-primary-dark);
}

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

.header-nav-list>li>a {
	display: grid;
	height: 100%;
	place-content: center;
	color: #000;
	font-family: var(--font-family-alt);
	font-style: normal;
	font-weight: 400;
	font-size: 1rem;
	position: relative;
}

.nav-active>a::before {
	content: "";
	width: 100%;
	height: 2px;
	background-color: var(--theme-secondary);
	position: absolute;
	bottom: 35%;
}

.nav-active>a,
.header-nav-list>li:hover>a {
	/* color: var(--theme-secondary) !important; */
	font-weight: 500 !important;
}

.nav-active>a::before,
.header-nav-list>li:hover>a::before {
	content: "";
	position: absolute;
	width: 100%;
	height: 2px;
	background-color: var(--theme-primary);
	bottom: 35%;
}

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

.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: 1rem; */
	box-shadow: 0 2rem 2.5rem rgba(137, 139, 142, 0.15);
	transform: scaleY(0);
	transform-origin: top left;
	border-bottom-left-radius: 0.5rem;
	border-bottom-right-radius: 0.5rem;
}

.header-nav-dropdown-list li {
	border-bottom: 1px solid #dadada;
}

.header-nav-dropdown-list li:last-child {
	border-bottom: none;
}

.header-nav-dropdown-list li a {
	padding: 0.7rem 1rem;
	font-weight: 400;
}

.header-nav-dropdown-list a {
	display: block;
	color: #000;
	transition: ease 0.5s;
	line-height: 1.2;
	font-family: var(--font-family-alt);
	font-style: normal;
}

.header-nav-dropdown-list li:hover a {
	/* background-color: var(--theme-primary); */
	color: var(--theme-secondary);
	transform: translateX(0.5rem);
	font-weight: 500;
}

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

.header-nav-contact {
	display: grid;
	place-content: center;
	height: 100%;
	/* padding-left: var(--header-spacing); */
	/* border-left: 1px solid #dadada; */
}

.header-contact-item {
	/* margin-left: 2rem; */
	padding: 0;
	line-height: 2;
	text-transform: uppercase;
	font-weight: 500;
	color: var(--theme-secondary);
	font-size: 1.1rem;
	/* border-radius: 5rem; */
	margin-right: 1rem;
}

.header-contact-item i {
	font-size: 1.8rem;
	margin-right: 10px;
}

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

.home-about-desc {
	margin-bottom: 2rem;
	font-size: 20px;
	line-height: 1.3em;
	color: #999999;
	font-family: var(--font-family-alt);
	font-style: normal;
}

@media (min-width: 1200px) {

	.header-resp-action,
	.header-resp-nav {
		display: none;
	}

	.header-nav-item {
		/* padding-right: 2rem; */
		/* border-right: 1px solid #eaeaea; */
		/* color: #666; */
		color: #000;
		white-space: nowrap;
		overflow: hidden;
		text-overflow: ellipsis;
		max-width: 30rem;
	}

	.header-nav-item a {
		/* color: #000; */
	}

	.scroll-down .header-logo {
		/* width: auto; */
		/* height: 100%; */
		height: calc(var(--header-height));
		padding-block: 0.5rem;
		/* bottom: 0; */
	}
}

@media (max-width: 1200px) {

	/* .header-menu-open-icon {
		color: #fff;
	} */
	.header-nav-contact,
	.top-header,
	.main-header-row>.social-links {
		display: none;
	}

	.home-about-desc {
		font-size: 1.1rem !important;
	}

	.section-header-crumbs {
		margin-top: 0 !important;
	}

	.social-links a {
		/* border: 1px solid #000 !important; */
		color: #000 !important;
	}

	.main-header-row {
		height: var(--header-height);
		padding-left: 0;
		gap: 0;
	}

	.main-header-row .header-logo {
		padding-block: 0.5rem;
		width: calc(100% - 5rem);
		height: 100%;
		position: static;
		padding-left: 0.5rem;
	}

	.header-resp-action {
		/* margin-left: auto; */
		/* margin-right: 1rem; */
		/* width: 2.5rem; */
		flex: auto;
	}

	.resp-menu-btn {
		font-size: 2rem;
		display: block;
		text-align: center;
		width: 100%;
	}

	.header-nav {
		position: fixed;
		top: var(--header-height);
		left: 0;
		width: 100%;
		height: calc(100vh - var(--header-height));
		background-color: #fff;
		color: #000;
		padding-top: 15px;
		overflow: auto;
		transform: translateX(100%);
		transition: ease 0.3s transform;
		z-index: -1;
		display: flex;
		flex-direction: column;
		align-items: flex-start;
		border-top: 1px solid #dadada;
		padding-left: 15px;
	}

	.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;
		/* margin-top: auto; */
	}

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

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

	.header-nav-contact {
		height: auto;
		padding: 0;
		justify-content: start;
		border: 0;
	}
}

/* #endregion header */

/* #region banner */

.home-banner-slide {
	--title-bg: var(--theme-primary-dark);
	--button-bg: var(--theme-secondary);
	--button-fg: var(--theme-secondary-alt);
}

.home-banner-slide::before {
	padding-top: 45%;
	background-color: var(--theme-primary-dark);
}

.home-banner-slide img {
	opacity: 1;
	/* reduce to get background color effect*/
}

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

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

.home-banner-content {
	max-width: 650px;
	width: 100%;
	position: relative;
	color: #fff;
	/* padding: 2rem; */
}

.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: 4rem;
	font-weight: 500;
	line-height: 64px;
	margin-bottom: 1rem;
	/* 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: #f67d2f;
	border: 2px solid #f67d2f;
	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: 50px;
	font-family: var(--font-family-alt);
}

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

.home-about {
	position: relative;
}

.home-about-bg-img {
	position: absolute;
	bottom: 0;
	right: 0;
}

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

.home-about-col {
	flex: 1 1 100%;
	color: var(--theme-primary-dark);
}

.home-about .section-title {
	color: #000;
}

.home-about-desc strong,
.home-about-desc b {
	font-weight: 400;
}

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

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

.home-about-img {
	/* height: 30rem; */
	position: relative;
	padding: 3rem;
	max-width: 85%;
	margin-left: auto;
}

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

.home-about-img::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: #67bdb0;
	/* border-radius: 0 1rem 1rem 0; */
	/* border-radius: 1rem; */
	z-index: -1;
}

.home-about-bg img {
	position: absolute;
	width: auto;
	height: auto;
	max-width: none;
	z-index: 0;
}

.home-about-bg-1 {
	bottom: 0;
	left: 0;
	animation: about-animate-1 4s ease-in-out 0s infinite alternate;
}

.home-about-bg-2 {
	top: 0;
	left: -6rem;
}

.home-about-bg-3 {
	left: 0;
	top: 26%;
}

@keyframes about-animate-1 {
	0% {
		transform: translateY(2rem);
	}

	50% {
		transform: translateY(0);
	}

	100% {
		transform: translateY(2rem);
	}
}

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

	.home-about-img {
		height: auto;
		padding-inline: 1rem;
		/* transform: translateY(6rem); */
	}

	.home-about-col .section-header {
		/* transform: translateY(-16rem); */
	}

	.home-about-bg-img {
		width: 75%;
	}

	.home-about-bg img {
		width: 3rem;
	}

	/* .home-about-img::before {
		width: 6rem;
		top: -1.5rem;
		bottom: -1.5rem;
	} */
}

/* #endregion about */

/* #region services */

.home-services {
	position: relative;
}

.home-services-bg img {
	position: absolute;
	z-index: 0;
}

.home-services-bg-1 {
	top: 0;
	right: 0;
}

.home-services-bg-2 {
	bottom: 0;
	left: 0;
}

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

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

.home-services-img {
	width: 100%;
}

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

.home-services-img a {
	height: 100%;
}

.home-services-img a img {
	height: 100%;
	width: 100%;
	object-fit: cover;
}

.home-services-content {
	flex: auto;
}

.home-serive-anchor::before {
	content: unset;
}

.home-serive-anchor>a {
	display: block;
}

.home-services-content:hover .home-services-title a {
	color: var(--theme-primary);
}

.home-services-header {
	display: flex;
	flex-direction: column;
	align-items: stretch;
	gap: 1rem;
	align-items: flex-start;
	position: relative;
}

.home-services-header .home-services-img {
	flex: 0 0 15rem;
	border-radius: 10px;
	overflow: hidden;
}

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

.home-services-img img {
	transition: 0.3s ease-in-out;
}

.home-services-header:hover .home-services-img img {
	transform: scale(1.1);
}

.home-services-title {
	width: 100%;
	font-weight: 700;
	overflow: hidden;
	text-overflow: ellipsis;
	line-clamp: 2;
	-webkit-line-clamp: 2;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	text-transform: capitalize;
	padding: 0 2rem 0;
	/* margin-bottom: 1rem; */
	/* text-align: center; */
}

.home-services-title a {
	display: block;
	font-family: var(--font-family-alt);
	font-size: 20px;
	line-height: 25px;
	min-height: 50px;
}

.home-services-card .home-services-body {
	background-color: #fff;
	border-radius: 0 0 10px 10px;
	padding: 0.5rem 0;
}

.home-services-learn {
	padding: 0 2rem 0;
	font-weight: 500;
	text-transform: capitalize;
	font-family: var(--font-family);
	transition: 0.3s;
}

.home-services-learn:hover {
	color: #f67d2f;
	text-decoration: underline;
	text-decoration-color: #f67d2f;
}

/*.home-services-header::before {*/
/*	content: "";*/
/*	position: absolute;*/
/*	top: 1rem;*/
/*	bottom: 1rem;*/
/*	left: 6rem;*/
/*	width: 0.2rem;*/
/*	background-color: var(--theme-primary-bg-light);*/
/*	border-radius: 1rem;*/
/*	transform: translateX(-50%);*/
/*}*/

.home-services-desc {
	margin-bottom: 1rem;
	line-height: 1.3;
	opacity: 0.7;
	padding: 0 2rem;
	font-family: var(--font-family-alt);
	font-style: normal;
	display: -webkit-box;
	line-clamp: 3;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;
	text-overflow: ellipsis;
	overflow: hidden;
	margin-top: 5px;
}

.home-services-cta {
	color: var(--theme-primary-alt);
	background-color: var(--theme-secondary);
	border: 1px solid var(--theme-secondary);
	font-weight: 700;
	font-size: 0.9rem;
	margin: 0 2rem 1rem;
}

.home-services-cta:hover {
	border: 1px solid var(--theme-secondary);
	color: var(--theme-secondary);
	background-color: var(--theme-secondary-alt);
}

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

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

/* #endregion services */

/* #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: 66.6%;
}

.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 why-us */
.home-whyus {
	background-image: url("../images/Vector.webp");
	background-repeat: no-repeat;
	background-size: contain;
	background-position: center;
}

.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;
	text-align: center;
}

.home-whyus-img {
	/* position: absolute; */
	top: 0;
	left: 50%;
	/* transform: translateX(-50%); */
	z-index: 1;
	width: 5rem;
	height: 5rem;
	/* 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: 4rem;
	color: #000;
	/* margin-bottom: 0.5rem; */
	line-height: 1;
	font-family: var(--font-family-alt);
	color: var(--theme-primary);
	font-weight: 700;
	font-style: normal;
}

.home-whyus-desc {
	font-size: 18px;
	color: #000;
	font-family: var(--font-family-alt);
	font-style: normal;
	text-align: center;
}

@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 {
	border-bottom: 1px solid #dadada;
}

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

.home-client-img {
	/* flex: 1 1 100%; */
}

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

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

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

/* #endregion clients */

/* #region testimonials */

.home-testimonials {
	position: relative;
	background-image: url("../images/Parallax.jpg");
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
}

.home-testimonials .section-title,
.home-testimonials .section-desc,
.home-testimonial-desc {
	color: #fff;
}

.testimonial-bg {
	position: absolute;
	bottom: 0;
	right: 0;
	filter: var(--white-filter);
	opacity: 0.1;
	object-fit: cover;
	object-position: bottom right;
}

.home-testimonial-wrapper {
	display: flex;
	gap: 2rem;
	align-items: center;
}

.home-testimonial-side {
	width: 50%;
	border-radius: 1rem;
	overflow: hidden;
}

.home-testimonial-side::before {
	padding-top: 66%;
}

.home-testimonials-swiper {
	z-index: 1;
	position: relative;
}

.home-testimonial-wrapper .home-testimonials-swiper {
	width: 50%;
	margin-right: 0;
	/* overflow: visible; */
}

.home-testimonial-slide {
	height: auto;
}

.home-testimonial-card {
	display: flex;
	align-items: center;
	gap: 4rem 6rem;
	/* color: var(--theme-primary-dark); */
	position: relative;
	border-radius: 0.5rem;
	overflow: hidden;
	/* border: 1px solid var(--theme-primary-dark); */
	height: 100%;
	padding: 10px 15px;
}

.home-testimonial-card::before {
	content: "";
	position: absolute;
	inset: 0;
	background-color: #fff;
	z-index: 0;
	opacity: 0.05;
}

.home-testimonial-content {
	padding: 2rem;
	position: relative;
	z-index: 1;
	text-align: center;
	display: grid;
	gap: 2rem;
	margin-bottom: auto;
}

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

.home-testimonial-img {
	/* background-color: #fff; */
	border-radius: 1rem;
	position: relative;
}

.home-testimonial-img img {
	margin: auto;
	height: 16rem;
	padding: 2rem;
}

.home-testimonial-img::after {
	/* quote left icon */
	/* content: "\f10d"; */
	font: var(--icon-font);
	font-size: 4.5rem;
	position: absolute;
	top: 50%;
	right: 0;
	width: 6rem;
	height: 6rem;
	display: grid;
	place-content: center;
	background-color: var(--theme-primary);
	color: var(--theme-primary-alt);
	border-radius: 50%;
	transform: translate(50%, -50%);
}

.home-testimonial-desc {
	font-size: 1.1rem;
	line-height: 1.5;
	/* opacity: 0.6; */
	font-family: var(--font-family-alt);
	font-style: normal;
}

.home-testimonial-author {
	/* margin-top: 2rem; */
	/* padding-left: 1rem; */
	/* border-left: 0.3rem solid currentColor; */
}

.home-testimonial-name {
	font-size: 1.4rem;
	margin-bottom: 0.3rem;
	font-weight: 400;
	color: #fff;
}

.home-testimonial-position {
	line-height: 1.2;
	font-weight: 400;
	color: #fff;
	/* text-transform: uppercase; */
	/* font-weight: 900; */
	/* opacity: 0.5; */
	/* font-size: 0.9rem; */
}

@media (max-width: 768px) {
	.testimonial-bg {
		opacity: 0.3;
		height: 9rem;
	}

	.home-testimonial-card {
		flex-wrap: wrap;
	}

	.home-testimonial-img {
		padding-bottom: 3rem;
	}

	.home-testimonial-img img {
		height: 10rem;
		padding: 1rem;
	}

	.home-testimonial-img::after {
		top: 100%;
		left: 50%;
		transform: translate(-50%, -50%);
		width: 4rem;
		height: 4rem;
		font-size: 3rem;
	}

	.home-testimonial-content {
		text-align: center;
	}

	.home-testimonial-desc {
		font-size: 1rem;
		line-height: 1.5;
	}
}

/* #endregion testimonials */

/* #region blogs */

.blogs-section {
	position: relative;
}

.blog-bg-img {
	position: static;
}

.blog-bg-img img {
	position: absolute;
	z-index: 0;
}

.blog-bg-img-1 {
	top: 0;
	left: 0;
}

.blog-bg-img-2 {
	bottom: 0;
	right: 0;
}

.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; */
	/* border: 1px solid #dadada; */
	overflow: hidden;
	/* background-color: #fff; */
}

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

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

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

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

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

.blog-slide:hover .blog-title {
	color: var(--theme-primary);
}

.blog-content {
	position: relative;
	z-index: 1;
	padding: 1.5rem 0;
	color: #000;
}

.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-date {
	line-height: 1;
	margin-bottom: 1rem;
	display: flex;
	align-items: center;
	gap: 0.3rem;
	color: var(--theme-primary);
	font-size: 1rem;
	font-family: var(--font-family-alt);
}

.blog-date i {
	font-size: 1.5rem;
}

.blog-title {
	font-size: 20px;
	margin-bottom: 0.5rem;
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	font-weight: 700;
	font-family: var(--font-family-alt);
}

.blog-desc-preview {
	font-family: var(--font-family-alt);
	font-size: 1rem;
	color: #616366;
}

.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 (max-width: 390px) {
	.home-services-card {
		max-width: 320px !important;
	}
}

@media (max-width: 340px) {
	.home-services-card {
		max-width: 300px !important;
	}
}

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

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

	.home-services-bg img {
		opacity: 0.4;
	}

	.blog-bg-img img {
		opacity: 0.4;
	}

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

.home-contact {
	position: relative;
}

.contact-img-bg img {
	position: absolute;
	z-index: 0;
	animation: contact-img 4s ease-in-out infinite alternate;
}

@keyframes contact-img {

	0%,
	100% {
		transform: translateY(0);
	}

	50% {
		transform: translateY(2rem);
	}
}

.contact-img-bg-1 {
	bottom: 3rem;
	left: 2rem;
}

.contact-img-bg-2 {
	top: 1rem;
	right: 2rem;
	transition-delay: 2s;
}

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

.home-contact .dark-bg {
	padding-block: var(--section-gap);
	border-radius: 2rem;
	z-index: 1;
}

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

.home-contact-detials-col {
	width: 45%;
	color: hsl(0deg 0% 100% / 60%);
}

.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;
	color: #000;
}

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

.home-contact-links a {
	color: #000;
}

.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%); */
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(15rem, 1fr));
	gap: 1rem;
}

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

.home-contact-form-input {
	padding-block: 1.4rem 0.5rem;
	padding-inline: 1rem;
	border-bottom: 1px solid #eaeaea;
	font-size: 1rem;
	transition: ease 0.25s;
	transition-property: color, border-color;
	background-color: #fff;
	color: #000;
	border-radius: 0.4rem;
	line-height: 1.4;
}

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

.home-contact-form-label {
	position: absolute;
	top: 1.2rem;
	left: 1rem;
	font-size: 1rem;
	line-height: 1;
	/* pointer-events: none; */
	transition: ease 0.25s;
	transform-origin: left;
	opacity: 0.8;
	font-weight: 500;
	color: #333;
}

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

.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(-0.8rem) scale(0.75);
	opacity: 1;
}

.home-contact-form-action .cta-btn {
	width: 100%;
}

@media (min-width: 768px) {
	.contact-form-container .form-field-wide {
		grid-column: span 2;
	}
}

@media (max-width: 768px) {
	.home-contact .dark-bg {
		padding-block: 1.5rem;
		border-radius: 1rem;
	}

	.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-block: 0.5rem;
	background-color: var(--theme-primary-dark);
	color: #fff;
	font-weight: 400;
}

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

.footer-col {
	flex: 1 1 100%;
	border: 1px solid #cccccc85;
	border-radius: 5px;
	padding: 10px 0 20px;
}

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

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

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

.footer-logo img {
	width: 100%;
}

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

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

.footer-social-links a:hover {
	background-color: #fff;
	color: #fff;
}

.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;
	gap: 0.5rem 1rem;
}

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

.career-option {
	min-height: 270px;
	padding: 1rem;
	/* box-shadow: 0.2rem 0.2rem 0.8rem rgb(0 0 0 / 15%); */
	border: 1px solid #eaeaea;
	border-radius: 0.5rem;
	background-color: #fff;
	position: relative;
}

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

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

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

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

	.blog-title {
		text-align: start;
	}

	.career-option {
		min-height: 300px;
	}

	.swiper-button-next,
	.swiper-button-prev {
		display: none;
	}
}

/* #endregion footer */

/* #region Career modal css */
.careers-page-grid {
	display: grid;
	grid-template-columns: 15rem 1fr;
	align-items: start;
	gap: 1.5rem;
}

.career-categories-col {
	/* background-color: #f3f3f3; */
	background-color: #fff;
	border-radius: 0.7rem;
	position: sticky;
	top: calc(var(--header-height) + 2rem);
	/* box-shadow: 0.2rem 0.2rem 0.8rem rgb(0 0 0 / 15%); */
	border: 1px solid #eaeaea;
	overflow: hidden;
}

.career-category-header {
	padding: 0.8rem;
	font-size: 1.2rem;
	font-weight: normal;
	background-color: #dadada;
}

.career-category-form {
	/* display: contents; */
	border-top: 1px solid #eaeaea;
}

.career-category-items {
	padding: 0.8rem;
	display: grid;
	gap: 1rem;
}

.career-category {
	display: grid;
	grid-template-columns: 1.5rem auto;
	gap: 0.5rem;
	position: relative;
	align-items: center;
}

.career-category-checkbox {
	opacity: 0;
	height: 1.5rem;
}

.career-category-label {
	line-height: 1.2;
	user-select: none;
	cursor: pointer;
}

.career-category-label::before,
.career-category-label::after {
	position: absolute;
	top: 0;
	left: 0;
	width: 1.3rem;
	height: 1.3rem;
	border-radius: 0.3rem;
}

.career-category-label::before {
	content: "";
	transition: ease 0.3s;
	border: 1px solid #c5c5c5;
}

.career-category-label::after {
	content: "\2713";
	text-align: center;
	font-weight: 600;
	color: transparent;
	display: grid;
	place-content: center;
	font-size: 1.2rem;
	font-family: monospace;
	pointer-events: none;
}

.career-category-checkbox:checked+.career-category-label::before {
	background-color: var(--theme-primary);
	border-color: var(--theme-primary);
}

.career-category-checkbox:checked+.career-category-label::after {
	color: var(--theme-primary-alt);
}

.career-categories-actions {
	border-top: 1px solid #eaeaea;
	padding: 0.5rem;
	display: flex;
	gap: 0.5rem;
	justify-content: center;
}

.career-category-btn {
	padding: 0.4rem 1rem;
	border-radius: 0.3rem;
	/* border: 2px solid; */
	transition: ease 0.3s;
	font-weight: 400;
}

.career-category-submit-btn {
	background-color: var(--theme-primary);
	color: var(--theme-primary-alt);
	border-color: var(--theme-primary);
}

.career-category-submit-btn:hover {
	background-color: var(--theme-primary-dark);
	/* color: var(--theme-primary); */
}

.career-category-clear-btn {
	background-color: var(--theme-secondary);
	color: var(--theme-secondary-alt);
	border-color: var(--theme-secondary);
}

.career-category-clear-btn:hover {
	background-color: var(--theme-secondary-dark);
	/* color: var(--theme-secondary); */
}

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

.career-option-title {
	font-size: 1.8rem;
	font-weight: 300;
	min-height: 68px;
	margin-bottom: 0.7rem;
}

.career-option-subtitle {
	font-size: 1.1rem;
	font-weight: 300;
	margin-top: 0.5rem;
}

.career-option-category {
	margin-top: 0.3rem;
	font-weight: 600;
	color: var(--theme-primary);
}

.career-option-desc {
	line-height: 1.5;
	font-weight: 300;
}

.career-option-actions {
	margin-top: 1rem;
	position: absolute;
	bottom: 10px;
}

.career-select-btn {
	--content-width: 6.5rem;
}

.career-modal .career-modal-body {
	width: 60rem;
	height: 40rem;
	display: flex;
	flex-direction: column;
}

.career-modal-header {
	margin-bottom: 1rem;
}

.career-modal-container {
	display: flex;
	gap: 1.5rem;
	height: 100%;
	flex: 1 1 0%;
	height: 0;
}

.career-modal-info,
.career-modal-form {
	width: 50%;
}

.career-modal-info {
	padding-right: 1.5rem;
}

.career-modal-title {
	margin-bottom: 0.5rem;
	font-weight: 500;
}

.contact-form-row {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 0.8rem;
	margin-bottom: 0.8rem;
}

.contact-form-wide-col {
	grid-column: 1 / -1;
}

.contact-form-label {
	font-weight: 500;
	font-size: 0.9rem;
}

.contact-form-input {
	border: 1px solid #dadada;
	border-radius: 0.3rem;
	padding: 0.4rem 0.8rem;
}

/* #endreion */

#career-nav .swiper-button-prev,
#career-nav .swiper-button-next {
	width: 50px;
	height: 50px;
	background-color: white;
	font-size: 10px;
	border: 1px solid #ccc;
	border-radius: 50%;
}

#career-nav .swiper-button-prev::after,
#career-nav .swiper-button-next::after {
	font-size: 1rem;
}

@media only screen and (min-width: 1024px) and (max-width: 1200px) {
	.career-option {
		min-height: 350px;
	}
}

.home-testimonial-quote i {
	font-size: 4rem;
	color: var(--theme-primary);
}

.home-volunteer {
	position: relative;
	background-image: url("https://ld-wp73.template-help.com/wordpress/prod_30160/v4/wp-content/uploads/2020/11/Rectangle-99-3.png");
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
	height: 80vh;
}

.volunteer-title {
	color: #fff;
	font-size: 4rem;
	max-width: 800px;
	line-height: 64px;
	font-weight: 500;
	margin-bottom: 15px;
	font-family: var(--font-family-alt);
}

.volunteer-sub-text {
	color: #fff;
	font-size: 1.5rem;
	max-width: 650px;
	margin-bottom: 30px;
}

.volunteer-btn {
	border-radius: 50px;
}

.numbers-header {
	margin-bottom: 25px;
}

.numbers-header .section-title {
	max-width: 750px;
	margin: auto;
}

.home-volunteer-title {
	padding: 0 2rem;
}

.home-about-mobile-view-image {
	display: none;
}

.about-title {
	max-width: 75%;
}

.home-contact-details-col {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
	padding: 10px;
}

.contact-image {
	margin: 0;
	text-align: center;
}

.contact-image img {
	width: 100%;
	max-width: 100%;
	height: auto;
	display: block;
	border-radius: 8px;
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.footer-row {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	gap: 20px;
}

.footer-col {
	flex-basis: 30%;
	text-align: center;
}

.profile-address {
	margin: auto;
	font-size: 1.2rem;
	line-height: 30px;
	color: #616366;
	max-width: 80%;
	text-align: center;
}

.footer-contact-items {
	font-size: 1rem;
	text-transform: lowercase;
}

.footer-col a {
	display: flex;
	align-items: center;
	justify-content: center;
}

.footer-title {
	padding: 0.5rem 1.5rem;
	font-weight: 500;
	font-size: 1.2rem;
}

.footer-social-links {
	padding: 0.5rem 1.5rem;
	justify-content: center;
}

.footer-logo {
	max-width: 250px;
	margin: auto;
}

.home-volunteer::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: #0e0e0e40;
	z-index: 1;
}

.home-volunteer>.container {
	position: relative;
	z-index: 9;
	height: 100%;
}

.home-testimonial-content {
	max-width: 70%;
	margin: auto;
}

.volunteer-content-box {
	position: absolute;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
}

.footer-header {
	text-align: center;
	padding: 0 0 35px 0;
	font-size: 1.3rem;
	line-height: 1.5;
}

.footer-header span {
	font-weight: 600;
	font-size: 1.5rem;
}

.copy-footer .footer-col {
	border: none;
}

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

.copy-footer .pvc-col .footer-pvc {
	display: flex;
	justify-content: center;
	gap: 10px;
}

.copy-footer .footer-pvc .active {
	color: #e2e1e1;
}

.copy-footer .pvc-col .footer-pvc a:hover {
	font-weight: 500;
	color: #fff;
}

.floating-whatsapp {
	position: fixed;
	right: 20px;
	bottom: 50px;
	width: 70px;
	height: 70px;
	background: white;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	box-shadow: 0 18px 66px rgba(0, 0, 0, 0.08);
	overflow: hidden;
	z-index: 999999999;
}

.floating-whatsapp .floating-box {
	display: flex;
	justify-content: center;
	align-items: center;
	color: #fff;
	background-color: #58ed6d;
	font-size: 3rem;
	transition: 0.3s;
	width: 100%;
}

.floating-whatsapp:hover .floating-box {
	color: #58ed6d;
	background-color: #fff;
}

.about-desc-article {
	margin: 50px 0 10px;
	border: 1px solid #dadada;
	padding: 25px 50px;
	border-radius: 10px;
}

.about-desc-article .noDonHeading {
	font-weight: 900;
	font-size: 36px;
	text-align: center;
	margin-bottom: 25px;
}

.about-desc-article p {
	position: relative;
	margin-bottom: 10px;
	font-size: 1.2rem;
	font-weight: 500;
}

.about-desc-article p::before {
	content: "";
	left: -35px;
	top: 0;
	/* transform: translateY(-50%); */
	width: 30px;
	height: 30px;
	position: absolute;
	background-image: url("../images/about/hand.png");
	background-repeat: no-repeat;
	background-position: center;
	background-size: contain;
}

.footer-col-a {
	text-align: start;
	flex-basis: 30%;
}

.footer-col-b {
	text-align: center;
	justify-content: center;
	align-items: center;
	flex-basis: 35%;
}

.footer-col-c {
	text-align: end;
	flex-basis: 30%;
}

@media only screen and (max-width: 1200px) {
	.home-banner-title {
		font-size: 4rem;
		line-height: 64px;
	}
}

@media only screen and (min-width: 320px) and (max-width: 768px) {
	.header-nav-list>li>a {
		color: #000;
	}

	.main-header {
		position: sticky;
		left: unset;
	}

	.volunteer-title {
		font-size: 3rem;
		line-height: 50px;
		margin-bottom: 15px;
	}

	.home-about-img {
		padding-inline: unset;
		padding: unset;
	}

	.home-about-img img {
		padding: 20px;
	}

	.home-about-mobile-view-image {
		display: flex;
		max-width: 100%;
	}

	.home-about-tab-view-image {
		display: none;
	}

	.header-nav {
		height: 100vh;
	}

	.header-contact-item {
		display: none;
	}

	.nav-active>a::before,
	.header-nav-list>li:hover>a::before {
		bottom: 0;
	}

	.footer-row {
		justify-content: center;
		text-align: center;
	}

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

	.main-header {
		background: white;
	}

	.social-links a {
		color: #fff !important;
		/* border: 1px solid #fff !important; */
	}

	.home-banner-slide::before {
		padding: 0;
	}

	.home-banner-bg {
		position: static !important;
	}

	.home-banner-wrapper {
		position: static;
		background-color: #67bdb0;
	}

	.home-banner-content {
		text-align: center;
		padding: 20px 0;
	}

	.home-banner-title {
		font-size: 24px;
		line-height: 30px;
		text-align: center;
		color: #000;
		text-shadow: none;
	}

	.about-title,
	.home-about-desc,
	.profile-address,
	.home-testimonial-content {
		max-width: 100%;
	}

	.home-testimonial-content {
		padding: 0;
	}

	.home-whyus-title {
		font-size: 3rem;
		font-weight: 500;
		text-align: center;
	}

	.home-whyus-grid {
		grid-template-columns: repeat(auto-fill, minmax(12rem, 1fr));
	}

	.home-volunteer {
		height: 70vh;
	}

	.footer-col a {
		justify-content: center;
	}

	.footer-title {
		text-align: center;
	}

	.footer-logo {
		margin: auto;
	}

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

	.header-menu-open-icon {
		color: #000;
	}

	.home-contact-row {
		flex-direction: column-reverse;
	}

	.header-nav {
		justify-content: flex-start;
	}

	.copy-footer {
		gap: 5px;
	}

	.special-footer-col {
		display: flex !important;
	}

	.pvc-col {
		display: none;
	}
}

@media only screen and (min-width: 320px) and (max-width: 576px) {

	/* .home-services-title {
		padding: 0;
	} */
	.about-desc-article {
		padding: 25px 20px 25px 50px;
	}

	.about-desc-article .noDonHeading {
		font-size: 26px;
	}

	.about-desc-article p {
		line-height: 1.6rem;
		margin-bottom: 10px;
	}

	.home-services-title a {
		min-height: unset;
	}

	.volunteer-content-box {
		left: unset;
	}

	.career-modal-body {
		overflow-y: scroll;
	}

	.career-modal-container {
		flex-direction: column;
	}

	.career-modal-info,
	.career-modal-form {
		width: 100%;
	}

	.career-modal-form {
		padding: 30px 0;
	}

	.home-banner-swiper .swiper-wrapper {
		background-color: #67bdb0;
	}

	.home-banner-slide img {
		height: 30vh;
	}

	.header-nav {
		padding-left: 15px;
	}

	.floating-whatsapp {
		width: 55px;
		height: 55px;
	}

	.floating-whatsapp .floating-box {
		font-size: 2.6rem;
	}
}

.animate-number {
	opacity: 0;
	transform: translateY(20px);
	transition: opacity 0.5s ease-out, transform 0.5s ease-out;
}

.animate-number.visible {
	opacity: 1;
	transform: translateY(0);
}