.navBarMobile {
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    width: 100%;
    height: 80px;
    position: fixed;
    bottom: 0;
    z-index: 10;
    background-color: #2A3647;
    gap: 10px;
}

.navButton {
    width: 80px;
    height: 76px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    border-radius: 16px;
}

.navButton:hover {
    background-color: #2A3D59;
}

.d-none {
    display: none;
}

@media(max-width: 1400px) {
    .navBarMobile {
        display: flex !important;
    }
}