/*  Original carousel */
.carousel-inner {
  min-height: initial !important;
  max-height: 80dvh !important;
}

/* .carousel-inner img {
  object-fit: cover;
  height: 80dvh !important;
  width: 100% !important;
} */

/*  My custom super carousel */
.carouselOverlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #22222248;
  pointer-events: none;
  z-index: 10;

  display: flex;
  align-items: end;
  justify-content: end;
  padding: 5rem;
  pointer-events: none;
}

.carouselOverlay .textWrapper {
  z-index: 20;
  text-align: right;
  align-items: end;

  display: flex;
  flex-direction: column;
  gap: 1rem;
}

@media (min-width: 481px) and (max-width: 767px) {
  .carouselOverlay .textWrapper .title {
    font-size: 5rem !important;
  }
  .carouselOverlay .textWrapper .subtitle {
    font-size: 1rem !important;
    letter-spacing: 1px !important;
  }
}

@media (max-width: 480px) {
  .carouselOverlay .textWrapper .title {
    font-size: 3rem !important;
    padding-bottom: 0rem !important;
  }
}

.carouselOverlay .textWrapper .title {
  font-weight: 400;
  font-size: 7.5rem;
  letter-spacing: 0%;
  line-height: 100%;
  margin-bottom: 1rem;
  color: white;
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  /*Button-less version*/
  padding-bottom: 5rem;
}

.carouselOverlay .textWrapper .subtitle {
  background-color: white;
  color: black;
  mix-blend-mode: lighten;

  font-size: 2rem;
  width: fit-content;
  padding: 1rem 2rem;
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  text-transform: uppercase;
  cursor: pointer;
  border-radius: 10px;
  cursor: pointer;
  letter-spacing: 4px;
}
