.block--text-with-image {
    position: relative;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: flex-end;
    margin: 0 0 80px;
    min-height: 600px;
}

.block--text-with-image-content {
    padding: 200px 0 0;
    width: 45%;
}

.block--text-with-image-image {
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background-size: cover;
    background-position: 50% 50%;
    background-repeat: no-repeat;
}

.block--text-with-image-image.align-top {
    background-position: 50% 0;
}

.block--text-with-image-image.align-bottom {
    background-position: 50% 100%;
}

@media (max-width: 980px) {
    .block--text-with-image-content {
        padding-top: 320px;
        width: 100%;
    }
    .block--text-with-image-image {
        width: 100%;
        height: 300px;
    }
}

.block--text-with-image.reverse {
    justify-content: flex-end;
}

.block--text-with-image.reverse .block--text-with-image-image {
    left: 0; 
    right: auto;
}