/* #region setup */

:root {
	--text-color: #000;
	--dark-color: #141414;
	--theme-primary: #21b46d;
	--theme-primary-dark: #297372;
	--theme-primary-light: #6dce9f;
	--theme-primary-bg-light: #eafff5;
	--theme-primary-bg-lighter: #f6fffa;
	--theme-primary-fade: rgba(33, 180, 109, 0.3);
	--theme-primary-alt: #fff;
	--theme-secondary: #383b3e;
	--theme-secondary-alt: #fff;
	--container-width: 1200px;
	--container-sm-width: 1020px;
	--container-lg-width: 1440px;
	--column-gutter: 20px;

	/* https://angel-rs.github.io/css-color-filter-generator/ */
	--primary-filter: brightness(0) saturate(100%) invert(58%) sepia(88%) saturate(2922%) hue-rotate(113deg) brightness(97%) contrast(74%);
	--secondary-filter: brightness(0) saturate(100%) invert(21%) sepia(4%) saturate(781%) hue-rotate(169deg) brightness(97%) contrast(91%);
	--white-filter: brightness(0) saturate(100%) invert(100%);
	--black-filter: brightness(0) saturate(100%) invert(0%);
	--header-height: 105px;
	--logo-width: 250px;
	--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;
	/* overflow-y: scroll; */
}

body {
	color: var(--dark-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: 80px;
		--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-light);
}

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

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

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

.section-desc {
	max-width: 700px;
	margin-inline: auto;
	line-height: 1.5;
	margin-top: 1rem;
}

.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 {
	inset-inline-start: 0;
	border-radius: 0 5px 5px 0;
}

.banner-swiper-nav.swiper-button-next {
	inset-inline-end: 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-fade);
	color: #000;
	text-align: center;
}

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

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

.section-header-crumbs span {
	display: inline-block;
	max-width: 400px;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.section-header-crumbs span:not(:last-child) {
	margin-inline-end: 0.5em;
}

.section-header-crumbs span:not(:last-child)::after {
	font: var(--icon-font);
	content: "\f105";
	font-size: 1em;
	margin-inline-start: 0.5em;
	display: inline-block;
}

[dir="rtl"] .section-header-crumbs span:not(:last-child)::after {
	content: "\f104";
}

.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 5rem;
	font-size: 1.25rem;
	line-height: 1.4;
	background-color: var(--theme-primary);
	color: var(--theme-primary-alt);
	position: relative;
	padding-inline-end: 8rem;
	overflow: hidden;
}

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

.cta-btn::before,
.cta-btn::after {
	position: absolute;
	top: 0;
	inset-inline-end: 0;
	bottom: 0;
	padding: 1rem;
	width: 4rem;
}

.cta-btn::after {
	content: "\f061";
	font: var(--icon-font);
	font-size: 1.75rem;
	display: grid;
	place-content: center;
}

.cta-btn::before {
	content: "";
	background-color: #fff;
	opacity: 0.5;
}

.cta-btn:hover::after {
	animation: cta-spin 1s ease-in-out alternate;
	/* animation-iteration-count: 2; */
}

@keyframes cta-spin {
	0% {
		transform: rotateX(0deg);
	}
	100% {
		transform: rotateX(720deg);
	}
}

.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-inline-start: 1rem;
	padding-inline-end: 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;
	inset-inline-end: 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: 2rem;
	/* text-align: center; */
	position: relative;
}

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

.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: 400;
	font-size: 2.2rem;
	line-height: 1;
	/* padding-bottom: 3.5rem; */
	position: relative;
}

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

.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;
	inset-inline-start: -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;
}

.bg-img {
	background-image: var(--bg-img);
}

.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;
	inset-inline-start: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

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

.padded-swiper {
	padding: var(--column-gutter);
	margin-inline-start: calc(var(--column-gutter) * -1);
	margin-inline-end: 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.15rem; */
	}

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

	.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-end-start-radius: inherit;
		border-end-end-radius: inherit;
		overflow: hidden;
	}

	.glightbox-container.glightbox-default .gslide-media {
		border-start-start-radius: inherit;
		border-start-end-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 */

.contact-header {
	background-color: var(--theme-primary);
	color: var(--theme-primary-alt);
	padding-block: 0.5rem;
	/* font-size: 0.9rem; */
}

.contact-header-row {
	display: flex;
	align-items: center;
	justify-content: flex-end;
}

.top-header {
	position: sticky;
	top: 0;
	inset-inline-start: 0;
	inset-inline-end: 0;
	/* width: 100vw; */
	z-index: 50;
	transition: ease 0.3s;
	transition-property: background-color, box-shadow;
	/* background-color: rgba(255, 255, 255, 0.7); */
	box-shadow: 0 0 0.5rem rgba(0, 0, 0, 0.15);
	background-color: #fff;
}

.scroll-down .top-header {
}

.top-header-row {
	display: flex;
	align-items: center;
	padding-block: 0.5rem;
	height: var(--header-height);
}

.header-logo {
	width: var(--logo-width);
	margin-inline-end: auto;
}

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

.header-contact-links {
	display: flex;
	gap: 2rem;
}

.header-contact-item {
	/* display: grid; */
	/* grid-template-columns: 1fr auto; */
	align-items: center;
	line-height: 1.3;
	/* font-size: 0.8rem; */
}

.header-contact-item i {
	grid-row: span 2;
	font-size: 1.2rem;
	/* color: var(--theme-primary); */
	vertical-align: middle;
}

.header-contact-title {
	color: var(--theme-primary);
}

.header-contact-item a {
	/* font-size: 1.2rem; */
	font-weight: 500;
}

.header-language-picker {
	margin-inline-start: 2rem;
	display: flex;
	/* grid-template-columns: 1fr 1fr; */
	text-align: center;
	gap: 0.2rem;
	/* border: 2px solid var(--theme-secondary); */
	border-radius: 5rem;
	background-color: #fff;
	color: #000;
	padding: 0.2rem;
	position: relative;
}

.header-language-check {
	position: absolute;
	top: 0;
	opacity: 0;
	pointer-events: none;
	visibility: hidden;
}

.header-language-item {
	padding: 0.2rem 0.7rem;
	border-radius: inherit;
	border: 1px solid transparent;
	transition: ease 0.25s;
	transition-property: background-color, border-color, color;
	cursor: pointer;
}

.header-language-item:hover {
	background-color: var(--theme-primary-bg-light);
	/* color: var(--theme-primary-alt); */
	border-color: var(--theme-primary-light);
}

.header-language-item.header-lang-selected {
	background-color: var(--theme-primary);
	color: var(--theme-primary-alt);
	border-color: var(--theme-primary);
}

.header-resp-action {
	margin-inline-start: 2rem;
}

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

.header-nav-links {
	display: flex;
	gap: 0.5rem 1.2rem;
	color: #000;
}

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

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

.header-nav-dropdown > a::after {
	content: "\f107";
	font: var(--icon-font);
	display: inline-block;
	font-size: 1.1rem;
	vertical-align: baseline;
	margin-inline-start: 0.2rem;
}

.header-nav-dropdown-links {
	padding-inline-start: 1rem;
	margin-bottom: 1rem;
	margin-top: 0.5rem;
	border-inline-start: 3px solid var(--theme-primary);
}

.header-nav-social-links {
	display: flex;
	gap: 0.5rem;
	font-size: 1.2rem;
}

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

.contact-header .header-nav-social-links {
	margin-inline-start: 2rem;
}

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

	.header-nav-links > li {
		padding-block: 0.5rem;
	}

	.header-nav-dropdown-links {
		position: absolute;
		top: 100%;
		opacity: 0;
		pointer-events: none;
		transition: ease 0.25s;
		transition-property: opacity;
		background-color: #fff;
		box-shadow: 0 0 0.5rem rgba(0, 0, 0, 0.15);
		margin-top: 0;
		min-width: 15rem;
		padding-block: 0.5rem;
		padding-inline-end: 0.5rem;
	}

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

	.header-nav-dropdown-links .header-nav-dropdown-links {
		inset-inline-start: 100%;
		top: 0;
	}

	.header-nav-dropdown-links .header-nav-dropdown > a::after {
		content: "\f105";
		position: absolute;
		inset-inline-end: 0.5rem;
	}
}

@media (max-width: 768px) {
	.header-contact-links {
		display: none;
	}

	.header-nav {
		position: fixed;
		z-index: 50;
		top: 0;
		inset-inline-end: 0;
		height: 100%;
		width: 30rem;
		max-width: 100%;
		background-color: #fff;
		padding: 2rem;
		box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
		overflow-y: scroll;
		transform: translateX(100%);
		transition: ease 0.3s;
		transition-property: transform;
	}

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

	.header-nav .resp-menu-btn {
		position: absolute;
		top: 1.5rem;
		inset-inline-end: 1.5rem;
	}

	.header-nav-links {
		margin-bottom: 1rem;
		font-size: 1.2rem;
		flex-direction: column;
	}

	.header-nav-links li {
		margin-bottom: 0.3rem;
	}

	.header-nav-dropdown-links {
		display: none;
	}
}

/* #endregion header */

/* #region banners */

.home-banners {
	position: relative;
	/* min-height: 650px; */
	height: calc(100vh - var(--header-height) - 60px);
	/* height: 700px; */
}

.banner-bg {
	position: absolute;
	top: 0;
	inset-inline-start: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	opacity: 0.05;
	z-index: 0;
}

.banner-swiper {
	position: relative;
	z-index: 1;
	height: 100%;
}

.banner-container {
	height: 100%;
	position: relative;
	z-index: 2;
	/* z-index: 0; */
	display: flex;
	align-items: center;
}

.banner-content {
	/* height: 100%; */
	display: grid;
	min-height: 50%;
	align-content: center;
	width: 550px;
	max-width: 45vw;
	justify-items: start;
	padding: 2rem;
	background-color: rgb(255 255 255 / 90%);
	/* box-shadow: 0 0 1rem rgba(0, 0, 0, 0.15); */
	border-radius: 1rem;
}

.banner-subtitle {
	font-size: 2rem;
	font-weight: 400;
}

.banner-title {
	font-size: 2.5rem;
	font-weight: 400;
	line-height: 1.2;
	margin-bottom: 0.6em;
	/* mix-blend-mode: difference; */
	/* background-clip: text; */
	/* -webkit-background-clip: text; */
	/* -webkit-text-fill-color: transparent; */
}

.banner-content .hlt {
	font-weight: 500;
}

.banner-btn {
	display: inline-block;
	padding: 0.5rem 2.5rem;
	font-size: 1.4rem;
	border-radius: 5rem;
	line-height: 1.5;
	font-weight: 600;
	background-color: var(--theme-primary);
	color: var(--theme-primary-alt);
	border: 2px solid var(--theme-primary);
	/* margin-top: 2rem; */
	transition: ease 0.25s;
	transition-property: color, background-color;
}

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

.banner-img {
	position: absolute;
	top: 0;
	inset-inline-start: 0;
	width: 100%;
	/* max-width: 60vw; */
	/* height: 90%; */
	object-fit: cover;
	z-index: 1;
	/* mask-image: var(--banner-mask); */
	/* mask-repeat: no-repeat; */
	/* mask-size: contain; */
	/* -webkit-mask-image: var(--banner-mask); */
	/* -webkit-mask-repeat: no-repeat; */
	/* -webkit-mask-size: contain; */
}

.banner-slide-img-label {
	position: absolute;
	height: 100%;
	width: 750px;
	max-width: 60vw;
	max-height: 60vw;
	top: 0;
	inset-inline-end: 0;
	display: grid;
	align-content: end;
	font-size: 3rem;
	transform: rotate(50deg);
	text-align: center;
	padding: 6rem;
	color: var(--theme-primary);
	z-index: 1;
}

@media (max-width: 768px) {
	.home-banners {
		/* height: auto; */
		/* min-height: auto; */
	}

	.banner-container {
		/* padding: 0; */
		/* padding-top: 20rem; */
		justify-content: center;
		text-align: center;
	}

	.banner-img {
		height: 100%;
		/* width: 20rem; */
		max-width: none;
		/* position: static; */
	}

	.banner-slide-img-label {
		height: 20rem;
		width: 20rem;
		max-width: none;
		max-height: none;
		padding: 1.5rem;
		font-size: 1.8rem;
		top: -2rem;
	}

	.banner-content {
		width: 80%;
		/* min-height: 40%; */
		max-width: none;
		justify-items: center;
	}

	.banner-title {
		font-size: 1.4rem;
	}

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

	.banner-btn {
		font-size: 0.9rem;
	}
}

/* #endregion banners */

/* #region about */

.home-about {
	background-image: var(--bg-img);
	position: relative;
}

.home-about::before {
	content: "";
	position: absolute;
	inset: 0;
	background-color: #fff;
	opacity: 0.95;
}

.home-about-row {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 0 2rem;
	position: relative;
	margin-block: 1.5rem;
	align-items: center;
	align-content: center;
}

.home-about-row::before {
	content: "";
	inset: -1.5rem;
	background-color: #fff;
	position: absolute;
	z-index: 0;
}

.home-about-row > * {
	position: relative;
	z-index: 1;
}

.home-about-row .section-header {
	align-self: flex-end;
}

.home-about-row .home-about-text-col {
	align-self: flex-start;
}

.home-about-text-col,
.home-about-img-col {
	/* flex: 1 1 50%; */
}

.home-about-text-col .section-desc {
	line-height: 1.6;
	font-size: 1.1rem;
	margin-top: 0;
}

.home-about-text-col .section-desc:not(:first-child) {
	margin-top: 1.5rem;
}

.home-about-btn {
	font-size: 1.2rem;
	margin-top: 1.5rem;
}

.home-about-img-col {
	padding: 2.5rem;
	position: relative;
	grid-row: span 2;
}

.home-about-img-col::before {
	content: "";
	position: absolute;
	top: 0;
	inset-inline-start: 0;
	width: 75%;
	height: 50%;
	z-index: 1;
	background-color: var(--theme-primary);
	/* animation: home-about-bg 4s ease-in-out infinite forwards; */
}

@keyframes home-about-bg {
	0%,
	100% {
		transform: translateY(-0.5rem);
	}
	50% {
		transform: translateY(0.5rem);
	}
}

.home-about-img-col::after {
	content: "";
	position: absolute;
	top: 0;
	inset-inline-end: 0;
	width: 50%;
	height: 100%;
	z-index: 0;
	background-image: radial-gradient(circle at 2px 2px, #cacaca 2px, transparent 0);
	background-size: 0.8rem 0.8rem;
}

.home-about-img {
	width: 100%;
	z-index: 2;
	position: relative;
}

.home-about-img-content {
	position: absolute;
	bottom: 3.5rem;
	inset-inline-end: 0;
	text-align: center;
	display: grid;
	/* gap: 1rem; */
	background-color: var(--dark-color);
	color: #fff;
	padding: 1.5rem 1.5rem;
	z-index: 3;
	/* align-items: baseline; */
	animation: home-about-bg 4s ease-in-out infinite forwards;
}

.home-about-img-text {
	font-size: 1.3rem;
	line-height: 1.3;
}

.home-about-img-num {
	font-size: 2.7rem;
	font-weight: 700;
	color: var(--theme-primary);
	line-height: 1.3;
}

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

	.home-about-btn {
		font-size: 1rem;
	}
}

/* #endregion about */

/* #region products */

.home-products-swiper {
	padding-inline: 1.2rem;
}

.home-products-slide {
	position: relative;
	height: auto;
	padding-inline-start: 5rem;
}

.home-product-slide-container {
	border: 4px solid #eaeaea;
	background-color: #fff;
	padding: 2rem;
	height: 100%;
	position: relative;
	transition: ease 0.3s color;
}

.home-products-slide:hover {
	color: #fff;
}

.home-product-slide-container::before {
	content: "";
	position: absolute;
	inset: 0;
	transform: scaleX(0);
	transform-origin: right;
	transition: ease 0.4s transform;
	background-color: var(--theme-primary);
}

.home-products-slide:hover .home-product-slide-container::before {
	transform: scaleX(1);
	transform-origin: left;
}

.home-products-img {
	margin-inline-start: -7rem;
}

.home-products-content {
	/* margin-top: 2rem; */
	position: relative;
	z-index: 1;
	/* padding: 1rem; */
}

.home-products-title {
	font-size: 1.2rem;
	line-height: 1.2;
	font-weight: 500;
	text-align: center;
}

.home-products-swiper .swiper-pagination {
	position: relative;
	bottom: 0;
	margin-top: 2rem;
}

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

.home-products-item {
	/* text-align: center; */
	background-color: #fff;
	border-radius: 1rem;
	/* min-height: 10rem; */
	border: 2px solid transparent;
	transition: ease 0.25s;
	transition-property: border-color;
	padding: 1rem;
}

.home-products-item:hover {
	border-color: var(--theme-primary);
}

.home-products-icon {
	width: 3rem;
	margin-inline: auto;
	/* margin-bottom: 1.5rem; */
	/* padding: 1rem; */
	padding-bottom: 1rem;
	filter: var(--primary-filter);
}

.home-products-list {
	line-height: 1.5;
	margin-top: 1.5rem;
	font-size: 0.9rem;
	display: flex;
	gap: 0.5rem 1rem;
	flex-wrap: wrap;
	justify-content: center;

	display: none;
}

.home-products-list li {
	/* padding: 0.3rem 0.5rem; */
	/* background-color: var(--theme-primary); */
	/* color: var(--theme-primary-alt); */
	border-radius: 1rem;
	text-align: center;
}

.home-product-action {
	text-align: center;
}

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

/* #endregion products */

/* #region process */

.home-process {
	position: relative;
}

.home-process::before {
	content: "";
	position: absolute;
	inset: 0;
	background-color: #fff;
	opacity: 0.9;
}

.home-process-container {
	--border-color: #555;
	--item-spacing: 2.5rem;
	--item-spacing-inset: 1rem;
	--item-height: 7rem;
	--item-width: 7rem;
	--item-offset: calc(var(--item-spacing) - (var(--item-spacing-inset) * 0.5));
	text-align: center;
	display: flex;
	align-items: center;
	overflow-x: auto;
	/* background-color: #fff; */
	position: relative;
	z-index: 1;
}

.home-process-step-item {
	/* max-width: 20%; */
	flex: 1 1 100%;
	padding: 0.5rem 1.2rem;
	border: 1px solid var(--border-color);
	border-radius: 1rem;
	position: relative;
	height: var(--item-height);
	min-width: 7rem;
	display: grid;
	align-content: center;
	background-color: #fff;
	position: relative;
	z-index: 1;
}

.home-process-step-icon {
	margin-bottom: 0.5rem;
	line-height: 1;
	font-size: 3rem;
	color: var(--theme-primary);
}

.home-process-step-title {
	font-size: 0.9rem;
	font-weight: 500;
	/* margin-bottom: 0.3rem; */
	line-height: 1.2;
	white-space: nowrap;
}

.home-process-step-desc {
	font-size: 0.9rem;
	line-height: 1.4;
}

@media (min-width: 768px) {
	.home-process-step {
		display: grid;
		justify-content: start;
		justify-items: start;
		gap: var(--item-height);
		position: relative;
		grid-auto-rows: 1fr;
	}

	.home-process-step-group::after,
	.home-process-step:not(:first-child)::before {
		content: "";
		position: absolute;
		top: calc(var(--item-height) * 0.5);
		height: calc(100% - var(--item-height) + 1px);
		min-height: 1px;
		padding: 0 var(--item-spacing-inset);
		border-radius: var(--item-spacing-inset);
	}

	.home-process-step-group::after {
		inset-inline-end: 0;
		box-shadow: inset -1px 1px 0px var(--border-color), inset -1px -1px 0px var(--border-color);
		border-start-start-radius: 0;
		border-end-start-radius: 0;
		border-inline-start: 0;
	}

	.home-process-step:not(:first-child)::before {
		inset-inline-start: 0;
		box-shadow: inset 1px 1px 0px var(--border-color), inset 1px -1px 0px var(--border-color);
		border-start-end-radius: 0;
		border-end-end-radius: 0;
		border-inline-end: 0;
	}

	[dir="rtl"] .home-process-step-group::after {
		box-shadow: inset 1px 1px 0px var(--border-color), inset 1px -1px 0px var(--border-color);
	}

	[dir="rtl"] .home-process-step:not(:first-child)::before {
		box-shadow: inset -1px 1px 0px var(--border-color), inset -1px -1px 0px var(--border-color);
	}

	.home-process-step-group {
		display: grid;
		justify-content: start;
		gap: 1rem;
		position: relative;
		padding-inline-end: var(--item-offset);
	}

	.home-process-step-group-expand {
		/* grid-template-columns: 1fr auto; */
		align-items: center;
		/* grid-row: span 2; */
		gap: 0;
		display: flex;
		justify-content: start;
		padding-inline-end: 0;
	}

	.home-process-step-group-expand::after,
	.home-process-step-group-split::after {
		content: none !important;
	}

	.home-process-step-prefill {
		display: none;
	}

	.home-process-step-expand {
		margin-inline-start: calc((var(--item-spacing) - (var(--item-spacing-inset) * 0.5)) * -2);
	}

	.home-process-step:not(:first-child) + .home-process-step:not(.home-process-step-expand) {
		padding-inline-start: 0;
	}

	.home-process-step-group .home-process-step-group:last-child {
		padding-inline-end: 0;
	}

	.home-process-step-item::after {
		content: "";
		position: absolute;
		top: 50%;
		inset-inline-start: 100%;
		width: var(--item-spacing);
		height: 1px;
		background-color: var(--border-color);
	}

	.home-process-step:not(:first-child) {
		padding-inline-start: var(--item-offset);
	}

	.home-process-step-expand::before {
		height: 50% !important;
		top: 25% !important;
	}
}

@media (max-width: 768px) {
	.home-process-container {
		flex-direction: column;
		overflow-x: hidden;
	}

	.home-process-step {
		display: flex;
		align-items: center;
		justify-items: center;
		gap: calc(var(--item-offset) * 3);
		position: relative;
	}

	.home-process-step-item {
		/* height: auto; */
		width: var(--item-width);
	}

	.home-process-step-group::after,
	.home-process-step:not(:first-child)::before {
		content: "";
		position: absolute;
		/* top: calc(var(--item-height) * 0.5); */
		/* height: auto; */
		width: calc(100% - var(--item-width) + 1px);
		/* min-height: auto; */
		min-width: 1px;
		padding: var(--item-spacing-inset) 0;
		border-radius: var(--item-spacing-inset);
	}

	.home-process-step-group::after {
		inset-inline-start: 50%;
		bottom: 0;
		transform: translateX(-50%);
		transform-origin: right;
		box-shadow: inset 1px -1px 0px var(--border-color), inset -1px -1px 0px var(--border-color);
		border-start-start-radius: 0;
		border-start-end-radius: 0;
		border-top: 0;
	}

	.home-process-step:not(:first-child)::before {
		inset-inline-start: 50%;
		top: 0;
		transform: translateX(-50%);
		box-shadow: inset 1px 1px 0px var(--border-color), inset -1px 1px 0px var(--border-color);
		border-end-end-radius: 0;
		border-end-start-radius: 0;
		border-bottom: 0;
	}

	.home-process-step-group {
		display: flex;
		padding-inline-end: 0;
		gap: 0 var(--item-offset);
		padding-bottom: var(--item-offset);
		position: relative;
	}

	.home-process-step-group-expand {
		flex-direction: column;
		align-items: center;
	}

	.home-process-step-group-expand::after,
	.home-process-step-group-split::after {
		content: none !important;
	}

	.home-process-step-prefill {
		display: none;
	}

	.home-process-step-expand {
		margin-top: calc((var(--item-spacing) - (var(--item-spacing-inset) * 0.5)) * -2);
	}

	.home-process-step:not(:first-child) + .home-process-step:not(.home-process-step-expand) {
		padding-top: 0;
	}

	.home-process-step-group .home-process-step-group:last-child {
		padding-bottom: 0;
	}

	.home-process-step-item::after {
		content: "";
		position: absolute;
		transform: translateX(-50%);
		top: 100%;
		inset-inline-start: 50%;
		height: var(--item-spacing);
		width: 1px;
		transform-origin: left;
		background-color: var(--border-color);
	}

	.home-process-step:not(:first-child) {
		padding-top: var(--item-offset);
	}
}

.home-process-step-group .home-process-step-group:last-child::after,
.home-process-step:not(:first-child) + .home-process-step:not(.home-process-step-expand)::before,
.home-process-step:not(.home-process-step-expand):last-child .home-process-step-group::after,
.home-process-step:not(.home-process-step-expand):last-child .home-process-step-item::after,
.home-process-step-item:first-child::after,
.home-process-step-item:last-child::after {
	content: none;
}

/* #endregion process */

/* #region quality */

.home-quality {
	padding-bottom: 0;
}

.home-quality-grid {
	display: grid;
	gap: 2rem;
	grid-template-columns: repeat(auto-fill, minmax(15rem, 1fr));
	text-align: center;
}

.home-quality-item {
	padding: 1.5rem;
	background-color: var(--theme-primary-bg-light);
}

.home-quality-num {
	font-size: 3.2rem;
	font-weight: 700;
	color: var(--theme-primary);
	line-height: 1.2;
	margin-bottom: 0.5rem;
}

.home-quality-desc {
	font-size: 1.25rem;
	font-weight: 600;
}

.home-quality-gallery {
	display: grid;
	gap: 1.5rem;
	grid-template-columns: repeat(3, 1fr);
	background-color: #f1f1f1;
	padding: 1.5rem;
}

.home-quality-gallery-item:first-child {
	/* height: 100%; */
	grid-row: span 2;
}

.home-quality-gallery-item:not(:first-child) {
	/* height: 50%; */
}

.home-quality-gallery-item {
	/* flex: 0 0 calc(var(--width) * 1%); */
}

.home-quality-gallery-item img {
	width: 100%;
	height: 100%;
	object-fit: contain;
	/* background-color: #fff; */
}

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

/* #endregion quality */

/* #region why us */

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

.home-services-item {
	margin: 0.5rem;
	padding: 2rem;
	border: 1px solid #dadada;
	background-color: #fff;
	transition-property: color, background-color, border-color;
}

.home-services-item:hover {
	background-color: var(--theme-primary);
	color: var(--theme-primary-alt);
	border-color: var(--theme-primary);
	transition: ease 0.3s;
}

.home-services-icon {
	font-size: 4.5rem;
	line-height: 1;
	color: var(--theme-primary);
	margin-bottom: 0.5rem;
	transition: ease 0.3s;
	transition-property: color;
}

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

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

.home-services-desc {
	line-height: 1.4;
}

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

/* #endregion why us */

/* #region testimonials */

.home-testimonials {
	background-size: 100%;
	background-repeat: no-repeat;
	background-position-x: center;
	background-position-y: top;
	position: relative;
}

.home-testimonials::before {
	content: "";
	position: absolute;
	inset: 0;
	background-color: #fff;
	opacity: 0.5;
}

.home-testimonials > .container {
	padding-block: var(--column-gutter);
	background-color: #fff;
	/* background-color: var(--theme-primary-bg-lighter); */
	box-shadow: 0 0 1rem rgba(0, 0, 0, 0.1);
	border-radius: 1rem;
	position: relative;
	z-index: 1;
}

.home-testimonials-swiper .swiper-wrapper {
	padding-bottom: 3rem;
}

.home-testimonial-slide {
	background-color: var(--theme-primary-bg-light);
	/* color: var(--theme-primary-alt); */
	padding: 2.5rem;
	padding-bottom: 3.5rem;
}

.home-testimonial-desc {
	position: relative;
	padding-top: 3rem;
	display: block;
	line-height: 1.6;
}

.home-testimonial-desc::before {
	content: "\f10d";
	font: var(--icon-font);
	position: absolute;
	top: 0;
	inset-inline-start: 0;
	color: var(--theme-primary);
	font-size: 4rem;
	line-height: 0.6;
}

.home-testimonial-author {
	margin-top: 1rem;
}

.home-testimonial-name {
	font-size: 1.4rem;
	font-weight: 500;
	/* margin-bottom: 0.5rem; */
}

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

.home-testimonial-logo {
	position: absolute;
	top: 100%;
	inset-inline-start: 2.5rem;
	transform: translate(0, -50%);
	width: 5rem;
	height: 5rem;
	background-color: var(--theme-primary-alt);
	padding: 1rem;
	border-radius: 5rem;
	box-shadow: 0 0 1rem rgba(0, 0, 0, 0.2);
}

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

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

.home-client-slide img {
	object-fit: contain;
	padding: 1rem;
	border: 1px solid #dadada;
	background-color: #fff;
}

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

/* #endregion testimonials */

/* #region clients */

.home-clients-swiper {
	margin-top: 3rem;
	--swiper-wrapper-transition-timing-function: linear;
}

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

/* #endregion clients */

/* #region blogs */

.home-blogs {
}

.blogs-section {
	background-color: var(--logo-color-3);
}

.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: 1rem 2.2rem;
	background-color: var(--theme-primary-alt);
	border-radius: 1rem;
}

.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;
	inset-inline-start: -1.2rem;
	inset-inline-end: -1.2rem;
	background-color: var(--theme-primary-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;
	-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;
	inset-inline-start: 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: 2rem;
	}

	.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 {
		inset-inline-start: -1rem;
		inset-inline-end: -1rem;
	}

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

/* #endregion blogs */

/* #region contact */

.home-contact {
	background-size: contain;
	background-repeat: no-repeat;
	background-position: bottom right;
}

.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%); */
	background-color: #fff;
}

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

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

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

.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;
	inset-inline-start: 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 {
	/* width: var(--container-lg-width); */
	background-color: var(--theme-primary);
	color: var(--theme-primary-alt);
	position: relative;
	z-index: 2;
	border-radius: 3rem;
	/* margin-inline: var(--column-gutter); */
	/* max-width: calc(100% - var(--column-gutter) * 2); */
	display: none;
}

.footer-container {
	padding-block: calc(var(--section-gap) / 2);
}

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

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

.footer-brand-col {
	width: 100%;
}

.footer-brand {
	margin-bottom: 2rem;
	display: inline-block;
}

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

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

.footer-col-title img {
	display: inline-block;
	vertical-align: middle;
	filter: var(--white-filter);
}

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

.footer-item-icon {
	vertical-align: top;
}

.footer-item-icon,
.footer-item-text {
	display: inline-block;
}

.footer-item {
	line-height: 1.3;
	margin-bottom: 0.7rem;
}

.footer-address-item {
	margin-bottom: 1.5rem;
}

.footer-address-item .footer-item {
	margin-bottom: 0.5rem;
	display: flex;
}

.footer-address-item .footer-item-icon,
.footer-col-title img {
	width: 25px;
	margin-inline-end: 0.7rem;
	flex-shrink: 0;
}

.footer-item-text a {
	position: relative;
}

.footer-item-text a::after {
	content: "";
	position: absolute;
	bottom: -1px;
	inset-inline-start: 0;
	width: 100%;
	height: 1px;
	transform-origin: left;
	transform: scaleX(0);
	transition: ease 0.3s;
	transition-property: transform;
	background-color: currentColor;
}

.footer-item-text a:hover::after {
	transform: scaleX(1);
}

.footer-col .home-contact-links a {
	color: inherit;
	text-decoration: none;
}

.footer-col .home-contact-links {
	margin-top: 0;
}

.copy-footer-row {
	display: flex;
	align-items: flex-start;
	gap: 1.5rem 3rem;
	flex-wrap: wrap;
	justify-content: space-between;
	padding-block: 1rem;
	/* padding-top: 1rem; */
	/* border-top: 1px solid #dadada; */
}

.copy-footer-col {
	flex: 0 0 auto;
}

.footer-social-links {
	display: flex;
	gap: 1rem;
	/* justify-content: flex-end; */
	/* justify-content: center; */
}

.footer-social-links a {
	display: block;
	/* width: 3rem;
	height: 3rem; */
	display: grid;
	font-size: 1.3rem;
	place-content: center;
	/* border-radius: 5rem; */
}

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

.footer-col-text {
	font-size: 0.85rem;
}

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

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

	.footer-col-title {
		margin-bottom: 0.3rem;
	}

	.header-nav-links-group {
		width: 100%;
	}

	.header-nav-links-items {
		padding-inline-start: 1rem;
		font-size: 1rem;
		font-weight: 500;
		color: var(--dark-color);
	}

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

/* #endregion footer */
