Thanks bplv for your support.
To edit any theme files, please build child theme first. You shouldn’t edit any theme files directly, as when you update the theme, all your edits will be reverted back to original. So, to me safe always build child theme, you can download our sample child theme from https://catchthemes.com/blog/create-child-theme-wordpress/
Then you can remove breadcrumb from current position by adding the following code in your child theme functions.php
file
// Remove breadcrumb from current position
function unhook_catchresponsive_functions() {
remove_action( 'catchresponsive_after_header', 'catchresponsive_add_breadcrumb', 50 );
}
add_action( 'init', 'unhook_catchresponsive_functions' );
Then to add breadcrumb before menu, add the following code in your child theme functions.php
file
//Adding breadcrumb before menu
add_action( 'catchresponsive_after_header', 'catchresponsive_add_breadcrumb', 9 );