@import url(fontello.css);
@import url(normalize.css);
@import url(menu.css);
@import url(banner.css);
@import url(productos.css);
@import url(nosotros.css);
@import url(contacto.css);


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

body {
    font-family:  'Open Sans', 'Helvetica Neue', sans-serif;
    box-sizing: border-box;
}

header {
    width: 100%;
    height: 50px;
    background: #87CEFA;
    color: #fff;
   /* menu pegado */
    position: fixed;
    top: 0;
    left: 0;
    z-index: 100;
}

.contenedor {
    width: 98%;
    margin: auto;
}
h1 {
    float: left;
}

header .contenedor {
    display: table;
}

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

}

#bienvenidos {
    padding: 15px;
}
/* estilo para el footer*/
footer {
    background: #3399FF;
    margin-top: 20px;
}
footer .contenedor {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    padding-bottom: 25px;
    
}
.copy {
    font-size: 20px;
}

.sociales {
    width: 100%;
    text-align: center;
    font-size: 28px;
}
 
   .sociales a {
       color: #333;
       text-decoration: none;
   }
   .product {
       margin-bottom: 7%;
   }
   @media (min-width:1024px) {
      .sociales {
          width: auto;
}
footer .contenedor {
    justify-content: space-between;
}
   }

   @media (min-width:768px) {
    .contenedor {
        width: 900px;
    }
}
