<section>
<div class="first">
</div>
<div class="second"> 1 </div>
<div class="third"> 1 </div>
<div class="first">
</div>
<div class="second"> 2 </div>
<div class="third"> 2 </div>
<div class="first">
</div>
<div class="second"> 3 </div>
<div class="third"> 3 </div>
</section>
<section>
<div class="first">
<div class="second"> 1 </div>
<div class="third"> 1 </div>
</div>
<div class="first">
<div class="second"> 2 </div>
<div class="third"> 2 </div>
</div>
<div class="first">
<div class="second"> 3 </div>
<div class="third"> 3 </div>
</div>
</section>
jQuery(function() {
jQuery('body').prepend('<div class="tex_row_bl"><div>');
jQuery('.tex_row_bl').each(function(i,elem) {
jQuery('.elementor-1351 .elementor-inner .elementor-section-wrap .elementor-top-section:nth-child('+i+') .tex_row_bl').appendTo('.elementor-1351 .elementor-inner .elementor-section-wrap .elementor-top-section:nth-child('+i+') .elementor-tab-content');
jQuery('.elementor-1351 .elementor-inner .elementor-section-wrap .elementor-top-section:nth-child('+i+') .img_row_bl').appendTo('.elementor-1351 .elementor-inner .elementor-section-wrap .elementor-top-section:nth-child('+i+') .elementor-tab-content');
});
});
jQuery(function() {
jQuery('body').prepend('<div class="second"><div>');
jQuery('.second').each(function(i,elem) {
jQuery('.second').appendTo('.first:nth-child('+i+')');
jQuery('.third').appendTo('.first:nth-child('+i+')');
});
});