.image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 30%;
    background: linear-gradient(to top, #000, rgba(106, 9, 9, 0));
}

.carouselTitle {
    font-size: 3.5vw;
    text-transform: uppercase;
    font-weight: 900;
    line-height: 3.5vw;
    color: white;
}

/* Media Query for Mobile Devices */
@media (max-width: 480px) {
    .carouselTitle {
        font-size: 8vw;
        text-transform: uppercase;
        font-weight: 900;
        line-height: 8vw;
        color: white;
    }

    .carousel-item {
        height: fit-content;
    }
    
    #mainCarousel .carousel-item {
        height: 100vh !important;
    }
}

/* Media Query for low resolution  Tablets, Ipads */
@media (min-width: 481px) and (max-width: 767px) {
    .carouselTitle {
        font-size: 8vw;
        text-transform: uppercase;
        font-weight: 900;
        line-height: 8vw;
        color: white;
    }
}

/* Media Query for Tablets Ipads portrait mode */
@media (min-width: 768px) and (max-width: 1024px) {
}

/* Media Query for Laptops and Desktops */
@media (min-width: 1025px) and (max-width: 1280px) {
}

/* Media Query for Large screens */
@media (min-width: 1281px) {
    .carousel-item {
        height: fit-content;
    }
    
    #mainCarousel .carousel-item {
        height: 100vh !important;
    }
}
