{% for item in module.column_group %}
	{% if item.background_image_field.src %}
		{% set sizeAttrs = 'width="" height=""' %}
		{% if item.background_image_field.size_type == 'auto' %}
			{% set sizeAttrs = 'width="" height="" style="max-width: 100%; height: auto;"' %}
		{% elif item.background_image_field.size_type == 'auto_custom_max' %}
			{% set sizeAttrs = 'width="" height="" style="max-width: 100%; height: auto;"' %}
		{% endif %}
		 {% set loadingAttr = item.background_image_field.loading != 'disabled' ? 'loading=""' : '' %}
		<img src="" alt=""  >
	{% endif %}
	{% inline_rich_text field="four_col_title" value="" %}
	{% inline_rich_text field="four_col_bottom_content" value="" %}
	{% set href = item.button_group.button_link.url.href %}
	{% if item.button_group.button_link.url.type is equalto "EMAIL_ADDRESS" %}
		{% set href = "mailto:" + href %}
	{% endif %}
	<a href=""
		{% if item.button_group.button_link.open_in_new_tab %}target="_blank"{% endif %}
		{% if item.button_group.button_link.rel %}rel=""{% endif %}
		>
		Link text
	</a>
	{% inline_text field="button_group.button_text" value="" %}
	
	
	
	
	{% if item.arrow_image.src %}
		{% set sizeAttrs = 'width="" height=""' %}
		{% if item.arrow_image.size_type == 'auto' %}
			{% set sizeAttrs = 'width="" height="" style="max-width: 100%; height: auto;"' %}
		{% elif item.arrow_image.size_type == 'auto_custom_max' %}
			{% set sizeAttrs = 'width="" height="" style="max-width: 100%; height: auto;"' %}
		{% endif %}
		 {% set loadingAttr = item.arrow_image.loading != 'disabled' ? 'loading=""' : '' %}
		<img src="" alt=""  >
	{% endif %}
{% endfor %}