﻿
@media only screen and (max-width: 1154px) {
    * {
        margin: 0;
        box-sizing: border-box;
    }
        #closeIcon {
        display: none;
    }
    .ham {
        display: block !important;
        position: fixed;
        z-index: 100;
        top: 0rem;
        right: 0.005rem;
        width: 3rem;
        height: 54px;
        border: black solid 1px;
        background: transparent;
        cursor: pointer;
    }
    .menu {
 display: block !important;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 250px;
    background: black;
    color: white;
    transform: translateY(-100%);
    transition: transform 0.2s;
    list-style: none;
    margin-top: 54px;
    padding-left: 10px;
    /* padding-top: 0px; */
    /* padding-top: 4rem;*/
    }

    .showMenu {
        transform: translateY(0);
        z-index: 6;
    }

   li {
    padding: 0.3rem 0;
   }

    .material-icons {
        color: white;
    }

    .menuLink {
        display: inline;
        font-size: 0.8rem;
        color: white;
        text-decoration: none;
    }

        .menuLink:hover {
            text-decoration: underline;
        }
}
.ham{
    display: none;

}
.menu{
    display: none;
}