@charset "utf-8";

@keyframes home {
	0% {opacity: 0;}
	100% {opacity: 1;}
}
div {
	overflow: hidden;
	background: #529306;
	color: #fff;
	width: 94%;
	height: 80px;
	padding: 0 3%;
	border:none;
	position: fixed;
}
#topmenu {

	padding: 0;
	box-shadow: none;
	width: auto;
	overflow: auto;
	position: relative;
	min-height: 40%;
}
#name {
	text-align:center;
	vertical-align:top;
	min-height: 60%;
	font-weight: bold;
	font-size: 120px;
}
#menu li a {
	text-decoration: none;
	display: block;
	border-top:none;
	border-bottom:2px solid #fff;
	border-left:none;
	border-right:none;
	width: 80px;
	line-height: 50px;
	text-align: center;
	color: #fff;
}
/*
#menu li a:hover {
	border:outset;
}
*/
#menu li:hover::after {
	bottom: 0px;
}
#menu li::after {
	transition: 0.2s;
	content: "";
	display: block;
	border-bottom: 3px solid #fff;
	position: relative;
	left: 0px;
	bottom: -3px;
}
#menu li#home {
	animation-name: home;
	animation-duration: 3S;
	animation-fill-mode: both;
	position: absolute;
	top: 4%;
}
#menu li#ethos {
	animation-name: home;
	animation-duration: 3S;
	animation-fill-mode: both;
	position: absolute;
	top: 24%;
	animation-delay: 0.5s;
}
#menu li#service {
	animation-name: home;
	animation-duration: 3S;
	animation-fill-mode: both;
	position: absolute;
	top: 44%;
	animation-delay: 1.0s;
}
#menu li#security {
	animation-name: home;
	animation-duration: 3S;
	animation-fill-mode: both;
	position: absolute;
	top: 64%;
	animation-delay: 1.5s;
}
#menu li#about {
	animation-name: home;
	animation-duration: 3S;
	animation-fill-mode: both;
	position: absolute;
	top: 84%;
	animation-delay: 2.0s;
}

/*
@media screen and (max-width: 800px), screen and (max-height:800px) {
	#menu li a {
		width: 120px;
		line-height: 120px;
		font-size: 12px;
	}
}
@media screen and (max-width: 500px), screen and (max-height:500px) {
	#menu li a {
		width: 90px;
		line-height: 90px;
		font-size: 10px;
	}
}
*/
