/* #region setup */

:root {
	--text-color: #000;
	--dark-color: #5f6063;
	--theme-primary: #046738;
	--theme-primary-dark: #0a2e72;
	--theme-primary-light: #79a8ff;
	--theme-primary-bg-light: #dbe7ff;
	--theme-primary-bg-lighter: #f4f8ff;
	--theme-primary-fade: rgba(33, 78, 163, 0.3);
	--theme-primary-alt: #fff;
	--theme-secondary: #ffba00;
	--theme-secondary-alt: #000;
	--container-width: 1200px;
	--container-sm-width: 880px;
	--container-lg-width: 1440px;
	--column-gutter: 15px;

	/* https://angel-rs.github.io/css-color-filter-generator/ */
	/* --primary-filter: brightness(0) saturate(100%) invert(20%) sepia(99%) saturate(2341%) hue-rotate(184deg) brightness(95%) contrast(101%);
	--secondary-filter: brightness(0) saturate(100%) invert(26%) sepia(51%) saturate(5261%) hue-rotate(330deg) brightness(76%) contrast(111%); */
	--white-filter: brightness(0) saturate(100%) invert(100%);
	--black-filter: brightness(0) saturate(100%) invert(0%);
	--header-height: 90px;
	--header-height-min: 60px;
	--logo-width: 65px;
	--section-gap: 4rem;
	--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: 500; */
	/* padding-top: var(--header-height); */
	/* background-color: var(--theme-primary-bg-lighter); */
}

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

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

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

button {
	cursor: pointer;
}

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

ul,
ol {
	list-style: none;
}

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

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

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

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

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

.section-subtitle {
	font-weight: 800;
	/* letter-spacing: 2px; */
	font-size: 1.3rem;
	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: 1rem;
}

.section-desc {
	margin-top: 1.5rem;
	max-width: 800px;
	margin-inline: auto;
	font-size: 1.3rem;
	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-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-bg-light);
	color: #000;
	text-align: center;
}

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

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

.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: 800;
	font-size: 1.8rem;
	line-height: 1.2;
	/* padding-bottom: 1.5rem; */
	position: relative;
}

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

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

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

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

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

.scale-img {
	position: relative;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

/* #endregion layout */

/* #region header */

.header-container {
	position: fixed;
	top: 0;
	width: 100%;
	z-index: 10;
}

.top-header-row {
	display: flex;
	align-items: center;
	padding-block: 0.3rem;
	gap: 2rem;
	height: 3rem;
}

.header-contact-links {
	display: flex;
	align-items: center;
	margin-left: auto;
	gap: 2rem;
}

.header-contact-item {
	display: flex;
	align-items: center;
	gap: 1rem;
}

.header-contact-item i {
	font-size: 1.5em;
}

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

.home-page .main-header {
	color: #5f6063;
	background-color: #fff;
}

/* .main-header-container {
	height: 100px;
} */

.scroll-down .main-header {
	box-shadow: 0 0 1rem rgba(0, 0, 0, 0.1);
	background-color: #fff;
	color: #000;
}

.main-header-row {
	display: flex;
	align-items: center;
	height: var(--header-height);
	gap: 2rem;
	padding-block: 1rem;
	transition: linear 0.3s height;
	transition-delay: 0.1s;
}

.header-logo {
	/* width: var(--logo-width); */
	height:90px; /*calc(100% + 3rem);*/
	padding-block: 0.2rem;
	padding: 0.5rem;
	background-color: #fff;
	margin-top: -1rem;
	align-self: baseline;
	transition: ease 0.3s height;
}

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

.header-logo img {
	width: 100%;
	height: 100%;
	object-fit: contain;
	object-position: center left;
	/* object-position: center; */
	transition: ease 0.3s height;
}

.header-nav {
	position: relative;
	margin-left: auto;
	height: 100%;
}

.header-nav-list {
	display: flex;
	/* align-items: center; */
	gap: 1.5rem;
	height: 100%;
	text-transform: uppercase;
	font-weight: 600;
}

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

.header-nav-list > li > a::before {
	position: absolute;
	bottom: 0;
	width: 100%;
	height: 0.4rem;
	background-color: #046738; /*var(--theme-primary);*/
	opacity: 0;
	transition: inherit;
	transition-property: opacity;
}

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

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

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

.header-nav-dropdown-list {
	position: absolute;
	top: 100%;
	left: 0;
	width: 100%;
	min-width: 18rem;
	background-color: #fff;
	border-top: 0.4rem solid var(--theme-primary);
	transform: translateY(0.5rem);
	opacity: 0;
	transition: ease 0.3s transform, opacity;
	line-height: 1.5;
	pointer-events: none;
}

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

.header-nav-dropdown:hover .header-nav-dropdown-list {
	transform: translateY(-0.4rem);
	opacity: 1;
	z-index: 1;
	pointer-events: all;
}

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

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

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

	.scroll-down .main-header {
		/* margin-bottom: calc(var(--header-height) - var(--header-height-min)); */
		color: var(--dark-color);
	}

	.scroll-down .main-header-row {
		/* height: var(--header-height-min); */
	}

	.header-nav-list > li > a::before {
		content: "";
	}
}

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

	.main-header-row {
		height: var(--header-height);
	}

	.header-logo {
		padding-block: 0.5rem;
		height: 70px !important;
	}

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

	.resp-menu-btn {
		font-size: 1.5rem;
	}

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

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

/* #endregion header */

/* #region banner */

.home-banners {
	/* margin-top: calc(var(--header-height) * -1); */
}

.home-banner-swiper {
}

.home-banner-slide {
	position: relative;
	height: calc(100vh - 150px);
	min-height: 750px;
}

.home-banner-bg,
.home-banner-wrapper {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	/*object-fit: cover;*/
}

.home-banner-bg {
	z-index: 0;
}

.home-banner-wrapper {
	z-index: 1;
	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(--theme-primary-dark);
	z-index: -1;
	opacity: 0;
}

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

.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(--theme-secondary);
	border: 2px solid var(--theme-secondary);
	color: var(--theme-secondary-alt);
	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;
}

.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 {
		height: calc(100vh - var(--header-height));
		min-height: auto;
	}

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

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

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

/* #endregion banner */

/* #region services */

.home-services-swiper {
	margin-top: 3rem;
}

.home-services-grid {
	display: grid;
	gap: 1.5rem;
	grid-template-columns: repeat(4, 1fr);
	margin-top: 3rem;
}

.home-services-item {
	border: 1px solid #dadada;
	background-color: #fff;
	/* box-shadow: 0 10px 40px -10px rgb(0 64 128 / 20%); */
	overflow: hidden;
	border-radius: 1.5rem;
}

.home-services-icon {
	font-size: 4rem;
	color: var(--theme-primary);
	line-height: 1;
	margin-bottom: 1rem;
}

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

.home-services-content {
	padding: 1.5rem;
	text-align: center;
}

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

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

.home-services-text {
	line-height: 1.5;
	margin-bottom: 1rem;
}

.home-services-link {
	/* text-decoration: underline;
	text-decoration-color: var(--theme-primary);
	text-decoration-thickness: 2px;
	text-underline-offset: 6px; */

	background-color: var(--theme-primary);
	border: 2px solid var(--theme-primary);
	color: var(--theme-primary-alt);
	display: grid;
	place-content: center;
	width: 2.7rem;
	height: 2.7rem;
	margin-inline: auto;
	border-radius: 50%;
	font-size: 1.5rem;
	margin-top: 1rem;
}

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

@media (max-width: 768px) {
	.home-services-grid {
		grid-template-columns: 1fr;
	}
}

/* #endregion services */

/* #region about */

.home-about {
	overflow: hidden;
}

.home-about-row {
	display: flex;
	gap: 2rem;
	position: relative;
}

.home-about-row::before {
	content: "";
	position: absolute;
	top: -2rem;
	right: -3rem;
	width: 9rem;
	height: 8rem;
	z-index: 0;
	background-image: var(--bg-img);
	background-size: auto;
	background-repeat: no-repeat;
}

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

.home-about-img-col {
	display: flex;
	gap: 1.5rem;
	flex-wrap: wrap;
}

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

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

.home-about-img-lg {
	flex: 0 0 100%;
}

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

@media (min-width: 768px) {
	.home-about-text-col,
	.home-about-img-col {
		width: 50%;
	}
}

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

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

/* #endregion about */

/* #region counter */

.home-counter-grid {
	display: grid;
	gap: 1.5rem;
	grid-template-columns: repeat(4, 1fr);
	text-align: center;
}

.home-counter-item {
	position: relative;
}

.home-counter-icon {
	position: absolute;
	top: 0;
	left: 50%;
	transform: translate(-50%, -50%);
	background-color: var(--theme-primary);
	color: var(--theme-primary-alt);
	border: 2px solid var(--theme-primary-alt);
	width: 4rem;
	height: 4rem;
	border-radius: 50%;
	display: grid;
	place-content: center;
	font-size: 2rem;
	box-shadow: 3px 3px 3px rgb(0 0 0 / 40%);
}

.home-counter-content {
	padding: 1.5rem;
	padding-top: 3rem;
	background-color: var(--theme-primary-alt);
}

.home-counter-title {
}

.home-counter-number {
	font-size: 2rem;
}

@media (max-width: 768px) {
	.home-counter-grid {
		grid-template-columns: 1fr 1fr;
		row-gap: 3rem;
	}

	.home-counter-title {
		width: 6rem;
		margin-inline: auto;
		text-align: center;
	}
}

/* #endregion counter */

/* #region testimonials */

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

.home-testimonial-slide {
	position: relative;
	padding-top: 3rem;
	height: auto;
}

.home-testimonial-img {
	position: absolute;
	top: 0.5rem;
	left: 4rem;
	width: 5rem;
	height: 5rem;
	border-radius: 50%;
	border: 0.5rem solid #fff;
	padding: 0.5rem;
	overflow: hidden;
	box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
	background-color: #fff;
}

.home-testimonial-content {
	padding: 4rem 4rem 3rem;
	background-color: var(--theme-primary-bg-light);
	height: 100%;
}

.home-testimonial-text {
	font-style: italic;
	opacity: 0.7;
}

.home-testimonial-name {
	margin-top: 1.5rem;
	font-weight: 900;
	text-transform: uppercase;
	margin-bottom: 0.5rem;
}

.home-testimonial-position {
	color: inherit;
	font-size: 1rem;
}

.home-testimonial-position::before {
	width: 1.5rem;
	margin: 0;
	margin-right: 1rem;
}

.home-testimonial-pagination {
	position: static;
	margin-top: 1rem;
}

.home-clients-swiper {
	margin-top: 3rem;
	padding: 0.5rem;
	margin-inline: -0.5rem;
}

.home-client-slide {
	/* box-shadow: 0 0 0.5rem rgba(0, 0, 0, 0.2); */
	border-radius: 0.5rem;
	border: 1px solid #dadada;
}

.home-client-slide::before {
	padding-top: 60%;
}

.home-client-slide img {
	padding: 0.5rem;
}

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

/* #endregion testimonials */

/* #region blogs */

.home-blogs-swiper {
	margin-top: 3rem;
	padding: 1rem;
	margin-inline: -1rem;
}

.home-blog-slide {
	box-shadow: 1px 1px 8px rgba(0, 0, 0, 0.2);
	border-radius: 0.5rem;
	overflow: hidden;
	background-color: #fff;
}

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

.home-blog-content {
	padding: 1rem;
}

.home-blog-title {
	font-size: 1.3rem;
	font-weight: 600;
	margin-bottom: 0.3em;
	line-height: 1.3;
	/* line clamp 2 */
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
	text-overflow: ellipsis;
}

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

.home-blog-meta {
	margin-bottom: 0.5rem;
	font-size: 0.85rem;
	color: #555;
	font-weight: 500;
}

.home-blog-text {
	line-height: 1.3;
	font-size: 0.95rem;
}

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

/* #endregion blogs */

/* #region contact */

.home-contact .section-header {
}

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

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

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

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

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

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

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

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

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

.home-contact-form-col {
	flex: auto;
	/* margin-top: 7rem; */
}

.home-contact-tags {
	display: flex;
	/* flex-wrap: wrap; */
	gap: 0.5rem;
	padding-bottom: 0.5rem;
	margin-top: 1.5rem;
	overflow: hidden;
	overflow-x: auto;
}

.home-contact-tags li {
	position: relative;
}

.home-contact-tags li.active::before {
	content: "";
	position: absolute;
	top: 100%;
	left: 2rem;
	transform: translate(-50%, 0);
	border: 0.5rem solid transparent;
	border-top-color: var(--theme-primary);
}

.home-contact-tags a {
	display: block;
	padding: 0.5rem 1.2rem;
	border-radius: 5rem;
	line-height: 1.5;
	background-color: #eaeaea;
	position: relative;
}

.home-contact-tags .active a {
	background-color: var(--theme-primary);
	color: var(--theme-primary-alt);
}

.home-contact-tag-details {
	margin-bottom: 2rem;
	padding: 1rem;
	border: 1px solid #dadada;
	border-radius: 1rem;
}

.home-contact-tag-details .home-contact-links {
	margin-top: 0.5rem;
}

.home-contact-footer {
	padding: 1rem;
	border-radius: 1rem;
	background-color: var(--theme-primary);
	color: var(--theme-primary-alt);
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.home-contact-footer .section-desc {
	margin-top: 0;
	/* margin-left: 0; */
}

.home-contact-footer i {
	font-size: 2rem;
	margin-right: 0.5rem;
}

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

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

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

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

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

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

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

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

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

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

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

	.contact-form-container {
		margin: 0;
	}

	.home-contact-form-field {
	}

	.home-contact-form-input {
	}

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

	.home-contact-form-label {
	}

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

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

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

/* #endregion contact */

/* #region footer */

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

.page-footer-row {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding-block: 1rem;
}

.page-footer-text {
	font-size: 0.9rem;
}

.social-links {
	display: flex;
	gap: 1rem;
	font-size: 1.1rem;
}

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

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

/* #endregion footer */
