.hero-dots,
.slider-dots {
  display: flex;
  align-items: center;
  gap: 0.7rem;
}

.hero-dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.35);
  transition: var(--transition-fast);
}

.hero-dot.is-active {
  width: 38px;
  border-radius: 999px;
  background: var(--color-primary);
}

.slider-dots button {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: rgba(10, 45, 105, 0.22);
  transition: var(--transition-fast);
}

.slider-dots button:hover {
  background: rgba(10, 45, 105, 0.38);
}

.slider-dots button.is-active {
  width: 38px;
  border-radius: 999px;
  background: var(--color-primary);
}

.testimonials-slider {
  --testimonial-gap: 1.5rem;
  width: 100%;
  overflow: visible;
}

.testimonials-viewport {
  width: 100%;
  overflow: hidden;
  box-sizing: border-box;
}

.testimonials-track {
  display: flex;
  align-items: stretch;
  gap: var(--testimonial-gap);
  transition: transform 0.55s ease;
  will-change: transform;
}

.testimonials-track > .review-card {
  flex: 0 0 calc((100% - (var(--testimonial-gap) * 2)) / 3);
  min-width: 0;
}

.testimonials-dots {
  justify-content: center;
  margin-top: 2rem;
}

@media (max-width: 991px) {
  .testimonials-slider {
    --testimonial-gap: 1.25rem;
  }

  .testimonials-track > .review-card {
    flex: 0 0 calc((100% - var(--testimonial-gap)) / 2);
  }
}

@media (max-width: 767px) {
  .testimonials-slider {
    --testimonial-gap: 0rem;
  }

  .testimonials-track {
    gap: 0;
  }

  .testimonials-track > .review-card {
    flex: 0 0 100%;
    max-width: 100%;
  }
}