/** Shopify CDN: Minification failed

Line 102:2 Unexpected "{"
Line 102:3 Expected identifier but found "%"
Line 117:0 Unexpected "{"
Line 117:1 Expected identifier but found "%"
Line 134:4 Unexpected "{"
Line 134:5 Expected identifier but found "%"

**/


/* CSS from section stylesheet tags */
.testimonial-section {
  /* padding: 60px 20px; */
  text-align: center;
}
.testimonial-section h2 {
  font-size: 28px;
  font-weight: bold;
  margin-bottom: 40px;
}
   .under-highlight-text{
        position: relative;
    }
    .under-highlight-text::after{
        content: "";
    position: absolute;
    z-index: 1;
    bottom: -10px;
    left: 0px;
    width: 100%;
    height: 10px;
    background: url(/cdn/shop/files/Vector_371_41f58420-cf28-4eea-af2e-674bfdb9c8f7.svg?v=1745042850) no-repeat;
    -webkit-background-size: cover;
    background-size: contain;
    }
.scroll-row {
  overflow: hidden;
  white-space: nowrap;
  margin-bottom: 0px;
  position: relative;
}
.scroll-track {
  display: inline-flex;
  gap: 20px;
  will-change: transform;
  padding: 10px;
}
.testimonial-wrapper {
  display: flex;
  gap: 20px;
}
.image-card,
.text-card {
  background: #fff;
  
  border-radius: 16px;
  
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.image-card {
  width: 300px;
}
.image-card img {
  width: 100%;
  height: auto;
  border-radius: 12px;
}
.text-card {
  font-family: 'Mali';
  padding: 20px;
  border: 1px solid #C5BFBD;
  width: 300px;
  text-align: center;
  
}
.text-card p {
  font-size: 15px;
  line-height: 1.5;
  margin-bottom: 12px;
  word-break: break-word;
  white-space: normal;
}
.testimonial-author {
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}
.star {
  color: #FFD700;
  font-size: 16px;
}
  .mb_br{
    display: none;
  }
  {% if section.settings.stack_mobile %}
@media (max-width: 768px) {
  .testimonial-section.stack-mobile {
    flex-direction: column;
     min-width: 0vw !important;
  }
    .image-card,
  .text-card {
    width: 60vw;
    height: 60vw;
  }
  .mb_br{
    display: block;
  }
}
{% else %}
@media (max-width: 768px) {
  .testimonial-wrapper {
    min-width: 90vw;
  }
  .image-card,
  .text-card {
    width: 60vw;
    height: 60vw;
  }
  .testimonial-section h2{
    padding: 0px 24px;
  }
  .mb_br{
    display: block;
  }
}
    {% endif %}