@import url(https://fonts.googleapis.com/css2?family=IBM+Plex+Mono:wght@400;700&family=IBM+Plex+Sans:wght@400;500;700&display=swap);
/**
 * Set up a decent box model on the root element
 */
html {
  box-sizing: border-box;
}

/**
 * Make all elements from the DOM inherit from the parent box-sizing
 * Since `*` has a specificity of 0, it does not override the `html` value
 * making all elements inheriting from the root box-sizing value
 * See: https://css-tricks.com/inheriting-box-sizing-probably-slightly-better-best-practice/
 */
*,
*::before,
*::after {
  box-sizing: inherit;
}

body {
  font-size: max(1.375rem, 1.5277777778vw);
  line-height: 1.5;
  --spacing--xxs: 1px;
  --spacing--xs: 2px;
  --spacing--sm: 3px;
  --spacing--md: 4px;
  --spacing--lg: 5px;
  --spacing--xl: 6px;
  --spacing--xxl: 7px;
}

img {
  vertical-align: top;
  max-width: 100%;
}

.block_unordered_list_heading--list {
  margin: 0;
  padding: 0;
  list-style: none;
}

/*
 * Hide only visually, but have it available for screen readers:
 * https://snook.ca/archives/html_and_css/hiding-content-for-accessibility
 *
 * 1. For long content, line feeds are not interpreted as spaces and small width
 *    causes content to wrap 1 word per line:
 *    https://medium.com/@jessebeach/beware-smushed-off-screen-accessible-text-5952a4c2cbfe
 */
.visually-hidden, .skip-link,
.screen-reader-text {
  border: 0;
  clip: rect(0, 0, 0, 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  white-space: nowrap;
  width: 1px;
  /*
  * Extends the .visually-hidden class to allow the element
  * to be focusable when navigated to via the keyboard:
  * https://www.drupal.org/node/897638
  */
}
.visually-hidden.focusable:active, .focusable.skip-link:active,
.focusable.screen-reader-text:active, .visually-hidden.focusable:focus, .focusable.skip-link:focus,
.focusable.screen-reader-text:focus {
  clip: auto;
  height: auto;
  margin: 0;
  overflow: visible;
  position: static;
  white-space: inherit;
  width: auto;
}

.inset-shadow {
  transition: box-shadow 0.25s;
}

.inset-shadow-right > *,
.inset-shadow-left > * {
  z-index: -1;
  position: relative;
}

.inset-shadow-left {
  box-shadow: inset 14px 0 9px -14px rgba(0, 0, 0, 0.4), inset -14px 0 9px -14px rgba(0, 0, 0, 0);
}

.inset-shadow-right {
  box-shadow: inset 14px 0 9px -14px rgba(0, 0, 0, 0), inset -14px 0 9px -14px rgba(0, 0, 0, 0.4);
}

.inset-shadow-right.inset-shadow-left {
  box-shadow: inset 14px 0 9px -14px rgba(0, 0, 0, 0.4), inset -14px 0 9px -14px rgba(0, 0, 0, 0.4);
}

[class*=items-per-row] {
  --items-per-row--gap: 0.625rem;
  --items-per-row--row-gap: var(--items-per-row--gap);
  --items-per-row--column-gap: var(--items-per-row--gap);
  --items-per-row--columns: 1;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  row-gap: var(--items-per-row--row-gap);
  -moz-column-gap: var(--items-per-row--column-gap);
       column-gap: var(--items-per-row--column-gap);
}
@media screen and (min-width: 520px) {
  [class*=items-per-row] {
    --items-per-row--gap: 2rem;
  }
}
@media screen and (min-width: 1024px) {
  [class*=items-per-row] {
    --items-per-row--gap: 3.75rem;
  }
}
[class*=items-per-row] > * {
  width: calc(100% / var(--items-per-row--columns) - var(--items-per-row--column-gap) + var(--items-per-row--column-gap) / var(--items-per-row--columns));
}

.items-per-row--1 {
  --items-per-row--columns: 1;
}
.items-per-row--2 {
  --items-per-row--columns: 1;
}
@media screen and (min-width: 768px) {
  .items-per-row--2 {
    --items-per-row--columns: 2;
  }
}
.items-per-row--3 {
  --items-per-row--columns: 1;
}
@media screen and (min-width: 520px) {
  .items-per-row--3 {
    --items-per-row--columns: 2;
  }
}
@media screen and (min-width: 768px) {
  .items-per-row--3 {
    --items-per-row--columns: 3;
  }
}
.items-per-row--4 {
  --items-per-row--columns: 1;
}
@media screen and (min-width: 520px) {
  .items-per-row--4 {
    --items-per-row--columns: 2;
  }
}
@media screen and (min-width: 768px) {
  .items-per-row--4 {
    --items-per-row--columns: 3;
  }
}
@media screen and (min-width: 1024px) {
  .items-per-row--4 {
    --items-per-row--columns: 4;
  }
}
.items-per-row--5 {
  --items-per-row--columns: 1;
}
@media screen and (min-width: 520px) {
  .items-per-row--5 {
    --items-per-row--columns: 2;
  }
}
@media screen and (min-width: 768px) {
  .items-per-row--5 {
    --items-per-row--columns: 3;
  }
}
@media screen and (min-width: 1024px) {
  .items-per-row--5 {
    --items-per-row--columns: 4;
  }
}
@media screen and (min-width: 1300px) {
  .items-per-row--5 {
    --items-per-row--columns: 5;
  }
}

.card {
  border-radius: 0.9375rem;
  background-color: var(--colors--current-translucent);
  padding: 20px;
}

.block_unordered_list_heading--list,
.listreset {
  margin: 0;
  padding: 0;
  list-style: none;
}

/*
 * Hide only visually, but have it available for screen readers:
 * https://snook.ca/archives/html_and_css/hiding-content-for-accessibility
 *
 * 1. For long content, line feeds are not interpreted as spaces and small width
 *    causes content to wrap 1 word per line:
 *    https://medium.com/@jessebeach/beware-smushed-off-screen-accessible-text-5952a4c2cbfe
 */
.visually-hidden, .skip-link,
.screen-reader-text {
  border: 0;
  clip: rect(0, 0, 0, 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  white-space: nowrap;
  width: 1px;
}

/*
 * Extends the .visually-hidden class to allow the element
 * to be focusable when navigated to via the keyboard:
 * https://www.drupal.org/node/897638
 */
.visually-hidden.focusable:active, .focusable.skip-link:active,
.focusable.screen-reader-text:active,
.visually-hidden.focusable:focus,
.focusable.skip-link:focus,
.focusable.screen-reader-text:focus {
  clip: auto;
  height: auto;
  margin: 0;
  overflow: visible;
  position: static;
  white-space: inherit;
  width: auto;
}

@font-face {
  font-family: "Saans TRIAL";
  src: url("../assets/fonts/DP_order_274084/WEB/SaansRegular.woff2") format("woff2"), url("../assets/fonts/DP_order_274084/WEB/SaansRegular.woff") format("woff");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Saans TRIAL";
  src: url("../assets/fonts/DP_order_274084/WEB/SaansSemiBold.woff2") format("woff2"), url("../assets/fonts/DP_order_274084/WEB/SaansSemiBold.woff") format("woff");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Office Times Sharp";
  src: url("../assets/fonts/Office Times Sharp/OfficeTimesSharp-Regular.woff2") format("woff2"), url("../assets/fonts/Office Times Sharp/OfficeTimesSharp-Regular.woff") format("woff");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
.ibm-plex-mono-regular {
  font-family: "IBM Plex Mono", serif;
  font-weight: 400;
  font-style: normal;
}

.ibm-plex-mono-bold {
  font-family: "IBM Plex Mono", serif;
  font-weight: 700;
  font-style: normal;
}

.ibm-plex-sans-regular {
  font-family: "IBM Plex Sans", serif;
  font-weight: 400;
  font-style: normal;
}

.ibm-plex-sans-medium {
  font-family: "IBM Plex Sans", serif;
  font-weight: 500;
  font-style: normal;
}

.ibm-plex-sans-bold {
  font-family: "IBM Plex Sans", serif;
  font-weight: 700;
  font-style: normal;
}

html {
  font-family: "IBM Plex Sans", serif;
}

[class*=type--header] {
  font-family: "IBM Plex Sans", serif;
}

[class*=type--serif] {
  font-family: "Office Times Sharp", serif;
}

h1,
h2,
h3,
h4,
h5 {
  margin: 0 0 1rem;
}

.type--margin-large {
  margin-bottom: 40px;
}
@media screen and (min-width: 768px) {
  .type--margin-large {
    margin-bottom: 72px;
  }
}

.type--margin-medium {
  margin-bottom: 31px;
}

.type--header-xl, h1 {
  font-size: min(4.68vw + 1rem, 60px);
  font-weight: 500;
  line-height: 1.2;
  text-transform: none;
}
@media screen and (min-width: 1440px) {
  .type--header-xl, h1 {
    font-size: 60px;
  }
}
.type--header-large, h2 {
  font-size: min(3.6vw + 1rem, 48px);
  font-weight: 500;
  line-height: 1.2;
  text-transform: none;
}
@media screen and (min-width: 1440px) {
  .type--header-large, h2 {
    font-size: 48px;
  }
}
.type--header-medium, h3 {
  font-size: min(1.8vw + 1rem, 32px);
  font-weight: 500;
  line-height: 1.2;
  text-transform: none;
}
@media screen and (min-width: 1440px) {
  .type--header-medium, h3 {
    font-size: 32px;
  }
}
.type--header-small, h4,
.type--heading-small {
  font-size: min(0.72vw + 1rem, 20px);
  font-family: "IBM Plex Mono", serif;
  font-weight: 700;
  line-height: 1.2;
  text-transform: uppercase;
}
@media screen and (min-width: 1440px) {
  .type--header-small, h4,
  .type--heading-small {
    font-size: 20px;
  }
}
.type--header-all-caps, label, h6, h5 {
  font-size: min(0.5412vw + 1rem, 18px);
  font-family: "IBM Plex Mono", serif;
  font-weight: 700;
  line-height: 1.2;
  text-transform: uppercase;
}
@media screen and (min-width: 1440px) {
  .type--header-all-caps, label, h6, h5 {
    font-size: 18px;
  }
}
.type--btn:before {
  display: none;
}
.type--paragraph-xl {
  font-size: min(0.9vw + 1rem, 22px);
  font-weight: 400;
  line-height: 1.5;
  text-transform: none;
}
@media screen and (min-width: 1440px) {
  .type--paragraph-xl {
    font-size: 22px;
  }
}
.type--paragraph-large {
  font-size: min(0.72vw + 1rem, 20px);
  font-weight: 400;
  line-height: 1.5;
  text-transform: none;
}
@media screen and (min-width: 1440px) {
  .type--paragraph-large {
    font-size: 20px;
  }
}
.type--paragraph-medium {
  font-size: min(0.5412vw + 1rem, 18px);
  font-weight: 400;
  line-height: 1.5;
  text-transform: none;
}
@media screen and (min-width: 1440px) {
  .type--paragraph-medium {
    font-size: 18px;
  }
}
.type--paragraph-small, blockquote footer {
  font-weight: 400;
  font-size: min(0.36vw + 1rem, 16px);
  line-height: 1.5;
  text-transform: none;
}
@media screen and (min-width: 1440px) {
  .type--paragraph-small, blockquote footer {
    font-size: 16px;
  }
}
.type--body-text {
  font-size: min(0.36vw + 1rem, 16px);
  font-weight: 400;
  line-height: 1.5;
  text-transform: none;
}
@media screen and (min-width: 1440px) {
  .type--body-text {
    font-size: 16px;
  }
}
.type--sidebar-text, aside, small {
  font-size: min(0.36vw + 1rem, 16px);
  font-weight: 400;
  line-height: 1.5;
  text-transform: none;
}
@media screen and (min-width: 1440px) {
  .type--sidebar-text, aside, small {
    font-size: 16px;
  }
}
.type--caption, cite, figcaption,
caption {
  font-size: min(0.36vw + 1rem, 16px);
  font-weight: 400;
  line-height: 1.5;
  text-transform: none;
}
@media screen and (min-width: 1440px) {
  .type--caption, cite, figcaption,
  caption {
    font-size: 16px;
  }
}
.type--display, blockquote {
  font-size: min(0.9vw + 1rem, 22px);
  font-family: "IBM Plex Mono", serif;
  font-weight: 400;
  line-height: 1.5;
  text-transform: none;
}
@media screen and (min-width: 1440px) {
  .type--display, blockquote {
    font-size: 22px;
  }
}
.type--weight-bold {
  font-weight: 700;
}
.type--weight-medium {
  font-weight: 500;
}
.type--weight-normal {
  font-weight: 400;
}

button, a {
  cursor: pointer;
}

a {
  font-family: "IBM Plex Mono", serif;
  color: inherit;
  text-decoration: none;
}

p {
  margin: 0 0 1em;
}
p:empty {
  display: none;
}

cite {
  font-style: italic;
}

address {
  font-style: normal;
}

.type--hyperlink,
a {
  font-weight: 700;
  position: relative;
  transition: color 0.3s ease-in-out;
  border-bottom-width: 2px;
  border-bottom-style: solid;
}

blockquote {
  margin: 0 0 40px;
}
@media screen and (min-width: 768px) {
  blockquote {
    margin: 0 0 74px;
  }
}
blockquote footer {
  font-family: "IBM Plex Sans", serif;
}

body {
  --colors--brick: #aa431b;
  --colors--steel: #bfd5d1;
  --colors--cloud: #e9f0ef;
  --colors--wood: #f1eae3;
  --colors--glass: #a2af37;
  --colors--sage: #ecefd7;
  --colors--charcoal: #282828;
  --colors--gray: #535353;
  --colors--white: #ffffff;
  --current-background-color: #ffffff;
  --current-text-color: #282828;
  --current-text-eyebrow-color: #aa431b;
  --current-text-light-color: #535353;
  --current-border-color: #aa431b;
  --current-btn-primary-bg-color: #a2af37;
  --current-btn-primary-border-color: #a2af37;
  --current-btn-primary-text-color: #ffffff;
  --current-btn-primary-hover-bg-color: transparent;
  --current-btn-primary-hover-border-color: #a2af37;
  --current-btn-primary-hover-text-color: #282828;
  --current-btn-secondary-bg-color: transparent;
  --current-btn-secondary-border-color: #a2af37;
  --current-btn-secondary-text-color: #282828;
  --current-btn-secondary-hover-bg-color: #a2af37;
  --current-btn-secondary-hover-border-color: #a2af37;
  --current-btn-secondary-hover-text-color: #ffffff;
  --current-btn-tertiary-bg-color: transparent;
  --current-btn-tertiary-border-color: #a2af37;
  --current-btn-tertiary-text-color: #282828;
  --current-btn-tertiary-hover-bg-color: transparent;
  --current-btn-tertiary-hover-border-color: #a2af37;
  --current-btn-tertiary-hover-text-color: #a2af37;
  --current-link-bg-color: transparent;
  --current-link-border-color: #a2af37;
  --current-link-text-color: #282828;
  --current-link-hover-bg-color: transparent;
  --current-link-hover-border-color: #a2af37;
  --current-link-hover-text-color: #a2af37;
  --current-social-bg-color: #a2af37;
  --current-social-border-color: #a2af37;
  --current-social-text-color: #ffffff;
  --current-social-hover-bg-color: transparent;
  --current-social-hover-border-color: #a2af37;
  --current-social-hover-text-color: #282828;
  --current-input-bg-color: transparent;
  --current-input-border-color: rgba(40, 40, 40, 0.1);
  --current-input-text-color: #282828;
  --current-input-placeholder-color: #535353;
  --current-input-focus-bg-color: transparent;
  --current-input-focus-border-color: #282828;
  --current-input-focus-text-color: #282828;
  --current-input-focus-placeholder-color: #535353;
  --current-card-border-color: rgba(83, 83, 83, 0.3);
  --current-numberline-color: #bfd5d1;
  --current-color-block-color: #bfd5d1;
  --current-empty-image-color: #535353;
  background-color: #ffffff;
  color: #282828;
}

.has-brick-background-color {
  --current-background-color: #aa431b;
  --current-text-color: #ffffff;
  --current-text-eyebrow-color: #a2af37;
  --current-text-light-color: #535353;
  --current-border-color: #a2af37;
  --current-btn-primary-bg-color: #a2af37;
  --current-btn-primary-border-color: #a2af37;
  --current-btn-primary-text-color: #ffffff;
  --current-btn-primary-hover-bg-color: none;
  --current-btn-primary-hover-border-color: #a2af37;
  --current-btn-primary-hover-text-color: #ffffff;
  --current-btn-secondary-bg-color: none;
  --current-btn-secondary-border-color: #a2af37;
  --current-btn-secondary-text-color: #ffffff;
  --current-btn-secondary-hover-bg-color: #a2af37;
  --current-btn-secondary-hover-border-color: #a2af37;
  --current-btn-secondary-hover-text-color: #ffffff;
  --current-btn-tertiary-bg-color: none;
  --current-btn-tertiary-border-color: #a2af37;
  --current-btn-tertiary-text-color: #ffffff;
  --current-btn-tertiary-hover-bg-color: none;
  --current-btn-tertiary-hover-border-color: #a2af37;
  --current-btn-tertiary-hover-text-color: #a2af37;
  --current-social-bg-color: transparent;
  --current-social-border-color: #a2af37;
  --current-social-text-color: #ffffff;
  --current-social-hover-bg-color: #a2af37;
  --current-social-hover-border-color: #a2af37;
  --current-social-hover-text-color: #ffffff;
  --current-link-bg-color: none;
  --current-link-border-color: #a2af37;
  --current-link-text-color: #ffffff;
  --current-link-hover-bg-color: none;
  --current-link-hover-border-color: #a2af37;
  --current-link-hover-text-color: #a2af37;
  --current-input-bg-color: transparent;
  --current-input-border-color: #ffffff;
  --current-input-text-color: #ffffff;
  --current-input-placeholder-color: #535353;
  --current-input-focus-bg-color: transparent;
  --current-input-focus-border-color: #ffffff;
  --current-input-focus-text-color: #ffffff;
  --current-input-focus-placeholder-color: #535353;
  --current-card-border-color: #a2af37;
  --current-numberline-color: #e9f0ef;
  --current-color-block-color: #ecefd7;
  --current-empty-image-color: #535353;
  background: var(--current-background-color);
  color: var(--current-text-color);
}
.has-brick-background-color .has-brick-color {
  color: #aa431b;
}
.has-brick-background-color.type--section-padding + .has-brick-background-color.type--section-padding {
  padding-top: 0;
}

.has-steel-background-color {
  --current-background-color: #bfd5d1;
  --current-text-color: #282828;
  --current-text-eyebrow-color: #aa431b;
  --current-text-light-color: #535353;
  --current-border-color: #aa431b;
  --current-btn-primary-bg-color: #a2af37;
  --current-btn-primary-border-color: #a2af37;
  --current-btn-primary-text-color: #ffffff;
  --current-btn-primary-hover-bg-color: transparent;
  --current-btn-primary-hover-border-color: #a2af37;
  --current-btn-primary-hover-text-color: #282828;
  --current-btn-secondary-bg-color: transparent;
  --current-btn-secondary-border-color: #a2af37;
  --current-btn-secondary-text-color: #282828;
  --current-btn-secondary-hover-bg-color: #a2af37;
  --current-btn-secondary-hover-border-color: #a2af37;
  --current-btn-secondary-hover-text-color: #ffffff;
  --current-btn-tertiary-bg-color: transparent;
  --current-btn-tertiary-border-color: #a2af37;
  --current-btn-tertiary-text-color: #282828;
  --current-btn-tertiary-hover-bg-color: transparent;
  --current-btn-tertiary-hover-border-color: #a2af37;
  --current-btn-tertiary-hover-text-color: #a2af37;
  --current-link-bg-color: transparent;
  --current-link-border-color: #a2af37;
  --current-link-text-color: #282828;
  --current-link-hover-bg-color: transparent;
  --current-link-hover-border-color: #a2af37;
  --current-link-hover-text-color: #a2af37;
  --current-social-bg-color: #a2af37;
  --current-social-border-color: #a2af37;
  --current-social-text-color: #ffffff;
  --current-social-hover-bg-color: transparent;
  --current-social-hover-border-color: #a2af37;
  --current-social-hover-text-color: #282828;
  --current-input-bg-color: transparent;
  --current-input-border-color: rgba(40, 40, 40, 0.1);
  --current-input-text-color: #282828;
  --current-input-placeholder-color: #535353;
  --current-input-focus-bg-color: transparent;
  --current-input-focus-border-color: #282828;
  --current-input-focus-text-color: #282828;
  --current-input-focus-placeholder-color: #535353;
  --current-card-border-color: rgba(83, 83, 83, 0.3);
  --current-numberline-color: #bfd5d1;
  --current-color-block-color: #bfd5d1;
  --current-empty-image-color: #535353;
  background: var(--current-background-color);
  color: var(--current-text-color);
}
.has-steel-background-color .has-steel-color {
  color: #bfd5d1;
}
.has-steel-background-color.type--section-padding + .has-steel-background-color.type--section-padding {
  padding-top: 0;
}

.has-cloud-background-color {
  --current-background-color: #e9f0ef;
  --current-text-color: #282828;
  --current-text-eyebrow-color: #aa431b;
  --current-text-light-color: #535353;
  --current-border-color: #aa431b;
  --current-btn-primary-bg-color: #a2af37;
  --current-btn-primary-border-color: #a2af37;
  --current-btn-primary-text-color: #ffffff;
  --current-btn-primary-hover-bg-color: transparent;
  --current-btn-primary-hover-border-color: #a2af37;
  --current-btn-primary-hover-text-color: #282828;
  --current-btn-secondary-bg-color: transparent;
  --current-btn-secondary-border-color: #a2af37;
  --current-btn-secondary-text-color: #282828;
  --current-btn-secondary-hover-bg-color: #a2af37;
  --current-btn-secondary-hover-border-color: #a2af37;
  --current-btn-secondary-hover-text-color: #ffffff;
  --current-btn-tertiary-bg-color: transparent;
  --current-btn-tertiary-border-color: #a2af37;
  --current-btn-tertiary-text-color: #282828;
  --current-btn-tertiary-hover-bg-color: transparent;
  --current-btn-tertiary-hover-border-color: #a2af37;
  --current-btn-tertiary-hover-text-color: #a2af37;
  --current-link-bg-color: transparent;
  --current-link-border-color: #a2af37;
  --current-link-text-color: #282828;
  --current-link-hover-bg-color: transparent;
  --current-link-hover-border-color: #a2af37;
  --current-link-hover-text-color: #a2af37;
  --current-social-bg-color: #a2af37;
  --current-social-border-color: #a2af37;
  --current-social-text-color: #ffffff;
  --current-social-hover-bg-color: transparent;
  --current-social-hover-border-color: #a2af37;
  --current-social-hover-text-color: #282828;
  --current-input-bg-color: transparent;
  --current-input-border-color: rgba(40, 40, 40, 0.1);
  --current-input-text-color: #282828;
  --current-input-placeholder-color: #535353;
  --current-input-focus-bg-color: transparent;
  --current-input-focus-border-color: #282828;
  --current-input-focus-text-color: #282828;
  --current-input-focus-placeholder-color: #535353;
  --current-card-border-color: rgba(83, 83, 83, 0.3);
  --current-numberline-color: #bfd5d1;
  --current-color-block-color: #bfd5d1;
  --current-empty-image-color: #535353;
  background: var(--current-background-color);
  color: var(--current-text-color);
}
.has-cloud-background-color .has-cloud-color {
  color: #e9f0ef;
}
.has-cloud-background-color.type--section-padding + .has-cloud-background-color.type--section-padding {
  padding-top: 0;
}

.has-wood-background-color {
  --current-background-color: #f1eae3;
  --current-text-color: #282828;
  --current-text-eyebrow-color: #aa431b;
  --current-text-light-color: #535353;
  --current-border-color: #aa431b;
  --current-btn-primary-bg-color: #a2af37;
  --current-btn-primary-border-color: #a2af37;
  --current-btn-primary-text-color: #ffffff;
  --current-btn-primary-hover-bg-color: transparent;
  --current-btn-primary-hover-border-color: #a2af37;
  --current-btn-primary-hover-text-color: #282828;
  --current-btn-secondary-bg-color: transparent;
  --current-btn-secondary-border-color: #a2af37;
  --current-btn-secondary-text-color: #282828;
  --current-btn-secondary-hover-bg-color: #a2af37;
  --current-btn-secondary-hover-border-color: #a2af37;
  --current-btn-secondary-hover-text-color: #ffffff;
  --current-btn-tertiary-bg-color: transparent;
  --current-btn-tertiary-border-color: #a2af37;
  --current-btn-tertiary-text-color: #282828;
  --current-btn-tertiary-hover-bg-color: transparent;
  --current-btn-tertiary-hover-border-color: #a2af37;
  --current-btn-tertiary-hover-text-color: #a2af37;
  --current-link-bg-color: transparent;
  --current-link-border-color: #a2af37;
  --current-link-text-color: #282828;
  --current-link-hover-bg-color: transparent;
  --current-link-hover-border-color: #a2af37;
  --current-link-hover-text-color: #a2af37;
  --current-social-bg-color: #a2af37;
  --current-social-border-color: #a2af37;
  --current-social-text-color: #ffffff;
  --current-social-hover-bg-color: transparent;
  --current-social-hover-border-color: #a2af37;
  --current-social-hover-text-color: #282828;
  --current-input-bg-color: transparent;
  --current-input-border-color: rgba(40, 40, 40, 0.1);
  --current-input-text-color: #282828;
  --current-input-placeholder-color: #535353;
  --current-input-focus-bg-color: transparent;
  --current-input-focus-border-color: #282828;
  --current-input-focus-text-color: #282828;
  --current-input-focus-placeholder-color: #535353;
  --current-card-border-color: rgba(83, 83, 83, 0.3);
  --current-numberline-color: #bfd5d1;
  --current-color-block-color: #bfd5d1;
  --current-empty-image-color: #535353;
  background: var(--current-background-color);
  color: var(--current-text-color);
}
.has-wood-background-color .has-wood-color {
  color: #f1eae3;
}
.has-wood-background-color.type--section-padding + .has-wood-background-color.type--section-padding {
  padding-top: 0;
}

.has-glass-background-color {
  --current-background-color: #a2af37;
  --current-text-color: #ffffff;
  --current-text-eyebrow-color: #a2af37;
  --current-text-light-color: #535353;
  --current-border-color: #aa431b;
  --current-btn-primary-bg-color: #ffffff;
  --current-btn-primary-border-color: #ffffff;
  --current-btn-primary-text-color: #a2af37;
  --current-btn-primary-hover-bg-color: transparent;
  --current-btn-primary-hover-border-color: #ffffff;
  --current-btn-primary-hover-text-color: #ffffff;
  --current-btn-secondary-bg-color: transparent;
  --current-btn-secondary-border-color: #ffffff;
  --current-btn-secondary-text-color: #ffffff;
  --current-btn-secondary-hover-bg-color: #ffffff;
  --current-btn-secondary-hover-border-color: #a2af37;
  --current-btn-secondary-hover-text-color: #a2af37;
  --current-btn-tertiary-bg-color: none;
  --current-btn-tertiary-border-color: #a2af37;
  --current-btn-tertiary-text-color: #ffffff;
  --current-btn-tertiary-hover-bg-color: none;
  --current-btn-tertiary-hover-border-color: #a2af37;
  --current-btn-tertiary-hover-text-color: #a2af37;
  --current-social-bg-color: transparent;
  --current-social-border-color: #a2af37;
  --current-social-text-color: #ffffff;
  --current-social-hover-bg-color: #a2af37;
  --current-social-hover-border-color: #a2af37;
  --current-social-hover-text-color: #ffffff;
  --current-link-bg-color: none;
  --current-link-border-color: #a2af37;
  --current-link-text-color: #ffffff;
  --current-link-hover-bg-color: none;
  --current-link-hover-border-color: #a2af37;
  --current-link-hover-text-color: #a2af37;
  --current-input-bg-color: transparent;
  --current-input-border-color: #ffffff;
  --current-input-text-color: #ffffff;
  --current-input-placeholder-color: #535353;
  --current-input-focus-bg-color: transparent;
  --current-input-focus-border-color: #ffffff;
  --current-input-focus-text-color: #ffffff;
  --current-input-focus-placeholder-color: #535353;
  --current-card-border-color: #ffffff;
  --current-numberline-color: #e9f0ef;
  --current-color-block-color: #e9f0ef;
  --current-empty-image-color: #535353;
  --current-social-link-border-color: #ffffff;
  --current-social-link-hover-bg-color: #ffffff;
  --current-social-link-hover-color-color: #a2af37;
  --current-link-border-color-color: #aa431b;
  background: var(--current-background-color);
  color: var(--current-text-color);
}
.has-glass-background-color .has-glass-color {
  color: #a2af37;
}
.has-glass-background-color.type--section-padding + .has-glass-background-color.type--section-padding {
  padding-top: 0;
}

.has-sage-background-color {
  --current-background-color: #ecefd7;
  --current-text-color: #282828;
  --current-text-eyebrow-color: #aa431b;
  --current-text-light-color: #535353;
  --current-border-color: #a2af37;
  --current-btn-primary-bg-color: #a2af37;
  --current-btn-primary-border-color: #a2af37;
  --current-btn-primary-text-color: #ffffff;
  --current-btn-primary-hover-bg-color: transparent;
  --current-btn-primary-hover-border-color: #a2af37;
  --current-btn-primary-hover-text-color: #282828;
  --current-btn-secondary-bg-color: transparent;
  --current-btn-secondary-border-color: #a2af37;
  --current-btn-secondary-text-color: #282828;
  --current-btn-secondary-hover-bg-color: #a2af37;
  --current-btn-secondary-hover-border-color: #a2af37;
  --current-btn-secondary-hover-text-color: #ffffff;
  --current-btn-tertiary-bg-color: transparent;
  --current-btn-tertiary-border-color: #a2af37;
  --current-btn-tertiary-text-color: #282828;
  --current-btn-tertiary-hover-bg-color: transparent;
  --current-btn-tertiary-hover-border-color: #a2af37;
  --current-btn-tertiary-hover-text-color: #a2af37;
  --current-link-bg-color: transparent;
  --current-link-border-color: #a2af37;
  --current-link-text-color: #282828;
  --current-link-hover-bg-color: transparent;
  --current-link-hover-border-color: #a2af37;
  --current-link-hover-text-color: #a2af37;
  --current-social-bg-color: #a2af37;
  --current-social-border-color: #a2af37;
  --current-social-text-color: #ffffff;
  --current-social-hover-bg-color: transparent;
  --current-social-hover-border-color: #a2af37;
  --current-social-hover-text-color: #282828;
  --current-input-bg-color: transparent;
  --current-input-border-color: rgba(40, 40, 40, 0.1);
  --current-input-text-color: #282828;
  --current-input-placeholder-color: #535353;
  --current-input-focus-bg-color: transparent;
  --current-input-focus-border-color: #282828;
  --current-input-focus-text-color: #282828;
  --current-input-focus-placeholder-color: #535353;
  --current-card-border-color: #ffffff;
  --current-numberline-color: #bfd5d1;
  --current-color-block-color: #bfd5d1;
  --current-empty-image-color: #535353;
  background: var(--current-background-color);
  color: var(--current-text-color);
}
.has-sage-background-color .has-sage-color {
  color: #ecefd7;
}
.has-sage-background-color.type--section-padding + .has-sage-background-color.type--section-padding {
  padding-top: 0;
}

.has-charcoal-background-color {
  --current-background-color: #282828;
  --current-text-color: #ffffff;
  --current-text-eyebrow-color: #a2af37;
  --current-text-light-color: #535353;
  --current-border-color: #a2af37;
  --current-btn-primary-bg-color: #a2af37;
  --current-btn-primary-border-color: #a2af37;
  --current-btn-primary-text-color: #ffffff;
  --current-btn-primary-hover-bg-color: none;
  --current-btn-primary-hover-border-color: #a2af37;
  --current-btn-primary-hover-text-color: #ffffff;
  --current-btn-secondary-bg-color: none;
  --current-btn-secondary-border-color: #a2af37;
  --current-btn-secondary-text-color: #ffffff;
  --current-btn-secondary-hover-bg-color: #a2af37;
  --current-btn-secondary-hover-border-color: #a2af37;
  --current-btn-secondary-hover-text-color: #ffffff;
  --current-btn-tertiary-bg-color: none;
  --current-btn-tertiary-border-color: #a2af37;
  --current-btn-tertiary-text-color: #ffffff;
  --current-btn-tertiary-hover-bg-color: none;
  --current-btn-tertiary-hover-border-color: #a2af37;
  --current-btn-tertiary-hover-text-color: #a2af37;
  --current-social-bg-color: transparent;
  --current-social-border-color: #a2af37;
  --current-social-text-color: #ffffff;
  --current-social-hover-bg-color: #a2af37;
  --current-social-hover-border-color: #a2af37;
  --current-social-hover-text-color: #ffffff;
  --current-link-bg-color: none;
  --current-link-border-color: #a2af37;
  --current-link-text-color: #ffffff;
  --current-link-hover-bg-color: none;
  --current-link-hover-border-color: #a2af37;
  --current-link-hover-text-color: #a2af37;
  --current-input-bg-color: transparent;
  --current-input-border-color: #ffffff;
  --current-input-text-color: #ffffff;
  --current-input-placeholder-color: #535353;
  --current-input-focus-bg-color: transparent;
  --current-input-focus-border-color: #ffffff;
  --current-input-focus-text-color: #ffffff;
  --current-input-focus-placeholder-color: #535353;
  --current-card-border-color: #535353;
  --current-numberline-color: #e9f0ef;
  --current-color-block-color: #535353;
  --current-empty-image-color: #535353;
  background: var(--current-background-color);
  color: var(--current-text-color);
}
.has-charcoal-background-color .has-charcoal-color {
  color: #282828;
}
.has-charcoal-background-color.type--section-padding + .has-charcoal-background-color.type--section-padding {
  padding-top: 0;
}

.has-gray-background-color {
  --current-background-color: #535353;
  --current-text-color: #ffffff;
  --current-text-eyebrow-color: #a2af37;
  --current-text-light-color: #535353;
  --current-border-color: #a2af37;
  --current-btn-primary-bg-color: #a2af37;
  --current-btn-primary-border-color: #a2af37;
  --current-btn-primary-text-color: #ffffff;
  --current-btn-primary-hover-bg-color: none;
  --current-btn-primary-hover-border-color: #a2af37;
  --current-btn-primary-hover-text-color: #ffffff;
  --current-btn-secondary-bg-color: none;
  --current-btn-secondary-border-color: #a2af37;
  --current-btn-secondary-text-color: #ffffff;
  --current-btn-secondary-hover-bg-color: #a2af37;
  --current-btn-secondary-hover-border-color: #a2af37;
  --current-btn-secondary-hover-text-color: #ffffff;
  --current-btn-tertiary-bg-color: none;
  --current-btn-tertiary-border-color: #a2af37;
  --current-btn-tertiary-text-color: #ffffff;
  --current-btn-tertiary-hover-bg-color: none;
  --current-btn-tertiary-hover-border-color: #a2af37;
  --current-btn-tertiary-hover-text-color: #a2af37;
  --current-social-bg-color: transparent;
  --current-social-border-color: #a2af37;
  --current-social-text-color: #ffffff;
  --current-social-hover-bg-color: #a2af37;
  --current-social-hover-border-color: #a2af37;
  --current-social-hover-text-color: #ffffff;
  --current-link-bg-color: none;
  --current-link-border-color: #a2af37;
  --current-link-text-color: #ffffff;
  --current-link-hover-bg-color: none;
  --current-link-hover-border-color: #a2af37;
  --current-link-hover-text-color: #a2af37;
  --current-input-bg-color: transparent;
  --current-input-border-color: #ffffff;
  --current-input-text-color: #ffffff;
  --current-input-placeholder-color: #535353;
  --current-input-focus-bg-color: transparent;
  --current-input-focus-border-color: #ffffff;
  --current-input-focus-text-color: #ffffff;
  --current-input-focus-placeholder-color: #535353;
  --current-card-border-color: #535353;
  --current-numberline-color: #e9f0ef;
  --current-color-block-color: #e9f0ef;
  --current-empty-image-color: #535353;
  background: var(--current-background-color);
  color: var(--current-text-color);
}
.has-gray-background-color .has-gray-color {
  color: #535353;
}
.has-gray-background-color.type--section-padding + .has-gray-background-color.type--section-padding {
  padding-top: 0;
}

.has-white-background-color {
  --current-background-color: #ffffff;
  --current-text-color: #282828;
  --current-text-eyebrow-color: #aa431b;
  --current-text-light-color: #535353;
  --current-border-color: #aa431b;
  --current-btn-primary-bg-color: #a2af37;
  --current-btn-primary-border-color: #a2af37;
  --current-btn-primary-text-color: #ffffff;
  --current-btn-primary-hover-bg-color: transparent;
  --current-btn-primary-hover-border-color: #a2af37;
  --current-btn-primary-hover-text-color: #282828;
  --current-btn-secondary-bg-color: transparent;
  --current-btn-secondary-border-color: #a2af37;
  --current-btn-secondary-text-color: #282828;
  --current-btn-secondary-hover-bg-color: #a2af37;
  --current-btn-secondary-hover-border-color: #a2af37;
  --current-btn-secondary-hover-text-color: #ffffff;
  --current-btn-tertiary-bg-color: transparent;
  --current-btn-tertiary-border-color: #a2af37;
  --current-btn-tertiary-text-color: #282828;
  --current-btn-tertiary-hover-bg-color: transparent;
  --current-btn-tertiary-hover-border-color: #a2af37;
  --current-btn-tertiary-hover-text-color: #a2af37;
  --current-link-bg-color: transparent;
  --current-link-border-color: #a2af37;
  --current-link-text-color: #282828;
  --current-link-hover-bg-color: transparent;
  --current-link-hover-border-color: #a2af37;
  --current-link-hover-text-color: #a2af37;
  --current-social-bg-color: #a2af37;
  --current-social-border-color: #a2af37;
  --current-social-text-color: #ffffff;
  --current-social-hover-bg-color: transparent;
  --current-social-hover-border-color: #a2af37;
  --current-social-hover-text-color: #282828;
  --current-input-bg-color: transparent;
  --current-input-border-color: rgba(40, 40, 40, 0.1);
  --current-input-text-color: #282828;
  --current-input-placeholder-color: #535353;
  --current-input-focus-bg-color: transparent;
  --current-input-focus-border-color: #282828;
  --current-input-focus-text-color: #282828;
  --current-input-focus-placeholder-color: #535353;
  --current-card-border-color: rgba(83, 83, 83, 0.3);
  --current-numberline-color: #bfd5d1;
  --current-color-block-color: #bfd5d1;
  --current-empty-image-color: #535353;
  background: var(--current-background-color);
  color: var(--current-text-color);
}
.has-white-background-color .has-white-color {
  color: #ffffff;
}
.has-white-background-color.type--section-padding + .has-white-background-color.type--section-padding {
  padding-top: 0;
}

a,
.btn--link {
  color: var(--current-link-text-color);
  background: var(--current-link-bg-color);
  border-color: var(--current-link-border-color);
}
a:hover,
.btn--link:hover {
  color: var(--current-link-hover-text-color);
  background: var(--current-link-hover-bg-color);
  border-color: var(--current-link-hover-border-color);
}

.btn--primary {
  color: var(--current-btn-primary-text-color);
  background: var(--current-btn-primary-bg-color);
  border-color: var(--current-btn-primary-border-color);
}
.btn--primary:hover {
  color: var(--current-btn-primary-hover-text-color);
  background: var(--current-btn-primary-hover-bg-color);
  border-color: var(--current-btn-primary-hover-border-color);
}
.btn--secondary {
  color: var(--current-btn-secondary-text-color);
  background: var(--current-btn-secondary-bg-color);
  border-color: var(--current-btn-secondary-border-color);
}
.btn--secondary:hover {
  color: var(--current-btn-secondary-hover-text-color);
  background: var(--current-btn-secondary-hover-bg-color);
  border-color: var(--current-btn-secondary-hover-border-color);
}
.btn--tertiary {
  color: var(--current-btn-tertiary-text-color);
  background: var(--current-btn-tertiary-bg-color);
  border-color: var(--current-btn-tertiary-border-color);
}
.btn--tertiary:hover {
  color: var(--current-btn-tertiary-hover-text-color);
  background: var(--current-btn-tertiary-hover-bg-color);
  border-color: var(--current-btn-tertiary-hover-border-color);
}

.social-list a {
  color: var(--current-social-text-color);
  background: var(--current-social-bg-color);
  border-color: var(--current-social-border-color);
}
.social-list a:hover {
  color: var(--current-social-hover-text-color);
  background: var(--current-social-hover-bg-color);
  border-color: var(--current-social-hover-border-color);
}

label,
button {
  color: var(--current-text-color);
}

button svg line {
  stroke: var(--current-text-color);
}

.type--header-small,
.type--header-all-caps {
  color: var(--current-text-eyebrow-color);
}

.list-item,
blockquote.card,
.table-card tr {
  border-color: var(--current-border-color);
}

.card {
  border-color: var(--current-card-border-color);
}

.table-card th {
  color: var(--current-border-color);
}

input[type=text],
input[type=tel],
input[type=email],
input[type=search],
input[type=password],
textarea {
  color: var(--current-input-text-color);
  border-color: var(--current-input-border-color);
  background-color: var(--current-input-bg-color);
}
input[type=text]::-moz-placeholder, input[type=tel]::-moz-placeholder, input[type=email]::-moz-placeholder, input[type=search]::-moz-placeholder, input[type=password]::-moz-placeholder, textarea::-moz-placeholder {
  color: var(--current-input-placeholder-color);
}
input[type=text]::placeholder,
input[type=tel]::placeholder,
input[type=email]::placeholder,
input[type=search]::placeholder,
input[type=password]::placeholder,
textarea::placeholder {
  color: var(--current-input-placeholder-color);
}
input[type=text]:focus,
input[type=tel]:focus,
input[type=email]:focus,
input[type=search]:focus,
input[type=password]:focus,
textarea:focus {
  color: var(--current-input-focus-text-color);
  border-color: var(--current-input-focus-border-color);
  background-color: var(--current-input-focus-bg-color);
}
input[type=text]:focus::-moz-placeholder, input[type=tel]:focus::-moz-placeholder, input[type=email]:focus::-moz-placeholder, input[type=search]:focus::-moz-placeholder, input[type=password]:focus::-moz-placeholder, textarea:focus::-moz-placeholder {
  color: var(--current-input-focus-placeholder-color);
}
input[type=text]:focus::placeholder,
input[type=tel]:focus::placeholder,
input[type=email]:focus::placeholder,
input[type=search]:focus::placeholder,
input[type=password]:focus::placeholder,
textarea:focus::placeholder {
  color: var(--current-input-focus-placeholder-color);
}

form,
fieldset {
  margin: 0;
  padding: 0;
  border-style: none;
}

input[type=text],
input[type=tel],
input[type=email],
input[type=search],
input[type=password],
textarea {
  -webkit-appearance: none;
  -webkit-border-radius: 0;
  box-sizing: border-box;
  border-style: solid;
  border-width: 1px;
  padding: 10px 14px;
  font-weight: 400;
  font-size: max(0.875rem, 0.9722222222vw);
  line-height: 1.5;
  display: block;
  width: 100%;
}

textarea {
  font-family: "IBM Plex Sans", serif;
  height: 124px;
  resize: none;
}

.form-row {
  margin-bottom: 24px;
}

input[type=submit] {
  cursor: pointer;
}

.block-wrapper {
  opacity: 0;
  transform: translateY(0);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.block-wrapper.visible {
  opacity: 1;
  transform: translateY(0);
}

.btn {
  font-family: "IBM Plex Mono", serif;
  display: inline-block;
  vertical-align: top;
  font-weight: 700;
  font-size: 16px;
  line-height: 20px;
  padding: 9px 19px;
  border-width: 2px;
  border-style: solid;
  text-decoration: none;
  transition: all 0.3s ease-in-out;
}
.btn:before {
  display: none;
}

.container {
  --container-padding-x: 20px;
  --container-width: calc(min(100%, 1440px));
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 var(--container-padding-x);
}
@media screen and (min-width: 768px) {
  .container {
    --container-padding-x: 30px;
  }
}
@media screen and (min-width: 1300px) {
  .container {
    --container-padding-x: 60px;
  }
}

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

.row-two-columns {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .row-two-columns {
    width: calc(100% + 60px);
    margin: 0 -30px;
  }
}
.row-two-columns .col {
  width: 100%;
  margin-bottom: 30px;
}
@media screen and (min-width: 768px) {
  .row-two-columns .col {
    width: 50%;
    padding: 0 30px;
    margin-bottom: 60px;
  }
}

.row-three-columns,
.row-3-columns {
  justify-content: flex-start;
  width: 100%;
}
@media screen and (min-width: 520px) {
  .row-three-columns,
  .row-3-columns {
    width: calc(100% + 32px);
    margin: 0 -16px;
  }
}
@media screen and (min-width: 1024px) {
  .row-three-columns,
  .row-3-columns {
    width: calc(100% + 60px);
    margin: 0 -30px;
  }
}
.row-three-columns .col,
.row-3-columns .col {
  width: 100%;
  margin-bottom: 32px;
}
@media screen and (min-width: 520px) {
  .row-three-columns .col,
  .row-3-columns .col {
    width: 50%;
    padding: 0 16px;
  }
}
@media screen and (min-width: 1024px) {
  .row-three-columns .col,
  .row-3-columns .col {
    width: 33.33%;
    padding: 0 30px;
    margin-bottom: 60px;
  }
}
.row-three-columns .card,
.row-3-columns .card {
  padding: 20px;
}
@media screen and (min-width: 1024px) {
  .row-three-columns .card,
  .row-3-columns .card {
    padding: 2.705vw 2.57vw;
  }
}
@media screen and (min-width: 1440px) {
  .row-three-columns .card,
  .row-3-columns .card {
    padding: 40px 38px;
  }
}

.social-list {
  display: flex;
  flex-wrap: wrap;
}
.social-list li {
  margin-right: 16px;
  margin-bottom: 16px;
}
.social-list a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  font-weight: 400;
  border-radius: 50px;
  overflow: hidden;
  text-indent: 100%;
  white-space: nowrap;
  border-width: 2px;
  border-style: solid;
  transition: all 0.2s ease-in-out;
}
.social-list a:hover svg path {
  fill: currentColor;
}
.social-list a:before {
  display: none;
}
.social-list a svg {
  width: 18px;
  height: 18px;
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  display: block;
  margin: 0 auto;
}
.social-list a svg path {
  transition: all 0.1s ease-in-out;
}
.social-list .hide {
  position: absolute;
  top: 0;
  left: -99999px;
  visibility: hidden;
}

body.sb-show-main.sb-main-padded {
  padding: 0;
}

.type--section-padding {
  padding: 11vw 0;
}
@media screen and (min-width: 1300px) {
  .type--section-padding {
    padding: 120px 0;
  }
}
@media screen and (min-width: 1440px) {
  .type--section-padding {
    padding: 140px 0;
  }
}

.img--responsive {
  position: relative;
  padding-bottom: 100%;
  overflow: hidden;
}
.img--responsive img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.img--color-block img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (min-width: 768px) {
  .img--color-block {
    --color-block--width: 80.4713804714%;
    position: relative;
    overflow: hidden;
  }
  .img--color-block::before {
    display: block;
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: auto;
    bottom: 0;
    width: var(--color-block--width);
    background: var(--current-color-block-color);
  }
  .img--color-block--right::before {
    left: auto;
    right: 0;
  }
  .img--color-block--bottom img {
    top: auto;
    bottom: 0;
  }
  .img--color-block img {
    position: absolute;
    top: 0;
    left: 0;
  }
}

.list-item {
  padding: 20px 0;
  border-top-width: 2px;
  border-top-style: solid;
  border-bottom-width: 2px;
  border-bottom-style: solid;
  margin-bottom: -2px;
}
@media screen and (min-width: 768px) {
  .list-item {
    padding: 40px 0;
  }
}

.card {
  padding: 30px;
  padding: 3.379vw;
  position: relative;
  border: 1px solid var(--current-card-border-color);
  height: 100%;
  display: flex;
  flex-direction: column;
  border-radius: 0;
}
@media screen and (min-width: 768px) {
  .card {
    padding: 3.379vw 3.379vw 3.11vw;
  }
}
@media screen and (min-width: 1440px) {
  .card {
    padding: 50px 50px 46px;
  }
}
.cardblockquote {
  padding: 30px;
  border-width: 2px;
  border-style: solid;
}
@media screen and (min-width: 768px) {
  .cardblockquote {
    padding: 50px;
  }
}
.card .link {
  margin-right: auto;
}

.has-underlay {
  position: relative;
}
.has-underlay .image-underlay, .has-underlay .image-underlay--wrapper {
  position: absolute;
  top: 0;
  bottom: 0;
}
.has-underlay .image-underlay--wrapper {
  left: 0;
  right: 0;
}
.has-underlay .image-underlay {
  height: 100%;
  min-width: 50%;
  mix-blend-mode: screen;
  -o-object-fit: cover;
     object-fit: cover;
  z-index: 0;
}
.has-underlay--content-left .image-underlay {
  right: 0;
}
.has-underlay--content-left .image-underlay--wrapper {
  -webkit-mask-image: linear-gradient(0.25turn, transparent, transparent 50%, rgba(0, 0, 0, 0.9) 100%);
          mask-image: linear-gradient(0.25turn, transparent, transparent 50%, rgba(0, 0, 0, 0.9) 100%);
}
.has-underlay--content-right .image-underlay {
  left: 0;
}
.has-underlay--content-right .image-underlay--wrapper {
  -webkit-mask-image: linear-gradient(0.25turn, rgba(0, 0, 0, 0.9), transparent 50%, transparent 100%);
          mask-image: linear-gradient(0.25turn, rgba(0, 0, 0, 0.9), transparent 50%, transparent 100%);
}
.has-underlay--content-center .image-underlay {
  left: 0;
  right: 0;
}
.has-underlay--content-center .image-underlay--wrapper {
  -webkit-mask-image: linear-gradient(0.25turn, rgba(0, 0, 0, 0.9), transparent 25%, transparent 75%, rgba(0, 0, 0, 0.9) 100%);
          mask-image: linear-gradient(0.25turn, rgba(0, 0, 0, 0.9), transparent 25%, transparent 75%, rgba(0, 0, 0, 0.9) 100%);
}
.has-underlay .image-underlay--wrapper ~ .container {
  position: relative;
  z-index: 1;
}

.block_header {
  margin-bottom: 2.5rem;
}
@media screen and (min-width: 768px) {
  .block_header {
    margin-bottom: 4.5rem;
  }
}
.block_header--label {
  margin-bottom: 1.25rem;
}
.block_header--title, .block_header--subtitle, .block_header--link {
  margin-bottom: 2rem;
}

.tease_header {
  margin-bottom: 1.25rem;
}
.tease_header--title, .tease_header--subtitle {
  margin-bottom: 0;
}

@keyframes dropDown {
  0% {
    transform: translateX(-9999px);
    visibility: hidden;
    opacity: 0;
  }
  1% {
    transform: translateX(0%);
    visibility: visible;
    opacity: 0;
  }
  100% {
    transform: translateX(0%);
    visibility: visible;
    opacity: 1;
  }
}
@keyframes dropUp {
  0% {
    visibility: visible;
    opacity: 1;
    transform: translateX(0%);
  }
  99% {
    visibility: visible;
    opacity: 0;
    transform: translateX(0%);
  }
  100% {
    visibility: hidden;
    opacity: 0;
    transform: translateX(-9999px);
  }
}
.header {
  z-index: 10;
  position: relative;
  font-size: 16px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(40, 40, 40, 0.2);
}
@media screen and (min-width: 768px) {
  .header {
    padding: 0;
  }
}
.header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header_menu-container {
  position: absolute;
  top: calc(100% + 1px);
  left: 0;
  width: 100%;
  transform: translateX(-100%);
  transition: transform 0.3s ease-in-out;
  z-index: 8;
  background: #ffffff;
  padding: 15px 10px;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
}
@media screen and (min-width: 768px) {
  .header_menu-container {
    display: flex;
    align-items: center;
    position: static;
    transform: none;
    background: transparent;
    padding: 0;
    width: auto;
    box-shadow: none;
  }
}
.header_menu-container .btn {
  font-size: 16px;
  width: 100%;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .header_menu-container .btn {
    margin-left: 40px;
    width: auto;
  }
}

.header_nav-opener {
  display: inline-block;
  vertical-align: top;
  position: relative;
  width: 26px;
  height: 18px;
  background: transparent;
  border: 0;
}
@media screen and (min-width: 768px) {
  .header_nav-opener {
    display: none;
  }
}
.header_nav-opener:before, .header_nav-opener:after {
  content: "";
  position: absolute;
  display: inline-block;
  vertical-align: top;
  height: 2px;
  width: 26px;
  left: 0;
  background: #282828;
  transition: transform 0.3s ease-in-out;
}
.header_nav-opener:before {
  top: 0;
}
.header_nav-opener:after {
  top: 17px;
}
.header_nav-opener .header_nav-line {
  position: absolute;
  display: inline-block;
  vertical-align: top;
  height: 2px;
  width: 26px;
  left: 0;
  top: 8px;
  background: #282828;
  transition: opacity 0.3s ease-in-out;
}

.header_menu-list {
  margin-bottom: 15px;
}
@media screen and (min-width: 768px) {
  .header_menu-list {
    margin-bottom: 0;
    display: flex;
    flex-wrap: wrap;
  }
}
.header_menu-list > .menu__item {
  padding: 5px 0;
}
@media screen and (min-width: 768px) {
  .header_menu-list > .menu__item {
    padding: 0 12px;
  }
}
@media screen and (min-width: 1024px) {
  .header_menu-list > .menu__item {
    padding: 0 21px;
  }
}
.header_menu-list > .menu__item > .menu__link:before {
  content: "";
  display: block;
  position: absolute;
  bottom: 0;
  height: 1px;
  border-top: 2px solid #a2af37;
}
.header_menu-list > .menu__item:hover > .menu__link:before {
  opacity: 1;
}
.header_menu-list .menu__link {
  font-family: "IBM Plex Mono", serif;
  text-decoration: none;
  display: inline-block;
  vertical-align: top;
  font-size: 15px;
  line-height: 20px;
  padding: 0;
  background: transparent;
  border: 0;
  outline: none;
  font-weight: 700;
}
@media screen and (min-width: 768px) {
  .header_menu-list .menu__link {
    padding: 30px 0;
  }
}
@media screen and (min-width: 1024px) {
  .header_menu-list .menu__link {
    padding: 40px 0;
  }
}
.header_menu-list .menu__link:before {
  opacity: 0;
  left: 0;
  right: 0;
  transition: opacity 0.3s ease-in-out;
}
.header_menu-list .menu__link:hover {
  color: inherit;
}
.header_menu-list .menu__link:hover:before {
  opacity: 1;
}
.header_menu-list .menu__link.active:before {
  opacity: 1;
}
.header_menu-list .has-sub-menu > .menu__link:after {
  content: "";
  width: 0px;
  height: 0px;
  display: inline-block;
  border-style: solid;
  border-width: 0 4px 5px 4px;
  border-color: transparent transparent #282828 transparent;
  transform: rotate(180deg);
  margin-left: 8px;
  vertical-align: middle;
}
@media screen and (min-width: 768px) {
  .header_menu-list .has-sub-menu:hover > .menu__link:after {
    transform: rotate(0deg);
  }
}
@media screen and (min-width: 768px) {
  .header_menu-list .has-sub-menu:hover .drop-menu {
    animation: dropDown 300ms ease-in-out forwards;
  }
}
@media screen and (max-width: 768px) {
  .header_menu-list .has-sub-menu.hover > .menu__link:after {
    transform: rotate(0deg);
  }
}
@media screen and (max-width: 768px) {
  .header_menu-list .has-sub-menu.hover .drop-menu {
    transform: translateX(0);
    position: static;
  }
}
.header_menu-list .drop-menu {
  padding: 10px 20px;
  position: absolute;
  top: calc(100% + 1px);
  left: 0;
  right: 0;
  transform: translateX(-99999px);
}
@media screen and (min-width: 768px) {
  .header_menu-list .drop-menu {
    margin: 0 auto;
    padding: 55px 30px 10px;
    max-width: 1440px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
    background: #ffffff;
    transform: translateX(-9999px);
    visibility: hidden;
  }
}
@media screen and (min-width: 1300px) {
  .header_menu-list .drop-menu {
    padding: 55px 66px 10px;
  }
}
.header_menu-list .drop-menu:before {
  position: absolute;
  bottom: 100%;
  left: 50%;
  transform: translateX(-50%);
  width: 100vw;
  height: 40px;
}
@media screen and (min-width: 768px) {
  .header_menu-list .drop-menu:before {
    content: "";
  }
}
.header_menu-list .drop-menu p {
  display: none;
}
@media screen and (min-width: 768px) {
  .header_menu-list .drop-menu p {
    display: block;
  }
}
@media screen and (min-width: 768px) {
  .header_menu-list .has-menu-img {
    display: flex;
  }
}
@media screen and (min-width: 768px) {
  .header_menu-list .has-menu-img .sub-menu {
    width: 75%;
  }
}
@media screen and (min-width: 768px) {
  .header_menu-list .has-menu-img .sub-menu li {
    width: 33.33%;
  }
}
.header_menu-list .has-menu-img .drop-img {
  display: none;
  position: relative;
}
@media screen and (min-width: 768px) {
  .header_menu-list .has-menu-img .drop-img {
    display: block;
    width: 25%;
  }
}
.header_menu-list .sub-menu-img {
  display: none;
}
@media screen and (min-width: 768px) {
  .header_menu-list .sub-menu-img {
    position: absolute;
    top: 0;
    right: 0;
    z-index: 1;
  }
}
.header_menu-list .drop-menu-holder {
  position: relative;
}
.header_menu-list .sub-menu {
  display: flex;
  flex-wrap: wrap;
}
.header_menu-list .sub-menu li {
  width: 100%;
  margin: 0 0 10px;
}
@media screen and (min-width: 768px) {
  .header_menu-list .sub-menu li {
    width: 25%;
    padding: 0 12px;
    padding-right: 15px;
    margin: 0 0 36px;
  }
}
.header_menu-list .sub-menu li:last-child {
  margin-bottom: 0;
}
@media screen and (min-width: 768px) {
  .header_menu-list .sub-menu li:hover .sub-menu-img {
    display: block;
    width: 25%;
  }
}
.header_menu-list .sub-menu .menu__link {
  padding: 0;
  font-size: 15px;
  font-family: inherit;
}
@media screen and (min-width: 768px) {
  .header_menu-list .sub-menu .menu__link {
    font-size: 18px;
    margin-bottom: 12px;
  }
}
.header_menu-list .sub-menu .menu__link:hover {
  color: #a2af37;
}

.header_logo-container a {
  border: 0;
}
.header_logo_img {
  width: 104px;
}

.nav-active .header_nav-opener:before {
  top: 9px;
  transform: rotate(45deg);
}
.nav-active .header_nav-opener:after {
  top: 9px;
  transform: rotate(-45deg);
}
.nav-active .header_nav-opener .header_nav-line {
  opacity: 0;
}
.nav-active .header_menu-container {
  transform: translateX(0);
}

.footer h3 {
  margin: 0 0 10px;
}

.footer_upper-section {
  font-size: 16px;
  line-height: 24px;
  padding: 30px 0;
}
@media screen and (min-width: 768px) {
  .footer_upper-section {
    padding: 60px 0 34px;
  }
}
@media screen and (min-width: 1300px) {
  .footer_upper-section {
    padding: 100px 0 54px;
  }
}
@media screen and (min-width: 768px) {
  .footer_upper-section .container {
    display: flex;
    flex-wrap: wrap;
  }
}

.footer_left-container {
  margin-bottom: 20px;
}
@media screen and (min-width: 768px) {
  .footer_left-container {
    width: 60%;
    padding-right: 30px;
    margin-bottom: 50px;
  }
}
@media screen and (min-width: 1024px) {
  .footer_left-container {
    width: 35%;
    margin-bottom: 0;
  }
}
@media screen and (min-width: 1300px) {
  .footer_left-container {
    width: 42.5%;
  }
}

@media screen and (min-width: 520px) {
  .footer_center-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }
}
@media screen and (min-width: 768px) {
  .footer_center-container {
    width: 100%;
    order: 1;
  }
}
@media screen and (min-width: 1024px) {
  .footer_center-container {
    width: 52%;
    padding-right: 30px;
    order: 0;
  }
}
@media screen and (min-width: 1300px) {
  .footer_center-container {
    width: 44.5%;
  }
}

@media screen and (min-width: 768px) {
  .footer_right-container {
    width: 40%;
    display: flex;
    align-items: flex-start;
    justify-content: flex-end;
    margin-left: auto;
  }
}
@media screen and (min-width: 1024px) {
  .footer_right-container {
    width: 13%;
  }
}

.footer_logo-container {
  margin-bottom: 20px;
}
@media screen and (min-width: 768px) {
  .footer_logo-container {
    margin-bottom: 40px;
  }
}
.footer_logo-container a {
  border: 0;
}
.footer_logo_img {
  width: 4.375rem;
  height: 4.375rem;
}

.footer_contact-container {
  margin-bottom: 20px;
  line-height: 2;
}
@media screen and (min-width: 768px) {
  .footer_contact-container {
    margin-bottom: 46px;
  }
}
.footer_contact-container a {
  font-family: inherit;
  text-decoration: none;
  font-weight: 400;
  border: 0;
}

.footer_center_menu-holder {
  margin-bottom: 24px;
}
@media screen and (min-width: 520px) {
  .footer_center_menu-holder {
    padding-right: 20px;
  }
}

.footer_menu a {
  font-family: inherit;
  font-weight: 400;
  text-decoration: none;
  border: 0;
}
.footer_menu a.active {
  color: var(--current-link-hover-text-color);
}
.footer_menu li {
  margin-bottom: 8px;
}

.footer_lower-section {
  --current-text-color: rgba(255, 255, 255, 0.7);
  --current-link-text-color: rgba(255, 255, 255, 0.7);
  border-top: 1px solid rgba(255, 255, 255, 0.3);
  font-size: 14px;
  line-height: 21px;
  padding: 16px 0;
}
@media screen and (min-width: 768px) {
  .footer_lower-section {
    padding: 20px 0;
  }
}
@media screen and (min-width: 1300px) {
  .footer_lower-section {
    padding: 30px 0;
  }
}
.footer_lower-section .copyright {
  text-align: center;
}
@media screen and (min-width: 768px) {
  .footer_lower-section .copyright {
    text-align: left;
    margin-bottom: 0;
  }
}
@media screen and (min-width: 768px) {
  .footer_lower-section .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
}

.footer_bottom-menu {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
}
@media screen and (min-width: 768px) {
  .footer_bottom-menu {
    justify-content: space-between;
  }
}
.footer_bottom-menu li {
  margin-left: 6px;
  position: relative;
}
.footer_bottom-menu li:after {
  content: "|";
  margin-left: 4px;
}
.footer_bottom-menu li:last-child:after {
  display: none;
}
.footer_bottom-menu a {
  font-family: inherit;
  font-weight: 400;
  text-decoration: none;
  border: 0;
  transition: color 0.3s ease-in-out;
}

.block_body-copy {
  padding-top: 6.25rem;
}
.block_body-copy .container {
  max-width: calc(53.125rem + var(--container-padding-x) * 2);
}

.block_featured-section {
  max-width: 100%;
  overflow: hidden;
}
.block_featured-section-subtitle {
  text-wrap: balance;
  max-width: 40ch;
}

.block_featured-posts {
  justify-content: center;
}
.block_featured-posts .tease-project {
  margin-bottom: 2rem;
}
@media screen and (min-width: 768px) {
  .block_featured-posts .tease-project {
    margin-bottom: 0;
  }
}
.block_featured-posts .block_featured-post-image {
  margin-bottom: 24px;
  padding-bottom: 68%;
}
@media screen and (min-width: 768px) {
  .block_featured-posts .block_featured-post-image {
    margin-bottom: 40px;
  }
}
.block_featured-posts .block_featured-post-title a {
  font-family: inherit;
  text-decoration: none;
  border: 0;
}
.block_featured-posts .block_featured-post-city {
  display: block;
  margin-bottom: 16px;
}
.block_featured-posts .block_featured-post-list .block_featured-post-list-subtitle {
  display: inline-block;
  font-weight: 700;
}
.block_featured-posts .block_featured-post-list .block_featured-post-list-text {
  display: inline;
}
.block_featured-posts .block_featured-post-list .services-row {
  margin-top: 16px;
  margin-bottom: 16px;
}

.block_people-block.type--section-padding {
  padding-bottom: 10px;
}
@media screen and (min-width: 768px) {
  .block_people-block.type--section-padding {
    padding-bottom: 40px;
  }
}
@media screen and (min-width: 1024px) {
  .block_people-block.type--section-padding {
    padding-bottom: 80px;
  }
}

.block_people-block-list {
  display: flex;
  flex-wrap: wrap;
}
@media screen and (min-width: 520px) {
  .block_people-block-list {
    margin: 0 -18px;
    width: calc(100% + 32px);
  }
}
.block_people-block-list .block_people-block-list-item-col {
  width: 100%;
  margin-bottom: 36px;
}
@media screen and (min-width: 520px) {
  .block_people-block-list .block_people-block-list-item-col {
    width: 50%;
    padding: 0 18px;
  }
}
@media screen and (min-width: 768px) {
  .block_people-block-list .block_people-block-list-item-col {
    width: 33.33%;
    margin-bottom: 60px;
  }
}
@media screen and (min-width: 1024px) {
  .block_people-block-list .block_people-block-list-item-col {
    width: 20%;
  }
}

.block_people-post-image {
  background: var(--current-empty-image-color);
  margin-bottom: 32px;
}

.block_person-title {
  font-weight: 500;
  line-height: 1.2;
  margin-bottom: 8px;
}

.block_cta-section p {
  margin-bottom: 32px;
}
.block_cta-section .block_cta-section-title {
  margin-bottom: 28px;
}
.block_cta-section .block_cta--holder-center {
  max-width: 646px;
  margin: 0 auto;
}
.block_cta-section .block_cta--holder-left {
  max-width: 790px;
}
.block_cta-section .block_cta--holder-right {
  max-width: 646px;
  margin-left: auto;
}

.block_service-icons-section {
  padding: 9.46vw 0 9.46vw;
}
.block_service-icons-section .block_service-icons-section {
  padding: 0;
}

.block_service-icons-list {
  --items-per-row--gap: 24px;
}
@media screen and (min-width: 520px) {
  .block_service-icons-list {
    --items-per-row--gap: 40px;
  }
}
.block_service-icons-list-item {
  padding: 10px;
  text-align: center;
}
.block_service-icons-list-item a {
  border-bottom: none;
  display: block;
}
.block_service-icons-list-item svg {
  max-width: 100%;
}

.service-icon--fitted.service-icon--litigation {
  margin: -36px -48px -45px -43px;
}
.service-icon--fitted.service-icon--testing {
  margin: -25px -32px -33px -27px;
}
.service-icon--fitted.service-icon--residential {
  margin: -36px;
  margin-bottom: -45px;
  margin-left: -33px;
}
.service-icon--fitted.service-icon--new-construction {
  margin: -23px -23px -31px -20px;
}
.service-icon--fitted.service-icon--existing-buildings {
  margin: -23px -46px -31px -49px;
}

.block_hero {
  --hero--padding-top: 6.25rem;
  --hero--padding-bottom: 8.75rem;
  --hero--padding-horizontal: 1.25rem;
  --hero--gap-column: 136;
  --hero--width-images: 622;
  --color-block--width: 77.8135048232%;
  display: flex;
  -moz-column-gap: min(var(--hero--gap-column) / 1440 * 100%, var(--hero--gap-column) * 1px);
       column-gap: min(var(--hero--gap-column) / 1440 * 100%, var(--hero--gap-column) * 1px);
  align-items: flex-start;
  flex-direction: column;
}
@media screen and (min-width: 768px) {
  .block_hero {
    --hero--padding-horizontal: 1.875rem;
    flex-direction: row;
  }
}
@media screen and (min-width: 1300px) {
  .block_hero {
    --hero--padding-horizontal: 3.75rem;
  }
}
.block_hero_text-holder {
  flex: 1;
  padding: var(--hero--padding-top) var(--hero--padding-horizontal) var(--hero--padding-bottom, var(--hero--padding-top));
}
.block_hero_text-holder :last-child {
  margin-bottom: 0;
}
@media screen and (min-width: 768px) {
  .block_hero_text-holder {
    padding-right: 0;
    max-width: calc(1440px - min(var(--hero--gap-column) / 1440 * 100%, var(--hero--gap-column) * 1px) - var(--hero--width-images) * 1px);
    margin-left: auto;
  }
}
.block_hero_images-holder {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  align-self: stretch;
  width: 100%;
  position: relative;
}
@media screen and (min-width: 768px) {
  .block_hero_images-holder {
    width: calc(max((100% - 1440px) / 2, 0px) + var(--hero--width-images) * 1px);
    max-width: calc(var(--hero--width-images) / 1440px * 100%);
  }
}
.block_hero_images-holder::before {
  display: block;
  content: "";
  position: absolute;
  top: 0;
  left: auto;
  right: 0;
  bottom: 0;
  width: var(--color-block--width);
  background: var(--current-color-block-color);
}
.block_hero_logo {
  margin-bottom: 1.5rem;
}
.block_hero_logo svg {
  width: 285px;
}
@media screen and (min-width: 768px) {
  .block_hero_logo {
    margin-bottom: 2.5rem;
  }
  .block_hero_logo svg {
    width: 305px;
  }
}
.block_hero_label {
  margin-bottom: 1.25rem;
}
.block_hero_title, .block_hero_subtitle {
  margin-bottom: 2rem;
}
.block_hero_img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.block_hero_img-container {
  max-height: 100%;
  overflow: hidden;
  width: 100%;
}
.block_hero--homepage.block_hero {
  --hero--gap-column: 110;
  --hero--width-images: 732;
  --color-block--width: 66.1202185792%;
}
@media screen and (min-width: 768px) {
  .block_hero--homepage.block_hero {
    --hero--padding-bottom: 115px;
  }
}
.block_hero--homepage.block_hero .block_hero_img-container {
  width: 84.9726775956%;
  z-index: 1;
}
.block_hero--homepage.block_hero .block_hero_img-container + .block_hero_img-container {
  z-index: 0;
  margin-top: -80px;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .block_hero--homepage.block_hero .block_hero_img-container + .block_hero_img-container {
    margin-top: -13.6612021858%;
  }
}
@media screen and (min-width: 1300px) {
  .block_hero--homepage.block_hero .block_hero_img-container + .block_hero_img-container {
    margin-top: -33.7431693989%;
  }
}
@media screen and (min-width: 1024px) {
  .block_hero--homepage.block_hero .block_hero_img-container + .block_hero_img-container {
    margin-top: -16.8032786885%;
  }
}
.block_hero--approach.block_hero {
  --hero--gap-column: 110;
}
@media screen and (min-width: 768px) {
  .block_hero--approach.block_hero {
    --hero--padding-bottom: 115px;
  }
}
.block_hero--careers.block_hero {
  --hero--width-images: 732;
  --hero--gap-column: 110;
  --color-block--width: 84.9726775956%;
}
.block_hero--careers.block_hero .block_hero_images-holder {
  justify-content: flex-end;
}
.block_hero--market.block_hero {
  --hero--width-images: 484;
}
@media screen and (min-width: 768px) {
  .block_hero--market.block_hero {
    --hero--padding-bottom: 6.25rem;
  }
}
.block_hero--subservice.block_hero {
  --hero--width-images: 484;
  --color-block--width: 100%;
}

.block_awards-section .block_awards-image {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .block_awards-section .block_awards-image {
    width: 50%;
  }
}
.block_awards-section .block_awards-image img {
  width: 100%;
  min-width: 100%;
  min-height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.block_awards-section .block_awards-text-holder {
  width: 100%;
  padding: 30px 20px;
}
@media screen and (min-width: 768px) {
  .block_awards-section .block_awards-text-holder {
    width: 50%;
    max-width: 720px;
    padding: 0 20px 0 40px;
    margin-right: auto;
  }
}

@media screen and (min-width: 520px) {
  .block_awards-list {
    display: flex;
  }
}
.block_awards-list .block_awards-list-item {
  margin-right: 41px;
  margin-bottom: 41px;
}

.block_unordered_list_heading--heading-title {
  max-width: 26ch;
}
.block_unordered_list_heading--list {
  --items-per-row--row-gap: 8px;
  justify-content: left;
}

.block_tiled_card_list-section.type--section-padding {
  padding-bottom: 10px;
}
@media screen and (min-width: 768px) {
  .block_tiled_card_list-section.type--section-padding {
    padding-bottom: 6.76vw;
  }
}
@media screen and (min-width: 1440px) {
  .block_tiled_card_list-section.type--section-padding {
    padding-bottom: 100px;
  }
}
.block_tiled_card_list-section .block_tiled_card_list-subtitle {
  margin-bottom: 20px;
  display: block;
}
@media screen and (min-width: 768px) {
  .block_tiled_card_list-section .block_tiled_card_list-title {
    max-width: 60%;
  }
}

.block_tiled_card-list .block_tiled_card-box {
  border-width: 2px;
}
.block_tiled_card-list .block_tiled_card-box p {
  margin-bottom: 0;
}

.block_contact-section {
  padding-top: 6.25rem;
}
.block_contact-section--subsection {
  margin-top: 0.875rem;
}
.block_contact-section .block_contact-row {
  row-gap: 6.25rem;
}
.block_contact-section .block_contact-col {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .block_contact-section .block_contact-col {
    width: calc(50% - 30px);
  }
}
@media screen and (min-width: 768px) {
  .block_contact-section .block_contact-col.block_contact-form-col {
    width: calc(50% - 114px);
  }
}
.block_contact-section p {
  margin-bottom: 1rem;
}
.block_contact-section p:last-of-type {
  margin-bottom: 2rem;
}
.block_contact-section address {
  font-weight: 700;
}
.block_contact-section a[href^="mailto:"],
.block_contact-section a[href^="tel:"] {
  font-family: inherit;
  border: 0;
}
.block_contact-section .social-list {
  margin-top: 2.5rem;
}
.block_contact-section form label {
  font-family: "IBM Plex Sans", serif;
  display: block;
  text-transform: none;
  font-weight: 400;
  font-size: max(1rem, 1.1111111111vw);
  line-height: 1.5;
  margin-bottom: 4px;
}
@media screen and (min-width: 1024px) {
  .block_contact-section form label {
    font-size: max(1.125rem, 1.25vw);
  }
}
.block_contact-section input[type=submit] {
  margin-top: 10px;
}

.block_quote_callout-block {
  box-sizing: border-box;
  position: relative;
  display: flex;
  flex-wrap: wrap;
}
.block_quote_callout-block h2 {
  margin-bottom: 30px;
}
.block_quote_callout-block p {
  margin-bottom: 16px;
}
.block_quote_callout-block .btn {
  margin-top: 32px;
  margin-bottom: 60px;
}
@media screen and (min-width: 768px) {
  .block_quote_callout-block .btn {
    margin-bottom: 109px;
  }
}
.block_quote_callout-block blockquote p {
  margin-bottom: 24px;
}
.block_quote_callout-block.container {
  padding: 0;
  max-width: 100%;
}
.block_quote_callout-block .block_quote_callout-image-holder {
  width: 100%;
}
.block_quote_callout-block .block_quote_callout-image {
  height: 100%;
}
.block_quote_callout-block .block_quote_callout-text-holder {
  width: 100%;
  padding: 30px 20px;
  max-width: 720px;
  margin-right: auto;
}
@media screen and (min-width: 768px) {
  .block_quote_callout-block .block_quote_callout-text-holder {
    padding-top: 9.53vw;
    padding-bottom: 6.49vw;
  }
}
@media screen and (min-width: 1024px) {
  .block_quote_callout-block .block_quote_callout-text-holder {
    padding-right: 60px;
    padding-left: 9.445%;
  }
}
@media screen and (min-width: 1440px) {
  .block_quote_callout-block .block_quote_callout-text-holder {
    padding-top: 141px;
    padding-bottom: 96px;
  }
}
@media screen and (min-width: 768px) {
  .block_quote_callout-block .block_quote_callout-text-holder.block_quote_callout-text-holder--no-padding {
    padding-top: 0;
  }
}
@media screen and (min-width: 768px) {
  .block_quote_callout-block.block_quote_callout-block--wide .block_quote_callout-image-holder {
    width: 33.6%;
  }
}
@media screen and (min-width: 768px) {
  .block_quote_callout-block.block_quote_callout-block--wide .block_quote_callout-text-holder {
    width: 66.4%;
    max-width: calc(720px + 16.4vw);
  }
}
@media screen and (min-width: 768px) {
  .block_quote_callout-block.block_quote_callout-block--narrow .block_quote_callout-image-holder {
    width: 41.4%;
  }
}
@media screen and (min-width: 768px) {
  .block_quote_callout-block.block_quote_callout-block--narrow .block_quote_callout-text-holder {
    width: 58.6%;
    max-width: calc(720px + 8.6vw);
  }
}
@media screen and (min-width: 768px) {
  .block_quote_callout-block + .block_quote_callout-block {
    margin-top: -60px;
  }
}

.block_two_col_text-section .container {
  row-gap: 30px;
}
.block_two_col_text-section .block_two_col {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .block_two_col_text-section .block_two_col {
    width: calc(50% - 12px);
  }
}
@media screen and (min-width: 768px) {
  .block_two_col_text-section .block_two_col_left {
    padding-right: 20px;
  }
}
@media screen and (min-width: 1024px) {
  .block_two_col_text-section .block_two_col_left {
    padding-right: 8%;
  }
}
.block_two_col_text-section .block_two_col_left p {
  margin-bottom: 30px;
}
@media screen and (min-width: 768px) {
  .block_two_col_text-section .block_two_col_right {
    padding-right: 20px;
  }
}
@media screen and (min-width: 1024px) {
  .block_two_col_text-section .block_two_col_right {
    padding-right: 8%;
  }
}
.block_two_col_text-section .block_two_col_right.type--paragraph-xl {
  line-height: 1.87;
}
.block_two_col_text-section .block_two_col_right p {
  margin-bottom: 15px;
}
.block_two_col_text-section .block_two_col_right p + h3 {
  margin-top: 40px;
}
@media screen and (min-width: 768px) {
  .block_two_col_text-section .block_two_col_right p + h3 {
    margin-top: 72px;
  }
}
.block_two_col_text-section .block_two_col_right p + .btn {
  margin-top: 15px;
}
.block_two_col_text-section .block_two_col_right :last-child {
  margin-bottom: 0;
}

@media screen and (min-width: 768px) {
  .block_quotes-section .block_quotes-section-col:only-child {
    width: calc(50% + 60px);
  }
}
@media screen and (min-width: 1024px) {
  .block_quotes-section .block_quotes-section-col:only-child {
    width: calc(50% + 100px);
  }
}
.block_quotes-section .block_quotes-section-col blockquote {
  margin-bottom: 0;
}

@media screen and (min-width: 1024px) {
  .block_service_list-section .block_service_list-text {
    max-width: 55%;
  }
}
.block_service_list-section .btn {
  margin-top: 13px;
}

.block_service-list-row {
  --items-per-row--row-gap: 0;
  justify-content: left;
  margin-top: 2.5rem;
}
.block_service-list-row.block_service-list-columns-2 .block_service-list-col-box {
  padding-bottom: 41px;
}
.block_service-list-row .block_service-list-col {
  margin-bottom: -2px;
}
.block_service-list-row .block_service-list-col-box {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  height: 100%;
  padding: 38px 0 46px;
}
.block_service-list-row .block_service-list-col-box h3 {
  margin-bottom: 19px;
}
.block_service-list-row .link:before {
  bottom: 1px;
}

.block_text_image-section .block_text_image-list-item {
  display: flex;
  flex-direction: column-reverse;
}
@media screen and (min-width: 768px) {
  .block_text_image-section .block_text_image-list-item {
    flex-direction: row;
  }
}
@media screen and (min-width: 768px) {
  .block_text_image-section .block_hero--holder-text-to-top .block_text_image-item-text-holder {
    padding-top: 0;
  }
}
@media screen and (min-width: 768px) {
  .block_text_image-section .block_text_image-section--text-to-bottom .block_text_image-item-text-holder {
    padding-bottom: 0;
  }
}
.block_text_image-section .block_hero--holder-two-images .block_text_image-item-img-first {
  padding-bottom: 97.7%;
}
@media screen and (min-width: 768px) {
  .block_text_image-section .block_text_image--image-wide .block_text_image-item-img-holder {
    width: 49.1666666667%;
  }
  .block_text_image-section .block_text_image--image-wide .block_text_image-item-img-holder .block_text_image-item-img {
    --color-block--width: 84.1807909605%;
  }
  .block_text_image-section .block_text_image--image-wide .block_text_image-item-text-holder {
    width: 50.8333333333%;
  }
}
@media screen and (min-width: 768px) {
  .block_text_image-section .block_hero--holder-image-right.block_text_image-list-item {
    flex-direction: row-reverse;
  }
}
@media screen and (min-width: 768px) {
  .block_text_image-section .block_hero--holder-image-right .block_text_image-item-text-holder {
    padding-right: 60px;
    padding-left: 30px;
    width: 50.8%;
    max-width: calc(720px + 0.8vw);
  }
}
@media screen and (min-width: 1024px) {
  .block_text_image-section .block_hero--holder-image-right .block_text_image-item-text-holder {
    padding-right: 136px;
    padding-left: 60px;
  }
}
@media screen and (min-width: 768px) {
  .block_text_image-section .block_hero--holder-image-right .block_text_image-item-img-holder {
    width: 49.2%;
  }
}
.block_text_image-section .block_service_list-title {
  margin-bottom: 26px;
}
.block_text_image-section .block_service_list-subtitle {
  display: block;
  margin-bottom: 17px;
}
.block_text_image-section p {
  margin-bottom: 13px;
}
.block_text_image-section .block_text_image-item-img-holder {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .block_text_image-section .block_text_image-item-img-holder {
    width: 41.4%;
  }
}
.block_text_image-section .block_text_image-item-text-holder {
  padding-left: 20px;
  padding-right: 20px;
}
@media screen and (min-width: 768px) {
  .block_text_image-section .block_text_image-item-text-holder {
    width: 58.6%;
    padding-left: 60px;
    max-width: calc(720px + 8.6vw);
  }
}
@media screen and (min-width: 1024px) {
  .block_text_image-section .block_text_image-item-text-holder {
    padding-left: 9.325vw;
    padding-right: 60px;
  }
}
@media screen and (min-width: 1440px) {
  .block_text_image-section .block_text_image-item-text-holder {
    padding-left: 136px;
    padding-right: 60px;
  }
}
.block_text_image-section .block_text_image-item-text-holder :last-child {
  margin-bottom: 0;
}
.block_text_image-section .block_text_image-item-img:only-child {
  height: 100%;
}
.block_text_image-section .block_text_image-item-img-second {
  width: 80%;
  margin-top: -61px;
  z-index: 1;
  padding-bottom: 75%;
}
@media screen and (min-width: 768px) {
  .has-brick-background-color + .block_text_image-section:not(.has-brick-background-color):has(.block_hero--holder-text-to-top) {
    padding-top: 9.46vw;
  }
}
@media screen and (min-width: 768px) and (min-width: 1440px) {
  .has-brick-background-color + .block_text_image-section:not(.has-brick-background-color):has(.block_hero--holder-text-to-top) {
    padding-top: 140px;
  }
}
@media screen and (min-width: 768px) {
  .has-steel-background-color + .block_text_image-section:not(.has-steel-background-color):has(.block_hero--holder-text-to-top) {
    padding-top: 9.46vw;
  }
}
@media screen and (min-width: 768px) and (min-width: 1440px) {
  .has-steel-background-color + .block_text_image-section:not(.has-steel-background-color):has(.block_hero--holder-text-to-top) {
    padding-top: 140px;
  }
}
@media screen and (min-width: 768px) {
  .has-cloud-background-color + .block_text_image-section:not(.has-cloud-background-color):has(.block_hero--holder-text-to-top) {
    padding-top: 9.46vw;
  }
}
@media screen and (min-width: 768px) and (min-width: 1440px) {
  .has-cloud-background-color + .block_text_image-section:not(.has-cloud-background-color):has(.block_hero--holder-text-to-top) {
    padding-top: 140px;
  }
}
@media screen and (min-width: 768px) {
  .has-wood-background-color + .block_text_image-section:not(.has-wood-background-color):has(.block_hero--holder-text-to-top) {
    padding-top: 9.46vw;
  }
}
@media screen and (min-width: 768px) and (min-width: 1440px) {
  .has-wood-background-color + .block_text_image-section:not(.has-wood-background-color):has(.block_hero--holder-text-to-top) {
    padding-top: 140px;
  }
}
@media screen and (min-width: 768px) {
  .has-glass-background-color + .block_text_image-section:not(.has-glass-background-color):has(.block_hero--holder-text-to-top) {
    padding-top: 9.46vw;
  }
}
@media screen and (min-width: 768px) and (min-width: 1440px) {
  .has-glass-background-color + .block_text_image-section:not(.has-glass-background-color):has(.block_hero--holder-text-to-top) {
    padding-top: 140px;
  }
}
@media screen and (min-width: 768px) {
  .has-sage-background-color + .block_text_image-section:not(.has-sage-background-color):has(.block_hero--holder-text-to-top) {
    padding-top: 9.46vw;
  }
}
@media screen and (min-width: 768px) and (min-width: 1440px) {
  .has-sage-background-color + .block_text_image-section:not(.has-sage-background-color):has(.block_hero--holder-text-to-top) {
    padding-top: 140px;
  }
}
@media screen and (min-width: 768px) {
  .has-charcoal-background-color + .block_text_image-section:not(.has-charcoal-background-color):has(.block_hero--holder-text-to-top) {
    padding-top: 9.46vw;
  }
}
@media screen and (min-width: 768px) and (min-width: 1440px) {
  .has-charcoal-background-color + .block_text_image-section:not(.has-charcoal-background-color):has(.block_hero--holder-text-to-top) {
    padding-top: 140px;
  }
}
@media screen and (min-width: 768px) {
  .has-gray-background-color + .block_text_image-section:not(.has-gray-background-color):has(.block_hero--holder-text-to-top) {
    padding-top: 9.46vw;
  }
}
@media screen and (min-width: 768px) and (min-width: 1440px) {
  .has-gray-background-color + .block_text_image-section:not(.has-gray-background-color):has(.block_hero--holder-text-to-top) {
    padding-top: 140px;
  }
}
@media screen and (min-width: 768px) {
  .has-white-background-color + .block_text_image-section:not(.has-white-background-color):has(.block_hero--holder-text-to-top) {
    padding-top: 9.46vw;
  }
}
@media screen and (min-width: 768px) and (min-width: 1440px) {
  .has-white-background-color + .block_text_image-section:not(.has-white-background-color):has(.block_hero--holder-text-to-top) {
    padding-top: 140px;
  }
}

.block_unordered_list-section .block_unordered_list-title {
  margin-bottom: 32px;
}
.block_unordered_list-section p {
  margin-bottom: 16px;
}
.block_unordered_list-section ul {
  margin-top: 4px;
  margin-bottom: 16px;
  padding-left: 30px;
}
.block_unordered_list-section .block_unordered_list-col {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .block_unordered_list-section .block_unordered_list-col {
    width: calc(50% - 14px);
    padding-right: 20px;
  }
}
@media screen and (min-width: 1024px) {
  .block_unordered_list-section .block_unordered_list-col-left {
    padding-right: 8%;
  }
}
@media screen and (min-width: 1024px) {
  .block_unordered_list-section .block_unordered_list-col-right {
    padding-right: 4%;
  }
}
.block_unordered_list-section .block_unordered_list-box p:last-child {
  margin: 0;
}
.block_unordered_list-section .block_unordered_list-holder {
  margin-bottom: 40px;
}

.block_tiled_service_list-row {
  align-items: stretch;
  --items-per-row--gap: 2rem;
}
.block_tiled_service_list-holder {
  height: auto;
}
.block_tiled_service_list-holder.block_tiled_service_item-img-box {
  padding: 0;
}
.block_tiled_service_list-holder .block_tiled_service_list-img {
  padding-bottom: 0;
  min-height: 370px;
  margin: calc(-3.379vw - 1px);
  height: calc(100% + 6.758vw + 2px);
}
@media screen and (min-width: 768px) {
  .block_tiled_service_list-holder .block_tiled_service_list-img {
    margin: calc(-3.379vw - 1px) calc(-3.379vw - 1px) calc(-3.11vw - 1px);
    height: calc(100% + 6.758vw + 2px);
  }
}
@media screen and (min-width: 1440px) {
  .block_tiled_service_list-holder .block_tiled_service_list-img {
    margin: -51px -51px -47px;
    height: calc(100% + 98px);
  }
}
.block_tiled_service_list-holder .block_tiled_service_list-subtitle {
  margin-bottom: 13px;
  display: block;
}
.block_tiled_service_list-holder .block_tiled_service_list-title {
  margin-bottom: 18px;
}
.block_tiled_service_list-holder ul {
  margin-bottom: 20px;
  padding-left: 23px;
}

.block_numbered_list-section h2 {
  margin-bottom: 32px;
}
.block_numbered_list-section h3 {
  margin-bottom: 20px;
}
.block_numbered_list-section p {
  margin-bottom: 16px;
}
.block_numbered_list-section .block_numbered_col {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .block_numbered_list-section .block_numbered_col {
    width: calc(50% - 27px);
  }
}
@media screen and (min-width: 1024px) {
  .block_numbered_list-section .block_numbered_col.block_numbered_col-left {
    width: calc(50% - 120px);
  }
}
.block_numbered_list-section .block_numbered-item p {
  margin-bottom: 0;
}
@media screen and (min-width: 1024px) {
  .block_numbered_list-section .block_hero--holder-has-underline .block_numbered_col-right {
    padding-right: 28px;
  }
}
.block_numbered_list-section .block_numbered-item-index {
  margin-bottom: 14px;
  display: block;
}

.block_hero--holder-has-line-graph .block_numbered-item {
  border: 0;
  margin: 0;
  padding: 0;
  padding-bottom: 30px;
  padding-left: 44px;
  position: relative;
}
@media screen and (min-width: 1024px) {
  .block_hero--holder-has-line-graph .block_numbered-item {
    padding-left: 74px;
    padding-bottom: 49px;
  }
}
.block_hero--holder-has-line-graph .block_numbered-item:before {
  content: "";
  left: 0;
  top: 0;
  position: absolute;
  width: 28px;
  height: 28px;
  border: 2px solid var(--current-numberline-color);
  margin-left: -14px;
}
.block_hero--holder-has-line-graph .block_numbered-item:after {
  content: "";
  position: absolute;
  top: 28px;
  bottom: 0;
  left: 0;
  border-left: 2px solid var(--current-numberline-color);
}
.block_hero--holder-has-line-graph .block_numbered-item:last-child {
  padding-bottom: 0;
}
.block_hero--holder-has-line-graph .block_numbered-item:last-child:after {
  display: none;
}

@media screen and (min-width: 768px) {
  .sticky {
    position: sticky;
    top: 0;
  }
}

.table-card {
  display: block;
}
.table-card tbody {
  display: grid;
  grid-template-columns: [tablerow-start label-start] 13.75ch [label-end desc-start] 1fr [desc-end tablerow-end];
  -moz-column-gap: 2.25rem;
       column-gap: 2.25rem;
  grid-template-rows: auto;
  grid-auto-rows: 1fr;
}
.table-card tbody tr {
  grid-template-columns: subgrid;
  display: grid;
  grid-column: tablerow;
}
.table-card tbody tr > th:first-of-type, .table-card tbody tr td:first-of-type {
  grid-column: label;
}
.table-card tbody tr > th:not(:first-of-type), .table-card tbody tr td:not(:first-of-type) {
  grid-column: desc;
}
.table-card tr {
  padding: 1.5rem 0;
  border-top-width: 2px;
  border-top-style: solid;
}
.table-card tr:last-of-type {
  border-bottom-width: 2px;
  border-bottom-style: solid;
}
.table-card th {
  max-width: 15ch;
}
.table-card th, .table-card td {
  padding: 0;
  vertical-align: top;
  text-align: left;
}

.table-block-footer {
  margin-top: 2rem;
}
