.swiper-navigation-icon {
  display: none;
}

.banner-swiper .swiper-pagination .swiper-pagination-bullet {
  background-color: var(--primary);
  border-radius: 10px;
  transition: all 0.2s ease-in-out;
  opacity: 1;
  overflow: hidden;
  background-color: var(--white-light);
  height: 10px;
  width: 10px;
}
.banner-swiper .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  width: 40px;
  position: relative;
}
.banner-swiper .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 50%;
  animation: fill 5s linear forwards;
  background: var(--primary);
}
.banner-swiper .swiper-slide-active.swiper-slide .banner-wrapper .banner-image {
  animation: zoom-in 0.5s ease-in-out forwards;
}

.all-category-swiper .card {
  background-color: var(--dark);
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: 24px;
  font-weight: 900;
  border-radius: 12px;
  margin-bottom: 16px;
  transition: all 0.2s ease-in-out;
  text-transform: capitalize;
}
.all-category-swiper .card:last-of-type {
  margin-bottom: 0;
}
.all-category-swiper .card:hover {
  box-shadow: 0 0 15px color-mix(in srgb, var(--white), transparent 50%);
  color: var(--primary);
}

@keyframes zoom-in {
  0% {
    transform: scale(1.1);
    opacity: 0;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}/*# sourceMappingURL=home.css.map */