/* Estilos generales */
* {
    margin: 0px;
    padding: 0px;
    text-decoration: none;
    font-family: 'Open Sans', Verdana;
}

html, body {
    overflow-x: hidden;
}

body {
    background: white;
}

.clearfix {
    clear: both;
    float: none;
}

.container {
    width: 85%;
    margin: 0 auto;
}

/* Cabecera */
#main-header {
    background: white;
    height: 100px;
    line-height: 85px;
}

#logo {
    width: 63%;
    float: left;
}

#logo h1 {
    font-weight: bold;
    font-size: 25px;
    color: #FB314E;
}

#menu {
    width: 380px;
    float: left;
}

#menu ul li {
    list-style: none;
    float: left;
    margin-left: 15px;
    margin-right: 15px;
}

#menu ul li a {
    color: black;
}

#menu ul li a:hover {
    color: #FB314E;
}

/* Slider */
#slider {
    height: 300px;
    background: #FB314E;
}

#slider h2 {
    font-size: 40px;
    text-align: center;
    color: white;
    line-height: 290px;
    text-shadow: 0px 0px 6px black;
}

/* Maquetado de servicios */
.subheader {
    font-size: 34px;
    color: #333;
    text-align: center;
    margin-top: 40px;
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(251, 49, 78, 0.3);
}

.service, .video {
    width: 33%;
    text-align: center;
    float: left;
    margin-top: 20px;
    margin-bottom: 20px;
}

.service img {
    height: 48px;
    margin-bottom: 20px;
}

.service h3 {
    margin-bottom: 10px;
}

.service p, .video p {
    color: #444;
    text-align: justify;
    display: block;
    width: 85%;
    margin: 0 auto;
}

/* Sección de videos */
.video iframe {
    height: 170px;
}

/* Footer */
#footer {
    background: #333;
    padding-top: 5px;
    padding-bottom: 40px;
    margin-top: 30px;
    text-align: center;
    color: white;
}

#footer .subheader {
    color: white;
}

#networks {
    display: block;
    width: 216px;
    margin: 0 auto;
    list-style: none;
    margin-bottom: 20px;
    margin-top: 20px;
}
#networks img{
    display: block;
    width: 30px;
    height: 30px;
    margin: 0 auto;
    list-style: none;
    margin-bottom: 20px;
    margin-top: 20px;
}

#networks li {
    float: left;
    margin-left: 20px;
    margin-right: 20px;
    transition: all 300ms;
}

#networks li:hover {
    opacity: 0.8;
    transform: scale(1.1, 1.1);
}

/* Media Queries */
@media (max-width: 1225px) {
    .container {
        width: 95%;
    }
}

@media (max-width: 1085px) {
    #main-header {
        height: 70px;
        line-height: 65px;
    }
}

@media (max-width: 999px) {
    #logo {
        width: 227px;
        float: none;
        margin: 0 auto;
    }

    #logo h1 {
        font-size: 20px;
    }

    #menu {
        float: none;
        margin: 0 auto;
    }

    #slider {
        overflow: hidden;
        height: 150px;
    }

    #slider h2 {
        font-size: 30px;
        line-height: 30px;
        margin-top: 60px;
    }
}

@media (max-width: 700px) {
    .service, .video {
        width: 70%;
        float: none;
        margin: 0 auto;
        margin-top: 20px;
        margin-bottom: 40px;
    }

    .service {
        width: 50%;
        text-align: justify;
    }

    .service img {
        margin-bottom: 10px;
    }

    .service p, .video p {
        margin-top: 20px;
        font-size: 16px;
    }

    .video iframe {
        width: 80%;
        height: 230px;
    }

    #logo h1 {
        font-size: 18px;
    }
}

@media (max-width: 460px) {
    #slider h2 {
        font-size: 25px;
        line-height: 30px;
        margin-top: 60px;
    }

    .service p, .video p {
        font-size: 14px;
    }

    .video iframe {
        width: 75%;
        height: 200px;
    }

    #logo h1 {
        font-size: 16px;
    }
}

@media (max-width: 377px) {
    #menu {
        width: 100%;
        text-align: center;
    }

    #menu ul li {
        margin-left: 4%;
        margin-right: 4%;
    }

    #slider h2 {
        margin-top: 50px;
    }

    .service, .video {
        width: 90%;
    }

    .video iframe {
        width: 70%;
        height: 180px;
    }

    #logo h1 {
        font-size: 14px;
    }
}

@media (max-width: 345px) {
    #main-header {
        height: auto;
    }

    #menu ul li {
        float: none;
    }
}
