.cta-content {
    z-index: 1;
    overflow: hidden;
    position: relative;
    border-radius: 50px;
    background-size: cover;
    padding: 89px 93px 100px;
    background: linear-gradient(to bottom, rgba(221, 87, 246, 1) 0%, rgba(96, 30, 157, 1) 100%);
}
.cta-content *{
    color: var(--white-color);
}
.cta-content h2 {
    width: 62%;
    line-height: 60px;
    margin-bottom: 17px;
}
.cta-content span {
    font-size: 24px;
    line-height: 24px;
    margin-bottom: 36px;
}
.cta-content .generic-btn a {
    padding: 19px 53px 21px 54px;
    background: linear-gradient(to bottom, rgba(91, 219, 253, 1) 0%, rgba(45, 136, 186, 1) 100%);
}
.cta-content:after {
    content: "";
    width: 801px;
    bottom: -30px;
    right: -110px;
    height: 540px;
    position: absolute;
    background: url(../images/cta-img.png) no-repeat center;
}
/* ************ 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;
    }
    .cta-content:after {
        bottom: -10px;
        height: 400px;
        background-size: contain;
    }
    .cta-content .generic-btn a {
        padding: 16px 43px 18px;
    }
}
@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: 18px;
    }
    .cta-content .generic-btn a {
        padding: 14px 16px 15px;
    }
    .cta-content:after {
        width: 620px;
        height: 300px;
    }
}
@media only screen and (max-width: 767px) {
    .cta-content:after{
        display: none;
    }
    .cta-content h2 {
        width: 100%;
        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: 35px 22px;
        text-align: center;
        border-radius: 20px;
    }
}
@media only screen and (max-width: 575px) {
    .cta-content {
        padding: 30px 15px;
    }
}