.header__nav {
    margin-right: 59px;
}
.header__nav-list {
    display: flex;
    align-items: center;
    gap: 37px;
}
.header__nav-item {
    white-space: nowrap;
}
.header__nav-item-link {
    font-size: 14px;
    line-height: 17px;
    color: #000;
}
.header__nav-item-link:hover {
    color: #1E3D76;
}
.header__nav-item-link.selected {
    color: #1E3D76;
    font-weight: 600;
}

@media screen and (max-width: 1224px) {
    .header__nav-list {
        gap: 16px;
    }
}

@media screen and (max-width: 1060px) {
    .header__nav {
        display: none;
    }
}