.bannerSize {
    /* height: 500px; */
    width: 100%;
    object-fit: cover;
}

@media (max-width: 768px) {
    .bannerSize {
        height: 320px;
    }
}

/* Parallax wrapper */
.parallax-img-wrapper {
    position: relative;
    overflow: hidden;
    height: 100%;
}

/* Parallax image */
.parallax-img {
    position: absolute;
    width: 110%;            /* slightly larger for movement space */
    height: 110%;
    top: -5%;
    left: -5%;
    object-fit: cover;
    transition: transform 2.5s ease-out;
}

/* Carousel fade animation */
.carousel-item {
    opacity: 0;
    transition: opacity 1s ease;
}

.carousel-item.active {
    opacity: 1;
}

/* Parallax slide movement */
.parallax-slide.active .parallax-img {
    transform: translateY(-20px) scale(1.05);
}
/* DARK / LIGHT GRADIENT OVERLAY */
.gradient-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;

    /* Customize Your Gradient Here */
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.45),
        rgba(0, 0, 0, 0.15)
    );
    pointer-events: none;
    z-index: 2;
}