@Nonno: That is default RSS Widget from WordPress and we haven’t controlled anything from Theme. It has it’s own refresh rate set by WordPress Core.
If you want to alter that, then you can create child theme of Catch Responsive Pro theme. You can also download it from http://catchthemes.com/blog/create-child-theme-wordpress/ and then add the following code in your child theme functions.php file. You can also change the refresh rate, the following code has 600 seconds.
add_filter( 'wp_feed_cache_transient_lifetime',
create_function('$a', 'return 600;') );