/* =========== Feature_Categories section here ============ */

.feature_categories{
  font-family: "Outfit", sans-serif;
}

.feature_categories a{
  text-decoration: none;
}

.feature_categories .upper{
	font-size: 18px;
	color: black;
	font-weight: 700;
}

.feature_categories .top{
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 15px;
	align-items: center;
}

.feature_categories .navi{
	display: flex;
	width: 120px;
	position: relative;
	height: 40px;
}

.feature_categories .swiper-pagination-fraction{
	position: absolute;
	top: 3px;
	left: 50%;
	transform: translateX(-50%);
	width: auto;
	font-weight: 900;
	font-size: 20px;
}

.feature_categories .swiper-button-next, .feature_categories .swiper-button-prev{
	height: 40px;
	width: 40px;
	border-radius: 10% !important;
	background-color: var(--orange);
	display: grid;
	place-items: center;
	margin-top: 0;
	top: 0;
  background-image: none;
}
  
.feature_categories .swiper-button-prev:after, .feature_categories .swiper-button-next:after{
	font-size: 16px;
	color: white;
	font-weight: 900;
}

.feature_categories .top h3{
	font-size: 35px;
	font-weight: 700;
	color: var(--black);
}

.feature_categories .feature_categoriess .data{
	padding: 20px 15px;
	border-radius: 10px;
	background-color: var(--lightBg);
	height: 60%;
  display: grid;
  place-items: center;
  transition: all 0.3s linear;
}
.feature_categories .feature_categoriess .swiper-slide .icon{
  display: grid;
  place-items: center;
}

.feature_categories .feature_categoriess .swiper-slide .icon img{
	width: 200px;
	height: 200px;
	object-fit: contain;
	margin-bottom: 20px;

}
.feature_categories .feature_categoriess .swiper-slide h4{
	font-size: 16px;
	font-weight: 700;
	color: var(--black);
}

.feature_categories .feature_categoriess .data:hover{
    background-color: var(--blue);
    transform: translateY(-10px);
    cursor: pointer;
}

.feature_categories .data:hover .detail h4{
  color: var(--white) !important;
}






/* ================= Media Query here =============== */

@media(max-width:576px){

  .feature_categories .top h3, .flash_sale .top .head h2, .trending .box h5{
    font-size: 28px;
  }

}

@media(max-width:450px){

  .feature_categories .top h3, .flash_sale .top .head h2, .trending .box h5{
    font-size: 22px;
  }

}

@media(max-width:400px){

  .feature_categories .feature_categoriess .data{
    padding: 15px 15px;
  }

}