.simpleCarousel {
    position: relative;
    width: 100%;
    min-height: 800px;
    overflow: hidden;
    border-radius: 6px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.18);
    background: #d9d9d9;
}
@media (max-width: 900px) {
    .simpleCarousel {
        min-height: 320px;
    }
}
.simpleCarouselSlide {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    display: block;

    object-fit: cover;
    object-position: center top;

    opacity: 0;
    transition: opacity 0.8s ease-in-out;
}

.simpleCarouselSlide.is-active {
    opacity: 1;
    z-index: 1;
}

@media (max-width: 1100px) {
    .simpleCarousel {
        min-height: 420px;
    }

    .simpleCarouselSlide {
        object-position: center 20%;
    }
}

@media (max-width: 900px) {
    .simpleCarousel {
        min-height: 320px;
    }
}

#bannerSlideshow {
    position: relative;
    width: 100%;
    height: clamp(260px, 42vw, 420px);
    min-height: 0;
    overflow: hidden;
    background: #d9d9d9;
    border-radius: 0;
    box-shadow: none;
}

#bannerSlideshow:hover {
  height:800px;
  }

#bannerSlideshow .simpleCarouselSlide {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center 38%;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
}

#bannerSlideshow .simpleCarouselSlide.is-active {
    opacity: 1;
    z-index: 1;
}

@media (max-width: 700px) {
    #bannerSlideshow {
        height: clamp(180px, 52vw, 320px);
    }

    #bannerSlideshow .simpleCarouselSlide {
        object-position: center 35%;
    }
}

#bannerSlideshow .simpleCarouselSlide#dizHeader {
  object-position: center 38%;
  }

#bannerSlideshow .simpleCarouselSlide#walkerRocksHeader {
  object-position: center 58%;
  }
#bannerSlideshow .simpleCarouselSlide#walkerAAHeader {
  object-position: center 68%;
  }
#bannerSlideshow .simpleCarouselSlide#courthouseHeader {
  object-position: center 48%;
  }
