#top-bar.mobile {
    height: 12rem;
}

#top-bar.mobile.open-menu {
    overflow: unset !important;
}

#menu-list.mobile {
    position: relative;
    width: 100%;
    top: 11.8rem;
    height: 0;
    left: 0;
    z-index: 0;

    transition: height 1s;

    background: var(--light-blue);
    border-bottom: 0.2rem solid var(--orange);

    font-size: 3rem;
    display: grid;
    text-align: center;

    align-items: center;
}

#menu-list.mobile li {
    margin: 1rem;
    display: grid;

    color: var(--dark-blue);

    object-fit: contain;

    font-weight: 700;
    padding-bottom: 1rem;

    width: 100%;
    margin-left: 15%;

    position: relative;
    top: -75rem;
    transition: top 1s;
}

#menu-list.mobile img {
    display: none;
}

#menu-list.mobile a {
    color: var(--dark-blue);
}

#menu-list.mobile.visible {
    height: 50rem;
}

#menu-list.mobile li {
    border-bottom: 0.2rem solid;
}

#menu-list.mobile.visible li {
    top: 0;
    padding: 1.5rem;
}

#left-menu-list.mobile {
    display: block;
    position: relative;
    top: -3.5rem;
    left: 6%;
    width: 60%;
    height: auto;
}

#right-menu-list.mobile {
    display: block;
    position: relative;
    margin: auto;
    top: -2.5rem;
    right: 12%;
    width: 60%;
    height: auto;
}

#logo.mobile {
    transform: scale(3.8);
    margin-top: 4rem;
    margin-left: 6rem;
}

#burger-menu-btn.mobile {
    visibility: visible;
    position: absolute;
    left: 90%;
}

#sign-up-icon.mobile {
    border-radius: unset;
    background: unset;
}
