@media(min-width:200px){
    .header{
        display: none;
        font-family: "Myriad Pro";
        font-weight: 600;
    }
    .nav{
        position: fixed;
        z-index: 1000;
        top: 0px;
        left: 0px;
        width: 100%;
        padding: 20px 30px;
        background-color: #120c3c;
    }
    .nav-header > img{
        /* height: 35px;
        width: 120px; */
    }
    .nav > .nav-btn {
        display: inline-block;
        position: absolute;
        right: 0px;
        top: 17px;
        margin-right:0px;
    }
    .nav > .nav-btn > label {
        display: inline-block;
        width: 50px;
        height: 50px;
        padding: 13px;
    }
    .nav > .nav-btn > label:hover,.nav  #nav-check:checked ~ .nav-btn > label {
        background-color: #120c3c;
    }
    .nav > .nav-btn > label > span {
        display: block;
        width: 25px;
        height: 10px;
        border-top: 2px solid #fafafa;
    }
    .nav > .nav-links {
        position: absolute;
        display: block;
        width: 100%;
        background-color: #120c3c;
        max-height: 370px;
        transition: all 0.3s ease-in;
        overflow-y: hidden;
        top: 70px;
        left: 0px;
    }
    .nav > .nav-links > a {
        display: flex;
        justify-content: center;
        align-items: center;
        width: 100%;
        height: 50px;
        text-decoration: none;
        color: #fafafa;
        font-family: "Myriad Pro";
        font-weight: 600;
    }
    .language-switcher{
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: center;
        gap: 8px;
        height: 50px;
        color: #fafafa;
        font-family: "Myriad Pro";
        font-weight: 600;
    }
    .language-switcher .language-link{
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: auto;
        height: auto;
        padding: 0px;
        color: #fafafa;
        text-decoration: none;
        transition: .2s;
    }
    .language-switcher .language-link:hover,
    .language-switcher .language-link.active{
        color: #fafafa;
        font-weight: 700;
    }
    .language-separator{
        color: #fafafa;
    }
    .nav > #nav-check:not(:checked) ~ .nav-links {
        height: 0px;
    }
    .nav > #nav-check:checked ~ .nav-links {
        height: calc(100vh - 50px);
        overflow-y: auto;
    }
}

@media(min-width:321px){
    .nav > .nav-btn {
        margin-right:10px;
    }
}

@media(min-width:426px){
    .nav > .nav-btn {
        margin-right:30px;
    }
    .nav > .nav-links {
        left: 0px;
    }
}

@media(min-width:1024px){
    .nav{
        display: none;
    }
    .header{
        z-index: 1000;
        position: fixed;
        display: flex;
        align-items: center;
        width: 100%;
        height: 80px;
        background-color: #120c3c;
        padding: 0px 20px;
    }
    .img-logo{
        width: 140px;
        height: 40px;
    }
    .header-nav{
        display: flex;
        width: 100%;
        height: 100%;
        padding-top: 10px;
    }
    .header-list{
        display: flex;
        width: 100%;
        margin-left: 70px;
        padding: 0px;
        color: #fafafa;
        text-decoration: none;
        list-style: none;
        font-size: 90%;
    }
    .header-list a{
        display: flex;
        justify-content: center;
        align-items: center;
        padding: 0px 1.88%;
        cursor: pointer;
    }
    .header-list a:hover{
        font-weight: 700;
    }
    .header-list .language-switcher{
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: center;
        height: 100%;
        margin-left: auto;
        padding-left: 16px;
        gap: 7px;
        font-size: 90%;
        white-space: nowrap;
    }
    .header-list .language-link{
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: auto;
        height: auto;
        padding: 0px;
        color: #fafafa;
        text-decoration: none;
        cursor: pointer;
    }
}

@media(min-width:1400px){
    .header{
        justify-content: center;
    }
    .img-ctn{
        display: flex;
        justify-content: center;
        width: 20%;
    }
    .img-logo{
        width: 160px;
        height: 50px;
    }
    .header-list{
        justify-content: center;
        margin-left: 0px;
        font-size: 100%;
    }
    .header-list a{
        display: flex;
        justify-content: center;
        align-items: center;
        padding: 0px 2.5%;
    }
    .header-list .language-switcher{
        margin-left: 16px;
        padding-left: 18px;
    }
    .header-list .language-link{
        padding: 0px;
    }
}

@media(min-width:1500px){
    .header-list{
        margin-left: 20px;
        font-size: 110%;
    }
}

@media(min-width:1700px){
    .header-list{
        margin-left: 40px;
        font-size: 110%;
    }
    .header-list a{
        display: flex;
        justify-content: center;
        align-items: center;
        padding: 0px 3.5%;
    }
    .header-list .language-link{
        padding: 0px;
    }
}
