@import url(https://fonts.googleapis.com/css?family=Open+Sans);
@import url(menu.css);
@import url(banner.css);
@import url(galeria.css);
@import url(block.css);
@import url(info.css);
@import url(infodato.css);

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box; /*para encajar*/
}
body{
    font-family: 'Open Sans', sans-serif;
}
header{
    width: 100%;
    height: 50px;
    background: #5795A1;
    color: #fff;
    position: fixed;/*para que el menu se quede pegado*/
    top: 0;
    left: 0;
    z-index: 100;
}


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

}
.contenedor h1 img{
     width: 120px;
}
h1{
    float:left;
}
.contenedor h5{
    color: #4F160A;
}
header .contenedor{
    display: table;
}
section{
    width: 100%;
    margin-bottom: 25px;
}
#bienvenidos{
    text-align: center;
}
 #bienvenidos img{
        width: 10%;
    }
 footer .contenedor{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    padding-bottom: 25px;
 }
 .copy{
    font-size: 9px;
 }
 .sociales a{
    color: #333;
    text-decoration: none;
 }
 .txt {
    background: #ffffff;
    
    font-family: Arial;
    color: #1783c7;/* color letra*/
    font-size: 16px;
    padding: 4px 0px 4px 5px;/*tamano ancho y algo*/
    border: solid #ddd 0.5px;   
}
.btn {
    background:#5A8EB9;
    font-family: Arial;
    color: #ffffff;
    font-size: 15px;
    padding: 5px 5px 5px 5px;
    border: solid #1783c7 0px;
    text-decoration: none;
    cursor:pointer; cursor: hand;  
}

.btn:hover {
        background:#5A8EB9;
        color: #ffffff;
    cursor:pointer; cursor: hand;  
}

 @media(min-width: 768px){
    .sociales{
        width: auto; /*reduduce todos los contenedores*/
    }
    footer .contenedor{
        justify-content: space-between;
    }
 }

 @media(min-width: 1024px){
   
    .contenedor{
        width: 1000px; /*reduduce todos los contenedores*/
    }
   .contenedor h1 img{
     width: 300px;
      height: 200px;
    }
    .principal{
    width: 100%;
    height: 50px;
    background: #fff;
    color: #fff;
    position: fixed;/*para que el menu se quede pegado*/
    top:0px;
      z-index: 100;
}
 }