@charset "utf-8";
/* CSS Document */

.button_container {
  width: 79px;
  transition: opacity 0.25s ease;
  cursor: pointer;
  position: absolute;
  top: 30px;
  left: 34px;
  z-index: 999999999999;
}
.button_container .button_line {
  width: 22px;
  float: left;
  margin: 0 0 0;
  text-align:center;
}
.button_container .button_text {
  float: right;
  font-size: 12px;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: 1.2px;
  line-height: normal;
  text-transform: uppercase;
  margin: 3px 0 0;
}
.button_container:hover {
  opacity: 0.7;
}
.button_container.active .button_text {
  color: #FFF;
}
.button_container.active .button_line .top {
  width: 100%;
  background: #FFF;
  border-radius: 0;
  transform: rotate(45deg) translate(0, -2px);
}

.button_container.active .button_line { margin:7px 0 0;}

.button_container.active .button_line .middle {
  opacity: 0;
  display: none;
  background: #FFF;
}
.button_container.active .button_line .bottom {
  width: 100%;
  background: #FFF;
  border-radius: 0;
  transform: rotate(-45deg) translate(3px, -2px);
}
.button_container .button_line span {
  width: 22px;
  height: 2px;
  float: left;
  background: #ffda7e;
  transition: all 400ms cubic-bezier(0.84, 0.06, 0.52, 1.8);
  cursor: pointer;
  position: relative;
}
.button_container .button_line span:nth-of-type(2) {
  margin: 4px 4px;
  width: 14px;
}
.overlay {
  width: 100%;
  height: 0%;
  background: #5a5c61;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s, visibility 0.35s, height 0.35s;
  overflow: hidden;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 99999999;
}
.overlay.open {
  opacity: 1;
  visibility: visible;
  height: 100%;
}
.overlay.open li {
  animation: fadeInRight 0.5s ease forwards;
  animation-delay: 0.35s;
}
.overlay.open li:nth-of-type(2) {
  animation-delay: 0.4s;
}
.overlay.open li:nth-of-type(3) {
  animation-delay: 0.45s;
}
.overlay.open li:nth-of-type(4) {
  animation-delay: 0.5s;
}
.overlay.open li:nth-of-type(5) {
  animation-delay: 0.55s;
}
.overlay.open li:nth-of-type(6) {
  animation-delay: 0.6s;
}
.overlay.open li:nth-of-type(7) {
  animation-delay: 0.65s;
}
.overlay.open li:nth-of-type(8) {
  animation-delay: 0.7s;
}
.overlay.open li:nth-of-type(9) {
  animation-delay: 0.75s;
}
.overlay.open li:nth-of-type(10) {
  animation-delay: 0.8s;
}
.overlay nav {
  width: 56%;
  float: right;
  font-size: 50px;
  transform: translateY(-50%);
  margin: 0 0 0;
  position: relative;
  top: 50%;
  right: 4%;
}
.overlay ul li {
  height: calc(100% / 8);
  min-height: 40px;
  opacity: 0;
}
.overlay ul ul li {
    min-height: 30px;
}
.overlay ul li a:after {
  content: "";
  width: 0;
  height: 2px;
  background: #d7ae53;
  transition: 0.35s;
  position: absolute;
  bottom: 0;
  left: 0;
}
.overlay ul li a:hover:after, .overlay ul li a:focus:after, .overlay ul li a:active:after {
  width: 100%;
}
.overlay-back {
	width: 36%;
	height: 100%;
	float: left;
	background: url(../images/menu-bg1.jpg) no-repeat center / cover;
	margin: 0 0 0;
	position: absolute;
	top: 0;
	left: 0;
}
@keyframes fadeInRight {
  0% {
    opacity: 0;
    left: 20%;
  }
  100% {
    opacity: 1;
    left: 0;
  }
}

/*Smartphone css*/
@media screen and (max-width: 480px) {
.button_container {
  position: fixed;
  top: 16px;
  left: 5%;
}
.button_container .button_text { color:#ffda7e;}
.overlay-back { display:none;}
.overlay nav { width:100%; right:inherit;}
.overlay ul li {min-height: 28px;}
.overlay ul ul li {min-height: 20px;}
}

@media screen and (min-width:481px) and (max-width:600px) {
.button_container {
  position: fixed;
  top: 16px;
  left: 5%;
}
.button_container .button_text { color:#ffda7e;}
.overlay-back { display:none;}
.overlay nav { width:100%; right:inherit;}
.overlay ul li {min-height: 30px;}
.overlay ul ul li {min-height: 25px;}
}

@media screen and (min-width:601px) and (max-width:767px) {
.button_container {
  position: fixed;
  top: 16px;
  left: 5%;
}
.button_container .button_text { color:#d7ae53;}
.overlay-back { display:none;}
.overlay nav { width:100%; right:inherit;}
.overlay ul li {min-height: 30px;}
.overlay ul ul li {min-height: 25px;}
}

@media screen and (min-width:768px) and (max-width:900px) {
.button_container {
  left: 3%;
  top:25px;
}
.button_container .button_text {
    font-size: 10px;
    display: none;
}
.overlay ul li {min-height: 34px;}
.overlay ul ul li {min-height: 28px;}
}

@media screen and (min-width:901px) and (max-width:1024px) {
.button_container {
  left: 3%;
  top:25px;
}
.overlay ul li {min-height: 36px;}
}

@media screen and (min-width:1025px) and (max-width:1240px) {
.button_container {
  left: 3%;
  top:25px;
}
.overlay ul li {min-height: 36px;}
}

@media screen and (min-width:1241px) and (max-width:1340px) {
.button_container {
  left: 3%;
}
}

@media screen and (min-width:1341px) and (max-width:1440px) {

}