.three_in_row_numbered_squares_with_text {}
.three_in_row_squares_with_text_items {
    display: flex;
    flex-wrap: wrap;
}
.three_in_row_squares_with_text_item {
    flex: 1 0 calc(33.33% - 6em);
    border: 2px solid #D1D1D1;
    padding: 1.5em 1em;
    margin-left: -2px;
    margin-bottom: -2px;
}
.three_in_row_squares_with_text_item_title_block {
    height: auto;
}
.three_in_row_squares_with_text_item h3 {
    margin-bottom: 1em;
}
.three_in_row_squares_with_text_item span {
    display: block;
    margin-bottom: 0.5em;
}
.three_in_row_squares_with_text_item h3,
.three_in_row_squares_with_text_item span {
    font-size: 1.5em;
    line-height: 1.1em;
    font-weight: 500;
    color: #000;
    text-transform: none;
}
.three_in_row_squares_with_text_item p {
    font-size: 1em;
    line-height: 1.2em;
    font-weight: 400;
    color: #000;
}

@media screen and (max-width: 767px){
    .three_in_row_squares_with_text_items {
        flex-direction: column;
    }
    .three_in_row_squares_with_text_item:not(:last-child) {
        margin-left: 0;
    }
    .three_in_row_squares_with_text_item {
        margin-left: 0;
    }
}