:root {
  --dark-grey: #8e8e93;
  --warm-white: #e5e5ea;
}

.w-layout-blockcontainer {
  max-width: 940px;
  margin-left: auto;
  margin-right: auto;
  display: block;
}

@media screen and (max-width: 991px) {
  .w-layout-blockcontainer {
    max-width: 728px;
  }
}

@media screen and (max-width: 767px) {
  .w-layout-blockcontainer {
    max-width: none;
  }
}

p {
  color: #d4d4d4;
  margin-bottom: 10px;
  font-family: eb-garamond, sans-serif;
  line-height: 1.2;
}

a {
  text-decoration: none;
}

.body {
  grid-column-gap: 1.67em;
  grid-row-gap: 1.67em;
  background-color: #131313;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: flex-start;
  font-size: 1rem;
  display: flex;
}

.col {
  justify-content: flex-start;
  align-items: stretch;
  display: flex;
}

.section {
  flex-flow: column;
  justify-content: space-around;
  width: 96.67rem;
  margin-left: auto;
  margin-right: auto;
  font-size: 1rem;
  display: block;
}

.ruled-container {
  border-left: 1px solid #212121;
  border-right: 1px #212121;
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 32.92rem;
  max-width: 32.92rem;
  height: 100dvh;
  font-size: 1rem;
  display: flex;
  position: static;
}

.is-content {
  grid-column-gap: 2.22em;
  grid-row-gap: 2.22em;
  flex-flow: column;
  flex: 1;
  justify-content: center;
  align-items: stretch;
  width: 100%;
  padding-left: 1.66rem;
  padding-right: 1.66rem;
  font-size: 1rem;
  display: flex;
}

.logo-mark {
  aspect-ratio: 1;
  width: 2.78rem;
}

.heading {
  color: #fff;
  overflow-wrap: normal;
  margin-top: 0;
  margin-bottom: 0;
  font-family: eb-garamond, sans-serif;
  font-size: 2.22rem;
  font-weight: 400;
  line-height: 1.25;
}

.small-caps-text {
  color: #fff;
  margin-bottom: -.14rem;
  font-family: eb-garamond, sans-serif;
  font-size: 1rem;
  font-weight: 400;
}

.is-footer {
  flex: 0 auto;
  width: 100%;
  padding-bottom: 1.66rem;
  padding-left: 1.66rem;
  padding-right: 1.66rem;
  position: static;
  inset: auto 0% 0%;
}

.footer {
  color: var(--dark-grey);
  margin-bottom: 0;
  font-family: eb-garamond, sans-serif;
  font-size: 1rem;
}

.link {
  color: var(--dark-grey);
  font-family: eb-garamond, sans-serif;
  font-size: 1.25rem;
  font-weight: 400;
  text-decoration: none;
  transition: all .35s;
}

.link:hover {
  color: var(--warm-white);
}

.is-inquiry-cta {
  grid-column-gap: .42rem;
  grid-row-gap: .42rem;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.is-logo {
  flex-flow: row;
  flex: 0 auto;
  justify-content: flex-start;
  align-items: stretch;
  width: 100%;
  padding-top: 1.66rem;
  padding-left: 1.66rem;
  display: flex;
}

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

  .ruled-container {
    width: 100%;
  }

  .link {
    text-transform: none;
  }
}

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

  .ruled-container {
    width: 100%;
  }

  .is-content {
    grid-column-gap: 24px;
    grid-row-gap: 24px;
  }

  .logo-mark {
    width: 24px;
  }

  .heading {
    font-size: 24px;
  }
}


