*{
	margin: 0;
	padding: 0; 
}

header{
	height: 100px;
	background: #3C8734;
	padding: 0 50px;
	color: white;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.logo{
	text-transform: uppercase;
	color: white;
	font-weight: 200;
}

.menu a{
	color: white;
	text-transform: uppercase;
	text-decoration: none;
	padding: 0 10px;
	transition: 0.4s
}

.mostrar-menu,
.esconder-menu{
	font-size: 50px;
	cursor: pointer;
	display: none;
	transition: 0.4s;
}

.mostrar-menu{
	order:1;
}

.menu a:hover,
.mostrar-menu:hover,
.esconder-menu:hover{
	color: #ffffff;
}

#check{
	display: none;
}

@media(max-width: 768px){
	.mostrar-menu,
	.esconder-menu{
		display: block;
	}
	
	.menu{
		position: fixed;
		width: 100%;
		height: 100vh;
		background: #3C8734;
		right: -100%;
		top: 0;
		text-align: center;
		padding: 100px 0px;
		z-index: 100;
		transition: 0.8s;
	}
	
	.menu a{
		display: block;
		padding: 20px;
	}
	
	.esconder-menu{
		position: absolute;
		top:40px;
		right: 40px;
	}
	
	#check:checked ~ .menu{
		right: 0;
	}
}