body .cta {
    border-radius: 16px;
    background: radial-gradient(100% 100% at 50.04% 0%, #251470 0%, #110d2f 55%);
}

.cta__row {
    max-width: 640px;
    margin: auto;
}

.cta .cta__title {
    text-align: center;
    margin-bottom: 20px;
    font-size: 36px;
    font-weight: 500;
    margin-top: 0;
    position: relative;
    z-index: 3;
}

.cta .cta__text {
    text-align: center;
    margin-bottom: 25px;
    color: #C4C1DF;
    position: relative;
    z-index: 3;
}

.cta__buttons {
    display: flex;
    gap: 12px;
    margin: auto;
    justify-content: center;
    position: relative;
    z-index: 3;
}

.cta a.cta__btn {
    padding: 20px;
}

.cta__decor-left {
    position: absolute;
    left: 0px;
    top: 0px;
}

.cta__decor-right {
    position: absolute;
    right: 0px;
    top: 0px;
}

@media screen and (min-width: 1025px) {
    .cta a.cta__btn {
        min-width: 143px;
    }
}

@media screen and (max-width: 1024px) {
    .cta__buttons {
        flex-direction: column;
        align-items: center;
    }

    body .cta {
        margin: 0px 15px;
        padding-left: 20px;
        padding-right: 20px;
    }

    .cta .cta__title {
        font-size: 32px;
    }
}

@media screen and (max-width: 700px) {
    .cta a.cta__btn {
        min-width: 100%;
    }
}