.hero-carousel,
.hero-carousel .carousel-inner,
.hero-carousel .carousel-item {
  height: 80vh;
  min-height: 500px;
}

.hero-carousel .carousel-item {
  position: relative;
  overflow: hidden;
}

.hero-carousel .carousel-item img {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: translate(-50%, -50%);
}

.hero-carousel .carousel-caption {
  position: relative;
  z-index: 2;
  bottom: auto;
  top: 50%;
  left: 0px;
  right: 0px;
  transform: translateY(-50%);
  text-align: center;
}

.hero-carousel .carousel-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.35);
  z-index: 1;
}
