@media (min-width: 1180px) {
	.featured-prod-grid {
		flex-direction: row !important;
	}
	
	.featured-prod-grid .wrapper .content {
		text-align: right !important;
	}
	
	.featured-prod-grid.reverse {
		flex-direction: row-reverse !important;
	}
	
	.featured-prod-grid.reverse .wrapper .content {
		text-align: left !important;
	}
}

@media (min-width: 768px) {
	.featured-prod-grid .products .products.columns-4 {
		grid-template-columns: repeat(3, 1fr) !important;
	}
	
	.featured-prod-grid {
		padding: 50px !important;
	}
}

.featured-prod-grid {
	display: flex;
    flex-direction: column;
    gap: 100px;
    justify-content: space-between;
	align-items: center;
	padding: 20px;
    background-color: #edf8fc;
	margin-bottom: 25px;
}

.featured-prod-grid.reverse {
	background-color: #f9f9f9;
}

.featured-prod-grid .wrapper .content {
	display: flex;
	flex-direction: column;
	gap: 20px;
	text-align: center;
	text-wrap: nowrap;
}

.featured-prod-grid .wrapper .content .header-secondary-cta {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.featured-prod-grid .products .products.columns-4 {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
}

.featured-prod-grid .products .products.columns-4::before,
.featured-prod-grid .products .products.columns-4::after {
	content: none;
}

.featured-prod-grid .products .products.columns-4 {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
	gap: 20px;
}


.featured-prod-grid .products .products.columns-4 li.product {
	width: 100%;
	margin: 0;
    padding: 20px;
    border: 1px solid #009fe3;
    border-radius: 10px;
    text-align: center;
}

.featured-prod-grid .products .products.columns-4 li.product a {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}

/*====================================================================*/
/*							 FPS SWIPER 							  */
/*====================================================================*/

.fps-wrapper {
	padding: 0 50px;
	position: relative;
}

.fps-wrapper h2 {
	text-align: center;
	margin-bottom: 50px;
}

#fps-swiper {
	width: 100%;
	box-sizing: border-box;
}

#fps-swiper .swiper-wrapper {
	position: unset;
}

#fps-swiper .swiper-slide a {
	display: flex;
    flex-direction: column;
	align-items: center;
    gap: 20px;
}

#fps-swiper .swiper-slide .content {
	display: flex;
	flex-direction: column;
	margin: 20px;
    padding: 20px 0;
	gap: 20px;
	align-items: center;
	justify-content: center;
	background-color: #ffffff;
	width: 100%;
}

#fps-swiper .swiper-slide .content .title {
	color: rgb(159, 161, 164);
    font-weight: 600;
	text-align: center;
}

#fps-swiper .swiper-slide img {
	height: 200px;
	width: auto;
	object-fit: cover;
}

#fps-swiper .swiper-slide .header-secondary-cta {
	width: fit-content;
	display: flex;
	align-items: center;
  	min-width: 0;
}

.fps-wrapper ._fps-prev,
.fps-wrapper ._fps-next {
	position: absolute;
    top: 50%;
    transform: translate(0, -50%);
    z-index: 1;
	cursor: pointer;
}

.fps-wrapper ._fps-prev {
    left: 0;
}

.fps-wrapper ._fps-next {
    right: 0;
}