header nav {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--color5);
}

header nav ul {
    display: flex;
    align-items: center;
    list-style: none;
    gap: 10px;
    padding: 0;
}

.conteiner-icon {
    display: flex;
    align-items: center;
    gap: 20px;
}

.user-icon{
    padding-top: 5px;
    cursor: pointer;

}
.user-icon img{
    width: 50px;
    height: 50px;
    object-fit: cover;
    border-radius: 50%;
    border: solid .5px var(--border-img);
}
@media screen and (max-width: 1335px) {
    header nav ul li:last-child {
        display: none;
    }
}
@media screen and (max-width: 1065px) {
    header nav ul {
        display: none;
    }
}
@media screen and (max-width: 700px) {
    header nav ul {
        display: none;
    }
    .conteiner-icon a{
        display: none;
    }
}