/* =========================================================
CAROUSEL
========================================================= */

.carousel-wrapper {
  width: 100%;
  height: auto;
  overscroll-behavior: none;
}

.carousel {
  position: relative;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  width: 100%;
  height: auto;
}

.carousel,
.carousel.pointer-event {
  touch-action: pan-y;
}

/* Viewport of the carousel. The track inside is moved horizontally. */
.carousel-inner {
  position: relative;
  width: 92%;
  height: auto;
  overflow: hidden;
}

.carousel-track {
  display: flex;
  width: 100%;
  height: auto;
  will-change: transform;
  transform: translate3d(-100%, 0, 0);
  transition: transform 0.7s cubic-bezier(0.22, 0.61, 0.36, 1);
}

.carousel-track.no-transition {
  transition: none !important;
}

.carousel-item {
  position: relative;
  flex: 0 0 100%;
  width: 100%;
  min-width: 100%;
  height: auto;
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.carousel-container {
  position: relative;
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  background: transparent;
  padding: 2rem 0;
}

.carousel-container > p {
  font-size: clamp(1rem, 2vw, 1rem);
  padding: 0 15%;
  text-align: center;
}

.shadow {
  -webkit-box-shadow: 2px 2px 4px 1px rgba(0, 0, 0, 0.4);
  box-shadow: 1px 1px 2px 1px rgba(0, 0, 0, 0.15);
}

.carousel-control-prev,
.carousel-control-next {
  z-index: 5;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 0;
  background: transparent;
  color: #444;
  cursor: pointer;
  width: 4%;
  align-self: stretch;
  text-align: center;
  transition: opacity 0.15s ease;
  user-select: none;
}

.carousel-control-prev i,
.carousel-control-next i {
  width: auto;
  color: rgba(0, 0, 0, 0.4);
  text-align: center;
  background: transparent;
}

.fa-angle-left,
.fa-angle-right {
  font-size: 4rem;
  text-align: center;
}

.carousel-indicators {
  position: relative;
  display: flex;
  justify-content: center;
  padding: 10px;
  width: 100%;
  list-style: none;
}

.carousel-indicators button {
  box-sizing: content-box;
  flex: 0 1 auto;
  width: 10px;
  height: 10px;
  margin-right: 3px;
  margin-left: 3px;
  text-indent: -999px;
  cursor: pointer;
  background-color: #000;
  background-clip: padding-box;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-radius: 50%;
  opacity: 0.3;
  transition: opacity 0.35s ease;
}

.carousel-indicators .active {
  opacity: 1;
}

@media (prefers-reduced-motion: reduce) {
  .carousel-track,
  .carousel-control-prev,
  .carousel-control-next,
  .carousel-indicators button {
    transition: none;
  }
}

@media (max-width: 1048px) {
  .carousel-inner {
    width: 100%;
  }

  .carousel-control-prev,
  .carousel-control-next {
    display: none;
  }
}

.carousel-control-prev:focus-visible,
.carousel-control-next:focus-visible,
.carousel-indicators button:focus-visible {
  outline: none;
  outline-offset: 0;
}

.review-author {
  margin-block-start: 1.67em;
  margin-block-end: 1.67em;
  color: #444;
  font-size: 1rem;
  line-height: 1rem;
  font-weight: 700;
}
.carousel-indicators button { padding: 0; border-left: 0; border-right: 0; }
.carousel-container > p { overflow-wrap: anywhere; }
