*{
    margin:0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, Helvetica, sans-serif;
    text-transform: capitalize;
    text-decoration: none;
}

body{
    min-height: 100vh;
    background: rgb(255, 255, 255);
    background-size: cover;
    background-position: center;
}

header{
    position: fixed;
    top:0; left: 0; right: 0;
    background: white;
    padding: 0px 5%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    z-index: 1000;
    box-shadow: 0px 0px 10px 0px;
}


header .logo {
    background-image: url(../images/logo.jpg);
    background-size: contain;
    background-repeat: no-repeat;
    width: 150px;
    height: 50px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    margin-top: 1px;
}


header .navbar ul{
    list-style: none;
}

header .navbar ul li{
    position: relative;
    float: right;
}

header .navbar ul li a{
    font-size: clamp(13px, 16px, 20px);
    padding: 20px;
    color: #333;
    display: block;
    transition: all 0.4s ease;
}

header .navbar ul li a:hover{
    background: #333;
    color: white;
}

header .navbar ul li ul{
    position: absolute;
    background: none;
    text-align: center;
    align-items: center;
    width: 76%;
    display: none;
}

header .navbar ul li ul li{
    width:100%;
    border: 1px solid rgba(0,0,0,1);
    background: white;   
}

header .navbar ul li ul.is-active{
    display: initial;
}

#mobile-menu{
    display: none;
}

.language ul{
    list-style: none;
}

.language ul li{
    position: relative;
    float: right;
}

.language ul li a{
    font-size: clamp(13px, 16px, 20px);
    padding: 20px;
    color: #333;
    display: block;
    transition: all 0.4s ease;
}

.language ul li a:hover{
    background: #333;
    color: white;
}

.drop{
    height: 0px;
}

@media screen and (min-width: 1701px) {
    header .navbar ul li ul{
        left: 50%;
        transform: translateX(-50%);
    }
}

@media screen and (max-width: 1700px) {
    .navbar.hidden {
        display: none;
    }
    .navbar.hidden + .dropdown-menu {
        display: block;
    }


    .navbar__toggle .bar{
        width: 25px;
        height: 3px;
        margin: 5px 5px 5px;
        transition: all 0.3s ease-in-out;
        background: black;
    }

    #mobile-menu{
        display: initial;
        position: relative;
        top: 20%;
        right: 5%;
        transform: translate(5%, 20%);
    }

    header{
        padding: 20px;
        transition: all 0.5s ease-in-out;
    }

    header label{
        display: initial;
    }

    header .navbar{
        position: absolute;
        top: 100%; left:0; right: 0;
        background: white;
        display: none;
    }

    header .navbar ul{
        margin-top: 100px;
    }
    header .navbar ul.is-active {
        margin-top: 50px;
    }

    header .navbar ul li{
        text-align: center;
        align-items: center;
        width: 100%;
    }

    header .navbar ul li a:hover{
        background: #fff;
        color: #333;
        font-weight: bold;
        transition: all 0s ease-in-out;
    }
    header .navbar ul li ul li a{
        height: 15px;
    }

    header .navbar ul li ul{
        position: relative;
        width: 100%;
        text-align: center;
        align-items: center;
        margin-top: 15px;
    }

    header .navbar ul li ul li{
        width: 100%;
        background:none;
        border: none;
    }

    .navbar__toggle .bar{
        display: block;
        cursor: pointer;
    }
    .navbar.is-active{
        display: initial;
    }

    #mobile-menu.is-active .bar:nth-child(2){
        opacity: 0;
    }

    #mobile-menu.is-active .bar:nth-child(1){
        transform: translateY(8px) rotate(45deg);
    }

    #mobile-menu.is-active .bar:nth-child(3){
        transform: translateY(-8px) rotate(-45deg);
    }

    body.menu-active {
        position: relative;
        top: 10000px; /* shift down by the height of the menu */
    }

    .language ul li a{
        padding: 5px;
    }

    

}