.nav {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgb(10, 10, 15);
    padding: 5px 0px;
    font-family: 'Josefin Sans';
    border-bottom: 1px solid crimson;
    /* position: fixed; */
    top: 0;
    z-index: 99999999;
}

.navbar {
    width: 95%;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.navLogoSection {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.navLogoImage {
    height: 32px;
    width: auto;
}

.navMenuSection {
    flex: 2;
}

.navMenuList {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 65px;
    font-size: 19px;
    list-style: none;
}

.navMenuItem {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    color: rgb(200, 200, 200);
}

.navMenuItem:hover {
    color: orange;
}

.navMenuItem i {
    padding: 0;
    margin: 0;
}

.navMenuItem i {
    font-size: 18px;
    color: rgb(175, 175, 175);
    padding-bottom: 2px;
}

.navActionSection {
    flex: 1.2;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 10px;
}

.contactSupportBtn {
    font-size: 14px;
    background: orange;
    border: 1px solid orange;
    box-shadow: 0px 0px 5px orange;
    color: black;
    border-radius: 20px;
    padding: 6px 14px;
    font-weight: 700;
    font-family: "Roboto Slab";
    letter-spacing: 1px;
    cursor: pointer;
    text-align: center;
}

.contactSupportBtn:hover {
    background: rgb(181, 118, 0);
}

.contactSupportBtn:active {
    transform: scale(0.96);
}


@media(max-width: 970px) {
    .navMenuList {
        gap: 15px;
    }
}

@media(max-width: 880px) {
    .navMenuSection {
        position: fixed;
        bottom: 0;
        left: 0;
        width: 100%;
        background: rgb(10, 10, 15);
        padding: 8px 0px 4px 0px;
        border-top: 1px solid rgb(60, 60, 60);
        z-index: 9999;
    }

    .navMenuList {
        justify-content: space-around;
    }

    .navMenuItem {
        flex-direction: column;
        font-size: 12px;
    }

    .navMenuItem i {
        font-size: 20px;
    }
}

@media(max-width: 550px) {
    .navLogoImage {
        height: 28px;
    }

    .connectWalletBtn {
        font-size: 12px;
        padding: 7px 10px;
        box-shadow: none;
    }
}