.menu{
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	width: 100%;
	z-index: 4;
	border-bottom: 0.1rem solid #EEEEEE;
}

.menu-content{
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding-top: 0;
	padding-bottom: 0;
}

.menu ul{
	list-style: none;
	display: flex;
}


.menu ul li a{
	padding-right: 2rem;
	padding-left: 2rem;
	display: block;
	font-size: 1.8rem;
	position: relative;
	text-align: center;
	align-items: center;
}


.menu ul li a::after {
	content: '';
	position: absolute;
	top: 2.5rem;
	left: 50%;
	width: 0;
	height: 0.2rem;
	background: #205D3B;
	transition: all 300ms ease-in-out;
	
}

.menu ul li a:hover::after{
	width: 50%;
	left: 25%;
}

.menu a {
	color: inherit;
}
.menu h5{
	font-size: 2.5rem;
}

.space-menu{
	height: 6.5rem;
}
