<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">.section-text-box-image-bg .container {
    z-index: 3;
}

.section-text-box-blue-gradient {
    position: absolute;
    left: 0;
    right: 0; 
    bottom: 0; 
    height: 300px;
    z-index: 2;
    background: none;
    background: -moz-linear-gradient(top, rgba(0,0,0,0) 0%, rgba(68,68,68,0.65) 50%, rgba(0,53,149,0.85) 100%); /* FF3.6-15 */
    background: -webkit-linear-gradient(top, rgba(0,0,0,0) 0%,rgba(68,68,68,0.65) 50%,rgba(0,53,149,0.85) 100%); /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(to bottom, rgba(0,0,0,0) 0%,rgba(68,68,68,0.65) 50%,rgba(0,53,149,0.85) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00000000', endColorstr='#d9003595',GradientType=0 ); /* IE6-9 */
}

.section-text-box-no-bg {
    background: #FFFFFF;
}

/* 1-column layout */
.col-1-container {
    overflow: hidden;
  }
  
  @media (min-width: 576px) {
    .col-1-image {
      float: right;
    }
    .col-1-image img {
      width: 195px;
    }
  }
  
  @media (min-width: 768px) {
    .col-1-image img {
      width: 210px;
    }
  }
  
  @media (min-width: 992px) {
    .col-1-image img {
      width: 290px;
    }
  }
  
  /* 2-column layout */
  @media (min-width: 576px) {
    .col-2-container {
      -webkit-column-count: 2;
      -moz-column-count: 2;
      column-count: 2;
    }
  }
  
  /* 3-column layout */
  @media (min-width: 576px) {
    .col-3-container {
      -webkit-column-count: 2;
      -moz-column-count: 2;
      column-count: 2;
    }
  }
  
  @media (min-width: 768px) {
    .col-3-container {
      -webkit-column-count: 3;
      -moz-column-count: 3;
      column-count: 3;
    }
  }</pre></body></html>