@import url(https://fonts.googleapis.com/css?family=Open+Sans);
@import url(https://fonts.googleapis.com/css?family=Nova+Square);
@import url(menu.css);
@import url(banner.css); 



*{
    margin: 0;
    padding: 0;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

body{
    font-family: 'Open Sans', sans-serif;    
}

header{
    font-family: 'Nova Square', sans-serif;
    width: 100%;
    height: 70px;
    background: rgba(51, 51, 51, 0.5);
    color: #fff;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 100;
}

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

h1{
    float: left;
    font-size: 35px;
    margin-top: 12px;
    font-weight: bolder;
}

header img{
    float: left;
    width: 40px;
    height: auto;
    border-radius: 50%;
    border: 2px solid #fff;
    margin: 7px;
}

header .contenedor{
    display: table;
    /* para que tenga el alto de sus hijos, y los encierre, sino no adopta altura*/
}

section{
    width: 100%;
   margin-bottom: 25px;
}

#bienvenidos{
    font-family: 'Raleway', sans-serif;
    text-align: center;
}

#bienvenidos h2 {
    font-weight: bolder;
    font-size: 30px;
    margin-bottom: 20px;
}

#bienvenidos p {
    line-height: 30px;
}

footer{
    background: rgba(51, 51, 51, 0.9);
}

footer .contenedor{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    padding-bottom: 25px;
    color: white;
    padding-top: 25px;
}

.copy {
    font-size: 20px;
}

.sociales {
    width: 100%;
    text-align: center;
    font-size: 28px;
}

.sociales a {
    text-decoration: none;
    color: white;
}

#mapa .contenedor{
    text-align: center;
}

iframe{
    width: 100%;
    max-width: 600px;
    height: 300px;
}

@media(min-width: 768px){
    .sociales{
    width: auto;  
    }

    footer .contenedor{
        justify-content: space-between;
    }

    iframe {
        height: 400px;
    }
}

@media (min-width: 1024px){
    .contenedor{
        width: 1000px;
    }
}