.testimonials_1__list {
  align-items: center;
}
.testimonials_1__item::after {
  content: '';
  background: linear-gradient(90deg, rgba(255,255,255,0) 0%, rgba(255,255,255,1) 70%, rgba(255,255,255,1) 100%);
  position: absolute;
  inset: 0;
  opacity: 1;
  transition: 125ms all;
}
.testimonials_1__content {
  padding: 26px 24px 30px;
  border: 2px solid transparent;
  border-radius: 1px;
  position: relative;
  transition: all 250ms;
}
.testimonials_1__content::after {
  content: '';
  display: block;
  height: 14px;
  width: 14px;
  position: absolute;
  background-color: #fff;
  bottom: -8px;
  left: 47px;
  border-right: 2px solid transparent;
  border-bottom: 2px solid transparent;
  transform: rotate(45deg) translate(-5px, -5px);
  opacity: 0;
  transition: all 125ms;
}
.testimonials_1__person {
  margin-top: 18px;
  display: flex;
  gap: 8px;
  margin-left: 32px;
  padding-bottom: 8px;
  position: relative;
  z-index: 1;
  opacity: 0;
  transition: opacity 125ms;
}
.testimonials_1__img img {
  max-width: 48px;
  border-radius: 50%;
  object-fit: cover;
}
.testimonials_1__info {
  padding-top: 4px;
}
.testimonials_1__icon {
  margin-bottom: 2px;
}
.testimonials_1__name_company {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  max-width: 360px;
}
.testimonials_1__company {
  display: flex;
  align-items: center;
  gap: 8px;
}
.testimonials_1__company::before {
  content: '';
  display: block;
  background-color: currentColor;
  width: 3px;
  height: 3px;
  border-radius: 50%;
}
.testimonials_1__company--link {
  color: var(--slate-700);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.testimonials_1__company--link:hover {
  text-decoration: unset;
}
.testimonials_1__arrows {
  display: flex;
  gap: 4px;
  max-width: 540px;
  justify-content: end;
  position: relative;
  top: -58px;
  pointer-events: none;
}
.testimonials_1__arrows > * {
  background-color: #fff;
  border-radius: 50%;
  pointer-events: auto;
}
.testimonials_1__arrows svg {
  transition: transform 250ms;
}
.testimonials_1__doodle {
  position: absolute;
  top: -10px;
  left: -32px;
  transform: translateX(8px);
  opacity: 0;
  transition: 125ms all;
}
.testimonials_1__item.is-next {
  cursor: pointer;
}
@media(hover: hover) {
  .testimonials_1__item.is-next:hover .testimonials_1__content {
    transform: translateY(4px);
  }
  .testimonials_1__arrows .splide__arrow--next:hover svg {
    transform: translateX(2px);
    transition: transform 125ms;
  }
  .testimonials_1__arrows .splide__arrow--prev:hover svg {
    transform: translateX(-2px);
    transition: transform 125ms;
  }
}

/* Active */
.is-active.testimonials_1__item::after {
  opacity: 0;
}
.testimonials_1__item.is-active .testimonials_1__content {
  border: 2px solid var(--slate-200);
  transition-delay: 300ms;
}
.testimonials_1__item.is-active .testimonials_1__content::after {
  border-right: 2px solid var(--slate-200);
  border-bottom: 2px solid var(--slate-200);
  transform: rotate(45deg) translate(0, 0);
  opacity: 1;
  transition-delay: 400ms;
}
.testimonials_1__item.is-active .testimonials_1__person {
  opacity: 1;
}
.testimonials_1__item.is-active .testimonials_1__doodle {
  transform: translateX(0);
  opacity: 1;
  transition-delay: 500ms;
}

@media(max-width: 1000px) {
  .testimonials_1__arrows {
    max-width: unset;
  }
}
@media(max-width: 600px) {
  .testimonials_1__arrows {
    position: unset;
    margin-top: 20px;
  }
}

/* No animation */
.no-animation .testimonials_1__item.is-active::after {
  content: unset;
}
.no-animation .testimonials_1__item.is-next:hover .testimonials_1__content {
  transform: unset;
}
.no-animation .testimonials_1__arrows .splide__arrow--prev:hover svg, .no-animation .testimonials_1__arrows .splide__arrow--next:hover svg {
  transform: unset;
}
.no-animation .testimonials_1__person {
  opacity: 0 !important;
}
.no-animation .testimonials_1__item.is-active .testimonials_1__person {
  opacity: 1 !important;
}