.social-links {
  grid-column-gap: 24px;
  grid-row-gap: 24px;
  flex-flow: row;
  display: flex;
}

.utility-contents-wrapper {
  z-index: 1;
  grid-column-gap: 48px;
  grid-row-gap: 48px;
  flex-flow: column;
  justify-content: space-between;
  align-items: flex-start;
  display: flex;
  position: relative;
  overflow: hidden;
}

.utility-page {
  grid-column-gap: 24px;
  grid-row-gap: 24px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  height: 100svh;
  padding: 24px;
  display: grid;
  position: relative;
  overflow: hidden;
}

.rounded-edges {
  border-radius: 6px;
}

.rounded-edges.utility-image {
  width: 100%;
  height: 100%;
  position: absolute;
}

.subheading {
  color: #fff;
  font-size: 20px;
  font-weight: 400;
  line-height: 1.4em;
}

.small-text {
  font-size: 13px;
  line-height: 1.5em;
}

.small-text.muted-text {
  color: #fff;
  font-size: 16px;
}

.title-large {
  color: #fff;
  letter-spacing: -.01em;
  font-size: 48px;
  font-weight: 400;
  line-height: 1.2em;
}

.utility-page-image-wrapper {
  max-height: 100%;
  display: flex;
  position: relative;
}

.utility-title {
  grid-column-gap: 24px;
  grid-row-gap: 24px;
  flex-flow: column;
  display: flex;
}

.utility-contents {
  grid-column-gap: 48px;
  grid-row-gap: 48px;
  flex-flow: column;
  justify-content: flex-start;
  align-self: stretch;
  align-items: flex-start;
  display: flex;
}

.link-block {
  color: #000;
  text-decoration: none;
}

.logo {
  color: #fff;
  font-size: 25px;
  font-weight: 700;
  line-height: 1.4em;
}

.image-background-wrapper {
  background-color: #000;
  position: absolute;
  inset: 0%;
  overflow: hidden;
}

.image {
  opacity: .65;
  object-fit: cover;
  width: 100%;
  height: 100%;
}

@media screen and (max-width: 991px) {
  .utility-contents-wrapper {
    justify-content: space-between;
    height: 100svh;
    padding-top: 24px;
    padding-bottom: 24px;
  }

  .utility-page {
    flex-flow: column;
    height: auto;
    padding-top: 0;
    padding-bottom: 0;
    display: flex;
  }

  .rounded-edges.utility-image {
    position: static;
  }

  .title-large {
    font-size: 40px;
    line-height: 1.2em;
  }

  .image-background-wrapper {
    height: 100svh;
  }

  .image {
    object-fit: cover;
    object-position: 75% 50%;
  }
}

@media screen and (max-width: 767px) {
  .utility-contents-wrapper {
    padding-top: 32px;
    padding-bottom: 32px;
  }

  .subheading {
    font-size: 16px;
    line-height: 1.4em;
  }

  .small-text {
    font-size: 12px;
    line-height: 1.5em;
  }

  .small-text.muted-text {
    font-size: 12px;
  }

  .title-large {
    font-size: 28px;
    line-height: 1.2em;
  }

  .logo {
    font-size: 20px;
    line-height: 1.4em;
  }
}

@media screen and (max-width: 479px) {
  .utility-contents-wrapper {
    grid-column-gap: 0px;
    grid-row-gap: 0px;
    justify-content: space-between;
    height: 100svh;
    padding-top: 32px;
    padding-bottom: 32px;
  }

  .utility-page {
    padding: 0 18px;
  }

  .rounded-edges.utility-image {
    width: 80%;
    height: 80%;
  }

  .subheading {
    font-size: 16px;
    font-weight: 400;
  }

  .small-text.muted-text {
    font-size: 12px;
  }

  .title-large {
    font-size: 28px;
    line-height: 1.25em;
  }

  .utility-page-image-wrapper {
    justify-content: center;
    align-items: center;
  }

  .utility-title {
    grid-column-gap: 18px;
    grid-row-gap: 18px;
  }

  .body {
    color: #000;
    background-color: #1a1917;
  }

  .logo {
    font-weight: 700;
  }
}


