function scrollToMap() {
var map = $('.geography--contacts');
var buttons = $('.geography__area--target').add('.geography__target');
if ( $('.page').outerWidth() <= 768 ) {
map = $('.geography__map');
}
buttons.on('click', function() {
$('html, body').animate({
scrollTop: map.offset().top - 100
}, 500);
});
}
function scrollToMap() {
var map = $('.geography--contacts');
var buttons = $('.geography__area--target').add('.geography__target');
if ( $('.page').outerWidth() <= 768 ) {
map = $('.geography__map');
}
buttons.on('click', function() {
$('html, body').animate({
scrollTop: map.offset().top - 100
}, 500);
});
return false;
}