.cmp-responsive-image-banner {
    display: flex;
    flex-direction: column;
    margin-bottom: -100px;
    background-color: transparent;
}

.cmp-responsive-image-banner .cmp-responsive-image-banner__content {
    display: flex;
    flex-direction: row;
    position: relative;
    top: -130px;
}

.cmp-responsive-image-banner .cmp-responsive-image-banner__top-overlay {
    height: 130px;
    width: 100%;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    padding-left: 10%;
    padding-right: 10%;
    background: black;
}

.cmp-responsive-image-banner .cmp-responsive-image-banner__title {
    z-index: 2;
    padding-top: 40px;
    font-family: proxima-nova;
    color: white;
    font-weight: 600;
    width: max-content;
    font-size: 80px;
    line-height: 70px;
    padding-right: 3%;
}

.cmp-responsive-image-banner .cmp-responsive-image-banner__top-overlay-box {
    background-image: linear-gradient(black, rgba(0, 0, 0, 0));
    width: 100%;
    height: 130px;
    z-index: 1;
    position: relative;
    top: -30%;
}

.cmp-responsive-image-banner .cmp-responsive-image-banner__top-overlay-line {
    width: 45%;
    height: 1px;
    background-color: white;
    z-index: 2;
    margin-top: 30px;
    flex: 1;
}

.cmp-responsive-image-banner .cmp-responsive-image-banner__section {
    display: flex;
    flex-direction: column;
    position: relative;
}

.cmp-responsive-image-banner .cmp-responsive-image-banner__section .cmp-responsive-image-banner__image {
    object-fit: cover;
    aspect-ratio: 1 / 0.85;
    width: 100%;
}

.cmp-responsive-image-banner .cmp-responsive-image-banner__section .cmp-responsive-image-banner__text-overlay {
    position: absolute;
    bottom: 20px;
    width: 100%;
    font-family: proxima-nova;
    color: white;
    font-weight: 600;
    text-align: center;
    z-index: 2;
    font-size: 40px;
}

.cmp-responsive-image-banner .cmp-responsive-image-banner__section .cmp-responsive-image-banner__bottom-overlay-box {
    position: absolute;
    width: 100%;
    background-image: linear-gradient(rgba(0, 0, 0, 0), black);
    bottom: 0;
    height: 10%;
}

@media only screen and (max-width: 768px) {
    .cmp-responsive-image-banner .cmp-responsive-image-banner__title {
        font-size: 55px;
        line-height: 45px;
    }
}

@media only screen and (min-width: 769px) and (max-width: 1000px) {
    .cmp-responsive-image-banner .cmp-responsive-image-banner__title {
        font-size: 60px;
        line-height: 50px;
    }

    .cmp-responsive-image-banner .cmp-responsive-image-banner__section .cmp-responsive-image-banner__text-overlay {
        font-size: 35px;
        line-height: 30px;
    }
}

@media only screen and (min-width: 1000px) and (max-width: 1300px) {
    .cmp-responsive-image-banner .cmp-responsive-image-banner__title {
        font-size: 70px;
        line-height: 60px;
    }
}

@media only screen and (min-width: 1300px) {
    .cmp-responsive-image-banner .cmp-responsive-image-banner__title {
        font-size: 80px;
        line-height: 70px;
    }

    .cmp-responsive-image-banner .cmp-responsive-image-banner__section .cmp-responsive-image-banner__text-overlay {
        font-size: 40px;
        line-height: 30px;
    }
}

@media only screen and (max-width: 768px) {
    .cmp-responsive-image-banner .cmp-responsive-image-banner__content{
        flex-direction: column;
    }

    .cmp-responsive-image-banner .cmp-responsive-image-banner__section {
        width: 100%;
    }

    .cmp-responsive-image-banner .cmp-responsive-image-banner__top-overlay {
        height: 100px;
        width: 100%;
    }
}

@media only screen and (min-width: 769px) {
    .cmp-responsive-image-banner .cmp-responsive-image-banner__content{
        flex-direction: row;
    }

    .cmp-responsive-image-banner .cmp-responsive-image-banner__section {
        width: 33.33%;
    }

    .cmp-responsive-image-banner .cmp-responsive-image-banner__top-overlay {
        height: 130px;
        width: 100%;
    }
}