Avoid loading css from parent theme

In your child theme (which I am assuming you are using) functions.php file:

function wpse_356175_assets() {

    wp_dequeue_style( 'media-queries' );

}

add_action( 'wp_enqueue_scripts', 'wpse_356175_assets' );

Utilise wp_dequeue_style and or wp_deregister_style depending on how the stylesheet was registered/enqueued.

If necessary adjust the priority of your action to fire after the registered/enqueued file from the parent theme, e.g:

add_action( 'wp_enqueue_scripts', 'wpse_356175_assets', 100 );

Useful documentation: