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

.adventureSwiper .swiper-slide {
  text-align: center;
  font-size: 18px;
  background: #fff;
  /* Center slide text vertically */
  display: flex;
  justify-content: center;
  align-items: center;
}
.adventureSwiper .swiper-pagination {
  text-align: left;
  position: relative;
}

.adventureSwiper .swiper-pagination-bullet {
  /* min-width: 58px; */
  min-width: 40%;

  font-size: 14px;
  text-transform: uppercase;
  font-family: JetBrains-Mono;
  line-height: 20px;
  padding: 21px 0;
  border-radius: 0;
  position: relative;
  overflow: hidden;
  background: transparent !important;
  color: #fff;
  transition: background 200ms;

  &::before {
    content: "";
    display: block;
    position: absolute;
    width: 100%;
    height: 3px;
    left: 0;
    bottom: 0;
    transition: opacity 200ms;
    background: #fff;
  }
}

.adventureSwiper .swiper-pagination-bullet-active {
  color: #fff;
  background: rgba(0, 0, 0, 0.1) !important;

  
}

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

.adventureSwiper .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%; */
  }
}

.adventure
.adventureSwiper 
.swiper-pagination-bullet-active {
	background: rgb(0 0 0 / 0%) !important;
}
