

ul {
    list-style: none;
}





body {
    /* overflow: hidden; */
    overflow-x: hidden !important;
}

.nav {
    background: var(--bgNav);
    padding: 22px 0;
    position: absolute;
    z-index: 9;
    top: 0;
    left: 0;
    right: 0;
    box-shadow: 5px 10px 15px rgba(0, 31, 64, .05);
    border-bottom: 1px solid rgba(0, 31, 64, .09);

        /* glass effect */

    /* From https://css.glass */
    background: rgba(255, 255, 255, 0.2);
    /* border-radius: 16px; */
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.navBox {
    display: flex;
    justify-content: space-between;
    align-items: center;   
}



.navBox ul {
    display: flex;
    align-items: center;
}



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


    body {
        overflow-y: scroll;
    }

}

.mobileMenuBtn img{
    cursor: pointer;
}

.mobileMenuBtn {
    display: none;
}

.closeBtn {
    display: none;
    position: absolute;
    top: 6%;
    right: 6%;
    cursor: pointer;
}

.navBar ul li a{
    margin-inline: 22px;
}

@media screen and (max-width: 800px) {
    .mobileChangeNav {
        /* display: none; */
        position: absolute;
        background: rgba(255, 255, 255, 0.4);
        width: 100%;
        height: 100vh;
        top: 0;
        left: 100%;
        bottom: 0;


        backdrop-filter: blur(5px);
        -webkit-backdrop-filter: blur(5px);

        transition: all ease-in-out 320ms;
    }

    .mobileChangeNav ul {
        flex-direction: column;
        margin-top: 10%;
    }

    .mobileChangeNav ul li {
        margin-top: 5%;
        width: calc(100% - 4rem) !important;
        padding-bottom: 10px;
        border-bottom: 1px solid rgba(0, 31, 64, .2);
    }

    .closeBtn {
        display: inline;
    }

    .navLink {
        font-size: 1rem;
    }

    .navLink:hover {
        border: none;
    }

    .mobileMenuBtn {
        display: inline;
        cursor: pointer;
    }
}
