/* GLOBAL */
html{
	margin-top:0!important;
}

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body{
    height: 100%;
}
img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
a{
    text-decoration: none;
    color: #000;
}
/* FIN GLOBAL */


/* HEADER*/
.header{
    display: flex;
    width: 100%;
    z-index: 9;
    align-items: center;
    justify-content: space-evenly;
    padding-top: 2em;
    gap: 2em;
}



.logo-pag{
    width: 30%;
}
.menu{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1em;
}

.burger-img {
    width: 7%;
    filter: invert(1);
}

.redes-head{
    width: 2%;
    gap: 0.8em;
}

.menu p{
    font-family: 'Raleway Medium';
    font-size: 1.6em;
    text-transform: uppercase;
    color: #000;
}

.logo-pag a{
    font-family: 'Raleway Medium';
    color: #000;
    font-weight: 200;
}

.redes-head{
    display: flex;
}

/* FIN HEADER*/




/* MOVIL  */
@media only screen and (max-width:650px){
	html, body{
	overflow-x:clip;
	}
}