Add the class hws_2col_portfolio to the modules advanced properties
and then add the following css to the Divi theme options.
/* START 2 column portfolio */
@media screen and (min-width: 767px) {
.hws_2col_portfolio .et_pb_portfolio_items {
display: flex;
flex-wrap: wrap;
justify-content: space-between;
}
.hws_2col_portfolio .et_pb_portfolio_items > div {
width: 47% !important;
margin: 0 !important;
}
}
/* END 2 column portfolio */
Code language: CSS (css)