Hello. There is such a code.

<section class="activity"> <?php $activity = get_field('activity'); if( have_rows('activity') ): while ( have_rows('activity') ) : the_row(); ?> <h2 class="activity-title main-title"><?php the_sub_field('main_title'); ?></h2> <div class="activity-block justify-flex-container"> <?php if( have_rows('big_block') ): while ( have_rows('big_block') ) : the_row(); ?> <div class="activity-item activity-first-item wow fadeInLeft"> <h4 class="activity-item__title"><?php the_sub_field('title'); ?></h4> <img src="<?php the_sub_field('img'); ?>" alt="<?php the_sub_field('title'); ?>" class="activity-item__img"> <ul class="activity-item-list"> <?php if( have_rows('list') ): while ( have_rows('list') ) : the_row(); ?> <li class="activity-item-list__item"><?php the_sub_field('text'); ?></li> <?php endwhile; endif; ?> </ul> <a href="<?php the_sub_field('more'); ?>" class="btn-more btn-main">ПОДРОБНЕЕ</a> </div> <?php endwhile; endif; ?> <div class="justify-flex-container activity-container"> <?php if( have_rows('block-1') ): while ( have_rows('block-1') ) : the_row(); ?> <div class="activity-item wow fadeInRight"> <h4 class="activity-item__title"><?php the_sub_field('title'); ?></h4> <img src="<?php the_sub_field('img'); ?>" alt="<?php the_sub_field('title'); ?>" class="activity-item__img"> <a href="<?php the_sub_field('more'); ?>" class="btn-more btn-main">ПОДРОБНЕЕ</a> </div> <?php endwhile; endif; ?> <?php if( have_rows('block-2') ): while ( have_rows('block-2') ) : the_row(); ?> <div class="activity-item wow fadeInRight"> <h4 class="activity-item__title"><?php the_sub_field('title'); ?></h4> <img src="<?php the_sub_field('img'); ?>" alt="<?php the_sub_field('title'); ?>" class="activity-item__img"> <a href="<?php the_sub_field('more'); ?>" class="btn-more btn-main">ПОДРОБНЕЕ</a> </div> <?php endwhile; endif; ?> <?php if( have_rows('block-3') ): while ( have_rows('block-3') ) : the_row(); ?> <div class="activity-item wow fadeInRight"> <h4 class="activity-item__title"><?php the_sub_field('title'); ?></h4> <img src="<?php the_sub_field('img'); ?>" alt="<?php the_sub_field('title'); ?>" class="activity-item__img"> <a href="<?php the_sub_field('more'); ?>" class="btn-more btn-main">ПОДРОБНЕЕ</a> </div> <?php endwhile; endif; ?> <?php if( have_rows('block-4') ): while ( have_rows('block-4') ) : the_row(); ?> <div class="activity-item wow fadeInRight"> <h4 class="activity-item__title"><?php the_sub_field('title'); ?></h4> <img src="<?php the_sub_field('img'); ?>" alt="<?php the_sub_field('title'); ?>" class="activity-item__img"> <a href="<?php the_sub_field('more'); ?>" class="btn-more btn-main">ПОДРОБНЕЕ</a> </div> <?php endwhile; endif; ?> </div> </div> <?php endwhile; endif; ?> </section> 

0