
.swiper-container {
  width: 100%;
  max-width: 450px;
  position: relative;

  overflow: hidden;
  margin: auto auto;
}

.image-container {
  position: relative;
}

.image-container img {
  width: 450px;
}

.slide-label {
  position: absolute;
  bottom: 0px;
  right: 0px;
  background-color: #fff;
  padding: 5px 10px;
  font-weight: bold;
  color: #000;
  margin: 0;
}

.slide-title {
  color: #000;
  font-family: Addington CF;
  font-size: 22px;
  font-style: normal;
  font-weight: 700;
  line-height: 32px;
  letter-spacing: 1.1px;
}

.slide-text {
  color: #9B9B9B;
  font-family: Euclid Circular B;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 28px;
}

.rating {
  margin-top: 10px;
}

.star {
  display: inline-block;
  width: 15px;
  height: 15px;
  background-color: gold;
  margin-right: 2px;
}

.swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: #7E804E;
  margin: 0 6px;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}

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

.swiper-button-prev,
.swiper-button-next {
  position: absolute;
  top: calc(50% - 15px);
  width: 30px;
  height: 30px;
  background-color: #7E804E;
  color: #fff;
  font-size: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  cursor: pointer;
  z-index: 10;
}

.swiper-button-prev {
  left: 0px;
}

.swiper-button-next {
  right: 15px;
}

.swiper-button-prev::after,
.swiper-button-next::after {
  content: none !important;
}

@media (min-width: 1200px) {
  .swiper-container {
    max-width: 920px;
  }
}