@import url("https://fonts.cdnfonts.com/css/avenir-lt-std");
@import url("https://fonts.googleapis.com/css2?family=Saira+Condensed&display=swap");
@font-face {
	font-family: "Avenir LT Std";
	src: url("../fonts/Avenir LT Std 45 Book.otf");
}
@font-face {
	font-family: "Dense";
	src: url("../fonts/Dense-Regular.otf");
}
.page-products section.items .container-l {
	display: flex;
	gap: 1rem;
	position: relative;
}
.page-products section.items .container-l .sidebar {
	background-color: #0da2a6;
	padding: 1rem 0;
	padding-left: 1.75rem;
	border-radius: 0.625rem;
	position: sticky;
	top: calc(122px + 1rem);
	height: max-content;
	width: 16.25rem;
}
.page-products section.items .container-l .sidebar ul {
	list-style-type: none;
	padding: 0;
	margin: 0;
}
.page-products section.items .container-l .sidebar ul li a {
	display: block;
	padding: 1.3125rem 0.75rem;
	color: #fff;
	text-decoration: none;
	width: 100%;
	height: 100%;
	position: relative;
	overflow: hidden;
}
.page-products section.items .container-l .sidebar ul li:not(.active) a:before {
	content: "";
	position: absolute;
	top: 0;
	right: 0;
	display: block;
	width: 0.5rem;
	height: 100%;
	background-color: #fff;
	border-radius: 10px 0 0 10px;
	transform: translateX(100%);
	transition: 0.3s ease-out;
}
.page-products
	section.items
	.container-l
	.sidebar
	ul
	li:not(.active)
	a:hover:before {
	transform: translateX(0);
}
.page-products section.items .container-l .sidebar ul li.active {
	background-color: #fff;
	border-radius: 0.625rem 0 0 0.625rem;
	transform: translateX(1px);
}
.page-products section.items .container-l .sidebar ul li.active a {
	color: #0da2a6;
}
@media only screen and (max-width: 920px) {
	.page-products section.items .container-l .sidebar {
		display: none;
	}
}
.page-products section.items .container-l .item-grid {
	flex: 1;
	display: grid;
	gap: 1rem;
	align-items: start;
	grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
}
@media only screen and (max-width: 650px) {
	.page-products section.items .container-l .item-grid {
		grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
	}
}
.page-products section.items .container-l .item-grid .item {
	border-radius: 10px;
	aspect-ratio: 1/1;
	background: center/cover no-repeat var(--bg);
	text-decoration: none;
	overflow: hidden;
	display: flex;
	flex-direction: column-reverse;
}
.page-products section.items .container-l .item-grid .item img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.page-products section.items .container-l .item-grid .item .meta {
	width: 100%;
	padding: 0.75rem;
	position: relative;
	overflow: hidden;
	border-radius: 10px 10px 0 0;
	isolation: isolate;
	margin-top: auto;
	text-align: center;
}
.page-products section.items .container-l .item-grid .item .meta h3 {
	margin: 0;
	color: #000;
}
.page-products section.items .container-l .item-grid .item .meta:before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: -1;
	filter: blur(5px);
	transform: scale(1.1);
	background: linear-gradient(
			90deg,
			rgba(255, 255, 255, 0.5) 0%,
			rgba(255, 255, 255, 0.5) 100%
		),
		bottom/cover no-repeat var(--bg);
}
@media only screen and (min-width: 920px) {
	.page-products section.items .container-l .item-grid .item .meta {
		transform: translateY(100%);
		transition: 0.3s ease-out;
		opacity: 0;
	}
	.page-products section.items .container-l .item-grid .item:hover .meta {
		transform: translateY(0);
		opacity: 1;
	}
}
.page-products section.explainer {
	overflow: hidden;
	padding-top: 0;
}
.page-products section.explainer > h2 {
	text-align: left;
}
.page-products section.explainer h2.container-l {
	padding-bottom: 1rem;
}
.page-products section.explainer .container-l {
	display: flex;
	gap: 2rem;
	padding-bottom: 1rem;
}
.page-products section.explainer .container-l .text-area {
	flex: 1;
}
.page-products section.explainer .container-l .text-area .images {
	padding-top: 1rem;
	display: grid;
	gap: 1rem;
	grid-template-columns: 1fr 1fr;
}
.page-products section.explainer .container-l .text-area .images .img {
	aspect-ratio: 2/3;
	border-radius: 10px;
	background: center/cover no-repeat var(--bg);
}
.page-products section.explainer .container-l .features-right {
	flex: 1;
	min-height: 50vh;
	position: relative;
	isolation: isolate;
	width: 100%;
}
.page-products section.explainer .container-l .features-right:after {
	content: "";
	background: center/cover no-repeat var(--bg);
	display: block;
	width: 50vw;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	transform-origin: 0 0;
	transform: scale(1, 0.85);
	z-index: -1;
	border-radius: 10px 0px 0px 10px;
}
.page-products section.explainer .container-l .features-right .img {
	background: center/cover no-repeat var(--bg);
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: -1;
	opacity: 0.3;
	display: none;
}
.page-products section.explainer .container-l .features-right .quote-wrapper {
	background-color: #0da2a6;
	padding: 5rem;
	border-radius: 10px;
	width: 100%;
	margin: 0 auto;
	margin-top: auto;
	z-index: 10;
	position: absolute;
	bottom: 0;
	right: auto;
	transform: translate(1.5rem, 0);
	color: #fafafa;
}
.page-products
	section.explainer
	.container-l
	.features-right
	.quote-wrapper
	.quote {
	font-size: 1.875rem;
	font-weight: 100;
}
.page-products
	section.explainer
	.container-l
	.features-right
	.quote-wrapper
	.g-btn {
	display: block;
	width: fit-content;
	background-color: #fff;
	color: #0da2a6;
	border-radius: 1.875rem;
	margin-top: 1rem;
	margin-right: auto;
}
@media only screen and (max-width: 1024px) {
	.page-products section.explainer .container-l {
		flex-direction: column;
		position: static;
		padding-bottom: 1rem;
	}
	.page-products section.explainer .container-l .features-right {
		padding-bottom: 0;
		padding-top: 50px;
	}
	.page-products section.explainer .container-l .features-right .quote-wrapper {
		top: 0;
		bottom: auto;
		width: 90%;
		padding: 2rem;
		transform: translate(100%, 0);
		left: -85%;
	}
	.page-products
		section.explainer
		.container-l
		.features-right
		.quote-wrapper
		.quote {
		font-size: 1rem;
	}
	.page-products section.explainer .container-l .features-right:after {
		position: relative !important;
		width: 100vw;
		left: -1rem;
		transform: scale(1);
		border-radius: 0px;
		min-height: 50vh;
	}
}

/*# sourceMappingURL=professional-area.css.map */
