.products-slide {
	gap: 2em;
	display: flex;
	padding: 5% 0;
	overflow: hidden;
	flex-direction: column;
	background-color: #ffffff;
}

.products-slide__title {
	margin: 0 auto;
	display: flex;
	width: fit-content;
	text-align: center;
	position: relative;
	padding-bottom: 1.5em;
	justify-content: center;
}

.products-slide__title h2 {
	margin: 0;
	font-size: 4rem;
	line-height: 4rem;
	color: var(--e-global-color-primary);
	font-family: "The Seasons", Sans-serif;
}

.products-slide__title:after {
	bottom: 0;
	height: 2px;
	width: 120px;
	content: "";
	position: absolute;
	background-color: var(--e-global-color-primary);
}

.products-slide__slider {
	position: relative;
}

.products-slide__slider .swiper-slide {
	width: fit-content;
}

.products-slide__slider-navs {
	gap: 1em;
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.products-slide__slider-navs__all {
	font-weight: 500;
	font-size: 1.125rem;
	font-family: "Scandia", Sans-serif;
	color: var(--e-global-color-primary);
}

.products-slide__slider-navs__all:hover {
	color: var(--e-global-color-accent);
}

.products-slide__slider-navs__scrollbar {
	flex: 1;
	height: 3px;
	border-radius: 10px;
	background-color: #E5E5E5;
}

.products-slide__slider-navs__scrollbar .swiper-scrollbar-drag {
	height: 100% !important;
	border-radius: 10px !important;
	background-color: var(--e-global-color-primary);
}

/*RESPONSIVE*/

/*phone*/
@media (max-width: 767px) {

	.products-slide__title h2 {
		font-size: 2rem;
		line-height: 2rem;
	}

}

/*tablet*/
@media (min-width: 768px) and (max-width: 1023px) {

	.products-slide__title h2 {
		font-size: 3rem;
		line-height: 3rem;
	}

}

/*mobile and tablet*/
@media (max-width: 1023px) {

}

/*desktop*/
@media (min-width: 1025px) {

}

/*laptop 1*/
@media (min-width: 1024px) and (max-width: 1439px) {

}

/*laptop 2*/
@media (min-width: 1440px) and (max-width: 1700px) {

}

/*RESPONSIVE*/
