/* Hamburger Menu */

.menu_lng {
    position: relative;
    background-color: rgb(255 255 255 / 0%);
    height: 40px;
    width: 40px;
    cursor: pointer;
    transition: 0.3s;
    z-index: 20;
    border-radius: 4px;
    float: right;
}


/* line color */

.menu_lng nav {
    position: absolute;
    height: 1px;
    width: 25px;
    background-color: rgb(35 98 119);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: 0.3s;
}

.menu_lng nav:before {
    content: '';
    position: absolute;
    top: -8px;
    background-color: rgb(35 98 119);
    height: 1px;
    width: 25px;
    transition: 0.3s;
    border-radius: 20px;
}

.menu_lng nav:after {
    content: '';
    position: absolute;
    top: 8px;
    background-color: rgb(35 98 119);
    height: 1px;
    width: 25px;
    transition: 0.3s;
}


/* line color */

.menu_lng.active nav {
    background-color: transparent;
}

.menu_lng.active nav:before {
    transform: rotate(45deg);
    top: 0;
}

.menu_lng.active nav:after {
    transform: rotate(-45deg);
    top: 0;
}

.menu_lng .navarea {
    width: 0vw;
    height: 0vh;
    background-color: #ffffff00;
    position: absolute;
    left: 0px;
    transform: translate(0%, 26%);
    cursor: default;
    z-index: 900;
}

.menu_lng.active .navarea {
    width: 100vw;
    height: 100vh;
    background-color: #ffffff00;
    position: absolute;
    left: 0px;
    transform: translate(-90%, 26%);
    cursor: default;
    z-index: 900;
}


/* End */


/* Navigationbar */

.navbar-menu {
    position: absolute;
    top: 50px;
    right: 0%;
    width: 100vw;
    height: auto;
    transition: 0.5s ease;
    opacity: 0;
    visibility: hidden;
    background-color: rgba(255, 255, 255, 1);
    z-index: 1000;
}

.navbar-menu.active {
    transition: 0.6s ease;
    opacity: 1;
    visibility: visible;
    height: fit-content;
    padding-bottom: 0%;
    top: 64px;
}

.navbar-menu .menu-listing {
    margin: 0px auto;
    text-align: right;
    list-style-type: none;
    width: 90vw;
    padding: 2rem 0 3rem;
}

.navbar-menu .menu-listing li {
    padding: 2px 0px;
}

.menu-listing li:nth-last-of-type(n+2) {
    display: flex;
    border-bottom: 0px solid #0c20251f;
}

.menu-listing li a {
    background-color: rgba(35, 76, 98, 0);
    color: rgb(0 67 112);
    display: block;
    font-size: 17px;
    font-weight: 500;
    font-family: 'Noto Sans Thai', sans-serif;
    height: 50px;
    line-height: 50px;
    padding-left: 0px;
    letter-spacing: 0px;
    text-decoration: none;
    text-transform: capitalize;
    transition: 0.5s;
    width: 100%;
    text-align: left;
    border-bottom: 1px solid #d2dade;
}

.menu-listing li a:hover {
    color: rgba(106, 185, 111, 1);
    transition: 0.5s;
    border-bottom: 1px solid #d2dade;
}

@media (max-width: 575.98px) {
    .navbar-menu .menu-listing {
        width: 88vw;
    }
}


/* End */