:root {
  --white: white;
  --black: black;
}

.w-layout-grid {
  grid-row-gap: 16px;
  grid-column-gap: 16px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

body {
  color: #fff;
  background-color: #294c50;
  font-family: Suisse-Sitemill, sans-serif;
  font-size: 20px;
  line-height: 150%;
}

a {
  color: #fff;
  text-decoration: underline;
}

.content {
  max-width: 1320px;
  margin-left: auto;
  margin-right: auto;
  padding: 120px;
}

.content.cols {
  justify-content: space-between;
  display: flex;
}

.content.notoppadding {
  padding-top: 0;
}

.content.noverticalpadding {
  padding-top: 0;
  padding-bottom: 0;
}

.col {
  width: 50%;
  min-height: 30px;
}

.h1 {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 20px;
  font-weight: 400;
  line-height: 150%;
}

.h2 {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 42px;
  font-weight: 400;
  line-height: 120%;
}

.gaps {
  height: 40px;
}

.light {
  color: rgba(255, 255, 255, .5);
}

.light.small {
  font-size: 16px;
  line-height: 144%;
}

.sites {
  grid-column-gap: 40px;
  grid-row-gap: 40px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
}

.site {
  color: #fff;
  text-decoration: none;
}

.siteimage {
  border-bottom-right-radius: 6px;
  border-bottom-left-radius: 6px;
  width: 100%;
  display: block;
}

.siteimage.filtered {
  filter: grayscale();
}

.sitetoolbar {
  background-color: #1a1a1a;
  border-top-left-radius: 6px;
  border-top-right-radius: 6px;
  align-items: center;
  padding: 4px;
  display: flex;
}

.sitetoolbardot {
  background-color: #fff;
  border-radius: 2px;
  width: 4px;
  height: 4px;
  margin-right: 3px;
  display: block;
}

.sitecaption {
  justify-content: space-between;
  margin-top: 7px;
  font-size: 14px;
  display: flex;
}

.sitetype {
  text-align: right;
}

.hr {
  background-color: #1d4044;
  height: 1px;
}

.feattext {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 24px;
  font-weight: 400;
  line-height: 150%;
}

.gapxs {
  height: 12px;
}

.gapm {
  height: 40px;
}

.button {
  color: #294c50;
  background-color: #fff;
  border-radius: 40px;
  padding: 8px 22px 6px;
}

.siteimagewrap {
  aspect-ratio: 3 / 2;
  border-bottom-right-radius: 4px;
  border-bottom-left-radius: 4px;
  position: relative;
  overflow: hidden;
}

.siteimageoverlay {
  z-index: 1;
  opacity: .5;
  background-color: #294c50;
  position: absolute;
  top: 0%;
  bottom: 0%;
  left: 0%;
  right: 0%;
}

.siteimagefilter {
  opacity: 0;
  position: absolute;
  top: 0%;
  bottom: 0%;
  left: 0%;
  right: 0%;
}

.btngap {
  height: 40px;
}

@media screen and (max-width: 991px) {
  .content {
    padding: 70px;
  }

  .h2 {
    font-size: 34px;
  }

  .sites {
    grid-template-columns: 1fr 1fr;
  }
}

@media screen and (max-width: 767px) {
  body {
    font-size: 16px;
  }

  .content {
    padding: 40px;
  }

  .content.cols {
    padding-top: 0;
    display: block;
  }

  .col {
    width: 100%;
    margin-top: 40px;
  }

  .col.empty {
    display: none;
  }

  .feattext {
    font-size: 20px;
  }

  .feattext.sectiontitle {
    font-size: 24px;
  }

  .btngap {
    height: 20px;
  }
}

@media screen and (max-width: 479px) {
  .sites {
    grid-template-columns: 1fr;
  }
}


@font-face {
  font-family: 'Suisse-Sitemill';
  src: url('../fonts/SuisseBPIntl-Regular.woff2') format('woff2'), url('../fonts/SuisseBPIntl-Regular.eot') format('embedded-opentype'), url('../fonts/SuisseBPIntl-Regular.woff') format('woff'), url('../fonts/SuisseBPIntl-Regular.ttf') format('truetype'), url('../fonts/SuisseBPIntl-Regular.svg') format('svg');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}