.mat_text_with_sep{
    display: flex;
    display: -ms-flexbox;
    flex-flow: row wrap;
    -ms-flex-direction: row;
    -ms-flex-wrap: wrap;
    padding: 30px 0;

}

.mat_text_with_sep_boxes{
    display: flex;
    display: -ms-flexbox;
    flex-flow: row nowrap;
    flex: 1 0 400px;
    -ms-flex: 1 0 400px;
    position: relative;
}

.mat_text_with_sep_boxes_seperator{
    position: absolute;
    content: "";
    top: 10%;
    bottom: 10%;
    right: 0;
}

.mat_text_with_sep_title{
    text-align: center;
}

.mat_text_with_sep_subtitle{
    text-align: center;
}

.mat_text_with_sep_content{
    padding: 20px 70px;
    -ms-flex: 0 1 auto;
}

@media (max-width: 700px){
    .mat_text_with_sep_boxes{
        margin: 0 !important;
        flex-flow: column nowrap;
        -ms-flex-direction: column;
        -ms-flex-wrap: nowrap;
        flex: 1 0 auto;
        -ms-flex: 1 0 auto;
    }

    .mat_text_with_sep{
        flex-flow: column nowrap;
        -ms-flex-direction: column;
        -ms-flex-wrap: nowrap;
        margin: 0 !important;
    }

    .mat_text_with_sep_boxes_seperator{
        display: none;
    }

    .mat_text_with_sep_content{
        padding: 20px 0;
    }
}

