.home-band-image {
    width: 100%;
    height: calc(100vh - 82px);
    background-image: url('/img/slideshow/slideshow-photo-05.jpg');
    background-repeat: no-repeat;
    background-position: center top;
    background-size: cover;
    background-attachment: fixed;
    margin-bottom: 50px;
}

.the-band {
    display: flex;
    align-items: flex-start;

    width: 100%;
    max-width: 1350px;

    box-sizing: border-box;
    padding: 0 0 50px;
}

.the-band-text {
    padding-bottom: 130px;
    padding: 0 15px;
    box-sizing: border-box;
}

.the-band-text h1 {
    margin-top: 0;
    text-align: center;
    text-transform: uppercase;
    font-family: 'Abel', sans-serif;
    font-size: 44px;
    font-weight: 300;
    letter-spacing: 4.4px;
}

@media only screen and (max-width: 1200px) {
    .the-band {
        flex-direction: column;
        padding: 0 0 50px;
    }

    .the-band-text {
        padding: 0;
    }
}

@media only screen and (max-width: 992px) {
    .home-band-image {
        background-size: 100%;
        background-attachment: scroll;
        background-position: center;
        height: calc(100vw * 0.6568);
    }
}


@media only screen and (max-width: 768px) {
    .home-band-image {
        margin-bottom: 0;
    }

    .the-band-text h1 {
        font-size: 32px;
    }
}