.navMobileJS {
    display: block;
}

.menuItem {
    display: block;
    margin: 2rem 4rem;
    font-size: 1.8rem;
    color: black;
    text-decoration: none;
}

.menuItem:hover {
    text-decoration: underline;
}

.hamburger {
    display: flex;
    z-index: 100;
    width: 3rem;
    height: 3rem;
    padding: 4px;
    cursor: pointer;
}

.menuIcon {
    height: 3rem;
    width: 3rem;
}

.closeIcon {
    display: none;
    z-index: 50000;
}

.menu {
    position: fixed;
    transform: translateX(105%);
    transition: transform 0.2s;
    top: 5rem;
    right: 1px;
    z-index: 99;
    background: white;
    color: black;
    list-style: none;
    /* margin-top: 4rem; */
}

.showMenu {
    transform: translateY(0);
}

.mobileTop {
    min-height: 5rem;
    display: flex;
    justify-content: space-between
}

body {
    margin-top: 5rem;
}

.mobileTop {
    display: flex;
    position: absolute;
    padding: 1rem;
    background-color: white;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 3;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}

.logoAsadd {
    width: 3rem;
    margin-top: 3px;
}