<?php
$args = array("child_of" => $catalog);
$categories = get_categories( $args );
if( $categories ){
foreach( $categories as $cat ){ ?>
<div class="text_category"><?php the_field("intro_text"); ?></div>
<?php }} ?>
<?php
$term_id = $cat->term_id;
the_field('intro_text', 'term_' . $term_id );
?>