.numbered_squares_with_text {}
.squares_with_text_items {
    display: flex;
}
.squares_with_text_item {
    flex: 1;
    border: 2px solid #D1D1D1;
    padding: 1.5em 1em;
    margin-left: -2px;
}
.squares_with_text_item_title_block {
    height: auto;
}
.squares_with_text_item h3 {
    margin-bottom: 1em;
}
.squares_with_text_item span {
    display: block;
    margin-bottom: 0.5em;
}
.squares_with_text_item h3,
.squares_with_text_item span {
    font-size: 1.5em;
    line-height: 1.1em;
    font-weight: 500;
    color: #000;
    text-transform: none;
}
.squares_with_text_item p {
    font-size: 1em;
    line-height: 1.2em;
    font-weight: 400;
    color: #000;
}

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