: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;
    }

    .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;
    }

#node-section_d3086f8c{width:100%;min-height:100%;padding-top:3.5rem;padding-right:4vw;padding-bottom:4rem;padding-left:4vw;background:#ffffff;display:grid;gap:1.25rem;color:#151515;border-bottom:1px solid #ebe5dc;grid-template-columns:1.05fr 0.95fr;align-items:center;height:100vh;align-content:flex-start;background-image:linear-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, 0)), url(https://prime-el-rebuild.ewr1.vultrobjects.com/projects/aloraweb/ec5978b3-52a9-4ba5-a263-d732cb8bc202-create_a_premium_202604171933.jpeg);background-size:auto;background-position:center center;background-repeat:no-repeat;max-width:100%;}
#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;}
#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;background:rgba(255, 255, 255, 0);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.98;color:#fa1e1e;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:5.6rem;line-height:0.98;color:#000000;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.04em;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:#000000;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:#fff8f2;border:1px solid #a1442a;border-radius:999px;max-width:100%;}
#node-button_e1898f72{display:inline-flex;padding-top:0.78rem;padding-right:1.3rem;padding-bottom:0.78rem;padding-left:1.3rem;background:transparent;color:#000000;border:3px solid #e04300;border-radius:999px;border-width:3px;border-style:solid;border-color:#e04300;max-width:100%;}
#node-section_0ad9704b{width:100%;min-height:220px;padding-top:1.5rem;padding-right:4vw;padding-bottom:1.5rem;padding-left:4vw;background:#000000;display:grid;gap:1.25rem;color:#f7efe7;border-bottom:1px solid #ebe5dc;justify-items:center;text-align:center;max-width:100%;}
#node-block_a4f05fcb{background:rgba(255, 250, 243, 0);color:#171411;border-color:#dccfbe;width:auto;min-height:140px;padding-top:24px;padding-right:27px;padding-bottom:24px;padding-left:24px;display:grid;gap:0.95rem;max-width:none;justify-self:stretch;grid-column:span 10 / span 10;min-width:0;}
#node-text_f4fe92c8{color:#ffffff;font-family:Outfit;font-size:6rem;line-height:0.98;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.04em;}
#node-section_63ec612b{width:100%;min-height:220px;padding-top:9.9rem;padding-right:4vw;padding-bottom:11.95rem;padding-left:4vw;display:grid;color:#151515;border-bottom:1px solid #ebe5dc;grid-template-columns:repeat(12, minmax(0, 1fr));gap:1rem;max-width:100%;}
#node-block_7b389877{width:auto;padding-top:0px;padding-right:0px;padding-bottom:24px;padding-left:0px;background:rgba(255, 255, 255, 0);position:relative;float:left;grid-column:span 6 / span 6;max-width:none;min-width:0;justify-self:stretch;}
#node-image_ec1e0e25{width:100%;object-fit:cover;position:relative;float:left;margin-left:0.5%;margin-top:9px;background:#ffffff;max-width:100%;height:auto;}
#node-image_768ebcb7{width:12%;object-fit:cover;position:absolute;float:left;margin-top:16px;max-width:none;left:110px;top:85px;height:62px;}
#node-image_59f888d6{width:14.5%;object-fit:cover;position:absolute;float:left;margin-top:16px;max-width:none;left:322px;top:77px;height:76px;}
#node-image_98c73b98{width:13%;object-fit:cover;position:absolute;float:left;margin-top:16px;max-width:none;left:241px;top:-31px;height:auto;}
#node-block_3fead6d8{width:auto;min-height:140px;padding-top:0px;padding-right:24px;padding-bottom:24px;padding-left:24px;background:rgba(255, 255, 255, 0);display:grid;gap:0.95rem;max-width:none;justify-self:stretch;grid-column:span 6 / span 6;min-width:0;align-content:center;}
#node-text_16dd7857{font-family:Outfit;font-size:6rem;line-height:1.02;color:#111827;max-width:16ch;font-weight:700;margin-bottom:0px;text-transform:none;letter-spacing:-0.03em;}
#node-text_26b6cf2b{font-family:Source Sans 3;font-size:1rem;line-height:1.7;color:#374151;max-width:64ch;font-weight:400;text-transform:none;letter-spacing:0;}
#node-section_b3b80cb3{width:100%;min-height:220px;padding-top:4rem;padding-right:4vw;padding-bottom:4rem;padding-left:4vw;background:#ff3131;display:grid;gap:1.25rem;color:#151515;border-bottom:1px solid #ebe5dc;max-width:100%;}
#node-block_9d7663ec{width:100%;min-height:140px;padding-top:24px;padding-right:24px;padding-bottom:0px;padding-left:24px;background:rgba(255, 250, 243, 0);display:grid;gap:0.95rem;max-width:68rem;justify-self:start;height:auto;}
#node-text_2028cf49{font-family:Outfit;font-size:6rem;line-height:1.02;color:#ffffff;max-width:16ch;font-weight:700;text-transform:none;letter-spacing:-0.03em;}
#node-block_d0daf3a6{width:100%;min-height:140px;padding-top:24px;padding-right:24px;padding-bottom:24px;padding-left:24px;background:rgba(255, 255, 255, 0);display:grid;grid-template-columns:repeat(2, minmax(0, 1fr));gap:1rem;max-width:100%;}
#node-block_08c1c738{width:100%;min-height:140px;padding-top:24px;padding-right:24px;padding-bottom:24px;padding-left:24px;background:#000000;display:grid;gap:0.7rem;padding:1.2rem;border:1px solid #e7ddd1;border-radius:22px;box-shadow:0 12px 28px rgba(44, 31, 22, 0.06);max-width:100%;}
#node-text_a969e197{font-family:Outfit;font-size:4rem;line-height:1.02;color:#ffffff;max-width:none;font-weight:700;letter-spacing:-0.03em;text-transform:capitalize;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:2.45rem;line-height:1.2;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-block_59e2b1e4{width:100%;min-height:140px;padding-top:24px;padding-right:24px;padding-bottom:24px;padding-left:24px;background:#ffffff;display:grid;gap:0.7rem;padding:1.2rem;border:1px solid rgba(177,77,49,0.28);border-radius:22px;box-shadow:0 18px 40px rgba(26, 20, 16, 0.14);max-width:100%;}
#node-text_07ac1710{font-family:Outfit;font-size:4rem;line-height:1.02;color:#000000;max-width:none;font-weight:700;letter-spacing:-0.03em;text-transform:capitalize;padding-bottom:0px;grid-column:span 12 / span 12;width:auto;min-width:0;justify-self:stretch;text-align:center;}
#node-image_022e3882{width:auto;object-fit:cover;position:relative;grid-column:span 11 / span 11;max-width:none;min-width:0;justify-self:stretch;height:auto;}
#node-text_4cb387a0{font-family:Source Sans 3;font-size:2.45rem;line-height:1.2;color:#374151;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;grid-row:auto;}
#node-section_619c0ca8{width:100%;min-height:220px;padding-top:4rem;padding-right:4vw;padding-bottom:4rem;padding-left:4vw;background:#ffffff;display:grid;color:#151515;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:1.02;color:#111827;max-width:16ch;font-weight:700;text-transform:none;letter-spacing:-0.03em;padding-bottom:0rem;margin-bottom:0rem;}
#node-text_9c0b1f1a{font-family:Inter;font-size:1.02rem;line-height:1.8;color:#5b5148;max-width:64ch;}
#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:5 / span 8;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:30.6rem;flex-direction:column;flex-wrap:nowrap;gap:2px;align-items:center;justify-content:space-between;align-content:flex-start;border-width:4px;border-style:solid;border-color:#c20000;}
#node-image_c59305a1{width:50%;object-fit:cover;position:relative;margin-bottom:0%;max-width:none;height:auto;}
#node-text_c65ff8b7{font-family:Outfit;font-size:clamp(2rem, 4vw, 3.4rem);line-height:1.02;color:#111827;max-width:none;font-weight:700;text-transform:none;letter-spacing:-0.03em;width:284px;margin-top:0px;text-align:center;}
#node-block_205495f3{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:30.6rem;flex-direction:column;flex-wrap:nowrap;gap:2px;align-items:center;justify-content:space-between;align-content:flex-start;border-width:4px;border-style:solid;border-color:#c20000;}
#node-image_bf85c80a{width:50%;object-fit:cover;position:relative;margin-bottom:0%;max-width:none;height:auto;}
#node-text_00f6fe9a{font-family:Outfit;font-size:clamp(2rem, 4vw, 3.4rem);line-height:1.02;color:#111827;max-width:none;font-weight:700;text-transform:none;letter-spacing:-0.03em;width:284px;margin-top:0px;text-align:center;}
#node-block_611c6898{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 #d10000;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:30.6rem;flex-direction:column;flex-wrap:nowrap;gap:2px;align-items:center;justify-content:space-between;align-content:flex-start;border-width:4px;border-style:solid;border-color:#d10000;}
#node-image_7fdeeb70{width:50%;object-fit:cover;position:relative;margin-bottom:0%;max-width:none;height:auto;}
#node-text_2356d2cb{font-family:Outfit;font-size:clamp(2rem, 4vw, 3.4rem);line-height:1.02;color:#111827;max-width:none;font-weight:700;text-transform:none;letter-spacing:-0.03em;width:284px;margin-top:0px;text-align:center;}
#node-block_df969797{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 #d10000;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:30.6rem;flex-direction:column;flex-wrap:nowrap;gap:2px;align-items:center;justify-content:space-between;align-content:flex-start;border-width:4px;border-style:solid;border-color:#d10000;}
#node-image_0a18613d{width:50%;object-fit:cover;position:relative;margin-bottom:0%;max-width:none;height:auto;}
#node-text_25cdd84d{font-family:Outfit;font-size:clamp(2rem, 4vw, 3.4rem);line-height:1.02;color:#111827;max-width:none;font-weight:700;text-transform:none;letter-spacing:-0.03em;width:284px;margin-top:0px;text-align:center;}
#node-section_3a57aca4{width:100%;min-height:220px;padding-top:4rem;padding-right:4vw;padding-bottom:4rem;padding-left:4vw;background:#fffafa;display:grid;gap:1.25rem;color:#151515;border-bottom:1px solid #ebe5dc;max-width:100%;}
#node-block_12111d04{width:auto;min-height:140px;padding-top:0px;padding-right:24px;padding-bottom:100px;padding-left:72px;background:rgba(255, 250, 243, 0);display:block;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;}
#node-text_3dee3335{font-family:Outfit;font-size:6rem;line-height:1.02;color:#111827;max-width:16ch;font-weight:700;text-transform:none;letter-spacing:-0.03em;margin-bottom:0rem;}
#node-text_415174b4{font-family:Outfit;font-size:6rem;line-height:1.02;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;}
#node-text_75b69449{font-family:Outfit;font-size:6rem;line-height:1.02;color:#ff3131;max-width:16ch;font-weight:700;text-transform:none;letter-spacing:-0.03em;padding-top:0rem;margin-top:0rem;margin-bottom:0rem;}
#node-text_6278963a{font-family:Outfit;font-size:6rem;line-height:1.02;color:#111827;max-width:16ch;font-weight:700;text-transform:none;letter-spacing:-0.03em;padding-top:0rem;margin-top:3.7rem;padding-bottom:0rem;margin-bottom:0rem;}
#node-text_7f196723{font-family:Outfit;font-size:6rem;line-height:1.02;color:#111827;max-width:16ch;font-weight:700;text-transform:none;letter-spacing:-0.03em;padding-top:0rem;margin-top:0rem;margin-bottom:0rem;}
#node-text_01831fdd{font-family:Outfit;font-size:6rem;line-height:1.02;color:#ff3131;max-width:16ch;font-weight:700;text-transform:none;letter-spacing:-0.03em;padding-top:0rem;margin-top:0rem;margin-bottom:0rem;}
#node-text_5cdb3c1a{font-family:Outfit;font-size:6rem;line-height:1.02;color:#111827;max-width:16ch;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;}
#node-text_63093879{font-family:Outfit;font-size:6rem;line-height:1.02;color:#111827;max-width:16ch;font-weight:700;text-transform:none;letter-spacing:-0.03em;padding-top:0rem;margin-top:0rem;margin-bottom:0rem;text-align:right;}
#node-text_53a2b603{font-family:Outfit;font-size:6rem;line-height:1.02;color:#ff3131;max-width:16ch;font-weight:700;text-transform:none;letter-spacing:-0.03em;padding-top:0rem;margin-top:0rem;margin-bottom:0rem;text-align:right;}
#node-section_ff5bc3e4{width:100%;min-height:220px;padding-top:4rem;padding-right:4vw;padding-bottom:4rem;padding-left:4vw;background:#ffffff;display:grid;gap:1.25rem;color:#151515;border-bottom:1px solid #ebe5dc;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;max-width:100%;}
#node-block_de7f4ad2{width:100%;min-height:100%;padding-top:24px;padding-right:24px;padding-bottom:24px;padding-left:24px;background:rgba(255, 253, 250, 0.1);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;border-color:#cc0000;row-gap:0rem;column-gap:0rem;max-width:100%;}
#node-image_a4c8b2b3{width:auto;object-fit:cover;position:relative;margin-bottom:0%;grid-column:4 / span 6;max-width:none;min-width:0;justify-self:stretch;grid-row:auto;height:auto;}
#node-text_11238b1b{font-family:Outfit;font-size:clamp(2rem, 4vw, 3.4rem);line-height:1.02;color:#111827;max-width:none;font-weight:700;text-transform:none;letter-spacing:-0.03em;text-align:center;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:Inter;font-size:0.96rem;line-height:1.75;color:#5b5148;max-width:none;grid-column:span 12 / span 12;width:auto;min-width:0;justify-self:stretch;text-align:center;}
#node-block_db4b6437{width:100%;min-height:100%;padding-top:24px;padding-right:24px;padding-bottom:24px;padding-left:24px;background:rgba(255, 253, 250, 0.1);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;border-color:#cc0000;row-gap:0rem;column-gap:0rem;max-width:100%;}
#node-image_21da9af0{width:auto;object-fit:cover;position:relative;margin-bottom:0%;grid-column:4 / span 6;max-width:none;min-width:0;justify-self:stretch;grid-row:auto;height:auto;}
#node-text_742b76ba{font-family:Outfit;font-size:clamp(2rem, 4vw, 3.4rem);line-height:1.02;color:#111827;max-width:none;font-weight:700;text-transform:none;letter-spacing:-0.03em;text-align:center;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:Inter;font-size:0.96rem;line-height:1.75;color:#5b5148;max-width:none;grid-column:span 12 / span 12;width:auto;min-width:0;justify-self:stretch;text-align:center;}
#node-block_7ae71967{width:100%;min-height:100%;padding-top:24px;padding-right:24px;padding-bottom:24px;padding-left:24px;background:rgba(255, 253, 250, 0.1);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;border-color:#cc0000;row-gap:0rem;column-gap:0rem;max-width:100%;}
#node-image_cd2476e9{width:auto;object-fit:cover;position:relative;margin-bottom:0%;grid-column:4 / span 6;max-width:none;min-width:0;justify-self:stretch;grid-row:auto;height:auto;}
#node-text_ebe8f9db{font-family:Outfit;font-size:clamp(2rem, 4vw, 3.4rem);line-height:1.02;color:#111827;max-width:none;font-weight:700;text-transform:none;letter-spacing:-0.03em;text-align:center;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:Inter;font-size:0.96rem;line-height:1.75;color:#5b5148;max-width:none;grid-column:span 12 / span 12;width:auto;min-width:0;justify-self:stretch;text-align:center;}
#node-block_30387cbb{width:100%;min-height:100%;padding-top:24px;padding-right:24px;padding-bottom:24px;padding-left:24px;background:rgba(255, 253, 250, 0.1);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;border-color:#cc0000;row-gap:0rem;column-gap:0rem;max-width:100%;}
#node-image_2e6f83ff{width:auto;object-fit:cover;position:relative;margin-bottom:0%;grid-column:4 / span 6;max-width:none;min-width:0;justify-self:stretch;grid-row:auto;height:auto;}
#node-text_691fa68a{font-family:Outfit;font-size:clamp(2rem, 4vw, 3.4rem);line-height:1.02;color:#111827;max-width:none;font-weight:700;text-transform:none;letter-spacing:-0.03em;text-align:center;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:Inter;font-size:0.96rem;line-height:1.75;color:#5b5148;max-width:none;grid-column:span 12 / span 12;width:auto;min-width:0;justify-self:stretch;text-align:center;}
#node-section_337a82da{width:100%;min-height:220px;padding-top:4rem;padding-right:4vw;padding-bottom:4rem;padding-left:4vw;background:#ffffff;display:grid;gap:1.25rem;color:#151515;border-bottom:1px solid #ebe5dc;max-width:100%;}
#node-block_aaca42b4{width:auto;min-height:140px;padding-top:24px;padding-right:24px;padding-bottom:24px;padding-left:24px;background:rgba(202, 161, 104, 0);display:grid;gap:0.95rem;max-width:none;justify-self:stretch;grid-column:span 12 / span 12;min-width:0;}
#node-text_e3c90ffd{font-family:Outfit;font-size:6rem;line-height:1.02;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-bottom:0rem;}
#node-text_1a537d50{font-family:Outfit;font-size:6rem;line-height:1.02;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-top:0rem;margin-bottom:0rem;}
#node-text_f8406c65{font-family:Inter;font-size:1.02rem;line-height:1.8;color:#5b5148;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;}
#node-section_9d467696{width:100%;min-height:220px;padding-top:4rem;padding-right:4vw;padding-bottom:4rem;padding-left:4vw;background:#ffffff;display:grid;gap:1.25rem;color:#151515;border-bottom:1px solid #ebe5dc;max-width:100%;}
#node-block_0e4905bd{width:auto;min-height:140px;padding-top:24px;padding-right:24px;padding-bottom:121px;padding-left:24px;background:#ffffff;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;}
#node-text_1528e366{font-family:Outfit;font-size:6rem;line-height:1.02;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:1.02;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:1.02;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:1.02;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:1.02;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:1.02;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-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:#151515;border-bottom:1px solid #ebe5dc;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;}
#node-text_59180b8b{font-family:Outfit;font-size:6rem;line-height:1.02;color:#ff1f1f;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:1.02;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:Inter;font-size:1.02rem;line-height:1.8;color:#8c8a87;max-width:64ch;margin-top:0rem;padding-top:0.9rem;grid-column:span 12 / span 12;grid-row:auto;}
#node-block_cdd00ffe{width:auto;padding-top:24px;padding-right:24px;padding-bottom:24px;padding-left:24px;background:rgba(230, 230, 230, 0);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;}
#node-button_51cca818{display:inline;padding-top:25px;padding-right:40px;padding-bottom:25px;padding-left:40px;background:#ffffff;color:#000000;width:100%;float:left;margin-top:16px;font-size:2rem;align-self:stretch;text-align:center;border-radius:100px;font-family:Outfit;font-weight:600;text-transform:none;line-height:1.1;letter-spacing:0;border-width:4px;border:4px solid #db0000;border-style:solid;border-color:#db0000;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:#fff8f2;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;max-width:100%;}
#node-block_d4ed9620{width:100%;padding-top:24px;padding-right:24px;padding-bottom:24px;padding-left:24px;background:#ffffff;position:relative;float:left;display:grid;grid-template-columns:repeat(12, minmax(0, 1fr));gap:1rem;max-width:100%;}
#node-text_0a42b548{font-family:Outfit;font-size:6rem;line-height:1.02;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:rgba(230, 230, 230, 0);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;}
#node-button_f43cdd97{display:inline;padding-top:25px;padding-right:40px;padding-bottom:25px;padding-left:40px;background:#ffffff;color:#000000;font-family:Outfit;font-size:2rem;font-weight:600;line-height:1.1;letter-spacing:0;text-transform:none;position:relative;text-align:center;float:left;width:100%;margin-top:16px;border-radius:100px;border-width:4px;border-style:solid;border-color:#db0000;border:4px solid #db0000;align-self:stretch;max-width:100%;}
#node-section_d92afeb9{width:100%;padding-top:48px;padding-right:48px;padding-bottom:48px;padding-left:48px;background:#fffdf9;position:relative;height:151px;min-height:500px;background-image:linear-gradient(rgba(0, 0, 0, 0.43), rgba(0, 0, 0, 0.43)), url(https://images.pexels.com/photos/5792861/pexels-photo-5792861.jpeg?auto=compress&cs=tinysrgb&dpr=2&h=650&w=940);background-size:cover;background-position:center center;background-repeat:no-repeat;display:grid;grid-template-columns:repeat(12, minmax(0, 1fr));gap:1rem;max-width:100%;}
#node-block_483b7695{width:auto;padding-top:24px;padding-right:24px;padding-bottom:24px;padding-left:24px;background:rgba(230, 230, 230, 0);position:relative;float:left;grid-column:span 12 / span 12;max-width:none;min-width:0;justify-self:stretch;display:flex;flex-direction:row;flex-wrap:wrap;gap:16px;align-items:flex-end;justify-content:space-between;}
#node-text_4cd499f3{font-family:Outfit;font-size:1.75rem;line-height:1.08;color:#ffffff;max-width:none;position:relative;font-weight:700;text-transform:none;letter-spacing:-0.02em;width:1164px;float:left;flex-basis:1164px;text-align:center;}
#node-section_73e3aab9{width:100%;padding-top:48px;padding-right:48px;padding-bottom:48px;padding-left:48px;background:#050505;position:relative;height:100%;display:grid;grid-template-columns:repeat(12, minmax(0, 1fr));gap:1rem;max-width:100%;}
#node-block_1f375a73{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;}
#node-block_e2993156{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_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: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;display:grid;grid-template-columns:repeat(12, minmax(0, 1fr));gap:1rem;}
#node-text_86c47bba{font-family:Outfit;font-size:1.75rem;line-height:1.08;color:#6b7280;max-width:none;position:relative;font-weight:700;text-transform:none;letter-spacing:-0.02em;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;}

@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;background:#ffffff;display:grid;gap:1.25rem;color:#151515;border-bottom:1px solid #ebe5dc;grid-template-columns:1.05fr 0.95fr;align-items:center;height:100vh;align-content:flex-start;background-image:linear-gradient(rgba(0, 0, 0, 0.37), rgba(0, 0, 0, 0.37)), url(https://prime-el-rebuild.ewr1.vultrobjects.com/projects/aloraweb/e7ea87f4-8288-4e2d-a253-618dd7444c65-so_somethings_like_202604171835.jpeg);background-size:cover;background-position:center center;background-repeat:no-repeat;max-width:100%;}
#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;}
#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;background:rgba(255, 255, 255, 0);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;}
#node-text_89d00ab9{font-family:Inter;font-size:clamp(3rem, 5vw, 5rem);line-height:0.98;color:#ffffff;max-width:none;letter-spacing:0.1em;text-transform:capitalize;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;}
#node-text_282ff261{font-family:Poppins;font-size:clamp(3rem, 5vw, 5rem);line-height:0.98;color:#ffffff;max-width:none;font-weight:800;grid-column:span 12 / span 12;min-width:0;justify-self:stretch;margin-bottom:0px;margin-top:0px;text-transform:capitalize;letter-spacing:-0.035em;display:block;height:auto;width:46.2rem;padding-right:0px;}
#node-text_ca58eb4c{font-family:Source Sans 3;font-size:1rem;line-height:1.7;color:#000000;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:#fff8f2;border:1px solid #a1442a;border-radius:999px;max-width:100%;}
#node-button_e1898f72{display:inline-flex;padding-top:0.78rem;padding-right:1.3rem;padding-bottom:0.78rem;padding-left:1.3rem;background:transparent;color:#000000;border:3px solid #e04300;border-radius:999px;border-width:3px;border-style:solid;border-color:#e04300;max-width:100%;}
#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;gap:1.25rem;color:#f7efe7;border-bottom:1px solid #ebe5dc;justify-items:center;text-align:center;max-width:100%;}
#node-block_a4f05fcb{background:rgba(255, 250, 243, 0);color:#171411;border-color:#dccfbe;width:auto;min-height:140px;padding-top:24px;padding-right:24px;padding-bottom:24px;padding-left:24px;display:grid;gap:0.95rem;max-width:none;justify-self:stretch;grid-column:span 9 / span 9;min-width:0;}
#node-text_f4fe92c8{color:#ffffff;font-family:Inter;font-size:clamp(3rem, 5vw, 5rem);line-height:0.98;max-width:none;font-weight:800;grid-column:span 12 / span 12;width:auto;min-width:0;justify-self:stretch;text-transform:uppercase;letter-spacing:-0.04em;}
#node-section_63ec612b{width:100%;min-height:220px;padding-top:4rem;padding-right:4vw;padding-bottom:4rem;padding-left:4vw;display:grid;color:#151515;border-bottom:1px solid #ebe5dc;grid-template-columns:repeat(12, minmax(0, 1fr));gap:1rem;max-width:100%;background:#ffffff;}
#node-block_7b389877{width:auto;padding-top:0px;padding-right:0px;padding-bottom:24px;padding-left:0px;background:rgba(255, 255, 255, 0);position:relative;float:left;grid-column:span 6 / span 6;max-width:none;min-width:0;justify-self:stretch;}
#node-image_ec1e0e25{width:100%;object-fit:cover;position:relative;float:left;margin-left:0.5%;margin-top:9px;background:#ffffff;max-width:100%;height:auto;}
#node-image_768ebcb7{width:12%;object-fit:cover;position:absolute;float:left;margin-top:16px;max-width:none;left:110px;top:85px;height:62px;}
#node-image_59f888d6{width:14.5%;object-fit:cover;position:absolute;float:left;margin-top:16px;max-width:none;left:322px;top:77px;height:76px;}
#node-image_98c73b98{width:13%;object-fit:cover;position:absolute;float:left;margin-top:16px;max-width:none;left:241px;top:-31px;height:auto;}
#node-block_3fead6d8{width:auto;min-height:140px;padding-top:24px;padding-right:24px;padding-bottom:24px;padding-left:24px;background:rgba(255, 255, 255, 0);display:grid;gap:0.95rem;max-width:none;justify-self:stretch;grid-column:span 6 / span 6;min-width:0;align-content:center;}
#node-text_16dd7857{font-family:Outfit;font-size:clamp(2.2rem, 4vw, 3.8rem);line-height:1.02;color:#111827;max-width:16ch;font-weight:700;margin-bottom:0px;text-transform:none;letter-spacing:-0.03em;}
#node-text_26b6cf2b{font-family:Inter;font-size:1.05rem;line-height:1.72;color:#5b5148;max-width:64ch;font-weight:400;text-transform:none;letter-spacing:0;}
#node-section_b3b80cb3{width:100%;min-height:220px;padding-top:4rem;padding-right:4vw;padding-bottom:4rem;padding-left:4vw;background:#ff3131;display:grid;gap:1.25rem;color:#151515;border-bottom:1px solid #ebe5dc;max-width:100%;}
#node-block_9d7663ec{width:100%;min-height:140px;padding-top:24px;padding-right:24px;padding-bottom:0px;padding-left:24px;background:rgba(255, 250, 243, 0);display:grid;gap:0.95rem;max-width:68rem;justify-self:start;height:auto;}
#node-text_2028cf49{font-family:Outfit;font-size:clamp(2.2rem, 4vw, 3.8rem);line-height:1.02;color:#ffffff;max-width:16ch;font-weight:700;text-transform:none;letter-spacing:-0.03em;}
#node-block_d0daf3a6{width:100%;min-height:140px;padding-top:24px;padding-right:24px;padding-bottom:24px;padding-left:24px;background:rgba(255, 255, 255, 0);display:grid;grid-template-columns:repeat(2, minmax(0, 1fr));gap:1rem;max-width:100%;}
#node-block_08c1c738{width:100%;min-height:140px;padding-top:24px;padding-right:24px;padding-bottom:24px;padding-left:24px;background:#000000;display:grid;gap:0.7rem;padding:1.2rem;border:1px solid #e7ddd1;border-radius:22px;box-shadow:0 12px 28px rgba(44, 31, 22, 0.06);max-width:100%;}
#node-text_a969e197{font-family:Outfit;font-size:clamp(2.2rem, 4vw, 3.8rem);line-height:1.02;color:#ffffff;max-width:none;font-weight:700;letter-spacing:-0.03em;text-transform:capitalize;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-block_59e2b1e4{width:100%;min-height:140px;padding-top:24px;padding-right:24px;padding-bottom:24px;padding-left:24px;background:#ffffff;display:grid;gap:0.7rem;padding:1.2rem;border:1px solid rgba(177,77,49,0.28);border-radius:22px;box-shadow:0 18px 40px rgba(26, 20, 16, 0.14);max-width:100%;}
#node-text_07ac1710{font-family:Outfit;font-size:clamp(2.2rem, 4vw, 3.8rem);line-height:1.02;color:#000000;max-width:none;font-weight:700;letter-spacing:-0.03em;text-transform:capitalize;padding-bottom:0px;grid-column:span 12 / span 12;width:auto;min-width:0;justify-self:stretch;text-align:center;}
#node-image_022e3882{width:auto;object-fit:cover;position:relative;grid-column:span 11 / span 11;max-width:none;min-width:0;justify-self:stretch;height:auto;}
#node-text_4cb387a0{font-family:Source Sans 3;font-size:1.05rem;line-height:1.72;color:#374151;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;grid-row:auto;}
#node-section_619c0ca8{width:100%;min-height:220px;padding-top:4rem;padding-right:4vw;padding-bottom:4rem;padding-left:4vw;background:#ffffff;display:grid;color:#151515;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:clamp(2.2rem, 4vw, 3.8rem);line-height:1.02;color:#111827;max-width:16ch;font-weight:700;text-transform:none;letter-spacing:-0.03em;padding-bottom:0rem;margin-bottom:0rem;}
#node-text_9c0b1f1a{font-family:Inter;font-size:1.02rem;line-height:1.8;color:#5b5148;max-width:64ch;}
#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:5 / span 8;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:30.6rem;flex-direction:column;flex-wrap:nowrap;gap:2px;align-items:center;justify-content:space-between;align-content:flex-start;border-width:4px;border-style:solid;border-color:#c20000;}
#node-image_c59305a1{width:50%;object-fit:cover;position:relative;margin-bottom:0%;max-width:none;height:auto;}
#node-text_c65ff8b7{font-family:Outfit;font-size:clamp(2.2rem, 4vw, 3.8rem);line-height:1.02;color:#111827;max-width:none;font-weight:700;text-transform:none;letter-spacing:-0.03em;width:284px;margin-top:0px;text-align:center;}
#node-block_205495f3{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:30.6rem;flex-direction:column;flex-wrap:nowrap;gap:2px;align-items:center;justify-content:space-between;align-content:flex-start;border-width:4px;border-style:solid;border-color:#c20000;}
#node-image_bf85c80a{width:50%;object-fit:cover;position:relative;margin-bottom:0%;max-width:none;height:auto;}
#node-text_00f6fe9a{font-family:Outfit;font-size:clamp(2.2rem, 4vw, 3.8rem);line-height:1.02;color:#111827;max-width:none;font-weight:700;text-transform:none;letter-spacing:-0.03em;width:284px;margin-top:0px;text-align:center;}
#node-block_611c6898{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 #d10000;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:30.6rem;flex-direction:column;flex-wrap:nowrap;gap:2px;align-items:center;justify-content:space-between;align-content:flex-start;border-width:4px;border-style:solid;border-color:#d10000;}
#node-image_7fdeeb70{width:50%;object-fit:cover;position:relative;margin-bottom:0%;max-width:none;height:auto;}
#node-text_2356d2cb{font-family:Outfit;font-size:clamp(2.2rem, 4vw, 3.8rem);line-height:1.02;color:#111827;max-width:none;font-weight:700;text-transform:none;letter-spacing:-0.03em;width:284px;margin-top:0px;text-align:center;}
#node-block_df969797{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 #d10000;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:30.6rem;flex-direction:column;flex-wrap:nowrap;gap:2px;align-items:center;justify-content:space-between;align-content:flex-start;border-width:4px;border-style:solid;border-color:#d10000;}
#node-image_0a18613d{width:50%;object-fit:cover;position:relative;margin-bottom:0%;max-width:none;height:auto;}
#node-text_25cdd84d{font-family:Outfit;font-size:clamp(2.2rem, 4vw, 3.8rem);line-height:1.02;color:#111827;max-width:none;font-weight:700;text-transform:none;letter-spacing:-0.03em;width:284px;margin-top:0px;text-align:center;}
#node-section_3a57aca4{width:100%;min-height:220px;padding-top:4rem;padding-right:4vw;padding-bottom:4rem;padding-left:4vw;background:#fffafa;display:grid;gap:1.25rem;color:#151515;border-bottom:1px solid #ebe5dc;max-width:100%;}
#node-block_12111d04{width:auto;min-height:140px;padding-top:0px;padding-right:24px;padding-bottom:100px;padding-left:72px;background:rgba(255, 250, 243, 0);display:block;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;}
#node-text_3dee3335{font-family:Outfit;font-size:clamp(2.2rem, 4vw, 3.8rem);line-height:1.02;color:#111827;max-width:16ch;font-weight:700;text-transform:none;letter-spacing:-0.03em;margin-bottom:0rem;}
#node-text_415174b4{font-family:Outfit;font-size:clamp(2.2rem, 4vw, 3.8rem);line-height:1.02;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;}
#node-text_75b69449{font-family:Outfit;font-size:clamp(2.2rem, 4vw, 3.8rem);line-height:1.02;color:#ff3131;max-width:16ch;font-weight:700;text-transform:none;letter-spacing:-0.03em;padding-top:0rem;margin-top:0rem;margin-bottom:0rem;}
#node-text_6278963a{font-family:Outfit;font-size:clamp(2.2rem, 4vw, 3.8rem);line-height:1.02;color:#111827;max-width:16ch;font-weight:700;text-transform:none;letter-spacing:-0.03em;padding-top:0rem;margin-top:3.7rem;padding-bottom:0rem;margin-bottom:0rem;}
#node-text_7f196723{font-family:Outfit;font-size:clamp(2.2rem, 4vw, 3.8rem);line-height:1.02;color:#111827;max-width:16ch;font-weight:700;text-transform:none;letter-spacing:-0.03em;padding-top:0rem;margin-top:0rem;margin-bottom:0rem;}
#node-text_01831fdd{font-family:Outfit;font-size:clamp(2.2rem, 4vw, 3.8rem);line-height:1.02;color:#ff3131;max-width:16ch;font-weight:700;text-transform:none;letter-spacing:-0.03em;padding-top:0rem;margin-top:0rem;margin-bottom:0rem;}
#node-text_5cdb3c1a{font-family:Outfit;font-size:clamp(2.2rem, 4vw, 3.8rem);line-height:1.02;color:#111827;max-width:16ch;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;}
#node-text_63093879{font-family:Outfit;font-size:clamp(2.2rem, 4vw, 3.8rem);line-height:1.02;color:#111827;max-width:16ch;font-weight:700;text-transform:none;letter-spacing:-0.03em;padding-top:0rem;margin-top:0rem;margin-bottom:0rem;text-align:right;}
#node-text_53a2b603{font-family:Outfit;font-size:clamp(2.2rem, 4vw, 3.8rem);line-height:1.02;color:#ff3131;max-width:16ch;font-weight:700;text-transform:none;letter-spacing:-0.03em;padding-top:0rem;margin-top:0rem;margin-bottom:0rem;text-align:right;}
#node-section_ff5bc3e4{width:100%;min-height:220px;padding-top:4rem;padding-right:4vw;padding-bottom:4rem;padding-left:4vw;background:#ffffff;display:grid;gap:1.25rem;color:#151515;border-bottom:1px solid #ebe5dc;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;max-width:100%;}
#node-block_de7f4ad2{width:100%;min-height:100%;padding-top:24px;padding-right:24px;padding-bottom:24px;padding-left:24px;background:rgba(255, 253, 250, 0.1);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;border-color:#cc0000;row-gap:0rem;column-gap:0rem;max-width:100%;}
#node-image_a4c8b2b3{width:auto;object-fit:cover;position:relative;margin-bottom:0%;grid-column:4 / span 6;max-width:none;min-width:0;justify-self:stretch;grid-row:auto;height:auto;}
#node-text_11238b1b{font-family:Outfit;font-size:clamp(2.2rem, 4vw, 3.8rem);line-height:1.02;color:#111827;max-width:none;font-weight:700;text-transform:none;letter-spacing:-0.03em;text-align:center;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:Inter;font-size:0.96rem;line-height:1.75;color:#5b5148;max-width:none;grid-column:span 12 / span 12;width:auto;min-width:0;justify-self:stretch;text-align:center;}
#node-block_db4b6437{width:100%;min-height:100%;padding-top:24px;padding-right:24px;padding-bottom:24px;padding-left:24px;background:rgba(255, 253, 250, 0.1);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;border-color:#cc0000;row-gap:0rem;column-gap:0rem;max-width:100%;}
#node-image_21da9af0{width:auto;object-fit:cover;position:relative;margin-bottom:0%;grid-column:4 / span 6;max-width:none;min-width:0;justify-self:stretch;grid-row:auto;height:auto;}
#node-text_742b76ba{font-family:Outfit;font-size:clamp(2.2rem, 4vw, 3.8rem);line-height:1.02;color:#111827;max-width:none;font-weight:700;text-transform:none;letter-spacing:-0.03em;text-align:center;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:Inter;font-size:0.96rem;line-height:1.75;color:#5b5148;max-width:none;grid-column:span 12 / span 12;width:auto;min-width:0;justify-self:stretch;text-align:center;}
#node-block_7ae71967{width:100%;min-height:100%;padding-top:24px;padding-right:24px;padding-bottom:24px;padding-left:24px;background:rgba(255, 253, 250, 0.1);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;border-color:#cc0000;row-gap:0rem;column-gap:0rem;max-width:100%;}
#node-image_cd2476e9{width:auto;object-fit:cover;position:relative;margin-bottom:0%;grid-column:4 / span 6;max-width:none;min-width:0;justify-self:stretch;grid-row:auto;height:auto;}
#node-text_ebe8f9db{font-family:Outfit;font-size:clamp(2.2rem, 4vw, 3.8rem);line-height:1.02;color:#111827;max-width:none;font-weight:700;text-transform:none;letter-spacing:-0.03em;text-align:center;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:Inter;font-size:0.96rem;line-height:1.75;color:#5b5148;max-width:none;grid-column:span 12 / span 12;width:auto;min-width:0;justify-self:stretch;text-align:center;}
#node-block_30387cbb{width:100%;min-height:100%;padding-top:24px;padding-right:24px;padding-bottom:24px;padding-left:24px;background:rgba(255, 253, 250, 0.1);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;border-color:#cc0000;row-gap:0rem;column-gap:0rem;max-width:100%;}
#node-image_2e6f83ff{width:auto;object-fit:cover;position:relative;margin-bottom:0%;grid-column:4 / span 6;max-width:none;min-width:0;justify-self:stretch;grid-row:auto;height:auto;}
#node-text_691fa68a{font-family:Outfit;font-size:clamp(2.2rem, 4vw, 3.8rem);line-height:1.02;color:#111827;max-width:none;font-weight:700;text-transform:none;letter-spacing:-0.03em;text-align:center;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:Inter;font-size:0.96rem;line-height:1.75;color:#5b5148;max-width:none;grid-column:span 12 / span 12;width:auto;min-width:0;justify-self:stretch;text-align:center;}
#node-section_337a82da{width:100%;min-height:220px;padding-top:4rem;padding-right:4vw;padding-bottom:4rem;padding-left:4vw;background:#ffffff;display:grid;gap:1.25rem;color:#151515;border-bottom:1px solid #ebe5dc;max-width:100%;}
#node-block_aaca42b4{width:auto;min-height:140px;padding-top:24px;padding-right:24px;padding-bottom:24px;padding-left:24px;background:rgba(202, 161, 104, 0);display:grid;gap:0.95rem;max-width:none;justify-self:stretch;grid-column:span 12 / span 12;min-width:0;}
#node-text_e3c90ffd{font-family:Outfit;font-size:clamp(2.2rem, 4vw, 3.8rem);line-height:1.02;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-bottom:0rem;}
#node-text_1a537d50{font-family:Outfit;font-size:clamp(2.2rem, 4vw, 3.8rem);line-height:1.02;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-top:0rem;margin-bottom:0rem;}
#node-text_f8406c65{font-family:Inter;font-size:1.02rem;line-height:1.8;color:#5b5148;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;}
#node-section_9d467696{width:100%;min-height:220px;padding-top:4rem;padding-right:4vw;padding-bottom:4rem;padding-left:4vw;background:#ffffff;display:grid;gap:1.25rem;color:#151515;border-bottom:1px solid #ebe5dc;max-width:100%;}
#node-block_0e4905bd{width:auto;min-height:140px;padding-top:24px;padding-right:24px;padding-bottom:121px;padding-left:24px;background:#ffffff;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;}
#node-text_1528e366{font-family:Outfit;font-size:clamp(2.2rem, 4vw, 3.8rem);line-height:1.02;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:clamp(2.2rem, 4vw, 3.8rem);line-height:1.02;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:clamp(2.2rem, 4vw, 3.8rem);line-height:1.02;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:clamp(2.2rem, 4vw, 3.8rem);line-height:1.02;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:clamp(2.2rem, 4vw, 3.8rem);line-height:1.02;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:clamp(2.2rem, 4vw, 3.8rem);line-height:1.02;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-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:#151515;border-bottom:1px solid #ebe5dc;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;}
#node-text_59180b8b{font-family:Outfit;font-size:clamp(2.2rem, 4vw, 3.8rem);line-height:1.02;color:#ff1f1f;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:clamp(2.2rem, 4vw, 3.8rem);line-height:1.02;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:Inter;font-size:1.02rem;line-height:1.8;color:#8c8a87;max-width:64ch;margin-top:0rem;padding-top:0.9rem;grid-column:span 12 / span 12;grid-row:auto;}
#node-block_cdd00ffe{width:auto;padding-top:24px;padding-right:24px;padding-bottom:24px;padding-left:24px;background:rgba(230, 230, 230, 0);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;}
#node-button_51cca818{display:inline;padding-top:25px;padding-right:40px;padding-bottom:25px;padding-left:40px;background:#ffffff;color:#000000;width:100%;float:left;margin-top:16px;font-size:2r;align-self:stretch;text-align:center;border-radius:100px;font-family:Outfit;font-weight:600;text-transform:none;line-height:1.1;letter-spacing:0;border-width:4px;border:4px solid #db0000;border-style:solid;border-color:#db0000;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:#fff8f2;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;max-width:100%;}
#node-block_d4ed9620{width:100%;padding-top:24px;padding-right:24px;padding-bottom:24px;padding-left:24px;background:#ffffff;position:relative;float:left;display:grid;grid-template-columns:repeat(12, minmax(0, 1fr));gap:1rem;max-width:100%;}
#node-text_0a42b548{font-family:Outfit;font-size:clamp(2.2rem, 4vw, 3.8rem);line-height:1.02;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:rgba(230, 230, 230, 0);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;}
#node-button_f43cdd97{display:inline;padding-top:25px;padding-right:40px;padding-bottom:25px;padding-left:40px;background:#ffffff;color:#000000;font-family:Outfit;font-size:1rem;font-weight:600;line-height:1.1;letter-spacing:0;text-transform:none;position:relative;text-align:center;float:left;width:100%;margin-top:16px;border-radius:100px;border-width:4px;border-style:solid;border-color:#db0000;border:4px solid #db0000;align-self:stretch;max-width:100%;}
#node-section_d92afeb9{width:100%;padding-top:48px;padding-right:48px;padding-bottom:48px;padding-left:48px;background:#fffdf9;position:relative;height:151px;min-height:500px;background-image:linear-gradient(rgba(0, 0, 0, 0.43), rgba(0, 0, 0, 0.43)), url(https://images.pexels.com/photos/5792861/pexels-photo-5792861.jpeg?auto=compress&cs=tinysrgb&dpr=2&h=650&w=940);background-size:cover;background-position:center center;background-repeat:no-repeat;display:grid;grid-template-columns:repeat(12, minmax(0, 1fr));gap:1rem;max-width:100%;}
#node-block_483b7695{width:auto;padding-top:24px;padding-right:24px;padding-bottom:24px;padding-left:24px;background:rgba(230, 230, 230, 0);position:relative;float:left;grid-column:span 12 / span 12;max-width:none;min-width:0;justify-self:stretch;display:flex;flex-direction:row;flex-wrap:wrap;gap:16px;align-items:flex-end;justify-content:space-between;}
#node-text_4cd499f3{font-family:Outfit;font-size:1.95rem;line-height:1.08;color:#ffffff;max-width:none;position:relative;font-weight:700;text-transform:none;letter-spacing:-0.02em;width:1164px;float:left;flex-basis:1164px;text-align:center;}
#node-section_73e3aab9{width:100%;padding-top:48px;padding-right:48px;padding-bottom:48px;padding-left:48px;background:#fffdf9;position:relative;height:100%;display:grid;grid-template-columns:repeat(12, minmax(0, 1fr));gap:1rem;max-width:100%;}
#node-block_1f375a73{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;}
#node-block_e2993156{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_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: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;display:grid;grid-template-columns:repeat(12, minmax(0, 1fr));gap:1rem;}
#node-text_86c47bba{font-family:Outfit;font-size:1.95rem;line-height:1.08;color:#6b7280;max-width:none;position:relative;font-weight:700;text-transform:none;letter-spacing:-0.02em;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;}
}

@media (max-width: 1279px) {
#node-section_d3086f8c{width:100%;min-height:100%;padding-top:3.22rem;padding-right:4vw;padding-bottom:3.68rem;padding-left:4vw;background:#ffffff;display:grid;gap:1.15rem;color:#151515;border-bottom:1px solid #ebe5dc;grid-template-columns:1.05fr 0.95fr;align-items:center;height:100vh;align-content:flex-start;background-image:linear-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, 0)), url(https://prime-el-rebuild.ewr1.vultrobjects.com/projects/aloraweb/ec5978b3-52a9-4ba5-a263-d732cb8bc202-create_a_premium_202604171933.jpeg);background-size:auto;background-position:center center;background-repeat:no-repeat;max-width:100%;}
#node-block_c00d8ea3{width:auto;padding-top:4.6px;padding-right:4.6px;padding-bottom:4.6px;padding-left:4.6px;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(3, minmax(0, 1fr));gap:0.92rem;}
#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;background:rgba(255, 255, 255, 0);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:clamp(2.4rem, 5vw, 4rem);line-height:1;color:#fa1e1e;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:clamp(2.4rem, 5vw, 4rem);line-height:1;color:#000000;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.04em;display:block;height:auto;width:664px;padding-right:0px;}
#node-text_ca58eb4c{font-family:Source Sans 3;font-size:0.92rem;line-height:1.7;color:#000000;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:#fff8f2;border:1px solid #a1442a;border-radius:999px;max-width:100%;}
#node-button_e1898f72{display:inline-flex;padding-top:0.718rem;padding-right:1.196rem;padding-bottom:0.718rem;padding-left:1.196rem;background:transparent;color:#000000;border:3px solid #e04300;border-radius:999px;border-width:3px;border-style:solid;border-color:#e04300;max-width:100%;}
#node-section_0ad9704b{width:100%;min-height:220px;padding-top:1.38rem;padding-right:4vw;padding-bottom:1.38rem;padding-left:4vw;background:#000000;display:grid;gap:1.15rem;color:#f7efe7;border-bottom:1px solid #ebe5dc;justify-items:center;text-align:center;max-width:100%;}
#node-block_a4f05fcb{background:rgba(255, 250, 243, 0);color:#171411;border-color:#dccfbe;width:auto;min-height:140px;padding-top:22.08px;padding-right:24.84px;padding-bottom:22.08px;padding-left:22.08px;display:grid;gap:0.874rem;max-width:none;justify-self:stretch;grid-column:span 10 / span 10;min-width:0;}
#node-text_f4fe92c8{color:#ffffff;font-family:Outfit;font-size:clamp(2.4rem, 5vw, 4rem);line-height:1;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.04em;}
#node-section_63ec612b{width:100%;min-height:220px;padding-top:9.108rem;padding-right:4vw;padding-bottom:10.994rem;padding-left:4vw;display:grid;color:#151515;border-bottom:1px solid #ebe5dc;grid-template-columns:repeat(3, minmax(0, 1fr));gap:0.92rem;max-width:100%;}
#node-block_7b389877{width:auto;padding-top:0px;padding-right:0px;padding-bottom:22.08px;padding-left:0px;background:rgba(255, 255, 255, 0);position:relative;float:left;grid-column:span 6 / span 6;max-width:none;min-width:0;justify-self:stretch;}
#node-image_ec1e0e25{width:100%;object-fit:cover;position:relative;float:left;margin-left:0.5%;margin-top:8.28px;background:#ffffff;max-width:100%;height:auto;}
#node-image_768ebcb7{width:12%;object-fit:cover;position:absolute;float:left;margin-top:14.72px;max-width:none;left:110px;top:85px;height:62px;}
#node-image_59f888d6{width:14.5%;object-fit:cover;position:absolute;float:left;margin-top:14.72px;max-width:none;left:322px;top:77px;height:76px;}
#node-image_98c73b98{width:13%;object-fit:cover;position:absolute;float:left;margin-top:14.72px;max-width:none;left:241px;top:-31px;height:auto;}
#node-block_3fead6d8{width:auto;min-height:140px;padding-top:0px;padding-right:22.08px;padding-bottom:22.08px;padding-left:22.08px;background:rgba(255, 255, 255, 0);display:grid;gap:0.874rem;max-width:none;justify-self:stretch;grid-column:span 6 / span 6;min-width:0;align-content:center;}
#node-text_16dd7857{font-family:Outfit;font-size:clamp(1.9rem, 4vw, 3rem);line-height:1.05;color:#111827;max-width:16ch;font-weight:700;margin-bottom:0px;text-transform:none;letter-spacing:-0.03em;}
#node-text_26b6cf2b{font-family:Source Sans 3;font-size:1rem;line-height:1.72;color:#374151;max-width:64ch;font-weight:400;text-transform:none;letter-spacing:0;}
#node-section_b3b80cb3{width:100%;min-height:220px;padding-top:3.68rem;padding-right:4vw;padding-bottom:3.68rem;padding-left:4vw;background:#ff3131;display:grid;gap:1.15rem;color:#151515;border-bottom:1px solid #ebe5dc;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:rgba(255, 250, 243, 0);display:grid;gap:0.874rem;max-width:68rem;justify-self:start;height:auto;}
#node-text_2028cf49{font-family:Outfit;font-size:clamp(1.9rem, 4vw, 3rem);line-height:1.05;color:#ffffff;max-width:16ch;font-weight:700;text-transform:none;letter-spacing:-0.03em;}
#node-block_d0daf3a6{width:100%;min-height:140px;padding-top:22.08px;padding-right:22.08px;padding-bottom:22.08px;padding-left:22.08px;background:rgba(255, 255, 255, 0);display:grid;grid-template-columns:repeat(2, minmax(0, 1fr));gap:0.92rem;max-width:100%;}
#node-block_08c1c738{width:100%;min-height:140px;padding-top:22.08px;padding-right:22.08px;padding-bottom:22.08px;padding-left:22.08px;background:#000000;display:grid;gap:0.644rem;padding:1.104rem;border:1px solid #e7ddd1;border-radius:22px;box-shadow:0 12px 28px rgba(44, 31, 22, 0.06);max-width:100%;}
#node-text_a969e197{font-family:Outfit;font-size:clamp(1.9rem, 4vw, 3rem);line-height:1.05;color:#ffffff;max-width:none;font-weight:700;letter-spacing:-0.03em;text-transform:capitalize;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-block_59e2b1e4{width:100%;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.644rem;padding:1.104rem;border:1px solid rgba(177,77,49,0.28);border-radius:22px;box-shadow:0 18px 40px rgba(26, 20, 16, 0.14);max-width:100%;}
#node-text_07ac1710{font-family:Outfit;font-size:clamp(1.9rem, 4vw, 3rem);line-height:1.05;color:#000000;max-width:none;font-weight:700;letter-spacing:-0.03em;text-transform:capitalize;padding-bottom:0px;grid-column:span 12 / span 12;width:auto;min-width:0;justify-self:stretch;text-align:center;}
#node-image_022e3882{width:auto;object-fit:cover;position:relative;grid-column:span 11 / span 11;max-width:none;min-width:0;justify-self:stretch;height:auto;}
#node-text_4cb387a0{font-family:Source Sans 3;font-size:1rem;line-height:1.72;color:#374151;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;grid-row:auto;}
#node-section_619c0ca8{width:100%;min-height:220px;padding-top:3.68rem;padding-right:4vw;padding-bottom:3.68rem;padding-left:4vw;background:#ffffff;display:grid;color:#151515;border-bottom:1px solid #ebe5dc;grid-template-columns:repeat(3, minmax(0, 1fr));gap:0.92rem;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:clamp(1.9rem, 4vw, 3rem);line-height:1.05;color:#111827;max-width:16ch;font-weight:700;text-transform:none;letter-spacing:-0.03em;padding-bottom:0rem;margin-bottom:0rem;}
#node-text_9c0b1f1a{font-family:Inter;font-size:0.938rem;line-height:1.8;color:#5b5148;max-width:64ch;}
#node-block_79867a53{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;grid-column:5 / span 8;max-width:none;min-width:0;justify-self:stretch;grid-template-columns:repeat(3, minmax(0, 1fr));gap:0.92rem;grid-row:auto;}
#node-block_cafaa414{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: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:30.6rem;flex-direction:column;flex-wrap:wrap;gap:1.84px;align-items:center;justify-content:space-between;align-content:flex-start;border-width:4px;border-style:solid;border-color:#c20000;}
#node-image_c59305a1{width:50%;object-fit:cover;position:relative;margin-bottom:0%;max-width:none;height:auto;}
#node-text_c65ff8b7{font-family:Outfit;font-size:clamp(1.9rem, 4vw, 3rem);line-height:1.05;color:#111827;max-width:none;font-weight:700;text-transform:none;letter-spacing:-0.03em;width:284px;margin-top:0px;text-align:center;}
#node-block_205495f3{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: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:30.6rem;flex-direction:column;flex-wrap:wrap;gap:1.84px;align-items:center;justify-content:space-between;align-content:flex-start;border-width:4px;border-style:solid;border-color:#c20000;}
#node-image_bf85c80a{width:50%;object-fit:cover;position:relative;margin-bottom:0%;max-width:none;height:auto;}
#node-text_00f6fe9a{font-family:Outfit;font-size:clamp(1.9rem, 4vw, 3rem);line-height:1.05;color:#111827;max-width:none;font-weight:700;text-transform:none;letter-spacing:-0.03em;width:284px;margin-top:0px;text-align:center;}
#node-block_611c6898{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:4px solid #d10000;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:30.6rem;flex-direction:column;flex-wrap:wrap;gap:1.84px;align-items:center;justify-content:space-between;align-content:flex-start;border-width:4px;border-style:solid;border-color:#d10000;}
#node-image_7fdeeb70{width:50%;object-fit:cover;position:relative;margin-bottom:0%;max-width:none;height:auto;}
#node-text_2356d2cb{font-family:Outfit;font-size:clamp(1.9rem, 4vw, 3rem);line-height:1.05;color:#111827;max-width:none;font-weight:700;text-transform:none;letter-spacing:-0.03em;width:284px;margin-top:0px;text-align:center;}
#node-block_df969797{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:4px solid #d10000;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:30.6rem;flex-direction:column;flex-wrap:wrap;gap:1.84px;align-items:center;justify-content:space-between;align-content:flex-start;border-width:4px;border-style:solid;border-color:#d10000;}
#node-image_0a18613d{width:50%;object-fit:cover;position:relative;margin-bottom:0%;max-width:none;height:auto;}
#node-text_25cdd84d{font-family:Outfit;font-size:clamp(1.9rem, 4vw, 3rem);line-height:1.05;color:#111827;max-width:none;font-weight:700;text-transform:none;letter-spacing:-0.03em;width:284px;margin-top:0px;text-align:center;}
#node-section_3a57aca4{width:100%;min-height:220px;padding-top:3.68rem;padding-right:4vw;padding-bottom:3.68rem;padding-left:4vw;background:#fffafa;display:grid;gap:1.15rem;color:#151515;border-bottom:1px solid #ebe5dc;max-width:100%;}
#node-block_12111d04{width:auto;min-height:140px;padding-top:0px;padding-right:22.08px;padding-bottom:92px;padding-left:66.24px;background:rgba(255, 250, 243, 0);display:block;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;}
#node-text_3dee3335{font-family:Outfit;font-size:clamp(1.9rem, 4vw, 3rem);line-height:1.05;color:#111827;max-width:16ch;font-weight:700;text-transform:none;letter-spacing:-0.03em;margin-bottom:0rem;}
#node-text_415174b4{font-family:Outfit;font-size:clamp(1.9rem, 4vw, 3rem);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;}
#node-text_75b69449{font-family:Outfit;font-size:clamp(1.9rem, 4vw, 3rem);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;}
#node-text_6278963a{font-family:Outfit;font-size:clamp(1.9rem, 4vw, 3rem);line-height:1.05;color:#111827;max-width:16ch;font-weight:700;text-transform:none;letter-spacing:-0.03em;padding-top:0rem;margin-top:3.404rem;padding-bottom:0rem;margin-bottom:0rem;}
#node-text_7f196723{font-family:Outfit;font-size:clamp(1.9rem, 4vw, 3rem);line-height:1.05;color:#111827;max-width:16ch;font-weight:700;text-transform:none;letter-spacing:-0.03em;padding-top:0rem;margin-top:0rem;margin-bottom:0rem;}
#node-text_01831fdd{font-family:Outfit;font-size:clamp(1.9rem, 4vw, 3rem);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;}
#node-text_5cdb3c1a{font-family:Outfit;font-size:clamp(1.9rem, 4vw, 3rem);line-height:1.05;color:#111827;max-width:16ch;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;}
#node-text_63093879{font-family:Outfit;font-size:clamp(1.9rem, 4vw, 3rem);line-height:1.05;color:#111827;max-width:16ch;font-weight:700;text-transform:none;letter-spacing:-0.03em;padding-top:0rem;margin-top:0rem;margin-bottom:0rem;text-align:right;}
#node-text_53a2b603{font-family:Outfit;font-size:clamp(1.9rem, 4vw, 3rem);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;text-align:right;}
#node-section_ff5bc3e4{width:100%;min-height:220px;padding-top:3.68rem;padding-right:4vw;padding-bottom:3.68rem;padding-left:4vw;background:#ffffff;display:grid;gap:1.15rem;color:#151515;border-bottom:1px solid #ebe5dc;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(3, minmax(0, 1fr));gap:0.92rem;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:rgba(255, 253, 250, 0.1);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;border-color:#cc0000;row-gap:0rem;column-gap:0rem;max-width:100%;}
#node-image_a4c8b2b3{width:auto;object-fit:cover;position:relative;margin-bottom:0%;grid-column:4 / span 6;max-width:none;min-width:0;justify-self:stretch;grid-row:auto;height:auto;}
#node-text_11238b1b{font-family:Outfit;font-size:clamp(1.9rem, 4vw, 3rem);line-height:1.05;color:#111827;max-width:none;font-weight:700;text-transform:none;letter-spacing:-0.03em;text-align:center;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:Inter;font-size:0.883rem;line-height:1.75;color:#5b5148;max-width:none;grid-column:span 12 / span 12;width:auto;min-width:0;justify-self:stretch;text-align:center;}
#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:rgba(255, 253, 250, 0.1);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;border-color:#cc0000;row-gap:0rem;column-gap:0rem;max-width:100%;}
#node-image_21da9af0{width:auto;object-fit:cover;position:relative;margin-bottom:0%;grid-column:4 / span 6;max-width:none;min-width:0;justify-self:stretch;grid-row:auto;height:auto;}
#node-text_742b76ba{font-family:Outfit;font-size:clamp(1.9rem, 4vw, 3rem);line-height:1.05;color:#111827;max-width:none;font-weight:700;text-transform:none;letter-spacing:-0.03em;text-align:center;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:Inter;font-size:0.883rem;line-height:1.75;color:#5b5148;max-width:none;grid-column:span 12 / span 12;width:auto;min-width:0;justify-self:stretch;text-align:center;}
#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:rgba(255, 253, 250, 0.1);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;border-color:#cc0000;row-gap:0rem;column-gap:0rem;max-width:100%;}
#node-image_cd2476e9{width:auto;object-fit:cover;position:relative;margin-bottom:0%;grid-column:4 / span 6;max-width:none;min-width:0;justify-self:stretch;grid-row:auto;height:auto;}
#node-text_ebe8f9db{font-family:Outfit;font-size:clamp(1.9rem, 4vw, 3rem);line-height:1.05;color:#111827;max-width:none;font-weight:700;text-transform:none;letter-spacing:-0.03em;text-align:center;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:Inter;font-size:0.883rem;line-height:1.75;color:#5b5148;max-width:none;grid-column:span 12 / span 12;width:auto;min-width:0;justify-self:stretch;text-align:center;}
#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:rgba(255, 253, 250, 0.1);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;border-color:#cc0000;row-gap:0rem;column-gap:0rem;max-width:100%;}
#node-image_2e6f83ff{width:auto;object-fit:cover;position:relative;margin-bottom:0%;grid-column:4 / span 6;max-width:none;min-width:0;justify-self:stretch;grid-row:auto;height:auto;}
#node-text_691fa68a{font-family:Outfit;font-size:clamp(1.9rem, 4vw, 3rem);line-height:1.05;color:#111827;max-width:none;font-weight:700;text-transform:none;letter-spacing:-0.03em;text-align:center;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:Inter;font-size:0.883rem;line-height:1.75;color:#5b5148;max-width:none;grid-column:span 12 / span 12;width:auto;min-width:0;justify-self:stretch;text-align:center;}
#node-section_337a82da{width:100%;min-height:220px;padding-top:3.68rem;padding-right:4vw;padding-bottom:3.68rem;padding-left:4vw;background:#ffffff;display:grid;gap:1.15rem;color:#151515;border-bottom:1px solid #ebe5dc;max-width:100%;}
#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:rgba(202, 161, 104, 0);display:grid;gap:0.874rem;max-width:none;justify-self:stretch;grid-column:span 12 / span 12;min-width:0;}
#node-text_e3c90ffd{font-family:Outfit;font-size:clamp(1.9rem, 4vw, 3rem);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-bottom:0rem;}
#node-text_1a537d50{font-family:Outfit;font-size:clamp(1.9rem, 4vw, 3rem);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-top:0rem;margin-bottom:0rem;}
#node-text_f8406c65{font-family:Inter;font-size:0.938rem;line-height:1.8;color:#5b5148;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;}
#node-section_9d467696{width:100%;min-height:220px;padding-top:3.68rem;padding-right:4vw;padding-bottom:3.68rem;padding-left:4vw;background:#ffffff;display:grid;gap:1.15rem;color:#151515;border-bottom:1px solid #ebe5dc;max-width:100%;}
#node-block_0e4905bd{width:auto;min-height:140px;padding-top:22.08px;padding-right:22.08px;padding-bottom:111.32px;padding-left:22.08px;background:#ffffff;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;}
#node-text_1528e366{font-family:Outfit;font-size:clamp(1.9rem, 4vw, 3rem);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:clamp(1.9rem, 4vw, 3rem);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:clamp(1.9rem, 4vw, 3rem);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:clamp(1.9rem, 4vw, 3rem);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:clamp(1.9rem, 4vw, 3rem);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:clamp(1.9rem, 4vw, 3rem);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-section_a5362638{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:#151515;border-bottom:1px solid #ebe5dc;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;}
#node-text_59180b8b{font-family:Outfit;font-size:clamp(1.9rem, 4vw, 3rem);line-height:1.05;color:#ff1f1f;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:clamp(1.9rem, 4vw, 3rem);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:Inter;font-size:0.938rem;line-height:1.8;color:#8c8a87;max-width:64ch;margin-top:0rem;padding-top:0.828rem;grid-column:span 12 / span 12;grid-row:auto;}
#node-block_cdd00ffe{width:auto;padding-top:22.08px;padding-right:22.08px;padding-bottom:22.08px;padding-left:22.08px;background:rgba(230, 230, 230, 0);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;}
#node-button_51cca818{display:inline;padding-top:23px;padding-right:36.8px;padding-bottom:23px;padding-left:36.8px;background:#ffffff;color:#000000;width:100%;float:left;margin-top:14.72px;font-size:1.5re;align-self:stretch;text-align:center;border-radius:100px;font-family:Outfit;font-weight:600;text-transform:none;line-height:1.12;letter-spacing:0;border-width:4px;border:4px solid #db0000;border-style:solid;border-color:#db0000;max-width:100%;}
#node-section_a549de91{width:100%;padding-top:3.68rem;padding-right:4vw;padding-bottom:3.68rem;padding-left:4vw;display:grid;gap:1.15rem;color:#fff8f2;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;max-width:100%;}
#node-block_d4ed9620{width:100%;padding-top:22.08px;padding-right:22.08px;padding-bottom:22.08px;padding-left:22.08px;background:#ffffff;position:relative;float:left;display:grid;grid-template-columns:repeat(3, minmax(0, 1fr));gap:0.92rem;max-width:100%;}
#node-text_0a42b548{font-family:Outfit;font-size:clamp(1.9rem, 4vw, 3rem);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:22.08px;padding-right:22.08px;padding-bottom:22.08px;padding-left:22.08px;background:rgba(230, 230, 230, 0);position:relative;float:left;display:flex;min-width:0;max-width:none;border-radius:4px;gap:14.72px;flex-direction:row;flex-wrap:wrap;justify-content:center;align-items:stretch;grid-column:5 / span 4;grid-row:auto;justify-self:stretch;}
#node-button_f43cdd97{display:inline;padding-top:23px;padding-right:36.8px;padding-bottom:23px;padding-left:36.8px;background:#ffffff;color:#000000;font-family:Outfit;font-size:1.84rem;font-weight:600;line-height:1.1;letter-spacing:0;text-transform:none;position:relative;text-align:center;float:left;width:100%;margin-top:14.72px;border-radius:100px;border-width:4px;border-style:solid;border-color:#db0000;border:4px solid #db0000;align-self:stretch;max-width:100%;}
#node-section_d92afeb9{width:100%;padding-top:44.16px;padding-right:44.16px;padding-bottom:44.16px;padding-left:44.16px;background:#fffdf9;position:relative;height:151px;min-height:500px;background-image:linear-gradient(rgba(0, 0, 0, 0.43), rgba(0, 0, 0, 0.43)), url(https://images.pexels.com/photos/5792861/pexels-photo-5792861.jpeg?auto=compress&cs=tinysrgb&dpr=2&h=650&w=940);background-size:cover;background-position:center center;background-repeat:no-repeat;display:grid;grid-template-columns:repeat(3, minmax(0, 1fr));gap:0.92rem;max-width:100%;}
#node-block_483b7695{width:auto;padding-top:22.08px;padding-right:22.08px;padding-bottom:22.08px;padding-left:22.08px;background:rgba(230, 230, 230, 0);position:relative;float:left;grid-column:span 12 / span 12;max-width:none;min-width:0;justify-self:stretch;display:flex;flex-direction:row;flex-wrap:wrap;gap:14.72px;align-items:flex-end;justify-content:space-between;}
#node-text_4cd499f3{font-family:Outfit;font-size:1.65rem;line-height:1.1;color:#ffffff;max-width:none;position:relative;font-weight:700;text-transform:none;letter-spacing:-0.02em;width:1164px;float:left;flex-basis:1164px;text-align:center;}
#node-section_73e3aab9{width:100%;padding-top:44.16px;padding-right:44.16px;padding-bottom:44.16px;padding-left:44.16px;background:#050505;position:relative;height:100%;display:grid;grid-template-columns:repeat(3, minmax(0, 1fr));gap:0.92rem;max-width:100%;}
#node-block_1f375a73{width:auto;padding-top:4.6px;padding-right:4.6px;padding-bottom:4.6px;padding-left:4.6px;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(3, minmax(0, 1fr));gap:0.92rem;}
#node-block_e2993156{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_8205bbea{width:100%;object-fit:contain;position:relative;float:left;height:auto;}
#node-block_d2bba89b{width:auto;padding-top:0px;padding-right:1.84px;padding-bottom:0px;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;display:grid;grid-template-columns:repeat(3, minmax(0, 1fr));gap:0.92rem;}
#node-text_86c47bba{font-family:Outfit;font-size:1.65rem;line-height:1.1;color:#6b7280;max-width:none;position:relative;font-weight:700;text-transform:none;letter-spacing:-0.02em;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;}
}

@media (max-width: 1023px) {
#node-section_d3086f8c{width:100%;min-height:100%;padding-top:2.87rem;padding-right:4vw;padding-bottom:3.28rem;padding-left:4vw;background:#ffffff;display:grid;gap:1.025rem;color:#151515;border-bottom:1px solid #ebe5dc;grid-template-columns:1fr;align-items:center;height:100vh;align-content:flex-start;background-image:linear-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, 0)), url(https://prime-el-rebuild.ewr1.vultrobjects.com/projects/aloraweb/ec5978b3-52a9-4ba5-a263-d732cb8bc202-create_a_premium_202604171933.jpeg);background-size:auto;background-position:center center;background-repeat:no-repeat;max-width:100%;}
#node-block_c00d8ea3{width:auto;padding-top:4.1px;padding-right:4.1px;padding-bottom:4.1px;padding-left:4.1px;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(2, minmax(0, 1fr));gap:0.82rem;}
#node-block_5ca17c20{width:auto;padding-top:1.64px;padding-right:1.64px;padding-bottom:1.64px;padding-left:1.64px;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.64px;padding-right:1.64px;padding-bottom:1.64px;padding-left:1.64px;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:19.68px;padding-right:19.68px;padding-bottom:19.68px;padding-left:19.68px;background:rgba(255, 255, 255, 0);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:2.2rem;line-height:1.04;color:#fa1e1e;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:2.2rem;line-height:1.04;color:#000000;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.04em;display:block;height:auto;width:664px;padding-right:0px;}
#node-text_ca58eb4c{font-family:Source Sans 3;font-size:0.82rem;line-height:1.7;color:#000000;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: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:#fff8f2;border:1px solid #a1442a;border-radius:999px;max-width:100%;}
#node-button_e1898f72{display:inline-flex;padding-top:0.64rem;padding-right:1.066rem;padding-bottom:0.64rem;padding-left:1.066rem;background:transparent;color:#000000;border:3px solid #e04300;border-radius:999px;border-width:3px;border-style:solid;border-color:#e04300;max-width:100%;}
#node-section_0ad9704b{width:100%;min-height:220px;padding-top:1.23rem;padding-right:4vw;padding-bottom:1.23rem;padding-left:4vw;background:#000000;display:grid;gap:1.025rem;color:#f7efe7;border-bottom:1px solid #ebe5dc;justify-items:center;text-align:center;max-width:100%;}
#node-block_a4f05fcb{background:rgba(255, 250, 243, 0);color:#171411;border-color:#dccfbe;width:auto;min-height:140px;padding-top:19.68px;padding-right:22.14px;padding-bottom:19.68px;padding-left:19.68px;display:grid;gap:0.779rem;max-width:none;justify-self:stretch;grid-column:span 10 / span 10;min-width:0;}
#node-text_f4fe92c8{color:#ffffff;font-family:Outfit;font-size:2.2rem;line-height:1.04;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.04em;}
#node-section_63ec612b{width:100%;min-height:220px;padding-top:8.118rem;padding-right:4vw;padding-bottom:9.799rem;padding-left:4vw;display:grid;color:#151515;border-bottom:1px solid #ebe5dc;grid-template-columns:repeat(2, minmax(0, 1fr));gap:0.82rem;max-width:100%;}
#node-block_7b389877{width:auto;padding-top:0px;padding-right:0px;padding-bottom:19.68px;padding-left:0px;background:rgba(255, 255, 255, 0);position:relative;float:left;grid-column:span 6 / span 6;max-width:none;min-width:0;justify-self:stretch;}
#node-image_ec1e0e25{width:100%;object-fit:cover;position:relative;float:left;margin-left:0.5%;margin-top:7.38px;background:#ffffff;max-width:100%;height:auto;}
#node-image_768ebcb7{width:12%;object-fit:cover;position:absolute;float:left;margin-top:13.12px;max-width:none;left:110px;top:85px;height:62px;}
#node-image_59f888d6{width:14.5%;object-fit:cover;position:absolute;float:left;margin-top:13.12px;max-width:none;left:322px;top:77px;height:76px;}
#node-image_98c73b98{width:13%;object-fit:cover;position:absolute;float:left;margin-top:13.12px;max-width:none;left:241px;top:-31px;height:auto;}
#node-block_3fead6d8{width:auto;min-height:140px;padding-top:0px;padding-right:19.68px;padding-bottom:19.68px;padding-left:19.68px;background:rgba(255, 255, 255, 0);display:grid;gap:0.779rem;max-width:none;justify-self:stretch;grid-column:span 6 / span 6;min-width:0;align-content:center;}
#node-text_16dd7857{font-family:Outfit;font-size:1.75rem;line-height:1.08;color:#111827;max-width:16ch;font-weight:700;margin-bottom:0px;text-transform:none;letter-spacing:-0.03em;}
#node-text_26b6cf2b{font-family:Source Sans 3;font-size:0.98rem;line-height:1.75;color:#374151;max-width:64ch;font-weight:400;text-transform:none;letter-spacing:0;}
#node-section_b3b80cb3{width:100%;min-height:220px;padding-top:3.28rem;padding-right:4vw;padding-bottom:3.28rem;padding-left:4vw;background:#ff3131;display:grid;gap:1.025rem;color:#151515;border-bottom:1px solid #ebe5dc;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:rgba(255, 250, 243, 0);display:grid;gap:0.779rem;max-width:68rem;justify-self:start;height:auto;}
#node-text_2028cf49{font-family:Outfit;font-size:1.75rem;line-height:1.08;color:#ffffff;max-width:16ch;font-weight:700;text-transform:none;letter-spacing:-0.03em;}
#node-block_d0daf3a6{width:100%;min-height:140px;padding-top:19.68px;padding-right:19.68px;padding-bottom:19.68px;padding-left:19.68px;background:rgba(255, 255, 255, 0);display:grid;grid-template-columns:repeat(2, minmax(0, 1fr));gap:0.82rem;max-width:100%;}
#node-block_08c1c738{width:100%;min-height:140px;padding-top:19.68px;padding-right:19.68px;padding-bottom:19.68px;padding-left:19.68px;background:#000000;display:grid;gap:0.574rem;padding:0.984rem;border:1px solid #e7ddd1;border-radius:22px;box-shadow:0 12px 28px rgba(44, 31, 22, 0.06);max-width:100%;}
#node-text_a969e197{font-family:Outfit;font-size:1.75rem;line-height:1.08;color:#ffffff;max-width:none;font-weight:700;letter-spacing:-0.03em;text-transform:capitalize;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-block_59e2b1e4{width:100%;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.574rem;padding:0.984rem;border:1px solid rgba(177,77,49,0.28);border-radius:22px;box-shadow:0 18px 40px rgba(26, 20, 16, 0.14);max-width:100%;}
#node-text_07ac1710{font-family:Outfit;font-size:1.75rem;line-height:1.08;color:#000000;max-width:none;font-weight:700;letter-spacing:-0.03em;text-transform:capitalize;padding-bottom:0px;grid-column:span 12 / span 12;width:auto;min-width:0;justify-self:stretch;text-align:center;}
#node-image_022e3882{width:auto;object-fit:cover;position:relative;grid-column:span 11 / span 11;max-width:none;min-width:0;justify-self:stretch;height:auto;}
#node-text_4cb387a0{font-family:Source Sans 3;font-size:0.98rem;line-height:1.75;color:#374151;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;grid-row:auto;}
#node-section_619c0ca8{width:100%;min-height:220px;padding-top:3.28rem;padding-right:4vw;padding-bottom:3.28rem;padding-left:4vw;background:#ffffff;display:grid;color:#151515;border-bottom:1px solid #ebe5dc;grid-template-columns:repeat(2, 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:1.75rem;line-height:1.08;color:#111827;max-width:16ch;font-weight:700;text-transform:none;letter-spacing:-0.03em;padding-bottom:0rem;margin-bottom:0rem;}
#node-text_9c0b1f1a{font-family:Inter;font-size:0.836rem;line-height:1.8;color:#5b5148;max-width:64ch;}
#node-block_79867a53{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;grid-column:5 / span 8;max-width:none;min-width:0;justify-self:stretch;grid-template-columns:repeat(2, minmax(0, 1fr));gap:0.82rem;grid-row:auto;}
#node-block_cafaa414{width:auto;min-height:100%;padding-top:19.68px;padding-right:19.68px;padding-bottom:19.68px;padding-left:19.68px;display:flex;padding:0.984rem;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:30.6rem;flex-direction:column;flex-wrap:wrap;gap:1.64px;align-items:center;justify-content:space-between;align-content:flex-start;border-width:4px;border-style:solid;border-color:#c20000;}
#node-image_c59305a1{width:50%;object-fit:cover;position:relative;margin-bottom:0%;max-width:none;height:auto;}
#node-text_c65ff8b7{font-family:Outfit;font-size:1.75rem;line-height:1.08;color:#111827;max-width:none;font-weight:700;text-transform:none;letter-spacing:-0.03em;width:284px;margin-top:0px;text-align:center;}
#node-block_205495f3{width:auto;min-height:100%;padding-top:19.68px;padding-right:19.68px;padding-bottom:19.68px;padding-left:19.68px;display:flex;padding:0.984rem;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:30.6rem;flex-direction:column;flex-wrap:wrap;gap:1.64px;align-items:center;justify-content:space-between;align-content:flex-start;border-width:4px;border-style:solid;border-color:#c20000;}
#node-image_bf85c80a{width:50%;object-fit:cover;position:relative;margin-bottom:0%;max-width:none;height:auto;}
#node-text_00f6fe9a{font-family:Outfit;font-size:1.75rem;line-height:1.08;color:#111827;max-width:none;font-weight:700;text-transform:none;letter-spacing:-0.03em;width:284px;margin-top:0px;text-align:center;}
#node-block_611c6898{width:auto;min-height:100%;padding-top:19.68px;padding-right:19.68px;padding-bottom:19.68px;padding-left:19.68px;display:flex;padding:0.984rem;border:4px solid #d10000;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:30.6rem;flex-direction:column;flex-wrap:wrap;gap:1.64px;align-items:center;justify-content:space-between;align-content:flex-start;border-width:4px;border-style:solid;border-color:#d10000;}
#node-image_7fdeeb70{width:50%;object-fit:cover;position:relative;margin-bottom:0%;max-width:none;height:auto;}
#node-text_2356d2cb{font-family:Outfit;font-size:1.75rem;line-height:1.08;color:#111827;max-width:none;font-weight:700;text-transform:none;letter-spacing:-0.03em;width:284px;margin-top:0px;text-align:center;}
#node-block_df969797{width:auto;min-height:100%;padding-top:19.68px;padding-right:19.68px;padding-bottom:19.68px;padding-left:19.68px;display:flex;padding:0.984rem;border:4px solid #d10000;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:30.6rem;flex-direction:column;flex-wrap:wrap;gap:1.64px;align-items:center;justify-content:space-between;align-content:flex-start;border-width:4px;border-style:solid;border-color:#d10000;}
#node-image_0a18613d{width:50%;object-fit:cover;position:relative;margin-bottom:0%;max-width:none;height:auto;}
#node-text_25cdd84d{font-family:Outfit;font-size:1.75rem;line-height:1.08;color:#111827;max-width:none;font-weight:700;text-transform:none;letter-spacing:-0.03em;width:284px;margin-top:0px;text-align:center;}
#node-section_3a57aca4{width:100%;min-height:220px;padding-top:3.28rem;padding-right:4vw;padding-bottom:3.28rem;padding-left:4vw;background:#fffafa;display:grid;gap:1.025rem;color:#151515;border-bottom:1px solid #ebe5dc;max-width:100%;}
#node-block_12111d04{width:auto;min-height:140px;padding-top:0px;padding-right:19.68px;padding-bottom:82px;padding-left:59.04px;background:rgba(255, 250, 243, 0);display:block;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;}
#node-text_3dee3335{font-family:Outfit;font-size:1.75rem;line-height:1.08;color:#111827;max-width:16ch;font-weight:700;text-transform:none;letter-spacing:-0.03em;margin-bottom:0rem;}
#node-text_415174b4{font-family:Outfit;font-size:1.75rem;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;}
#node-text_75b69449{font-family:Outfit;font-size:1.75rem;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;}
#node-text_6278963a{font-family:Outfit;font-size:1.75rem;line-height:1.08;color:#111827;max-width:16ch;font-weight:700;text-transform:none;letter-spacing:-0.03em;padding-top:0rem;margin-top:3.034rem;padding-bottom:0rem;margin-bottom:0rem;}
#node-text_7f196723{font-family:Outfit;font-size:1.75rem;line-height:1.08;color:#111827;max-width:16ch;font-weight:700;text-transform:none;letter-spacing:-0.03em;padding-top:0rem;margin-top:0rem;margin-bottom:0rem;}
#node-text_01831fdd{font-family:Outfit;font-size:1.75rem;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;}
#node-text_5cdb3c1a{font-family:Outfit;font-size:1.75rem;line-height:1.08;color:#111827;max-width:16ch;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;}
#node-text_63093879{font-family:Outfit;font-size:1.75rem;line-height:1.08;color:#111827;max-width:16ch;font-weight:700;text-transform:none;letter-spacing:-0.03em;padding-top:0rem;margin-top:0rem;margin-bottom:0rem;text-align:right;}
#node-text_53a2b603{font-family:Outfit;font-size:1.75rem;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;text-align:right;}
#node-section_ff5bc3e4{width:100%;min-height:220px;padding-top:3.28rem;padding-right:4vw;padding-bottom:3.28rem;padding-left:4vw;background:#ffffff;display:grid;gap:1.025rem;color:#151515;border-bottom:1px solid #ebe5dc;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;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:rgba(255, 253, 250, 0.1);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;border-color:#cc0000;row-gap:0rem;column-gap:0rem;max-width:100%;}
#node-image_a4c8b2b3{width:auto;object-fit:cover;position:relative;margin-bottom:0%;grid-column:4 / span 6;max-width:none;min-width:0;justify-self:stretch;grid-row:auto;height:auto;}
#node-text_11238b1b{font-family:Outfit;font-size:1.75rem;line-height:1.08;color:#111827;max-width:none;font-weight:700;text-transform:none;letter-spacing:-0.03em;text-align:center;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:Inter;font-size:0.787rem;line-height:1.75;color:#5b5148;max-width:none;grid-column:span 12 / span 12;width:auto;min-width:0;justify-self:stretch;text-align:center;}
#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:rgba(255, 253, 250, 0.1);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;border-color:#cc0000;row-gap:0rem;column-gap:0rem;max-width:100%;}
#node-image_21da9af0{width:auto;object-fit:cover;position:relative;margin-bottom:0%;grid-column:4 / span 6;max-width:none;min-width:0;justify-self:stretch;grid-row:auto;height:auto;}
#node-text_742b76ba{font-family:Outfit;font-size:1.75rem;line-height:1.08;color:#111827;max-width:none;font-weight:700;text-transform:none;letter-spacing:-0.03em;text-align:center;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:Inter;font-size:0.787rem;line-height:1.75;color:#5b5148;max-width:none;grid-column:span 12 / span 12;width:auto;min-width:0;justify-self:stretch;text-align:center;}
#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:rgba(255, 253, 250, 0.1);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;border-color:#cc0000;row-gap:0rem;column-gap:0rem;max-width:100%;}
#node-image_cd2476e9{width:auto;object-fit:cover;position:relative;margin-bottom:0%;grid-column:4 / span 6;max-width:none;min-width:0;justify-self:stretch;grid-row:auto;height:auto;}
#node-text_ebe8f9db{font-family:Outfit;font-size:1.75rem;line-height:1.08;color:#111827;max-width:none;font-weight:700;text-transform:none;letter-spacing:-0.03em;text-align:center;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:Inter;font-size:0.787rem;line-height:1.75;color:#5b5148;max-width:none;grid-column:span 12 / span 12;width:auto;min-width:0;justify-self:stretch;text-align:center;}
#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:rgba(255, 253, 250, 0.1);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;border-color:#cc0000;row-gap:0rem;column-gap:0rem;max-width:100%;}
#node-image_2e6f83ff{width:auto;object-fit:cover;position:relative;margin-bottom:0%;grid-column:4 / span 6;max-width:none;min-width:0;justify-self:stretch;grid-row:auto;height:auto;}
#node-text_691fa68a{font-family:Outfit;font-size:1.75rem;line-height:1.08;color:#111827;max-width:none;font-weight:700;text-transform:none;letter-spacing:-0.03em;text-align:center;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:Inter;font-size:0.787rem;line-height:1.75;color:#5b5148;max-width:none;grid-column:span 12 / span 12;width:auto;min-width:0;justify-self:stretch;text-align:center;}
#node-section_337a82da{width:100%;min-height:220px;padding-top:3.28rem;padding-right:4vw;padding-bottom:3.28rem;padding-left:4vw;background:#ffffff;display:grid;gap:1.025rem;color:#151515;border-bottom:1px solid #ebe5dc;max-width:100%;}
#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:rgba(202, 161, 104, 0);display:grid;gap:0.779rem;max-width:none;justify-self:stretch;grid-column:span 12 / span 12;min-width:0;}
#node-text_e3c90ffd{font-family:Outfit;font-size:1.75rem;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-bottom:0rem;}
#node-text_1a537d50{font-family:Outfit;font-size:1.75rem;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-top:0rem;margin-bottom:0rem;}
#node-text_f8406c65{font-family:Inter;font-size:0.836rem;line-height:1.8;color:#5b5148;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;}
#node-section_9d467696{width:100%;min-height:220px;padding-top:3.28rem;padding-right:4vw;padding-bottom:3.28rem;padding-left:4vw;background:#ffffff;display:grid;gap:1.025rem;color:#151515;border-bottom:1px solid #ebe5dc;max-width:100%;}
#node-block_0e4905bd{width:auto;min-height:140px;padding-top:19.68px;padding-right:19.68px;padding-bottom:99.22px;padding-left:19.68px;background:#ffffff;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;}
#node-text_1528e366{font-family:Outfit;font-size:1.75rem;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:1.75rem;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:1.75rem;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:1.75rem;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:1.75rem;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:1.75rem;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-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:#151515;border-bottom:1px solid #ebe5dc;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;}
#node-text_59180b8b{font-family:Outfit;font-size:1.75rem;line-height:1.08;color:#ff1f1f;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:1.75rem;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:Inter;font-size:0.836rem;line-height:1.8;color:#8c8a87;max-width:64ch;margin-top:0rem;padding-top:0.738rem;grid-column:span 12 / span 12;grid-row:auto;}
#node-block_cdd00ffe{width:auto;padding-top:19.68px;padding-right:19.68px;padding-bottom:19.68px;padding-left:19.68px;background:rgba(230, 230, 230, 0);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;}
#node-button_51cca818{display:inline;padding-top:20.5px;padding-right:32.8px;padding-bottom:20.5px;padding-left:32.8px;background:#ffffff;color:#000000;width:100%;float:left;margin-top:13.12px;font-size:0.92rem;align-self:stretch;text-align:center;border-radius:100px;font-family:Outfit;font-weight:600;text-transform:none;line-height:1.16;letter-spacing:0;border-width:4px;border:4px solid #db0000;border-style:solid;border-color:#db0000;max-width:100%;}
#node-section_a549de91{width:100%;padding-top:3.28rem;padding-right:4vw;padding-bottom:3.28rem;padding-left:4vw;display:grid;gap:1.025rem;color:#fff8f2;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;max-width:100%;}
#node-block_d4ed9620{width:100%;padding-top:19.68px;padding-right:19.68px;padding-bottom:19.68px;padding-left:19.68px;background:#ffffff;position:relative;float:left;display:grid;grid-template-columns:repeat(2, minmax(0, 1fr));gap:0.82rem;max-width:100%;}
#node-text_0a42b548{font-family:Outfit;font-size:1.75rem;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:19.68px;padding-right:19.68px;padding-bottom:19.68px;padding-left:19.68px;background:rgba(230, 230, 230, 0);position:relative;float:left;display:flex;min-width:0;max-width:none;border-radius:4px;gap:13.12px;flex-direction:row;flex-wrap:wrap;justify-content:center;align-items:stretch;grid-column:5 / span 4;grid-row:auto;justify-self:stretch;}
#node-button_f43cdd97{display:inline;padding-top:20.5px;padding-right:32.8px;padding-bottom:20.5px;padding-left:32.8px;background:#ffffff;color:#000000;font-family:Outfit;font-size:1.64rem;font-weight:600;line-height:1.1;letter-spacing:0;text-transform:none;position:relative;text-align:center;float:left;width:100%;margin-top:13.12px;border-radius:100px;border-width:4px;border-style:solid;border-color:#db0000;border:4px solid #db0000;align-self:stretch;max-width:100%;}
#node-section_d92afeb9{width:100%;padding-top:39.36px;padding-right:39.36px;padding-bottom:39.36px;padding-left:39.36px;background:#fffdf9;position:relative;height:151px;min-height:500px;background-image:linear-gradient(rgba(0, 0, 0, 0.43), rgba(0, 0, 0, 0.43)), url(https://images.pexels.com/photos/5792861/pexels-photo-5792861.jpeg?auto=compress&cs=tinysrgb&dpr=2&h=650&w=940);background-size:cover;background-position:center center;background-repeat:no-repeat;display:grid;grid-template-columns:repeat(2, minmax(0, 1fr));gap:0.82rem;max-width:100%;}
#node-block_483b7695{width:auto;padding-top:19.68px;padding-right:19.68px;padding-bottom:19.68px;padding-left:19.68px;background:rgba(230, 230, 230, 0);position:relative;float:left;grid-column:span 12 / span 12;max-width:none;min-width:0;justify-self:stretch;display:flex;flex-direction:row;flex-wrap:wrap;gap:13.12px;align-items:flex-end;justify-content:space-between;}
#node-text_4cd499f3{font-family:Outfit;font-size:1.45rem;line-height:1.14;color:#ffffff;max-width:none;position:relative;font-weight:700;text-transform:none;letter-spacing:-0.02em;width:1164px;float:left;flex-basis:1164px;text-align:center;}
#node-section_73e3aab9{width:100%;padding-top:39.36px;padding-right:39.36px;padding-bottom:39.36px;padding-left:39.36px;background:#050505;position:relative;height:100%;display:grid;grid-template-columns:repeat(2, minmax(0, 1fr));gap:0.82rem;max-width:100%;}
#node-block_1f375a73{width:auto;padding-top:4.1px;padding-right:4.1px;padding-bottom:4.1px;padding-left:4.1px;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(2, minmax(0, 1fr));gap:0.82rem;}
#node-block_e2993156{width:auto;padding-top:1.64px;padding-right:1.64px;padding-bottom:1.64px;padding-left:1.64px;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_8205bbea{width:100%;object-fit:contain;position:relative;float:left;height:auto;}
#node-block_d2bba89b{width:auto;padding-top:0px;padding-right:1.64px;padding-bottom:0px;padding-left:1.64px;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;display:grid;grid-template-columns:repeat(2, minmax(0, 1fr));gap:0.82rem;}
#node-text_86c47bba{font-family:Outfit;font-size:1.45rem;line-height:1.14;color:#6b7280;max-width:none;position:relative;font-weight:700;text-transform:none;letter-spacing:-0.02em;width:auto;float:left;grid-column:span 12 / span 12;min-width:0;justify-self:stretch;text-align:right;grid-row:auto;margin-top:0.984rem;}
}

@media (max-width: 767px) {
#node-section_d3086f8c{width:100%;min-height:100%;padding-top:2.52rem;padding-right:4vw;padding-bottom:2.88rem;padding-left:4vw;background:#ffffff;display:grid;gap:0.9rem;color:#151515;border-bottom:1px solid #ebe5dc;grid-template-columns:1.05fr 0.95fr;align-items:center;height:100vh;align-content:flex-start;background-image:linear-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, 0)), url(https://prime-el-rebuild.ewr1.vultrobjects.com/projects/aloraweb/ec5978b3-52a9-4ba5-a263-d732cb8bc202-create_a_premium_202604171933.jpeg);background-size:auto;background-position:center center;background-repeat:no-repeat;max-width:100%;}
#node-block_c00d8ea3{width:auto;padding-top:3.6px;padding-right:3.6px;padding-bottom:3.6px;padding-left:3.6px;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(1, minmax(0, 1fr));gap:0.72rem;}
#node-block_5ca17c20{width:auto;padding-top:1.44px;padding-right:1.44px;padding-bottom:1.44px;padding-left:1.44px;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.44px;padding-right:1.44px;padding-bottom:1.44px;padding-left:1.44px;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:17.28px;padding-right:17.28px;padding-bottom:17.28px;padding-left:17.28px;background:rgba(255, 255, 255, 0);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:1.85rem;line-height:1.08;color:#fa1e1e;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:1.85rem;line-height:1.08;color:#000000;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.04em;display:block;height:auto;width:664px;padding-right:0px;}
#node-text_ca58eb4c{font-family:Source Sans 3;font-size:0.72rem;line-height:1.7;color:#000000;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: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:#fff8f2;border:1px solid #a1442a;border-radius:999px;max-width:100%;}
#node-button_e1898f72{display:inline-flex;padding-top:0.562rem;padding-right:0.936rem;padding-bottom:0.562rem;padding-left:0.936rem;background:transparent;color:#000000;border:3px solid #e04300;border-radius:999px;border-width:3px;border-style:solid;border-color:#e04300;max-width:100%;}
#node-section_0ad9704b{width:100%;min-height:220px;padding-top:1.08rem;padding-right:4vw;padding-bottom:1.08rem;padding-left:4vw;background:#000000;display:grid;gap:0.9rem;color:#f7efe7;border-bottom:1px solid #ebe5dc;justify-items:center;text-align:center;max-width:100%;}
#node-block_a4f05fcb{background:rgba(255, 250, 243, 0);color:#171411;border-color:#dccfbe;width:auto;min-height:140px;padding-top:17.28px;padding-right:19.44px;padding-bottom:17.28px;padding-left:17.28px;display:grid;gap:0.684rem;max-width:none;justify-self:stretch;grid-column:span 10 / span 10;min-width:0;}
#node-text_f4fe92c8{color:#ffffff;font-family:Outfit;font-size:1.85rem;line-height:1.08;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.04em;}
#node-section_63ec612b{width:100%;min-height:220px;padding-top:7.128rem;padding-right:4vw;padding-bottom:8.604rem;padding-left:4vw;display:grid;color:#151515;border-bottom:1px solid #ebe5dc;grid-template-columns:repeat(1, minmax(0, 1fr));gap:0.72rem;max-width:100%;}
#node-block_7b389877{width:auto;padding-top:0px;padding-right:0px;padding-bottom:17.28px;padding-left:0px;background:rgba(255, 255, 255, 0);position:relative;float:left;grid-column:span 6 / span 6;max-width:none;min-width:0;justify-self:stretch;}
#node-image_ec1e0e25{width:100%;object-fit:cover;position:relative;float:left;margin-left:0.5%;margin-top:6.48px;background:#ffffff;max-width:100%;height:auto;}
#node-image_768ebcb7{width:12%;object-fit:cover;position:absolute;float:left;margin-top:11.52px;max-width:none;left:110px;top:85px;height:62px;}
#node-image_59f888d6{width:14.5%;object-fit:cover;position:absolute;float:left;margin-top:11.52px;max-width:none;left:322px;top:77px;height:76px;}
#node-image_98c73b98{width:13%;object-fit:cover;position:absolute;float:left;margin-top:11.52px;max-width:none;left:241px;top:-31px;height:auto;}
#node-block_3fead6d8{width:auto;min-height:140px;padding-top:0px;padding-right:17.28px;padding-bottom:17.28px;padding-left:17.28px;background:rgba(255, 255, 255, 0);display:grid;gap:0.684rem;max-width:none;justify-self:stretch;grid-column:span 6 / span 6;min-width:0;align-content:center;}
#node-text_16dd7857{font-family:Outfit;font-size:1.5rem;line-height:1.12;color:#111827;max-width:16ch;font-weight:700;margin-bottom:0px;text-transform:none;letter-spacing:-0.03em;}
#node-text_26b6cf2b{font-family:Source Sans 3;font-size:0.95rem;line-height:1.78;color:#374151;max-width:64ch;font-weight:400;text-transform:none;letter-spacing:0;}
#node-section_b3b80cb3{width:100%;min-height:220px;padding-top:2.88rem;padding-right:4vw;padding-bottom:2.88rem;padding-left:4vw;background:#ff3131;display:grid;gap:0.9rem;color:#151515;border-bottom:1px solid #ebe5dc;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:rgba(255, 250, 243, 0);display:grid;gap:0.684rem;max-width:68rem;justify-self:start;height:auto;}
#node-text_2028cf49{font-family:Outfit;font-size:1.5rem;line-height:1.12;color:#ffffff;max-width:16ch;font-weight:700;text-transform:none;letter-spacing:-0.03em;}
#node-block_d0daf3a6{width:100%;min-height:140px;padding-top:17.28px;padding-right:17.28px;padding-bottom:17.28px;padding-left:17.28px;background:rgba(255, 255, 255, 0);display:grid;grid-template-columns:1fr;gap:0.72rem;max-width:100%;}
#node-block_08c1c738{width:100%;min-height:140px;padding-top:17.28px;padding-right:17.28px;padding-bottom:17.28px;padding-left:17.28px;background:#000000;display:grid;gap:0.504rem;padding:0.864rem;border:1px solid #e7ddd1;border-radius:22px;box-shadow:0 12px 28px rgba(44, 31, 22, 0.06);max-width:100%;}
#node-text_a969e197{font-family:Outfit;font-size:1.5rem;line-height:1.12;color:#ffffff;max-width:none;font-weight:700;letter-spacing:-0.03em;text-transform:capitalize;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-block_59e2b1e4{width:100%;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.504rem;padding:0.864rem;border:1px solid rgba(177,77,49,0.28);border-radius:22px;box-shadow:0 18px 40px rgba(26, 20, 16, 0.14);max-width:100%;}
#node-text_07ac1710{font-family:Outfit;font-size:1.5rem;line-height:1.12;color:#000000;max-width:none;font-weight:700;letter-spacing:-0.03em;text-transform:capitalize;padding-bottom:0px;grid-column:span 12 / span 12;width:auto;min-width:0;justify-self:stretch;text-align:center;}
#node-image_022e3882{width:auto;object-fit:cover;position:relative;grid-column:span 11 / span 11;max-width:none;min-width:0;justify-self:stretch;height:auto;}
#node-text_4cb387a0{font-family:Source Sans 3;font-size:0.95rem;line-height:1.78;color:#374151;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;grid-row:auto;}
#node-section_619c0ca8{width:100%;min-height:220px;padding-top:2.88rem;padding-right:4vw;padding-bottom:2.88rem;padding-left:4vw;background:#ffffff;display:grid;color:#151515;border-bottom:1px solid #ebe5dc;grid-template-columns:repeat(1, 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:17.28px;padding-right:17.28px;padding-bottom:17.28px;padding-left:17.28px;background:rgba(255, 250, 243, 0);display:grid;gap:0.684rem;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:1.5rem;line-height:1.12;color:#111827;max-width:16ch;font-weight:700;text-transform:none;letter-spacing:-0.03em;padding-bottom:0rem;margin-bottom:0rem;}
#node-text_9c0b1f1a{font-family:Inter;font-size:0.734rem;line-height:1.8;color:#5b5148;max-width:64ch;}
#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:5 / span 8;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: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:30.6rem;flex-direction:column;flex-wrap:wrap;gap:1.44px;align-items:center;justify-content:space-between;align-content:flex-start;border-width:4px;border-style:solid;border-color:#c20000;}
#node-image_c59305a1{width:50%;object-fit:cover;position:relative;margin-bottom:0%;max-width:none;height:auto;}
#node-text_c65ff8b7{font-family:Outfit;font-size:1.5rem;line-height:1.12;color:#111827;max-width:none;font-weight:700;text-transform:none;letter-spacing:-0.03em;width:284px;margin-top:0px;text-align:center;}
#node-block_205495f3{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: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:30.6rem;flex-direction:column;flex-wrap:wrap;gap:1.44px;align-items:center;justify-content:space-between;align-content:flex-start;border-width:4px;border-style:solid;border-color:#c20000;}
#node-image_bf85c80a{width:50%;object-fit:cover;position:relative;margin-bottom:0%;max-width:none;height:auto;}
#node-text_00f6fe9a{font-family:Outfit;font-size:1.5rem;line-height:1.12;color:#111827;max-width:none;font-weight:700;text-transform:none;letter-spacing:-0.03em;width:284px;margin-top:0px;text-align:center;}
#node-block_611c6898{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:4px solid #d10000;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:30.6rem;flex-direction:column;flex-wrap:wrap;gap:1.44px;align-items:center;justify-content:space-between;align-content:flex-start;border-width:4px;border-style:solid;border-color:#d10000;}
#node-image_7fdeeb70{width:50%;object-fit:cover;position:relative;margin-bottom:0%;max-width:none;height:auto;}
#node-text_2356d2cb{font-family:Outfit;font-size:1.5rem;line-height:1.12;color:#111827;max-width:none;font-weight:700;text-transform:none;letter-spacing:-0.03em;width:284px;margin-top:0px;text-align:center;}
#node-block_df969797{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:4px solid #d10000;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:30.6rem;flex-direction:column;flex-wrap:wrap;gap:1.44px;align-items:center;justify-content:space-between;align-content:flex-start;border-width:4px;border-style:solid;border-color:#d10000;}
#node-image_0a18613d{width:50%;object-fit:cover;position:relative;margin-bottom:0%;max-width:none;height:auto;}
#node-text_25cdd84d{font-family:Outfit;font-size:1.5rem;line-height:1.12;color:#111827;max-width:none;font-weight:700;text-transform:none;letter-spacing:-0.03em;width:284px;margin-top:0px;text-align:center;}
#node-section_3a57aca4{width:100%;min-height:220px;padding-top:2.88rem;padding-right:4vw;padding-bottom:2.88rem;padding-left:4vw;background:#fffafa;display:grid;gap:0.9rem;color:#151515;border-bottom:1px solid #ebe5dc;max-width:100%;}
#node-block_12111d04{width:auto;min-height:140px;padding-top:0px;padding-right:17.28px;padding-bottom:72px;padding-left:51.84px;background:rgba(255, 250, 243, 0);display:block;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;}
#node-text_3dee3335{font-family:Outfit;font-size:1.5rem;line-height:1.12;color:#111827;max-width:16ch;font-weight:700;text-transform:none;letter-spacing:-0.03em;margin-bottom:0rem;}
#node-text_415174b4{font-family:Outfit;font-size:1.5rem;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;}
#node-text_75b69449{font-family:Outfit;font-size:1.5rem;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;}
#node-text_6278963a{font-family:Outfit;font-size:1.5rem;line-height:1.12;color:#111827;max-width:16ch;font-weight:700;text-transform:none;letter-spacing:-0.03em;padding-top:0rem;margin-top:2.664rem;padding-bottom:0rem;margin-bottom:0rem;}
#node-text_7f196723{font-family:Outfit;font-size:1.5rem;line-height:1.12;color:#111827;max-width:16ch;font-weight:700;text-transform:none;letter-spacing:-0.03em;padding-top:0rem;margin-top:0rem;margin-bottom:0rem;}
#node-text_01831fdd{font-family:Outfit;font-size:1.5rem;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;}
#node-text_5cdb3c1a{font-family:Outfit;font-size:1.5rem;line-height:1.12;color:#111827;max-width:16ch;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;}
#node-text_63093879{font-family:Outfit;font-size:1.5rem;line-height:1.12;color:#111827;max-width:16ch;font-weight:700;text-transform:none;letter-spacing:-0.03em;padding-top:0rem;margin-top:0rem;margin-bottom:0rem;text-align:right;}
#node-text_53a2b603{font-family:Outfit;font-size:1.5rem;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;text-align:right;}
#node-section_ff5bc3e4{width:100%;min-height:220px;padding-top:2.88rem;padding-right:4vw;padding-bottom:2.88rem;padding-left:4vw;background:#ffffff;display:grid;gap:0.9rem;color:#151515;border-bottom:1px solid #ebe5dc;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;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:rgba(255, 253, 250, 0.1);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;border-color:#cc0000;row-gap:0rem;column-gap:0rem;max-width:100%;}
#node-image_a4c8b2b3{width:auto;object-fit:cover;position:relative;margin-bottom:0%;grid-column:4 / span 6;max-width:none;min-width:0;justify-self:stretch;grid-row:auto;height:auto;}
#node-text_11238b1b{font-family:Outfit;font-size:1.5rem;line-height:1.12;color:#111827;max-width:none;font-weight:700;text-transform:none;letter-spacing:-0.03em;text-align:center;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:Inter;font-size:0.691rem;line-height:1.75;color:#5b5148;max-width:none;grid-column:span 12 / span 12;width:auto;min-width:0;justify-self:stretch;text-align:center;}
#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:rgba(255, 253, 250, 0.1);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;border-color:#cc0000;row-gap:0rem;column-gap:0rem;max-width:100%;}
#node-image_21da9af0{width:auto;object-fit:cover;position:relative;margin-bottom:0%;grid-column:4 / span 6;max-width:none;min-width:0;justify-self:stretch;grid-row:auto;height:auto;}
#node-text_742b76ba{font-family:Outfit;font-size:1.5rem;line-height:1.12;color:#111827;max-width:none;font-weight:700;text-transform:none;letter-spacing:-0.03em;text-align:center;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:Inter;font-size:0.691rem;line-height:1.75;color:#5b5148;max-width:none;grid-column:span 12 / span 12;width:auto;min-width:0;justify-self:stretch;text-align:center;}
#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:rgba(255, 253, 250, 0.1);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;border-color:#cc0000;row-gap:0rem;column-gap:0rem;max-width:100%;}
#node-image_cd2476e9{width:auto;object-fit:cover;position:relative;margin-bottom:0%;grid-column:4 / span 6;max-width:none;min-width:0;justify-self:stretch;grid-row:auto;height:auto;}
#node-text_ebe8f9db{font-family:Outfit;font-size:1.5rem;line-height:1.12;color:#111827;max-width:none;font-weight:700;text-transform:none;letter-spacing:-0.03em;text-align:center;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:Inter;font-size:0.691rem;line-height:1.75;color:#5b5148;max-width:none;grid-column:span 12 / span 12;width:auto;min-width:0;justify-self:stretch;text-align:center;}
#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:rgba(255, 253, 250, 0.1);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;border-color:#cc0000;row-gap:0rem;column-gap:0rem;max-width:100%;}
#node-image_2e6f83ff{width:auto;object-fit:cover;position:relative;margin-bottom:0%;grid-column:4 / span 6;max-width:none;min-width:0;justify-self:stretch;grid-row:auto;height:auto;}
#node-text_691fa68a{font-family:Outfit;font-size:1.5rem;line-height:1.12;color:#111827;max-width:none;font-weight:700;text-transform:none;letter-spacing:-0.03em;text-align:center;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:Inter;font-size:0.691rem;line-height:1.75;color:#5b5148;max-width:none;grid-column:span 12 / span 12;width:auto;min-width:0;justify-self:stretch;text-align:center;}
#node-section_337a82da{width:100%;min-height:220px;padding-top:2.88rem;padding-right:4vw;padding-bottom:2.88rem;padding-left:4vw;background:#ffffff;display:grid;gap:0.9rem;color:#151515;border-bottom:1px solid #ebe5dc;max-width:100%;}
#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:rgba(202, 161, 104, 0);display:grid;gap:0.684rem;max-width:none;justify-self:stretch;grid-column:span 12 / span 12;min-width:0;}
#node-text_e3c90ffd{font-family:Outfit;font-size:1.5rem;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-bottom:0rem;}
#node-text_1a537d50{font-family:Outfit;font-size:1.5rem;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-top:0rem;margin-bottom:0rem;}
#node-text_f8406c65{font-family:Inter;font-size:0.734rem;line-height:1.8;color:#5b5148;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;}
#node-section_9d467696{width:100%;min-height:220px;padding-top:2.88rem;padding-right:4vw;padding-bottom:2.88rem;padding-left:4vw;background:#ffffff;display:grid;gap:0.9rem;color:#151515;border-bottom:1px solid #ebe5dc;max-width:100%;}
#node-block_0e4905bd{width:auto;min-height:140px;padding-top:17.28px;padding-right:17.28px;padding-bottom:87.12px;padding-left:17.28px;background:#ffffff;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;}
#node-text_1528e366{font-family:Outfit;font-size:1.5rem;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:1.5rem;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:1.5rem;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:1.5rem;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:1.5rem;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:1.5rem;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-section_a5362638{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:#151515;border-bottom:1px solid #ebe5dc;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;}
#node-text_59180b8b{font-family:Outfit;font-size:1.5rem;line-height:1.12;color:#ff1f1f;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:1.5rem;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:Inter;font-size:0.734rem;line-height:1.8;color:#8c8a87;max-width:64ch;margin-top:0rem;padding-top:0.648rem;grid-column:span 12 / span 12;grid-row:auto;}
#node-block_cdd00ffe{width:auto;padding-top:17.28px;padding-right:17.28px;padding-bottom:17.28px;padding-left:17.28px;background:rgba(230, 230, 230, 0);position:relative;float:left;grid-column:9 / span 4;max-width:none;min-width:0;justify-self:stretch;grid-row:auto;display:flex;gap:11.52px;flex-direction:row;flex-wrap:wrap;align-items:stretch;justify-content:center;border-radius:4px;}
#node-button_51cca818{display:inline;padding-top:18px;padding-right:28.8px;padding-bottom:18px;padding-left:28.8px;background:#ffffff;color:#000000;width:100%;float:left;margin-top:11.52px;font-size:0.9rem;align-self:stretch;text-align:center;border-radius:100px;font-family:Outfit;font-weight:600;text-transform:none;line-height:1.2;letter-spacing:0;border-width:4px;border:4px solid #db0000;border-style:solid;border-color:#db0000;max-width:100%;}
#node-section_a549de91{width:100%;padding-top:2.88rem;padding-right:4vw;padding-bottom:2.88rem;padding-left:4vw;display:grid;gap:0.9rem;color:#fff8f2;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;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:#ffffff;position:relative;float:left;display:grid;grid-template-columns:repeat(1, minmax(0, 1fr));gap:0.72rem;max-width:100%;}
#node-text_0a42b548{font-family:Outfit;font-size:1.5rem;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:17.28px;padding-right:17.28px;padding-bottom:17.28px;padding-left:17.28px;background:rgba(230, 230, 230, 0);position:relative;float:left;display:flex;min-width:0;max-width:none;border-radius:4px;gap:11.52px;flex-direction:row;flex-wrap:wrap;justify-content:center;align-items:stretch;grid-column:5 / span 4;grid-row:auto;justify-self:stretch;}
#node-button_f43cdd97{display:inline;padding-top:18px;padding-right:28.8px;padding-bottom:18px;padding-left:28.8px;background:#ffffff;color:#000000;font-family:Outfit;font-size:1.44rem;font-weight:600;line-height:1.1;letter-spacing:0;text-transform:none;position:relative;text-align:center;float:left;width:100%;margin-top:11.52px;border-radius:100px;border-width:4px;border-style:solid;border-color:#db0000;border:4px solid #db0000;align-self:stretch;max-width:100%;}
#node-section_d92afeb9{width:100%;padding-top:34.56px;padding-right:34.56px;padding-bottom:34.56px;padding-left:34.56px;background:#fffdf9;position:relative;height:151px;min-height:500px;background-image:linear-gradient(rgba(0, 0, 0, 0.43), rgba(0, 0, 0, 0.43)), url(https://images.pexels.com/photos/5792861/pexels-photo-5792861.jpeg?auto=compress&cs=tinysrgb&dpr=2&h=650&w=940);background-size:cover;background-position:center center;background-repeat:no-repeat;display:grid;grid-template-columns:repeat(1, minmax(0, 1fr));gap:0.72rem;max-width:100%;}
#node-block_483b7695{width:auto;padding-top:17.28px;padding-right:17.28px;padding-bottom:17.28px;padding-left:17.28px;background:rgba(230, 230, 230, 0);position:relative;float:left;grid-column:span 12 / span 12;max-width:none;min-width:0;justify-self:stretch;display:flex;flex-direction:row;flex-wrap:wrap;gap:11.52px;align-items:flex-end;justify-content:space-between;}
#node-text_4cd499f3{font-family:Outfit;font-size:1.25rem;line-height:1.18;color:#ffffff;max-width:none;position:relative;font-weight:700;text-transform:none;letter-spacing:-0.02em;width:1164px;float:left;flex-basis:1164px;text-align:center;}
#node-section_73e3aab9{width:100%;padding-top:34.56px;padding-right:34.56px;padding-bottom:34.56px;padding-left:34.56px;background:#050505;position:relative;height:100%;display:grid;grid-template-columns:repeat(1, minmax(0, 1fr));gap:0.72rem;max-width:100%;}
#node-block_1f375a73{width:auto;padding-top:3.6px;padding-right:3.6px;padding-bottom:3.6px;padding-left:3.6px;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(1, minmax(0, 1fr));gap:0.72rem;}
#node-block_e2993156{width:auto;padding-top:1.44px;padding-right:1.44px;padding-bottom:1.44px;padding-left:1.44px;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_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: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;display:grid;grid-template-columns:repeat(1, minmax(0, 1fr));gap:0.72rem;}
#node-text_86c47bba{font-family:Outfit;font-size:1.25rem;line-height:1.18;color:#6b7280;max-width:none;position:relative;font-weight:700;text-transform:none;letter-spacing:-0.02em;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;}
}


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

    [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-tint {
      position: absolute;
      inset: 0;
      z-index: 1;
    }

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