{% for item in module.column %}
	
	{% if item.add_to_lightbox %}
		<!-- HTML to show when checked -->
	{% endif %}
	
	
	{% if item.col_image.src %}
		{% set sizeAttrs = 'width="" height=""' %}
		{% if item.col_image.size_type == 'auto' %}
			{% set sizeAttrs = 'width="" height="" style="max-width: 100%; height: auto;"' %}
		{% elif item.col_image.size_type == 'auto_custom_max' %}
			{% set sizeAttrs = 'width="" height="" style="max-width: 100%; height: auto;"' %}
		{% endif %}
		 {% set loadingAttr = item.col_image.loading != 'disabled' ? 'loading=""' : '' %}
		<img src="" alt=""  >
	{% endif %}
	{% set href = item.image_link.url.href %}
	{% if item.image_link.url.type is equalto "EMAIL_ADDRESS" %}
		{% set href = "mailto:" + href %}
	{% endif %}
	<a href=""
		{% if item.image_link.open_in_new_tab %}target="_blank"{% endif %}
		{% if item.image_link.rel %}rel=""{% endif %}
		>
		Link text
	</a>
	
	{% if item.video.hubspot_video.player_id %}
	  {% set max_width = item.video.hubspot_video.size_type == 'auto_custom_max' ? item.video.hubspot_video.max_width : item.video.hubspot_video.width %}
	  {% set max_height = item.video.hubspot_video.size_type == 'auto_custom_max' ? item.video.hubspot_video.max_height : item.video.hubspot_video.height %}
	  {% video_player "embed_player"
	    player_id=
	    type=
	    full_width=,
	    conversion_asset=
	    autoplay=
	    hidden_controls=
	    loop=
	    muted=
	  %}
	{% endif %}
	{% if item.video.embed_field.source_type == "oembed" %}
	  <div class="oembed_container {% if item.video.embed_field.size_type == 'auto_full_width' %} oembed_container--full-size{% endif %}" id="oembed_container-">
	    <div class="iframe_wrapper"
	      data-embed-url=""
	      {% unless item.video.embed_field.size_type == "auto_full_width" || item.video.embed_field.size_type == "exact" %}
	      data-max-height="{% if item.video.embed_field.size_type == "auto_custom_max" %}{% endif %}"
	      data-max-width="{% if item.video.embed_field.size_type == "auto_custom_max" %}{% endif %}"
	      {% endunless %}
	      {% if item.video.embed_field.size_type == "exact" %}
	      data-height=""
	      data-width=""
	      {% endif %}
	      >
	    </div>
	  </div>
	  {% require_css %}
	    <style>
	      .oembed_container {
	        display: inline-block;
	        height: 100%;
	        position: relative;
	        width: 100%;
	      }
	
	      .oembed_container .iframe_wrapper > * {
	        height: 100%;
	        left: 0;
	        margin: 0 auto;
	        position: absolute;
	        right: 0;
	        top: 0;
	        width: 100%;
	      }
	
	      .iframe_wrapper {
	        height: 0;
	        padding-bottom: 56.25%;
	        padding-top: 25px;
	        position: relative;
	      }
	    </style>
	  {% end_require_css %}
	  {% require_js %}
	    <script>
	      function loadEmbedField(oembedContainer) {
	        const iframeWrapper = oembedContainer.querySelector('.iframe_wrapper');
	        if (!iframeWrapper) {
	          return;
	        }
	        const url = iframeWrapper.dataset.embedUrl;
	        if (!url) {
	          return;
	        }
	        
	
	        const request = new XMLHttpRequest();
	        const requestUrl = "/_hcms/oembed?url=" + url + "&autoplay=0";
	        request.open('GET', requestUrl, true);
	        request.onload = function() {
	          if (request.status >= 200 && request.status < 400) {
	            const data = JSON.parse(request.responseText);
	
	            const maxHeight = iframeWrapper.dataset.maxHeight !== undefined && !iframeWrapper.dataset.maxHeight ? data.height : iframeWrapper.dataset.maxHeight;
	            const maxWidth = iframeWrapper.dataset.maxWidth !== undefined && !iframeWrapper.dataset.maxWidth ? data.width : iframeWrapper.dataset.maxWidth;
	            const height = iframeWrapper.dataset.height !== undefined && !iframeWrapper.dataset.height ? data.height : iframeWrapper.dataset.height;
	            const width = iframeWrapper.dataset.width !== undefined && !iframeWrapper.dataset.width ? data.width : iframeWrapper.dataset.width;
	
	            const el = document.createElement('div');
	            el.innerHTML = data.html;
	            const iframe = el.firstChild;
	            iframeWrapper.appendChild(iframe);
	
	            if (maxHeight) {
	              const maxHeightStr = maxHeight.toString(10) + "px";
	              oembedContainer.style.maxHeight = maxHeightStr;
	              iframe.style.maxHeight = maxHeightStr;
	            }
	
	            if (maxWidth) {
	              const maxWidthStr = maxWidth.toString(10) + "px";
	              oembedContainer.style.maxWidth = maxWidthStr;
	              iframe.style.maxWidth = maxWidthStr;
	            }
	
	            if (height) {
	              const heightStr = height.toString(10) + "px";
	              oembedContainer.style.height = heightStr;
	              iframe.style.height = heightStr;
	            }
	
	            if (width) {
	              const widthStr = width.toString(10) + "px";
	              oembedContainer.style.width = widthStr;
	              iframe.style.width = widthStr;
	            }
	          } else {
	            console.error('Server reached, error retrieving results.');
	          }
	        };
	        request.onerror = function() {
	          console.error('Could not reach the server.');
	        };
	        request.send();
	      }
	
	      document.addEventListener('DOMContentLoaded', function() {
	        var oEmbedContainers = document.getElementsByClassName('oembed_container');
	        Array.prototype.forEach.call(oEmbedContainers, loadEmbedField)
	      });
	    </script>
	  {% end_require_js %}
	{% else %}
	  <div id="embed_container" class="embed_container">
	    <div class="iframe_wrapper">
	      
	    </div>
	  </div>
	  {% require_css %}
	    <style>
	      .iframe_wrapper {
	        height: 0;
	        padding-bottom: 56.25%;
	        padding-top: 25px;
	        position: relative;
	      }
	
	      .embed_container {
	        display: inline-block;
	        height: 100%;
	        position: relative;
	        width: 100%;
	      }
	
	      .embed_container iframe {
	        left: 0;
	        max-height: 100%;
	        max-width: 100%;
	        position: absolute;
	        right: 0;
	        top: 0;
	      }
	    </style>
	  {% end_require_css %}
	{% endif %}
	
	{% if item.video.oembed_thumbnail.src %}
		{% set sizeAttrs = 'width="" height=""' %}
		{% if item.video.oembed_thumbnail.size_type == 'auto' %}
			{% set sizeAttrs = 'width="" height="" style="max-width: 100%; height: auto;"' %}
		{% elif item.video.oembed_thumbnail.size_type == 'auto_custom_max' %}
			{% set sizeAttrs = 'width="" height="" style="max-width: 100%; height: auto;"' %}
		{% endif %}
		 {% set loadingAttr = item.video.oembed_thumbnail.loading != 'disabled' ? 'loading=""' : '' %}
		<img src="" alt=""  >
	{% endif %}
	
	
	{% inline_text field="video.placeholder_fields.placeholder_title" value="" %}
	{% inline_text field="video.placeholder_fields.placeholder_description" value="" %}
	{% for item2 in item.video.html_video %}
		
	{% endfor %}
	{% if item.video.video_poster.src %}
		{% set sizeAttrs = 'width="" height=""' %}
		{% if item.video.video_poster.size_type == 'auto' %}
			{% set sizeAttrs = 'width="" height="" style="max-width: 100%; height: auto;"' %}
		{% elif item.video.video_poster.size_type == 'auto_custom_max' %}
			{% set sizeAttrs = 'width="" height="" style="max-width: 100%; height: auto;"' %}
		{% endif %}
		 {% set loadingAttr = item.video.video_poster.loading != 'disabled' ? 'loading=""' : '' %}
		<img src="" alt=""  >
	{% endif %}
	{% if item.video.show_controls %}
		<!-- HTML to show when checked -->
	{% endif %}
	{% if item.video.autoplay %}
		<!-- HTML to show when checked -->
	{% endif %}
	{% if item.video.loop %}
		<!-- HTML to show when checked -->
	{% endif %}
	{% if item.video.muted %}
		<!-- HTML to show when checked -->
	{% endif %}
	
	
	
	
	{% inline_text field="lottie_embed_code" value="" %}
	
	
	{% for item2 in item.heading %}
		{% inline_text field="heading" value="" %}
		
		
		
		
		
		
		{% inline_text field="class" value="" %}
	{% endfor %}
	{% inline_rich_text field="col_content" value="" %}
	{% if item.lead_text %}
		<!-- HTML to show when checked -->
	{% endif %}
	{% for item2 in item.ctas %}
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		{% cta guid="" %}
		{% inline_text field="button_text" value="" %}
		{% inline_text field="modal_target" value="" %}
		{% set href = item2.link.url.href %}
		{% if item2.link.url.type is equalto "EMAIL_ADDRESS" %}
			{% set href = "mailto:" + href %}
		{% endif %}
		<a href=""
			{% if item2.link.open_in_new_tab %}target="_blank"{% endif %}
			{% if item2.link.rel %}rel=""{% endif %}
			>
			Link text
		</a>
		
		{% if item2.add_icon %}
			<!-- HTML to show when checked -->
		{% endif %}
		{% icon
			name=""
			style=""
			unicode=""
			icon_set=""
		%}
		
	{% endfor %}
	{% form
		form_to_use=""
		response_response_type=""
		response_message=""
		response_redirect_id=""
		response_redirect_url=""
		gotowebinar_webinar_key=""
	%}
	
	
	{% if item.custom_column_size %}
		<!-- HTML to show when checked -->
	{% endif %}
	
	{% for item2 in item.column_size %}
		
		
		
		
	{% endfor %}
	{% inline_text field="class" value="" %}
{% endfor %}