.testimonials {
  background-color: var(--background);
  color: var(--color);
  padding: 4rem 0;
}

.testimonials.theme-dark {
  --background: var(--azamara-blue);
  --color: var(--pure-white);
}

.testimonials.theme-light {
  --background: var(--pure-white);
  --color: var(--azamara-blue);
}

.testimonials .carousel .carousel-indicators button {
  width: 10px;
  height: 10px;
  border-radius: 100%;
  background-color: var(--color);
}

.testimonials .quote svg {
  max-height: 2rem;
  width: 100%;
}

.testimonials .quote.end svg {
  position: relative;
  top: 75%;
  transform: rotate(180deg);
}

.testimonials .carousel {
  padding-top: 1rem;
}

.testimonials .carousel-item {
  text-align: center;
  padding: 0;
  min-height: 10rem;
}

.testimonials .blurb {
  display: flex;
  align-items: center;
}

.testimonials .controls {
  display: flex;
  justify-content: center;
}

.testimonials .controls button {
  position: static;
  margin: 0 5rem;
  z-index: 2;
}

/* -sm breakpoint */
@media (min-width: 576px) {
}

/* -md breakpoint */
@media (min-width: 768px) {
  .testimonials .carousel-item {
    min-height: 9rem;
  }

  .testimonials .carousel-inner {
    padding: 0 6rem;
  }
}

/* -lg breakpoint*/
@media (min-width: 992px) {
}

/* -xl breakpoint */
@media (min-width: 1200px) {
}
