/** Site Custom Stylesheet (From File) **/ 



 /** Site Custom Styles (From DB) **/ 

:root  {
  --root-font-size: 16px;
  /* ========== PRIMITIVE DESIGN TOKENS ========== */ /* Primitives are the core building blocks of the design system, often used to define raw values (e.g., colors, font sizes, spacing). Naming Convention: --[category]-[type]-[modifier] • Category: Broad category of the design token (e.g., color, font, spacing). • Type: Specific type within the category (e.g., primary, secondary, neutral). • Modifier: Optional, used to define variations (e.g., light, dark, large). */ /* --- Colours --- */ --color-brand: #B88B5F;
  --color-brand-light: color-mix(in srgb, var(--color-brand) 90%, white);
  --color-brand-lighter: color-mix(in srgb, var(--color-brand) 80%, white);
  --color-brand-lightest: color-mix(in srgb, var(--color-brand) 70%, white);
  --color-brand-dark: color-mix(in srgb, var(--color-brand) 90%, black);
  --color-brand-darker: color-mix(in srgb, var(--color-brand) 80%, black);
  --color-brand-darkest: color-mix(in srgb, var(--color-brand) 70%, black);
  --color-primary: var(--color-brand);
  --color-primary-light: color-mix(in srgb, var(--color-primary) 90%, white);
  --color-primary-lighter: color-mix(in srgb, var(--color-primary) 80%, white);
  --color-primary-lightest: color-mix(in srgb, var(--color-primary) 70%, white);
  --color-primary-dark: color-mix(in srgb, var(--color-primary) 90%, black);
  --color-primary-darker: color-mix(in srgb, var(--color-primary) 80%, black);
  --color-primary-darkest: color-mix(in srgb, var(--color-primary) 70%, black);
  --color-secondary: var(--color-brand);
  --color-secondary-light: color-mix(in srgb, var(--color-secondary) 90%, white);
  --color-secondary-lighter: color-mix(in srgb, var(--color-secondary) 80%, white);
  --color-secondary-lightest: color-mix(in srgb, var(--color-secondary) 70%, white);
  --color-secondary-dark: color-mix(in srgb, var(--color-secondary) 90%, black);
  --color-secondary-darker: color-mix(in srgb, var(--color-secondary) 80%, black);
  --color-secondary-darkest: color-mix(in srgb, var(--color-secondary) 70%, black);
  --color-accent: var(--color-brand);
  --color-accent-light: color-mix(in srgb, var(--color-accent) 90%, white);
  --color-accent-lighter: color-mix(in srgb, var(--color-accent) 80%, white);
  --color-accent-lightest: color-mix(in srgb, var(--color-accent) 70%, white);
  --color-accent-dark: color-mix(in srgb, var(--color-accent) 90%, black);
  --color-accent-darker: color-mix(in srgb, var(--color-accent) 80%, black);
  --color-accent-darkest: color-mix(in srgb, var(--color-accent) 70%, black);
  --color-neutral: #EEEEEE;
  --color-neutral-light: color-mix(in srgb, var(--color-neutral) 75%, white);
  --color-neutral-lighter: color-mix(in srgb, var(--color-neutral) 50%, white);
  --color-neutral-lightest: color-mix(in srgb, var(--color-neutral) 25%, white);
  --color-neutral-dark: color-mix(in srgb, var(--color-neutral) 95%, black);
  --color-neutral-darker: color-mix(in srgb, var(--color-neutral) 90%, black);
  --color-neutral-darkest: color-mix(in srgb, var(--color-neutral) 85%, black);
  --color-neutral-alt: #f4f4f4;
  --color-neutral-alt-light: color-mix(in srgb, var(--color-neutral-alt) 75%, white);
  --color-neutral-alt-lighter: color-mix(in srgb, var(--color-neutral-alt) 50%, white);
  --color-neutral-alt-lightest: color-mix(in srgb, var(--color-neutral-alt) 25%, white);
  --color-neutral-alt-dark: color-mix(in srgb, var(--color-neutral-alt) 95%, black);
  --color-neutral-alt-darker: color-mix(in srgb, var(--color-neutral-alt) 90%, black);
  --color-neutral-alt-darkest: color-mix(in srgb, var(--color-neutral-alt) 85%, black);
  --color-text-primary: black;
  --color-text-primary-dark: black;
  --color-text-primary-darker: black;
  --color-text-primary-darkest: black;
  --color-text-primary-light: #444444;
  --color-text-primary-lighter: #555555;
  --color-text-primary-lightest: #666666;
  --color-text-secondary: #666666;
  --color-text-inverse: #ffffff;
  --color-button-primary-bg: var(--color-primary);
  --color-button-primary-text-color: var(--color-text-inverse);
  --color-form-field-text-color: inhert;
  --color-form-field-text-disabled: #999999;
  --color-form-field-border: #CCCCCC;
  --color-form-field-border-focus: var(--color-primary);
  --color-form-field-bg: #FFFFFF;
  --color-form-field-bg-disabled: #F5F5F5;
  --color-form-button-text-color: var(--color-button-primary-text-color);
  --color-form-button-bg: var(--color-button-primary-bg);
  --color-checkbox-accent: var(--color-primary);
  /* ========== SEMANTIC DESIGN TOKENS ========== */ /* Semantic variables are context-specific and map to the primitives. They define how a primitive is used (e.g., --body-text-color, --heading-text-color). Naming Convention: --[context]-[property] • Context: Where the variable is used (e.g., body, heading, button, card). • Property: Specific property being controlled (e.g., text-color, background-color, font-size). */ /* --- Typography --- */ --body-text-color: var(--color-text-primary);
  --body-font-size: 1.125rem;
  --body-font-family: 'Instrument Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  --body-line-height: 23.4px;
  --paragraph-spacing: 1rem;
  --heading-spacing: 1rem;
  --heading-text-color: var(--color-text-primary);
  --heading-font-family: 'Cardo', serif;
  --heading-font-weight: var(--font-weight-normal);
  --heading-line-height: 1;
  --heading-1-text-color: var(--heading-text-color);
  --heading-2-text-color: var(--heading-text-color);
  --heading-3-text-color: var(--heading-text-color);
  --heading-4-text-color: var(--heading-text-color);
  --heading-5-text-color: var(--heading-text-color);
  --heading-6-text-color: var(--heading-text-color);
  --heading-1-font-weight: var(--heading-font-weight);
  --heading-2-font-weight: var(--heading-font-weight);
  --heading-3-font-weight: var(--heading-font-weight);
  --heading-4-font-weight: var(--heading-font-weight);
  --heading-5-font-weight: var(--heading-font-weight);
  --heading-6-font-weight: var(--font-weight-medium);
  --heading-1-font-size: 3.125rem;
  --heading-2-font-size: 3.5rem;
  --heading-3-font-size: 2.1875rem;
  --heading-4-font-size: 1.5625rem;
  --heading-5-font-size: 1.5rem;
  --heading-6-font-size: 1.125rem;
  --heading-1-line-height: var(--heading-line-height);
  --heading-2-line-height: var(--heading-line-height);
  --heading-3-line-height: var(--heading-line-height);
  --heading-4-line-height: 1.3;
  --heading-5-line-height: 1.4;
  --heading-6-line-height: 1.4;
  /* Buttons */ /* --button-primary-bg: var(--color-primary);
  --button-primary-text: var(--color-neutral-light);
  --button-secondary-bg: var(--color-secondary);
  --button-secondary-text: var(--color-neutral-light);
  */ /* Links */ --link-color: var(--body-text-color);
  --link-hover-color: color-mix(in srgb, var(--link-color) 80%, white);
  --nav-link-color: var(--link-color);
  --nav-link-hover-color: var(--link-hover-color);
}
/* ========== CSS RESET ========== */ *, *::before, *::after  {
  box-sizing: border-box;
}
body, h1, h2, h3, h4, h5, h6, p, figure, blockquote, dl, dd  {
  margin: 0;
}
p  {
  margin-top: 0;
  margin-bottom: var(--paragraph-spacing);
}
html  {
  -webkit-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
}
input:not([type="checkbox"]), textarea  {
  width: 100%;
}
button, input, select, textarea  {
  font-family: inherit;
}
button  {
  cursor: pointer;
}
hr  {
  border: 0;
  height: 1px;
  background: var(--color-text-primary, #ddd);
  margin: 1rem 0;
}
a  {
  text-decoration: none;
  color: var(--link-color);
}
/* note that we don't set a:visited because it overrides other colour settings for other classes unless we specificaly set the :visited option on all other link classes */ a:hover, a:focus  {
  color: var(--link-hover-color);
  text-decoration: underline;
}
/* ========== OVERALL DOCUMENT DEFAULTS ========== */ html  {
  font-size: var(--root-font-size);
  /* for smooth scrolling to internal anchors */ scroll-behavior: smooth;
}
body  {
  font-family: var(--body-font-family);
  font-size: var(--body-font-size);
  color: var(--body-text-color);
  line-height: var(--body-line-height);
  margin: 0;
}
/* ========== HEADINGS ========== */ h1, h2, h3, h4, h5, h6  {
  font-family: var(--heading-font-family);
  color: var(--heading-text-color);
  font-weight: var(--heading-font-weight);
  margin-top: 0;
  margin-bottom: var(--heading-spacing);
}
h1, .heading-style-h1  {
  font-size: var(--heading-1-font-size);
  font-weight: var(--heading-1-font-weight);
  line-height: var(--heading-1-line-height);
  color: var(--heading-1-text-color);
}
h2, .heading-style-h2  {
  font-size: var(--heading-2-font-size);
  font-weight: var(--heading-2-font-weight);
  line-height: var(--heading-2-line-height);
  color: var(--heading-2-text-color);
}
h3, .heading-style-h3  {
  font-size: var(--heading-3-font-size);
  font-weight: var(--heading-3-font-weight);
  line-height: var(--heading-3-line-height);
  color: var(--heading-3-text-color);
}
h4, .heading-style-h4  {
  font-size: var(--heading-4-font-size);
  font-weight: var(--heading-4-font-weight);
  line-height: var(--heading-4-line-height);
  color: var(--heading-4-text-color);
}
h5, .heading-style-h5  {
  font-size: var(--heading-5-font-size);
  font-weight: var(--heading-5-font-weight);
  line-height: var(--heading-5-line-height);
  color: var(--heading-5-text-color);
}
h6, .heading-style-h6  {
  font-family: var(--body-font-family);
  font-size: var(--heading-6-font-size);
  font-weight: var(--heading-6-font-weight);
  line-height: var(--heading-6-line-height);
  color: var(--heading-6-text-color);
}
@media (max-width: 640px)  {
  h1, .heading-style-h1  {
    font-size: calc(0.6*var(--heading-1-font-size));
  }
  h2, .heading-style-h2  {
    font-size: calc(0.75*var(--heading-2-font-size));
  }
  h3, .heading-style-h3  {
    font-size: calc(0.8*var(--heading-3-font-size));
  }
  h4, .heading-style-h4  {
    font-size: calc(0.8*var(--heading-4-font-size));
  }
  h5, .heading-style-h5  {
    font-size: calc(0.8*var(--heading-5-font-size));
  }
  h6, .heading-style-h6  {
    font-size: calc(0.8*var(--heading-6-font-size));
  }
}
/* ========== BUTTONS ========== */ .btn-primary, .btn-ghost, .btn-light, .btn-ghost-light  {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 2px;
  border-width: 1px;
  border-style: solid;
  padding: 0.7rem 1.5rem;
  letter-spacing: 1.2px;
  text-decoration: none;
  text-wrap: nowrap;
  font-weight: var(--font-weight-medium);
  font-size: 0.75rem;
  text-transform: uppercase;
}
.btn-primary:hover, .btn-ghost:hover, .btn-light:hover, .btn-ghost-light:hover  {
  cursor: pointer;
  text-decoration: none;
}
.btn-primary  {
  background-color: var(--color-button-primary-bg);
  border-color: var(--color-button-primary-bg);
  color: var(--color-button-primary-text-color);
}
.btn-primary:hover  {
  filter: brightness(110%);
  color: var(--color-button-primary-text-color);
}
.btn-ghost  {
  background-color: transparent;
  color: var(--color-text-primary);
  border-color: currentColor;
}
.btn-ghost:hover  {
  border-color: var(--color-button-primary-bg);
  color: var(--color-text-primary);
}
.btn-light  {
  background-color: var(--color-text-inverse);
  color: var(--color-text-primary);
  border-color: var(--color-text-inverse);
}
.btn-light:hover  {
  background-color: color-mix(in srgb, var(--color-text-inverse) 95%, black);
  border-color: color-mix(in srgb, var(--color-text-inverse) 95%, black);
  color: var(--color-text-primary);
}
.btn-ghost-light  {
  background-color: transparent;
  color: var(--color-text-inverse);
  border-color: currentColor;
}
.btn-ghost-light:hover  {
  color: color-mix(in srgb, var(--color-text-inverse) 90%, black);
  border-color: currentColor;
}
@media (max-width: 640px)  {
  .btn-primary, .btn-ghost, .btn-light, .btn-ghost-light  {
    width: 100%;
    padding-top: 1rem;
    padding-bottom: 1rem;
    text-wrap: wrap;
  }
}
.my-form-row  {
  margin: 0 0 20px 0;
}
@media (max-width: 768px)  {
  .button-group  {
    justify-content: center;
  }
}
blockquote  {
  border-left: 2px solid #D2D0BA;
  padding-left: 1.5rem;
  margin: 3rem 0;
  margin-left: 42px;
  font-family: var(--body-font-family);
  font-size: 18px;
  font-weight: 400;
  line-height: 1.3;
}
.highlight-on-scroll  {
  transition: color 0.6s ease;
}
.highlight-on-scroll.is-highlighted  {
  color: var(--color-brand);
}
.static-highlight-text  {
  color: var(--color-brand);
}
ul.feature-bullets  {
  list-style: none;
  padding-left: 0;
  margin-left: 0;
  margin-top: 30px;
  margin-bottom: 30px;
}
ul.feature-bullets li  {
  position: relative;
  padding-left: 55px;
  margin-bottom: 15px;
}
ul.feature-bullets li::before  {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 33px;
  height: 33px;
  /* Use the SVG as a mask */ -webkit-mask: url("/site-assets/images/list-icon.svg") center/contain no-repeat;
  mask: url("/site-assets/images/list-icon.svg") center/contain no-repeat;
  background-color: var(--color-brand);
}


 /** Content Section Styles **/ 

.content-section-521  {
  &.content-section  {
    position: relative;
    z-index: 1000;
  }
  /* making header section stretch full width of the page (not contained to the rest of the site's fixed max-width */ .content-section-inner  {
    max-width: 100%;
    padding-left: 3%;
    padding-right:3%;
  }
  .logo-container  {
    flex: 0.5;
    margin-top: 10px;
    margin-bottom: 10px;
  }
  .logo-container img  {
    width: 290px;
    max-width: 70vw;
  }
  .my-header  {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 7rem;
    column-gap: clamp(1rem, 3vw, 5rem);
  }
  .menu-container  {
    display: flex;
    flex: 2 1 0;
    justify-content: flex-end;
  }
  .menu-container a  {
    font-size: 1rem;
  }
  .header-actions  {
    display: flex;
    flex: 0 1 0;
    align-items: center;
    justify-content: flex-end;
    gap: 0rem;
  }
  .phone-icon  {
    color: var(--body-text-color);
  }
  .header-phone-number  {
    font-size: var(--text-size-lg);
    color: var(--body-text-color);
    text-decoration: none;
    font-weight: 500;
  }
  .header-phone-number:hover  {
    color: var(--body-text-color);
    text-decoration: underline;
  }
  .header-actions .btn-primary  {
    margin-left: 2.5rem;
  }
  .header-actions-mobile  {
    margin-top: 20px;
  }
  /* uncomment to make first item highlighted - often do this for single page sites */ /* .core-menu-01 nav ul li:first-child a  {
    color: var(--nav-link-hover-color);
  }
  */ @media (max-width: 1279px)  {
    .header-actions .btn-primary  {
      display: none;
    }
  }
  @media (max-width: 1023px)  {
    .menu-container  {
      justify-content: flex-end;
    }
    .header-actions  {
      display: none;
    }
  }
  @media (max-width: 767px)  {
    .logo-container  {
      text-align: center;
    }
    .header-actions a  {
      text-align: center;
    }
  }
}
.content-section-522  {
  .hero-content-col  {
    display: flex;
    flex-wrap: wrap;
    gap: 48px;
    justify-content: center;
  }
  h1  {
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    font-size: 9.375rem;
    font-weight: normal;
    line-height: 120px;
    text-transform: uppercase;
    width: 100%;
  }
  h1 span.top  {
    letter-spacing: -2.5px;
    max-width: 774px;
    text-align: right;
    width: 100%;
  }
  h1 span.top span  {
    letter-spacing: -22.5px;
  }
  h1 span.bottom  {
    text-align: center;
    width: 100%;
  }
  .hero-content  {
    max-width: 575px;
    width: 100%;
  }
  h6  {
    color: var(--color-brand);
    font-family: var(--body-font-family);
    font-weight: 600;
  }
  .hero-content p  {
    margin-bottom: 26px;
  }
  @media (max-width: 1279px)  {
    h1  {
      font-size: 8.5rem;
    }
  }
  @media (max-width: 1023px)  {
    h1  {
      font-size: 6rem;
      line-height: 100%;
    }
    h1 span.top  {
      max-width: 500px;
    }
  }
  @media (max-width: 767px)  {
    .hero-content-col  {
      text-align: center;
    }
    h1  {
      font-size: 4rem;
      line-height: 115%
    }
    h1 span.top span  {
      letter-spacing: -12.5px;
    }
    h1 span.top  {
      max-width: 100%;
      text-align: center;
    }
  }
}
.content-section-523  {
  .trusted-by-logos  {
    display: flex;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;
    gap: 3rem;
    padding: 1rem 0;
  }
  .trusted-by-logos > div  {
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .trusted-by-logos img  {
    max-height: 80px;
    height: auto;
    width: auto;
    display: block;
    max-width: 100%;
    filter: grayscale(100%);
    opacity: 0.8;
    transition: filter 0.3s, opacity 0.3s;
  }
  .trusted-by-logos img:hover  {
    filter: grayscale(0%);
    opacity: 1;
  }
  @media (max-width: 1023px)  {
    .trusted-by-logos  {
      flex-wrap: wrap;
    }
  }
}
.content-section-524  {
  .my-grid  {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    column-gap: clamp(2rem, 10vw, 12rem);
    row-gap: 0;
  }
  .col-1 p, .col-1 blockquote  {
    color: #4F4F4F;
  }
  .my-grid .col-2  {
    align-self: start;
    position: sticky;
    top: 2rem;
  }
  .col-2  {
    position: relative;
    .content-offset  {
      bottom: -50px;
      left: 0;
      position: absolute;
      width: 170px;
      p  {
        font-family: var(--heading-font-family);
        font-size: 0.8425rem;
        letter-spacing: -0.5px;
        line-height: 110%;
        text-align: center;
      }
      .img-offset  {
        position: absolute;
        right: -70px;
        bottom: 30px;
      }
    }
  }
  @media (max-width: 767px)  {
    .my-grid  {
      grid-template-columns: 1fr;
      row-gap: 2rem;
      column-gap: 0;
    }
    /* Uncomment this section if you'd like to reverse column order when stacking on smaller screens .my-grid .col-1  {
      order: 2;
    }
    .my-grid .col-2  {
      order: 1;
    }
    */ .my-grid .col-1  {
      position: relative;
    }
  }
}
.content-section-525  {
  padding-top: 5rem;
  padding-bottom: 5rem;
  .content-section-inner  {
    max-width: calc(var(--base-content-section-max-width) * 0.7);
  }
  &.content-section  {
    background-image: url('site-assets/images/white-quote.webp');
    background-position: left 12vw top;
    background-repeat: no-repeat;
    background-size: 24vw;
  }
  .my-blockquote  {
    text-align: center;
    blockquote  {
      border: none;
      color: var(--color-brand);
      font-family: var(--heading-font-family);
      font-size: 4.5rem;
      font-weight: 400;
      letter-spacing: -2.88px;
      line-height: 100%;
      margin-bottom: 40px;
      padding-left:0;
    }
    cite  {
      font-family: var(--heading-font-family);
      font-weight: 700;
      font-size:1.5rem;
      font-style: normal;
      span  {
        font-family: var(--body-font-family);
        font-size: 1rem;
        font-weight: 400;
      }
    }
  }
  @media (max-width: 1023px)  {
    &.content-section  {
      background-position: left 2vw top;
      background-size: 20vw;
      padding-top: 80px;
    }
    .my-blockquote  {
      blockquote  {
        font-size: 68px;
        margin-bottom: 20px;
      }
    }
  }
  @media (max-width: 767px)  {
    .my-blockquote  {
      blockquote  {
        font-size: 55px;
        margin-bottom: 20px;
      }
    }
  }
  @media (max-width: 639px)  {
    &.content-section  {
      padding-top: 50px;
    }
    .my-blockquote  {
      blockquote  {
        font-size: 55px;
        margin-bottom: 20px;
      }
    }
  }
}
.content-section-526  {
  .my-grid-top  {
    display: grid;
    grid-template-columns: 1.1fr 1.1fr;
    align-items: center;
    column-gap: clamp(2rem, 4vw, 5rem);
    row-gap: 0;
    align-items: self-start;
    p  {
      color: #7F7F7F;
      font-weight: 500;
    }
  }
  .my-grid  {
    display: grid;
    gap: 2rem;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    margin-bottom: 80px;
    .col:nth-child(2)  {
      transform: translateY(90px);
    }
    .my-list  {
      display: flex;
      flex-flow: column;
      gap: 24px;
      justify-content: center;
      align-items: center;
      padding: 32px;
      img  {
        margin: 0 auto;
      }
      p  {
        text-align: center;
        line-height: 1.4;
      }
      .my-author-panel p  {
        line-height: 1.6;
        color: #7F7F7F;
      }
      .my-author-panel  {
        align-items: center;
        display: flex;
        gap: 16px;
        .my-author-avatar img  {
          border-radius: 50%;
          margin-bottom: 0;
          width: 48px;
        }
        .my-author-details  {
          h4  {
            font-size: 16px;
            font-weight: 600;
            text-align: center;
            margin-bottom: 5px;
          }
          p  {
            font-size: 16px;
            text-align: center;
          }
        }
      }
      h4  {
        font-family: var(--body-font-family);
        font-size: 24px;
        margin-bottom: 0;
        letter-spacing: 0;
      }
      p  {
        margin-bottom: 0;
      }
    }
  }
  .my-list:last-child  {
    margin-bottom: 0;
  }
  @media (max-width: 1023px)  {
    .my-grid  {
      display: flex;
      flex-wrap: wrap;
      .col:nth-child(2)  {
        transform: none;
      }
      .col:not(:last-child)  {
        width: calc(50% - 1rem);
      }
      .col:last-child  {
        display: flex;
        flex-wrap: wrap;
        gap: 2rem;
        width: 100%;
        .my-list  {
          width: calc(50% - 1rem);
        }
      }
    }
  }
  @media (max-width: 767px)  {
    .my-grid-top  {
      grid-template-columns: 1fr;
      row-gap: 2rem;
      column-gap: 0;
    }
    /* Uncomment this section if you'd like to reverse column order when stacking on smaller screens */ /* .my-grid-top .col-1  {
      order: 2;
    }
    .my-grid-top .col-2  {
      order: 1;
    }
    */ .my-grid  {
      .my-list  {
        gap: 10px;
        padding: 20px;
      }
    }
  }
  @media (max-width: 639px)  {
    .my-grid  {
      gap: 1rem;
      .col  {
        width: 100% !important;
        .my-list  {
          width: 100% !important;
        }
      }
    }
  }
}
.content-section-536  {
  background-color: #020202;
  .my-grid  {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    align-items: center;
    column-gap: clamp(2rem, 4vw, 5rem);
    row-gap: 0;
  }
  p  {
    color: rgba(255,255,255,.7);
  }
  h2  {
    margin-right: -10vw;
    color: var(--color-text-inverse);
    font-size: 4.5rem;
    z-index: 99;
    position: relative;
  }
  @media (max-width: 767px)  {
    .my-grid  {
      grid-template-columns: 1fr;
      row-gap: 2rem;
      column-gap: 0;
    }
    h2  {
      margin-right: 0;
    }
    /* Uncomment this section if you'd like to reverse column order when stacking on smaller screens */ /* .my-grid .col-1  {
      order: 2;
    }
    .my-grid .col-2  {
      order: 1;
    }
    */
  }
}
.content-section-537  {
  .my-grid  {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    column-gap: clamp(2rem, 4vw, 5rem);
    row-gap: 0;
  }
  .col-2 p, .col-2 blockquote  {
    color: #4F4F4F;
  }
  @media (max-width: 767px)  {
    .my-grid  {
      grid-template-columns: 1fr;
      row-gap: 2rem;
      column-gap: 0;
    }
    /* Uncomment this section if you'd like to reverse column order when stacking on smaller screens */ /* .my-grid .col-1  {
      order: 2;
    }
    .my-grid .col-2  {
      order: 1;
    }
    */
  }
}
.content-section-538  {
  padding-top: 5rem;
  padding-bottom: 5rem;
  .content-section-inner  {
    max-width: calc(var(--base-content-section-max-width) * 0.7);
  }
  &.content-section  {
    background-image: url('site-assets/images/white-quote.webp');
    background-position: left 12vw top;
    background-repeat: no-repeat;
    background-size: 24vw;
  }
  .my-blockquote  {
    text-align: center;
    blockquote  {
      border: none;
      color: #756C4D;
      font-family: var(--heading-font-family);
      font-size: 4.5rem;
      font-weight: 400;
      letter-spacing: -2.88px;
      line-height: 100%;
      margin-bottom: 40px;
      padding-left:0;
    }
    cite  {
      font-family: var(--heading-font-family);
      font-weight: 700;
      font-size:1.5rem;
      font-style: normal;
      span  {
        font-family: var(--body-font-family);
        font-size: 1rem;
        font-weight: 400;
      }
    }
  }
  @media (max-width: 1023px)  {
    &.content-section  {
      background-position: left 2vw top;
      background-size: 20vw;
      padding-top: 80px;
    }
    .my-blockquote  {
      blockquote  {
        font-size: 68px;
        margin-bottom: 20px;
      }
    }
  }
  @media (max-width: 767px)  {
    .my-blockquote  {
      blockquote  {
        font-size: 55px;
        margin-bottom: 20px;
      }
    }
  }
  @media (max-width: 639px)  {
    &.content-section  {
      padding-top: 50px;
    }
    .my-blockquote  {
      blockquote  {
        font-size: 55px;
        margin-bottom: 20px;
      }
    }
  }
}
.content-section-539  {
  .my-grid-top  {
    display: grid;
    grid-template-columns: 1.1fr 1.1fr;
    align-items: center;
    column-gap: clamp(2rem, 4vw, 5rem);
    row-gap: 0;
    align-items: self-start;
    margin-bottom: 65px;
    p  {
      color: #7F7F7F;
      font-weight: 500;
    }
  }
  .my-grid  {
    display: grid;
    gap: 4rem;
    grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
    margin-bottom: 80px;
    .my-list  {
      margin-bottom: 24px;
      h4  {
        font-family: var(--body-font-family);
        font-size: 24px;
        margin-bottom: 4px;
        letter-spacing: 0;
      }
      p  {
        margin-bottom: 0;
        line-height: 1.4;
      }
    }
  }
  .my-list:last-child  {
    margin-bottom: 0;
  }
  .button-group  {
    justify-content: center;
  }
  @media (max-width: 1023px)  {
    .my-grid  {
      gap: 0rem 10rem;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      .my-list  {
        margin-bottom: 15px;
        h4  {
          font-size: 20px;
        }
      }
    }
  }
  @media (max-width: 767px)  {
    .my-grid-top  {
      grid-template-columns: 1fr;
      row-gap: 2rem;
      column-gap: 0;
    }
    /* Uncomment this section if you'd like to reverse column order when stacking on smaller screens */ /* .my-grid-top .col-1  {
      order: 2;
    }
    .my-grid-top .col-2  {
      order: 1;
    }
    */ .my-grid  {
      gap: 0rem 5rem;
    }
  }
}
.content-section-554  {
  .my-grid  {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    column-gap: clamp(2rem, 5vw, 7rem);
    row-gap: 0;
  }
  .col-1  {
    align-self: start;
    position: sticky;
    top: 5rem;
    p  {
      color: #7F7F7F;
    }
  }
  .my-blog-wrap  {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
  }
  .blog-item h5  {
    font-weight: 700;
  }
  .blog-item p  {
    color: #7F7F7F;
    font-weight: 500;
    margin-bottom: 24px;
  }
  .blog-item .my-blog-thumb  {
    margin-bottom: 24px;
  }
  .blog-item .my-blog-thumb img  {
    display: block;
    max-width: auto;
    width: 100%;
  }
  .blog-item .my-blog-content a  {
    font-weight: 600;
    background-image: url(/site-assets/images/chevron-right.svg);
    background-position: right center;
    background-repeat: no-repeat;
    padding-right: 32px;
  }
  @media (max-width: 767px)  {
    .my-grid  {
      grid-template-columns: 1fr;
      row-gap: 2rem;
      column-gap: 0;
    }
    /* Uncomment this section if you'd like to reverse column order when stacking on smaller screens */ /* .my-grid .col-1  {
      order: 2;
    }
    .my-grid .col-2  {
      order: 1;
    }
    */ .col-1  {
      top: 0;
      position: relative;
    }
  }
}
.content-section-558  {
  background-color: #020202;
  &.content-section  {
    background-image: url('/site-assets/images/cta-bg.webp');
    background-position: right center;
    background-size: contain;
    background-repeat: no-repeat;
  }
  h1, h2, h3, h4, h5, h6, p  {
    color: var(--color-text-inverse);
  }
  .hero-content-container  {
    max-width: 31rem;
    padding-top: 4rem;
  }
  .hero-content-container h2  {
    font-size: 4.5rem;
  }
  .hero-subtext  {
    font-size: var(--text-size-lg);
    font-weight: 500;
    ;
    margin-bottom: 1.7rem;
    color: #7F7F7F
  }
  @media (max-width: 767px)  {
    &.content-section  {
      position: relative;
    }
    &.content-section:before  {
      background-color: #000;
      content:' ';
      opacity: .6;
      position: absolute;
      top: 0;
      height: 100%;
      width: 100%;
      left: 0;
    }
    .content-section-inner  {
      z-index: 9;
      position: relative;
    }
    .hero-content-container  {
      max-width: 100%;
      /* full width on smaller screens */ padding-top: 2rem;
    }
    h1  {
      font-size: var(--text-size-8xl);
    }
    .hero-subtext  {
      color: #bbbbbb;
    }
  }
  @media (max-width: 639px)  {
    &.content-section  {
      padding-top: 25px;
    }
  }
}
.content-section-559  {
  padding-top: 5rem;
  padding-bottom: 2rem;
  ;
  .my-footer-top  {
    display: flex;
    flex-wrap: wrap;
    column-gap: 1rem;
    row-gap: 1rem;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 75px;
  }
  .footer-flags  {
    display: flex;
    justify-content: center;
    column-gap: 1.5rem;
    width: fit-content;
    margin-top: 30px;
    margin-bottom: 35px;
    margin-left: auto;
    margin-right: auto;
  }
  .my-footer-bottom  {
    display: flex;
    justify-content: center;
    column-gap: 1.5rem;
    width: fit-content;
    margin-top: 32px;
    margin-left: auto;
    margin-right: auto;
  }
  .my-footer-bottom *  {
    font-size: var(--text-size-xs);
  }
  .my-footer-bottom a  {
    color: #4F4F4F;
    text-decoration: underline;
  }
  .footer-menu-container  {
    display: flex;
    justify-content: center;
  }
  .footer-socials  {
    display: flex;
    align-items: center;
    column-gap: 1rem;
  }
  .social-logo  {
    height: 22px;
    color: var(--body-text-color);
  }
  .my-acknowledgment  {
    font-size: var(--text-size-xs);
    color: #7F7F7F;
  }
  .copyright  {
    color: #4F4F4F;
  }
  hr  {
    border: none;
    height: 1px;
    background-color: #89898933;
  }
  @media (max-width: 767px)  {
    .my-footer-top  {
      justify-content: center;
      text-align: center;
    }
    .footer-logo  {
      width: 100%;
      text-align: center;
    }
    .footer-socials  {
      width: 100%;
      justify-content: center;
    }
    .footer-socials a  {
      text-align: center;
    }
    .my-footer-bottom  {
      flex-direction: column;
      align-items: center;
      row-gap: 10px;
      text-align: center;
    }
  }
  @media (max-width: 639px)  {
    .footer-flags  {
      display: flex;
      justify-content: center;
      column-gap: 0.5rem;
      width: auto;
      margin-top: 30px;
      margin-bottom: 35px;
    }
  }
}
.content-section-563  {
  .my-grid  {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    column-gap: clamp(2rem, 3vw, 7rem);
    row-gap: 0;
  }
  .col-1  {
    align-self: start;
    position: sticky;
    top: 5rem;
    p  {
      color: #7F7F7F;
    }
  }
  .my-timeline-container  {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    position: relative;
  }
  .my-timeline-container:before  {
    background-color: #D6D6D6;
    content: '';
    height: 100%;
    left: 14px;
    position: absolute;
    top: 0;
    width: 3px;
    z-index: 1;
  }
  .my-timeline  {
    padding-left: 75px;
    position: relative;
  }
  .my-timeline:before  {
    background-color: var(--color-text-primary);
    border: 8px solid #fff;
    border-radius: 50%;
    box-sizing: content-box;
    content: '';
    height: 15px;
    left: 0;
    position: absolute;
    top: 10px;
    width: 15px;
    z-index: 99;
  }
  .my-timeline h3  {
    color: var(--color-brand);
    font-size: 6.25rem;
    font-weight: 400;
    letter-spacing: -2px;
    opacity: .5;
  }
  .my-timeline p  {
    color: #7F7F7F;
    font-weight: 400;
  }
  .my-timeline.active, .my-timeline:hover  {
    h3  {
      opacity: 1;
    }
    p  {
      color: var(--color-text-primary);
    }
  }
  .my-timeline:hover:before  {
    background-color: var(--color-brand);
  }
  @media (max-width: 767px)  {
    .my-grid  {
      grid-template-columns: 1fr;
      row-gap: 2rem;
      column-gap: 0;
    }
    /* Uncomment this section if you'd like to reverse column order when stacking on smaller screens */ /* .my-grid .col-1  {
      order: 2;
    }
    .my-grid .col-2  {
      order: 1;
    }
    */ .col-1  {
      top: 0;
      position: relative;
    }
    .my-timeline h3  {
      font-size: 4rem;
    }
  }
}
