.full_width_image_container {
    width: 100%;
    /* margin-bottom: 30px; */
    position:  relative;
}

.full_width_image.absolute {
    position: absolute;
    left:  0;
    top: 0;
    right: 0;
    bottom: 0;
}

.full_width_image_container_mask {
    width: 100%;
    height: 100%;
    position:  relative;
}

.full_width_image_container .responsive-image {
    display: none;
}

@media (max-width: 1500px)
{
    .full_width_image.absolute {
        background-size: cover!important;
    }
}

@media (max-width: 780px) {

    .full_width_image_container .full_width_image_container_mask {
        display: none;
    }

    .full_width_image_container .responsive-image {
        display: inherit;
    }

    .full_width_image_container {
        height:auto!important;
        max-height: none!important;
    }
}