.swiper-container .swiper-pagination {
  width: 100vw;
  bottom: 25px;
}

.swiper-container .swiper-pagination-bullet {
  opacity: 1;
  position: relative;
  width: 50px;
  height: 3px;
  border-radius: 4px;
  margin: 0 4px;
  background-color: rgba(255, 255, 255, 0.36);
  transition: background-color 0.3s ease;
  overflow: hidden;
}

.swiper-container .swiper-pagination-bullet::before {
  display: block;
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #fff;
  transform: scaleX(0);
  transform-origin: 0 0;
}

.swiper-container .swiper-pagination-bullet.swiper-pagination-bullet-active::before {
  -webkit-animation: sliderPagination 4.5s linear forwards;
          animation: sliderPagination 4.5s linear forwards;
}

.swiper-container .swiper-pagination-bullet:hover {
  background-color: #fff;
}

@-webkit-keyframes sliderPagination {
  100% {
    transform: scaleX(1);
    opacity: 1;
  }
}

@keyframes sliderPagination {
  100% {
    transform: scaleX(1);
    opacity: 1;
  }
}