@charset "utf-8";
/* CSS Document */

.contenedor {
    width: 98%;
    margin: auto;
}

header .contenedor {
    display: table;
}


header {
	width: 100%;
	height: 60px;
	background-color: #FFFFFF;
	color: #373434;
	position: fixed;
	top: 10;
	left: 0;
	z-index: 100;
	padding-top: 10px;
}

.logo {
	position: fixed;
	margin-top: 0px;
}

#menu-bar {
    display: none;
}

header label {
    float: right;
    font-size: 28px;
    margin: 6px 0;
    cursor: pointer;
}

.menu {
	font-family: 'Raleway', sans-serif;
	position: absolute;
	top: 50px;
	left: 0;
	width: 100%;
	height: 100vh;
	background-color: rgba(255,255,255,0.90);
	transition: all 0.5s;
	transform: translateX(-100%);
}

.menu a {
	font-family: 'Raleway', sans-serif;
	font-size: 13px;
	display: block;
	color: #212121;
	height: 50px;
	text-decoration: none;
	padding: 13px;
	border-bottom: 1px solid rgba(255,255,255,0.3);
}

.menu a:hover {
	font-size: 13px;
	background-color: rgba(217,217,217,0.30);
}

#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;
    }
}


.link {
}
