.featured-products {
	padding: 50px 0 100px;
	overflow-x: hidden;
	overflow-y: initial;
}
.featured-products .swiper {
	overflow: unset;
	margin: 0 0 31px;
	z-index: 10;
}
.featured-products .swiper-slide {
	opacity: 0;
	visibility: hidden;
	transition: .15s;
}
.featured-products .swiper-slide.swiper-slide-active,
.featured-products .swiper-slide.swiper-slide-next,
.featured-products .swiper-slide.swiper-slide-next+div {
	opacity: 1;
	visibility: visible;
}
.featured-products .swiper > a {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 40px;
	height: 40px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	box-shadow: 0px 4px 16.1px 0px rgba(0, 0, 0, 0.10);
	z-index: 9;
	background: var(--color-FFF);
	overflow: hidden;
}
.featured-products .swiper > a > svg {
	position: relative;
	z-index: 3;
}
.featured-products .swiper > a:before {
	position: absolute;
	content: '';
	left: -130%;
	top: 130%;
	width: 100px;
	height: 100px;
	transform: translate(-50%, -50%) rotate(45deg);
	transition: .5s;
	background: var(--color-C9AD6F);
	z-index: 1;
}
.featured-products .swiper > a:hover:before {
	left: 30%;
}
.featured-products .swiper > a.prev-slide {
	left: 9px;
}
.featured-products .swiper > a.next-slide {
	right: 9px;
}
@media(min-width: 1100px) {
	.featured-products {
		padding: 2.604vw 0 5.208vw;
	}
	.featured-products .swiper {
		margin: 0 0 1.615vw;
	}
	.featured-products .swiper > a {
		width: 2.083vw;
		height: 2.083vw;
	}
	.featured-products .swiper > a:before {
		width: 5.208vw;
		height: 5.208vw;
	}
}
@media(max-width: 1099.99px) {
	.featured-products {
		padding: 50px 0;
	}
}
@media(max-width: 990px) {
	.featured-products .swiper {
		margin-bottom: 70px;
	}
}