*{
    margin: 0;
    padding: 0;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    list-style: none;
}
body {
    font-family: "Roboto", sans-serif;
    background-color: #F4F4F4;
}
.contenedor {
    width: 90%;
    max-width: 1000px;
    margin: auto;
    overflow: hidden;
}
.btn-wsp {
    display: inline-block;
    position: fixed;
    bottom: 50px;
    right: 30px;
    width: 80px;
    height: 80px;
    border-radius: 50px;
    box-shadow: 3px 2px 6px rgba(0, 0, 0, .6);
}

/* ----HEADER---- */

header {
    width: 100%;
    background: url('../../img/historia\ portada.jpg');
    background-size: cover;
    background-attachment: fixed;
    background-position: center 0;
}
header .contenedor {
    position: relative;
    height: 400px;
}
header .textos {
    width: 100%;
    color: #494C4B;
    position: absolute;
    top: 40%;
    margin-top: -54px;
}
header .textos .nombre {
    font-size: 60px;
    font-weight: 300;
}
header .textos .nombre span {
    color: #00A75D;
    font-weight: 600;
}

/* HISTORIA EL RANCHO */

.hero {
    overflow: hidden;
}
.heading h1 {
    color: #00A75D;
    font-size: 48px;
    text-align: center;
    margin-top: 40px;
}
.about-us {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    margin: 65px auto;
}
.hero-content {
    flex: 1;
    width: 600px;
    margin: 0px 25px;
}
.hero-content h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #F4B223;
}
.hero-content p {
    font-size: 19px;
    line-height: 24px;
    margin-bottom: 40px;
    color: #494C4B;
}
.hero-image {
    flex: 1;
    width: 600px;
    margin: auto;
}
.hero img {
    width: 100%;
    height: auto;
    border-radius: 40px;
}

/* LOS VALORES */

.article {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 50%;
    margin: 65px auto;
}
.article-content {
    flex: 1;
    width: 600px;
    margin: 0px 25px;
}
.article-content h2 {
    font-size: 38px;
    text-align: center;
    margin-bottom: 50px;
    color: #F4B223;
}
.article li {
    text-decoration: none;
    color: #000;
}
.article li:hover {
    color: #FF4438;
}
.article-content li {
    font-size: 36px;
    font-weight: 600;
    line-height: 10px;
    margin-bottom: 40px;
    text-align: center;
    color: #494C4B;
}

/* QUIENES SOMOS */

.contenedor .aboutus .titulo {
    color: #F4B223;
    font-size: 38px;
    text-align: center;
    margin-bottom: 40px;
}
.contenedor .aboutus .texto {
    font-size: 22px;
    color: #494C4B;
    line-height: 28px;
    width: 100%;
    margin: 20px auto 10% auto;
    text-align: center;
}
.about {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    margin: 20px auto;
}
.about-content {
    flex: 1;
    width: 600px;
    margin: 0px 25px;
    margin-bottom: 60px;
}
.about-content h2 {
    font-size: 30px;
    margin-bottom: 80px;
    color: #F4B223;
}
.about-content li {
    font-size: 22px;
    line-height: 10px;
    margin-bottom: 30px;
    color: #494C4B;
}
.about-content h3 {
    font-size: 28px;
    margin-bottom:40px;
    color: #F4B223;
}
.about-image {
    flex: 1.6;
    width: 500px;
    margin: auto;
}
.about img {
    width: 90%;
    height: auto;
    border-radius: 40px;
    margin-bottom: 60px;
}

/*AREA DE CONTACTO*/

.correo .informacion p {
    font-size: 22px;
    color: #494C4B;
    line-height: 28px;
    width: 90%;
    margin: 20px auto 10% auto;
    text-align: left;
    margin-bottom: 10px;
}
.correo .correo-enlaces p {
    font-size: 22px;
    color: #494C4B;
    width: 90%;
    margin: 20px auto 10% auto;
    text-align: left;
    margin-bottom: 10px;
}
.correo .correo-enlaces a {
    font-size: 22px;
}
.contenedor-correo .btn {
    display:inline-block;
    padding: 10px 18px;
    background-color: #00A75D;
    text-decoration: none;
    border-radius: 4px;
    color: #fff;
    margin: 20px 40px 20px 40px;
    margin-bottom: 50px;
}

/* footer */

.container {
    max-width: 1000px;
    margin: 0 auto;
}
.footer {
    background-color:#F4B223;
    padding: 60px 0;
}
.footer-row {
    display: flex;
    flex-wrap: wrap;
}
.footer-link {
    width: 25%;
    padding: 0 15px;
}
.footer-link h4 {
    font-size: 26px;
    color: #ffff;
    margin-bottom: 25px;
    font-weight: 600;
    border-bottom:  2px solid #fff;
    padding-bottom: 10px;
    display: inline-block;
}
.footer-link ul li a {
    font-size: 16px;
    text-decoration: none;
    color: #fff;
    display: block;
    margin-bottom: 20px;
    transition: all .3s ease;
}
.footer-link ul li a:hover{
    color: #494C4B;
    padding-left: 4px;
}
.social-link img {
    display: inline-block;
    min-height: 40px;
    width: 40px;
    margin: 0 10px 10px 0;
}

/* MEDIA QUERIES */
@media screen and (max-width: 760px) {
    header .textos {
        position: static;
        margin: 100px 0;
    }

    header .textos .nombre {
        font-size: 48px;
    }

    /*ARTICULOS*/
    .heading h1 {
        font-size: 42px;
    }

    .about-us {
        width: 100%;
        margin: 80px auto;
    }

    .hero-content h2 {
        font-size: 28px;
    }

    .hero-content p {
        font-size: 16px;
        line-height: 20px;
    }

    .contenedor .aboutus .titulo {
        font-size: 36px;
    }

    .contenedor .aboutus p {
        font-size: 20px;
    }

    /*FOOTER*/

    .container {
        max-width: 600px;
    }

    .footer-link h4 {
        font-size: 22px;
    }

    .footer-link ul li a{
        font-size: 14px;
    }

    .social-link img {
        display:flow-root;
    }

}

@media screen and (max-width: 440px) {
    header .textos .nombre {
        font-size: 40px;
    }

    /*ARTICULOS*/

    .about-us {
        display: flow-root;
        width: 80%;
        margin: 40px 10px;
    }

    .heading h1 {
        font-size: 36px;
    }


    .hero img {
        width: 60%;
    }

    /* LOS VALORES */
    .article-content li {
        font-size: 32px;        
    }

    /* QUIENES SOMOS */
    .contenedor .aboutus .texto p {
        font-size: 18px;
        line-height: 26px;
    }

    /* LISTA DE INTEGRANTES */
    .about {
        display:flow-root;
    }

    /* AREA DE CONTACTO */
    .correo .informacion p {
        font-size: 18px;
        line-height: 28px;
        text-align: center;
    }

    .correo .correo-enlaces p {
        font-size: 18px;   
        text-align: center;
    }

    .correo .correo-enlaces a {
        font-size: 16px;
    }



    /*FOOTER*/
    .container {
        max-width: 400px;
    }

    .footer-link h4 {
        font-size: 16px;
    }
    
    .footer-link ul li a{
        font-size: 12px;        
    }

    .social-link img {
        min-height: 26px;
        width: 26px;
    }
}