{% if module.style.text_color == "navy" %}
      {% set textColor = "#002855" %}
    {% elif module.style.text_color == "green" %}
      {% set textColor = "#789D4A" %}
    {% elif module.style.text_color == "tan" %}
      {% set textColor = "#D0C098" %}
    {% elif module.style.text_color == "white" %}
      {% set textColor = "#ffffff" %}
    {% endif %}
    
    {% if module.style.line_color == "navy" %}
      {% set lineColor = "#002855" %}
    {% elif module.style.line_color == "green" %}
      {% set lineColor = "#789D4A" %}
    {% elif module.style.line_color == "tan" %}
      {% set lineColor = "#D0C098" %}
    {% elif module.style.line_color == "white" %}
      {% set lineColor = "#ffffff" %}
    {% endif %}
    
    .sub_header{
      font-size: 26px;
      overflow: hidden;
      position: relative;
    }
    
    .sub_header:after{
      position: absolute;
      content: '';
      height: 1px;
      width: 1000px;
      bottom: 12px;
      margin-left: 10px;
    }
    
    {% if module.style.alignment_field.horizontal_align  == "CENTER" %}
    .sub_header:before{
      position: absolute;
      content: '';
      height: 1px;
      width: 1000px;
      bottom: 12px;
       margin-left: -10px;
       transform: translate(-100%);
    }
    {% endif %}