.menuBtn {
    position: absolute;
    top: 0;
    left: 0;
    width: 50px;
    height: 56px;
    line-height: 50px;
    font-size: 30px;
    text-align: center;
    z-index: 9999;
    /* border: 1px solid #ffffff; */
    cursor: pointer;
    padding: 4px 0 0 0px;
}
.menuBtn.dark {
    color: #333;
}
.menuBtn.extended {
    left: 117px;
    color: #333;
}
mobileNav {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9999;
}
ul.mobileNav {
    width: 175px;
    height: 100%;
    position: fixed;
    top: 0;
    left: -175px;
    z-index: 6;
    color: #333;
    background: rgba(255, 255, 255, 0.94);
    font-family: 'Exo', sans-serif;
    list-style: none;
    margin: 0 0 0 0px;
    padding: 50px 20px 0 20px;
    font-weight: bold;
    font-size: 22px;
    line-height: 44px;
    text-align: right;
    overflow: auto;
}
ul.mobileNav.extended {
    top: 0;
    left: 0;
}
ul.mobileNav a{
    color: #333;
    text-decoration: none;
    -ms-transform: scale(1, 1);
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
}
ul.mobileNav a:hover{
    color: #d8d8d8;
    text-decoration: none;
    -ms-transform: scale(1.2, 1.2);
    -webkit-transform: scale(1.2, 1.2);
    transform: scale(1.2, 1.2);
}
/** UNCOMMENT TO ONLY SHOW BUTTON ON MOBILE WIDTH 
.menuBtn {
    display: none;
}
@media ( max-width: 991px ) {
    .menuBtn {
        display: block;
    }
}
**/