/* <------- GLOBAL -------> */
section:not(.products, .about) {
	padding-top: 40px;
}
section:last-child {
	padding-bottom: 100px;
}
.products,
.about {
	padding-top: 100px;
}

/* <------- HERO -------> */
.hero__wrapper {
	aspect-ratio: 16 / 5.5;
}
.hero__prev,
.hero__next {
	position: absolute;
	top: 0;
	bottom: 0;
	z-index: 2;
	margin: auto 0;
	min-width: 46px;
	max-width: 46px;
	min-height: 46px;
	max-height: 46px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: 0px 4px 16px rgba(0, 0, 0, 0.1);
	background-color: #fff;
}
.hero__prev {
	left: 32px;
}
.hero__next {
	right: 32px;
}
.hero__prev > i,
.hero__next > i {
	font-size: 18px;
}
.hero__pagination {
	width: 100%;
	position: absolute;
	bottom: 25px !important;
	left: 0;
	right: 0;
	z-index: 2;
	display: flex;
	justify-content: center;
	align-items: center;
}
.hero__pagination > span {
	width: 20px;
	height: 4px;
	border-radius: 9999px;
	background-color: #252525;
	opacity: 0.1;
	transition: opacity 200ms linear;
}
.hero__pagination > span.swiper-pagination-bullet-active {
	opacity: 1;
}
.hero__item {
	height: auto !important;
	position: relative;
	border-radius: 8px;
	padding: 25px 100px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	background-color: #f3f3f5;
}
.hero__item-heading {
	font-size: 64px;
	line-height: 1;
	margin-bottom: 10px;
}
.hero__item-box {
	max-width: 600px;
}
.hero__item-description {
	line-height: 1.5;
	font-weight: 500;
	margin-bottom: 30px;
}
.hero__item-button {
	width: fit-content;
	height: 50px;
	padding: 0 35px;
	display: flex;
	align-items: center;
	border-radius: 5px;
	font-size: 14px;
}
.hero__item picture,
.hero__item picture > img {
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	z-index: -1;
	width: 100%;
	height: 100%;
	border-radius: 8px;
	object-fit: cover;
	object-position: center;
}

/* <------- CATEGORIES -------> */
.categories__wrapper {
	position: relative;
}
.categories__prev,
.categories__next {
	position: absolute;
	top: 0;
	bottom: 0;
	z-index: 2;
	margin: auto 0;
	min-width: 46px;
	max-width: 46px;
	min-height: 46px;
	max-height: 46px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: 0px 4px 16px rgba(0, 0, 0, 0.1);
	background-color: #fff;
}
.categories__prev {
	left: 0;
	transform: translateX(-50%);
}
.categories__next {
	right: 0;
	transform: translateX(50%);
}
.categories__prev > i,
.categories__next > i {
	font-size: 18px;
}
.categories__item {
	aspect-ratio: 1 / 1;
	border-radius: 8px;
}

/* <------- PRODUCTS -------> */
.products__heading {
	margin-bottom: 40px;
}
.products__box {
	display: flex;
	gap: 30px;
}
.products__video {
	cursor: pointer;
	min-width: 270px;
	max-width: 270px;
	aspect-ratio: 9 / 16;
	border-radius: 4px;
}
.products__video > video {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	border-radius: inherit;
}
.products__slider {
	position: relative;
	display: grid;
}
.products__swiper {
	width: 100%;
	overflow: hidden;
}
.products__prev,
.products__next {
	position: absolute;
	top: 0;
	bottom: 0;
	z-index: 2;
	margin: auto 0;
	min-width: 46px;
	max-width: 46px;
	min-height: 46px;
	max-height: 46px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: 0px 4px 16px rgba(0, 0, 0, 0.1);
	background-color: #fff;
}
.products__prev {
	left: 0;
	transform: translateX(-50%);
}
.products__next {
	right: 0;
	transform: translateX(50%);
}
.products__prev > i,
.products__next > i {
	font-size: 18px;
}

/* <------- ABOUT -------> */
.about__wrapper {
	display: flex;
	justify-content: space-between;
	gap: 80px;
	min-height: 450px;
	padding: 40px;
	border-radius: 8px;
	background-color: #f3f3f5;
}
.about__thumbnail,
.about__box {
	width: calc(50% - 40px);
}
.about__thumbnail {
	display: flex;
	border-radius: 4px;
}
.about__thumbnail > img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	border-radius: inherit;
}
.about__heading {
	margin-bottom: 30px;
}
.about__description {
	display: flex;
	flex-direction: column;
	gap: 20px;
	font-size: 14px;
	line-height: 2;
}
.about__stats {
	display: flex;
	align-items: flex-start;
	flex-wrap: wrap;
	gap: 80px;
	margin-top: 40px;
	padding-top: 40px;
	border-top: 1px solid #e6e9f0;
}
.about__stat-value {
	font-size: 60px;
	font-weight: 300;
	margin-bottom: 16px;
}
.about__stat-label {
	font-size: 14px;
}
