Equal Height Divs
http://stackoverflow.com/questions/11688250/setting-equal-heights-for-divs-with-jquery
(function($) {
// Select and loop the container element of the elements you want to equalise
$('.other-services-row').each(function(){
// Cache the highest
var highestBox = 0;
// Select and loop the elements you want to equalise
$('.vc_col-sm-6', this).each(function(){
// If this box is higher than the cached highest then store it
if($(this).height() > highestBox) {
highestBox = $(this).height();
}
});
// Set the height of all those children to whichever was highest
$('.vc_col-sm-6',this).height(highestBox);
});
})(jQuery);