html {
  scroll-behavior: smooth;
}



.navbar {
    background-color: #f3f3f2;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    position: sticky;
    top: 0;
    z-index: 99;
}

.navbar a {
    color: #000000;
}

.navbar .logo {
    width: 200px;
    height: auto;
}

.navbar .nav-links ul {
    display: flex;
}

.navbar .nav-links ul li {
    padding: 0px 30px 0px 30px;
    margin: 25px 0;
    font-size: 1.2em;
}

.navbar .nav-links ul li a:hover {
    color: #5f93cd;
    transition: all 0.3s ease;
}

.navbar .menu-hamburger {
    display: none;
    position: absolute;
}

.no-scroll {
    overflow: hidden;
    height: 100%;
}




/* --------- Mobile --------- */


@media screen and (max-width: 900px) {

    .navbar {
        display: flex;
        justify-content: space-between;
        align-items: center;
        z-index: 3;
    }


    .navbar .menu-hamburger {
        display: block;
        position: relative;
        padding: 10px;
        width: 50px;
    }

    .nav-links {
        top: 0;
        left: 0;
        position: absolute;
        background-color: rgba(255, 255, 255, 0.20);
        -webkit-backdrop-filter: blur(16px);
        backdrop-filter: blur(16px);
        width: 100%;
        height: 100vh;
        display: flex;
        justify-content: center;
        align-items: center;
        margin-left: 100%;
        transition: 0.4s;
    }

    .nav-links.mobile-menu {
        margin-left: 0;
    }

    .nav-links ul {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    select {
        margin-right: 0;
    }
}


select {
    /* Reset */
    margin-right: 15px;
    border: 0;
    outline: 0;
    /* Personalize */
    ;
    font: inherit;
    font-size: small;
    height: 100%;
    padding: 0 1em 0 1em;
    border-radius: 0.25em;
}

select option {
    color: inherit;
}

select:focus {
    outline: none;
}

select::-ms-expand {
    display: none;
}




@media screen and (min-width: 367px) and (max-width: 900px) {
    .navbar .logo {
        width: 200px;
        height: auto;
        position: center;
    }

}


@media screen and (max-width: 367px) {
    .navbar .logo {
        width: 120px;
    }

    #languages {
        margin-right: 0;
    }
}