.testimonials {
  max-width: 1920px;
  margin: 0 auto;
  display: flex;
}

.testi-left {
  width: 40%;
  background-color: #FDE6E9;
  padding-left: 32px;
}

.testi-left-wrap {
  margin-left: auto;
  padding: 100px 56px 100px 0;
  max-width: 540px;
}
.testi-left-wrap .label {
  background-color: white;
}
.testi-left-wrap .h2 {
  color: #333333;
  margin: 12px 0;
}
.testi-left-wrap .h2 span {
  font-style: italic;
}

.swiper-btns {
  width: 112px;
  height: 50px;
  position: relative;
  display: flex;
  gap: 12px;
  margin-top: 32px;
}

.testi-nav {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 1px solid #333333;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: ease 0.3s;
}
.testi-nav svg {
  fill: #333;
  width: 24px;
  height: 24px;
  transition: ease 0.3s;
}
.testi-nav:hover {
  background-color: #333333;
}
.testi-nav:hover svg {
  fill: white;
}

.swiper-button-disabled {
  border: 1px solid rgba(51, 51, 51, 0.3);
}
.swiper-button-disabled svg {
  fill-opacity: 0.3;
}
.swiper-button-disabled:hover {
  background-color: transparent;
  cursor: default;
}
.swiper-button-disabled:hover svg {
  fill: #333333;
  fill-opacity: 0.3;
}

.testi-prev {
  transform: rotate(180deg);
}

.testi-right {
  width: 60%;
  background-color: white;
}

.testi-right-wrap {
  padding: 100px 0;
  max-width: 920px;
}

.testi-swiper {
  width: 100%;
}

.testi-slide {
  color: #333333;
  display: flex;
  flex-direction: column;
  padding: 0 100px;
  gap: 32px;
}

.testi-icon {
  width: 75px;
  height: 75px;
}

.testi-photo {
  aspect-ratio: 1;
  width: 75px;
  border-radius: 50%;
}

.testi-pagination {
  position: absolute;
  right: 32px;
  bottom: 0;
}

.testi-author-block {
  display: flex;
  align-items: center;
  gap: 16px;
}

.testi-author-info {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

@media (max-width: 1300px) {
  .testi-right-wrap {
    padding: 48px 0;
  }
  .testi-slide {
    padding: 0 48px;
    gap: 20px;
  }
}
@media (max-width: 1100px) {
  .testimonials {
    flex-direction: column;
  }
  .testi-left, .testi-right {
    width: 100%;
  }
  .testi-left-wrap {
    margin: unset;
    max-width: unset;
    padding: 48px 32px 48px 0;
  }
}
@media (max-width: 768px) {
  .testi-left {
    padding-left: 0;
  }
  .testi-left-wrap {
    padding: 48px 16px;
  }
  .testi-swiper {
    overflow: unset;
  }
  .testi-right-wrap {
    padding: 48px 16px;
  }
  .testi-slide {
    padding: 0;
  }
  .testi-pagination {
    right: 16px;
    top: -16px;
  }
  .testi-icon {
    width: 48px;
    height: 48px;
  }
  .testi-photo {
    width: 60px;
    height: 60px;
  }
}