.menu-overlay {
  position: fixed;
  top: 0; right: 0; left: 0; bottom: 0;
  padding: 30px;
  z-index: 1;
  background-color: #333;
  visibility: visible;
  opacity: 1;
  transition: all .2s ease;
}
.menu-button {
  width: 35px;
  height: 35px;
  background-color: #333;
  border-radius: 100px;
  color: white;
  font-size: 35px;
  text-align: center;
  line-height: 35px;
  padding: 5px;
  cursor: pointer;
  position: absolute;
  top: 20px; left: 20px;
  box-shadow: 0 0 0 2px transparent;
  user-select: none;
  z-index: 1;
  transition: box-shadow .2s;
}
.menu-button:hover {
  box-shadow: 0 0 0 2px white;
}
.menu {
  transform: translateX(-130px);
    float: left;
    margin-top: 69px;
}
.menu a {
    float: left;
    clear: both;
    color: white;
    text-decoration: none;
    font-size: 1.6rem;
    margin: 12px 0px;
    padding-left: 5px;
    font-weight: 200;
    border-left: 2px solid transparent;
    transition: all .2s;
}
.menu a:hover {
  border-left: 2px solid white;
  padding-left: 15px;
}
.ex {
  font-weight: 100;
  line-height: 32px;

}
.hidden {
  visibility: hidden;
  opacity: 0;
}
.ovrFlow{
overflow: hidden;
}
.icon{
  zoom:.5;
  height:50px;
  width:55px;
  transform: translateX(7px) translateY(10px);
  background-repeat:no-repeat;
}
.sprite1{
background:url('/images/menuSprite.png') 0px 0px;
background-repeat:no-repeat;
}
.sprite2{
transform: translateX(5px) translateY(10px);
background:url('/images/menuSprite.png')-95px 0;
background-repeat:no-repeat;
}
.menuSlideIN{
  transform: translateX(0) !important;
  transition: all .3s ease;
}
.menuSlideOUT{
  transform: translateX(-130px) !important;
  transition: all .3s ease;
}
