<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@media screen and (max-width: 767px) {
  .Three-col-layout .col {
    margin-bottom: 30px;
  }
}

@media screen and (min-width: 768px) {
  .Three-col-layout {
    margin: 0 0 40px;
  }
  .Three-col-layout:after {
    content: "";
    display: table;
    clear: both;
  }
  .Three-col-layout .col {
    float: left;
    width: 30%;
    margin-left: 5%;
  }
  .Three-col-layout .col:first-child {
    margin-left: 0;
  }
}
.ThreeColImages {
  margin: 0 0 40px;
  text-align: center;
}

.ThreeColImages:after {
  content: "";
  display: table;
  clear: both;
}

@media screen and (max-width: 767px) {
  .ThreeColImages {
    margin: 30px 0;
  }
}

.ThreeColImages .caption {
  font-style: italic;
  font-size: 12px;
  line-height: 21px;
}

@media screen and (max-width: 767px) {
  .ThreeColImages .caption {
    max-width: 280px;
    margin: 0 auto 15px;
  }
  .ThreeColImages .col {
    margin-bottom: 40px;
  }
}

@media screen and (min-width: 768px) {
  .ThreeColImages:after {
    content: "";
    display: table;
    clear: both;
  }
  .ThreeColImages .caption {
    margin: 0 0 25px;
  }
  .ThreeColImages .col {
    float: left;
    width: 30%;
    margin-left: 5%;
  }
  .ThreeColImages .col:first-child {
    margin-left: 0;
  }
}

.Image-with-text {
  position: relative;
  margin-top: 20px;
  margin-bottom: 20px;
}

.Image-with-text img {
  display: block;
  max-width: 100%;
}

.Image-with-text .text {
  color: #fff;
}

.Image-with-text .title {
    font-weight: normal;
    font-family: "Rhode Med Cond", "Arial Narrow", sans-serif;
    color: white;
}

.Image-with-text .desc {
  font-size: 12px;
}

@media screen and (min-width: 768px) and (max-width: 1023px) {
    .Image-with-text .title {
        font-size: 32px;
        line-height: 1.1em;
    }
}

@media screen and (min-width: 1024px) {
    .Image-with-text .title {
        font-size: 46px;
        line-height: 1.1em;
    }
}

@media screen and (max-width: 767px) {
  .Image-with-text {
    margin: 20px 0 30px;
  }
    .Image-with-text .text {
        visibility: hidden;
        opacity: 0;
        display: none;
    }
  .Image-with-text .image {
    position: relative;
  }
  .Image-with-text .image img {
    width: 100%;
  }
  .Image-with-text .title {
    font-size: 46px;
    line-height: 1.1em;
  }
  .Image-with-text .desc {
    font-size: 14px;
    line-height: 22px;
  }
}

@media screen and (min-width: 768px) {
  .Image-with-text .text {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    color: #fff;
    padding: 20px;
    background: rgba(0, 0, 0, 0.5);
  }
}

.Pagination {
  padding: 50px 0;
  text-align: center;
}

.Pagination .page {
  display: inline-block;
  padding: 7px 14px;
  border: 1px solid #ffcc31;
  background: rgba(255, 204, 49, 0.27);
  color: #000;
  font-size: 18px;
  line-height: 1.2;
  font-family: "DIN W01 Medium"
  font-weight: normal;
  text-decoration: none;
  text-align: center;
  transition: all 0.3s ease;
}

.Pagination a.page:active, .Pagination a.page:hover, .Pagination a.page:focus {
  border: 1px solid #555;
  background: rgba(255, 204, 49, 0.54);
  color: #000;
}

.Pagination .page.current {
  background: #333333;
  border: 1px solid #333333;
  color: #fff;
}

@media screen and (max-width: 767px) {
  .Pagination &gt; .Container {
    display: flex;
    align-content: space-between;
    justify-content: center;
    align-items: center;
    padding: 0;
  }
  .Pagination .page {
    margin: 0 4px;
    padding: 11px 18px;
  }
  .Pagination .page.next {
    margin: 0 0 0 4px;
  }
  .Pagination .page.previous {
    margin: 0 4px 0 0;
  }
  .Pagination .page.next:after,
  .Pagination .page.previous:after {
    content: "";
    display: inline-block;
    width: 8px;
    height: 12px;
    background-image: url(../img/chevron-right.svg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: auto 12px;
  }
  .Pagination .page.previous:after {
    background-image: url(../img/chevron-left.svg);
  }
  .Pagination .page.next span,
  .Pagination .page.previous span {
    display: none;
  }
  .Pagination .ellipses {
    margin: 0 4px;
  }
}

@media screen and (min-width: 768px) {
  .Pagination .page {
    margin: 0 10px;
  }
  .Pagination .page.next,
  .Pagination .page.previous {
    width: 110px;
  }
  .Pagination .ellipses {
    margin: 0 20px;
  }
}

.News-index-hero {
  height: 352px;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

.News-index-hero &gt; .Container {
  position: relative;
  height: inherit;
}

.News-index-hero .page-title {
  position: absolute;
  top: 195px;
  left: 100px;
  color: #fff;
  font-size: 55px;
  padding: 0;
}

@media screen and (max-width: 767px) {
  .News-index-hero {
    height: 206px;
  }
  .News-index-hero .page-title {
    width: calc(100% - 40px);
    top: 100px;
    left: 20px;
    font-size: 38px;
  }
}

.News-index-body .intro {
  margin: 0 0 40px;
}

@media screen and (max-width: 767px) {
  .News-index-body .intro {
    margin: 0 0 25px;
  }
}

.News-item:nth-child(odd) {
  background: #f0efef;
}

.News-item .image img {
  display: block;
  margin: 0 auto;
  max-width: 100%;
}

.News-item .pdfthumb img {
  display: block;
  margin: 0 auto;
  max-width: 100%;
}

.News-item .title {
  margin: 0 0 5px;
}

.News-item .details,
.News-item .tags {
  font-family: "DIN W01 Regular"
  font-size: 16px;
  text-transform: uppercase;
}

.News-item .desc {
  font-size: 14px;
  line-height: 24px;
}

.News-item .tags .label {
  font-family: "DIN W01 Medium"
}

.News-item .tags a {
  color: #a68521;
  font-weight: normal;
}

.News-item .tags a:active, .News-item .tags a:hover, .News-item .tags a:focus {
  color: #000;
}

@media screen and (max-width: 767px) {
  .News-item {
    padding: 30px 0;
    text-align: center;
  }
  .News-item .image {
    margin: 0 0 30px;
  }
  .News-item .pdfthumb {
    margin: 0 0 30px;
  }
  .News-item .details {
    font-size: 14px;
    line-height: 18px;
  }
  .News-item .details span {
    display: block;
  }
  .News-item .tags {
    font-size: 14px;
  }
}

@media screen and (min-width: 768px) {
  .News-item {
    padding: 40px 0;
  }
  .News-item &gt; .Container:after {
    content: "";
    display: table;
    clear: both;
  }
  .News-item .image {
    float: left;
    width: 400px;
    margin-right: 40px;
  }
  .News-item .pdfthumb {
    float: left;
    width: 100px;
    margin-right: 40px;
  }
  .News-item .info {
    float: left;
    width: calc(100% - 440px);
  }
  .News-item .details span:after {
    content: " | ";
  }
  .News-item .details span:last-child:after {
    content: "";
  }
  .News-item .tags {
    margin: 0 0 30px;
  }
}

.categoryselect {
    padding: 0;
    margin: 0 0 15px;
}

.process {
    overflow: hidden;
}

.process-image {
  display: block;
  max-width: 90%;
  margin: 0 auto;
  transition: all 0.6s;
}

.process-label,
.process-title {
  font-size: 24px;
  line-height: 1.2;
  font-family: "DIN W01 Bold";
  color: #FFF;
  text-align: center;
}

@media screen and (max-width: 767px) {
    .process {
        -webkit-flex: 1 0 50%;
            -ms-flex: 1 0 50%;
                flex: 1 0 50%;
        text-align: center;
        padding: 0;
    }
    .no-flexbox .process {
        width: 50%;
    }
    .process-label {
        font-size: 18px;
        font-size: 1.125rem;
        display: inline-block;
    }
    .process-label:after {
        content: "";
        display: inline-block;
        background: url("../img/chevron-up.svg");
        background-repeat: no-repeat;
        background-position: center center;
        background-size: contain;
        height: 10px;
        width: 25px;
    }
    .process-overlay {
          visibility: visible;
          opacity: 1;
          position: absolute;
          top: 0;
          left: 0;
          width: 100%;
          height: 100%;
          background: rgba(0, 0, 0, 0.4);
          border: 1px solid #000;
          text-align: center;
    }
    .process-overlay .align {
      position: absolute;
      top: 50%;
      left: 50%;
      -webkit-transform: translate(-50%, -50%);
          -ms-transform: translate(-50%, -50%);
              transform: translate(-50%, -50%);
      width: 100%;
      padding: 30px 30px 20px;
    }
    .process-desc {
      padding: 0;
      font-size: 14px;
      font-family: "DIN W01 Bold";
      color: #FFF;
    }
    .process-title {
      font-size: 26px;
      font-weight: 700;
      padding: 0 0 5px;
      color: ##FFF;
    }
    .process-desc p {
        margin-bottom: 5px;
    }
    .process-desc ul {
        margin: 0;
        padding: 0;
        list-style-type: none;
        width: 100%;
    }
   .process-desc ul li:first-child {
      border-top: 1px solid #FFF;
    }
    .process-desc ul li {
        display: block;
        border-bottom: 1px solid #FFF;
        min-width: 70%;
        margin: 0 auto;
        padding: 2px;
        white-space: nowrap;
        overflow: visible;
    }
    .process-desc ul li a:link {
        color: #FFF;
        text-decoration: none;
    }
    .process-desc ul li a:visited {
        color: #FFF;
        text-decoration: none;
    }
    .process-desc ul li a:hover {
        color: #FFF;
        text-decoration: underline;
    }

    .process-desc .shorter {
        line-height: 18px;
        width: 90%;
    }
}

@media screen and (min-width: 768px) {
  .process-overlay {
    visibility: visible;
    opacity: 1;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid #000;
    text-align: center;
  }
  .process .text {
      transition: all 0.2s;
  }
  .process-overlay .align {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
        -ms-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
    width: 90%;
    padding: 30px 30px 20px;
  }
  .process-title {
    padding: 0 0 5px;
    color: #FFF;
  }
  .process-desc {
    padding: 0;
    font-size: 14px;
    font-family: "DIN W01 Bold";
    color: #FFF;
  }
  .process-desc p {
      margin-bottom: 5px;
  }
  .process-desc ul {
      margin: 0;
      padding: 0;
      list-style-type: none;
      width: 100%;
  }
 .process-desc ul li:first-child {
    border-top: 1px solid white;
  }
  .process-desc ul li {
      display: block;
      border-bottom: 1px solid white;
      min-width: 70%;
      margin: 0 auto;
      padding: 2px;
      overflow: visible;
      white-space: nowrap;
  }
  .process-desc ul li a:link {
      color: #FFF;
      text-decoration: none;
  }
  .process-desc ul li a:visited {
      color: #FFF;
      text-decoration: none;
  }
  .process-desc ul li a:hover {
      color: #FFF;
      text-decoration: underline;
  }


  .more-projects {
    margin-top: 20px;
  }
  .more-projects:after {
    content: "";
    display: table;
    clear: both;
  }
}
@media screen and (min-width: 768px) and (max-width: 1023px) {
  .process {
    -webkit-flex: 0 0 33.33333%;
        -ms-flex: 0 0 33.33333%;
            flex: 0 0 33.33333%;
  }
  .no-flexbox .process {
    width: 33.33333%;
  }
  .process-overlay .align {
    padding: 5px;
  }
  .process-title,
  .process-desc {
    padding: 0 0 5px;
  }
  .process-title {
    font-size: 14px;
    font-weight: 700;
    padding: 0 0 5px;
    color: ##FFF;
  }
  .process-desc {
    padding: 0;
    font-size: 12px;
    font-family: "DIN W01 Bold";
    color: #FFF;
  }
  .process-desc ul {
      margin: 0;
      padding: 0;
      list-style-type: none;
      width: 100%;
  }
 .process-desc ul li:first-child {
    border-top: 1px solid white;
  }
  .process-desc ul li {
      display: block;
      border-bottom: 1px solid white;
      min-width: 70%;
      margin: 0 auto;
      padding: 2px;
  }
  .process-desc ul li a:link {
      text-decoration: none;
  }
  .process-desc ul li a:hover {
      text-decoration: underline;
  }
  .process-desc p {
      margin-bottom: 5px;
  }
}

@media screen and (min-width: 1024px) {
    .process-title {
      font-size: 28px;
      font-weight: 700;
      padding: 0 0 5px;
      color: ##FFF;
    }
    .process-desc {
      padding: 0;
      font-size: 14px;
      color: #FFF;
      line-height: 28px;
    }
    .process-desc ul li {
        min-width: 60%;
        font-size: 18px;
        font-family: "DIN W01 Bold";
        color: #FFF;
    }

    .process-desc .shorter {
        line-height: 22px;
        width: 88%;
    }
}
</pre></body></html>