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

.star {
  display: inline-block;
  width: 30px;
  height: 30px;
  background-color: gold;
  clip-path: polygon(
    50% 0%, 
    61% 35%, 
    98% 35%, 
    68% 57%, 
    79% 91%, 
    50% 70%, 
    21% 91%, 
    32% 57%, 
    2% 35%, 
    39% 35%
  );
}

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

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

.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: 800px;
  overflow: hidden;
}

.carousel-track {
  display: flex;
  width: 100%;
  height: 100%;
  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: 100%;
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

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

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

.shadow {
  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;
  padding-top: 20%;
  width: 4%;
  height: 100vh;
  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 li {
  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 li {
    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 li:focus-visible {
  outline: 3px solid #3f7868;
  outline-offset: 3px;
}

.review-author {
  margin-block-start: 1.67em;
  margin-block-end: 1.67em;
  color: #444;
  font-size: 1rem;
  line-height: 1rem;
  font-weight: 700;
}