/* #region setup */

:root {
	--text-color: #656970;
	--dark-color: #141414;
	--theme-primary: #000000;
	--theme-primary-dark: #000000;
	--theme-primary-light: #a5a5a5;
	--theme-primary-bg-light: #dfdfdf;
	--theme-primary-bg-lighter: #f6f6f6;
	--theme-primary-fade: rgb(153 153 153 / 30%);
	--theme-primary-alt: #fff;
	--theme-secondary: #d0d0d0;
	--theme-secondary-alt: #000;
	--container-width: 1120px;
	--container-sm-width: 1050px;
	--container-lg-width: 1440px;
	--column-gutter: 20px;

	/* https://angel-rs.github.io/css-color-filter-generator/ */
	/* --primary-filter: brightness(0) saturate(100%) invert(20%) sepia(99%) saturate(2341%) hue-rotate(184deg) brightness(95%) contrast(101%);
	--secondary-filter: brightness(0) saturate(100%) invert(26%) sepia(51%) saturate(5261%) hue-rotate(330deg) brightness(76%) contrast(111%); */
	--white-filter: brightness(0) saturate(100%) invert(100%);
	--black-filter: brightness(0) saturate(100%) invert(0%);
	--header-height: 105px;
	--logo-width: 300px;
	--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;
	font-weight: 300;
}

body {
	color: var(--text-color);
	font-family: var(--font-family);
	/* overflow-x: hidden; */
	line-height: 1.5;
	/* 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;
	color: var(--dark-color);
}

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: 65px;
		--logo-width: 150px;
	}

	html {
		font-size: 14px;
	}
}

.fa {
	font-family: var(--fa-style-family, "Font Awesome 6 Free");
	font-weight: var(--fa-style, 900);
}

.fa,
.fa-brands,
.fa-classic,
.fa-regular,
.fa-sharp,
.fa-solid,
.fab,
.far,
.fas {
	-moz-osx-font-smoothing: grayscale;
	-webkit-font-smoothing: antialiased;
	display: var(--fa-display, inline-block);
	font-style: normal;
	font-variant: normal;
	line-height: 1;
	text-rendering: auto;
}

.fa-classic,
.fa-regular,
.fa-solid,
.far,
.fas {
	font-family: "Font Awesome 6 Free";
}

.fa-brands,
.fab {
	font-family: "Font Awesome 6 Brands";
}

.fa-sr-only,
.fa-sr-only-focusable:not(:focus),
.sr-only,
.sr-only-focusable:not(:focus) {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border-width: 0;
}

/* #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;
}

.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;
	margin-top: calc(var(--header-height) * -1);
	padding-top: var(--header-height);
	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-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 5rem;
	font-size: 1.25rem;
	line-height: 1.4;
	background-color: var(--theme-primary);
	color: var(--theme-primary-alt);
	position: relative;
	padding-right: 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;
	right: 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);
}

.btn {
	padding: 0.6rem 2rem;
	/* font-size: 1rem; */
	font-weight: 500;
	color: var(--theme-primary-alt);
	background-color: var(--theme-primary);
	border: 2px solid var(--theme-primary);
	border-radius: 5rem;
	display: inline-block;
	transition: ease 0.25s;
	cursor: pointer;
}

.btn:hover {
	background-color: var(--theme-primary-alt);
	color: var(--theme-primary);
}

.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: 2rem;
	/* 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: 300;
	font-size: 2.6rem;
	line-height: 1;
	/* padding-bottom: 3.5rem; */
	position: relative;
}

.center-header .section-title,
.center-header .section-title-sm {
	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);
}

.swal2-shown {
	overflow: hidden;
}

.swal2-styled.swal2-confirm {
	background-color: var(--theme-primary) !important;
}

.swal2-styled.swal2-confirm:focus {
	box-shadow: 0 0 0 3px var(--theme-primary-fade) !important;
}

[data-title] {
	position: relative;
}

[data-title]::after {
	content: attr(data-title);
	position: absolute;
	bottom: calc(100% + 0.5rem);
	left: 50%;
	transform: translateX(-50%);
	background-color: var(--theme-primary);
	color: var(--theme-primary-alt);
	font-size: 0.85rem;
	font-weight: 500;
	padding: 0.2rem 0.5rem;
	white-space: nowrap;
	pointer-events: none;
	opacity: 0;
	transition: ease 0.25s;
	z-index: 1;
	border-radius: 0.25rem;
}

[data-title]::before {
	content: "";
	position: absolute;
	bottom: calc(100% + 0.1rem);
	left: 50%;
	transform: translateX(-50%);
	width: 0;
	height: 0;
	border-style: solid;
	border-width: 0.4rem 0.4rem 0 0.4rem;
	border-color: var(--theme-primary) transparent transparent transparent;
	pointer-events: none;
	opacity: 0;
	transition: ease 0.25s;
	z-index: 1;
}

[data-title]:hover::after,
[data-title]:hover::before {
	opacity: 1;
}

.scroll-top-link {
	position: fixed;
	right: 2rem;
	bottom: 1.5rem;
	z-index: 999;
	opacity: 0;
	transition: ease 0.25s;
	pointer-events: none;
	background-color: var(--theme-primary);
	color: var(--theme-primary-alt);
	width: 2.5rem;
	height: 2.5rem;
	display: grid;
	place-items: center;
	border-radius: 50%;
	font-size: 1.25rem;
}

.scroll-down .scroll-top-link {
	opacity: 1;
	pointer-events: all;
}

@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: 0.85rem;
	}

	.section-title {
		font-size: 1.6rem;
	}

	.banner-swiper-nav {
		--swiper-navigation-size: 20px;
		padding: 30px 10px;
	}

	.header-banner .section-header {
		margin-top: 0.5rem;
		margin-bottom: 0.5rem;
	}

	.glightbox-container.glightbox-default .goverlay {
		background-color: rgb(255, 255, 255);
	}

	.glightbox-mobile .glightbox-container.glightbox-default .gslide-description {
		background: #fff;
	}

	.glightbox-mobile .glightbox-container.glightbox-default .gslide-title {
		color: #000;
	}

	.header-cta-btn {
		font-size: 0.9rem;
	}

	.application-link {
		--icon-size: 2rem;
	}

	.application-link::after {
		padding: 4px;
	}
}

@media (min-width: 761px) {
	.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 */

.main-header {
	position: sticky;
	top: 0;
	width: 100%;
	z-index: 50;
}

.header-container {
	padding: 1.5rem 4rem;
	background-color: #fff;
	color: var(--theme-primary);
	height: var(--header-height);
	transition: ease-in-out 0.25s background-color;
}

.scroll-down .header-container {
	/* background-color: #b2b2b2; */
	box-shadow: 0 0 0.5rem rgb(0 0 0 / 15%);
}

.main-header-row {
	display: flex;
	gap: 1rem;
	align-items: center;
	height: 100%;
}

.header-logo-brand {
	font-size: 2rem;
	font-weight: 700;
	color: var(--theme-primary);
}

.header-logo {
	height: 100%;
	max-width: var(--logo-width);
}

.header-logo img {
	width: 100%;
	height: 100%;
	object-fit: contain;
}

.header-nav {
	position: relative;
	margin-left: auto;
}

.header-nav ul {
	display: flex;
	gap: 1.5rem;
}

.header-nav li {
	position: relative;
	transition: ease-in-out 0.25s;
	transition-property: font-weight, color;
}

.header-nav li::after {
	content: "";
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 2px;
	background-color: currentColor;
	transform: scaleX(0);
	transform-origin: right;
	transition: ease-in-out 0.25s transform;
}

.header-nav li.nav-active {
	font-weight: bold;
}

.header-nav li:hover::after {
	transform: scaleX(1);
	transform-origin: left;
}

.header-nav a {
	display: block;
}

@media (min-width: 768px) {
	.header-resp-action,
	.header-resp-nav {
		display: none;
	}
}

@media (max-width: 768px) {
	.header-container {
		padding: 0.5rem 1rem;
	}

	.main-header-row {
		justify-content: space-between;
	}

	/* .header-nav,
	.header-resp-action {
		display: none;
	} */

	.header-resp-action {
		position: relative;
	}

	.resp-menu-btn {
		padding: 0.3rem;
		line-height: 1;
		font-size: 2rem;
	}

	html.menu-active .header-menu-open-icon,
	html:not(.menu-active) .header-menu-close-icon {
		display: none;
	}

	.header-nav {
		position: fixed;
		top: var(--header-height);
		left: 0;
		width: 100%;
		bottom: 0;
		flex-direction: column;
		justify-content: flex-start;
		align-items: stretch;
		padding: 2rem;
		background-color: #fff;
		color: #000;
		font-size: 1.2rem;
		gap: 1rem;
		transform: translateX(100%);
		transition: ease 0.4s transform;
	}

	html.menu-active .header-nav {
		transform: translateX(0);
		transition-duration: 1s;
	}

	html.menu-active .header-container {
		background-color: #fff;
	}

	html.menu-active .resp-menu-btn {
		color: #000;
	}

	.header-nav > ul {
		flex-direction: column;
		font-weight: 400;
		align-items: start;
	}

	.header-resp-nav {
		flex: auto;
		display: flex;
		flex-direction: column;
	}

	.header-nav-section {
		margin-block: 1rem;
		font-size: 1.1rem;
	}

	.header-social-links {
		/* margin-top: 1rem; */
	}

	.header-nav-copy {
		margin-top: auto;
		font-size: 1rem;
	}

	.header-nav-copy-text img {
		height: 2em;
		display: inline-block;
		vertical-align: middle;
	}

	.header-nav-item {
		display: flex;
		gap: 0.5rem;
		align-items: center;
	}

	.header-nav-social-links {
		margin-top: 1rem;
		font-size: 1.5rem;
	}
}

/* #endregion header */

/* #region banner */

.home-banner-section {
	max-height: 100vh;
	overflow: hidden;
	/* margin-top: calc(var(--header-height) * -1); */
}

.home-banner-section::before {
	padding-top: 56.5%;
}

.banner-overlay {
	position: absolute;
	inset: 0;
	padding-top: var(--header-height);
	display: flex;
	color: #fff;
	align-items: center;
	background-color: rgb(0 0 0 / 40%);
}

.banner-overlay-content {
	width: 100%;
	padding-block: 1.5rem;
}

.banner-title {
	font-size: 3.5rem;
	font-weight: 800;
	line-height: 1.1;
	color: inherit;
}

.banner-content {
	max-width: 40rem;
}

.banner-text {
	margin-block: 1rem 3rem;
	line-height: 1.2;
	font-size: 2rem;
}

.banner-text b {
	font-weight: 600;
}

.banner-action {
	font-size: 1.3rem;
	background-color: var(--theme-primary-alt);
	color: var(--theme-primary);
}

.banner-action:hover {
	box-shadow: inset 0rem 0rem 0.6rem var(--theme-primary);
}

@media (max-width: 768px) {
	.home-banner-section::before {
		padding-top: 175%;
	}

	.banner-overlay-content {
		padding-bottom: 5rem;
		margin-top: auto;
	}

	.banner-title {
		font-size: 1.6rem;
	}

	.banner-text {
		font-size: 1.2rem;
		margin-bottom: 2rem;
	}

	.banner-action {
		font-size: 1rem;
	}
}

/* #endregion banner */

/* #region about */

.about-section-row {
	display: flex;
	gap: 2rem;
	align-items: center;
}

.about-section-col {
	flex: 1;
}

.about-section-content {
	/* margin-top: 2rem; */
}

.about-section-text {
	margin-block: 1rem;
	font-size: 1.3rem;
}

.about-section-title {
	font-size: 2.2rem;
	font-weight: 200;
	line-height: 1.2;
}

@media (max-width: 768px) {
	.about-section-row {
		flex-direction: column-reverse;
	}

	.about-section-text {
		line-height: 1.3;
	}
}

/* #endregion about */

/* #region solutions */

.home-solutions-section {
	position: relative;
	background-image: var(--bg-img);
	background-size: contain;
	background-position: 0 22rem;
	background-repeat: no-repeat;
}

.solutions-section-grid {
	display: flex;
	gap: 2rem;
	flex-wrap: wrap;
	justify-content: center;
	text-align: center;
}

.solutions-section-card {
	max-width: 100%;
	width: 20rem;
	/* max-width: 100%; */
	padding: 1.5rem;
	background-color: #fff;
	box-shadow: 0 0 1rem rgba(0, 0, 0, 0.1);
	border-radius: 0.5rem;
}

.solutions-section-card-icon {
	font-size: 4rem;
	line-height: 1;
	color: var(--icon-color);
	color: var(--theme-primary);
	width: 6rem;
	height: 6rem;
	display: grid;
	place-content: center;
	margin-inline: auto;
	/* background-color: var(--icon-color); */
	border-radius: 10rem;
	animation: rotate 20s infinite linear;
	position: relative;
	overflow: hidden;
}

.solutions-section-card-icon::before {
	content: "";
	position: absolute;
	inset: 0;
	background-color: var(--icon-color);
	background-color: var(--theme-primary-light);
	opacity: 0.15;
}

@keyframes rotate {
	0% {
		transform: rotate(0);
	}
	100% {
		transform: rotate(360deg);
	}
}

.solutions-section-card-icon i {
}

.solutions-section-card-content {
	margin-top: 1rem;
}

.solutions-section-card-title {
	font-size: 1.2rem;
	font-weight: 500;
	margin-bottom: 0.5rem;
}

.solutions-section-card-text {
}

@media (max-width: 768px) {
	.solutions-section-card {
		width: 100%;
	}
}

/* #endregion solutions */

/* #region features */

.home-features-section {
	position: relative;
	background-image: var(--bg-img);
	background-size: cover;
	background-repeat: no-repeat;
}

.home-features-section .section-title {
	color: #fff;
}

.features-section-slider {
	margin-inline: calc(var(--column-gutter) * -1);
	padding: var(--column-gutter);
}

.features-section-card {
	padding: 1.5rem;
	border-radius: 1rem;
	background-color: #fff;
	box-shadow: 0 0 0.5rem rgba(0, 0, 0, 0.1);
	height: auto;
	overflow: hidden;
	transition: ease 1s transform;
	text-align: center;
	position: relative;
}

.features-section-card::before {
	content: "";
	position: absolute;
	inset: 0;
	background-color: var(--theme-primary-bg-light);
	opacity: 0;
	transition: ease 1s opacity;
	z-index: 1;
	pointer-events: none;
}

.features-section-card:not(.swiper-slide-active) {
	transform: scale(0.8);
}

.features-section-card:not(.swiper-slide-active)::before {
	opacity: 1;
}

.features-section-card-icon {
	font-size: 3.5rem;
	line-height: 1;
	color: var(--theme-primary);
	position: relative;
	z-index: 2;
	transform: translate(0, 0) scale(1);
	transition: ease 1s transform;
}

.features-section-card:not(.swiper-slide-active) .features-section-card-icon {
	transform: translate(0, 5rem) scale(1.2);
}

.features-section-card-content {
	margin-top: 0.5rem;
}

.features-section-card-title {
	font-weight: 500;
	font-size: 1.2rem;
	margin-bottom: 0.5rem;
}

.features-section-card-text {
	/* font-size: 0.9rem; */
}

@media (max-width: 768px) {
}

/* #endregion features */

/* #region works */

.home-works-section {
	position: relative;
	background-image: var(--bg-img);
	background-size: cover;
	background-position: 0 15rem;
	background-repeat: no-repeat;
}

.works-section-grid {
	display: flex;
	gap: 2rem 1.5rem;
	flex-wrap: wrap;
	justify-content: center;
	/* text-align: center; */
}

.works-section-card {
	max-width: 100%;
	width: 20rem;
	padding: 1.3rem;
	padding-left: 5.5rem;
	position: relative;
	background-color: #fff;
	/* color: #fff; */
	/* background-color: var(--card-color); */
	border-radius: 0.5rem;
	box-shadow: 0 0 1rem rgba(0, 0, 0, 0.1);
	counter-increment: works;
}

.works-section-card::before {
	/* incremental */
	content: counter(works);
	position: absolute;
	top: 1rem;
	left: 1rem;
	font-size: 6rem;
	font-weight: 600;
	opacity: 0.2;
	line-height: 1;
	color: var(--theme-primary);
	width: 1ch;
	text-align: center;
}

/* .works-section-card::before,
.works-section-card::after {
	content: "";
	position: absolute;
	inset: 0;
	background-color: var(--card-color);
	z-index: 1;
	pointer-events: none;
}

.works-section-card::before {
	right: 3rem;
	border-radius: 0.5rem;
	border-top-right-radius: 0;
	border-bottom-right-radius: 0;
}

.works-section-card::after {
	left: calc(100% - 3rem);
	clip-path: polygon(0 0, 100% 50%, 0 100%);
} */

.works-section-card-icon {
	font-size: 4rem;
	line-height: 1;
	color: var(--icon-color);
	width: 6rem;
	height: 6rem;
	display: grid;
	place-content: center;
	margin-inline: auto;
}

.works-section-card-content {
	/* margin-top: 1rem; */
	position: relative;
	z-index: 2;
	height: 100%;
	/* display: grid; */
	/* align-content: center; */
}

.works-section-card-title {
	font-size: 1.2rem;
	font-weight: 500;
	margin-bottom: 0.5rem;
	color: var(--dark-color);
}

.works-section-card-text {
	/* font-size: 0.9rem; */
	/* font-weight: 400; */
}

@media (max-width: 768px) {
	.works-section-card {
		width: 100%;
	}
}

/* #endregion works */

/* #region testimonials */

.testimonials-slider {
	/* height: 7rem; */
	max-width: 40rem;
	margin-inline: auto;
	text-align: center;
	overflow: hidden;
	font-size: 1.1rem;
}

.testimonials-slide {
}

.testimonials-slide-content {
	transform: translateY(5rem);
	opacity: 0;
	transition: ease 1s;
	transition-property: transform, opacity;
}

.testimonials-slide.swiper-slide-active .testimonials-slide-content {
	transform: translateY(0);
	opacity: 1;
}

.testimonials-slide-quote {
}

.testimonials-slide-quote q {
}

.testimonials-slide-author {
	font-weight: 500;
	color: var(--dark-color);
	margin-top: 0.5rem;
}

@media (max-width: 768px) {
}

/* #endregion testimonials */

/* #region blogs */

.home-blogs {
	background-color: var(--theme-primary-bg-light);
}

.home-blogs-row {
	margin-top: 2rem;
}

.home-blog-box {
}

.home-blog-img {
	margin-bottom: 1.5rem;
	border-radius: 1rem;
	overflow: hidden;
	display: block;
}

.home-blog-img::before {
	padding-top: 66%;
}

.home-blog-img img {
}

.home-blog-date {
	position: absolute;
	z-index: 1;
	top: 0.5rem;
	left: 0.5rem;
	line-height: 1;
	background-color: var(--theme-primary);
	color: var(--theme-primary-alt);
	padding: 0.6rem;
	font-size: 0.9rem;
	border-radius: 5rem;
	font-weight: 500;
}

.home-blog-content {
}

.home-blog-title {
	font-size: 1.3rem;
	font-weight: 500;
	margin-bottom: 1rem;
}

.home-blog-title a:hover {
	color: var(--theme-primary-light);
}

.home-blog-desc {
	line-height: 1.4;
	color: #333;
}

@media (max-width: 768px) {
}

/* #endregion blogs */

/* #region faqs */

.home-faqs-section {
	background-color: var(--theme-primary-bg-lighter);
}

.faqs-section-content {
	display: grid;
	gap: 1.5rem;
	max-width: 50rem;
	margin-inline: auto;
}

.faqs-section-item {
	padding: 1.5rem;
	background-color: #fff;
	border-radius: 0.5rem;
	box-shadow: 0 0 1rem rgba(0, 0, 0, 0.1);
}

.faqs-section-question::marker {
	display: none;
	content: none;
}

.faqs-section-question::before {
	font: var(--icon-font);
	/* angle right */
	content: "\f105";
	transition: ease 0.25s;
	display: inline-block;
}

.faqs-section-item[open] .faqs-section-question::before {
	transform: rotate(90deg);
	color: var(--theme-primary-dark);
}

.faqs-section-question {
	cursor: pointer;
	color: var(--dark-color);
	font-size: 1.1rem;
	font-weight: 500;
	display: flex;
	gap: 0.5rem;
	align-items: center;
	outline: none;
}

.faqs-section-question-text {
	display: inline;
}

.faqs-section-answer {
	margin-top: 0.5rem;
	border-top: 1px solid var(--theme-primary);
	padding-top: 0.5rem;
	padding-inline: 2rem;
	display: none;
}

.faqs-section-answer-text {
	/* line-height: 1.7; */
}

@media (max-width: 768px) {
}

/* #endregion faqs */

/* #region contact */

.home-contact-section {
	--contact-header-gap: 15rem;
}

.home-contact-header {
	padding-bottom: var(--contact-header-gap);
	background-color: var(--theme-primary-bg-light);
}

.home-contact-header .section-header {
	margin-bottom: 0;
	max-width: 50rem;
	margin-inline: auto;
}

.home-contact-container {
	position: relative;
	z-index: 1;
}

.home-contact-row {
	margin-top: calc((-1 * var(--contact-header-gap)) + var(--section-gap));
	background-color: #fff;
	padding: 0.5rem;
	border-radius: 1rem;
	box-shadow: 0 0 1rem rgba(0, 0, 0, 0.1);
	display: flex;
	gap: 1rem;
	flex-wrap: wrap;
	margin-bottom: calc(var(--section-gap) * 2);
}

.home-contact-info {
	flex: 1 1 35%;
	background-color: var(--theme-primary);
	border-radius: 0.5rem;
	padding: 2rem;
	color: var(--theme-primary-alt);
	/* font-size: 0.9rem; */
}

.contact-info-title {
	color: inherit;
	font-size: 1.2rem;
	font-weight: 600;
	margin-bottom: 0.5rem;
}

.contact-info-description {
	line-height: 1.3;
}

.home-contact-info-content {
	display: grid;
	gap: 1rem;
}

.home-contact-info-item {
	display: flex;
	align-items: center;
	gap: 0.5rem;
}

.home-contact-info-item-icon {
	font-size: 1.2rem;
	line-height: 1;
	flex-shrink: 0;
}

.home-contact-info-item-text {
	display: grid;
	gap: 0.3rem;
	line-height: 1.4;
}

.home-contact-info-item-line {
	font-weight: 400;
}

.home-contact-form {
	flex: 1 1 60%;
	padding: 2rem 3rem;
}

.contact-form {
	position: relative;
}

.contact-form-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 1rem;
}

.contact-form-group {
	position: relative;
}

.contact-form-group label {
	display: block;
	/* margin-bottom: 0.5rem; */
	/* font-size: 0.9rem; */
	font-weight: 400;
}

.contact-form-input {
	/* font-size: 0.9rem; */
	padding: 0.5rem 0;
	border-bottom: 2px solid #dadada;
	transition: ease 0.25s;
	resize: none;
	color: var(--dark-color);
	font-weight: 500;
}

.contact-form-input::placeholder {
	font-weight: 300;
}

.contact-form-input:focus {
	outline: none;
	border-color: var(--theme-primary);
}

.contact-form-submit {
	margin-top: 1rem;
}

.contact-form-submit .btn {
}

@media (min-width: 768px) {
	.contact-form-group-wide {
		grid-column: span 2;
	}
}

@media (max-width: 768px) {
	.home-contact-form {
		padding-inline: 1rem;
	}

	.contact-form-grid {
		grid-template-columns: 1fr;
	}
}

/* #endregion contact */

/* #region footer */

.page-footer {
	position: relative;
	padding-block: 1rem;
	/* z-index: 0; */
	border-top: 1px solid #ccc;
}

.page-footer::before {
	/* content: ""; */
	position: absolute;
	z-index: -1;
	bottom: 0;
	width: 100%;
	top: calc(var(--section-gap) * -2);
	background-image: var(--bg-img);
	background-position: top;
	background-size: 100%;
	background-repeat: no-repeat;
}

.page-footer-row {
	position: relative;
	/* z-index: 1; */
	display: flex;
	justify-content: space-between;
	align-items: center;
	/* font-size: 0.9rem; */
	font-weight: 400;
}

.page-footer-text {
	vertical-align: middle;
	flex: 1 1 100%;
}

.page-footer-text img {
	display: inline-block;
	vertical-align: middle;
}

.page-footer-row .header-nav-social-links {
	display: flex;
	gap: 1.5rem;
	margin: 0;
	font-size: 1.4rem;
}

@media (min-width: 768px) {
	.page-footer-powered {
		text-align: right;
	}
}

@media (max-width: 768px) {
	.page-footer {
		/* padding-block: 2rem; */
	}

	.page-footer::before {
		background-size: 250%;
	}

	.page-footer-row {
		flex-direction: column;
		gap: 0.5rem;
		text-align: center;
	}
}

/* #endregion footer */
