:root {
      color-scheme: light;
    }

    * {
      box-sizing: border-box;
    }

    body {
      margin: 0;
      min-height: 100vh;
      padding: 0;
      background-color: #ffffff;
      background-image: none;
      background-size: cover;
      background-position: center center;
      background-repeat: no-repeat;
      color: #181412;
      font-family: Inter, Arial, sans-serif;
    }

    .canvas {
      width: 100%;
      min-height: 100vh;
      margin: 0;
      padding: 0;
      background: #ffffff;
      border: 0;
    }

    [data-has-background-video="true"] {
      position: relative;
      overflow: hidden;
      isolation: isolate;
    }

    [data-has-background-video="true"] > :not(.editor-background-video-layer):not(.site-background-video-layer):not(.editor-parallax-background-layer):not(.site-parallax-background-layer) {
      position: relative;
      z-index: 2;
    }

    .site-nav {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 18px;
      min-height: 56px;
      border: 1px solid var(--nav-border, #d8c8b4);
      background: var(--nav-bg, #ffffff);
      color: var(--nav-text, #181412);
      padding: var(--nav-padding-y, 10px) var(--nav-padding-x, 14px);
      font-family: var(--nav-font, Inter, Arial, sans-serif);
      font-size: var(--nav-font-size, 14px);
    }

    .site-nav-list {
      display: flex;
      align-items: center;
      gap: var(--nav-row-gap, 0px) var(--nav-link-gap, 8px);
      margin: 0;
      padding: 0;
      list-style: none;
      width: 100%;
      justify-content: var(--nav-justify, flex-start);
    }

    .site-nav-toggle {
      display: none;
      align-items: center;
      justify-content: center;
      gap: 4px;
      width: 42px;
      height: 42px;
      border: 1px solid var(--nav-border, #d8c8b4);
      border-radius: 12px;
      background: transparent;
      color: inherit;
      cursor: pointer;
    }

    .site-nav-toggle span {
      display: block;
      width: 16px;
      height: 2px;
      border-radius: 999px;
      background: currentColor;
    }

    @media (max-width: 1180px) {
      .site-nav-list {
        justify-content: var(--nav-justify-laptop, var(--nav-justify, flex-start));
      }
    }

    @media (max-width: 900px) {
      .site-nav-list {
        justify-content: var(--nav-justify-tablet, var(--nav-justify-laptop, var(--nav-justify, flex-start)));
      }
    }

    @media (max-width: 680px) {
      .site-nav {
        flex-wrap: wrap;
        align-items: flex-start;
      }

      .site-nav-toggle {
        display: inline-flex;
        flex-direction: column;
        margin-left: auto;
      }

      .site-nav-list {
        display: none;
        width: 100%;
        flex-direction: column;
        align-items: flex-start;
        justify-content: var(--nav-justify-mobile, var(--nav-justify-tablet, var(--nav-justify-laptop, var(--nav-justify, flex-start))));
      }

      .site-nav[data-nav-open="true"] .site-nav-list {
        display: flex;
      }

      .site-nav-item,
      .site-nav-link {
        width: 100%;
      }

      .site-nav-submenu {
        position: static;
        min-width: 0;
        margin-top: 6px;
      }

      .site-nav-item:hover > .site-nav-submenu {
        display: grid;
      }
    }

    @media (max-width: 680px) {
      .site-nav-mega .site-nav-submenu {
        grid-template-columns: 1fr;
      }
    }

    .site-nav-item {
      position: relative;
    }

    .site-nav-link {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      min-height: 34px;
      border-radius: var(--nav-link-radius, 8px);
      padding: 6px 10px;
      color: inherit;
      font-size: 14px;
      text-decoration: none;
      white-space: nowrap;
    }

    .site-nav-link:hover {
      background: var(--nav-hover-bg, #f6f1eb);
      color: var(--nav-hover-text, #171411);
    }

    .site-nav-icon {
      font-size: 12px;
      opacity: 0.72;
    }

    .site-nav-badge {
      border-radius: 999px;
      border: 1px solid #d8c8b4;
      padding: 1px 6px;
      font-size: 10px;
      letter-spacing: 0.08em;
      text-transform: uppercase;
    }

    .site-nav-submenu {
      position: absolute;
      top: calc(100% + 6px);
      left: 0;
      min-width: 180px;
      margin: 0;
      padding: 6px;
      list-style: none;
      border: 1px solid var(--nav-border, #d8c8b4);
      border-radius: 10px;
      background: var(--nav-bg, #ffffff);
      display: none;
      z-index: 4;
    }

    .site-nav-item:hover > .site-nav-submenu {
      display: grid;
      gap: 2px;
    }

    .site-nav-drawer {
      flex-wrap: wrap;
    }

    .site-nav-drawer .site-nav-list {
      width: 100%;
      flex-direction: column;
      align-items: flex-start;
    }

    .site-nav-empty {
      display: inline-flex;
      align-items: center;
      min-height: 54px;
      border: 1px dashed #c9b398;
      border-radius: 14px;
      padding: 12px 16px;
      color: #7d6b59;
      font-size: 13px;
      background: rgba(255, 250, 244, 0.86);
    }

    .site-nav-mega .site-nav-submenu {
      min-width: 280px;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 4px;
    }

    [data-builder-button] {
      border: 0;
      text-decoration: none;
    }

    [data-builder-node-link] {
      display: contents;
      color: inherit;
      text-decoration: none;
      cursor: pointer;
    }

    [data-builder-image] > img,
    img[data-builder-image-target] {
      display: block;
      object-fit: cover;
      width: 100%;
    }

    [data-builder-form] {
      display: grid;
      gap: 12px;
      max-width: 420px;
    }

    [data-builder-form] input,
    [data-builder-form] textarea,
    [data-builder-form] select,
    .builder-form-field input,
    .builder-form-field textarea,
    .builder-form-field select {
      height: 44px;
      border: 1px solid #d8c8b4;
      border-radius: 6px;
      padding: 0 14px;
      width: 100%;
      font: inherit;
      background: #fff;
      color: #181412;
    }

    [data-builder-form] textarea,
    .builder-form-field textarea {
      min-height: 120px;
      padding: 12px 14px;
      resize: vertical;
    }

    .builder-form-field,
    .builder-form-choice {
      display: grid;
      gap: 8px;
    }

    .builder-form-field > span,
    .builder-form-choice > span {
      font-size: 13px;
      font-weight: 600;
    }

    .builder-form-field small,
    .builder-form-choice small {
      color: #7d6b59;
      font-size: 12px;
    }

    [data-builder-form-status] {
      display: none;
      border-radius: 12px;
      padding: 12px 14px;
      font-size: 14px;
      line-height: 1.6;
    }

    [data-builder-form-status][data-state="success"] {
      display: block;
      border: 1px solid #b7d4bf;
      background: #ecf7ef;
      color: #245638;
    }

    [data-builder-form-status][data-state="error"] {
      display: block;
      border: 1px solid #efc6c6;
      background: #fff3f3;
      color: #8b2c2c;
    }

.pe-rich-table {
  --pe-table-border: #d6d2ce;
  --pe-table-header-bg: #f3efea;
  --pe-table-header-text: #1a1512;
  --pe-table-cell-bg: #ffffff;
  --pe-table-cell-text: #1f1b18;
  --pe-table-cell-padding-x: 0.7rem;
  --pe-table-cell-padding-y: 0.65rem;
  --pe-table-cell-min-width: 72px;
  --pe-table-cell-font-size: 1rem;
  --pe-table-cell-align: left;
  --pe-table-cell-valign: top;
  --pe-table-border-width: 1px;
  --pe-table-zebra-bg: rgba(20, 20, 20, 0.025);
  width: 100%;
  border-collapse: collapse;
  table-layout: fixed;
  margin: 1rem 0;
}

.pe-rich-table th,
.pe-rich-table td {
  min-width: var(--pe-table-cell-min-width, 72px);
  border: var(--pe-table-border-width, 1px) solid var(--pe-table-border, rgba(120, 120, 120, 0.22));
  padding: var(--pe-table-cell-padding-y, 0.65rem) var(--pe-table-cell-padding-x, 0.7rem);
  vertical-align: var(--pe-table-cell-valign, top);
  background: var(--pe-table-cell-bg, #ffffff);
  color: var(--pe-table-cell-text, inherit);
  font-size: var(--pe-table-cell-font-size, 1rem);
  text-align: var(--pe-table-cell-align, left);
}

.pe-rich-table th {
  background: var(--pe-table-header-bg, rgba(20, 20, 20, 0.06));
  color: var(--pe-table-header-text, inherit);
  font-weight: 700;
}

.pe-rich-table.pe-rich-table--rounded {
  border-collapse: separate;
  border-spacing: 0;
  border-radius: 1rem;
  overflow: hidden;
}

.pe-rich-table.pe-rich-table--compact th,
.pe-rich-table.pe-rich-table--compact td {
  padding: 0.45rem 0.55rem;
  font-size: 0.92em;
}

.pe-rich-table.pe-rich-table--zebra tbody tr:nth-child(even) td {
  background: var(--pe-table-zebra-bg, rgba(20, 20, 20, 0.025));
}

.pe-rich-table.pe-rich-table--responsive {
  display: block;
  overflow-x: auto;
  max-width: 100%;
  white-space: nowrap;
}

.pe-rich-table img {
  display: block;
  width: min(100%, var(--pe-media-width, 100%));
  max-width: 100%;
  height: auto;
  margin: 1rem 0;
  border-radius: 1rem;
}

.pe-rich-media--left,
.pe-rich-video--left {
  margin-right: auto;
}

.pe-rich-media--center,
.pe-rich-video--center {
  margin-left: auto;
  margin-right: auto;
}

.pe-rich-media--right,
.pe-rich-video--right {
  margin-left: auto;
}

.pe-rich-media--full,
.pe-rich-video--full {
  --pe-media-width: 100%;
}

.pe-rich-attachment,
.pe-rich-audio,
.pe-rich-video {
  margin: 1rem 0;
}

.pe-rich-attachment__link {
  display: grid;
  gap: 0.25rem;
  padding: 0.95rem 1rem;
  border: 1px solid rgba(120, 120, 120, 0.18);
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.82);
  text-decoration: none;
  color: inherit;
}

.pe-rich-attachment__label {
  font-weight: 700;
}

.pe-rich-attachment__meta,
.pe-rich-audio__title {
  font-size: 0.8rem;
  color: rgba(92, 82, 76, 0.92);
}

.pe-rich-audio {
  display: grid;
  gap: 0.55rem;
  padding: 0.95rem 1rem;
  border: 1px solid rgba(120, 120, 120, 0.18);
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.82);
}

.pe-rich-audio__player {
  width: 100%;
}

.pe-rich-video {
  position: relative;
  width: min(100%, var(--pe-media-width, 100%));
  border-radius: 1rem;
  overflow: hidden;
  background: #0f0f12;
}

.pe-rich-video__media {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  border: 0;
}

#node-section_6a2d8386{width:100%;padding-top:0px;padding-right:0px;padding-bottom:0px;padding-left:0px;background:#fffdf9;max-width:100%;}
#node-section_092345f3{width:100%;padding-top:3.5rem;padding-right:4vw;padding-bottom:4rem;padding-left:4vw;display:grid;gap:1.25rem;color:#ffffff;border-bottom:1px solid #ebe5dc;grid-template-columns:1.05fr 0.95fr;align-items:center;height:auto;align-content:flex-start;background:#000000;border-color:#dccfbe;max-width:100%;}
#node-block_6f73c4ef{width:auto;padding-top:5px;padding-right:5px;padding-bottom:5px;padding-left:5px;background:transparent;position:relative;float:left;grid-column:span 12 / span 12;max-width:none;min-width:0;justify-self:stretch;height:auto;display:grid;grid-template-columns:repeat(12, minmax(0, 1fr));gap:1rem;color:#0a0a0a;}
#node-block_45fabccf{width:auto;padding-top:2px;padding-right:2px;padding-bottom:2px;padding-left:2px;background:transparent;position:relative;float:left;max-width:none;height:auto;grid-column:span 2 / span 2;grid-row:auto;min-width:0;justify-self:stretch;color:#0a0a0a;}
#node-image_42a6e4e0{width:100%;object-fit:contain;position:relative;float:left;height:auto;}
#node-block_9ab17177{width:auto;padding-top:2px;padding-right:2px;padding-bottom:2px;padding-left:2px;background:transparent;position:relative;float:left;grid-column:span 10 / span 10;grid-row:auto;max-width:none;min-width:0;justify-self:stretch;height:auto;opacity:1;color:#0a0a0a;}
#node-section_b3b60703{width:100%;min-height:220px;padding-top:4rem;padding-right:4vw;padding-bottom:4rem;padding-left:4vw;background:#ffffff;display:grid;gap:1.25rem;color:#0a0a0a;border-bottom:1px solid #ebe5dc;grid-column:span 4 / span 4;grid-row:auto;border-color:#dccfbe;max-width:100%;}
#node-block_98d7a11a{width:auto;min-height:140px;padding-top:0px;padding-right:24px;padding-bottom:0px;padding-left:24px;background:transparent;display:grid;gap:0rem;max-width:none;justify-self:stretch;opacity:1;grid-column:span 12 / span 12;min-width:0;row-gap:0rem;column-gap:0rem;color:#0a0a0a;}
#node-text_068f091d{font-family:Outfit;font-size:6rem;line-height:0.92;color:#111827;max-width:16ch;font-weight:700;text-transform:none;letter-spacing:-0.03em;grid-column:span 12 / span 12;width:auto;min-width:0;justify-self:stretch;margin-bottom:0rem;padding-bottom:0rem;}
#node-text_b2bd64da{font-family:Outfit;font-size:6rem;line-height:0.92;color:#111827;max-width:none;font-weight:700;text-transform:none;letter-spacing:-0.03em;padding-top:0rem;margin-top:0rem;padding-bottom:0rem;margin-bottom:0rem;grid-column:span 12 / span 12;width:auto;min-width:0;justify-self:stretch;}
#node-text_af46395e{font-family:Outfit;font-size:6rem;line-height:0.92;color:#ff3131;max-width:none;font-weight:700;text-transform:none;letter-spacing:-0.03em;margin-top:0px;grid-column:span 12 / span 12;width:auto;min-width:0;justify-self:stretch;padding-bottom:0px;margin-bottom:0px;}
#node-text_56710e33{font-family:Outfit;font-size:6rem;line-height:0.92;color:#111827;max-width:none;font-weight:700;text-transform:none;letter-spacing:-0.03em;margin-top:0px;grid-column:span 12 / span 12;width:auto;min-width:0;justify-self:stretch;padding-bottom:0px;margin-bottom:0px;}
#node-text_87956df1{font-family:Outfit;font-size:6rem;line-height:0.92;color:#111827;max-width:none;font-weight:700;text-transform:none;letter-spacing:-0.03em;margin-top:0px;grid-column:span 11 / span 11;width:auto;min-width:0;justify-self:stretch;padding-bottom:0px;margin-bottom:0px;}
#node-text_cb8fd1c3{font-family:Source Sans 3;font-size:1.25rem;line-height:1.6;color:#ff3131;max-width:none;font-weight:400;text-transform:none;letter-spacing:0;margin-top:39px;grid-column:span 11 / span 11;width:auto;min-width:0;justify-self:stretch;padding-bottom:0px;margin-bottom:0px;}
#node-block_287aa4aa{width:auto;padding-top:24px;padding-right:24px;padding-bottom:24px;padding-left:24px;background:transparent;position:relative;float:left;grid-column:span 4 / span 4;max-width:none;min-width:0;justify-self:stretch;grid-row:auto;display:flex;gap:16px;flex-direction:row;flex-wrap:wrap;align-items:stretch;justify-content:center;border-radius:4px;color:#0a0a0a;}
#node-button_fa35ef33{display:inline;padding-top:20px;padding-right:35px;padding-bottom:20px;padding-left:35px;background:#000000;color:#ffffff;width:100%;float:left;margin-top:16px;font-size:1.5rem;align-self:stretch;text-align:center;border-radius:100px;font-family:Source Sans 3;font-weight:700;text-transform:none;line-height:1.7;letter-spacing:0;border-width:0px;border:none;border-style:none;transition:background-color 180ms ease, color 180ms ease, border-color 180ms ease, transform 180ms ease, box-shadow 180ms ease;max-width:100%;}
#node-block_196ef1da{width:auto;padding-top:24px;padding-right:24px;padding-bottom:24px;padding-left:0px;background:transparent;position:relative;float:left;grid-column:span 4 / span 4;max-width:none;min-width:0;justify-self:stretch;grid-row:auto;display:flex;gap:16px;flex-direction:row;flex-wrap:wrap;align-items:stretch;justify-content:center;border-radius:4px;color:#0a0a0a;}
#node-button_3d258cb7{display:inline;padding-top:20px;padding-right:35px;padding-bottom:20px;padding-left:35px;background:#ffffff;color:#000000;width:100%;float:left;margin-top:16px;font-size:1.5rem;align-self:stretch;text-align:center;border-radius:100px;font-family:Source Sans 3;font-weight:700;text-transform:none;line-height:1.7;letter-spacing:0;border-width:2px;border:2px solid #d7dce4;border-style:solid;transition:background-color 180ms ease, color 180ms ease, border-color 180ms ease, transform 180ms ease, box-shadow 180ms ease;max-width:100%;}
#node-section_cd4189f1{position:relative;width:100%;min-height:180px;padding-top:4rem;padding-right:4vw;padding-bottom:4rem;padding-left:4vw;background:#f4dfd6;display:grid;color:#1f1812;border-bottom:1px solid #ebe5dc;border-color:#dccfbe;grid-template-columns:repeat(12, minmax(0, 1fr));gap:1rem;max-width:100%;}
#node-block_f748e784{position:relative;float:left;width:auto;min-height:72px;display:grid;gap:0.95rem;max-width:none;justify-self:stretch;grid-column:span 12 / span 12;grid-row:auto;min-width:0;}
#node-text_6db39242{position:relative;font-family:Source Sans 3;font-weight:700;color:#8c5c45;text-transform:uppercase;line-height:1.7;letter-spacing:0.18em;font-size:0.76rem;grid-column:span 12 / span 12;grid-row:auto;text-align:right;max-width:100%;}
#node-text_de7886a8{position:relative;font-family:Outfit;font-weight:700;color:#111827;text-transform:none;line-height:0.92;letter-spacing:-0.03em;font-size:6rem;max-width:none;margin-bottom:0px;margin-top:0px;grid-column:span 12 / span 12;width:auto;min-width:0;justify-self:stretch;text-align:right;}
#node-text_88aebcd8{position:relative;font-family:Outfit;font-weight:700;color:#ff3131;text-transform:none;line-height:0.92;letter-spacing:-0.03em;font-size:6rem;max-width:none;margin-top:0px;padding-bottom:0px;margin-bottom:0px;grid-column:span 12 / span 12;width:auto;min-width:0;justify-self:stretch;text-align:right;}
#node-text_eccd03ce{position:relative;font-family:Source Sans 3;font-weight:400;color:#374151;text-transform:none;line-height:1.7;letter-spacing:0;font-size:1rem;max-width:none;margin-top:0rem;grid-column:7 / span 6;width:auto;min-width:0;justify-self:stretch;text-align:right;grid-row:auto;}
#node-block_d067401d{position:relative;float:left;width:100%;min-height:72px;display:grid;align-items:start;grid-column:span 12 / span 12;grid-row:auto;grid-template-columns:repeat(12, minmax(0, 1fr));gap:1rem;max-width:100%;}
#node-block_b5c264ff{position:relative;float:left;width:100%;min-height:72px;display:grid;gap:1.45rem;padding-left:1.3rem;border-style:none;border:none;border-width:0px;grid-column:span 6 / span 6;grid-row:auto;max-width:100%;}
#node-block_728cb332{position:relative;float:left;width:100%;min-height:72px;display:grid;gap:0.7rem;padding-top:0%;margin-top:11%;max-width:100%;}
#node-block_8fe62aa9{position:relative;float:left;width:100%;display:grid;align-items:center;padding-top:0rem;padding-bottom:0rem;padding-left:0.9rem;padding-right:0.9rem;border-radius:16px;background:#ffffff;border:1px solid #dfe7f5;height:auto;margin-top:0%;flex-direction:row;flex-wrap:wrap;justify-content:flex-start;grid-template-columns:repeat(12, minmax(0, 1fr));gap:1rem;max-width:100%;}
#node-block_d41a6c84{position:relative;float:left;width:2.9rem;height:auto;border-radius:14px;background:#ffffff;display:flex;align-items:center;justify-content:center;grid-column:span 2 / span 2;grid-row:auto;color:#0a0a0a;border-color:#dccfbe;max-width:100%;}
#node-icon_a61287d7{position:relative;display:inline-flex;width:2.4rem;height:1.8rem;align-items:center;justify-content:center;color:#2563eb;justify-self:start;align-self:start;max-width:none;flex-basis:2.4rem;}
#node-text_141cfcbb{position:relative;font-family:Source Sans 3;font-weight:400;color:#374151;text-transform:none;line-height:1.6;letter-spacing:0;font-size:1.25rem;grid-column:span 9 / span 9;width:auto;max-width:none;min-width:0;justify-self:stretch;}
#node-block_2c8a43cd{position:relative;float:left;width:100%;display:grid;align-items:center;padding-top:0rem;padding-bottom:0rem;padding-left:0.9rem;padding-right:0.9rem;border-radius:16px;background:#ffffff;border:1px solid #dfe7f5;grid-template-columns:repeat(12, minmax(0, 1fr));gap:1rem;height:auto;max-width:100%;}
#node-block_8c2fa6a9{position:relative;float:left;width:2.9rem;height:auto;border-radius:14px;background:#ffffff;display:flex;align-items:center;justify-content:center;color:#0a0a0a;border-color:#dccfbe;grid-column:span 2 / span 2;grid-row:auto;max-width:100%;}
#node-icon_322442e1{position:relative;display:inline-flex;width:1.8rem;height:1.8rem;align-items:center;justify-content:center;color:#2563eb;justify-self:start;align-self:start;max-width:100%;}
#node-text_aa06dd5f{position:relative;font-family:Source Sans 3;font-weight:400;color:#374151;text-transform:none;line-height:1.6;letter-spacing:0;font-size:1.25rem;grid-column:span 8 / span 8;grid-row:auto;max-width:100%;}
#node-block_89058840{position:relative;float:left;width:100%;display:grid;align-items:center;padding-top:0rem;padding-bottom:0rem;padding-left:0.9rem;padding-right:0.9rem;border-radius:16px;background:#ffffff;border:1px solid #dfe7f5;grid-template-columns:repeat(12, minmax(0, 1fr));gap:1rem;height:auto;max-width:100%;}
#node-block_d1ad819e{position:relative;float:left;width:2.9rem;height:auto;border-radius:14px;background:#ffffff;display:flex;align-items:center;justify-content:center;grid-column:span 2 / span 2;grid-row:auto;color:#0a0a0a;border-color:#dccfbe;max-width:100%;}
#node-icon_9a148198{position:relative;display:inline-flex;width:1.8rem;height:1.8rem;align-items:center;justify-content:center;color:#2563eb;justify-self:start;align-self:start;max-width:100%;}
#node-text_2764a1f9{position:relative;font-family:Source Sans 3;font-weight:400;color:#374151;text-transform:none;line-height:1.6;letter-spacing:0;font-size:1.25rem;grid-column:span 8 / span 8;grid-row:auto;max-width:100%;}
#node-block_44c2ec40{position:relative;float:left;width:100%;display:grid;align-items:center;padding-top:0rem;padding-bottom:0rem;padding-left:0.9rem;padding-right:0.9rem;border-radius:16px;background:#ffffff;border:1px solid #dfe7f5;grid-template-columns:repeat(12, minmax(0, 1fr));gap:1rem;height:auto;max-width:100%;}
#node-block_842195e7{position:relative;float:left;width:2.9rem;height:auto;border-radius:14px;background:#ffffff;display:flex;align-items:center;justify-content:center;color:#0a0a0a;border-color:#dccfbe;grid-column:span 2 / span 2;grid-row:auto;max-width:100%;}
#node-icon_f3955860{position:relative;display:inline-flex;width:1.8rem;height:1.8rem;align-items:center;justify-content:center;color:#2563eb;justify-self:start;align-self:start;max-width:100%;}
#node-text_3f2f4253{position:relative;font-family:Source Sans 3;font-weight:400;color:#374151;text-transform:none;line-height:1.6;letter-spacing:0;font-size:1.25rem;grid-column:span 8 / span 8;grid-row:auto;max-width:100%;}
#node-block_a5e98f08{position:relative;float:left;width:100%;min-height:72px;display:grid;gap:1.45rem;padding-left:1.3rem;border-style:none;border:none;border-width:0px;grid-column:span 6 / span 6;grid-row:auto;max-width:100%;}
#node-block_6cd2950e{position:relative;float:left;width:100%;min-height:72px;display:grid;gap:0.7rem;padding-top:0%;margin-top:11%;max-width:100%;}
#node-block_cc7c6c21{position:relative;float:left;width:100%;display:grid;align-items:center;padding-top:0rem;padding-bottom:0rem;padding-left:0.9rem;padding-right:0.9rem;border-radius:16px;background:#000000;border:1px solid #dfe7f5;height:auto;margin-top:0%;flex-direction:row;flex-wrap:wrap;justify-content:flex-start;grid-template-columns:repeat(12, minmax(0, 1fr));gap:1rem;color:#ffffff;border-color:#dccfbe;max-width:100%;}
#node-block_2970b28e{position:relative;float:left;width:2.9rem;height:auto;border-radius:14px;background:transparent;display:flex;align-items:center;justify-content:center;grid-column:span 2 / span 2;grid-row:auto;color:#0a0a0a;max-width:100%;}
#node-icon_0ec8ef52{position:relative;display:inline-flex;width:2.4rem;height:1.8rem;align-items:center;justify-content:center;color:#ff3131;justify-self:start;align-self:start;max-width:none;flex-basis:2.4rem;}
#node-text_529ca399{position:relative;font-family:Source Sans 3;font-weight:400;color:#ffffff;text-transform:none;line-height:1.6;letter-spacing:0;font-size:1.25rem;grid-column:span 9 / span 9;width:auto;max-width:none;min-width:0;justify-self:stretch;}
#node-block_2604707e{position:relative;float:left;width:100%;display:grid;align-items:center;padding-top:0rem;padding-bottom:0rem;padding-left:0.9rem;padding-right:0.9rem;border-radius:16px;background:#ffffff;border:1px solid #dfe7f5;grid-template-columns:repeat(12, minmax(0, 1fr));gap:1rem;height:auto;max-width:100%;}
#node-block_7f4e19cc{position:relative;float:left;width:2.9rem;height:auto;border-radius:14px;background:#ffffff;display:flex;align-items:center;justify-content:center;color:#0a0a0a;border-color:#dccfbe;grid-column:span 2 / span 2;grid-row:auto;max-width:100%;}
#node-icon_e1bc489d{position:relative;display:inline-flex;width:1.35rem;height:1.8rem;align-items:center;justify-content:center;color:#2563eb;justify-self:start;align-self:start;max-width:100%;}
#node-text_90e7cbca{position:relative;font-family:Source Sans 3;font-weight:400;color:#374151;text-transform:none;line-height:1.6;letter-spacing:0;font-size:1.25rem;grid-column:span 8 / span 8;grid-row:auto;max-width:100%;}
#node-block_8018f042{position:relative;float:left;width:100%;display:grid;align-items:center;padding-top:0rem;padding-bottom:0rem;padding-left:0.9rem;padding-right:0.9rem;border-radius:16px;background:#ffffff;border:1px solid #dfe7f5;grid-template-columns:repeat(12, minmax(0, 1fr));gap:1rem;height:auto;max-width:100%;}
#node-block_f05422ac{position:relative;float:left;width:2.9rem;height:auto;border-radius:14px;background:#ffffff;display:flex;align-items:center;justify-content:center;grid-column:span 2 / span 2;grid-row:auto;color:#0a0a0a;border-color:#dccfbe;max-width:100%;}
#node-icon_28a6eca6{position:relative;display:inline-flex;width:1.8rem;height:1.8rem;align-items:center;justify-content:center;color:#2563eb;justify-self:start;align-self:start;max-width:100%;}
#node-text_5d001300{position:relative;font-family:Source Sans 3;font-weight:400;color:#374151;text-transform:none;line-height:1.6;letter-spacing:0;font-size:1.25rem;grid-column:span 8 / span 8;grid-row:auto;max-width:100%;}
#node-block_318af2ca{position:relative;float:left;width:100%;display:grid;align-items:center;padding-top:0rem;padding-bottom:0rem;padding-left:0.9rem;padding-right:0.9rem;border-radius:16px;background:#ffffff;border:1px solid #dfe7f5;grid-template-columns:repeat(12, minmax(0, 1fr));gap:1rem;height:auto;max-width:100%;}
#node-block_71566a39{position:relative;float:left;width:2.9rem;height:auto;border-radius:14px;background:#ffffff;display:flex;align-items:center;justify-content:center;color:#0a0a0a;border-color:#dccfbe;grid-column:span 2 / span 2;grid-row:auto;max-width:100%;}
#node-icon_5ccf2f0f{position:relative;display:inline-flex;width:1.8rem;height:1.8rem;align-items:center;justify-content:center;color:#2563eb;justify-self:start;align-self:start;max-width:100%;}
#node-text_813d4655{position:relative;font-family:Source Sans 3;font-weight:400;color:#374151;text-transform:none;line-height:1.6;letter-spacing:0;font-size:1.25rem;grid-column:span 8 / span 8;grid-row:auto;max-width:100%;}
#node-block_9da079f6{position:relative;float:left;width:100%;min-height:72px;display:grid;padding-left:2rem;border-left:1px solid #eceff4;grid-column:span 12 / span 12;grid-row:auto;grid-template-columns:repeat(12, minmax(0, 1fr));gap:1rem;max-width:100%;}
#node-text_592f3987{position:relative;font-family:Outfit;font-weight:700;color:#111827;text-transform:none;line-height:1.08;letter-spacing:-0.02em;font-size:3rem;margin-bottom:1.5rem;grid-column:span 12 / span 12;width:auto;max-width:none;min-width:0;justify-self:stretch;}
#node-block_9c63bb71{position:relative;float:left;width:100%;min-height:72px;display:grid;gap:0.7rem;padding-top:0%;margin-top:3%;grid-column:span 6 / span 6;grid-row:auto;max-width:100%;}
#node-block_d65627ff{position:relative;float:left;width:100%;display:grid;align-items:center;padding-top:0rem;padding-bottom:0rem;padding-left:0.9rem;padding-right:0.9rem;border-radius:16px;background:#ffffff;border:1px solid #dfe7f5;height:auto;margin-top:0%;flex-direction:row;flex-wrap:wrap;justify-content:flex-start;grid-template-columns:repeat(12, minmax(0, 1fr));gap:1rem;max-width:100%;}
#node-block_4d3b3aaa{position:relative;float:left;width:2.9rem;height:auto;border-radius:14px;background:#ffffff;display:flex;align-items:center;justify-content:center;grid-column:span 2 / span 2;grid-row:auto;color:#0a0a0a;border-color:#dccfbe;max-width:100%;}
#node-icon_890853b0{position:relative;display:inline-flex;width:2.4rem;height:1.8rem;align-items:center;justify-content:center;color:#2563eb;justify-self:start;align-self:start;max-width:none;flex-basis:2.4rem;}
#node-text_022d6df2{position:relative;font-family:Outfit;font-weight:600;color:#111827;text-transform:none;line-height:1.16;letter-spacing:-0.01em;font-size:1.35rem;grid-column:span 9 / span 9;width:auto;max-width:none;min-width:0;justify-self:stretch;}
#node-block_2450699f{position:relative;float:left;width:100%;display:grid;align-items:center;padding-top:0rem;padding-bottom:0rem;padding-left:0.9rem;padding-right:0.9rem;border-radius:16px;background:#ffffff;border:1px solid #dfe7f5;grid-template-columns:repeat(12, minmax(0, 1fr));gap:1rem;height:auto;max-width:100%;}
#node-block_e80be6dd{position:relative;float:left;width:2.9rem;height:auto;border-radius:14px;background:#ffffff;display:flex;align-items:center;justify-content:center;color:#0a0a0a;border-color:#dccfbe;grid-column:span 2 / span 2;grid-row:auto;max-width:100%;}
#node-icon_4ee2d3ff{position:relative;display:inline-flex;width:1.8rem;height:1.8rem;align-items:center;justify-content:center;color:#2563eb;justify-self:start;align-self:start;max-width:100%;}
#node-text_e28ef5e1{position:relative;font-family:Outfit;font-weight:600;color:#111827;text-transform:none;line-height:1.16;letter-spacing:-0.01em;font-size:1.35rem;grid-column:span 8 / span 8;grid-row:auto;max-width:100%;}
#node-block_5c936d70{position:relative;float:left;width:100%;display:grid;align-items:center;padding-top:0rem;padding-bottom:0rem;padding-left:0.9rem;padding-right:0.9rem;border-radius:16px;background:#ffffff;border:1px solid #dfe7f5;grid-template-columns:repeat(12, minmax(0, 1fr));gap:1rem;height:auto;max-width:100%;}
#node-block_bde3fc82{position:relative;float:left;width:2.9rem;height:auto;border-radius:14px;background:#ffffff;display:flex;align-items:center;justify-content:center;grid-column:span 2 / span 2;grid-row:auto;color:#0a0a0a;border-color:#dccfbe;max-width:100%;}
#node-icon_87d98561{position:relative;display:inline-flex;width:1.8rem;height:1.8rem;align-items:center;justify-content:center;color:#2563eb;justify-self:start;align-self:start;max-width:100%;}
#node-text_b7fb1e2f{position:relative;font-family:Outfit;font-weight:600;color:#111827;text-transform:none;line-height:1.16;letter-spacing:-0.01em;font-size:1.35rem;grid-column:span 8 / span 8;grid-row:auto;max-width:100%;}
#node-block_6a985423{position:relative;float:left;width:100%;display:grid;align-items:center;padding-top:0rem;padding-bottom:0rem;padding-left:0.9rem;padding-right:0.9rem;border-radius:16px;background:#ffffff;border:1px solid #dfe7f5;grid-template-columns:repeat(12, minmax(0, 1fr));gap:1rem;height:auto;max-width:100%;}
#node-block_bdbd25cb{position:relative;float:left;width:2.9rem;height:auto;border-radius:14px;background:#ffffff;display:flex;align-items:center;justify-content:center;color:#0a0a0a;border-color:#dccfbe;grid-column:span 2 / span 2;grid-row:auto;max-width:100%;}
#node-icon_f9979045{position:relative;display:inline-flex;width:1.8rem;height:1.8rem;align-items:center;justify-content:center;color:#2563eb;justify-self:start;align-self:start;max-width:100%;}
#node-text_a87096dd{position:relative;font-family:Outfit;font-weight:600;color:#111827;text-transform:none;line-height:1.16;letter-spacing:-0.01em;font-size:1.35rem;grid-column:span 8 / span 8;grid-row:auto;max-width:100%;}
#node-block_d2ab20d0{position:relative;float:left;width:auto;min-height:72px;background:transparent;grid-column:span 6 / span 6;max-width:none;min-width:0;justify-self:stretch;color:#0a0a0a;}
#node-section_e8058328{position:relative;width:100%;min-height:180px;padding-top:4rem;padding-right:4vw;padding-bottom:4rem;padding-left:4vw;background:#ffffff;display:grid;gap:1.25rem;color:#0a0a0a;border-bottom:1px solid #ebe5dc;border-color:#dccfbe;max-width:100%;}
#node-block_9a3c5ce9{position:relative;float:left;width:auto;min-height:72px;display:grid;gap:0.95rem;max-width:none;justify-self:stretch;grid-column:span 12 / span 12;min-width:0;}
#node-text_3f4ec9f6{position:relative;font-family:Source Sans 3;font-weight:700;color:#8c5c45;text-transform:uppercase;line-height:1.7;letter-spacing:0.18em;font-size:0.76rem;margin-bottom:0rem;max-width:100%;}
#node-text_b096d83a{position:relative;font-family:Outfit;font-weight:700;color:#111827;text-transform:none;line-height:0.92;letter-spacing:-0.03em;font-size:6rem;max-width:16ch;margin-bottom:0px;margin-top:13px;}
#node-text_6a01828a{position:relative;font-family:Outfit;font-weight:700;color:#ff3131;text-transform:none;line-height:0.92;letter-spacing:-0.03em;font-size:6rem;max-width:16ch;margin-bottom:0px;margin-top:0px;}
#node-text_7b88ecb3{position:relative;font-family:Source Sans 3;font-weight:400;color:#374151;text-transform:none;line-height:1.7;letter-spacing:0;font-size:1rem;max-width:64ch;}
#node-block_1ec8784f{position:relative;float:left;width:auto;min-height:72px;display:grid;grid-template-columns:repeat(3, minmax(0, 1fr));gap:1.3rem;align-items:stretch;grid-column:span 12 / span 12;max-width:none;min-width:0;justify-self:stretch;}
#node-block_a2a9252f{position:relative;float:left;width:100%;min-height:72px;display:flex;gap:0.85rem;padding-top:1.45rem;padding-bottom:1.1rem;padding-left:1.2rem;padding-right:1.2rem;background:#ffffff;border:2px solid #eef1f4;border-radius:24px;box-shadow:0 16px 34px rgba(15, 23, 42, 0.08);align-content:start;align-items:stretch;flex-direction:row;flex-wrap:wrap;justify-content:flex-start;max-width:100%;}
#node-block_f1a643c5{position:relative;float:left;width:100%;min-height:72px;display:grid;grid-template-columns:5.2rem minmax(0, 1fr);gap:1.05rem;align-items:start;max-width:100%;}
#node-block_1eef2fef{position:relative;float:left;width:auto;min-height:72px;display:grid;gap:0.35rem;align-content:start;padding-top:0.15rem;grid-column:span 11 / span 11;max-width:none;min-width:0;justify-self:stretch;}
#node-text_8772fd1f{position:relative;font-family:Outfit;font-weight:700;color:#111827;text-transform:none;line-height:1.08;letter-spacing:-0.02em;font-size:3rem;max-width:none;grid-column:span 11 / span 11;width:auto;min-width:0;justify-self:stretch;}
#node-text_89ab4d6d{position:relative;font-family:Outfit;font-weight:300;color:#374151;text-transform:none;line-height:0.92;letter-spacing:0;font-size:3rem;max-width:100%;}
#node-block_c7c1ba7b{position:relative;float:left;width:100%;min-height:72px;display:grid;gap:0.55rem;max-width:100%;}
#node-text_3d12af92{position:relative;font-family:Outfit;font-weight:600;color:#111827;text-transform:none;line-height:1.16;letter-spacing:-0.01em;font-size:1.35rem;margin-bottom:0rem;max-width:100%;}
#node-block_fec3cdf1{position:relative;float:left;width:100%;display:flex;gap:0.2rem;align-items:stretch;height:auto;flex-direction:row;flex-wrap:wrap;justify-content:flex-start;align-content:flex-end;row-gap:0.2rem;column-gap:0.2rem;max-width:100%;}
#node-text_1bca8439{position:relative;font-family:Source Sans 3;font-weight:400;color:#374151;text-transform:none;line-height:1.7;letter-spacing:0;font-size:1rem;width:299px;max-width:none;flex-basis:299px;margin-bottom:0px;}
#node-text_edf62a5d{position:relative;font-family:Source Sans 3;font-weight:400;color:#374151;text-transform:none;line-height:1.7;letter-spacing:0;font-size:1rem;width:312px;max-width:none;flex-basis:312px;margin-top:0px;margin-bottom:0px;}
#node-text_365ecfdf{position:relative;font-family:Source Sans 3;font-weight:400;color:#374151;text-transform:none;line-height:1.7;letter-spacing:0;font-size:1rem;width:313px;max-width:none;flex-basis:313px;padding-top:0px;margin-top:0px;margin-bottom:0px;}
#node-block_e4a39730{position:relative;float:left;width:100%;display:grid;grid-template-columns:auto minmax(0, 1fr);gap:0.65rem;align-items:center;height:auto;max-width:100%;}
#node-block_f39c5659{position:relative;float:left;width:100%;display:grid;grid-template-columns:auto minmax(0, 1fr);gap:0.65rem;align-items:center;height:auto;max-width:100%;}
#node-block_476cb7bd{position:relative;float:left;width:100%;height:1px;background:#e5e7eb;max-width:100%;}
#node-block_021c8b80{position:relative;float:left;width:100%;min-height:72px;display:grid;gap:0.55rem;max-width:100%;}
#node-text_0afb68df{position:relative;font-family:Outfit;font-weight:600;color:#111827;text-transform:none;line-height:1.16;letter-spacing:-0.01em;font-size:1.35rem;margin-bottom:0rem;max-width:100%;}
#node-block_c3e58eb7{position:relative;float:left;width:100%;display:flex;gap:0.65rem;align-items:start;flex-direction:row;flex-wrap:wrap;justify-content:flex-start;max-width:100%;}
#node-text_f9699858{position:relative;font-family:Source Sans 3;font-weight:400;color:#374151;text-transform:none;line-height:1.7;letter-spacing:0;font-size:1rem;margin-bottom:0rem;max-width:100%;}
#node-text_84855ce5{position:relative;font-family:Source Sans 3;font-weight:400;color:#374151;text-transform:none;line-height:1.7;letter-spacing:0;font-size:1rem;margin-top:0rem;margin-bottom:0rem;max-width:100%;}
#node-text_06b56450{position:relative;font-family:Source Sans 3;font-weight:400;color:#374151;text-transform:none;line-height:1.7;letter-spacing:0;font-size:1rem;margin-top:0rem;margin-bottom:0rem;max-width:100%;}
#node-text_b1be71fd{position:relative;font-family:Source Sans 3;font-weight:400;color:#374151;text-transform:none;line-height:1.7;letter-spacing:0;font-size:1rem;margin-top:0rem;max-width:100%;}
#node-block_cedc3d55{position:relative;float:left;width:100%;min-height:72px;display:grid;grid-template-columns:4.2rem minmax(0, 1fr);gap:0.85rem;align-items:center;padding-top:0.95rem;padding-bottom:0.95rem;padding-left:0.95rem;padding-right:0.95rem;border-radius:14px;background:#ff3131;color:#0a0a0a;border-color:#dccfbe;max-width:100%;}
#node-text_9eb8b256{position:relative;font-family:Source Sans 3;font-weight:400;color:#ffffff;text-transform:none;line-height:1.7;letter-spacing:0;font-size:1rem;grid-column:span 9 / span 9;width:auto;max-width:none;min-width:0;justify-self:stretch;}
#node-block_573dd89d{position:relative;float:left;width:100%;min-height:72px;display:flex;gap:0.85rem;padding-top:1.45rem;padding-bottom:1.1rem;padding-left:1.2rem;padding-right:1.2rem;background:#ffffff;border:3px solid #ff4929;border-radius:24px;box-shadow:0 16px 34px rgba(15, 23, 42, 0.08);align-content:start;flex-direction:row;flex-wrap:wrap;align-items:stretch;justify-content:flex-start;border-width:3px;border-style:solid;border-color:#ff4929;max-width:100%;}
#node-block_df550baf{position:absolute;float:left;width:48%;top:-0.95rem;left:50%;transform:translateX(-50%);display:grid;grid-template-columns:auto minmax(0, 1fr);gap:0.35rem;align-items:center;padding-top:0rem;padding-bottom:0rem;padding-left:0.8rem;padding-right:0.8rem;border-radius:999px;background:#ff1f14;max-width:none;flex-basis:48%;height:auto;}
#node-text_a9c98d7a{position:relative;font-family:Source Sans 3;font-weight:700;color:#ffffff;text-transform:none;line-height:1.7;letter-spacing:0;font-size:0.8rem;grid-column:span 12 / span 12;grid-row:auto;text-align:center;max-width:100%;}
#node-block_b6531f53{position:relative;float:left;width:100%;min-height:72px;display:grid;grid-template-columns:5.2rem minmax(0, 1fr);gap:1.05rem;align-items:start;max-width:100%;}
#node-block_6515ffb8{position:relative;float:left;width:auto;min-height:72px;display:grid;gap:0.35rem;align-content:start;padding-top:0.15rem;grid-column:span 12 / span 12;max-width:none;min-width:0;justify-self:stretch;}
#node-text_6aa5a408{position:relative;font-family:Outfit;font-weight:700;color:#111827;text-transform:none;line-height:1.08;letter-spacing:-0.02em;font-size:3rem;max-width:9ch;}
#node-text_c6979282{position:relative;font-family:Outfit;font-weight:300;color:#374151;text-transform:none;line-height:0.92;letter-spacing:0;font-size:3rem;max-width:100%;}
#node-block_9865e8dc{position:relative;float:left;width:100%;min-height:72px;display:grid;gap:0.55rem;max-width:100%;}
#node-text_567d3f7f{position:relative;font-family:Outfit;font-weight:600;color:#111827;text-transform:none;line-height:1.16;letter-spacing:-0.01em;font-size:1.35rem;margin-bottom:0rem;max-width:100%;}
#node-block_8b84d45e{position:relative;float:left;width:100%;display:flex;gap:0.2rem;align-items:stretch;height:auto;flex-direction:row;flex-wrap:wrap;justify-content:flex-start;align-content:flex-end;row-gap:0.2rem;column-gap:0.2rem;max-width:100%;}
#node-text_510e460e{position:relative;font-family:Source Sans 3;font-weight:400;color:#374151;text-transform:none;line-height:1.7;letter-spacing:0;font-size:1rem;width:299px;max-width:none;flex-basis:299px;margin-bottom:0px;}
#node-text_90afb988{position:relative;font-family:Source Sans 3;font-weight:400;color:#374151;text-transform:none;line-height:1.7;letter-spacing:0;font-size:1rem;width:312px;max-width:none;flex-basis:312px;margin-top:0px;margin-bottom:0px;}
#node-text_f8ed41d6{position:relative;font-family:Source Sans 3;font-weight:400;color:#374151;text-transform:none;line-height:1.7;letter-spacing:0;font-size:1rem;width:313px;max-width:none;flex-basis:313px;padding-top:0px;margin-top:0px;margin-bottom:0px;}
#node-block_7c60c37d{position:relative;float:left;width:100%;display:grid;grid-template-columns:auto minmax(0, 1fr);gap:0.65rem;align-items:center;height:auto;max-width:100%;}
#node-block_61cacddd{position:relative;float:left;width:100%;display:grid;grid-template-columns:auto minmax(0, 1fr);gap:0.65rem;align-items:center;height:auto;max-width:100%;}
#node-block_6f1fcb07{position:relative;float:left;width:100%;height:1px;background:#e5e7eb;max-width:100%;}
#node-block_5368f06b{position:relative;float:left;width:100%;min-height:72px;display:grid;gap:0.55rem;max-width:100%;}
#node-text_267e24c4{position:relative;font-family:Outfit;font-weight:600;color:#111827;text-transform:none;line-height:1.16;letter-spacing:-0.01em;font-size:1.35rem;margin-bottom:0rem;max-width:100%;}
#node-block_6f33d9fe{position:relative;float:left;width:100%;display:flex;gap:0.65rem;align-items:start;flex-direction:row;flex-wrap:wrap;justify-content:flex-start;max-width:100%;}
#node-text_fe0c5fe7{position:relative;font-family:Source Sans 3;font-weight:400;color:#374151;text-transform:none;line-height:1.7;letter-spacing:0;font-size:1rem;margin-bottom:0rem;max-width:100%;}
#node-text_8a18fc22{position:relative;font-family:Source Sans 3;font-weight:400;color:#374151;text-transform:none;line-height:1.7;letter-spacing:0;font-size:1rem;margin-top:0rem;margin-bottom:0rem;max-width:100%;}
#node-text_9b80081d{position:relative;font-family:Source Sans 3;font-weight:400;color:#374151;text-transform:none;line-height:1.7;letter-spacing:0;font-size:1rem;margin-top:0rem;margin-bottom:0rem;max-width:100%;}
#node-text_71779986{position:relative;font-family:Source Sans 3;font-weight:400;color:#374151;text-transform:none;line-height:1.7;letter-spacing:0;font-size:1rem;margin-top:0rem;max-width:100%;}
#node-block_9e37290c{position:relative;float:left;width:100%;min-height:72px;display:grid;grid-template-columns:4.2rem minmax(0, 1fr);gap:0.85rem;align-items:center;padding-top:0.95rem;padding-bottom:0.95rem;padding-left:0.95rem;padding-right:0.95rem;border-radius:14px;background:#ff3131;color:#0a0a0a;border-color:#dccfbe;max-width:100%;}
#node-text_39c2d7f0{position:relative;font-family:Source Sans 3;font-weight:400;color:#ffffff;text-transform:none;line-height:1.7;letter-spacing:0;font-size:1rem;grid-column:span 12 / span 12;width:auto;max-width:none;min-width:0;justify-self:stretch;}
#node-block_81a9d51d{position:relative;float:left;width:100%;min-height:72px;display:flex;gap:0.85rem;padding-top:1.45rem;padding-bottom:1.1rem;padding-left:1.2rem;padding-right:1.2rem;background:#ffffff;border:2px solid #eef1f4;border-radius:24px;box-shadow:0 16px 34px rgba(15, 23, 42, 0.08);align-content:start;flex-direction:row;flex-wrap:wrap;align-items:stretch;justify-content:flex-start;max-width:100%;}
#node-block_419241f1{position:relative;float:left;width:100%;min-height:72px;display:grid;grid-template-columns:5.2rem minmax(0, 1fr);gap:1.05rem;align-items:start;max-width:100%;}
#node-block_7bc3e62d{position:relative;float:left;width:auto;min-height:72px;display:grid;gap:0.35rem;align-content:start;padding-top:0.15rem;grid-column:span 12 / span 12;max-width:none;min-width:0;justify-self:stretch;}
#node-text_352f4017{position:relative;font-family:Outfit;font-weight:700;color:#111827;text-transform:none;line-height:1.08;letter-spacing:-0.02em;font-size:3rem;max-width:9ch;}
#node-text_bda6fc1f{position:relative;font-family:Outfit;font-weight:300;color:#374151;text-transform:none;line-height:0.92;letter-spacing:0;font-size:3rem;max-width:100%;}
#node-block_05d49aea{position:relative;float:left;width:100%;min-height:72px;display:grid;gap:0.55rem;max-width:100%;}
#node-text_3c7c8625{position:relative;font-family:Outfit;font-weight:600;color:#111827;text-transform:none;line-height:1.16;letter-spacing:-0.01em;font-size:1.35rem;margin-bottom:0rem;max-width:100%;}
#node-block_09d64b34{position:relative;float:left;width:100%;display:flex;gap:0.2rem;align-items:stretch;height:auto;flex-direction:row;flex-wrap:wrap;justify-content:flex-start;align-content:flex-end;row-gap:0.2rem;column-gap:0.2rem;max-width:100%;}
#node-text_3554a91c{position:relative;font-family:Source Sans 3;font-weight:400;color:#374151;text-transform:none;line-height:1.7;letter-spacing:0;font-size:1rem;width:299px;max-width:none;flex-basis:299px;margin-bottom:0px;}
#node-text_083789b5{position:relative;font-family:Source Sans 3;font-weight:400;color:#374151;text-transform:none;line-height:1.7;letter-spacing:0;font-size:1rem;width:312px;max-width:none;flex-basis:312px;margin-top:0px;margin-bottom:0px;}
#node-text_45e754b6{position:relative;font-family:Source Sans 3;font-weight:400;color:#374151;text-transform:none;line-height:1.7;letter-spacing:0;font-size:1rem;width:313px;max-width:none;flex-basis:313px;padding-top:0px;margin-top:0px;margin-bottom:0px;}
#node-block_6fd88f2a{position:relative;float:left;width:100%;display:grid;grid-template-columns:auto minmax(0, 1fr);gap:0.65rem;align-items:center;height:auto;max-width:100%;}
#node-block_4a1654bc{position:relative;float:left;width:100%;display:grid;grid-template-columns:auto minmax(0, 1fr);gap:0.65rem;align-items:center;height:auto;max-width:100%;}
#node-block_5c23248e{position:relative;float:left;width:100%;height:1px;background:#e5e7eb;max-width:100%;}
#node-block_d96098c0{position:relative;float:left;width:100%;min-height:72px;display:grid;gap:0.55rem;max-width:100%;}
#node-text_d85739e6{position:relative;font-family:Outfit;font-weight:600;color:#111827;text-transform:none;line-height:1.16;letter-spacing:-0.01em;font-size:1.35rem;margin-bottom:0rem;max-width:100%;}
#node-block_a97ca91d{position:relative;float:left;width:100%;display:flex;gap:0.65rem;align-items:start;flex-direction:row;flex-wrap:wrap;justify-content:flex-start;max-width:100%;}
#node-text_7aa22269{position:relative;font-family:Source Sans 3;font-weight:400;color:#374151;text-transform:none;line-height:1.7;letter-spacing:0;font-size:1rem;margin-bottom:0rem;max-width:100%;}
#node-text_0f4337cb{position:relative;font-family:Source Sans 3;font-weight:400;color:#374151;text-transform:none;line-height:1.7;letter-spacing:0;font-size:1rem;margin-top:0rem;margin-bottom:0rem;max-width:100%;}
#node-text_6d12e4f2{position:relative;font-family:Source Sans 3;font-weight:400;color:#374151;text-transform:none;line-height:1.7;letter-spacing:0;font-size:1rem;margin-top:0rem;margin-bottom:0rem;max-width:100%;}
#node-text_861c8596{position:relative;font-family:Source Sans 3;font-weight:400;color:#374151;text-transform:none;line-height:1.7;letter-spacing:0;font-size:1rem;margin-top:0rem;max-width:100%;}
#node-block_26260e65{position:relative;float:left;width:100%;min-height:72px;display:grid;grid-template-columns:4.2rem minmax(0, 1fr);gap:0.85rem;align-items:center;padding-top:0.95rem;padding-bottom:0.95rem;padding-left:0.95rem;padding-right:0.95rem;border-radius:14px;background:#ff3131;color:#0a0a0a;border-color:#dccfbe;max-width:100%;}
#node-text_3c7b300f{position:relative;font-family:Source Sans 3;font-weight:400;color:#ffffff;text-transform:none;line-height:1.7;letter-spacing:0;font-size:1rem;grid-column:span 12 / span 12;width:auto;max-width:none;min-width:0;justify-self:stretch;}
#node-block_9db0606a{width:auto;padding-top:24px;padding-right:24px;padding-bottom:24px;padding-left:24px;background:transparent;position:relative;float:left;grid-column:4 / span 6;max-width:none;min-width:0;justify-self:stretch;grid-row:auto;display:flex;gap:16px;flex-direction:row;flex-wrap:wrap;align-items:stretch;justify-content:center;border-radius:4px;color:#0a0a0a;}
#node-button_4c08bb32{display:inline;padding-top:20px;padding-right:35px;padding-bottom:20px;padding-left:35px;background:#000000;color:#ffffff;width:100%;float:left;margin-top:16px;font-size:1.5rem;align-self:stretch;text-align:center;border-radius:100px;font-family:Source Sans 3;font-weight:700;text-transform:none;line-height:1.7;letter-spacing:0;border-width:0px;border:none;border-style:none;transition:background-color 180ms ease, color 180ms ease, border-color 180ms ease, transform 180ms ease, box-shadow 180ms ease;max-width:100%;}
#node-section_ffb25794{position:relative;width:100%;min-height:180px;padding-top:2.6rem;padding-right:2.2rem;padding-bottom:2.6rem;padding-left:2.2rem;background:#000000;display:grid;color:#ffffff;border-bottom:1px solid #ebe5dc;border-radius:0px;box-shadow:0 28px 60px rgba(0, 0, 0, 0.32);grid-template-columns:repeat(12, minmax(0, 1fr));gap:1rem;border-color:#dccfbe;max-width:100%;}
#node-block_5abaf88d{position:relative;float:left;width:100%;min-height:72px;display:grid;grid-template-columns:minmax(0, 0.92fr) minmax(0, 1.08fr);gap:2rem;align-items:center;grid-column:span 12 / span 12;grid-row:auto;max-width:100%;}
#node-block_749cf58d{position:relative;float:left;width:auto;min-height:72px;display:grid;grid-column:span 12 / span 12;max-width:none;min-width:0;justify-self:stretch;grid-template-columns:repeat(12, minmax(0, 1fr));gap:0.4rem;row-gap:0.4rem;column-gap:0.4rem;}
#node-text_359cb30e{position:relative;font-family:Outfit;font-weight:700;color:#ffffff;text-transform:none;line-height:0.92;letter-spacing:-0.03em;font-size:6rem;max-width:none;margin-bottom:0rem;grid-column:span 10 / span 10;width:51.05rem;min-width:0;justify-self:stretch;}
#node-block_ecda5942{position:relative;float:left;width:auto;display:block;align-items:center;margin-top:0.6rem;padding-top:0rem;padding-bottom:1.15rem;padding-left:1.15rem;padding-right:1.15rem;border-radius:0px;border:none;background:transparent;grid-column:span 12 / span 12;max-width:none;min-width:0;justify-self:stretch;border-width:0px;border-style:none;color:#0a0a0a;height:auto;}
#node-text_41222a05{position:relative;font-family:Outfit;font-weight:700;color:#ff3131;text-transform:none;line-height:1.08;letter-spacing:-0.02em;font-size:3rem;max-width:none;grid-column:span 10 / span 10;width:33.8rem;min-width:0;justify-self:stretch;margin-top:0rem;margin-bottom:0rem;}
#node-block_667a0455{position:relative;float:left;width:auto;min-height:72px;display:grid;grid-column:span 12 / span 12;grid-row:auto;grid-template-columns:repeat(12, minmax(0, 1fr));gap:1rem;padding-top:2.5%;max-width:none;min-width:0;justify-self:stretch;}
#node-block_8a32720c{position:relative;float:left;width:auto;min-height:72px;display:grid;grid-template-columns:4.3rem auto minmax(0, 1fr);gap:0.95rem;align-items:start;padding-top:0.45rem;padding-bottom:0.45rem;grid-column:span 12 / span 12;max-width:none;min-width:0;justify-self:stretch;grid-row:auto;}
#node-block_07cd5fd8{position:relative;float:left;width:100%;min-height:72px;display:grid;justify-items:center;gap:0.4rem;padding-top:0.15rem;max-width:100%;}
#node-block_ab2947c9{position:relative;float:left;width:auto;min-height:72px;display:grid;gap:0.35rem;padding-top:0.1rem;grid-column:span 12 / span 12;max-width:none;min-width:0;justify-self:stretch;}
#node-text_0903ea35{position:relative;font-family:Outfit;font-weight:700;color:#ff3131;text-transform:none;line-height:0.92;letter-spacing:-0.03em;font-size:6rem;margin-top:0rem;text-align:right;padding-bottom:0rem;margin-bottom:0rem;max-width:100%;}
#node-text_97324a6d{position:relative;font-family:Outfit;font-weight:700;color:#ffffff;text-transform:none;line-height:0.92;letter-spacing:-0.03em;font-size:6rem;margin-top:0rem;text-align:right;padding-bottom:0rem;margin-bottom:0rem;max-width:100%;}
#node-text_ec02166e{position:relative;font-family:Outfit;font-weight:700;color:#ffffff;text-transform:none;line-height:0.92;letter-spacing:-0.03em;font-size:6rem;margin-top:0rem;text-align:right;padding-bottom:0rem;margin-bottom:0rem;max-width:100%;}
#node-text_e1eeb6fa{position:relative;font-family:Outfit;font-weight:700;color:#ff3131;text-transform:none;line-height:0.92;letter-spacing:-0.03em;font-size:6rem;margin-top:0rem;text-align:right;padding-bottom:0rem;margin-bottom:0rem;max-width:100%;}
#node-section_b6c2302a{width:100%;min-height:220px;padding-top:4rem;padding-right:4vw;padding-bottom:4rem;padding-left:4vw;background:#f4dfd6;display:grid;gap:1.25rem;color:#1f1812;border-bottom:1px solid #ebe5dc;border-color:#dccfbe;max-width:100%;}
#node-block_20a71e83{width:auto;min-height:140px;padding-top:24px;padding-right:24px;padding-bottom:24px;padding-left:24px;display:grid;gap:0rem;max-width:none;justify-self:stretch;grid-column:span 12 / span 12;min-width:0;row-gap:0rem;column-gap:0rem;background:transparent;color:#0a0a0a;}
#node-text_f35ec5b5{font-family:Outfit;font-size:6rem;line-height:0.92;color:#ff3131;max-width:16ch;font-weight:700;margin-bottom:0rem;text-transform:none;letter-spacing:-0.03em;grid-column:span 12 / span 12;grid-row:auto;}
#node-text_2697a46d{font-family:Outfit;font-size:6rem;line-height:0.92;color:#0a0a0a;max-width:16ch;font-weight:700;margin-top:0rem;margin-bottom:0rem;text-transform:none;letter-spacing:-0.03em;grid-column:span 12 / span 12;grid-row:auto;}
#node-text_143e8a53{font-family:Source Sans 3;font-size:1rem;line-height:1.7;color:#0a0a0a;max-width:64ch;margin-top:0rem;padding-top:0.9rem;grid-column:span 12 / span 12;grid-row:auto;font-weight:400;text-transform:none;letter-spacing:0;}
#node-block_c426046b{width:auto;padding-top:24px;padding-right:24px;padding-bottom:24px;padding-left:24px;background:transparent;position:relative;float:left;grid-column:9 / span 4;max-width:none;min-width:0;justify-self:stretch;grid-row:auto;display:flex;gap:16px;flex-direction:row;flex-wrap:wrap;align-items:stretch;justify-content:center;border-radius:4px;color:#0a0a0a;}
#node-button_cb6a053d{display:inline;padding-top:20px;padding-right:35px;padding-bottom:20px;padding-left:35px;background:#ffffff;color:#000000;width:100%;float:left;margin-top:16px;font-size:1.5rem;align-self:stretch;text-align:center;border-radius:100px;font-family:Source Sans 3;font-weight:700;text-transform:none;line-height:1.7;letter-spacing:0;border-width:0px;border:none;border-style:none;transition:background-color 180ms ease, color 180ms ease, border-color 180ms ease, transform 180ms ease, box-shadow 180ms ease;max-width:100%;}
#node-section_53845cbd{position:relative;width:100%;min-height:180px;padding-top:0rem;padding-right:0rem;padding-bottom:0rem;padding-left:0rem;background:#f7f7f7;max-width:100%;}
#node-section_afd94fa7{width:100%;padding-top:4rem;padding-right:4vw;padding-bottom:4rem;padding-left:4vw;display:grid;gap:1.25rem;color:#0a0a0a;border-bottom:1px solid #ebe5dc;justify-items:center;text-align:center;height:auto;min-height:220px;grid-column:span 12 / span 12;grid-row:auto;background:#ffffff;border-color:#dccfbe;max-width:100%;}
#node-block_9c7b1d05{width:100%;padding-top:24px;padding-right:24px;padding-bottom:24px;padding-left:24px;background:transparent;position:relative;float:left;display:grid;grid-template-columns:repeat(12, minmax(0, 1fr));gap:1rem;color:#0a0a0a;max-width:100%;}
#node-text_3a45e538{font-family:Outfit;font-size:6rem;line-height:0.92;color:#111827;max-width:none;width:auto;float:left;font-weight:700;letter-spacing:-0.03em;text-transform:none;position:relative;grid-column:span 12 / span 12;grid-row:auto;min-width:0;justify-self:stretch;padding-bottom:0rem;margin-bottom:0rem;}
#node-block_0088263e{width:auto;padding-top:24px;padding-right:24px;padding-bottom:24px;padding-left:24px;background:#ffffff;position:relative;float:left;display:flex;min-width:0;max-width:none;border-radius:4px;gap:16px;flex-direction:row;flex-wrap:wrap;justify-content:center;align-items:stretch;grid-column:5 / span 4;grid-row:auto;justify-self:stretch;color:#0a0a0a;border-color:#dccfbe;}
#node-button_41c4f1a5{display:inline;padding-top:25px;padding-right:40px;padding-bottom:25px;padding-left:40px;background:#000000;color:#ffffff;font-family:Source Sans 3;font-size:1.5rem;font-weight:700;line-height:1.7;letter-spacing:0;text-transform:none;position:relative;text-align:center;float:left;width:100%;margin-top:16px;border-radius:100px;border-width:0px;border-style:none;border:none;align-self:stretch;transition:background-color 180ms ease, color 180ms ease, border-color 180ms ease, transform 180ms ease, box-shadow 180ms ease;max-width:100%;}
#node-section_1aa5cb82{position:relative;width:100%;min-height:180px;padding-top:0rem;padding-right:0rem;padding-bottom:0rem;padding-left:0rem;background:#f7f7f7;display:block;max-width:100%;}
#node-section_a9d8025d{width:100%;padding-top:48px;padding-right:48px;padding-bottom:48px;padding-left:48px;background:#000000;position:relative;height:100%;display:grid;grid-template-columns:repeat(12, minmax(0, 1fr));gap:1rem;color:#ffffff;border-color:#dccfbe;max-width:100%;}
#node-block_5fc70aa6{width:auto;padding-top:5px;padding-right:5px;padding-bottom:5px;padding-left:5px;background:transparent;position:relative;float:left;grid-column:span 12 / span 12;max-width:none;min-width:0;justify-self:stretch;height:auto;display:grid;grid-template-columns:repeat(12, minmax(0, 1fr));gap:1rem;color:#0a0a0a;}
#node-block_eb15feae{width:auto;padding-top:2px;padding-right:2px;padding-bottom:2px;padding-left:2px;background:transparent;position:relative;float:left;max-width:none;height:auto;grid-column:span 2 / span 2;grid-row:auto;min-width:0;justify-self:stretch;color:#0a0a0a;}
#node-image_fbb5aa15{width:100%;object-fit:contain;position:relative;float:left;height:auto;}
#node-block_e2f287a5{width:auto;padding-top:0px;padding-right:2px;padding-bottom:0px;padding-left:2px;background:transparent;position:relative;float:left;grid-column:span 10 / span 10;grid-row:auto;max-width:none;min-width:0;justify-self:stretch;height:auto;opacity:1;display:grid;grid-template-columns:repeat(12, minmax(0, 1fr));gap:1rem;color:#0a0a0a;}
#node-text_c7a7eeef{font-family:Outfit;font-size:1.35rem;line-height:1.16;color:#ffffff;max-width:none;position:relative;font-weight:600;text-transform:none;letter-spacing:-0.01em;width:auto;float:left;grid-column:span 12 / span 12;min-width:0;justify-self:stretch;text-align:right;grid-row:auto;margin-top:1.2rem;}
#node-button_fa35ef33:hover{background:#ffffff !important;color:#ff2424 !important;}
#node-button_3d258cb7:hover{background:#ff2424 !important;color:#ffffff !important;}
#node-button_4c08bb32:hover{background:#ffffff !important;color:#ff2424 !important;}
#node-button_cb6a053d:hover{background:#ff2424 !important;color:#ffffff !important;}

@media (min-width: 1281px) {
#node-section_6a2d8386{width:100%;padding-top:0px;padding-right:0px;padding-bottom:0px;padding-left:0px;background:#fffdf9;max-width:100%;}
#node-section_092345f3{width:100%;padding-top:3.5rem;padding-right:4vw;padding-bottom:4rem;padding-left:4vw;display:grid;gap:1.25rem;color:#ffffff;border-bottom:1px solid #ebe5dc;grid-template-columns:1.05fr 0.95fr;align-items:center;height:auto;align-content:flex-start;min-height:100%;background:#000000;border-color:#dccfbe;max-width:100%;}
#node-block_6f73c4ef{width:auto;padding-top:5px;padding-right:5px;padding-bottom:5px;padding-left:5px;background:transparent;position:relative;float:left;grid-column:span 12 / span 12;max-width:none;min-width:0;justify-self:stretch;height:auto;display:grid;grid-template-columns:repeat(12, minmax(0, 1fr));gap:1rem;color:#0a0a0a;}
#node-block_45fabccf{width:auto;padding-top:2px;padding-right:2px;padding-bottom:2px;padding-left:2px;background:transparent;position:relative;float:left;max-width:none;height:auto;grid-column:span 2 / span 2;grid-row:auto;min-width:0;justify-self:stretch;color:#0a0a0a;}
#node-image_42a6e4e0{width:69.5%;object-fit:contain;position:relative;float:left;height:auto;max-width:none;}
#node-block_9ab17177{width:auto;padding-top:2px;padding-right:2px;padding-bottom:2px;padding-left:2px;background:transparent;position:relative;float:left;grid-column:span 10 / span 10;grid-row:auto;max-width:none;min-width:0;justify-self:stretch;height:auto;opacity:1;color:#0a0a0a;}
#node-section_b3b60703{width:100%;min-height:220px;padding-top:4rem;padding-right:4vw;padding-bottom:4rem;padding-left:4vw;background:#ffffff;display:grid;gap:1.25rem;color:#0a0a0a;border-bottom:1px solid #ebe5dc;grid-column:span 4 / span 4;grid-row:auto;border-color:#dccfbe;max-width:100%;}
#node-block_98d7a11a{width:auto;min-height:140px;padding-top:0px;padding-right:24px;padding-bottom:0px;padding-left:24px;background:transparent;display:grid;gap:0rem;max-width:none;justify-self:stretch;opacity:1;grid-column:span 12 / span 12;min-width:0;row-gap:0rem;column-gap:0rem;color:#0a0a0a;}
#node-text_068f091d{font-family:Outfit;font-size:8.5rem;line-height:0.92;color:#111827;max-width:16ch;font-weight:700;text-transform:none;letter-spacing:-0.03em;grid-column:span 12 / span 12;width:auto;min-width:0;justify-self:stretch;margin-bottom:0rem;padding-bottom:0rem;}
#node-text_b2bd64da{font-family:Outfit;font-size:8.5rem;line-height:0.92;color:#111827;max-width:none;font-weight:700;text-transform:none;letter-spacing:-0.03em;padding-top:0rem;margin-top:0rem;padding-bottom:0rem;margin-bottom:0rem;grid-column:span 12 / span 12;width:auto;min-width:0;justify-self:stretch;}
#node-text_af46395e{font-family:Outfit;font-size:8.5rem;line-height:0.92;color:#ff3131;max-width:none;font-weight:700;text-transform:none;letter-spacing:-0.03em;margin-top:0px;grid-column:span 12 / span 12;width:auto;min-width:0;justify-self:stretch;padding-bottom:0px;margin-bottom:0px;}
#node-text_56710e33{font-family:Outfit;font-size:8.5rem;line-height:0.92;color:#111827;max-width:none;font-weight:700;text-transform:none;letter-spacing:-0.03em;margin-top:0px;grid-column:span 12 / span 12;width:auto;min-width:0;justify-self:stretch;padding-bottom:0px;margin-bottom:0px;}
#node-text_87956df1{font-family:Outfit;font-size:8.5rem;line-height:0.92;color:#111827;max-width:none;font-weight:700;text-transform:none;letter-spacing:-0.03em;margin-top:0px;grid-column:span 11 / span 11;width:auto;min-width:0;justify-self:stretch;padding-bottom:0px;margin-bottom:0px;}
#node-text_cb8fd1c3{font-family:Source Sans 3;font-size:1.35rem;line-height:1.62;color:#ff3131;max-width:none;font-weight:400;text-transform:none;letter-spacing:0;margin-top:39px;grid-column:span 11 / span 11;width:auto;min-width:0;justify-self:stretch;padding-bottom:0px;margin-bottom:0px;}
#node-block_287aa4aa{width:auto;padding-top:24px;padding-right:24px;padding-bottom:24px;padding-left:24px;background:transparent;position:relative;float:left;grid-column:span 4 / span 4;max-width:none;min-width:0;justify-self:stretch;grid-row:auto;display:flex;gap:16px;flex-direction:row;flex-wrap:wrap;align-items:stretch;justify-content:center;border-radius:4px;color:#0a0a0a;}
#node-button_fa35ef33{display:inline;padding-top:20px;padding-right:35px;padding-bottom:20px;padding-left:35px;background:#000000;color:#ffffff;width:100%;float:left;margin-top:16px;font-size:1.5rem;align-self:stretch;text-align:center;border-radius:100px;font-family:Source Sans 3;font-weight:700;text-transform:none;line-height:1.72;letter-spacing:0;border-width:0px;border:none;border-style:none;transition:background-color 180ms ease, color 180ms ease, border-color 180ms ease, transform 180ms ease, box-shadow 180ms ease;max-width:100%;}
#node-block_196ef1da{width:auto;padding-top:24px;padding-right:24px;padding-bottom:24px;padding-left:0px;background:transparent;position:relative;float:left;grid-column:span 4 / span 4;max-width:none;min-width:0;justify-self:stretch;grid-row:auto;display:flex;gap:16px;flex-direction:row;flex-wrap:wrap;align-items:stretch;justify-content:center;border-radius:4px;color:#0a0a0a;}
#node-button_3d258cb7{display:inline;padding-top:20px;padding-right:35px;padding-bottom:20px;padding-left:35px;background:#ffffff;color:#000000;width:100%;float:left;margin-top:16px;font-size:1.5rem;align-self:stretch;text-align:center;border-radius:100px;font-family:Source Sans 3;font-weight:700;text-transform:none;line-height:1.72;letter-spacing:0;border-width:2px;border:2px solid #d7dce4;border-style:solid;transition:background-color 180ms ease, color 180ms ease, border-color 180ms ease, transform 180ms ease, box-shadow 180ms ease;max-width:100%;}
#node-section_cd4189f1{position:relative;width:100%;min-height:180px;padding-top:4rem;padding-right:4vw;padding-bottom:4rem;padding-left:4vw;background:#f4dfd6;display:grid;color:#1f1812;border-bottom:1px solid #ebe5dc;border-color:#dccfbe;grid-template-columns:repeat(12, minmax(0, 1fr));gap:1rem;max-width:100%;}
#node-block_f748e784{position:relative;float:left;width:auto;min-height:72px;display:grid;gap:0.95rem;max-width:none;justify-self:stretch;grid-column:span 12 / span 12;grid-row:auto;min-width:0;}
#node-text_6db39242{position:relative;font-family:Source Sans 3;font-weight:700;color:#8c5c45;text-transform:uppercase;line-height:1.72;letter-spacing:0.18em;font-size:1.05rem;grid-column:span 12 / span 12;grid-row:auto;text-align:right;max-width:100%;}
#node-text_de7886a8{position:relative;font-family:Outfit;font-weight:700;color:#111827;text-transform:none;line-height:0.92;letter-spacing:-0.03em;font-size:8.5rem;max-width:none;margin-bottom:0px;margin-top:0px;grid-column:span 12 / span 12;width:auto;min-width:0;justify-self:stretch;text-align:right;}
#node-text_88aebcd8{position:relative;font-family:Outfit;font-weight:700;color:#ff3131;text-transform:none;line-height:0.92;letter-spacing:-0.03em;font-size:8.5rem;max-width:none;margin-top:0px;padding-bottom:0px;margin-bottom:0px;grid-column:span 12 / span 12;width:auto;min-width:0;justify-self:stretch;text-align:right;}
#node-text_eccd03ce{position:relative;font-family:Source Sans 3;font-weight:400;color:#374151;text-transform:none;line-height:1.72;letter-spacing:0;font-size:1.05rem;max-width:none;margin-top:0rem;grid-column:7 / span 6;width:auto;min-width:0;justify-self:stretch;text-align:right;grid-row:auto;}
#node-block_d067401d{position:relative;float:left;width:100%;min-height:72px;display:grid;align-items:start;grid-column:span 12 / span 12;grid-row:auto;grid-template-columns:repeat(12, minmax(0, 1fr));gap:1rem;max-width:100%;}
#node-block_b5c264ff{position:relative;float:left;width:100%;min-height:72px;display:grid;gap:1.45rem;padding-left:1.3rem;border-style:none;border:none;border-width:0px;grid-column:span 6 / span 6;grid-row:auto;max-width:100%;}
#node-block_728cb332{position:relative;float:left;width:100%;min-height:72px;display:grid;gap:0.7rem;padding-top:0%;margin-top:11%;max-width:100%;}
#node-block_8fe62aa9{position:relative;float:left;width:100%;display:grid;align-items:center;padding-top:0rem;padding-bottom:0rem;padding-left:0.9rem;padding-right:0.9rem;border-radius:16px;background:#ffffff;border:1px solid #dfe7f5;height:auto;margin-top:0%;flex-direction:row;flex-wrap:wrap;justify-content:flex-start;grid-template-columns:repeat(12, minmax(0, 1fr));gap:1rem;max-width:100%;}
#node-block_d41a6c84{position:relative;float:left;width:2.9rem;height:auto;border-radius:14px;background:#ffffff;display:flex;align-items:center;justify-content:center;grid-column:span 2 / span 2;grid-row:auto;color:#0a0a0a;border-color:#dccfbe;max-width:100%;}
#node-icon_a61287d7{position:relative;display:inline-flex;width:2.4rem;height:1.8rem;align-items:center;justify-content:center;color:#2563eb;justify-self:start;align-self:start;max-width:none;flex-basis:2.4rem;}
#node-text_141cfcbb{position:relative;font-family:Source Sans 3;font-weight:400;color:#374151;text-transform:none;line-height:1.62;letter-spacing:0;font-size:1.35rem;grid-column:span 9 / span 9;width:auto;max-width:none;min-width:0;justify-self:stretch;}
#node-block_2c8a43cd{position:relative;float:left;width:100%;display:grid;align-items:center;padding-top:0rem;padding-bottom:0rem;padding-left:0.9rem;padding-right:0.9rem;border-radius:16px;background:#ffffff;border:1px solid #dfe7f5;grid-template-columns:repeat(12, minmax(0, 1fr));gap:1rem;height:auto;max-width:100%;}
#node-block_8c2fa6a9{position:relative;float:left;width:2.9rem;height:auto;border-radius:14px;background:#ffffff;display:flex;align-items:center;justify-content:center;color:#0a0a0a;border-color:#dccfbe;grid-column:span 2 / span 2;grid-row:auto;max-width:100%;}
#node-icon_322442e1{position:relative;display:inline-flex;width:1.8rem;height:1.8rem;align-items:center;justify-content:center;color:#2563eb;justify-self:start;align-self:start;max-width:100%;}
#node-text_aa06dd5f{position:relative;font-family:Source Sans 3;font-weight:400;color:#374151;text-transform:none;line-height:1.62;letter-spacing:0;font-size:1.35rem;grid-column:span 8 / span 8;grid-row:auto;max-width:100%;}
#node-block_89058840{position:relative;float:left;width:100%;display:grid;align-items:center;padding-top:0rem;padding-bottom:0rem;padding-left:0.9rem;padding-right:0.9rem;border-radius:16px;background:#ffffff;border:1px solid #dfe7f5;grid-template-columns:repeat(12, minmax(0, 1fr));gap:1rem;height:auto;max-width:100%;}
#node-block_d1ad819e{position:relative;float:left;width:2.9rem;height:auto;border-radius:14px;background:#ffffff;display:flex;align-items:center;justify-content:center;grid-column:span 2 / span 2;grid-row:auto;color:#0a0a0a;border-color:#dccfbe;max-width:100%;}
#node-icon_9a148198{position:relative;display:inline-flex;width:1.8rem;height:1.8rem;align-items:center;justify-content:center;color:#2563eb;justify-self:start;align-self:start;max-width:100%;}
#node-text_2764a1f9{position:relative;font-family:Source Sans 3;font-weight:400;color:#374151;text-transform:none;line-height:1.62;letter-spacing:0;font-size:1.35rem;grid-column:span 8 / span 8;grid-row:auto;max-width:100%;}
#node-block_44c2ec40{position:relative;float:left;width:100%;display:grid;align-items:center;padding-top:0rem;padding-bottom:0rem;padding-left:0.9rem;padding-right:0.9rem;border-radius:16px;background:#ffffff;border:1px solid #dfe7f5;grid-template-columns:repeat(12, minmax(0, 1fr));gap:1rem;height:auto;max-width:100%;}
#node-block_842195e7{position:relative;float:left;width:2.9rem;height:auto;border-radius:14px;background:#ffffff;display:flex;align-items:center;justify-content:center;color:#0a0a0a;border-color:#dccfbe;grid-column:span 2 / span 2;grid-row:auto;max-width:100%;}
#node-icon_f3955860{position:relative;display:inline-flex;width:1.8rem;height:1.8rem;align-items:center;justify-content:center;color:#2563eb;justify-self:start;align-self:start;max-width:100%;}
#node-text_3f2f4253{position:relative;font-family:Source Sans 3;font-weight:400;color:#374151;text-transform:none;line-height:1.62;letter-spacing:0;font-size:1.35rem;grid-column:span 8 / span 8;grid-row:auto;max-width:100%;}
#node-block_a5e98f08{position:relative;float:left;width:100%;min-height:72px;display:grid;gap:1.45rem;padding-left:1.3rem;border-style:none;border:none;border-width:0px;grid-column:span 6 / span 6;grid-row:auto;max-width:100%;}
#node-block_6cd2950e{position:relative;float:left;width:100%;min-height:72px;display:grid;gap:0.7rem;padding-top:0%;margin-top:11%;max-width:100%;}
#node-block_cc7c6c21{position:relative;float:left;width:100%;display:grid;align-items:center;padding-top:0rem;padding-bottom:0rem;padding-left:0.9rem;padding-right:0.9rem;border-radius:16px;background:#000000;border:1px solid #dfe7f5;height:auto;margin-top:0%;flex-direction:row;flex-wrap:wrap;justify-content:flex-start;grid-template-columns:repeat(12, minmax(0, 1fr));gap:1rem;color:#ffffff;border-color:#dccfbe;max-width:100%;}
#node-block_2970b28e{position:relative;float:left;width:2.9rem;height:auto;border-radius:14px;background:transparent;display:flex;align-items:center;justify-content:center;grid-column:span 2 / span 2;grid-row:auto;color:#0a0a0a;max-width:100%;}
#node-icon_0ec8ef52{position:relative;display:inline-flex;width:2.4rem;height:1.8rem;align-items:center;justify-content:center;color:#ff3131;justify-self:start;align-self:start;max-width:none;flex-basis:2.4rem;}
#node-text_529ca399{position:relative;font-family:Source Sans 3;font-weight:400;color:#ffffff;text-transform:none;line-height:1.62;letter-spacing:0;font-size:1.35rem;grid-column:span 9 / span 9;width:auto;max-width:none;min-width:0;justify-self:stretch;}
#node-block_2604707e{position:relative;float:left;width:100%;display:grid;align-items:center;padding-top:0rem;padding-bottom:0rem;padding-left:0.9rem;padding-right:0.9rem;border-radius:16px;background:#ffffff;border:1px solid #dfe7f5;grid-template-columns:repeat(12, minmax(0, 1fr));gap:1rem;height:auto;max-width:100%;}
#node-block_7f4e19cc{position:relative;float:left;width:2.9rem;height:auto;border-radius:14px;background:#ffffff;display:flex;align-items:center;justify-content:center;color:#0a0a0a;border-color:#dccfbe;grid-column:span 2 / span 2;grid-row:auto;max-width:100%;}
#node-icon_e1bc489d{position:relative;display:inline-flex;width:1.35rem;height:1.8rem;align-items:center;justify-content:center;color:#2563eb;justify-self:start;align-self:start;max-width:100%;}
#node-text_90e7cbca{position:relative;font-family:Source Sans 3;font-weight:400;color:#374151;text-transform:none;line-height:1.62;letter-spacing:0;font-size:1.35rem;grid-column:span 8 / span 8;grid-row:auto;max-width:100%;}
#node-block_8018f042{position:relative;float:left;width:100%;display:grid;align-items:center;padding-top:0rem;padding-bottom:0rem;padding-left:0.9rem;padding-right:0.9rem;border-radius:16px;background:#ffffff;border:1px solid #dfe7f5;grid-template-columns:repeat(12, minmax(0, 1fr));gap:1rem;height:auto;max-width:100%;}
#node-block_f05422ac{position:relative;float:left;width:2.9rem;height:auto;border-radius:14px;background:#ffffff;display:flex;align-items:center;justify-content:center;grid-column:span 2 / span 2;grid-row:auto;color:#0a0a0a;border-color:#dccfbe;max-width:100%;}
#node-icon_28a6eca6{position:relative;display:inline-flex;width:1.8rem;height:1.8rem;align-items:center;justify-content:center;color:#2563eb;justify-self:start;align-self:start;max-width:100%;}
#node-text_5d001300{position:relative;font-family:Source Sans 3;font-weight:400;color:#374151;text-transform:none;line-height:1.62;letter-spacing:0;font-size:1.35rem;grid-column:span 8 / span 8;grid-row:auto;max-width:100%;}
#node-block_318af2ca{position:relative;float:left;width:100%;display:grid;align-items:center;padding-top:0rem;padding-bottom:0rem;padding-left:0.9rem;padding-right:0.9rem;border-radius:16px;background:#ffffff;border:1px solid #dfe7f5;grid-template-columns:repeat(12, minmax(0, 1fr));gap:1rem;height:auto;max-width:100%;}
#node-block_71566a39{position:relative;float:left;width:2.9rem;height:auto;border-radius:14px;background:#ffffff;display:flex;align-items:center;justify-content:center;color:#0a0a0a;border-color:#dccfbe;grid-column:span 2 / span 2;grid-row:auto;max-width:100%;}
#node-icon_5ccf2f0f{position:relative;display:inline-flex;width:1.8rem;height:1.8rem;align-items:center;justify-content:center;color:#2563eb;justify-self:start;align-self:start;max-width:100%;}
#node-text_813d4655{position:relative;font-family:Source Sans 3;font-weight:400;color:#374151;text-transform:none;line-height:1.62;letter-spacing:0;font-size:1.35rem;grid-column:span 8 / span 8;grid-row:auto;max-width:100%;}
#node-block_9da079f6{position:relative;float:left;width:100%;min-height:72px;display:grid;padding-left:2rem;border-left:1px solid #eceff4;grid-column:span 12 / span 12;grid-row:auto;grid-template-columns:repeat(12, minmax(0, 1fr));gap:1rem;max-width:100%;}
#node-text_592f3987{position:relative;font-family:Outfit;font-weight:700;color:#111827;text-transform:none;line-height:1.08;letter-spacing:-0.02em;font-size:3.2rem;margin-bottom:1.5rem;grid-column:span 12 / span 12;width:auto;max-width:none;min-width:0;justify-self:stretch;}
#node-block_9c63bb71{position:relative;float:left;width:100%;min-height:72px;display:grid;gap:0.7rem;padding-top:0%;margin-top:3%;grid-column:span 6 / span 6;grid-row:auto;max-width:100%;}
#node-block_d65627ff{position:relative;float:left;width:100%;display:grid;align-items:center;padding-top:0rem;padding-bottom:0rem;padding-left:0.9rem;padding-right:0.9rem;border-radius:16px;background:#ffffff;border:1px solid #dfe7f5;height:auto;margin-top:0%;flex-direction:row;flex-wrap:wrap;justify-content:flex-start;grid-template-columns:repeat(12, minmax(0, 1fr));gap:1rem;max-width:100%;}
#node-block_4d3b3aaa{position:relative;float:left;width:2.9rem;height:auto;border-radius:14px;background:#ffffff;display:flex;align-items:center;justify-content:center;grid-column:span 2 / span 2;grid-row:auto;color:#0a0a0a;border-color:#dccfbe;max-width:100%;}
#node-icon_890853b0{position:relative;display:inline-flex;width:2.4rem;height:1.8rem;align-items:center;justify-content:center;color:#2563eb;justify-self:start;align-self:start;max-width:none;flex-basis:2.4rem;}
#node-text_022d6df2{position:relative;font-family:Outfit;font-weight:600;color:#111827;text-transform:none;line-height:1.16;letter-spacing:-0.01em;font-size:1.5rem;grid-column:span 9 / span 9;width:auto;max-width:none;min-width:0;justify-self:stretch;}
#node-block_2450699f{position:relative;float:left;width:100%;display:grid;align-items:center;padding-top:0rem;padding-bottom:0rem;padding-left:0.9rem;padding-right:0.9rem;border-radius:16px;background:#ffffff;border:1px solid #dfe7f5;grid-template-columns:repeat(12, minmax(0, 1fr));gap:1rem;height:auto;max-width:100%;}
#node-block_e80be6dd{position:relative;float:left;width:2.9rem;height:auto;border-radius:14px;background:#ffffff;display:flex;align-items:center;justify-content:center;color:#0a0a0a;border-color:#dccfbe;grid-column:span 2 / span 2;grid-row:auto;max-width:100%;}
#node-icon_4ee2d3ff{position:relative;display:inline-flex;width:1.8rem;height:1.8rem;align-items:center;justify-content:center;color:#2563eb;justify-self:start;align-self:start;max-width:100%;}
#node-text_e28ef5e1{position:relative;font-family:Outfit;font-weight:600;color:#111827;text-transform:none;line-height:1.16;letter-spacing:-0.01em;font-size:1.5rem;grid-column:span 8 / span 8;grid-row:auto;max-width:100%;}
#node-block_5c936d70{position:relative;float:left;width:100%;display:grid;align-items:center;padding-top:0rem;padding-bottom:0rem;padding-left:0.9rem;padding-right:0.9rem;border-radius:16px;background:#ffffff;border:1px solid #dfe7f5;grid-template-columns:repeat(12, minmax(0, 1fr));gap:1rem;height:auto;max-width:100%;}
#node-block_bde3fc82{position:relative;float:left;width:2.9rem;height:auto;border-radius:14px;background:#ffffff;display:flex;align-items:center;justify-content:center;grid-column:span 2 / span 2;grid-row:auto;color:#0a0a0a;border-color:#dccfbe;max-width:100%;}
#node-icon_87d98561{position:relative;display:inline-flex;width:1.8rem;height:1.8rem;align-items:center;justify-content:center;color:#2563eb;justify-self:start;align-self:start;max-width:100%;}
#node-text_b7fb1e2f{position:relative;font-family:Outfit;font-weight:600;color:#111827;text-transform:none;line-height:1.16;letter-spacing:-0.01em;font-size:1.5rem;grid-column:span 8 / span 8;grid-row:auto;max-width:100%;}
#node-block_6a985423{position:relative;float:left;width:100%;display:grid;align-items:center;padding-top:0rem;padding-bottom:0rem;padding-left:0.9rem;padding-right:0.9rem;border-radius:16px;background:#ffffff;border:1px solid #dfe7f5;grid-template-columns:repeat(12, minmax(0, 1fr));gap:1rem;height:auto;max-width:100%;}
#node-block_bdbd25cb{position:relative;float:left;width:2.9rem;height:auto;border-radius:14px;background:#ffffff;display:flex;align-items:center;justify-content:center;color:#0a0a0a;border-color:#dccfbe;grid-column:span 2 / span 2;grid-row:auto;max-width:100%;}
#node-icon_f9979045{position:relative;display:inline-flex;width:1.8rem;height:1.8rem;align-items:center;justify-content:center;color:#2563eb;justify-self:start;align-self:start;max-width:100%;}
#node-text_a87096dd{position:relative;font-family:Outfit;font-weight:600;color:#111827;text-transform:none;line-height:1.16;letter-spacing:-0.01em;font-size:1.5rem;grid-column:span 8 / span 8;grid-row:auto;max-width:100%;}
#node-block_d2ab20d0{position:relative;float:left;width:auto;min-height:72px;background:transparent;grid-column:span 6 / span 6;max-width:none;min-width:0;justify-self:stretch;color:#0a0a0a;}
#node-section_e8058328{position:relative;width:100%;min-height:180px;padding-top:4rem;padding-right:4vw;padding-bottom:4rem;padding-left:4vw;background:#ffffff;display:grid;gap:1.25rem;color:#0a0a0a;border-bottom:1px solid #ebe5dc;border-color:#dccfbe;max-width:100%;}
#node-block_9a3c5ce9{position:relative;float:left;width:auto;min-height:72px;display:grid;gap:0.95rem;max-width:none;justify-self:stretch;grid-column:span 12 / span 12;min-width:0;}
#node-text_3f4ec9f6{position:relative;font-family:Source Sans 3;font-weight:700;color:#8c5c45;text-transform:uppercase;line-height:1.72;letter-spacing:0.18em;font-size:1.05rem;margin-bottom:0rem;max-width:100%;}
#node-text_b096d83a{position:relative;font-family:Outfit;font-weight:700;color:#111827;text-transform:none;line-height:0.92;letter-spacing:-0.03em;font-size:8.5rem;max-width:16ch;margin-bottom:0px;margin-top:13px;}
#node-text_6a01828a{position:relative;font-family:Outfit;font-weight:700;color:#ff3131;text-transform:none;line-height:0.92;letter-spacing:-0.03em;font-size:8.5rem;max-width:16ch;margin-bottom:0px;margin-top:0px;}
#node-text_7b88ecb3{position:relative;font-family:Source Sans 3;font-weight:400;color:#374151;text-transform:none;line-height:1.72;letter-spacing:0;font-size:1.05rem;max-width:64ch;}
#node-block_1ec8784f{position:relative;float:left;width:auto;min-height:72px;display:grid;grid-template-columns:repeat(3, minmax(0, 1fr));gap:1.3rem;align-items:stretch;grid-column:span 12 / span 12;max-width:none;min-width:0;justify-self:stretch;}
#node-block_a2a9252f{position:relative;float:left;width:100%;min-height:72px;display:flex;gap:0.85rem;padding-top:1.45rem;padding-bottom:1.1rem;padding-left:1.2rem;padding-right:1.2rem;background:#ffffff;border:2px solid #eef1f4;border-radius:24px;box-shadow:0 16px 34px rgba(15, 23, 42, 0.08);align-content:start;align-items:stretch;flex-direction:row;flex-wrap:wrap;justify-content:flex-start;max-width:100%;}
#node-block_f1a643c5{position:relative;float:left;width:100%;min-height:72px;display:grid;grid-template-columns:5.2rem minmax(0, 1fr);gap:1.05rem;align-items:start;max-width:100%;}
#node-block_1eef2fef{position:relative;float:left;width:auto;min-height:72px;display:grid;gap:0.35rem;align-content:start;padding-top:0.15rem;grid-column:span 11 / span 11;max-width:none;min-width:0;justify-self:stretch;}
#node-text_8772fd1f{position:relative;font-family:Outfit;font-weight:700;color:#111827;text-transform:none;line-height:1.08;letter-spacing:-0.02em;font-size:3.2rem;max-width:none;grid-column:span 11 / span 11;width:auto;min-width:0;justify-self:stretch;}
#node-text_89ab4d6d{position:relative;font-family:Outfit;font-weight:300;color:#374151;text-transform:none;line-height:0.98;letter-spacing:0;font-size:3.2rem;max-width:100%;}
#node-block_c7c1ba7b{position:relative;float:left;width:100%;min-height:72px;display:grid;gap:0.55rem;max-width:100%;}
#node-text_3d12af92{position:relative;font-family:Outfit;font-weight:600;color:#111827;text-transform:none;line-height:1.16;letter-spacing:-0.01em;font-size:1.5rem;margin-bottom:0rem;max-width:100%;}
#node-block_fec3cdf1{position:relative;float:left;width:100%;display:flex;gap:0.2rem;align-items:stretch;height:auto;flex-direction:row;flex-wrap:wrap;justify-content:flex-start;align-content:flex-end;row-gap:0.2rem;column-gap:0.2rem;max-width:100%;}
#node-text_1bca8439{position:relative;font-family:Source Sans 3;font-weight:400;color:#374151;text-transform:none;line-height:1.72;letter-spacing:0;font-size:1.05rem;width:299px;max-width:none;flex-basis:299px;margin-bottom:0px;}
#node-text_edf62a5d{position:relative;font-family:Source Sans 3;font-weight:400;color:#374151;text-transform:none;line-height:1.72;letter-spacing:0;font-size:1.05rem;width:312px;max-width:none;flex-basis:312px;margin-top:0px;margin-bottom:0px;}
#node-text_365ecfdf{position:relative;font-family:Source Sans 3;font-weight:400;color:#374151;text-transform:none;line-height:1.72;letter-spacing:0;font-size:1.05rem;width:313px;max-width:none;flex-basis:313px;padding-top:0px;margin-top:0px;margin-bottom:0px;}
#node-block_e4a39730{position:relative;float:left;width:100%;display:grid;grid-template-columns:auto minmax(0, 1fr);gap:0.65rem;align-items:center;height:auto;max-width:100%;}
#node-block_f39c5659{position:relative;float:left;width:100%;display:grid;grid-template-columns:auto minmax(0, 1fr);gap:0.65rem;align-items:center;height:auto;max-width:100%;}
#node-block_476cb7bd{position:relative;float:left;width:100%;height:1px;background:#e5e7eb;max-width:100%;}
#node-block_021c8b80{position:relative;float:left;width:100%;min-height:72px;display:grid;gap:0.55rem;max-width:100%;}
#node-text_0afb68df{position:relative;font-family:Outfit;font-weight:600;color:#111827;text-transform:none;line-height:1.16;letter-spacing:-0.01em;font-size:1.5rem;margin-bottom:0rem;max-width:100%;}
#node-block_c3e58eb7{position:relative;float:left;width:100%;display:flex;gap:0.65rem;align-items:start;flex-direction:row;flex-wrap:wrap;justify-content:flex-start;max-width:100%;}
#node-text_f9699858{position:relative;font-family:Source Sans 3;font-weight:400;color:#374151;text-transform:none;line-height:1.72;letter-spacing:0;font-size:1.05rem;margin-bottom:0rem;max-width:100%;}
#node-text_84855ce5{position:relative;font-family:Source Sans 3;font-weight:400;color:#374151;text-transform:none;line-height:1.72;letter-spacing:0;font-size:1.05rem;margin-top:0rem;margin-bottom:0rem;max-width:100%;}
#node-text_06b56450{position:relative;font-family:Source Sans 3;font-weight:400;color:#374151;text-transform:none;line-height:1.72;letter-spacing:0;font-size:1.05rem;margin-top:0rem;margin-bottom:0rem;max-width:100%;}
#node-text_b1be71fd{position:relative;font-family:Source Sans 3;font-weight:400;color:#374151;text-transform:none;line-height:1.72;letter-spacing:0;font-size:1.05rem;margin-top:0rem;max-width:100%;}
#node-block_cedc3d55{position:relative;float:left;width:100%;min-height:72px;display:grid;grid-template-columns:4.2rem minmax(0, 1fr);gap:0.85rem;align-items:center;padding-top:0.95rem;padding-bottom:0.95rem;padding-left:0.95rem;padding-right:0.95rem;border-radius:14px;background:#ff3131;color:#0a0a0a;border-color:#dccfbe;max-width:100%;}
#node-text_9eb8b256{position:relative;font-family:Source Sans 3;font-weight:400;color:#ffffff;text-transform:none;line-height:1.72;letter-spacing:0;font-size:1.05rem;grid-column:span 9 / span 9;width:auto;max-width:none;min-width:0;justify-self:stretch;}
#node-block_573dd89d{position:relative;float:left;width:100%;min-height:72px;display:flex;gap:0.85rem;padding-top:1.45rem;padding-bottom:1.1rem;padding-left:1.2rem;padding-right:1.2rem;background:#ffffff;border:3px solid #ff4929;border-radius:24px;box-shadow:0 16px 34px rgba(15, 23, 42, 0.08);align-content:start;flex-direction:row;flex-wrap:wrap;align-items:stretch;justify-content:flex-start;border-width:3px;border-style:solid;border-color:#ff4929;max-width:100%;}
#node-block_df550baf{position:absolute;float:left;width:48%;top:-0.95rem;left:50%;transform:translateX(-50%);display:grid;grid-template-columns:auto minmax(0, 1fr);gap:0.35rem;align-items:center;padding-top:0rem;padding-bottom:0rem;padding-left:0.8rem;padding-right:0.8rem;border-radius:999px;background:#ff1f14;max-width:none;flex-basis:48%;height:auto;}
#node-text_a9c98d7a{position:relative;font-family:Source Sans 3;font-weight:700;color:#ffffff;text-transform:none;line-height:1.72;letter-spacing:0;font-size:1.05rem;grid-column:span 12 / span 12;grid-row:auto;text-align:center;max-width:100%;}
#node-block_b6531f53{position:relative;float:left;width:100%;min-height:72px;display:grid;grid-template-columns:5.2rem minmax(0, 1fr);gap:1.05rem;align-items:start;max-width:100%;}
#node-block_6515ffb8{position:relative;float:left;width:auto;min-height:72px;display:grid;gap:0.35rem;align-content:start;padding-top:0.15rem;grid-column:span 12 / span 12;max-width:none;min-width:0;justify-self:stretch;}
#node-text_6aa5a408{position:relative;font-family:Outfit;font-weight:700;color:#111827;text-transform:none;line-height:1.08;letter-spacing:-0.02em;font-size:3.2rem;max-width:9ch;}
#node-text_c6979282{position:relative;font-family:Outfit;font-weight:300;color:#374151;text-transform:none;line-height:0.98;letter-spacing:0;font-size:3.2rem;max-width:100%;}
#node-block_9865e8dc{position:relative;float:left;width:100%;min-height:72px;display:grid;gap:0.55rem;max-width:100%;}
#node-text_567d3f7f{position:relative;font-family:Outfit;font-weight:600;color:#111827;text-transform:none;line-height:1.16;letter-spacing:-0.01em;font-size:1.5rem;margin-bottom:0rem;max-width:100%;}
#node-block_8b84d45e{position:relative;float:left;width:100%;display:flex;gap:0.2rem;align-items:stretch;height:auto;flex-direction:row;flex-wrap:wrap;justify-content:flex-start;align-content:flex-end;row-gap:0.2rem;column-gap:0.2rem;max-width:100%;}
#node-text_510e460e{position:relative;font-family:Source Sans 3;font-weight:400;color:#374151;text-transform:none;line-height:1.72;letter-spacing:0;font-size:1.05rem;width:299px;max-width:none;flex-basis:299px;margin-bottom:0px;}
#node-text_90afb988{position:relative;font-family:Source Sans 3;font-weight:400;color:#374151;text-transform:none;line-height:1.72;letter-spacing:0;font-size:1.05rem;width:312px;max-width:none;flex-basis:312px;margin-top:0px;margin-bottom:0px;}
#node-text_f8ed41d6{position:relative;font-family:Source Sans 3;font-weight:400;color:#374151;text-transform:none;line-height:1.72;letter-spacing:0;font-size:1.05rem;width:313px;max-width:none;flex-basis:313px;padding-top:0px;margin-top:0px;margin-bottom:0px;}
#node-block_7c60c37d{position:relative;float:left;width:100%;display:grid;grid-template-columns:auto minmax(0, 1fr);gap:0.65rem;align-items:center;height:auto;max-width:100%;}
#node-block_61cacddd{position:relative;float:left;width:100%;display:grid;grid-template-columns:auto minmax(0, 1fr);gap:0.65rem;align-items:center;height:auto;max-width:100%;}
#node-block_6f1fcb07{position:relative;float:left;width:100%;height:1px;background:#e5e7eb;max-width:100%;}
#node-block_5368f06b{position:relative;float:left;width:100%;min-height:72px;display:grid;gap:0.55rem;max-width:100%;}
#node-text_267e24c4{position:relative;font-family:Outfit;font-weight:600;color:#111827;text-transform:none;line-height:1.16;letter-spacing:-0.01em;font-size:1.5rem;margin-bottom:0rem;max-width:100%;}
#node-block_6f33d9fe{position:relative;float:left;width:100%;display:flex;gap:0.65rem;align-items:start;flex-direction:row;flex-wrap:wrap;justify-content:flex-start;max-width:100%;}
#node-text_fe0c5fe7{position:relative;font-family:Source Sans 3;font-weight:400;color:#374151;text-transform:none;line-height:1.72;letter-spacing:0;font-size:1.05rem;margin-bottom:0rem;max-width:100%;}
#node-text_8a18fc22{position:relative;font-family:Source Sans 3;font-weight:400;color:#374151;text-transform:none;line-height:1.72;letter-spacing:0;font-size:1.05rem;margin-top:0rem;margin-bottom:0rem;max-width:100%;}
#node-text_9b80081d{position:relative;font-family:Source Sans 3;font-weight:400;color:#374151;text-transform:none;line-height:1.72;letter-spacing:0;font-size:1.05rem;margin-top:0rem;margin-bottom:0rem;max-width:100%;}
#node-text_71779986{position:relative;font-family:Source Sans 3;font-weight:400;color:#374151;text-transform:none;line-height:1.72;letter-spacing:0;font-size:1.05rem;margin-top:0rem;max-width:100%;}
#node-block_9e37290c{position:relative;float:left;width:100%;min-height:72px;display:grid;grid-template-columns:4.2rem minmax(0, 1fr);gap:0.85rem;align-items:center;padding-top:0.95rem;padding-bottom:0.95rem;padding-left:0.95rem;padding-right:0.95rem;border-radius:14px;background:#ff3131;color:#0a0a0a;border-color:#dccfbe;max-width:100%;}
#node-text_39c2d7f0{position:relative;font-family:Source Sans 3;font-weight:400;color:#ffffff;text-transform:none;line-height:1.72;letter-spacing:0;font-size:1.05rem;grid-column:span 12 / span 12;width:auto;max-width:none;min-width:0;justify-self:stretch;}
#node-block_81a9d51d{position:relative;float:left;width:100%;min-height:72px;display:flex;gap:0.85rem;padding-top:1.45rem;padding-bottom:1.1rem;padding-left:1.2rem;padding-right:1.2rem;background:#ffffff;border:2px solid #eef1f4;border-radius:24px;box-shadow:0 16px 34px rgba(15, 23, 42, 0.08);align-content:start;flex-direction:row;flex-wrap:wrap;align-items:stretch;justify-content:flex-start;max-width:100%;}
#node-block_419241f1{position:relative;float:left;width:100%;min-height:72px;display:grid;grid-template-columns:5.2rem minmax(0, 1fr);gap:1.05rem;align-items:start;max-width:100%;}
#node-block_7bc3e62d{position:relative;float:left;width:auto;min-height:72px;display:grid;gap:0.35rem;align-content:start;padding-top:0.15rem;grid-column:span 12 / span 12;max-width:none;min-width:0;justify-self:stretch;}
#node-text_352f4017{position:relative;font-family:Outfit;font-weight:700;color:#111827;text-transform:none;line-height:1.08;letter-spacing:-0.02em;font-size:3.2rem;max-width:9ch;}
#node-text_bda6fc1f{position:relative;font-family:Outfit;font-weight:300;color:#374151;text-transform:none;line-height:0.98;letter-spacing:0;font-size:3.2rem;max-width:100%;}
#node-block_05d49aea{position:relative;float:left;width:100%;min-height:72px;display:grid;gap:0.55rem;max-width:100%;}
#node-text_3c7c8625{position:relative;font-family:Outfit;font-weight:600;color:#111827;text-transform:none;line-height:1.16;letter-spacing:-0.01em;font-size:1.5rem;margin-bottom:0rem;max-width:100%;}
#node-block_09d64b34{position:relative;float:left;width:100%;display:flex;gap:0.2rem;align-items:stretch;height:auto;flex-direction:row;flex-wrap:wrap;justify-content:flex-start;align-content:flex-end;row-gap:0.2rem;column-gap:0.2rem;max-width:100%;}
#node-text_3554a91c{position:relative;font-family:Source Sans 3;font-weight:400;color:#374151;text-transform:none;line-height:1.72;letter-spacing:0;font-size:1.05rem;width:299px;max-width:none;flex-basis:299px;margin-bottom:0px;}
#node-text_083789b5{position:relative;font-family:Source Sans 3;font-weight:400;color:#374151;text-transform:none;line-height:1.72;letter-spacing:0;font-size:1.05rem;width:312px;max-width:none;flex-basis:312px;margin-top:0px;margin-bottom:0px;}
#node-text_45e754b6{position:relative;font-family:Source Sans 3;font-weight:400;color:#374151;text-transform:none;line-height:1.72;letter-spacing:0;font-size:1.05rem;width:313px;max-width:none;flex-basis:313px;padding-top:0px;margin-top:0px;margin-bottom:0px;}
#node-block_6fd88f2a{position:relative;float:left;width:100%;display:grid;grid-template-columns:auto minmax(0, 1fr);gap:0.65rem;align-items:center;height:auto;max-width:100%;}
#node-block_4a1654bc{position:relative;float:left;width:100%;display:grid;grid-template-columns:auto minmax(0, 1fr);gap:0.65rem;align-items:center;height:auto;max-width:100%;}
#node-block_5c23248e{position:relative;float:left;width:100%;height:1px;background:#e5e7eb;max-width:100%;}
#node-block_d96098c0{position:relative;float:left;width:100%;min-height:72px;display:grid;gap:0.55rem;max-width:100%;}
#node-text_d85739e6{position:relative;font-family:Outfit;font-weight:600;color:#111827;text-transform:none;line-height:1.16;letter-spacing:-0.01em;font-size:1.5rem;margin-bottom:0rem;max-width:100%;}
#node-block_a97ca91d{position:relative;float:left;width:100%;display:flex;gap:0.65rem;align-items:start;flex-direction:row;flex-wrap:wrap;justify-content:flex-start;max-width:100%;}
#node-text_7aa22269{position:relative;font-family:Source Sans 3;font-weight:400;color:#374151;text-transform:none;line-height:1.72;letter-spacing:0;font-size:1.05rem;margin-bottom:0rem;max-width:100%;}
#node-text_0f4337cb{position:relative;font-family:Source Sans 3;font-weight:400;color:#374151;text-transform:none;line-height:1.72;letter-spacing:0;font-size:1.05rem;margin-top:0rem;margin-bottom:0rem;max-width:100%;}
#node-text_6d12e4f2{position:relative;font-family:Source Sans 3;font-weight:400;color:#374151;text-transform:none;line-height:1.72;letter-spacing:0;font-size:1.05rem;margin-top:0rem;margin-bottom:0rem;max-width:100%;}
#node-text_861c8596{position:relative;font-family:Source Sans 3;font-weight:400;color:#374151;text-transform:none;line-height:1.72;letter-spacing:0;font-size:1.05rem;margin-top:0rem;max-width:100%;}
#node-block_26260e65{position:relative;float:left;width:100%;min-height:72px;display:grid;grid-template-columns:4.2rem minmax(0, 1fr);gap:0.85rem;align-items:center;padding-top:0.95rem;padding-bottom:0.95rem;padding-left:0.95rem;padding-right:0.95rem;border-radius:14px;background:#ff3131;color:#0a0a0a;border-color:#dccfbe;max-width:100%;}
#node-text_3c7b300f{position:relative;font-family:Source Sans 3;font-weight:400;color:#ffffff;text-transform:none;line-height:1.72;letter-spacing:0;font-size:1.05rem;grid-column:span 12 / span 12;width:auto;max-width:none;min-width:0;justify-self:stretch;}
#node-block_9db0606a{width:auto;padding-top:24px;padding-right:24px;padding-bottom:24px;padding-left:24px;background:transparent;position:relative;float:left;grid-column:4 / span 6;max-width:none;min-width:0;justify-self:stretch;grid-row:auto;display:flex;gap:16px;flex-direction:row;flex-wrap:wrap;align-items:stretch;justify-content:center;border-radius:4px;color:#0a0a0a;}
#node-button_4c08bb32{display:inline;padding-top:20px;padding-right:35px;padding-bottom:20px;padding-left:35px;background:#000000;color:#ffffff;width:100%;float:left;margin-top:16px;font-size:1.5rem;align-self:stretch;text-align:center;border-radius:100px;font-family:Source Sans 3;font-weight:700;text-transform:none;line-height:1.72;letter-spacing:0;border-width:0px;border:none;border-style:none;transition:background-color 180ms ease, color 180ms ease, border-color 180ms ease, transform 180ms ease, box-shadow 180ms ease;max-width:100%;}
#node-section_ffb25794{position:relative;width:100%;min-height:180px;padding-top:2.6rem;padding-right:2.2rem;padding-bottom:2.6rem;padding-left:2.2rem;background:#000000;display:grid;color:#ffffff;border-bottom:1px solid #ebe5dc;border-radius:0px;box-shadow:0 28px 60px rgba(0, 0, 0, 0.32);grid-template-columns:repeat(12, minmax(0, 1fr));gap:1rem;border-color:#dccfbe;max-width:100%;}
#node-block_5abaf88d{position:relative;float:left;width:100%;min-height:72px;display:grid;grid-template-columns:minmax(0, 0.92fr) minmax(0, 1.08fr);gap:2rem;align-items:center;grid-column:span 12 / span 12;grid-row:auto;max-width:100%;}
#node-block_749cf58d{position:relative;float:left;width:auto;min-height:72px;display:grid;grid-column:span 12 / span 12;max-width:none;min-width:0;justify-self:stretch;grid-template-columns:repeat(12, minmax(0, 1fr));gap:0.4rem;row-gap:0.4rem;column-gap:0.4rem;}
#node-text_359cb30e{position:relative;font-family:Outfit;font-weight:700;color:#ffffff;text-transform:none;line-height:0.92;letter-spacing:-0.03em;font-size:8.5rem;max-width:none;margin-bottom:0rem;grid-column:span 10 / span 10;width:51.05rem;min-width:0;justify-self:stretch;}
#node-block_ecda5942{position:relative;float:left;width:auto;display:block;align-items:center;margin-top:0.6rem;padding-top:0rem;padding-bottom:1.15rem;padding-left:1.15rem;padding-right:1.15rem;border-radius:0px;border:none;background:transparent;grid-column:span 12 / span 12;max-width:none;min-width:0;justify-self:stretch;border-width:0px;border-style:none;color:#0a0a0a;height:auto;}
#node-text_41222a05{position:relative;font-family:Outfit;font-weight:700;color:#ff3131;text-transform:none;line-height:1.08;letter-spacing:-0.02em;font-size:3.2rem;max-width:none;grid-column:span 10 / span 10;width:33.8rem;min-width:0;justify-self:stretch;margin-top:0rem;margin-bottom:0rem;}
#node-block_667a0455{position:relative;float:left;width:auto;min-height:72px;display:grid;grid-column:span 12 / span 12;grid-row:auto;grid-template-columns:repeat(12, minmax(0, 1fr));gap:1rem;padding-top:2.5%;max-width:none;min-width:0;justify-self:stretch;}
#node-block_8a32720c{position:relative;float:left;width:auto;min-height:72px;display:grid;grid-template-columns:4.3rem auto minmax(0, 1fr);gap:0.95rem;align-items:start;padding-top:0.45rem;padding-bottom:0.45rem;grid-column:span 12 / span 12;max-width:none;min-width:0;justify-self:stretch;grid-row:auto;}
#node-block_07cd5fd8{position:relative;float:left;width:100%;min-height:72px;display:grid;justify-items:center;gap:0.4rem;padding-top:0.15rem;max-width:100%;}
#node-block_ab2947c9{position:relative;float:left;width:auto;min-height:72px;display:grid;gap:0.35rem;padding-top:0.1rem;grid-column:span 12 / span 12;max-width:none;min-width:0;justify-self:stretch;}
#node-text_0903ea35{position:relative;font-family:Outfit;font-weight:700;color:#ff3131;text-transform:none;line-height:0.92;letter-spacing:-0.03em;font-size:8.5rem;margin-top:0rem;text-align:right;padding-bottom:0rem;margin-bottom:0rem;max-width:100%;}
#node-text_97324a6d{position:relative;font-family:Outfit;font-weight:700;color:#ffffff;text-transform:none;line-height:0.92;letter-spacing:-0.03em;font-size:8.5rem;margin-top:0rem;text-align:right;padding-bottom:0rem;margin-bottom:0rem;max-width:100%;}
#node-text_ec02166e{position:relative;font-family:Outfit;font-weight:700;color:#ffffff;text-transform:none;line-height:0.92;letter-spacing:-0.03em;font-size:8.5rem;margin-top:0rem;text-align:right;padding-bottom:0rem;margin-bottom:0rem;max-width:100%;}
#node-text_e1eeb6fa{position:relative;font-family:Outfit;font-weight:700;color:#ff3131;text-transform:none;line-height:0.92;letter-spacing:-0.03em;font-size:8.5rem;margin-top:0rem;text-align:right;padding-bottom:0rem;margin-bottom:0rem;max-width:100%;}
#node-section_b6c2302a{width:100%;min-height:220px;padding-top:4rem;padding-right:4vw;padding-bottom:4rem;padding-left:4vw;background:#f4dfd6;display:grid;gap:1.25rem;color:#1f1812;border-bottom:1px solid #ebe5dc;border-color:#dccfbe;max-width:100%;}
#node-block_20a71e83{width:auto;min-height:140px;padding-top:24px;padding-right:24px;padding-bottom:24px;padding-left:24px;display:grid;gap:0rem;max-width:none;justify-self:stretch;grid-column:span 12 / span 12;min-width:0;row-gap:0rem;column-gap:0rem;background:transparent;color:#0a0a0a;}
#node-text_f35ec5b5{font-family:Outfit;font-size:8.5rem;line-height:0.92;color:#ff3131;max-width:16ch;font-weight:700;margin-bottom:0rem;text-transform:none;letter-spacing:-0.03em;grid-column:span 12 / span 12;grid-row:auto;}
#node-text_2697a46d{font-family:Outfit;font-size:8.5rem;line-height:0.92;color:#0a0a0a;max-width:16ch;font-weight:700;margin-top:0rem;margin-bottom:0rem;text-transform:none;letter-spacing:-0.03em;grid-column:span 12 / span 12;grid-row:auto;}
#node-text_143e8a53{font-family:Source Sans 3;font-size:1.05rem;line-height:1.72;color:#0a0a0a;max-width:64ch;margin-top:0rem;padding-top:0.9rem;grid-column:span 12 / span 12;grid-row:auto;font-weight:400;text-transform:none;letter-spacing:0;}
#node-block_c426046b{width:auto;padding-top:24px;padding-right:24px;padding-bottom:24px;padding-left:24px;background:transparent;position:relative;float:left;grid-column:9 / span 4;max-width:none;min-width:0;justify-self:stretch;grid-row:auto;display:flex;gap:16px;flex-direction:row;flex-wrap:wrap;align-items:stretch;justify-content:center;border-radius:4px;color:#0a0a0a;}
#node-button_cb6a053d{display:inline;padding-top:20px;padding-right:35px;padding-bottom:20px;padding-left:35px;background:#ffffff;color:#000000;width:100%;float:left;margin-top:16px;font-size:1.5rem;align-self:stretch;text-align:center;border-radius:100px;font-family:Source Sans 3;font-weight:700;text-transform:none;line-height:1.72;letter-spacing:0;border-width:0px;border:none;border-style:none;transition:background-color 180ms ease, color 180ms ease, border-color 180ms ease, transform 180ms ease, box-shadow 180ms ease;max-width:100%;}
#node-section_53845cbd{position:relative;width:100%;min-height:180px;padding-top:0rem;padding-right:0rem;padding-bottom:0rem;padding-left:0rem;background:#f7f7f7;max-width:100%;}
#node-section_afd94fa7{width:100%;padding-top:4rem;padding-right:4vw;padding-bottom:4rem;padding-left:4vw;display:grid;gap:1.25rem;color:#0a0a0a;border-bottom:1px solid #ebe5dc;justify-items:center;text-align:center;height:auto;min-height:220px;grid-column:span 12 / span 12;grid-row:auto;background:#ffffff;border-color:#dccfbe;max-width:100%;}
#node-block_9c7b1d05{width:100%;padding-top:24px;padding-right:24px;padding-bottom:24px;padding-left:24px;background:transparent;position:relative;float:left;display:grid;grid-template-columns:repeat(12, minmax(0, 1fr));gap:1rem;color:#0a0a0a;max-width:100%;}
#node-text_3a45e538{font-family:Outfit;font-size:8.5rem;line-height:0.92;color:#111827;max-width:none;width:auto;float:left;font-weight:700;letter-spacing:-0.03em;text-transform:none;position:relative;grid-column:span 12 / span 12;grid-row:auto;min-width:0;justify-self:stretch;padding-bottom:0rem;margin-bottom:0rem;}
#node-block_0088263e{width:auto;padding-top:24px;padding-right:24px;padding-bottom:24px;padding-left:24px;background:#ffffff;position:relative;float:left;display:flex;min-width:0;max-width:none;border-radius:4px;gap:16px;flex-direction:row;flex-wrap:wrap;justify-content:center;align-items:stretch;grid-column:5 / span 4;grid-row:auto;justify-self:stretch;color:#0a0a0a;border-color:#dccfbe;}
#node-button_41c4f1a5{display:inline;padding-top:25px;padding-right:40px;padding-bottom:25px;padding-left:40px;background:#000000;color:#ffffff;font-family:Source Sans 3;font-size:1.5rem;font-weight:700;line-height:1.72;letter-spacing:0;text-transform:none;position:relative;text-align:center;float:left;width:100%;margin-top:16px;border-radius:100px;border-width:0px;border-style:none;border:none;align-self:stretch;transition:background-color 180ms ease, color 180ms ease, border-color 180ms ease, transform 180ms ease, box-shadow 180ms ease;max-width:100%;}
#node-section_1aa5cb82{position:relative;width:100%;min-height:180px;padding-top:0rem;padding-right:0rem;padding-bottom:0rem;padding-left:0rem;background:#f7f7f7;display:block;max-width:100%;}
#node-section_a9d8025d{width:100%;padding-top:48px;padding-right:48px;padding-bottom:48px;padding-left:48px;background:#000000;position:relative;height:100%;display:grid;grid-template-columns:repeat(12, minmax(0, 1fr));gap:1rem;color:#ffffff;border-color:#dccfbe;max-width:100%;}
#node-block_5fc70aa6{width:auto;padding-top:5px;padding-right:5px;padding-bottom:5px;padding-left:5px;background:transparent;position:relative;float:left;grid-column:span 12 / span 12;max-width:none;min-width:0;justify-self:stretch;height:auto;display:grid;grid-template-columns:repeat(12, minmax(0, 1fr));gap:1rem;color:#0a0a0a;}
#node-block_eb15feae{width:auto;padding-top:2px;padding-right:2px;padding-bottom:2px;padding-left:2px;background:transparent;position:relative;float:left;max-width:none;height:auto;grid-column:span 2 / span 2;grid-row:auto;min-width:0;justify-self:stretch;color:#0a0a0a;}
#node-image_fbb5aa15{width:67%;object-fit:contain;position:relative;float:left;height:auto;max-width:none;}
#node-block_e2f287a5{width:auto;padding-top:0px;padding-right:2px;padding-bottom:0px;padding-left:2px;background:transparent;position:relative;float:left;grid-column:span 10 / span 10;grid-row:auto;max-width:none;min-width:0;justify-self:stretch;height:auto;opacity:1;display:grid;grid-template-columns:repeat(12, minmax(0, 1fr));gap:1rem;color:#0a0a0a;}
#node-text_c7a7eeef{font-family:Outfit;font-size:1.5rem;line-height:1.16;color:#ffffff;max-width:none;position:relative;font-weight:600;text-transform:none;letter-spacing:-0.01em;width:auto;float:left;grid-column:span 12 / span 12;min-width:0;justify-self:stretch;text-align:right;grid-row:auto;margin-top:1.2rem;}
#node-button_fa35ef33:hover{background:#ffffff !important;color:#ff2424 !important;}
#node-button_3d258cb7:hover{background:#ff2424 !important;color:#ffffff !important;}
#node-button_4c08bb32:hover{background:#ffffff !important;color:#ff2424 !important;}
#node-button_cb6a053d:hover{background:#ff2424 !important;color:#ffffff !important;}
}

@media (max-width: 1279px) {
#node-section_6a2d8386{width:100%;padding-top:0px;padding-right:0px;padding-bottom:0px;padding-left:0px;background:#fffdf9;max-width:100%;}
#node-section_092345f3{width:100%;padding-top:3.22rem;padding-right:4vw;padding-bottom:3.68rem;padding-left:4vw;display:grid;gap:1.15rem;color:#ffffff;border-bottom:1px solid #ebe5dc;grid-template-columns:1.05fr 0.95fr;align-items:center;height:auto;align-content:flex-start;background:#000000;border-color:#dccfbe;max-width:100%;}
#node-block_6f73c4ef{width:auto;padding-top:4.6px;padding-right:4.6px;padding-bottom:4.6px;padding-left:4.6px;background:transparent;position:relative;float:left;grid-column:span 12 / span 12;max-width:none;min-width:0;justify-self:stretch;height:auto;display:grid;grid-template-columns:repeat(12, minmax(0, 1fr));gap:0.92rem;color:#0a0a0a;}
#node-block_45fabccf{width:auto;padding-top:1.84px;padding-right:1.84px;padding-bottom:1.84px;padding-left:1.84px;background:transparent;position:relative;float:left;max-width:none;height:auto;grid-column:span 2 / span 2;grid-row:auto;min-width:0;justify-self:stretch;color:#0a0a0a;}
#node-image_42a6e4e0{width:100%;object-fit:contain;position:relative;float:left;height:auto;}
#node-block_9ab17177{width:auto;padding-top:1.84px;padding-right:1.84px;padding-bottom:1.84px;padding-left:1.84px;background:transparent;position:relative;float:left;grid-column:span 10 / span 10;grid-row:auto;max-width:none;min-width:0;justify-self:stretch;height:auto;opacity:1;color:#0a0a0a;}
#node-section_b3b60703{width:100%;min-height:220px;padding-top:3.68rem;padding-right:4vw;padding-bottom:3.68rem;padding-left:4vw;background:#ffffff;display:grid;gap:1.15rem;color:#0a0a0a;border-bottom:1px solid #ebe5dc;grid-column:span 4 / span 4;grid-row:auto;border-color:#dccfbe;max-width:100%;}
#node-block_98d7a11a{width:auto;min-height:140px;padding-top:0px;padding-right:22.08px;padding-bottom:0px;padding-left:22.08px;background:transparent;display:grid;gap:0rem;max-width:none;justify-self:stretch;opacity:1;grid-column:span 12 / span 12;min-width:0;row-gap:0rem;column-gap:0rem;color:#0a0a0a;}
#node-text_068f091d{font-family:Outfit;font-size:5rem;line-height:1.05;color:#111827;max-width:16ch;font-weight:700;text-transform:none;letter-spacing:-0.03em;grid-column:span 12 / span 12;width:auto;min-width:0;justify-self:stretch;margin-bottom:0rem;padding-bottom:0rem;}
#node-text_b2bd64da{font-family:Outfit;font-size:5rem;line-height:1.05;color:#111827;max-width:none;font-weight:700;text-transform:none;letter-spacing:-0.03em;padding-top:0rem;margin-top:0rem;padding-bottom:0rem;margin-bottom:0rem;grid-column:span 12 / span 12;width:auto;min-width:0;justify-self:stretch;}
#node-text_af46395e{font-family:Outfit;font-size:5rem;line-height:1.05;color:#ff3131;max-width:none;font-weight:700;text-transform:none;letter-spacing:-0.03em;margin-top:0px;grid-column:span 12 / span 12;width:auto;min-width:0;justify-self:stretch;padding-bottom:0px;margin-bottom:0px;}
#node-text_56710e33{font-family:Outfit;font-size:5rem;line-height:1.05;color:#111827;max-width:none;font-weight:700;text-transform:none;letter-spacing:-0.03em;margin-top:0px;grid-column:span 12 / span 12;width:auto;min-width:0;justify-self:stretch;padding-bottom:0px;margin-bottom:0px;}
#node-text_87956df1{font-family:Outfit;font-size:5rem;line-height:1.05;color:#111827;max-width:none;font-weight:700;text-transform:none;letter-spacing:-0.03em;margin-top:0px;grid-column:span 11 / span 11;width:auto;min-width:0;justify-self:stretch;padding-bottom:0px;margin-bottom:0px;}
#node-text_cb8fd1c3{font-family:Source Sans 3;font-size:1.18rem;line-height:1.64;color:#ff3131;max-width:none;font-weight:400;text-transform:none;letter-spacing:0;margin-top:35.88px;grid-column:span 11 / span 11;width:auto;min-width:0;justify-self:stretch;padding-bottom:0px;margin-bottom:0px;}
#node-block_287aa4aa{width:auto;padding-top:22.08px;padding-right:22.08px;padding-bottom:22.08px;padding-left:22.08px;background:transparent;position:relative;float:left;grid-column:span 4 / span 4;max-width:none;min-width:0;justify-self:stretch;grid-row:auto;display:flex;gap:14.72px;flex-direction:row;flex-wrap:wrap;align-items:stretch;justify-content:center;border-radius:4px;color:#0a0a0a;}
#node-button_fa35ef33{display:inline;padding-top:18.4px;padding-right:32.2px;padding-bottom:18.4px;padding-left:32.2px;background:#000000;color:#ffffff;width:100%;float:left;margin-top:14.72px;font-size:1.2rem;align-self:stretch;text-align:center;border-radius:100px;font-family:Source Sans 3;font-weight:700;text-transform:none;line-height:1.72;letter-spacing:0;border-width:0px;border:none;border-style:none;transition:background-color 180ms ease, color 180ms ease, border-color 180ms ease, transform 180ms ease, box-shadow 180ms ease;max-width:100%;}
#node-block_196ef1da{width:auto;padding-top:22.08px;padding-right:22.08px;padding-bottom:22.08px;padding-left:0px;background:transparent;position:relative;float:left;grid-column:span 4 / span 4;max-width:none;min-width:0;justify-self:stretch;grid-row:auto;display:flex;gap:14.72px;flex-direction:row;flex-wrap:wrap;align-items:stretch;justify-content:center;border-radius:4px;color:#0a0a0a;}
#node-button_3d258cb7{display:inline;padding-top:18.4px;padding-right:32.2px;padding-bottom:18.4px;padding-left:32.2px;background:#ffffff;color:#000000;width:100%;float:left;margin-top:14.72px;font-size:1.2rem;align-self:stretch;text-align:center;border-radius:100px;font-family:Source Sans 3;font-weight:700;text-transform:none;line-height:1.72;letter-spacing:0;border-width:2px;border:2px solid #d7dce4;border-style:solid;transition:background-color 180ms ease, color 180ms ease, border-color 180ms ease, transform 180ms ease, box-shadow 180ms ease;max-width:100%;}
#node-section_cd4189f1{position:relative;width:100%;min-height:180px;padding-top:4rem;padding-right:4vw;padding-bottom:4rem;padding-left:4vw;background:#f4dfd6;display:grid;color:#1f1812;border-bottom:1px solid #ebe5dc;border-color:#dccfbe;grid-template-columns:repeat(12, minmax(0, 1fr));gap:1rem;max-width:100%;}
#node-block_f748e784{position:relative;float:left;width:auto;min-height:72px;display:grid;gap:0.874rem;max-width:none;justify-self:stretch;grid-column:span 12 / span 12;grid-row:auto;min-width:0;}
#node-text_6db39242{position:relative;font-family:Source Sans 3;font-weight:700;color:#8c5c45;text-transform:uppercase;line-height:1.72;letter-spacing:0.18em;font-size:1rem;grid-column:span 12 / span 12;grid-row:auto;text-align:right;max-width:100%;}
#node-text_de7886a8{position:relative;font-family:Outfit;font-weight:700;color:#111827;text-transform:none;line-height:1.05;letter-spacing:-0.03em;font-size:5rem;max-width:none;margin-bottom:0px;margin-top:0px;grid-column:span 12 / span 12;width:auto;min-width:0;justify-self:stretch;text-align:right;}
#node-text_88aebcd8{position:relative;font-family:Outfit;font-weight:700;color:#ff3131;text-transform:none;line-height:1.05;letter-spacing:-0.03em;font-size:5rem;max-width:none;margin-top:0px;padding-bottom:0px;margin-bottom:0px;grid-column:span 12 / span 12;width:auto;min-width:0;justify-self:stretch;text-align:right;}
#node-text_eccd03ce{position:relative;font-family:Source Sans 3;font-weight:400;color:#374151;text-transform:none;line-height:1.72;letter-spacing:0;font-size:1rem;max-width:none;margin-top:0rem;grid-column:7 / span 6;width:auto;min-width:0;justify-self:stretch;text-align:right;grid-row:auto;}
#node-block_d067401d{position:relative;float:left;width:100%;min-height:72px;display:grid;align-items:start;grid-column:span 12 / span 12;grid-row:auto;grid-template-columns:repeat(12, minmax(0, 1fr));gap:1rem;max-width:100%;}
#node-block_b5c264ff{position:relative;float:left;width:100%;min-height:72px;display:block;gap:1.334rem;padding-left:1.3rem;border-style:none;border:none;border-width:0px;grid-column:span 6 / span 6;grid-row:auto;max-width:100%;}
#node-block_728cb332{position:relative;float:left;width:100%;min-height:72px;display:grid;gap:0.644rem;padding-top:0%;margin-top:11%;max-width:100%;}
#node-block_8fe62aa9{position:relative;float:left;width:100%;display:grid;align-items:center;padding-top:0rem;padding-bottom:0rem;padding-left:0.9rem;padding-right:0.9rem;border-radius:16px;background:#ffffff;border:1px solid #dfe7f5;height:auto;margin-top:0%;flex-direction:row;flex-wrap:wrap;justify-content:flex-start;grid-template-columns:repeat(12, minmax(0, 1fr));gap:1rem;max-width:100%;}
#node-block_d41a6c84{position:relative;float:left;width:2.9rem;height:auto;border-radius:14px;background:#ffffff;display:flex;align-items:center;justify-content:center;grid-column:span 2 / span 2;grid-row:auto;color:#0a0a0a;border-color:#dccfbe;flex-wrap:wrap;max-width:100%;}
#node-icon_a61287d7{position:relative;display:inline-flex;width:2.4rem;height:1.8rem;align-items:center;justify-content:center;color:#2563eb;justify-self:start;align-self:start;max-width:none;flex-basis:2.4rem;}
#node-text_141cfcbb{position:relative;font-family:Source Sans 3;font-weight:400;color:#374151;text-transform:none;line-height:1.64;letter-spacing:0;font-size:1.18rem;grid-column:span 9 / span 9;width:auto;max-width:none;min-width:0;justify-self:stretch;}
#node-block_2c8a43cd{position:relative;float:left;width:100%;display:grid;align-items:center;padding-top:0rem;padding-bottom:0rem;padding-left:0.9rem;padding-right:0.9rem;border-radius:16px;background:#ffffff;border:1px solid #dfe7f5;grid-template-columns:repeat(12, minmax(0, 1fr));gap:1rem;height:auto;max-width:100%;}
#node-block_8c2fa6a9{position:relative;float:left;width:2.9rem;height:auto;border-radius:14px;background:#ffffff;display:flex;align-items:center;justify-content:center;color:#0a0a0a;border-color:#dccfbe;grid-column:span 2 / span 2;grid-row:auto;flex-wrap:wrap;max-width:100%;}
#node-icon_322442e1{position:relative;display:inline-flex;width:1.8rem;height:1.8rem;align-items:center;justify-content:center;color:#2563eb;justify-self:start;align-self:start;max-width:100%;}
#node-text_aa06dd5f{position:relative;font-family:Source Sans 3;font-weight:400;color:#374151;text-transform:none;line-height:1.64;letter-spacing:0;font-size:1.18rem;grid-column:span 8 / span 8;grid-row:auto;max-width:100%;}
#node-block_89058840{position:relative;float:left;width:100%;display:grid;align-items:center;padding-top:0rem;padding-bottom:0rem;padding-left:0.9rem;padding-right:0.9rem;border-radius:16px;background:#ffffff;border:1px solid #dfe7f5;grid-template-columns:repeat(12, minmax(0, 1fr));gap:1rem;height:auto;max-width:100%;}
#node-block_d1ad819e{position:relative;float:left;width:2.9rem;height:auto;border-radius:14px;background:#ffffff;display:flex;align-items:center;justify-content:center;grid-column:span 2 / span 2;grid-row:auto;color:#0a0a0a;border-color:#dccfbe;flex-wrap:wrap;max-width:100%;}
#node-icon_9a148198{position:relative;display:inline-flex;width:1.8rem;height:1.8rem;align-items:center;justify-content:center;color:#2563eb;justify-self:start;align-self:start;max-width:100%;}
#node-text_2764a1f9{position:relative;font-family:Source Sans 3;font-weight:400;color:#374151;text-transform:none;line-height:1.64;letter-spacing:0;font-size:1.18rem;grid-column:span 8 / span 8;grid-row:auto;max-width:100%;}
#node-block_44c2ec40{position:relative;float:left;width:100%;display:grid;align-items:center;padding-top:0rem;padding-bottom:0rem;padding-left:0.9rem;padding-right:0.9rem;border-radius:16px;background:#ffffff;border:1px solid #dfe7f5;grid-template-columns:repeat(12, minmax(0, 1fr));gap:1rem;height:auto;max-width:100%;}
#node-block_842195e7{position:relative;float:left;width:2.9rem;height:auto;border-radius:14px;background:#ffffff;display:flex;align-items:center;justify-content:center;color:#0a0a0a;border-color:#dccfbe;grid-column:span 2 / span 2;grid-row:auto;flex-wrap:wrap;max-width:100%;}
#node-icon_f3955860{position:relative;display:inline-flex;width:1.8rem;height:1.8rem;align-items:center;justify-content:center;color:#2563eb;justify-self:start;align-self:start;max-width:100%;}
#node-text_3f2f4253{position:relative;font-family:Source Sans 3;font-weight:400;color:#374151;text-transform:none;line-height:1.64;letter-spacing:0;font-size:1.18rem;grid-column:span 8 / span 8;grid-row:auto;max-width:100%;}
#node-block_a5e98f08{position:relative;float:left;width:100%;min-height:72px;display:grid;gap:1.45rem;padding-left:1.3rem;border-style:none;border:none;border-width:0px;grid-column:span 6 / span 6;grid-row:auto;max-width:100%;}
#node-block_6cd2950e{position:relative;float:left;width:100%;min-height:72px;display:grid;gap:0.644rem;padding-top:0%;margin-top:11%;max-width:100%;}
#node-block_cc7c6c21{position:relative;float:left;width:100%;display:grid;align-items:center;padding-top:0rem;padding-bottom:0rem;padding-left:0.9rem;padding-right:0.9rem;border-radius:16px;background:#000000;border:1px solid #dfe7f5;height:auto;margin-top:0%;flex-direction:row;flex-wrap:wrap;justify-content:flex-start;grid-template-columns:repeat(12, minmax(0, 1fr));gap:1rem;color:#ffffff;border-color:#dccfbe;max-width:100%;}
#node-block_2970b28e{position:relative;float:left;width:2.9rem;height:auto;border-radius:14px;background:transparent;display:flex;align-items:center;justify-content:center;grid-column:span 2 / span 2;grid-row:auto;color:#0a0a0a;flex-wrap:wrap;max-width:100%;}
#node-icon_0ec8ef52{position:relative;display:inline-flex;width:2.4rem;height:1.8rem;align-items:center;justify-content:center;color:#ff3131;justify-self:start;align-self:start;max-width:none;flex-basis:2.4rem;}
#node-text_529ca399{position:relative;font-family:Source Sans 3;font-weight:400;color:#ffffff;text-transform:none;line-height:1.64;letter-spacing:0;font-size:1.18rem;grid-column:span 9 / span 9;width:auto;max-width:none;min-width:0;justify-self:stretch;}
#node-block_2604707e{position:relative;float:left;width:100%;display:grid;align-items:center;padding-top:0rem;padding-bottom:0rem;padding-left:0.9rem;padding-right:0.9rem;border-radius:16px;background:#ffffff;border:1px solid #dfe7f5;grid-template-columns:repeat(12, minmax(0, 1fr));gap:1rem;height:auto;max-width:100%;}
#node-block_7f4e19cc{position:relative;float:left;width:2.9rem;height:auto;border-radius:14px;background:#ffffff;display:flex;align-items:center;justify-content:center;color:#0a0a0a;border-color:#dccfbe;grid-column:span 2 / span 2;grid-row:auto;flex-wrap:wrap;max-width:100%;}
#node-icon_e1bc489d{position:relative;display:inline-flex;width:1.35rem;height:1.8rem;align-items:center;justify-content:center;color:#2563eb;justify-self:start;align-self:start;max-width:100%;}
#node-text_90e7cbca{position:relative;font-family:Source Sans 3;font-weight:400;color:#374151;text-transform:none;line-height:1.64;letter-spacing:0;font-size:1.18rem;grid-column:span 8 / span 8;grid-row:auto;max-width:100%;}
#node-block_8018f042{position:relative;float:left;width:100%;display:block;align-items:center;padding-top:0rem;padding-bottom:0rem;padding-left:0.9rem;padding-right:0.9rem;border-radius:16px;background:#ffffff;border:1px solid #dfe7f5;grid-template-columns:repeat(12, minmax(0, 1fr));gap:0.92rem;height:auto;max-width:100%;}
#node-block_f05422ac{position:relative;float:left;width:2.9rem;height:auto;border-radius:14px;background:#ffffff;display:flex;align-items:center;justify-content:center;grid-column:span 2 / span 2;grid-row:auto;color:#0a0a0a;border-color:#dccfbe;flex-wrap:wrap;max-width:100%;}
#node-icon_28a6eca6{position:relative;display:inline-flex;width:1.8rem;height:1.8rem;align-items:center;justify-content:center;color:#2563eb;justify-self:start;align-self:start;max-width:100%;}
#node-text_5d001300{position:relative;font-family:Source Sans 3;font-weight:400;color:#374151;text-transform:none;line-height:1.64;letter-spacing:0;font-size:1.18rem;grid-column:span 8 / span 8;grid-row:auto;max-width:100%;}
#node-block_318af2ca{position:relative;float:left;width:100%;display:grid;align-items:center;padding-top:0rem;padding-bottom:0rem;padding-left:0.9rem;padding-right:0.9rem;border-radius:16px;background:#ffffff;border:1px solid #dfe7f5;grid-template-columns:repeat(12, minmax(0, 1fr));gap:1rem;height:auto;max-width:100%;}
#node-block_71566a39{position:relative;float:left;width:2.9rem;height:auto;border-radius:14px;background:#ffffff;display:flex;align-items:center;justify-content:center;color:#0a0a0a;border-color:#dccfbe;grid-column:span 2 / span 2;grid-row:auto;flex-wrap:wrap;max-width:100%;}
#node-icon_5ccf2f0f{position:relative;display:inline-flex;width:1.8rem;height:1.8rem;align-items:center;justify-content:center;color:#2563eb;justify-self:start;align-self:start;max-width:100%;}
#node-text_813d4655{position:relative;font-family:Source Sans 3;font-weight:400;color:#374151;text-transform:none;line-height:1.64;letter-spacing:0;font-size:1.18rem;grid-column:span 8 / span 8;grid-row:auto;max-width:100%;}
#node-block_9da079f6{position:relative;float:left;width:100%;min-height:72px;display:grid;padding-left:2rem;border-left:1px solid #eceff4;grid-column:span 12 / span 12;grid-row:auto;grid-template-columns:repeat(12, minmax(0, 1fr));gap:1rem;max-width:100%;}
#node-text_592f3987{position:relative;font-family:Outfit;font-weight:700;color:#111827;text-transform:none;line-height:1.1;letter-spacing:-0.02em;font-size:2.2rem;margin-bottom:1.5rem;grid-column:span 12 / span 12;width:auto;max-width:none;min-width:0;justify-self:stretch;}
#node-block_9c63bb71{position:relative;float:left;width:100%;min-height:72px;display:grid;gap:0.644rem;padding-top:0%;margin-top:3%;grid-column:span 6 / span 6;grid-row:auto;max-width:100%;}
#node-block_d65627ff{position:relative;float:left;width:100%;display:grid;align-items:center;padding-top:0rem;padding-bottom:0rem;padding-left:0.9rem;padding-right:0.9rem;border-radius:16px;background:#ffffff;border:1px solid #dfe7f5;height:auto;margin-top:0%;flex-direction:row;flex-wrap:wrap;justify-content:flex-start;grid-template-columns:repeat(12, minmax(0, 1fr));gap:1rem;max-width:100%;}
#node-block_4d3b3aaa{position:relative;float:left;width:2.9rem;height:auto;border-radius:14px;background:#ffffff;display:flex;align-items:center;justify-content:center;grid-column:span 2 / span 2;grid-row:auto;color:#0a0a0a;border-color:#dccfbe;flex-wrap:wrap;max-width:100%;}
#node-icon_890853b0{position:relative;display:inline-flex;width:2.4rem;height:1.8rem;align-items:center;justify-content:center;color:#2563eb;justify-self:start;align-self:start;max-width:none;flex-basis:2.4rem;}
#node-text_022d6df2{position:relative;font-family:Outfit;font-weight:600;color:#111827;text-transform:none;line-height:1.18;letter-spacing:-0.01em;font-size:1.3rem;grid-column:span 9 / span 9;width:auto;max-width:none;min-width:0;justify-self:stretch;}
#node-block_2450699f{position:relative;float:left;width:100%;display:grid;align-items:center;padding-top:0rem;padding-bottom:0rem;padding-left:0.9rem;padding-right:0.9rem;border-radius:16px;background:#ffffff;border:1px solid #dfe7f5;grid-template-columns:repeat(12, minmax(0, 1fr));gap:1rem;height:auto;max-width:100%;}
#node-block_e80be6dd{position:relative;float:left;width:2.9rem;height:auto;border-radius:14px;background:#ffffff;display:flex;align-items:center;justify-content:center;color:#0a0a0a;border-color:#dccfbe;grid-column:span 2 / span 2;grid-row:auto;flex-wrap:wrap;max-width:100%;}
#node-icon_4ee2d3ff{position:relative;display:inline-flex;width:1.8rem;height:1.8rem;align-items:center;justify-content:center;color:#2563eb;justify-self:start;align-self:start;max-width:100%;}
#node-text_e28ef5e1{position:relative;font-family:Outfit;font-weight:600;color:#111827;text-transform:none;line-height:1.18;letter-spacing:-0.01em;font-size:1.3rem;grid-column:span 8 / span 8;grid-row:auto;max-width:100%;}
#node-block_5c936d70{position:relative;float:left;width:100%;display:grid;align-items:center;padding-top:0rem;padding-bottom:0rem;padding-left:0.9rem;padding-right:0.9rem;border-radius:16px;background:#ffffff;border:1px solid #dfe7f5;grid-template-columns:repeat(12, minmax(0, 1fr));gap:1rem;height:auto;max-width:100%;}
#node-block_bde3fc82{position:relative;float:left;width:2.9rem;height:auto;border-radius:14px;background:#ffffff;display:flex;align-items:center;justify-content:center;grid-column:span 2 / span 2;grid-row:auto;color:#0a0a0a;border-color:#dccfbe;flex-wrap:wrap;max-width:100%;}
#node-icon_87d98561{position:relative;display:inline-flex;width:1.8rem;height:1.8rem;align-items:center;justify-content:center;color:#2563eb;justify-self:start;align-self:start;max-width:100%;}
#node-text_b7fb1e2f{position:relative;font-family:Outfit;font-weight:600;color:#111827;text-transform:none;line-height:1.18;letter-spacing:-0.01em;font-size:1.3rem;grid-column:span 8 / span 8;grid-row:auto;max-width:100%;}
#node-block_6a985423{position:relative;float:left;width:100%;display:grid;align-items:center;padding-top:0rem;padding-bottom:0rem;padding-left:0.9rem;padding-right:0.9rem;border-radius:16px;background:#ffffff;border:1px solid #dfe7f5;grid-template-columns:repeat(12, minmax(0, 1fr));gap:1rem;height:auto;max-width:100%;}
#node-block_bdbd25cb{position:relative;float:left;width:2.9rem;height:auto;border-radius:14px;background:#ffffff;display:flex;align-items:center;justify-content:center;color:#0a0a0a;border-color:#dccfbe;grid-column:span 2 / span 2;grid-row:auto;flex-wrap:wrap;max-width:100%;}
#node-icon_f9979045{position:relative;display:inline-flex;width:1.8rem;height:1.8rem;align-items:center;justify-content:center;color:#2563eb;justify-self:start;align-self:start;max-width:100%;}
#node-text_a87096dd{position:relative;font-family:Outfit;font-weight:600;color:#111827;text-transform:none;line-height:1.18;letter-spacing:-0.01em;font-size:1.3rem;grid-column:span 8 / span 8;grid-row:auto;max-width:100%;}
#node-block_d2ab20d0{position:relative;float:left;width:auto;min-height:72px;background:transparent;grid-column:span 6 / span 6;max-width:none;min-width:0;justify-self:stretch;color:#0a0a0a;}
#node-section_e8058328{position:relative;width:100%;min-height:180px;padding-top:4rem;padding-right:4vw;padding-bottom:4rem;padding-left:4vw;background:#ffffff;display:grid;gap:1.25rem;color:#0a0a0a;border-bottom:1px solid #ebe5dc;border-color:#dccfbe;max-width:100%;}
#node-block_9a3c5ce9{position:relative;float:left;width:auto;min-height:72px;display:grid;gap:0.874rem;max-width:none;justify-self:stretch;grid-column:span 12 / span 12;min-width:0;}
#node-text_3f4ec9f6{position:relative;font-family:Source Sans 3;font-weight:700;color:#8c5c45;text-transform:uppercase;line-height:1.72;letter-spacing:0.18em;font-size:1rem;margin-bottom:0rem;max-width:100%;}
#node-text_b096d83a{position:relative;font-family:Outfit;font-weight:700;color:#111827;text-transform:none;line-height:1.05;letter-spacing:-0.03em;font-size:5rem;max-width:16ch;margin-bottom:0px;margin-top:11.96px;}
#node-text_6a01828a{position:relative;font-family:Outfit;font-weight:700;color:#ff3131;text-transform:none;line-height:1.05;letter-spacing:-0.03em;font-size:5rem;max-width:16ch;margin-bottom:0px;margin-top:0px;}
#node-text_7b88ecb3{position:relative;font-family:Source Sans 3;font-weight:400;color:#374151;text-transform:none;line-height:1.72;letter-spacing:0;font-size:1rem;max-width:64ch;}
#node-block_1ec8784f{position:relative;float:left;width:auto;min-height:72px;display:grid;grid-template-columns:repeat(3, minmax(0, 1fr));gap:1.196rem;align-items:stretch;grid-column:span 12 / span 12;max-width:none;min-width:0;justify-self:stretch;}
#node-block_a2a9252f{position:relative;float:left;width:100%;min-height:72px;display:grid;gap:0.85rem;padding-top:1.45rem;padding-bottom:1.1rem;padding-left:1.2rem;padding-right:1.2rem;background:#ffffff;border:2px solid #eef1f4;border-radius:24px;box-shadow:0 16px 34px rgba(15, 23, 42, 0.08);align-content:start;align-items:stretch;flex-direction:row;flex-wrap:wrap;justify-content:flex-start;grid-template-columns:repeat(12, minmax(0, 1fr));justify-items:stretch;grid-auto-rows:auto;max-width:100%;}
#node-block_f1a643c5{position:relative;float:left;width:100%;min-height:72px;display:grid;grid-template-columns:5.2rem minmax(0, 1fr);gap:0.966rem;align-items:start;max-width:100%;}
#node-block_1eef2fef{position:relative;float:left;width:auto;min-height:72px;display:grid;gap:0.322rem;align-content:start;padding-top:0.138rem;grid-column:span 11 / span 11;max-width:none;min-width:0;justify-self:stretch;}
#node-text_8772fd1f{position:relative;font-family:Outfit;font-weight:700;color:#111827;text-transform:none;line-height:1.1;letter-spacing:-0.02em;font-size:2.2rem;max-width:none;grid-column:span 11 / span 11;width:auto;min-width:0;justify-self:stretch;}
#node-text_89ab4d6d{position:relative;font-family:Outfit;font-weight:300;color:#374151;text-transform:none;line-height:1.0;letter-spacing:0;font-size:2.2rem;max-width:100%;}
#node-block_c7c1ba7b{position:relative;float:left;width:100%;min-height:72px;display:grid;gap:0.506rem;max-width:100%;}
#node-text_3d12af92{position:relative;font-family:Outfit;font-weight:600;color:#111827;text-transform:none;line-height:1.18;letter-spacing:-0.01em;font-size:1.3rem;margin-bottom:0rem;max-width:100%;}
#node-block_fec3cdf1{position:relative;float:left;width:100%;display:flex;gap:0.184rem;align-items:stretch;height:auto;flex-direction:row;flex-wrap:wrap;justify-content:flex-start;align-content:flex-end;row-gap:0.2rem;column-gap:0.2rem;max-width:100%;}
#node-text_1bca8439{position:relative;font-family:Source Sans 3;font-weight:400;color:#374151;text-transform:none;line-height:1.72;letter-spacing:0;font-size:1rem;width:299px;max-width:none;flex-basis:299px;margin-bottom:0px;}
#node-text_edf62a5d{position:relative;font-family:Source Sans 3;font-weight:400;color:#374151;text-transform:none;line-height:1.72;letter-spacing:0;font-size:1rem;width:312px;max-width:none;flex-basis:312px;margin-top:0px;margin-bottom:0px;}
#node-text_365ecfdf{position:relative;font-family:Source Sans 3;font-weight:400;color:#374151;text-transform:none;line-height:1.72;letter-spacing:0;font-size:1rem;width:313px;max-width:none;flex-basis:313px;padding-top:0px;margin-top:0px;margin-bottom:0px;}
#node-block_e4a39730{position:relative;float:left;width:100%;display:grid;grid-template-columns:auto minmax(0, 1fr);gap:0.598rem;align-items:center;height:auto;max-width:100%;}
#node-block_f39c5659{position:relative;float:left;width:100%;display:grid;grid-template-columns:auto minmax(0, 1fr);gap:0.598rem;align-items:center;height:auto;max-width:100%;}
#node-block_476cb7bd{position:relative;float:left;width:100%;height:1px;background:#e5e7eb;max-width:100%;}
#node-block_021c8b80{position:relative;float:left;width:100%;min-height:72px;display:grid;gap:0.506rem;max-width:100%;}
#node-text_0afb68df{position:relative;font-family:Outfit;font-weight:600;color:#111827;text-transform:none;line-height:1.18;letter-spacing:-0.01em;font-size:1.3rem;margin-bottom:0rem;max-width:100%;}
#node-block_c3e58eb7{position:relative;float:left;width:100%;display:flex;gap:0.598rem;align-items:start;flex-direction:row;flex-wrap:wrap;justify-content:flex-start;max-width:100%;}
#node-text_f9699858{position:relative;font-family:Source Sans 3;font-weight:400;color:#374151;text-transform:none;line-height:1.72;letter-spacing:0;font-size:1rem;margin-bottom:0rem;max-width:100%;}
#node-text_84855ce5{position:relative;font-family:Source Sans 3;font-weight:400;color:#374151;text-transform:none;line-height:1.72;letter-spacing:0;font-size:1rem;margin-top:0rem;margin-bottom:0rem;max-width:100%;}
#node-text_06b56450{position:relative;font-family:Source Sans 3;font-weight:400;color:#374151;text-transform:none;line-height:1.72;letter-spacing:0;font-size:1rem;margin-top:0rem;margin-bottom:0rem;max-width:100%;}
#node-text_b1be71fd{position:relative;font-family:Source Sans 3;font-weight:400;color:#374151;text-transform:none;line-height:1.72;letter-spacing:0;font-size:1rem;margin-top:0rem;max-width:100%;}
#node-block_cedc3d55{position:relative;float:left;width:100%;min-height:72px;display:grid;grid-template-columns:4.2rem minmax(0, 1fr);gap:0.782rem;align-items:center;padding-top:0.874rem;padding-bottom:0.874rem;padding-left:0.874rem;padding-right:0.874rem;border-radius:14px;background:#ff3131;color:#0a0a0a;border-color:#dccfbe;max-width:100%;}
#node-text_9eb8b256{position:relative;font-family:Source Sans 3;font-weight:400;color:#ffffff;text-transform:none;line-height:1.72;letter-spacing:0;font-size:1rem;grid-column:span 9 / span 9;width:auto;max-width:none;min-width:0;justify-self:stretch;}
#node-block_573dd89d{position:relative;float:left;width:100%;min-height:72px;display:flex;gap:0.782rem;padding-top:1.334rem;padding-bottom:1.012rem;padding-left:1.104rem;padding-right:1.104rem;background:#ffffff;border:3px solid #ff4929;border-radius:24px;box-shadow:0 16px 34px rgba(15, 23, 42, 0.08);align-content:start;flex-direction:row;flex-wrap:wrap;align-items:stretch;justify-content:flex-start;border-width:3px;border-style:solid;border-color:#ff4929;max-width:100%;}
#node-block_df550baf{position:absolute;float:left;width:48%;top:-0.95rem;left:50%;transform:translateX(-50%);display:grid;grid-template-columns:auto minmax(0, 1fr);gap:0.322rem;align-items:center;padding-top:0rem;padding-bottom:0rem;padding-left:0.736rem;padding-right:0.736rem;border-radius:999px;background:#ff1f14;max-width:none;flex-basis:48%;height:auto;}
#node-text_a9c98d7a{position:relative;font-family:Source Sans 3;font-weight:700;color:#ffffff;text-transform:none;line-height:1.72;letter-spacing:0;font-size:1rem;grid-column:span 12 / span 12;grid-row:auto;text-align:center;max-width:100%;}
#node-block_b6531f53{position:relative;float:left;width:100%;min-height:72px;display:grid;grid-template-columns:5.2rem minmax(0, 1fr);gap:0.966rem;align-items:start;max-width:100%;}
#node-block_6515ffb8{position:relative;float:left;width:auto;min-height:72px;display:grid;gap:0.322rem;align-content:start;padding-top:0.138rem;grid-column:span 12 / span 12;max-width:none;min-width:0;justify-self:stretch;}
#node-text_6aa5a408{position:relative;font-family:Outfit;font-weight:700;color:#111827;text-transform:none;line-height:1.1;letter-spacing:-0.02em;font-size:2.2rem;max-width:9ch;}
#node-text_c6979282{position:relative;font-family:Outfit;font-weight:300;color:#374151;text-transform:none;line-height:1.0;letter-spacing:0;font-size:2.2rem;max-width:100%;}
#node-block_9865e8dc{position:relative;float:left;width:100%;min-height:72px;display:grid;gap:0.506rem;max-width:100%;}
#node-text_567d3f7f{position:relative;font-family:Outfit;font-weight:600;color:#111827;text-transform:none;line-height:1.18;letter-spacing:-0.01em;font-size:1.3rem;margin-bottom:0rem;max-width:100%;}
#node-block_8b84d45e{position:relative;float:left;width:100%;display:flex;gap:0.184rem;align-items:stretch;height:auto;flex-direction:row;flex-wrap:wrap;justify-content:flex-start;align-content:flex-end;row-gap:0.2rem;column-gap:0.2rem;max-width:100%;}
#node-text_510e460e{position:relative;font-family:Source Sans 3;font-weight:400;color:#374151;text-transform:none;line-height:1.72;letter-spacing:0;font-size:1rem;width:299px;max-width:none;flex-basis:299px;margin-bottom:0px;}
#node-text_90afb988{position:relative;font-family:Source Sans 3;font-weight:400;color:#374151;text-transform:none;line-height:1.72;letter-spacing:0;font-size:1rem;width:312px;max-width:none;flex-basis:312px;margin-top:0px;margin-bottom:0px;}
#node-text_f8ed41d6{position:relative;font-family:Source Sans 3;font-weight:400;color:#374151;text-transform:none;line-height:1.72;letter-spacing:0;font-size:1rem;width:313px;max-width:none;flex-basis:313px;padding-top:0px;margin-top:0px;margin-bottom:0px;}
#node-block_7c60c37d{position:relative;float:left;width:100%;display:grid;grid-template-columns:auto minmax(0, 1fr);gap:0.598rem;align-items:center;height:auto;max-width:100%;}
#node-block_61cacddd{position:relative;float:left;width:100%;display:grid;grid-template-columns:auto minmax(0, 1fr);gap:0.598rem;align-items:center;height:auto;max-width:100%;}
#node-block_6f1fcb07{position:relative;float:left;width:100%;height:1px;background:#e5e7eb;max-width:100%;}
#node-block_5368f06b{position:relative;float:left;width:100%;min-height:72px;display:grid;gap:0.506rem;max-width:100%;}
#node-text_267e24c4{position:relative;font-family:Outfit;font-weight:600;color:#111827;text-transform:none;line-height:1.18;letter-spacing:-0.01em;font-size:1.3rem;margin-bottom:0rem;max-width:100%;}
#node-block_6f33d9fe{position:relative;float:left;width:100%;display:flex;gap:0.598rem;align-items:start;flex-direction:row;flex-wrap:wrap;justify-content:flex-start;max-width:100%;}
#node-text_fe0c5fe7{position:relative;font-family:Source Sans 3;font-weight:400;color:#374151;text-transform:none;line-height:1.72;letter-spacing:0;font-size:1rem;margin-bottom:0rem;max-width:100%;}
#node-text_8a18fc22{position:relative;font-family:Source Sans 3;font-weight:400;color:#374151;text-transform:none;line-height:1.72;letter-spacing:0;font-size:1rem;margin-top:0rem;margin-bottom:0rem;max-width:100%;}
#node-text_9b80081d{position:relative;font-family:Source Sans 3;font-weight:400;color:#374151;text-transform:none;line-height:1.72;letter-spacing:0;font-size:1rem;margin-top:0rem;margin-bottom:0rem;max-width:100%;}
#node-text_71779986{position:relative;font-family:Source Sans 3;font-weight:400;color:#374151;text-transform:none;line-height:1.72;letter-spacing:0;font-size:1rem;margin-top:0rem;max-width:100%;}
#node-block_9e37290c{position:relative;float:left;width:100%;min-height:72px;display:grid;grid-template-columns:4.2rem minmax(0, 1fr);gap:0.782rem;align-items:center;padding-top:0.874rem;padding-bottom:0.874rem;padding-left:0.874rem;padding-right:0.874rem;border-radius:14px;background:#ff3131;color:#0a0a0a;border-color:#dccfbe;max-width:100%;}
#node-text_39c2d7f0{position:relative;font-family:Source Sans 3;font-weight:400;color:#ffffff;text-transform:none;line-height:1.72;letter-spacing:0;font-size:1rem;grid-column:span 12 / span 12;width:auto;max-width:none;min-width:0;justify-self:stretch;}
#node-block_81a9d51d{position:relative;float:left;width:100%;min-height:72px;display:flex;gap:0.782rem;padding-top:1.334rem;padding-bottom:1.012rem;padding-left:1.104rem;padding-right:1.104rem;background:#ffffff;border:2px solid #eef1f4;border-radius:24px;box-shadow:0 16px 34px rgba(15, 23, 42, 0.08);align-content:start;flex-direction:row;flex-wrap:wrap;align-items:stretch;justify-content:flex-start;max-width:100%;}
#node-block_419241f1{position:relative;float:left;width:100%;min-height:72px;display:grid;grid-template-columns:5.2rem minmax(0, 1fr);gap:0.966rem;align-items:start;max-width:100%;}
#node-block_7bc3e62d{position:relative;float:left;width:auto;min-height:72px;display:grid;gap:0.322rem;align-content:start;padding-top:0.138rem;grid-column:span 12 / span 12;max-width:none;min-width:0;justify-self:stretch;}
#node-text_352f4017{position:relative;font-family:Outfit;font-weight:700;color:#111827;text-transform:none;line-height:1.1;letter-spacing:-0.02em;font-size:2.2rem;max-width:9ch;}
#node-text_bda6fc1f{position:relative;font-family:Outfit;font-weight:300;color:#374151;text-transform:none;line-height:1.0;letter-spacing:0;font-size:2.2rem;max-width:100%;}
#node-block_05d49aea{position:relative;float:left;width:100%;min-height:72px;display:grid;gap:0.506rem;max-width:100%;}
#node-text_3c7c8625{position:relative;font-family:Outfit;font-weight:600;color:#111827;text-transform:none;line-height:1.18;letter-spacing:-0.01em;font-size:1.3rem;margin-bottom:0rem;max-width:100%;}
#node-block_09d64b34{position:relative;float:left;width:100%;display:flex;gap:0.184rem;align-items:stretch;height:auto;flex-direction:row;flex-wrap:wrap;justify-content:flex-start;align-content:flex-end;row-gap:0.2rem;column-gap:0.2rem;max-width:100%;}
#node-text_3554a91c{position:relative;font-family:Source Sans 3;font-weight:400;color:#374151;text-transform:none;line-height:1.72;letter-spacing:0;font-size:1rem;width:299px;max-width:none;flex-basis:299px;margin-bottom:0px;}
#node-text_083789b5{position:relative;font-family:Source Sans 3;font-weight:400;color:#374151;text-transform:none;line-height:1.72;letter-spacing:0;font-size:1rem;width:312px;max-width:none;flex-basis:312px;margin-top:0px;margin-bottom:0px;}
#node-text_45e754b6{position:relative;font-family:Source Sans 3;font-weight:400;color:#374151;text-transform:none;line-height:1.72;letter-spacing:0;font-size:1rem;width:313px;max-width:none;flex-basis:313px;padding-top:0px;margin-top:0px;margin-bottom:0px;}
#node-block_6fd88f2a{position:relative;float:left;width:100%;display:grid;grid-template-columns:auto minmax(0, 1fr);gap:0.598rem;align-items:center;height:auto;max-width:100%;}
#node-block_4a1654bc{position:relative;float:left;width:100%;display:grid;grid-template-columns:auto minmax(0, 1fr);gap:0.598rem;align-items:center;height:auto;max-width:100%;}
#node-block_5c23248e{position:relative;float:left;width:100%;height:1px;background:#e5e7eb;max-width:100%;}
#node-block_d96098c0{position:relative;float:left;width:100%;min-height:72px;display:grid;gap:0.506rem;max-width:100%;}
#node-text_d85739e6{position:relative;font-family:Outfit;font-weight:600;color:#111827;text-transform:none;line-height:1.18;letter-spacing:-0.01em;font-size:1.3rem;margin-bottom:0rem;max-width:100%;}
#node-block_a97ca91d{position:relative;float:left;width:100%;display:flex;gap:0.598rem;align-items:start;flex-direction:row;flex-wrap:wrap;justify-content:flex-start;max-width:100%;}
#node-text_7aa22269{position:relative;font-family:Source Sans 3;font-weight:400;color:#374151;text-transform:none;line-height:1.72;letter-spacing:0;font-size:1rem;margin-bottom:0rem;max-width:100%;}
#node-text_0f4337cb{position:relative;font-family:Source Sans 3;font-weight:400;color:#374151;text-transform:none;line-height:1.72;letter-spacing:0;font-size:1rem;margin-top:0rem;margin-bottom:0rem;max-width:100%;}
#node-text_6d12e4f2{position:relative;font-family:Source Sans 3;font-weight:400;color:#374151;text-transform:none;line-height:1.72;letter-spacing:0;font-size:1rem;margin-top:0rem;margin-bottom:0rem;max-width:100%;}
#node-text_861c8596{position:relative;font-family:Source Sans 3;font-weight:400;color:#374151;text-transform:none;line-height:1.72;letter-spacing:0;font-size:1rem;margin-top:0rem;max-width:100%;}
#node-block_26260e65{position:relative;float:left;width:100%;min-height:72px;display:grid;grid-template-columns:4.2rem minmax(0, 1fr);gap:0.782rem;align-items:center;padding-top:0.874rem;padding-bottom:0.874rem;padding-left:0.874rem;padding-right:0.874rem;border-radius:14px;background:#ff3131;color:#0a0a0a;border-color:#dccfbe;max-width:100%;}
#node-text_3c7b300f{position:relative;font-family:Source Sans 3;font-weight:400;color:#ffffff;text-transform:none;line-height:1.72;letter-spacing:0;font-size:1rem;grid-column:span 12 / span 12;width:auto;max-width:none;min-width:0;justify-self:stretch;}
#node-block_9db0606a{width:auto;padding-top:22.08px;padding-right:22.08px;padding-bottom:22.08px;padding-left:22.08px;background:transparent;position:relative;float:left;grid-column:4 / span 6;max-width:none;min-width:0;justify-self:stretch;grid-row:auto;display:flex;gap:14.72px;flex-direction:row;flex-wrap:wrap;align-items:stretch;justify-content:center;border-radius:4px;color:#0a0a0a;}
#node-button_4c08bb32{display:inline;padding-top:18.4px;padding-right:32.2px;padding-bottom:18.4px;padding-left:32.2px;background:#000000;color:#ffffff;width:100%;float:left;margin-top:14.72px;font-size:1.2rem;align-self:stretch;text-align:center;border-radius:100px;font-family:Source Sans 3;font-weight:700;text-transform:none;line-height:1.72;letter-spacing:0;border-width:0px;border:none;border-style:none;transition:background-color 180ms ease, color 180ms ease, border-color 180ms ease, transform 180ms ease, box-shadow 180ms ease;max-width:100%;}
#node-section_ffb25794{position:relative;width:100%;min-height:180px;padding-top:2.392rem;padding-right:2.024rem;padding-bottom:2.392rem;padding-left:2.024rem;background:#000000;display:grid;color:#ffffff;border-bottom:1px solid #ebe5dc;border-radius:0px;box-shadow:0 28px 60px rgba(0, 0, 0, 0.32);grid-template-columns:repeat(12, minmax(0, 1fr));gap:0.92rem;border-color:#dccfbe;max-width:100%;}
#node-block_5abaf88d{position:relative;float:left;width:100%;min-height:72px;display:grid;grid-template-columns:minmax(0, 0.92fr) minmax(0, 1.08fr);gap:1.84rem;align-items:center;grid-column:span 12 / span 12;grid-row:auto;max-width:100%;}
#node-block_749cf58d{position:relative;float:left;width:auto;min-height:72px;display:grid;grid-column:span 12 / span 12;max-width:none;min-width:0;justify-self:stretch;grid-template-columns:repeat(12, minmax(0, 1fr));gap:0.368rem;row-gap:0.4rem;column-gap:0.4rem;}
#node-text_359cb30e{position:relative;font-family:Outfit;font-weight:700;color:#ffffff;text-transform:none;line-height:1.05;letter-spacing:-0.03em;font-size:5rem;max-width:none;margin-bottom:0rem;grid-column:span 10 / span 10;width:51.05rem;min-width:0;justify-self:stretch;}
#node-block_ecda5942{position:relative;float:left;width:auto;display:block;align-items:center;margin-top:0.552rem;padding-top:0rem;padding-bottom:1.058rem;padding-left:1.058rem;padding-right:1.058rem;border-radius:0px;border:none;background:transparent;grid-column:span 12 / span 12;max-width:none;min-width:0;justify-self:stretch;border-width:0px;border-style:none;color:#0a0a0a;height:auto;}
#node-text_41222a05{position:relative;font-family:Outfit;font-weight:700;color:#ff3131;text-transform:none;line-height:1.1;letter-spacing:-0.02em;font-size:2.2rem;max-width:none;grid-column:span 10 / span 10;width:33.8rem;min-width:0;justify-self:stretch;margin-top:0rem;margin-bottom:0rem;}
#node-block_667a0455{position:relative;float:left;width:auto;min-height:72px;display:grid;grid-column:span 12 / span 12;grid-row:auto;grid-template-columns:repeat(12, minmax(0, 1fr));gap:0.92rem;padding-top:2.5%;max-width:none;min-width:0;justify-self:stretch;}
#node-block_8a32720c{position:relative;float:left;width:auto;min-height:72px;display:grid;grid-template-columns:4.3rem auto minmax(0, 1fr);gap:0.874rem;align-items:start;padding-top:0.414rem;padding-bottom:0.414rem;grid-column:span 12 / span 12;max-width:none;min-width:0;justify-self:stretch;grid-row:auto;}
#node-block_07cd5fd8{position:relative;float:left;width:100%;min-height:72px;display:grid;justify-items:center;gap:0.368rem;padding-top:0.138rem;max-width:100%;}
#node-block_ab2947c9{position:relative;float:left;width:auto;min-height:72px;display:grid;gap:0.322rem;padding-top:0.092rem;grid-column:span 12 / span 12;max-width:none;min-width:0;justify-self:stretch;}
#node-text_0903ea35{position:relative;font-family:Outfit;font-weight:700;color:#ff3131;text-transform:none;line-height:1.05;letter-spacing:-0.03em;font-size:5rem;margin-top:0rem;text-align:right;padding-bottom:0rem;margin-bottom:0rem;max-width:100%;}
#node-text_97324a6d{position:relative;font-family:Outfit;font-weight:700;color:#ffffff;text-transform:none;line-height:1.05;letter-spacing:-0.03em;font-size:5rem;margin-top:0rem;text-align:right;padding-bottom:0rem;margin-bottom:0rem;max-width:100%;}
#node-text_ec02166e{position:relative;font-family:Outfit;font-weight:700;color:#ffffff;text-transform:none;line-height:1.05;letter-spacing:-0.03em;font-size:5rem;margin-top:0rem;text-align:right;padding-bottom:0rem;margin-bottom:0rem;max-width:100%;}
#node-text_e1eeb6fa{position:relative;font-family:Outfit;font-weight:700;color:#ff3131;text-transform:none;line-height:1.05;letter-spacing:-0.03em;font-size:5rem;margin-top:0rem;text-align:right;padding-bottom:0rem;margin-bottom:0rem;max-width:100%;}
#node-section_b6c2302a{width:100%;min-height:220px;padding-top:3.68rem;padding-right:4vw;padding-bottom:3.68rem;padding-left:4vw;background:#f4dfd6;display:grid;gap:1.15rem;color:#1f1812;border-bottom:1px solid #ebe5dc;border-color:#dccfbe;max-width:100%;}
#node-block_20a71e83{width:auto;min-height:140px;padding-top:22.08px;padding-right:22.08px;padding-bottom:22.08px;padding-left:22.08px;display:grid;gap:0rem;max-width:none;justify-self:stretch;grid-column:span 12 / span 12;min-width:0;row-gap:0rem;column-gap:0rem;background:transparent;color:#0a0a0a;}
#node-text_f35ec5b5{font-family:Outfit;font-size:5rem;line-height:1.05;color:#ff3131;max-width:16ch;font-weight:700;margin-bottom:0rem;text-transform:none;letter-spacing:-0.03em;grid-column:span 12 / span 12;grid-row:auto;}
#node-text_2697a46d{font-family:Outfit;font-size:5rem;line-height:1.05;color:#0a0a0a;max-width:16ch;font-weight:700;margin-top:0rem;margin-bottom:0rem;text-transform:none;letter-spacing:-0.03em;grid-column:span 12 / span 12;grid-row:auto;}
#node-text_143e8a53{font-family:Source Sans 3;font-size:1rem;line-height:1.72;color:#0a0a0a;max-width:64ch;margin-top:0rem;padding-top:0.828rem;grid-column:span 12 / span 12;grid-row:auto;font-weight:400;text-transform:none;letter-spacing:0;}
#node-block_c426046b{width:auto;padding-top:22.08px;padding-right:22.08px;padding-bottom:22.08px;padding-left:22.08px;background:transparent;position:relative;float:left;grid-column:9 / span 4;max-width:none;min-width:0;justify-self:stretch;grid-row:auto;display:flex;gap:14.72px;flex-direction:row;flex-wrap:wrap;align-items:stretch;justify-content:center;border-radius:4px;color:#0a0a0a;}
#node-button_cb6a053d{display:inline;padding-top:18.4px;padding-right:32.2px;padding-bottom:18.4px;padding-left:32.2px;background:#ffffff;color:#000000;width:100%;float:left;margin-top:14.72px;font-size:1.2rem;align-self:stretch;text-align:center;border-radius:100px;font-family:Source Sans 3;font-weight:700;text-transform:none;line-height:1.72;letter-spacing:0;border-width:0px;border:none;border-style:none;transition:background-color 180ms ease, color 180ms ease, border-color 180ms ease, transform 180ms ease, box-shadow 180ms ease;max-width:100%;}
#node-section_53845cbd{position:relative;width:100%;min-height:180px;padding-top:0rem;padding-right:0rem;padding-bottom:0rem;padding-left:0rem;background:#f7f7f7;max-width:100%;}
#node-section_afd94fa7{width:100%;padding-top:3.68rem;padding-right:4vw;padding-bottom:3.68rem;padding-left:4vw;display:grid;gap:1.15rem;color:#0a0a0a;border-bottom:1px solid #ebe5dc;justify-items:center;text-align:center;height:auto;min-height:220px;grid-column:span 12 / span 12;grid-row:auto;background:#ffffff;border-color:#dccfbe;max-width:100%;}
#node-block_9c7b1d05{width:100%;padding-top:22.08px;padding-right:22.08px;padding-bottom:22.08px;padding-left:22.08px;background:transparent;position:relative;float:left;display:grid;grid-template-columns:repeat(12, minmax(0, 1fr));gap:1rem;color:#0a0a0a;max-width:100%;}
#node-text_3a45e538{font-family:Outfit;font-size:5rem;line-height:1.05;color:#111827;max-width:none;width:auto;float:left;font-weight:700;letter-spacing:-0.03em;text-transform:none;position:relative;grid-column:span 12 / span 12;grid-row:auto;min-width:0;justify-self:stretch;padding-bottom:0rem;margin-bottom:0rem;}
#node-block_0088263e{width:auto;padding-top:22.08px;padding-right:22.08px;padding-bottom:22.08px;padding-left:22.08px;background:#ffffff;position:relative;float:left;display:flex;min-width:0;max-width:none;border-radius:4px;gap:14.72px;flex-direction:row;flex-wrap:wrap;justify-content:center;align-items:stretch;grid-column:5 / span 4;grid-row:auto;justify-self:stretch;color:#0a0a0a;border-color:#dccfbe;}
#node-button_41c4f1a5{display:inline;padding-top:23px;padding-right:36.8px;padding-bottom:23px;padding-left:36.8px;background:#000000;color:#ffffff;font-family:Source Sans 3;font-size:1.2rem;font-weight:700;line-height:1.72;letter-spacing:0;text-transform:none;position:relative;text-align:center;float:left;width:100%;margin-top:14.72px;border-radius:100px;border-width:0px;border-style:none;border:none;align-self:stretch;transition:background-color 180ms ease, color 180ms ease, border-color 180ms ease, transform 180ms ease, box-shadow 180ms ease;max-width:100%;}
#node-section_1aa5cb82{position:relative;width:100%;min-height:180px;padding-top:0rem;padding-right:0rem;padding-bottom:0rem;padding-left:0rem;background:#f7f7f7;display:block;max-width:100%;}
#node-section_a9d8025d{width:100%;padding-top:48px;padding-right:48px;padding-bottom:48px;padding-left:48px;background:#000000;position:relative;height:100%;display:grid;grid-template-columns:repeat(12, minmax(0, 1fr));gap:1rem;color:#ffffff;border-color:#dccfbe;max-width:100%;}
#node-block_5fc70aa6{width:auto;padding-top:5px;padding-right:5px;padding-bottom:5px;padding-left:5px;background:transparent;position:relative;float:left;grid-column:span 12 / span 12;max-width:none;min-width:0;justify-self:stretch;height:auto;display:grid;grid-template-columns:repeat(12, minmax(0, 1fr));gap:1rem;color:#0a0a0a;}
#node-block_eb15feae{width:auto;padding-top:2px;padding-right:2px;padding-bottom:2px;padding-left:2px;background:transparent;position:relative;float:left;max-width:none;height:auto;grid-column:span 3 / span 3;grid-row:auto;min-width:0;justify-self:stretch;color:#0a0a0a;}
#node-image_fbb5aa15{width:78.5%;object-fit:contain;position:relative;float:left;height:auto;max-width:none;}
#node-block_e2f287a5{width:auto;padding-top:0px;padding-right:2px;padding-bottom:0px;padding-left:2px;background:transparent;position:relative;float:left;grid-column:span 9 / span 9;grid-row:auto;max-width:none;min-width:0;justify-self:stretch;height:auto;opacity:1;display:grid;grid-template-columns:repeat(12, minmax(0, 1fr));gap:1rem;color:#0a0a0a;}
#node-text_c7a7eeef{font-family:Outfit;font-size:1.3rem;line-height:1.18;color:#ffffff;max-width:none;position:relative;font-weight:600;text-transform:none;letter-spacing:-0.01em;width:auto;float:left;grid-column:span 12 / span 12;min-width:0;justify-self:stretch;text-align:right;grid-row:auto;margin-top:1.104rem;}
#node-button_fa35ef33:hover{background:#ffffff !important;color:#ff2424 !important;}
#node-button_3d258cb7:hover{background:#ff2424 !important;color:#ffffff !important;}
#node-button_4c08bb32:hover{background:#ffffff !important;color:#ff2424 !important;}
#node-button_cb6a053d:hover{background:#ff2424 !important;color:#ffffff !important;}
}

@media (max-width: 1023px) {
#node-section_6a2d8386{width:100%;padding-top:0px;padding-right:0px;padding-bottom:0px;padding-left:0px;background:#fffdf9;max-width:100%;}
#node-section_092345f3{width:100%;padding-top:2.87rem;padding-right:4vw;padding-bottom:3.28rem;padding-left:4vw;display:grid;gap:1.025rem;color:#ffffff;border-bottom:1px solid #ebe5dc;grid-template-columns:1fr;align-items:center;height:auto;align-content:flex-start;background:#000000;border-color:#dccfbe;max-width:100%;}
#node-block_6f73c4ef{width:auto;padding-top:4.1px;padding-right:4.1px;padding-bottom:4.1px;padding-left:4.1px;background:transparent;position:relative;float:left;grid-column:span 12 / span 12;max-width:none;min-width:0;justify-self:stretch;height:auto;display:grid;grid-template-columns:repeat(12, minmax(0, 1fr));gap:0.82rem;color:#0a0a0a;}
#node-block_45fabccf{width:auto;padding-top:2px;padding-right:2px;padding-bottom:2px;padding-left:2px;background:transparent;position:relative;float:left;max-width:none;height:auto;grid-column:span 3 / span 3;grid-row:auto;min-width:0;justify-self:stretch;color:#0a0a0a;}
#node-image_42a6e4e0{width:86.5%;object-fit:contain;position:relative;float:left;height:auto;max-width:none;}
#node-block_9ab17177{width:auto;padding-top:2px;padding-right:2px;padding-bottom:2px;padding-left:2px;background:transparent;position:relative;float:left;grid-column:span 9 / span 9;grid-row:auto;max-width:none;min-width:0;justify-self:stretch;height:auto;opacity:1;color:#0a0a0a;}
#node-section_b3b60703{width:100%;min-height:220px;padding-top:3.28rem;padding-right:4vw;padding-bottom:3.28rem;padding-left:4vw;background:#ffffff;display:grid;gap:1.025rem;color:#0a0a0a;border-bottom:1px solid #ebe5dc;grid-column:span 4 / span 4;grid-row:auto;border-color:#dccfbe;max-width:100%;}
#node-block_98d7a11a{width:auto;min-height:140px;padding-top:0px;padding-right:19.68px;padding-bottom:0px;padding-left:19.68px;background:transparent;display:grid;gap:0rem;max-width:none;justify-self:stretch;opacity:1;grid-column:span 12 / span 12;min-width:0;row-gap:0rem;column-gap:0rem;color:#0a0a0a;}
#node-text_068f091d{font-family:Outfit;font-size:3.5rem;line-height:1.08;color:#111827;max-width:16ch;font-weight:700;text-transform:none;letter-spacing:-0.03em;grid-column:span 12 / span 12;width:auto;min-width:0;justify-self:stretch;margin-bottom:0rem;padding-bottom:0rem;}
#node-text_b2bd64da{font-family:Outfit;font-size:3.5rem;line-height:1.08;color:#111827;max-width:none;font-weight:700;text-transform:none;letter-spacing:-0.03em;padding-top:0rem;margin-top:0rem;padding-bottom:0rem;margin-bottom:0rem;grid-column:span 12 / span 12;width:auto;min-width:0;justify-self:stretch;}
#node-text_af46395e{font-family:Outfit;font-size:3.5rem;line-height:1.08;color:#ff3131;max-width:none;font-weight:700;text-transform:none;letter-spacing:-0.03em;margin-top:0px;grid-column:span 12 / span 12;width:auto;min-width:0;justify-self:stretch;padding-bottom:0px;margin-bottom:0px;}
#node-text_56710e33{font-family:Outfit;font-size:3.5rem;line-height:1.08;color:#111827;max-width:none;font-weight:700;text-transform:none;letter-spacing:-0.03em;margin-top:0px;grid-column:span 12 / span 12;width:auto;min-width:0;justify-self:stretch;padding-bottom:0px;margin-bottom:0px;}
#node-text_87956df1{font-family:Outfit;font-size:3.5rem;line-height:1.08;color:#111827;max-width:none;font-weight:700;text-transform:none;letter-spacing:-0.03em;margin-top:0px;grid-column:span 11 / span 11;width:auto;min-width:0;justify-self:stretch;padding-bottom:0px;margin-bottom:0px;}
#node-text_cb8fd1c3{font-family:Source Sans 3;font-size:1.08rem;line-height:1.68;color:#ff3131;max-width:none;font-weight:400;text-transform:none;letter-spacing:0;margin-top:31.98px;grid-column:span 11 / span 11;width:auto;min-width:0;justify-self:stretch;padding-bottom:0px;margin-bottom:0px;}
#node-block_287aa4aa{width:auto;padding-top:19.68px;padding-right:19.68px;padding-bottom:19.68px;padding-left:19.68px;background:transparent;position:relative;float:left;grid-column:span 4 / span 4;max-width:none;min-width:0;justify-self:stretch;grid-row:auto;display:flex;gap:13.12px;flex-direction:row;flex-wrap:wrap;align-items:stretch;justify-content:center;border-radius:4px;color:#0a0a0a;}
#node-button_fa35ef33{display:inline;padding-top:16.4px;padding-right:28.7px;padding-bottom:16.4px;padding-left:28.7px;background:#000000;color:#ffffff;width:100%;float:left;margin-top:13.12px;font-size:0.98rem;align-self:stretch;text-align:center;border-radius:100px;font-family:Source Sans 3;font-weight:700;text-transform:none;line-height:1.75;letter-spacing:0;border-width:0px;border:none;border-style:none;transition:background-color 180ms ease, color 180ms ease, border-color 180ms ease, transform 180ms ease, box-shadow 180ms ease;max-width:100%;}
#node-block_196ef1da{width:auto;padding-top:19.68px;padding-right:19.68px;padding-bottom:19.68px;padding-left:0px;background:transparent;position:relative;float:left;grid-column:span 4 / span 4;max-width:none;min-width:0;justify-self:stretch;grid-row:auto;display:flex;gap:13.12px;flex-direction:row;flex-wrap:wrap;align-items:stretch;justify-content:center;border-radius:4px;color:#0a0a0a;}
#node-button_3d258cb7{display:inline;padding-top:16.4px;padding-right:28.7px;padding-bottom:16.4px;padding-left:28.7px;background:#ffffff;color:#000000;width:100%;float:left;margin-top:13.12px;font-size:0.98rem;align-self:stretch;text-align:center;border-radius:100px;font-family:Source Sans 3;font-weight:700;text-transform:none;line-height:1.75;letter-spacing:0;border-width:2px;border:2px solid #d7dce4;border-style:solid;transition:background-color 180ms ease, color 180ms ease, border-color 180ms ease, transform 180ms ease, box-shadow 180ms ease;max-width:100%;}
#node-section_cd4189f1{position:relative;width:100%;min-height:180px;padding-top:3.28rem;padding-right:4vw;padding-bottom:3.28rem;padding-left:4vw;background:#f4dfd6;display:grid;color:#1f1812;border-bottom:1px solid #ebe5dc;border-color:#dccfbe;grid-template-columns:repeat(12, minmax(0, 1fr));gap:0.82rem;max-width:100%;}
#node-block_f748e784{position:relative;float:left;width:auto;min-height:72px;display:grid;gap:0.779rem;max-width:none;justify-self:stretch;grid-column:span 12 / span 12;grid-row:auto;min-width:0;}
#node-text_6db39242{position:relative;font-family:Source Sans 3;font-weight:700;color:#8c5c45;text-transform:uppercase;line-height:1.75;letter-spacing:0.18em;font-size:0.98rem;grid-column:span 12 / span 12;grid-row:auto;text-align:right;max-width:100%;}
#node-text_de7886a8{position:relative;font-family:Outfit;font-weight:700;color:#111827;text-transform:none;line-height:1.08;letter-spacing:-0.03em;font-size:3.5rem;max-width:none;margin-bottom:0px;margin-top:0px;grid-column:span 12 / span 12;width:auto;min-width:0;justify-self:stretch;text-align:right;}
#node-text_88aebcd8{position:relative;font-family:Outfit;font-weight:700;color:#ff3131;text-transform:none;line-height:1.08;letter-spacing:-0.03em;font-size:3.5rem;max-width:none;margin-top:0px;padding-bottom:0px;margin-bottom:0px;grid-column:span 12 / span 12;width:auto;min-width:0;justify-self:stretch;text-align:right;}
#node-text_eccd03ce{position:relative;font-family:Source Sans 3;font-weight:400;color:#374151;text-transform:none;line-height:1.75;letter-spacing:0;font-size:0.98rem;max-width:none;margin-top:0rem;grid-column:7 / span 6;width:auto;min-width:0;justify-self:stretch;text-align:right;grid-row:auto;}
#node-block_d067401d{position:relative;float:left;width:100%;min-height:72px;display:grid;align-items:start;grid-column:span 12 / span 12;grid-row:auto;grid-template-columns:1fr;gap:2rem;max-width:100%;}
#node-block_b5c264ff{position:relative;float:left;width:100%;min-height:72px;display:grid;gap:1.189rem;padding-left:1.066rem;border-style:none;border:none;border-width:0px;grid-column:span 6 / span 6;grid-row:auto;max-width:100%;}
#node-block_728cb332{position:relative;float:left;width:100%;min-height:72px;display:grid;gap:0.574rem;padding-top:0%;margin-top:11%;max-width:100%;}
#node-block_8fe62aa9{position:relative;float:left;width:100%;display:grid;align-items:center;padding-top:0rem;padding-bottom:0rem;padding-left:0.9rem;padding-right:0.9rem;border-radius:16px;background:#ffffff;border:1px solid #dfe7f5;height:auto;margin-top:0%;flex-direction:row;flex-wrap:wrap;justify-content:flex-start;grid-template-columns:repeat(12, minmax(0, 1fr));gap:16px;align-content:normal;justify-items:stretch;grid-auto-rows:auto;max-width:100%;}
#node-block_d41a6c84{position:relative;float:left;width:2.9rem;height:auto;border-radius:14px;background:#ffffff;display:flex;align-items:center;justify-content:center;grid-column:span 2 / span 2;grid-row:auto;color:#0a0a0a;border-color:#dccfbe;flex-wrap:wrap;max-width:100%;}
#node-icon_a61287d7{position:relative;display:inline-flex;width:2.4rem;height:1.8rem;align-items:center;justify-content:center;color:#2563eb;justify-self:start;align-self:start;max-width:none;flex-basis:2.4rem;}
#node-text_141cfcbb{position:relative;font-family:Source Sans 3;font-weight:400;color:#374151;text-transform:none;line-height:1.68;letter-spacing:0;font-size:1.08rem;grid-column:span 9 / span 9;width:auto;max-width:none;min-width:0;justify-self:stretch;}
#node-block_2c8a43cd{position:relative;float:left;width:100%;display:grid;align-items:center;padding-top:0rem;padding-bottom:0rem;padding-left:0.738rem;padding-right:0.738rem;border-radius:16px;background:#ffffff;border:1px solid #dfe7f5;grid-template-columns:repeat(12, minmax(0, 1fr));gap:0.82rem;height:auto;max-width:100%;}
#node-block_8c2fa6a9{position:relative;float:left;width:2.9rem;height:auto;border-radius:14px;background:#ffffff;display:flex;align-items:center;justify-content:center;color:#0a0a0a;border-color:#dccfbe;grid-column:span 2 / span 2;grid-row:auto;flex-wrap:wrap;max-width:100%;}
#node-icon_322442e1{position:relative;display:inline-flex;width:1.8rem;height:1.8rem;align-items:center;justify-content:center;color:#2563eb;justify-self:start;align-self:start;max-width:100%;}
#node-text_aa06dd5f{position:relative;font-family:Source Sans 3;font-weight:400;color:#374151;text-transform:none;line-height:1.68;letter-spacing:0;font-size:1.08rem;grid-column:span 8 / span 8;grid-row:auto;max-width:100%;}
#node-block_89058840{position:relative;float:left;width:100%;display:grid;align-items:center;padding-top:0rem;padding-bottom:0rem;padding-left:0.738rem;padding-right:0.738rem;border-radius:16px;background:#ffffff;border:1px solid #dfe7f5;grid-template-columns:repeat(12, minmax(0, 1fr));gap:0.82rem;height:auto;max-width:100%;}
#node-block_d1ad819e{position:relative;float:left;width:2.9rem;height:auto;border-radius:14px;background:#ffffff;display:flex;align-items:center;justify-content:center;grid-column:span 2 / span 2;grid-row:auto;color:#0a0a0a;border-color:#dccfbe;flex-wrap:wrap;max-width:100%;}
#node-icon_9a148198{position:relative;display:inline-flex;width:1.8rem;height:1.8rem;align-items:center;justify-content:center;color:#2563eb;justify-self:start;align-self:start;max-width:100%;}
#node-text_2764a1f9{position:relative;font-family:Source Sans 3;font-weight:400;color:#374151;text-transform:none;line-height:1.68;letter-spacing:0;font-size:1.08rem;grid-column:span 8 / span 8;grid-row:auto;max-width:100%;}
#node-block_44c2ec40{position:relative;float:left;width:100%;display:grid;align-items:center;padding-top:0rem;padding-bottom:0rem;padding-left:0.738rem;padding-right:0.738rem;border-radius:16px;background:#ffffff;border:1px solid #dfe7f5;grid-template-columns:repeat(12, minmax(0, 1fr));gap:0.82rem;height:auto;max-width:100%;}
#node-block_842195e7{position:relative;float:left;width:2.9rem;height:auto;border-radius:14px;background:#ffffff;display:flex;align-items:center;justify-content:center;color:#0a0a0a;border-color:#dccfbe;grid-column:span 2 / span 2;grid-row:auto;flex-wrap:wrap;max-width:100%;}
#node-icon_f3955860{position:relative;display:inline-flex;width:1.8rem;height:1.8rem;align-items:center;justify-content:center;color:#2563eb;justify-self:start;align-self:start;max-width:100%;}
#node-text_3f2f4253{position:relative;font-family:Source Sans 3;font-weight:400;color:#374151;text-transform:none;line-height:1.68;letter-spacing:0;font-size:1.08rem;grid-column:span 8 / span 8;grid-row:auto;max-width:100%;}
#node-block_a5e98f08{position:relative;float:left;width:100%;min-height:72px;display:grid;gap:1.189rem;padding-left:1.066rem;border-style:none;border:none;border-width:0px;grid-column:span 6 / span 6;grid-row:auto;max-width:100%;}
#node-block_6cd2950e{position:relative;float:left;width:100%;min-height:72px;display:grid;gap:0.574rem;padding-top:0%;margin-top:11%;max-width:100%;}
#node-block_cc7c6c21{position:relative;float:left;width:100%;display:grid;align-items:center;padding-top:0rem;padding-bottom:0rem;padding-left:0.9rem;padding-right:0.9rem;border-radius:16px;background:#000000;border:1px solid #dfe7f5;height:auto;margin-top:0%;flex-direction:row;flex-wrap:wrap;justify-content:flex-start;grid-template-columns:repeat(12, minmax(0, 1fr));gap:16px;color:#ffffff;border-color:#dccfbe;align-content:normal;justify-items:stretch;grid-auto-rows:auto;max-width:100%;}
#node-block_2970b28e{position:relative;float:left;width:2.9rem;height:auto;border-radius:14px;background:transparent;display:flex;align-items:center;justify-content:center;grid-column:span 2 / span 2;grid-row:auto;color:#0a0a0a;flex-wrap:wrap;max-width:100%;}
#node-icon_0ec8ef52{position:relative;display:inline-flex;width:2.4rem;height:1.8rem;align-items:center;justify-content:center;color:#ff3131;justify-self:start;align-self:start;max-width:none;flex-basis:2.4rem;}
#node-text_529ca399{position:relative;font-family:Source Sans 3;font-weight:400;color:#ffffff;text-transform:none;line-height:1.68;letter-spacing:0;font-size:1.08rem;grid-column:span 9 / span 9;width:auto;max-width:none;min-width:0;justify-self:stretch;}
#node-block_2604707e{position:relative;float:left;width:100%;display:grid;align-items:center;padding-top:0rem;padding-bottom:0rem;padding-left:0.738rem;padding-right:0.738rem;border-radius:16px;background:#ffffff;border:1px solid #dfe7f5;grid-template-columns:repeat(12, minmax(0, 1fr));gap:0.82rem;height:auto;max-width:100%;}
#node-block_7f4e19cc{position:relative;float:left;width:2.9rem;height:auto;border-radius:14px;background:#ffffff;display:flex;align-items:center;justify-content:center;color:#0a0a0a;border-color:#dccfbe;grid-column:span 2 / span 2;grid-row:auto;flex-wrap:wrap;max-width:100%;}
#node-icon_e1bc489d{position:relative;display:inline-flex;width:1.35rem;height:1.8rem;align-items:center;justify-content:center;color:#2563eb;justify-self:start;align-self:start;max-width:100%;}
#node-text_90e7cbca{position:relative;font-family:Source Sans 3;font-weight:400;color:#374151;text-transform:none;line-height:1.68;letter-spacing:0;font-size:1.08rem;grid-column:span 8 / span 8;grid-row:auto;max-width:100%;}
#node-block_8018f042{position:relative;float:left;width:100%;display:grid;align-items:center;padding-top:0rem;padding-bottom:0rem;padding-left:0.738rem;padding-right:0.738rem;border-radius:16px;background:#ffffff;border:1px solid #dfe7f5;grid-template-columns:repeat(12, minmax(0, 1fr));gap:0.82rem;height:auto;max-width:100%;}
#node-block_f05422ac{position:relative;float:left;width:2.9rem;height:auto;border-radius:14px;background:#ffffff;display:flex;align-items:center;justify-content:center;grid-column:span 2 / span 2;grid-row:auto;color:#0a0a0a;border-color:#dccfbe;flex-wrap:wrap;max-width:100%;}
#node-icon_28a6eca6{position:relative;display:inline-flex;width:1.8rem;height:1.8rem;align-items:center;justify-content:center;color:#2563eb;justify-self:start;align-self:start;max-width:100%;}
#node-text_5d001300{position:relative;font-family:Source Sans 3;font-weight:400;color:#374151;text-transform:none;line-height:1.68;letter-spacing:0;font-size:1.08rem;grid-column:span 8 / span 8;grid-row:auto;max-width:100%;}
#node-block_318af2ca{position:relative;float:left;width:100%;display:grid;align-items:center;padding-top:0rem;padding-bottom:0rem;padding-left:0.738rem;padding-right:0.738rem;border-radius:16px;background:#ffffff;border:1px solid #dfe7f5;grid-template-columns:repeat(12, minmax(0, 1fr));gap:0.82rem;height:auto;max-width:100%;}
#node-block_71566a39{position:relative;float:left;width:2.9rem;height:auto;border-radius:14px;background:#ffffff;display:flex;align-items:center;justify-content:center;color:#0a0a0a;border-color:#dccfbe;grid-column:span 2 / span 2;grid-row:auto;flex-wrap:wrap;max-width:100%;}
#node-icon_5ccf2f0f{position:relative;display:inline-flex;width:1.8rem;height:1.8rem;align-items:center;justify-content:center;color:#2563eb;justify-self:start;align-self:start;max-width:100%;}
#node-text_813d4655{position:relative;font-family:Source Sans 3;font-weight:400;color:#374151;text-transform:none;line-height:1.68;letter-spacing:0;font-size:1.08rem;grid-column:span 8 / span 8;grid-row:auto;max-width:100%;}
#node-block_9da079f6{position:relative;float:left;width:100%;min-height:72px;display:grid;padding-left:0;border-left:0;grid-column:span 12 / span 12;grid-row:auto;grid-template-columns:repeat(12, minmax(0, 1fr));gap:1.4rem;padding-top:0.2rem;max-width:100%;}
#node-text_592f3987{position:relative;font-family:Outfit;font-weight:700;color:#111827;text-transform:none;line-height:1.14;letter-spacing:-0.02em;font-size:1.7rem;margin-bottom:1.23rem;grid-column:span 12 / span 12;width:auto;max-width:none;min-width:0;justify-self:stretch;}
#node-block_9c63bb71{position:relative;float:left;width:100%;min-height:72px;display:grid;gap:0.574rem;padding-top:0%;margin-top:3%;grid-column:span 6 / span 6;grid-row:auto;max-width:100%;}
#node-block_d65627ff{position:relative;float:left;width:100%;display:grid;align-items:center;padding-top:0rem;padding-bottom:0rem;padding-left:0.9rem;padding-right:0.9rem;border-radius:16px;background:#ffffff;border:1px solid #dfe7f5;height:auto;margin-top:0%;flex-direction:row;flex-wrap:wrap;justify-content:flex-start;grid-template-columns:repeat(12, minmax(0, 1fr));gap:16px;align-content:normal;justify-items:stretch;grid-auto-rows:auto;max-width:100%;}
#node-block_4d3b3aaa{position:relative;float:left;width:2.9rem;height:auto;border-radius:14px;background:#ffffff;display:flex;align-items:center;justify-content:center;grid-column:span 2 / span 2;grid-row:auto;color:#0a0a0a;border-color:#dccfbe;flex-wrap:wrap;max-width:100%;}
#node-icon_890853b0{position:relative;display:inline-flex;width:2.4rem;height:1.8rem;align-items:center;justify-content:center;color:#2563eb;justify-self:start;align-self:start;max-width:none;flex-basis:2.4rem;}
#node-text_022d6df2{position:relative;font-family:Outfit;font-weight:600;color:#111827;text-transform:none;line-height:1.22;letter-spacing:-0.01em;font-size:1.2rem;grid-column:span 9 / span 9;width:auto;max-width:none;min-width:0;justify-self:stretch;}
#node-block_2450699f{position:relative;float:left;width:100%;display:grid;align-items:center;padding-top:0rem;padding-bottom:0rem;padding-left:0.738rem;padding-right:0.738rem;border-radius:16px;background:#ffffff;border:1px solid #dfe7f5;grid-template-columns:repeat(12, minmax(0, 1fr));gap:0.82rem;height:auto;max-width:100%;}
#node-block_e80be6dd{position:relative;float:left;width:2.9rem;height:auto;border-radius:14px;background:#ffffff;display:flex;align-items:center;justify-content:center;color:#0a0a0a;border-color:#dccfbe;grid-column:span 2 / span 2;grid-row:auto;flex-wrap:wrap;max-width:100%;}
#node-icon_4ee2d3ff{position:relative;display:inline-flex;width:1.8rem;height:1.8rem;align-items:center;justify-content:center;color:#2563eb;justify-self:start;align-self:start;max-width:100%;}
#node-text_e28ef5e1{position:relative;font-family:Outfit;font-weight:600;color:#111827;text-transform:none;line-height:1.22;letter-spacing:-0.01em;font-size:1.2rem;grid-column:span 8 / span 8;grid-row:auto;max-width:100%;}
#node-block_5c936d70{position:relative;float:left;width:100%;display:grid;align-items:center;padding-top:0rem;padding-bottom:0rem;padding-left:0.738rem;padding-right:0.738rem;border-radius:16px;background:#ffffff;border:1px solid #dfe7f5;grid-template-columns:repeat(12, minmax(0, 1fr));gap:0.82rem;height:auto;max-width:100%;}
#node-block_bde3fc82{position:relative;float:left;width:2.9rem;height:auto;border-radius:14px;background:#ffffff;display:flex;align-items:center;justify-content:center;grid-column:span 2 / span 2;grid-row:auto;color:#0a0a0a;border-color:#dccfbe;flex-wrap:wrap;max-width:100%;}
#node-icon_87d98561{position:relative;display:inline-flex;width:1.8rem;height:1.8rem;align-items:center;justify-content:center;color:#2563eb;justify-self:start;align-self:start;max-width:100%;}
#node-text_b7fb1e2f{position:relative;font-family:Outfit;font-weight:600;color:#111827;text-transform:none;line-height:1.22;letter-spacing:-0.01em;font-size:1.2rem;grid-column:span 8 / span 8;grid-row:auto;max-width:100%;}
#node-block_6a985423{position:relative;float:left;width:100%;display:grid;align-items:center;padding-top:0rem;padding-bottom:0rem;padding-left:0.738rem;padding-right:0.738rem;border-radius:16px;background:#ffffff;border:1px solid #dfe7f5;grid-template-columns:repeat(12, minmax(0, 1fr));gap:0.82rem;height:auto;max-width:100%;}
#node-block_bdbd25cb{position:relative;float:left;width:2.9rem;height:auto;border-radius:14px;background:#ffffff;display:flex;align-items:center;justify-content:center;color:#0a0a0a;border-color:#dccfbe;grid-column:span 2 / span 2;grid-row:auto;flex-wrap:wrap;max-width:100%;}
#node-icon_f9979045{position:relative;display:inline-flex;width:1.8rem;height:1.8rem;align-items:center;justify-content:center;color:#2563eb;justify-self:start;align-self:start;max-width:100%;}
#node-text_a87096dd{position:relative;font-family:Outfit;font-weight:600;color:#111827;text-transform:none;line-height:1.22;letter-spacing:-0.01em;font-size:1.2rem;grid-column:span 8 / span 8;grid-row:auto;max-width:100%;}
#node-block_d2ab20d0{position:relative;float:left;width:auto;min-height:72px;background:transparent;grid-column:span 6 / span 6;max-width:none;min-width:0;justify-self:stretch;color:#0a0a0a;}
#node-section_e8058328{position:relative;width:100%;min-height:180px;padding-top:3.28rem;padding-right:4vw;padding-bottom:3.28rem;padding-left:4vw;background:#ffffff;display:grid;gap:1.025rem;color:#0a0a0a;border-bottom:1px solid #ebe5dc;border-color:#dccfbe;max-width:100%;}
#node-block_9a3c5ce9{position:relative;float:left;width:auto;min-height:72px;display:grid;gap:0.779rem;max-width:none;justify-self:stretch;grid-column:span 12 / span 12;min-width:0;}
#node-text_3f4ec9f6{position:relative;font-family:Source Sans 3;font-weight:700;color:#8c5c45;text-transform:uppercase;line-height:1.75;letter-spacing:0.18em;font-size:0.98rem;margin-bottom:0rem;max-width:100%;}
#node-text_b096d83a{position:relative;font-family:Outfit;font-weight:700;color:#111827;text-transform:none;line-height:1.08;letter-spacing:-0.03em;font-size:3.5rem;max-width:16ch;margin-bottom:0px;margin-top:10.66px;}
#node-text_6a01828a{position:relative;font-family:Outfit;font-weight:700;color:#ff3131;text-transform:none;line-height:1.08;letter-spacing:-0.03em;font-size:3.5rem;max-width:16ch;margin-bottom:0px;margin-top:0px;}
#node-text_7b88ecb3{position:relative;font-family:Source Sans 3;font-weight:400;color:#374151;text-transform:none;line-height:1.75;letter-spacing:0;font-size:0.98rem;max-width:64ch;}
#node-block_1ec8784f{position:relative;float:left;width:100%;min-height:72px;display:grid;grid-template-columns:1fr;gap:1.3rem;align-items:stretch;grid-column:span 12 / span 12;max-width:none;min-width:0;justify-self:stretch;}
#node-block_a2a9252f{position:relative;float:left;width:100%;min-height:72px;display:grid;gap:0.85rem;padding-top:1.45rem;padding-bottom:1.1rem;padding-left:1.2rem;padding-right:1.2rem;background:#ffffff;border:2px solid #eef1f4;border-radius:24px;box-shadow:0 16px 34px rgba(15, 23, 42, 0.08);align-content:start;align-items:stretch;flex-direction:row;flex-wrap:wrap;justify-content:flex-start;grid-template-columns:repeat(12, minmax(0, 1fr));justify-items:stretch;grid-auto-rows:auto;max-width:100%;}
#node-block_f1a643c5{position:relative;float:left;width:100%;min-height:72px;display:grid;grid-template-columns:5.2rem minmax(0, 1fr);gap:0.861rem;align-items:start;max-width:100%;}
#node-block_1eef2fef{position:relative;float:left;width:auto;min-height:72px;display:grid;gap:0.287rem;align-content:start;padding-top:0.123rem;grid-column:span 11 / span 11;max-width:none;min-width:0;justify-self:stretch;}
#node-text_8772fd1f{position:relative;font-family:Outfit;font-weight:700;color:#111827;text-transform:none;line-height:1.14;letter-spacing:-0.02em;font-size:1.7rem;max-width:none;grid-column:span 11 / span 11;width:auto;min-width:0;justify-self:stretch;}
#node-text_89ab4d6d{position:relative;font-family:Outfit;font-weight:300;color:#374151;text-transform:none;line-height:1.1;letter-spacing:0;font-size:1.7rem;max-width:100%;}
#node-block_c7c1ba7b{position:relative;float:left;width:100%;min-height:72px;display:grid;gap:0.451rem;max-width:100%;}
#node-text_3d12af92{position:relative;font-family:Outfit;font-weight:600;color:#111827;text-transform:none;line-height:1.22;letter-spacing:-0.01em;font-size:1.2rem;margin-bottom:0rem;max-width:100%;}
#node-block_fec3cdf1{position:relative;float:left;width:100%;display:flex;gap:0.164rem;align-items:stretch;height:auto;flex-direction:row;flex-wrap:wrap;justify-content:flex-start;align-content:flex-end;row-gap:0.2rem;column-gap:0.2rem;max-width:100%;}
#node-text_1bca8439{position:relative;font-family:Source Sans 3;font-weight:400;color:#374151;text-transform:none;line-height:1.75;letter-spacing:0;font-size:0.98rem;width:299px;max-width:none;flex-basis:299px;margin-bottom:0px;}
#node-text_edf62a5d{position:relative;font-family:Source Sans 3;font-weight:400;color:#374151;text-transform:none;line-height:1.75;letter-spacing:0;font-size:0.98rem;width:312px;max-width:none;flex-basis:312px;margin-top:0px;margin-bottom:0px;}
#node-text_365ecfdf{position:relative;font-family:Source Sans 3;font-weight:400;color:#374151;text-transform:none;line-height:1.75;letter-spacing:0;font-size:0.98rem;width:313px;max-width:none;flex-basis:313px;padding-top:0px;margin-top:0px;margin-bottom:0px;}
#node-block_e4a39730{position:relative;float:left;width:100%;display:grid;grid-template-columns:auto minmax(0, 1fr);gap:0.533rem;align-items:center;height:auto;max-width:100%;}
#node-block_f39c5659{position:relative;float:left;width:100%;display:grid;grid-template-columns:auto minmax(0, 1fr);gap:0.533rem;align-items:center;height:auto;max-width:100%;}
#node-block_476cb7bd{position:relative;float:left;width:100%;height:1px;background:#e5e7eb;max-width:100%;}
#node-block_021c8b80{position:relative;float:left;width:100%;min-height:72px;display:grid;gap:0.451rem;max-width:100%;}
#node-text_0afb68df{position:relative;font-family:Outfit;font-weight:600;color:#111827;text-transform:none;line-height:1.22;letter-spacing:-0.01em;font-size:1.2rem;margin-bottom:0rem;max-width:100%;}
#node-block_c3e58eb7{position:relative;float:left;width:100%;display:flex;gap:0.533rem;align-items:start;flex-direction:row;flex-wrap:wrap;justify-content:flex-start;max-width:100%;}
#node-text_f9699858{position:relative;font-family:Source Sans 3;font-weight:400;color:#374151;text-transform:none;line-height:1.75;letter-spacing:0;font-size:0.98rem;margin-bottom:0rem;max-width:100%;}
#node-text_84855ce5{position:relative;font-family:Source Sans 3;font-weight:400;color:#374151;text-transform:none;line-height:1.75;letter-spacing:0;font-size:0.98rem;margin-top:0rem;margin-bottom:0rem;max-width:100%;}
#node-text_06b56450{position:relative;font-family:Source Sans 3;font-weight:400;color:#374151;text-transform:none;line-height:1.75;letter-spacing:0;font-size:0.98rem;margin-top:0rem;margin-bottom:0rem;max-width:100%;}
#node-text_b1be71fd{position:relative;font-family:Source Sans 3;font-weight:400;color:#374151;text-transform:none;line-height:1.75;letter-spacing:0;font-size:0.98rem;margin-top:0rem;max-width:100%;}
#node-block_cedc3d55{position:relative;float:left;width:100%;min-height:72px;display:grid;grid-template-columns:4.2rem minmax(0, 1fr);gap:0.697rem;align-items:center;padding-top:0.779rem;padding-bottom:0.779rem;padding-left:0.779rem;padding-right:0.779rem;border-radius:14px;background:#ff3131;color:#0a0a0a;border-color:#dccfbe;max-width:100%;}
#node-text_9eb8b256{position:relative;font-family:Source Sans 3;font-weight:400;color:#ffffff;text-transform:none;line-height:1.75;letter-spacing:0;font-size:0.98rem;grid-column:span 9 / span 9;width:auto;max-width:none;min-width:0;justify-self:stretch;}
#node-block_573dd89d{position:relative;float:left;width:100%;min-height:72px;display:flex;gap:0.697rem;padding-top:1.189rem;padding-bottom:0.902rem;padding-left:0.984rem;padding-right:0.984rem;background:#ffffff;border:3px solid #ff4929;border-radius:24px;box-shadow:0 16px 34px rgba(15, 23, 42, 0.08);align-content:start;flex-direction:row;flex-wrap:wrap;align-items:stretch;justify-content:flex-start;border-width:3px;border-style:solid;border-color:#ff4929;max-width:100%;}
#node-block_df550baf{position:absolute;float:left;width:48%;top:-0.95rem;left:50%;transform:translateX(-50%);display:grid;grid-template-columns:auto minmax(0, 1fr);gap:0.287rem;align-items:center;padding-top:0rem;padding-bottom:0rem;padding-left:0.656rem;padding-right:0.656rem;border-radius:999px;background:#ff1f14;max-width:none;flex-basis:48%;height:auto;}
#node-text_a9c98d7a{position:relative;font-family:Source Sans 3;font-weight:700;color:#ffffff;text-transform:none;line-height:1.75;letter-spacing:0;font-size:0.98rem;grid-column:span 12 / span 12;grid-row:auto;text-align:center;max-width:100%;}
#node-block_b6531f53{position:relative;float:left;width:100%;min-height:72px;display:grid;grid-template-columns:5.2rem minmax(0, 1fr);gap:0.861rem;align-items:start;max-width:100%;}
#node-block_6515ffb8{position:relative;float:left;width:auto;min-height:72px;display:grid;gap:0.287rem;align-content:start;padding-top:0.123rem;grid-column:span 12 / span 12;max-width:none;min-width:0;justify-self:stretch;}
#node-text_6aa5a408{position:relative;font-family:Outfit;font-weight:700;color:#111827;text-transform:none;line-height:1.14;letter-spacing:-0.02em;font-size:1.7rem;max-width:9ch;}
#node-text_c6979282{position:relative;font-family:Outfit;font-weight:300;color:#374151;text-transform:none;line-height:1.1;letter-spacing:0;font-size:1.7rem;max-width:100%;}
#node-block_9865e8dc{position:relative;float:left;width:100%;min-height:72px;display:grid;gap:0.451rem;max-width:100%;}
#node-text_567d3f7f{position:relative;font-family:Outfit;font-weight:600;color:#111827;text-transform:none;line-height:1.22;letter-spacing:-0.01em;font-size:1.2rem;margin-bottom:0rem;max-width:100%;}
#node-block_8b84d45e{position:relative;float:left;width:100%;display:flex;gap:0.164rem;align-items:stretch;height:auto;flex-direction:row;flex-wrap:wrap;justify-content:flex-start;align-content:flex-end;row-gap:0.2rem;column-gap:0.2rem;max-width:100%;}
#node-text_510e460e{position:relative;font-family:Source Sans 3;font-weight:400;color:#374151;text-transform:none;line-height:1.75;letter-spacing:0;font-size:0.98rem;width:299px;max-width:none;flex-basis:299px;margin-bottom:0px;}
#node-text_90afb988{position:relative;font-family:Source Sans 3;font-weight:400;color:#374151;text-transform:none;line-height:1.75;letter-spacing:0;font-size:0.98rem;width:312px;max-width:none;flex-basis:312px;margin-top:0px;margin-bottom:0px;}
#node-text_f8ed41d6{position:relative;font-family:Source Sans 3;font-weight:400;color:#374151;text-transform:none;line-height:1.75;letter-spacing:0;font-size:0.98rem;width:313px;max-width:none;flex-basis:313px;padding-top:0px;margin-top:0px;margin-bottom:0px;}
#node-block_7c60c37d{position:relative;float:left;width:100%;display:grid;grid-template-columns:auto minmax(0, 1fr);gap:0.533rem;align-items:center;height:auto;max-width:100%;}
#node-block_61cacddd{position:relative;float:left;width:100%;display:grid;grid-template-columns:auto minmax(0, 1fr);gap:0.533rem;align-items:center;height:auto;max-width:100%;}
#node-block_6f1fcb07{position:relative;float:left;width:100%;height:1px;background:#e5e7eb;max-width:100%;}
#node-block_5368f06b{position:relative;float:left;width:100%;min-height:72px;display:grid;gap:0.451rem;max-width:100%;}
#node-text_267e24c4{position:relative;font-family:Outfit;font-weight:600;color:#111827;text-transform:none;line-height:1.22;letter-spacing:-0.01em;font-size:1.2rem;margin-bottom:0rem;max-width:100%;}
#node-block_6f33d9fe{position:relative;float:left;width:100%;display:flex;gap:0.533rem;align-items:start;flex-direction:row;flex-wrap:wrap;justify-content:flex-start;max-width:100%;}
#node-text_fe0c5fe7{position:relative;font-family:Source Sans 3;font-weight:400;color:#374151;text-transform:none;line-height:1.75;letter-spacing:0;font-size:0.98rem;margin-bottom:0rem;max-width:100%;}
#node-text_8a18fc22{position:relative;font-family:Source Sans 3;font-weight:400;color:#374151;text-transform:none;line-height:1.75;letter-spacing:0;font-size:0.98rem;margin-top:0rem;margin-bottom:0rem;max-width:100%;}
#node-text_9b80081d{position:relative;font-family:Source Sans 3;font-weight:400;color:#374151;text-transform:none;line-height:1.75;letter-spacing:0;font-size:0.98rem;margin-top:0rem;margin-bottom:0rem;max-width:100%;}
#node-text_71779986{position:relative;font-family:Source Sans 3;font-weight:400;color:#374151;text-transform:none;line-height:1.75;letter-spacing:0;font-size:0.98rem;margin-top:0rem;max-width:100%;}
#node-block_9e37290c{position:relative;float:left;width:100%;min-height:72px;display:grid;grid-template-columns:4.2rem minmax(0, 1fr);gap:0.697rem;align-items:center;padding-top:0.779rem;padding-bottom:0.779rem;padding-left:0.779rem;padding-right:0.779rem;border-radius:14px;background:#ff3131;color:#0a0a0a;border-color:#dccfbe;max-width:100%;}
#node-text_39c2d7f0{position:relative;font-family:Source Sans 3;font-weight:400;color:#ffffff;text-transform:none;line-height:1.75;letter-spacing:0;font-size:0.98rem;grid-column:span 12 / span 12;width:auto;max-width:none;min-width:0;justify-self:stretch;}
#node-block_81a9d51d{position:relative;float:left;width:100%;min-height:72px;display:flex;gap:0.697rem;padding-top:1.189rem;padding-bottom:0.902rem;padding-left:0.984rem;padding-right:0.984rem;background:#ffffff;border:2px solid #eef1f4;border-radius:24px;box-shadow:0 16px 34px rgba(15, 23, 42, 0.08);align-content:start;flex-direction:row;flex-wrap:wrap;align-items:stretch;justify-content:flex-start;max-width:100%;}
#node-block_419241f1{position:relative;float:left;width:100%;min-height:72px;display:grid;grid-template-columns:5.2rem minmax(0, 1fr);gap:0.861rem;align-items:start;max-width:100%;}
#node-block_7bc3e62d{position:relative;float:left;width:auto;min-height:72px;display:grid;gap:0.287rem;align-content:start;padding-top:0.123rem;grid-column:span 12 / span 12;max-width:none;min-width:0;justify-self:stretch;}
#node-text_352f4017{position:relative;font-family:Outfit;font-weight:700;color:#111827;text-transform:none;line-height:1.14;letter-spacing:-0.02em;font-size:1.7rem;max-width:9ch;}
#node-text_bda6fc1f{position:relative;font-family:Outfit;font-weight:300;color:#374151;text-transform:none;line-height:1.1;letter-spacing:0;font-size:1.7rem;max-width:100%;}
#node-block_05d49aea{position:relative;float:left;width:100%;min-height:72px;display:grid;gap:0.451rem;max-width:100%;}
#node-text_3c7c8625{position:relative;font-family:Outfit;font-weight:600;color:#111827;text-transform:none;line-height:1.22;letter-spacing:-0.01em;font-size:1.2rem;margin-bottom:0rem;max-width:100%;}
#node-block_09d64b34{position:relative;float:left;width:100%;display:flex;gap:0.164rem;align-items:stretch;height:auto;flex-direction:row;flex-wrap:wrap;justify-content:flex-start;align-content:flex-end;row-gap:0.2rem;column-gap:0.2rem;max-width:100%;}
#node-text_3554a91c{position:relative;font-family:Source Sans 3;font-weight:400;color:#374151;text-transform:none;line-height:1.75;letter-spacing:0;font-size:0.98rem;width:299px;max-width:none;flex-basis:299px;margin-bottom:0px;}
#node-text_083789b5{position:relative;font-family:Source Sans 3;font-weight:400;color:#374151;text-transform:none;line-height:1.75;letter-spacing:0;font-size:0.98rem;width:312px;max-width:none;flex-basis:312px;margin-top:0px;margin-bottom:0px;}
#node-text_45e754b6{position:relative;font-family:Source Sans 3;font-weight:400;color:#374151;text-transform:none;line-height:1.75;letter-spacing:0;font-size:0.98rem;width:313px;max-width:none;flex-basis:313px;padding-top:0px;margin-top:0px;margin-bottom:0px;}
#node-block_6fd88f2a{position:relative;float:left;width:100%;display:grid;grid-template-columns:auto minmax(0, 1fr);gap:0.533rem;align-items:center;height:auto;max-width:100%;}
#node-block_4a1654bc{position:relative;float:left;width:100%;display:grid;grid-template-columns:auto minmax(0, 1fr);gap:0.533rem;align-items:center;height:auto;max-width:100%;}
#node-block_5c23248e{position:relative;float:left;width:100%;height:1px;background:#e5e7eb;max-width:100%;}
#node-block_d96098c0{position:relative;float:left;width:100%;min-height:72px;display:grid;gap:0.451rem;max-width:100%;}
#node-text_d85739e6{position:relative;font-family:Outfit;font-weight:600;color:#111827;text-transform:none;line-height:1.22;letter-spacing:-0.01em;font-size:1.2rem;margin-bottom:0rem;max-width:100%;}
#node-block_a97ca91d{position:relative;float:left;width:100%;display:flex;gap:0.533rem;align-items:start;flex-direction:row;flex-wrap:wrap;justify-content:flex-start;max-width:100%;}
#node-text_7aa22269{position:relative;font-family:Source Sans 3;font-weight:400;color:#374151;text-transform:none;line-height:1.75;letter-spacing:0;font-size:0.98rem;margin-bottom:0rem;max-width:100%;}
#node-text_0f4337cb{position:relative;font-family:Source Sans 3;font-weight:400;color:#374151;text-transform:none;line-height:1.75;letter-spacing:0;font-size:0.98rem;margin-top:0rem;margin-bottom:0rem;max-width:100%;}
#node-text_6d12e4f2{position:relative;font-family:Source Sans 3;font-weight:400;color:#374151;text-transform:none;line-height:1.75;letter-spacing:0;font-size:0.98rem;margin-top:0rem;margin-bottom:0rem;max-width:100%;}
#node-text_861c8596{position:relative;font-family:Source Sans 3;font-weight:400;color:#374151;text-transform:none;line-height:1.75;letter-spacing:0;font-size:0.98rem;margin-top:0rem;max-width:100%;}
#node-block_26260e65{position:relative;float:left;width:100%;min-height:72px;display:grid;grid-template-columns:4.2rem minmax(0, 1fr);gap:0.697rem;align-items:center;padding-top:0.779rem;padding-bottom:0.779rem;padding-left:0.779rem;padding-right:0.779rem;border-radius:14px;background:#ff3131;color:#0a0a0a;border-color:#dccfbe;max-width:100%;}
#node-text_3c7b300f{position:relative;font-family:Source Sans 3;font-weight:400;color:#ffffff;text-transform:none;line-height:1.75;letter-spacing:0;font-size:0.98rem;grid-column:span 12 / span 12;width:auto;max-width:none;min-width:0;justify-self:stretch;}
#node-block_9db0606a{width:auto;padding-top:19.68px;padding-right:19.68px;padding-bottom:19.68px;padding-left:19.68px;background:transparent;position:relative;float:left;grid-column:4 / span 6;max-width:none;min-width:0;justify-self:stretch;grid-row:auto;display:flex;gap:13.12px;flex-direction:row;flex-wrap:wrap;align-items:stretch;justify-content:center;border-radius:4px;color:#0a0a0a;}
#node-button_4c08bb32{display:inline;padding-top:16.4px;padding-right:28.7px;padding-bottom:16.4px;padding-left:28.7px;background:#000000;color:#ffffff;width:100%;float:left;margin-top:13.12px;font-size:0.98rem;align-self:stretch;text-align:center;border-radius:100px;font-family:Source Sans 3;font-weight:700;text-transform:none;line-height:1.75;letter-spacing:0;border-width:0px;border:none;border-style:none;transition:background-color 180ms ease, color 180ms ease, border-color 180ms ease, transform 180ms ease, box-shadow 180ms ease;max-width:100%;}
#node-section_ffb25794{position:relative;width:100%;min-height:180px;padding-top:2.132rem;padding-right:1.804rem;padding-bottom:2.132rem;padding-left:1.804rem;background:#000000;display:grid;color:#ffffff;border-bottom:1px solid #ebe5dc;border-radius:0px;box-shadow:0 28px 60px rgba(0, 0, 0, 0.32);grid-template-columns:repeat(12, minmax(0, 1fr));gap:0.82rem;border-color:#dccfbe;max-width:100%;}
#node-block_5abaf88d{position:relative;float:left;width:100%;min-height:72px;display:grid;grid-template-columns:1fr;gap:2rem;align-items:center;grid-column:span 12 / span 12;grid-row:auto;max-width:100%;}
#node-block_749cf58d{position:relative;float:left;width:auto;min-height:72px;display:grid;grid-column:span 12 / span 12;max-width:none;min-width:0;justify-self:stretch;grid-template-columns:repeat(12, minmax(0, 1fr));gap:0.328rem;row-gap:0.4rem;column-gap:0.4rem;}
#node-text_359cb30e{position:relative;font-family:Outfit;font-weight:700;color:#ffffff;text-transform:none;line-height:1.08;letter-spacing:-0.03em;font-size:3.5rem;max-width:none;margin-bottom:0rem;grid-column:span 10 / span 10;width:51.05rem;min-width:0;justify-self:stretch;}
#node-block_ecda5942{position:relative;float:left;width:auto;display:block;align-items:center;margin-top:0.492rem;padding-top:0rem;padding-bottom:0.943rem;padding-left:0.943rem;padding-right:0.943rem;border-radius:0px;border:none;background:transparent;grid-column:span 12 / span 12;max-width:none;min-width:0;justify-self:stretch;border-width:0px;border-style:none;color:#0a0a0a;height:auto;}
#node-text_41222a05{position:relative;font-family:Outfit;font-weight:700;color:#ff3131;text-transform:none;line-height:1.14;letter-spacing:-0.02em;font-size:1.7rem;max-width:none;grid-column:span 10 / span 10;width:33.8rem;min-width:0;justify-self:stretch;margin-top:0rem;margin-bottom:0rem;}
#node-block_667a0455{position:relative;float:left;width:auto;min-height:72px;display:grid;grid-column:span 12 / span 12;grid-row:auto;grid-template-columns:repeat(12, minmax(0, 1fr));gap:0.82rem;padding-top:2.5%;max-width:none;min-width:0;justify-self:stretch;}
#node-block_8a32720c{position:relative;float:left;width:auto;min-height:72px;display:grid;grid-template-columns:4.3rem auto minmax(0, 1fr);gap:0.779rem;align-items:start;padding-top:0.369rem;padding-bottom:0.369rem;grid-column:span 12 / span 12;max-width:none;min-width:0;justify-self:stretch;grid-row:auto;}
#node-block_07cd5fd8{position:relative;float:left;width:100%;min-height:72px;display:grid;justify-items:center;gap:0.328rem;padding-top:0.123rem;max-width:100%;}
#node-block_ab2947c9{position:relative;float:left;width:auto;min-height:72px;display:grid;gap:0.287rem;padding-top:0.082rem;grid-column:span 12 / span 12;max-width:none;min-width:0;justify-self:stretch;}
#node-text_0903ea35{position:relative;font-family:Outfit;font-weight:700;color:#ff3131;text-transform:none;line-height:1.08;letter-spacing:-0.03em;font-size:3.5rem;margin-top:0rem;text-align:right;padding-bottom:0rem;margin-bottom:0rem;max-width:100%;}
#node-text_97324a6d{position:relative;font-family:Outfit;font-weight:700;color:#ffffff;text-transform:none;line-height:1.08;letter-spacing:-0.03em;font-size:3.5rem;margin-top:0rem;text-align:right;padding-bottom:0rem;margin-bottom:0rem;max-width:100%;}
#node-text_ec02166e{position:relative;font-family:Outfit;font-weight:700;color:#ffffff;text-transform:none;line-height:1.08;letter-spacing:-0.03em;font-size:3.5rem;margin-top:0rem;text-align:right;padding-bottom:0rem;margin-bottom:0rem;max-width:100%;}
#node-text_e1eeb6fa{position:relative;font-family:Outfit;font-weight:700;color:#ff3131;text-transform:none;line-height:1.08;letter-spacing:-0.03em;font-size:3.5rem;margin-top:0rem;text-align:right;padding-bottom:0rem;margin-bottom:0rem;max-width:100%;}
#node-section_b6c2302a{width:100%;min-height:220px;padding-top:3.28rem;padding-right:4vw;padding-bottom:3.28rem;padding-left:4vw;background:#f4dfd6;display:grid;gap:1.025rem;color:#1f1812;border-bottom:1px solid #ebe5dc;border-color:#dccfbe;max-width:100%;}
#node-block_20a71e83{width:auto;min-height:140px;padding-top:19.68px;padding-right:19.68px;padding-bottom:19.68px;padding-left:19.68px;display:grid;gap:0rem;max-width:none;justify-self:stretch;grid-column:span 12 / span 12;min-width:0;row-gap:0rem;column-gap:0rem;background:transparent;color:#0a0a0a;}
#node-text_f35ec5b5{font-family:Outfit;font-size:3.5rem;line-height:1.08;color:#ff3131;max-width:16ch;font-weight:700;margin-bottom:0rem;text-transform:none;letter-spacing:-0.03em;grid-column:span 12 / span 12;grid-row:auto;}
#node-text_2697a46d{font-family:Outfit;font-size:3.5rem;line-height:1.08;color:#0a0a0a;max-width:16ch;font-weight:700;margin-top:0rem;margin-bottom:0rem;text-transform:none;letter-spacing:-0.03em;grid-column:span 12 / span 12;grid-row:auto;}
#node-text_143e8a53{font-family:Source Sans 3;font-size:0.98rem;line-height:1.75;color:#0a0a0a;max-width:64ch;margin-top:0rem;padding-top:0.738rem;grid-column:span 12 / span 12;grid-row:auto;font-weight:400;text-transform:none;letter-spacing:0;}
#node-block_c426046b{width:auto;padding-top:19.68px;padding-right:19.68px;padding-bottom:19.68px;padding-left:19.68px;background:transparent;position:relative;float:left;grid-column:9 / span 4;max-width:none;min-width:0;justify-self:stretch;grid-row:auto;display:flex;gap:13.12px;flex-direction:row;flex-wrap:wrap;align-items:stretch;justify-content:center;border-radius:4px;color:#0a0a0a;}
#node-button_cb6a053d{display:inline;padding-top:16.4px;padding-right:28.7px;padding-bottom:16.4px;padding-left:28.7px;background:#ffffff;color:#000000;width:100%;float:left;margin-top:13.12px;font-size:0.98rem;align-self:stretch;text-align:center;border-radius:100px;font-family:Source Sans 3;font-weight:700;text-transform:none;line-height:1.75;letter-spacing:0;border-width:0px;border:none;border-style:none;transition:background-color 180ms ease, color 180ms ease, border-color 180ms ease, transform 180ms ease, box-shadow 180ms ease;max-width:100%;}
#node-section_53845cbd{position:relative;width:100%;min-height:180px;padding-top:0rem;padding-right:0rem;padding-bottom:0rem;padding-left:0rem;background:#f7f7f7;max-width:100%;}
#node-section_afd94fa7{width:100%;padding-top:3.28rem;padding-right:4vw;padding-bottom:3.28rem;padding-left:4vw;display:grid;gap:1.025rem;color:#0a0a0a;border-bottom:1px solid #ebe5dc;justify-items:center;text-align:center;height:auto;min-height:220px;grid-column:span 12 / span 12;grid-row:auto;background:#ffffff;border-color:#dccfbe;max-width:100%;}
#node-block_9c7b1d05{width:100%;padding-top:19.68px;padding-right:19.68px;padding-bottom:19.68px;padding-left:19.68px;background:transparent;position:relative;float:left;display:grid;grid-template-columns:repeat(12, minmax(0, 1fr));gap:1rem;color:#0a0a0a;max-width:100%;}
#node-text_3a45e538{font-family:Outfit;font-size:3.5rem;line-height:1.08;color:#111827;max-width:none;width:auto;float:left;font-weight:700;letter-spacing:-0.03em;text-transform:none;position:relative;grid-column:span 12 / span 12;grid-row:auto;min-width:0;justify-self:stretch;padding-bottom:0rem;margin-bottom:0rem;}
#node-block_0088263e{width:auto;padding-top:19.68px;padding-right:19.68px;padding-bottom:19.68px;padding-left:19.68px;background:#ffffff;position:relative;float:left;display:flex;min-width:0;max-width:none;border-radius:4px;gap:13.12px;flex-direction:row;flex-wrap:wrap;justify-content:center;align-items:stretch;grid-column:5 / span 4;grid-row:auto;justify-self:stretch;color:#0a0a0a;border-color:#dccfbe;}
#node-button_41c4f1a5{display:inline;padding-top:20.5px;padding-right:32.8px;padding-bottom:20.5px;padding-left:32.8px;background:#000000;color:#ffffff;font-family:Source Sans 3;font-size:0.98rem;font-weight:700;line-height:1.75;letter-spacing:0;text-transform:none;position:relative;text-align:center;float:left;width:100%;margin-top:13.12px;border-radius:100px;border-width:0px;border-style:none;border:none;align-self:stretch;transition:background-color 180ms ease, color 180ms ease, border-color 180ms ease, transform 180ms ease, box-shadow 180ms ease;max-width:100%;}
#node-section_1aa5cb82{position:relative;width:100%;min-height:180px;padding-top:0rem;padding-right:0rem;padding-bottom:0rem;padding-left:0rem;background:#f7f7f7;display:block;max-width:100%;}
#node-section_a9d8025d{width:100%;padding-top:39.36px;padding-right:39.36px;padding-bottom:39.36px;padding-left:39.36px;background:#000000;position:relative;height:100%;display:grid;grid-template-columns:repeat(12, minmax(0, 1fr));gap:0.82rem;color:#ffffff;border-color:#dccfbe;max-width:100%;}
#node-block_5fc70aa6{width:auto;padding-top:5px;padding-right:5px;padding-bottom:5px;padding-left:5px;background:transparent;position:relative;float:left;grid-column:span 12 / span 12;max-width:none;min-width:0;justify-self:stretch;height:auto;display:grid;grid-template-columns:repeat(12, minmax(0, 1fr));gap:1rem;color:#0a0a0a;}
#node-block_eb15feae{width:auto;padding-top:2px;padding-right:2px;padding-bottom:2px;padding-left:2px;background:transparent;position:relative;float:left;max-width:none;height:auto;grid-column:span 3 / span 3;grid-row:auto;min-width:0;justify-self:stretch;color:#0a0a0a;}
#node-image_fbb5aa15{width:100%;object-fit:contain;position:relative;float:left;height:auto;}
#node-block_e2f287a5{width:auto;padding-top:0px;padding-right:2px;padding-bottom:0px;padding-left:2px;background:transparent;position:relative;float:left;grid-column:span 9 / span 9;grid-row:auto;max-width:none;min-width:0;justify-self:stretch;height:auto;opacity:1;display:grid;grid-template-columns:repeat(12, minmax(0, 1fr));gap:1rem;color:#0a0a0a;}
#node-text_c7a7eeef{font-family:Outfit;font-size:1.2rem;line-height:1.22;color:#ffffff;max-width:none;position:relative;font-weight:600;text-transform:none;letter-spacing:-0.01em;width:auto;float:left;grid-column:span 12 / span 12;min-width:0;justify-self:stretch;text-align:right;grid-row:auto;margin-top:0.984rem;}
#node-button_fa35ef33:hover{background:#ffffff !important;color:#ff2424 !important;}
#node-button_3d258cb7:hover{background:#ff2424 !important;color:#ffffff !important;}
#node-button_4c08bb32:hover{background:#ffffff !important;color:#ff2424 !important;}
#node-button_cb6a053d:hover{background:#ff2424 !important;color:#ffffff !important;}
}

@media (max-width: 767px) {
#node-section_6a2d8386{width:100%;padding-top:0px;padding-right:0px;padding-bottom:0px;padding-left:0px;background:#fffdf9;max-width:100%;}
#node-section_092345f3{width:100%;padding-top:2.52rem;padding-right:4vw;padding-bottom:2.88rem;padding-left:4vw;display:grid;gap:0.9rem;color:#ffffff;border-bottom:1px solid #ebe5dc;grid-template-columns:1.05fr 0.95fr;align-items:center;height:auto;align-content:flex-start;background:#000000;border-color:#dccfbe;max-width:100%;}
#node-block_6f73c4ef{width:auto;padding-top:3.6px;padding-right:3.6px;padding-bottom:3.6px;padding-left:3.6px;background:transparent;position:relative;float:left;grid-column:span 12 / span 12;max-width:none;min-width:0;justify-self:stretch;height:auto;display:grid;grid-template-columns:repeat(12, minmax(0, 1fr));gap:0.72rem;color:#0a0a0a;}
#node-block_45fabccf{width:auto;padding-top:2px;padding-right:2px;padding-bottom:2px;padding-left:2px;background:transparent;position:relative;float:left;max-width:none;height:auto;grid-column:span 5 / span 5;grid-row:auto;min-width:0;justify-self:stretch;color:#0a0a0a;}
#node-image_42a6e4e0{width:100%;object-fit:contain;position:relative;float:left;height:auto;}
#node-block_9ab17177{width:auto;padding-top:2px;padding-right:2px;padding-bottom:2px;padding-left:2px;background:transparent;position:relative;float:left;grid-column:span 7 / span 7;grid-row:auto;max-width:none;min-width:0;justify-self:stretch;height:auto;opacity:1;color:#0a0a0a;}
#node-section_b3b60703{width:100%;min-height:220px;padding-top:2.88rem;padding-right:4vw;padding-bottom:2.88rem;padding-left:4vw;background:#ffffff;display:grid;gap:0.9rem;color:#0a0a0a;border-bottom:1px solid #ebe5dc;grid-column:span 4 / span 4;grid-row:auto;border-color:#dccfbe;max-width:100%;}
#node-block_98d7a11a{width:auto;min-height:140px;padding-top:0px;padding-right:17.28px;padding-bottom:0px;padding-left:17.28px;background:transparent;display:grid;gap:0rem;max-width:none;justify-self:stretch;opacity:1;grid-column:span 12 / span 12;min-width:0;row-gap:0rem;column-gap:0rem;color:#0a0a0a;}
#node-text_068f091d{font-family:Outfit;font-size:2.2rem;line-height:1.12;color:#111827;max-width:16ch;font-weight:700;text-transform:none;letter-spacing:-0.03em;grid-column:span 12 / span 12;width:auto;min-width:0;justify-self:stretch;margin-bottom:0rem;padding-bottom:0rem;}
#node-text_b2bd64da{font-family:Outfit;font-size:2.2rem;line-height:1.12;color:#111827;max-width:none;font-weight:700;text-transform:none;letter-spacing:-0.03em;padding-top:0rem;margin-top:0rem;padding-bottom:0rem;margin-bottom:0rem;grid-column:span 12 / span 12;width:auto;min-width:0;justify-self:stretch;}
#node-text_af46395e{font-family:Outfit;font-size:2.2rem;line-height:1.12;color:#ff3131;max-width:none;font-weight:700;text-transform:none;letter-spacing:-0.03em;margin-top:0px;grid-column:span 12 / span 12;width:auto;min-width:0;justify-self:stretch;padding-bottom:0px;margin-bottom:0px;}
#node-text_56710e33{font-family:Outfit;font-size:2.2rem;line-height:1.12;color:#111827;max-width:none;font-weight:700;text-transform:none;letter-spacing:-0.03em;margin-top:0px;grid-column:span 12 / span 12;width:auto;min-width:0;justify-self:stretch;padding-bottom:0px;margin-bottom:0px;}
#node-text_87956df1{font-family:Outfit;font-size:2.2rem;line-height:1.12;color:#111827;max-width:none;font-weight:700;text-transform:none;letter-spacing:-0.03em;margin-top:0px;grid-column:span 11 / span 11;width:auto;min-width:0;justify-self:stretch;padding-bottom:0px;margin-bottom:0px;}
#node-text_cb8fd1c3{font-family:Source Sans 3;font-size:1rem;line-height:1.72;color:#ff3131;max-width:none;font-weight:400;text-transform:none;letter-spacing:0;margin-top:28.08px;grid-column:span 11 / span 11;width:auto;min-width:0;justify-self:stretch;padding-bottom:0px;margin-bottom:0px;}
#node-block_287aa4aa{width:auto;padding-top:24px;padding-right:24px;padding-bottom:24px;padding-left:24px;background:transparent;position:relative;float:left;grid-column:span 12 / span 12;max-width:none;min-width:0;justify-self:stretch;grid-row:auto;display:flex;gap:16px;flex-direction:row;flex-wrap:wrap;align-items:stretch;justify-content:center;border-radius:4px;color:#0a0a0a;}
#node-button_fa35ef33{display:inline;padding-top:14.4px;padding-right:25.2px;padding-bottom:14.4px;padding-left:25.2px;background:#000000;color:#ffffff;width:100%;float:left;margin-top:11.52px;font-size:0.95rem;align-self:stretch;text-align:center;border-radius:100px;font-family:Source Sans 3;font-weight:700;text-transform:none;line-height:1.78;letter-spacing:0;border-width:0px;border:none;border-style:none;transition:background-color 180ms ease, color 180ms ease, border-color 180ms ease, transform 180ms ease, box-shadow 180ms ease;max-width:100%;}
#node-block_196ef1da{width:auto;padding-top:24px;padding-right:24px;padding-bottom:24px;padding-left:24px;background:transparent;position:relative;float:left;grid-column:span 12 / span 12;max-width:none;min-width:0;justify-self:stretch;grid-row:auto;display:flex;gap:16px;flex-direction:row;flex-wrap:wrap;align-items:stretch;justify-content:center;border-radius:4px;color:#0a0a0a;}
#node-button_3d258cb7{display:inline;padding-top:14.4px;padding-right:25.2px;padding-bottom:14.4px;padding-left:25.2px;background:#ffffff;color:#000000;width:100%;float:left;margin-top:11.52px;font-size:0.95rem;align-self:stretch;text-align:center;border-radius:100px;font-family:Source Sans 3;font-weight:700;text-transform:none;line-height:1.78;letter-spacing:0;border-width:2px;border:2px solid #d7dce4;border-style:solid;transition:background-color 180ms ease, color 180ms ease, border-color 180ms ease, transform 180ms ease, box-shadow 180ms ease;max-width:100%;}
#node-section_cd4189f1{position:relative;width:100%;min-height:180px;padding-top:2.88rem;padding-right:4vw;padding-bottom:2.88rem;padding-left:4vw;background:#f4dfd6;display:grid;color:#1f1812;border-bottom:1px solid #ebe5dc;border-color:#dccfbe;grid-template-columns:repeat(12, minmax(0, 1fr));gap:0.72rem;max-width:100%;}
#node-block_f748e784{position:relative;float:left;width:auto;min-height:72px;display:grid;gap:0.684rem;max-width:none;justify-self:stretch;grid-column:span 12 / span 12;grid-row:auto;min-width:0;}
#node-text_6db39242{position:relative;font-family:Source Sans 3;font-weight:700;color:#8c5c45;text-transform:uppercase;line-height:1.78;letter-spacing:0.18em;font-size:0.95rem;grid-column:span 12 / span 12;grid-row:auto;text-align:right;max-width:100%;}
#node-text_de7886a8{position:relative;font-family:Outfit;font-weight:700;color:#111827;text-transform:none;line-height:1.12;letter-spacing:-0.03em;font-size:2.2rem;max-width:none;margin-bottom:0px;margin-top:0px;grid-column:span 12 / span 12;width:auto;min-width:0;justify-self:stretch;text-align:right;}
#node-text_88aebcd8{position:relative;font-family:Outfit;font-weight:700;color:#ff3131;text-transform:none;line-height:1.12;letter-spacing:-0.03em;font-size:2.2rem;max-width:none;margin-top:0px;padding-bottom:0px;margin-bottom:0px;grid-column:span 12 / span 12;width:auto;min-width:0;justify-self:stretch;text-align:right;}
#node-text_eccd03ce{position:relative;font-family:Source Sans 3;font-weight:400;color:#374151;text-transform:none;line-height:1.78;letter-spacing:0;font-size:0.95rem;max-width:none;margin-top:0rem;grid-column:7 / span 6;width:auto;min-width:0;justify-self:stretch;text-align:right;grid-row:auto;}
#node-block_d067401d{position:relative;float:left;width:100%;min-height:72px;display:grid;align-items:start;grid-column:span 12 / span 12;grid-row:auto;grid-template-columns:repeat(12, minmax(0, 1fr));gap:1rem;max-width:100%;}
#node-block_b5c264ff{position:relative;float:left;width:100%;min-height:72px;display:grid;gap:1.45rem;padding-left:1.3rem;border-style:none;border:none;border-width:0px;grid-column:span 12 / span 12;grid-row:auto;max-width:100%;}
#node-block_728cb332{position:relative;float:left;width:100%;min-height:72px;display:grid;gap:0.504rem;padding-top:0%;margin-top:11%;max-width:100%;}
#node-block_8fe62aa9{position:relative;float:left;width:100%;display:grid;align-items:center;padding-top:0rem;padding-bottom:0rem;padding-left:0.9rem;padding-right:0.9rem;border-radius:16px;background:#ffffff;border:1px solid #dfe7f5;height:auto;margin-top:0%;flex-direction:row;flex-wrap:wrap;justify-content:flex-start;grid-template-columns:repeat(12, minmax(0, 1fr));gap:16px;align-content:normal;justify-items:stretch;grid-auto-rows:auto;max-width:100%;}
#node-block_d41a6c84{position:relative;float:left;width:2.9rem;height:auto;border-radius:14px;background:#ffffff;display:flex;align-items:center;justify-content:center;grid-column:span 2 / span 2;grid-row:auto;color:#0a0a0a;border-color:#dccfbe;flex-wrap:wrap;max-width:100%;}
#node-icon_a61287d7{position:relative;display:inline-flex;width:2.4rem;height:1.8rem;align-items:center;justify-content:center;color:#2563eb;justify-self:start;align-self:start;max-width:none;flex-basis:2.4rem;}
#node-text_141cfcbb{position:relative;font-family:Source Sans 3;font-weight:400;color:#374151;text-transform:none;line-height:1.72;letter-spacing:0;font-size:1rem;grid-column:span 9 / span 9;width:auto;max-width:none;min-width:0;justify-self:stretch;}
#node-block_2c8a43cd{position:relative;float:left;width:100%;display:grid;align-items:center;padding-top:0rem;padding-bottom:0rem;padding-left:0.648rem;padding-right:0.648rem;border-radius:16px;background:#ffffff;border:1px solid #dfe7f5;grid-template-columns:repeat(12, minmax(0, 1fr));gap:0.72rem;height:auto;max-width:100%;}
#node-block_8c2fa6a9{position:relative;float:left;width:2.9rem;height:auto;border-radius:14px;background:#ffffff;display:flex;align-items:center;justify-content:center;color:#0a0a0a;border-color:#dccfbe;grid-column:span 2 / span 2;grid-row:auto;flex-wrap:wrap;max-width:100%;}
#node-icon_322442e1{position:relative;display:inline-flex;width:1.8rem;height:1.8rem;align-items:center;justify-content:center;color:#2563eb;justify-self:start;align-self:start;max-width:100%;}
#node-text_aa06dd5f{position:relative;font-family:Source Sans 3;font-weight:400;color:#374151;text-transform:none;line-height:1.72;letter-spacing:0;font-size:1rem;grid-column:span 8 / span 8;grid-row:auto;max-width:100%;}
#node-block_89058840{position:relative;float:left;width:100%;display:grid;align-items:center;padding-top:0rem;padding-bottom:0rem;padding-left:0.648rem;padding-right:0.648rem;border-radius:16px;background:#ffffff;border:1px solid #dfe7f5;grid-template-columns:repeat(12, minmax(0, 1fr));gap:0.72rem;height:auto;max-width:100%;}
#node-block_d1ad819e{position:relative;float:left;width:2.9rem;height:auto;border-radius:14px;background:#ffffff;display:flex;align-items:center;justify-content:center;grid-column:span 2 / span 2;grid-row:auto;color:#0a0a0a;border-color:#dccfbe;flex-wrap:wrap;max-width:100%;}
#node-icon_9a148198{position:relative;display:inline-flex;width:1.8rem;height:1.8rem;align-items:center;justify-content:center;color:#2563eb;justify-self:start;align-self:start;max-width:100%;}
#node-text_2764a1f9{position:relative;font-family:Source Sans 3;font-weight:400;color:#374151;text-transform:none;line-height:1.72;letter-spacing:0;font-size:1rem;grid-column:span 8 / span 8;grid-row:auto;max-width:100%;}
#node-block_44c2ec40{position:relative;float:left;width:100%;display:grid;align-items:center;padding-top:0rem;padding-bottom:0rem;padding-left:0.648rem;padding-right:0.648rem;border-radius:16px;background:#ffffff;border:1px solid #dfe7f5;grid-template-columns:repeat(12, minmax(0, 1fr));gap:0.72rem;height:auto;max-width:100%;}
#node-block_842195e7{position:relative;float:left;width:2.9rem;height:auto;border-radius:14px;background:#ffffff;display:flex;align-items:center;justify-content:center;color:#0a0a0a;border-color:#dccfbe;grid-column:span 2 / span 2;grid-row:auto;flex-wrap:wrap;max-width:100%;}
#node-icon_f3955860{position:relative;display:inline-flex;width:1.8rem;height:1.8rem;align-items:center;justify-content:center;color:#2563eb;justify-self:start;align-self:start;max-width:100%;}
#node-text_3f2f4253{position:relative;font-family:Source Sans 3;font-weight:400;color:#374151;text-transform:none;line-height:1.72;letter-spacing:0;font-size:1rem;grid-column:span 8 / span 8;grid-row:auto;max-width:100%;}
#node-block_a5e98f08{position:relative;float:left;width:100%;min-height:72px;display:grid;gap:1.044rem;padding-left:0.936rem;border-style:none;border:none;border-width:0px;grid-column:span 6 / span 6;grid-row:auto;max-width:100%;}
#node-block_6cd2950e{position:relative;float:left;width:100%;min-height:72px;display:grid;gap:0.504rem;padding-top:0%;margin-top:11%;max-width:100%;}
#node-block_cc7c6c21{position:relative;float:left;width:100%;display:grid;align-items:center;padding-top:0rem;padding-bottom:0rem;padding-left:0.9rem;padding-right:0.9rem;border-radius:16px;background:#000000;border:1px solid #dfe7f5;height:auto;margin-top:0%;flex-direction:row;flex-wrap:wrap;justify-content:flex-start;grid-template-columns:repeat(12, minmax(0, 1fr));gap:16px;color:#ffffff;border-color:#dccfbe;align-content:normal;justify-items:stretch;grid-auto-rows:auto;max-width:100%;}
#node-block_2970b28e{position:relative;float:left;width:2.9rem;height:auto;border-radius:14px;background:transparent;display:flex;align-items:center;justify-content:center;grid-column:span 2 / span 2;grid-row:auto;color:#0a0a0a;flex-wrap:wrap;max-width:100%;}
#node-icon_0ec8ef52{position:relative;display:inline-flex;width:2.4rem;height:1.8rem;align-items:center;justify-content:center;color:#ff3131;justify-self:start;align-self:start;max-width:none;flex-basis:2.4rem;}
#node-text_529ca399{position:relative;font-family:Source Sans 3;font-weight:400;color:#ffffff;text-transform:none;line-height:1.72;letter-spacing:0;font-size:1rem;grid-column:span 9 / span 9;width:auto;max-width:none;min-width:0;justify-self:stretch;}
#node-block_2604707e{position:relative;float:left;width:100%;display:grid;align-items:center;padding-top:0rem;padding-bottom:0rem;padding-left:0.648rem;padding-right:0.648rem;border-radius:16px;background:#ffffff;border:1px solid #dfe7f5;grid-template-columns:repeat(12, minmax(0, 1fr));gap:0.72rem;height:auto;max-width:100%;}
#node-block_7f4e19cc{position:relative;float:left;width:2.9rem;height:auto;border-radius:14px;background:#ffffff;display:flex;align-items:center;justify-content:center;color:#0a0a0a;border-color:#dccfbe;grid-column:span 2 / span 2;grid-row:auto;flex-wrap:wrap;max-width:100%;}
#node-icon_e1bc489d{position:relative;display:inline-flex;width:1.35rem;height:1.8rem;align-items:center;justify-content:center;color:#2563eb;justify-self:start;align-self:start;max-width:100%;}
#node-text_90e7cbca{position:relative;font-family:Source Sans 3;font-weight:400;color:#374151;text-transform:none;line-height:1.72;letter-spacing:0;font-size:1rem;grid-column:span 8 / span 8;grid-row:auto;max-width:100%;}
#node-block_8018f042{position:relative;float:left;width:100%;display:grid;align-items:center;padding-top:0rem;padding-bottom:0rem;padding-left:0.648rem;padding-right:0.648rem;border-radius:16px;background:#ffffff;border:1px solid #dfe7f5;grid-template-columns:repeat(12, minmax(0, 1fr));gap:0.72rem;height:auto;max-width:100%;}
#node-block_f05422ac{position:relative;float:left;width:2.9rem;height:auto;border-radius:14px;background:#ffffff;display:flex;align-items:center;justify-content:center;grid-column:span 2 / span 2;grid-row:auto;color:#0a0a0a;border-color:#dccfbe;flex-wrap:wrap;max-width:100%;}
#node-icon_28a6eca6{position:relative;display:inline-flex;width:1.8rem;height:1.8rem;align-items:center;justify-content:center;color:#2563eb;justify-self:start;align-self:start;max-width:100%;}
#node-text_5d001300{position:relative;font-family:Source Sans 3;font-weight:400;color:#374151;text-transform:none;line-height:1.72;letter-spacing:0;font-size:1rem;grid-column:span 8 / span 8;grid-row:auto;max-width:100%;}
#node-block_318af2ca{position:relative;float:left;width:100%;display:grid;align-items:center;padding-top:0rem;padding-bottom:0rem;padding-left:0.648rem;padding-right:0.648rem;border-radius:16px;background:#ffffff;border:1px solid #dfe7f5;grid-template-columns:repeat(12, minmax(0, 1fr));gap:0.72rem;height:auto;max-width:100%;}
#node-block_71566a39{position:relative;float:left;width:2.9rem;height:auto;border-radius:14px;background:#ffffff;display:flex;align-items:center;justify-content:center;color:#0a0a0a;border-color:#dccfbe;grid-column:span 2 / span 2;grid-row:auto;flex-wrap:wrap;max-width:100%;}
#node-icon_5ccf2f0f{position:relative;display:inline-flex;width:1.8rem;height:1.8rem;align-items:center;justify-content:center;color:#2563eb;justify-self:start;align-self:start;max-width:100%;}
#node-text_813d4655{position:relative;font-family:Source Sans 3;font-weight:400;color:#374151;text-transform:none;line-height:1.72;letter-spacing:0;font-size:1rem;grid-column:span 8 / span 8;grid-row:auto;max-width:100%;}
#node-block_9da079f6{position:relative;float:left;width:100%;min-height:72px;display:grid;padding-left:1.44rem;border-left:1px solid #eceff4;grid-column:span 12 / span 12;grid-row:auto;grid-template-columns:repeat(12, minmax(0, 1fr));gap:0.72rem;max-width:100%;}
#node-text_592f3987{position:relative;font-family:Outfit;font-weight:700;color:#111827;text-transform:none;line-height:1.18;letter-spacing:-0.02em;font-size:1.45rem;margin-bottom:1.08rem;grid-column:span 12 / span 12;width:auto;max-width:none;min-width:0;justify-self:stretch;}
#node-block_9c63bb71{position:relative;float:left;width:100%;min-height:72px;display:grid;gap:0.504rem;padding-top:0%;margin-top:3%;grid-column:span 6 / span 6;grid-row:auto;max-width:100%;}
#node-block_d65627ff{position:relative;float:left;width:100%;display:grid;align-items:center;padding-top:0rem;padding-bottom:0rem;padding-left:0.9rem;padding-right:0.9rem;border-radius:16px;background:#ffffff;border:1px solid #dfe7f5;height:auto;margin-top:0%;flex-direction:row;flex-wrap:wrap;justify-content:flex-start;grid-template-columns:repeat(12, minmax(0, 1fr));gap:16px;align-content:normal;justify-items:stretch;grid-auto-rows:auto;max-width:100%;}
#node-block_4d3b3aaa{position:relative;float:left;width:2.9rem;height:auto;border-radius:14px;background:#ffffff;display:flex;align-items:center;justify-content:center;grid-column:span 2 / span 2;grid-row:auto;color:#0a0a0a;border-color:#dccfbe;flex-wrap:wrap;max-width:100%;}
#node-icon_890853b0{position:relative;display:inline-flex;width:2.4rem;height:1.8rem;align-items:center;justify-content:center;color:#2563eb;justify-self:start;align-self:start;max-width:none;flex-basis:2.4rem;}
#node-text_022d6df2{position:relative;font-family:Outfit;font-weight:600;color:#111827;text-transform:none;line-height:1.26;letter-spacing:-0.01em;font-size:1.08rem;grid-column:span 9 / span 9;width:auto;max-width:none;min-width:0;justify-self:stretch;}
#node-block_2450699f{position:relative;float:left;width:100%;display:grid;align-items:center;padding-top:0rem;padding-bottom:0rem;padding-left:0.648rem;padding-right:0.648rem;border-radius:16px;background:#ffffff;border:1px solid #dfe7f5;grid-template-columns:repeat(12, minmax(0, 1fr));gap:0.72rem;height:auto;max-width:100%;}
#node-block_e80be6dd{position:relative;float:left;width:2.9rem;height:auto;border-radius:14px;background:#ffffff;display:flex;align-items:center;justify-content:center;color:#0a0a0a;border-color:#dccfbe;grid-column:span 2 / span 2;grid-row:auto;flex-wrap:wrap;max-width:100%;}
#node-icon_4ee2d3ff{position:relative;display:inline-flex;width:1.8rem;height:1.8rem;align-items:center;justify-content:center;color:#2563eb;justify-self:start;align-self:start;max-width:100%;}
#node-text_e28ef5e1{position:relative;font-family:Outfit;font-weight:600;color:#111827;text-transform:none;line-height:1.26;letter-spacing:-0.01em;font-size:1.08rem;grid-column:span 8 / span 8;grid-row:auto;max-width:100%;}
#node-block_5c936d70{position:relative;float:left;width:100%;display:grid;align-items:center;padding-top:0rem;padding-bottom:0rem;padding-left:0.648rem;padding-right:0.648rem;border-radius:16px;background:#ffffff;border:1px solid #dfe7f5;grid-template-columns:repeat(12, minmax(0, 1fr));gap:0.72rem;height:auto;max-width:100%;}
#node-block_bde3fc82{position:relative;float:left;width:2.9rem;height:auto;border-radius:14px;background:#ffffff;display:flex;align-items:center;justify-content:center;grid-column:span 2 / span 2;grid-row:auto;color:#0a0a0a;border-color:#dccfbe;flex-wrap:wrap;max-width:100%;}
#node-icon_87d98561{position:relative;display:inline-flex;width:1.8rem;height:1.8rem;align-items:center;justify-content:center;color:#2563eb;justify-self:start;align-self:start;max-width:100%;}
#node-text_b7fb1e2f{position:relative;font-family:Outfit;font-weight:600;color:#111827;text-transform:none;line-height:1.26;letter-spacing:-0.01em;font-size:1.08rem;grid-column:span 8 / span 8;grid-row:auto;max-width:100%;}
#node-block_6a985423{position:relative;float:left;width:100%;display:grid;align-items:center;padding-top:0rem;padding-bottom:0rem;padding-left:0.648rem;padding-right:0.648rem;border-radius:16px;background:#ffffff;border:1px solid #dfe7f5;grid-template-columns:repeat(12, minmax(0, 1fr));gap:0.72rem;height:auto;max-width:100%;}
#node-block_bdbd25cb{position:relative;float:left;width:2.9rem;height:auto;border-radius:14px;background:#ffffff;display:flex;align-items:center;justify-content:center;color:#0a0a0a;border-color:#dccfbe;grid-column:span 2 / span 2;grid-row:auto;flex-wrap:wrap;max-width:100%;}
#node-icon_f9979045{position:relative;display:inline-flex;width:1.8rem;height:1.8rem;align-items:center;justify-content:center;color:#2563eb;justify-self:start;align-self:start;max-width:100%;}
#node-text_a87096dd{position:relative;font-family:Outfit;font-weight:600;color:#111827;text-transform:none;line-height:1.26;letter-spacing:-0.01em;font-size:1.08rem;grid-column:span 8 / span 8;grid-row:auto;max-width:100%;}
#node-block_d2ab20d0{position:relative;float:left;width:auto;min-height:72px;background:transparent;grid-column:span 6 / span 6;max-width:none;min-width:0;justify-self:stretch;color:#0a0a0a;}
#node-section_e8058328{position:relative;width:100%;min-height:180px;padding-top:2.88rem;padding-right:4vw;padding-bottom:2.88rem;padding-left:4vw;background:#ffffff;display:grid;gap:0.9rem;color:#0a0a0a;border-bottom:1px solid #ebe5dc;border-color:#dccfbe;max-width:100%;}
#node-block_9a3c5ce9{position:relative;float:left;width:auto;min-height:72px;display:grid;gap:0.684rem;max-width:none;justify-self:stretch;grid-column:span 12 / span 12;min-width:0;}
#node-text_3f4ec9f6{position:relative;font-family:Source Sans 3;font-weight:700;color:#8c5c45;text-transform:uppercase;line-height:1.78;letter-spacing:0.18em;font-size:0.95rem;margin-bottom:0rem;max-width:100%;}
#node-text_b096d83a{position:relative;font-family:Outfit;font-weight:700;color:#111827;text-transform:none;line-height:1.12;letter-spacing:-0.03em;font-size:2.2rem;max-width:16ch;margin-bottom:0px;margin-top:9.36px;}
#node-text_6a01828a{position:relative;font-family:Outfit;font-weight:700;color:#ff3131;text-transform:none;line-height:1.12;letter-spacing:-0.03em;font-size:2.2rem;max-width:16ch;margin-bottom:0px;margin-top:0px;}
#node-text_7b88ecb3{position:relative;font-family:Source Sans 3;font-weight:400;color:#374151;text-transform:none;line-height:1.78;letter-spacing:0;font-size:0.95rem;max-width:64ch;}
#node-block_1ec8784f{position:relative;float:left;width:auto;min-height:72px;display:grid;grid-template-columns:repeat(3, minmax(0, 1fr));gap:0.936rem;align-items:stretch;grid-column:span 12 / span 12;max-width:none;min-width:0;justify-self:stretch;}
#node-block_a2a9252f{position:relative;float:left;width:auto;min-height:72px;display:block;gap:0.612rem;padding-top:1.45rem;padding-bottom:1.1rem;padding-left:1.2rem;padding-right:1.2rem;background:#ffffff;border:2px solid #eef1f4;border-radius:24px;box-shadow:0 16px 34px rgba(15, 23, 42, 0.08);align-content:start;align-items:stretch;flex-direction:row;flex-wrap:wrap;justify-content:flex-start;grid-column:span 3 / span 3;max-width:none;min-width:0;justify-self:stretch;}
#node-block_f1a643c5{position:relative;float:left;width:100%;min-height:72px;display:grid;grid-template-columns:5.2rem minmax(0, 1fr);gap:0.756rem;align-items:start;max-width:100%;}
#node-block_1eef2fef{position:relative;float:left;width:auto;min-height:72px;display:grid;gap:0.252rem;align-content:start;padding-top:0.108rem;grid-column:span 11 / span 11;max-width:none;min-width:0;justify-self:stretch;}
#node-text_8772fd1f{position:relative;font-family:Outfit;font-weight:700;color:#111827;text-transform:none;line-height:1.18;letter-spacing:-0.02em;font-size:1.45rem;max-width:none;grid-column:span 11 / span 11;width:auto;min-width:0;justify-self:stretch;}
#node-text_89ab4d6d{position:relative;font-family:Outfit;font-weight:300;color:#374151;text-transform:none;line-height:1.1;letter-spacing:0;font-size:1.45rem;max-width:100%;}
#node-block_c7c1ba7b{position:relative;float:left;width:100%;min-height:72px;display:grid;gap:0.396rem;max-width:100%;}
#node-text_3d12af92{position:relative;font-family:Outfit;font-weight:600;color:#111827;text-transform:none;line-height:1.26;letter-spacing:-0.01em;font-size:1.08rem;margin-bottom:0rem;max-width:100%;}
#node-block_fec3cdf1{position:relative;float:left;width:100%;display:flex;gap:0.144rem;align-items:stretch;height:auto;flex-direction:row;flex-wrap:wrap;justify-content:flex-start;align-content:flex-end;row-gap:0.2rem;column-gap:0.2rem;max-width:100%;}
#node-text_1bca8439{position:relative;font-family:Source Sans 3;font-weight:400;color:#374151;text-transform:none;line-height:1.78;letter-spacing:0;font-size:0.95rem;width:299px;max-width:none;flex-basis:299px;margin-bottom:0px;}
#node-text_edf62a5d{position:relative;font-family:Source Sans 3;font-weight:400;color:#374151;text-transform:none;line-height:1.78;letter-spacing:0;font-size:0.95rem;width:312px;max-width:none;flex-basis:312px;margin-top:0px;margin-bottom:0px;}
#node-text_365ecfdf{position:relative;font-family:Source Sans 3;font-weight:400;color:#374151;text-transform:none;line-height:1.78;letter-spacing:0;font-size:0.95rem;width:313px;max-width:none;flex-basis:313px;padding-top:0px;margin-top:0px;margin-bottom:0px;}
#node-block_e4a39730{position:relative;float:left;width:100%;display:grid;grid-template-columns:auto minmax(0, 1fr);gap:0.468rem;align-items:center;height:auto;max-width:100%;}
#node-block_f39c5659{position:relative;float:left;width:100%;display:grid;grid-template-columns:auto minmax(0, 1fr);gap:0.468rem;align-items:center;height:auto;max-width:100%;}
#node-block_476cb7bd{position:relative;float:left;width:100%;height:1px;background:#e5e7eb;max-width:100%;}
#node-block_021c8b80{position:relative;float:left;width:100%;min-height:72px;display:grid;gap:0.396rem;max-width:100%;}
#node-text_0afb68df{position:relative;font-family:Outfit;font-weight:600;color:#111827;text-transform:none;line-height:1.26;letter-spacing:-0.01em;font-size:1.08rem;margin-bottom:0rem;max-width:100%;}
#node-block_c3e58eb7{position:relative;float:left;width:100%;display:flex;gap:0.468rem;align-items:start;flex-direction:row;flex-wrap:wrap;justify-content:flex-start;max-width:100%;}
#node-text_f9699858{position:relative;font-family:Source Sans 3;font-weight:400;color:#374151;text-transform:none;line-height:1.78;letter-spacing:0;font-size:0.95rem;margin-bottom:0rem;max-width:100%;}
#node-text_84855ce5{position:relative;font-family:Source Sans 3;font-weight:400;color:#374151;text-transform:none;line-height:1.78;letter-spacing:0;font-size:0.95rem;margin-top:0rem;margin-bottom:0rem;max-width:100%;}
#node-text_06b56450{position:relative;font-family:Source Sans 3;font-weight:400;color:#374151;text-transform:none;line-height:1.78;letter-spacing:0;font-size:0.95rem;margin-top:0rem;margin-bottom:0rem;max-width:100%;}
#node-text_b1be71fd{position:relative;font-family:Source Sans 3;font-weight:400;color:#374151;text-transform:none;line-height:1.78;letter-spacing:0;font-size:0.95rem;margin-top:0rem;max-width:100%;}
#node-block_cedc3d55{position:relative;float:left;width:100%;min-height:72px;display:grid;grid-template-columns:4.2rem minmax(0, 1fr);gap:0.612rem;align-items:center;padding-top:0.684rem;padding-bottom:0.684rem;padding-left:0.684rem;padding-right:0.684rem;border-radius:14px;background:#ff3131;color:#0a0a0a;border-color:#dccfbe;max-width:100%;}
#node-text_9eb8b256{position:relative;font-family:Source Sans 3;font-weight:400;color:#ffffff;text-transform:none;line-height:1.78;letter-spacing:0;font-size:0.95rem;grid-column:span 9 / span 9;width:auto;max-width:none;min-width:0;justify-self:stretch;}
#node-block_573dd89d{position:relative;float:left;width:auto;min-height:72px;display:flex;gap:0.85rem;padding-top:1.45rem;padding-bottom:1.1rem;padding-left:1.2rem;padding-right:1.2rem;background:#ffffff;border:3px solid #ff4929;border-radius:24px;box-shadow:0 16px 34px rgba(15, 23, 42, 0.08);align-content:start;flex-direction:row;flex-wrap:wrap;align-items:stretch;justify-content:flex-start;border-width:3px;border-style:solid;border-color:#ff4929;grid-column:span 3 / span 3;max-width:none;min-width:0;justify-self:stretch;}
#node-block_df550baf{position:absolute;float:left;width:48%;top:-0.95rem;left:50%;transform:translateX(-50%);display:grid;grid-template-columns:auto minmax(0, 1fr);gap:0.252rem;align-items:center;padding-top:0rem;padding-bottom:0rem;padding-left:0.576rem;padding-right:0.576rem;border-radius:999px;background:#ff1f14;max-width:none;flex-basis:48%;height:auto;}
#node-text_a9c98d7a{position:relative;font-family:Source Sans 3;font-weight:700;color:#ffffff;text-transform:none;line-height:1.78;letter-spacing:0;font-size:0.95rem;grid-column:span 12 / span 12;grid-row:auto;text-align:center;max-width:100%;}
#node-block_b6531f53{position:relative;float:left;width:100%;min-height:72px;display:grid;grid-template-columns:5.2rem minmax(0, 1fr);gap:0.756rem;align-items:start;max-width:100%;}
#node-block_6515ffb8{position:relative;float:left;width:auto;min-height:72px;display:grid;gap:0.252rem;align-content:start;padding-top:0.108rem;grid-column:span 12 / span 12;max-width:none;min-width:0;justify-self:stretch;}
#node-text_6aa5a408{position:relative;font-family:Outfit;font-weight:700;color:#111827;text-transform:none;line-height:1.18;letter-spacing:-0.02em;font-size:1.45rem;max-width:9ch;}
#node-text_c6979282{position:relative;font-family:Outfit;font-weight:300;color:#374151;text-transform:none;line-height:1.1;letter-spacing:0;font-size:1.45rem;max-width:100%;}
#node-block_9865e8dc{position:relative;float:left;width:100%;min-height:72px;display:grid;gap:0.396rem;max-width:100%;}
#node-text_567d3f7f{position:relative;font-family:Outfit;font-weight:600;color:#111827;text-transform:none;line-height:1.26;letter-spacing:-0.01em;font-size:1.08rem;margin-bottom:0rem;max-width:100%;}
#node-block_8b84d45e{position:relative;float:left;width:100%;display:flex;gap:0.144rem;align-items:stretch;height:auto;flex-direction:row;flex-wrap:wrap;justify-content:flex-start;align-content:flex-end;row-gap:0.2rem;column-gap:0.2rem;max-width:100%;}
#node-text_510e460e{position:relative;font-family:Source Sans 3;font-weight:400;color:#374151;text-transform:none;line-height:1.78;letter-spacing:0;font-size:0.95rem;width:299px;max-width:none;flex-basis:299px;margin-bottom:0px;}
#node-text_90afb988{position:relative;font-family:Source Sans 3;font-weight:400;color:#374151;text-transform:none;line-height:1.78;letter-spacing:0;font-size:0.95rem;width:312px;max-width:none;flex-basis:312px;margin-top:0px;margin-bottom:0px;}
#node-text_f8ed41d6{position:relative;font-family:Source Sans 3;font-weight:400;color:#374151;text-transform:none;line-height:1.78;letter-spacing:0;font-size:0.95rem;width:313px;max-width:none;flex-basis:313px;padding-top:0px;margin-top:0px;margin-bottom:0px;}
#node-block_7c60c37d{position:relative;float:left;width:100%;display:grid;grid-template-columns:auto minmax(0, 1fr);gap:0.468rem;align-items:center;height:auto;max-width:100%;}
#node-block_61cacddd{position:relative;float:left;width:100%;display:grid;grid-template-columns:auto minmax(0, 1fr);gap:0.468rem;align-items:center;height:auto;max-width:100%;}
#node-block_6f1fcb07{position:relative;float:left;width:100%;height:1px;background:#e5e7eb;max-width:100%;}
#node-block_5368f06b{position:relative;float:left;width:100%;min-height:72px;display:grid;gap:0.396rem;max-width:100%;}
#node-text_267e24c4{position:relative;font-family:Outfit;font-weight:600;color:#111827;text-transform:none;line-height:1.26;letter-spacing:-0.01em;font-size:1.08rem;margin-bottom:0rem;max-width:100%;}
#node-block_6f33d9fe{position:relative;float:left;width:100%;display:flex;gap:0.468rem;align-items:start;flex-direction:row;flex-wrap:wrap;justify-content:flex-start;max-width:100%;}
#node-text_fe0c5fe7{position:relative;font-family:Source Sans 3;font-weight:400;color:#374151;text-transform:none;line-height:1.78;letter-spacing:0;font-size:0.95rem;margin-bottom:0rem;max-width:100%;}
#node-text_8a18fc22{position:relative;font-family:Source Sans 3;font-weight:400;color:#374151;text-transform:none;line-height:1.78;letter-spacing:0;font-size:0.95rem;margin-top:0rem;margin-bottom:0rem;max-width:100%;}
#node-text_9b80081d{position:relative;font-family:Source Sans 3;font-weight:400;color:#374151;text-transform:none;line-height:1.78;letter-spacing:0;font-size:0.95rem;margin-top:0rem;margin-bottom:0rem;max-width:100%;}
#node-text_71779986{position:relative;font-family:Source Sans 3;font-weight:400;color:#374151;text-transform:none;line-height:1.78;letter-spacing:0;font-size:0.95rem;margin-top:0rem;max-width:100%;}
#node-block_9e37290c{position:relative;float:left;width:100%;min-height:72px;display:grid;grid-template-columns:4.2rem minmax(0, 1fr);gap:0.612rem;align-items:center;padding-top:0.684rem;padding-bottom:0.684rem;padding-left:0.684rem;padding-right:0.684rem;border-radius:14px;background:#ff3131;color:#0a0a0a;border-color:#dccfbe;max-width:100%;}
#node-text_39c2d7f0{position:relative;font-family:Source Sans 3;font-weight:400;color:#ffffff;text-transform:none;line-height:1.78;letter-spacing:0;font-size:0.95rem;grid-column:span 12 / span 12;width:auto;max-width:none;min-width:0;justify-self:stretch;}
#node-block_81a9d51d{position:relative;float:left;width:auto;min-height:72px;display:flex;gap:0.85rem;padding-top:1.45rem;padding-bottom:1.1rem;padding-left:1.2rem;padding-right:1.2rem;background:#ffffff;border:2px solid #eef1f4;border-radius:24px;box-shadow:0 16px 34px rgba(15, 23, 42, 0.08);align-content:start;flex-direction:row;flex-wrap:wrap;align-items:stretch;justify-content:flex-start;grid-column:span 3 / span 3;max-width:none;min-width:0;justify-self:stretch;}
#node-block_419241f1{position:relative;float:left;width:100%;min-height:72px;display:grid;grid-template-columns:5.2rem minmax(0, 1fr);gap:0.756rem;align-items:start;max-width:100%;}
#node-block_7bc3e62d{position:relative;float:left;width:auto;min-height:72px;display:grid;gap:0.252rem;align-content:start;padding-top:0.108rem;grid-column:span 12 / span 12;max-width:none;min-width:0;justify-self:stretch;}
#node-text_352f4017{position:relative;font-family:Outfit;font-weight:700;color:#111827;text-transform:none;line-height:1.18;letter-spacing:-0.02em;font-size:1.45rem;max-width:9ch;}
#node-text_bda6fc1f{position:relative;font-family:Outfit;font-weight:300;color:#374151;text-transform:none;line-height:1.1;letter-spacing:0;font-size:1.45rem;max-width:100%;}
#node-block_05d49aea{position:relative;float:left;width:100%;min-height:72px;display:grid;gap:0.396rem;max-width:100%;}
#node-text_3c7c8625{position:relative;font-family:Outfit;font-weight:600;color:#111827;text-transform:none;line-height:1.26;letter-spacing:-0.01em;font-size:1.08rem;margin-bottom:0rem;max-width:100%;}
#node-block_09d64b34{position:relative;float:left;width:100%;display:flex;gap:0.144rem;align-items:stretch;height:auto;flex-direction:row;flex-wrap:wrap;justify-content:flex-start;align-content:flex-end;row-gap:0.2rem;column-gap:0.2rem;max-width:100%;}
#node-text_3554a91c{position:relative;font-family:Source Sans 3;font-weight:400;color:#374151;text-transform:none;line-height:1.78;letter-spacing:0;font-size:0.95rem;width:299px;max-width:none;flex-basis:299px;margin-bottom:0px;}
#node-text_083789b5{position:relative;font-family:Source Sans 3;font-weight:400;color:#374151;text-transform:none;line-height:1.78;letter-spacing:0;font-size:0.95rem;width:312px;max-width:none;flex-basis:312px;margin-top:0px;margin-bottom:0px;}
#node-text_45e754b6{position:relative;font-family:Source Sans 3;font-weight:400;color:#374151;text-transform:none;line-height:1.78;letter-spacing:0;font-size:0.95rem;width:313px;max-width:none;flex-basis:313px;padding-top:0px;margin-top:0px;margin-bottom:0px;}
#node-block_6fd88f2a{position:relative;float:left;width:100%;display:grid;grid-template-columns:auto minmax(0, 1fr);gap:0.468rem;align-items:center;height:auto;max-width:100%;}
#node-block_4a1654bc{position:relative;float:left;width:100%;display:grid;grid-template-columns:auto minmax(0, 1fr);gap:0.468rem;align-items:center;height:auto;max-width:100%;}
#node-block_5c23248e{position:relative;float:left;width:100%;height:1px;background:#e5e7eb;max-width:100%;}
#node-block_d96098c0{position:relative;float:left;width:100%;min-height:72px;display:grid;gap:0.396rem;max-width:100%;}
#node-text_d85739e6{position:relative;font-family:Outfit;font-weight:600;color:#111827;text-transform:none;line-height:1.26;letter-spacing:-0.01em;font-size:1.08rem;margin-bottom:0rem;max-width:100%;}
#node-block_a97ca91d{position:relative;float:left;width:100%;display:flex;gap:0.468rem;align-items:start;flex-direction:row;flex-wrap:wrap;justify-content:flex-start;max-width:100%;}
#node-text_7aa22269{position:relative;font-family:Source Sans 3;font-weight:400;color:#374151;text-transform:none;line-height:1.78;letter-spacing:0;font-size:0.95rem;margin-bottom:0rem;max-width:100%;}
#node-text_0f4337cb{position:relative;font-family:Source Sans 3;font-weight:400;color:#374151;text-transform:none;line-height:1.78;letter-spacing:0;font-size:0.95rem;margin-top:0rem;margin-bottom:0rem;max-width:100%;}
#node-text_6d12e4f2{position:relative;font-family:Source Sans 3;font-weight:400;color:#374151;text-transform:none;line-height:1.78;letter-spacing:0;font-size:0.95rem;margin-top:0rem;margin-bottom:0rem;max-width:100%;}
#node-text_861c8596{position:relative;font-family:Source Sans 3;font-weight:400;color:#374151;text-transform:none;line-height:1.78;letter-spacing:0;font-size:0.95rem;margin-top:0rem;max-width:100%;}
#node-block_26260e65{position:relative;float:left;width:100%;min-height:72px;display:grid;grid-template-columns:4.2rem minmax(0, 1fr);gap:0.612rem;align-items:center;padding-top:0.684rem;padding-bottom:0.684rem;padding-left:0.684rem;padding-right:0.684rem;border-radius:14px;background:#ff3131;color:#0a0a0a;border-color:#dccfbe;max-width:100%;}
#node-text_3c7b300f{position:relative;font-family:Source Sans 3;font-weight:400;color:#ffffff;text-transform:none;line-height:1.78;letter-spacing:0;font-size:0.95rem;grid-column:span 12 / span 12;width:auto;max-width:none;min-width:0;justify-self:stretch;}
#node-block_9db0606a{width:auto;padding-top:24px;padding-right:24px;padding-bottom:24px;padding-left:24px;background:transparent;position:relative;float:left;grid-column:span 12 / span 12;max-width:none;min-width:0;justify-self:stretch;grid-row:auto;display:flex;gap:16px;flex-direction:row;flex-wrap:wrap;align-items:stretch;justify-content:center;border-radius:4px;color:#0a0a0a;}
#node-button_4c08bb32{display:inline;padding-top:14.4px;padding-right:25.2px;padding-bottom:14.4px;padding-left:25.2px;background:#000000;color:#ffffff;width:100%;float:left;margin-top:11.52px;font-size:0.95rem;align-self:stretch;text-align:center;border-radius:100px;font-family:Source Sans 3;font-weight:700;text-transform:none;line-height:1.78;letter-spacing:0;border-width:0px;border:none;border-style:none;transition:background-color 180ms ease, color 180ms ease, border-color 180ms ease, transform 180ms ease, box-shadow 180ms ease;max-width:100%;}
#node-section_ffb25794{position:relative;width:100%;min-height:180px;padding-top:2.6rem;padding-right:1.2rem;padding-bottom:2.6rem;padding-left:1.2rem;background:#000000;display:grid;color:#ffffff;border-bottom:1px solid #ebe5dc;border-radius:34px;box-shadow:0 28px 60px rgba(0, 0, 0, 0.32);grid-template-columns:repeat(12, minmax(0, 1fr));gap:1.25rem;border-color:#dccfbe;max-width:100%;}
#node-block_5abaf88d{position:relative;float:left;width:100%;min-height:72px;display:grid;grid-template-columns:minmax(0, 0.92fr) minmax(0, 1.08fr);gap:1.44rem;align-items:center;grid-column:span 12 / span 12;grid-row:auto;max-width:100%;}
#node-block_749cf58d{position:relative;float:left;width:auto;min-height:72px;display:grid;grid-column:span 12 / span 12;max-width:none;min-width:0;justify-self:stretch;grid-template-columns:repeat(12, minmax(0, 1fr));gap:0.288rem;row-gap:0.4rem;column-gap:0.4rem;}
#node-text_359cb30e{position:relative;font-family:Outfit;font-weight:700;color:#ffffff;text-transform:none;line-height:1.12;letter-spacing:-0.03em;font-size:2.2rem;max-width:none;margin-bottom:0rem;grid-column:span 10 / span 10;width:51.05rem;min-width:0;justify-self:stretch;}
#node-block_ecda5942{position:relative;float:left;width:auto;display:block;align-items:center;margin-top:0.432rem;padding-top:0rem;padding-bottom:0.828rem;padding-left:0.828rem;padding-right:0.828rem;border-radius:0px;border:none;background:transparent;grid-column:span 12 / span 12;max-width:none;min-width:0;justify-self:stretch;border-width:0px;border-style:none;color:#0a0a0a;height:auto;}
#node-text_41222a05{position:relative;font-family:Outfit;font-weight:700;color:#ff3131;text-transform:none;line-height:1.18;letter-spacing:-0.02em;font-size:1.45rem;max-width:none;grid-column:span 10 / span 10;width:33.8rem;min-width:0;justify-self:stretch;margin-top:0rem;margin-bottom:0rem;}
#node-block_667a0455{position:relative;float:left;width:auto;min-height:72px;display:grid;grid-column:span 12 / span 12;grid-row:auto;grid-template-columns:repeat(12, minmax(0, 1fr));gap:0.72rem;padding-top:2.5%;max-width:none;min-width:0;justify-self:stretch;}
#node-block_8a32720c{position:relative;float:left;width:auto;min-height:72px;display:grid;grid-template-columns:4.3rem auto minmax(0, 1fr);gap:0.684rem;align-items:start;padding-top:0.324rem;padding-bottom:0.324rem;grid-column:span 12 / span 12;max-width:none;min-width:0;justify-self:stretch;grid-row:auto;}
#node-block_07cd5fd8{position:relative;float:left;width:100%;min-height:72px;display:grid;justify-items:center;gap:0.288rem;padding-top:0.108rem;max-width:100%;}
#node-block_ab2947c9{position:relative;float:left;width:auto;min-height:72px;display:grid;gap:0.252rem;padding-top:0.072rem;grid-column:span 12 / span 12;max-width:none;min-width:0;justify-self:stretch;}
#node-text_0903ea35{position:relative;font-family:Outfit;font-weight:700;color:#ff3131;text-transform:none;line-height:1.12;letter-spacing:-0.03em;font-size:2.2rem;margin-top:0rem;text-align:right;padding-bottom:0rem;margin-bottom:0rem;max-width:100%;}
#node-text_97324a6d{position:relative;font-family:Outfit;font-weight:700;color:#ffffff;text-transform:none;line-height:1.12;letter-spacing:-0.03em;font-size:2.2rem;margin-top:0rem;text-align:right;padding-bottom:0rem;margin-bottom:0rem;max-width:100%;}
#node-text_ec02166e{position:relative;font-family:Outfit;font-weight:700;color:#ffffff;text-transform:none;line-height:1.12;letter-spacing:-0.03em;font-size:2.2rem;margin-top:0rem;text-align:right;padding-bottom:0rem;margin-bottom:0rem;max-width:100%;}
#node-text_e1eeb6fa{position:relative;font-family:Outfit;font-weight:700;color:#ff3131;text-transform:none;line-height:1.12;letter-spacing:-0.03em;font-size:2.2rem;margin-top:0rem;text-align:right;padding-bottom:0rem;margin-bottom:0rem;max-width:100%;}
#node-section_b6c2302a{width:100%;min-height:220px;padding-top:4rem;padding-right:4vw;padding-bottom:4rem;padding-left:4vw;background:#f4dfd6;display:grid;gap:1.25rem;color:#1f1812;border-bottom:1px solid #ebe5dc;border-color:#dccfbe;max-width:100%;}
#node-block_20a71e83{width:auto;min-height:140px;padding-top:17.28px;padding-right:17.28px;padding-bottom:17.28px;padding-left:17.28px;display:grid;gap:0rem;max-width:none;justify-self:stretch;grid-column:span 12 / span 12;min-width:0;row-gap:0rem;column-gap:0rem;background:transparent;color:#0a0a0a;}
#node-text_f35ec5b5{font-family:Outfit;font-size:2.2rem;line-height:1.12;color:#ff3131;max-width:16ch;font-weight:700;margin-bottom:0rem;text-transform:none;letter-spacing:-0.03em;grid-column:span 12 / span 12;grid-row:auto;}
#node-text_2697a46d{font-family:Outfit;font-size:2.2rem;line-height:1.12;color:#0a0a0a;max-width:16ch;font-weight:700;margin-top:0rem;margin-bottom:0rem;text-transform:none;letter-spacing:-0.03em;grid-column:span 12 / span 12;grid-row:auto;}
#node-text_143e8a53{font-family:Source Sans 3;font-size:0.95rem;line-height:1.78;color:#0a0a0a;max-width:64ch;margin-top:0rem;padding-top:0.648rem;grid-column:span 12 / span 12;grid-row:auto;font-weight:400;text-transform:none;letter-spacing:0;}
#node-block_c426046b{width:auto;padding-top:24px;padding-right:24px;padding-bottom:24px;padding-left:24px;background:transparent;position:relative;float:left;grid-column:span 12 / span 12;max-width:none;min-width:0;justify-self:stretch;grid-row:auto;display:flex;gap:16px;flex-direction:row;flex-wrap:wrap;align-items:stretch;justify-content:center;border-radius:4px;color:#0a0a0a;}
#node-button_cb6a053d{display:inline;padding-top:14.4px;padding-right:25.2px;padding-bottom:14.4px;padding-left:25.2px;background:#ffffff;color:#000000;width:100%;float:left;margin-top:11.52px;font-size:0.95rem;align-self:stretch;text-align:center;border-radius:100px;font-family:Source Sans 3;font-weight:700;text-transform:none;line-height:1.78;letter-spacing:0;border-width:0px;border:none;border-style:none;transition:background-color 180ms ease, color 180ms ease, border-color 180ms ease, transform 180ms ease, box-shadow 180ms ease;max-width:100%;}
#node-section_53845cbd{position:relative;width:100%;min-height:180px;padding-top:0rem;padding-right:0rem;padding-bottom:0rem;padding-left:0rem;background:#f7f7f7;max-width:100%;}
#node-section_afd94fa7{width:100%;padding-top:4rem;padding-right:4vw;padding-bottom:4rem;padding-left:4vw;display:grid;gap:1.25rem;color:#0a0a0a;border-bottom:1px solid #ebe5dc;justify-items:center;text-align:center;height:auto;min-height:220px;grid-column:span 12 / span 12;grid-row:auto;background:#ffffff;border-color:#dccfbe;max-width:100%;}
#node-block_9c7b1d05{width:100%;padding-top:24px;padding-right:24px;padding-bottom:24px;padding-left:24px;background:transparent;position:relative;float:left;display:grid;grid-template-columns:repeat(12, minmax(0, 1fr));gap:1rem;color:#0a0a0a;max-width:100%;}
#node-text_3a45e538{font-family:Outfit;font-size:2.2rem;line-height:1.12;color:#111827;max-width:none;width:auto;float:left;font-weight:700;letter-spacing:-0.03em;text-transform:none;position:relative;grid-column:span 12 / span 12;grid-row:auto;min-width:0;justify-self:stretch;padding-bottom:0rem;margin-bottom:0rem;}
#node-block_0088263e{width:auto;padding-top:24px;padding-right:24px;padding-bottom:24px;padding-left:24px;background:#ffffff;position:relative;float:left;display:flex;min-width:0;max-width:none;border-radius:4px;gap:16px;flex-direction:row;flex-wrap:wrap;justify-content:center;align-items:stretch;grid-column:span 12 / span 12;grid-row:auto;justify-self:stretch;color:#0a0a0a;border-color:#dccfbe;}
#node-button_41c4f1a5{display:inline;padding-top:18px;padding-right:28.8px;padding-bottom:18px;padding-left:28.8px;background:#000000;color:#ffffff;font-family:Source Sans 3;font-size:0.95rem;font-weight:700;line-height:1.78;letter-spacing:0;text-transform:none;position:relative;text-align:center;float:left;width:100%;margin-top:11.52px;border-radius:100px;border-width:0px;border-style:none;border:none;align-self:stretch;transition:background-color 180ms ease, color 180ms ease, border-color 180ms ease, transform 180ms ease, box-shadow 180ms ease;max-width:100%;}
#node-section_1aa5cb82{position:relative;width:100%;min-height:180px;padding-top:0rem;padding-right:0rem;padding-bottom:0rem;padding-left:0rem;background:#f7f7f7;display:block;max-width:100%;}
#node-section_a9d8025d{width:100%;padding-top:48px;padding-right:48px;padding-bottom:48px;padding-left:48px;background:#000000;position:relative;height:100%;display:grid;grid-template-columns:repeat(12, minmax(0, 1fr));gap:1rem;color:#ffffff;border-color:#dccfbe;max-width:100%;}
#node-block_5fc70aa6{width:auto;padding-top:5px;padding-right:5px;padding-bottom:5px;padding-left:5px;background:transparent;position:relative;float:left;grid-column:span 12 / span 12;max-width:none;min-width:0;justify-self:stretch;height:auto;display:grid;grid-template-columns:repeat(12, minmax(0, 1fr));gap:1rem;color:#0a0a0a;}
#node-block_eb15feae{width:auto;padding-top:2px;padding-right:2px;padding-bottom:2px;padding-left:2px;background:transparent;position:relative;float:left;max-width:none;height:auto;grid-column:span 7 / span 7;grid-row:auto;min-width:0;justify-self:stretch;color:#0a0a0a;}
#node-image_fbb5aa15{width:100%;object-fit:contain;position:relative;float:left;height:auto;}
#node-block_e2f287a5{width:auto;padding-top:0px;padding-right:1.44px;padding-bottom:0px;padding-left:1.44px;background:transparent;position:relative;float:left;grid-column:span 10 / span 10;grid-row:auto;max-width:none;min-width:0;justify-self:stretch;height:auto;opacity:1;display:grid;grid-template-columns:repeat(12, minmax(0, 1fr));gap:0.72rem;color:#0a0a0a;}
#node-text_c7a7eeef{font-family:Outfit;font-size:1.08rem;line-height:1.26;color:#ffffff;max-width:none;position:relative;font-weight:600;text-transform:none;letter-spacing:-0.01em;width:auto;float:left;grid-column:span 12 / span 12;min-width:0;justify-self:stretch;text-align:right;grid-row:auto;margin-top:0.864rem;}
#node-button_fa35ef33:hover{background:#ffffff !important;color:#ff2424 !important;}
#node-button_3d258cb7:hover{background:#ff2424 !important;color:#ffffff !important;}
#node-button_4c08bb32:hover{background:#ffffff !important;color:#ff2424 !important;}
#node-button_cb6a053d:hover{background:#ff2424 !important;color:#ffffff !important;}
}