.menu { 
  position: fixed;
  z-index: 999;

  display: block;
  height: 33px;
  width: 33px;
  padding: 3px;
	top: 5px;
	left: 5px;
  background-color: rgba(51,51,51,.2);
  border-radius: 3px;
  color: #fff;

  -webkit-transition: all .2s cubic-bezier(.1,.7,.3,1);
  -moz-transition: all .2s cubic-bezier(.1,.7,.3,1);
  -o-transition: all .2s cubic-bezier(.1,.7,.3,1);
  -ms-transition: all .2s cubic-bezier(.1,.7,.3,1);
  transition: all .2s cubic-bezier(.1,.7,.3,1);
	}
.menu.is-open, .menu:hover { 
  background-color: rgba(51,51,51,.8);
  -webkit-transition: all 1.6s cubic-bezier(.1,.7,.3,1);
  -moz-transition: all 1.6s cubic-bezier(.1,.7,.3,1);
  -o-transition: all 1.6s cubic-bezier(.1,.7,.3,1);
  -ms-transition: all 1.6s cubic-bezier(.1,.7,.3,1);
  transition: all 1.6s cubic-bezier(.1,.7,.3,1);
	}
.menu.is-open {
  height: 200px;
  width: 200px;
  -webkit-transition: all .2s cubic-bezier(.1,.7,.3,1);
  -moz-transition: all .2s cubic-bezier(.1,.7,.3,1);
  -o-transition: all .2s cubic-bezier(.1,.7,.3,1);
  -ms-transition: all .2s cubic-bezier(.1,.7,.3,1);
  transition: all .2s cubic-bezier(.1,.7,.3,1);
	}

.menu-panel { 
  margin-left: -200px;
	opacity: 0;

  -webkit-transition: all .2s cubic-bezier(.1,.7,.3,1);
  -moz-transition: all .2s cubic-bezier(.1,.7,.3,1);
  -o-transition: all .2s cubic-bezier(.1,.7,.3,1);
  -ms-transition: all .2s cubic-bezier(.1,.7,.3,1);
  transition: all .2s cubic-bezier(.1,.7,.3,1);
	}
.is-open .menu-panel { 
  margin-left: 0;
  opacity: 1;

  -moz-transition: all .6s cubic-bezier(.1,.7,.3,1);
  -o-transition: all .6s cubic-bezier(.1,.7,.3,1);
  -ms-transition: all .6s cubic-bezier(.1,.7,.3,1);
  transition: all .6s cubic-bezier(.1,.7,.3,1);
	}
.menu-list {
  list-style: none;
  text-align: left;
  text-transform: uppercase;
  line-height: 1.2;
  margin: 10px 0 0 30px;
  padding: 0;
  }
.menu-item {
  font-size: 16px;
  font-weight: 300;
  letter-spacing: 2px;
  color: #fff;
  text-decoration: none;
  }
.menu-item:hover {
  font-weight: 500;
  color: #fff
  }

.menu-btn {
  position: relative;
  left: 0;
  top: 0;
  width: 36px;
  height: 36px;
  display: block;
  overflow: hidden;
  cursor: pointer;
	}
.menu-btn > .layer {
  background-color: #fff;
  border-radius: 1px;
  display: block;
  height: 2px;
  overflow: hidden;
  position: absolute;
  left: 5px;
  width: 22px;
	}
.menu-btn .layer.top { 
	top: 9px; 

  -webkit-transform: rotate(-360deg);
  -moz-transform: rotate(-360deg);
  -o-transform: rotate(-360deg);
  -ms-transform: rotate(-360deg);
  transform: rotate(-360deg);

  -webkit-transition: all .3s cubic-bezier(.1,.7,.3,1);
  -moz-transition: all .3s cubic-bezier(.1,.7,.3,1);
  -o-transition: all .3s cubic-bezier(.1,.7,.3,1);
  -ms-transition: all .3s cubic-bezier(.1,.7,.3,1);
  transition: all .3s cubic-bezier(.1,.7,.3,1);
	}
.is-open .menu-btn .layer.top { 
  top: 17px;
  left: 5px;

	-webkit-transform: rotate(405deg);
	-moz-transform: rotate(405deg);
	-o-transform: rotate(405deg);
	-ms-transform: rotate(405deg);
  transform: rotate(405deg);

  -webkit-transition: all .3s cubic-bezier(.1,.7,.3,1);
  -moz-transition: all .3s cubic-bezier(.1,.7,.3,1);
  -o-transition: all .3s cubic-bezier(.1,.7,.3,1);
  -ms-transition: all .3s cubic-bezier(.1,.7,.3,1);
  transition: all .3s cubic-bezier(.1,.7,.3,1);
	}
.menu-btn .layer.mid { 
	top: 16px; 
	}
.is-open .menu-btn .layer.mid {
  left: 0;
  opacity: 0;
	}
.menu-btn .layer.btm { 
	top: 23px; 

  -webkit-transform: rotate(360deg);
  -moz-transform: rotate(360deg);
  -o-transform: rotate(360deg);
  -ms-transform: rotate(360deg);
  transform: rotate(360deg);

  -webkit-transition: all .3s cubic-bezier(.1,.7,.3,1);
  -moz-transition: all .3s cubic-bezier(.1,.7,.3,1);
  -o-transition: all .3s cubic-bezier(.1,.7,.3,1);
  -ms-transition: all .3s cubic-bezier(.1,.7,.3,1);
  transition: all .3s cubic-bezier(.1,.7,.3,1);
	}
.is-open .menu-btn .layer.btm { 
  top: 17px;
  left: 5px;
  
  -webkit-transform: rotate(-405deg);
  -moz-transform: rotate(-405deg);
  -o-transform: rotate(-405deg);
  -ms-transform: rotate(-405deg);
  transform: rotate(-405deg);

  -webkit-transition: all .3s cubic-bezier(.1,.7,.3,1);
  -moz-transition: all .3s cubic-bezier(.1,.7,.3,1);
  -o-transition: all .3s cubic-bezier(.1,.7,.3,1);
  -ms-transition: all .3s cubic-bezier(.1,.7,.3,1);
  transition: all .3s cubic-bezier(.1,.7,.3,1);
	}
