.hero {
  position: relative;
  height: 100vh;
}

.hero-logo {
  position: absolute;
  top: 25px;
  left: 7%;
  z-index: 10;
}

.hero .row {
  padding-bottom: 0;
}

.hero-text {
  padding: 0% 3% 0% 10%;
}

/* Shared auto-carousel styles */
.auto-carousel {
  position: relative;
}

.carousel-slide {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.carousel-slide.active {
  position: relative;
  opacity: 1;
}

/* Hero-specific carousel sizing */
.hero-carousel {
  width: 120%;
}

.flying-image {
  width: 120%;
  max-width: none;
  height: auto;
  z-index: 3;
  /*box-shadow: 0 1rem 3rem rgba(0, 0, 0, .175) !important;*/

}

.image-wrap {
  position: absolute;
  top: 0;
  left: 0;
  z-index: -100;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.custom-image {
  position: absolute;
  top: 0;
  left: 0;
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.hero-bottom-band {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  text-align: center;
  z-index: 2;
  padding: 0px 12px 0px 2px;
}

.hero::after {
  content: "";
  background: linear-gradient(to right,
    rgba(231, 74, 12, 0) 0%,
    rgba(231, 74, 12, 0.1) 55%,
    rgba(231, 74, 12, 0.35) 65%,
    rgba(231, 74, 12, 0.55) 85%,
    rgba(231, 74, 12, 0.7) 100%);
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
  pointer-events: none;
}

.hero h6 {
  font-weight: 300;
  letter-spacing: 1px;
}

.hero-arrow {
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  text-align: center;
}

.hero .arrow-icon {
  background: rgba(255, 255, 255, 0.3);
  color: var(--white-color);
  transition: all 0.3s ease;
}

.hero .arrow-icon:hover {
  background: rgba(255, 255, 255, 0.55);
  color: var(--white-color);
}

@media (max-width: 768px) {
  .hero {
    height: auto;
    min-height: 100vh;
  }
  .hero-carousel {
    width: 100%;
  }
  .flying-image {
    width: 100%;
    max-width: 100%;
  }
  .hero-logo img {
    max-width: 50vw;
    height: auto;
  }
}
