.hero-area {
    background-size: cover;
    background-attachment: fixed;
    height: 100vh;
    display: flex;
    align-items: center;
}

.hero-area h1 {
    color: #fff;
    font-size: 60px;
    text-transform: uppercase;
    font-weight: bold;
    padding-bottom: 19px;
}

.hero-area p {
    color: #fff;
    font-size: 20px;
    line-height: 1.3;
}

.hero-area .info-block {
    background: rgba(255, 255, 255, 0.2);
    padding: 1em;
    display: flex;
    flex-wrap: wrap;
}

.hero-area .info-block .block {
    background-color: rgba(0, 0, 0, 0.3);
    color: #fff;
    line-height: 25px;
    padding: 2em;
    text-align: center;
    width: 49%;
    min-height: 10em;
    margin: .5%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-area .btn {
    margin-bottom: .5em;
}

.hero-area .scrim {
    padding: 1em
}

.hero-area .scrim.dark {
    background-color: rgba(0, 0, 0, 0.3);
}

.hero-area .scrim.light {
    background-color: rgba(255, 255, 255, 0.3);
}
  