.testimonials {
  margin: 160px auto;
  max-width: 1920px;
}

.testi-h2 {
  margin: 0 auto 48px;
  max-width: 1264px;
  padding: 0 32px;
}

.testi-slide {
  border: 1px solid #E5E7EB;
  border-radius: 16px;
  padding: 24px;
  width: 384px;
  height: unset;
}

.testimonial {
  font-size: 24px;
  line-height: 32px;
  margin-bottom: 32px;
}

.testi-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.testi-author img {
  width: 48px;
  height: 48px;
  object-fit: cover;
  border-radius: 50%;
}

.testi-box .text {
  color: #030712;
}

.testi-rating {
  display: flex;
  gap: 2px;
  margin-bottom: 24px;
}
.testi-rating svg {
  width: 16px;
  height: 16px;
  fill: #3685FB;
}

.testi-swiper::before {
  position: absolute;
  content: "";
  width: 80px;
  height: 100%;
  left: 0;
  bottom: 0;
  z-index: 2;
  background: linear-gradient(270deg, rgba(255, 255, 255, 0) 0%, #fff 100%);
}
.testi-swiper::after {
  position: absolute;
  content: "";
  width: 80px;
  height: 100%;
  right: 0;
  bottom: 0;
  z-index: 2;
  background: linear-gradient(270deg, #fff 0%, rgba(255, 255, 255, 0) 100%);
}

.testi-wrapper {
  transition-timing-function: linear !important;
}

@media (max-width: 768px) {
  .testimonials {
    margin: 64px 0;
  }
  .testi-h2 {
    padding: 0 16px;
    margin-bottom: 24px;
  }
  .testi-swiper::before {
    display: none;
  }
  .testi-swiper::after {
    display: none;
  }
  .testi-slide {
    max-width: 320px;
  }
  .testimonial {
    font-size: 20px;
    line-height: 28px;
  }
}