/**
 * Customer Section
 **/

.customer-reviews {
  padding: 50px 0 0 0;
  position: relative;
  overflow: hidden;
}
.customer-reviews::before {
  content:'';
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  transform: translateY(-48%);
  background-image: url('../../images/customer-reviews/bg-shape.svg');
  width: 1920px;
  height: 2598px;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}
.customer-reviews__inner {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin: auto;
}
.customer-reviews__content {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 0 var(--px160-percent);
}

.customer-reviews__title {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.customer-reviews__title::before {
  display: block;
  content: '';
  background-image: url(../../images/shape_quadruple_chevron.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;

  width: 125px;
  height: 56px;
  z-index: 1;
  position: relative;
}

.customer-reviews__counter {
  color: var(--color-white);
  position: absolute;
  top: 32px;
  right: 16px;
  transition: ease 5s all;
  font-family: Monoton;
  font-size: 40px;
  font-weight: 300;
  letter-spacing: 6px;
}
.customer-reviews__counter span {
  color: var(--color-secondary--1);
}
.customer-reviews__controls {
  display: flex;
  flex-direction: row;
  gap: 10px;
  justify-content: start;
}
.customer-reviews__controls .swiper-button-prev,
.customer-reviews__controls .swiper-button-next {
  position: static;
  height: unset;
  margin: unset;
  width: 41px;
  height: 41px;
  background-color: var(--color-primary--1);
  transition: ease all 150ms;
  border-radius: 15px;
}
.customer-reviews__controls .swiper-button-prev:hover,
.customer-reviews__controls .swiper-button-next:hover {
  background-color: var(--color-primary--3);

}
.customer-reviews__controls .swiper-button-next:after,
.customer-reviews__controls .swiper-button-prev:after {
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  width: 15px;
  height: 12px;
  content: '';
}
.customer-reviews__controls .swiper-button-next:after {
  background-image: url('../../images/icons/small-white-arrow--right.svg');
}
.customer-reviews__controls .swiper-button-prev:after {
  background-image: url('../../images/icons/small-white-arrow--left.svg');
}
@media all and (min-width: 1000px){
  .customer-reviews {
    padding: 128px 0;
  }
  .customer-reviews__inner {
    flex-direction: row;
    gap: 64px;
    max-width: 1284px;
    width: 90vw
  }
  .customer-reviews__content {
    gap: 2rem;
    padding: 0;
  }
  .customer-reviews__counter {
    right: 48px;
  }
  .customer-reviews__controls .swiper-button-prev,
  .customer-reviews__controls .swiper-button-next {
    width: 54px;
    height: 54px;
  }
}


/**
 * Customer card
 **/

.customer-review {
  padding: 5rem var(--px160-percent) 2rem var(--px160-percent);
  position: relative;
}
.customer-review:nth-child(3n+1){
  background-color: var(--color-primary--2);
}
.customer-review:nth-child(3n+2) {
  background-color: #132A61;
}
.customer-review:nth-child(3n+2) .customer-review__link {
  background-color: var(--color-primary--2);
}
.customer-review:nth-child(3n+3){
  background-color: var(--color-primary--1);
}
.customer-review:nth-child(3n+3) .customer-review__link {
  background-color: var(--color-white);
  color: var(--color-primary--1);
}
.customer-review__wrapper {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.customer-review__info {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.customer-review__identity {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.customer-review__text {
  display: -webkit-box;
  -webkit-line-clamp: 5;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.customer-review__text,
.customer-review__profession {
  color: var(--color-white)
}
.customer-review__name {
  color: var(--color-secondary--1);
  font-size: 24px;
  font-weight: 700;
  font-family: var(--font-title);
  text-transform: uppercase;
}
.customer-review__name p {
  line-height: 150%;
}
.customer-reviews__slider {
  max-width: 600px;
  margin: auto;
  width: 100%;
  overflow: visible !important;
}
.customer-review__content {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.customer-reviews__slider .swiper-slide {
  height: unset !important;
}
@media all and (min-width: 1000px){
  .customer-review {
    padding: 64px;
  }
  .customer-review__wrapper {
    flex-direction: row;
    gap: 64px;
  }
  .customer-reviews__slider {
    max-width: 700px;
    overflow: hidden;
  }
  .customer-review__info {
    max-width: 239px;
    flex-shrink: 0;
  }
  .customer-review__text {
    -webkit-line-clamp: 9;
  }
}
@media all and (min-width: 1300px){
  .customer-reviews__slider {
    max-width: 906px;
  }
}
