.footer__inner {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.footer .formBg {
    padding-bottom: 60px;
}


.footer__info {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 30px;
    /* From https://css.glass */
    background: rgba(255, 255, 255, 0.15);
    border-radius: 15px;
    /* box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1); */
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}

.footer__text {
    font-family: Cera Pro;
    font-size: 14px;
    font-weight: 400;
    line-height: 16.8px;
    color: #fff;
    opacity: .6;
}

.footer__socialBlock {
    display: flex;
    align-items: center;
    gap: 15px;
}

.footer__socialBlock span {
    color: #fff;
    transition: all .3s ease;
    font-size: 35px;
}

.footer__socialBlock span:hover {
    color: #FF004F;
}

.footer__controls {
    display: flex;
    align-items: center;
    gap: 88px;
}

@media (max-width: 767px) {
    .footer .formBg {
        padding-bottom: 40px;
    }

    .footer__info {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
        padding: 20px;
    }

    .footer__info .footer__textBlock {
        margin-top: -10px;
    }

    .footer__text {
        font-family: Cera Pro;
        font-size: 12px;
        font-weight: 400;
        line-height: 14.4px;
    }

    .footer__controls {
        gap: 20px;
        justify-content: space-between;
        width: 100%;
    }
}