@import url('https://fonts.googleapis.com/css?family=Acme');

#ck_menu{
	display: none;
}

.nav_menu{
	position: fixed;
	width: 100%;
	height: 350px;
	display: block;
	text-align: right;
	z-index: 99;
	transition: all 1s;
}

.fixo{
	position: fixed;
	width: 100%;
	height: 100px;
	background: rgba(0, 0, 50, .8);
	transition: all 1s;
}

.menu{
	position: fixed;
	width: 100%;
	height: auto;
	right: 100px;
	top: 10px;
	display: block;
	list-style: none;
}

.menu li{
	position: relative;
	padding: 10px;
	display: inline-block;
	padding: 15px;
}

.menu a{
	text-decoration: none;
	color: rgba(255, 255, 0, 1.0);
	font-family: 'Acme', sans-serif;
	font-size: 18pt;
}

.logo{
	position: fixed;
	width: 800px;
	height: 220px;
	margin-top: 10%;
	margin-left: 30px;
	z-index: 99;
	transition: all 1s;
	display: block;
}

.fixo .logo{
	position: fixed;
	width: 300px;
	height: 83px;
	margin: 15px;
	z-index: 98;
	transition: all 1s;
}@media(max-width:425px){
	.fixo .logo{
		width: 75%;
	}
}


@media (max-width: 980px) {

	#ck_menu{
		display: none;
	}
		
	.nav_menu{
		position: fixed;
		width: 100%;
		height: 220px;
		transition: all 1s;
		z-index: 98;
		text-align: center;
	}

	.fixo{
		position: fixed;
		width: 100%;
		height: 105px;
		background: rgba(0, 0, 50, .8);
		transition: all 1s;
	}

	.ck_menu{
		position: fixed;
		width: 3.5em;
		right: 1em;
		top: 2em;
		z-index: 99;
	}

	.logo{
		position: fixed;
		width: 75%;
		height: auto;
		margin: 15px;
		z-index: 98;
		transition: all 1s;
	}

	.fixo .logo{
		position: fixed;
		width: 300px;
		height: 83px;
		margin: 15px;
		z-index: 98;
		transition: all 1s;
	}

	.um, .dois, .tres{
		position: relative;
		width: 3em;
		height: 0.3em;
		margin: 0.3em;
		background: rgba(255, 255, 255, 1.0);
		box-shadow: 0px 0px 4px #000;
		border-radius: 5px;
		cursor: pointer;
		transition: all 1s;
		z-index: 99;
	}

	.menu{
		position: fixed;
		width: 100%;
		height: 5000px;
		left: -110%;
		background: rgba(0, 0, 253, .8);
		margin-top: -10px;
		list-style: none;
		text-align: center;
		z-index: 98;
		transition: all 1s;
		display: block;
	}

	.menu li{
		padding-top: 60px;
		margin-left: -50px;
		display: block;
		text-align: center;
	}

	.menu a{
		text-decoration: none;
		color: rgba(255, 255, 0, 1.0);
		font-family: 'Acme', sans-serif;
		font-size: 30pt;
	}

	/*------------------------- EFEITOS MENU --------------------------*/
	#ck_menu:checked ~ .ck_menu .dois{
		opacity: 0;
		transition: all .5s;
	}
	#ck_menu:checked ~ .ck_menu .um{
		transform: rotate(45deg) translate(10px, 14px);
		transition: all 1s;
	}
	#ck_menu:checked ~ .ck_menu .tres{
		transform: rotate(-45deg) translate(0px, -4px);
		transition: all 1s;
	}
	#ck_menu:checked ~ .menu{
		left: 0;
		transition: all 1s;
	}
}