{# Button and Cta Option #}
{% if module.cta_group_two_two.select_cta == 'normalBtn' %}
{% if module.cta_group_two.button_text %}
<div class="button-of">
{% set href = module.cta_group_two.btn_link.url.href %}
{% if module.cta_group_two.btn_link.url.type is equalto "EMAIL_ADDRESS" %}
{% set href = "mailto:" + href %}
{% endif %}
{% set rel = [] %}
{% if module.cta_group_two.btn_link.no_follow %}
{% do rel.append("nofollow") %}
{% endif %}
{% if module.cta_group_two.btn_link.open_in_new_tab %}
{% do rel.append("noopener") %}
{% endif %}
<a href=""
{% if module.cta_group_two.btn_link.open_in_new_tab %}target="_blank"{% endif %}
{% if rel %}rel=""{% endif %}
>

</a>
</div>
{% endif %}
{% elif  module.cta_group_two.select_cta == 'hubBtn' %}
{% if module.cta_group_two.cta && module.cta_group_two.cta != null %}
<div class="button">
{% cta guid="" %}
</div>
{% endif %}
{% endif %}
{# End Button and Cta Option #}