* {
	margin: 0px;
	padding: 0px;
}
.menu {
	width: 15%;
	height: 100%;
	overflow: auto;
	position: fixed;
	z-index: 9999999;
	padding: 2.5% 2% 0 2%;
	background-color: #21469a;
	box-shadow: 0 0 10px #000;
	box-sizing: border-box;
}
.menu li {
	float: left;
	width: 100%;
	list-style: none;
}
.menu li ul {
	display: none;
	position: relative;
}
.menu li:hover ul {
	display: block;
}
.menu a {
	color: #fff;
	display: block;
	padding: 5px 5%;
	font-size: 18px;
	line-height: 24px;
	border-bottom: 1px solid #3363cf;
}
.menu a:hover, .menu .active {
	background-color: #f58631;
}
.burger {
	z-index: 999999;
	outline: none;
	cursor: pointer;
	text-align: right;
	position: relative;
}
.burger1 {
	z-index: 999999;
	outline: none;
	cursor: pointer;
	margin-bottom: 5%;
	text-align: right;
	position: relative;
}
.burger img, .burger1 img {
	max-width: 100%;
}
.overlay {
	top: 0;
	left: 0;
	right: 0;
	z-index: 997;
	position: fixed;
	background-color: #21469a;
}
/* Define animations and start positions. */
.menu {
	right: -600px;
	transition: right 400ms;
}
.overlay {
	opacity: 0;
	transition: opacity 400ms;
}
/* Menu open and animation end positions. */
.is-open .menu {
	right: 0px;
}
.is-open .overlay {
	bottom: 0;
	opacity: 0.8;
}
@media only screen and (min-width:960px) and (max-width:1389px) {
.menu {
	width: 18%;
	padding: 30px 2% 0 2%;
}
.menu a {
	font-size: 15px;
	line-height: 20px;
}
}
@media only screen and (min-width:768px) and (max-width:990px) {
.menu {
	width: 25%;
	padding: 30px 2% 0 2%;
}
.menu a {
	font-size: 13px;
	line-height: 18px;
}
}
@media only screen and (min-device-width : 768px) and (max-device-width : 1024px) {
}
@media all and (max-width: 768px) {
.menu {
	width: 25%;
	padding: 20px 2% 0 2%;
}
.menu a {
	padding: 3px 5%;
	font-size: 12px;
	line-height: 16px;
}
}
@media only screen and (max-width:767px) {
.menu {
	width: 50%;
}
}
@media only screen and (min-width:480px) and (max-width:767px) {
	
.menu {
	width: 50%;
}
}
