header{ 
    height: auto;
    width: 100vw;
    background-color: rgb(255, 255, 255);
    box-shadow: inset  0 -1.5px 0 0px var(--p-color);
}
nav{
    min-height: 80px;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    
}
#nav-mobile{
    display: none;
    border-radius: 100%;
    box-shadow: 0px 0px 5px -1.5px var(--p-color);
}
.nav-button{
    padding: 5px;
    transition: box-shadow .2s ease;
    transition: font-size .2s ease-in-out;
}
.nav-button:hover{
    box-shadow: inset  0 -1.5px 0 0px var(--p-color);
    font-size: 15px;
    transition: box-shadow .2s ease-in-out;
}
#nav-logo{
    height: 130px;
    width: fit-content;
    max-width: 500px;
    padding: 3px;
}
#nav-options{
    display: flex;
    width: 50%;
    justify-content: space-evenly;
    align-items: center;
    font-size: 13px;
    transition: opacity 5s linear;
}

.open{
    display: block;
}
.close{
    display: none;
}
.flip-l {
    -moz-transition: transform 0.6s;
    -webkit-transition: transform 0.6s;
    transition: transform 0.6s;
    transform: rotate(-180deg);
}
.flip-r {
    -moz-transition: transform 0.6s;
    -webkit-transition: transform 0.6s;
    transition: transform 0.6s;
    transform: rotate(180deg);
}
.mob-menu-smoothness-in {
    -webkit-animation: ease-out;
    -webkit-animation-name: fadeIn;
    -webkit-animation-duration: 0.2s;
}
.mob-menu-smoothness-out {
    -webkit-animation: ease-out;
    -webkit-animation-name: fadeOut;
    -webkit-animation-duration: 0.2s;
}
@-webkit-keyframes fadeIn {
    0% {
        opacity: 0;
    }

    50% {
        opacity: 0.5;
    }

    100% {
        opacity: 1;
    }
}
@-webkit-keyframes fadeOut {
    0% {
        opacity: 1;
    }

    50% {
        opacity: 0.5;
    }

    100% {
        opacity: 0;
    }
}
@media screen and (max-width:768px) {
    #nav-options{
        flex-direction: column;
        position: absolute;
        width: 100vw;
        top: 110px;
        left: 0px;
        display: none;
        z-index: 5;
        background-color: white;
        box-shadow: inset 0px -11px 10px -10px rgba(0, 0, 0, 0.05); 
    }
    #select-lang{
        border: 0px;
        box-shadow: inset 0px -11px 10px -10px rgba(0, 0, 0, 0.05); 
    }
    .nav-button{
        display: flex;
        justify-content: center;
        align-items: center;
        background-color: white;
        width: fit-content;
        text-align: center;
        font-size: larger;
        z-index: 5;
    }
    #nav-logo{
        height: 110px;
        padding: 2px;
    }
    #nav-mobile{
        display: block;
        width: 50px;
        height: 50px;
        margin-right: 10px;
        cursor: pointer;
        position: absolute;
        right: 0px;
        z-index: 5;
    }
    #mobile-icon{
        height: 100%;
        width: 100%;
    }
    #mobile-icon path{
        fill: var(--p-color);
    }
    #nav-mobile:hover > svg > g > path{
        fill: var(--alt-p-color); 
    }
}
@media screen and (max-width:840px) {
    #lang-flag{
        height: 15px !important;
    }
    #lang-h1{
        font-size: small !important;
    }
}
#lang-flag{
    height: 23px;
    width: auto;
}
#lang-h1{
    margin: 0px;
    width: fit-content;
    font-size: medium;
    word-break: normal;
}
#btn-select{
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 50px;
    cursor: pointer;
}
#select-expand{
    /* display: none;
    position: absolute;
    transform: translateY(55px) translateX(-3px); */
}
#select-list{
    list-style-type: none;
}
#select-list li{
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 60px;
    cursor: pointer;
    padding: 2px;
    /* background-color: white;
    border: 1px solid var(--p-color); */
}
#select-list li:hover{
    background-color:var(--p-color);
}