@import './unique.css';

footer {
    display: flex;
    justify-content: space-between;
    background: var(--light);
    padding: 30px 83px 52px;
    
}


.footer__img {
    margin: 5px;
    width: 20px;
}


.footer__link {
    color: var(--grey);
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 120%;
    font-family: Fira Sans;
}

.footer__link:not(:last-child) {
    margin-right: 20px;
}

.footer__desc {
    color: var(--grey);
    font-family: Fira Sans;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 120%;
    margin-top: 18px;
}

.footer__img:not(:last-child) {
    margin-right: 16px;
}

.footer__logo {
    display: none;
}

.footer__desc_mobile {
    display: none;
}

@media (max-width: 716px) {
    footer {
        display: flex;
        flex-direction: column;
        padding-left: 50px;
        padding-top: 24px;
        padding-bottom: 24px;
    }

    .footer__logo {
        display: block;
    }

    .footer__desc_mobile {
        display: block;
        color: var(--grey);
        font-family: Nunito;
        font-size: 12px;
        font-weight: 400;
        line-height: 140%;
        margin-top: 12px;
        margin-bottom: 26px;
    }

    .footer__link {
        display: flex;
        flex-direction: column;
        font-size: 12px;
        font-weight: 700;
        color: var(--primary);
        line-height: 140%
    }

    .footer__link:not(:last-child) {
        margin-bottom: 4px;
    }

    .footer__desc {
        display: none;
    }

    .footer__socials {
        margin-top: 11px;
    }

    .footer__img:not(:last-child) {
        margin-right: 12px;
    }
}