.foot_socials {
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
    /* border: 1px solid #ffffff27; */
    align-items: center;
    height: 40px;
    width: 220px;
}

.foot_contacts {
    display: flex;
    justify-content: center;
    align-items: center;
    min-width: 545px;
    flex-grow: 1;
}

.foot_contacts a {
    margin: 0 10px;
}

.foot_contacts img {
    margin-right: 10px;
}


.foot_menu_item {
    font-size: 0.7em;
    text-decoration: none;
}

.foot_socials img {
    width: 15px;
    height: 15px;
}

#foot_menu {
    background-color: #2A3550;
    margin-top: 0;
    min-height: 80px;
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    align-items: center;
    padding: 0 10px;
}

.foot_legal {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 220px;
}

@media screen and (max-width: 1000px) and (min-width: 801px) {
    .foot_contacts {
        flex-direction: column;
        min-width: 30%;
        align-items: start;
    }

    .foot_menu_item {
        margin-right: 10px;
    }

    .foot_contacts a {
        margin: 2px 10px;
    }

    .foot_legal {
        width: 25%;
    }

    .foot_socials {
        width: 25%;

    }


}

@media screen and (max-width: 800px) {
    #foot_menu {
        flex-direction: column;
        min-height: 150px;
    }

    .foot_contacts {
        flex-direction: column;
        min-width: auto;
    }
}