

/*MENU*/

.menu {
  list-style: none;
  line-height: 42px;
  margin: auto;
  /*outline: 1px solid red;*/
  padding-left: 0;
  width: 15em;
  
}

.menu a {
  color: #fff; font-weight:500;
  text-decoration: none;
  text-transform: uppercase;
  display: block;
  padding-left: 1.5em;
  width: 100%;
}

.menu a:hover {
  margin-left: 1em;
  -webkit-transition: all .5s;
  -o-transition: all .5s;
  transition: all .5s;
}

.menu li {
  
  -webkit-transition: all .5s;
  -o-transition: all .5s;
  transition: all .5s;/*outline: 1px solid green*/
}

.menu li:hover { box-shadow:15em 0 rgba(101, 101, 101, 0.23) inset; }



/*FIN MENU*/
/*Posicion Responsive Menu*/

nav {
  background:rgba(0, 0, 0, 0.85) none repeat scroll 0 0;	
  position: fixed;
  left: -18em;
  top: 0;
  padding-top: 5em;
  box-sizing: border-box;
 z-index: 99999;
  height: 100%;
  -webkit-transition: all .3s;
  -o-transition: all .3s;
  transition: all .3s;
}

nav.active { left: 0; }

#mobile-nav {
  background: url(../drawer/menu-icon.png);
  cursor: pointer;
  left: 1.5em;
  height: 30px;
  position: fixed;
  top: 1.5em;
  width: 30px;
   z-index: 9999999;
}
#logo{
	width:100%;
	padding-left:1.5em;
}
#nav-srch{margin-left: 1.5em;
    margin-top: 185px;}

