#navigation {
	width: 100%;
	float: right;
	position: absolute;
	z-index: 9999;left: 0;top: 0;
	margin: 0px 0;
	border: 0px solid red;
	transition: all 300ms ease-in;
}
.nav {
	position: relative;
	display: block;
	font-family: "Helvetica", Arial, sans-serif;
	font-size: 16px;
	font-weight: 100;
}
.nav ul {
	list-style: none;
	padding: 0;
	text-align: left;
	position: relative;
	margin-top: 0;
}
.nav ul li {
	float: left;
*display:inline;
	zoom: 1;
	margin: 0 12px;
	position: relative;
}
.nav ul li span.arrow {
	display: block;
	position: absolute;
	top: 32px;
	color: #000;
	width: 20px;
	left: 50%;
	margin-left: -10px;
	text-align: center;
	font-size: 12px;
	z-index: 5;
	cursor: pointer;
}
.nav ul li a {
	display: block;
	color: #000;
    font-family: 'Poppins', sans-serif;
	font-size: 14px;
	font-weight: 500;
	padding: 0 0;
	line-height: 60px;
	border-bottom: 0px solid #535353;
	text-decoration: none;
	text-transform: uppercase;
	-webkit-transition: all 300ms ease-in-out;
	-moz-transition: all 300ms ease-in-out;
	transition: all 300ms ease-in-out;

}
.nav ul li a.Active {background: #64a70a;}
.nav ul li a::before {
    content: "";
    position: absolute;
    z-index: -2;
    left: 0;
    right: 100%;
    bottom: 15%;
    background: #015AC2;
    height: 2px;
    -webkit-transition-property: right;
    transition-property: right;
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
    -webkit-transition-timing-function: ease-out;
    transition-timing-function: ease-out;  
	border: 0px solid #015AC2;
}
.nav ul li:hover a:hover::before {
	color: #015AC2;
	right: 0; 
	border: 1px solid #64a70a;
	background: transparent;
}
.nav ul li ul {
	list-style: none;
	padding: 10px 0 0;
	display: none;
	position: absolute;
	left: 0;
	width: 160px;
}
.nav ul li ul li {
	width: 160px;
}
.nav ul li ul li a {
	display: block;
	padding: 15px;
	text-transform: capitalize;
	background: #535353;
	border-bottom: 1px solid #022B36;
}
.nav ul li ul li a:hover {
	background: #606060;
}
.nav ul li:hover a {
	color: #fff;
	background: #1F8EAA;
}
.nav ul li:hover a:hover {
	color: #015AC2;
	background: none;
}
.nav ul li:hover ul {
	display: block;
}
.nav ul li:hover ul a {
	color: white;
	background: #1E8CA8;
}
.nav ul li:hover ul a:hover {
	background: #022B36;
}
.nav .nav-bars {
	display: none;
	position: absolute;
	top:18px;
	right: 15px;
	color: #64a70a;
	font-size: 26px;
	cursor: pointer;
	transition: all 300ms ease-in;
}
@media (min-width:992px) {
	.nav .nav-bars {
		top:15px;
		font-size: 26px;
	}
}
.nav .nav-bars i {
	font-weight: bold;
}
.nav.mobile {
	width: 100%;
	padding-top: 80px;
	transition: 0.4s;
}
header.sticky .nav.mobile {
	width: 100%;
	padding-top: 40px;
}
header.sticky .nav .nav-bars {
	top: 5px;
	font-size: 20px;
}
.nav.mobile ul{width:50%;display:none;float:right;}
.nav.mobile ul li{width:100%;float:right;}
.nav.mobile ul li span.arrow {
	display: block;
	top: 6px;
	font-size: 16px;
	margin: 0;
	right: 2px;
	left: auto;
	padding: 10px;
}
.nav.mobile ul li span.arrow:hover {
	color: #aaa;
}
.nav.mobile ul li span.arrow.arrow-rotate {
	-webkit-transform: rotate(180deg);
	-ms-transform: rotate(180deg);
	transform: rotate(180deg);
}
.nav.mobile ul li a {
	color: white;
	font-family: 'Poppins';
	font-size: 13px;
	font-weight: 400;
	line-height: 34px !important;;
	padding: 0 15px;
	background: #64a70a;
	border-bottom: 1px solid green;
}
.nav.mobile ul li ul {
	position: static;
	width: 100%;
	padding: 0;
}
.nav.mobile ul li ul li {
	width: 100%;
}
.nav.mobile ul li:hover a {
	background: #008EE0;
	border-bottom: 1px solid #008EE0;
}
.nav.mobile ul li:hover a:hover {
	color: #FFF;
	background: #9d9d9c;
	border-bottom: 1px solid #555;
}
.nav.mobile ul li:hover ul {
	display: none;
}
.nav.mobile ul li:hover ul a {
	background: #022B36;
}
.nav.mobile ul li:hover ul a:hover {
	background: #1D8AA5;
}
.nav.mobile .nav-bars {
	display: block;
}
