.cta-banner {
    position: relative;
    overflow: hidden;
    min-height: 470px;
    display: flex;
    align-items: center;
}

.cta-banner-text {
    position: relative;
    bottom: 0px;
    width: 100%;
    padding: 100px 0px;
    z-index: 1;
    text-align: center;
}
.cta-banner-text *{
    color: var(--white);
}

.cta-banner-text-left h3{
    margin-bottom: 0px;
}
.cta-banner-text-left{
    text-align: left;
}
.cta-banner-image {
    position: absolute;
    width: 100%;
    height: 100%;
}
.cta-banner-image::before{
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    top: 0px;
    left: 0px;
    z-index: 1;
}

.cta-banner-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}
.cta-banner-text-wrapper{
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.cta-banner-text-left{
    width: 80%;
    padding: 0px 15px;
}
.cta-banner-text-right{
    width: 20%;
    padding: 0px 15px;
}
.cta-banner-text-right a.btn:hover::before{
    background: var(--white);
}
.cta-banner-text-right a.btn:hover{
    border: 2px solid var(--white);
    color: var(--white) !important;
}



@media (max-width: 1200px) {
    .cta-banner-text-left h2{
        font-size: 50px;
    }
    .cta-banner-text-left {
        width: 70%;
    }
    .cta-banner-text-right {
        width: 30%;
    }
}
@media (max-width: 991px) {
    .cta-banner-text{
        padding: 80px 0px;
    }
    .cta-banner-text-left h2 {
        font-size: 40px;
    }
    .cta-banner-text-left {
        width: 100%;
        margin-bottom: 25px;
        padding: 0px;
    }
    .cta-banner-text-right {
        width: 100%;
        text-align: left;
        padding: 0px;
    }
}
@media (max-width: 991px) {
    .cta-banner-text-wrapper{
        flex-direction: column;
        align-items: flex-start;
    }
    .cta-banner {
        min-height: 380px;
    }
}

@media (max-width: 767px) {
    .cta-banner-text {
        padding: 60px 0px;
    }
    .cta-banner {
        min-height: 300px;
    }
}