.header{
    width: 100%;
    background: #fff;
    font-family: ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", Segoe UI Symbol, "Noto Color Emoji";
    font-weight: 500;
}


.header-container{
    max-width: 1342px;
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
}


.header-up {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
    color: #8e8e8e;
    padding: 10px 0;
}
.header-up-left span {
    color: #8e8e8e;
}
.header-up-right span {
    display: flex;
    align-items: center;
    gap: 6px;
}
.header-phone {
    color: #ffb400;
    text-decoration: none;
    font-weight: 500;
}
.header-linie {
    width: 100%;
    height: 1px;
    background: #e5e5e5;
}

.header-down {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 0;
    gap: 30px;
}
.header-nav {
    display: flex;
    align-items: center;
    gap: 34px;
    flex-wrap: wrap;
}
.header-nav a {
    text-decoration: none;
    color: #111111;
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    transition: color 0.25s ease;
}
.header-nav a:hover {
    color: #ffb400;
}