.bmg--herobasic {
    width: 100%;
    height: calc(100vh - 100px);
    background-color: black;
    background-size: cover;
    background-position: center center;
    position: relative;
}

.bmg--herobasic:after {
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4);
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    content: '';
}

.bmg--herobasic__content {
    width: 100%;
    color: white;
    text-align: center;
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 2;
}

.bmg--herobasic__content h1 {
    margin: 0 0 14px 0;
    font-family:'Montserrat',sans-serif;
    font-weight: 800;
    font-size: 38px;
    line-height: 42px;
    text-transform: uppercase;
}

.bmg--herobasic__content p {
    margin: 0 0 55px 0;
    font-weight: 700;
    font-size: 18px;
    line-height: 21px;
}

.bmg--herobasic__content__mouse {
    margin-bottom: 25px;
}

@media(min-width: 768px) {
    .bmg--herobasic {
        height: calc(100vh - 200px);
    }
}