.header{
    width: 100%;
    background-color: var(--header-bg);
    height:70px;
    padding:5px;
}
.header-wrap{
    width: 100%;
    max-width: 1366px;
    margin: auto;
    height:100%;    
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}
.header-logo-wrap{
    height:100%;
    aspect-ratio: 183/78;
    position: relative;
}
.header-logo{
    width: 100%;
    height: 100%;
    position: absolute;
    object-fit: contain;
    object-position: center;
}
.header-nav-list{
    width: 300px;
    height: 100vh;
    display: flex;
    flex-direction: column;
    gap: 5px;
    position: fixed;
    margin-left: -300px;
    transition: all linear 300ms;
    background-color: var(--header-bg);
    z-index: 1000;
    top: 0;
    left: 0;
}
.show-nav-list{
    margin-left:0px;
    transition: all linear 300ms;
}
.header-nav-item{
    padding:10px 20px;
    font-size: 0.875rem;
    color:#fff;
}
.header-nav-item:hover{
    color:var(--primary-color);
}
.header-menu-btn{
    width: 30px;
    height: 30px;
    padding: 3px;
    cursor: pointer;
    display: block;
}
.header-menu-btn svg{
    width: 100%;
    height: 100%;
    fill: #fff;
}
@media screen and (min-width:600px) {
    .header-menu-btn{
        display: none;
    }
    .header-nav-list{
        width: auto;
        height: auto;
        display: flex;
        flex-direction: row;
        gap: 10px;
        display: block;
        position: static;
    }
}