/* =====================================
   HERO
===================================== */

#hero {

    position: relative;

    min-height: 100vh;

    display: flex;

    align-items: center;

    background:
        linear-gradient(
            rgba(28,37,50,.75),
            rgba(28,37,50,.75)
        ),
        url('../img/hero-house.jpg');

    background-size: cover;

    background-position: center center;

    color: white;
}

.hero-content {

    max-width: 700px;
}

.hero-content h1 {

    font-size: 4.5rem;

    font-weight: 800;

    line-height: 1.1;

    margin-bottom: 25px;
}

.hero-content p {

    font-size: 1.3rem;

    line-height: 1.8;

    margin-bottom: 35px;

    max-width: 600px;
}

/* =====================================
   RESPONSIVE
===================================== */

@media(max-width:992px){

    .hero-content h1 {

        font-size: 3.4rem;
    }
}

@media(max-width:768px){

    #hero {

        text-align: center;
    }

    .hero-content {

        margin: auto;
    }

    .hero-content h1 {

        font-size: 2.5rem;
    }

    .hero-content p {

        font-size: 1.05rem;
    }
}
