	@media all and (min-width: 991px) {
		.mobile-menu{
			display: none;
		}
	}
	@media all and (max-width: 991px) {
		.mobile-menu{
			display: block;
		}
		header .menu-btn>.menu-btn-bar{
			border: none !important;
			height: 2px !important;
			background: #333;
			margin: 0 auto;
			margin-bottom: 5px;
		}
		.menu-btn>.menu-btn-close:before,.menu-btn>.menu-btn-close:after{
			display: none !important;
		}
		.menu-btn>.menu-btn-close:nth-child(1),.menu-btn>.menu-btn-close:nth-child(2){
			width: 25px;
			height: 2px;
			background: #333;
			position: absolute;
			top: 42%;
			left: 50%;
		}
		.menu-btn>.menu-btn-close:nth-child(1){
			transform: translate(-50%,-50%) rotate(45deg);
		}
		.menu-btn>.menu-btn-close:nth-child(2){
			transform: translate(-50%,-50%) rotate(-45deg);
		}
	}
	.mobile-menu{
		-webkit-transition: all .2s linear;
		-moz-transition: all .2s linear;
		-o-transition: all .2s linear;
		-ms-transition: all .2s linear;
		transition: all .2s linear;
	}
	.mobile-menu:after{
		content: '';display: block;clear: both;
	}
	.cnav-hide{
		top: -50px;
	}
	.menu-btn{
		cursor: pointer;
		display: inline-block;
		border: none;
		outline: none;
		background: #4285f4;
		color: #fff;
		    width: 41px;
    height: 45px;
		vertical-align: bottom;
		float: right;
	}
	.menu-btn > .menu-btn-bar{
		display: block;
		margin: auto;
		border-top: solid 3px #fff;
		width: 19px;
		border-bottom: double 9px #fff;
		height: 15px;
	}
	.menu-btn > .menu-btn-close:after, .menu-btn > .menu-btn-close:before{
		content: '';
		display: block;
		margin: auto;
		width: 18px;
		border-bottom: solid 2px #fff;
	}
	.menu-btn > .menu-btn-close:after{
		-webkit-transform: rotate(-45deg);
		-moz-transform: rotate(-45deg);
		-ms-transform: rotate(-45deg);
		-o-transform: rotate(-45deg);
		transform: rotate(-45deg);
		margin-top: -2px;
	}
	.menu-btn > .menu-btn-close:before{
		-webkit-transform: rotate(45deg);
		-moz-transform: rotate(45deg);
		-ms-transform: rotate(45deg);
		-o-transform: rotate(45deg);
		transform: rotate(45deg);
	}
	.mobile-menu ul li{
		list-style: none;
		    border-bottom: 1px solid #ffffff70;
	}
	.mobile-menu ul li:last-child{
		 border-bottom: none;
	}
	.mobile-menu > ul{
		padding-left: 0px;
		    font-size: 16px;
    font-weight: 600;
		height: 100vh;
		position: fixed;
		top: 0px;
		display: none;
		left: 0px;
		width: 350px;
		max-width: 80%;
		background: #827e7f;
		box-shadow: rgba(100, 100, 100, 0.2) 6px 2px 10px;
		z-index: 9999;
		overflow: auto;
	}
	.mobile-menu li a{
		-webkit-transition: all 0.3s ease 0s;
		-moz-transition: all 0.3s ease 0s;
		-ms-transition: all 0.3s ease 0s;
		-o-transition: all 0.3s ease 0s;
		transition: all 0.3s ease 0s;
		display: block;
		text-align: left;
		border-bottom: solid 1px rgba(138, 138, 138, 0.4);
		border-left: 2px solid;
		padding: 10px 15px;
		background: none;
		color: #fff;
		text-decoration: none;
	}
	.mobile-menu li a:hover{
		background: #05028d;
	}
	.mobile-menu li li a{
		padding-left: 30px;
	}
	.mobile-menu li li li a{
		padding-left: 45px;
	}
		.mobile-menu ul ul{
			display: none;
			background: rgba(0,0,0,0.15);
		}
		.mobile-menu li > i{
			width: 44px;
			height: 44px;
			float: right;
			background: rgb(66, 133, 244);
			text-align: center;
			line-height: 39px;
			position: relative;
			cursor: pointer;
		}
		.mobile-menu .sub-menu-hide:after, .mobile-menu .sub-menu-hide:before{
			content: '';
			width: 12px;
			border-top: solid 2px #fff;
			position: absolute;
			top: 50%;
			left: 50%;
			margin-top: -1px;
			margin-left: -6px;
		}
		.mobile-menu .sub-menu-hide:before{
			-webkit-transform: rotate(90deg);
			-moz-transform: rotate(90deg);
			-ms-transform: rotate(90deg);
			-o-transform: rotate(90deg);
			transform: rotate(90deg);
		}
		.mobile-menu .sub-menu-show:after{
			content: '';
			width: 12px;
			border-top: solid 2px #fff;
			display: inline-block;
			vertical-align: middle;
		}
		.mobile-logo img{
			height: 38px;
			margin-top: 2px;
			float: left;
			margin-left: 15px;
		}