<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* Create two equal columns that floats next to each other */
.dcolumn {
  float: left;
  width: 50%;
  padding: 20px;
}

/* Clear floats after the columns */
.drow:after {
  content: "";
  display: table;
  clear: both;
}

.cont_container {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}

.cont_column {
  width: calc(100% / 6);
  text-align: center;
  padding: 10px;
}

.cont_column img {
  max-width: 100%;
  height: auto;
}

.cont_column p {
  margin-top: 10px;
}

.tricontainer {
  max-width: 1280px;
  margin: 0 auto;
  background-color: #F0F240;
}

.tricolumn {
  width: calc((100% - 100px) / 3);
  padding-left: 25px;
  padding-right: 25px;
  box-sizing: border-box;
  float: left;
  background-color: #F0F240;
}


@media (max-width: 800px) {
  .tricolumn {
    width: 100%;
    margin-right: 0;
    padding: 0;
    float: none;
    text-align: left;
  }
}

.tri2container {
      max-width: 1280px;
      margin: 0 auto;
      overflow: hidden;
    }

    .tri2column {
      width: calc(33.33% - 50px);
      float: left;
      margin-right: 50px;
      box-sizing: border-box;
    }

    .tri2column:last-child {
      margin-right: 0;
    }

    @media (max-width: 768px) {
      .tri2column {
        width: 100%;
        margin-right: 0;
        margin-bottom: 50px;
        padding: 0;
        float: none;
        text-align: left;
      }
    }



/* CSS class for hiding elements on screens under 800 pixels */
.ultmobile-hide {
  display: block; /* By default, elements are visible */
}

@media (max-width: 768px) {
  .ultmobile-hide {
    display: none; /* Hide elements when screen size is 800 pixels or less */
  }
  .toc_container {
  flex-direction: column;
}
}

/* Fonts */
.ultport_header {
  color: $gray-charcoal !important;
  font-family: futura-pt, sans-serif;
  font-size: 36px !important;
  font-weight: bold;
  line-height: 1;
  text-transform: uppercase;
  @media (max-width: 767px) {
    font-size: 28px !important;
    margin-top: 25px;
  }
}
.ultport_eyebrow {
  color: $gray-charcoal !important;
  font-family: proxima-nova, sans-serif;
  font-size: 16px !important;
  font-weight: bold;
  line-height: 10px;
  text-transform: uppercase;
}
.ultport_subhead {
  color: $gray-charcoal !important;
  font-family: proxima-nova, sans-serif;
  font-size: 22px !important;
  font-weight: bold;
}
.ultport_quote_text {
  color: $gray-charcoal !important;
  font-family:proxima-nova, sans-serif;
  font-weight: 100;
  font-size: 40px !important;
  font-style: italic;
}

/* CSS for mobile */
@media (max-width: 800px) {
  .ultport_quote_text {
    font-size: 24px; /* Setting a different font size for mobile */
  }
}

/* CSS class for mobile padding */
.ultport-mobile-padding {
  /* Add your desired mobile padding */
}

/* Media query for mobile devices */
@media only screen and (max-width: 767px) {
  .ultport-mobile-padding {
    padding-left: 20px;
    padding-right: 20px;
  }
}


p a {
  text-decoration: underline;
  color: #333333;
}

/* Responsive layout - makes the two columns stack on top of each other instead of next to each other */
@media screen and (max-width: 600px) {
  .dcolumn {
    width: 100%;
    text-align: left;
    padding: 5px;
  }
  .cont_column {
    width: calc(100% / 3);
  }
  .ultport_eyebrow {
  font-size: 9px !important;
  line-height: 5px;
  }
</pre></body></html>