*{

    padding: 0;

    margin: 0;

        box-sizing: border-box;
		text-decoration: none;

   

}

header{
	height: auto;
    width: 100%; 
	color: #fff;
	background: #318CE7;
	
	position: fixed;
	top: 0;
	left:0; 
	z-index:100;  /*siempre el menu este adelante de las demas elementos*/
   
    
}

.contenedor{
	width: 98%;
	margin: auto;
}
h1 {
	float: left;
	color: #c20000;
}
header .contenedor{
	display: table;
}
section{
	width: 100%;
	margin-bottom: 20px;
}
#menu-bar{
	display:none;
}

header label{
	float:center;
	font-size: 28px;
	margin: 6px 0;
	cursor:pointer;
}
.menu{
	position: absolute;
	top: 115px;
	left:0;
	width: 100%;
	height: 100vh;
	background: #318CE7; /* color del menu */
	transition: all 0.5s;
	transform: translateX(-100%);
	text-transform: uppercase;
}
.menu a {
	display: block;
	color: #fff; /* color del texto menu */
	height: 40px;
	text-decoration: none;
	padding: 15px;
	border-bottom: 1px solid rgba(255,255,255,0.3);
}

.menu a:hover{
	background:rgba(255,255,255,0.3);
}

#menu-bar:checked ~ .menu{
	
	transform:translateX(0%);
}
@media (min-width: 1024px){
	.menu{
	position: static;
	width: auto;
	height: auto;
	transform: translateX(0%);
	float: right;
	display: flex;
}
.menu a{
	border: none;
}
header label{
	display: none;
}
@media (min-width: 1024px){
	.contenedor{
		width: 1250px;
}
}