
.testimonial-section {
  height: auto;
  margin: 100px auto;
}

.testimonials-carousel {
  width: 100%;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
}

.testimonials-carousel-wrapper {
  display: flex;
}

.testimonials-carousel-slide {
}

.testimonials-carousel-slide:last-child {
  margin-right: 0;
}

.testimonials-carousel-pagination {
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
}

.testimonials-carousel-button-prev,
.testimonials-carousel-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;
}

.testimonials-carousel-button-prev {
  left: 0px;
}

.testimonials-carousel-button-next {
  right: 15px;
}

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

.testimonial-container {
  display: flex;
  flex-direction: column;
}

.testimonial-text {
  color: #000;
  font-family: Euclid Circular B;
  font-size: 21px;
  font-style: normal;
  font-weight: 400;
  line-height: 28px;
}

.testimonial-text-container {
  width: 100%;
  height: auto;
}

.testimonial-text-container p {
  width: 100%;
}

.testimonial-image-container {
  width: 100%;
  display: flex;
  justify-content: center;
  margin-bottom: 30px;
}

.testimonial-image-container img {
  margin: auto;
}

.testimonial-rating {
  display: flex;
  justify-content: center;
  margin-right: 80px;
}

.testimonial-title {
  color: #000;
  text-align: center;
  font-family: Addington CF;
  font-size: 40px;
  font-style: normal;
  font-weight: 400;
  line-height: 49px;
}

@media (min-width: 1200px) {
  .testimonial-container {
    display: flex;
    flex-direction: row;
  }
  
  .testimonials-carousel-slide {
    flex: 0 0 100%;
    margin-right: 32px;
    height: 400px;
  }
  .testimonial-text-container {
    width: 50%;
    height: 300px;
  }

  .testimonial-text-container p {
    width: 471px;
  }

  .testimonial-image-container {
    width: 50%;
    display: flex;
    justify-content: center;
  }
  .testimonial-section {
  }
}