.cta__block {
    position: relative;
    border-radius: 24px;
    background: linear-gradient(80deg, #9c4709 -3.46%, #DA640D 57.3%);
    box-shadow: 0px 8px 32px 0px rgba(21, 33, 81, 0.08);
}

.cta__block-gradient {
    background: linear-gradient(266deg, #C8225F 0%, #392EC9 88.01%);
}

.cta__content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    gap: 32px;
    padding: 32px 24px;
    width: 100%;
}

.cta__block:after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-image: url(../images/cta-bg.svg);
    background-size: auto 100%;
    background-repeat: no-repeat;
    background-position: right bottom;
    z-index: 1;
}

.cta__block.cta__ball-bg:after {
    height: 61.95%;
    background-image: url(../images/cta__bg.svg);
    background-size: auto 100%;
}

.cta__info * {
    color: #fff;
}

.cta__text {
    opacity: 0.7;
    max-width: 666px;
}

.cta__btn {
    border-radius: 12px;
    font-size: 1rem;
    background: #FFF;
    padding: 20px 32px;
    color: var(--color-primary) !important;
    cursor: pointer;
}

.cta__btn-right {
    display: flex;
    flex-direction: column;
    gap: 16px;
    width: fit-content;
}

.cta__input {
    width: 100%;
}

.cta__input input {
    width: 100% !important;
    min-width: 100%;
    height: 44px !important;
    display: flex;
    align-items: center;
    padding: 10px 16px !important;
    border-radius: 8px;
    border: 1px solid #E7E7EA;
    background: rgba(255, 255, 255, 0.80);
    box-shadow: 0px 8px 48px 0px rgba(21, 33, 81, 0.08);
    backdrop-filter: blur(10px);
}

.cta__input::placeholder {
    font-size: 12px;
}

@media screen and (min-width: 650px) {
    .cta__content {
        flex-direction: row;
        gap: 24px;
        justify-content: space-between;
        align-items: center;
    }

    .cta__btn-wrapper {
        max-width: 40%;
        display: flex;
        justify-content: end;
        align-items: center;
        flex-shrink: 0;
    }

    .cta__block:after {
        background-image: url(../images/cta-bg-tablet_1.svg);
        opacity: 1;
    }
}

@media screen and (min-width: 768px) {
    .cta__block.cta__ball-bg:after {
        height: 100%;
        background-image: url(../images/cta-bg-tablet.svg);
        background-size: auto 100%;
    }
}

@media screen and (min-width: 1024px) {
    .cta__block {
        border-radius: 32px;
        box-shadow: 0px -40px 72px -16px rgba(10, 19, 44, 0.20);
    }

    .cta__content {
        padding: 77px 72px;
    }

    .cta__input input::placeholder,
    .cta__input input {
        font-size: 14px;
    }
}

@media screen and (min-width: 1025px) {
    .cta__block:after {
        background-image: url(../images/cta-bg-desktop_1.svg);
    }

    .cta__block.cta__ball-bg:after {
        height: 100%;
        background-image: url(../images/cta-bg-desktop.svg);
    }

    .cta__content {
        gap: 76px;
        padding: 64px 72px;
    }

}

@media screen and (min-width: 1025px) {
    .cta__block {
        min-height: 322px;
        display: flex;
        align-items: center;
    }
}

@media screen and (min-width: 1280px) {
    .cta__input input {
        height: 64px !important;
        font-size: 16px;
        padding: 20px 16px !important
    }

    .cta__input input::placeholder {
        font-size: 16px;
    }
}

.cta-new__block {
    border-radius: 32px;
    background-color: #EBEAFA;
    box-shadow: 0 -30px 72px -8px rgba(24, 24, 24, 0.10);
    padding: 32px 15.5px 32px 24px;
    background-image: url(../images/cta-new-bg-mob.svg);
    background-repeat: no-repeat;
    background-size: 100%;
}

.cta-new__content {
    display: flex;
    flex-direction: column;
    gap: 24px 16px;
}

.cta-new__info {
    flex: 1;
}

.cta-new__text {
    width: 100%;
    max-width: 590px;
}

.cta-new__feedback {
    width: 100%;
    max-width: 340px;
}

.cta-new__person {
    display: flex;
    align-items: center;
    gap: 16px;
}

.cta-new__person-image {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    overflow: hidden;
}

.cta-new__person-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cta-new__person-name {
    color: var(--color-title);
    font-size: 12px;
    font-weight: 600;
    line-height: 1.5;
}

.cta-new__person-text {
    color: var(--color-second-text);
    font-size: 10px;
    line-height: 1.5;
    margin-top: 4px;
}

.cta-new__btn-wrapper {
    display: flex;
    flex-direction: column;
    margin-top: 16px;
}

.cta-new__btn {
    padding-right: 10px;
    padding-left: 10px;
    width: 100%;
}

@media screen and (min-width: 768px) {
    .cta-new__block {
        background-image: url(../images/cta-new-bg-tablet.svg);
        padding: 32px 29px 32px 24px;
    }

    .cta-new__content {
        flex-direction: row;
        align-items: center;
    }

    .cta-new__feedback {
        max-width: 249px;
    }

    .cta-new__btn-wrapper {
        margin-top: 32px;
    }
}

@media screen and (min-width: 1280px) {
    .cta-new__block {
        background-image: url(../images/cta-new-bg.svg);
        padding: 59px 72px 69px;
    }

    .cta-new__content {
        gap: 59px;
    }

    .cta-new__feedback {
        max-width: 302px;
    }

    .cta-new__person {
        gap: 24px;
    }

    .cta-new__person-image {
        width: 64px;
        height: 64px;
    }

    .cta-new__person-name {
        font-size: 16px;
    }

    .cta-new__person-text {
        font-size: 12px;
    }
}