Order taxonomy terms wordpress

You’re not setting an order anywhere for get_terms, you’re setting it for the query of articles within each term. You need to pass arguments to get_terms if you want an order other than default, which is ASC.

$tax = 'news';
$tax_args = array(
    'order' => 'DESC'
);
$tax_terms = get_terms( $tax, $tax_args );