@import url(menu.css);
@import url(banner.css);
@import url(info.css);
@import url(automat.css);
@import url(montaje.css);
@import url(client.css);

*{
    margin: 0;
    border: 0;
    box-sizing: border-box;
}
body{
    font-family: 'Open Sans', sans-serif;
}
header{
    width: 100%;
    height: 70px;
    background-color: navy;
    color: white;
    position: fixed;
    left: 0;
    top: 0;
    z-index: 100;
}

.contenedor{
    max-width: 1200px;
    width: 98%;
    margin:auto;
}

#logoicon{
    width: 100px;
    float: left;
}
header .contenedor{
    display: table;
}

section{
    width: 100%;
    margin-bottom: 25px;
}
.boton {
    background: gray;
    color: white;
    text-decoration: none;
    padding: 10px;
    width: 200px;
    border-radius: 8px;    
}
.boton:hover{
    background: lightgray;
}