The theme seems not to be compatible with jQuery 1.12
here’s a quick fix while waiting for an update:
add_action('init', function() {
if (!is_admin()) {
wp_deregister_script('jquery');
wp_register_script('jquery', 'https://code.jquery.com/jquery-1.11.3.min.js');
}
});