.navWrapper {
    width: 100%;
    padding: 10px 0 0 0;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(4px);
    border-bottom: 1px solid rgb(30,30,30);
    position: fixed;
    top: 0;
    z-index: 11;
}
.navbar {
    width: 90%;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.navLogoSection {
    display: flex;
    align-items: center;
    justify-content: flex-start;
}
.navLogoSection img {
    height: 64px;
}

.navActionSection {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 20px;
}
.navMenu {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 30px;
    list-style: none;
    border-right: 1px solid rgb(30,30,30);
    padding-right: 20px;
}
.navMenuItem {
    color: var(--text);
    font-size: 15px;
    font-weight: 400;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
}
.navMenuItem i {
    color: var(--primary);
    font-size: 17px;
}
.navMenuItem:hover {
    color: var(--primary);
}

.connectWallet {
    color: black;
    background: var(--primary);
    font-size: 14px;
    padding: 4px 12px;
    border-radius: 5px;
    font-weight: 700;
    font-family: var(--head-font);
}

.connectWallet:hover {
    background: var(--primary-fade);
}

@media (max-width: 900px) {
    .navbar {
        width: 95%;
    }
    .navMenu {
        display: none;
    }
    .navLogoSection img {
        height: 64px;
    }
}