Displaying all terms within a custom taxonomy with ACF taxonomy image in Oxygen Builder

In the post, I will displaying all terms on archive page by custom post type include ACF taxonomy image, terms title and description, like screenshot on below

Create ACF image

Create archive page on oxygen builder

Add code block and paste code on there

<?php 
        
        $getArgs = array(
        'post_type' => 'clients',
        'parent'       => 0,
        'order' => 'DESC',
        'orderby' => 'count',
        'hide_empty'    => false,
        );
      
        $taxonomy = get_terms('industries', $getArgs);
		

    foreach ($taxonomy as $term) { 
     	$id = get_term_meta( $term->term_id, 'image_industries', true );
		$image = wp_get_attachment_image( $id);	
		$term_link = get_term_link( $term );
        ?>
      <div class="ct-div-block c-columns-1-3 c-columns-l-1 c-shadow c-margin-bottom-xxl c-padding-m">
		  <div class="ct-thumb">
        <?php echo $image;?>
		  </div> 
			  <div class="ct-desc">
            <h4><?php echo '<a href="' . $term_link . '">' . $term->name . '</a>'; ?></h4>
<p><?php echo $term->description; ?></p>
			  </div>
</div>
            
        

            
<?php }  ?>