nav {
    float: right;
}
nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
}
nav ul li {
    float: left;
    position: relative;
    width: max-content;
}
nav ul li a {
    display: block;
    padding: 0 20px;
    line-height: 70px;
    text-decoration: none;
    font-family: "Rubik";
    font-size: 17px;
    font-weight: 500;
    letter-spacing: 1.7px;
}

nav ul li a:hover, nav ul li a:focus, nav ul li a:visited {
    color: #fff;
    transition: 0.1s;
    text-underline-offset: 12px;
    text-decoration-thickness: 3px;
}
nav ul li ul li a {
    padding: 15px;
    line-height: 20px;
    z-index: 7;
}
.nav-dropdown {
    position: absolute;
    display: none;
    z-index: 1;
    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.15);
    background-color: #4d1edf;
}

.lang:hover {
    cursor: pointer;
}


/* Hiding navbar when scrolling up, show when scroll down */

.scrollUp {
    transform: translateY(-80px);
}

.scrollDown {
    transform: translateY(80px);
}

/* rotate arrow sign on navbar */

#service-arrow {
    height: 12px;
}

.nav-mobile {
    display: none;
    position: absolute;
    top: 0;
    right: 0;
    height: 70px;
    width: 70px;
}
#nav-toggle {
    position: absolute;
    left: 18px;
    top: 15px;
    cursor: pointer;
    padding: 15px;
}

#nav-toggle img {
    height:15px
}



/* Laptop width == 1024. Width under 1024, use hamburger button, due to too long nav */

@media only screen and (max-width: 1023px) {

    
    .nav-list {
        height: 100vh;
        width: 80vw;
        background-color: #ffffff;
        position: fixed;
        top: 0;
        right: 0;
        bottom: 0;
        padding-top: 50%;
        text-align: right;
        box-shadow: 0 5px 5px -5px #333;
    }

    .nav-mobile {
        display: block;
        z-index: 100;
   }
    nav {
        width: 100%;
        padding: 70px 0 15px;
   }
    nav ul {
        display: none;
   }
    nav ul li {
        float: none;
        width: auto;
   }
    nav ul li a {
        padding: 15px;
        line-height: 20px;
   }
    nav ul li ul li a {
        padding-left: 30px;
   }
    .nav-dropdown {
        position: static;
   }
   /* No min-width in nav-toggle, too long words */
    #wide-dd li {
        min-width: 0;
    }

    #wide-dd-en li {
        min-width: 0;
    }

    a:focus {
        text-decoration: none;
    }
}

.navigation {
    height: 70px;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 5;
}

.navbar-scrolled-wh {
    background-color: #ffffff;
}

.navbar-scrolled-bl {
    background-color: #4d1edf;
}

.nav-container {
    max-width: 1000px;
    margin: 0 auto;
}
.brand {
    position: absolute;
    float: left;
    line-height: 70px;
}

.benete {
    height: 30px;
}