<section class="container-fluid bg-image BlockTwoColumns py-5 <% if BlockThemeMode == 'Dark' %>bg-dark text-white<% end_if %>" <% if BackgroundImage %>style="background-image: url($BackgroundImage.URL)"<% end_if %>>
  <div class="container">
    <% if $ShowTitle %>
    <div class="row gx-5 mb-3">
      <div class="<% if CustomClassLeft %>$CustomClassLeft<% else %>col-md-{$LeftColSize}<% end_if %>">
        <h2 class="scroll-toggle line-anim">$Title</h2>
        <% if SubTitle %><p class="h2 title">$SubTitle</p><% end_if %>
      </div>
    </div>
    <% end_if %>
    <div class="row gx-5">
      <div class="<% if CustomClassLeft %>$CustomClassLeft<% else %>col-md-{$LeftColSize}<% end_if %> mb-3">
        $HTMLContentLeft
      </div>
      <div class="<% if CustomClassRight %>$CustomClassRight<% else %>col-md-{$RightColSize}<% end_if %> mb-3">
        $HTMLContentRight
      </div>
    </div>
  </div>
</section>