/** Shopify CDN: Minification failed

Line 72:9 Expected identifier but found whitespace
Line 72:10 Unexpected "6px"
Line 72:21 Unexpected "{"
Line 72:30 Expected ":"
Line 73:79 Expected identifier but found "*"
Line 88:19 Expected identifier but found whitespace
Line 88:21 Unexpected "{"
Line 88:30 Expected ":"
Line 199:19 Expected identifier but found whitespace
Line 199:21 Unexpected "{"
... and 2 more hidden warnings

**/
.customer-testimonials {
  text-align: center;
  padding: 72px 50px;
  width: 100%;
  margin: 0 auto;
  box-sizing: border-box;
}

.customer-testimonials h2 {
  text-transform: uppercase;
  animation: fadeInDown 0.8s ease-out;
  font-size: 18px;
  margin-bottom: 0;
}

.testimonial-slider-container {
  position: relative;
  overflow: hidden;
  max-width: 1500px;
  margin-left: auto; 
  margin-right: auto;
}

.profile-images-container {
  position: relative;
  height: 300px;
  margin-bottom: 30px;
  overflow: hidden;
}

.profile-images {
  position: relative;
  width: 100%;
  height: 100%;
}

.profile-image {
  position: absolute;
  border-radius: 50%;
  overflow: hidden;
  transition: all 0.5s ease;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
}

.profile-image.visible {
  opacity: 1;
  visibility: visible;
}

.profile-image:hover {
  transform: scale(1.05);
}

.profile-image.active {
  border: 6px solid {{ section.settings.nav_color }}; /* Increased border thickness */
  /* box-shadow: 0 0 0 8px #f5f0e8; /* Added space between image and border */ */
  animation: pulse 2s infinite;
}

.profile-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border: solid 6px transparent;
  border-radius: 100px; 
}

.initial-avatar {
  width: 100%;
  height: 100%;
  background-color: {{ section.settings.nav_color }};
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
}

/* Custom sizes and positions for each profile image */
.profile-image-1 { width: 120px; height: 120px; top: 20%; left: 10%; }
.profile-image-2 { width: 110px; height: 110px; top: 45%; left: 25%; }
.profile-image-3 { width: 150px; height: 150px; top: 30%; left: 40%; }
.profile-image-4 { width: 110px; height: 110px; top: 50%; left: 58%; }
.profile-image-5 { width: 130px; height: 130px; top: 22%; right: 20%; }
.profile-image-6 { width: 115px; height: 115px; top: 40%; right: 10%}
.profile-image-7 { width: 120px; height: 120px; top: 20%; left: 10%; }
.profile-image-8 { width: 110px; height: 110px; top: 45%; left: 25%; }
.profile-image-9 { width: 150px; height: 150px; top: 30%; left: 40%; }
.profile-image-10 { width: 110px; height: 110px; top: 50%; left: 58%; }
.profile-image-11 { width: 120px; height: 120px; top: 20%; left: 10%; }
.profile-image-12 { width: 110px; height: 110px; top: 45%; left: 25%; }
.profile-image-13 { width: 150px; height: 150px; top: 30%; left: 40%; }
.profile-image-14 { width: 110px; height: 110px; top: 50%; left: 58%; }
.profile-image-15 { width: 130px; height: 130px; top: 22%; right: 20%; }
.profile-image-16 { width: 115px; height: 115px; top: 40%; right: 10%}
.profile-image-17 { width: 110px; height: 110px; top: 45%; left: 25%;}
.profile-image-18 { width: 150px; height: 150px; top: 30%; left: 40%; }
.profile-image-19 { width: 110px; height: 110px; top: 50%; left: 58%; }
.profile-image-20 { width: 130px; height: 130px; top: 22%; right: 20%; }

.testimonial-slider {
  position: relative;
  min-height: 200px;
}

.testimonial-slide {
  position: absolute;
  width: 100%;
  opacity: 0;
  transition: opacity 0.5s ease, transform 0.5s ease;
  transform: translateX(100%);
}

.testimonial-slide.active {
  opacity: 1;
  transform: translateX(0);
}

.testimonial-content {
  max-width: 600px;
  margin: 0 auto;
  animation: fadeInUp 0.8s ease-out;
}

.star-rating {
  font-size: 34px;
  margin-bottom: 10px;
  animation: scaleIn 0.5s ease-out;
}

.customer-name {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 5px;
  margin-top: -4px;
  animation: fadeInRight 0.5s ease-out;
}

.testimonial-text {
  font-size: 24px;
  line-height: 1.6;
  animation: fadeInLeft 0.5s ease-out;
}

.testimonial-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  font-size: 24px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.testimonial-nav:hover {
  transform: translateY(-50%) scale(1.1);
}

.testimonial-nav.left { left: 10px; }
.testimonial-nav.right { right: 10px; }

.slider-dots {
  margin-top: 20px;
}

.dot {
  height: 10px;
  width: 10px;
  border-radius: 50%;
  display: inline-block;
  margin: 0 5px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.dot:hover {
  transform: scale(1.1);
}

.dot.active {
  background-color: {{ section.settings.nav_color }} !important;
  animation: pulse 2s infinite;
}

@media screen and (max-width: 1024px) {
  .profile-image {
    width: 95px; 
    height: 95px;
  }
}

@media screen and (min-width: 429px) and (max-width: 768px) {
  .profile-images-container {
    height: 250px;
  }

  .profile-images {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
  }

  .profile-image {
    position: relative;
    width: 100px !important;
    height: 100px !important;
    margin: 10px;
    top: auto !important;
    left: auto !important;
    right: auto !important;
    transform: none !important;
  }

  .profile-image.visible {
    opacity: 1;
    visibility: visible;
  }

  .profile-image:not(.visible) {
    display: none;
  }

  .testimonial-content {
    max-width: 90%;
  }

  .testimonial-text {
    font-size: 18px;
  }

  .customer-testimonials {
    padding: 50px 30px;
  }
}

@media screen and (max-width: 428px) {
  .customer-testimonials {
    padding: 72px 15px;
  }

  .testimonial-slider {
    min-height: 180px;
  }
  
  .customer-testimonials h2 {
    font-size: 20px;
    margin-bottom: 20px;
  }
  
  .profile-images-container {
    height: 120px;
  }

  .profile-image {
    width: 100px !important;
    height: 100px !important;
    left: 50% !important;
    top: 50% !important;
    transform: translate(-50%, -50%) scale(0.8);
  }

  .profile-image.visible {
    transform: translate(-50%, -50%) scale(1);
  }
  
  .testimonial-content {
    max-width: 100%;
    padding: 0 40px;
  }
  
  .star-rating {
    font-size: 24px;
  }
  
  .customer-name {
    font-size: 16px;
  }
  
  .testimonial-text {
    font-size: 14px;
  }
  
  .testimonial-nav {
    font-size: 24px;
    padding: 10px;
    border-radius: 50%;
  }
  
  .testimonial-nav.left { left: 16px; }
  .testimonial-nav.right { right: 16px; }
}

@media screen and (max-width: 425px) {
  .testimonial-content {
    padding: 0 20px;
  }
  
  .testimonial-nav {
    top: 140px;
  }
  
  .customer-testimonials h2 {
    margin-bottom: 15px;
  }
  
  .star-rating {
    font-size: 24px;
  }
  
  .testimonial-nav {
    padding: 8px;
  }

  .customer-testimonials {
    padding: 54px 0;
  }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-20px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInLeft {
  from { opacity: 0; transform: translateX(-20px); }
  to { opacity: 1; transform: translateX(0); }
}

@keyframes fadeInRight {
  from { opacity: 0; transform: translateX(20px); }
  to { opacity: 1; transform: translateX(0); }
}

@keyframes scaleIn {
  from { transform: scale(0); }
  to { transform: scale(1); }
}

@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(0, 123, 255, 0.4); }
  70% { box-shadow: 0 0 0 10px rgba(0, 123, 255, 0); }
  100% { box-shadow: 0 0 0 0 rgba(0, 123, 255, 0); }
}

@keyframes swipeLeft {
  from { transform: translateX(100%); }
  to { transform: translateX(0); }
}

@keyframes swipeRight {
  from { transform: translateX(-100%); }
  to { transform: translateX(0); }
}

.swipe-left {
  animation: swipeLeft 0.3s ease-out;
}

.swipe-right {
  animation: swipeRight 0.3s ease-out;
}