{% if block.position == "iconRight" %}
{% set image = block.icon.one() %}
<section class="single-service-left">
  <div class="container">
    <article class="copy-block" data-aos="fade-up">
      <h3>{{ block.head }}</h3>
      <p class="large">{{ block.leadIn }}</p>
      {% set rows = block.bullets.all() %}
      <ul>
        {% for row in rows %}
      	<li>{{ row.bullet}}</li>
        {% endfor %}
      </ul>
    </article>
    <article class="image-block" data-aos="fade-up">
      <img src="{{ image.url }}">
    </article>
  </div>
</section>
{% endif %}

{% if block.position == "iconLeft" %}
{% set image = block.icon.one() %}
<section class="single-service-right">
  <div class="container">
    <article class="image-block" data-aos="fade-up">
      <img src="{{ image.url }}">
    </article>
    <article class="copy-block" data-aos="fade-up">
      <h3>{{ block.head }}</h3>
      <p class="large">{{ block.leadIn }}</p>
      {% set rows = block.bullets.all() %}
      <ul>
        {% for row in rows %}
      	<li>{{ row.bullet}}</li>
        {% endfor %}
      </ul>
    </article>
  </div>
</section>
{% endif %}
