.reviews {
  padding: 134px 0;
}

.reviewsSwiper .swiper-slide {
  display: flex !important;
}


.reviewsSwiper {
  + .swiper-container {
    margin-top: 30px;
  }
}

.reviewsSwiper .swiper-pagination {
  text-align: right;
  position: relative;
  margin-top: 44px;
}

.reviewsSwiper .swiper-pagination-bullet {
  width: 184px;
  text-align: left;
  font-size: 14px;
  text-transform: uppercase;
  font-family: JetBrains-Mono;
  line-height: 20px;
  padding: 19px 0;
  border-radius: 0;
  position: relative;
  overflow: hidden;
  background: transparent !important;
  transition: background 200ms;
  margin: 0 0 0 24px !important;

  &::before {
    content: "";
    display: block;
    position: absolute;
    width: 100%;
    height: 1px;
    left: 0;
    bottom: 0;
    transition: opacity 200ms;
    background: rgb(0 0 0 / 61%);
  }
}

.reviewsSwiper .swiper-pagination-bullet-active {
  color: #000;
 

  &::before {
     background:rgba(0, 0, 0, 1);
    animation: slide-progress 3s cubic-bezier(0.3, 0, 0.3, 1) forwards;
  }
}

.reviewsSwiper .swiper-pagination-bullet-active .swiper-paused {
  animation-play-state: paused;
}
@keyframes slide-progress {
  0% {
    transform: translateX(-100%);
    /* width: 0; */
  }

  100% {
    transform: translateX(0);
    /* width: 100%; */
  }
}

@media (max-width: 1024px) {
	.reviewsSwiper 
	.swiper-pagination-bullet {
		width: 100%;
		max-width: 221px;
		margin: 0 !important;
	}
	.reviewsSwiper 
	.swiper-pagination {
		display: flex;
		justify-content: space-between;
		overflow: hidden;
	}
}