header {
    width: 100%;
}
.header__wrapper {
    margin: 0 auto;
    max-width: 1025px;
    width: 100%;

    box-sizing: border-box;
}
.only-mob {
    display: none;
}
.header__top {
    background-color: black;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 15px;
    box-sizing: border-box;
    flex-wrap: wrap;
}
.header__bottom {
    background-color: white;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 15px;
    box-sizing: border-box;
}
.header__logo {
    display: flex;
    text-decoration: none;
    align-items: center;
    gap: 16px;
}
.top-nav-link {
    text-transform: uppercase;
    color: white;
    text-decoration: none;
    font-family: sans-serif;
    font-size: 14px;
    font-weight: 700;
}

.header__nav {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-right: auto;
    margin-left: auto;
}
.header__nav a {
    text-decoration: none;
    font-weight: 700;
    text-transform: uppercase;
    color: black;
    font-size: 11px;
    font-family: sans-serif;
}
.header__nav a:hover {
    color: red;
}
.header__right-menu {
    display: flex;
    align-items: center;
    gap: 8px;
}
.header__right-item {
    font-weight: 700;
    text-transform: uppercase;
    color: white;
    text-decoration: none;
    font-size: 11px;
    font-family: sans-serif;
}
.header__nav-red {
    background-color: brown;
    padding: 4px 8px;
    box-sizing: border-box;
    color: white!important;
}
.no-desc {
    display: none;
}
@media (max-width: 970px) {
    .header__nav {
        display: none;
    }
    .no-mob {
        display: none;
    }
    .no-desc {
        display: block;
    }
}