header{
    display: flex;
    /* align-items: center; */
    justify-content: center;
    /* background: red; */
    background: #fff;
    position: fixed;
    top: 0;
    width: 100%;
    height: 56px;
    z-index: 1000;
}
.header-container{
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-gray);
    background: #fff;
    height: 100%;
    width: 100%;
    max-width: 1350px;
}


.header-container .logo-container{
    /* background: blue; */
    display: flex;
    align-items: center;
    padding-left: 86px;
    width: 30%;
    height: 100%;

}

#logo{
    color: var(--text-color);
    /* color: var(--hl-color); */
    /* background: blue; */
    font-size: 32px;
    font-weight: 700;
    top: 16px;
}
#logo strong{
    color: var(--hl-color);
    /* color: var(--text-color); */
}
.header-container nav{
    /* background: yellow; */
    display: flex;
    align-items: center;
    justify-content: end;
    padding-right: 140px;
    width: 70%;
    height: 100%;
    /* position: absolute; */
    /* right: 56px; */
}

.header-container nav ul{
    display: flex;
    align-items: center;
    gap: 16px;
}

.header-container nav ul li{
    list-style: none;
    color: var(--text-color);
    font-size: 24px;
    font-weight: 500;
    cursor: pointer;
    transition: all .3s ease;
    position: relative;
}
.header-container nav ul li::before{
    content: '';
    background: var(--hl-color);
    width: 0%;
    height: 4px;
    position: absolute;
    /* z-index: 1000000; */
    bottom: 0;
    left: 0;
    transition: all .2s ease;
}
.header-container nav ul li:hover::before{
    width: 100%;
}
.header-container nav ul li:last-child{
   background: var(--hl-color);
   color: #fff;
   padding: 5px 10px; 
   /* border-radius: 4px; */
}

.header-container nav ul li:last-child:hover{
    background: #000;
}