The only code customization need is change from line 468 to 488 from ambition-widgets.php file in inc/widgets folder to this:
<?php
$j = 1;
while ($get_featured_pages->have_posts()):$get_featured_pages->the_post();
$page_title = get_the_title();
if( $j % 4 == 3 && $j > 1 ) {
$service_class = "one-fourth clearfix-half";
}
elseif ( $j % 4 == 1 && $j > 1 ) {
$service_class = "one-fourth clearfix-half clearfix-fourth";
}
else {
$service_class = "one-fourth";
}
?>