/** Shopify CDN: Minification failed

Line 108:0 Expected "}" to go with "{"

**/
/* Container for the carousel */
.testimonial-section {
  position: relative;
  overflow: hidden; /* Hide any overflow from slides */
  text-align: center;
  padding: 40px 0;
  margin: 0 10px;
}

.testimonial-section__container2 {
  display: flex;
  transition: transform 0.3s ease-in-out; /* Smooth slide animation */
  width: 100%;
}
.testimonial-section h3 {
  font-size: 18px;
  margin-bottom: 30px !important;
  font-weight: 600;
  margin-top: 0;
  text-align: center;
  color: #001522;
  text-transform: uppercase;
  margin-top: 0;
}
.testimonial-quote {
  font-size: 18px;
  margin-bottom: 15px;
  color: #e7e6e6 !important;
  text-transform: uppercase;
}
.testimonial-source-image {
  width: 100px; /* Set the desired width for the logo */
}

.testimonial-section__slide2 {
  flex: 0 0 100%; /* Each slide takes up the full width of the container */
  padding: 30px;
  text-align: center;
  background-color: #001522; /* Dark background for each testimonial card */
  color: #e7e6e6;
  border-top-left-radius:50px;
  border-bottom-right-radius: 50px;
  text-align: center;
}

.testimonial-section__slide2 testimonial-card {
  width: 100%;
  height: auto;
  max-width: 100%;
  object-fit: cover;
  position: relative !important;
  padding: 30px;

}

/* Arrows for navigation */
.carousel-arrow2 {
  position: absolute;
  top: 55%;
  transform: translateY(-50%);
  background-color: transparent;
  color: #f4ede4;
  border: none;
  padding: 0px;
  cursor: pointer;
  z-index: 10;
  font-size: 30px;
  font-family: Museo,sans-serif;
}

.carousel-arrow2.prev {
  left: 10px;
}

.carousel-arrow2.next {
  right: 10px;
}


/* Desktop view - Show multiple videos */
@media (min-width: 768px) {
  .testimonial-section {
    padding: 80px 0;
    
  }
  
  .testimonial-section__container2 {
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    

  .testimonial-section__slide2 {
    flex: 0 0 25%; /* 4 videos per row on desktop */
    max-width: 22%
  }

  .carousel-arrow2, .carousel-pagination {
    display: none;
  }
}

