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

.toggle {
	width: 76px;
	float: left;
	cursor: pointer;
	display: none;
	margin: 0 0 0;
	position: fixed;
	top: 16px;
	left: 5%;
	z-index: 99999999;
}
.toggle-text1 {
	float: right;
	font-size: 14px;
	font-weight: 400;
	color: #ff5e04;
	letter-spacing: 0.2px;
	line-height: 1.44;
	margin: 0 0 0;
}
.toggle-bar1 {
	width: 30px;
	float: left;
	margin: 0 0 0;
}
.bar {
	width: 100%;
	height: 4px;
	background: #ff5e04;
	display: block;
	margin: 4px 0 0;
	-webkit-transition: all .35s ease;
	transition: all .35s ease;
}
.bar:first-child {
	margin-top: 0;
}
.bar:last-child {
	margin-bottom: 0;
}
.middle {
	top: 11px;
}
.bottom {
	top: 22px;
}
.toggle-active .toggle-text1 {
	color: #012c4a;
}
.toggle-active .bar {
	background: #012c4a;
}
.toggle-active .top {
	-webkit-transform: translateY(8px) translateX(0) rotate(45deg);
	position: relative;
	top: 0;
}
.toggle-active .middle {
	opacity: 0;
}
.toggle-active .bottom {
	-webkit-transform: translateY(-12px) translateX(0) rotate(-45deg);
	position: relative;
	top: 4px;
}
.overlay {
	width: 100%;
	height: 0;
	background: #ffffff;
	visibility: hidden;
	opacity: 0;
	-webkit-transition: opacity .35s, visibility .35s, height .35s;
	position: fixed;
	top: 0;
	right: 0;
	left: 0;
	z-index: 99999999;
}
.nav-active {
	opacity: 1;
	visibility: visible;
	height: 100%;/*    max-height: 340px;*/
}

/*Smartphone css*/
@media screen and (max-width: 480px) {
.toggle {
	display: block;
}
}

@media screen and (min-width:481px) and (max-width:600px) {
.toggle {
	display: block;
}
}

@media screen and (min-width:601px) and (max-width:767px) {
.toggle {
	display: block;
}
}

@media screen and (min-width:768px) and (max-width:900px) {

}

@media screen and (min-width:901px) and (max-width:1024px) {

}

@media screen and (min-width:1025px) and (max-width:1240px) {

}