.testimonials {
  padding: 60px 0px 80px;
  overflow: hidden;
}

.testimonials .wrap {
  display: flex;
}

.testimonials .swiper-wrapper {
  display: flex;
}

.testimonials .swiper {
  overflow: visible;
}

.testimonial-card {
  background: #f7f7f7;
  border-radius: 24px;
  padding: 24px;
  border: 1px solid #edeaea;
  text-align: center;
  width: 440px !important;
}

.testimonial-card__head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.testimonial-card__info {
  display: grid;
  gap: 4px;
}

.testimonial-card__name {
  font-size: 18px;
  font-weight: 700;
  text-align: left;
}

.testimonial-card__city {
  font-weight: 300;
}

.testimonial-card__content {
  border-radius: 16px;
  background-color: #fff;
  padding: 12px;
  display: grid;
  gap: 8px;
}

.testimonial-card__place {
  display: block;
  text-align: left;
  font-size: 14px;
  font-weight: 600;
}

.testimonial-card img {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  object-fit: cover;
}

.testimonial-card h3 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 10px;
}

.testimonial-card__desc {
  font-size: 15px;
  font-style: italic;
  line-height: 1.5;
  display: block;
  text-align: left;
}

@media (max-width: 767px) {
  .testimonial-card{
    padding: 16px;
    width: 350px !important;
  }
}