footer {
    padding: 15px;
    align-items: center;
    background: #212121;
    display: flex;
    column-gap: 15px;
    justify-content: space-between;
}
.footer-logo{
    margin:auto;
}
.footer-logo img {
    width: 70vw;
    min-width: 280px;
}

.footer-nav ul {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    row-gap: 10px;
}

.footer-nav ul li a {
    padding: 15px;
    white-space: nowrap;
    color: #fff;
}

.footer-nav ul li a:hover {
    background: #b0b0b0;
    color: #000;
}

.footer-contact ul {
    list-style: none;
}

.footer-contact ul {
    display: flex;
    flex-direction: column;
    row-gap: 5px;
}

.footer-contact ul li p {
    display: inline-flex;
    column-gap: 10px;
    color: #fff;
}

.footer-contact ul .time-worhing {
    display: flex;
    color: #fff;
    column-gap: 10px;
}

.dont-working {
    display: flex;
    row-gap: 5px;
    flex-direction: column;
}

footer {
    flex: 0 0 auto;
}

@media(max-width:876px) {
    .footer-nav ul {
        flex-direction: column;
    }
    .footer-nav ul li{
        text-align: center;
        display: flex;
        justify-content: center;
    }
}

@media(max-width:768px) {
    footer {
        display: flex;
        flex-direction: column;
        row-gap: 25px;
        align-items: center;
    }
}