.banner {
    width: 100%;
}

.banner-img {
    min-height: 400px;
    object-fit: cover;
    position: absolute;
    width: 100%;
    z-index: 0;
}

.banner-content {
    background-color: transparent;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-top: 30px;
    padding-bottom: 30px;
    width: 100%;
    position: relative;
}

    .banner-content .text-center > * {
        text-align: center;
    }

    .banner-content .banner-paragraph {
        display: block;
        margin-bottom: 25px;
    }
/* Extra small devices - xs */
@media (max-width: 575px) {
    .banner-paragraph {
        font-size: 18px;
        line-height: 25px;
    }
}
/* Small devices (landscape phones, 576px and up) - sm */
@media (min-width: 576px) {
    .banner-paragraph {
        font-size: 18px;
        line-height: 25px;
    }
}
/* Medium devices (tablets, 768px and up) - md */
@media (min-width: 768px) {
}
/* Large devices (desktops, 992px and up) - lg */
@media (min-width: 992px) {
    .banner,
    .banner-img,
    .banner-content {
        min-height: 281px;
        max-height: 550px;
    }

    .banner-paragraph {
        font-size: 24px;
        line-height: 38px;
    }
}
/* Extra large devices (large desktops, 1200px and up) - xl */
@media (min-width: 1200px) {
    .banner,
    .banner-img,
    .banner-content {
        min-height: 400px;
        max-height: 450px;
    }
}

