Hi there,
Please add this code at Admin > Appearance > Customizer > Custom > Javascript.
jQuery( function($) {
$('.x-nav-wrap.mobile ul > li > a[href^="#"]').on('click touchend', function( e ) {
e.preventDefault();
$('html,body').stop().animate({scrollTop: $( $(this).attr('href') ).offset().top },700);
} );
} );
That should do it 🙂
Cheers!