: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_d3086f8c{width:100%;min-height:100%;padding-top:3.5rem;padding-right:4vw;padding-bottom:4rem;padding-left:4vw;display:grid;gap:1.25rem;color:#0a0a0a;border-bottom:1px solid #ebe5dc;grid-template-columns:1.05fr 0.95fr;align-items:center;height:100vh;align-content:flex-start;max-width:100%;border-color:#dccfbe;}
#node-block_c00d8ea3{width:auto;padding-top:5px;padding-right:5px;padding-bottom:5px;padding-left:5px;background:rgba(255, 255, 255, 0);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;z-index:3;}
#node-block_5ca17c20{width:auto;padding-top:2px;padding-right:2px;padding-bottom:2px;padding-left:2px;background:rgba(214, 214, 214, 0);position:relative;float:left;max-width:none;height:auto;grid-column:span 2 / span 2;grid-row:auto;min-width:0;justify-self:stretch;}
#node-image_95f7f30c{width:100%;object-fit:contain;position:relative;float:left;height:auto;}
#node-block_1e592fa7{width:auto;padding-top:2px;padding-right:2px;padding-bottom:2px;padding-left:2px;background:rgba(255, 255, 255, 0);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;}
#node-block_b2c87409{width:auto;min-height:140px;padding-top:24px;padding-right:24px;padding-bottom:24px;padding-left:24px;display:block;gap:0.5rem;max-width:none;justify-self:stretch;grid-column:span 9 / span 9;grid-row:auto;row-gap:0.5rem;column-gap:0.5rem;min-width:0;margin-top:2px;}
#node-text_89d00ab9{font-family:Outfit;font-size:6rem;line-height:0.92;color:#ff3131;max-width:none;letter-spacing:-0.04em;text-transform:none;font-weight:700;grid-column:span 9 / span 9;grid-row:auto;width:33.55rem;min-width:0;justify-self:stretch;height:auto;margin-bottom:0rem;padding-bottom:0rem;}
#node-text_282ff261{font-family:Outfit;font-size:6rem;line-height:0.92;color:#ffffff;max-width:none;font-weight:700;grid-column:span 12 / span 12;min-width:0;justify-self:stretch;margin-bottom:0px;margin-top:0px;text-transform:none;letter-spacing:-0.03em;display:block;height:auto;width:664px;padding-right:0px;}
#node-text_ca58eb4c{font-family:Source Sans 3;font-size:1rem;line-height:1.7;color:#ffffff;max-width:none;grid-column:span 10 / span 10;grid-row:auto;width:30.1rem;min-width:0;justify-self:stretch;padding-bottom:0rem;padding-right:0rem;font-weight:400;letter-spacing:0;text-transform:none;}
#node-block_4a7b34d6{width:auto;padding-top:35px;padding-right:24px;padding-bottom:24px;padding-left:0px;background:rgba(255, 255, 255, 0);display:flex;flex-wrap:wrap;gap:0.8rem;align-items:center;grid-column:span 11 / span 11;grid-row:auto;min-width:0;justify-self:stretch;height:auto;}
#node-button_23a38e34{display:inline-flex;padding-top:0.95rem;padding-right:1.45rem;padding-bottom:1rem;padding-left:1.45rem;background:#000000;color:#ffffff;border:1px solid #a1442a;border-radius:999px;transition:background-color 180ms ease, color 180ms ease, border-color 180ms ease, transform 180ms ease, box-shadow 180ms ease;max-width:100%;font-family:Source Sans 3;font-weight:600;text-transform:none;line-height:1.1;letter-spacing:0;font-size:0.96rem;}
#node-button_e1898f72{display:inline-flex;padding-top:0.78rem;padding-right:1.3rem;padding-bottom:0.78rem;padding-left:1.3rem;background:#ffffff;color:#000000;border:3px solid #fe1616;border-radius:999px;border-width:3px;border-style:solid;border-color:#fe1616;transition:background-color 180ms ease, color 180ms ease, border-color 180ms ease, transform 180ms ease, box-shadow 180ms ease;max-width:100%;font-family:Source Sans 3;font-weight:600;text-transform:none;line-height:1.1;letter-spacing:0;font-size:0.96rem;}
#node-section_0ad9704b{width:100%;min-height:220px;padding-top:0rem;padding-right:4vw;padding-bottom:0rem;padding-left:4vw;background:#ff3131;display:block;color:#0a0a0a;border-bottom:1px solid #ebe5dc;text-align:center;border-color:#dccfbe;max-width:100%;}
#node-block_a4f05fcb{width:auto;min-height:140px;padding-top:24px;padding-right:27px;padding-bottom:24px;padding-left:24px;background:transparent;display:grid;gap:0.95rem;max-width:none;justify-self:stretch;grid-column:span 10 / span 10;min-width:0;color:#0a0a0a;}
#node-text_f4fe92c8{font-family:Outfit;font-size:6rem;line-height:0.92;color:#ffffff;max-width:none;font-weight:700;grid-column:span 12 / span 12;width:auto;min-width:0;justify-self:stretch;text-transform:none;letter-spacing:-0.03em;}
#node-section_63ec612b{width:100%;min-height:220px;padding-top:9.9rem;padding-right:4vw;padding-bottom:0rem;padding-left:4vw;display:grid;color:#0a0a0a;border-bottom:1px solid #ebe5dc;grid-template-columns:repeat(12, minmax(0, 1fr));gap:1rem;background:#ffffff;border-color:#dccfbe;grid-column:5 / span 8;grid-row:auto;max-width:100%;}
#node-block_3fead6d8{width:auto;min-height:140px;padding-top:0px;padding-right:24px;padding-bottom:24px;padding-left:24px;background:#ffffff;display:grid;max-width:none;justify-self:stretch;grid-column:span 12 / span 12;min-width:0;grid-template-columns:repeat(12, minmax(0, 1fr));gap:1rem;color:#0a0a0a;border-color:#dccfbe;}
#node-text_16dd7857{font-family:Outfit;font-size:6rem;line-height:0.92;color:#0a0a0a;max-width:none;font-weight:700;margin-bottom:0px;text-transform:none;letter-spacing:-0.03em;padding-top:0px;margin-top:0px;grid-column:2 / span 11;width:auto;min-width:0;justify-self:stretch;grid-row:auto;text-align:right;}
#node-text_26b6cf2b{font-family:Source Sans 3;font-size:1rem;line-height:1.7;color:#0a0a0a;max-width:none;font-weight:400;text-transform:none;letter-spacing:0;grid-column:6 / span 7;width:auto;min-width:0;justify-self:stretch;grid-row:auto;text-align:right;}
#node-section_fe72d6b3{width:100%;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_f28dcbc7{width:100%;padding-top:24px;padding-right:24px;padding-bottom:24px;padding-left:24px;background:#ff3131;display:grid;grid-template-columns:repeat(2, minmax(0, 1fr));border:1px solid #dccfbe;border-radius:18px;overflow:hidden;gap:0;color:#0a0a0a;border-color:#dccfbe;border-width:1px;border-style:solid;grid-column:2 / span 10;grid-row:auto;max-width:100%;}
#node-block_772dbb73{width:100%;padding-top:24px;padding-right:24px;padding-bottom:24px;padding-left:24px;background:#ffffff;display:grid;grid-template-rows:auto 1fr auto;min-height:100%;border-left:0;max-width:100%;}
#node-block_344a303b{width:100%;padding-top:1.15rem;padding-right:1.3rem;padding-bottom:1.15rem;padding-left:1.3rem;background:#ffffff;display:flex;align-items:center;gap:0.7rem;border-bottom:1px solid #eadfd3;color:#0a0a0a;border-color:#dccfbe;max-width:100%;}
#node-text_8ac4aa0f{font-family:Inter;font-size:1rem;line-height:1.1;color:#ffffff;max-width:16ch;width:2rem;height:2rem;border-radius:999px;display:inline-flex;align-items:center;justify-content:center;background:#f26b67;font-weight:800;}
#node-text_6c2ee7a8{font-family:Outfit;font-size:3rem;line-height:1.08;color:#111827;max-width:16ch;font-weight:700;text-transform:none;letter-spacing:-0.02em;}
#node-block_60604202{width:100%;padding-top:1.45rem;padding-right:1.3rem;padding-bottom:1.45rem;padding-left:1.3rem;background:#ffffff;display:grid;gap:1.4rem;color:#0a0a0a;border-color:#dccfbe;max-width:100%;}
#node-block_fb74740f{width:100%;padding-top:24px;padding-right:24px;padding-bottom:24px;padding-left:24px;background:#ffffff;display:grid;grid-template-columns:auto minmax(0, 1fr);gap:0.95rem;align-items:start;height:auto;color:#0a0a0a;border-color:#dccfbe;max-width:100%;}
#node-icon_332854fd{width:2.3rem;height:2.3rem;color:#f26b67;justify-self:start;align-self:start;max-width:100%;}
#node-block_25277709{width:100%;padding-top:0px;padding-right:24px;padding-bottom:0px;padding-left:24px;background:#ffffff;display:block;gap:0.35rem;color:#0a0a0a;border-color:#dccfbe;max-width:100%;}
#node-text_aa3f452f{font-family:Outfit;font-size:1.35rem;line-height:1.16;color:#111827;max-width:none;font-weight:600;margin-top:0rem;margin-bottom:0rem;width:276px;padding-bottom:0px;text-transform:none;letter-spacing:-0.01em;}
#node-text_937c32cd{font-family:Source Sans 3;font-size:1rem;line-height:1.7;color:#374151;max-width:26ch;margin-top:0rem;font-weight:400;text-transform:none;letter-spacing:0;}
#node-block_2b1d8c50{width:100%;padding-top:24px;padding-right:24px;padding-bottom:24px;padding-left:24px;background:transparent;display:grid;grid-template-columns:auto minmax(0, 1fr);gap:0.95rem;align-items:start;height:auto;color:#0a0a0a;max-width:100%;}
#node-icon_da619f0a{width:2.3rem;height:2.3rem;color:#f26b67;justify-self:start;align-self:start;max-width:100%;}
#node-block_c766e993{width:100%;padding-top:0px;padding-right:24px;padding-bottom:24px;padding-left:24px;background:#ffffff;display:block;color:#0a0a0a;border-color:#dccfbe;max-width:100%;}
#node-text_3058fb1b{font-family:Outfit;font-size:1.35rem;line-height:1.16;color:#111827;max-width:none;font-weight:600;margin-bottom:0rem;padding-bottom:0rem;width:321px;margin-top:0px;text-transform:none;letter-spacing:-0.01em;}
#node-text_5c7f0935{font-family:Source Sans 3;font-size:1rem;line-height:1.7;color:#374151;max-width:26ch;margin-top:0rem;font-weight:400;text-transform:none;letter-spacing:0;}
#node-block_e3fd1605{width:100%;padding-top:24px;padding-right:24px;padding-bottom:24px;padding-left:24px;background:transparent;display:grid;grid-template-columns:auto minmax(0, 1fr);gap:0.95rem;align-items:start;color:#0a0a0a;max-width:100%;}
#node-icon_bfeb9e75{width:2.3rem;height:2.3rem;color:#f26b67;justify-self:start;align-self:start;max-width:100%;}
#node-block_e62656e4{width:100%;padding-top:0px;padding-right:24px;padding-bottom:24px;padding-left:24px;background:#ffffff;display:block;color:#0a0a0a;border-color:#dccfbe;max-width:100%;}
#node-text_ad7620a6{font-family:Outfit;font-size:1.35rem;line-height:1.16;color:#111827;max-width:16ch;font-weight:600;padding-top:0rem;margin-top:0rem;margin-bottom:0rem;text-transform:none;letter-spacing:-0.01em;}
#node-text_974f1a52{font-family:Source Sans 3;font-size:1rem;line-height:1.7;color:#374151;max-width:26ch;margin-top:0rem;font-weight:400;text-transform:none;letter-spacing:0;}
#node-block_1b2a1e73{width:100%;padding-top:1rem;padding-right:1.3rem;padding-bottom:1rem;padding-left:1.3rem;background:#ffffff;display:grid;grid-template-columns:auto minmax(0, 1fr);gap:0.9rem;align-items:start;border-top:1px solid #eadfd3;color:#0a0a0a;border-color:#dccfbe;max-width:100%;}
#node-icon_ed10adae{width:2rem;height:2rem;color:#f26b67;justify-self:start;align-self:start;max-width:100%;}
#node-block_14c03f12{width:100%;padding-top:0px;padding-right:24px;padding-bottom:24px;padding-left:24px;background:#ffffff;display:block;gap:0.35rem;color:#0a0a0a;border-color:#dccfbe;max-width:100%;}
#node-text_39c3014b{font-family:Outfit;font-size:1.35rem;line-height:1.16;color:#111827;max-width:none;font-weight:600;width:336px;text-transform:none;letter-spacing:-0.01em;margin-top:0px;}
#node-block_ff4cee13{width:100%;padding-top:24px;padding-right:24px;padding-bottom:24px;padding-left:24px;background:#ffffff;display:grid;grid-template-rows:auto 1fr auto;min-height:100%;border-left:1px solid #eadfd3;max-width:100%;}
#node-block_39239b88{width:100%;padding-top:1.15rem;padding-right:1.3rem;padding-bottom:1.15rem;padding-left:1.3rem;background:#ffffff;display:flex;align-items:center;gap:0.7rem;border-bottom:1px solid #eadfd3;color:#0a0a0a;border-color:#dccfbe;max-width:100%;}
#node-text_40ecfa96{font-family:Inter;font-size:1rem;line-height:1.1;color:#ffffff;max-width:16ch;width:2rem;height:2rem;border-radius:999px;display:inline-flex;align-items:center;justify-content:center;background:#58bb6f;font-weight:800;}
#node-text_27a9f4e6{font-family:Outfit;font-size:3rem;line-height:1.08;color:#111827;max-width:16ch;font-weight:700;text-transform:none;letter-spacing:-0.02em;}
#node-block_73fe26be{width:100%;padding-top:1.45rem;padding-right:1.3rem;padding-bottom:1.45rem;padding-left:1.3rem;background:transparent;display:grid;gap:1.4rem;color:#0a0a0a;max-width:100%;}
#node-block_c3c34cd2{width:100%;padding-top:24px;padding-right:24px;padding-bottom:24px;padding-left:24px;background:transparent;display:grid;grid-template-columns:auto minmax(0, 1fr);gap:0.95rem;align-items:start;height:auto;color:#0a0a0a;max-width:100%;}
#node-icon_bd032e67{width:2.3rem;height:2.3rem;color:#58bb6f;justify-self:start;align-self:start;max-width:100%;}
#node-block_1b3e83d3{width:100%;padding-top:0px;padding-right:24px;padding-bottom:24px;padding-left:24px;background:transparent;display:block;gap:0.35rem;color:#0a0a0a;max-width:100%;}
#node-text_0c7f421a{font-family:Outfit;font-size:1.35rem;line-height:1.16;color:#111827;max-width:16ch;font-weight:600;margin-top:0rem;margin-bottom:0rem;padding-bottom:0rem;text-transform:none;letter-spacing:-0.01em;}
#node-text_6e659b3b{font-family:Source Sans 3;font-size:1rem;line-height:1.7;color:#374151;max-width:26ch;margin-top:0rem;font-weight:400;text-transform:none;letter-spacing:0;}
#node-block_d7cb3ddb{width:100%;padding-top:24px;padding-right:24px;padding-bottom:24px;padding-left:24px;background:transparent;display:grid;grid-template-columns:auto minmax(0, 1fr);gap:0.95rem;align-items:start;height:auto;color:#0a0a0a;max-width:100%;}
#node-icon_d6ce5eb8{width:2.3rem;height:2.3rem;color:#58bb6f;justify-self:start;align-self:start;max-width:100%;}
#node-block_f7e66869{width:100%;padding-top:0px;padding-right:24px;padding-bottom:24px;padding-left:24px;background:transparent;display:block;gap:0.35rem;color:#0a0a0a;max-width:100%;}
#node-text_4fbc1997{font-family:Outfit;font-size:1.35rem;line-height:1.16;color:#111827;max-width:16ch;font-weight:600;margin-top:0rem;margin-bottom:0rem;padding-bottom:0rem;text-transform:none;letter-spacing:-0.01em;}
#node-text_e793e0d2{font-family:Source Sans 3;font-size:1rem;line-height:1.7;color:#374151;max-width:26ch;margin-top:0.05rem;font-weight:400;text-transform:none;letter-spacing:0;}
#node-block_31314715{width:100%;padding-top:24px;padding-right:24px;padding-bottom:24px;padding-left:24px;background:transparent;display:grid;grid-template-columns:auto minmax(0, 1fr);gap:0.95rem;align-items:start;height:auto;color:#0a0a0a;max-width:100%;}
#node-icon_98fc500b{width:2.3rem;height:2.3rem;color:#58bb6f;justify-self:start;align-self:start;max-width:100%;}
#node-block_dfb5902f{width:100%;padding-top:0px;padding-right:24px;padding-bottom:24px;padding-left:24px;background:transparent;display:block;gap:0.35rem;margin-top:0%;color:#0a0a0a;max-width:100%;}
#node-text_d5e3124e{font-family:Outfit;font-size:1.35rem;line-height:1.16;color:#111827;max-width:16ch;font-weight:600;padding-top:0rem;margin-top:0rem;margin-bottom:0rem;text-transform:none;letter-spacing:-0.01em;}
#node-text_83980d64{font-family:Source Sans 3;font-size:1rem;line-height:1.7;color:#374151;max-width:26ch;padding-top:0rem;margin-top:0rem;font-weight:400;text-transform:none;letter-spacing:0;}
#node-block_ca416f2b{width:100%;padding-top:1rem;padding-right:1.3rem;padding-bottom:1rem;padding-left:1.3rem;background:transparent;display:grid;grid-template-columns:auto minmax(0, 1fr);gap:0.9rem;align-items:start;border-top:1px solid #eadfd3;color:#0a0a0a;max-width:100%;}
#node-icon_c1d46837{width:2rem;height:2rem;color:#58bb6f;justify-self:start;align-self:start;max-width:100%;}
#node-block_cdfba456{width:100%;padding-top:0px;padding-right:24px;padding-bottom:24px;padding-left:24px;background:transparent;display:block;height:auto;gap:1rem;color:#0a0a0a;max-width:100%;}
#node-text_806207cc{font-family:Outfit;font-size:1.35rem;line-height:1.16;color:#111827;max-width:none;font-weight:600;width:320px;text-transform:none;letter-spacing:-0.01em;margin-top:0px;}
#node-section_b3b80cb3{width:100%;min-height:220px;padding-top:4rem;padding-right:4vw;padding-bottom:4rem;padding-left:4vw;background:#000000;display:grid;gap:1.25rem;color:#ffffff;border-bottom:1px solid #ebe5dc;border-color:#dccfbe;max-width:100%;}
#node-block_9d7663ec{width:100%;min-height:140px;padding-top:24px;padding-right:24px;padding-bottom:0px;padding-left:24px;background:transparent;display:grid;gap:0.95rem;max-width:68rem;justify-self:start;height:auto;color:#0a0a0a;}
#node-text_2028cf49{font-family:Outfit;font-size:6rem;line-height:0.92;color:#ffffff;max-width:16ch;font-weight:700;text-transform:none;letter-spacing:-0.03em;margin-bottom:0rem;}
#node-block_d0daf3a6{width:100%;min-height:140px;padding-top:0px;padding-right:24px;padding-bottom:24px;padding-left:24px;background:transparent;display:block;color:#0a0a0a;max-width:100%;}
#node-block_08c1c738{width:auto;min-height:140px;padding-top:0px;padding-right:24px;padding-bottom:24px;padding-left:24px;background:transparent;display:grid;gap:0.7rem;padding:1.2rem;border:none;border-radius:22px;box-shadow:0 12px 28px rgba(44, 31, 22, 0.06);grid-column:span 2 / span 2;max-width:none;min-width:0;justify-self:stretch;color:#0a0a0a;border-style:none;}
#node-text_a969e197{font-family:Outfit;font-size:3rem;line-height:1.08;color:#ffffff;max-width:none;font-weight:700;letter-spacing:-0.02em;text-transform:none;grid-column:span 12 / span 12;width:auto;min-width:0;justify-self:stretch;text-align:center;}
#node-image_cc5110a4{width:auto;object-fit:cover;position:relative;grid-column:span 12 / span 12;max-width:none;min-width:0;justify-self:stretch;height:auto;}
#node-text_3a1a0b3f{font-family:Source Sans 3;font-size:1rem;line-height:1.7;color:#ffffff;max-width:none;font-weight:400;text-transform:none;letter-spacing:0;text-align:center;grid-column:span 12 / span 12;width:auto;min-width:0;justify-self:stretch;}
#node-section_619c0ca8{width:100%;min-height:220px;padding-top:4rem;padding-right:4vw;padding-bottom:4rem;padding-left:4vw;background:transparent;display:grid;color:#0a0a0a;border-bottom:1px solid #ebe5dc;grid-template-columns:repeat(12, minmax(0, 1fr));gap:1rem;grid-column:6 / span 7;grid-row:auto;max-width:100%;}
#node-block_6bab10ed{width:auto;min-height:140px;padding-top:24px;padding-right:24px;padding-bottom:24px;padding-left:24px;background:rgba(255, 250, 243, 0);display:grid;gap:0.95rem;max-width:none;justify-self:stretch;grid-column:span 8 / span 8;grid-row:auto;min-width:0;}
#node-text_a9ca0b96{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-bottom:0rem;margin-bottom:0rem;grid-column:span 12 / span 12;width:auto;min-width:0;justify-self:stretch;}
#node-text_9c0b1f1a{font-family:Source Sans 3;font-size:1rem;line-height:1.7;color:#374151;max-width:none;grid-column:span 12 / span 12;width:auto;min-width:0;justify-self:stretch;font-weight:400;text-transform:none;letter-spacing:0;}
#node-block_72260900{width:auto;padding-top:24px;padding-right:24px;padding-bottom:24px;padding-left:0px;background:transparent;position:relative;float:left;grid-column:span 6 / 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_798aba89{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_79867a53{width:auto;min-height:140px;padding-top:24px;padding-right:24px;padding-bottom:24px;padding-left:24px;background:#ffffff;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:1rem;grid-row:auto;}
#node-block_cafaa414{width:auto;min-height:100%;padding-top:24px;padding-right:24px;padding-bottom:24px;padding-left:24px;display:flex;padding:1.2rem;border:2px solid #d7dce4;border-radius:0px;box-shadow:none;grid-column:span 4 / span 4;max-width:none;min-width:0;justify-self:stretch;grid-row:auto;height:auto;flex-direction:column;flex-wrap:nowrap;gap:2px;align-items:stretch;justify-content:space-between;align-content:flex-start;border-width:2px;border-style:solid;}
#node-image_c59305a1{width:100%;object-fit:cover;position:relative;margin-bottom:15%;max-width:none;height:auto;grid-column:span 7 / span 7;grid-row:auto;}
#node-text_c65ff8b7{font-family:Outfit;font-size:3rem;line-height:1.08;color:#111827;max-width:none;font-weight:700;text-transform:none;letter-spacing:-0.02em;width:398px;margin-top:0px;text-align:left;margin-bottom:0px;}
#node-text_e0a2ad40{font-family:Source Sans 3;font-size:1rem;line-height:1.7;color:#374151;max-width:none;grid-column:span 8 / span 8;grid-row:auto;font-weight:400;text-transform:none;letter-spacing:0;width:306px;margin-top:0px;}
#node-block_c999ef97{width:auto;min-height:100%;padding-top:24px;padding-right:24px;padding-bottom:24px;padding-left:24px;display:flex;padding:1.2rem;border:2px solid #d7dce4;border-radius:0px;box-shadow:none;grid-column:span 4 / span 4;max-width:none;min-width:0;justify-self:stretch;grid-row:auto;height:auto;flex-direction:column;flex-wrap:nowrap;gap:2px;align-items:stretch;justify-content:space-between;align-content:flex-start;border-width:2px;border-style:solid;}
#node-image_8263fc68{width:100%;object-fit:cover;position:relative;margin-bottom:15%;max-width:none;height:auto;grid-column:span 7 / span 7;grid-row:auto;}
#node-text_7c9280e2{font-family:Outfit;font-size:3rem;line-height:1.08;color:#111827;max-width:none;font-weight:700;text-transform:none;letter-spacing:-0.02em;width:378px;margin-top:0px;text-align:left;margin-bottom:0px;}
#node-text_1c721332{font-family:Source Sans 3;font-size:1rem;line-height:1.7;color:#374151;max-width:none;grid-column:span 8 / span 8;grid-row:auto;font-weight:400;text-transform:none;letter-spacing:0;width:306px;margin-top:0px;}
#node-block_0edfd4e2{width:auto;min-height:100%;padding-top:24px;padding-right:24px;padding-bottom:24px;padding-left:24px;display:flex;padding:1.2rem;border:2px solid #d7dce4;border-radius:0px;box-shadow:none;grid-column:span 4 / span 4;max-width:none;min-width:0;justify-self:stretch;grid-row:auto;height:auto;flex-direction:column;flex-wrap:nowrap;gap:2px;align-items:stretch;justify-content:space-between;align-content:flex-start;border-width:2px;border-style:solid;}
#node-image_4f919c58{width:100%;object-fit:cover;position:relative;margin-bottom:15%;max-width:none;height:auto;grid-column:span 7 / span 7;grid-row:auto;}
#node-text_5b7b3ad4{font-family:Outfit;font-size:3rem;line-height:1.08;color:#111827;max-width:none;font-weight:700;text-transform:none;letter-spacing:-0.02em;width:395px;margin-top:0px;text-align:left;margin-bottom:0px;}
#node-text_4eb7745f{font-family:Source Sans 3;font-size:1rem;line-height:1.7;color:#374151;max-width:none;grid-column:span 8 / span 8;grid-row:auto;font-weight:400;text-transform:none;letter-spacing:0;width:306px;margin-top:0px;}
#node-section_3a57aca4{width:100%;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;height:auto;grid-column:2 / span 4;grid-row:auto;border-color:#dccfbe;max-width:100%;}
#node-block_12111d04{width:auto;min-height:140px;padding-top:0px;padding-right:24px;padding-bottom:0px;padding-left:72px;background:transparent;display:grid;max-width:none;justify-self:stretch;grid-column:span 12 / span 12;min-width:0;border-width:0px;border:none;border-style:none;box-shadow:none;grid-template-columns:repeat(12, minmax(0, 1fr));gap:1rem;color:#0a0a0a;}
#node-text_3dee3335{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;margin-bottom:0rem;grid-column:span 12 / span 12;grid-row:auto;}
#node-text_415174b4{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;padding-bottom:0rem;padding-top:0rem;margin-top:0rem;margin-bottom:0rem;grid-column:span 12 / span 12;grid-row:auto;}
#node-text_75b69449{font-family:Outfit;font-size:6rem;line-height:0.92;color:#ff3131;max-width:16ch;font-weight:700;text-transform:none;letter-spacing:-0.03em;padding-top:0rem;margin-top:0rem;margin-bottom:0rem;grid-column:span 12 / span 12;grid-row:auto;}
#node-text_5cdb3c1a{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:3.7rem;padding-bottom:0rem;margin-bottom:0rem;text-align:right;grid-column:span 12 / span 12;grid-row:auto;width:auto;min-width:0;justify-self:stretch;}
#node-text_63093879{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;margin-bottom:0rem;text-align:right;grid-column:span 12 / span 12;grid-row:auto;width:auto;min-width:0;justify-self:stretch;}
#node-text_53a2b603{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;padding-top:0rem;margin-top:0rem;margin-bottom:0rem;text-align:right;grid-column:span 12 / span 12;grid-row:auto;width:auto;min-width:0;justify-self:stretch;}
#node-section_ff5bc3e4{width:100%;min-height:220px;padding-top:0.65rem;padding-right:4vw;padding-bottom:4rem;padding-left:4vw;background:#f4dfd6;display:block;color:#1f1812;border-bottom:1px solid #ebe5dc;border-color:#dccfbe;gap:1.25rem;max-width:100%;}
#node-block_bec2767e{width:100%;min-height:140px;padding-top:24px;padding-right:24px;padding-bottom:24px;padding-left:24px;display:grid;grid-template-columns:repeat(4, minmax(0, 1fr));gap:1rem;background:transparent;color:#0a0a0a;max-width:100%;}
#node-block_de7f4ad2{width:100%;min-height:100%;padding-top:24px;padding-right:24px;padding-bottom:24px;padding-left:24px;background:transparent;display:grid;gap:0.78rem;padding:1.2rem;border:4px solid #cc0000;border-radius:22px;box-shadow:0 12px 24px rgba(44, 31, 22, 0.05);border-width:4px;border-style:solid;row-gap:0rem;column-gap:0rem;color:#0a0a0a;max-width:100%;}
#node-text_11238b1b{font-family:Outfit;font-size:3rem;line-height:1.08;color:#0a0a0a;max-width:none;font-weight:700;text-transform:none;letter-spacing:-0.02em;text-align:left;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_137b58a1{font-family:Source Sans 3;font-size:1rem;line-height:1.7;color:#374151;max-width:none;grid-column:span 12 / span 12;width:auto;min-width:0;justify-self:stretch;text-align:left;font-weight:400;text-transform:none;letter-spacing:0;}
#node-block_db4b6437{width:100%;min-height:100%;padding-top:24px;padding-right:24px;padding-bottom:24px;padding-left:24px;background:transparent;display:grid;gap:0.78rem;padding:1.2rem;border:4px solid #cc0000;border-radius:22px;box-shadow:0 12px 24px rgba(44, 31, 22, 0.05);border-width:4px;border-style:solid;row-gap:0rem;column-gap:0rem;color:#0a0a0a;max-width:100%;}
#node-text_742b76ba{font-family:Outfit;font-size:3rem;line-height:1.08;color:#111827;max-width:none;font-weight:700;text-transform:none;letter-spacing:-0.02em;text-align:left;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_0e9e2565{font-family:Source Sans 3;font-size:1rem;line-height:1.7;color:#374151;max-width:none;grid-column:span 12 / span 12;width:auto;min-width:0;justify-self:stretch;text-align:left;font-weight:400;text-transform:none;letter-spacing:0;}
#node-block_7ae71967{width:100%;min-height:100%;padding-top:24px;padding-right:24px;padding-bottom:24px;padding-left:24px;background:transparent;display:grid;gap:0.78rem;padding:1.2rem;border:4px solid #cc0000;border-radius:22px;box-shadow:0 12px 24px rgba(44, 31, 22, 0.05);border-width:4px;border-style:solid;row-gap:0rem;column-gap:0rem;color:#0a0a0a;max-width:100%;}
#node-text_ebe8f9db{font-family:Outfit;font-size:3rem;line-height:1.08;color:#111827;max-width:none;font-weight:700;text-transform:none;letter-spacing:-0.02em;text-align:left;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_a67ad957{font-family:Source Sans 3;font-size:1rem;line-height:1.7;color:#374151;max-width:none;grid-column:span 12 / span 12;width:auto;min-width:0;justify-self:stretch;text-align:left;font-weight:400;text-transform:none;letter-spacing:0;}
#node-block_30387cbb{width:100%;min-height:100%;padding-top:24px;padding-right:24px;padding-bottom:24px;padding-left:24px;background:transparent;display:grid;gap:0.78rem;padding:1.2rem;border:4px solid #cc0000;border-radius:22px;box-shadow:0 12px 24px rgba(44, 31, 22, 0.05);border-width:4px;border-style:solid;row-gap:0rem;column-gap:0rem;color:#0a0a0a;max-width:100%;}
#node-text_691fa68a{font-family:Outfit;font-size:3rem;line-height:1.08;color:#0a0a0a;max-width:none;font-weight:700;text-transform:none;letter-spacing:-0.02em;text-align:left;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_319aa6f6{font-family:Source Sans 3;font-size:1rem;line-height:1.7;color:#374151;max-width:none;grid-column:span 12 / span 12;width:auto;min-width:0;justify-self:stretch;text-align:left;font-weight:400;text-transform:none;letter-spacing:0;}
#node-block_811637f1{width:100%;min-height:100%;padding-top:24px;padding-right:24px;padding-bottom:24px;padding-left:24px;background:transparent;display:grid;gap:0.78rem;padding:1.2rem;border:4px solid #cc0000;border-radius:22px;box-shadow:0 12px 24px rgba(44, 31, 22, 0.05);border-width:4px;border-style:solid;row-gap:0rem;column-gap:0rem;color:#0a0a0a;max-width:100%;}
#node-text_6953c80a{font-family:Outfit;font-size:3rem;line-height:1.08;color:#0a0a0a;max-width:none;font-weight:700;text-transform:none;letter-spacing:-0.02em;text-align:left;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_a7377519{font-family:Source Sans 3;font-size:1rem;line-height:1.7;color:#374151;max-width:none;grid-column:span 12 / span 12;width:auto;min-width:0;justify-self:stretch;text-align:left;font-weight:400;text-transform:none;letter-spacing:0;}
#node-block_ef8a0edb{width:100%;min-height:100%;padding-top:24px;padding-right:24px;padding-bottom:24px;padding-left:24px;background:transparent;display:grid;gap:0.78rem;padding:1.2rem;border:4px solid #cc0000;border-radius:22px;box-shadow:0 12px 24px rgba(44, 31, 22, 0.05);border-width:4px;border-style:solid;row-gap:0rem;column-gap:0rem;color:#0a0a0a;max-width:100%;}
#node-text_2cef1588{font-family:Outfit;font-size:3rem;line-height:1.08;color:#0a0a0a;max-width:none;font-weight:700;text-transform:none;letter-spacing:-0.02em;text-align:left;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_7217e270{font-family:Source Sans 3;font-size:1rem;line-height:1.7;color:#374151;max-width:none;grid-column:span 12 / span 12;width:auto;min-width:0;justify-self:stretch;text-align:left;font-weight:400;text-transform:none;letter-spacing:0;}
#node-block_a890723a{width:100%;min-height:100%;padding-top:24px;padding-right:24px;padding-bottom:24px;padding-left:24px;background:transparent;display:grid;gap:0.78rem;padding:1.2rem;border:4px solid #cc0000;border-radius:22px;box-shadow:0 12px 24px rgba(44, 31, 22, 0.05);border-width:4px;border-style:solid;row-gap:0rem;column-gap:0rem;color:#0a0a0a;max-width:100%;}
#node-text_e6a99488{font-family:Outfit;font-size:3rem;line-height:1.08;color:#0a0a0a;max-width:none;font-weight:700;text-transform:none;letter-spacing:-0.02em;text-align:left;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_a06cfacc{font-family:Source Sans 3;font-size:1rem;line-height:1.7;color:#374151;max-width:none;grid-column:span 12 / span 12;width:auto;min-width:0;justify-self:stretch;text-align:left;font-weight:400;text-transform:none;letter-spacing:0;}
#node-section_c64ee921{width:100%;padding-top:4rem;padding-right:4vw;padding-bottom:4rem;padding-left:4vw;background:#ffffff;display:grid;color:#0a0a0a;border-bottom:1px solid #ebe5dc;border-color:#dccfbe;grid-template-columns:repeat(12, minmax(0, 1fr));gap:1rem;grid-column:span 5 / span 5;grid-row:auto;max-width:100%;}
#node-block_1fcb8ae7{width:auto;padding-top:24px;padding-right:24px;padding-bottom:24px;padding-left:24px;background:#ffffff;display:grid;gap:0.95rem;max-width:none;justify-self:stretch;grid-column:span 12 / span 12;min-width:0;color:#0a0a0a;border-color:#dccfbe;}
#node-text_39e998fd{font-family:Outfit;font-size:6rem;line-height:0.92;color:#111827;max-width:none;font-weight:700;grid-column:span 12 / span 12;width:auto;min-width:0;justify-self:stretch;text-align:center;padding-bottom:0px;margin-bottom:0px;text-transform:none;letter-spacing:-0.03em;}
#node-text_6b558fc5{font-family:Source Sans 3;font-size:1rem;line-height:1.7;color:#374151;max-width:none;grid-column:span 12 / span 12;width:auto;min-width:0;justify-self:stretch;text-align:center;font-weight:400;text-transform:none;letter-spacing:0;}
#node-block_5621be7b{width:auto;padding-top:24px;padding-right:24px;padding-bottom:24px;padding-left:24px;background:#f4dfd6;display:grid;border:1px solid #dce5f3;border-radius:0px;overflow:hidden;box-shadow:0 18px 40px rgba(31, 58, 109, 0.08);grid-column:3 / span 8;max-width:none;min-width:0;justify-self:stretch;grid-row:auto;color:#1f1812;border-color:#dccfbe;grid-template-columns:repeat(12, minmax(0, 1fr));gap:0rem;row-gap:0rem;column-gap:0rem;}
#node-block_ceb26cad{width:auto;padding-top:24px;padding-right:24px;padding-bottom:24px;padding-left:24px;background:#ffffff;display:grid;align-content:center;justify-items:center;gap:1rem;padding:1.6rem;min-height:16rem;position:relative;color:#0a0a0a;border-color:#dccfbe;background-image:url(https://prime-el-rebuild.ewr1.vultrobjects.com/projects/aloraweb/484f3d96-4bb4-435c-b84f-4ff09851d0d8-lady-workc.png);background-size:cover;background-position:center center;background-repeat:no-repeat;grid-column:span 4 / span 4;grid-row:auto;max-width:none;min-width:0;justify-self:stretch;border-right-width:2px;border-right:2px solid #d7dce4;border-right-style:solid;}
#node-block_98ce49a6{width:4.7rem;padding-top:24px;padding-right:24px;padding-bottom:24px;padding-left:24px;background:#ffffff;position:absolute;right:1rem;bottom:1rem;height:4.7rem;border-radius:999px;border:1px solid #cfe0ff;display:flex;align-items:center;justify-content:center;box-shadow:0 12px 28px rgba(49, 104, 196, 0.14);color:#0a0a0a;border-color:#dccfbe;max-width:100%;}
#node-text_47b92007{font-family:Source Sans 3;font-size:1.25rem;line-height:1.6;color:#374151;max-width:16ch;font-weight:400;text-transform:none;letter-spacing:0;}
#node-block_e7add273{width:auto;padding-top:24px;padding-right:24px;padding-bottom:24px;padding-left:24px;background:#ffffff;display:grid;padding:1.6rem;color:#0a0a0a;border-color:#dccfbe;grid-template-columns:repeat(12, minmax(0, 1fr));gap:1rem;grid-column:span 8 / span 8;max-width:none;min-width:0;justify-self:stretch;}
#node-text_1f7361a7{font-family:Inter;font-size:0.96rem;line-height:1.1;color:#0a0a0a;max-width:none;font-weight:800;margin-bottom:0rem;grid-column:span 11 / span 11;width:auto;min-width:0;justify-self:stretch;}
#node-text_38b4932c{font-family:Outfit;font-size:3rem;line-height:1.08;color:#111827;max-width:none;font-weight:700;text-transform:none;letter-spacing:-0.02em;margin-top:0rem;margin-bottom:0rem;grid-column:span 12 / span 12;width:auto;min-width:0;justify-self:stretch;}
#node-block_c43bd018{width:auto;padding-top:0px;padding-right:24px;padding-bottom:0px;padding-left:0px;background:#ffffff;display:block;color:#0a0a0a;border-color:#dccfbe;grid-column:span 11 / span 11;grid-row:auto;margin-top:0%;max-width:none;min-width:0;justify-self:stretch;}
#node-block_588525fe{width:100%;padding-top:0px;padding-right:0px;padding-bottom:0px;padding-left:0px;background:transparent;display:grid;align-items:center;color:#0a0a0a;grid-template-columns:repeat(12, minmax(0, 1fr));gap:1rem;max-width:100%;}
#node-icon_50c4b814{width:auto;height:37px;color:#949494;justify-self:stretch;align-self:start;grid-column:span 2 / span 2;grid-row:auto;max-width:none;min-width:0;padding-top:0px;margin-top:0px;}
#node-text_c3d7ab2c{font-family:Outfit;font-size:1.35rem;line-height:1.16;color:#111827;max-width:none;font-weight:600;text-transform:none;letter-spacing:-0.01em;grid-column:span 10 / span 10;width:auto;min-width:0;justify-self:stretch;margin-top:0rem;padding-top:0rem;margin-bottom:0rem;}
#node-block_741f871e{width:auto;padding-top:0px;padding-right:24px;padding-bottom:0px;padding-left:0px;background:#ffffff;display:block;color:#0a0a0a;border-color:#dccfbe;grid-column:span 11 / span 11;grid-row:auto;margin-top:0%;max-width:none;min-width:0;justify-self:stretch;}
#node-block_39aa8bd3{width:100%;padding-top:0px;padding-right:0px;padding-bottom:0px;padding-left:0px;background:transparent;display:grid;align-items:center;color:#0a0a0a;grid-template-columns:repeat(12, minmax(0, 1fr));gap:1rem;max-width:100%;}
#node-icon_90035623{width:auto;height:37px;color:#949494;justify-self:stretch;align-self:start;grid-column:span 2 / span 2;grid-row:auto;max-width:none;min-width:0;padding-top:0px;margin-top:0px;}
#node-text_a7356338{font-family:Outfit;font-size:1.35rem;line-height:1.16;color:#111827;max-width:none;font-weight:600;text-transform:none;letter-spacing:-0.01em;grid-column:span 10 / span 10;width:auto;min-width:0;justify-self:stretch;margin-top:0rem;padding-top:0rem;margin-bottom:0rem;}
#node-block_26d043c1{width:auto;padding-top:0px;padding-right:24px;padding-bottom:0px;padding-left:0px;background:#ffffff;display:block;color:#0a0a0a;border-color:#dccfbe;grid-column:span 11 / span 11;grid-row:auto;margin-top:0%;max-width:none;min-width:0;justify-self:stretch;}
#node-block_12cd155c{width:100%;padding-top:0px;padding-right:0px;padding-bottom:0px;padding-left:0px;background:transparent;display:grid;align-items:center;color:#0a0a0a;grid-template-columns:repeat(12, minmax(0, 1fr));gap:1rem;max-width:100%;}
#node-icon_97cce732{width:auto;height:37px;color:#949494;justify-self:stretch;align-self:start;grid-column:span 2 / span 2;grid-row:auto;max-width:none;min-width:0;padding-top:0px;margin-top:0px;}
#node-text_2a4b95e1{font-family:Outfit;font-size:1.35rem;line-height:1.16;color:#111827;max-width:none;font-weight:600;text-transform:none;letter-spacing:-0.01em;grid-column:span 10 / span 10;width:auto;min-width:0;justify-self:stretch;margin-top:0rem;padding-top:0rem;margin-bottom:0rem;}
#node-block_1f51654f{width:auto;padding-top:0px;padding-right:24px;padding-bottom:0px;padding-left:0px;background:#ffffff;display:block;color:#0a0a0a;border-color:#dccfbe;grid-column:span 11 / span 11;grid-row:auto;margin-top:0%;max-width:none;min-width:0;justify-self:stretch;}
#node-block_1ff8b9df{width:100%;padding-top:0px;padding-right:0px;padding-bottom:0px;padding-left:0px;background:transparent;display:grid;align-items:center;color:#0a0a0a;grid-template-columns:repeat(12, minmax(0, 1fr));gap:1rem;max-width:100%;}
#node-text_d773e5bb{font-family:Outfit;font-size:1.35rem;line-height:1.16;color:#111827;max-width:none;font-weight:600;text-transform:none;letter-spacing:-0.01em;grid-column:span 10 / span 10;width:auto;min-width:0;justify-self:stretch;margin-top:0rem;padding-top:0rem;margin-bottom:0rem;}
#node-text_b32d5796{font-family:Outfit;font-size:6rem;line-height:0.92;color:#111827;max-width:none;font-weight:700;text-align:center;justify-self:stretch;grid-column:span 12 / span 12;width:auto;min-width:0;text-transform:none;letter-spacing:-0.03em;}
#node-block_21933d32{width:auto;padding-top:24px;padding-right:24px;padding-bottom:24px;padding-left:24px;background:#ffffff;display:grid;grid-column:span 12 / span 12;max-width:none;min-width:0;justify-self:stretch;color:#0a0a0a;border-color:#dccfbe;grid-template-columns:repeat(12, minmax(0, 1fr));gap:1rem;}
#node-block_37609dd8{width:auto;padding-top:24px;padding-right:24px;padding-bottom:24px;padding-left:24px;background:#ffffff;display:grid;text-align:center;padding:1.35rem 1rem;border:1px solid #dce5f3;border-radius:22px;box-shadow:0 12px 28px rgba(31, 58, 109, 0.06);grid-column:span 4 / span 4;grid-row:auto;color:#0a0a0a;border-color:#dccfbe;max-width:none;min-width:0;justify-self:stretch;grid-template-columns:repeat(12, minmax(0, 1fr));gap:1rem;}
#node-block_7b4296ce{width:auto;padding-top:5px;padding-right:24px;padding-bottom:24px;padding-left:24px;background:#ffffff;height:4.3rem;border-radius:999px;display:flex;align-items:center;justify-content:center;grid-column:span 12 / span 12;grid-row:auto;color:#0a0a0a;border-color:#dccfbe;max-width:none;min-width:0;justify-self:stretch;}
#node-icon_0a01931b{width:2.85rem;height:2.85rem;color:#0a0a0a;justify-self:start;align-self:start;max-width:100%;}
#node-text_bc77171b{font-family:Outfit;font-size:3rem;line-height:1.08;color:#111827;max-width:none;font-weight:700;grid-column:span 12 / span 12;width:auto;min-width:0;justify-self:stretch;text-transform:none;letter-spacing:-0.02em;}
#node-block_d104a777{width:auto;padding-top:0px;padding-right:0px;padding-bottom:0px;padding-left:24px;background:#14b8a6;height:1px;opacity:0.35;border-width:2px;border:2px solid #dccfbe;border-style:solid;grid-column:span 12 / span 12;max-width:none;min-width:0;justify-self:stretch;}
#node-text_3e49ee4d{font-family:Inter;font-size:0.92rem;line-height:1.1;color:#14b8a6;max-width:none;font-weight:700;padding-right:0rem;grid-column:span 12 / span 12;width:auto;min-width:0;justify-self:stretch;}
#node-text_4c147afb{font-family:Outfit;font-size:1.35rem;line-height:1.16;color:#ff3131;max-width:none;font-weight:600;padding-right:0rem;grid-column:span 12 / span 12;width:auto;min-width:0;justify-self:stretch;margin-top:0rem;text-transform:none;letter-spacing:-0.01em;}
#node-block_1b039e6c{width:auto;padding-top:24px;padding-right:24px;padding-bottom:24px;padding-left:24px;background:#000000;display:grid;text-align:center;padding:1.35rem 1rem;border:1px solid #dce5f3;border-radius:22px;box-shadow:0 12px 28px rgba(31, 58, 109, 0.06);color:#ffffff;border-color:#dccfbe;grid-column:span 4 / span 4;max-width:none;min-width:0;justify-self:stretch;grid-template-columns:repeat(12, minmax(0, 1fr));gap:1rem;grid-row:auto;}
#node-block_1b82ca94{width:auto;padding-top:12px;padding-right:24px;padding-bottom:24px;padding-left:24px;background:transparent;height:4.3rem;border-radius:999px;display:flex;align-items:center;justify-content:center;grid-column:span 12 / span 12;max-width:none;min-width:0;justify-self:stretch;color:#0a0a0a;}
#node-icon_576a0b72{width:2.85rem;height:2.85rem;color:#ff3131;justify-self:start;align-self:start;grid-column:span 2 / span 2;grid-row:auto;max-width:100%;}
#node-text_56705c4d{font-family:Outfit;font-size:3rem;line-height:1.08;color:#ffffff;max-width:none;font-weight:700;grid-column:span 12 / span 12;width:auto;min-width:0;justify-self:stretch;grid-row:auto;text-transform:none;letter-spacing:-0.02em;}
#node-block_337617fa{width:auto;padding-top:0px;padding-right:24px;padding-bottom:0px;padding-left:24px;background:#a855f7;height:0px;opacity:0.35;border-width:2px;border:2px solid #dccfbe;border-style:solid;display:block;margin-top:0px;grid-column:span 12 / span 12;grid-row:auto;max-width:none;min-width:0;justify-self:stretch;}
#node-text_d00e0dcd{font-family:Inter;font-size:0.92rem;line-height:1.1;color:#949494;max-width:16ch;font-weight:700;grid-column:4 / span 6;grid-row:auto;}
#node-text_807f8363{font-family:Outfit;font-size:1.35rem;line-height:1.16;color:#949494;max-width:none;font-weight:600;margin-top:0rem;grid-column:span 12 / span 12;grid-row:auto;width:auto;min-width:0;justify-self:stretch;text-transform:none;letter-spacing:-0.01em;}
#node-block_4c7d790c{width:auto;padding-top:24px;padding-right:24px;padding-bottom:24px;padding-left:24px;background:#ffffff;display:grid;text-align:center;padding:1.35rem 1rem;border:1px solid #dce5f3;border-radius:22px;box-shadow:0 12px 28px rgba(31, 58, 109, 0.06);grid-column:span 4 / span 4;grid-row:auto;color:#0a0a0a;border-color:#dccfbe;max-width:none;min-width:0;justify-self:stretch;grid-template-columns:repeat(12, minmax(0, 1fr));gap:1rem;}
#node-block_3e5314c1{width:auto;padding-top:13px;padding-right:24px;padding-bottom:24px;padding-left:24px;background:#ffffff;height:4.3rem;border-radius:999px;display:flex;align-items:center;justify-content:center;grid-column:span 12 / span 12;grid-row:auto;color:#0a0a0a;border-color:#dccfbe;max-width:none;min-width:0;justify-self:stretch;}
#node-icon_10848535{width:2.85rem;height:2.85rem;color:#0a0a0a;justify-self:start;align-self:start;grid-column:span 2 / span 2;grid-row:auto;margin-top:0rem;max-width:100%;}
#node-text_4e4cd4fd{font-family:Outfit;font-size:3rem;line-height:1.08;color:#111827;max-width:none;font-weight:700;grid-column:span 12 / span 12;width:auto;min-width:0;justify-self:stretch;text-transform:none;letter-spacing:-0.02em;}
#node-block_95a98ff2{width:auto;padding-top:0px;padding-right:24px;padding-bottom:0px;padding-left:24px;background:#ffffff;height:0px;opacity:0.35;border-width:2px;border:2px solid #dccfbe;border-style:solid;grid-column:span 12 / span 12;max-width:none;min-width:0;justify-self:stretch;color:#0a0a0a;border-color:#dccfbe;}
#node-text_71966551{font-family:Inter;font-size:0.92rem;line-height:1.1;color:#949494;max-width:none;font-weight:700;grid-column:span 12 / span 12;width:auto;min-width:0;justify-self:stretch;}
#node-text_a2b04b13{font-family:Outfit;font-size:1.35rem;line-height:1.16;color:#111827;max-width:none;font-weight:600;grid-column:span 12 / span 12;width:auto;min-width:0;justify-self:stretch;margin-top:0rem;text-transform:none;letter-spacing:-0.01em;}
#node-block_9d53ef4e{width:auto;padding-top:24px;padding-right:24px;padding-bottom:24px;padding-left:24px;background:#f4dfd6;display:grid;align-items:center;justify-self:stretch;max-width:none;padding:1rem 1.2rem;border:1px solid #dce5f3;border-radius:18px;grid-column:4 / span 6;min-width:0;grid-row:auto;grid-template-columns:repeat(12, minmax(0, 1fr));gap:1rem;color:#1f1812;border-color:#dccfbe;}
#node-icon_ec068c0f{width:auto;height:2.05rem;color:#0a0a0a;justify-self:stretch;align-self:start;grid-column:auto;max-width:none;min-width:0;}
#node-text_7fea7c47{font-family:Outfit;font-size:1.35rem;line-height:1.16;color:#0a0a0a;max-width:none;font-weight:600;text-transform:none;letter-spacing:-0.01em;grid-column:span 10 / span 10;width:auto;min-width:0;justify-self:stretch;margin-top:0rem;margin-bottom:0rem;}
#node-block_b6b9a778{width:auto;padding-top:24px;padding-right:24px;padding-bottom:24px;padding-left:24px;background:transparent;position:relative;float:left;grid-column:5 / 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_d06ec2f5{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_337a82da{width:100%;min-height:220px;padding-top:4rem;padding-right:4vw;padding-bottom:0rem;padding-left:4vw;background:#ffffff;display:grid;gap:1.25rem;color:#0a0a0a;border-bottom:1px solid #ebe5dc;grid-column:4 / span 9;grid-row:auto;max-width:100%;border-color:#dccfbe;}
#node-block_aaca42b4{width:auto;min-height:140px;padding-top:24px;padding-right:24px;padding-bottom:24px;padding-left:24px;background:#ffffff;display:grid;gap:0.95rem;max-width:none;justify-self:stretch;grid-column:span 12 / span 12;min-width:0;color:#0a0a0a;border-color:#dccfbe;}
#node-text_e3c90ffd{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;padding-right:1.9rem;grid-column:span 12 / span 12;width:auto;min-width:0;justify-self:stretch;text-align:left;margin-bottom:0rem;}
#node-text_1a537d50{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-right:1.9rem;grid-column:span 12 / span 12;width:auto;min-width:0;justify-self:stretch;text-align:right;margin-top:0rem;margin-bottom:0rem;}
#node-text_39810f24{font-family:Outfit;font-size:6rem;line-height:0.92;color:#0a0a0a;max-width:none;font-weight:700;text-transform:none;letter-spacing:-0.03em;padding-right:1.9rem;grid-column:span 12 / span 12;width:auto;min-width:0;justify-self:stretch;text-align:right;margin-top:0rem;margin-bottom:0rem;}
#node-text_75234895{font-family:Outfit;font-size:6rem;line-height:0.92;color:#0a0a0a;max-width:none;font-weight:700;text-transform:none;letter-spacing:-0.03em;padding-right:1.9rem;grid-column:span 12 / span 12;width:auto;min-width:0;justify-self:stretch;text-align:right;margin-top:0rem;margin-bottom:0rem;}
#node-text_e575767e{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;padding-right:1.9rem;grid-column:4 / span 9;width:auto;min-width:0;justify-self:stretch;text-align:right;margin-top:0rem;margin-bottom:0rem;grid-row:auto;}
#node-text_f8406c65{font-family:Source Sans 3;font-size:1rem;line-height:1.7;color:#374151;max-width:none;grid-column:4 / span 6;width:auto;min-width:0;justify-self:stretch;text-align:center;grid-row:auto;margin-top:3.4rem;padding-top:0rem;font-weight:400;text-transform:none;letter-spacing:0;}
#node-section_4b9dd335{width:100%;padding-top:4rem;padding-right:4vw;padding-bottom:4rem;padding-left:4vw;background:#000000;display:grid;color:#ffffff;border-bottom:1px solid #ebe5dc;min-height:78vh;align-items:center;border-color:#dccfbe;grid-template-columns:repeat(12, minmax(0, 1fr));gap:1rem;max-width:100%;}
#node-block_06faa9f5{width:auto;padding-top:24px;padding-right:24px;padding-bottom:24px;padding-left:24px;background:transparent;display:grid;max-width:none;justify-self:stretch;color:#0a0a0a;grid-template-columns:repeat(12, minmax(0, 1fr));gap:1rem;grid-column:span 6 / span 6;min-width:0;}
#node-text_286a966d{font-family:Inter;font-size:0.76rem;line-height:1.1;color:#949494;max-width:none;letter-spacing:0.18em;text-transform:uppercase;font-weight:700;grid-column:span 12 / span 12;width:auto;min-width:0;justify-self:stretch;}
#node-text_c2236845{font-family:Outfit;font-size:6rem;line-height:0.92;color:#ffffff;max-width:none;font-weight:700;grid-column:span 12 / span 12;width:auto;min-width:0;justify-self:stretch;padding-bottom:0px;margin-bottom:0px;margin-top:0px;text-transform:none;letter-spacing:-0.03em;}
#node-text_f0a5937a{font-family:Outfit;font-size:6rem;line-height:0.92;color:#ff3131;max-width:none;font-weight:700;grid-column:span 12 / span 12;width:auto;min-width:0;justify-self:stretch;padding-top:0px;margin-top:0px;margin-bottom:0px;text-transform:none;letter-spacing:-0.03em;}
#node-text_ebef552c{font-family:Outfit;font-size:6rem;line-height:0.92;color:#ffffff;max-width:none;grid-column:span 12 / span 12;width:auto;min-width:0;justify-self:stretch;font-weight:700;text-transform:none;letter-spacing:-0.03em;margin-top:0rem;padding-bottom:0rem;margin-bottom:0rem;}
#node-text_6fadbe33{font-family:Source Sans 3;font-size:1rem;line-height:1.7;color:#949494;max-width:none;grid-column:span 9 / span 9;width:auto;min-width:0;justify-self:stretch;margin-top:0rem;font-weight:400;text-transform:none;letter-spacing:0;}
#node-block_7fc71f55{width:auto;padding-top:24px;padding-right:24px;padding-bottom:24px;padding-left:24px;background:#000000;position:relative;display:grid;align-items:end;justify-items:center;border-radius:28px;padding:1.1rem;border:none;box-shadow:none;justify-self:stretch;align-self:stretch;min-height:33rem;overflow:hidden;color:#ffffff;align-content:center;border-width:0px;border-style:none;grid-column:span 6 / span 6;max-width:none;min-width:0;border-color:#dccfbe;}
#node-image_28cf1b98{width:100%;object-fit:cover;position:relative;max-width:100%;height:auto;}
#node-block_80344abf{width:auto;padding-top:0.6rem;padding-right:24px;padding-bottom:24px;padding-left:24px;background:transparent;grid-column:span 12 / span 12;display:grid;grid-template-columns:repeat(3, minmax(0, 1fr));gap:1rem;color:#0a0a0a;max-width:none;min-width:0;justify-self:stretch;}
#node-block_1defd29b{width:100%;padding-top:24px;padding-right:24px;padding-bottom:24px;padding-left:24px;background:#ffffff;position:relative;display:grid;gap:0.8rem;justify-items:center;text-align:center;padding:1.35rem 1rem 1.2rem;border:1px solid #e3ebf8;border-top:5px solid #14b8a6;border-radius:24px;box-shadow:0 16px 34px rgba(31, 58, 109, 0.06);overflow:hidden;max-width:100%;}
#node-block_8391ba71{width:auto;padding-top:24px;padding-right:24px;padding-bottom:24px;padding-left:24px;background:#f4dfd6;position:absolute;top:0;right:0;padding:0.55rem 0.85rem;color:#1f1812;border-bottom-left-radius:18px;font-size:0.98rem;font-weight:800;grid-column:span 2 / span 2;max-width:none;min-width:0;justify-self:stretch;border-color:#dccfbe;}
#node-text_98f02af2{font-family:Inter;font-size:0.98rem;line-height:1.1;color:#ffffff;max-width:16ch;font-weight:800;}
#node-block_d6a72183{width:5.3rem;padding-top:24px;padding-right:24px;padding-bottom:24px;padding-left:24px;background:#effcf8;height:5.3rem;border-radius:999px;display:flex;align-items:center;justify-content:center;max-width:100%;}
#node-icon_b6f08092{width:2rem;height:2rem;color:#14b8a6;justify-self:start;align-self:start;max-width:100%;}
#node-text_dc4a701b{font-family:Outfit;font-size:3rem;line-height:1.08;color:#111827;max-width:12ch;font-weight:700;text-transform:none;letter-spacing:-0.02em;}
#node-block_1e43570b{width:3rem;padding-top:24px;padding-right:24px;padding-bottom:24px;padding-left:24px;background:#f4dfd6;height:3px;border-radius:999px;opacity:0.8;color:#1f1812;border-color:#dccfbe;max-width:100%;}
#node-text_d1c9e2e8{font-family:Source Sans 3;font-size:1rem;line-height:1.7;color:#374151;max-width:18ch;font-weight:400;text-transform:none;letter-spacing:0;}
#node-text_2dcbb07b{font-family:Source Sans 3;font-size:1.25rem;line-height:1.6;color:#374151;max-width:16ch;font-weight:400;text-transform:none;letter-spacing:0;}
#node-block_0fe345d3{width:100%;padding-top:24px;padding-right:24px;padding-bottom:24px;padding-left:24px;background:#ffffff;position:relative;display:grid;gap:0.8rem;justify-items:center;text-align:center;padding:1.35rem 1rem 1.2rem;border:1px solid #e3ebf8;border-top:5px solid #8b5cf6;border-radius:24px;box-shadow:0 16px 34px rgba(31, 58, 109, 0.06);overflow:hidden;max-width:100%;}
#node-block_f2464310{width:auto;padding-top:24px;padding-right:24px;padding-bottom:24px;padding-left:24px;background:#f4dfd6;position:absolute;top:0;right:0;padding:0.55rem 0.85rem;color:#1f1812;border-bottom-left-radius:18px;font-size:0.98rem;font-weight:800;grid-column:span 2 / span 2;max-width:none;min-width:0;justify-self:stretch;border-color:#dccfbe;}
#node-text_0a7e7418{font-family:Inter;font-size:0.98rem;line-height:1.1;color:#0a0a0a;max-width:16ch;font-weight:800;}
#node-block_58778472{width:5.3rem;padding-top:24px;padding-right:24px;padding-bottom:24px;padding-left:24px;background:#f6f0ff;height:5.3rem;border-radius:999px;display:flex;align-items:center;justify-content:center;max-width:100%;}
#node-icon_f193ee89{width:2rem;height:2rem;color:#8b5cf6;justify-self:start;align-self:start;max-width:100%;}
#node-text_086c66aa{font-family:Outfit;font-size:3rem;line-height:1.08;color:#0a0a0a;max-width:12ch;font-weight:700;text-transform:none;letter-spacing:-0.02em;}
#node-block_aca510ff{width:3rem;padding-top:24px;padding-right:24px;padding-bottom:24px;padding-left:24px;background:#f4dfd6;height:3px;border-radius:999px;opacity:0.8;color:#1f1812;border-color:#dccfbe;max-width:100%;}
#node-text_3835809b{font-family:Source Sans 3;font-size:1rem;line-height:1.7;color:#374151;max-width:18ch;font-weight:400;text-transform:none;letter-spacing:0;}
#node-text_53ca5231{font-family:Source Sans 3;font-size:1.25rem;line-height:1.6;color:#374151;max-width:16ch;font-weight:400;text-transform:none;letter-spacing:0;}
#node-block_52797bfa{width:100%;padding-top:24px;padding-right:24px;padding-bottom:24px;padding-left:24px;background:#ffffff;position:relative;display:grid;gap:0.8rem;justify-items:center;text-align:center;padding:1.35rem 1rem 1.2rem;border:1px solid #e3ebf8;border-top:5px solid #f97316;border-radius:24px;box-shadow:0 16px 34px rgba(31, 58, 109, 0.06);overflow:hidden;max-width:100%;}
#node-block_9fd57fe2{width:auto;padding-top:24px;padding-right:24px;padding-bottom:24px;padding-left:24px;background:#ff3131;position:absolute;top:0;right:0;padding:0.55rem 0.85rem;color:#0a0a0a;border-bottom-left-radius:18px;font-size:0.98rem;font-weight:800;grid-column:span 2 / span 2;max-width:none;min-width:0;justify-self:stretch;border-color:#dccfbe;}
#node-text_25f6b06a{font-family:Inter;font-size:0.98rem;line-height:1.1;color:#ffffff;max-width:16ch;font-weight:800;}
#node-block_9f2ee65a{width:5.3rem;padding-top:24px;padding-right:24px;padding-bottom:24px;padding-left:24px;background:#fff3e8;height:5.3rem;border-radius:999px;display:flex;align-items:center;justify-content:center;max-width:100%;}
#node-icon_fac62b5a{width:2rem;height:2rem;color:#f97316;justify-self:start;align-self:start;max-width:100%;}
#node-text_2691a9fd{font-family:Outfit;font-size:3rem;line-height:1.08;color:#111827;max-width:12ch;font-weight:700;text-transform:none;letter-spacing:-0.02em;}
#node-block_72d0b52e{width:3rem;padding-top:24px;padding-right:24px;padding-bottom:24px;padding-left:24px;background:#ff3131;height:3px;border-radius:999px;opacity:0.8;color:#0a0a0a;border-color:#dccfbe;max-width:100%;}
#node-text_8570d044{font-family:Source Sans 3;font-size:1rem;line-height:1.7;color:#374151;max-width:18ch;font-weight:400;text-transform:none;letter-spacing:0;}
#node-text_8f3c3533{font-family:Source Sans 3;font-size:1.25rem;line-height:1.6;color:#374151;max-width:16ch;font-weight:400;text-transform:none;letter-spacing:0;}
#node-block_cb0b6764{width:auto;padding-top:24px;padding-right:24px;padding-bottom:24px;padding-left:24px;background:transparent;grid-column:span 12 / span 12;display:grid;justify-items:center;gap:1rem;color:#0a0a0a;max-width:none;min-width:0;justify-self:stretch;}
#node-block_c0393fd5{width:100%;padding-top:0px;padding-right:0px;padding-bottom:0px;padding-left:0px;background:transparent;display:grid;flex-wrap:wrap;justify-content:center;color:#0a0a0a;grid-template-columns:repeat(12, minmax(0, 1fr));gap:1rem;max-width:100%;}
#node-block_84a34f8b{width:auto;padding-top:24px;padding-right:24px;padding-bottom:24px;padding-left:24px;background:transparent;display:flex;align-items:center;grid-column:span 3 / span 3;max-width:none;min-width:0;justify-self:stretch;color:#0a0a0a;flex-direction:row;flex-wrap:wrap;gap:16px;justify-content:center;align-content:flex-start;}
#node-icon_96c432c3{width:2rem;height:2rem;color:#949494;justify-self:start;align-self:start;margin-left:0rem;padding-left:0rem;max-width:100%;}
#node-text_92abf93b{font-family:Source Sans 3;font-size:1.25rem;line-height:1.6;color:#949494;max-width:16ch;font-weight:400;text-transform:none;letter-spacing:0;margin-top:0rem;display:block;width:100%;text-align:center;}
#node-block_4c34087d{width:auto;padding-top:24px;padding-right:24px;padding-bottom:24px;padding-left:24px;background:transparent;display:flex;align-items:center;grid-column:span 3 / span 3;max-width:none;min-width:0;justify-self:stretch;color:#0a0a0a;flex-direction:row;flex-wrap:wrap;gap:16px;justify-content:center;}
#node-icon_df91607b{width:2rem;height:2rem;color:#949494;justify-self:start;align-self:start;max-width:100%;}
#node-text_d12f328b{font-family:Source Sans 3;font-size:1.25rem;line-height:1.6;color:#949494;max-width:16ch;font-weight:400;text-transform:none;letter-spacing:0;margin-top:0rem;display:block;width:100%;text-align:center;}
#node-block_7711c9ca{width:auto;padding-top:24px;padding-right:24px;padding-bottom:24px;padding-left:24px;background:transparent;display:flex;align-items:center;grid-column:span 3 / span 3;max-width:none;min-width:0;justify-self:stretch;color:#0a0a0a;flex-direction:row;flex-wrap:wrap;gap:16px;justify-content:center;}
#node-icon_d8ed45e0{width:2rem;height:2rem;color:#949494;justify-self:start;align-self:start;max-width:100%;}
#node-text_dd888394{font-family:Source Sans 3;font-size:1.25rem;line-height:1.6;color:#949494;max-width:16ch;font-weight:400;text-transform:none;letter-spacing:0;margin-top:0rem;display:block;width:100%;text-align:center;}
#node-block_2f2c52e1{width:auto;padding-top:24px;padding-right:24px;padding-bottom:24px;padding-left:24px;background:transparent;display:flex;align-items:center;grid-column:span 3 / span 3;max-width:none;min-width:0;justify-self:stretch;color:#0a0a0a;flex-direction:row;flex-wrap:wrap;gap:16px;justify-content:center;}
#node-icon_75e8a4eb{width:2rem;height:2rem;color:#949494;justify-self:start;align-self:start;max-width:100%;}
#node-text_0afa3b15{font-family:Source Sans 3;font-size:1.25rem;line-height:1.6;color:#949494;max-width:16ch;font-weight:400;text-transform:none;letter-spacing:0;margin-top:0rem;display:block;width:100%;text-align:center;}
#node-block_07cd1191{width:auto;padding-top:24px;padding-right:24px;padding-bottom:24px;padding-left:24px;background:transparent;position:relative;float:left;grid-column:5 / 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_7ff94497{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_5c0f7754{width:100%;min-height:220px;padding-top:4rem;padding-right:4vw;padding-bottom:0rem;padding-left:4vw;display:grid;gap:1.25rem;color:#0a0a0a;border-bottom:1px solid #ebe5dc;grid-column:span 6 / span 6;grid-row:auto;background-size:cover;background-position:center center;background-repeat:no-repeat;max-width:100%;}
#node-block_e87ef8ee{width:auto;min-height:140px;padding-top:24px;padding-right:19px;padding-bottom:204px;padding-left:24px;background:transparent;display:grid;max-width:none;justify-self:stretch;grid-column:span 12 / span 12;min-width:0;grid-template-columns:repeat(12, minmax(0, 1fr));gap:1rem;color:#0a0a0a;}
#node-text_ce94c371{font-family:Outfit;font-size:6rem;line-height:0.92;color:#ffffff;max-width:none;font-weight:700;text-transform:none;letter-spacing:-0.03em;padding-right:1.9rem;grid-column:span 8 / span 8;width:auto;min-width:0;justify-self:stretch;text-align:left;margin-bottom:0rem;}
#node-text_a74a6255{font-family:Source Sans 3;font-size:1rem;line-height:1.7;color:#949494;max-width:none;grid-column:span 6 / span 6;width:auto;min-width:0;justify-self:stretch;text-align:left;grid-row:auto;margin-top:0rem;font-weight:400;text-transform:none;letter-spacing:0;}
#node-section_b8d8bb64{width:100%;min-height:220px;padding-top:4rem;padding-right:4vw;padding-bottom:0rem;padding-left:4vw;background:#ffffff;display:grid;gap:1.25rem;color:#151515;border-bottom:1px solid #ebe5dc;max-width:100%;}
#node-block_b8c91eec{width:auto;min-height:140px;padding-top:24px;padding-right:24px;padding-bottom:24px;padding-left:24px;background:#ffffff;display:grid;gap:0.95rem;max-width:none;justify-self:stretch;grid-column:span 12 / span 12;min-width:0;color:#0a0a0a;border-color:#dccfbe;}
#node-text_fa7e6f3d{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;padding-right:1.9rem;grid-column:span 12 / span 12;width:auto;min-width:0;justify-self:stretch;text-align:center;margin-bottom:0rem;}
#node-text_26c6dfb0{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-right:1.9rem;grid-column:span 12 / span 12;width:auto;min-width:0;justify-self:stretch;text-align:center;margin-top:0rem;margin-bottom:0rem;}
#node-text_243af692{font-family:Source Sans 3;font-size:1rem;line-height:1.7;color:#374151;max-width:none;grid-column:4 / span 6;width:auto;min-width:0;justify-self:stretch;text-align:center;grid-row:auto;margin-top:0rem;font-weight:400;text-transform:none;letter-spacing:0;}
#node-section_340f7e92{width:100%;min-height:220px;padding-top:0rem;padding-right:4vw;padding-bottom:4rem;padding-left:4vw;background:transparent;display:grid;gap:1.25rem;color:#0a0a0a;border-bottom:1px solid #ebe5dc;max-width:100%;}
#node-block_3b9d3daa{width:100%;min-height:140px;padding-top:24px;padding-right:24px;padding-bottom:24px;padding-left:24px;display:grid;background:transparent;color:#0a0a0a;grid-template-columns:repeat(12, minmax(0, 1fr));gap:1rem;max-width:100%;}
#node-block_934872cb{width:auto;padding-top:0px;padding-right:0px;padding-bottom:0px;padding-left:0px;display:flex;gap:0.78rem;padding:1.2rem;border:none;border-radius:0px;box-shadow:none;border-width:0px;border-style:none;color:#0a0a0a;height:auto;flex-direction:row;flex-wrap:wrap;align-items:stretch;justify-content:flex-start;align-content:flex-end;grid-column:span 4 / span 4;max-width:none;min-width:0;justify-self:stretch;background:transparent;}
#node-image_48467ae4{position:relative;display:block;width:100%;min-height:180px;background:#f1f1f1;border:1px dashed #d8d8d8;max-width:100%;height:auto;}
#node-block_f2185fab{width:auto;padding-top:0px;padding-right:0px;padding-bottom:0px;padding-left:0px;display:flex;gap:0.78rem;padding:1.2rem;border:none;border-radius:0px;box-shadow:none;border-width:1px;border-style:none;color:#0a0a0a;height:auto;flex-direction:row;flex-wrap:wrap;align-items:stretch;justify-content:flex-start;align-content:flex-end;grid-column:span 4 / span 4;max-width:none;min-width:0;justify-self:stretch;background:transparent;}
#node-image_3e3a5c92{position:relative;display:block;width:100%;min-height:180px;background:#f1f1f1;border:1px dashed #d8d8d8;max-width:100%;height:auto;}
#node-block_96077f0a{width:auto;padding-top:0px;padding-right:0px;padding-bottom:0px;padding-left:0px;display:flex;gap:0.78rem;padding:1.2rem;border:none;border-radius:0px;box-shadow:none;border-width:0px;border-style:none;color:#0a0a0a;height:auto;flex-direction:row;flex-wrap:wrap;align-items:stretch;justify-content:flex-start;align-content:flex-end;grid-column:span 4 / span 4;max-width:none;min-width:0;justify-self:stretch;background:transparent;}
#node-image_d89f0ba2{position:relative;display:block;width:100%;min-height:180px;background:#f1f1f1;border:1px dashed #d8d8d8;max-width:100%;height:auto;}
#node-block_6bbc8941{width:auto;padding-top:0px;padding-right:0px;padding-bottom:0px;padding-left:0px;display:block;padding:1.2rem;border:none;border-radius:0px;box-shadow:none;border-width:0px;border-style:none;color:#0a0a0a;height:auto;flex-direction:row;flex-wrap:wrap;align-items:stretch;justify-content:flex-start;grid-column:span 4 / span 4;max-width:none;min-width:0;justify-self:stretch;margin-top:0rem;background:transparent;}
#node-text_8ef15d6b{font-family:Outfit;font-size:1.35rem;line-height:1.16;color:#0a0a0a;max-width:none;font-weight:600;text-transform:none;letter-spacing:-0.01em;text-align:left;margin-top:0px;grid-column:span 12 / span 12;width:auto;min-width:0;justify-self:stretch;padding-bottom:0px;margin-bottom:0px;}
#node-image_c502fb47{position:relative;display:block;width:100%;min-height:180px;background:#f1f1f1;border:1px dashed #d8d8d8;max-width:100%;height:auto;}
#node-block_371711e2{width:auto;padding-top:0px;padding-right:0px;padding-bottom:0px;padding-left:0px;display:block;padding:1.2rem;border:none;border-radius:0px;box-shadow:none;border-width:0px;border-style:none;color:#0a0a0a;height:auto;flex-direction:row;flex-wrap:wrap;align-items:stretch;justify-content:flex-start;grid-column:span 4 / span 4;max-width:none;min-width:0;justify-self:stretch;margin-top:0rem;background:transparent;}
#node-text_7d584413{font-family:Outfit;font-size:1.35rem;line-height:1.16;color:#0a0a0a;max-width:none;font-weight:600;text-transform:none;letter-spacing:-0.01em;text-align:left;margin-top:0px;grid-column:span 12 / span 12;width:auto;min-width:0;justify-self:stretch;padding-bottom:0px;margin-bottom:0px;}
#node-image_c71ef7cb{position:relative;display:block;width:100%;min-height:180px;background:#f1f1f1;border:1px dashed #d8d8d8;max-width:100%;height:auto;}
#node-block_aca61597{width:auto;padding-top:0px;padding-right:0px;padding-bottom:0px;padding-left:0px;display:block;padding:1.2rem;border:none;border-radius:0px;box-shadow:none;border-width:0px;border-style:none;color:#0a0a0a;height:auto;flex-direction:row;flex-wrap:wrap;align-items:stretch;justify-content:flex-start;grid-column:span 4 / span 4;max-width:none;min-width:0;justify-self:stretch;margin-top:0rem;background:transparent;}
#node-text_586b448f{font-family:Outfit;font-size:1.35rem;line-height:1.16;color:#0a0a0a;max-width:none;font-weight:600;text-transform:none;letter-spacing:-0.01em;text-align:left;margin-top:0px;grid-column:span 12 / span 12;width:auto;min-width:0;justify-self:stretch;padding-bottom:0px;margin-bottom:0px;}
#node-image_aaadf2b0{position:relative;display:block;width:100%;min-height:180px;background:#f1f1f1;border:1px dashed #d8d8d8;max-width:100%;height:auto;}
#node-section_9d467696{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;grid-column:span 4 / span 4;grid-row:auto;border-color:#dccfbe;max-width:100%;}
#node-block_0e4905bd{width:auto;min-height:140px;padding-top:24px;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_1528e366{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_102459ee{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_4f73b8ff{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_c6f701cb{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_32154ef7{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_9b9dad2e{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 11 / span 11;width:auto;min-width:0;justify-self:stretch;padding-bottom:0px;margin-bottom:0px;}
#node-text_82d8f03d{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_09d4c6ca{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-block_cd39eb55{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_1707b343{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_a5362638{width:100%;min-height:220px;padding-top:4rem;padding-right:4vw;padding-bottom:4rem;padding-left:4vw;background:#000000;display:grid;gap:1.25rem;color:#ffffff;border-bottom:1px solid #ebe5dc;border-color:#dccfbe;max-width:100%;}
#node-block_d7d0fe83{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_59180b8b{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_897fcda1{font-family:Outfit;font-size:6rem;line-height:0.92;color:#ffffff;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_8ed78ea3{font-family:Source Sans 3;font-size:1rem;line-height:1.7;color:#949494;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_cdd00ffe{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_51cca818{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_a549de91{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_d4ed9620{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_0a42b548{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_2146054f{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_f43cdd97{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_73e3aab9{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_1f375a73{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_e2993156{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_8205bbea{width:100%;object-fit:contain;position:relative;float:left;height:auto;}
#node-block_d2bba89b{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_86c47bba{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_23a38e34:hover{background:#ffffff !important;color:#ff2424 !important;}
#node-button_e1898f72:hover{background:#ff2424 !important;color:#ffffff !important;}
#node-button_51cca818:hover{background:#ff2424 !important;color:#ffffff !important;}
#node-button_f43cdd97:hover{background:#ffffff !important;color:#ff2424 !important;}
#node-button_1707b343:hover{background:#ff2424 !important;color:#ffffff !important;}
#node-button_798aba89:hover{background:#ffffff !important;color:#ff2424 !important;}
#node-button_d06ec2f5:hover{background:#ffffff !important;color:#ff2424 !important;}
#node-button_7ff94497:hover{background:#ff2424 !important;color:#ffffff !important;}

@media (min-width: 1281px) {
#node-section_d3086f8c{width:100%;min-height:100%;padding-top:3.5rem;padding-right:4vw;padding-bottom:4rem;padding-left:4vw;display:grid;gap:1.25rem;color:#0a0a0a;border-bottom:1px solid #ebe5dc;grid-template-columns:1.05fr 0.95fr;align-items:center;height:100vh;align-content:flex-start;background-position:center center;background-size:contain;background-repeat:no-repeat;max-width:100%;border-color:#dccfbe;}
#node-block_c00d8ea3{width:auto;padding-top:5px;padding-right:5px;padding-bottom:5px;padding-left:5px;background:rgba(255, 255, 255, 0);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;z-index:3;}
#node-block_5ca17c20{width:auto;padding-top:2px;padding-right:2px;padding-bottom:2px;padding-left:2px;background:rgba(214, 214, 214, 0);position:relative;float:left;max-width:none;height:auto;grid-column:span 2 / span 2;grid-row:auto;min-width:0;justify-self:stretch;}
#node-image_95f7f30c{width:65%;object-fit:contain;position:relative;float:left;height:auto;max-width:none;}
#node-block_1e592fa7{width:auto;padding-top:2px;padding-right:2px;padding-bottom:2px;padding-left:2px;background:rgba(255, 255, 255, 0);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;}
#node-block_b2c87409{width:auto;min-height:140px;padding-top:24px;padding-right:24px;padding-bottom:24px;padding-left:24px;display:block;gap:0.5rem;max-width:none;justify-self:stretch;grid-column:span 9 / span 9;grid-row:auto;row-gap:0.5rem;column-gap:0.5rem;min-width:0;margin-top:91px;background:rgba(255, 255, 255, 0);}
#node-text_89d00ab9{font-family:Outfit;font-size:8.5rem;line-height:0.92;color:#ff3131;max-width:none;letter-spacing:-0.04em;text-transform:none;font-weight:700;grid-column:span 9 / span 9;grid-row:auto;width:auto;min-width:0;justify-self:stretch;height:auto;margin-bottom:0rem;padding-bottom:0rem;margin-top:1.7rem;}
#node-text_282ff261{font-family:Outfit;font-size:8.5rem;line-height:0.92;color:#ffffff;max-width:none;font-weight:700;grid-column:span 12 / span 12;min-width:0;justify-self:stretch;margin-bottom:0px;margin-top:0px;text-transform:none;letter-spacing:-0.03em;display:block;height:auto;width:61.05rem;padding-right:0px;}
#node-text_ca58eb4c{font-family:Source Sans 3;font-size:1.05rem;line-height:1.72;color:#ffffff;max-width:none;grid-column:span 10 / span 10;grid-row:auto;width:44.2rem;min-width:0;justify-self:stretch;padding-bottom:0rem;padding-right:0rem;font-weight:400;letter-spacing:0;text-transform:none;}
#node-block_4a7b34d6{width:auto;padding-top:10px;padding-right:24px;padding-bottom:24px;padding-left:0px;background:rgba(255, 255, 255, 0);display:flex;flex-wrap:wrap;gap:0.8rem;align-items:center;grid-column:span 11 / span 11;grid-row:auto;min-width:0;justify-self:stretch;height:auto;}
#node-button_23a38e34{display:inline-flex;padding-top:0.95rem;padding-right:1.45rem;padding-bottom:1rem;padding-left:1.45rem;background:#000000;color:#ffffff;border:1px solid #a1442a;border-radius:999px;transition:background-color 180ms ease, color 180ms ease, border-color 180ms ease, transform 180ms ease, box-shadow 180ms ease;max-width:100%;font-family:Source Sans 3;font-weight:600;text-transform:none;line-height:1.1;letter-spacing:0;font-size:1rem;}
#node-button_e1898f72{display:inline-flex;padding-top:0.78rem;padding-right:1.3rem;padding-bottom:0.78rem;padding-left:1.3rem;background:#ffffff;color:#000000;border:3px solid #fe1616;border-radius:999px;border-width:3px;border-style:solid;border-color:#fe1616;transition:background-color 180ms ease, color 180ms ease, border-color 180ms ease, transform 180ms ease, box-shadow 180ms ease;max-width:100%;font-family:Source Sans 3;font-weight:600;text-transform:none;line-height:1.1;letter-spacing:0;font-size:1rem;}
#node-section_0ad9704b{width:100%;min-height:220px;padding-top:1.5rem;padding-right:4vw;padding-bottom:1.5rem;padding-left:4vw;background:#ff3131;display:grid;color:#0a0a0a;border-bottom:1px solid #ebe5dc;text-align:center;border-color:#dccfbe;gap:1.25rem;max-width:100%;}
#node-block_a4f05fcb{width:auto;min-height:140px;padding-top:24px;padding-right:24px;padding-bottom:24px;padding-left:24px;background:transparent;display:grid;gap:0.95rem;max-width:none;justify-self:stretch;grid-column:span 9 / span 9;min-width:0;color:#0a0a0a;}
#node-text_f4fe92c8{font-family:Outfit;font-size:8.5rem;line-height:0.92;color:#ffffff;max-width:none;font-weight:700;grid-column:span 12 / span 12;width:auto;min-width:0;justify-self:stretch;text-transform:none;letter-spacing:-0.03em;}
#node-section_63ec612b{width:100%;min-height:220px;padding-top:4rem;padding-right:4vw;padding-bottom:4rem;padding-left:4vw;display:grid;color:#0a0a0a;border-bottom:1px solid #ebe5dc;grid-template-columns:repeat(12, minmax(0, 1fr));gap:1rem;background:#ffffff;border-color:#dccfbe;grid-column:5 / span 8;grid-row:auto;max-width:100%;}
#node-block_3fead6d8{width:auto;min-height:140px;padding-top:0px;padding-right:24px;padding-bottom:24px;padding-left:24px;background:#ffffff;display:grid;max-width:none;justify-self:stretch;grid-column:span 12 / span 12;min-width:0;grid-template-columns:repeat(12, minmax(0, 1fr));gap:1rem;color:#0a0a0a;border-color:#dccfbe;}
#node-text_16dd7857{font-family:Outfit;font-size:8.5rem;line-height:0.92;color:#0a0a0a;max-width:16ch;font-weight:700;margin-bottom:0px;text-transform:none;letter-spacing:-0.03em;padding-top:0px;margin-top:0px;grid-column:2 / span 11;width:auto;min-width:0;justify-self:stretch;grid-row:auto;text-align:right;}
#node-text_26b6cf2b{font-family:Source Sans 3;font-size:1.05rem;line-height:1.72;color:#0a0a0a;max-width:none;font-weight:400;text-transform:none;letter-spacing:0;grid-column:6 / span 7;width:auto;min-width:0;justify-self:stretch;grid-row:auto;text-align:right;}
#node-section_fe72d6b3{width:100%;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_f28dcbc7{width:100%;padding-top:24px;padding-right:24px;padding-bottom:24px;padding-left:24px;background:#ff3131;display:grid;grid-template-columns:repeat(2, minmax(0, 1fr));border:1px solid #dccfbe;border-radius:18px;overflow:hidden;gap:0;color:#0a0a0a;border-color:#dccfbe;border-width:1px;border-style:solid;grid-column:2 / span 10;grid-row:auto;max-width:100%;}
#node-block_772dbb73{width:100%;padding-top:24px;padding-right:24px;padding-bottom:24px;padding-left:24px;background:#ffffff;display:grid;grid-template-rows:auto 1fr auto;min-height:100%;border-left:0;max-width:100%;}
#node-block_344a303b{width:100%;padding-top:1.15rem;padding-right:1.3rem;padding-bottom:1.15rem;padding-left:1.3rem;background:#ffffff;display:flex;align-items:center;gap:0.7rem;border-bottom:1px solid #eadfd3;color:#0a0a0a;border-color:#dccfbe;max-width:100%;}
#node-text_8ac4aa0f{font-family:Inter;font-size:1rem;line-height:1.1;color:#ffffff;max-width:16ch;width:2rem;height:2rem;border-radius:999px;display:inline-flex;align-items:center;justify-content:center;background:#f26b67;font-weight:800;}
#node-text_6c2ee7a8{font-family:Outfit;font-size:3.2rem;line-height:1.08;color:#111827;max-width:16ch;font-weight:700;text-transform:none;letter-spacing:-0.02em;}
#node-block_60604202{width:100%;padding-top:1.45rem;padding-right:1.3rem;padding-bottom:1.45rem;padding-left:1.3rem;background:#ffffff;display:grid;gap:1.4rem;color:#0a0a0a;border-color:#dccfbe;max-width:100%;}
#node-block_fb74740f{width:100%;padding-top:24px;padding-right:24px;padding-bottom:24px;padding-left:24px;background:#ffffff;display:grid;grid-template-columns:auto minmax(0, 1fr);gap:0.95rem;align-items:start;height:auto;color:#0a0a0a;border-color:#dccfbe;max-width:100%;}
#node-icon_332854fd{width:2.3rem;height:2.3rem;color:#f26b67;justify-self:start;align-self:start;max-width:100%;}
#node-block_25277709{width:100%;padding-top:0px;padding-right:24px;padding-bottom:0px;padding-left:24px;background:#ffffff;display:block;gap:0.35rem;color:#0a0a0a;border-color:#dccfbe;max-width:100%;}
#node-text_aa3f452f{font-family:Outfit;font-size:1.5rem;line-height:1.16;color:#111827;max-width:none;font-weight:600;margin-top:0rem;margin-bottom:0rem;width:276px;padding-bottom:0px;text-transform:none;letter-spacing:-0.01em;}
#node-text_937c32cd{font-family:Source Sans 3;font-size:1.05rem;line-height:1.72;color:#374151;max-width:26ch;margin-top:0rem;font-weight:400;text-transform:none;letter-spacing:0;}
#node-block_2b1d8c50{width:100%;padding-top:24px;padding-right:24px;padding-bottom:24px;padding-left:24px;background:transparent;display:grid;grid-template-columns:auto minmax(0, 1fr);gap:0.95rem;align-items:start;height:auto;color:#0a0a0a;max-width:100%;}
#node-icon_da619f0a{width:2.3rem;height:2.3rem;color:#f26b67;justify-self:start;align-self:start;max-width:100%;}
#node-block_c766e993{width:100%;padding-top:0px;padding-right:24px;padding-bottom:24px;padding-left:24px;background:#ffffff;display:block;color:#0a0a0a;border-color:#dccfbe;max-width:100%;}
#node-text_3058fb1b{font-family:Outfit;font-size:1.5rem;line-height:1.16;color:#111827;max-width:none;font-weight:600;margin-bottom:0rem;padding-bottom:0rem;width:321px;margin-top:0px;text-transform:none;letter-spacing:-0.01em;}
#node-text_5c7f0935{font-family:Source Sans 3;font-size:1.05rem;line-height:1.72;color:#374151;max-width:26ch;margin-top:0rem;font-weight:400;text-transform:none;letter-spacing:0;}
#node-block_e3fd1605{width:100%;padding-top:24px;padding-right:24px;padding-bottom:24px;padding-left:24px;background:transparent;display:grid;grid-template-columns:auto minmax(0, 1fr);gap:0.95rem;align-items:start;color:#0a0a0a;max-width:100%;}
#node-icon_bfeb9e75{width:2.3rem;height:2.3rem;color:#f26b67;justify-self:start;align-self:start;max-width:100%;}
#node-block_e62656e4{width:100%;padding-top:0px;padding-right:24px;padding-bottom:24px;padding-left:24px;background:#ffffff;display:block;color:#0a0a0a;border-color:#dccfbe;max-width:100%;}
#node-text_ad7620a6{font-family:Outfit;font-size:1.5rem;line-height:1.16;color:#111827;max-width:16ch;font-weight:600;padding-top:0rem;margin-top:0rem;margin-bottom:0rem;text-transform:none;letter-spacing:-0.01em;}
#node-text_974f1a52{font-family:Source Sans 3;font-size:1.05rem;line-height:1.72;color:#374151;max-width:26ch;margin-top:0rem;font-weight:400;text-transform:none;letter-spacing:0;}
#node-block_1b2a1e73{width:100%;padding-top:1rem;padding-right:1.3rem;padding-bottom:1rem;padding-left:1.3rem;background:#ffffff;display:grid;grid-template-columns:auto minmax(0, 1fr);gap:0.9rem;align-items:start;border-top:1px solid #eadfd3;color:#0a0a0a;border-color:#dccfbe;max-width:100%;}
#node-icon_ed10adae{width:2rem;height:2rem;color:#f26b67;justify-self:start;align-self:start;max-width:100%;}
#node-block_14c03f12{width:100%;padding-top:0px;padding-right:24px;padding-bottom:24px;padding-left:24px;background:#ffffff;display:block;gap:0.35rem;color:#0a0a0a;border-color:#dccfbe;max-width:100%;}
#node-text_39c3014b{font-family:Outfit;font-size:1.5rem;line-height:1.16;color:#111827;max-width:none;font-weight:600;width:336px;text-transform:none;letter-spacing:-0.01em;margin-top:0px;}
#node-block_ff4cee13{width:100%;padding-top:24px;padding-right:24px;padding-bottom:24px;padding-left:24px;background:#ffffff;display:grid;grid-template-rows:auto 1fr auto;min-height:100%;border-left:1px solid #eadfd3;max-width:100%;}
#node-block_39239b88{width:100%;padding-top:1.15rem;padding-right:1.3rem;padding-bottom:1.15rem;padding-left:1.3rem;background:#ffffff;display:flex;align-items:center;gap:0.7rem;border-bottom:1px solid #eadfd3;color:#0a0a0a;border-color:#dccfbe;max-width:100%;}
#node-text_40ecfa96{font-family:Inter;font-size:1rem;line-height:1.1;color:#ffffff;max-width:16ch;width:2rem;height:2rem;border-radius:999px;display:inline-flex;align-items:center;justify-content:center;background:#58bb6f;font-weight:800;}
#node-text_27a9f4e6{font-family:Outfit;font-size:3.2rem;line-height:1.08;color:#111827;max-width:16ch;font-weight:700;text-transform:none;letter-spacing:-0.02em;}
#node-block_73fe26be{width:100%;padding-top:1.45rem;padding-right:1.3rem;padding-bottom:1.45rem;padding-left:1.3rem;background:transparent;display:grid;gap:1.4rem;color:#0a0a0a;max-width:100%;}
#node-block_c3c34cd2{width:100%;padding-top:24px;padding-right:24px;padding-bottom:24px;padding-left:24px;background:transparent;display:grid;grid-template-columns:auto minmax(0, 1fr);gap:0.95rem;align-items:start;height:auto;color:#0a0a0a;max-width:100%;}
#node-icon_bd032e67{width:2.3rem;height:2.3rem;color:#58bb6f;justify-self:start;align-self:start;max-width:100%;}
#node-block_1b3e83d3{width:100%;padding-top:0px;padding-right:24px;padding-bottom:24px;padding-left:24px;background:transparent;display:block;gap:0.35rem;color:#0a0a0a;max-width:100%;}
#node-text_0c7f421a{font-family:Outfit;font-size:1.5rem;line-height:1.16;color:#111827;max-width:16ch;font-weight:600;margin-top:0rem;margin-bottom:0rem;padding-bottom:0rem;text-transform:none;letter-spacing:-0.01em;}
#node-text_6e659b3b{font-family:Source Sans 3;font-size:1.05rem;line-height:1.72;color:#374151;max-width:26ch;margin-top:0rem;font-weight:400;text-transform:none;letter-spacing:0;}
#node-block_d7cb3ddb{width:100%;padding-top:24px;padding-right:24px;padding-bottom:24px;padding-left:24px;background:transparent;display:grid;grid-template-columns:auto minmax(0, 1fr);gap:0.95rem;align-items:start;height:auto;color:#0a0a0a;max-width:100%;}
#node-icon_d6ce5eb8{width:2.3rem;height:2.3rem;color:#58bb6f;justify-self:start;align-self:start;max-width:100%;}
#node-block_f7e66869{width:100%;padding-top:0px;padding-right:24px;padding-bottom:24px;padding-left:24px;background:transparent;display:block;gap:0.35rem;color:#0a0a0a;max-width:100%;}
#node-text_4fbc1997{font-family:Outfit;font-size:1.5rem;line-height:1.16;color:#111827;max-width:16ch;font-weight:600;margin-top:0rem;margin-bottom:0rem;padding-bottom:0rem;text-transform:none;letter-spacing:-0.01em;}
#node-text_e793e0d2{font-family:Source Sans 3;font-size:1.05rem;line-height:1.72;color:#374151;max-width:26ch;margin-top:0.05rem;font-weight:400;text-transform:none;letter-spacing:0;}
#node-block_31314715{width:100%;padding-top:24px;padding-right:24px;padding-bottom:24px;padding-left:24px;background:transparent;display:grid;grid-template-columns:auto minmax(0, 1fr);gap:0.95rem;align-items:start;height:auto;color:#0a0a0a;max-width:100%;}
#node-icon_98fc500b{width:2.3rem;height:2.3rem;color:#58bb6f;justify-self:start;align-self:start;max-width:100%;}
#node-block_dfb5902f{width:100%;padding-top:0px;padding-right:24px;padding-bottom:24px;padding-left:24px;background:transparent;display:block;gap:0.35rem;margin-top:0%;color:#0a0a0a;max-width:100%;}
#node-text_d5e3124e{font-family:Outfit;font-size:1.5rem;line-height:1.16;color:#111827;max-width:16ch;font-weight:600;padding-top:0rem;margin-top:0rem;margin-bottom:0rem;text-transform:none;letter-spacing:-0.01em;}
#node-text_83980d64{font-family:Source Sans 3;font-size:1.05rem;line-height:1.72;color:#374151;max-width:26ch;padding-top:0rem;margin-top:0rem;font-weight:400;text-transform:none;letter-spacing:0;}
#node-block_ca416f2b{width:100%;padding-top:1rem;padding-right:1.3rem;padding-bottom:1rem;padding-left:1.3rem;background:transparent;display:grid;grid-template-columns:auto minmax(0, 1fr);gap:0.9rem;align-items:start;border-top:1px solid #eadfd3;color:#0a0a0a;max-width:100%;}
#node-icon_c1d46837{width:2rem;height:2rem;color:#58bb6f;justify-self:start;align-self:start;max-width:100%;}
#node-block_cdfba456{width:100%;padding-top:0px;padding-right:24px;padding-bottom:24px;padding-left:24px;background:transparent;display:block;height:auto;gap:1rem;color:#0a0a0a;max-width:100%;}
#node-text_806207cc{font-family:Outfit;font-size:1.5rem;line-height:1.16;color:#111827;max-width:none;font-weight:600;width:320px;text-transform:none;letter-spacing:-0.01em;margin-top:0px;}
#node-section_b3b80cb3{width:100%;min-height:220px;padding-top:4rem;padding-right:4vw;padding-bottom:4rem;padding-left:4vw;background:#000000;display:grid;gap:1.25rem;color:#ffffff;border-bottom:1px solid #ebe5dc;border-color:#dccfbe;max-width:100%;}
#node-block_9d7663ec{width:100%;min-height:140px;padding-top:24px;padding-right:24px;padding-bottom:0px;padding-left:24px;background:transparent;display:grid;gap:0.95rem;max-width:68rem;justify-self:start;height:auto;color:#0a0a0a;}
#node-text_2028cf49{font-family:Outfit;font-size:8.5rem;line-height:0.92;color:#ffffff;max-width:16ch;font-weight:700;text-transform:none;letter-spacing:-0.03em;margin-bottom:0rem;}
#node-block_d0daf3a6{width:100%;min-height:140px;padding-top:0px;padding-right:24px;padding-bottom:24px;padding-left:24px;background:transparent;display:block;color:#0a0a0a;max-width:100%;}
#node-block_08c1c738{width:auto;min-height:140px;padding-top:0px;padding-right:24px;padding-bottom:24px;padding-left:24px;background:transparent;display:grid;gap:0.7rem;padding:1.2rem;border:none;border-radius:22px;box-shadow:0 12px 28px rgba(44, 31, 22, 0.06);grid-column:span 2 / span 2;max-width:none;min-width:0;justify-self:stretch;color:#0a0a0a;border-style:none;}
#node-text_a969e197{font-family:Outfit;font-size:3.2rem;line-height:1.08;color:#ffffff;max-width:none;font-weight:700;letter-spacing:-0.02em;text-transform:none;grid-column:span 12 / span 12;width:auto;min-width:0;justify-self:stretch;text-align:center;}
#node-image_cc5110a4{width:auto;object-fit:cover;position:relative;grid-column:span 12 / span 12;max-width:none;min-width:0;justify-self:stretch;height:auto;}
#node-text_3a1a0b3f{font-family:Source Sans 3;font-size:1.05rem;line-height:1.72;color:#ffffff;max-width:none;font-weight:400;text-transform:none;letter-spacing:0;text-align:center;grid-column:span 12 / span 12;width:auto;min-width:0;justify-self:stretch;}
#node-section_619c0ca8{width:100%;min-height:220px;padding-top:4rem;padding-right:4vw;padding-bottom:4rem;padding-left:4vw;background:transparent;display:grid;color:#0a0a0a;border-bottom:1px solid #ebe5dc;grid-template-columns:repeat(12, minmax(0, 1fr));gap:1rem;grid-column:6 / span 7;grid-row:auto;max-width:100%;}
#node-block_6bab10ed{width:auto;min-height:140px;padding-top:24px;padding-right:24px;padding-bottom:24px;padding-left:24px;background:rgba(255, 250, 243, 0);display:grid;gap:0.95rem;max-width:none;justify-self:stretch;grid-column:span 8 / span 8;grid-row:auto;min-width:0;}
#node-text_a9ca0b96{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-bottom:0rem;margin-bottom:0rem;grid-column:span 12 / span 12;width:auto;min-width:0;justify-self:stretch;}
#node-text_9c0b1f1a{font-family:Source Sans 3;font-size:1.05rem;line-height:1.72;color:#374151;max-width:none;grid-column:span 12 / span 12;width:auto;min-width:0;justify-self:stretch;font-weight:400;text-transform:none;letter-spacing:0;}
#node-block_72260900{width:auto;padding-top:24px;padding-right:24px;padding-bottom:24px;padding-left:0px;background:transparent;position:relative;float:left;grid-column:span 6 / 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_798aba89{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_79867a53{width:auto;min-height:140px;padding-top:24px;padding-right:24px;padding-bottom:24px;padding-left:24px;background:#ffffff;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:1rem;grid-row:auto;}
#node-block_cafaa414{width:auto;min-height:100%;padding-top:24px;padding-right:24px;padding-bottom:24px;padding-left:24px;display:flex;padding:1.2rem;border:4px solid #c20000;border-radius:0px;box-shadow:none;grid-column:span 6 / span 6;max-width:none;min-width:0;justify-self:stretch;grid-row:auto;height:auto;flex-direction:column;flex-wrap:nowrap;gap:2px;align-items:stretch;justify-content:flex-start;align-content:center;border-width:4px;border-style:solid;border-color:#c20000;}
#node-image_c59305a1{width:100%;object-fit:cover;position:relative;margin-bottom:15%;max-width:none;height:auto;grid-column:span 7 / span 7;grid-row:auto;}
#node-text_c65ff8b7{font-family:Outfit;font-size:3.2rem;line-height:1.08;color:#111827;max-width:none;font-weight:700;text-transform:none;letter-spacing:-0.02em;width:398px;margin-top:0px;text-align:left;margin-bottom:0px;}
#node-text_e0a2ad40{font-family:Source Sans 3;font-size:1.05rem;line-height:1.72;color:#374151;max-width:none;grid-column:span 8 / span 8;grid-row:auto;font-weight:400;text-transform:none;letter-spacing:0;width:306px;margin-top:0px;}
#node-block_c999ef97{width:auto;min-height:100%;padding-top:24px;padding-right:24px;padding-bottom:24px;padding-left:24px;display:flex;padding:1.2rem;border:4px solid #c20000;border-radius:0px;box-shadow:none;grid-column:span 6 / span 6;max-width:none;min-width:0;justify-self:stretch;grid-row:auto;height:auto;flex-direction:column;flex-wrap:nowrap;gap:2px;align-items:flex-start;justify-content:flex-start;align-content:flex-start;border-width:4px;border-style:solid;border-color:#c20000;}
#node-image_8263fc68{width:100%;object-fit:cover;position:relative;margin-bottom:15%;max-width:none;height:auto;grid-column:span 7 / span 7;grid-row:auto;}
#node-text_7c9280e2{font-family:Outfit;font-size:3.2rem;line-height:1.08;color:#111827;max-width:none;font-weight:700;text-transform:none;letter-spacing:-0.02em;width:625px;margin-top:0px;text-align:left;margin-bottom:0px;}
#node-text_1c721332{font-family:Source Sans 3;font-size:1.05rem;line-height:1.72;color:#374151;max-width:none;grid-column:span 8 / span 8;grid-row:auto;font-weight:400;text-transform:none;letter-spacing:0;width:306px;margin-top:0px;}
#node-block_0edfd4e2{width:auto;min-height:100%;padding-top:24px;padding-right:24px;padding-bottom:24px;padding-left:24px;display:flex;padding:1.2rem;border:4px solid #c20000;border-radius:0px;box-shadow:none;grid-column:span 6 / span 6;max-width:none;min-width:0;justify-self:stretch;grid-row:auto;height:auto;flex-direction:column;flex-wrap:nowrap;gap:2px;align-items:flex-start;justify-content:flex-start;align-content:flex-start;border-width:4px;border-style:solid;border-color:#c20000;}
#node-image_4f919c58{width:100%;object-fit:cover;position:relative;margin-bottom:15%;max-width:none;height:auto;grid-column:span 7 / span 7;grid-row:auto;}
#node-text_5b7b3ad4{font-family:Outfit;font-size:3.2rem;line-height:1.08;color:#111827;max-width:none;font-weight:700;text-transform:none;letter-spacing:-0.02em;width:633px;margin-top:0px;text-align:left;margin-bottom:0px;}
#node-text_4eb7745f{font-family:Source Sans 3;font-size:1.05rem;line-height:1.72;color:#374151;max-width:none;grid-column:span 8 / span 8;grid-row:auto;font-weight:400;text-transform:none;letter-spacing:0;width:306px;margin-top:0px;}
#node-section_3a57aca4{width:100%;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;height:auto;min-height:220px;grid-column:2 / span 4;grid-row:auto;border-color:#dccfbe;max-width:100%;}
#node-block_12111d04{width:auto;min-height:140px;padding-top:0px;padding-right:24px;padding-bottom:100px;padding-left:72px;background:transparent;display:grid;max-width:none;justify-self:stretch;grid-column:span 12 / span 12;min-width:0;border-width:0px;border:none;border-style:none;box-shadow:none;grid-template-columns:repeat(12, minmax(0, 1fr));gap:1rem;color:#0a0a0a;}
#node-text_3dee3335{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;margin-bottom:0rem;grid-column:span 12 / span 12;grid-row:auto;}
#node-text_415174b4{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;padding-bottom:0rem;padding-top:0rem;margin-top:0rem;margin-bottom:0rem;grid-column:span 12 / span 12;grid-row:auto;}
#node-text_75b69449{font-family:Outfit;font-size:8.5rem;line-height:0.92;color:#ff3131;max-width:16ch;font-weight:700;text-transform:none;letter-spacing:-0.03em;padding-top:0rem;margin-top:0rem;margin-bottom:0rem;grid-column:span 12 / span 12;grid-row:auto;}
#node-text_5cdb3c1a{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:3.7rem;padding-bottom:0rem;margin-bottom:0rem;text-align:right;grid-column:span 12 / span 12;grid-row:auto;width:auto;min-width:0;justify-self:stretch;}
#node-text_63093879{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;margin-bottom:0rem;text-align:right;grid-column:span 12 / span 12;grid-row:auto;width:auto;min-width:0;justify-self:stretch;}
#node-text_53a2b603{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;padding-top:0rem;margin-top:0rem;margin-bottom:0rem;text-align:right;grid-column:span 12 / span 12;grid-row:auto;width:auto;min-width:0;justify-self:stretch;}
#node-section_ff5bc3e4{width:100%;min-height:220px;padding-top:0.65rem;padding-right:4vw;padding-bottom:4rem;padding-left:4vw;background:#f4dfd6;display:block;color:#1f1812;border-bottom:1px solid #ebe5dc;border-color:#dccfbe;gap:1.25rem;max-width:100%;}
#node-block_bec2767e{width:100%;min-height:140px;padding-top:24px;padding-right:24px;padding-bottom:24px;padding-left:24px;display:grid;grid-template-columns:repeat(4, minmax(0, 1fr));gap:1rem;background:transparent;color:#0a0a0a;max-width:100%;}
#node-block_de7f4ad2{width:100%;min-height:100%;padding-top:24px;padding-right:24px;padding-bottom:24px;padding-left:24px;background:transparent;display:grid;gap:0.78rem;padding:1.2rem;border:4px solid #cc0000;border-radius:22px;box-shadow:0 12px 24px rgba(44, 31, 22, 0.05);border-width:4px;border-style:solid;row-gap:0rem;column-gap:0rem;color:#0a0a0a;max-width:100%;}
#node-text_11238b1b{font-family:Outfit;font-size:3.2rem;line-height:1.08;color:#0a0a0a;max-width:none;font-weight:700;text-transform:none;letter-spacing:-0.02em;text-align:left;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_137b58a1{font-family:Source Sans 3;font-size:1.05rem;line-height:1.72;color:#374151;max-width:none;grid-column:span 12 / span 12;width:auto;min-width:0;justify-self:stretch;text-align:left;font-weight:400;text-transform:none;letter-spacing:0;}
#node-block_db4b6437{width:100%;min-height:100%;padding-top:24px;padding-right:24px;padding-bottom:24px;padding-left:24px;background:transparent;display:grid;gap:0.78rem;padding:1.2rem;border:4px solid #cc0000;border-radius:22px;box-shadow:0 12px 24px rgba(44, 31, 22, 0.05);border-width:4px;border-style:solid;row-gap:0rem;column-gap:0rem;color:#0a0a0a;max-width:100%;}
#node-text_742b76ba{font-family:Outfit;font-size:3.2rem;line-height:1.08;color:#111827;max-width:none;font-weight:700;text-transform:none;letter-spacing:-0.02em;text-align:left;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_0e9e2565{font-family:Source Sans 3;font-size:1.05rem;line-height:1.72;color:#374151;max-width:none;grid-column:span 12 / span 12;width:auto;min-width:0;justify-self:stretch;text-align:left;font-weight:400;text-transform:none;letter-spacing:0;}
#node-block_7ae71967{width:100%;min-height:100%;padding-top:24px;padding-right:24px;padding-bottom:24px;padding-left:24px;background:transparent;display:grid;gap:0.78rem;padding:1.2rem;border:4px solid #cc0000;border-radius:22px;box-shadow:0 12px 24px rgba(44, 31, 22, 0.05);border-width:4px;border-style:solid;row-gap:0rem;column-gap:0rem;color:#0a0a0a;max-width:100%;}
#node-text_ebe8f9db{font-family:Outfit;font-size:3.2rem;line-height:1.08;color:#111827;max-width:none;font-weight:700;text-transform:none;letter-spacing:-0.02em;text-align:left;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_a67ad957{font-family:Source Sans 3;font-size:1.05rem;line-height:1.72;color:#374151;max-width:none;grid-column:span 12 / span 12;width:auto;min-width:0;justify-self:stretch;text-align:left;font-weight:400;text-transform:none;letter-spacing:0;}
#node-block_30387cbb{width:100%;min-height:100%;padding-top:24px;padding-right:24px;padding-bottom:24px;padding-left:24px;background:transparent;display:grid;gap:0.78rem;padding:1.2rem;border:4px solid #cc0000;border-radius:22px;box-shadow:0 12px 24px rgba(44, 31, 22, 0.05);border-width:4px;border-style:solid;row-gap:0rem;column-gap:0rem;color:#0a0a0a;max-width:100%;}
#node-text_691fa68a{font-family:Outfit;font-size:3.2rem;line-height:1.08;color:#0a0a0a;max-width:none;font-weight:700;text-transform:none;letter-spacing:-0.02em;text-align:left;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_319aa6f6{font-family:Source Sans 3;font-size:1.05rem;line-height:1.72;color:#374151;max-width:none;grid-column:span 12 / span 12;width:auto;min-width:0;justify-self:stretch;text-align:left;font-weight:400;text-transform:none;letter-spacing:0;}
#node-block_811637f1{width:100%;min-height:100%;padding-top:24px;padding-right:24px;padding-bottom:24px;padding-left:24px;background:transparent;display:grid;gap:0.78rem;padding:1.2rem;border:4px solid #cc0000;border-radius:22px;box-shadow:0 12px 24px rgba(44, 31, 22, 0.05);border-width:4px;border-style:solid;row-gap:0rem;column-gap:0rem;color:#0a0a0a;max-width:100%;}
#node-text_6953c80a{font-family:Outfit;font-size:3.2rem;line-height:1.08;color:#0a0a0a;max-width:none;font-weight:700;text-transform:none;letter-spacing:-0.02em;text-align:left;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_a7377519{font-family:Source Sans 3;font-size:1.05rem;line-height:1.72;color:#374151;max-width:none;grid-column:span 12 / span 12;width:auto;min-width:0;justify-self:stretch;text-align:left;font-weight:400;text-transform:none;letter-spacing:0;}
#node-block_ef8a0edb{width:100%;min-height:100%;padding-top:24px;padding-right:24px;padding-bottom:24px;padding-left:24px;background:transparent;display:grid;gap:0.78rem;padding:1.2rem;border:4px solid #cc0000;border-radius:22px;box-shadow:0 12px 24px rgba(44, 31, 22, 0.05);border-width:4px;border-style:solid;row-gap:0rem;column-gap:0rem;color:#0a0a0a;max-width:100%;}
#node-text_2cef1588{font-family:Outfit;font-size:3.2rem;line-height:1.08;color:#0a0a0a;max-width:none;font-weight:700;text-transform:none;letter-spacing:-0.02em;text-align:left;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_7217e270{font-family:Source Sans 3;font-size:1.05rem;line-height:1.72;color:#374151;max-width:none;grid-column:span 12 / span 12;width:auto;min-width:0;justify-self:stretch;text-align:left;font-weight:400;text-transform:none;letter-spacing:0;}
#node-block_a890723a{width:100%;min-height:100%;padding-top:24px;padding-right:24px;padding-bottom:24px;padding-left:24px;background:transparent;display:grid;gap:0.78rem;padding:1.2rem;border:4px solid #cc0000;border-radius:22px;box-shadow:0 12px 24px rgba(44, 31, 22, 0.05);border-width:4px;border-style:solid;row-gap:0rem;column-gap:0rem;color:#0a0a0a;max-width:100%;}
#node-text_e6a99488{font-family:Outfit;font-size:3.2rem;line-height:1.08;color:#0a0a0a;max-width:none;font-weight:700;text-transform:none;letter-spacing:-0.02em;text-align:left;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_a06cfacc{font-family:Source Sans 3;font-size:1.05rem;line-height:1.72;color:#374151;max-width:none;grid-column:span 12 / span 12;width:auto;min-width:0;justify-self:stretch;text-align:left;font-weight:400;text-transform:none;letter-spacing:0;}
#node-section_c64ee921{width:100%;padding-top:4rem;padding-right:4vw;padding-bottom:4rem;padding-left:4vw;background:#ffffff;display:grid;color:#0a0a0a;border-bottom:1px solid #ebe5dc;border-color:#dccfbe;grid-template-columns:repeat(12, minmax(0, 1fr));gap:1rem;grid-column:span 5 / span 5;grid-row:auto;max-width:100%;}
#node-block_1fcb8ae7{width:auto;padding-top:24px;padding-right:24px;padding-bottom:24px;padding-left:24px;background:#ffffff;display:grid;gap:0.95rem;max-width:none;justify-self:stretch;grid-column:span 12 / span 12;min-width:0;color:#0a0a0a;border-color:#dccfbe;}
#node-text_39e998fd{font-family:Outfit;font-size:8.5rem;line-height:0.92;color:#111827;max-width:none;font-weight:700;grid-column:span 12 / span 12;width:auto;min-width:0;justify-self:stretch;text-align:center;padding-bottom:0px;margin-bottom:0px;text-transform:none;letter-spacing:-0.03em;}
#node-text_6b558fc5{font-family:Source Sans 3;font-size:1.05rem;line-height:1.72;color:#374151;max-width:none;grid-column:span 12 / span 12;width:auto;min-width:0;justify-self:stretch;text-align:center;font-weight:400;text-transform:none;letter-spacing:0;}
#node-block_5621be7b{width:auto;padding-top:24px;padding-right:24px;padding-bottom:24px;padding-left:24px;background:#f4dfd6;display:grid;border:1px solid #dce5f3;border-radius:0px;overflow:hidden;box-shadow:0 18px 40px rgba(31, 58, 109, 0.08);grid-column:3 / span 8;max-width:none;min-width:0;justify-self:stretch;grid-row:auto;color:#1f1812;border-color:#dccfbe;grid-template-columns:repeat(12, minmax(0, 1fr));gap:0rem;row-gap:0rem;column-gap:0rem;}
#node-block_ceb26cad{width:auto;padding-top:24px;padding-right:24px;padding-bottom:24px;padding-left:24px;background:#ffffff;display:grid;align-content:center;justify-items:center;gap:1rem;padding:1.6rem;min-height:16rem;position:relative;color:#0a0a0a;border-color:#dccfbe;background-image:url(https://prime-el-rebuild.ewr1.vultrobjects.com/projects/aloraweb/484f3d96-4bb4-435c-b84f-4ff09851d0d8-lady-workc.png);background-size:cover;background-position:center center;background-repeat:no-repeat;grid-column:span 4 / span 4;grid-row:auto;max-width:none;min-width:0;justify-self:stretch;border-right-width:2px;border-right:2px solid #d7dce4;border-right-style:solid;}
#node-block_98ce49a6{width:4.7rem;padding-top:24px;padding-right:24px;padding-bottom:24px;padding-left:24px;background:#ffffff;position:absolute;right:1rem;bottom:1rem;height:4.7rem;border-radius:999px;border:1px solid #cfe0ff;display:flex;align-items:center;justify-content:center;box-shadow:0 12px 28px rgba(49, 104, 196, 0.14);color:#0a0a0a;border-color:#dccfbe;max-width:100%;}
#node-text_47b92007{font-family:Source Sans 3;font-size:1.35rem;line-height:1.62;color:#374151;max-width:16ch;font-weight:400;text-transform:none;letter-spacing:0;}
#node-block_e7add273{width:auto;padding-top:24px;padding-right:24px;padding-bottom:24px;padding-left:24px;background:#ffffff;display:grid;padding:1.6rem;color:#0a0a0a;border-color:#dccfbe;grid-template-columns:repeat(12, minmax(0, 1fr));gap:1rem;grid-column:span 8 / span 8;max-width:none;min-width:0;justify-self:stretch;}
#node-text_1f7361a7{font-family:Inter;font-size:0.96rem;line-height:1.1;color:#0a0a0a;max-width:none;font-weight:800;margin-bottom:0rem;grid-column:span 11 / span 11;width:auto;min-width:0;justify-self:stretch;}
#node-text_38b4932c{font-family:Outfit;font-size:3.2rem;line-height:1.08;color:#111827;max-width:none;font-weight:700;text-transform:none;letter-spacing:-0.02em;margin-top:0rem;margin-bottom:0rem;grid-column:span 12 / span 12;width:auto;min-width:0;justify-self:stretch;}
#node-block_c43bd018{width:auto;padding-top:0px;padding-right:24px;padding-bottom:0px;padding-left:0px;background:#ffffff;display:block;color:#0a0a0a;border-color:#dccfbe;grid-column:span 11 / span 11;grid-row:auto;margin-top:0%;max-width:none;min-width:0;justify-self:stretch;}
#node-block_588525fe{width:100%;padding-top:0px;padding-right:0px;padding-bottom:0px;padding-left:0px;background:transparent;display:grid;align-items:center;color:#0a0a0a;grid-template-columns:repeat(12, minmax(0, 1fr));gap:1rem;max-width:100%;}
#node-icon_50c4b814{width:auto;height:37px;color:#949494;justify-self:stretch;align-self:start;grid-column:span 2 / span 2;grid-row:auto;max-width:none;min-width:0;padding-top:0px;margin-top:0px;}
#node-text_c3d7ab2c{font-family:Outfit;font-size:1.5rem;line-height:1.16;color:#111827;max-width:none;font-weight:600;text-transform:none;letter-spacing:-0.01em;grid-column:span 10 / span 10;width:auto;min-width:0;justify-self:stretch;margin-top:0rem;padding-top:0rem;margin-bottom:0rem;}
#node-block_741f871e{width:auto;padding-top:0px;padding-right:24px;padding-bottom:0px;padding-left:0px;background:#ffffff;display:block;color:#0a0a0a;border-color:#dccfbe;grid-column:span 11 / span 11;grid-row:auto;margin-top:0%;max-width:none;min-width:0;justify-self:stretch;}
#node-block_39aa8bd3{width:100%;padding-top:0px;padding-right:0px;padding-bottom:0px;padding-left:0px;background:transparent;display:grid;align-items:center;color:#0a0a0a;grid-template-columns:repeat(12, minmax(0, 1fr));gap:1rem;max-width:100%;}
#node-icon_90035623{width:auto;height:37px;color:#949494;justify-self:stretch;align-self:start;grid-column:span 2 / span 2;grid-row:auto;max-width:none;min-width:0;padding-top:0px;margin-top:0px;}
#node-text_a7356338{font-family:Outfit;font-size:1.5rem;line-height:1.16;color:#111827;max-width:none;font-weight:600;text-transform:none;letter-spacing:-0.01em;grid-column:span 10 / span 10;width:auto;min-width:0;justify-self:stretch;margin-top:0rem;padding-top:0rem;margin-bottom:0rem;}
#node-block_26d043c1{width:auto;padding-top:0px;padding-right:24px;padding-bottom:0px;padding-left:0px;background:#ffffff;display:block;color:#0a0a0a;border-color:#dccfbe;grid-column:span 11 / span 11;grid-row:auto;margin-top:0%;max-width:none;min-width:0;justify-self:stretch;}
#node-block_12cd155c{width:100%;padding-top:0px;padding-right:0px;padding-bottom:0px;padding-left:0px;background:transparent;display:grid;align-items:center;color:#0a0a0a;grid-template-columns:repeat(12, minmax(0, 1fr));gap:1rem;max-width:100%;}
#node-icon_97cce732{width:auto;height:37px;color:#949494;justify-self:stretch;align-self:start;grid-column:span 2 / span 2;grid-row:auto;max-width:none;min-width:0;padding-top:0px;margin-top:0px;}
#node-text_2a4b95e1{font-family:Outfit;font-size:1.5rem;line-height:1.16;color:#111827;max-width:none;font-weight:600;text-transform:none;letter-spacing:-0.01em;grid-column:span 10 / span 10;width:auto;min-width:0;justify-self:stretch;margin-top:0rem;padding-top:0rem;margin-bottom:0rem;}
#node-block_1f51654f{width:auto;padding-top:0px;padding-right:24px;padding-bottom:0px;padding-left:0px;background:#ffffff;display:block;color:#0a0a0a;border-color:#dccfbe;grid-column:span 11 / span 11;grid-row:auto;margin-top:0%;max-width:none;min-width:0;justify-self:stretch;}
#node-block_1ff8b9df{width:100%;padding-top:0px;padding-right:0px;padding-bottom:0px;padding-left:0px;background:transparent;display:grid;align-items:center;color:#0a0a0a;grid-template-columns:repeat(12, minmax(0, 1fr));gap:1rem;max-width:100%;}
#node-text_d773e5bb{font-family:Outfit;font-size:1.5rem;line-height:1.16;color:#111827;max-width:none;font-weight:600;text-transform:none;letter-spacing:-0.01em;grid-column:span 10 / span 10;width:auto;min-width:0;justify-self:stretch;margin-top:0rem;padding-top:0rem;margin-bottom:0rem;}
#node-text_b32d5796{font-family:Outfit;font-size:8.5rem;line-height:0.92;color:#111827;max-width:none;font-weight:700;text-align:center;justify-self:stretch;grid-column:span 12 / span 12;width:auto;min-width:0;text-transform:none;letter-spacing:-0.03em;}
#node-block_21933d32{width:auto;padding-top:24px;padding-right:24px;padding-bottom:24px;padding-left:24px;background:#ffffff;display:grid;grid-column:span 12 / span 12;max-width:none;min-width:0;justify-self:stretch;color:#0a0a0a;border-color:#dccfbe;grid-template-columns:repeat(12, minmax(0, 1fr));gap:1rem;}
#node-block_37609dd8{width:auto;padding-top:24px;padding-right:24px;padding-bottom:24px;padding-left:24px;background:#ffffff;display:grid;text-align:center;padding:1.35rem 1rem;border:1px solid #dce5f3;border-radius:22px;box-shadow:0 12px 28px rgba(31, 58, 109, 0.06);grid-column:span 4 / span 4;grid-row:auto;color:#0a0a0a;border-color:#dccfbe;max-width:none;min-width:0;justify-self:stretch;grid-template-columns:repeat(12, minmax(0, 1fr));gap:1rem;}
#node-block_7b4296ce{width:auto;padding-top:5px;padding-right:24px;padding-bottom:24px;padding-left:24px;background:#ffffff;height:4.3rem;border-radius:999px;display:flex;align-items:center;justify-content:center;grid-column:span 12 / span 12;grid-row:auto;color:#0a0a0a;border-color:#dccfbe;max-width:none;min-width:0;justify-self:stretch;}
#node-icon_0a01931b{width:2.85rem;height:2.85rem;color:#0a0a0a;justify-self:start;align-self:start;max-width:100%;}
#node-text_bc77171b{font-family:Outfit;font-size:3.2rem;line-height:1.08;color:#111827;max-width:none;font-weight:700;grid-column:span 12 / span 12;width:auto;min-width:0;justify-self:stretch;text-transform:none;letter-spacing:-0.02em;}
#node-block_d104a777{width:auto;padding-top:0px;padding-right:0px;padding-bottom:0px;padding-left:24px;background:#14b8a6;height:1px;opacity:0.35;border-width:2px;border:2px solid #dccfbe;border-style:solid;grid-column:span 12 / span 12;max-width:none;min-width:0;justify-self:stretch;}
#node-text_3e49ee4d{font-family:Inter;font-size:0.92rem;line-height:1.1;color:#14b8a6;max-width:none;font-weight:700;padding-right:0rem;grid-column:span 12 / span 12;width:auto;min-width:0;justify-self:stretch;}
#node-text_4c147afb{font-family:Outfit;font-size:1.5rem;line-height:1.16;color:#ff3131;max-width:none;font-weight:600;padding-right:0rem;grid-column:span 12 / span 12;width:auto;min-width:0;justify-self:stretch;margin-top:0rem;text-transform:none;letter-spacing:-0.01em;}
#node-block_1b039e6c{width:auto;padding-top:24px;padding-right:24px;padding-bottom:24px;padding-left:24px;background:#000000;display:grid;text-align:center;padding:1.35rem 1rem;border:1px solid #dce5f3;border-radius:22px;box-shadow:0 12px 28px rgba(31, 58, 109, 0.06);color:#ffffff;border-color:#dccfbe;grid-column:span 4 / span 4;max-width:none;min-width:0;justify-self:stretch;grid-template-columns:repeat(12, minmax(0, 1fr));gap:1rem;grid-row:auto;}
#node-block_1b82ca94{width:auto;padding-top:12px;padding-right:24px;padding-bottom:24px;padding-left:24px;background:transparent;height:4.3rem;border-radius:999px;display:flex;align-items:center;justify-content:center;grid-column:span 12 / span 12;max-width:none;min-width:0;justify-self:stretch;color:#0a0a0a;}
#node-icon_576a0b72{width:2.85rem;height:2.85rem;color:#ff3131;justify-self:start;align-self:start;grid-column:span 2 / span 2;grid-row:auto;max-width:100%;}
#node-text_56705c4d{font-family:Outfit;font-size:3.2rem;line-height:1.08;color:#ffffff;max-width:none;font-weight:700;grid-column:span 12 / span 12;width:auto;min-width:0;justify-self:stretch;grid-row:auto;text-transform:none;letter-spacing:-0.02em;}
#node-block_337617fa{width:auto;padding-top:0px;padding-right:24px;padding-bottom:0px;padding-left:24px;background:#a855f7;height:0px;opacity:0.35;border-width:2px;border:2px solid #dccfbe;border-style:solid;display:block;margin-top:0px;grid-column:span 12 / span 12;grid-row:auto;max-width:none;min-width:0;justify-self:stretch;}
#node-text_d00e0dcd{font-family:Inter;font-size:0.92rem;line-height:1.1;color:#949494;max-width:16ch;font-weight:700;grid-column:4 / span 6;grid-row:auto;}
#node-text_807f8363{font-family:Outfit;font-size:1.5rem;line-height:1.16;color:#949494;max-width:none;font-weight:600;margin-top:0rem;grid-column:span 12 / span 12;grid-row:auto;width:auto;min-width:0;justify-self:stretch;text-transform:none;letter-spacing:-0.01em;}
#node-block_4c7d790c{width:auto;padding-top:24px;padding-right:24px;padding-bottom:24px;padding-left:24px;background:#ffffff;display:grid;text-align:center;padding:1.35rem 1rem;border:1px solid #dce5f3;border-radius:22px;box-shadow:0 12px 28px rgba(31, 58, 109, 0.06);grid-column:span 4 / span 4;grid-row:auto;color:#0a0a0a;border-color:#dccfbe;max-width:none;min-width:0;justify-self:stretch;grid-template-columns:repeat(12, minmax(0, 1fr));gap:1rem;}
#node-block_3e5314c1{width:auto;padding-top:13px;padding-right:24px;padding-bottom:24px;padding-left:24px;background:#ffffff;height:4.3rem;border-radius:999px;display:flex;align-items:center;justify-content:center;grid-column:span 12 / span 12;grid-row:auto;color:#0a0a0a;border-color:#dccfbe;max-width:none;min-width:0;justify-self:stretch;}
#node-icon_10848535{width:2.85rem;height:2.85rem;color:#0a0a0a;justify-self:start;align-self:start;grid-column:span 2 / span 2;grid-row:auto;margin-top:0rem;max-width:100%;}
#node-text_4e4cd4fd{font-family:Outfit;font-size:3.2rem;line-height:1.08;color:#111827;max-width:none;font-weight:700;grid-column:span 12 / span 12;width:auto;min-width:0;justify-self:stretch;text-transform:none;letter-spacing:-0.02em;}
#node-block_95a98ff2{width:auto;padding-top:0px;padding-right:24px;padding-bottom:0px;padding-left:24px;background:#ffffff;height:0px;opacity:0.35;border-width:2px;border:2px solid #dccfbe;border-style:solid;grid-column:span 12 / span 12;max-width:none;min-width:0;justify-self:stretch;color:#0a0a0a;border-color:#dccfbe;}
#node-text_71966551{font-family:Inter;font-size:0.92rem;line-height:1.1;color:#949494;max-width:none;font-weight:700;grid-column:span 12 / span 12;width:auto;min-width:0;justify-self:stretch;}
#node-text_a2b04b13{font-family:Outfit;font-size:1.5rem;line-height:1.16;color:#111827;max-width:none;font-weight:600;grid-column:span 12 / span 12;width:auto;min-width:0;justify-self:stretch;margin-top:0rem;text-transform:none;letter-spacing:-0.01em;}
#node-block_9d53ef4e{width:auto;padding-top:24px;padding-right:24px;padding-bottom:24px;padding-left:24px;background:#f4dfd6;display:grid;align-items:center;justify-self:stretch;max-width:none;padding:1rem 1.2rem;border:1px solid #dce5f3;border-radius:18px;grid-column:4 / span 6;min-width:0;grid-row:auto;grid-template-columns:repeat(12, minmax(0, 1fr));gap:1rem;color:#1f1812;border-color:#dccfbe;}
#node-icon_ec068c0f{width:auto;height:2.05rem;color:#0a0a0a;justify-self:stretch;align-self:start;grid-column:auto;max-width:none;min-width:0;}
#node-text_7fea7c47{font-family:Outfit;font-size:1.5rem;line-height:1.16;color:#0a0a0a;max-width:none;font-weight:600;text-transform:none;letter-spacing:-0.01em;grid-column:span 10 / span 10;width:auto;min-width:0;justify-self:stretch;margin-top:0rem;margin-bottom:0rem;}
#node-block_b6b9a778{width:auto;padding-top:24px;padding-right:24px;padding-bottom:24px;padding-left:24px;background:transparent;position:relative;float:left;grid-column:5 / 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_d06ec2f5{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_337a82da{width:100%;min-height:220px;padding-top:4rem;padding-right:4vw;padding-bottom:0rem;padding-left:4vw;background:#ffffff;display:grid;gap:1.25rem;color:#0a0a0a;border-bottom:1px solid #ebe5dc;grid-column:4 / span 9;grid-row:auto;max-width:100%;border-color:#dccfbe;}
#node-block_aaca42b4{width:auto;min-height:140px;padding-top:24px;padding-right:24px;padding-bottom:24px;padding-left:24px;background:#ffffff;display:grid;gap:0.95rem;max-width:none;justify-self:stretch;grid-column:span 12 / span 12;min-width:0;color:#0a0a0a;border-color:#dccfbe;}
#node-text_e3c90ffd{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;padding-right:1.9rem;grid-column:span 12 / span 12;width:auto;min-width:0;justify-self:stretch;text-align:left;margin-bottom:0rem;}
#node-text_1a537d50{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-right:1.9rem;grid-column:span 12 / span 12;width:auto;min-width:0;justify-self:stretch;text-align:right;margin-top:0rem;margin-bottom:0rem;}
#node-text_39810f24{font-family:Outfit;font-size:8.5rem;line-height:0.92;color:#0a0a0a;max-width:none;font-weight:700;text-transform:none;letter-spacing:-0.03em;padding-right:1.9rem;grid-column:span 12 / span 12;width:auto;min-width:0;justify-self:stretch;text-align:right;margin-top:0rem;margin-bottom:0rem;}
#node-text_75234895{font-family:Outfit;font-size:8.5rem;line-height:0.92;color:#0a0a0a;max-width:none;font-weight:700;text-transform:none;letter-spacing:-0.03em;padding-right:1.9rem;grid-column:span 12 / span 12;width:auto;min-width:0;justify-self:stretch;text-align:right;margin-top:0rem;margin-bottom:0rem;}
#node-text_e575767e{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;padding-right:1.9rem;grid-column:4 / span 9;width:auto;min-width:0;justify-self:stretch;text-align:right;margin-top:0rem;margin-bottom:0rem;grid-row:auto;}
#node-text_f8406c65{font-family:Source Sans 3;font-size:1.05rem;line-height:1.72;color:#374151;max-width:none;grid-column:4 / span 6;width:auto;min-width:0;justify-self:stretch;text-align:center;grid-row:auto;margin-top:3.4rem;padding-top:0rem;font-weight:400;text-transform:none;letter-spacing:0;}
#node-section_4b9dd335{width:100%;padding-top:4rem;padding-right:4vw;padding-bottom:4rem;padding-left:4vw;background:#000000;display:grid;color:#ffffff;border-bottom:1px solid #ebe5dc;min-height:78vh;align-items:center;border-color:#dccfbe;grid-template-columns:repeat(12, minmax(0, 1fr));gap:1rem;max-width:100%;}
#node-block_06faa9f5{width:auto;padding-top:24px;padding-right:24px;padding-bottom:24px;padding-left:24px;background:transparent;display:grid;max-width:none;justify-self:stretch;color:#0a0a0a;grid-template-columns:repeat(12, minmax(0, 1fr));gap:1rem;grid-column:span 6 / span 6;min-width:0;}
#node-text_286a966d{font-family:Inter;font-size:0.76rem;line-height:1.1;color:#949494;max-width:none;letter-spacing:0.18em;text-transform:uppercase;font-weight:700;grid-column:span 12 / span 12;width:auto;min-width:0;justify-self:stretch;}
#node-text_c2236845{font-family:Outfit;font-size:8.5rem;line-height:0.92;color:#ffffff;max-width:none;font-weight:700;grid-column:span 12 / span 12;width:auto;min-width:0;justify-self:stretch;padding-bottom:0px;margin-bottom:0px;margin-top:0px;text-transform:none;letter-spacing:-0.03em;}
#node-text_f0a5937a{font-family:Outfit;font-size:8.5rem;line-height:0.92;color:#ff3131;max-width:none;font-weight:700;grid-column:span 12 / span 12;width:auto;min-width:0;justify-self:stretch;padding-top:0px;margin-top:0px;margin-bottom:0px;text-transform:none;letter-spacing:-0.03em;}
#node-text_ebef552c{font-family:Outfit;font-size:8.5rem;line-height:0.92;color:#ffffff;max-width:none;grid-column:span 12 / span 12;width:auto;min-width:0;justify-self:stretch;font-weight:700;text-transform:none;letter-spacing:-0.03em;margin-top:0rem;padding-bottom:0rem;margin-bottom:0rem;}
#node-text_6fadbe33{font-family:Source Sans 3;font-size:1.05rem;line-height:1.72;color:#949494;max-width:none;grid-column:span 9 / span 9;width:auto;min-width:0;justify-self:stretch;margin-top:0rem;font-weight:400;text-transform:none;letter-spacing:0;}
#node-block_7fc71f55{width:auto;padding-top:24px;padding-right:24px;padding-bottom:24px;padding-left:24px;background:#000000;position:relative;display:grid;align-items:end;justify-items:center;border-radius:28px;padding:1.1rem;border:none;box-shadow:none;justify-self:stretch;align-self:stretch;min-height:33rem;overflow:hidden;color:#ffffff;align-content:center;border-width:0px;border-style:none;grid-column:span 6 / span 6;max-width:none;min-width:0;border-color:#dccfbe;}
#node-image_28cf1b98{width:100%;object-fit:cover;position:relative;max-width:100%;height:auto;}
#node-block_80344abf{width:auto;padding-top:0.6rem;padding-right:24px;padding-bottom:24px;padding-left:24px;background:transparent;grid-column:span 12 / span 12;display:grid;grid-template-columns:repeat(3, minmax(0, 1fr));gap:1rem;color:#0a0a0a;max-width:none;min-width:0;justify-self:stretch;}
#node-block_1defd29b{width:100%;padding-top:24px;padding-right:24px;padding-bottom:24px;padding-left:24px;background:#ffffff;position:relative;display:grid;gap:0.8rem;justify-items:center;text-align:center;padding:1.35rem 1rem 1.2rem;border:1px solid #e3ebf8;border-top:5px solid #14b8a6;border-radius:24px;box-shadow:0 16px 34px rgba(31, 58, 109, 0.06);overflow:hidden;max-width:100%;}
#node-block_8391ba71{width:auto;padding-top:24px;padding-right:24px;padding-bottom:24px;padding-left:24px;background:#f4dfd6;position:absolute;top:0;right:0;padding:0.55rem 0.85rem;color:#1f1812;border-bottom-left-radius:18px;font-size:0.98rem;font-weight:800;grid-column:span 2 / span 2;max-width:none;min-width:0;justify-self:stretch;border-color:#dccfbe;}
#node-text_98f02af2{font-family:Inter;font-size:0.98rem;line-height:1.1;color:#ffffff;max-width:16ch;font-weight:800;}
#node-block_d6a72183{width:5.3rem;padding-top:24px;padding-right:24px;padding-bottom:24px;padding-left:24px;background:#effcf8;height:5.3rem;border-radius:999px;display:flex;align-items:center;justify-content:center;max-width:100%;}
#node-icon_b6f08092{width:2rem;height:2rem;color:#14b8a6;justify-self:start;align-self:start;max-width:100%;}
#node-text_dc4a701b{font-family:Outfit;font-size:3.2rem;line-height:1.08;color:#111827;max-width:12ch;font-weight:700;text-transform:none;letter-spacing:-0.02em;}
#node-block_1e43570b{width:3rem;padding-top:24px;padding-right:24px;padding-bottom:24px;padding-left:24px;background:#f4dfd6;height:3px;border-radius:999px;opacity:0.8;color:#1f1812;border-color:#dccfbe;max-width:100%;}
#node-text_d1c9e2e8{font-family:Source Sans 3;font-size:1.05rem;line-height:1.72;color:#374151;max-width:18ch;font-weight:400;text-transform:none;letter-spacing:0;}
#node-text_2dcbb07b{font-family:Source Sans 3;font-size:1.35rem;line-height:1.62;color:#374151;max-width:16ch;font-weight:400;text-transform:none;letter-spacing:0;}
#node-block_0fe345d3{width:100%;padding-top:24px;padding-right:24px;padding-bottom:24px;padding-left:24px;background:#ffffff;position:relative;display:grid;gap:0.8rem;justify-items:center;text-align:center;padding:1.35rem 1rem 1.2rem;border:1px solid #e3ebf8;border-top:5px solid #8b5cf6;border-radius:24px;box-shadow:0 16px 34px rgba(31, 58, 109, 0.06);overflow:hidden;max-width:100%;}
#node-block_f2464310{width:auto;padding-top:24px;padding-right:24px;padding-bottom:24px;padding-left:24px;background:#f4dfd6;position:absolute;top:0;right:0;padding:0.55rem 0.85rem;color:#1f1812;border-bottom-left-radius:18px;font-size:0.98rem;font-weight:800;grid-column:span 2 / span 2;max-width:none;min-width:0;justify-self:stretch;border-color:#dccfbe;}
#node-text_0a7e7418{font-family:Inter;font-size:0.98rem;line-height:1.1;color:#0a0a0a;max-width:16ch;font-weight:800;}
#node-block_58778472{width:5.3rem;padding-top:24px;padding-right:24px;padding-bottom:24px;padding-left:24px;background:#f6f0ff;height:5.3rem;border-radius:999px;display:flex;align-items:center;justify-content:center;max-width:100%;}
#node-icon_f193ee89{width:2rem;height:2rem;color:#8b5cf6;justify-self:start;align-self:start;max-width:100%;}
#node-text_086c66aa{font-family:Outfit;font-size:3.2rem;line-height:1.08;color:#0a0a0a;max-width:12ch;font-weight:700;text-transform:none;letter-spacing:-0.02em;}
#node-block_aca510ff{width:3rem;padding-top:24px;padding-right:24px;padding-bottom:24px;padding-left:24px;background:#f4dfd6;height:3px;border-radius:999px;opacity:0.8;color:#1f1812;border-color:#dccfbe;max-width:100%;}
#node-text_3835809b{font-family:Source Sans 3;font-size:1.05rem;line-height:1.72;color:#374151;max-width:18ch;font-weight:400;text-transform:none;letter-spacing:0;}
#node-text_53ca5231{font-family:Source Sans 3;font-size:1.35rem;line-height:1.62;color:#374151;max-width:16ch;font-weight:400;text-transform:none;letter-spacing:0;}
#node-block_52797bfa{width:100%;padding-top:24px;padding-right:24px;padding-bottom:24px;padding-left:24px;background:#ffffff;position:relative;display:grid;gap:0.8rem;justify-items:center;text-align:center;padding:1.35rem 1rem 1.2rem;border:1px solid #e3ebf8;border-top:5px solid #f97316;border-radius:24px;box-shadow:0 16px 34px rgba(31, 58, 109, 0.06);overflow:hidden;max-width:100%;}
#node-block_9fd57fe2{width:auto;padding-top:24px;padding-right:24px;padding-bottom:24px;padding-left:24px;background:#ff3131;position:absolute;top:0;right:0;padding:0.55rem 0.85rem;color:#0a0a0a;border-bottom-left-radius:18px;font-size:0.98rem;font-weight:800;grid-column:span 2 / span 2;max-width:none;min-width:0;justify-self:stretch;border-color:#dccfbe;}
#node-text_25f6b06a{font-family:Inter;font-size:0.98rem;line-height:1.1;color:#ffffff;max-width:16ch;font-weight:800;}
#node-block_9f2ee65a{width:5.3rem;padding-top:24px;padding-right:24px;padding-bottom:24px;padding-left:24px;background:#fff3e8;height:5.3rem;border-radius:999px;display:flex;align-items:center;justify-content:center;max-width:100%;}
#node-icon_fac62b5a{width:2rem;height:2rem;color:#f97316;justify-self:start;align-self:start;max-width:100%;}
#node-text_2691a9fd{font-family:Outfit;font-size:3.2rem;line-height:1.08;color:#111827;max-width:12ch;font-weight:700;text-transform:none;letter-spacing:-0.02em;}
#node-block_72d0b52e{width:3rem;padding-top:24px;padding-right:24px;padding-bottom:24px;padding-left:24px;background:#ff3131;height:3px;border-radius:999px;opacity:0.8;color:#0a0a0a;border-color:#dccfbe;max-width:100%;}
#node-text_8570d044{font-family:Source Sans 3;font-size:1.05rem;line-height:1.72;color:#374151;max-width:18ch;font-weight:400;text-transform:none;letter-spacing:0;}
#node-text_8f3c3533{font-family:Source Sans 3;font-size:1.35rem;line-height:1.62;color:#374151;max-width:16ch;font-weight:400;text-transform:none;letter-spacing:0;}
#node-block_cb0b6764{width:auto;padding-top:24px;padding-right:24px;padding-bottom:24px;padding-left:24px;background:transparent;grid-column:span 12 / span 12;display:grid;justify-items:center;gap:1rem;color:#0a0a0a;max-width:none;min-width:0;justify-self:stretch;}
#node-block_c0393fd5{width:100%;padding-top:0px;padding-right:0px;padding-bottom:0px;padding-left:0px;background:transparent;display:grid;flex-wrap:wrap;justify-content:center;color:#0a0a0a;grid-template-columns:repeat(12, minmax(0, 1fr));gap:1rem;max-width:100%;}
#node-block_84a34f8b{width:auto;padding-top:24px;padding-right:24px;padding-bottom:24px;padding-left:24px;background:transparent;display:flex;align-items:center;grid-column:span 3 / span 3;max-width:none;min-width:0;justify-self:stretch;color:#0a0a0a;flex-direction:row;flex-wrap:wrap;gap:16px;justify-content:center;align-content:flex-start;}
#node-icon_96c432c3{width:2rem;height:2rem;color:#949494;justify-self:start;align-self:start;margin-left:0rem;padding-left:0rem;max-width:100%;}
#node-text_92abf93b{font-family:Source Sans 3;font-size:1.35rem;line-height:1.62;color:#949494;max-width:16ch;font-weight:400;text-transform:none;letter-spacing:0;margin-top:0rem;display:block;width:100%;text-align:center;}
#node-block_4c34087d{width:auto;padding-top:24px;padding-right:24px;padding-bottom:24px;padding-left:24px;background:transparent;display:flex;align-items:center;grid-column:span 3 / span 3;max-width:none;min-width:0;justify-self:stretch;color:#0a0a0a;flex-direction:row;flex-wrap:wrap;gap:16px;justify-content:center;}
#node-icon_df91607b{width:2rem;height:2rem;color:#949494;justify-self:start;align-self:start;max-width:100%;}
#node-text_d12f328b{font-family:Source Sans 3;font-size:1.35rem;line-height:1.62;color:#949494;max-width:16ch;font-weight:400;text-transform:none;letter-spacing:0;margin-top:0rem;display:block;width:100%;text-align:center;}
#node-block_7711c9ca{width:auto;padding-top:24px;padding-right:24px;padding-bottom:24px;padding-left:24px;background:transparent;display:flex;align-items:center;grid-column:span 3 / span 3;max-width:none;min-width:0;justify-self:stretch;color:#0a0a0a;flex-direction:row;flex-wrap:wrap;gap:16px;justify-content:center;}
#node-icon_d8ed45e0{width:2rem;height:2rem;color:#949494;justify-self:start;align-self:start;max-width:100%;}
#node-text_dd888394{font-family:Source Sans 3;font-size:1.35rem;line-height:1.62;color:#949494;max-width:16ch;font-weight:400;text-transform:none;letter-spacing:0;margin-top:0rem;display:block;width:100%;text-align:center;}
#node-block_2f2c52e1{width:auto;padding-top:24px;padding-right:24px;padding-bottom:24px;padding-left:24px;background:transparent;display:flex;align-items:center;grid-column:span 3 / span 3;max-width:none;min-width:0;justify-self:stretch;color:#0a0a0a;flex-direction:row;flex-wrap:wrap;gap:16px;justify-content:center;}
#node-icon_75e8a4eb{width:2rem;height:2rem;color:#949494;justify-self:start;align-self:start;max-width:100%;}
#node-text_0afa3b15{font-family:Source Sans 3;font-size:1.35rem;line-height:1.62;color:#949494;max-width:16ch;font-weight:400;text-transform:none;letter-spacing:0;margin-top:0rem;display:block;width:100%;text-align:center;}
#node-block_07cd1191{width:auto;padding-top:24px;padding-right:24px;padding-bottom:24px;padding-left:24px;background:transparent;position:relative;float:left;grid-column:5 / 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_7ff94497{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_5c0f7754{width:100%;min-height:220px;padding-top:4rem;padding-right:4vw;padding-bottom:0rem;padding-left:4vw;display:grid;gap:1.25rem;color:#0a0a0a;border-bottom:1px solid #ebe5dc;grid-column:span 6 / span 6;grid-row:auto;background-size:cover;background-position:center center;background-repeat:no-repeat;max-width:100%;}
#node-block_e87ef8ee{width:auto;min-height:140px;padding-top:24px;padding-right:19px;padding-bottom:204px;padding-left:24px;background:transparent;display:grid;max-width:none;justify-self:stretch;grid-column:span 12 / span 12;min-width:0;grid-template-columns:repeat(12, minmax(0, 1fr));gap:1rem;color:#0a0a0a;}
#node-text_ce94c371{font-family:Outfit;font-size:8.5rem;line-height:0.92;color:#ffffff;max-width:none;font-weight:700;text-transform:none;letter-spacing:-0.03em;padding-right:1.9rem;grid-column:span 8 / span 8;width:auto;min-width:0;justify-self:stretch;text-align:left;margin-bottom:0rem;}
#node-text_a74a6255{font-family:Source Sans 3;font-size:1.05rem;line-height:1.72;color:#949494;max-width:none;grid-column:span 6 / span 6;width:auto;min-width:0;justify-self:stretch;text-align:left;grid-row:auto;margin-top:0rem;font-weight:400;text-transform:none;letter-spacing:0;}
#node-section_b8d8bb64{width:100%;min-height:220px;padding-top:4rem;padding-right:4vw;padding-bottom:0rem;padding-left:4vw;background:#ffffff;display:grid;gap:1.25rem;color:#151515;border-bottom:1px solid #ebe5dc;max-width:100%;}
#node-block_b8c91eec{width:auto;min-height:140px;padding-top:24px;padding-right:24px;padding-bottom:24px;padding-left:24px;background:#ffffff;display:grid;gap:0.95rem;max-width:none;justify-self:stretch;grid-column:span 12 / span 12;min-width:0;color:#0a0a0a;border-color:#dccfbe;}
#node-text_fa7e6f3d{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;padding-right:1.9rem;grid-column:span 12 / span 12;width:auto;min-width:0;justify-self:stretch;text-align:center;margin-bottom:0rem;}
#node-text_26c6dfb0{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-right:1.9rem;grid-column:span 12 / span 12;width:auto;min-width:0;justify-self:stretch;text-align:center;margin-top:0rem;margin-bottom:0rem;}
#node-text_243af692{font-family:Source Sans 3;font-size:1.05rem;line-height:1.72;color:#374151;max-width:none;grid-column:4 / span 6;width:auto;min-width:0;justify-self:stretch;text-align:center;grid-row:auto;margin-top:0rem;font-weight:400;text-transform:none;letter-spacing:0;}
#node-section_340f7e92{width:100%;min-height:220px;padding-top:0rem;padding-right:4vw;padding-bottom:4rem;padding-left:4vw;background:transparent;display:grid;gap:1.25rem;color:#0a0a0a;border-bottom:1px solid #ebe5dc;max-width:100%;}
#node-block_3b9d3daa{width:100%;min-height:140px;padding-top:24px;padding-right:24px;padding-bottom:24px;padding-left:24px;display:grid;background:transparent;color:#0a0a0a;grid-template-columns:repeat(12, minmax(0, 1fr));gap:1rem;max-width:100%;}
#node-block_934872cb{width:auto;padding-top:0px;padding-right:0px;padding-bottom:0px;padding-left:0px;display:flex;gap:0.78rem;padding:1.2rem;border:none;border-radius:0px;box-shadow:none;border-width:0px;border-style:none;color:#0a0a0a;height:auto;flex-direction:row;flex-wrap:wrap;align-items:stretch;justify-content:flex-start;align-content:flex-end;grid-column:span 4 / span 4;max-width:none;min-width:0;justify-self:stretch;background:transparent;}
#node-image_48467ae4{position:relative;display:block;width:100%;min-height:180px;background:#f1f1f1;border:1px dashed #d8d8d8;max-width:100%;height:auto;}
#node-block_f2185fab{width:auto;padding-top:0px;padding-right:0px;padding-bottom:0px;padding-left:0px;display:flex;gap:0.78rem;padding:1.2rem;border:none;border-radius:0px;box-shadow:none;border-width:1px;border-style:none;color:#0a0a0a;height:auto;flex-direction:row;flex-wrap:wrap;align-items:stretch;justify-content:flex-start;align-content:flex-end;grid-column:span 4 / span 4;max-width:none;min-width:0;justify-self:stretch;background:transparent;}
#node-image_3e3a5c92{position:relative;display:block;width:100%;min-height:180px;background:#f1f1f1;border:1px dashed #d8d8d8;max-width:100%;height:auto;}
#node-block_96077f0a{width:auto;padding-top:0px;padding-right:0px;padding-bottom:0px;padding-left:0px;display:flex;gap:0.78rem;padding:1.2rem;border:none;border-radius:0px;box-shadow:none;border-width:0px;border-style:none;color:#0a0a0a;height:auto;flex-direction:row;flex-wrap:wrap;align-items:stretch;justify-content:flex-start;align-content:flex-end;grid-column:span 4 / span 4;max-width:none;min-width:0;justify-self:stretch;background:transparent;}
#node-image_d89f0ba2{position:relative;display:block;width:100%;min-height:180px;background:#f1f1f1;border:1px dashed #d8d8d8;max-width:100%;height:auto;}
#node-block_6bbc8941{width:auto;padding-top:0px;padding-right:0px;padding-bottom:0px;padding-left:0px;display:block;padding:1.2rem;border:none;border-radius:0px;box-shadow:none;border-width:0px;border-style:none;color:#0a0a0a;height:auto;flex-direction:row;flex-wrap:wrap;align-items:stretch;justify-content:flex-start;grid-column:span 4 / span 4;max-width:none;min-width:0;justify-self:stretch;margin-top:0rem;background:transparent;}
#node-text_8ef15d6b{font-family:Outfit;font-size:1.5rem;line-height:1.16;color:#0a0a0a;max-width:none;font-weight:600;text-transform:none;letter-spacing:-0.01em;text-align:left;margin-top:0px;grid-column:span 12 / span 12;width:auto;min-width:0;justify-self:stretch;padding-bottom:0px;margin-bottom:0px;}
#node-image_c502fb47{position:relative;display:block;width:100%;min-height:180px;background:#f1f1f1;border:1px dashed #d8d8d8;max-width:100%;height:auto;}
#node-block_371711e2{width:auto;padding-top:0px;padding-right:0px;padding-bottom:0px;padding-left:0px;display:block;padding:1.2rem;border:none;border-radius:0px;box-shadow:none;border-width:0px;border-style:none;color:#0a0a0a;height:auto;flex-direction:row;flex-wrap:wrap;align-items:stretch;justify-content:flex-start;grid-column:span 4 / span 4;max-width:none;min-width:0;justify-self:stretch;margin-top:0rem;background:transparent;}
#node-text_7d584413{font-family:Outfit;font-size:1.5rem;line-height:1.16;color:#0a0a0a;max-width:none;font-weight:600;text-transform:none;letter-spacing:-0.01em;text-align:left;margin-top:0px;grid-column:span 12 / span 12;width:auto;min-width:0;justify-self:stretch;padding-bottom:0px;margin-bottom:0px;}
#node-image_c71ef7cb{position:relative;display:block;width:100%;min-height:180px;background:#f1f1f1;border:1px dashed #d8d8d8;max-width:100%;height:auto;}
#node-block_aca61597{width:auto;padding-top:0px;padding-right:0px;padding-bottom:0px;padding-left:0px;display:block;padding:1.2rem;border:none;border-radius:0px;box-shadow:none;border-width:0px;border-style:none;color:#0a0a0a;height:auto;flex-direction:row;flex-wrap:wrap;align-items:stretch;justify-content:flex-start;grid-column:span 4 / span 4;max-width:none;min-width:0;justify-self:stretch;margin-top:0rem;background:transparent;}
#node-text_586b448f{font-family:Outfit;font-size:1.5rem;line-height:1.16;color:#0a0a0a;max-width:none;font-weight:600;text-transform:none;letter-spacing:-0.01em;text-align:left;margin-top:0px;grid-column:span 12 / span 12;width:auto;min-width:0;justify-self:stretch;padding-bottom:0px;margin-bottom:0px;}
#node-image_aaadf2b0{position:relative;display:block;width:100%;min-height:180px;background:#f1f1f1;border:1px dashed #d8d8d8;max-width:100%;height:auto;}
#node-section_9d467696{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;grid-column:span 4 / span 4;grid-row:auto;border-color:#dccfbe;max-width:100%;}
#node-block_0e4905bd{width:auto;min-height:140px;padding-top:24px;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_1528e366{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_102459ee{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_4f73b8ff{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_c6f701cb{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_32154ef7{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_9b9dad2e{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 11 / span 11;width:auto;min-width:0;justify-self:stretch;padding-bottom:0px;margin-bottom:0px;}
#node-text_82d8f03d{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_09d4c6ca{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-block_cd39eb55{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_1707b343{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_a5362638{width:100%;min-height:220px;padding-top:4rem;padding-right:4vw;padding-bottom:4rem;padding-left:4vw;background:#000000;display:grid;gap:1.25rem;color:#ffffff;border-bottom:1px solid #ebe5dc;border-color:#dccfbe;max-width:100%;}
#node-block_d7d0fe83{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_59180b8b{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_897fcda1{font-family:Outfit;font-size:8.5rem;line-height:0.92;color:#ffffff;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_8ed78ea3{font-family:Source Sans 3;font-size:1.05rem;line-height:1.72;color:#949494;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_cdd00ffe{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_51cca818{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_a549de91{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_d4ed9620{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_0a42b548{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_2146054f{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_f43cdd97{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_73e3aab9{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_1f375a73{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_e2993156{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_8205bbea{width:100%;object-fit:contain;position:relative;float:left;height:auto;}
#node-block_d2bba89b{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_86c47bba{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_23a38e34:hover{background:#ffffff !important;color:#ff2424 !important;}
#node-button_e1898f72:hover{background:#ff2424 !important;color:#ffffff !important;}
#node-button_51cca818:hover{background:#ff2424 !important;color:#ffffff !important;}
#node-button_f43cdd97:hover{background:#ffffff !important;color:#ff2424 !important;}
#node-button_1707b343:hover{background:#ff2424 !important;color:#ffffff !important;}
#node-button_798aba89:hover{background:#ffffff !important;color:#ff2424 !important;}
#node-button_d06ec2f5:hover{background:#ffffff !important;color:#ff2424 !important;}
#node-button_7ff94497:hover{background:#ff2424 !important;color:#ffffff !important;}
}

@media (max-width: 1279px) {
#node-section_d3086f8c{width:100%;min-height:100%;padding-top:3.5rem;padding-right:4vw;padding-bottom:4rem;padding-left:4vw;display:grid;gap:1.25rem;color:#0a0a0a;border-bottom:1px solid #ebe5dc;grid-template-columns:1.05fr 0.95fr;align-items:center;height:100vh;align-content:flex-start;background-position:center center;background-size:contain;background-repeat:no-repeat;max-width:100%;border-color:#dccfbe;}
#node-block_c00d8ea3{width:auto;padding-top:5px;padding-right:5px;padding-bottom:5px;padding-left:5px;background:rgba(255, 255, 255, 0);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;z-index:3;}
#node-block_5ca17c20{width:auto;padding-top:1.84px;padding-right:1.84px;padding-bottom:1.84px;padding-left:1.84px;background:rgba(214, 214, 214, 0);position:relative;float:left;max-width:none;height:auto;grid-column:span 2 / span 2;grid-row:auto;min-width:0;justify-self:stretch;}
#node-image_95f7f30c{width:100%;object-fit:contain;position:relative;float:left;height:auto;}
#node-block_1e592fa7{width:auto;padding-top:1.84px;padding-right:1.84px;padding-bottom:1.84px;padding-left:1.84px;background:rgba(255, 255, 255, 0);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;}
#node-block_b2c87409{width:auto;min-height:140px;padding-top:22.08px;padding-right:22.08px;padding-bottom:22.08px;padding-left:22.08px;display:block;gap:0.46rem;max-width:none;justify-self:stretch;grid-column:span 9 / span 9;grid-row:auto;row-gap:0.5rem;column-gap:0.5rem;min-width:0;margin-top:1.84px;}
#node-text_89d00ab9{font-family:Outfit;font-size:5rem;line-height:1;color:#ff3131;max-width:none;letter-spacing:-0.04em;text-transform:none;font-weight:700;grid-column:span 9 / span 9;grid-row:auto;width:33.55rem;min-width:0;justify-self:stretch;height:auto;margin-bottom:0rem;padding-bottom:0rem;}
#node-text_282ff261{font-family:Outfit;font-size:5rem;line-height:1.05;color:#ffffff;max-width:none;font-weight:700;grid-column:span 12 / span 12;min-width:0;justify-self:stretch;margin-bottom:0px;margin-top:0px;text-transform:none;letter-spacing:-0.03em;display:block;height:auto;width:506px;padding-right:0px;}
#node-text_ca58eb4c{font-family:Source Sans 3;font-size:1rem;line-height:1.72;color:#ffffff;max-width:none;grid-column:span 10 / span 10;grid-row:auto;width:30.1rem;min-width:0;justify-self:stretch;padding-bottom:0rem;padding-right:0rem;font-weight:400;letter-spacing:0;text-transform:none;}
#node-block_4a7b34d6{width:auto;padding-top:32.2px;padding-right:22.08px;padding-bottom:22.08px;padding-left:0px;background:rgba(255, 255, 255, 0);display:flex;flex-wrap:wrap;gap:0.736rem;align-items:center;grid-column:span 11 / span 11;grid-row:auto;min-width:0;justify-self:stretch;height:auto;}
#node-button_23a38e34{display:inline-flex;padding-top:0.874rem;padding-right:1.334rem;padding-bottom:0.92rem;padding-left:1.334rem;background:#000000;color:#ffffff;border:1px solid #a1442a;border-radius:999px;transition:background-color 180ms ease, color 180ms ease, border-color 180ms ease, transform 180ms ease, box-shadow 180ms ease;max-width:100%;font-family:Source Sans 3;font-weight:600;text-transform:none;line-height:1.12;letter-spacing:0;font-size:0.95rem;}
#node-button_e1898f72{display:inline-flex;padding-top:0.718rem;padding-right:1.196rem;padding-bottom:0.718rem;padding-left:1.196rem;background:#ffffff;color:#000000;border:3px solid #fe1616;border-radius:999px;border-width:3px;border-style:solid;border-color:#fe1616;transition:background-color 180ms ease, color 180ms ease, border-color 180ms ease, transform 180ms ease, box-shadow 180ms ease;max-width:100%;font-family:Source Sans 3;font-weight:600;text-transform:none;line-height:1.12;letter-spacing:0;font-size:0.95rem;}
#node-section_0ad9704b{width:100%;min-height:220px;padding-top:0rem;padding-right:4vw;padding-bottom:0rem;padding-left:4vw;background:#ff3131;display:block;color:#0a0a0a;border-bottom:1px solid #ebe5dc;text-align:center;border-color:#dccfbe;max-width:100%;}
#node-block_a4f05fcb{width:auto;min-height:140px;padding-top:22.08px;padding-right:24.84px;padding-bottom:22.08px;padding-left:22.08px;background:transparent;display:grid;gap:0.874rem;max-width:none;justify-self:stretch;grid-column:span 10 / span 10;min-width:0;color:#0a0a0a;}
#node-text_f4fe92c8{font-family:Outfit;font-size:5rem;line-height:1.05;color:#ffffff;max-width:none;font-weight:700;grid-column:span 12 / span 12;width:auto;min-width:0;justify-self:stretch;text-transform:none;letter-spacing:-0.03em;}
#node-section_63ec612b{width:100%;min-height:220px;padding-top:9.108rem;padding-right:4vw;padding-bottom:0rem;padding-left:4vw;display:grid;color:#0a0a0a;border-bottom:1px solid #ebe5dc;grid-template-columns:repeat(12, minmax(0, 1fr));gap:0.92rem;background:#ffffff;border-color:#dccfbe;grid-column:5 / span 8;grid-row:auto;max-width:100%;}
#node-block_3fead6d8{width:auto;min-height:140px;padding-top:0px;padding-right:22.08px;padding-bottom:22.08px;padding-left:22.08px;background:#ffffff;display:grid;max-width:none;justify-self:stretch;grid-column:span 12 / span 12;min-width:0;grid-template-columns:repeat(12, minmax(0, 1fr));gap:0.92rem;color:#0a0a0a;border-color:#dccfbe;}
#node-text_16dd7857{font-family:Outfit;font-size:5rem;line-height:1.05;color:#0a0a0a;max-width:none;font-weight:700;margin-bottom:0px;text-transform:none;letter-spacing:-0.03em;padding-top:0px;margin-top:0px;grid-column:2 / span 11;width:auto;min-width:0;justify-self:stretch;grid-row:auto;text-align:right;}
#node-text_26b6cf2b{font-family:Source Sans 3;font-size:1rem;line-height:1.72;color:#0a0a0a;max-width:none;font-weight:400;text-transform:none;letter-spacing:0;grid-column:6 / span 7;width:auto;min-width:0;justify-self:stretch;grid-row:auto;text-align:right;}
#node-section_fe72d6b3{width:100%;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_f28dcbc7{width:100%;padding-top:22.08px;padding-right:22.08px;padding-bottom:22.08px;padding-left:22.08px;background:#ff3131;display:grid;grid-template-columns:repeat(2, minmax(0, 1fr));border:1px solid #dccfbe;border-radius:18px;overflow:hidden;gap:0;color:#0a0a0a;border-color:#dccfbe;border-width:1px;border-style:solid;grid-column:2 / span 10;grid-row:auto;max-width:100%;}
#node-block_772dbb73{width:100%;padding-top:22.08px;padding-right:22.08px;padding-bottom:22.08px;padding-left:22.08px;background:#ffffff;display:grid;grid-template-rows:auto 1fr auto;min-height:100%;border-left:0;max-width:100%;}
#node-block_344a303b{width:100%;padding-top:1.058rem;padding-right:1.196rem;padding-bottom:1.058rem;padding-left:1.196rem;background:#ffffff;display:flex;align-items:center;gap:0.644rem;border-bottom:1px solid #eadfd3;color:#0a0a0a;border-color:#dccfbe;flex-wrap:wrap;max-width:100%;}
#node-text_8ac4aa0f{font-family:Inter;font-size:0.92rem;line-height:1.1;color:#ffffff;max-width:16ch;width:2rem;height:2rem;border-radius:999px;display:inline-flex;align-items:center;justify-content:center;background:#f26b67;font-weight:800;}
#node-text_6c2ee7a8{font-family:Outfit;font-size:2.2rem;line-height:1.1;color:#111827;max-width:16ch;font-weight:700;text-transform:none;letter-spacing:-0.02em;}
#node-block_60604202{width:100%;padding-top:1.334rem;padding-right:1.196rem;padding-bottom:1.334rem;padding-left:1.196rem;background:#ffffff;display:grid;gap:1.288rem;color:#0a0a0a;border-color:#dccfbe;max-width:100%;}
#node-block_fb74740f{width:100%;padding-top:22.08px;padding-right:22.08px;padding-bottom:22.08px;padding-left:22.08px;background:#ffffff;display:grid;grid-template-columns:auto minmax(0, 1fr);gap:0.874rem;align-items:start;height:auto;color:#0a0a0a;border-color:#dccfbe;max-width:100%;}
#node-icon_332854fd{width:2.3rem;height:2.3rem;color:#f26b67;justify-self:start;align-self:start;max-width:100%;}
#node-block_25277709{width:100%;padding-top:0px;padding-right:22.08px;padding-bottom:0px;padding-left:22.08px;background:#ffffff;display:block;gap:0.322rem;color:#0a0a0a;border-color:#dccfbe;max-width:100%;}
#node-text_aa3f452f{font-family:Outfit;font-size:1.3rem;line-height:1.18;color:#111827;max-width:none;font-weight:600;margin-top:0rem;margin-bottom:0rem;width:276px;padding-bottom:0px;text-transform:none;letter-spacing:-0.01em;}
#node-text_937c32cd{font-family:Source Sans 3;font-size:1rem;line-height:1.72;color:#374151;max-width:26ch;margin-top:0rem;font-weight:400;text-transform:none;letter-spacing:0;}
#node-block_2b1d8c50{width:100%;padding-top:22.08px;padding-right:22.08px;padding-bottom:22.08px;padding-left:22.08px;background:transparent;display:grid;grid-template-columns:auto minmax(0, 1fr);gap:0.874rem;align-items:start;height:auto;color:#0a0a0a;max-width:100%;}
#node-icon_da619f0a{width:2.3rem;height:2.3rem;color:#f26b67;justify-self:start;align-self:start;max-width:100%;}
#node-block_c766e993{width:100%;padding-top:0px;padding-right:22.08px;padding-bottom:22.08px;padding-left:22.08px;background:#ffffff;display:block;color:#0a0a0a;border-color:#dccfbe;max-width:100%;}
#node-text_3058fb1b{font-family:Outfit;font-size:1.3rem;line-height:1.18;color:#111827;max-width:none;font-weight:600;margin-bottom:0rem;padding-bottom:0rem;width:321px;margin-top:0px;text-transform:none;letter-spacing:-0.01em;}
#node-text_5c7f0935{font-family:Source Sans 3;font-size:1rem;line-height:1.72;color:#374151;max-width:26ch;margin-top:0rem;font-weight:400;text-transform:none;letter-spacing:0;}
#node-block_e3fd1605{width:100%;padding-top:22.08px;padding-right:22.08px;padding-bottom:22.08px;padding-left:22.08px;background:transparent;display:grid;grid-template-columns:auto minmax(0, 1fr);gap:0.874rem;align-items:start;color:#0a0a0a;max-width:100%;}
#node-icon_bfeb9e75{width:2.3rem;height:2.3rem;color:#f26b67;justify-self:start;align-self:start;max-width:100%;}
#node-block_e62656e4{width:100%;padding-top:0px;padding-right:22.08px;padding-bottom:22.08px;padding-left:22.08px;background:#ffffff;display:block;color:#0a0a0a;border-color:#dccfbe;max-width:100%;}
#node-text_ad7620a6{font-family:Outfit;font-size:1.3rem;line-height:1.18;color:#111827;max-width:16ch;font-weight:600;padding-top:0rem;margin-top:0rem;margin-bottom:0rem;text-transform:none;letter-spacing:-0.01em;}
#node-text_974f1a52{font-family:Source Sans 3;font-size:1rem;line-height:1.72;color:#374151;max-width:26ch;margin-top:0rem;font-weight:400;text-transform:none;letter-spacing:0;}
#node-block_1b2a1e73{width:100%;padding-top:0.92rem;padding-right:1.196rem;padding-bottom:0.92rem;padding-left:1.196rem;background:#ffffff;display:grid;grid-template-columns:auto minmax(0, 1fr);gap:0.828rem;align-items:start;border-top:1px solid #eadfd3;color:#0a0a0a;border-color:#dccfbe;max-width:100%;}
#node-icon_ed10adae{width:2rem;height:2rem;color:#f26b67;justify-self:start;align-self:start;max-width:100%;}
#node-block_14c03f12{width:100%;padding-top:0px;padding-right:22.08px;padding-bottom:22.08px;padding-left:22.08px;background:#ffffff;display:block;gap:0.322rem;color:#0a0a0a;border-color:#dccfbe;max-width:100%;}
#node-text_39c3014b{font-family:Outfit;font-size:1.3rem;line-height:1.18;color:#111827;max-width:none;font-weight:600;width:336px;text-transform:none;letter-spacing:-0.01em;margin-top:0px;}
#node-block_ff4cee13{width:100%;padding-top:24px;padding-right:24px;padding-bottom:24px;padding-left:24px;background:#ffffff;display:grid;grid-template-rows:auto 1fr auto;min-height:100%;border-left:1px solid #eadfd3;max-width:100%;}
#node-block_39239b88{width:100%;padding-top:1.058rem;padding-right:1.196rem;padding-bottom:1.058rem;padding-left:1.196rem;background:#ffffff;display:flex;align-items:center;gap:0.644rem;border-bottom:1px solid #eadfd3;color:#0a0a0a;border-color:#dccfbe;flex-wrap:wrap;max-width:100%;}
#node-text_40ecfa96{font-family:Inter;font-size:0.92rem;line-height:1.1;color:#ffffff;max-width:16ch;width:2rem;height:2rem;border-radius:999px;display:inline-flex;align-items:center;justify-content:center;background:#58bb6f;font-weight:800;}
#node-text_27a9f4e6{font-family:Outfit;font-size:2.2rem;line-height:1.1;color:#111827;max-width:16ch;font-weight:700;text-transform:none;letter-spacing:-0.02em;}
#node-block_73fe26be{width:100%;padding-top:1.334rem;padding-right:1.196rem;padding-bottom:1.334rem;padding-left:1.196rem;background:transparent;display:grid;gap:1.288rem;color:#0a0a0a;max-width:100%;}
#node-block_c3c34cd2{width:100%;padding-top:22.08px;padding-right:22.08px;padding-bottom:22.08px;padding-left:22.08px;background:transparent;display:grid;grid-template-columns:auto minmax(0, 1fr);gap:0.874rem;align-items:start;height:auto;color:#0a0a0a;max-width:100%;}
#node-icon_bd032e67{width:2.3rem;height:2.3rem;color:#58bb6f;justify-self:start;align-self:start;max-width:100%;}
#node-block_1b3e83d3{width:100%;padding-top:0px;padding-right:22.08px;padding-bottom:22.08px;padding-left:22.08px;background:transparent;display:block;gap:0.322rem;color:#0a0a0a;max-width:100%;}
#node-text_0c7f421a{font-family:Outfit;font-size:1.3rem;line-height:1.18;color:#111827;max-width:16ch;font-weight:600;margin-top:0rem;margin-bottom:0rem;padding-bottom:0rem;text-transform:none;letter-spacing:-0.01em;}
#node-text_6e659b3b{font-family:Source Sans 3;font-size:1rem;line-height:1.72;color:#374151;max-width:26ch;margin-top:0rem;font-weight:400;text-transform:none;letter-spacing:0;}
#node-block_d7cb3ddb{width:100%;padding-top:22.08px;padding-right:22.08px;padding-bottom:22.08px;padding-left:22.08px;background:transparent;display:grid;grid-template-columns:auto minmax(0, 1fr);gap:0.874rem;align-items:start;height:auto;color:#0a0a0a;max-width:100%;}
#node-icon_d6ce5eb8{width:2.3rem;height:2.3rem;color:#58bb6f;justify-self:start;align-self:start;max-width:100%;}
#node-block_f7e66869{width:100%;padding-top:0px;padding-right:22.08px;padding-bottom:22.08px;padding-left:22.08px;background:transparent;display:block;gap:0.322rem;color:#0a0a0a;max-width:100%;}
#node-text_4fbc1997{font-family:Outfit;font-size:1.3rem;line-height:1.18;color:#111827;max-width:16ch;font-weight:600;margin-top:0rem;margin-bottom:0rem;padding-bottom:0rem;text-transform:none;letter-spacing:-0.01em;}
#node-text_e793e0d2{font-family:Source Sans 3;font-size:1rem;line-height:1.72;color:#374151;max-width:26ch;margin-top:0.046rem;font-weight:400;text-transform:none;letter-spacing:0;}
#node-block_31314715{width:100%;padding-top:22.08px;padding-right:22.08px;padding-bottom:22.08px;padding-left:22.08px;background:transparent;display:grid;grid-template-columns:auto minmax(0, 1fr);gap:0.874rem;align-items:start;height:auto;color:#0a0a0a;max-width:100%;}
#node-icon_98fc500b{width:2.3rem;height:2.3rem;color:#58bb6f;justify-self:start;align-self:start;max-width:100%;}
#node-block_dfb5902f{width:100%;padding-top:0px;padding-right:22.08px;padding-bottom:22.08px;padding-left:22.08px;background:transparent;display:block;gap:0.322rem;margin-top:0%;color:#0a0a0a;max-width:100%;}
#node-text_d5e3124e{font-family:Outfit;font-size:1.3rem;line-height:1.18;color:#111827;max-width:16ch;font-weight:600;padding-top:0rem;margin-top:0rem;margin-bottom:0rem;text-transform:none;letter-spacing:-0.01em;}
#node-text_83980d64{font-family:Source Sans 3;font-size:1rem;line-height:1.72;color:#374151;max-width:26ch;padding-top:0rem;margin-top:0rem;font-weight:400;text-transform:none;letter-spacing:0;}
#node-block_ca416f2b{width:100%;padding-top:0.92rem;padding-right:1.196rem;padding-bottom:0.92rem;padding-left:1.196rem;background:transparent;display:grid;grid-template-columns:auto minmax(0, 1fr);gap:0.828rem;align-items:start;border-top:1px solid #eadfd3;color:#0a0a0a;max-width:100%;}
#node-icon_c1d46837{width:2rem;height:2rem;color:#58bb6f;justify-self:start;align-self:start;max-width:100%;}
#node-block_cdfba456{width:100%;padding-top:0px;padding-right:22.08px;padding-bottom:22.08px;padding-left:22.08px;background:transparent;display:block;height:auto;gap:0.92rem;color:#0a0a0a;max-width:100%;}
#node-text_806207cc{font-family:Outfit;font-size:1.3rem;line-height:1.18;color:#111827;max-width:none;font-weight:600;width:263px;text-transform:none;letter-spacing:-0.01em;margin-top:0px;}
#node-section_b3b80cb3{width:100%;min-height:220px;padding-top:3.68rem;padding-right:4vw;padding-bottom:3.68rem;padding-left:4vw;background:#000000;display:grid;gap:1.15rem;color:#ffffff;border-bottom:1px solid #ebe5dc;border-color:#dccfbe;max-width:100%;}
#node-block_9d7663ec{width:100%;min-height:140px;padding-top:22.08px;padding-right:22.08px;padding-bottom:0px;padding-left:22.08px;background:transparent;display:grid;gap:0.874rem;max-width:68rem;justify-self:start;height:auto;color:#0a0a0a;}
#node-text_2028cf49{font-family:Outfit;font-size:5rem;line-height:1.05;color:#ffffff;max-width:16ch;font-weight:700;text-transform:none;letter-spacing:-0.03em;margin-bottom:0rem;}
#node-block_d0daf3a6{width:100%;min-height:140px;padding-top:0px;padding-right:22.08px;padding-bottom:22.08px;padding-left:22.08px;background:transparent;display:block;color:#0a0a0a;max-width:100%;}
#node-block_08c1c738{width:auto;min-height:140px;padding-top:0px;padding-right:22.08px;padding-bottom:22.08px;padding-left:22.08px;background:transparent;display:grid;gap:0.644rem;padding:1.104rem;border:none;border-radius:22px;box-shadow:0 12px 28px rgba(44, 31, 22, 0.06);grid-column:span 2 / span 2;max-width:none;min-width:0;justify-self:stretch;color:#0a0a0a;border-style:none;}
#node-text_a969e197{font-family:Outfit;font-size:2.2rem;line-height:1.1;color:#ffffff;max-width:none;font-weight:700;letter-spacing:-0.02em;text-transform:none;grid-column:span 12 / span 12;width:auto;min-width:0;justify-self:stretch;text-align:center;}
#node-image_cc5110a4{width:auto;object-fit:cover;position:relative;grid-column:span 12 / span 12;max-width:none;min-width:0;justify-self:stretch;height:auto;}
#node-text_3a1a0b3f{font-family:Source Sans 3;font-size:1rem;line-height:1.72;color:#ffffff;max-width:none;font-weight:400;text-transform:none;letter-spacing:0;text-align:center;grid-column:span 12 / span 12;width:auto;min-width:0;justify-self:stretch;}
#node-section_619c0ca8{width:100%;min-height:220px;padding-top:4rem;padding-right:4vw;padding-bottom:4rem;padding-left:4vw;background:transparent;display:grid;color:#0a0a0a;border-bottom:1px solid #ebe5dc;grid-template-columns:repeat(12, minmax(0, 1fr));gap:1rem;grid-column:6 / span 7;grid-row:auto;max-width:100%;}
#node-block_6bab10ed{width:auto;min-height:140px;padding-top:22.08px;padding-right:22.08px;padding-bottom:22.08px;padding-left:22.08px;background:rgba(255, 250, 243, 0);display:grid;gap:0.874rem;max-width:none;justify-self:stretch;grid-column:span 8 / span 8;grid-row:auto;min-width:0;}
#node-text_a9ca0b96{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-bottom:0rem;margin-bottom:0rem;grid-column:span 12 / span 12;width:auto;min-width:0;justify-self:stretch;}
#node-text_9c0b1f1a{font-family:Source Sans 3;font-size:1rem;line-height:1.72;color:#374151;max-width:none;grid-column:span 12 / span 12;width:auto;min-width:0;justify-self:stretch;font-weight:400;text-transform:none;letter-spacing:0;}
#node-block_72260900{width:auto;padding-top:24px;padding-right:24px;padding-bottom:24px;padding-left:0px;background:transparent;position:relative;float:left;grid-column:span 10 / span 10;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_798aba89{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_79867a53{width:auto;min-height:140px;padding-top:24px;padding-right:24px;padding-bottom:24px;padding-left:24px;background:#ffffff;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:1rem;grid-row:auto;}
#node-block_cafaa414{width:auto;min-height:100%;padding-top:24px;padding-right:24px;padding-bottom:24px;padding-left:24px;display:flex;padding:1.2rem;border:2px solid #d7dce4;border-radius:0px;box-shadow:none;grid-column:span 4 / span 4;max-width:none;min-width:0;justify-self:stretch;grid-row:auto;height:auto;flex-direction:column;flex-wrap:wrap;gap:2px;align-items:stretch;justify-content:space-between;align-content:flex-start;border-width:2px;border-style:solid;}
#node-image_c59305a1{width:100%;object-fit:cover;position:relative;margin-bottom:15%;max-width:none;height:auto;grid-column:span 7 / span 7;grid-row:auto;}
#node-text_c65ff8b7{font-family:Outfit;font-size:2.2rem;line-height:1.1;color:#111827;max-width:none;font-weight:700;text-transform:none;letter-spacing:-0.02em;width:398px;margin-top:0px;text-align:left;margin-bottom:0px;}
#node-text_e0a2ad40{font-family:Source Sans 3;font-size:1rem;line-height:1.72;color:#374151;max-width:none;grid-column:span 8 / span 8;grid-row:auto;font-weight:400;text-transform:none;letter-spacing:0;width:100%;margin-top:0px;display:block;}
#node-block_c999ef97{width:auto;min-height:100%;padding-top:22.08px;padding-right:22.08px;padding-bottom:22.08px;padding-left:22.08px;display:flex;padding:1.104rem;border:2px solid #d7dce4;border-radius:0px;box-shadow:none;grid-column:span 4 / span 4;max-width:none;min-width:0;justify-self:stretch;grid-row:auto;height:auto;flex-direction:column;flex-wrap:wrap;gap:1.84px;align-items:stretch;justify-content:space-between;align-content:flex-start;border-width:2px;border-style:solid;}
#node-image_8263fc68{width:100%;object-fit:cover;position:relative;margin-bottom:15%;max-width:none;height:auto;grid-column:span 7 / span 7;grid-row:auto;}
#node-text_7c9280e2{font-family:Outfit;font-size:2.2rem;line-height:1.1;color:#111827;max-width:none;font-weight:700;text-transform:none;letter-spacing:-0.02em;width:378px;margin-top:0px;text-align:left;margin-bottom:0px;}
#node-text_1c721332{font-family:Source Sans 3;font-size:1rem;line-height:1.72;color:#374151;max-width:none;grid-column:span 8 / span 8;grid-row:auto;font-weight:400;text-transform:none;letter-spacing:0;width:100%;margin-top:0px;display:block;}
#node-block_0edfd4e2{width:auto;min-height:100%;padding-top:24px;padding-right:24px;padding-bottom:24px;padding-left:24px;display:flex;padding:1.2rem;border:2px solid #d7dce4;border-radius:0px;box-shadow:none;grid-column:span 4 / span 4;max-width:none;min-width:0;justify-self:stretch;grid-row:auto;height:auto;flex-direction:column;flex-wrap:wrap;gap:2px;align-items:stretch;justify-content:space-between;align-content:flex-start;border-width:2px;border-style:solid;}
#node-image_4f919c58{width:100%;object-fit:cover;position:relative;margin-bottom:15%;max-width:none;height:auto;grid-column:span 7 / span 7;grid-row:auto;}
#node-text_5b7b3ad4{font-family:Outfit;font-size:2.2rem;line-height:1.1;color:#111827;max-width:none;font-weight:700;text-transform:none;letter-spacing:-0.02em;width:395px;margin-top:0px;text-align:left;margin-bottom:0px;}
#node-text_4eb7745f{font-family:Source Sans 3;font-size:1rem;line-height:1.72;color:#374151;max-width:none;grid-column:span 8 / span 8;grid-row:auto;font-weight:400;text-transform:none;letter-spacing:0;width:100%;margin-top:0px;display:block;}
#node-section_3a57aca4{width:100%;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;height:auto;grid-column:2 / span 4;grid-row:auto;border-color:#dccfbe;max-width:100%;}
#node-block_12111d04{width:auto;min-height:140px;padding-top:0px;padding-right:22.08px;padding-bottom:0px;padding-left:66.24px;background:transparent;display:grid;max-width:none;justify-self:stretch;grid-column:span 12 / span 12;min-width:0;border-width:0px;border:none;border-style:none;box-shadow:none;grid-template-columns:repeat(12, minmax(0, 1fr));gap:0.92rem;color:#0a0a0a;}
#node-text_3dee3335{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;margin-bottom:0rem;grid-column:span 12 / span 12;grid-row:auto;}
#node-text_415174b4{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;padding-bottom:0rem;padding-top:0rem;margin-top:0rem;margin-bottom:0rem;grid-column:span 12 / span 12;grid-row:auto;}
#node-text_75b69449{font-family:Outfit;font-size:5rem;line-height:1.05;color:#ff3131;max-width:16ch;font-weight:700;text-transform:none;letter-spacing:-0.03em;padding-top:0rem;margin-top:0rem;margin-bottom:0rem;grid-column:span 12 / span 12;grid-row:auto;}
#node-text_5cdb3c1a{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:3.404rem;padding-bottom:0rem;margin-bottom:0rem;text-align:right;grid-column:span 12 / span 12;grid-row:auto;width:auto;min-width:0;justify-self:stretch;}
#node-text_63093879{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;margin-bottom:0rem;text-align:right;grid-column:span 12 / span 12;grid-row:auto;width:auto;min-width:0;justify-self:stretch;}
#node-text_53a2b603{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;padding-top:0rem;margin-top:0rem;margin-bottom:0rem;text-align:right;grid-column:span 12 / span 12;grid-row:auto;width:auto;min-width:0;justify-self:stretch;}
#node-section_ff5bc3e4{width:100%;min-height:220px;padding-top:0.598rem;padding-right:4vw;padding-bottom:3.68rem;padding-left:4vw;background:#f4dfd6;display:block;color:#1f1812;border-bottom:1px solid #ebe5dc;border-color:#dccfbe;gap:1.15rem;max-width:100%;}
#node-block_bec2767e{width:100%;min-height:140px;padding-top:22.08px;padding-right:22.08px;padding-bottom:22.08px;padding-left:22.08px;display:grid;grid-template-columns:repeat(4, minmax(0, 1fr));gap:0.92rem;background:transparent;color:#0a0a0a;max-width:100%;}
#node-block_de7f4ad2{width:100%;min-height:100%;padding-top:22.08px;padding-right:22.08px;padding-bottom:22.08px;padding-left:22.08px;background:transparent;display:grid;gap:0.718rem;padding:1.104rem;border:4px solid #cc0000;border-radius:22px;box-shadow:0 12px 24px rgba(44, 31, 22, 0.05);border-width:4px;border-style:solid;row-gap:0rem;column-gap:0rem;color:#0a0a0a;max-width:100%;}
#node-text_11238b1b{font-family:Outfit;font-size:2.2rem;line-height:1.1;color:#0a0a0a;max-width:none;font-weight:700;text-transform:none;letter-spacing:-0.02em;text-align:left;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_137b58a1{font-family:Source Sans 3;font-size:1rem;line-height:1.72;color:#374151;max-width:none;grid-column:span 12 / span 12;width:auto;min-width:0;justify-self:stretch;text-align:left;font-weight:400;text-transform:none;letter-spacing:0;}
#node-block_db4b6437{width:100%;min-height:100%;padding-top:22.08px;padding-right:22.08px;padding-bottom:22.08px;padding-left:22.08px;background:transparent;display:grid;gap:0.718rem;padding:1.104rem;border:4px solid #cc0000;border-radius:22px;box-shadow:0 12px 24px rgba(44, 31, 22, 0.05);border-width:4px;border-style:solid;row-gap:0rem;column-gap:0rem;color:#0a0a0a;max-width:100%;}
#node-text_742b76ba{font-family:Outfit;font-size:2.2rem;line-height:1.1;color:#111827;max-width:none;font-weight:700;text-transform:none;letter-spacing:-0.02em;text-align:left;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_0e9e2565{font-family:Source Sans 3;font-size:1rem;line-height:1.72;color:#374151;max-width:none;grid-column:span 12 / span 12;width:auto;min-width:0;justify-self:stretch;text-align:left;font-weight:400;text-transform:none;letter-spacing:0;}
#node-block_7ae71967{width:100%;min-height:100%;padding-top:22.08px;padding-right:22.08px;padding-bottom:22.08px;padding-left:22.08px;background:transparent;display:grid;gap:0.718rem;padding:1.104rem;border:4px solid #cc0000;border-radius:22px;box-shadow:0 12px 24px rgba(44, 31, 22, 0.05);border-width:4px;border-style:solid;row-gap:0rem;column-gap:0rem;color:#0a0a0a;max-width:100%;}
#node-text_ebe8f9db{font-family:Outfit;font-size:2.2rem;line-height:1.1;color:#111827;max-width:none;font-weight:700;text-transform:none;letter-spacing:-0.02em;text-align:left;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_a67ad957{font-family:Source Sans 3;font-size:1rem;line-height:1.72;color:#374151;max-width:none;grid-column:span 12 / span 12;width:auto;min-width:0;justify-self:stretch;text-align:left;font-weight:400;text-transform:none;letter-spacing:0;}
#node-block_30387cbb{width:100%;min-height:100%;padding-top:22.08px;padding-right:22.08px;padding-bottom:22.08px;padding-left:22.08px;background:transparent;display:grid;gap:0.718rem;padding:1.104rem;border:4px solid #cc0000;border-radius:22px;box-shadow:0 12px 24px rgba(44, 31, 22, 0.05);border-width:4px;border-style:solid;row-gap:0rem;column-gap:0rem;color:#0a0a0a;max-width:100%;}
#node-text_691fa68a{font-family:Outfit;font-size:2.2rem;line-height:1.1;color:#0a0a0a;max-width:none;font-weight:700;text-transform:none;letter-spacing:-0.02em;text-align:left;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_319aa6f6{font-family:Source Sans 3;font-size:1rem;line-height:1.72;color:#374151;max-width:none;grid-column:span 12 / span 12;width:auto;min-width:0;justify-self:stretch;text-align:left;font-weight:400;text-transform:none;letter-spacing:0;}
#node-block_811637f1{width:100%;min-height:100%;padding-top:22.08px;padding-right:22.08px;padding-bottom:22.08px;padding-left:22.08px;background:transparent;display:grid;gap:0.718rem;padding:1.104rem;border:4px solid #cc0000;border-radius:22px;box-shadow:0 12px 24px rgba(44, 31, 22, 0.05);border-width:4px;border-style:solid;row-gap:0rem;column-gap:0rem;color:#0a0a0a;max-width:100%;}
#node-text_6953c80a{font-family:Outfit;font-size:2.2rem;line-height:1.1;color:#0a0a0a;max-width:none;font-weight:700;text-transform:none;letter-spacing:-0.02em;text-align:left;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_a7377519{font-family:Source Sans 3;font-size:1rem;line-height:1.72;color:#374151;max-width:none;grid-column:span 12 / span 12;width:auto;min-width:0;justify-self:stretch;text-align:left;font-weight:400;text-transform:none;letter-spacing:0;}
#node-block_ef8a0edb{width:100%;min-height:100%;padding-top:22.08px;padding-right:22.08px;padding-bottom:22.08px;padding-left:22.08px;background:transparent;display:grid;gap:0.718rem;padding:1.104rem;border:4px solid #cc0000;border-radius:22px;box-shadow:0 12px 24px rgba(44, 31, 22, 0.05);border-width:4px;border-style:solid;row-gap:0rem;column-gap:0rem;color:#0a0a0a;max-width:100%;}
#node-text_2cef1588{font-family:Outfit;font-size:2.2rem;line-height:1.1;color:#0a0a0a;max-width:none;font-weight:700;text-transform:none;letter-spacing:-0.02em;text-align:left;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_7217e270{font-family:Source Sans 3;font-size:1rem;line-height:1.72;color:#374151;max-width:none;grid-column:span 12 / span 12;width:auto;min-width:0;justify-self:stretch;text-align:left;font-weight:400;text-transform:none;letter-spacing:0;}
#node-block_a890723a{width:100%;min-height:100%;padding-top:22.08px;padding-right:22.08px;padding-bottom:22.08px;padding-left:22.08px;background:transparent;display:grid;gap:0.718rem;padding:1.104rem;border:4px solid #cc0000;border-radius:22px;box-shadow:0 12px 24px rgba(44, 31, 22, 0.05);border-width:4px;border-style:solid;row-gap:0rem;column-gap:0rem;color:#0a0a0a;max-width:100%;}
#node-text_e6a99488{font-family:Outfit;font-size:2.2rem;line-height:1.1;color:#0a0a0a;max-width:none;font-weight:700;text-transform:none;letter-spacing:-0.02em;text-align:left;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_a06cfacc{font-family:Source Sans 3;font-size:1rem;line-height:1.72;color:#374151;max-width:none;grid-column:span 12 / span 12;width:auto;min-width:0;justify-self:stretch;text-align:left;font-weight:400;text-transform:none;letter-spacing:0;}
#node-section_c64ee921{width:100%;padding-top:4rem;padding-right:4vw;padding-bottom:4rem;padding-left:4vw;background:#ffffff;display:grid;color:#0a0a0a;border-bottom:1px solid #ebe5dc;border-color:#dccfbe;grid-template-columns:repeat(12, minmax(0, 1fr));gap:1rem;grid-column:span 5 / span 5;grid-row:auto;max-width:100%;}
#node-block_1fcb8ae7{width:auto;padding-top:22.08px;padding-right:22.08px;padding-bottom:22.08px;padding-left:22.08px;background:#ffffff;display:grid;gap:0.874rem;max-width:none;justify-self:stretch;grid-column:span 12 / span 12;min-width:0;color:#0a0a0a;border-color:#dccfbe;}
#node-text_39e998fd{font-family:Outfit;font-size:5rem;line-height:1.05;color:#111827;max-width:none;font-weight:700;grid-column:span 12 / span 12;width:auto;min-width:0;justify-self:stretch;text-align:center;padding-bottom:0px;margin-bottom:0px;text-transform:none;letter-spacing:-0.03em;}
#node-text_6b558fc5{font-family:Source Sans 3;font-size:1rem;line-height:1.72;color:#374151;max-width:none;grid-column:span 12 / span 12;width:auto;min-width:0;justify-self:stretch;text-align:center;font-weight:400;text-transform:none;letter-spacing:0;}
#node-block_5621be7b{width:auto;padding-top:24px;padding-right:24px;padding-bottom:24px;padding-left:24px;background:#f4dfd6;display:grid;border:1px solid #dce5f3;border-radius:0px;overflow:hidden;box-shadow:0 18px 40px rgba(31, 58, 109, 0.08);grid-column:3 / span 8;max-width:none;min-width:0;justify-self:stretch;grid-row:auto;color:#1f1812;border-color:#dccfbe;grid-template-columns:repeat(12, minmax(0, 1fr));gap:0rem;row-gap:0rem;column-gap:0rem;}
#node-block_ceb26cad{width:auto;padding-top:22.08px;padding-right:22.08px;padding-bottom:22.08px;padding-left:22.08px;background:#ffffff;display:grid;align-content:center;justify-items:center;gap:0.92rem;padding:1.472rem;min-height:16rem;position:relative;color:#0a0a0a;border-color:#dccfbe;background-image:url(https://prime-el-rebuild.ewr1.vultrobjects.com/projects/aloraweb/484f3d96-4bb4-435c-b84f-4ff09851d0d8-lady-workc.png);background-size:cover;background-position:center center;background-repeat:no-repeat;grid-column:span 4 / span 4;grid-row:auto;max-width:none;min-width:0;justify-self:stretch;border-right-width:2px;border-right:2px solid #d7dce4;border-right-style:solid;}
#node-block_98ce49a6{width:4.7rem;padding-top:22.08px;padding-right:22.08px;padding-bottom:22.08px;padding-left:22.08px;background:#ffffff;position:absolute;right:1rem;bottom:1rem;height:4.7rem;border-radius:999px;border:1px solid #cfe0ff;display:flex;align-items:center;justify-content:center;box-shadow:0 12px 28px rgba(49, 104, 196, 0.14);color:#0a0a0a;border-color:#dccfbe;flex-wrap:wrap;max-width:100%;}
#node-text_47b92007{font-family:Source Sans 3;font-size:1.18rem;line-height:1.64;color:#374151;max-width:16ch;font-weight:400;text-transform:none;letter-spacing:0;}
#node-block_e7add273{width:auto;padding-top:22.08px;padding-right:22.08px;padding-bottom:22.08px;padding-left:22.08px;background:#ffffff;display:grid;padding:1.472rem;color:#0a0a0a;border-color:#dccfbe;grid-template-columns:repeat(12, minmax(0, 1fr));gap:0.92rem;grid-column:span 8 / span 8;max-width:none;min-width:0;justify-self:stretch;}
#node-text_1f7361a7{font-family:Inter;font-size:0.883rem;line-height:1.1;color:#0a0a0a;max-width:none;font-weight:800;margin-bottom:0rem;grid-column:span 11 / span 11;width:auto;min-width:0;justify-self:stretch;}
#node-text_38b4932c{font-family:Outfit;font-size:2.2rem;line-height:1.1;color:#111827;max-width:none;font-weight:700;text-transform:none;letter-spacing:-0.02em;margin-top:0rem;margin-bottom:0rem;grid-column:span 12 / span 12;width:auto;min-width:0;justify-self:stretch;}
#node-block_c43bd018{width:auto;padding-top:0px;padding-right:22.08px;padding-bottom:0px;padding-left:0px;background:#ffffff;display:block;color:#0a0a0a;border-color:#dccfbe;grid-column:span 11 / span 11;grid-row:auto;margin-top:0%;max-width:none;min-width:0;justify-self:stretch;}
#node-block_588525fe{width:100%;padding-top:0px;padding-right:0px;padding-bottom:0px;padding-left:0px;background:transparent;display:grid;align-items:center;color:#0a0a0a;grid-template-columns:repeat(12, minmax(0, 1fr));gap:1rem;max-width:100%;}
#node-icon_50c4b814{width:auto;height:47px;color:#949494;justify-self:stretch;align-self:start;grid-column:span 2 / span 2;grid-row:auto;max-width:none;min-width:0;padding-top:0px;margin-top:0px;}
#node-text_c3d7ab2c{font-family:Outfit;font-size:1.3rem;line-height:1.18;color:#111827;max-width:none;font-weight:600;text-transform:none;letter-spacing:-0.01em;grid-column:span 10 / span 10;width:auto;min-width:0;justify-self:stretch;margin-top:0rem;padding-top:0rem;margin-bottom:0rem;}
#node-block_741f871e{width:auto;padding-top:0px;padding-right:24px;padding-bottom:0px;padding-left:0px;background:#ffffff;display:block;color:#0a0a0a;border-color:#dccfbe;grid-column:span 11 / span 11;grid-row:auto;margin-top:0%;max-width:none;min-width:0;justify-self:stretch;}
#node-block_39aa8bd3{width:100%;padding-top:0px;padding-right:0px;padding-bottom:0px;padding-left:0px;background:transparent;display:grid;align-items:center;color:#0a0a0a;grid-template-columns:repeat(12, minmax(0, 1fr));gap:1rem;max-width:100%;}
#node-icon_90035623{width:auto;height:62px;color:#949494;justify-self:stretch;align-self:start;grid-column:span 2 / span 2;grid-row:auto;max-width:none;min-width:0;padding-top:0px;margin-top:0px;}
#node-text_a7356338{font-family:Outfit;font-size:1.3rem;line-height:1.18;color:#111827;max-width:none;font-weight:600;text-transform:none;letter-spacing:-0.01em;grid-column:span 10 / span 10;width:auto;min-width:0;justify-self:stretch;margin-top:0rem;padding-top:0rem;margin-bottom:0rem;}
#node-block_26d043c1{width:auto;padding-top:0px;padding-right:22.08px;padding-bottom:0px;padding-left:0px;background:#ffffff;display:block;color:#0a0a0a;border-color:#dccfbe;grid-column:span 11 / span 11;grid-row:auto;margin-top:0%;max-width:none;min-width:0;justify-self:stretch;}
#node-block_12cd155c{width:100%;padding-top:0px;padding-right:0px;padding-bottom:0px;padding-left:0px;background:transparent;display:grid;align-items:center;color:#0a0a0a;grid-template-columns:repeat(12, minmax(0, 1fr));gap:1rem;max-width:100%;}
#node-icon_97cce732{width:auto;height:37px;color:#949494;justify-self:stretch;align-self:start;grid-column:span 2 / span 2;grid-row:auto;max-width:none;min-width:0;padding-top:0px;margin-top:0px;}
#node-text_2a4b95e1{font-family:Outfit;font-size:1.3rem;line-height:1.18;color:#111827;max-width:none;font-weight:600;text-transform:none;letter-spacing:-0.01em;grid-column:span 10 / span 10;width:auto;min-width:0;justify-self:stretch;margin-top:0rem;padding-top:0rem;margin-bottom:0rem;}
#node-block_1f51654f{width:auto;padding-top:0px;padding-right:22.08px;padding-bottom:0px;padding-left:0px;background:#ffffff;display:block;color:#0a0a0a;border-color:#dccfbe;grid-column:span 11 / span 11;grid-row:auto;margin-top:0%;max-width:none;min-width:0;justify-self:stretch;}
#node-block_1ff8b9df{width:100%;padding-top:0px;padding-right:0px;padding-bottom:0px;padding-left:0px;background:transparent;display:grid;align-items:center;color:#0a0a0a;grid-template-columns:repeat(12, minmax(0, 1fr));gap:0.92rem;max-width:100%;}
#node-text_d773e5bb{font-family:Outfit;font-size:1.3rem;line-height:1.18;color:#111827;max-width:none;font-weight:600;text-transform:none;letter-spacing:-0.01em;grid-column:span 10 / span 10;width:auto;min-width:0;justify-self:stretch;margin-top:0rem;padding-top:0rem;margin-bottom:0rem;}
#node-text_b32d5796{font-family:Outfit;font-size:5rem;line-height:1.05;color:#111827;max-width:none;font-weight:700;text-align:center;justify-self:stretch;grid-column:span 12 / span 12;width:auto;min-width:0;text-transform:none;letter-spacing:-0.03em;}
#node-block_21933d32{width:auto;padding-top:24px;padding-right:24px;padding-bottom:24px;padding-left:24px;background:#ffffff;display:grid;grid-column:span 12 / span 12;max-width:none;min-width:0;justify-self:stretch;color:#0a0a0a;border-color:#dccfbe;grid-template-columns:repeat(12, minmax(0, 1fr));gap:1rem;}
#node-block_37609dd8{width:auto;padding-top:24px;padding-right:24px;padding-bottom:24px;padding-left:24px;background:#ffffff;display:grid;text-align:center;padding:1.35rem 1rem;border:1px solid #dce5f3;border-radius:22px;box-shadow:0 12px 28px rgba(31, 58, 109, 0.06);grid-column:span 4 / span 4;grid-row:auto;color:#0a0a0a;border-color:#dccfbe;max-width:none;min-width:0;justify-self:stretch;grid-template-columns:repeat(12, minmax(0, 1fr));gap:1rem;}
#node-block_7b4296ce{width:auto;padding-top:4.6px;padding-right:22.08px;padding-bottom:22.08px;padding-left:22.08px;background:#ffffff;height:4.3rem;border-radius:999px;display:flex;align-items:center;justify-content:center;grid-column:span 12 / span 12;grid-row:auto;color:#0a0a0a;border-color:#dccfbe;max-width:none;min-width:0;justify-self:stretch;flex-wrap:wrap;}
#node-icon_0a01931b{width:2.85rem;height:2.85rem;color:#0a0a0a;justify-self:start;align-self:start;max-width:100%;}
#node-text_bc77171b{font-family:Outfit;font-size:2.2rem;line-height:1.1;color:#111827;max-width:none;font-weight:700;grid-column:span 12 / span 12;width:auto;min-width:0;justify-self:stretch;text-transform:none;letter-spacing:-0.02em;}
#node-block_d104a777{width:auto;padding-top:0px;padding-right:0px;padding-bottom:0px;padding-left:22.08px;background:#14b8a6;height:1px;opacity:0.35;border-width:2px;border:2px solid #dccfbe;border-style:solid;grid-column:span 12 / span 12;max-width:none;min-width:0;justify-self:stretch;}
#node-text_3e49ee4d{font-family:Inter;font-size:0.846rem;line-height:1.1;color:#14b8a6;max-width:none;font-weight:700;padding-right:0rem;grid-column:span 12 / span 12;width:auto;min-width:0;justify-self:stretch;}
#node-text_4c147afb{font-family:Outfit;font-size:1.3rem;line-height:1.18;color:#ff3131;max-width:none;font-weight:600;padding-right:0rem;grid-column:span 12 / span 12;width:auto;min-width:0;justify-self:stretch;margin-top:0rem;text-transform:none;letter-spacing:-0.01em;}
#node-block_1b039e6c{width:auto;padding-top:24px;padding-right:24px;padding-bottom:24px;padding-left:24px;background:#000000;display:grid;text-align:center;padding:1.35rem 1rem;border:1px solid #dce5f3;border-radius:22px;box-shadow:0 12px 28px rgba(31, 58, 109, 0.06);color:#ffffff;border-color:#dccfbe;grid-column:span 4 / span 4;max-width:none;min-width:0;justify-self:stretch;grid-template-columns:repeat(12, minmax(0, 1fr));gap:1rem;grid-row:auto;}
#node-block_1b82ca94{width:auto;padding-top:11.04px;padding-right:22.08px;padding-bottom:22.08px;padding-left:22.08px;background:transparent;height:4.3rem;border-radius:999px;display:flex;align-items:center;justify-content:center;grid-column:span 12 / span 12;max-width:none;min-width:0;justify-self:stretch;color:#0a0a0a;flex-wrap:wrap;}
#node-icon_576a0b72{width:2.85rem;height:2.85rem;color:#ff3131;justify-self:start;align-self:start;grid-column:span 2 / span 2;grid-row:auto;max-width:100%;}
#node-text_56705c4d{font-family:Outfit;font-size:2.2rem;line-height:1.1;color:#ffffff;max-width:none;font-weight:700;grid-column:span 12 / span 12;width:auto;min-width:0;justify-self:stretch;grid-row:auto;text-transform:none;letter-spacing:-0.02em;}
#node-block_337617fa{width:auto;padding-top:0px;padding-right:22.08px;padding-bottom:0px;padding-left:22.08px;background:#a855f7;height:0px;opacity:0.35;border-width:2px;border:2px solid #dccfbe;border-style:solid;display:block;margin-top:0px;grid-column:span 12 / span 12;grid-row:auto;max-width:none;min-width:0;justify-self:stretch;}
#node-text_d00e0dcd{font-family:Inter;font-size:0.846rem;line-height:1.1;color:#949494;max-width:16ch;font-weight:700;grid-column:4 / span 6;grid-row:auto;}
#node-text_807f8363{font-family:Outfit;font-size:1.3rem;line-height:1.18;color:#949494;max-width:none;font-weight:600;margin-top:0rem;grid-column:span 12 / span 12;grid-row:auto;width:auto;min-width:0;justify-self:stretch;text-transform:none;letter-spacing:-0.01em;}
#node-block_4c7d790c{width:auto;padding-top:22.08px;padding-right:22.08px;padding-bottom:22.08px;padding-left:22.08px;background:#ffffff;display:grid;text-align:center;padding:1.35rem 1rem;border:1px solid #dce5f3;border-radius:22px;box-shadow:0 12px 28px rgba(31, 58, 109, 0.06);grid-column:span 4 / span 4;grid-row:auto;color:#0a0a0a;border-color:#dccfbe;max-width:none;min-width:0;justify-self:stretch;grid-template-columns:repeat(12, minmax(0, 1fr));gap:0.92rem;}
#node-block_3e5314c1{width:auto;padding-top:11.96px;padding-right:22.08px;padding-bottom:22.08px;padding-left:22.08px;background:#ffffff;height:4.3rem;border-radius:999px;display:flex;align-items:center;justify-content:center;grid-column:span 12 / span 12;grid-row:auto;color:#0a0a0a;border-color:#dccfbe;max-width:none;min-width:0;justify-self:stretch;flex-wrap:wrap;}
#node-icon_10848535{width:2.85rem;height:2.85rem;color:#0a0a0a;justify-self:start;align-self:start;grid-column:span 2 / span 2;grid-row:auto;margin-top:0rem;max-width:100%;}
#node-text_4e4cd4fd{font-family:Outfit;font-size:2.2rem;line-height:1.1;color:#111827;max-width:none;font-weight:700;grid-column:span 12 / span 12;width:auto;min-width:0;justify-self:stretch;text-transform:none;letter-spacing:-0.02em;}
#node-block_95a98ff2{width:auto;padding-top:0px;padding-right:22.08px;padding-bottom:0px;padding-left:22.08px;background:#ffffff;height:0px;opacity:0.35;border-width:2px;border:2px solid #dccfbe;border-style:solid;grid-column:span 12 / span 12;max-width:none;min-width:0;justify-self:stretch;color:#0a0a0a;border-color:#dccfbe;}
#node-text_71966551{font-family:Inter;font-size:0.846rem;line-height:1.1;color:#949494;max-width:none;font-weight:700;grid-column:span 12 / span 12;width:auto;min-width:0;justify-self:stretch;}
#node-text_a2b04b13{font-family:Outfit;font-size:1.3rem;line-height:1.18;color:#111827;max-width:none;font-weight:600;grid-column:span 12 / span 12;width:auto;min-width:0;justify-self:stretch;margin-top:0rem;text-transform:none;letter-spacing:-0.01em;}
#node-block_9d53ef4e{width:auto;padding-top:24px;padding-right:24px;padding-bottom:24px;padding-left:24px;background:#f4dfd6;display:grid;align-items:center;justify-self:stretch;max-width:none;padding:1rem 1.2rem;border:1px solid #dce5f3;border-radius:18px;grid-column:4 / span 6;min-width:0;grid-row:auto;grid-template-columns:repeat(12, minmax(0, 1fr));gap:1rem;color:#1f1812;border-color:#dccfbe;}
#node-icon_ec068c0f{width:auto;height:2.05rem;color:#0a0a0a;justify-self:stretch;align-self:start;grid-column:auto;max-width:none;min-width:0;}
#node-text_7fea7c47{font-family:Outfit;font-size:1.3rem;line-height:1.18;color:#0a0a0a;max-width:none;font-weight:600;text-transform:none;letter-spacing:-0.01em;grid-column:span 10 / span 10;width:auto;min-width:0;justify-self:stretch;margin-top:0rem;margin-bottom:0rem;}
#node-block_b6b9a778{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:5 / 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_d06ec2f5{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_337a82da{width:100%;min-height:220px;padding-top:3.68rem;padding-right:4vw;padding-bottom:0rem;padding-left:4vw;background:#ffffff;display:grid;gap:1.15rem;color:#0a0a0a;border-bottom:1px solid #ebe5dc;grid-column:4 / span 9;grid-row:auto;max-width:100%;border-color:#dccfbe;}
#node-block_aaca42b4{width:auto;min-height:140px;padding-top:22.08px;padding-right:22.08px;padding-bottom:22.08px;padding-left:22.08px;background:#ffffff;display:grid;gap:0.874rem;max-width:none;justify-self:stretch;grid-column:span 12 / span 12;min-width:0;color:#0a0a0a;border-color:#dccfbe;}
#node-text_e3c90ffd{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;padding-right:1.748rem;grid-column:span 12 / span 12;width:auto;min-width:0;justify-self:stretch;text-align:left;margin-bottom:0rem;}
#node-text_1a537d50{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-right:1.748rem;grid-column:span 12 / span 12;width:auto;min-width:0;justify-self:stretch;text-align:right;margin-top:0rem;margin-bottom:0rem;}
#node-text_39810f24{font-family:Outfit;font-size:5rem;line-height:1.05;color:#0a0a0a;max-width:none;font-weight:700;text-transform:none;letter-spacing:-0.03em;padding-right:1.748rem;grid-column:span 12 / span 12;width:auto;min-width:0;justify-self:stretch;text-align:right;margin-top:0rem;margin-bottom:0rem;}
#node-text_75234895{font-family:Outfit;font-size:5rem;line-height:1.05;color:#0a0a0a;max-width:none;font-weight:700;text-transform:none;letter-spacing:-0.03em;padding-right:1.748rem;grid-column:span 12 / span 12;width:auto;min-width:0;justify-self:stretch;text-align:right;margin-top:0rem;margin-bottom:0rem;}
#node-text_e575767e{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;padding-right:1.748rem;grid-column:4 / span 9;width:auto;min-width:0;justify-self:stretch;text-align:right;margin-top:0rem;margin-bottom:0rem;grid-row:auto;}
#node-text_f8406c65{font-family:Source Sans 3;font-size:1rem;line-height:1.72;color:#374151;max-width:none;grid-column:4 / span 6;width:auto;min-width:0;justify-self:stretch;text-align:center;grid-row:auto;margin-top:3.128rem;padding-top:0rem;font-weight:400;text-transform:none;letter-spacing:0;}
#node-section_4b9dd335{width:100%;padding-top:4rem;padding-right:4vw;padding-bottom:4rem;padding-left:4vw;background:#000000;display:grid;color:#ffffff;border-bottom:1px solid #ebe5dc;min-height:78vh;align-items:center;border-color:#dccfbe;grid-template-columns:repeat(12, minmax(0, 1fr));gap:1rem;max-width:100%;}
#node-block_06faa9f5{width:auto;padding-top:24px;padding-right:24px;padding-bottom:24px;padding-left:24px;background:transparent;display:grid;max-width:none;justify-self:stretch;color:#0a0a0a;grid-template-columns:repeat(12, minmax(0, 1fr));gap:1rem;grid-column:span 6 / span 6;min-width:0;}
#node-text_286a966d{font-family:Inter;font-size:0.699rem;line-height:1.1;color:#949494;max-width:none;letter-spacing:0.18em;text-transform:uppercase;font-weight:700;grid-column:span 12 / span 12;width:auto;min-width:0;justify-self:stretch;}
#node-text_c2236845{font-family:Outfit;font-size:5rem;line-height:1.05;color:#ffffff;max-width:none;font-weight:700;grid-column:span 12 / span 12;width:auto;min-width:0;justify-self:stretch;padding-bottom:0px;margin-bottom:0px;margin-top:0px;text-transform:none;letter-spacing:-0.03em;}
#node-text_f0a5937a{font-family:Outfit;font-size:5rem;line-height:1.05;color:#ff3131;max-width:none;font-weight:700;grid-column:span 12 / span 12;width:auto;min-width:0;justify-self:stretch;padding-top:0px;margin-top:0px;margin-bottom:0px;text-transform:none;letter-spacing:-0.03em;}
#node-text_ebef552c{font-family:Outfit;font-size:5rem;line-height:1.05;color:#ffffff;max-width:none;grid-column:span 12 / span 12;width:auto;min-width:0;justify-self:stretch;font-weight:700;text-transform:none;letter-spacing:-0.03em;margin-top:0rem;padding-bottom:0rem;margin-bottom:0rem;}
#node-text_6fadbe33{font-family:Source Sans 3;font-size:1rem;line-height:1.72;color:#949494;max-width:none;grid-column:span 9 / span 9;width:auto;min-width:0;justify-self:stretch;margin-top:0rem;font-weight:400;text-transform:none;letter-spacing:0;}
#node-block_7fc71f55{width:auto;padding-top:22.08px;padding-right:22.08px;padding-bottom:22.08px;padding-left:22.08px;background:#000000;position:relative;display:grid;align-items:end;justify-items:center;border-radius:28px;padding:1.012rem;border:none;box-shadow:none;justify-self:stretch;align-self:stretch;min-height:33rem;overflow:hidden;color:#ffffff;align-content:center;border-width:0px;border-style:none;grid-column:span 6 / span 6;max-width:none;min-width:0;border-color:#dccfbe;}
#node-image_28cf1b98{width:100%;object-fit:cover;position:relative;max-width:100%;height:auto;}
#node-block_80344abf{width:auto;padding-top:0.552rem;padding-right:22.08px;padding-bottom:22.08px;padding-left:22.08px;background:transparent;grid-column:span 12 / span 12;display:grid;grid-template-columns:repeat(3, minmax(0, 1fr));gap:0.92rem;color:#0a0a0a;max-width:none;min-width:0;justify-self:stretch;}
#node-block_1defd29b{width:100%;padding-top:22.08px;padding-right:22.08px;padding-bottom:22.08px;padding-left:22.08px;background:#ffffff;position:relative;display:grid;gap:0.736rem;justify-items:center;text-align:center;padding:1.35rem 1rem 1.2rem;border:1px solid #e3ebf8;border-top:5px solid #14b8a6;border-radius:24px;box-shadow:0 16px 34px rgba(31, 58, 109, 0.06);overflow:hidden;max-width:100%;}
#node-block_8391ba71{width:auto;padding-top:22.08px;padding-right:22.08px;padding-bottom:22.08px;padding-left:22.08px;background:#f4dfd6;position:absolute;top:0;right:0;padding:0.55rem 0.85rem;color:#1f1812;border-bottom-left-radius:18px;font-size:0.902rem;font-weight:800;grid-column:span 2 / span 2;max-width:none;min-width:0;justify-self:stretch;border-color:#dccfbe;}
#node-text_98f02af2{font-family:Inter;font-size:0.902rem;line-height:1.1;color:#ffffff;max-width:16ch;font-weight:800;}
#node-block_d6a72183{width:5.3rem;padding-top:22.08px;padding-right:22.08px;padding-bottom:22.08px;padding-left:22.08px;background:#effcf8;height:5.3rem;border-radius:999px;display:flex;align-items:center;justify-content:center;flex-wrap:wrap;max-width:100%;}
#node-icon_b6f08092{width:2rem;height:2rem;color:#14b8a6;justify-self:start;align-self:start;max-width:100%;}
#node-text_dc4a701b{font-family:Outfit;font-size:2.2rem;line-height:1.1;color:#111827;max-width:12ch;font-weight:700;text-transform:none;letter-spacing:-0.02em;}
#node-block_1e43570b{width:3rem;padding-top:22.08px;padding-right:22.08px;padding-bottom:22.08px;padding-left:22.08px;background:#f4dfd6;height:3px;border-radius:999px;opacity:0.8;color:#1f1812;border-color:#dccfbe;max-width:100%;}
#node-text_d1c9e2e8{font-family:Source Sans 3;font-size:1rem;line-height:1.72;color:#374151;max-width:18ch;font-weight:400;text-transform:none;letter-spacing:0;}
#node-text_2dcbb07b{font-family:Source Sans 3;font-size:1.18rem;line-height:1.64;color:#374151;max-width:16ch;font-weight:400;text-transform:none;letter-spacing:0;}
#node-block_0fe345d3{width:100%;padding-top:22.08px;padding-right:22.08px;padding-bottom:22.08px;padding-left:22.08px;background:#ffffff;position:relative;display:grid;gap:0.736rem;justify-items:center;text-align:center;padding:1.35rem 1rem 1.2rem;border:1px solid #e3ebf8;border-top:5px solid #8b5cf6;border-radius:24px;box-shadow:0 16px 34px rgba(31, 58, 109, 0.06);overflow:hidden;max-width:100%;}
#node-block_f2464310{width:auto;padding-top:22.08px;padding-right:22.08px;padding-bottom:22.08px;padding-left:22.08px;background:#f4dfd6;position:absolute;top:0;right:0;padding:0.55rem 0.85rem;color:#1f1812;border-bottom-left-radius:18px;font-size:0.902rem;font-weight:800;grid-column:span 2 / span 2;max-width:none;min-width:0;justify-self:stretch;border-color:#dccfbe;}
#node-text_0a7e7418{font-family:Inter;font-size:0.902rem;line-height:1.1;color:#0a0a0a;max-width:16ch;font-weight:800;}
#node-block_58778472{width:5.3rem;padding-top:22.08px;padding-right:22.08px;padding-bottom:22.08px;padding-left:22.08px;background:#f6f0ff;height:5.3rem;border-radius:999px;display:flex;align-items:center;justify-content:center;flex-wrap:wrap;max-width:100%;}
#node-icon_f193ee89{width:2rem;height:2rem;color:#8b5cf6;justify-self:start;align-self:start;max-width:100%;}
#node-text_086c66aa{font-family:Outfit;font-size:2.2rem;line-height:1.1;color:#0a0a0a;max-width:12ch;font-weight:700;text-transform:none;letter-spacing:-0.02em;}
#node-block_aca510ff{width:3rem;padding-top:22.08px;padding-right:22.08px;padding-bottom:22.08px;padding-left:22.08px;background:#f4dfd6;height:3px;border-radius:999px;opacity:0.8;color:#1f1812;border-color:#dccfbe;max-width:100%;}
#node-text_3835809b{font-family:Source Sans 3;font-size:1rem;line-height:1.72;color:#374151;max-width:18ch;font-weight:400;text-transform:none;letter-spacing:0;}
#node-text_53ca5231{font-family:Source Sans 3;font-size:1.18rem;line-height:1.64;color:#374151;max-width:16ch;font-weight:400;text-transform:none;letter-spacing:0;}
#node-block_52797bfa{width:100%;padding-top:22.08px;padding-right:22.08px;padding-bottom:22.08px;padding-left:22.08px;background:#ffffff;position:relative;display:grid;gap:0.736rem;justify-items:center;text-align:center;padding:1.35rem 1rem 1.2rem;border:1px solid #e3ebf8;border-top:5px solid #f97316;border-radius:24px;box-shadow:0 16px 34px rgba(31, 58, 109, 0.06);overflow:hidden;max-width:100%;}
#node-block_9fd57fe2{width:auto;padding-top:22.08px;padding-right:22.08px;padding-bottom:22.08px;padding-left:22.08px;background:#ff3131;position:absolute;top:0;right:0;padding:0.55rem 0.85rem;color:#0a0a0a;border-bottom-left-radius:18px;font-size:0.902rem;font-weight:800;grid-column:span 2 / span 2;max-width:none;min-width:0;justify-self:stretch;border-color:#dccfbe;}
#node-text_25f6b06a{font-family:Inter;font-size:0.902rem;line-height:1.1;color:#ffffff;max-width:16ch;font-weight:800;}
#node-block_9f2ee65a{width:5.3rem;padding-top:22.08px;padding-right:22.08px;padding-bottom:22.08px;padding-left:22.08px;background:#fff3e8;height:5.3rem;border-radius:999px;display:flex;align-items:center;justify-content:center;flex-wrap:wrap;max-width:100%;}
#node-icon_fac62b5a{width:2rem;height:2rem;color:#f97316;justify-self:start;align-self:start;max-width:100%;}
#node-text_2691a9fd{font-family:Outfit;font-size:2.2rem;line-height:1.1;color:#111827;max-width:12ch;font-weight:700;text-transform:none;letter-spacing:-0.02em;}
#node-block_72d0b52e{width:3rem;padding-top:22.08px;padding-right:22.08px;padding-bottom:22.08px;padding-left:22.08px;background:#ff3131;height:3px;border-radius:999px;opacity:0.8;color:#0a0a0a;border-color:#dccfbe;max-width:100%;}
#node-text_8570d044{font-family:Source Sans 3;font-size:1rem;line-height:1.72;color:#374151;max-width:18ch;font-weight:400;text-transform:none;letter-spacing:0;}
#node-text_8f3c3533{font-family:Source Sans 3;font-size:1.18rem;line-height:1.64;color:#374151;max-width:16ch;font-weight:400;text-transform:none;letter-spacing:0;}
#node-block_cb0b6764{width:auto;padding-top:24px;padding-right:24px;padding-bottom:24px;padding-left:24px;background:transparent;grid-column:span 12 / span 12;display:grid;justify-items:center;gap:1rem;color:#0a0a0a;max-width:none;min-width:0;justify-self:stretch;grid-template-columns:repeat(12, minmax(0, 1fr));}
#node-block_c0393fd5{width:auto;padding-top:0px;padding-right:0px;padding-bottom:0px;padding-left:0px;background:transparent;display:grid;flex-wrap:wrap;justify-content:center;color:#0a0a0a;grid-template-columns:repeat(12, minmax(0, 1fr));gap:1rem;grid-column:span 12 / span 12;max-width:none;min-width:0;justify-self:stretch;}
#node-block_84a34f8b{width:auto;padding-top:24px;padding-right:24px;padding-bottom:24px;padding-left:24px;background:transparent;display:flex;align-items:center;grid-column:span 3 / span 3;max-width:none;min-width:0;justify-self:stretch;color:#0a0a0a;flex-direction:row;flex-wrap:wrap;gap:16px;justify-content:center;align-content:flex-start;}
#node-icon_96c432c3{width:2rem;height:2rem;color:#949494;justify-self:start;align-self:start;margin-left:0rem;padding-left:0rem;max-width:100%;}
#node-text_92abf93b{font-family:Source Sans 3;font-size:1.18rem;line-height:1.64;color:#949494;max-width:16ch;font-weight:400;text-transform:none;letter-spacing:0;margin-top:0rem;display:block;width:100%;text-align:center;}
#node-block_4c34087d{width:auto;padding-top:22.08px;padding-right:22.08px;padding-bottom:22.08px;padding-left:22.08px;background:transparent;display:flex;align-items:center;grid-column:span 3 / span 3;max-width:none;min-width:0;justify-self:stretch;color:#0a0a0a;flex-direction:row;flex-wrap:wrap;gap:14.72px;justify-content:center;}
#node-icon_df91607b{width:2rem;height:2rem;color:#949494;justify-self:start;align-self:start;max-width:100%;}
#node-text_d12f328b{font-family:Source Sans 3;font-size:1.18rem;line-height:1.64;color:#949494;max-width:16ch;font-weight:400;text-transform:none;letter-spacing:0;margin-top:0rem;display:block;width:100%;text-align:center;}
#node-block_7711c9ca{width:auto;padding-top:22.08px;padding-right:22.08px;padding-bottom:22.08px;padding-left:22.08px;background:transparent;display:flex;align-items:center;grid-column:span 3 / span 3;max-width:none;min-width:0;justify-self:stretch;color:#0a0a0a;flex-direction:row;flex-wrap:wrap;gap:14.72px;justify-content:center;}
#node-icon_d8ed45e0{width:2rem;height:2rem;color:#949494;justify-self:start;align-self:start;max-width:100%;}
#node-text_dd888394{font-family:Source Sans 3;font-size:1.18rem;line-height:1.64;color:#949494;max-width:16ch;font-weight:400;text-transform:none;letter-spacing:0;margin-top:0rem;display:block;width:100%;text-align:center;}
#node-block_2f2c52e1{width:auto;padding-top:22.08px;padding-right:22.08px;padding-bottom:22.08px;padding-left:22.08px;background:transparent;display:flex;align-items:center;grid-column:span 3 / span 3;max-width:none;min-width:0;justify-self:stretch;color:#0a0a0a;flex-direction:row;flex-wrap:wrap;gap:14.72px;justify-content:center;}
#node-icon_75e8a4eb{width:2rem;height:2rem;color:#949494;justify-self:start;align-self:start;max-width:100%;}
#node-text_0afa3b15{font-family:Source Sans 3;font-size:1.18rem;line-height:1.64;color:#949494;max-width:16ch;font-weight:400;text-transform:none;letter-spacing:0;margin-top:0rem;display:block;width:100%;text-align:center;}
#node-block_07cd1191{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:5 / 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_7ff94497{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_5c0f7754{width:100%;min-height:220px;padding-top:3.68rem;padding-right:4vw;padding-bottom:0rem;padding-left:4vw;display:grid;gap:1.15rem;color:#0a0a0a;border-bottom:1px solid #ebe5dc;grid-column:span 6 / span 6;grid-row:auto;background-size:cover;background-position:center center;background-repeat:no-repeat;max-width:100%;}
#node-block_e87ef8ee{width:auto;min-height:140px;padding-top:22.08px;padding-right:17.48px;padding-bottom:187.68px;padding-left:22.08px;background:transparent;display:grid;max-width:none;justify-self:stretch;grid-column:span 12 / span 12;min-width:0;grid-template-columns:repeat(12, minmax(0, 1fr));gap:0.92rem;color:#0a0a0a;}
#node-text_ce94c371{font-family:Outfit;font-size:5rem;line-height:1.05;color:#ffffff;max-width:none;font-weight:700;text-transform:none;letter-spacing:-0.03em;padding-right:1.748rem;grid-column:span 8 / span 8;width:auto;min-width:0;justify-self:stretch;text-align:left;margin-bottom:0rem;}
#node-text_a74a6255{font-family:Source Sans 3;font-size:1rem;line-height:1.72;color:#949494;max-width:none;grid-column:span 6 / span 6;width:auto;min-width:0;justify-self:stretch;text-align:left;grid-row:auto;margin-top:0rem;font-weight:400;text-transform:none;letter-spacing:0;}
#node-section_b8d8bb64{width:100%;min-height:220px;padding-top:3.68rem;padding-right:4vw;padding-bottom:0rem;padding-left:4vw;background:#ffffff;display:grid;gap:1.15rem;color:#151515;border-bottom:1px solid #ebe5dc;max-width:100%;}
#node-block_b8c91eec{width:auto;min-height:140px;padding-top:22.08px;padding-right:22.08px;padding-bottom:22.08px;padding-left:22.08px;background:#ffffff;display:grid;gap:0.874rem;max-width:none;justify-self:stretch;grid-column:span 12 / span 12;min-width:0;color:#0a0a0a;border-color:#dccfbe;}
#node-text_fa7e6f3d{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;padding-right:1.748rem;grid-column:span 12 / span 12;width:auto;min-width:0;justify-self:stretch;text-align:center;margin-bottom:0rem;}
#node-text_26c6dfb0{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-right:1.748rem;grid-column:span 12 / span 12;width:auto;min-width:0;justify-self:stretch;text-align:center;margin-top:0rem;margin-bottom:0rem;}
#node-text_243af692{font-family:Source Sans 3;font-size:1rem;line-height:1.72;color:#374151;max-width:none;grid-column:4 / span 6;width:auto;min-width:0;justify-self:stretch;text-align:center;grid-row:auto;margin-top:0rem;font-weight:400;text-transform:none;letter-spacing:0;}
#node-section_340f7e92{width:100%;min-height:220px;padding-top:0rem;padding-right:4vw;padding-bottom:4rem;padding-left:4vw;background:transparent;display:grid;gap:1.25rem;color:#0a0a0a;border-bottom:1px solid #ebe5dc;max-width:100%;}
#node-block_3b9d3daa{width:100%;min-height:140px;padding-top:24px;padding-right:24px;padding-bottom:24px;padding-left:24px;display:grid;background:transparent;color:#0a0a0a;grid-template-columns:repeat(12, minmax(0, 1fr));gap:1rem;max-width:100%;}
#node-block_934872cb{width:auto;padding-top:0px;padding-right:0px;padding-bottom:0px;padding-left:0px;display:flex;gap:0.718rem;padding:1.104rem;border:none;border-radius:0px;box-shadow:none;border-width:0px;border-style:none;color:#0a0a0a;height:auto;flex-direction:row;flex-wrap:wrap;align-items:stretch;justify-content:flex-start;align-content:flex-end;grid-column:span 4 / span 4;max-width:none;min-width:0;justify-self:stretch;background:transparent;}
#node-image_48467ae4{position:relative;display:block;width:100%;min-height:180px;background:#f1f1f1;border:1px dashed #d8d8d8;max-width:100%;height:auto;}
#node-block_f2185fab{width:auto;padding-top:0px;padding-right:0px;padding-bottom:0px;padding-left:0px;display:flex;gap:0.718rem;padding:1.104rem;border:none;border-radius:0px;box-shadow:none;border-width:1px;border-style:none;color:#0a0a0a;height:auto;flex-direction:row;flex-wrap:wrap;align-items:stretch;justify-content:flex-start;align-content:flex-end;grid-column:span 4 / span 4;max-width:none;min-width:0;justify-self:stretch;background:transparent;}
#node-image_3e3a5c92{position:relative;display:block;width:100%;min-height:180px;background:#f1f1f1;border:1px dashed #d8d8d8;max-width:100%;height:auto;}
#node-block_96077f0a{width:auto;padding-top:0px;padding-right:0px;padding-bottom:0px;padding-left:0px;display:flex;gap:0.718rem;padding:1.104rem;border:none;border-radius:0px;box-shadow:none;border-width:0px;border-style:none;color:#0a0a0a;height:auto;flex-direction:row;flex-wrap:wrap;align-items:stretch;justify-content:flex-start;align-content:flex-end;grid-column:span 4 / span 4;max-width:none;min-width:0;justify-self:stretch;background:transparent;}
#node-image_d89f0ba2{position:relative;display:block;width:100%;min-height:180px;background:#f1f1f1;border:1px dashed #d8d8d8;max-width:100%;height:auto;}
#node-block_6bbc8941{width:auto;padding-top:0px;padding-right:0px;padding-bottom:0px;padding-left:0px;display:block;padding:1.104rem;border:none;border-radius:0px;box-shadow:none;border-width:0px;border-style:none;color:#0a0a0a;height:auto;flex-direction:row;flex-wrap:wrap;align-items:stretch;justify-content:flex-start;grid-column:span 4 / span 4;max-width:none;min-width:0;justify-self:stretch;margin-top:0rem;background:transparent;}
#node-text_8ef15d6b{font-family:Outfit;font-size:1.3rem;line-height:1.18;color:#0a0a0a;max-width:none;font-weight:600;text-transform:none;letter-spacing:-0.01em;text-align:left;margin-top:0px;grid-column:span 12 / span 12;width:auto;min-width:0;justify-self:stretch;padding-bottom:0px;margin-bottom:0px;}
#node-image_c502fb47{position:relative;display:block;width:100%;min-height:180px;background:#f1f1f1;border:1px dashed #d8d8d8;max-width:100%;height:auto;}
#node-block_371711e2{width:auto;padding-top:0px;padding-right:0px;padding-bottom:0px;padding-left:0px;display:block;padding:1.104rem;border:none;border-radius:0px;box-shadow:none;border-width:0px;border-style:none;color:#0a0a0a;height:auto;flex-direction:row;flex-wrap:wrap;align-items:stretch;justify-content:flex-start;grid-column:span 4 / span 4;max-width:none;min-width:0;justify-self:stretch;margin-top:0rem;background:transparent;}
#node-text_7d584413{font-family:Outfit;font-size:1.3rem;line-height:1.18;color:#0a0a0a;max-width:none;font-weight:600;text-transform:none;letter-spacing:-0.01em;text-align:left;margin-top:0px;grid-column:span 12 / span 12;width:auto;min-width:0;justify-self:stretch;padding-bottom:0px;margin-bottom:0px;}
#node-image_c71ef7cb{position:relative;display:block;width:100%;min-height:180px;background:#f1f1f1;border:1px dashed #d8d8d8;max-width:100%;height:auto;}
#node-block_aca61597{width:auto;padding-top:0px;padding-right:0px;padding-bottom:0px;padding-left:0px;display:block;padding:1.104rem;border:none;border-radius:0px;box-shadow:none;border-width:0px;border-style:none;color:#0a0a0a;height:auto;flex-direction:row;flex-wrap:wrap;align-items:stretch;justify-content:flex-start;grid-column:span 4 / span 4;max-width:none;min-width:0;justify-self:stretch;margin-top:0rem;background:transparent;}
#node-text_586b448f{font-family:Outfit;font-size:1.3rem;line-height:1.18;color:#0a0a0a;max-width:none;font-weight:600;text-transform:none;letter-spacing:-0.01em;text-align:left;margin-top:0px;grid-column:span 12 / span 12;width:auto;min-width:0;justify-self:stretch;padding-bottom:0px;margin-bottom:0px;}
#node-image_aaadf2b0{position:relative;display:block;width:100%;min-height:180px;background:#f1f1f1;border:1px dashed #d8d8d8;max-width:100%;height:auto;}
#node-section_9d467696{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;grid-column:span 4 / span 4;grid-row:auto;border-color:#dccfbe;max-width:100%;}
#node-block_0e4905bd{width:auto;min-height:140px;padding-top:22.08px;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_1528e366{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_102459ee{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_4f73b8ff{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_c6f701cb{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_32154ef7{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_9b9dad2e{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 11 / span 11;width:auto;min-width:0;justify-self:stretch;padding-bottom:0px;margin-bottom:0px;}
#node-text_82d8f03d{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_09d4c6ca{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-block_cd39eb55{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_1707b343{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_a5362638{width:100%;min-height:220px;padding-top:4rem;padding-right:4vw;padding-bottom:4rem;padding-left:4vw;background:#000000;display:grid;gap:1.25rem;color:#ffffff;border-bottom:1px solid #ebe5dc;border-color:#dccfbe;max-width:100%;}
#node-block_d7d0fe83{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_59180b8b{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_897fcda1{font-family:Outfit;font-size:5rem;line-height:1.05;color:#ffffff;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_8ed78ea3{font-family:Source Sans 3;font-size:1rem;line-height:1.72;color:#949494;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_cdd00ffe{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_51cca818{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_a549de91{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_d4ed9620{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_0a42b548{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_2146054f{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_f43cdd97{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.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: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_73e3aab9{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_1f375a73{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_e2993156{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_8205bbea{width:94%;object-fit:contain;position:relative;float:left;height:auto;max-width:none;}
#node-block_d2bba89b{width:auto;padding-top:0px;padding-right:1.84px;padding-bottom:0px;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;display:grid;grid-template-columns:repeat(12, minmax(0, 1fr));gap:0.92rem;color:#0a0a0a;}
#node-text_86c47bba{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_23a38e34:hover{background:#ffffff !important;color:#ff2424 !important;}
#node-button_e1898f72:hover{background:#ff2424 !important;color:#ffffff !important;}
#node-button_51cca818:hover{background:#ff2424 !important;color:#ffffff !important;}
#node-button_f43cdd97:hover{background:#ffffff !important;color:#ff2424 !important;}
#node-button_1707b343:hover{background:#ff2424 !important;color:#ffffff !important;}
#node-button_798aba89:hover{background:#ffffff !important;color:#ff2424 !important;}
#node-button_d06ec2f5:hover{background:#ffffff !important;color:#ff2424 !important;}
#node-button_7ff94497:hover{background:#ff2424 !important;color:#ffffff !important;}
}

@media (max-width: 1023px) {
#node-section_d3086f8c{width:100%;min-height:100%;padding-top:3.5rem;padding-right:4vw;padding-bottom:4rem;padding-left:4vw;display:grid;gap:1.25rem;color:#0a0a0a;border-bottom:1px solid #ebe5dc;grid-template-columns:1fr;align-items:center;height:100vh;align-content:flex-start;background-position:center center;background-size:contain;background-repeat:no-repeat;max-width:100%;border-color:#dccfbe;}
#node-block_c00d8ea3{width:auto;padding-top:5px;padding-right:5px;padding-bottom:5px;padding-left:5px;background:rgba(255, 255, 255, 0);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;z-index:3;}
#node-block_5ca17c20{width:auto;padding-top:2px;padding-right:2px;padding-bottom:2px;padding-left:2px;background:rgba(214, 214, 214, 0);position:relative;float:left;max-width:none;height:auto;grid-column:span 3 / span 3;grid-row:auto;min-width:0;justify-self:stretch;}
#node-image_95f7f30c{width:100%;object-fit:contain;position:relative;float:left;height:auto;}
#node-block_1e592fa7{width:auto;padding-top:2px;padding-right:2px;padding-bottom:2px;padding-left:2px;background:rgba(255, 255, 255, 0);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;}
#node-block_b2c87409{width:auto;min-height:140px;padding-top:19.68px;padding-right:19.68px;padding-bottom:19.68px;padding-left:19.68px;display:block;gap:0.41rem;max-width:none;justify-self:stretch;grid-column:span 9 / span 9;grid-row:auto;row-gap:0.5rem;column-gap:0.5rem;min-width:0;margin-top:1.64px;}
#node-text_89d00ab9{font-family:Outfit;font-size:3.5rem;line-height:1.04;color:#ff3131;max-width:none;letter-spacing:-0.04em;text-transform:none;font-weight:700;grid-column:span 9 / span 9;grid-row:auto;width:19.4rem;min-width:0;justify-self:stretch;height:auto;margin-bottom:0rem;padding-bottom:0rem;}
#node-text_282ff261{font-family:Outfit;font-size:3.5rem;line-height:1.08;color:#ffffff;max-width:none;font-weight:700;grid-column:span 12 / span 12;min-width:0;justify-self:stretch;margin-bottom:0px;margin-top:0px;text-transform:none;letter-spacing:-0.03em;display:block;height:auto;width:374px;padding-right:0px;}
#node-text_ca58eb4c{font-family:Source Sans 3;font-size:0.98rem;line-height:1.75;color:#ffffff;max-width:none;grid-column:span 10 / span 10;grid-row:auto;width:16.8rem;min-width:0;justify-self:stretch;padding-bottom:0rem;padding-right:0rem;font-weight:400;letter-spacing:0;text-transform:none;}
#node-block_4a7b34d6{width:auto;padding-top:28.7px;padding-right:19.68px;padding-bottom:19.68px;padding-left:0px;background:rgba(255, 255, 255, 0);display:flex;flex-wrap:wrap;gap:0.656rem;align-items:center;grid-column:span 11 / span 11;grid-row:auto;min-width:0;justify-self:stretch;height:auto;}
#node-button_23a38e34{display:inline-flex;padding-top:0.779rem;padding-right:1.189rem;padding-bottom:0.82rem;padding-left:1.189rem;background:#000000;color:#ffffff;border:1px solid #a1442a;border-radius:999px;transition:background-color 180ms ease, color 180ms ease, border-color 180ms ease, transform 180ms ease, box-shadow 180ms ease;max-width:100%;font-family:Source Sans 3;font-weight:600;text-transform:none;line-height:1.16;letter-spacing:0;font-size:0.92rem;}
#node-button_e1898f72{display:inline-flex;padding-top:0.64rem;padding-right:1.066rem;padding-bottom:0.64rem;padding-left:1.066rem;background:#ffffff;color:#000000;border:3px solid #fe1616;border-radius:999px;border-width:3px;border-style:solid;border-color:#fe1616;transition:background-color 180ms ease, color 180ms ease, border-color 180ms ease, transform 180ms ease, box-shadow 180ms ease;max-width:100%;font-family:Source Sans 3;font-weight:600;text-transform:none;line-height:1.16;letter-spacing:0;font-size:0.92rem;}
#node-section_0ad9704b{width:100%;min-height:220px;padding-top:0rem;padding-right:4vw;padding-bottom:0rem;padding-left:4vw;background:#ff3131;display:block;color:#0a0a0a;border-bottom:1px solid #ebe5dc;text-align:center;border-color:#dccfbe;max-width:100%;}
#node-block_a4f05fcb{width:auto;min-height:140px;padding-top:19.68px;padding-right:22.14px;padding-bottom:19.68px;padding-left:19.68px;background:transparent;display:grid;gap:0.779rem;max-width:none;justify-self:stretch;grid-column:span 10 / span 10;min-width:0;color:#0a0a0a;}
#node-text_f4fe92c8{font-family:Outfit;font-size:3.5rem;line-height:1.08;color:#ffffff;max-width:none;font-weight:700;grid-column:span 12 / span 12;width:auto;min-width:0;justify-self:stretch;text-transform:none;letter-spacing:-0.03em;}
#node-section_63ec612b{width:100%;min-height:220px;padding-top:8.118rem;padding-right:4vw;padding-bottom:0rem;padding-left:4vw;display:grid;color:#0a0a0a;border-bottom:1px solid #ebe5dc;grid-template-columns:repeat(12, minmax(0, 1fr));gap:0.82rem;background:#ffffff;border-color:#dccfbe;grid-column:5 / span 8;grid-row:auto;max-width:100%;}
#node-block_3fead6d8{width:auto;min-height:140px;padding-top:0px;padding-right:19.68px;padding-bottom:19.68px;padding-left:19.68px;background:#ffffff;display:grid;max-width:none;justify-self:stretch;grid-column:span 12 / span 12;min-width:0;grid-template-columns:repeat(12, minmax(0, 1fr));gap:0.82rem;color:#0a0a0a;border-color:#dccfbe;}
#node-text_16dd7857{font-family:Outfit;font-size:3.5rem;line-height:1.08;color:#0a0a0a;max-width:none;font-weight:700;margin-bottom:0px;text-transform:none;letter-spacing:-0.03em;padding-top:0px;margin-top:0px;grid-column:2 / span 11;width:auto;min-width:0;justify-self:stretch;grid-row:auto;text-align:right;}
#node-text_26b6cf2b{font-family:Source Sans 3;font-size:0.98rem;line-height:1.75;color:#0a0a0a;max-width:none;font-weight:400;text-transform:none;letter-spacing:0;grid-column:6 / span 7;width:auto;min-width:0;justify-self:stretch;grid-row:auto;text-align:right;}
#node-section_fe72d6b3{width:100%;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_f28dcbc7{width:100%;padding-top:24px;padding-right:24px;padding-bottom:24px;padding-left:24px;background:#ff3131;display:grid;grid-template-columns:repeat(2, minmax(0, 1fr));border:1px solid #dccfbe;border-radius:18px;overflow:hidden;gap:0;color:#0a0a0a;border-color:#dccfbe;border-width:1px;border-style:solid;grid-column:2 / span 10;grid-row:auto;max-width:100%;}
#node-block_772dbb73{width:auto;padding-top:24px;padding-right:24px;padding-bottom:24px;padding-left:24px;background:#ffffff;display:grid;grid-template-rows:auto 1fr auto;min-height:100%;border-left:0;grid-column:span 2 / span 2;max-width:none;min-width:0;justify-self:stretch;}
#node-block_344a303b{width:100%;padding-top:0.943rem;padding-right:1.066rem;padding-bottom:0.943rem;padding-left:1.066rem;background:#ffffff;display:flex;align-items:center;gap:0.574rem;border-bottom:1px solid #eadfd3;color:#0a0a0a;border-color:#dccfbe;flex-wrap:wrap;max-width:100%;}
#node-text_8ac4aa0f{font-family:Inter;font-size:0.82rem;line-height:1.1;color:#ffffff;max-width:16ch;width:2rem;height:2rem;border-radius:999px;display:inline-flex;align-items:center;justify-content:center;background:#f26b67;font-weight:800;}
#node-text_6c2ee7a8{font-family:Outfit;font-size:1.7rem;line-height:1.14;color:#111827;max-width:16ch;font-weight:700;text-transform:none;letter-spacing:-0.02em;}
#node-block_60604202{width:100%;padding-top:1.189rem;padding-right:1.066rem;padding-bottom:1.189rem;padding-left:1.066rem;background:#ffffff;display:grid;gap:1.148rem;color:#0a0a0a;border-color:#dccfbe;max-width:100%;}
#node-block_fb74740f{width:100%;padding-top:19.68px;padding-right:19.68px;padding-bottom:19.68px;padding-left:19.68px;background:#ffffff;display:grid;grid-template-columns:auto minmax(0, 1fr);gap:0.779rem;align-items:start;height:auto;color:#0a0a0a;border-color:#dccfbe;max-width:100%;}
#node-icon_332854fd{width:2.3rem;height:2.3rem;color:#f26b67;justify-self:start;align-self:start;max-width:100%;}
#node-block_25277709{width:100%;padding-top:0px;padding-right:19.68px;padding-bottom:0px;padding-left:19.68px;background:#ffffff;display:block;gap:0.287rem;color:#0a0a0a;border-color:#dccfbe;max-width:100%;}
#node-text_aa3f452f{font-family:Outfit;font-size:1.2rem;line-height:1.22;color:#111827;max-width:none;font-weight:600;margin-top:0rem;margin-bottom:0rem;width:276px;padding-bottom:0px;text-transform:none;letter-spacing:-0.01em;}
#node-text_937c32cd{font-family:Source Sans 3;font-size:0.98rem;line-height:1.75;color:#374151;max-width:26ch;margin-top:0rem;font-weight:400;text-transform:none;letter-spacing:0;}
#node-block_2b1d8c50{width:100%;padding-top:19.68px;padding-right:19.68px;padding-bottom:19.68px;padding-left:19.68px;background:transparent;display:grid;grid-template-columns:auto minmax(0, 1fr);gap:0.779rem;align-items:start;height:auto;color:#0a0a0a;max-width:100%;}
#node-icon_da619f0a{width:2.3rem;height:2.3rem;color:#f26b67;justify-self:start;align-self:start;max-width:100%;}
#node-block_c766e993{width:100%;padding-top:0px;padding-right:19.68px;padding-bottom:19.68px;padding-left:19.68px;background:#ffffff;display:block;color:#0a0a0a;border-color:#dccfbe;max-width:100%;}
#node-text_3058fb1b{font-family:Outfit;font-size:1.2rem;line-height:1.22;color:#111827;max-width:none;font-weight:600;margin-bottom:0rem;padding-bottom:0rem;width:321px;margin-top:0px;text-transform:none;letter-spacing:-0.01em;}
#node-text_5c7f0935{font-family:Source Sans 3;font-size:0.98rem;line-height:1.75;color:#374151;max-width:26ch;margin-top:0rem;font-weight:400;text-transform:none;letter-spacing:0;}
#node-block_e3fd1605{width:100%;padding-top:19.68px;padding-right:19.68px;padding-bottom:19.68px;padding-left:19.68px;background:transparent;display:grid;grid-template-columns:auto minmax(0, 1fr);gap:0.779rem;align-items:start;color:#0a0a0a;max-width:100%;}
#node-icon_bfeb9e75{width:2.3rem;height:2.3rem;color:#f26b67;justify-self:start;align-self:start;max-width:100%;}
#node-block_e62656e4{width:100%;padding-top:0px;padding-right:19.68px;padding-bottom:19.68px;padding-left:19.68px;background:#ffffff;display:block;color:#0a0a0a;border-color:#dccfbe;max-width:100%;}
#node-text_ad7620a6{font-family:Outfit;font-size:1.2rem;line-height:1.22;color:#111827;max-width:16ch;font-weight:600;padding-top:0rem;margin-top:0rem;margin-bottom:0rem;text-transform:none;letter-spacing:-0.01em;}
#node-text_974f1a52{font-family:Source Sans 3;font-size:0.98rem;line-height:1.75;color:#374151;max-width:26ch;margin-top:0rem;font-weight:400;text-transform:none;letter-spacing:0;}
#node-block_1b2a1e73{width:100%;padding-top:0.82rem;padding-right:1.066rem;padding-bottom:0.82rem;padding-left:1.066rem;background:#ffffff;display:grid;grid-template-columns:auto minmax(0, 1fr);gap:0.738rem;align-items:start;border-top:1px solid #eadfd3;color:#0a0a0a;border-color:#dccfbe;max-width:100%;}
#node-icon_ed10adae{width:2rem;height:2rem;color:#f26b67;justify-self:start;align-self:start;max-width:100%;}
#node-block_14c03f12{width:100%;padding-top:0px;padding-right:19.68px;padding-bottom:19.68px;padding-left:19.68px;background:#ffffff;display:block;gap:0.287rem;color:#0a0a0a;border-color:#dccfbe;max-width:100%;}
#node-text_39c3014b{font-family:Outfit;font-size:1.2rem;line-height:1.22;color:#111827;max-width:none;font-weight:600;width:336px;text-transform:none;letter-spacing:-0.01em;margin-top:0px;}
#node-block_ff4cee13{width:auto;padding-top:24px;padding-right:24px;padding-bottom:24px;padding-left:24px;background:#ffffff;display:grid;grid-template-rows:auto 1fr auto;min-height:100%;border-left:1px solid #eadfd3;grid-column:span 2 / span 2;max-width:none;min-width:0;justify-self:stretch;}
#node-block_39239b88{width:100%;padding-top:0.943rem;padding-right:1.066rem;padding-bottom:0.943rem;padding-left:1.066rem;background:#ffffff;display:flex;align-items:center;gap:0.574rem;border-bottom:1px solid #eadfd3;color:#0a0a0a;border-color:#dccfbe;flex-wrap:wrap;max-width:100%;}
#node-text_40ecfa96{font-family:Inter;font-size:0.82rem;line-height:1.1;color:#ffffff;max-width:16ch;width:2rem;height:2rem;border-radius:999px;display:inline-flex;align-items:center;justify-content:center;background:#58bb6f;font-weight:800;}
#node-text_27a9f4e6{font-family:Outfit;font-size:1.7rem;line-height:1.14;color:#111827;max-width:16ch;font-weight:700;text-transform:none;letter-spacing:-0.02em;}
#node-block_73fe26be{width:100%;padding-top:1.189rem;padding-right:1.066rem;padding-bottom:1.189rem;padding-left:1.066rem;background:transparent;display:grid;gap:1.148rem;color:#0a0a0a;max-width:100%;}
#node-block_c3c34cd2{width:100%;padding-top:19.68px;padding-right:19.68px;padding-bottom:19.68px;padding-left:19.68px;background:transparent;display:grid;grid-template-columns:auto minmax(0, 1fr);gap:0.779rem;align-items:start;height:auto;color:#0a0a0a;max-width:100%;}
#node-icon_bd032e67{width:2.3rem;height:2.3rem;color:#58bb6f;justify-self:start;align-self:start;max-width:100%;}
#node-block_1b3e83d3{width:100%;padding-top:0px;padding-right:19.68px;padding-bottom:19.68px;padding-left:19.68px;background:transparent;display:block;gap:0.287rem;color:#0a0a0a;max-width:100%;}
#node-text_0c7f421a{font-family:Outfit;font-size:1.2rem;line-height:1.22;color:#111827;max-width:16ch;font-weight:600;margin-top:0rem;margin-bottom:0rem;padding-bottom:0rem;text-transform:none;letter-spacing:-0.01em;}
#node-text_6e659b3b{font-family:Source Sans 3;font-size:0.98rem;line-height:1.75;color:#374151;max-width:26ch;margin-top:0rem;font-weight:400;text-transform:none;letter-spacing:0;}
#node-block_d7cb3ddb{width:100%;padding-top:19.68px;padding-right:19.68px;padding-bottom:19.68px;padding-left:19.68px;background:transparent;display:grid;grid-template-columns:auto minmax(0, 1fr);gap:0.779rem;align-items:start;height:auto;color:#0a0a0a;max-width:100%;}
#node-icon_d6ce5eb8{width:2.3rem;height:2.3rem;color:#58bb6f;justify-self:start;align-self:start;max-width:100%;}
#node-block_f7e66869{width:100%;padding-top:0px;padding-right:19.68px;padding-bottom:19.68px;padding-left:19.68px;background:transparent;display:block;gap:0.287rem;color:#0a0a0a;max-width:100%;}
#node-text_4fbc1997{font-family:Outfit;font-size:1.2rem;line-height:1.22;color:#111827;max-width:16ch;font-weight:600;margin-top:0rem;margin-bottom:0rem;padding-bottom:0rem;text-transform:none;letter-spacing:-0.01em;}
#node-text_e793e0d2{font-family:Source Sans 3;font-size:0.98rem;line-height:1.75;color:#374151;max-width:26ch;margin-top:0.041rem;font-weight:400;text-transform:none;letter-spacing:0;}
#node-block_31314715{width:100%;padding-top:19.68px;padding-right:19.68px;padding-bottom:19.68px;padding-left:19.68px;background:transparent;display:grid;grid-template-columns:auto minmax(0, 1fr);gap:0.779rem;align-items:start;height:auto;color:#0a0a0a;max-width:100%;}
#node-icon_98fc500b{width:2.3rem;height:2.3rem;color:#58bb6f;justify-self:start;align-self:start;max-width:100%;}
#node-block_dfb5902f{width:100%;padding-top:0px;padding-right:19.68px;padding-bottom:19.68px;padding-left:19.68px;background:transparent;display:block;gap:0.287rem;margin-top:0%;color:#0a0a0a;max-width:100%;}
#node-text_d5e3124e{font-family:Outfit;font-size:1.2rem;line-height:1.22;color:#111827;max-width:16ch;font-weight:600;padding-top:0rem;margin-top:0rem;margin-bottom:0rem;text-transform:none;letter-spacing:-0.01em;}
#node-text_83980d64{font-family:Source Sans 3;font-size:0.98rem;line-height:1.75;color:#374151;max-width:26ch;padding-top:0rem;margin-top:0rem;font-weight:400;text-transform:none;letter-spacing:0;}
#node-block_ca416f2b{width:100%;padding-top:0.82rem;padding-right:1.066rem;padding-bottom:0.82rem;padding-left:1.066rem;background:transparent;display:grid;grid-template-columns:auto minmax(0, 1fr);gap:0.738rem;align-items:start;border-top:1px solid #eadfd3;color:#0a0a0a;max-width:100%;}
#node-icon_c1d46837{width:2rem;height:2rem;color:#58bb6f;justify-self:start;align-self:start;max-width:100%;}
#node-block_cdfba456{width:100%;padding-top:0px;padding-right:19.68px;padding-bottom:19.68px;padding-left:19.68px;background:transparent;display:block;height:auto;gap:0.82rem;color:#0a0a0a;max-width:100%;}
#node-text_806207cc{font-family:Outfit;font-size:1.2rem;line-height:1.22;color:#111827;max-width:none;font-weight:600;width:320px;text-transform:none;letter-spacing:-0.01em;margin-top:0px;}
#node-section_b3b80cb3{width:100%;min-height:220px;padding-top:3.28rem;padding-right:4vw;padding-bottom:3.28rem;padding-left:4vw;background:#000000;display:grid;gap:1.025rem;color:#ffffff;border-bottom:1px solid #ebe5dc;border-color:#dccfbe;max-width:100%;}
#node-block_9d7663ec{width:100%;min-height:140px;padding-top:19.68px;padding-right:19.68px;padding-bottom:0px;padding-left:19.68px;background:transparent;display:grid;gap:0.779rem;max-width:68rem;justify-self:start;height:auto;color:#0a0a0a;}
#node-text_2028cf49{font-family:Outfit;font-size:3.5rem;line-height:1.08;color:#ffffff;max-width:16ch;font-weight:700;text-transform:none;letter-spacing:-0.03em;margin-bottom:0rem;}
#node-block_d0daf3a6{width:100%;min-height:140px;padding-top:0px;padding-right:19.68px;padding-bottom:19.68px;padding-left:19.68px;background:transparent;display:block;color:#0a0a0a;max-width:100%;}
#node-block_08c1c738{width:auto;min-height:140px;padding-top:0px;padding-right:19.68px;padding-bottom:19.68px;padding-left:19.68px;background:transparent;display:grid;gap:0.574rem;padding:0.984rem;border:none;border-radius:22px;box-shadow:0 12px 28px rgba(44, 31, 22, 0.06);grid-column:span 2 / span 2;max-width:none;min-width:0;justify-self:stretch;color:#0a0a0a;border-style:none;}
#node-text_a969e197{font-family:Outfit;font-size:1.7rem;line-height:1.14;color:#ffffff;max-width:none;font-weight:700;letter-spacing:-0.02em;text-transform:none;grid-column:span 12 / span 12;width:auto;min-width:0;justify-self:stretch;text-align:center;}
#node-image_cc5110a4{width:auto;object-fit:cover;position:relative;grid-column:span 12 / span 12;max-width:none;min-width:0;justify-self:stretch;height:auto;}
#node-text_3a1a0b3f{font-family:Source Sans 3;font-size:0.98rem;line-height:1.75;color:#ffffff;max-width:none;font-weight:400;text-transform:none;letter-spacing:0;text-align:center;grid-column:span 12 / span 12;width:auto;min-width:0;justify-self:stretch;}
#node-section_619c0ca8{width:100%;min-height:220px;padding-top:3.28rem;padding-right:4vw;padding-bottom:3.28rem;padding-left:4vw;background:transparent;display:grid;color:#0a0a0a;border-bottom:1px solid #ebe5dc;grid-template-columns:repeat(12, minmax(0, 1fr));gap:0.82rem;grid-column:6 / span 7;grid-row:auto;max-width:100%;}
#node-block_6bab10ed{width:auto;min-height:140px;padding-top:19.68px;padding-right:19.68px;padding-bottom:19.68px;padding-left:19.68px;background:rgba(255, 250, 243, 0);display:grid;gap:0.779rem;max-width:none;justify-self:stretch;grid-column:span 8 / span 8;grid-row:auto;min-width:0;}
#node-text_a9ca0b96{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-bottom:0rem;margin-bottom:0rem;grid-column:span 12 / span 12;width:auto;min-width:0;justify-self:stretch;}
#node-text_9c0b1f1a{font-family:Source Sans 3;font-size:0.98rem;line-height:1.75;color:#374151;max-width:none;grid-column:span 12 / span 12;width:auto;min-width:0;justify-self:stretch;font-weight:400;text-transform:none;letter-spacing:0;}
#node-block_72260900{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 6 / 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_798aba89{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_79867a53{width:auto;min-height:140px;padding-top:24px;padding-right:24px;padding-bottom:24px;padding-left:24px;background:#ffffff;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:1rem;grid-row:auto;}
#node-block_cafaa414{width:auto;min-height:100%;padding-top:24px;padding-right:24px;padding-bottom:24px;padding-left:24px;display:flex;padding:1.2rem;border:2px solid #d7dce4;border-radius:0px;box-shadow:none;grid-column:span 6 / span 6;max-width:none;min-width:0;justify-self:stretch;grid-row:auto;height:auto;flex-direction:column;flex-wrap:wrap;gap:2px;align-items:stretch;justify-content:space-between;align-content:flex-start;border-width:2px;border-style:solid;}
#node-image_c59305a1{width:100%;object-fit:cover;position:relative;margin-bottom:15%;max-width:none;height:auto;grid-column:span 7 / span 7;grid-row:auto;}
#node-text_c65ff8b7{font-family:Outfit;font-size:1.7rem;line-height:1.14;color:#111827;max-width:none;font-weight:700;text-transform:none;letter-spacing:-0.02em;width:398px;margin-top:0px;text-align:left;margin-bottom:0px;}
#node-text_e0a2ad40{font-family:Source Sans 3;font-size:0.98rem;line-height:1.75;color:#374151;max-width:none;grid-column:span 8 / span 8;grid-row:auto;font-weight:400;text-transform:none;letter-spacing:0;width:306px;margin-top:0px;}
#node-block_c999ef97{width:auto;min-height:100%;padding-top:24px;padding-right:24px;padding-bottom:24px;padding-left:24px;display:flex;padding:1.2rem;border:2px solid #d7dce4;border-radius:0px;box-shadow:none;grid-column:span 6 / span 6;max-width:none;min-width:0;justify-self:stretch;grid-row:auto;height:auto;flex-direction:column;flex-wrap:wrap;gap:2px;align-items:stretch;justify-content:space-between;align-content:flex-start;border-width:2px;border-style:solid;}
#node-image_8263fc68{width:100%;object-fit:cover;position:relative;margin-bottom:15%;max-width:none;height:auto;grid-column:span 7 / span 7;grid-row:auto;}
#node-text_7c9280e2{font-family:Outfit;font-size:1.7rem;line-height:1.14;color:#111827;max-width:none;font-weight:700;text-transform:none;letter-spacing:-0.02em;width:378px;margin-top:0px;text-align:left;margin-bottom:0px;}
#node-text_1c721332{font-family:Source Sans 3;font-size:0.98rem;line-height:1.75;color:#374151;max-width:none;grid-column:span 8 / span 8;grid-row:auto;font-weight:400;text-transform:none;letter-spacing:0;width:306px;margin-top:0px;}
#node-block_0edfd4e2{width:auto;min-height:100%;padding-top:24px;padding-right:24px;padding-bottom:24px;padding-left:24px;display:flex;padding:1.2rem;border:2px solid #d7dce4;border-radius:0px;box-shadow:none;grid-column:span 6 / span 6;max-width:none;min-width:0;justify-self:stretch;grid-row:auto;height:auto;flex-direction:column;flex-wrap:wrap;gap:2px;align-items:stretch;justify-content:space-between;align-content:flex-start;border-width:2px;border-style:solid;}
#node-image_4f919c58{width:100%;object-fit:cover;position:relative;margin-bottom:15%;max-width:none;height:auto;grid-column:span 7 / span 7;grid-row:auto;}
#node-text_5b7b3ad4{font-family:Outfit;font-size:1.7rem;line-height:1.14;color:#111827;max-width:none;font-weight:700;text-transform:none;letter-spacing:-0.02em;width:395px;margin-top:0px;text-align:left;margin-bottom:0px;}
#node-text_4eb7745f{font-family:Source Sans 3;font-size:0.98rem;line-height:1.75;color:#374151;max-width:none;grid-column:span 8 / span 8;grid-row:auto;font-weight:400;text-transform:none;letter-spacing:0;width:306px;margin-top:0px;}
#node-section_3a57aca4{width:100%;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;height:auto;grid-column:2 / span 4;grid-row:auto;border-color:#dccfbe;max-width:100%;}
#node-block_12111d04{width:auto;min-height:140px;padding-top:0px;padding-right:19.68px;padding-bottom:0px;padding-left:59.04px;background:transparent;display:grid;max-width:none;justify-self:stretch;grid-column:span 12 / span 12;min-width:0;border-width:0px;border:none;border-style:none;box-shadow:none;grid-template-columns:repeat(12, minmax(0, 1fr));gap:0.82rem;color:#0a0a0a;}
#node-text_3dee3335{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;margin-bottom:0rem;grid-column:span 12 / span 12;grid-row:auto;}
#node-text_415174b4{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;padding-bottom:0rem;padding-top:0rem;margin-top:0rem;margin-bottom:0rem;grid-column:span 12 / span 12;grid-row:auto;}
#node-text_75b69449{font-family:Outfit;font-size:3.5rem;line-height:1.08;color:#ff3131;max-width:16ch;font-weight:700;text-transform:none;letter-spacing:-0.03em;padding-top:0rem;margin-top:0rem;margin-bottom:0rem;grid-column:span 12 / span 12;grid-row:auto;}
#node-text_5cdb3c1a{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:3.034rem;padding-bottom:0rem;margin-bottom:0rem;text-align:right;grid-column:span 12 / span 12;grid-row:auto;width:auto;min-width:0;justify-self:stretch;}
#node-text_63093879{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;margin-bottom:0rem;text-align:right;grid-column:span 12 / span 12;grid-row:auto;width:auto;min-width:0;justify-self:stretch;}
#node-text_53a2b603{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;padding-top:0rem;margin-top:0rem;margin-bottom:0rem;text-align:right;grid-column:span 12 / span 12;grid-row:auto;width:auto;min-width:0;justify-self:stretch;}
#node-section_ff5bc3e4{width:100%;min-height:220px;padding-top:0.533rem;padding-right:4vw;padding-bottom:3.28rem;padding-left:4vw;background:#f4dfd6;display:block;color:#1f1812;border-bottom:1px solid #ebe5dc;border-color:#dccfbe;gap:1.025rem;max-width:100%;}
#node-block_bec2767e{width:100%;min-height:140px;padding-top:19.68px;padding-right:19.68px;padding-bottom:19.68px;padding-left:19.68px;display:grid;grid-template-columns:repeat(2, minmax(0, 1fr));gap:0.82rem;background:transparent;color:#0a0a0a;max-width:100%;}
#node-block_de7f4ad2{width:100%;min-height:100%;padding-top:19.68px;padding-right:19.68px;padding-bottom:19.68px;padding-left:19.68px;background:transparent;display:grid;gap:0.64rem;padding:0.984rem;border:4px solid #cc0000;border-radius:22px;box-shadow:0 12px 24px rgba(44, 31, 22, 0.05);border-width:4px;border-style:solid;row-gap:0rem;column-gap:0rem;color:#0a0a0a;max-width:100%;}
#node-text_11238b1b{font-family:Outfit;font-size:1.7rem;line-height:1.14;color:#0a0a0a;max-width:none;font-weight:700;text-transform:none;letter-spacing:-0.02em;text-align:left;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_137b58a1{font-family:Source Sans 3;font-size:0.98rem;line-height:1.75;color:#374151;max-width:none;grid-column:span 12 / span 12;width:auto;min-width:0;justify-self:stretch;text-align:left;font-weight:400;text-transform:none;letter-spacing:0;}
#node-block_db4b6437{width:100%;min-height:100%;padding-top:19.68px;padding-right:19.68px;padding-bottom:19.68px;padding-left:19.68px;background:transparent;display:grid;gap:0.64rem;padding:0.984rem;border:4px solid #cc0000;border-radius:22px;box-shadow:0 12px 24px rgba(44, 31, 22, 0.05);border-width:4px;border-style:solid;row-gap:0rem;column-gap:0rem;color:#0a0a0a;max-width:100%;}
#node-text_742b76ba{font-family:Outfit;font-size:1.7rem;line-height:1.14;color:#111827;max-width:none;font-weight:700;text-transform:none;letter-spacing:-0.02em;text-align:left;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_0e9e2565{font-family:Source Sans 3;font-size:0.98rem;line-height:1.75;color:#374151;max-width:none;grid-column:span 12 / span 12;width:auto;min-width:0;justify-self:stretch;text-align:left;font-weight:400;text-transform:none;letter-spacing:0;}
#node-block_7ae71967{width:100%;min-height:100%;padding-top:19.68px;padding-right:19.68px;padding-bottom:19.68px;padding-left:19.68px;background:transparent;display:grid;gap:0.64rem;padding:0.984rem;border:4px solid #cc0000;border-radius:22px;box-shadow:0 12px 24px rgba(44, 31, 22, 0.05);border-width:4px;border-style:solid;row-gap:0rem;column-gap:0rem;color:#0a0a0a;max-width:100%;}
#node-text_ebe8f9db{font-family:Outfit;font-size:1.7rem;line-height:1.14;color:#111827;max-width:none;font-weight:700;text-transform:none;letter-spacing:-0.02em;text-align:left;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_a67ad957{font-family:Source Sans 3;font-size:0.98rem;line-height:1.75;color:#374151;max-width:none;grid-column:span 12 / span 12;width:auto;min-width:0;justify-self:stretch;text-align:left;font-weight:400;text-transform:none;letter-spacing:0;}
#node-block_30387cbb{width:100%;min-height:100%;padding-top:19.68px;padding-right:19.68px;padding-bottom:19.68px;padding-left:19.68px;background:transparent;display:grid;gap:0.64rem;padding:0.984rem;border:4px solid #cc0000;border-radius:22px;box-shadow:0 12px 24px rgba(44, 31, 22, 0.05);border-width:4px;border-style:solid;row-gap:0rem;column-gap:0rem;color:#0a0a0a;max-width:100%;}
#node-text_691fa68a{font-family:Outfit;font-size:1.7rem;line-height:1.14;color:#0a0a0a;max-width:none;font-weight:700;text-transform:none;letter-spacing:-0.02em;text-align:left;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_319aa6f6{font-family:Source Sans 3;font-size:0.98rem;line-height:1.75;color:#374151;max-width:none;grid-column:span 12 / span 12;width:auto;min-width:0;justify-self:stretch;text-align:left;font-weight:400;text-transform:none;letter-spacing:0;}
#node-block_811637f1{width:100%;min-height:100%;padding-top:19.68px;padding-right:19.68px;padding-bottom:19.68px;padding-left:19.68px;background:transparent;display:grid;gap:0.64rem;padding:0.984rem;border:4px solid #cc0000;border-radius:22px;box-shadow:0 12px 24px rgba(44, 31, 22, 0.05);border-width:4px;border-style:solid;row-gap:0rem;column-gap:0rem;color:#0a0a0a;max-width:100%;}
#node-text_6953c80a{font-family:Outfit;font-size:1.7rem;line-height:1.14;color:#0a0a0a;max-width:none;font-weight:700;text-transform:none;letter-spacing:-0.02em;text-align:left;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_a7377519{font-family:Source Sans 3;font-size:0.98rem;line-height:1.75;color:#374151;max-width:none;grid-column:span 12 / span 12;width:auto;min-width:0;justify-self:stretch;text-align:left;font-weight:400;text-transform:none;letter-spacing:0;}
#node-block_ef8a0edb{width:100%;min-height:100%;padding-top:19.68px;padding-right:19.68px;padding-bottom:19.68px;padding-left:19.68px;background:transparent;display:grid;gap:0.64rem;padding:0.984rem;border:4px solid #cc0000;border-radius:22px;box-shadow:0 12px 24px rgba(44, 31, 22, 0.05);border-width:4px;border-style:solid;row-gap:0rem;column-gap:0rem;color:#0a0a0a;max-width:100%;}
#node-text_2cef1588{font-family:Outfit;font-size:1.7rem;line-height:1.14;color:#0a0a0a;max-width:none;font-weight:700;text-transform:none;letter-spacing:-0.02em;text-align:left;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_7217e270{font-family:Source Sans 3;font-size:0.98rem;line-height:1.75;color:#374151;max-width:none;grid-column:span 12 / span 12;width:auto;min-width:0;justify-self:stretch;text-align:left;font-weight:400;text-transform:none;letter-spacing:0;}
#node-block_a890723a{width:100%;min-height:100%;padding-top:19.68px;padding-right:19.68px;padding-bottom:19.68px;padding-left:19.68px;background:transparent;display:grid;gap:0.64rem;padding:0.984rem;border:4px solid #cc0000;border-radius:22px;box-shadow:0 12px 24px rgba(44, 31, 22, 0.05);border-width:4px;border-style:solid;row-gap:0rem;column-gap:0rem;color:#0a0a0a;max-width:100%;}
#node-text_e6a99488{font-family:Outfit;font-size:1.7rem;line-height:1.14;color:#0a0a0a;max-width:none;font-weight:700;text-transform:none;letter-spacing:-0.02em;text-align:left;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_a06cfacc{font-family:Source Sans 3;font-size:0.98rem;line-height:1.75;color:#374151;max-width:none;grid-column:span 12 / span 12;width:auto;min-width:0;justify-self:stretch;text-align:left;font-weight:400;text-transform:none;letter-spacing:0;}
#node-section_c64ee921{width:100%;padding-top:4rem;padding-right:4vw;padding-bottom:4rem;padding-left:4vw;background:#ffffff;display:grid;color:#0a0a0a;border-bottom:1px solid #ebe5dc;border-color:#dccfbe;grid-template-columns:repeat(12, minmax(0, 1fr));gap:1rem;grid-column:span 5 / span 5;grid-row:auto;max-width:100%;}
#node-block_1fcb8ae7{width:auto;padding-top:19.68px;padding-right:19.68px;padding-bottom:19.68px;padding-left:19.68px;background:#ffffff;display:grid;gap:0.779rem;max-width:none;justify-self:stretch;grid-column:span 12 / span 12;min-width:0;color:#0a0a0a;border-color:#dccfbe;}
#node-text_39e998fd{font-family:Outfit;font-size:3.5rem;line-height:1.08;color:#111827;max-width:none;font-weight:700;grid-column:span 12 / span 12;width:auto;min-width:0;justify-self:stretch;text-align:center;padding-bottom:0px;margin-bottom:0px;text-transform:none;letter-spacing:-0.03em;}
#node-text_6b558fc5{font-family:Source Sans 3;font-size:0.98rem;line-height:1.75;color:#374151;max-width:none;grid-column:span 12 / span 12;width:auto;min-width:0;justify-self:stretch;text-align:center;font-weight:400;text-transform:none;letter-spacing:0;}
#node-block_5621be7b{width:auto;padding-top:24px;padding-right:24px;padding-bottom:24px;padding-left:24px;background:#f4dfd6;display:grid;border:1px solid #dce5f3;border-radius:0px;overflow:hidden;box-shadow:0 18px 40px rgba(31, 58, 109, 0.08);grid-column:3 / span 8;max-width:none;min-width:0;justify-self:stretch;grid-row:auto;color:#1f1812;border-color:#dccfbe;grid-template-columns:repeat(12, minmax(0, 1fr));gap:1rem;row-gap:0rem;column-gap:0rem;}
#node-block_ceb26cad{width:auto;padding-top:24px;padding-right:24px;padding-bottom:24px;padding-left:24px;background:#ffffff;display:grid;align-content:center;justify-items:center;gap:1rem;padding:1.6rem;min-height:16rem;position:relative;color:#0a0a0a;border-color:#dccfbe;background-image:url(https://prime-el-rebuild.ewr1.vultrobjects.com/projects/aloraweb/484f3d96-4bb4-435c-b84f-4ff09851d0d8-lady-workc.png);background-size:cover;background-position:center center;background-repeat:no-repeat;grid-column:span 12 / span 12;grid-row:auto;max-width:none;min-width:0;justify-self:stretch;border-right-width:2px;border-right:2px solid #d7dce4;border-right-style:solid;}
#node-block_98ce49a6{width:4.7rem;padding-top:19.68px;padding-right:19.68px;padding-bottom:19.68px;padding-left:19.68px;background:#ffffff;position:absolute;right:1rem;bottom:1rem;height:4.7rem;border-radius:999px;border:1px solid #cfe0ff;display:flex;align-items:center;justify-content:center;box-shadow:0 12px 28px rgba(49, 104, 196, 0.14);color:#0a0a0a;border-color:#dccfbe;flex-wrap:wrap;max-width:100%;}
#node-text_47b92007{font-family:Source Sans 3;font-size:1.08rem;line-height:1.68;color:#374151;max-width:16ch;font-weight:400;text-transform:none;letter-spacing:0;}
#node-block_e7add273{width:auto;padding-top:24px;padding-right:24px;padding-bottom:24px;padding-left:24px;background:#ffffff;display:grid;padding:1.6rem;color:#0a0a0a;border-color:#dccfbe;grid-template-columns:repeat(12, minmax(0, 1fr));gap:1rem;grid-column:span 12 / span 12;max-width:none;min-width:0;justify-self:stretch;}
#node-text_1f7361a7{font-family:Inter;font-size:0.96rem;line-height:1.1;color:#0a0a0a;max-width:none;font-weight:800;margin-bottom:0rem;grid-column:span 11 / span 11;width:auto;min-width:0;justify-self:stretch;}
#node-text_38b4932c{font-family:Outfit;font-size:1.7rem;line-height:1.14;color:#111827;max-width:none;font-weight:700;text-transform:none;letter-spacing:-0.02em;margin-top:0rem;margin-bottom:0rem;grid-column:span 12 / span 12;width:auto;min-width:0;justify-self:stretch;}
#node-block_c43bd018{width:auto;padding-top:0px;padding-right:24px;padding-bottom:0px;padding-left:0px;background:#ffffff;display:block;color:#0a0a0a;border-color:#dccfbe;grid-column:span 11 / span 11;grid-row:auto;margin-top:0%;max-width:none;min-width:0;justify-self:stretch;}
#node-block_588525fe{width:100%;padding-top:0px;padding-right:0px;padding-bottom:0px;padding-left:0px;background:transparent;display:grid;align-items:center;color:#0a0a0a;grid-template-columns:repeat(12, minmax(0, 1fr));gap:1rem;max-width:100%;}
#node-icon_50c4b814{width:auto;height:auto;color:#949494;justify-self:stretch;align-self:start;grid-column:span 2 / span 2;grid-row:auto;max-width:none;min-width:0;padding-top:0px;margin-top:0px;}
#node-text_c3d7ab2c{font-family:Outfit;font-size:1.2rem;line-height:1.22;color:#111827;max-width:none;font-weight:600;text-transform:none;letter-spacing:-0.01em;grid-column:span 10 / span 10;width:auto;min-width:0;justify-self:stretch;margin-top:0rem;padding-top:0rem;margin-bottom:0rem;}
#node-block_741f871e{width:auto;padding-top:0px;padding-right:19.68px;padding-bottom:0px;padding-left:0px;background:#ffffff;display:block;color:#0a0a0a;border-color:#dccfbe;grid-column:span 11 / span 11;grid-row:auto;margin-top:0%;max-width:none;min-width:0;justify-self:stretch;}
#node-block_39aa8bd3{width:100%;padding-top:0px;padding-right:0px;padding-bottom:0px;padding-left:0px;background:transparent;display:grid;align-items:center;color:#0a0a0a;grid-template-columns:repeat(12, minmax(0, 1fr));gap:1rem;max-width:100%;}
#node-icon_90035623{width:auto;height:37px;color:#949494;justify-self:stretch;align-self:start;grid-column:span 2 / span 2;grid-row:auto;max-width:none;min-width:0;padding-top:0px;margin-top:0px;}
#node-text_a7356338{font-family:Outfit;font-size:1.2rem;line-height:1.22;color:#111827;max-width:none;font-weight:600;text-transform:none;letter-spacing:-0.01em;grid-column:span 10 / span 10;width:auto;min-width:0;justify-self:stretch;margin-top:0rem;padding-top:0rem;margin-bottom:0rem;}
#node-block_26d043c1{width:auto;padding-top:0px;padding-right:19.68px;padding-bottom:0px;padding-left:0px;background:#ffffff;display:block;color:#0a0a0a;border-color:#dccfbe;grid-column:span 11 / span 11;grid-row:auto;margin-top:0%;max-width:none;min-width:0;justify-self:stretch;}
#node-block_12cd155c{width:100%;padding-top:0px;padding-right:0px;padding-bottom:0px;padding-left:0px;background:transparent;display:grid;align-items:center;color:#0a0a0a;grid-template-columns:repeat(12, minmax(0, 1fr));gap:1rem;max-width:100%;}
#node-icon_97cce732{width:auto;height:37px;color:#949494;justify-self:stretch;align-self:start;grid-column:span 2 / span 2;grid-row:auto;max-width:none;min-width:0;padding-top:0px;margin-top:0px;}
#node-text_2a4b95e1{font-family:Outfit;font-size:1.2rem;line-height:1.22;color:#111827;max-width:none;font-weight:600;text-transform:none;letter-spacing:-0.01em;grid-column:span 10 / span 10;width:auto;min-width:0;justify-self:stretch;margin-top:0rem;padding-top:0rem;margin-bottom:0rem;}
#node-block_1f51654f{width:auto;padding-top:0px;padding-right:19.68px;padding-bottom:0px;padding-left:0px;background:#ffffff;display:block;color:#0a0a0a;border-color:#dccfbe;grid-column:span 11 / span 11;grid-row:auto;margin-top:0%;max-width:none;min-width:0;justify-self:stretch;}
#node-block_1ff8b9df{width:100%;padding-top:0px;padding-right:0px;padding-bottom:0px;padding-left:0px;background:transparent;display:grid;align-items:center;color:#0a0a0a;grid-template-columns:repeat(12, minmax(0, 1fr));gap:0.82rem;max-width:100%;}
#node-text_d773e5bb{font-family:Outfit;font-size:1.2rem;line-height:1.22;color:#111827;max-width:none;font-weight:600;text-transform:none;letter-spacing:-0.01em;grid-column:span 10 / span 10;width:auto;min-width:0;justify-self:stretch;margin-top:0rem;padding-top:0rem;margin-bottom:0rem;}
#node-text_b32d5796{font-family:Outfit;font-size:3.5rem;line-height:1.08;color:#111827;max-width:none;font-weight:700;text-align:center;justify-self:stretch;grid-column:span 12 / span 12;width:auto;min-width:0;text-transform:none;letter-spacing:-0.03em;}
#node-block_21933d32{width:auto;padding-top:24px;padding-right:24px;padding-bottom:24px;padding-left:24px;background:#ffffff;display:grid;grid-column:span 12 / span 12;max-width:none;min-width:0;justify-self:stretch;color:#0a0a0a;border-color:#dccfbe;grid-template-columns:repeat(12, minmax(0, 1fr));gap:1rem;}
#node-block_37609dd8{width:auto;padding-top:24px;padding-right:24px;padding-bottom:24px;padding-left:24px;background:#ffffff;display:grid;text-align:center;padding:1.35rem 1rem;border:1px solid #dce5f3;border-radius:22px;box-shadow:0 12px 28px rgba(31, 58, 109, 0.06);grid-column:span 6 / span 6;grid-row:auto;color:#0a0a0a;border-color:#dccfbe;max-width:none;min-width:0;justify-self:stretch;grid-template-columns:repeat(12, minmax(0, 1fr));gap:1rem;}
#node-block_7b4296ce{width:auto;padding-top:4.1px;padding-right:19.68px;padding-bottom:19.68px;padding-left:19.68px;background:#ffffff;height:4.3rem;border-radius:999px;display:flex;align-items:center;justify-content:center;grid-column:span 12 / span 12;grid-row:auto;color:#0a0a0a;border-color:#dccfbe;max-width:none;min-width:0;justify-self:stretch;flex-wrap:wrap;}
#node-icon_0a01931b{width:2.85rem;height:2.85rem;color:#0a0a0a;justify-self:start;align-self:start;max-width:100%;}
#node-text_bc77171b{font-family:Outfit;font-size:1.7rem;line-height:1.14;color:#111827;max-width:none;font-weight:700;grid-column:span 12 / span 12;width:auto;min-width:0;justify-self:stretch;text-transform:none;letter-spacing:-0.02em;}
#node-block_d104a777{width:auto;padding-top:0px;padding-right:0px;padding-bottom:0px;padding-left:19.68px;background:#14b8a6;height:1px;opacity:0.35;border-width:2px;border:2px solid #dccfbe;border-style:solid;grid-column:span 12 / span 12;max-width:none;min-width:0;justify-self:stretch;}
#node-text_3e49ee4d{font-family:Inter;font-size:0.754rem;line-height:1.1;color:#14b8a6;max-width:none;font-weight:700;padding-right:0rem;grid-column:span 12 / span 12;width:auto;min-width:0;justify-self:stretch;}
#node-text_4c147afb{font-family:Outfit;font-size:1.2rem;line-height:1.22;color:#ff3131;max-width:none;font-weight:600;padding-right:0rem;grid-column:span 12 / span 12;width:auto;min-width:0;justify-self:stretch;margin-top:0rem;text-transform:none;letter-spacing:-0.01em;}
#node-block_1b039e6c{width:auto;padding-top:24px;padding-right:24px;padding-bottom:24px;padding-left:24px;background:#000000;display:grid;text-align:center;padding:1.35rem 1rem;border:1px solid #dce5f3;border-radius:22px;box-shadow:0 12px 28px rgba(31, 58, 109, 0.06);color:#ffffff;border-color:#dccfbe;grid-column:span 6 / span 6;max-width:none;min-width:0;justify-self:stretch;grid-template-columns:repeat(12, minmax(0, 1fr));gap:1rem;grid-row:auto;}
#node-block_1b82ca94{width:auto;padding-top:9.84px;padding-right:19.68px;padding-bottom:19.68px;padding-left:19.68px;background:transparent;height:4.3rem;border-radius:999px;display:flex;align-items:center;justify-content:center;grid-column:span 12 / span 12;max-width:none;min-width:0;justify-self:stretch;color:#0a0a0a;flex-wrap:wrap;}
#node-icon_576a0b72{width:2.85rem;height:2.85rem;color:#ff3131;justify-self:start;align-self:start;grid-column:span 2 / span 2;grid-row:auto;max-width:100%;}
#node-text_56705c4d{font-family:Outfit;font-size:1.7rem;line-height:1.14;color:#ffffff;max-width:none;font-weight:700;grid-column:span 12 / span 12;width:auto;min-width:0;justify-self:stretch;grid-row:auto;text-transform:none;letter-spacing:-0.02em;}
#node-block_337617fa{width:auto;padding-top:0px;padding-right:19.68px;padding-bottom:0px;padding-left:19.68px;background:#a855f7;height:0px;opacity:0.35;border-width:2px;border:2px solid #dccfbe;border-style:solid;display:block;margin-top:0px;grid-column:span 12 / span 12;grid-row:auto;max-width:none;min-width:0;justify-self:stretch;}
#node-text_d00e0dcd{font-family:Inter;font-size:0.754rem;line-height:1.1;color:#949494;max-width:16ch;font-weight:700;grid-column:4 / span 6;grid-row:auto;}
#node-text_807f8363{font-family:Outfit;font-size:1.2rem;line-height:1.22;color:#949494;max-width:none;font-weight:600;margin-top:0rem;grid-column:span 12 / span 12;grid-row:auto;width:auto;min-width:0;justify-self:stretch;text-transform:none;letter-spacing:-0.01em;}
#node-block_4c7d790c{width:auto;padding-top:24px;padding-right:24px;padding-bottom:24px;padding-left:24px;background:#ffffff;display:grid;text-align:center;padding:1.35rem 1rem;border:1px solid #dce5f3;border-radius:22px;box-shadow:0 12px 28px rgba(31, 58, 109, 0.06);grid-column:span 6 / span 6;grid-row:auto;color:#0a0a0a;border-color:#dccfbe;max-width:none;min-width:0;justify-self:stretch;grid-template-columns:repeat(12, minmax(0, 1fr));gap:1rem;}
#node-block_3e5314c1{width:auto;padding-top:10.66px;padding-right:19.68px;padding-bottom:19.68px;padding-left:19.68px;background:#ffffff;height:4.3rem;border-radius:999px;display:flex;align-items:center;justify-content:center;grid-column:span 12 / span 12;grid-row:auto;color:#0a0a0a;border-color:#dccfbe;max-width:none;min-width:0;justify-self:stretch;flex-wrap:wrap;}
#node-icon_10848535{width:2.85rem;height:2.85rem;color:#0a0a0a;justify-self:start;align-self:start;grid-column:span 2 / span 2;grid-row:auto;margin-top:0rem;max-width:100%;}
#node-text_4e4cd4fd{font-family:Outfit;font-size:1.7rem;line-height:1.14;color:#111827;max-width:none;font-weight:700;grid-column:span 12 / span 12;width:auto;min-width:0;justify-self:stretch;text-transform:none;letter-spacing:-0.02em;}
#node-block_95a98ff2{width:auto;padding-top:0px;padding-right:19.68px;padding-bottom:0px;padding-left:19.68px;background:#ffffff;height:0px;opacity:0.35;border-width:2px;border:2px solid #dccfbe;border-style:solid;grid-column:span 12 / span 12;max-width:none;min-width:0;justify-self:stretch;color:#0a0a0a;border-color:#dccfbe;}
#node-text_71966551{font-family:Inter;font-size:0.754rem;line-height:1.1;color:#949494;max-width:none;font-weight:700;grid-column:span 12 / span 12;width:auto;min-width:0;justify-self:stretch;}
#node-text_a2b04b13{font-family:Outfit;font-size:1.2rem;line-height:1.22;color:#111827;max-width:none;font-weight:600;grid-column:span 12 / span 12;width:auto;min-width:0;justify-self:stretch;margin-top:0rem;text-transform:none;letter-spacing:-0.01em;}
#node-block_9d53ef4e{width:auto;padding-top:24px;padding-right:24px;padding-bottom:24px;padding-left:24px;background:#f4dfd6;display:grid;align-items:center;justify-self:stretch;max-width:none;padding:1rem 1.2rem;border:1px solid #dce5f3;border-radius:18px;grid-column:3 / span 8;min-width:0;grid-row:auto;grid-template-columns:repeat(12, minmax(0, 1fr));gap:1rem;color:#1f1812;border-color:#dccfbe;}
#node-icon_ec068c0f{width:auto;height:2.05rem;color:#0a0a0a;justify-self:stretch;align-self:start;grid-column:auto;max-width:none;min-width:0;}
#node-text_7fea7c47{font-family:Outfit;font-size:1.2rem;line-height:1.22;color:#0a0a0a;max-width:none;font-weight:600;text-transform:none;letter-spacing:-0.01em;grid-column:span 10 / span 10;width:auto;min-width:0;justify-self:stretch;margin-top:0rem;margin-bottom:0rem;}
#node-block_b6b9a778{width:auto;padding-top:24px;padding-right:24px;padding-bottom:24px;padding-left:24px;background:transparent;position:relative;float:left;grid-column:3 / span 8;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_d06ec2f5{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_337a82da{width:100%;min-height:220px;padding-top:3.28rem;padding-right:4vw;padding-bottom:0rem;padding-left:4vw;background:#ffffff;display:grid;gap:1.025rem;color:#0a0a0a;border-bottom:1px solid #ebe5dc;grid-column:4 / span 9;grid-row:auto;max-width:100%;border-color:#dccfbe;}
#node-block_aaca42b4{width:auto;min-height:140px;padding-top:19.68px;padding-right:19.68px;padding-bottom:19.68px;padding-left:19.68px;background:#ffffff;display:grid;gap:0.779rem;max-width:none;justify-self:stretch;grid-column:span 12 / span 12;min-width:0;color:#0a0a0a;border-color:#dccfbe;}
#node-text_e3c90ffd{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;padding-right:1.558rem;grid-column:span 12 / span 12;width:auto;min-width:0;justify-self:stretch;text-align:left;margin-bottom:0rem;}
#node-text_1a537d50{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-right:1.558rem;grid-column:span 12 / span 12;width:auto;min-width:0;justify-self:stretch;text-align:right;margin-top:0rem;margin-bottom:0rem;}
#node-text_39810f24{font-family:Outfit;font-size:3.5rem;line-height:1.08;color:#0a0a0a;max-width:none;font-weight:700;text-transform:none;letter-spacing:-0.03em;padding-right:1.558rem;grid-column:span 12 / span 12;width:auto;min-width:0;justify-self:stretch;text-align:right;margin-top:0rem;margin-bottom:0rem;}
#node-text_75234895{font-family:Outfit;font-size:3.5rem;line-height:1.08;color:#0a0a0a;max-width:none;font-weight:700;text-transform:none;letter-spacing:-0.03em;padding-right:1.558rem;grid-column:span 12 / span 12;width:auto;min-width:0;justify-self:stretch;text-align:right;margin-top:0rem;margin-bottom:0rem;}
#node-text_e575767e{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;padding-right:1.558rem;grid-column:4 / span 9;width:auto;min-width:0;justify-self:stretch;text-align:right;margin-top:0rem;margin-bottom:0rem;grid-row:auto;}
#node-text_f8406c65{font-family:Source Sans 3;font-size:0.98rem;line-height:1.75;color:#374151;max-width:none;grid-column:4 / span 6;width:auto;min-width:0;justify-self:stretch;text-align:center;grid-row:auto;margin-top:2.788rem;padding-top:0rem;font-weight:400;text-transform:none;letter-spacing:0;}
#node-section_4b9dd335{width:100%;padding-top:4rem;padding-right:4vw;padding-bottom:4rem;padding-left:4vw;background:#000000;display:grid;color:#ffffff;border-bottom:1px solid #ebe5dc;min-height:78vh;align-items:center;border-color:#dccfbe;grid-template-columns:repeat(12, minmax(0, 1fr));gap:1rem;max-width:100%;}
#node-block_06faa9f5{width:auto;padding-top:24px;padding-right:24px;padding-bottom:24px;padding-left:24px;background:transparent;display:grid;max-width:none;justify-self:stretch;color:#0a0a0a;grid-template-columns:repeat(12, minmax(0, 1fr));gap:1rem;grid-column:span 12 / span 12;min-width:0;}
#node-text_286a966d{font-family:Inter;font-size:0.623rem;line-height:1.1;color:#949494;max-width:none;letter-spacing:0.18em;text-transform:uppercase;font-weight:700;grid-column:span 12 / span 12;width:auto;min-width:0;justify-self:stretch;}
#node-text_c2236845{font-family:Outfit;font-size:3.5rem;line-height:1.08;color:#ffffff;max-width:none;font-weight:700;grid-column:span 12 / span 12;width:auto;min-width:0;justify-self:stretch;padding-bottom:0px;margin-bottom:0px;margin-top:0px;text-transform:none;letter-spacing:-0.03em;}
#node-text_f0a5937a{font-family:Outfit;font-size:3.5rem;line-height:1.08;color:#ff3131;max-width:none;font-weight:700;grid-column:span 12 / span 12;width:auto;min-width:0;justify-self:stretch;padding-top:0px;margin-top:0px;margin-bottom:0px;text-transform:none;letter-spacing:-0.03em;}
#node-text_ebef552c{font-family:Outfit;font-size:3.5rem;line-height:1.08;color:#ffffff;max-width:none;grid-column:span 12 / span 12;width:auto;min-width:0;justify-self:stretch;font-weight:700;text-transform:none;letter-spacing:-0.03em;margin-top:0rem;padding-bottom:0rem;margin-bottom:0rem;}
#node-text_6fadbe33{font-family:Source Sans 3;font-size:0.98rem;line-height:1.75;color:#949494;max-width:none;grid-column:span 9 / span 9;width:auto;min-width:0;justify-self:stretch;margin-top:0rem;font-weight:400;text-transform:none;letter-spacing:0;}
#node-block_7fc71f55{width:auto;padding-top:24px;padding-right:24px;padding-bottom:24px;padding-left:24px;background:#000000;position:relative;display:grid;align-items:end;justify-items:center;border-radius:28px;padding:1.1rem;border:none;box-shadow:none;justify-self:stretch;align-self:stretch;min-height:33rem;overflow:hidden;color:#ffffff;align-content:center;border-width:0px;border-style:none;grid-column:span 12 / span 12;max-width:none;min-width:0;border-color:#dccfbe;}
#node-image_28cf1b98{width:100%;object-fit:cover;position:relative;max-width:100%;height:auto;}
#node-block_80344abf{width:auto;padding-top:0.6rem;padding-right:24px;padding-bottom:24px;padding-left:24px;background:transparent;grid-column:span 12 / span 12;display:grid;grid-template-columns:repeat(12, minmax(0, 1fr));gap:1rem;color:#0a0a0a;max-width:none;min-width:0;justify-self:stretch;}
#node-block_1defd29b{width:auto;padding-top:24px;padding-right:24px;padding-bottom:24px;padding-left:24px;background:#ffffff;position:relative;display:grid;gap:0.8rem;justify-items:center;text-align:center;padding:1.35rem 1rem 1.2rem;border:1px solid #e3ebf8;border-top:5px solid #14b8a6;border-radius:24px;box-shadow:0 16px 34px rgba(31, 58, 109, 0.06);overflow:hidden;grid-column:span 6 / span 6;max-width:none;min-width:0;justify-self:stretch;}
#node-block_8391ba71{width:auto;padding-top:19.68px;padding-right:19.68px;padding-bottom:19.68px;padding-left:19.68px;background:#f4dfd6;position:absolute;top:0;right:0;padding:0.55rem 0.85rem;color:#1f1812;border-bottom-left-radius:18px;font-size:0.804rem;font-weight:800;grid-column:span 2 / span 2;max-width:none;min-width:0;justify-self:stretch;border-color:#dccfbe;}
#node-text_98f02af2{font-family:Inter;font-size:0.804rem;line-height:1.1;color:#ffffff;max-width:16ch;font-weight:800;}
#node-block_d6a72183{width:5.3rem;padding-top:19.68px;padding-right:19.68px;padding-bottom:19.68px;padding-left:19.68px;background:#effcf8;height:5.3rem;border-radius:999px;display:flex;align-items:center;justify-content:center;flex-wrap:wrap;max-width:100%;}
#node-icon_b6f08092{width:2rem;height:2rem;color:#14b8a6;justify-self:start;align-self:start;max-width:100%;}
#node-text_dc4a701b{font-family:Outfit;font-size:1.7rem;line-height:1.14;color:#111827;max-width:12ch;font-weight:700;text-transform:none;letter-spacing:-0.02em;}
#node-block_1e43570b{width:3rem;padding-top:19.68px;padding-right:19.68px;padding-bottom:19.68px;padding-left:19.68px;background:#f4dfd6;height:3px;border-radius:999px;opacity:0.8;color:#1f1812;border-color:#dccfbe;max-width:100%;}
#node-text_d1c9e2e8{font-family:Source Sans 3;font-size:0.98rem;line-height:1.75;color:#374151;max-width:18ch;font-weight:400;text-transform:none;letter-spacing:0;}
#node-text_2dcbb07b{font-family:Source Sans 3;font-size:1.08rem;line-height:1.68;color:#374151;max-width:16ch;font-weight:400;text-transform:none;letter-spacing:0;}
#node-block_0fe345d3{width:auto;padding-top:24px;padding-right:24px;padding-bottom:24px;padding-left:24px;background:#ffffff;position:relative;display:grid;gap:0.8rem;justify-items:center;text-align:center;padding:1.35rem 1rem 1.2rem;border:1px solid #e3ebf8;border-top:5px solid #8b5cf6;border-radius:24px;box-shadow:0 16px 34px rgba(31, 58, 109, 0.06);overflow:hidden;grid-column:span 6 / span 6;max-width:none;min-width:0;justify-self:stretch;}
#node-block_f2464310{width:auto;padding-top:19.68px;padding-right:19.68px;padding-bottom:19.68px;padding-left:19.68px;background:#f4dfd6;position:absolute;top:0;right:0;padding:0.55rem 0.85rem;color:#1f1812;border-bottom-left-radius:18px;font-size:0.804rem;font-weight:800;grid-column:span 2 / span 2;max-width:none;min-width:0;justify-self:stretch;border-color:#dccfbe;}
#node-text_0a7e7418{font-family:Inter;font-size:0.804rem;line-height:1.1;color:#0a0a0a;max-width:16ch;font-weight:800;}
#node-block_58778472{width:5.3rem;padding-top:19.68px;padding-right:19.68px;padding-bottom:19.68px;padding-left:19.68px;background:#f6f0ff;height:5.3rem;border-radius:999px;display:flex;align-items:center;justify-content:center;flex-wrap:wrap;max-width:100%;}
#node-icon_f193ee89{width:2rem;height:2rem;color:#8b5cf6;justify-self:start;align-self:start;max-width:100%;}
#node-text_086c66aa{font-family:Outfit;font-size:1.7rem;line-height:1.14;color:#0a0a0a;max-width:12ch;font-weight:700;text-transform:none;letter-spacing:-0.02em;}
#node-block_aca510ff{width:3rem;padding-top:19.68px;padding-right:19.68px;padding-bottom:19.68px;padding-left:19.68px;background:#f4dfd6;height:3px;border-radius:999px;opacity:0.8;color:#1f1812;border-color:#dccfbe;max-width:100%;}
#node-text_3835809b{font-family:Source Sans 3;font-size:0.98rem;line-height:1.75;color:#374151;max-width:18ch;font-weight:400;text-transform:none;letter-spacing:0;}
#node-text_53ca5231{font-family:Source Sans 3;font-size:1.08rem;line-height:1.68;color:#374151;max-width:16ch;font-weight:400;text-transform:none;letter-spacing:0;}
#node-block_52797bfa{width:auto;padding-top:24px;padding-right:24px;padding-bottom:24px;padding-left:24px;background:#ffffff;position:relative;display:grid;gap:0.8rem;justify-items:center;text-align:center;padding:1.35rem 1rem 1.2rem;border:1px solid #e3ebf8;border-top:5px solid #f97316;border-radius:24px;box-shadow:0 16px 34px rgba(31, 58, 109, 0.06);overflow:hidden;grid-column:span 6 / span 6;max-width:none;min-width:0;justify-self:stretch;}
#node-block_9fd57fe2{width:auto;padding-top:19.68px;padding-right:19.68px;padding-bottom:19.68px;padding-left:19.68px;background:#ff3131;position:absolute;top:0;right:0;padding:0.55rem 0.85rem;color:#0a0a0a;border-bottom-left-radius:18px;font-size:0.804rem;font-weight:800;grid-column:span 2 / span 2;max-width:none;min-width:0;justify-self:stretch;border-color:#dccfbe;}
#node-text_25f6b06a{font-family:Inter;font-size:0.804rem;line-height:1.1;color:#ffffff;max-width:16ch;font-weight:800;}
#node-block_9f2ee65a{width:5.3rem;padding-top:19.68px;padding-right:19.68px;padding-bottom:19.68px;padding-left:19.68px;background:#fff3e8;height:5.3rem;border-radius:999px;display:flex;align-items:center;justify-content:center;flex-wrap:wrap;max-width:100%;}
#node-icon_fac62b5a{width:2rem;height:2rem;color:#f97316;justify-self:start;align-self:start;max-width:100%;}
#node-text_2691a9fd{font-family:Outfit;font-size:1.7rem;line-height:1.14;color:#111827;max-width:12ch;font-weight:700;text-transform:none;letter-spacing:-0.02em;}
#node-block_72d0b52e{width:3rem;padding-top:19.68px;padding-right:19.68px;padding-bottom:19.68px;padding-left:19.68px;background:#ff3131;height:3px;border-radius:999px;opacity:0.8;color:#0a0a0a;border-color:#dccfbe;max-width:100%;}
#node-text_8570d044{font-family:Source Sans 3;font-size:0.98rem;line-height:1.75;color:#374151;max-width:18ch;font-weight:400;text-transform:none;letter-spacing:0;}
#node-text_8f3c3533{font-family:Source Sans 3;font-size:1.08rem;line-height:1.68;color:#374151;max-width:16ch;font-weight:400;text-transform:none;letter-spacing:0;}
#node-block_cb0b6764{width:auto;padding-top:19.68px;padding-right:19.68px;padding-bottom:19.68px;padding-left:19.68px;background:transparent;grid-column:span 12 / span 12;display:grid;justify-items:center;gap:0.82rem;color:#0a0a0a;max-width:none;min-width:0;justify-self:stretch;}
#node-block_c0393fd5{width:100%;padding-top:0px;padding-right:0px;padding-bottom:0px;padding-left:0px;background:transparent;display:grid;flex-wrap:wrap;justify-content:center;color:#0a0a0a;grid-template-columns:repeat(12, minmax(0, 1fr));gap:1rem;max-width:100%;}
#node-block_84a34f8b{width:auto;padding-top:24px;padding-right:24px;padding-bottom:24px;padding-left:24px;background:transparent;display:flex;align-items:center;grid-column:span 4 / span 4;max-width:none;min-width:0;justify-self:stretch;color:#0a0a0a;flex-direction:row;flex-wrap:wrap;gap:16px;justify-content:center;align-content:flex-start;}
#node-icon_96c432c3{width:2rem;height:2rem;color:#949494;justify-self:start;align-self:start;margin-left:0rem;padding-left:0rem;max-width:100%;}
#node-text_92abf93b{font-family:Source Sans 3;font-size:1.08rem;line-height:1.68;color:#949494;max-width:16ch;font-weight:400;text-transform:none;letter-spacing:0;margin-top:0rem;display:block;width:100%;text-align:center;}
#node-block_4c34087d{width:auto;padding-top:24px;padding-right:24px;padding-bottom:24px;padding-left:24px;background:transparent;display:flex;align-items:center;grid-column:span 4 / span 4;max-width:none;min-width:0;justify-self:stretch;color:#0a0a0a;flex-direction:row;flex-wrap:wrap;gap:16px;justify-content:center;}
#node-icon_df91607b{width:2rem;height:2rem;color:#949494;justify-self:start;align-self:start;max-width:100%;}
#node-text_d12f328b{font-family:Source Sans 3;font-size:1.08rem;line-height:1.68;color:#949494;max-width:16ch;font-weight:400;text-transform:none;letter-spacing:0;margin-top:0rem;display:block;width:100%;text-align:center;}
#node-block_7711c9ca{width:auto;padding-top:24px;padding-right:24px;padding-bottom:24px;padding-left:24px;background:transparent;display:flex;align-items:center;grid-column:span 4 / span 4;max-width:none;min-width:0;justify-self:stretch;color:#0a0a0a;flex-direction:row;flex-wrap:wrap;gap:16px;justify-content:center;}
#node-icon_d8ed45e0{width:2rem;height:2rem;color:#949494;justify-self:start;align-self:start;max-width:100%;}
#node-text_dd888394{font-family:Source Sans 3;font-size:1.08rem;line-height:1.68;color:#949494;max-width:16ch;font-weight:400;text-transform:none;letter-spacing:0;margin-top:0rem;display:block;width:100%;text-align:center;}
#node-block_2f2c52e1{width:auto;padding-top:24px;padding-right:24px;padding-bottom:24px;padding-left:24px;background:transparent;display:flex;align-items:center;grid-column:span 4 / span 4;max-width:none;min-width:0;justify-self:stretch;color:#0a0a0a;flex-direction:row;flex-wrap:wrap;gap:16px;justify-content:center;}
#node-icon_75e8a4eb{width:2rem;height:2rem;color:#949494;justify-self:start;align-self:start;max-width:100%;}
#node-text_0afa3b15{font-family:Source Sans 3;font-size:1.08rem;line-height:1.68;color:#949494;max-width:16ch;font-weight:400;text-transform:none;letter-spacing:0;margin-top:0rem;display:block;width:100%;text-align:center;}
#node-block_07cd1191{width:auto;padding-top:24px;padding-right:24px;padding-bottom:24px;padding-left:24px;background:transparent;position:relative;float:left;grid-column:3 / span 8;max-width:none;min-width:0;justify-self:stretch;grid-row:auto;display:block;gap:16px;flex-direction:row;flex-wrap:wrap;align-items:stretch;justify-content:center;border-radius:4px;color:#0a0a0a;}
#node-button_7ff94497{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_5c0f7754{width:100%;min-height:220px;padding-top:4rem;padding-right:4vw;padding-bottom:0rem;padding-left:4vw;display:grid;gap:1.25rem;color:#0a0a0a;border-bottom:1px solid #ebe5dc;grid-column:span 6 / span 6;grid-row:auto;background-size:cover;background-position:center center;background-repeat:no-repeat;max-width:100%;}
#node-block_e87ef8ee{width:auto;min-height:140px;padding-top:24px;padding-right:19px;padding-bottom:204px;padding-left:24px;background:transparent;display:grid;max-width:none;justify-self:stretch;grid-column:span 7 / span 7;min-width:0;grid-template-columns:repeat(12, minmax(0, 1fr));gap:1rem;color:#0a0a0a;}
#node-text_ce94c371{font-family:Outfit;font-size:3.5rem;line-height:1.08;color:#ffffff;max-width:none;font-weight:700;text-transform:none;letter-spacing:-0.03em;padding-right:1.9rem;grid-column:span 8 / span 8;width:auto;min-width:0;justify-self:stretch;text-align:left;margin-bottom:0rem;}
#node-text_a74a6255{font-family:Source Sans 3;font-size:0.98rem;line-height:1.75;color:#949494;max-width:none;grid-column:span 6 / span 6;width:auto;min-width:0;justify-self:stretch;text-align:left;grid-row:auto;margin-top:0rem;font-weight:400;text-transform:none;letter-spacing:0;}
#node-section_b8d8bb64{width:100%;min-height:220px;padding-top:3.28rem;padding-right:4vw;padding-bottom:0rem;padding-left:4vw;background:#ffffff;display:grid;gap:1.025rem;color:#151515;border-bottom:1px solid #ebe5dc;max-width:100%;}
#node-block_b8c91eec{width:auto;min-height:140px;padding-top:19.68px;padding-right:19.68px;padding-bottom:19.68px;padding-left:19.68px;background:#ffffff;display:grid;gap:0.779rem;max-width:none;justify-self:stretch;grid-column:span 12 / span 12;min-width:0;color:#0a0a0a;border-color:#dccfbe;}
#node-text_fa7e6f3d{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;padding-right:1.558rem;grid-column:span 12 / span 12;width:auto;min-width:0;justify-self:stretch;text-align:center;margin-bottom:0rem;}
#node-text_26c6dfb0{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-right:1.558rem;grid-column:span 12 / span 12;width:auto;min-width:0;justify-self:stretch;text-align:center;margin-top:0rem;margin-bottom:0rem;}
#node-text_243af692{font-family:Source Sans 3;font-size:0.98rem;line-height:1.75;color:#374151;max-width:none;grid-column:4 / span 6;width:auto;min-width:0;justify-self:stretch;text-align:center;grid-row:auto;margin-top:0rem;font-weight:400;text-transform:none;letter-spacing:0;}
#node-section_340f7e92{width:100%;min-height:220px;padding-top:0rem;padding-right:4vw;padding-bottom:4rem;padding-left:4vw;background:transparent;display:grid;gap:1.25rem;color:#0a0a0a;border-bottom:1px solid #ebe5dc;max-width:100%;}
#node-block_3b9d3daa{width:100%;min-height:140px;padding-top:24px;padding-right:24px;padding-bottom:24px;padding-left:24px;display:grid;background:transparent;color:#0a0a0a;grid-template-columns:repeat(12, minmax(0, 1fr));gap:1rem;max-width:100%;}
#node-block_934872cb{width:auto;padding-top:0px;padding-right:0px;padding-bottom:0px;padding-left:0px;display:flex;gap:0.78rem;padding:1.2rem;border:none;border-radius:0px;box-shadow:none;border-width:0px;border-style:none;color:#0a0a0a;height:auto;flex-direction:row;flex-wrap:wrap;align-items:stretch;justify-content:flex-start;align-content:flex-end;grid-column:span 6 / span 6;max-width:none;min-width:0;justify-self:stretch;background:transparent;}
#node-image_48467ae4{position:relative;display:block;width:100%;min-height:180px;background:#f1f1f1;border:1px dashed #d8d8d8;max-width:100%;height:auto;}
#node-block_f2185fab{width:auto;padding-top:0px;padding-right:0px;padding-bottom:0px;padding-left:0px;display:flex;gap:0.78rem;padding:1.2rem;border:none;border-radius:0px;box-shadow:none;border-width:1px;border-style:none;color:#0a0a0a;height:auto;flex-direction:row;flex-wrap:wrap;align-items:stretch;justify-content:flex-start;align-content:flex-end;grid-column:span 6 / span 6;max-width:none;min-width:0;justify-self:stretch;background:transparent;}
#node-image_3e3a5c92{position:relative;display:block;width:100%;min-height:180px;background:#f1f1f1;border:1px dashed #d8d8d8;max-width:100%;height:auto;}
#node-block_96077f0a{width:auto;padding-top:0px;padding-right:0px;padding-bottom:0px;padding-left:0px;display:flex;gap:0.78rem;padding:1.2rem;border:none;border-radius:0px;box-shadow:none;border-width:0px;border-style:none;color:#0a0a0a;height:auto;flex-direction:row;flex-wrap:wrap;align-items:stretch;justify-content:flex-start;align-content:flex-end;grid-column:span 6 / span 6;max-width:none;min-width:0;justify-self:stretch;background:transparent;}
#node-image_d89f0ba2{position:relative;display:block;width:100%;min-height:180px;background:#f1f1f1;border:1px dashed #d8d8d8;max-width:100%;height:auto;}
#node-block_6bbc8941{width:auto;padding-top:0px;padding-right:0px;padding-bottom:0px;padding-left:0px;display:block;padding:1.2rem;border:none;border-radius:0px;box-shadow:none;border-width:0px;border-style:none;color:#0a0a0a;height:auto;flex-direction:row;flex-wrap:wrap;align-items:stretch;justify-content:flex-start;grid-column:span 6 / span 6;max-width:none;min-width:0;justify-self:stretch;margin-top:0rem;background:transparent;}
#node-text_8ef15d6b{font-family:Outfit;font-size:1.2rem;line-height:1.22;color:#0a0a0a;max-width:none;font-weight:600;text-transform:none;letter-spacing:-0.01em;text-align:left;margin-top:0px;grid-column:span 12 / span 12;width:auto;min-width:0;justify-self:stretch;padding-bottom:0px;margin-bottom:0px;}
#node-image_c502fb47{position:relative;display:block;width:100%;min-height:180px;background:#f1f1f1;border:1px dashed #d8d8d8;max-width:100%;height:auto;}
#node-block_371711e2{width:auto;padding-top:0px;padding-right:0px;padding-bottom:0px;padding-left:0px;display:block;padding:1.2rem;border:none;border-radius:0px;box-shadow:none;border-width:0px;border-style:none;color:#0a0a0a;height:auto;flex-direction:row;flex-wrap:wrap;align-items:stretch;justify-content:flex-start;grid-column:span 6 / span 6;max-width:none;min-width:0;justify-self:stretch;margin-top:0rem;background:transparent;}
#node-text_7d584413{font-family:Outfit;font-size:1.2rem;line-height:1.22;color:#0a0a0a;max-width:none;font-weight:600;text-transform:none;letter-spacing:-0.01em;text-align:left;margin-top:0px;grid-column:span 12 / span 12;width:auto;min-width:0;justify-self:stretch;padding-bottom:0px;margin-bottom:0px;}
#node-image_c71ef7cb{position:relative;display:block;width:100%;min-height:180px;background:#f1f1f1;border:1px dashed #d8d8d8;max-width:100%;height:auto;}
#node-block_aca61597{width:auto;padding-top:0px;padding-right:0px;padding-bottom:0px;padding-left:0px;display:block;padding:1.2rem;border:none;border-radius:0px;box-shadow:none;border-width:0px;border-style:none;color:#0a0a0a;height:auto;flex-direction:row;flex-wrap:wrap;align-items:stretch;justify-content:flex-start;grid-column:span 6 / span 6;max-width:none;min-width:0;justify-self:stretch;margin-top:0rem;background:transparent;}
#node-text_586b448f{font-family:Outfit;font-size:1.2rem;line-height:1.22;color:#0a0a0a;max-width:none;font-weight:600;text-transform:none;letter-spacing:-0.01em;text-align:left;margin-top:0px;grid-column:span 12 / span 12;width:auto;min-width:0;justify-self:stretch;padding-bottom:0px;margin-bottom:0px;}
#node-image_aaadf2b0{position:relative;display:block;width:100%;min-height:180px;background:#f1f1f1;border:1px dashed #d8d8d8;max-width:100%;height:auto;}
#node-section_9d467696{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;grid-column:span 4 / span 4;grid-row:auto;border-color:#dccfbe;max-width:100%;}
#node-block_0e4905bd{width:auto;min-height:140px;padding-top:24px;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_1528e366{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_102459ee{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_4f73b8ff{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_c6f701cb{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_32154ef7{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_9b9dad2e{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 11 / span 11;width:auto;min-width:0;justify-self:stretch;padding-bottom:0px;margin-bottom:0px;}
#node-text_82d8f03d{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_09d4c6ca{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-block_cd39eb55{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_1707b343{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_a5362638{width:100%;min-height:220px;padding-top:3.28rem;padding-right:4vw;padding-bottom:3.28rem;padding-left:4vw;background:#000000;display:grid;gap:1.025rem;color:#ffffff;border-bottom:1px solid #ebe5dc;border-color:#dccfbe;max-width:100%;}
#node-block_d7d0fe83{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_59180b8b{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_897fcda1{font-family:Outfit;font-size:3.5rem;line-height:1.08;color:#ffffff;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_8ed78ea3{font-family:Source Sans 3;font-size:0.98rem;line-height:1.75;color:#949494;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_cdd00ffe{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_51cca818{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_a549de91{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_d4ed9620{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_0a42b548{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_2146054f{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:4 / span 6;grid-row:auto;justify-self:stretch;color:#0a0a0a;border-color:#dccfbe;}
#node-button_f43cdd97{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_73e3aab9{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_1f375a73{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_e2993156{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_8205bbea{width:100%;object-fit:contain;position:relative;float:left;height:auto;}
#node-block_d2bba89b{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_86c47bba{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:1.2rem;}
#node-button_23a38e34:hover{background:#ffffff !important;color:#ff2424 !important;}
#node-button_e1898f72:hover{background:#ff2424 !important;color:#ffffff !important;}
#node-button_51cca818:hover{background:#ff2424 !important;color:#ffffff !important;}
#node-button_f43cdd97:hover{background:#ffffff !important;color:#ff2424 !important;}
#node-button_1707b343:hover{background:#ff2424 !important;color:#ffffff !important;}
#node-button_798aba89:hover{background:#ffffff !important;color:#ff2424 !important;}
#node-button_d06ec2f5:hover{background:#ffffff !important;color:#ff2424 !important;}
#node-button_7ff94497:hover{background:#ff2424 !important;color:#ffffff !important;}
}

@media (max-width: 767px) {
#node-section_d3086f8c{width:100%;min-height:100%;padding-top:3.5rem;padding-right:4vw;padding-bottom:4rem;padding-left:4vw;display:grid;gap:1.25rem;color:#0a0a0a;border-bottom:1px solid #ebe5dc;grid-template-columns:1.05fr 0.95fr;align-items:center;height:100vh;align-content:flex-start;background-position:center center;background-size:contain;background-repeat:no-repeat;max-width:100%;border-color:#dccfbe;}
#node-block_c00d8ea3{width:auto;padding-top:5px;padding-right:5px;padding-bottom:5px;padding-left:5px;background:rgba(255, 255, 255, 0);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;z-index:3;}
#node-block_5ca17c20{width:auto;padding-top:10px;padding-right:2px;padding-bottom:2px;padding-left:2px;background:rgba(214, 214, 214, 0);position:relative;float:left;max-width:none;height:auto;grid-column:span 6 / span 6;grid-row:auto;min-width:0;justify-self:stretch;}
#node-image_95f7f30c{width:100%;object-fit:contain;position:relative;float:left;height:auto;}
#node-block_1e592fa7{width:auto;padding-top:0px;padding-right:2px;padding-bottom:2px;padding-left:2px;background:rgba(255, 255, 255, 0);position:relative;float:left;grid-column:span 6 / span 6;grid-row:auto;max-width:none;min-width:0;justify-self:stretch;height:auto;opacity:1;display:block;}
#node-block_b2c87409{width:auto;min-height:140px;padding-top:17.28px;padding-right:17.28px;padding-bottom:17.28px;padding-left:17.28px;display:block;gap:0.36rem;max-width:none;justify-self:stretch;grid-column:span 9 / span 9;grid-row:auto;row-gap:0.5rem;column-gap:0.5rem;min-width:0;margin-top:1.44px;}
#node-text_89d00ab9{font-family:Outfit;font-size:2.2rem;line-height:1.08;color:#ff3131;max-width:none;letter-spacing:-0.04em;text-transform:none;font-weight:700;grid-column:span 9 / span 9;grid-row:auto;width:12.4rem;min-width:0;justify-self:stretch;height:auto;margin-bottom:0rem;padding-bottom:0rem;}
#node-text_282ff261{font-family:Outfit;font-size:2.2rem;line-height:1.12;color:#ffffff;max-width:none;font-weight:700;grid-column:span 12 / span 12;min-width:0;justify-self:stretch;margin-bottom:0px;margin-top:0px;text-transform:none;letter-spacing:-0.03em;display:block;height:auto;width:243px;padding-right:0px;}
#node-text_ca58eb4c{font-family:Source Sans 3;font-size:0.95rem;line-height:1.78;color:#ffffff;max-width:none;grid-column:span 10 / span 10;grid-row:auto;width:12.8rem;min-width:0;justify-self:stretch;padding-bottom:0rem;padding-right:0rem;font-weight:400;letter-spacing:0;text-transform:none;}
#node-block_4a7b34d6{width:auto;padding-top:25.2px;padding-right:17.28px;padding-bottom:17.28px;padding-left:0px;background:rgba(255, 255, 255, 0);display:flex;flex-wrap:wrap;gap:0.576rem;align-items:center;grid-column:span 11 / span 11;grid-row:auto;min-width:0;justify-self:stretch;height:auto;}
#node-button_23a38e34{display:inline-flex;padding-top:0.684rem;padding-right:1.044rem;padding-bottom:0.72rem;padding-left:1.044rem;background:#000000;color:#ffffff;border:1px solid #a1442a;border-radius:999px;transition:background-color 180ms ease, color 180ms ease, border-color 180ms ease, transform 180ms ease, box-shadow 180ms ease;max-width:100%;font-family:Source Sans 3;font-weight:600;text-transform:none;line-height:1.2;letter-spacing:0;font-size:0.9rem;}
#node-button_e1898f72{display:inline-flex;padding-top:0.562rem;padding-right:0.936rem;padding-bottom:0.562rem;padding-left:0.936rem;background:#ffffff;color:#000000;border:3px solid #fe1616;border-radius:999px;border-width:3px;border-style:solid;border-color:#fe1616;transition:background-color 180ms ease, color 180ms ease, border-color 180ms ease, transform 180ms ease, box-shadow 180ms ease;max-width:100%;font-family:Source Sans 3;font-weight:600;text-transform:none;line-height:1.2;letter-spacing:0;font-size:0.9rem;}
#node-section_0ad9704b{width:100%;min-height:220px;padding-top:0rem;padding-right:4vw;padding-bottom:0rem;padding-left:4vw;background:#ff3131;display:block;color:#0a0a0a;border-bottom:1px solid #ebe5dc;text-align:center;border-color:#dccfbe;height:auto;max-width:100%;}
#node-block_a4f05fcb{width:auto;min-height:140px;padding-top:24px;padding-right:27px;padding-bottom:24px;padding-left:24px;background:transparent;display:grid;gap:0.95rem;max-width:none;justify-self:stretch;grid-column:span 10 / span 10;min-width:0;color:#0a0a0a;margin-bottom:0px;}
#node-text_f4fe92c8{font-family:Outfit;font-size:2.2rem;line-height:1.12;color:#ffffff;max-width:none;font-weight:700;grid-column:span 12 / span 12;width:auto;min-width:0;justify-self:stretch;text-transform:none;letter-spacing:-0.03em;}
#node-section_63ec612b{width:100%;min-height:220px;padding-top:9.9rem;padding-right:4vw;padding-bottom:0rem;padding-left:4vw;display:grid;color:#0a0a0a;border-bottom:1px solid #ebe5dc;grid-template-columns:repeat(12, minmax(0, 1fr));gap:1rem;background:#ffffff;border-color:#dccfbe;grid-column:5 / span 8;grid-row:auto;max-width:100%;}
#node-block_3fead6d8{width:auto;min-height:140px;padding-top:0px;padding-right:17.28px;padding-bottom:17.28px;padding-left:17.28px;background:#ffffff;display:grid;max-width:none;justify-self:stretch;grid-column:span 12 / span 12;min-width:0;grid-template-columns:repeat(12, minmax(0, 1fr));gap:0.72rem;color:#0a0a0a;border-color:#dccfbe;}
#node-text_16dd7857{font-family:Outfit;font-size:2.2rem;line-height:1.12;color:#0a0a0a;max-width:none;font-weight:700;margin-bottom:0px;text-transform:none;letter-spacing:-0.03em;padding-top:0px;margin-top:0px;grid-column:2 / span 11;width:auto;min-width:0;justify-self:stretch;grid-row:auto;text-align:right;}
#node-text_26b6cf2b{font-family:Source Sans 3;font-size:0.95rem;line-height:1.78;color:#0a0a0a;max-width:none;font-weight:400;text-transform:none;letter-spacing:0;grid-column:6 / span 7;width:auto;min-width:0;justify-self:stretch;grid-row:auto;text-align:right;}
#node-section_fe72d6b3{width:100%;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_f28dcbc7{width:100%;padding-top:24px;padding-right:24px;padding-bottom:24px;padding-left:24px;background:#ff3131;display:grid;grid-template-columns:repeat(12, minmax(0, 1fr));border:1px solid #dccfbe;border-radius:18px;overflow:hidden;gap:1rem;color:#0a0a0a;border-color:#dccfbe;border-width:1px;border-style:solid;grid-column:2 / span 10;grid-row:auto;max-width:100%;}
#node-block_772dbb73{width:auto;padding-top:24px;padding-right:0px;padding-bottom:24px;padding-left:0px;background:#ffffff;display:grid;grid-template-rows:auto 1fr auto;min-height:100%;border-left:0;border-top:0;grid-column:span 12 / span 12;max-width:none;min-width:0;justify-self:stretch;grid-template-columns:repeat(12, minmax(0, 1fr));gap:1rem;}
#node-block_344a303b{width:auto;padding-top:1.15rem;padding-right:1.3rem;padding-bottom:1.15rem;padding-left:1.3rem;background:#ffffff;display:flex;align-items:center;gap:0.7rem;border-bottom:1px solid #eadfd3;color:#0a0a0a;border-color:#dccfbe;grid-column:span 12 / span 12;max-width:none;min-width:0;justify-self:stretch;flex-wrap:wrap;}
#node-text_8ac4aa0f{font-family:Inter;font-size:0.72rem;line-height:1.1;color:#ffffff;max-width:16ch;width:2rem;height:2rem;border-radius:999px;display:inline-flex;align-items:center;justify-content:center;background:#f26b67;font-weight:800;}
#node-text_6c2ee7a8{font-family:Outfit;font-size:1.45rem;line-height:1.18;color:#111827;max-width:16ch;font-weight:700;text-transform:none;letter-spacing:-0.02em;}
#node-block_60604202{width:auto;padding-top:1.45rem;padding-right:0rem;padding-bottom:1.45rem;padding-left:0rem;background:#ffffff;display:grid;gap:1rem;color:#0a0a0a;border-color:#dccfbe;grid-column:span 12 / span 12;max-width:none;min-width:0;justify-self:stretch;grid-template-columns:repeat(12, minmax(0, 1fr));}
#node-block_fb74740f{width:auto;padding-top:24px;padding-right:24px;padding-bottom:24px;padding-left:0px;background:#ffffff;display:grid;grid-template-columns:repeat(12, minmax(0, 1fr));gap:1rem;align-items:start;height:auto;color:#0a0a0a;border-color:#dccfbe;grid-column:span 12 / span 12;max-width:none;min-width:0;justify-self:stretch;}
#node-icon_332854fd{width:auto;height:2.3rem;color:#f26b67;justify-self:stretch;align-self:start;grid-column:span 2 / span 2;max-width:none;min-width:0;grid-row:auto;}
#node-block_25277709{width:auto;padding-top:0px;padding-right:0px;padding-bottom:0px;padding-left:0px;background:#ffffff;display:block;gap:0.35rem;color:#0a0a0a;border-color:#dccfbe;grid-column:span 10 / span 10;max-width:none;min-width:0;justify-self:stretch;grid-row:auto;}
#node-text_aa3f452f{font-family:Outfit;font-size:1.08rem;line-height:1.26;color:#111827;max-width:none;font-weight:600;margin-top:0rem;margin-bottom:0rem;width:100%;padding-bottom:0px;height:auto;display:block;text-transform:none;letter-spacing:-0.01em;}
#node-text_937c32cd{font-family:Source Sans 3;font-size:0.95rem;line-height:1.78;color:#374151;max-width:26ch;margin-top:0rem;font-weight:400;text-transform:none;letter-spacing:0;}
#node-block_2b1d8c50{width:auto;padding-top:24px;padding-right:0px;padding-bottom:24px;padding-left:0px;background:transparent;display:grid;grid-template-columns:repeat(12, minmax(0, 1fr));gap:1rem;align-items:start;height:auto;color:#0a0a0a;grid-column:span 12 / span 12;max-width:none;min-width:0;justify-self:stretch;}
#node-icon_da619f0a{width:auto;height:2.3rem;color:#f26b67;justify-self:stretch;align-self:start;grid-column:span 2 / span 2;max-width:none;min-width:0;}
#node-block_c766e993{width:auto;padding-top:0px;padding-right:0px;padding-bottom:24px;padding-left:0px;background:#ffffff;display:block;color:#0a0a0a;border-color:#dccfbe;grid-column:span 10 / span 10;max-width:none;min-width:0;justify-self:stretch;}
#node-text_3058fb1b{font-family:Outfit;font-size:1.08rem;line-height:1.26;color:#111827;max-width:none;font-weight:600;margin-bottom:0rem;padding-bottom:0rem;width:321px;margin-top:0px;text-transform:none;letter-spacing:-0.01em;}
#node-text_5c7f0935{font-family:Source Sans 3;font-size:0.95rem;line-height:1.78;color:#374151;max-width:26ch;margin-top:0rem;font-weight:400;text-transform:none;letter-spacing:0;}
#node-block_e3fd1605{width:auto;padding-top:24px;padding-right:24px;padding-bottom:24px;padding-left:0px;background:transparent;display:grid;grid-template-columns:repeat(12, minmax(0, 1fr));gap:1rem;align-items:start;color:#0a0a0a;grid-column:span 11 / span 11;max-width:none;min-width:0;justify-self:stretch;}
#node-icon_bfeb9e75{width:2.3rem;height:2.3rem;color:#f26b67;justify-self:start;align-self:start;grid-column:span 2 / span 2;grid-row:auto;max-width:100%;}
#node-block_e62656e4{width:100%;padding-top:0px;padding-right:0px;padding-bottom:24px;padding-left:0px;background:#ffffff;display:block;color:#0a0a0a;border-color:#dccfbe;grid-column:span 10 / span 10;grid-row:auto;max-width:100%;}
#node-text_ad7620a6{font-family:Outfit;font-size:1.08rem;line-height:1.26;color:#111827;max-width:16ch;font-weight:600;padding-top:0rem;margin-top:0rem;margin-bottom:0rem;text-transform:none;letter-spacing:-0.01em;}
#node-text_974f1a52{font-family:Source Sans 3;font-size:0.95rem;line-height:1.78;color:#374151;max-width:26ch;margin-top:0rem;font-weight:400;text-transform:none;letter-spacing:0;}
#node-block_1b2a1e73{width:auto;padding-top:1rem;padding-right:1.3rem;padding-bottom:1rem;padding-left:0rem;background:#ffffff;display:grid;grid-template-columns:repeat(12, minmax(0, 1fr));gap:1rem;align-items:start;border-top:1px solid #eadfd3;color:#0a0a0a;border-color:#dccfbe;grid-column:span 11 / span 11;max-width:none;min-width:0;justify-self:stretch;}
#node-icon_ed10adae{width:2rem;height:2rem;color:#f26b67;justify-self:start;align-self:start;grid-column:span 2 / span 2;grid-row:auto;max-width:100%;}
#node-block_14c03f12{width:100%;padding-top:0px;padding-right:0px;padding-bottom:24px;padding-left:0px;background:#ffffff;display:block;gap:0.35rem;color:#0a0a0a;border-color:#dccfbe;grid-column:span 10 / span 10;grid-row:auto;max-width:100%;}
#node-text_39c3014b{font-family:Outfit;font-size:1.08rem;line-height:1.26;color:#111827;max-width:none;font-weight:600;width:336px;text-transform:none;letter-spacing:-0.01em;margin-top:0px;}
#node-block_ff4cee13{width:auto;padding-top:24px;padding-right:0px;padding-bottom:24px;padding-left:0px;background:#ffffff;display:grid;grid-template-rows:auto 1fr auto;min-height:100%;border-left:0;border-top:1px solid #eadfd3;grid-column:span 12 / span 12;max-width:none;min-width:0;justify-self:stretch;}
#node-block_39239b88{width:100%;padding-top:0.828rem;padding-right:0.936rem;padding-bottom:0.828rem;padding-left:0.936rem;background:#ffffff;display:flex;align-items:center;gap:0.504rem;border-bottom:1px solid #eadfd3;color:#0a0a0a;border-color:#dccfbe;flex-wrap:wrap;max-width:100%;}
#node-text_40ecfa96{font-family:Inter;font-size:0.72rem;line-height:1.1;color:#ffffff;max-width:16ch;width:2rem;height:2rem;border-radius:999px;display:inline-flex;align-items:center;justify-content:center;background:#58bb6f;font-weight:800;}
#node-text_27a9f4e6{font-family:Outfit;font-size:1.45rem;line-height:1.18;color:#111827;max-width:16ch;font-weight:700;text-transform:none;letter-spacing:-0.02em;}
#node-block_73fe26be{width:100%;padding-top:1.45rem;padding-right:0rem;padding-bottom:1.45rem;padding-left:0rem;background:transparent;display:grid;gap:1.4rem;color:#0a0a0a;max-width:100%;}
#node-block_c3c34cd2{width:100%;padding-top:24px;padding-right:24px;padding-bottom:24px;padding-left:0px;background:transparent;display:grid;grid-template-columns:repeat(12, minmax(0, 1fr));gap:1rem;align-items:start;height:auto;color:#0a0a0a;max-width:100%;}
#node-icon_bd032e67{width:2.3rem;height:2.3rem;color:#58bb6f;justify-self:start;align-self:start;grid-column:span 2 / span 2;grid-row:auto;max-width:100%;}
#node-block_1b3e83d3{width:100%;padding-top:0px;padding-right:0px;padding-bottom:24px;padding-left:0px;background:transparent;display:block;gap:0.35rem;color:#0a0a0a;grid-column:span 10 / span 10;grid-row:auto;max-width:100%;}
#node-text_0c7f421a{font-family:Outfit;font-size:1.08rem;line-height:1.26;color:#111827;max-width:16ch;font-weight:600;margin-top:0rem;margin-bottom:0rem;padding-bottom:0rem;text-transform:none;letter-spacing:-0.01em;}
#node-text_6e659b3b{font-family:Source Sans 3;font-size:0.95rem;line-height:1.78;color:#374151;max-width:26ch;margin-top:0rem;font-weight:400;text-transform:none;letter-spacing:0;}
#node-block_d7cb3ddb{width:100%;padding-top:24px;padding-right:24px;padding-bottom:24px;padding-left:0px;background:transparent;display:grid;grid-template-columns:repeat(12, minmax(0, 1fr));gap:1rem;align-items:start;height:auto;color:#0a0a0a;max-width:100%;}
#node-icon_d6ce5eb8{width:2.3rem;height:2.3rem;color:#58bb6f;justify-self:start;align-self:start;grid-column:span 2 / span 2;grid-row:auto;max-width:100%;}
#node-block_f7e66869{width:100%;padding-top:0px;padding-right:0px;padding-bottom:24px;padding-left:0px;background:transparent;display:block;gap:0.35rem;color:#0a0a0a;grid-column:span 10 / span 10;grid-row:auto;max-width:100%;}
#node-text_4fbc1997{font-family:Outfit;font-size:1.08rem;line-height:1.26;color:#111827;max-width:16ch;font-weight:600;margin-top:0rem;margin-bottom:0rem;padding-bottom:0rem;text-transform:none;letter-spacing:-0.01em;}
#node-text_e793e0d2{font-family:Source Sans 3;font-size:0.95rem;line-height:1.78;color:#374151;max-width:26ch;margin-top:0.036rem;font-weight:400;text-transform:none;letter-spacing:0;}
#node-block_31314715{width:100%;padding-top:24px;padding-right:24px;padding-bottom:24px;padding-left:0px;background:transparent;display:grid;grid-template-columns:repeat(12, minmax(0, 1fr));gap:1rem;align-items:start;height:auto;color:#0a0a0a;max-width:100%;}
#node-icon_98fc500b{width:2.3rem;height:2.3rem;color:#58bb6f;justify-self:start;align-self:start;grid-column:span 2 / span 2;grid-row:auto;max-width:100%;}
#node-block_dfb5902f{width:100%;padding-top:0px;padding-right:0px;padding-bottom:24px;padding-left:0px;background:transparent;display:block;gap:0.35rem;margin-top:0%;color:#0a0a0a;grid-column:span 10 / span 10;grid-row:auto;max-width:100%;}
#node-text_d5e3124e{font-family:Outfit;font-size:1.08rem;line-height:1.26;color:#111827;max-width:16ch;font-weight:600;padding-top:0rem;margin-top:0rem;margin-bottom:0rem;text-transform:none;letter-spacing:-0.01em;}
#node-text_83980d64{font-family:Source Sans 3;font-size:0.95rem;line-height:1.78;color:#374151;max-width:26ch;padding-top:0rem;margin-top:0rem;font-weight:400;text-transform:none;letter-spacing:0;}
#node-block_ca416f2b{width:100%;padding-top:1rem;padding-right:1.3rem;padding-bottom:1rem;padding-left:0rem;background:transparent;display:grid;grid-template-columns:repeat(12, minmax(0, 1fr));gap:1rem;align-items:start;border-top:1px solid #eadfd3;color:#0a0a0a;max-width:100%;}
#node-icon_c1d46837{width:2rem;height:2rem;color:#58bb6f;justify-self:start;align-self:start;grid-column:span 2 / span 2;grid-row:auto;max-width:100%;}
#node-block_cdfba456{width:100%;padding-top:0px;padding-right:0px;padding-bottom:24px;padding-left:0px;background:transparent;display:block;height:auto;gap:1rem;color:#0a0a0a;grid-column:span 10 / span 10;grid-row:auto;max-width:100%;}
#node-text_806207cc{font-family:Outfit;font-size:1.08rem;line-height:1.26;color:#111827;max-width:none;font-weight:600;width:320px;text-transform:none;letter-spacing:-0.01em;margin-top:0px;}
#node-section_b3b80cb3{width:100%;min-height:220px;padding-top:2.88rem;padding-right:4vw;padding-bottom:2.88rem;padding-left:4vw;background:#000000;display:grid;gap:0.9rem;color:#ffffff;border-bottom:1px solid #ebe5dc;border-color:#dccfbe;max-width:100%;}
#node-block_9d7663ec{width:100%;min-height:140px;padding-top:17.28px;padding-right:17.28px;padding-bottom:0px;padding-left:17.28px;background:transparent;display:grid;gap:0.684rem;max-width:68rem;justify-self:start;height:auto;color:#0a0a0a;}
#node-text_2028cf49{font-family:Outfit;font-size:2.2rem;line-height:1.12;color:#ffffff;max-width:16ch;font-weight:700;text-transform:none;letter-spacing:-0.03em;margin-bottom:0rem;}
#node-block_d0daf3a6{width:100%;min-height:140px;padding-top:0px;padding-right:17.28px;padding-bottom:17.28px;padding-left:17.28px;background:transparent;display:block;color:#0a0a0a;grid-template-columns:1fr;max-width:100%;}
#node-block_08c1c738{width:auto;min-height:140px;padding-top:0px;padding-right:17.28px;padding-bottom:17.28px;padding-left:17.28px;background:transparent;display:grid;gap:0.504rem;padding:0.864rem;border:none;border-radius:22px;box-shadow:0 12px 28px rgba(44, 31, 22, 0.06);grid-column:span 2 / span 2;max-width:none;min-width:0;justify-self:stretch;color:#0a0a0a;border-style:none;}
#node-text_a969e197{font-family:Outfit;font-size:1.45rem;line-height:1.18;color:#ffffff;max-width:none;font-weight:700;letter-spacing:-0.02em;text-transform:none;grid-column:span 12 / span 12;width:auto;min-width:0;justify-self:stretch;text-align:center;}
#node-image_cc5110a4{width:auto;object-fit:cover;position:relative;grid-column:span 12 / span 12;max-width:none;min-width:0;justify-self:stretch;height:auto;}
#node-text_3a1a0b3f{font-family:Source Sans 3;font-size:0.95rem;line-height:1.78;color:#ffffff;max-width:none;font-weight:400;text-transform:none;letter-spacing:0;text-align:center;grid-column:span 12 / span 12;width:auto;min-width:0;justify-self:stretch;}
#node-section_619c0ca8{width:100%;min-height:220px;padding-top:2.88rem;padding-right:4vw;padding-bottom:2.88rem;padding-left:4vw;background:transparent;display:grid;color:#0a0a0a;border-bottom:1px solid #ebe5dc;grid-template-columns:repeat(12, minmax(0, 1fr));gap:0.72rem;grid-column:6 / span 7;grid-row:auto;max-width:100%;}
#node-block_6bab10ed{width:auto;min-height:140px;padding-top:24px;padding-right:24px;padding-bottom:24px;padding-left:24px;background:rgba(255, 250, 243, 0);display:grid;gap:0.95rem;max-width:none;justify-self:stretch;grid-column:span 11 / span 11;grid-row:auto;min-width:0;}
#node-text_a9ca0b96{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-bottom:0rem;margin-bottom:0rem;grid-column:span 12 / span 12;width:auto;min-width:0;justify-self:stretch;}
#node-text_9c0b1f1a{font-family:Source Sans 3;font-size:0.95rem;line-height:1.78;color:#374151;max-width:none;grid-column:span 12 / span 12;width:auto;min-width:0;justify-self:stretch;font-weight:400;text-transform:none;letter-spacing:0;}
#node-block_72260900{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_798aba89{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_79867a53{width:auto;min-height:140px;padding-top:17.28px;padding-right:17.28px;padding-bottom:17.28px;padding-left:17.28px;background:#ffffff;display:grid;grid-column:span 12 / span 12;max-width:none;min-width:0;justify-self:stretch;grid-template-columns:1fr;gap:0.72rem;grid-row:auto;}
#node-block_cafaa414{width:auto;min-height:100%;padding-top:17.28px;padding-right:17.28px;padding-bottom:17.28px;padding-left:17.28px;display:flex;padding:0.864rem;border:2px solid #d7dce4;border-radius:0px;box-shadow:none;grid-column:span 4 / span 4;max-width:none;min-width:0;justify-self:stretch;grid-row:auto;height:auto;flex-direction:column;flex-wrap:wrap;gap:1.44px;align-items:stretch;justify-content:space-between;align-content:flex-start;border-width:2px;border-style:solid;}
#node-image_c59305a1{width:100%;object-fit:cover;position:relative;margin-bottom:15%;max-width:none;height:auto;grid-column:span 7 / span 7;grid-row:auto;}
#node-text_c65ff8b7{font-family:Outfit;font-size:1.45rem;line-height:1.18;color:#111827;max-width:none;font-weight:700;text-transform:none;letter-spacing:-0.02em;width:209px;margin-top:0px;text-align:left;margin-bottom:0px;}
#node-text_e0a2ad40{font-family:Source Sans 3;font-size:0.95rem;line-height:1.78;color:#374151;max-width:none;grid-column:span 8 / span 8;grid-row:auto;font-weight:400;text-transform:none;letter-spacing:0;width:306px;margin-top:0px;}
#node-block_c999ef97{width:auto;min-height:100%;padding-top:17.28px;padding-right:17.28px;padding-bottom:17.28px;padding-left:17.28px;display:flex;padding:0.864rem;border:2px solid #d7dce4;border-radius:0px;box-shadow:none;grid-column:span 4 / span 4;max-width:none;min-width:0;justify-self:stretch;grid-row:auto;height:auto;flex-direction:column;flex-wrap:wrap;gap:1.44px;align-items:stretch;justify-content:space-between;align-content:flex-start;border-width:2px;border-style:solid;}
#node-image_8263fc68{width:100%;object-fit:cover;position:relative;margin-bottom:15%;max-width:none;height:auto;grid-column:span 7 / span 7;grid-row:auto;}
#node-text_7c9280e2{font-family:Outfit;font-size:1.45rem;line-height:1.18;color:#111827;max-width:none;font-weight:700;text-transform:none;letter-spacing:-0.02em;width:209px;margin-top:0px;text-align:left;margin-bottom:0px;}
#node-text_1c721332{font-family:Source Sans 3;font-size:0.95rem;line-height:1.78;color:#374151;max-width:none;grid-column:span 8 / span 8;grid-row:auto;font-weight:400;text-transform:none;letter-spacing:0;width:306px;margin-top:0px;}
#node-block_0edfd4e2{width:auto;min-height:100%;padding-top:17.28px;padding-right:17.28px;padding-bottom:17.28px;padding-left:17.28px;display:flex;padding:0.864rem;border:2px solid #d7dce4;border-radius:0px;box-shadow:none;grid-column:span 4 / span 4;max-width:none;min-width:0;justify-self:stretch;grid-row:auto;height:auto;flex-direction:column;flex-wrap:wrap;gap:1.44px;align-items:stretch;justify-content:space-between;align-content:flex-start;border-width:2px;border-style:solid;}
#node-image_4f919c58{width:100%;object-fit:cover;position:relative;margin-bottom:15%;max-width:none;height:auto;grid-column:span 7 / span 7;grid-row:auto;}
#node-text_5b7b3ad4{font-family:Outfit;font-size:1.45rem;line-height:1.18;color:#111827;max-width:none;font-weight:700;text-transform:none;letter-spacing:-0.02em;width:209px;margin-top:0px;text-align:left;margin-bottom:0px;}
#node-text_4eb7745f{font-family:Source Sans 3;font-size:0.95rem;line-height:1.78;color:#374151;max-width:none;grid-column:span 8 / span 8;grid-row:auto;font-weight:400;text-transform:none;letter-spacing:0;width:306px;margin-top:0px;}
#node-section_3a57aca4{width:100%;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;height:auto;min-height:220px;grid-column:2 / span 4;grid-row:auto;border-color:#dccfbe;max-width:100%;}
#node-block_12111d04{width:auto;min-height:140px;padding-top:0px;padding-right:24px;padding-bottom:100px;padding-left:5px;background:transparent;display:grid;max-width:none;justify-self:stretch;grid-column:span 12 / span 12;min-width:0;border-width:0px;border:none;border-style:none;box-shadow:none;grid-template-columns:repeat(12, minmax(0, 1fr));gap:0.3rem;color:#0a0a0a;row-gap:0.3rem;column-gap:0.3rem;}
#node-text_3dee3335{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-bottom:0rem;grid-column:span 12 / span 12;grid-row:auto;width:auto;min-width:0;justify-self:stretch;}
#node-text_415174b4{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;padding-bottom:0rem;padding-top:0rem;margin-top:0rem;margin-bottom:0rem;grid-column:span 12 / span 12;grid-row:auto;}
#node-text_75b69449{font-family:Outfit;font-size:2.2rem;line-height:1.12;color:#ff3131;max-width:16ch;font-weight:700;text-transform:none;letter-spacing:-0.03em;padding-top:0rem;margin-top:0rem;margin-bottom:0rem;grid-column:span 12 / span 12;grid-row:auto;}
#node-text_5cdb3c1a{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:2.664rem;padding-bottom:0rem;margin-bottom:0rem;text-align:right;grid-column:span 12 / span 12;grid-row:auto;width:auto;min-width:0;justify-self:stretch;}
#node-text_63093879{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;margin-bottom:0rem;text-align:right;grid-column:span 12 / span 12;grid-row:auto;width:auto;min-width:0;justify-self:stretch;}
#node-text_53a2b603{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;padding-top:0rem;margin-top:0rem;margin-bottom:0rem;text-align:right;grid-column:span 12 / span 12;grid-row:auto;width:auto;min-width:0;justify-self:stretch;}
#node-section_ff5bc3e4{width:100%;min-height:220px;padding-top:0.468rem;padding-right:4vw;padding-bottom:2.88rem;padding-left:4vw;background:#f4dfd6;display:block;color:#1f1812;border-bottom:1px solid #ebe5dc;border-color:#dccfbe;gap:0.9rem;max-width:100%;}
#node-block_bec2767e{width:100%;min-height:140px;padding-top:17.28px;padding-right:17.28px;padding-bottom:17.28px;padding-left:17.28px;display:grid;grid-template-columns:1fr;gap:0.72rem;background:transparent;color:#0a0a0a;max-width:100%;}
#node-block_de7f4ad2{width:100%;min-height:100%;padding-top:17.28px;padding-right:17.28px;padding-bottom:17.28px;padding-left:17.28px;background:transparent;display:grid;gap:0.562rem;padding:0.864rem;border:4px solid #cc0000;border-radius:22px;box-shadow:0 12px 24px rgba(44, 31, 22, 0.05);border-width:4px;border-style:solid;row-gap:0rem;column-gap:0rem;color:#0a0a0a;max-width:100%;}
#node-text_11238b1b{font-family:Outfit;font-size:1.45rem;line-height:1.18;color:#0a0a0a;max-width:none;font-weight:700;text-transform:none;letter-spacing:-0.02em;text-align:left;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_137b58a1{font-family:Source Sans 3;font-size:0.95rem;line-height:1.78;color:#374151;max-width:none;grid-column:span 12 / span 12;width:auto;min-width:0;justify-self:stretch;text-align:left;font-weight:400;text-transform:none;letter-spacing:0;}
#node-block_db4b6437{width:100%;min-height:100%;padding-top:17.28px;padding-right:17.28px;padding-bottom:17.28px;padding-left:17.28px;background:transparent;display:grid;gap:0.562rem;padding:0.864rem;border:4px solid #cc0000;border-radius:22px;box-shadow:0 12px 24px rgba(44, 31, 22, 0.05);border-width:4px;border-style:solid;row-gap:0rem;column-gap:0rem;color:#0a0a0a;max-width:100%;}
#node-text_742b76ba{font-family:Outfit;font-size:1.45rem;line-height:1.18;color:#111827;max-width:none;font-weight:700;text-transform:none;letter-spacing:-0.02em;text-align:left;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_0e9e2565{font-family:Source Sans 3;font-size:0.95rem;line-height:1.78;color:#374151;max-width:none;grid-column:span 12 / span 12;width:auto;min-width:0;justify-self:stretch;text-align:left;font-weight:400;text-transform:none;letter-spacing:0;}
#node-block_7ae71967{width:100%;min-height:100%;padding-top:17.28px;padding-right:17.28px;padding-bottom:17.28px;padding-left:17.28px;background:transparent;display:grid;gap:0.562rem;padding:0.864rem;border:4px solid #cc0000;border-radius:22px;box-shadow:0 12px 24px rgba(44, 31, 22, 0.05);border-width:4px;border-style:solid;row-gap:0rem;column-gap:0rem;color:#0a0a0a;max-width:100%;}
#node-text_ebe8f9db{font-family:Outfit;font-size:1.45rem;line-height:1.18;color:#111827;max-width:none;font-weight:700;text-transform:none;letter-spacing:-0.02em;text-align:left;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_a67ad957{font-family:Source Sans 3;font-size:0.95rem;line-height:1.78;color:#374151;max-width:none;grid-column:span 12 / span 12;width:auto;min-width:0;justify-self:stretch;text-align:left;font-weight:400;text-transform:none;letter-spacing:0;}
#node-block_30387cbb{width:100%;min-height:100%;padding-top:17.28px;padding-right:17.28px;padding-bottom:17.28px;padding-left:17.28px;background:transparent;display:grid;gap:0.562rem;padding:0.864rem;border:4px solid #cc0000;border-radius:22px;box-shadow:0 12px 24px rgba(44, 31, 22, 0.05);border-width:4px;border-style:solid;row-gap:0rem;column-gap:0rem;color:#0a0a0a;max-width:100%;}
#node-text_691fa68a{font-family:Outfit;font-size:1.45rem;line-height:1.18;color:#0a0a0a;max-width:none;font-weight:700;text-transform:none;letter-spacing:-0.02em;text-align:left;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_319aa6f6{font-family:Source Sans 3;font-size:0.95rem;line-height:1.78;color:#374151;max-width:none;grid-column:span 12 / span 12;width:auto;min-width:0;justify-self:stretch;text-align:left;font-weight:400;text-transform:none;letter-spacing:0;}
#node-block_811637f1{width:100%;min-height:100%;padding-top:17.28px;padding-right:17.28px;padding-bottom:17.28px;padding-left:17.28px;background:transparent;display:grid;gap:0.562rem;padding:0.864rem;border:4px solid #cc0000;border-radius:22px;box-shadow:0 12px 24px rgba(44, 31, 22, 0.05);border-width:4px;border-style:solid;row-gap:0rem;column-gap:0rem;color:#0a0a0a;max-width:100%;}
#node-text_6953c80a{font-family:Outfit;font-size:1.45rem;line-height:1.18;color:#0a0a0a;max-width:none;font-weight:700;text-transform:none;letter-spacing:-0.02em;text-align:left;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_a7377519{font-family:Source Sans 3;font-size:0.95rem;line-height:1.78;color:#374151;max-width:none;grid-column:span 12 / span 12;width:auto;min-width:0;justify-self:stretch;text-align:left;font-weight:400;text-transform:none;letter-spacing:0;}
#node-block_ef8a0edb{width:100%;min-height:100%;padding-top:17.28px;padding-right:17.28px;padding-bottom:17.28px;padding-left:17.28px;background:transparent;display:grid;gap:0.562rem;padding:0.864rem;border:4px solid #cc0000;border-radius:22px;box-shadow:0 12px 24px rgba(44, 31, 22, 0.05);border-width:4px;border-style:solid;row-gap:0rem;column-gap:0rem;color:#0a0a0a;max-width:100%;}
#node-text_2cef1588{font-family:Outfit;font-size:1.45rem;line-height:1.18;color:#0a0a0a;max-width:none;font-weight:700;text-transform:none;letter-spacing:-0.02em;text-align:left;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_7217e270{font-family:Source Sans 3;font-size:0.95rem;line-height:1.78;color:#374151;max-width:none;grid-column:span 12 / span 12;width:auto;min-width:0;justify-self:stretch;text-align:left;font-weight:400;text-transform:none;letter-spacing:0;}
#node-block_a890723a{width:100%;min-height:100%;padding-top:17.28px;padding-right:17.28px;padding-bottom:17.28px;padding-left:17.28px;background:transparent;display:grid;gap:0.562rem;padding:0.864rem;border:4px solid #cc0000;border-radius:22px;box-shadow:0 12px 24px rgba(44, 31, 22, 0.05);border-width:4px;border-style:solid;row-gap:0rem;column-gap:0rem;color:#0a0a0a;max-width:100%;}
#node-text_e6a99488{font-family:Outfit;font-size:1.45rem;line-height:1.18;color:#0a0a0a;max-width:none;font-weight:700;text-transform:none;letter-spacing:-0.02em;text-align:left;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_a06cfacc{font-family:Source Sans 3;font-size:0.95rem;line-height:1.78;color:#374151;max-width:none;grid-column:span 12 / span 12;width:auto;min-width:0;justify-self:stretch;text-align:left;font-weight:400;text-transform:none;letter-spacing:0;}
#node-section_c64ee921{width:100%;padding-top:4rem;padding-right:4vw;padding-bottom:4rem;padding-left:4vw;background:#ffffff;display:grid;color:#0a0a0a;border-bottom:1px solid #ebe5dc;border-color:#dccfbe;grid-template-columns:repeat(12, minmax(0, 1fr));gap:1rem;grid-column:span 5 / span 5;grid-row:auto;max-width:100%;}
#node-block_1fcb8ae7{width:auto;padding-top:17.28px;padding-right:17.28px;padding-bottom:17.28px;padding-left:17.28px;background:#ffffff;display:grid;gap:0.684rem;max-width:none;justify-self:stretch;grid-column:span 12 / span 12;min-width:0;color:#0a0a0a;border-color:#dccfbe;}
#node-text_39e998fd{font-family:Outfit;font-size:2.2rem;line-height:1.12;color:#111827;max-width:none;font-weight:700;grid-column:span 12 / span 12;width:auto;min-width:0;justify-self:stretch;text-align:center;padding-bottom:0px;margin-bottom:0px;text-transform:none;letter-spacing:-0.03em;}
#node-text_6b558fc5{font-family:Source Sans 3;font-size:0.95rem;line-height:1.78;color:#374151;max-width:none;grid-column:span 12 / span 12;width:auto;min-width:0;justify-self:stretch;text-align:center;font-weight:400;text-transform:none;letter-spacing:0;}
#node-block_5621be7b{width:auto;padding-top:24px;padding-right:24px;padding-bottom:24px;padding-left:24px;background:#f4dfd6;display:grid;border:1px solid #dce5f3;border-radius:0px;overflow:hidden;box-shadow:0 18px 40px rgba(31, 58, 109, 0.08);grid-column:span 12 / span 12;max-width:none;min-width:0;justify-self:stretch;grid-row:auto;color:#1f1812;border-color:#dccfbe;grid-template-columns:repeat(12, minmax(0, 1fr));gap:1rem;row-gap:0rem;column-gap:0rem;}
#node-block_ceb26cad{width:auto;padding-top:24px;padding-right:24px;padding-bottom:24px;padding-left:24px;background:#ffffff;display:grid;align-content:center;justify-items:center;gap:1rem;padding:1.6rem;min-height:16rem;position:relative;color:#0a0a0a;border-color:#dccfbe;background-image:url(https://prime-el-rebuild.ewr1.vultrobjects.com/projects/aloraweb/484f3d96-4bb4-435c-b84f-4ff09851d0d8-lady-workc.png);background-size:cover;background-position:center center;background-repeat:no-repeat;grid-column:span 12 / span 12;grid-row:auto;max-width:none;min-width:0;justify-self:stretch;border-right-width:2px;border-right:2px solid #d7dce4;border-right-style:solid;}
#node-block_98ce49a6{width:4.7rem;padding-top:17.28px;padding-right:17.28px;padding-bottom:17.28px;padding-left:17.28px;background:#ffffff;position:absolute;right:1rem;bottom:1rem;height:4.7rem;border-radius:999px;border:1px solid #cfe0ff;display:flex;align-items:center;justify-content:center;box-shadow:0 12px 28px rgba(49, 104, 196, 0.14);color:#0a0a0a;border-color:#dccfbe;flex-wrap:wrap;max-width:100%;}
#node-text_47b92007{font-family:Source Sans 3;font-size:1rem;line-height:1.72;color:#374151;max-width:16ch;font-weight:400;text-transform:none;letter-spacing:0;}
#node-block_e7add273{width:auto;padding-top:24px;padding-right:24px;padding-bottom:24px;padding-left:7px;background:#ffffff;display:grid;padding:1.6rem;color:#0a0a0a;border-color:#dccfbe;grid-template-columns:repeat(12, minmax(0, 1fr));gap:1rem;grid-column:span 12 / span 12;max-width:none;min-width:0;justify-self:stretch;}
#node-text_1f7361a7{font-family:Inter;font-size:0.691rem;line-height:1.1;color:#0a0a0a;max-width:none;font-weight:800;margin-bottom:0rem;grid-column:span 11 / span 11;width:auto;min-width:0;justify-self:stretch;}
#node-text_38b4932c{font-family:Outfit;font-size:1.45rem;line-height:1.18;color:#111827;max-width:none;font-weight:700;text-transform:none;letter-spacing:-0.02em;margin-top:0rem;margin-bottom:0rem;grid-column:span 12 / span 12;width:auto;min-width:0;justify-self:stretch;}
#node-block_c43bd018{width:auto;padding-top:0px;padding-right:24px;padding-bottom:0px;padding-left:0px;background:#ffffff;display:block;color:#0a0a0a;border-color:#dccfbe;grid-column:span 12 / span 12;grid-row:auto;margin-top:0%;max-width:none;min-width:0;justify-self:stretch;}
#node-block_588525fe{width:100%;padding-top:0px;padding-right:0px;padding-bottom:0px;padding-left:0px;background:transparent;display:grid;align-items:center;color:#0a0a0a;grid-template-columns:repeat(12, minmax(0, 1fr));gap:1rem;max-width:100%;}
#node-icon_50c4b814{width:auto;height:37px;color:#949494;justify-self:stretch;align-self:start;grid-column:span 2 / span 2;grid-row:auto;max-width:none;min-width:0;padding-top:0px;margin-top:0px;}
#node-text_c3d7ab2c{font-family:Outfit;font-size:1.08rem;line-height:1.26;color:#111827;max-width:none;font-weight:600;text-transform:none;letter-spacing:-0.01em;grid-column:span 10 / span 10;width:auto;min-width:0;justify-self:stretch;margin-top:0rem;padding-top:0rem;margin-bottom:0rem;}
#node-block_741f871e{width:auto;padding-top:0px;padding-right:24px;padding-bottom:0px;padding-left:0px;background:#ffffff;display:block;color:#0a0a0a;border-color:#dccfbe;grid-column:span 12 / span 12;grid-row:auto;margin-top:0%;max-width:none;min-width:0;justify-self:stretch;}
#node-block_39aa8bd3{width:100%;padding-top:0px;padding-right:0px;padding-bottom:0px;padding-left:0px;background:transparent;display:grid;align-items:center;color:#0a0a0a;grid-template-columns:repeat(12, minmax(0, 1fr));gap:1rem;max-width:100%;}
#node-icon_90035623{width:auto;height:37px;color:#949494;justify-self:stretch;align-self:start;grid-column:span 2 / span 2;grid-row:auto;max-width:none;min-width:0;padding-top:0px;margin-top:0px;}
#node-text_a7356338{font-family:Outfit;font-size:1.08rem;line-height:1.26;color:#111827;max-width:none;font-weight:600;text-transform:none;letter-spacing:-0.01em;grid-column:span 10 / span 10;width:auto;min-width:0;justify-self:stretch;margin-top:0rem;padding-top:0rem;margin-bottom:0rem;}
#node-block_26d043c1{width:auto;padding-top:0px;padding-right:24px;padding-bottom:0px;padding-left:0px;background:#ffffff;display:block;color:#0a0a0a;border-color:#dccfbe;grid-column:span 12 / span 12;grid-row:auto;margin-top:0%;max-width:none;min-width:0;justify-self:stretch;}
#node-block_12cd155c{width:100%;padding-top:0px;padding-right:0px;padding-bottom:0px;padding-left:0px;background:transparent;display:grid;align-items:center;color:#0a0a0a;grid-template-columns:repeat(12, minmax(0, 1fr));gap:1rem;max-width:100%;}
#node-icon_97cce732{width:auto;height:37px;color:#949494;justify-self:stretch;align-self:start;grid-column:span 2 / span 2;grid-row:auto;max-width:none;min-width:0;padding-top:0px;margin-top:0px;}
#node-text_2a4b95e1{font-family:Outfit;font-size:1.08rem;line-height:1.26;color:#111827;max-width:none;font-weight:600;text-transform:none;letter-spacing:-0.01em;grid-column:span 10 / span 10;width:auto;min-width:0;justify-self:stretch;margin-top:0rem;padding-top:0rem;margin-bottom:0rem;}
#node-block_1f51654f{width:auto;padding-top:0px;padding-right:17.28px;padding-bottom:0px;padding-left:0px;background:#ffffff;display:block;color:#0a0a0a;border-color:#dccfbe;grid-column:span 11 / span 11;grid-row:auto;margin-top:0%;max-width:none;min-width:0;justify-self:stretch;}
#node-block_1ff8b9df{width:100%;padding-top:0px;padding-right:0px;padding-bottom:0px;padding-left:0px;background:transparent;display:grid;align-items:center;color:#0a0a0a;grid-template-columns:repeat(12, minmax(0, 1fr));gap:0.72rem;max-width:100%;}
#node-text_d773e5bb{font-family:Outfit;font-size:1.08rem;line-height:1.26;color:#111827;max-width:none;font-weight:600;text-transform:none;letter-spacing:-0.01em;grid-column:span 10 / span 10;width:auto;min-width:0;justify-self:stretch;margin-top:0rem;padding-top:0rem;margin-bottom:0rem;}
#node-text_b32d5796{font-family:Outfit;font-size:2.2rem;line-height:1.12;color:#111827;max-width:none;font-weight:700;text-align:center;justify-self:stretch;grid-column:span 12 / span 12;width:auto;min-width:0;text-transform:none;letter-spacing:-0.03em;}
#node-block_21933d32{width:auto;padding-top:24px;padding-right:24px;padding-bottom:24px;padding-left:24px;background:#ffffff;display:grid;grid-column:span 12 / span 12;max-width:none;min-width:0;justify-self:stretch;color:#0a0a0a;border-color:#dccfbe;grid-template-columns:repeat(12, minmax(0, 1fr));gap:1rem;}
#node-block_37609dd8{width:auto;padding-top:24px;padding-right:24px;padding-bottom:24px;padding-left:24px;background:#ffffff;display:grid;text-align:center;padding:1.35rem 1rem;border:1px solid #dce5f3;border-radius:22px;box-shadow:0 12px 28px rgba(31, 58, 109, 0.06);grid-column:span 12 / span 12;grid-row:auto;color:#0a0a0a;border-color:#dccfbe;max-width:none;min-width:0;justify-self:stretch;grid-template-columns:repeat(12, minmax(0, 1fr));gap:1rem;}
#node-block_7b4296ce{width:auto;padding-top:3.6px;padding-right:17.28px;padding-bottom:17.28px;padding-left:17.28px;background:#ffffff;height:4.3rem;border-radius:999px;display:flex;align-items:center;justify-content:center;grid-column:span 12 / span 12;grid-row:auto;color:#0a0a0a;border-color:#dccfbe;max-width:none;min-width:0;justify-self:stretch;flex-wrap:wrap;}
#node-icon_0a01931b{width:2.85rem;height:2.85rem;color:#0a0a0a;justify-self:start;align-self:start;max-width:100%;}
#node-text_bc77171b{font-family:Outfit;font-size:1.45rem;line-height:1.18;color:#111827;max-width:none;font-weight:700;grid-column:span 12 / span 12;width:auto;min-width:0;justify-self:stretch;text-transform:none;letter-spacing:-0.02em;}
#node-block_d104a777{width:auto;padding-top:0px;padding-right:0px;padding-bottom:0px;padding-left:17.28px;background:#14b8a6;height:1px;opacity:0.35;border-width:2px;border:2px solid #dccfbe;border-style:solid;grid-column:span 12 / span 12;max-width:none;min-width:0;justify-self:stretch;}
#node-text_3e49ee4d{font-family:Inter;font-size:0.662rem;line-height:1.1;color:#14b8a6;max-width:none;font-weight:700;padding-right:0rem;grid-column:span 12 / span 12;width:auto;min-width:0;justify-self:stretch;}
#node-text_4c147afb{font-family:Outfit;font-size:1.08rem;line-height:1.26;color:#ff3131;max-width:none;font-weight:600;padding-right:0rem;grid-column:span 12 / span 12;width:auto;min-width:0;justify-self:stretch;margin-top:0rem;text-transform:none;letter-spacing:-0.01em;}
#node-block_1b039e6c{width:auto;padding-top:24px;padding-right:24px;padding-bottom:24px;padding-left:24px;background:#000000;display:grid;text-align:center;padding:1.35rem 1rem;border:1px solid #dce5f3;border-radius:22px;box-shadow:0 12px 28px rgba(31, 58, 109, 0.06);color:#ffffff;border-color:#dccfbe;grid-column:span 12 / span 12;max-width:none;min-width:0;justify-self:stretch;grid-template-columns:repeat(12, minmax(0, 1fr));gap:1rem;grid-row:auto;}
#node-block_1b82ca94{width:auto;padding-top:8.64px;padding-right:17.28px;padding-bottom:17.28px;padding-left:17.28px;background:transparent;height:4.3rem;border-radius:999px;display:flex;align-items:center;justify-content:center;grid-column:span 12 / span 12;max-width:none;min-width:0;justify-self:stretch;color:#0a0a0a;flex-wrap:wrap;}
#node-icon_576a0b72{width:2.85rem;height:2.85rem;color:#ff3131;justify-self:start;align-self:start;grid-column:span 2 / span 2;grid-row:auto;max-width:100%;}
#node-text_56705c4d{font-family:Outfit;font-size:1.45rem;line-height:1.18;color:#ffffff;max-width:none;font-weight:700;grid-column:span 12 / span 12;width:auto;min-width:0;justify-self:stretch;grid-row:auto;text-transform:none;letter-spacing:-0.02em;}
#node-block_337617fa{width:auto;padding-top:0px;padding-right:17.28px;padding-bottom:0px;padding-left:17.28px;background:#a855f7;height:0px;opacity:0.35;border-width:2px;border:2px solid #dccfbe;border-style:solid;display:block;margin-top:0px;grid-column:span 12 / span 12;grid-row:auto;max-width:none;min-width:0;justify-self:stretch;}
#node-text_d00e0dcd{font-family:Inter;font-size:0.662rem;line-height:1.1;color:#949494;max-width:16ch;font-weight:700;grid-column:4 / span 6;grid-row:auto;}
#node-text_807f8363{font-family:Outfit;font-size:1.08rem;line-height:1.26;color:#949494;max-width:none;font-weight:600;margin-top:0rem;grid-column:span 12 / span 12;grid-row:auto;width:auto;min-width:0;justify-self:stretch;text-transform:none;letter-spacing:-0.01em;}
#node-block_4c7d790c{width:auto;padding-top:24px;padding-right:24px;padding-bottom:24px;padding-left:24px;background:#ffffff;display:grid;text-align:center;padding:1.35rem 1rem;border:1px solid #dce5f3;border-radius:22px;box-shadow:0 12px 28px rgba(31, 58, 109, 0.06);grid-column:span 12 / span 12;grid-row:auto;color:#0a0a0a;border-color:#dccfbe;max-width:none;min-width:0;justify-self:stretch;grid-template-columns:repeat(12, minmax(0, 1fr));gap:1rem;}
#node-block_3e5314c1{width:auto;padding-top:9.36px;padding-right:17.28px;padding-bottom:17.28px;padding-left:17.28px;background:#ffffff;height:4.3rem;border-radius:999px;display:flex;align-items:center;justify-content:center;grid-column:span 12 / span 12;grid-row:auto;color:#0a0a0a;border-color:#dccfbe;max-width:none;min-width:0;justify-self:stretch;flex-wrap:wrap;}
#node-icon_10848535{width:2.85rem;height:2.85rem;color:#0a0a0a;justify-self:start;align-self:start;grid-column:span 2 / span 2;grid-row:auto;margin-top:0rem;max-width:100%;}
#node-text_4e4cd4fd{font-family:Outfit;font-size:1.45rem;line-height:1.18;color:#111827;max-width:none;font-weight:700;grid-column:span 12 / span 12;width:auto;min-width:0;justify-self:stretch;text-transform:none;letter-spacing:-0.02em;}
#node-block_95a98ff2{width:auto;padding-top:0px;padding-right:17.28px;padding-bottom:0px;padding-left:17.28px;background:#ffffff;height:0px;opacity:0.35;border-width:2px;border:2px solid #dccfbe;border-style:solid;grid-column:span 12 / span 12;max-width:none;min-width:0;justify-self:stretch;color:#0a0a0a;border-color:#dccfbe;}
#node-text_71966551{font-family:Inter;font-size:0.662rem;line-height:1.1;color:#949494;max-width:none;font-weight:700;grid-column:span 12 / span 12;width:auto;min-width:0;justify-self:stretch;}
#node-text_a2b04b13{font-family:Outfit;font-size:1.08rem;line-height:1.26;color:#111827;max-width:none;font-weight:600;grid-column:span 12 / span 12;width:auto;min-width:0;justify-self:stretch;margin-top:0rem;text-transform:none;letter-spacing:-0.01em;}
#node-block_9d53ef4e{width:auto;padding-top:24px;padding-right:24px;padding-bottom:24px;padding-left:24px;background:#f4dfd6;display:grid;align-items:center;justify-self:stretch;max-width:none;padding:1rem 1.2rem;border:1px solid #dce5f3;border-radius:18px;grid-column:span 12 / span 12;min-width:0;grid-row:auto;grid-template-columns:repeat(12, minmax(0, 1fr));gap:1rem;color:#1f1812;border-color:#dccfbe;}
#node-icon_ec068c0f{width:auto;height:2.05rem;color:#0a0a0a;justify-self:stretch;align-self:start;grid-column:auto;max-width:none;min-width:0;}
#node-text_7fea7c47{font-family:Outfit;font-size:1.08rem;line-height:1.26;color:#0a0a0a;max-width:none;font-weight:600;text-transform:none;letter-spacing:-0.01em;grid-column:span 10 / span 10;width:auto;min-width:0;justify-self:stretch;margin-top:0rem;margin-bottom:0rem;}
#node-block_b6b9a778{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_d06ec2f5{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_337a82da{width:100%;min-height:220px;padding-top:2.88rem;padding-right:4vw;padding-bottom:0rem;padding-left:4vw;background:#ffffff;display:grid;gap:0.9rem;color:#0a0a0a;border-bottom:1px solid #ebe5dc;grid-column:4 / span 9;grid-row:auto;max-width:100%;border-color:#dccfbe;}
#node-block_aaca42b4{width:auto;min-height:140px;padding-top:17.28px;padding-right:17.28px;padding-bottom:17.28px;padding-left:17.28px;background:#ffffff;display:grid;gap:0.684rem;max-width:none;justify-self:stretch;grid-column:span 12 / span 12;min-width:0;color:#0a0a0a;border-color:#dccfbe;}
#node-text_e3c90ffd{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;padding-right:1.368rem;grid-column:span 12 / span 12;width:auto;min-width:0;justify-self:stretch;text-align:left;margin-bottom:0rem;}
#node-text_1a537d50{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-right:1.368rem;grid-column:span 12 / span 12;width:auto;min-width:0;justify-self:stretch;text-align:right;margin-top:0rem;margin-bottom:0rem;}
#node-text_39810f24{font-family:Outfit;font-size:2.2rem;line-height:1.12;color:#0a0a0a;max-width:none;font-weight:700;text-transform:none;letter-spacing:-0.03em;padding-right:1.368rem;grid-column:span 12 / span 12;width:auto;min-width:0;justify-self:stretch;text-align:right;margin-top:0rem;margin-bottom:0rem;}
#node-text_75234895{font-family:Outfit;font-size:2.2rem;line-height:1.12;color:#0a0a0a;max-width:none;font-weight:700;text-transform:none;letter-spacing:-0.03em;padding-right:1.368rem;grid-column:span 12 / span 12;width:auto;min-width:0;justify-self:stretch;text-align:right;margin-top:0rem;margin-bottom:0rem;}
#node-text_e575767e{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;padding-right:1.368rem;grid-column:4 / span 9;width:auto;min-width:0;justify-self:stretch;text-align:right;margin-top:0rem;margin-bottom:0rem;grid-row:auto;}
#node-text_f8406c65{font-family:Source Sans 3;font-size:0.95rem;line-height:1.78;color:#374151;max-width:none;grid-column:4 / span 6;width:auto;min-width:0;justify-self:stretch;text-align:center;grid-row:auto;margin-top:2.448rem;padding-top:0rem;font-weight:400;text-transform:none;letter-spacing:0;}
#node-section_4b9dd335{width:100%;padding-top:4rem;padding-right:4vw;padding-bottom:4rem;padding-left:4vw;background:#000000;display:grid;color:#ffffff;border-bottom:1px solid #ebe5dc;min-height:78vh;align-items:center;border-color:#dccfbe;grid-template-columns:repeat(12, minmax(0, 1fr));gap:1rem;max-width:100%;}
#node-block_06faa9f5{width:auto;padding-top:17.28px;padding-right:17.28px;padding-bottom:17.28px;padding-left:17.28px;background:transparent;display:grid;max-width:none;justify-self:stretch;color:#0a0a0a;grid-template-columns:repeat(12, minmax(0, 1fr));gap:0.72rem;grid-column:span 12 / span 12;min-width:0;}
#node-text_286a966d{font-family:Inter;font-size:0.547rem;line-height:1.1;color:#949494;max-width:none;letter-spacing:0.18em;text-transform:uppercase;font-weight:700;grid-column:span 12 / span 12;width:auto;min-width:0;justify-self:stretch;}
#node-text_c2236845{font-family:Outfit;font-size:2.2rem;line-height:1.12;color:#ffffff;max-width:none;font-weight:700;grid-column:span 12 / span 12;width:auto;min-width:0;justify-self:stretch;padding-bottom:0px;margin-bottom:0px;margin-top:0px;text-transform:none;letter-spacing:-0.03em;}
#node-text_f0a5937a{font-family:Outfit;font-size:2.2rem;line-height:1.12;color:#ff3131;max-width:none;font-weight:700;grid-column:span 12 / span 12;width:auto;min-width:0;justify-self:stretch;padding-top:0px;margin-top:0px;margin-bottom:0px;text-transform:none;letter-spacing:-0.03em;}
#node-text_ebef552c{font-family:Outfit;font-size:2.2rem;line-height:1.12;color:#ffffff;max-width:none;grid-column:span 12 / span 12;width:auto;min-width:0;justify-self:stretch;font-weight:700;text-transform:none;letter-spacing:-0.03em;margin-top:0rem;padding-bottom:0rem;margin-bottom:0rem;}
#node-text_6fadbe33{font-family:Source Sans 3;font-size:0.95rem;line-height:1.78;color:#949494;max-width:none;grid-column:span 9 / span 9;width:auto;min-width:0;justify-self:stretch;margin-top:0rem;font-weight:400;text-transform:none;letter-spacing:0;}
#node-block_7fc71f55{width:auto;padding-top:24px;padding-right:24px;padding-bottom:24px;padding-left:24px;background:#000000;position:relative;display:grid;align-items:end;justify-items:center;border-radius:28px;padding:1.1rem;border:none;box-shadow:none;justify-self:stretch;align-self:stretch;min-height:33rem;overflow:hidden;color:#ffffff;align-content:center;border-width:0px;border-style:none;grid-column:span 12 / span 12;max-width:none;min-width:0;height:auto;border-color:#dccfbe;}
#node-image_28cf1b98{width:100%;object-fit:cover;position:relative;max-width:100%;height:auto;}
#node-block_80344abf{width:auto;padding-top:0.432rem;padding-right:17.28px;padding-bottom:17.28px;padding-left:17.28px;background:transparent;grid-column:span 12 / span 12;display:grid;grid-template-columns:repeat(3, minmax(0, 1fr));gap:0.72rem;color:#0a0a0a;max-width:none;min-width:0;justify-self:stretch;}
#node-block_1defd29b{width:100%;padding-top:17.28px;padding-right:17.28px;padding-bottom:17.28px;padding-left:17.28px;background:#ffffff;position:relative;display:grid;gap:0.576rem;justify-items:center;text-align:center;padding:1.35rem 1rem 1.2rem;border:1px solid #e3ebf8;border-top:5px solid #14b8a6;border-radius:24px;box-shadow:0 16px 34px rgba(31, 58, 109, 0.06);overflow:hidden;max-width:100%;}
#node-block_8391ba71{width:auto;padding-top:17.28px;padding-right:17.28px;padding-bottom:17.28px;padding-left:17.28px;background:#f4dfd6;position:absolute;top:0;right:0;padding:0.55rem 0.85rem;color:#1f1812;border-bottom-left-radius:18px;font-size:0.706rem;font-weight:800;grid-column:span 2 / span 2;max-width:none;min-width:0;justify-self:stretch;border-color:#dccfbe;}
#node-text_98f02af2{font-family:Inter;font-size:0.706rem;line-height:1.1;color:#ffffff;max-width:16ch;font-weight:800;}
#node-block_d6a72183{width:5.3rem;padding-top:17.28px;padding-right:17.28px;padding-bottom:17.28px;padding-left:17.28px;background:#effcf8;height:5.3rem;border-radius:999px;display:flex;align-items:center;justify-content:center;flex-wrap:wrap;max-width:100%;}
#node-icon_b6f08092{width:2rem;height:2rem;color:#14b8a6;justify-self:start;align-self:start;max-width:100%;}
#node-text_dc4a701b{font-family:Outfit;font-size:1.45rem;line-height:1.18;color:#111827;max-width:12ch;font-weight:700;text-transform:none;letter-spacing:-0.02em;}
#node-block_1e43570b{width:3rem;padding-top:17.28px;padding-right:17.28px;padding-bottom:17.28px;padding-left:17.28px;background:#f4dfd6;height:3px;border-radius:999px;opacity:0.8;color:#1f1812;border-color:#dccfbe;max-width:100%;}
#node-text_d1c9e2e8{font-family:Source Sans 3;font-size:0.95rem;line-height:1.78;color:#374151;max-width:18ch;font-weight:400;text-transform:none;letter-spacing:0;}
#node-text_2dcbb07b{font-family:Source Sans 3;font-size:1rem;line-height:1.72;color:#374151;max-width:16ch;font-weight:400;text-transform:none;letter-spacing:0;}
#node-block_0fe345d3{width:100%;padding-top:17.28px;padding-right:17.28px;padding-bottom:17.28px;padding-left:17.28px;background:#ffffff;position:relative;display:grid;gap:0.576rem;justify-items:center;text-align:center;padding:1.35rem 1rem 1.2rem;border:1px solid #e3ebf8;border-top:5px solid #8b5cf6;border-radius:24px;box-shadow:0 16px 34px rgba(31, 58, 109, 0.06);overflow:hidden;max-width:100%;}
#node-block_f2464310{width:auto;padding-top:17.28px;padding-right:17.28px;padding-bottom:17.28px;padding-left:17.28px;background:#f4dfd6;position:absolute;top:0;right:0;padding:0.55rem 0.85rem;color:#1f1812;border-bottom-left-radius:18px;font-size:0.706rem;font-weight:800;grid-column:span 2 / span 2;max-width:none;min-width:0;justify-self:stretch;border-color:#dccfbe;}
#node-text_0a7e7418{font-family:Inter;font-size:0.706rem;line-height:1.1;color:#0a0a0a;max-width:16ch;font-weight:800;}
#node-block_58778472{width:5.3rem;padding-top:17.28px;padding-right:17.28px;padding-bottom:17.28px;padding-left:17.28px;background:#f6f0ff;height:5.3rem;border-radius:999px;display:flex;align-items:center;justify-content:center;flex-wrap:wrap;max-width:100%;}
#node-icon_f193ee89{width:2rem;height:2rem;color:#8b5cf6;justify-self:start;align-self:start;max-width:100%;}
#node-text_086c66aa{font-family:Outfit;font-size:1.45rem;line-height:1.18;color:#0a0a0a;max-width:12ch;font-weight:700;text-transform:none;letter-spacing:-0.02em;}
#node-block_aca510ff{width:3rem;padding-top:17.28px;padding-right:17.28px;padding-bottom:17.28px;padding-left:17.28px;background:#f4dfd6;height:3px;border-radius:999px;opacity:0.8;color:#1f1812;border-color:#dccfbe;max-width:100%;}
#node-text_3835809b{font-family:Source Sans 3;font-size:0.95rem;line-height:1.78;color:#374151;max-width:18ch;font-weight:400;text-transform:none;letter-spacing:0;}
#node-text_53ca5231{font-family:Source Sans 3;font-size:1rem;line-height:1.72;color:#374151;max-width:16ch;font-weight:400;text-transform:none;letter-spacing:0;}
#node-block_52797bfa{width:100%;padding-top:17.28px;padding-right:17.28px;padding-bottom:17.28px;padding-left:17.28px;background:#ffffff;position:relative;display:grid;gap:0.576rem;justify-items:center;text-align:center;padding:1.35rem 1rem 1.2rem;border:1px solid #e3ebf8;border-top:5px solid #f97316;border-radius:24px;box-shadow:0 16px 34px rgba(31, 58, 109, 0.06);overflow:hidden;max-width:100%;}
#node-block_9fd57fe2{width:auto;padding-top:17.28px;padding-right:17.28px;padding-bottom:17.28px;padding-left:17.28px;background:#ff3131;position:absolute;top:0;right:0;padding:0.55rem 0.85rem;color:#0a0a0a;border-bottom-left-radius:18px;font-size:0.706rem;font-weight:800;grid-column:span 2 / span 2;max-width:none;min-width:0;justify-self:stretch;border-color:#dccfbe;}
#node-text_25f6b06a{font-family:Inter;font-size:0.706rem;line-height:1.1;color:#ffffff;max-width:16ch;font-weight:800;}
#node-block_9f2ee65a{width:5.3rem;padding-top:17.28px;padding-right:17.28px;padding-bottom:17.28px;padding-left:17.28px;background:#fff3e8;height:5.3rem;border-radius:999px;display:flex;align-items:center;justify-content:center;flex-wrap:wrap;max-width:100%;}
#node-icon_fac62b5a{width:2rem;height:2rem;color:#f97316;justify-self:start;align-self:start;max-width:100%;}
#node-text_2691a9fd{font-family:Outfit;font-size:1.45rem;line-height:1.18;color:#111827;max-width:12ch;font-weight:700;text-transform:none;letter-spacing:-0.02em;}
#node-block_72d0b52e{width:3rem;padding-top:17.28px;padding-right:17.28px;padding-bottom:17.28px;padding-left:17.28px;background:#ff3131;height:3px;border-radius:999px;opacity:0.8;color:#0a0a0a;border-color:#dccfbe;max-width:100%;}
#node-text_8570d044{font-family:Source Sans 3;font-size:0.95rem;line-height:1.78;color:#374151;max-width:18ch;font-weight:400;text-transform:none;letter-spacing:0;}
#node-text_8f3c3533{font-family:Source Sans 3;font-size:1rem;line-height:1.72;color:#374151;max-width:16ch;font-weight:400;text-transform:none;letter-spacing:0;}
#node-block_cb0b6764{width:auto;padding-top:24px;padding-right:24px;padding-bottom:24px;padding-left:24px;background:transparent;grid-column:span 12 / span 12;display:grid;justify-items:center;gap:1rem;color:#0a0a0a;max-width:none;min-width:0;justify-self:stretch;grid-template-columns:repeat(12, minmax(0, 1fr));}
#node-block_c0393fd5{width:auto;padding-top:0px;padding-right:0px;padding-bottom:0px;padding-left:0px;background:transparent;display:grid;flex-wrap:wrap;justify-content:center;color:#0a0a0a;grid-template-columns:repeat(12, minmax(0, 1fr));gap:1rem;grid-column:span 12 / span 12;max-width:none;min-width:0;justify-self:stretch;}
#node-block_84a34f8b{width:auto;padding-top:24px;padding-right:24px;padding-bottom:24px;padding-left:24px;background:transparent;display:flex;align-items:center;grid-column:span 12 / span 12;max-width:none;min-width:0;justify-self:stretch;color:#0a0a0a;flex-direction:row;flex-wrap:wrap;gap:16px;justify-content:center;align-content:flex-start;}
#node-icon_96c432c3{width:2rem;height:2rem;color:#949494;justify-self:start;align-self:start;margin-left:0rem;padding-left:0rem;max-width:100%;}
#node-text_92abf93b{font-family:Source Sans 3;font-size:1rem;line-height:1.72;color:#949494;max-width:16ch;font-weight:400;text-transform:none;letter-spacing:0;margin-top:0rem;display:block;width:100%;text-align:center;}
#node-block_4c34087d{width:auto;padding-top:24px;padding-right:24px;padding-bottom:24px;padding-left:24px;background:transparent;display:flex;align-items:center;grid-column:span 12 / span 12;max-width:none;min-width:0;justify-self:stretch;color:#0a0a0a;flex-direction:row;flex-wrap:wrap;gap:16px;justify-content:center;}
#node-icon_df91607b{width:2rem;height:2rem;color:#949494;justify-self:start;align-self:start;max-width:100%;}
#node-text_d12f328b{font-family:Source Sans 3;font-size:1rem;line-height:1.72;color:#949494;max-width:16ch;font-weight:400;text-transform:none;letter-spacing:0;margin-top:0rem;display:block;width:100%;text-align:center;}
#node-block_7711c9ca{width:auto;padding-top:24px;padding-right:24px;padding-bottom:24px;padding-left:24px;background:transparent;display:flex;align-items:center;grid-column:span 12 / span 12;max-width:none;min-width:0;justify-self:stretch;color:#0a0a0a;flex-direction:row;flex-wrap:wrap;gap:16px;justify-content:center;}
#node-icon_d8ed45e0{width:2rem;height:2rem;color:#949494;justify-self:start;align-self:start;max-width:100%;}
#node-text_dd888394{font-family:Source Sans 3;font-size:1rem;line-height:1.72;color:#949494;max-width:16ch;font-weight:400;text-transform:none;letter-spacing:0;margin-top:0rem;display:block;width:100%;text-align:center;}
#node-block_2f2c52e1{width:auto;padding-top:24px;padding-right:24px;padding-bottom:24px;padding-left:24px;background:transparent;display:flex;align-items:center;grid-column:span 12 / span 12;max-width:none;min-width:0;justify-self:stretch;color:#0a0a0a;flex-direction:row;flex-wrap:wrap;gap:16px;justify-content:center;}
#node-icon_75e8a4eb{width:2rem;height:2rem;color:#949494;justify-self:start;align-self:start;max-width:100%;}
#node-text_0afa3b15{font-family:Source Sans 3;font-size:1rem;line-height:1.72;color:#949494;max-width:16ch;font-weight:400;text-transform:none;letter-spacing:0;margin-top:0rem;display:block;width:100%;text-align:center;}
#node-block_07cd1191{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_7ff94497{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_5c0f7754{width:100%;min-height:220px;padding-top:2.88rem;padding-right:4vw;padding-bottom:0rem;padding-left:4vw;display:grid;gap:0.9rem;color:#0a0a0a;border-bottom:1px solid #ebe5dc;grid-column:span 6 / span 6;grid-row:auto;background-size:cover;background-position:center center;background-repeat:no-repeat;max-width:100%;}
#node-block_e87ef8ee{width:auto;min-height:140px;padding-top:17.28px;padding-right:13.68px;padding-bottom:146.88px;padding-left:17.28px;background:transparent;display:grid;max-width:none;justify-self:stretch;grid-column:span 12 / span 12;min-width:0;grid-template-columns:repeat(12, minmax(0, 1fr));gap:0.72rem;color:#0a0a0a;}
#node-text_ce94c371{font-family:Outfit;font-size:2.2rem;line-height:1.12;color:#ffffff;max-width:none;font-weight:700;text-transform:none;letter-spacing:-0.03em;padding-right:1.368rem;grid-column:span 8 / span 8;width:auto;min-width:0;justify-self:stretch;text-align:left;margin-bottom:0rem;}
#node-text_a74a6255{font-family:Source Sans 3;font-size:0.95rem;line-height:1.78;color:#949494;max-width:none;grid-column:span 6 / span 6;width:auto;min-width:0;justify-self:stretch;text-align:left;grid-row:auto;margin-top:0rem;font-weight:400;text-transform:none;letter-spacing:0;}
#node-section_b8d8bb64{width:100%;min-height:220px;padding-top:2.88rem;padding-right:4vw;padding-bottom:0rem;padding-left:4vw;background:#ffffff;display:grid;gap:0.9rem;color:#151515;border-bottom:1px solid #ebe5dc;max-width:100%;}
#node-block_b8c91eec{width:auto;min-height:140px;padding-top:17.28px;padding-right:17.28px;padding-bottom:17.28px;padding-left:17.28px;background:#ffffff;display:grid;gap:0.684rem;max-width:none;justify-self:stretch;grid-column:span 12 / span 12;min-width:0;color:#0a0a0a;border-color:#dccfbe;}
#node-text_fa7e6f3d{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;padding-right:1.368rem;grid-column:span 12 / span 12;width:auto;min-width:0;justify-self:stretch;text-align:center;margin-bottom:0rem;}
#node-text_26c6dfb0{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-right:1.368rem;grid-column:span 12 / span 12;width:auto;min-width:0;justify-self:stretch;text-align:center;margin-top:0rem;margin-bottom:0rem;}
#node-text_243af692{font-family:Source Sans 3;font-size:0.95rem;line-height:1.78;color:#374151;max-width:none;grid-column:4 / span 6;width:auto;min-width:0;justify-self:stretch;text-align:center;grid-row:auto;margin-top:0rem;font-weight:400;text-transform:none;letter-spacing:0;}
#node-section_340f7e92{width:100%;min-height:220px;padding-top:0rem;padding-right:4vw;padding-bottom:4rem;padding-left:4vw;background:transparent;display:grid;gap:1.25rem;color:#0a0a0a;border-bottom:1px solid #ebe5dc;max-width:100%;}
#node-block_3b9d3daa{width:100%;min-height:140px;padding-top:24px;padding-right:24px;padding-bottom:24px;padding-left:24px;display:grid;background:transparent;color:#0a0a0a;grid-template-columns:repeat(12, minmax(0, 1fr));gap:1rem;max-width:100%;}
#node-block_934872cb{width:auto;padding-top:0px;padding-right:0px;padding-bottom:0px;padding-left:0px;display:flex;gap:0.78rem;padding:1.2rem;border:none;border-radius:0px;box-shadow:none;border-width:0px;border-style:none;color:#0a0a0a;height:auto;flex-direction:row;flex-wrap:wrap;align-items:stretch;justify-content:flex-start;align-content:flex-end;grid-column:span 12 / span 12;max-width:none;min-width:0;justify-self:stretch;background:transparent;}
#node-image_48467ae4{position:relative;display:block;width:100%;min-height:180px;background:#f1f1f1;border:1px dashed #d8d8d8;max-width:100%;height:auto;}
#node-block_f2185fab{width:auto;padding-top:0px;padding-right:0px;padding-bottom:0px;padding-left:0px;display:flex;gap:0.78rem;padding:1.2rem;border:none;border-radius:0px;box-shadow:none;border-width:1px;border-style:none;color:#0a0a0a;height:auto;flex-direction:row;flex-wrap:wrap;align-items:stretch;justify-content:flex-start;align-content:flex-end;grid-column:span 12 / span 12;max-width:none;min-width:0;justify-self:stretch;background:transparent;}
#node-image_3e3a5c92{position:relative;display:block;width:100%;min-height:180px;background:#f1f1f1;border:1px dashed #d8d8d8;max-width:100%;height:auto;}
#node-block_96077f0a{width:auto;padding-top:0px;padding-right:0px;padding-bottom:0px;padding-left:0px;display:flex;gap:0.78rem;padding:1.2rem;border:none;border-radius:0px;box-shadow:none;border-width:0px;border-style:none;color:#0a0a0a;height:auto;flex-direction:row;flex-wrap:wrap;align-items:stretch;justify-content:flex-start;align-content:flex-end;grid-column:span 12 / span 12;max-width:none;min-width:0;justify-self:stretch;background:transparent;}
#node-image_d89f0ba2{position:relative;display:block;width:100%;min-height:180px;background:#f1f1f1;border:1px dashed #d8d8d8;max-width:100%;height:auto;}
#node-block_6bbc8941{width:auto;padding-top:0px;padding-right:0px;padding-bottom:0px;padding-left:0px;display:block;padding:1.2rem;border:none;border-radius:0px;box-shadow:none;border-width:0px;border-style:none;color:#0a0a0a;height:auto;flex-direction:row;flex-wrap:wrap;align-items:stretch;justify-content:flex-start;grid-column:span 12 / span 12;max-width:none;min-width:0;justify-self:stretch;margin-top:0rem;background:transparent;}
#node-text_8ef15d6b{font-family:Outfit;font-size:1.08rem;line-height:1.26;color:#0a0a0a;max-width:none;font-weight:600;text-transform:none;letter-spacing:-0.01em;text-align:left;margin-top:0px;grid-column:span 12 / span 12;width:auto;min-width:0;justify-self:stretch;padding-bottom:0px;margin-bottom:0px;}
#node-image_c502fb47{position:relative;display:block;width:100%;min-height:180px;background:#f1f1f1;border:1px dashed #d8d8d8;max-width:100%;height:auto;}
#node-block_371711e2{width:auto;padding-top:0px;padding-right:0px;padding-bottom:0px;padding-left:0px;display:block;padding:1.2rem;border:none;border-radius:0px;box-shadow:none;border-width:0px;border-style:none;color:#0a0a0a;height:auto;flex-direction:row;flex-wrap:wrap;align-items:stretch;justify-content:flex-start;grid-column:span 12 / span 12;max-width:none;min-width:0;justify-self:stretch;margin-top:0rem;background:transparent;}
#node-text_7d584413{font-family:Outfit;font-size:1.08rem;line-height:1.26;color:#0a0a0a;max-width:none;font-weight:600;text-transform:none;letter-spacing:-0.01em;text-align:left;margin-top:0px;grid-column:span 12 / span 12;width:auto;min-width:0;justify-self:stretch;padding-bottom:0px;margin-bottom:0px;}
#node-image_c71ef7cb{position:relative;display:block;width:100%;min-height:180px;background:#f1f1f1;border:1px dashed #d8d8d8;max-width:100%;height:auto;}
#node-block_aca61597{width:auto;padding-top:0px;padding-right:0px;padding-bottom:0px;padding-left:0px;display:block;padding:1.2rem;border:none;border-radius:0px;box-shadow:none;border-width:0px;border-style:none;color:#0a0a0a;height:auto;flex-direction:row;flex-wrap:wrap;align-items:stretch;justify-content:flex-start;grid-column:span 12 / span 12;max-width:none;min-width:0;justify-self:stretch;margin-top:0rem;background:transparent;}
#node-text_586b448f{font-family:Outfit;font-size:1.08rem;line-height:1.26;color:#0a0a0a;max-width:none;font-weight:600;text-transform:none;letter-spacing:-0.01em;text-align:left;margin-top:0px;grid-column:span 12 / span 12;width:auto;min-width:0;justify-self:stretch;padding-bottom:0px;margin-bottom:0px;}
#node-image_aaadf2b0{position:relative;display:block;width:100%;min-height:180px;background:#f1f1f1;border:1px dashed #d8d8d8;max-width:100%;height:auto;}
#node-section_9d467696{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;grid-column:span 4 / span 4;grid-row:auto;border-color:#dccfbe;max-width:100%;}
#node-block_0e4905bd{width:auto;min-height:140px;padding-top:24px;padding-right:2px;padding-bottom:0px;padding-left:8px;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_1528e366{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_102459ee{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_4f73b8ff{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_c6f701cb{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_32154ef7{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_9b9dad2e{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 11 / span 11;width:auto;min-width:0;justify-self:stretch;padding-bottom:0px;margin-bottom:0px;}
#node-text_82d8f03d{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_09d4c6ca{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-block_cd39eb55{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_1707b343{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_a5362638{width:100%;min-height:220px;padding-top:4rem;padding-right:4vw;padding-bottom:4rem;padding-left:4vw;background:#000000;display:grid;gap:1.25rem;color:#ffffff;border-bottom:1px solid #ebe5dc;border-color:#dccfbe;max-width:100%;}
#node-block_d7d0fe83{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_59180b8b{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_897fcda1{font-family:Outfit;font-size:2.2rem;line-height:1.12;color:#ffffff;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_8ed78ea3{font-family:Source Sans 3;font-size:0.95rem;line-height:1.78;color:#949494;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_cdd00ffe{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_51cca818{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_a549de91{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_d4ed9620{width:100%;padding-top:17.28px;padding-right:17.28px;padding-bottom:17.28px;padding-left:17.28px;background:transparent;position:relative;float:left;display:grid;grid-template-columns:repeat(12, minmax(0, 1fr));gap:0.72rem;color:#0a0a0a;max-width:100%;}
#node-text_0a42b548{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_2146054f{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_f43cdd97{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_73e3aab9{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_1f375a73{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_e2993156{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_8205bbea{width:100%;object-fit:contain;position:relative;float:left;height:auto;}
#node-block_d2bba89b{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_86c47bba{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_23a38e34:hover{background:#ffffff !important;color:#ff2424 !important;}
#node-button_e1898f72:hover{background:#ff2424 !important;color:#ffffff !important;}
#node-button_51cca818:hover{background:#ff2424 !important;color:#ffffff !important;}
#node-button_f43cdd97:hover{background:#ffffff !important;color:#ff2424 !important;}
#node-button_1707b343:hover{background:#ff2424 !important;color:#ffffff !important;}
#node-button_798aba89:hover{background:#ffffff !important;color:#ff2424 !important;}
#node-button_d06ec2f5:hover{background:#ffffff !important;color:#ff2424 !important;}
#node-button_7ff94497:hover{background:#ff2424 !important;color:#ffffff !important;}
}


    [data-effect-parallax="true"] {
      will-change: transform;
      transform: translate3d(0, 0, 0);
      backface-visibility: hidden;
    }

    .site-background-video-layer {
      position: absolute;
      inset: 0;
      z-index: 1;
      pointer-events: none;
      overflow: hidden;
    }

    .site-background-video {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
    }

    [data-effect-role="background"] {
      isolation: isolate;
      overflow: hidden;
    }

    .site-parallax-background-layer {
      position: absolute;
      inset: 0;
      z-index: 1;
      pointer-events: none;
      overflow: hidden;
    }

    .site-parallax-background-image,
    .site-parallax-background-video {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      display: block;
    }

    .site-parallax-background-image {
      background-size: cover;
      background-position: 50% 50%;
      background-repeat: no-repeat;
    }

    .site-parallax-background-video {
      object-fit: cover;
      object-position: center center;
    }

    [data-effect-role="background"] > .jarallax-container {
      z-index: 1 !important;
    }

    [data-effect-role="background"].jarallax .site-parallax-background-layer {
      display: none;
    }

    .site-parallax-tint {
      position: absolute;
      inset: 0;
      z-index: 2;
      pointer-events: none;
    }

    [data-effect-role="background"] > :not(.site-parallax-background-layer):not(.site-parallax-tint):not(.jarallax-container) {
      position: relative;
      z-index: 4;
    }
  

    [data-effect-locomotive="true"] {
      will-change: transform;
    }
  


    [data-node-animations] {
      will-change: transform, opacity;
      transform-origin: center center;
      backface-visibility: hidden;
    }

    .editor-animation-split {
      will-change: transform, opacity;
      backface-visibility: hidden;
    }
  