.testimonials-section .testimonial-content {
  width: 100%;
  display: flex;
  align-items: center;
  gap: var(--grid-gap-medium);
}

.testimonials-section .swiper {
  width: 100%;
  flex: 1;
}

.testimonials-section .swiper-button-prev,
.testimonials-section .swiper-button-next {
  position: static;
}

.testimonials-section .swiper-button-prev.hover,
.testimonials-section .swiper-button-next.hover {
  opacity: 0;
}

.testimonials-section .section-container:hover .swiper-button-prev.hover,
.testimonials-section .section-container:hover .swiper-button-next.hover {
  opacity: 1;
}
.testimonials-section .section-container:hover .swiper-button-prev.swiper-button-disabled,
.testimonials-section .section-container:hover .swiper-button-next.swiper-button-disabled {
  opacity: 0.35;
}

.testimonials-section .testimonial-item {
  height: auto;
}

.testimonials-section .testimonial-item-content {
  height: 100%;
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 1;
}

.testimonials-section .testimonial-area .customer-rate {
  display: flex;
  gap: 4px;
}

.testimonials-section .testimonial-area .customer-rate i.sicon {
  font-size: 24px;
}

.testimonials-section .testimonial-item-content .customer-info-area .customer-name {
  margin-bottom: 4px;
}

.testimonials-section .testimonial-item-content.vertical {
  flex-direction: column;
  gap: 16px;
}

.testimonials-section .testimonial-item-content.vertical.reverse {
  flex-flow: column-reverse;
  justify-content: flex-end;
}

.testimonials-section .testimonial-item-content.horizontal .customer-info-area {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  width: 30%;
}

.testimonials-section .testimonial-item-content.horizontal .customer-info-area .customer-info {
  text-align: center;
}

.testimonials-section .testimonial-item-content.horizontal .testimonial-area {
  flex: 1;
  text-align: center;
}

.testimonials-section .testimonial-item-content.vertical .customer-info-area {
  width: 100%;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 8px;
}
.testimonials-section .testimonial-item-content.vertical .customer-info-area .customer-info {
  text-align: left;
}
.testimonials-section .testimonial-item-content .customer-info-area .customer-name {
  margin-bottom: 4px;
}

.testimonials-section .swiper-pagination {
  position: static;
}

@media screen and (max-width: 1024px) {
  .testimonials-section .swiper-button-prev,
  .testimonials-section .swiper-button-next {
    display: none;
  }
}