.productCategory  .swiper-slide{
  position: relative;
  overflow: visible;
  border: none;
  display: block;
  transform: scale(0.8);
  transition: all .4s;
  cursor: pointer;
  height: 600px;
}
.homecategoryParent .swiper-pagination{
  margin-top: 90px;
}
.homecategoryParent {
  padding-bottom: 80px;
}
.productCategory  .swiper-slide-active{
  transform: scale(1.2);
  box-shadow: 0px 5px 8px 0px rgba(0, 0, 0, 0.3);
}
.productCategory  .swiper-slide .innerItemCat{
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  display: flex;
  flex-direction: column;
  justify-content: end;
  align-items: center;
  text-align: center;
  width: 100%;
  height: 100%;
  transition: all .4s;
  transform: translateY(-30px);
  background-color: var(--color4);
  padding-bottom: 10px;
}
.productCategory  .swiper-slide img{
  position: relative;
  z-index: -1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  opacity: 0;
  transition: all .4s;
}
.productCategory  .swiper-slide-active img{
  opacity: 1;
}
/* .productCategory  .swiper-wrapper{
  padding: 80px 0;
} */
.productCategory  .swiper-slide::after{
  position: absolute;
  transition: all .4s;
  transition-timing-function: cubic-bezier(.26,-0.02,.9,.74);
  content: '';
  background: rgb(255,222,200);
  background: linear-gradient(180deg, rgba(255,222,200,0) 0%, rgba(255,222,200,1) 25%);  left: 0;
  right: 0;
  z-index: -1;
  height: 100%;
  top: unset;
  bottom: 0;
}
.productCategory  .swiper-slide.swiper-slide-active::after{
  bottom: -50%;
}
.productCategory  .swiper-slide.swiper-slide-active .innerItemCat{
  background-color: transparent;
}
.productCategory  .swiper-slide .innerItemCat svg{
  width: 140px;
  height: auto;
  transition: all .6s;
  fill: #fff;
  transform: translateY(-60px) scale(1);
}
.productCategory  .swiper-slide .innerItemCat *{
  color: #666666;
}
.catEnTitle{
  font-size: 12px;
  line-height: 15px;
  margin-bottom: 6px;
  transition: all .4s;
}
.catTitle{
  font-size: clamp(20px, 2vw, 24px);
  line-height: 30px;
  margin-bottom: 10px;
  transition: all .4s;
}
.catDesc{
  font-size: 14px;
  line-height: 25px;
  width: 70%;
}
.productCategory  .swiper-slide.swiper-slide-active .innerItemCat svg , .productCategory  .swiper-slide:hover .innerItemCat svg{
  fill: var(--color1);
  transform: translateY(30px) scale(0.3);
}
.productCategory  .swiper-slide.swiper-slide-active .innerItemCat{
  transform: translateY(0);
}
.productCategory  .swiper-slide.swiper-slide-active .innerItemCat .catEnTitle{
  color: var(--color1);
}
.productCategory  .swiper-slide.swiper-slide-active .innerItemCat .catTitle{
  color: #000;
}
.swiper-pagination-cat{
  position: relative;
  z-index: 10;
}