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

.button_container {
  width: 95px;
  transition: opacity 0.25s ease;
  cursor: pointer;
  position: absolute;
  top: 19px;
  left: 34px;
  z-index: 999999999999;
}
.button_container .button_line {
  width: 41px;
  height:41px;
  border-radius:50%;
  float: left;
  margin: 0 0 0;
  border:1px solid #e9bd7c;
  position:relative;
}

.button_container .button_line1 {
  width: 24px;
  float: left;
  margin: 0 auto 0;
  position:absolute; top:50%; transform:translateY(-50%); left:0; right:0;
}

.button_container .button_text {
  float: right;
  font-size: 16px;
  font-weight: 600;
  color: #e9bd7c;
  line-height: 2.38;
  margin: 2px 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(2px, 2px);
}
.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: 6px;
  height: 6px;
  float: left;
  background: #e9bd7c;
  border-radius: 50%;
  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: 0 3px 0;
}
.overlay {
  width: 100%;
  height: 0%;
  background: #2f5673;
  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: fadeInUp 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.open li:nth-of-type(11) {
  animation-delay: 0.85s;
}
.overlay.open li:nth-of-type(12) {
  animation-delay: 0.9s;
}
.overlay.open li:nth-of-type(13) {
  animation-delay: 0.95s;
}
/*.overlay nav {
  width: 56%;
  float: right;
  font-size: 50px;
  transform: translateY(-50%);
  margin: 0 0 0;
  position: relative;
  top: 50%;
  right: 4%;
}*/

.overlay nav {
    width: 100%;
    transform: translateY(-50%);
    margin: 0;
    padding: 0 13%0 10%;
    position: absolute;
    top: 50%;
    right: 0;
    left: 0;
}

.overlay ul li {
  height: calc(100% / 8);
  min-height: 40px;
  opacity: 0;
}
.overlay ul li a:after {
  content: "";
  width: 0;
  height: 2px;
  background: #e9bd7c;
  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: 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;
  display: none;
}
@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: 20px;
  left: 5%;
}
.overlay-back{
	display:none;
}
.overlay nav {
	width:100%;
	text-align:center;		
}	
.overlay ul li {
  min-height: 30px;
}
.overlay ul ul li {
  min-height: 26px;
}
}

@media screen and (min-width:481px) and (max-width:600px) {
.button_container {
  position: fixed;
  top: 20px;
  left: 5%;
}
.overlay-back{
	display:none;
}
.overlay nav {
	width:100%;
	text-align:center;
}
}

@media screen and (min-width:601px) and (max-width:767px) {
.button_container {
  position: fixed;
  top: 20px;
  left: 5%;
}
.overlay-back{
	display:none;
}
.overlay nav {
	width:100%;
	text-align:center;
}
}

@media screen and (min-width:768px) and (max-width:900px) {
.button_container {
  left: 2%;
  width: 41px;
}
/*.button_container .button_text { display:none;}*/
.button_container .fixed .button_text {
    display: none;
}
}

@media screen and (min-width:901px) and (max-width:1024px) {
.button_container {
  left: 2%;
  width: 41px;
}
/*.button_container .button_text { display:none;}*/
}

@media screen and (min-width:1025px) and (max-width:1240px) {
.button_container {
  left: 2%;
  width: 41px;
}
/*.button_container .button_text { display:none;}*/
}

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

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

}
