.op-footer {
    display: flex;
    padding: 0 32px;
    background-color: #DADED0;
}
.footer-container {
    display: flex;
    width: 100%;
    max-width: 1440px;
    margin: auto;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
}
.op-footer-logo {
    width: 176px;
    height: 60px;
    background-image: url(./../img/op-logo-footer.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
}
.op-footer-nav > ul {
    display: flex;
}
.op-footer-nav > ul > li {
    list-style-type: none;
    margin: 0 36px;
}
.op-footer-social {
    height: min-content;
    display: flex;
}
.f-social-item {
    background-color: #4E2C1B;
}

.contacts-item > p {
    position: relative;
    padding-left: 36px;
}

.contacts-item > p::before {
    position: absolute;
    content: '';
    top: -2px;
    left: 0px;
    width: 24px;
    height: 24px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
}

.contacts-item-location::before {
    background-image: url(./../img/marker-pin-01.png);
}

.contacts-item-email::before {
    background-image: url(./../img/mail-01.png);
}

.contacts-item-phone::before {
    background-image: url(./../img/Call.png);
}

@media (max-width: 1200px) {
    .op-footer-nav > ul > li {
        margin: 0 18px;
    }
}

@media (max-width: 1050px) {
    .footer-container {
        display: flex;
        flex-direction: column;
        padding-top: 50px;
        padding-bottom: 50px;
    }
    .op-footer-logo {
        width: 191px;
        height: 37px;
        background-image: url(./../img/op-logo-footer-mob.png);
        margin-bottom: 20px;
    }
    .op-footer-nav {
        margin: 36px 0;
    }
    .op-footer-nav > ul {
        flex-direction: column;
    }
    .op-footer-nav > ul > li {
        margin: 18px 0;
        text-align: center;
    }
}