

.header-contener {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    background: radial-gradient(ellipse farthest-corner at right bottom, #fedb37 0%, #FDB931 8%, #9f7928 30%, #8a6e2f 40%, transparent 80%),
		radial-gradient(ellipse farthest-corner at left top, #fedb37 0%, #f7b531 6%, #9f7928 32%, #5d4a1f 62.5%, #5d4a1f 100%);;
    border-bottom: 1px solid #867c7c;
}

.header-link {
    display: flex;
    justify-content: center;
    align-items: center;
    transition: color 0.6s;
}

.link:hover {
    color: #794702;
}

.header-inner {
    display: flex;
    flex-direction: row-reverse;
    align-items: center;
    gap: 4px;
}

.slogan {
    margin: 0;
}

.user-controls {
    position: relative;
    top: 11px;
}

.user-nav {
    display: flex;
    justify-content: end;
    gap: 10px;
    padding: 0;
    margin: 0;
    list-style: none
}

.nav-list {
    display: flex;
    gap: 20px;
    padding: 0;
    list-style: none;
}

.nav-item {
    list-style: none;
} 

.number,
.link {
    text-decoration: none;
    color: #000;
}

.number {
    font-size: 12px;
}

.nav-list a:hover {
    fill: #794702;
}

.header-link:hover svg path {
    fill: #794702;
}

.icons:hover svg path {
    fill: #dc0000;
}