
.cta-box {
    z-index: 1;
    position: relative;
    border-radius: 5px;
    padding: 74px 95px;
    background: url(../images/cta-bg-img.jpg) no-repeat center;
    background-size: cover;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.cta-box:after {
    top: 0;
    left: 0;
    width: 100%;
    content: "";
    height: 100%;
    border-radius: 5px;
    position: absolute;
    background: rgb(41 19 75 / 80%);
}
.cta-box .generic-btn a i{
    color: var(--primary--color);
}
.cta-box *{
    color: var(--white-color);
}
.cta-content h2 {
    line-height: 48px;
    margin-bottom: 0;
}
.cta-content {
    width: 67%;
}
.cta-btn .generic-btn a {
    padding: 20px 37px;
}
.cta-btn .generic-btn a:hover i{
    color: var(--white-color);
}
.cta-content span {
    font-size: 18px;
    font-weight: 400;
    line-height: 18px;
    margin-bottom: 18px;
    font-family: "Plus Jakarta Sans", sans-serif
}
.cta-content,.cta-btn{
    z-index: 1;
    position: relative;
}
/* ************ responsive *************** */
@media only screen and (max-width: 1440px) {
    .cta-box {
        padding: 64px 85px;
    }
    .cta-btn .generic-btn a {
        padding: 18px 28px;
    }
}
@media only screen and (max-width: 1199px) {
    .cta-content span {
        font-size: 16px;
        line-height: 18px;
        margin-bottom: 10px;
    }
    .cta-content span {
        font-size: 18px;
        line-height: 20px;
        margin-bottom: 14px;
    }
    .cta-btn .generic-btn a {
        padding: 18px 24px;
    }
}
@media only screen and (max-width: 991px) {
    .cta-content h2 {
        line-height: 36px;
    }
    .cta-content span {
        font-size: 16px;
        line-height: 18px;
        margin-bottom: 10px;
    }
    .cta-btn .generic-btn a {
        padding: 16px 14px;
    }
    .cta-box {
        padding: 44px 35px;
    }
}
@media only screen and (max-width: 767px) {
    .cta-content h2 {
        line-height: 30px;
    }
    .cta-content span {
        font-size: 14px;
        line-height: 16px;
        margin-bottom: 8px;
    }
    .cta-content .generic-btn a {
        padding: 14px 20px 16px;
    }
    .cta-box {
        padding: 34px 25px;
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    .cta-content {
        width: 100%;
    }
}
@media only screen and (max-width: 575px) {
    .cta-content h2 {
        line-height: 30px;
    }
    .cta-content h2 {
        line-height: 28px;
    }
    .cta-box {
        padding: 30px 15px;
    }
    .cta-btn .generic-btn a {
        padding: 14px 14px;
    }
}