.testimonials-section {
  width: 100%;
  padding: 80px 20px;
  background-color: #f8f9fa;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  overflow-x: hidden;
}

.testimonials-header {
  font-family: "Audiowide", Arial, sans-serif;
  font-size: 24px;
  text-transform: uppercase;
  color: #005c76;
  position: relative;
  padding-bottom: 10px;
}
.testimonials-header::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 4px;
  background: linear-gradient(to right, #00abdc 0%, #005c76 100%);
  border-radius: 2px;
}

@media (max-width: 1024px) {
  .testimonials-section {
    padding: 64px 16px;
    gap: 32px;
  }
  .testimonials-header {
    font-size: 22px;
  }
}
@media (max-width: 600px) {
  .testimonials-section {
    padding: 56px 12px;
    gap: 28px;
  }
  .testimonials-header {
    font-size: 20px;
  }
}
.testimonial-slider-container {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  overflow: hidden;
  padding: 0 20px;
}

@media (max-width: 1024px) {
  .testimonial-slider-container {
    max-width: 900px;
    padding: 0 16px;
  }
}
@media (max-width: 600px) {
  .testimonial-slider-container {
    max-width: 100%;
    padding: 0 12px;
  }
}
.testimonials-wrapper {
  display: flex;
  transition: transform 0.5s ease-in-out;
}

.testimonial-card {
  flex: 0 0 calc(50% - 40px);
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  gap: 20px;
  background-color: #fff;
  border-radius: 0;
  padding: 30px;
  margin: 0 20px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  min-width: 0;
}

@media (max-width: 1024px) {
  .testimonial-card {
    padding: 24px;
    gap: 16px;
    margin: 0 16px;
  }
}
@media (max-width: 600px) {
  .testimonial-card {
    padding: 18px;
    gap: 14px;
    margin: 0 10px;
  }
}
.testimonial-card-header {
  display: flex;
  align-items: center;
  gap: 15px;
}

.testimonial-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: #e0e0e0;
  flex-shrink: 0;
}

@media (max-width: 1024px) {
  .testimonial-avatar {
    width: 46px;
    height: 46px;
  }
}
@media (max-width: 600px) {
  .testimonial-avatar {
    width: 42px;
    height: 42px;
  }
}
.testimonial-info .testimonial-name {
  font-weight: 700;
  color: #333;
  margin: 0;
}
.testimonial-info .testimonial-role {
  font-size: 14px;
  color: #777;
  margin: 0;
}

@media (max-width: 1024px) {
  .testimonial-info .testimonial-name {
    font-size: 15px;
  }
  .testimonial-info .testimonial-role {
    font-size: 13px;
  }
}
@media (max-width: 600px) {
  .testimonial-info .testimonial-name {
    font-size: 14px;
  }
  .testimonial-info .testimonial-role {
    font-size: 12px;
  }
}
.testimonial-rating {
  color: #ffc107;
  font-size: 20px;
}

@media (max-width: 1024px) {
  .testimonial-rating {
    font-size: 18px;
  }
}
@media (max-width: 600px) {
  .testimonial-rating {
    font-size: 16px;
  }
}
.testimonial-text {
  font-size: 16px;
  line-height: 1.6;
  color: #555;
  margin: 0;
}

@media (max-width: 1024px) {
  .testimonial-text {
    font-size: 15px;
  }
}
@media (max-width: 600px) {
  .testimonial-text {
    font-size: 14px;
  }
}
.testimonials-dots {
  display: flex;
  gap: 10px;
}
.testimonials-dots .dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: #ccc;
  cursor: pointer;
  transition: background-color 0.3s ease;
}
.testimonials-dots .dot.is-active {
  background-color: #005c76;
}/*# sourceMappingURL=avissection.css.map */