.testimonials {
  position: relative;
  overflow: hidden;
  padding: 96px 0;
  /* Image block */
}
@media (max-width: 767px) {
  .testimonials {
    padding: 2rem 0;
  }
}
.testimonials-item {
  display: flex;
  gap: 0 2rem;
  flex-wrap: wrap;
  background: var(--blue-50);
  border-radius: 64px;
  overflow: hidden;
}
@media (max-width: 767px) {
  .testimonials-item {
    border-radius: 32px;
  }
}
.testimonials-item-text {
  flex: 1 1 350px;
  padding: 3rem;
}
@media (max-width: 767px) {
  .testimonials-item-text {
    padding: 2rem 2rem 0 2rem;
  }
}
.testimonials-item-text img {
  margin-bottom: 2rem;
}
.testimonials-item-text p {
  color: var(--orange-900);
  font-weight: 600;
  line-height: 1.2;
  font-size: var(--step-2);
}
.testimonials-item-text-bottom {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 2rem;
}
.testimonials-item-text-bottom cite {
  margin-right: auto;
  line-height: 1.5;
  font-size: var(--step-0);
}
.testimonials-item-image {
  flex: 1 1 350px;
}
@media (max-width: 767px) {
  .testimonials-item-image {
    padding: 0 2rem 4rem 2rem;
  }
}
.testimonials-item-image img {
  height: 100%;
  object-fit: cover;
}
@media (max-width: 767px) {
  .testimonials-item-image img {
    border-radius: 1rem;
  }
}
.testimonials .splide__arrow {
  top: unset;
  bottom: 1rem;
  background: var(--blue-100);
  border: 1px solid white !important;
}
@media (max-width: 767px) {
  .testimonials .splide__arrow {
    bottom: 0;
  }
}
.testimonials .splide__arrow svg {
  fill: var(--blue-500);
}
.testimonials .splide__arrow--prev {
  left: calc(50% - 6rem);
}
@media (max-width: 767px) {
  .testimonials .splide__arrow--prev {
    left: calc(50% - 3rem);
  }
}
.testimonials .splide__arrow--next {
  left: calc(50% - 3rem);
}
@media (max-width: 767px) {
  .testimonials .splide__arrow--next {
    left: 50%;
  }
}
