.site-header {
    display: flex;

    justify-content: space-between;
    align-items: center;

    padding: 2px;

    background-color: #ff9900;

}

.header-left,
.header-right {
    margin: 0;
}

.header-left img {
    height: 85px;
    object-fit: contain;
}

.header-left {
    width: 400px;

}

.header-right {
    width: 320px;
}

.contacts {
    margin: 2px;
    padding: 5px 10px;
    background-color: bisque;
}

.contacts>ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.contacts li {
    display: flex;
    gap: 8px;
}

.contacts li::before {
    content: "";

    display: block;

    width: 12px;
    height: 12px;

    flex-shrink: 0;

    background-image: url("../img/m_s.gif");
    background-repeat: no-repeat;
    background-size: contain;

    margin-top: 6px;
}
