.cta {
    position: relative;
    z-index: 1;
}

.cta__image {
    position: relative;
    border-radius: 12px;
    max-width: 330px;
    margin: 0 auto;
}

.cta__image img {
    border-radius: 12px;
}

.cta__image__curve {
    position: absolute;
    right: -2px;
    bottom: -2px;
    width: 105px;
}

.cta__image__curve path {
    fill: #dff4fc;
}

.cta__content__text {
    text-align: center;
}

.cta__content {
    padding: 35px 0 50px;
}

.cta__content__text .sub-heading {
    text-transform: capitalize;
}

.cta:after {
    content: "";
    position: absolute;
    z-index: -1;
    left: 0;
    top: 137px;
    width: 100%;
    height: calc(100% - 137px);
    background: linear-gradient(107.1deg, #EDFAFF 4.02%, #D7F1FA 107.33%);
}

.cta__content__text .btn {
    margin: 20px 0 0;
}

@media(min-width: 768px) {
    .cta__image {
        max-width: 314px;
    }

    .cta:after {
        left: 52px;
        top: 132px;
        width: calc(100% - 104px);
        border-radius: 20px;
        height: calc(100% - 132px);
    }

    .cta__content {
        padding: 45px 25px 75px;
    }

    .cta__content__text p {
        padding: 0 45px;
    }

    .cta__content__text .btn {
        margin: 15px 0 0;
    }

    .cta__image__curve {
        bottom: -1px;
    }
}

@media(min-width: 1200px) {
    .cta__wrapper {
        display: flex;
        align-items: center;
        justify-content: flex-start;
        position: relative;
        gap: 76px;
        overflow: hidden;
        padding: 80px 0;
    }

    .cta__content__text {
        text-align: left;
    }

    .cta__image {
        max-width: unset;
        margin: 0;
        width: 45%;
    }

    .cta__content {
        width: 42%;
        position: relative;
        z-index: 1;
        padding: 0;
    }

    .cta:after {
        display: none;
    }

    .cta__wrapper:after {
        content: "";
        position: absolute;
        z-index: -1;
        right: 0;
        top: 0;
        width: calc(100% - 106px);
        height: 100%;
        background: linear-gradient(107.1deg, #EDFAFF 4.02%, #D7F1FA 107.33%);
        border-radius: 20px;
        background: linear-gradient(107.1deg, #EDFAFF 4.02%, #D7F1FA 107.33%);
        transform: matrix(-1, 0, 0, 1, 0, 0);
    }

    .cta__image__curve {
        right: -3px;
        bottom: -2px;
        width: 182px;
    }

    .cta__image__curve path {
        fill: #e1f5fc;
    }

    .cta__content__text p {
        padding: 0;
    }

    .cta__texture {
        position: absolute;
        right: 0;
        bottom: 0;
    }
}