.testimonials-section {
  padding: 80px 0;
  background: #000;
  position: relative;
  background-attachment: fixed;
}
.testimonials-section:after {
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: black;
  opacity: 0.85;
  position: absolute;
  z-index: 1;
}
.testimonials-section .heading-center--light {
  z-index: 100;
  position: relative;
}
.testimonials-section .testimonial-rotator {
  width: min(1100px, 92vw);
  margin: 40px auto 0;
  z-index: 100;
  position: relative;
}
.testimonials-section .testimonial-rotator-viewport {
  position: relative;
  height: 320px;
  -webkit-perspective: 900px;
          perspective: 900px;
  -webkit-transform-style: preserve-3d;
          transform-style: preserve-3d;
  overflow: visible;
}
.testimonials-section .testimonial-rotator-prism {
  position: relative;
  width: 100%;
  height: 100%;
  -webkit-transform-style: preserve-3d;
          transform-style: preserve-3d;
  -webkit-transition: -webkit-transform 900ms cubic-bezier(0.22, 0.9, 0.32, 1);
  transition: -webkit-transform 900ms cubic-bezier(0.22, 0.9, 0.32, 1);
  transition: transform 900ms cubic-bezier(0.22, 0.9, 0.32, 1);
  transition: transform 900ms cubic-bezier(0.22, 0.9, 0.32, 1), -webkit-transform 900ms cubic-bezier(0.22, 0.9, 0.32, 1);
  will-change: transform;
}
.testimonials-section .testimonial-face {
  position: absolute;
  inset: 0;
  -webkit-transform-style: preserve-3d;
          transform-style: preserve-3d;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  --shade: 0.35;
  --highlight: 0.06;
}
.testimonials-section .testimonial-face .testimonial-face-inner {
  width: 100%;
  height: 100%;
  border-radius: 18px;
  background: #191919;
  -webkit-box-shadow: 0 22px 55px rgba(0, 0, 0, 0.6), inset 0 0 0 1px rgba(255, 255, 255, 0.06);
          box-shadow: 0 22px 55px rgba(0, 0, 0, 0.6), inset 0 0 0 1px rgba(255, 255, 255, 0.06);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
  padding: 36px;
  position: relative;
}
.testimonials-section .testimonial-face .testimonial-face-inner::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(120% 100% at 50% 20%, rgba(255, 255, 255, var(--highlight)) 0%, rgba(255, 255, 255, 0) 55%), -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0)), to(rgba(0, 0, 0, var(--shade))));
  background: radial-gradient(120% 100% at 50% 20%, rgba(255, 255, 255, var(--highlight)) 0%, rgba(255, 255, 255, 0) 55%), linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, var(--shade)) 100%);
}
.testimonials-section .testimonial-content {
  max-width: 680px;
  margin: 0 0 18px;
  font-size: 25px;
  line-height: 1.5;
  color: #fff;
  position: relative;
  z-index: 1;
}
.testimonials-section .testimonial-name {
  font-size: 14px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--green);
  position: relative;
  z-index: 1;
}
@media (prefers-reduced-motion: reduce) {
  .testimonials-section .testimonial-rotator-prism {
    -webkit-transition: none !important;
    transition: none !important;
  }
}