$('.our-approach__row:first').addClass('active');
$('.our-approach__content').hide();
$('.our-approach__content:first').show();
$('.our-approach__row').click(function () {
$('.our-approach__row').removeClass('active');
$(this).addClass('active');
$('.our-approach__content').hide();
var activeTab = $(this).find('a').attr('href');
$(activeTab).fadeIn(700);
return false;
});