/* CUSTOMIZE THE CAROUSEL
-------------------------------------------------- */

/* Carousel base class */
.carousel {
  margin-bottom: 0;
}
/* Since positioning the image, we need to help out the caption */
.carousel-caption {
  left: 2%;
  right: 2%;
  top: 0;
  z-index: 10;
  padding-right: 2%;
}

.carousel-caption h5 {
  font-family: "Inter", sans-serif;
  font-weight: 600;
  font-size: 26px;
  line-height: 1.2;
}
.carousel-caption p {
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 1.2;

}

/* Declare heights because of positioning of img element */
.carousel-item {
  height: 10rem;
}

.carousel-indicators {
  position: relative;
  z-index: 2;
  display: flex;
  margin-bottom: 0;
  margin-left: 2%;
  justify-content: left;
}
.carousel-inner {
    position: absolute;
    width: 92%;
    bottom: 70px;
}

.carousel.pointer-event {
    touch-action: pan-y;
    height: 100%;
    width: 100%;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, #1C4B5D 94.61%);
    padding: 0 15px;
}

.carousel-indicators [data-bs-target] {
  box-sizing: content-box;
  flex: 0 1 auto;
  width: 10px;
  height: 5px;
  padding: 0;
  margin-right: 3px;
  margin-left: 3px;
  text-indent: -999px;
  cursor: pointer;
  background-color: var(--bs-carousel-indicator-active-bg);
  background-clip: padding-box;
  border: 0;
  border-top: 0;
  border-bottom: 0;
  opacity: 0.6;
  transition: opacity 0.6s ease;
  border-radius: 2px;
}

.carousel-indicators .active {
  width: 32px;
  opacity: 1;
}


/* RESPONSIVE CSS
-------------------------------------------------- */

@media (min-width: 40em) {
  /* Bump up size of carousel content */
  .carousel-caption p {
    font-size: 18px;
    line-height: 1.4;
  }
}

