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

.button_container {
  width: 66px;
  transition: opacity 0.25s ease;
  cursor: pointer;
  margin: 0 0 0;
  position: absolute;
  top: 38px;
  left: 16px;
  z-index: 999999999999;
}
.button_container .button_line {
  width: 18px;
  float: left;
  margin: 0 0 0;
}
.button_container .button_text {
  float: right;
  font-size: 16px;
  font-weight: 500;
  color: #f5f5f5;
  letter-spacing: 1.12px;
  line-height: 0.93;
  margin: 3px 0 0;
}
.button_container:hover {
  opacity: 0.7;
}
.button_container.active .button_text {
  color: #FFF;
}
.button_container.active .button_line .top {
  transform: translateY(6px) translateX(0) rotate(45deg);
  background: #FFF;
}
.button_container.active .button_line .middle {
  opacity: 0;
  background: #FFF;
}
.button_container.active .button_line .bottom {
  transform: translateY(-6px) translateX(0) rotate(-45deg);
  background: #FFF;
}
.button_container .button_line span {
  width: 100%;
  height: 2px;
  float: left;
  background: #bbae71;
  border: none;
  transition: all 0.35s ease;
  cursor: pointer;
  position: relative;
}
.button_container .button_line span:nth-of-type(2) {
  margin: 4px 0 4px;
}
.overlay {
  width: 100%;
  height: 0%;
  background: #3c3b3c;
  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: 90%;
  float: none;
  font-size: 50px;
  transform: translateY(-50%);
  margin: 0 auto 0;
  position: relative;
  top: 50%;
  right: 0;
  left: 0;
}
.overlay ul li {
  height: calc(100% / 8);
  min-height: 50px;
  opacity: 0;
}
.overlay ul li a:after {
  content: "";
  width: 0;
  height: 2px;
  background: #c9b391;
  transition: 0.35s;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  margin: 0 auto 0;
}
.overlay ul li a:hover:after, .overlay ul li a:focus:after, .overlay ul li a:active:after {
  width: 100%;
}
.overlay-back {
	width: 42%;
	height: 100%;
	float: left;
	background: none;
	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 {
  width: 64px;
  position: absolute;
  top: 16px;
  left: 5%;
}
.button_container .button_text {
  font-size: 14px;
  color: #ffffff;
  letter-spacing: 1.06px;
  line-height: 1.2;
  margin: 0 0 0;
}
.button_container .button_line span {
  background: #c9b391;
}
.overlay {
  width: 100%;
  text-align: center;
  margin: 0 0 0;
}
.overlay-back {
  width: 100%;
  display: none;
  margin: 0 0 0;
}
.overlay nav {
  width: 100%;
  margin: 0 0 0;
  right: 0;
}
}

@media screen and (min-width:481px) and (max-width:600px) {
.button_container {
  width: 64px;
  position: absolute;
  top: 16px;
  left: 5%;
}
.button_container .button_text {
  font-size: 14px;
  letter-spacing: 1.06px;
  line-height: 1.2;
  margin: 0 0 0;
}
.button_container .button_line span {
  background: #c9b391;
}
.overlay {
  width: 100%;
  text-align: center;
  margin: 0 0 0;
}
.overlay-back {
  width: 100%;
  display: none;
  margin: 0 0 0;
}
.overlay nav {
  width: 100%;
  margin: 0 0 0;
  right: 0;
}
}

@media screen and (min-width:601px) and (max-width:767px) {
.button_container {
  width: 64px;
  position: absolute;
  top: 16px;
  left: 5%;
}
.button_container .button_text {
  font-size: 14px;
  letter-spacing: 1.06px;
  line-height: 1.2;
  margin: 0 0 0;
}
.button_container .button_line span {
  background: #c9b391;
}
.overlay {
  width: 100%;
  text-align: center;
  margin: 0 0 0;
}
.overlay-back {
  width: 100%;
  display: none;
  margin: 0 0 0;
}
.overlay nav {
  width: 100%;
  margin: 0 0 0;
  right: 0;
}
}

@media screen and (min-width:768px) and (max-width:900px) {
.button_container {
  width: 18px;
  top: 36px;
  left: 2%;
}
.button_container .button_text {
  display: none;
}

}

@media screen and (min-width:901px) and (max-width:1024px) {
.button_container {
  width: 18px;
  top: 36px;
  left: 3%;
}
.button_container .button_text {
  display: none;
}
}

@media screen and (min-width:1025px) and (max-width:1240px) {
.button_container {
  width: 18px;
  left: 3%;
  top: 36px;
}
.button_container .button_text {
  display: none;
}
}

@media screen and (min-width:1241px) and (max-width:1340px) {
.button_container {
  width: 18px;
  left: 3%;
  top: 36px;
}
.button_container .button_text {
  display: none;
}
}

@media screen and (min-width:1341px) and (max-width:1440px) {
.button_container {
  width: 18px;
  left: 2%;
  top: 36px;
}
.button_container .button_text {
  display: none;
}
}