.image_text_items_sect {
    background-color: #F5F5F5;
}
.image_text_items_sect .under_title {
    color: #0408E7;
    text-transform: uppercase;
    text-align: center;
    line-height: 1;
    font-weight: 700;
    margin: 0 0 0.625em;
}
.image_text_items_sect .sect_title {
    margin: 0 0 1.11em;
}
.image_text_items_sect .items {
    margin: -0.625em;
    display: flex;
    flex-wrap: wrap;
}
.image_text_items_sect .item {
    margin: 0.625em;
    background-color: #ffffff;
    width: calc(50% - 1.25em);
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}
.image_text_items_sect .item_image {
    background-position: center;
    background-size: cover;
}
.image_text_items_sect .item_image:before {
    content: '';
    display: block;
    padding: 27.12% 0;
}
.image_text_items_sect .item_info {
    padding: 3.125em;
    box-sizing: border-box;
    flex-grow: 1;
}
.image_text_items_sect .item_title {
    text-transform: uppercase;
    font-weight: 700;
    line-height: 1;
    margin: 0 0 0.625em;
}
.image_text_items_sect .item_desc {
    line-height: 1.5;
    color: #374151;
}
.image_text_items_sect .item.full_width {
    flex-direction: row-reverse;
}
.image_text_items_sect .item.full_width .item_image {
    width: calc(50% - 0.625em);
}
.image_text_items_sect .item.full_width .item_image:before {
    padding: 34% 0;
}
.image_text_items_sect .item.full_width .item_info {
    width: calc(50% + 0.625em);
    display: flex;
    flex-direction: column;
    justify-content: center;
}
@media(max-width: 1199px) {
    .image_text_items_sect .item_info {
        padding: 1.25em;
    }
}
@media(max-width: 767px) {
    .image_text_items_sect .item {
        width: calc(100% - 1.25em);
    }
    .image_text_items_sect .item.full_width {
        flex-direction: column;
    }
    .image_text_items_sect .item.full_width .item_image,
    .image_text_items_sect .item.full_width .item_info {
        width: 100%;
    }
}