.menu {
	display: none;
	}
nav   {
	background: #2E3192;
	overflow: hidden;
	}

nav ul {
	text-align: center;
	overflow: hidden;
	color: #fff;
	transition: max-height 0.4s;
	-webkit-transition: max-height 0.4s;
	-ms-transition: max-height 0.4s;
	-moz-transition: max-height 0.4s;
	-o-transition: max-height 0.4s;
	}
nav ul li {
	box-sizing:border-box; 
	display: inline-block;
	list-style-type: none;
	}
nav ul li:hover {
	background-color: #32338E;
	color: #FEEF01;
	}
nav ul li a {
	display: block;
	padding:7px 10px;
	text-decoration: none;
	color: inherit;
	}


@media screen and (max-width: 478px){
	
	nav ul {
	background: #1B1464;
	max-height: 0;
	width: 100%;
	text-align: center;
	font-size: 14px;
	}
nav ul.show {
	max-height: 40em;
	}
nav ul li {
	box-sizing: border-box;
	width: 100%;
	padding: 5px 15px;
	}
.menu {
	font-size: 14px;
	padding: 10px 20px;
	color: white;
	display: flex;
	justify-content: space-between;
	align-items: center;
 	}
.fa-bars{
	cursor: pointer;
	}
}