/* Slider Image and content */
.product-hero-img {
    width: 100%;
    height: 35rem;
    object-fit: cover;
}

.hero-block {
    background-color: #1e4e2f;
}

.no-gutters {
    margin-right: 0;
    margin-left: 0;
}

.no-gutters [class^="col-"],
.no-gutters [class*=" col-"] {
    padding-right: 0;
    padding-left: 0;
}


.sliderTitle {
    font-weight: 700;
    font-size: 3vw;
}

.sliderInfo {
    font-size: 1.1vw;
}


/* Media Query for Mobile Devices */
@media (max-width: 480px) {
    .product-hero-img {
        height: 25rem;
    }

    .sliderTitle {
        font-size: 8vw;
    }

    .sliderInfo {
        font-size: 4vw;
    }
}

/* Media Query for low resolution  Tablets, Ipads */
@media (min-width: 481px) and (max-width: 767px) {}

/* Media Query for Tablets Ipads portrait mode */
@media (min-width: 768px) and (max-width: 1024px) {

    .product-hero-img {
        height: 40rem;
    }

    .sliderTitle {
        font-size: 4vw;
    }

    .sliderInfo {
        font-size: 2vw;
    }
}

/* Media Query for Laptops and Desktops */
@media (min-width: 1025px) and (max-width: 1280px) {

    .product-hero-img {
        height: 40rem;
    }


    .sliderTitle {
        font-size: 4vw;
    }

    .sliderInfo {
        font-size: 1.5vw;
    }
}

