body, html {
    font-family: 'Montserrat', sans-serif;
    height: 100%;
    margin: 0;
    font-size: 16px;
}

#wrapper {
    min-height: 100%;
    /* Equal to height of footer */
    /* But also accounting for potential margin-bottom of last child */
    margin-bottom: -100px;
}

#footer, #push {
    height: 100px;
}

.header_banner {
    background-color: #fff;
}

.header_text {
    font-family: 'Montserrat', sans-serif;
    color: #292639;
    font-size: 3.8em;
    font-weight: bold;
    text-align: center;
    padding: 50px 0;
}

.banner_image {
    width: 100%;
    height: 580px;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    background-image: url('/images/org2.jpg');
    position: relative;
}

.banner_iamge_text {
    font-family: 'Montserrat', sans-serif;
    color: #fff;
    font-size: 2.5em;
    position: absolute;
    top: 50%;
    margin: 0;
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
}

.footer_container {
    position: relative;
    width: 100%;
    height: 100px;
}

.footer_text {
    font-family: 'Montserrat', sans-serif;
    text-align: center;
    color: #505050;
    font-size: 1.1em;
    margin: 0;
    position: absolute;
    top: 50%;
    left: 50%;
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    width: 100%;
}

@media (max-width: 768px) {

    .banner_iamge_text {
        text-align: center;
        left: 50%;
        -ms-transform: translate(-50%, -50%);
        transform: translate(-50%, -50%);
    }

}

@media (max-width: 991px) {

    .banner_image {
        background-image: url('/images/org1.jpg');
    }

    .footer_text {
        font-size: 0.9em;
    }

}