* {
	margin:0;
	padding:0;
}

.nav-bar {
	width: 100%;
	position: relative;
	height: 40px;
	z-index: 999;
	top: 0px;
	font-size: 18px;
    background-color: #24386e;
}
.nav-bar li:last-child {
	margin-right: 30px;
}
.nav-bar a:link{
	color: #ffffff;
	text-decoration: none;
}
.nav-bar a:visited{
	color: #ffffff;
	text-decoration: none;
}
.nav-bar a:active{
	color: #ffffff;
	text-decoration: none;
}
.nav-bar a:hover{
	color: #ff3333;
	text-decoration: none;
}


nav ul {
	overflow: hidden;
	text-align: center;
	padding: 0px;
	margin-left: 0px;
    -webkit-transition: max-height 0.4s;
	-ms-transition: max-height 0.4s;
	-moz-transition: max-height 0.4s;
	-0-transition: max-height 0.4s;
	transition: max-height 0.4s;
}

nav ul li {
	display: inline-block;
	padding: 6px;
	margin: 0px;
	text-align: center;
	font-size: 20px;
	line-height: 40px;	
	color: #ffffff;
	font-weight: bold;
	letter-spacing: 2px;
}

 nav a:hover {
	color: #24386e;
}
/* Mobile navigation */
.mobile-icon {
	width: 100%;
	text-align: right;
	box-sizing: border-box;
	cursor: pointer;
	color: #fff;
	display: none;
	font-size: 20px;
	font-weight: bold;
	letter-spacing: 2px;
	margin: 0% 0%;
	position: relative;
	padding: 5px;
}
/* style of mobile icon */
.mobile-icon:before {
	content: "";
	position: absolute;
	top: 10px;
	left: 10px;
	width: 1.2em;
	height: 0.16em;
	background: white;
	box-shadow: 0 0.35em 0 0 white, 0 0.7em 0 0 white;
}     
/* end */

@media screen and (max-width: 1360px) {
	
		.mobile-icon {
			display: block;
		}

		nav ul {
			max-height: 0px;
			padding: 0px;
		}
		
		/* mobile nav  */
		.showing {
			max-height: 30em;
			padding-bottom: 10px;
			font-size: 18px;
		}
		/* end */

		.nav-bar {
			display: block;
			width:100%;
			background-color: #24386e;
			
		}

		nav ul li {
			box-sizing: border-box;
			width: 100%;
			text-align: center;
			background-color: #24386e;
		}
		
		nav ul li:hover {
			background-color: #24386e;
			width: 100%;
            color: #24386e;
		}

}



		


