#home {
    width: 100%;
    height: 80vh;
    background-size: cover;
    position: relative
}

#home:before {
    content: "";
    background: rgba(45, 53, 69, .7);
    position: absolute;
    bottom: 0;
    top: 0;
    left: 0;
    right: 0
}

#home .container {
    text-align: center;
    padding-top: 50px
}

@media (max-width:992px) {
    #home .container {
        padding-top: 0
    }
}

#home h1 {
    margin: 0;
    font-size: 48px;
    font-weight: 700;
    line-height: 56px;
    color: #fff
}

#home h2 {
    color: #eee;
    margin: 15px 0 0 0;
    font-size: 22px
}

@media (min-width:1024px) {
    #home {
        background-attachment: fixed
    }
}

@media (max-width:768px) {
    #home {
        height: 100vh
    }

    #home h1 {
        font-size: 28px;
        line-height: 36px
    }

    #home h2 {
        font-size: 18px;
        line-height: 24px
    }
}