.content_block_image {
    position: relative;
}
.content_block_image img {
    max-width: 100%;
    display: block;
    margin: 0 auto;
}


.content_block_image_text {
    position: relative;
}
.content_block_image_text__image {
    float: left;
    width: 40%;
    overflow: hidden;
    min-height: 1px;
}
.content_block_image_text__image img {
    max-width: 100%;
}
.content_block_image_text__content {
    float: right;
    width: 60%;
    overflow: hidden;
    padding: 0 0 0 40px;
    box-sizing: border-box;
    min-height: 1px;
}
.content_block_image_text::after {
    content: '';
    display: block;
    clear: both;
}
.content_block_image_text.image_right .content_block_image_text__image {
    float: right;
    text-align: right;
}
.content_block_image_text.image_right .content_block_image_text__content {
    float: left;
    padding: 0 80px 0 0;
}





@media (min-width: 721px) and (max-width: 990px) {
    .content_block_image_text__content {
        padding: 0 0 0 40px;
    }
    .content_block_image_text.image_right .content_block_image_text__content {
        padding: 0 40px 0 0;
    }
    .content_block_image_text__content h1 {
        hyphens: auto;
    }
}





@media (max-width: 720px) {
    .content_block_image_text {
        display: flex;
        flex-direction: column;
    }
    .content_block_image_text__image {
        width: 100%;
        float: none;
        padding: 0;
    }
    .content_block_image_text__content {
        padding: 0;
        width: 100%;
        float: none;
        flex: 1;
    }
    .content_block_image_text.image_right .content_block_image_text__content {
        padding: 0;
        width: 100%;
        float: none;
        order: 1;
    }
    .content_block_image_text.image_right .content_block_image_text__image {
        padding: 0;
        order: 2;
        float: none;
    }
}
