

/* Menu Button */

.menu-btn{
		
    padding: 7px 12px;
    /* margin-bottom: 30px;
    background: rgba(0, 0, 0, 0.76);
    background: #153C5D; */
    color: grey;
    text-align: center;
    cursor: pointer;
    z-index: 85;
    position: absolute;
    left: -1px;
    top:-10px; 
    transition: all .3s ease;
}
.menu-btn i {
    font-size: 30px;
}
.menu-btn:hover{
color:#153C5D;
	
}

.hello{
	 transform: translate3d(200px,0,0);
	 background: #071929;
	 color:#fff;
}

.hello:hover{
	color:#cccccc;
}

.hello1{
	transform: translate3d(0,0,0);
	
}



/* Menu Appearance */

.pushy{
    position: absolute;
    width: 200px;
    height: 500px;
    top: -10px; 
    left: -1px;
    z-index: 85;
    /*background-color: rgba(0,0,0,.7);*/
    background: #071929;
    font-size: 0.9rem;
    -webkit-box-shadow: inset -10px 0 6px -9px rgba(0, 0, 0, .7);
    -moz-box-shadow: inset -10px 0 6px -9px rgba(0, 0, 0, .7);
    box-shadow: inset -10px 0 6px -9px rgba(0, 0, 0, .7);
    box-sizing: border-box;
    padding-top: 33px;
    padding-left: 25px;
    overflow: auto;
    -webkit-overflow-scrolling: touch; /* enables momentum scrolling in iOS overflow elements */
}

.pushy a{
    font-size: 16px;
    width: 165px;
    border-bottom: 2px solid #A7A7A7;
    padding-bottom: 5px;
    margin-bottom: 20px;
    display: block;
    text-decoration:none;
    transition: color .3s ease;
    color: #A7A7A7;
}

.pushy a:hover{
   color:#fff;
   border-bottom: 2px solid #fff;
   text-decoration:none;
}

.pushy ul {
    margin:0;
    padding:0;
}
.pushy ul li {
    list-style:none;
   
}



/* Menu Movement */

.pushy-left{
  
 display:none;
}

.pushy-open{
  
    display:block;   
 
    -webkit-animation: menuanimation .3s forwards; 
    -moz-animation: menuanimation .3s forwards;
    -o-animation: menuanimation .3s forwards;
     animation: menuanimation .3s forwards;
    
    
}

@-webkit-keyframes menuanimation {
    from { opacity: 0; width:0px; }
      to { opacity: 0.9; width:200px;}
}

@-moz-keyframes menuanimation {
    from { opacity: 0; width:0px; }
      to { opacity: 0.9; width:200px;}
}

@-o-keyframes menuanimation {
    from { opacity: 0; width:0px; }
      to { opacity: 0.9; width:200px;}
}

@keyframes menuanimation {
    from { opacity: 0; width:0px; }
      to { opacity: 0.9; width:200px;}
}


/* Site Overlay */

.site-overlay{
    display: none;
}

.pushy-active .site-overlay{
    display: block;
    position: absolute;
    top: 155px;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1;
   /* background: none repeat scroll 0 0 rgba(255, 255, 255, 0.7); */
    background: none repeat scroll 0 0 rgba(255, 255, 255, 0.41);
}

.blur1{
	/* color: transparent;
	text-shadow: 0 0 3px rgba(0,0,0,0.5); 
  */
  
  -webkit-filter: blur(1px);
    -moz-filter: blur(1px);
    -o-filter: blur(1px);
    -ms-filter: blur(1px);
    filter: blur(1px);
}



