/* Hero Carousel Styling */

.hero-carousel-wrapper {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.hero-carousel {
  position: relative;
  width: 100%;
}

.hero-carousel-item {
  width: 100%;
  height: auto;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  transition: opacity 1s ease-in-out;
  pointer-events: none;
}

.hero-carousel-item.active {
  position: relative;
  opacity: 1;
  pointer-events: auto;
}

.hero-carousel-item picture {
  display: block;
  width: 100%;
}

.hero-carousel-item img {
  width: 100%;
  height: auto;
  display: block;
}

/* Responsive */
@media (max-width: 768px) {
  .hero-carousel-item {
    transition: opacity 0.6s ease-in-out;
  }
}
