.menu-trigger .hyed {
	opacity: 0.0;
	display: none;
	-webkit-transition: 0.3s linear;
	-moz-transition: 0.3s linear;
	-o-transition: 0.3s linear;
	transition: 0.3s linear;
}
.active .hyed{
	opacity: 1;
	display: block;
	width: 300px;
	height: 380px;
	padding: 30px;
	margin: 50px 0px 100px -271px;
	text-align: center;
	-webkit-transition: 1.0s ease-in;
	-moz-transition: 1.0s ease-in;
	-o-transition: 1.0s ease-in;
	transition: 1.0s ease-in;
}
.active .hyed {
	background: #F7EDEA;
}
.active .hyed li a {
	width: 100%;
	line-height: 3;
	list-style: none;
}
.active .hyed li {
	border-bottom: 1px solid rgba(0,0,0,0.5);
}
.active .hyed a {
	color: #EDAFAC;
	line-height: 3;
	transition: .5s;
}
.active .hyed li a:hover {
	color: #c55651;
	transition: .5s;
}
.menu-trigger,
.menu-trigger span {
  display: inline-block;
  transition: all .4s;
  box-sizing: border-box;
	cursor: pointer;
}
.menu-trigger {
  position: fixed;
  width: 40px;
  height: 30px;
	top: 25px;
	right: 25px;
	z-index: 1000;
}
.menu-trigger span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #946e6e;
  border-radius: 4px;
}
.menu-trigger span:nth-of-type(1) {
  top: 0;
}
.menu-trigger span:nth-of-type(2) {
  top: 14px;
}
.menu-trigger span:nth-of-type(3) {
  bottom: 0;
}


.menu-trigger span:nth-of-type(1) {
  -webkit-animation: menu-bar01 .5s forwards;
  animation: menu-bar01 .5s forwards;
}
@-webkit-keyframes menu-bar01 {
  0% {
    -webkit-transform: translateY(14px) rotate(-45deg);
  }
  100% {
    -webkit-transform: translateY(0) rotate(0);
  }
}
@keyframes menu-bar01 {
  0% {
    transform: translateY(14px) rotate(-45deg);
  }
  100% {
    transform: translateY(0) rotate(0);
  }
}
.menu-trigger span:nth-of-type(2) {
  -webkit-animation: menu-bar02 .5s forwards;
  animation: menu-bar02 .5s forwards;
}
@-webkit-keyframes menu-bar02 {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes menu-bar02 {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.menu-trigger span:nth-of-type(3) {
  -webkit-animation: menu-bar03 .5s forwards;
  animation: menu-bar03 .5s forwards;
}
@-webkit-keyframes menu-bar03 {
  0% {
    -webkit-transform: translateY(-14px) rotate(45deg);
  }
  100% {
    -webkit-transform: translateY(0) rotate(0);
  }
}
@keyframes menu-bar03 {
  0% {
    transform: translateY(-14px) rotate(45deg);
  }
  100% {
    transform: translateY(0) rotate(0);
  }
}
.menu-trigger::after {
  position: absolute;
  top: 50%;
  left: 50%;
  display: block;
  content: '';
  width: 25px;
  height: 25px;
  margin: -14px 0 0 -14px;
  border-radius: 50%;
  border: 1px solid rgba(237,175,172,.8);
  transition: all .1s;
  opacity: 0;
}
.menu-trigger.active::after {
  -webkit-animation: circle .5s;
  animation: circle .5s;
}
@-webkit-keyframes circle {
  0% {
    -webkit-transform: scale(.1);
    opacity: 0;
  }
  50% {
    opacity: 0.5;
  }
  100% {
    -webkit-transform: scale(3.5);
    opacity: 0;
  }
}
@keyframes circle {
  0% {
    transform: scale(.1);
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    transform: scale(3.5);
    opacity: 0;
  }
}
.menu-trigger.active span:nth-of-type(1) {
  -webkit-animation: active-menu-bar01 .5s .5s forwards;
  animation: active-menu-bar01 .5s .5s forwards;
}
@-webkit-keyframes active-menu-bar01 {
  0% {
    -webkit-transform: translateY(0) rotate(0);
  }
  100% {
    -webkit-transform: translateY(14px) rotate(-45deg);
  }
}
@keyframes active-menu-bar01 {
  0% {
    transform: translateY(0) rotate(0);
  }
  100% {
    transform: translateY(14px) rotate(-45deg);
  }
}
.menu-trigger.active span:nth-of-type(2) {
  -webkit-animation: active-menu-bar02 .5s .5s forwards;
  animation: active-menu-bar02 .5s .5s forwards;
}
@-webkit-keyframes active-menu-bar02 {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@keyframes active-menu-bar02 {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
.menu-trigger.active span:nth-of-type(3) {
  -webkit-animation: active-menu-bar03 .5s .5s forwards;
  animation: active-menu-bar03 .5s .5s forwards;
}
@-webkit-keyframes active-menu-bar03 {
  0% {
    -webkit-transform: translateY(0) rotate(0);
  }
  100% {
    -webkit-transform: translateY(-14px) rotate(45deg);
  }
}
@keyframes active-menu-bar03 {
  0% {
    transform: translateY(0) rotate(0);
  }
  100% {
    transform: translateY(-14px) rotate(45deg);
  }
}
