.navbar {
    box-shadow: 4px 0 4px 4px rgba(0, 0, 0, 0.05);
}

.navbar.scrolled {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background-color: #fff;
}

.nav-bar {
    padding-top: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    transition: all 0.3s ease;
    padding-bottom: 15px;
    z-index: 1000;
}

.logo {
    transition: all 0.3s ease;
    filter: invert(100);
    cursor: pointer;
}

.nav-bar .right {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-bar .right a {
    color: #141414;
    text-decoration: none;
    transition: all ease-in 250ms;
    font-size: 14px;
    line-height: 21px;
    font-weight: 300;
}

.nav-bar .right a:hover {
    opacity: 66% ;
}

.nav-bar .right .lang-selector {
    display: flex;
    align-items: center;
    gap: 6px;
    border: 1px solid #141414;
    padding: 5px 9px;
    cursor: pointer;
    transition: all ease 250ms;
    position: relative;
}

.nav-bar .right .lang-selector:hover {
    background-color: rgba(0, 0, 0, 0.1);
}

.lang-sel-arrow {
    filter: invert(100);
    transition: all ease 300ms;
}

.navbar .nav-divider {
    width: 100%;
    height: 1px;
    background-color: #141414;
}

.nav-bar .right .lang-selector .lang-options {
    display: flex;
    flex-direction: column;
    /* gap: 12px; */
    background-color: #fff;
    position: absolute;
    top: 32px;
    /* left: -1px; */
    right: -1px;
    border: 1px solid #141414;
    display: none;
}

.nav-bar .right .lang-selector .lang-options .option {
    padding: 5px 9px;
    transition: all ease 300ms;
    display: flex;
    align-items: center;
    gap: 5px;    
}

.nav-bar .right .lang-selector .lang-options .option p {
    font-size: 14px;
    line-height: 21px;
    font-weight: 300;
}

.nav-bar .right .lang-selector .lang-options .option:hover {
    background-color: rgba(0, 0, 0, 0.1);
}

.nav-bar .right .hamburger {
    display: none;
}

#closeMenu {
    display: none;
}

.mobile-menu {
    /* display: none; */
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #fff;
    transition: all ease-in 500ms;
    z-index: 5;
    padding: 120px 20px 20px;
    /* display: flex; */
    flex-direction: column;
    gap: 20px;
    transform: translateX(-100%);
    display: none;
}

.mobile-menu a {
    text-decoration: none;
    font-size: 22px;
    line-height: 32px;
}

.mobile-menu .menu-divider {
    width: 100%;
    height: 1px;
    background-color: #141414;
    opacity: 20%;
}

@media screen and (max-width: 700px) {
    .nav-bar .right a {
        display: none;
    }

    .nav-bar .right .hamburger {
        display: flex;
        /* align-items: center;
        justify-content: center;
        width: 38px;
        height: 38px; */
        padding-left: 6px;
    }

    .mobile-menu {
        display: flex;
    }

    .nav-bar .right .lang-selector {
        padding: 10px 8px;
    }

    .nav-bar .right {
        gap: 10px;
    }

    .nav-bar .right .lang-selector .lang-options {
        top: 44px;
    }
}