.hamburger{
	position:fixed;
    background-color:rgba(255,255,255,.95);
	right:20px;
	top:40px;
	padding:20px 15px 15px;
	border-radius:50%;
	-webkit-transform:translate3d(0, 0, 0);
	transform:translate3d(0, 0, 0);
	-webkit-transition:-webkit-transform 0.25s cubic-bezier(0.05, 1.04, 0.72, 0.98);
	transition:transform 0.25s cubic-bezier(0.05, 1.04, 0.72, 0.98);
	z-index:1002;
	cursor:pointer;
	-webkit-user-select:none;
	-moz-user-select:none;
	-ms-user-select:none;
	user-select:none
}
.hamburger.is-active{
  background-color:#0067aa;
	top:10px;
}
._layer{
	background:#0067aa;
	margin-bottom:4px;
	border-radius:2px;
	width:28px;
	height:4px;
	opacity:1;
	-webkit-transform:translate3d(0, 0, 0);
	transform:translate3d(0, 0, 0);
	-webkit-transition:all 0.25s cubic-bezier(0.05, 1.04, 0.72, 0.98);
	transition:all 0.25s cubic-bezier(0.05, 1.04, 0.72, 0.98);
}
.hamburger:hover .-top{
	-webkit-transform:translateY(-100%);
	-ms-transform:translateY(-100%);
	transform:translateY(-100%);
}
.hamburger:hover .-bottom{
	-webkit-transform:translateY(100%);
	-ms-transform:translateY(100%);
	transform:translateY(100%);
	}
.hamburger.is-active .-top{
	background:#fff !important;
	-webkit-transform:translateY(200%) rotate(45deg) !important;
	-ms-transform:translateY(200%) rotate(45deg) !important;
	transform:translateY(200%) rotate(45deg) !important;
}
.hamburger.is-active .-mid{
	opacity:0;
}
.hamburger.is-active .-bottom{
	background:#fff !important;
	-webkit-transform:translateY(-200%) rotate(135deg) !important;
	-ms-transform:translateY(-200%) rotate(135deg) !important;
	transform:translateY(-200%) rotate(135deg) !important;
}

.menuppal.is_active{
  transform: translate3d(0px, 0px, 0px);
}
.menuppal{
   background-color: rgba(255, 255, 255, .95);
    bottom: 0;
    height: 100%;
    left: 0;
    overflow-y: scroll;
    position: fixed;
    top: 0;
    transform: translate3d(0px, -100%, 0px);
    transition: transform 0.35s cubic-bezier(0.05, 1.04, 0.72, 0.98) 0s;
    width: 100%;
    z-index: 1001;
}
.menuppal ul{
  margin:0;padding:0; margin-top:25%;
}
.menuppal ul li {
  	list-style: none;
	text-align:center;
	font-weight:bold;
	border-top: 1px solid #f3f3f3;
}
.menuppal ul li a{
	text-decoration:none;
	color:#555 ;
	font-family:"Roboto-Thin";
	font-size:16px;
	letter-spacing: 1px;
	line-height:35px;
	display: block;
    padding: 5px 30px;
	/*text-transform:uppercase;*/
}
.menuppal ul li:last-child{border-bottom: 1px solid #f3f3f3;}
.menuppal ul li a:hover{
  text-decoration:none;
  color:#000;
}
.menuppal .current-menu-item >a:hover {
  /*background: none;
  color:#FF7AED;*/
}
.menuppal .sub-menu{
  display:none;
}
.menuppal .current-menu-item>a{background: none;}
