.menuHeader {
    -webkit-text-size-adjust: 100%;
    -webkit-tap-highlight-color: rgba(0,0,0,0);
    font-size: 14px;
    font-weight: 600;
    font-family: 'Muli', sans-serif;
    -webkit-font-smoothing: antialiased;
    background: #212332;
}

/* desktop */
@media only screen and (min-width: 481px) {
    .menuHeader {
        display: flex;
        margin-bottom: 70px;
    }
    .menuUl {
        display: flex;
        justify-content: start;
        flex-wrap: wrap;
    }
    .menuItemA {
        display: block;
    }
    .menuLi {
        padding: 5px 5px 0px 0px;
        margin: 0;
    }
    .menuLi:hover .menuUl2 {
        display: block;
    }
    .menuUl2 {
        box-sizing: border-box;
        background-clip: padding-box;
        border: 1px solid rgba(0,0,0,.15);
        border-radius: 4px;
        box-shadow: 0 6px 12px rgba(0,0,0,.175);
        position: absolute;
    }
    .menuLi2 {
        background-color: rgba(210,32,40,1);
    }
    .menuLi2:hover {
        background-color: #f1f1f1;
        color: #D22028;
    }
    .menuItemA2 {
        white-space: nowrap;
    }
    .menuCloseButton {
        display: none;
    }
}

/* mobile */
@media only screen and (max-width: 480px) {
    .menuCloseButton {
        color: #f1f1f1;
        position: absolute;
        right: 2px;
        opacity: 0.3;
        font-size: 2em;
        z-index: 9999;
        padding: 10px 20px;
    }
    .menuHeader {
        display: none;
        position: absolute;
        top: 10px;
        right: 10px;
        left: 10px;
        z-index: 999;
        opacity: .99;
    }
    .menuUl {
        display: flex;
        flex-direction: column;
        padding: 0;
        margin: 0;
    }
    .menuItemA {
        display: none;
        pointer-events: none;
    }
    .menuLi {
        padding: 0;
        margin: 0;
    }
    .menuLi:first-child {
        padding-top: 10px;
    }
    .menuLi:last-child {
        padding-bottom: 10px;
    }
    .menuLi2 {
        padding-left: 10px;
    }
    .menuLi2:first-child {
        padding-top: 0px;
    }
    .menuItemA2 {
        white-space: normal;
    }
}

.menuUl {
    -webkit-text-size-adjust: 100%;
    -webkit-tap-highlight-color: rgba(0,0,0,0);
    -webkit-font-smoothing: antialiased;
    box-sizing: border-box;
    padding-left: 0;
    list-style: none;
    margin: 0;
}

.menuLi {
    -webkit-text-size-adjust: 100%;
    -webkit-tap-highlight-color: rgba(0,0,0,0);
    -webkit-font-smoothing: antialiased;
    position: relative;
    float: left;
}

.menuItemA, .searchButton, .menuItemSpan, .contactUsButton {
    -webkit-text-size-adjust: 100%;
    -webkit-tap-highlight-color: rgba(0,0,0,0);
    -webkit-font-smoothing: antialiased;
    text-decoration: none;
    transition: all 0.3s ease 0s;
    color: #f1f1f1;
    text-transform: uppercase;
    cursor: pointer;
    display: block;
    padding: 10px 20px 10px 0;
    font-family: 'Multi', sans-serif;
    font-size: 1rem;
    font-weight: 600;
}

.menuItemImg {
    vertical-align: top;
}

.menuItemA:hover {
    text-decoration: none;
    float: none;
    color: #ffffff;
    cursor: pointer;
}

.menuUl2 {
    -webkit-text-size-adjust: 100%;
    -webkit-tap-highlight-color: rgba(0,0,0,0);
    -webkit-font-smoothing: antialiased;
    top: 100%;
    z-index: 1000;
    display: none;
    min-width: 160px;
    padding: 0;
    color: #f1f1f1;
}

.menuUl2Visible {
    display: block;
}

.menuUl2Hidden {
    display: none
}

.menuLi2 {
    -webkit-tap-highlight-color: rgba(0,0,0,0);
    list-style: none;
}


.menuItemA2 {
    -webkit-text-size-adjust: 100%;
    -webkit-tap-highlight-color: rgba(0,0,0,0);
    -webkit-font-smoothing: antialiased;
    text-decoration: none;
    -webkit-transition: all 0.5s;
    display: block;
    padding: 15px 20px;
    color: #f1f1f1;
}

.menuItemA2:hover {
    background-color: #f1f1f1;
    color: #D22028;
}