@import url('https://fonts.googleapis.com/css?family=Raleway');
@import url('https://fonts.googleapis.com/css?family=Roboto:700');
@import url('https://fonts.googleapis.com/css?family=Lobster');
@import url(menu.css);
@import url(banner.css);
@import url(servicios.css);
@import url(contacto.css);
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body{
    font-family: 'Raleway', sans-serif;
}

header {
    width: 100%;
    height: 50px;
    background:  rgba(215, 86, 0, 1);;
    color: #fff;
    
    position: fixed;
    top: 0;
    left: 0;
    z-index: 100;
}
.contenedor{
    width: 98%;
    margin: auto;
}
h1 {
    float:left;
    margin-top: 5px;
}

header.contenedor{
  display: table;
}
section{
    width: 100%;
    margin-bottom: 25px;
}

#nosotros{
    text-align: center;
   
}
#nosotros h2{
    padding: 15px;
}
footer .contenedor{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    padding-bottom: 10px;

}
.copy{
    font-size: 10px;
}

@media (min-width:1024px){
    .contenedor{
        width: 1000px;
    }
}