.cta-content {
    z-index: 1;
    position: relative;
    border-radius: 10px;
    padding: 105px 93px 95px;
    background: url(../images/cta-bg-img.jpg) no-repeat center;
    background-size: cover;
}
.cta-content *{
    color: var(--white-color);
}
.cta-content h2 {
    width: 51%;
    line-height: 60px;
    margin-bottom: 17px;
}
.cta-content span{
    font-size: 20px;
    line-height: 22px;
    margin-bottom: 26px;
}
.cta-content .generic-btn a {
    padding: 19px 29px 21px 30px;
}
/* ************ responsive *************** */
@media only screen and (max-width: 1440px) {
    .cta-content {
        padding: 85px 72px 75px;
    }
}
@media only screen and (max-width: 1199px) {
    .cta-content {
        padding: 75px 62px 65px;
    }
    .cta-content h2 {
        line-height: 48px;
        margin-bottom: 14px;
    }
    .cta-content span {
        font-size: 18px;
        line-height: 20px;
        margin-bottom: 22px;
    }
}
@media only screen and (max-width: 991px) {
    .cta-content {
        padding: 55px 42px 45px;
    }
    .cta-content h2 {
        width: 56%;
        line-height: 45px;
    }
    .cta-content span {
        font-size: 16px;
        line-height: 18px;
        margin-bottom: 19px;
    }
    .cta-content .generic-btn a {
        padding: 16px 26px 18px;
    }
}
@media only screen and (max-width: 767px) {
    .cta-content h2 {
        width: 84%;
        line-height: 35px;
    }
    .cta-content span {
        font-size: 14px;
        line-height: 16px;
        margin-bottom: 18px;
    }
    .cta-content .generic-btn a {
        padding: 14px 20px 16px;
    }
    .cta-content {
        padding: 45px 22px;
        background-position: 73%;
    }
}
@media only screen and (max-width: 575px) {
    .cta-content {
        background-position: 13%;
        padding: 35px 15px;
    }
}