Inclution place of CSS file

Put this function to ‘functions.php’ in theme directory to remove style.css while wordpress loading your styles.

add_action('wp_enqueue_scripts', function() {
    wp_dequeue_style('put-your-sytle-css-handle-name');
});