$('a[data-target^="anchor"]').bind('click.smoothscroll', function() {
$('.nav').removeClass('nav--active');
var target = $(this).attr('href'),
bl_top = $(target).offset().top - 40;
$('body, html').animate({
scrollTop: bl_top
}, 700);
return false;
});