.cta {
    margin-bottom: 0 !important;
    padding-bottom: var(--section-bottom-space);
}
.cta__info {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    margin-bottom: 32px;
}
.cta__info p {
    text-align: center;
}
.cta__title {
    margin-bottom: 0;
}

.cta__block {
    padding: 4rem 1.2rem;
    box-shadow: 4px 6px 16px 0 rgba(0, 0, 0, 0.10);
    background: linear-gradient(126deg, #ffeed2 7.05%, #fff6e7 31.64%, #f5f5f5 78.9%);
    border-radius: var(--border-radius-medium);
}

.cta__socials {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 32px;
}
.cta__social {
    display: flex;
    width: 44px !important;
    height: 44px;
    justify-content: center;
    align-items: center;
}
.cta__social:hover svg path,
.footer__social:hover svg path {
    transition: all 0.3s;
}

.cta__social:hover svg path,
.footer__social:hover svg path {
    fill-opacity: 0.6;
}

.cta__social svg {
    height: 100% !important;
}
@media screen and (min-width: 620px) {
    .cta__block {
        padding: 4rem 2rem;
    }
}
@media screen and (min-width: 768px) {
    .cta__block {
        display: flex;
        gap: 2rem;
        align-items: start;
    }
    .cta__socials {
        flex-direction: column;
        margin-top: 8px;
    }
        .cta__info {
            align-items: start;
        }
    .cta__info p {
        text-align: left;
    }
}
@media screen and (min-width: 1024px) {
    .cta {
        margin-bottom: calc(-1 * var(--last-section-margin)) !important;
        padding-bottom: unset;
    }
    .cta__container {
        display: flex;
        gap: 32px;
        width: 100%;
        justify-content: space-between;
        align-items: center;
        z-index: 2;
        position: relative;
    }
    .cta__info {
        flex: 0 0 calc(100% - 600px - 2rem);
        max-width: 400px;
        text-align: left;
    }
    .cta__block {
        position: relative;
        top: 0;
        right: 0;
        width: 600px;
        max-width: 820px;
        min-width: 600px;
        margin: 0 auto;
    }
    .cta__block {
        background: linear-gradient(56deg, #ffeed2 7.05%, #fff6e7 27.05%, #f5f5f5 81.9%);
    }
    .cta__social {
        display: flex;
        justify-content: center;
    }
    .cta__bottom {
        position: relative;
        left: 0;
        bottom: var(--last-section-margin);
        width: 100%;
        height: 160px;
        background: rgb(232, 232, 232);
        z-index: 0;
    }
    .cta .form__bottom {
        flex-direction: column;
    }
}
@media screen and (min-width: 1200px) {
    .cta {
        position: relative;
        z-index: 1;
    }

    .cta__block {
        width: 50%;
        min-width: 680px;
    }
    .cta__info {
        flex: 0 0 400px;
        margin-bottom: var(--last-section-margin);
    }
    .cta__bottom {
        height: 220px;
    }
    .cta .form__bottom {
        flex-direction: row;
    }
}