This Chrome update has affected content using a vertical alignment custom class. To fix this issue find this section of CSS:

/*---Vertical alignment---*/

@media all and (min-width: 981px) {
    .ds-vertical-align {
        display: -webkit-box;
        display: -ms-flexbox;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
    }
}


And change to this:

/*---Vertical alignment---*/

@media all and (min-width: 981px) {
    .ds-vertical-align {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
    }
}


Make sure to clear all caches and minification/static CSS settings.