/** Shopify CDN: Minification failed

Line 14:19 Expected identifier but found whitespace
Line 14:21 Unexpected "{"
Line 14:30 Expected ":"

**/


/* CSS from section stylesheet tags */
.testimonials-section {
  text-align: center;
  padding: 4rem 0;
  background-color: {{ section.settings.background }};
  overflow: hidden;
}

.testimonials-section .testimonials-title {
  font-size: 1.8rem;
  font-weight: bold;
  margin-bottom: 2.5rem;
}

.testimonials-section .splide__list{
  align-items: center;
}
  
.testimonials-section .splide__slide {
  border-radius: 16px;
  box-shadow: 0 10px 25px #0000001a;
  opacity: 0.9;
  transition: transform 0.3s ease, opacity 0.3s ease;
  margin-top:20px!important;
  margin-bottom:20px!important;
  padding: 3rem;
  cursor:grab;
}

.testimonials-section .splide__slide.is-active {
  transform: scale(1.03);
  opacity: 1;
}
  
.testimonials-section .testimonial-image {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 1rem;
}

.testimonials-section .testimonial-stars {
  color: #ffb400;
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}

.testimonials-section .splide__slide cite {
  font-weight: bold;
  display: block;
  margin-top: 1rem;
}

.testimonials-section .splide__pagination{
  bottom: -1em!important;
}
  
.testimonials-section .splide__pagination .splide__pagination__page{
  background: grey;
}

.testimonials-section .splide__pagination .splide__pagination__page.is-active{
  background: black;
}