
.main-menu-mobile ul {
    display: none;
}

@media screen and (max-width: 768px) {

    .main-menu-mobile {
        width: 100vw;
        padding-top: 2rem;
        padding-bottom: 3rem;
        position: fixed;
        bottom: 0;
        z-index: 2;
        background-color: #100B00;
        /* border-top: #9c9c9c 2px solid; */
        box-shadow: 0 -6x 16px rgba(0, 0, 0, 0.5), 0 -2px 6px rgba(0, 0, 0, 0.3);
    }

    .main-menu-mobile ul{
        display: flex;
        list-style: none;
        width: 100vw;
        justify-content: space-between;
        padding: 0 2rem;

    }

    .main-menu-mobile ul a {
        font-size: 1rem;
        color: #9c9c9c;
        text-decoration: none;
        font-weight: 500;
    }

    .main-menu-mobile .main-cta-mobile {
        color: #EDF060;
        font-weight: 500;
        font-family: "Google Sans", sans-serif;
        text-decoration: underline;
    }


}
