footer{
    margin-top: 100px;
}
.logo-footer {
    display: flex;
    height: 54px;
    width: 106px;
    background-image: url("../img/Logo_1605.svg");
    background-size: cover;
}

.menu-footer {
    list-style: none;
    display: flex;
    flex-direction: row;
    width: 100%;
    padding: 0 0 20px 0;
    margin: 0;
    justify-content: space-between;
    align-self: end;
    border-bottom: 5px solid var(--color-black);
}

.menu-footer li a {
    text-transform: uppercase;
    color: var(--color-black);
    font-size: 16px;
    font-weight: 500;
}

.email {
    text-transform: lowercase !important;
}

.footer-copyright{
    text-align: right;
    margin-top: 12px;
}

@media all and (max-width: 767px) {
    .logo-footer {
        height: 46px;
        width: 90px;
        margin-left: auto;
        margin-right: auto;
    }

    .menu-footer {
        margin-top: 20px;
    }

    .footer-russian-poster {
        display: none
    }
    .email{
        display: flex;
        background-image: url("../img/Post.svg");
        font-size: 0!important;
        width: 29px;
        height: 23px;
    }
    .footer-copyright{
        text-align: center;
        margin-top: 8px;
    }

}