{% if section.kicker %}

{{ section.kicker }}

{% endif %} {% if section.title %}

{{ section.title }}

{% endif %} {% if section.body %}
{{ section.body | markdownify }}
{% endif %} {% if section.ctas %}
{% for cta in section.ctas %} {{ cta.label }} {% endfor %}
{% endif %} {% if section.stats %}
    {% for stat in section.stats %}
  • {% if stat.label %}

    {{ stat.label }}

    {% endif %} {% if stat.value %}

    {{ stat.value }}

    {% endif %} {% if stat.body %}

    {{ stat.body }}

    {% endif %}
  • {% endfor %}
{% endif %} {% if section.pills %}
{% for pill in section.pills %} {% assign pill_label = pill.label | default: pill %} {% assign pill_href = pill.href %} {% if pill_href %} {{ pill_label }} {% else %} {{ pill_label }} {% endif %} {% endfor %}
{% endif %}
{% if section.right %} {% if section.right.carousel %} {% else %}
{% if section.right.title %}

{{ section.right.title }}

{% endif %} {% if section.right.body %}
{{ section.right.body | markdownify }}
{% endif %} {% if section.right.items %}
    {% for item in section.right.items %}
  • {% if item.heading %} {{ item.heading }} {% endif %} {% if item.body %}
    {{ item.body | markdownify }}
    {% endif %}
  • {% endfor %}
{% endif %} {% if section.right.metrics %} {% for metric in section.right.metrics %}
{% if metric.label %}

{{ metric.label }}

{% endif %} {% if metric.value %}

{{ metric.value }}

{% endif %} {% if metric.desc %}

{{ metric.desc }}

{% endif %}
{% endfor %} {% endif %} {% if section.right.code_blocks %} {% for code in section.right.code_blocks %}
{% if code.title %} {{ code.title }} {% endif %}
{{ code.content | strip | escape }}
{% endfor %} {% endif %} {% if section.right.pills %}
{% for pill in section.right.pills %} {% assign pill_label = pill.label | default: pill %} {% assign pill_href = pill.href %} {% if pill_href %} {{ pill_label }} {% else %} {{ pill_label }} {% endif %} {% endfor %}
{% endif %} {% if section.right.ctas %}
{% for cta in section.right.ctas %} {{ cta.label }} {% endfor %}
{% endif %}
{% endif %}
{% endif %}