.swiper {
  width: 100%;
  height: 100%;
}

.swiper-slide {
  text-align: center;
  font-size: 18px;
  /* background: #fff; */
  display: flex;
  justify-content: center;
  align-items: center;
}

.swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.autoplay-progress {
  position: absolute;
  /* right: 16px; */
  right: 5%;
  top: 50%;
  /* bottom: 16px; */
  z-index: 10;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  color: var(--swiper-theme-color);
}

.autoplay-progress svg {
  --progress: 0;
  position: absolute;
  left: 0;
  top: 0px;
  z-index: 10;
  width: 100%;
  height: 100%;
  stroke-width: 4px;
  stroke: var(--swiper-theme-color);
  fill: none;
  stroke-dashoffset: calc(125.6 * (1 - var(--progress)));
  stroke-dasharray: 125.6;
  transform: rotate(-90deg);
}

.swiper-button-next:after,
.swiper-button-prev:after {
  font-size: 14px;
  color: #3a4a01 !important;
}
.swiper-button-prev:after {
  border: 1px solid #3a4a01;
  border-radius: 100%;
  width: 44px;
  height: 44px;
  justify-content: center;
  align-items: center;
  display: flex;
  padding: 0px 20px;
}
.swiper-button-prev {
  /* left: 28px; */
  left: 5%;
}
/* .swiper-button-next{
right: 100px;
} */
.swiper-button-next:after {
  border: 1px solid #3a4a01;
  border-radius: 100%;
  width: 44px;
  height: 44px;
  justify-content: center;
  align-items: center;
  display: flex;
  padding: 0px 20px;
}
.autoplay-progress svg {
  stroke: #3a4a01;
}
@media only screen and (max-width: 600px) {
  .swiper-button-next,
  .swiper-button-prev {
    position: relative;
  }
  .autoplay-progress {
    position: relative;
    /* right: 0; */
    /* width: 100%; */
  }
  .mobile-nav {
    display: flex;
    justify-content: space-around;
    align-items: center;
    margin-top: 50px;
  }
  .swiper-pagination {
    width: fit-content !important;
    position: relative;
  }
}

.swiper-pagination-bullet {
  background: #3a4a01;
}
