.swiper {
  overflow: hidden;
}

.swiper-wrapper {
  display: flex;
  width: 100%;
}

.swiper-wrapper .swiper-slide {
  display: flex;
  flex-shrink: 0;
}

.swiper-button-next-style1, .swiper-button-prev-style1 {
  position: static;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 55px;
  height: 55px;
  border: 1px solid #000;
  border-radius: 20px;
  cursor: pointer;
  padding-left: 2px;
  transition: all 0.3s;
}

.swiper-button-next-style1 svg, .swiper-button-prev-style1 svg {
  width: 12px;
  height: 22px;
  fill: #000;
  transition: fill 0.3s;
}

.swiper-button-prev-style1 {
  transform: rotate(180deg);
}

@media (hover) {
  .swiper-button-next-style1:hover, .swiper-button-prev-style1:hover {
    border: 1px solid #304a0a;
    background-color: #304a0a;
  }
  .swiper-button-next-style1:hover svg, .swiper-button-prev-style1:hover svg {
    fill: #fff;
  }
}
.swiper-pagination-style1 {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 10px;
}
.swiper-pagination-style1 .swiper-pagination-bullet {
  width: 40px;
  height: 13px;
  border-radius: 300px;
  background-color: rgba(48, 74, 10, 0.3);
  cursor: pointer;
  transition: background-color 0.3s;
}
@media (hover) {
  .swiper-pagination-style1 .swiper-pagination-bullet:hover {
    background-color: #304a0a;
  }
}
.swiper-pagination-style1 .swiper-pagination-bullet-active {
  width: 40px;
  height: 13px;
  border-radius: 300px;
  background-color: #304a0a;
}