body{
    font: 15px Arial, Helvetica, sans-serif;
    padding: 0px;
    margin: 0px;
    background-color: #f4f4f4;
}
/* Estilos globales */
.contenedor{
    width: 90%;
    margin: auto;
    overflow: hidden;
}
ul{
    margin: 0px;
    padding: 0px;
}
.boton1{
    height: 38px;
    background: #e8491d;
    border: 0px;
    padding: 5px 20px;
    color: #fff;
}
/* Encabezado */
header{
    background: #24282b;
    color: #fff;
    padding-top: 30px;
    min-height: 70px;
    border-bottom: 5px solid #1293d4;
}
header a{
    color: #fff;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 16px;
}
header li{
    float: left;
    display: inline;
    padding: 0px 20px;
}
header #marca{
    float: left;
}
header #marca h1{
    margin: 0px;
}
header nav{
    float: right;
    margin-top: 10px;
}
header .resaltado, header .actual a{
    color: #1293d4;
    font-weight: bold;
}
header a:hover{
    color: #ccc;
    font-weight: bold;
}
#cabecera{
    min-height: 350px;
    background: url('../img/eppcpj-4.jpeg') no-repeat;
    background-size: cover;
    text-align: center;
    color: #1293d4;
}
#cabecera h1{
    margin-top: 100px;
    font-size: 25px;
    margin-bottom: 10px;
}
#cabecera p{
    font-size: 20px;
    /* color: #1293d4; */
    color: aliceblue;
}
/* Formulario boletin */
#boletin{
    padding: 5px;
    color: aliceblue;
    background: #24282b;
}
#boletin h1{
    font-size: 20px;
    float: left;
}
#boletin form{
    float: right;
    margin-top: 15px;
}
#boletin input[type="email"]{
    padding: 4px;
    height: 25px;
    width: 350px;
}
/* Cajas */
#cajas{
    margin-top: 20px;
}
#cajas .caja{
    float: left;
    text-align: center;
    width: 30%;
    padding: 10px;
}
#cajas .caja img{
    width: 300px;
}
/* Lateral */
aside#lateral{
    float: right;
    width: 30%;
    margin-top: 10px;
}
.oscuro{
    padding: 15px;
    background-color: #35424a;
    color: aliceblue;
    margin-top: 10px;
    margin-bottom: 10px;
}
/* Main-col */
article#main-col{
    float: left;
    width: 65%;
}
#main h1{
    color: #1293d4;
}
/* Servicios */
ul#servicios li{
    list-style: none;
    padding: 20px;
    border: 1px solid #ccc;
    margin-bottom: 5px;
    background-color: #e6e6e6;
}
/* foother o pie de pagina */
footer{
    padding: 20px;
    margin-top: 20px;
    color: aliceblue;
    background-color: #1293d4;
    text-align: center;
}
.hhh{
    margin-top: 10px;
    background-color: #24282b;
    height: 70px;
}
/* Formulario de contacto */
input, textarea{
    width: 100%;
    height: 35px;
    border: 1px solid gray;
    margin-bottom: 5px;
}
textarea{
    height: 120px;
}
input[type="submit"]{
    background-color: #e8491d;
    color: aliceblue;
}
/* Media Queries */
@media(max-width: 768px){
    header #marca,
    header nav,
    header nav li,
    #boletin h1,
    #boletin form,
    #cajas .caja,
    article#main-col,
    aside#lateral{
        float: none;
        text-align: center;
        width: 100%;
    }
    header{
        padding-bottom: 20px;
    }
    #boletin h1{
        margin-top: 40px;
    }
    #boletin button{
        display: block;
        width: 100%;
    }
    #boletin form input[type="email"]{
        width: 100%;
        margin-bottom: 5px;
    }
    input, textarea{
        width: 98%;
    }
}