HTML
<?php if( have_rows('шаги_работы') ): ?>
<div class="steps">
<div class="container">
<div class="content-title"><?php the_field('заголовок_блока_шагов_работы'); ?></div>
<div class="content-descr"><p><?php the_field('подзаголовок_блока_шаги_работы'); ?></p></div>
<div class="flex_block">
<?php $i=0; ?>
<?php while( have_rows('шаги_работы') ): the_row(); $i++; ?>
<div class="step--inner three-item">
<div class="num">0<?php echo $i; ?></div>
<div class="descr"><p><?php the_sub_field('текст'); ?></p></div>
</div>
<?php endwhile; ?>
</div>
</div>
</div>
<?php endif; ?>
LESS
.steps{
padding-bottom: 120px;
.steps-cont{
padding-right: 500px;
background: url('../img/undraw_Agreement_re_d4dv.svg') no-repeat right 50%;
background-size: contain;
}
.step--inner{
margin-bottom: 30px;
position: relative;
&::before{
content: '';
position: absolute;
left: 40px;
bottom: -30px;
height: 30px;
width: 1px;
background: #ededed;
}
&:last-child{
&::before{
display: none;
}
}
.num{
font-weight: bold;
font-size: 30px;
display: inline-block;
vertical-align: middle;
margin-right: 30px;
background: @color-1;
color: #fff;
width: 80px;
height: 80px;
border-radius: 50%;
line-height: 80px;
text-align: center;
}
.descr{
width: calc(~'100% - 115px');
display: inline-block;
vertical-align: middle;
}
}
}