.hero-slider {
    position: relative;
}

.hero-slide-image {
    width: 100%;
    display: block;
}

.carousel-caption {
    bottom: 12%;
    left: 8%;
    right: auto;
    text-align: left;
}

.carousel-caption h2 {
    font-size: 56px;
    font-weight: 700;
    margin-bottom: 25px;
    color: #fff;
}

.hero-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 180px;
    height: 54px;
    background: #fff;
    color: #111;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: .25s ease;
}

.hero-btn:hover {
    background: #111;
    color: #fff;
}

@media(min-width:992px){

    .hero-slide-image {
        height: auto;
    }

}

@media(max-width:991px){

    .hero-slide-image {
        min-height: 420px;
        object-fit: cover;
    }

    .carousel-caption {
        left: 20px;
        right: 20px;
        bottom: 40px;
    }

    .carousel-caption h2 {
        font-size: 32px;
    }

}