/* testimonials block — compiled from blocks/testimonials/style.scss */

@keyframes brs-marquee-scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
.brs-testimonial-marquee-wrap {
  overflow: hidden;
}

.section-testimonial .fs-marquee_list.brs-marquee-animate {
  width: max-content;
  animation: brs-marquee-scroll 40s linear infinite;
}
.section-testimonial:hover .fs-marquee_list.brs-marquee-animate {
  animation-play-state: paused;
}