.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: #ccc;
  background-color: #1a1a1a;
  justify-content: center;
  align-items: center;
  font-family: Soleil, Arial, sans-serif;
  font-size: 16px;
  line-height: 20px;
  display: flex;
}

.body.top {
  grid-column-gap: 64px;
  grid-row-gap: 64px;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  padding-top: 128px;
  padding-bottom: 64px;
}

.logo-main {
  position: fixed;
  inset: 48px auto auto 48px;
}

.footer {
  color: #656565;
  font-size: 12px;
  line-height: 16px;
}

.footer-link {
  color: #656565;
  transition: all .2s;
}

.footer-link:hover {
  color: #ccc;
}

.contact {
  text-align: right;
  display: none;
  position: absolute;
  inset: auto 48px 48px auto;
}

.darker {
  color: #656565;
}

.contact-link {
  color: #ccc;
  transition: all .2s;
}

.contact-link:hover {
  color: #656565;
}

.contact-link.no-underline {
  text-decoration: none;
}

.images-grid {
  grid-column-gap: 40px;
  grid-row-gap: 40px;
  flex-flow: wrap;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  place-content: center;
  align-self: center;
  place-items: center;
  display: none;
  transform: scale(1.075);
}

.image-grid-item {
  margin-top: -128px;
}

.image-grid-item._2nd {
  margin-top: 0;
}

.footer-wrapper {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  justify-content: flex-start;
  align-items: flex-start;
  display: flex;
  position: absolute;
  inset: auto auto 48px 48px;
}

.footer-wrapper.text-page {
  position: static;
}

.text-container {
  grid-column-gap: 24px;
  grid-row-gap: 24px;
  flex-flow: column;
  align-items: flex-start;
  width: 50%;
  display: flex;
}

.home-link.w--current {
  transition: all .2s;
}

.home-link.w--current:hover {
  opacity: .25;
}

.heading {
  margin-top: 0;
  margin-bottom: 0;
}

.heading.absolute {
  position: absolute;
  inset: auto auto 88px 48px;
}

.heading-2, .heading-3 {
  margin-top: 0;
  margin-bottom: 0;
}

.paragraph {
  margin-bottom: 0;
}

.heading-4 {
  text-align: center;
}

.utility-page-wrap {
  justify-content: center;
  align-items: center;
  width: 100vw;
  max-width: 100%;
  height: 100vh;
  max-height: 100%;
  display: flex;
}

.utility-page-content {
  text-align: center;
  flex-direction: column;
  width: 260px;
  display: flex;
}

@media screen and (max-width: 767px) {
  .heading.absolute {
    right: 184px;
  }
}

@media screen and (max-width: 479px) {
  .logo-main {
    top: 32px;
    left: 32px;
  }

  .footer {
    font-size: 10px;
  }

  .contact {
    text-align: left;
    font-size: 14px;
    line-height: 18px;
    bottom: 112px;
    left: 32px;
    right: auto;
  }

  .contact-link {
    word-break: break-all;
  }

  .images-grid {
    grid-column-gap: 16px;
    grid-row-gap: 16px;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
    align-content: start;
  }

  .image-grid-item {
    margin-top: -56px;
  }

  .footer-wrapper {
    grid-column-gap: 0px;
    grid-row-gap: 0px;
    flex-flow: column;
    bottom: 32px;
    left: 32px;
  }

  .footer-wrapper.text-page {
    justify-content: flex-start;
    align-items: center;
  }

  .text-container {
    width: auto;
    margin-left: 32px;
    margin-right: 32px;
  }

  .heading {
    font-size: 24px;
    line-height: 32px;
  }

  .heading.absolute {
    left: 32px;
    right: 96px;
  }

  .heading-2 {
    font-size: 20px;
    line-height: 24px;
  }

  .heading-3 {
    font-size: 16px;
    line-height: 20px;
  }

  .paragraph-bold {
    font-size: 14px;
  }
}


@font-face {
  font-family: 'Soleil';
  src: url('../fonts/TypeTogether---Soleil.otf') format('opentype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}