/* Carousel base class */
.carousel {
    margin-bottom: 15px;
}

/* Since positioning the image, we need to help out the caption */
.carousel-content {
    width: 100%;
    height: 100%;
    left: 0;
    z-index: 10;
    line-height: 100px;
    background-color: rgba(0, 0, 0, 0.4);
}

.carousel-caption {
    top: 37%;
    text-align: left;
}

/* Declare heights because of positioning of img element */
.carousel-inner {
    height: 87vh;
}

.carousel-inner .carousel-item{
    height: 87vh;
}

.carousel-inner .carousel-item:nth-child(1) {
    background: url('../images/sliders/slide-6.jpg');
    background-size: cover;
    background-position: center left;
    background-repeat: no-repeat;
}

.carousel-inner .carousel-item:nth-child(2) {
    background: url('../images/sliders/slide-2.jpg');
    background-size: cover;
    background-position: center left;
    background-repeat: no-repeat;
}

.carousel-inner .carousel-item:nth-child(3) {
    background: url('../images/sliders/slide-5.jpg');
    background-size: cover;
    background-position: center left;
    background-repeat: no-repeat;
}

.carousel-item>img {
    position: absolute;
    top: 0;
    left: 0;
    min-width: 100%;
    height: 87vh;
}

@media (min-width: 40em) {

    /* Bump up size of carousel content */
    .carousel-caption p {
        margin-bottom: 1.25rem;
        font-size: 1.25rem;
        line-height: 1.4;
    }

}

@media (max-width: 767px) {
    /* .carousel-caption {
        top: 10%;
        text-align: left;
    } */
    /* Bump up size of carousel content */
    .carousel-caption p {
        margin-bottom: 1.25rem;
        font-size: 1.25rem;
        line-height: 1.4;
    }

    .carousel-inner .carousel-item:nth-child(1) {
        background: url('../images/sliders/slide-6.jpg');
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
    }
    
    .carousel-inner .carousel-item:nth-child(2) {
        background: url('../images/sliders/slide-2.jpg');
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
    }
    
    .carousel-inner .carousel-item:nth-child(3) {
        background: url('../images/sliders/slide-5.jpg');
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
    }

}