
  /* Cliccando il selettore della lingua compariva un rettangolo azzurro di
     sistema: è il contorno di focus di Framer — la variabile
     --framer-focus-outline, impostata a 1px solid rgb(0,153,255) inline
     sull'elemento: per questo serve !important, una regola normale
     perderebbe contro lo stile inline.

     Non lo togliamo del tutto: chi naviga da tastiera deve pur vedere dov'è.
     Lo sostituiamo con un anello sottile, in tono con la navbar scura. */
  .framer-locale-picker select:focus-visible + .input {
    outline: 1px solid rgba(255, 255, 255, 0.45) !important;
    outline-offset: 2px !important;
    border-radius: inherit;
  }
  /* col mouse non serve nessun contorno */
  .framer-locale-picker select:focus:not(:focus-visible) + .input { outline: none !important; }


  /* ---- da 1200 px in su: navbar riorganizzata ---------------------- */
  @media (min-width: 1200px) {
    /* le voci vecchie escono di scena al primo disegno, senza JavaScript:
       cosi' la navbar non cambia sotto gli occhi dopo il caricamento */
    nav div:has(> p > a[href*="#come-funziona"]),
  nav div:has(> a[href*="#come-funziona"]),
  nav div:has(> p > a[href*="#chat"]),
  nav div:has(> a[href*="#chat"]),
  nav div:has(> p > a[href*="#risultati-fine"]),
  nav div:has(> a[href*="#risultati-fine"]),
  nav div:has(> p > a[href*="#funzionalit"]),
  nav div:has(> a[href*="#funzionalit"]),
  nav div:has(> p > a[href*="ranking"]),
  nav div:has(> a[href*="ranking"]) { display: none !important; }

    /* la striscia con le voci nuove: sta FUORI dalla navbar di Framer,
       sovrapposta. React non la conosce e non la cancella mai. */
    .fp-nav {
      position: fixed; top: 0; left: 0; right: 0; height: 65px;
      display: flex; align-items: center; justify-content: center; gap: 22px;
      z-index: 11;                 /* la navbar di Framer sta a 10 */
      pointer-events: none;        /* i clic passano alla navbar sotto... */
    }
    .fp-nav > * { pointer-events: auto; }   /* ...tranne che sulle voci */
  }
  @media (max-width: 1199.98px) { .fp-nav { display: none; } }

  .fp-voce {
    position: relative; display: inline-flex; align-items: center; gap: 5px;
    font-family: Inter, "Inter Placeholder", sans-serif;
    font-size: 15px; font-weight: 500; letter-spacing: -0.15px;
    color: #fff; text-decoration: none; background: none; border: 0;
    padding: 6px 2px; cursor: pointer; line-height: 1;
    opacity: .92; transition: opacity .18s ease;
  }
  .fp-voce:hover, .fp-voce[aria-expanded="true"] { opacity: 1; }
  .fp-voce svg { transition: transform .22s cubic-bezier(.2,.7,.3,1); opacity: .6; }
  .fp-voce[aria-expanded="true"] svg { transform: rotate(180deg); opacity: 1; }

  /* ---- il rettangolo ---------------------------------------------- */
  .fp-pannello {
    position: fixed; z-index: 2147483000;
    /* Niente backdrop-filter: la sfocatura dello sfondo e' fra le cose
       piu' costose che si possano chiedere a un browser, e su questa home
       — dove la scena 3D tiene occupata la GPU — faceva impiegare oltre
       due secondi a un'animazione da 160 ms. Misurato. Un fondo quasi
       opaco su una pagina nera rende praticamente uguale e non costa
       niente. */
    background: rgb(20, 20, 23);
    border: 1px solid rgba(255, 255, 255, .10);
    border-radius: 16px;
    box-shadow: 0 24px 60px -12px rgba(0, 0, 0, .7);
    padding: 18px; display: grid; gap: 18px;
    opacity: 0; transform: translateY(-8px) scale(.985);
    transform-origin: top center; pointer-events: none;
    transition: opacity .13s ease, transform .16s cubic-bezier(.2,.7,.3,1);
  }
  .fp-pannello.aperto { opacity: 1; transform: none; pointer-events: auto; }
  @media (prefers-reduced-motion: reduce) {
    .fp-pannello, .fp-voce svg { transition-duration: .01ms; }
  }

  .fp-col-eti {
    font-family: Inter, "Inter Placeholder", sans-serif;
    font-size: 11px; font-weight: 600; letter-spacing: .08em;
    text-transform: uppercase; color: rgba(255,255,255,.42);
    margin: 2px 0 10px 10px;
  }
  .fp-riga { display: block; text-decoration: none; padding: 9px 10px; border-radius: 10px; transition: background .16s ease; }
  .fp-riga:hover, .fp-riga:focus-visible { background: rgba(255,255,255,.06); outline: none; }
  .fp-riga-t { font-family: Inter, "Inter Placeholder", sans-serif; font-size: 14.5px; font-weight: 550; color: #fff; letter-spacing: -0.15px; }
  .fp-riga-d { font-family: Inter, "Inter Placeholder", sans-serif; font-size: 12.5px; color: rgba(255,255,255,.5); margin-top: 3px; line-height: 1.35; }
  .fp-evidenza {
    background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.07);
    border-radius: 12px; padding: 14px; min-width: 240px; text-decoration: none; display: block;
    transition: background .16s ease;
  }
  .fp-evidenza:hover { background: rgba(255,255,255,.07); }

  /* ---- pannello della lingua -------------------------------------- */
  .fp-lingue { padding: 8px; min-width: 190px; }
  .fp-lingua {
    display: flex; align-items: center; gap: 9px; width: 100%;
    padding: 9px 10px; border-radius: 10px; border: 0; background: none;
    color: #fff; cursor: pointer; text-align: left;
    font-family: Inter, "Inter Placeholder", sans-serif; font-size: 14px; font-weight: 500;
    transition: background .16s ease;
  }
  .fp-lingua:hover, .fp-lingua:focus-visible { background: rgba(255,255,255,.07); outline: none; }
  .fp-lingua[aria-current="true"] { background: rgba(255,255,255,.10); }
  .fp-lingua .sigla { font-size: 11px; font-weight: 600; letter-spacing: .06em; color: rgba(255,255,255,.45); margin-left: auto; }
  .framer-locale-picker select { pointer-events: none !important; }


  /* Scrollbar nascosta ma scroll pienamente funzionante:
     nessun overflow:hidden, solo la barra resa invisibile. */
  html { scrollbar-width: none; -ms-overflow-style: none; scrollbar-gutter: auto; }
  html::-webkit-scrollbar, body::-webkit-scrollbar { width: 0; height: 0; }
  html::-webkit-scrollbar-thumb, body::-webkit-scrollbar-thumb { background: transparent; }
  /* anche per i contenitori scrollabili interni (caroselli, tab) */
  [data-framer-component-type] ::-webkit-scrollbar { width: 0; height: 0; }

  /* ---- sfera 3D della hero ---- */
  iframe[src^="/_spline/"] {
    background: transparent;
    color-scheme: dark;

    /* Il mouse DEVE arrivare all'iframe: la scena ha gli occhi che seguono
       il cursore. Lo zoom sulla rotella non si toglie qui — toglierebbe
       anche il movimento del mouse — ma dentro la pagina in /_spline/,
       intercettando i soli eventi di scroll. Vedi orb-page.mjs. */
    pointer-events: auto;

    /* NB: la maschera che nasconde l'alone della scena sta dentro la pagina
       in /_spline/, sul <spline-viewer>. Applicata qui sull'iframe rompe la
       composizione WebGL e la sfera sparisce del tutto. */
  }

  /* L'email del footer era offuscata da Cloudflare con href="/cdn-cgi/…":
     ora è un vero mailto: e il browser le darebbe lo stile link di default.
     La riportiamo al colore del testo circostante, come nell'originale. */
  a.__cf_email__[href^="mailto:"] { color: inherit; text-decoration: inherit; }

/* latin-ext */
@font-face {
  font-family: 'Figtree';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url(/fonts/gstatic/_Xms-HUzqDCFdgfMm4q9DbZs.woff2) format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: 'Figtree';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url(/fonts/gstatic/_Xms-HUzqDCFdgfMm4S9DQ.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* latin-ext */
@font-face {
  font-family: 'Figtree';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url(/fonts/gstatic/_Xms-HUzqDCFdgfMm4q9DbZs.woff2) format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: 'Figtree';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url(/fonts/gstatic/_Xms-HUzqDCFdgfMm4S9DQ.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* cyrillic-ext */
@font-face {
  font-family: 'Inter Tight';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url(/fonts/gstatic/NGSnv5HMAFg6IuGlBNMjxJEL2VmU3NS7Z2mjPQ-aVi5SkK8.woff2) format('woff2');
  unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
}
/* cyrillic */
@font-face {
  font-family: 'Inter Tight';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url(/fonts/gstatic/NGSnv5HMAFg6IuGlBNMjxJEL2VmU3NS7Z2mjPQ-aXy5SkK8.woff2) format('woff2');
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
/* greek-ext */
@font-face {
  font-family: 'Inter Tight';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url(/fonts/gstatic/NGSnv5HMAFg6IuGlBNMjxJEL2VmU3NS7Z2mjPQ-aVy5SkK8.woff2) format('woff2');
  unicode-range: U+1F00-1FFF;
}
/* greek */
@font-face {
  font-family: 'Inter Tight';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url(/fonts/gstatic/NGSnv5HMAFg6IuGlBNMjxJEL2VmU3NS7Z2mjPQ-aWC5SkK8.woff2) format('woff2');
  unicode-range: U+0370-0377, U+037A-037F, U+0384-038A, U+038C, U+038E-03A1, U+03A3-03FF;
}
/* vietnamese */
@font-face {
  font-family: 'Inter Tight';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url(/fonts/gstatic/NGSnv5HMAFg6IuGlBNMjxJEL2VmU3NS7Z2mjPQ-aVC5SkK8.woff2) format('woff2');
  unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB;
}
/* latin-ext */
@font-face {
  font-family: 'Inter Tight';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url(/fonts/gstatic/NGSnv5HMAFg6IuGlBNMjxJEL2VmU3NS7Z2mjPQ-aVS5SkK8.woff2) format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: 'Inter Tight';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url(/fonts/gstatic/NGSnv5HMAFg6IuGlBNMjxJEL2VmU3NS7Z2mjPQ-aWy5S.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* cyrillic-ext */
@font-face {
  font-family: 'Onest';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url(/fonts/gstatic/gNMZW3F-SZuj7zOT0IfSjTS16cPh9R-puBtNcWU.woff2) format('woff2');
  unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
}
/* cyrillic */
@font-face {
  font-family: 'Onest';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url(/fonts/gstatic/gNMZW3F-SZuj7zOT0IfSjTS16cPh9R-psRtNcWU.woff2) format('woff2');
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
/* latin-ext */
@font-face {
  font-family: 'Onest';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url(/fonts/gstatic/gNMZW3F-SZuj7zOT0IfSjTS16cPh9R-puxtNcWU.woff2) format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: 'Onest';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url(/fonts/gstatic/gNMZW3F-SZuj7zOT0IfSjTS16cPh9R-ptRtN.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* latin */
@font-face {
  font-family: 'Contrail One';
  font-style: normal;
  font-weight: 400;
  src: url(/fonts/gstatic/eLGbP-j_JA-kG0_Zo51noaftYkHs.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face { font-family: "Google Sans Flex Variable"; src: url("/fonts/gstatic/t5t7IQcYNIWbFgDgAAzZ34auoVyXip6sfhcat2c.woff2"); font-display: swap; font-style: normal; font-weight: 400 }
@font-face { font-family: "Inter"; src: url("/fonts/5vvr9Vy74if2I6bQbJvbw7SY1pQ.woff2"); font-display: swap; font-style: normal; font-weight: 400; unicode-range: U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F }
@font-face { font-family: "Inter"; src: url("/fonts/EOr0mi4hNtlgWNn9if640EZzXCo.woff2"); font-display: swap; font-style: normal; font-weight: 400; unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116 }
@font-face { font-family: "Inter"; src: url("/fonts/Y9k9QrlZAqio88Klkmbd8VoMQc.woff2"); font-display: swap; font-style: normal; font-weight: 400; unicode-range: U+1F00-1FFF }
@font-face { font-family: "Inter"; src: url("/fonts/OYrD2tBIBPvoJXiIHnLoOXnY9M.woff2"); font-display: swap; font-style: normal; font-weight: 400; unicode-range: U+0370-03FF }
@font-face { font-family: "Inter"; src: url("/fonts/JeYwfuaPfZHQhEG8U5gtPDZ7WQ.woff2"); font-display: swap; font-style: normal; font-weight: 400; unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF }
@font-face { font-family: "Inter"; src: url("/fonts/GrgcKwrN6d3Uz8EwcLHZxwEfC4.woff2"); font-display: swap; font-style: normal; font-weight: 400; unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2070, U+2074-207E, U+2080-208E, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD }
@font-face { font-family: "Inter"; src: url("/fonts/b6Y37FthZeALduNqHicBT6FutY.woff2"); font-display: swap; font-style: normal; font-weight: 400; unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB }
@font-face { font-family: "Inter"; src: url("/fonts/DpPBYI0sL4fYLgAkX8KXOPVt7c.woff2"); font-display: swap; font-style: normal; font-weight: 700; unicode-range: U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F }
@font-face { font-family: "Inter"; src: url("/fonts/4RAEQdEOrcnDkhHiiCbJOw92Lk.woff2"); font-display: swap; font-style: normal; font-weight: 700; unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116 }
@font-face { font-family: "Inter"; src: url("/fonts/1K3W8DizY3v4emK8Mb08YHxTbs.woff2"); font-display: swap; font-style: normal; font-weight: 700; unicode-range: U+1F00-1FFF }
@font-face { font-family: "Inter"; src: url("/fonts/tUSCtfYVM1I1IchuyCwz9gDdQ.woff2"); font-display: swap; font-style: normal; font-weight: 700; unicode-range: U+0370-03FF }
@font-face { font-family: "Inter"; src: url("/fonts/VgYFWiwsAC5OYxAycRXXvhze58.woff2"); font-display: swap; font-style: normal; font-weight: 700; unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF }
@font-face { font-family: "Inter"; src: url("/fonts/syRNPWzAMIrcJ3wIlPIP43KjQs.woff2"); font-display: swap; font-style: normal; font-weight: 700; unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2070, U+2074-207E, U+2080-208E, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD }
@font-face { font-family: "Inter"; src: url("/fonts/GIryZETIX4IFypco5pYZONKhJIo.woff2"); font-display: swap; font-style: normal; font-weight: 700; unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB }
@font-face { font-family: "Inter"; src: url("/fonts/hyOgCu0Xnghbimh0pE8QTvtt2AU.woff2"); font-display: swap; font-style: normal; font-weight: 600; unicode-range: U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F }
@font-face { font-family: "Inter"; src: url("/fonts/NeGmSOXrPBfEFIy5YZeHq17LEDA.woff2"); font-display: swap; font-style: normal; font-weight: 600; unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116 }
@font-face { font-family: "Inter"; src: url("/fonts/oYaAX5himiTPYuN8vLWnqBbfD2s.woff2"); font-display: swap; font-style: normal; font-weight: 600; unicode-range: U+1F00-1FFF }
@font-face { font-family: "Inter"; src: url("/fonts/lEJLP4R0yuCaMCjSXYHtJw72M.woff2"); font-display: swap; font-style: normal; font-weight: 600; unicode-range: U+0370-03FF }
@font-face { font-family: "Inter"; src: url("/fonts/cRJyLNuTJR5jbyKzGi33wU9cqIQ.woff2"); font-display: swap; font-style: normal; font-weight: 600; unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF }
@font-face { font-family: "Inter"; src: url("/fonts/yDtI2UI8XcEg1W2je9XPN3Noo.woff2"); font-display: swap; font-style: normal; font-weight: 600; unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2070, U+2074-207E, U+2080-208E, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD }
@font-face { font-family: "Inter"; src: url("/fonts/A0Wcc7NgXMjUuFdquHDrIZpzZw0.woff2"); font-display: swap; font-style: normal; font-weight: 600; unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB }
@font-face { font-family: "Inter"; src: url("/fonts/5A3Ce6C9YYmCjpQx9M4inSaKU.woff2"); font-display: swap; font-style: normal; font-weight: 500; unicode-range: U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F }
@font-face { font-family: "Inter"; src: url("/fonts/Qx95Xyt0Ka3SGhinnbXIGpEIyP4.woff2"); font-display: swap; font-style: normal; font-weight: 500; unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116 }
@font-face { font-family: "Inter"; src: url("/fonts/6mJuEAguuIuMog10gGvH5d3cl8.woff2"); font-display: swap; font-style: normal; font-weight: 500; unicode-range: U+1F00-1FFF }
@font-face { font-family: "Inter"; src: url("/fonts/xYYWaj7wCU5zSQH0eXvSaS19wo.woff2"); font-display: swap; font-style: normal; font-weight: 500; unicode-range: U+0370-03FF }
@font-face { font-family: "Inter"; src: url("/fonts/otTaNuNpVK4RbdlT7zDDdKvQBA.woff2"); font-display: swap; font-style: normal; font-weight: 500; unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF }
@font-face { font-family: "Inter"; src: url("/fonts/UjlFhCnUjxhNfep4oYBPqnEssyo.woff2"); font-display: swap; font-style: normal; font-weight: 500; unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2070, U+2074-207E, U+2080-208E, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD }
@font-face { font-family: "Inter"; src: url("/fonts/DolVirEGb34pEXEp8t8FQBSK4.woff2"); font-display: swap; font-style: normal; font-weight: 500; unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB }
@font-face { font-family: "Inter"; src: url("/fonts/vQyevYAyHtARFwPqUzQGpnDs.woff2"); font-display: swap; font-style: normal; font-weight: 400; unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD }
@font-face { font-family: "Inter Display"; src: url("/fonts/gazZKZuUEtvr9ULhdA4SprP0AZ0.woff2"); font-display: swap; font-style: normal; font-weight: 600; unicode-range: U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F }
@font-face { font-family: "Inter Display"; src: url("/fonts/pe8RoujoPxuTZhqoNzYqHX2MXA.woff2"); font-display: swap; font-style: normal; font-weight: 600; unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116 }
@font-face { font-family: "Inter Display"; src: url("/fonts/teGhWnhH3bCqefKGsIsqFy3hK8.woff2"); font-display: swap; font-style: normal; font-weight: 600; unicode-range: U+1F00-1FFF }
@font-face { font-family: "Inter Display"; src: url("/fonts/qQHxgTnEk6Czu1yW4xS82HQWFOk.woff2"); font-display: swap; font-style: normal; font-weight: 600; unicode-range: U+0370-03FF }
@font-face { font-family: "Inter Display"; src: url("/fonts/MJ3N6lfN4iP5Um8rJGqLYl03tE.woff2"); font-display: swap; font-style: normal; font-weight: 600; unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF }
@font-face { font-family: "Inter Display"; src: url("/fonts/PfdOpgzFf7N2Uye9JX7xRKYTgSc.woff2"); font-display: swap; font-style: normal; font-weight: 600; unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2070, U+2074-207E, U+2080-208E, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD }
@font-face { font-family: "Inter Display"; src: url("/fonts/0SEEmmWc3vovhaai4RlRQSWRrz0.woff2"); font-display: swap; font-style: normal; font-weight: 600; unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB }
@font-face { font-family: "Inter Display"; src: url("/fonts/ePuN3mCjzajIHnyCdvKBFiZkyY0.woff2"); font-display: swap; font-style: normal; font-weight: 500; unicode-range: U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F }
@font-face { font-family: "Inter Display"; src: url("/fonts/V3j1L0o5vPFKe26Sw4HcpXCfHo.woff2"); font-display: swap; font-style: normal; font-weight: 500; unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116 }
@font-face { font-family: "Inter Display"; src: url("/fonts/F3kdpd2N0cToWV5huaZjjgM.woff2"); font-display: swap; font-style: normal; font-weight: 500; unicode-range: U+1F00-1FFF }
@font-face { font-family: "Inter Display"; src: url("/fonts/0iDmxkizU9goZoclqIqsV5rvETU.woff2"); font-display: swap; font-style: normal; font-weight: 500; unicode-range: U+0370-03FF }
@font-face { font-family: "Inter Display"; src: url("/fonts/r0mv3NegmA0akcQsNFotG32Las.woff2"); font-display: swap; font-style: normal; font-weight: 500; unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF }
@font-face { font-family: "Inter Display"; src: url("/fonts/iwWTDc49ENF2tCHbqlNARXw6Ug.woff2"); font-display: swap; font-style: normal; font-weight: 500; unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2070, U+2074-207E, U+2080-208E, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD }
@font-face { font-family: "Inter Display"; src: url("/fonts/Ii21jnSJkulBKsHHXKlapi7fv9w.woff2"); font-display: swap; font-style: normal; font-weight: 500; unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB }
@font-face { font-family: "Satoshi"; src: url("/fonts/Satoshi-500.woff2"); font-display: swap; font-style: normal; font-weight: 500 }
@font-face { font-family: "Satoshi"; src: url("/fonts/Satoshi-700.woff2"); font-display: swap; font-style: normal; font-weight: 700 }
@font-face { font-family: "Satoshi"; src: url("/fonts/Satoshi-400.woff2"); font-display: swap; font-style: normal; font-weight: 400 }
@font-face { font-family: "Satoshi"; src: url("/fonts/Satoshi-900.woff2"); font-style: normal; font-weight: 900 }
@font-face { font-family: "Satoshi Variable"; src: url("/fonts/SatoshiVariable-400.woff2"); font-display: swap; font-style: normal; font-weight: 400 }
@font-face { font-family: "Manrope"; src: url("/fonts/Manrope-600.woff2"); font-display: swap; font-style: normal; font-weight: 600 }
@font-face { font-family: "Manrope"; src: url("/fonts/Manrope-500.woff2"); font-display: swap; font-style: normal; font-weight: 500 }
@font-face { font-family: "Satoshi"; src: url("/fonts/Satoshi-700i.woff2"); font-display: swap; font-style: italic; font-weight: 700 }
@font-face { font-family: "Satoshi"; src: url("/fonts/Satoshi-500i.woff2"); font-display: swap; font-style: italic; font-weight: 500 }
@font-face { font-family: "Open Runde"; src: url("/fonts/hG3wmGmFwadB6X5XPVXkMlmLr8o.woff2"); font-style: normal; font-weight: 600 }
@font-face { font-family: "Figtree Placeholder"; src: local("Arial"); ascent-override: 93.79%; descent-override: 24.68%; line-gap-override: 0.00%; size-adjust: 101.29% }
@font-face { font-family: "Onest Placeholder"; src: local("Arial"); ascent-override: 91.42%; descent-override: 28.75%; line-gap-override: 0.00%; size-adjust: 106.10% }
@font-face { font-family: "Inter Tight Placeholder"; src: local("Arial"); ascent-override: 99.65%; descent-override: 24.81%; line-gap-override: 0.00%; size-adjust: 97.21% }
@font-face { font-family: "Google Sans Flex Variable Placeholder"; src: local("Arial"); ascent-override: 94.61%; descent-override: 28.01%; line-gap-override: 0.00%; size-adjust: 102.10% }
@font-face { font-family: "Inter Placeholder"; src: local("Arial"); ascent-override: 89.79%; descent-override: 22.36%; line-gap-override: 0.00%; size-adjust: 107.89% }
@font-face { font-family: "Inter Display Placeholder"; src: local("Arial"); ascent-override: 98.56%; descent-override: 24.54%; line-gap-override: 0.00%; size-adjust: 98.29% }
@font-face { font-family: "Satoshi Placeholder"; src: local("Arial"); ascent-override: 102.23%; descent-override: 24.29%; line-gap-override: 10.12%; size-adjust: 98.80% }
@font-face { font-family: "Satoshi Variable Placeholder"; src: local("Arial"); ascent-override: 102.23%; descent-override: 24.29%; line-gap-override: 10.12%; size-adjust: 98.80% }
@font-face { font-family: "Manrope Placeholder"; src: local("Arial"); ascent-override: 102.74%; descent-override: 28.91%; line-gap-override: 0.00%; size-adjust: 103.76% }
@media(min-width: 1200px){.hidden-v7bt91{display:none!important}}@media(min-width: 810px) and (max-width: 1199.98px){.hidden-10ojslw{display:none!important}}@media(max-width: 809.98px){.hidden-1nhhism{display:none!important}}@media(min-width: 1200px){.hidden-jvdx2e{display:none!important}}@media(min-width: 810px) and (max-width: 1199.98px){.hidden-1tb5ai0{display:none!important}}@media(max-width: 809.98px){.hidden-kpoitc{display:none!important}}
html,body,#main{box-sizing:border-box;margin:0;padding:0}:root{-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}*{box-sizing:border-box;-webkit-font-smoothing:inherit}h1,h2,h3,h4,h5,h6,p,figure{margin:0}body,input,textarea,select,button{font-family:sans-serif;font-size:12px}@supports (background:-webkit-named-image(i)) and (not (grid-template-rows:subgrid)){body{--framer-will-change-override:transform}}@supports (background:-webkit-named-image(i)) and (not (position-area:top right)){body{--framer-will-change-filter-override:filter}}[data-framer-component-type=Text] div div span,[data-framer-component-type=Text] a div span,[data-framer-component-type=Text] span span span,[data-framer-component-type=Text] p span span,[data-framer-component-type=Text] h1 span span,[data-framer-component-type=Text] h2 span span,[data-framer-component-type=Text] h3 span span,[data-framer-component-type=Text] h4 span span,[data-framer-component-type=Text] h5 span span,[data-framer-component-type=Text] h6 span span,[data-framer-component-type=Text] a{font-family:var(--font-family);font-style:var(--font-style);font-weight:min(calc(var(--framer-font-weight-increase,0) + var(--font-weight,400)),900);color:var(--text-color);letter-spacing:var(--letter-spacing);font-size:var(--font-size);text-transform:var(--text-transform);--text-decoration:var(--framer-text-decoration-style,solid)var(--framer-text-decoration,none)var(--framer-text-decoration-color,currentcolor)var(--framer-text-decoration-thickness,auto);--text-decoration-skip-ink:var(--framer-text-decoration-skip-ink);--text-underline-offset:var(--framer-text-decoration-offset);line-height:var(--line-height);--font-family:var(--framer-font-family);--font-style:var(--framer-font-style);--font-weight:var(--framer-font-weight);--text-color:var(--framer-text-color);--letter-spacing:var(--framer-letter-spacing);--font-size:var(--framer-font-size);--text-transform:var(--framer-text-transform);--line-height:var(--framer-line-height)}@supports not (color:color(display-p3 1 1 1)){p.framer-text,div.framer-text,h1.framer-text,h2.framer-text,h3.framer-text,h4.framer-text,h5.framer-text,h6.framer-text,li.framer-text,ol.framer-text,ul.framer-text,span.framer-text:not([data-text-fill]){color:var(--framer-blockquote-text-color-rgb,var(--framer-blockquote-text-color,var(--framer-text-color-rgb,var(--framer-text-color,#000))));-webkit-text-stroke-color:var(--framer-text-stroke-color-rgb,var(--framer-text-stroke-color,initial))}mark.framer-text{background-color:var(--framer-blockquote-text-background-color-rgb,var(--framer-blockquote-text-background-color,var(--framer-text-background-color-rgb,var(--framer-text-background-color,initial))))}}@supports not (color:color(display-p3 1 1 1)){code.framer-text,code.framer-text span.framer-text:not([data-text-fill]){color:var(--framer-blockquote-text-color-rgb,var(--framer-blockquote-text-color,var(--framer-code-text-color-rgb,var(--framer-code-text-color,var(--framer-text-color-rgb,var(--framer-text-color,#000))))))}}@supports not (color:color(display-p3 1 1 1)){a.framer-text,span.framer-text[data-nested-link]{color:var(--framer-blockquote-text-color-rgb,var(--framer-blockquote-text-color,var(--framer-link-text-color-rgb,var(--framer-link-text-color,var(--framer-text-color-rgb,var(--framer-text-color,#000))))));background-color:var(--framer-link-text-background-color-rgb,var(--framer-link-text-background-color,initial));-webkit-text-decoration-color:var(--framer-link-text-decoration-color-rgb,var(--framer-link-text-decoration-color,var(--framer-text-decoration-color-rgb,var(--framer-text-decoration-color,currentcolor))));text-decoration-color:var(--framer-link-text-decoration-color-rgb,var(--framer-link-text-decoration-color,var(--framer-text-decoration-color-rgb,var(--framer-text-decoration-color,currentcolor))))}}@supports not (color:color(display-p3 1 1 1)){code.framer-text a.framer-text,code.framer-text a.framer-text span.framer-text:not([data-text-fill]),code.framer-text span.framer-text[data-nested-link],code.framer-text span.framer-text[data-nested-link] span.framer-text:not([data-text-fill]){color:var(--framer-blockquote-text-color-rgb,var(--framer-blockquote-text-color,var(--framer-link-text-color-rgb,var(--framer-link-text-color,var(--framer-code-text-color-rgb,var(--framer-code-text-color,var(--framer-text-color-rgb,var(--framer-text-color,#000))))))))}}@supports not (color:color(display-p3 1 1 1)){a.framer-text:hover,span.framer-text[data-nested-link]:hover{color:var(--framer-link-hover-text-color-rgb,var(--framer-link-hover-text-color,var(--framer-blockquote-text-color-rgb,var(--framer-blockquote-text-color,var(--framer-link-text-color-rgb,var(--framer-link-text-color,var(--framer-text-color-rgb,var(--framer-text-color,#000))))))));background-color:var(--framer-link-hover-text-background-color-rgb,var(--framer-link-hover-text-background-color,var(--framer-link-text-background-color-rgb,var(--framer-link-text-background-color,var(--framer-text-background-color-rgb,var(--framer-text-background-color,initial))))));-webkit-text-decoration-color:var(--framer-link-hover-text-decoration-color-rgb,var(--framer-link-hover-text-decoration-color,var(--framer-link-text-decoration-color-rgb,var(--framer-link-text-decoration-color,var(--framer-text-decoration-color-rgb,var(--framer-text-decoration-color,currentcolor))))));text-decoration-color:var(--framer-link-hover-text-decoration-color-rgb,var(--framer-link-hover-text-decoration-color,var(--framer-link-text-decoration-color-rgb,var(--framer-link-text-decoration-color,var(--framer-text-decoration-color-rgb,var(--framer-text-decoration-color,currentcolor))))))}}@supports not (color:color(display-p3 1 1 1)){code.framer-text a.framer-text:hover,code.framer-text span.framer-text[data-nested-link]:hover{color:var(--framer-link-hover-text-color-rgb,var(--framer-link-hover-text-color,var(--framer-blockquote-text-color-rgb,var(--framer-blockquote-text-color,var(--framer-link-text-color-rgb,var(--framer-link-text-color,var(--framer-code-text-color-rgb,var(--framer-code-text-color,var(--framer-text-color-rgb,var(--framer-text-color,#000))))))))))}}@supports not (color:color(display-p3 1 1 1)){a.framer-text[data-framer-page-link-current],span.framer-text[data-framer-page-link-current]{color:var(--framer-link-current-text-color-rgb,var(--framer-link-current-text-color,var(--framer-link-text-color-rgb,var(--framer-link-text-color,var(--framer-text-color-rgb,var(--framer-text-color,#000))))));background-color:var(--framer-link-current-text-background-color-rgb,var(--framer-link-current-text-background-color,var(--framer-link-text-background-color-rgb,var(--framer-link-text-background-color,var(--framer-text-background-color-rgb,var(--framer-text-background-color,initial))))));-webkit-text-decoration-color:var(--framer-link-current-text-decoration-color-rgb,var(--framer-link-current-text-decoration-color,var(--framer-link-text-decoration-color-rgb,var(--framer-link-text-decoration-color,var(--framer-text-decoration-color-rgb,var(--framer-text-decoration-color,currentcolor))))));text-decoration-color:var(--framer-link-current-text-decoration-color-rgb,var(--framer-link-current-text-decoration-color,var(--framer-link-text-decoration-color-rgb,var(--framer-link-text-decoration-color,var(--framer-text-decoration-color-rgb,var(--framer-text-decoration-color,currentcolor))))))}}@supports not (color:color(display-p3 1 1 1)){code.framer-text a.framer-text[data-framer-page-link-current],code.framer-text a.framer-text[data-framer-page-link-current] span.framer-text:not([data-text-fill]),code.framer-text span.framer-text[data-framer-page-link-current],code.framer-text span.framer-text[data-framer-page-link-current] span.framer-text:not([data-text-fill]){color:var(--framer-link-current-text-color-rgb,var(--framer-link-current-text-color,var(--framer-link-text-color-rgb,var(--framer-link-text-color,var(--framer-code-text-color-rgb,var(--framer-code-text-color,var(--framer-text-color-rgb,var(--framer-text-color,#000))))))));background-color:var(--framer-link-current-text-background-color-rgb,var(--framer-link-current-text-background-color,var(--framer-link-text-background-color-rgb,var(--framer-link-text-background-color,var(--framer-text-background-color-rgb,var(--framer-text-background-color,initial))))))}}@supports not (color:color(display-p3 1 1 1)){a.framer-text[data-framer-page-link-current]:hover,span.framer-text[data-framer-page-link-current]:hover{color:var(--framer-link-hover-text-color-rgb,var(--framer-link-hover-text-color,var(--framer-link-current-text-color-rgb,var(--framer-link-current-text-color,var(--framer-link-text-color-rgb,var(--framer-link-text-color,var(--framer-code-text-color-rgb,var(--framer-code-text-color,var(--framer-text-color-rgb,var(--framer-text-color,#000))))))))));background-color:var(--framer-link-hover-text-background-color-rgb,var(--framer-link-hover-text-background-color,var(--framer-link-current-text-background-color-rgb,var(--framer-link-current-text-background-color,var(--framer-link-text-background-color-rgb,var(--framer-link-text-background-color,initial))))));-webkit-text-decoration-color:var(--framer-link-hover-text-decoration-color-rgb,var(--framer-link-hover-text-decoration-color,var(--framer-link-current-text-decoration-color-rgb,var(--framer-link-current-text-decoration-color,var(--framer-link-text-decoration-color-rgb,var(--framer-link-text-decoration-color,var(--framer-text-decoration-color-rgb,var(--framer-text-decoration-color,currentcolor))))))));text-decoration-color:var(--framer-link-hover-text-decoration-color-rgb,var(--framer-link-hover-text-decoration-color,var(--framer-link-current-text-decoration-color-rgb,var(--framer-link-current-text-decoration-color,var(--framer-link-text-decoration-color-rgb,var(--framer-link-text-decoration-color,var(--framer-text-decoration-color-rgb,var(--framer-text-decoration-color,currentcolor))))))))}}@supports not (color:color(display-p3 1 1 1)){code.framer-text a.framer-text[data-framer-page-link-current]:hover,code.framer-text a.framer-text[data-framer-page-link-current]:hover span.framer-text:not([data-text-fill]),code.framer-text span.framer-text[data-framer-page-link-current]:hover,code.framer-text span.framer-text[data-framer-page-link-current]:hover span.framer-text:not([data-text-fill]){color:var(--framer-link-hover-text-color-rgb,var(--framer-link-hover-text-color,var(--framer-link-current-text-color-rgb,var(--framer-link-current-text-color,var(--framer-link-text-color-rgb,var(--framer-link-text-color,var(--framer-code-text-color-rgb,var(--framer-code-text-color,var(--framer-text-color-rgb,var(--framer-text-color,#000))))))))));background-color:var(--framer-link-hover-text-background-color-rgb,var(--framer-link-hover-text-background-color,var(--framer-link-current-text-background-color-rgb,var(--framer-link-current-text-background-color,var(--framer-link-text-background-color-rgb,var(--framer-link-text-background-color,initial))))))}}@supports not (aspect-ratio:1){.framer-text-module:not([data-width=fit])[style*=aspect-ratio]{position:relative!important}.framer-text-module:not([data-width=fit])[style*=aspect-ratio]:before{content:"";padding-bottom:calc(100%/calc(var(--aspect-ratio)));display:block}.framer-text-module[data-width=fill]>:first-child,.framer-text-module[data-width=fill]>.ssr-variant>:first-child,.framer-text-module:not([data-width=fit])[style*=aspect-ratio]>:first-child,.framer-text-module:not([data-width=fit])[style*=aspect-ratio]>.ssr-variant>:first-child{position:absolute;top:0;left:0;height:100%!important}}@supports not (overflow:clip){:root{--overflow-clip-fallback:hidden}}@supports (background:-webkit-named-image(i)) and (not (contain-intrinsic-size:inherit)){div.framer-text,p.framer-text,h1.framer-text,h2.framer-text,h3.framer-text,h4.framer-text,h5.framer-text,h6.framer-text,ol.framer-text,ul.framer-text,li.framer-text,blockquote.framer-text,.framer-text.framer-image{display:var(--text-truncation-display-inline-for-safari-16,revert)}div.framer-text:after,p.framer-text:after,h1.framer-text:after,h2.framer-text:after,h3.framer-text:after,h4.framer-text:after,h5.framer-text:after,h6.framer-text:after,ol.framer-text:after,ul.framer-text:after,li.framer-text:after,blockquote.framer-text:after,.framer-text.framer-image:after{content:var(--text-truncation-line-break-for-safari-16);white-space:pre}.framer-text.framer-text-module,.framer-text.framer-table-wrapper{display:var(--text-truncation-display-none-for-safari-16,revert)}p.framer-text[data-text-fill]{display:var(--text-truncation-display-inline-for-safari-16,inline-block)}}@supports (corner-shape:superellipse(2)){:root{--one-if-corner-shape-supported:1}}.framer-cursor-none,.framer-cursor-none *{cursor:none!important}.framer-pointer-events-none,.framer-pointer-events-none *{pointer-events:none!important}@supports (aspect-ratio:1){body{--framer-aspect-ratio-supported:auto}}.framer-0TSzE.framer-z3rerm,.framer-0TSzE .framer-z3rerm{display:block}.framer-0TSzE.framer-jvdx2e{height:min-content;overflow:var(--overflow-clip-fallback,clip);background-color:#000;flex-flow:column;place-content:center flex-start;align-items:center;gap:0;width:100%;padding:70px 0 0;display:flex;position:relative}.framer-0TSzE .framer-1hgutds{background:0 0;flex-grow:1;width:0;height:0;margin:0;position:relative}.framer-0TSzE .framer-lbq0jp-container{flex:none;order:1001;width:1px;height:1px;position:relative}.framer-0TSzE .framer-uiml3j-container{height:auto;position:var(--framer-canvas-fixed-position,fixed);z-index:10;flex:none;order:1002;width:100%;top:0;left:0}.framer-0TSzE .framer-11isak8-container{z-index:2;flex:none;order:1003;width:100%;height:auto;position:relative}[data-layout-template=true]>#overlay{margin-bottom:0}@supports (aspect-ratio:1){body{--framer-aspect-ratio-supported:auto}}.framer-40eWd.framer-op79rd,.framer-40eWd .framer-op79rd{display:block}.framer-40eWd.framer-v7bt91{height:min-content;overflow:var(--overflow-clip-fallback,clip);background-color:#fff;flex-flow:column;place-content:center flex-start;align-items:center;gap:0;width:1200px;padding:0;display:flex;position:relative}.framer-40eWd .framer-ayzvsy{flex-flow:column;flex:none;place-content:center flex-start;align-items:center;gap:40px;width:100%;height:100vh;padding:0;display:flex;position:relative;overflow:hidden}.framer-40eWd .framer-12i2u80{z-index:2;flex-flow:column;flex:1 0 0;place-content:flex-end center;align-items:flex-end;gap:0;width:100%;max-width:1200px;height:1px;padding:100px 85px 100px 100px;display:flex;position:relative;overflow:visible}.framer-40eWd .framer-orz9dt{z-index:2;flex-flow:row;flex:none;place-content:center flex-end;align-items:center;gap:10px;width:100%;padding:0;display:flex;position:absolute;top:0;bottom:0;left:0;overflow:visible;-webkit-mask:linear-gradient(#000 80%,#0000 85%);mask:linear-gradient(#000 80%,#0000 85%)}.framer-40eWd .framer-prx6lg{height:100%;overflow:var(--overflow-clip-fallback,clip);z-index:1;background-color:#0000;flex:1 0 0;width:1px;position:relative}.framer-40eWd .framer-177o19q-container{z-index:0;flex:none;width:167%;max-width:2000px;height:800px;max-height:800px;position:absolute;top:calc(50% - 400px);left:-700px}.framer-40eWd .framer-ukfias{flex-flow:column;flex:none;place-content:flex-start;align-items:flex-start;gap:5px;width:min-content;height:min-content;padding:0;display:flex;position:relative;overflow:visible}.framer-40eWd .framer-1puhp9o,.framer-40eWd .framer-1pdty9j,.framer-40eWd .framer-1w6rol0,.framer-40eWd .framer-1e3wsze{flex-flow:row;flex:none;place-content:center flex-start;align-items:center;gap:10px;width:min-content;height:min-content;padding:0;display:flex;position:relative;overflow:visible}.framer-40eWd .framer-u14rwb,.framer-40eWd .framer-1euwlhg,.framer-40eWd .framer-7m8wta,.framer-40eWd .framer-1a6qtot,.framer-40eWd .framer-1ufo7h7,.framer-40eWd .framer-1c1la7y,.framer-40eWd .framer-1uxmtfu,.framer-40eWd .framer-cquigs,.framer-40eWd .framer-1yyq13c,.framer-40eWd .framer-1wb8qeb,.framer-40eWd .framer-11gxwrf,.framer-40eWd .framer-ypzu84,.framer-40eWd .framer-1zo7yz,.framer-40eWd .framer-11yuxit,.framer-40eWd .framer-1a9yfhf,.framer-40eWd .framer-70lmpv,.framer-40eWd .framer-gdghdy,.framer-40eWd .framer-kkie4e,.framer-40eWd .framer-1s3byqy,.framer-40eWd .framer-1er5ts7,.framer-40eWd .framer-wt8248,.framer-40eWd .framer-9u2v2t,.framer-40eWd .framer-iuwb1y,.framer-40eWd .framer-1hxja72,.framer-40eWd .framer-9vtek9,.framer-40eWd .framer-vtjkv9,.framer-40eWd .framer-1n4qmj9,.framer-40eWd .framer-35gonu,.framer-40eWd .framer-10hlo5m{--framer-link-text-color:#09f;--framer-link-text-decoration:underline;pointer-events:none;white-space:pre;z-index:1;flex:none;width:auto;height:auto;position:relative}.framer-40eWd .framer-ljrf26{flex-flow:row;flex:none;place-content:center flex-start;align-items:center;gap:15px;width:min-content;height:min-content;padding:0;display:flex;position:relative;overflow:visible}.framer-40eWd .framer-1w3pz7p-container,.framer-40eWd .framer-s8bw6v-container,.framer-40eWd .framer-1gcgok2-container,.framer-40eWd .framer-11ebsw3-container,.framer-40eWd .framer-b87l9o-container,.framer-40eWd .framer-1rsrzae-container{flex:none;width:auto;height:auto;position:relative}.framer-40eWd .framer-g08rp3,.framer-40eWd .framer-1o3sdls{z-index:1;flex-flow:column;flex:none;place-content:flex-end;align-items:flex-end;gap:50px;width:512px;height:min-content;padding:0;display:flex;position:relative;overflow:visible}.framer-40eWd .framer-1o6x9e8{flex-flow:row;flex:none;place-content:center;align-items:center;gap:0;width:100%;height:min-content;padding:35px 0 4px 10px;display:flex;position:relative;overflow:visible}.framer-40eWd .framer-13u713y{mix-blend-mode:exclusion;z-index:1;flex-flow:column;flex:none;place-content:flex-start center;align-items:flex-start;gap:12px;width:55px;height:min-content;padding:0;display:flex;position:relative;overflow:visible}.framer-40eWd .framer-zxu68q{background-color:#c2272700;flex:none;width:53px;height:26px;position:relative}.framer-40eWd .framer-6vfng0{height:min-content;overflow:var(--overflow-clip-fallback,clip);flex-flow:row;flex:1 0 0;place-content:center;align-items:center;gap:10px;width:1px;padding:0 0 40px;display:flex;position:relative}.framer-40eWd .framer-gwnlpp{--framer-text-wrap:balance;white-space:pre-wrap;word-break:break-word;word-wrap:break-word;flex:1 0 0;width:1px;height:auto;position:relative}.framer-40eWd .framer-kqhf7h{z-index:4;flex-flow:column;flex:none;place-content:center;align-items:center;gap:10px;width:100%;max-width:510px;height:min-content;padding:0;display:flex;position:relative;overflow:visible}.framer-40eWd .framer-szhm3r{will-change:var(--framer-will-change-override,transform);background-color:#25262a;border-radius:12px;flex-flow:row;flex:none;place-content:flex-start;align-items:flex-start;gap:0;width:100%;height:min-content;padding:0;display:flex;position:relative;overflow:hidden}.framer-40eWd .framer-at3eim{flex-flow:column;flex:1 0 0;place-content:flex-start;align-items:flex-start;gap:10px;width:1px;height:min-content;padding:0;display:flex;position:relative}.framer-40eWd .framer-8ng9ov{--framer-input-background:#25262a;--framer-input-border-radius-bottom-left:12px;--framer-input-border-radius-top-left:12px;--framer-input-focused-border-color:#09f;--framer-input-focused-border-style:solid;--framer-input-focused-border-width:1px;--framer-input-font-color:#fff;--framer-input-font-family:"Inter";--framer-input-font-letter-spacing:0em;--framer-input-font-line-height:1.2em;--framer-input-font-size:14px;--framer-input-font-weight:400;--framer-input-icon-color:#999;--framer-input-padding:12px;--framer-input-placeholder-color:#999;flex:none;width:100%;height:40px;position:relative}.framer-40eWd .framer-ctibph-container{flex:none;width:auto;height:40px;position:relative}.framer-40eWd .framer-1v772h{z-index:1;flex-flow:row;flex:none;place-content:center flex-start;align-items:center;gap:12px;width:100%;height:min-content;padding:50px 0 0;display:flex;position:relative;overflow:visible}.framer-40eWd .framer-1gjr6ng{z-index:1;flex-flow:column;flex:none;place-content:flex-start;align-items:flex-start;gap:10px;width:min-content;height:min-content;padding:0;display:flex;position:relative;overflow:visible}.framer-40eWd .framer-7a287c,.framer-40eWd .framer-1xte8z4,.framer-40eWd .framer-xr56q2,.framer-40eWd .framer-wj74kz,.framer-40eWd .framer-7999zg,.framer-40eWd .framer-1by9iuh,.framer-40eWd .framer-q5ofp3,.framer-40eWd .framer-17q95bd,.framer-40eWd .framer-1si6pfz,.framer-40eWd .framer-f6o6we,.framer-40eWd .framer-1qvsmec,.framer-40eWd .framer-1kber5d,.framer-40eWd .framer-13kcksj,.framer-40eWd .framer-1fwq9v0,.framer-40eWd .framer-39zw2v{--framer-link-text-color:#09f;--framer-link-text-decoration:underline;white-space:pre;z-index:1;flex:none;width:auto;height:auto;position:relative}.framer-40eWd .framer-jhsbz4-container{-webkit-user-select:none;user-select:none;opacity:.6;z-index:0;flex:none;width:100%;height:100%;position:absolute;top:0;left:0%;-webkit-mask:linear-gradient(#000 16%,#0000 100%);mask:linear-gradient(#000 16%,#0000 100%)}.framer-40eWd .framer-wr9g5b{filter:blur(5px);-webkit-user-select:none;user-select:none;height:100%;overflow:var(--overflow-clip-fallback,clip);z-index:0;background:radial-gradient(50% 50%,#0a0d14 69.3694%,#0a0d1400 100%);flex:none;width:100%;position:absolute;top:0;left:0%}.framer-40eWd .framer-7s911r{filter:blur(5px);-webkit-user-select:none;user-select:none;height:400px;overflow:var(--overflow-clip-fallback,clip);z-index:1;background:linear-gradient(#0000 0%,#000 84.2342% 100%);flex:none;width:100%;position:absolute;bottom:-10px;left:-10px}.framer-40eWd .framer-xnxsx4{flex-flow:column;flex:none;place-content:center;align-items:center;gap:0;width:100%;height:1960px;padding:50px 0;display:flex;position:relative;overflow:visible}.framer-40eWd .framer-8nf4mn{z-index:1;flex-flow:column;flex:1 0 0;place-content:center;align-items:center;gap:0;width:100%;height:1px;padding:0 64px 64px;display:flex;position:sticky;top:0;overflow:visible}.framer-40eWd .framer-izy0g8{z-index:5;flex-flow:column;flex:none;place-content:center;align-items:center;gap:0;width:100%;height:min-content;padding:0;display:flex;position:absolute;top:46%;left:50%;overflow:visible;transform:translate(-50%,-50%)}.framer-40eWd .framer-hznoku,.framer-40eWd .framer-rxtqng,.framer-40eWd .framer-1wca2kz,.framer-40eWd .framer-19kmspt{height:min-content;overflow:var(--overflow-clip-fallback,clip);flex-flow:row;flex:none;place-content:center;align-items:center;gap:5px;width:100%;padding:0;display:flex;position:relative}.framer-40eWd .framer-1b00umh{z-index:2;flex-flow:column;flex:none;place-content:center;align-items:center;gap:10px;width:min-content;min-width:600px;height:min-content;min-height:600px;padding:0;display:flex;position:relative;overflow:visible}.framer-40eWd .framer-8eutjp{--border-bottom-width:1px;--border-color:#303030;--border-left-width:1px;--border-right-width:1px;--border-style:solid;--border-top-width:1px;aspect-ratio:1;height:var(--framer-aspect-ratio-supported,520px);z-index:1;border-radius:10000px;flex:none;width:520px;position:absolute;top:50%;left:50%;overflow:visible;transform:translate(-50%,-50%)}.framer-40eWd .framer-1j87wuy{z-index:2;border-radius:12px;flex-flow:column;flex:none;place-content:center;align-items:center;gap:10px;width:min-content;height:min-content;padding:0;display:flex;position:absolute;top:88%;left:83%;overflow:visible;transform:translate(-50%,-50%)}.framer-40eWd .framer-1c2js7b{--border-bottom-width:1px;--border-color:#276911;--border-left-width:1px;--border-right-width:1px;--border-style:solid;--border-top-width:1px;filter:saturate(2);border-radius:8px;flex:none;width:32px;height:32px;position:relative;overflow:visible;box-shadow:0 0 10px #1bb568}.framer-40eWd .framer-195bvvi{z-index:2;flex-flow:column;flex:none;place-content:center;align-items:center;gap:10px;width:min-content;height:min-content;padding:0;display:flex;position:absolute;top:1%;left:48%;overflow:visible;transform:translate(-50%,-50%)}.framer-40eWd .framer-w58o4n{--border-bottom-width:1px;--border-color:#8c66ff;--border-left-width:1px;--border-right-width:1px;--border-style:solid;--border-top-width:1px;background-color:#4e23b9;border-radius:8px;flex-flow:row;flex:none;place-content:center;align-items:center;gap:10px;width:32px;height:32px;padding:5px;display:flex;position:relative;overflow:visible;box-shadow:0 0 10px #8c5eff}.framer-40eWd .framer-utsvq0{aspect-ratio:1;height:100%;width:var(--framer-aspect-ratio-supported,22px);flex:none;position:relative;overflow:visible}.framer-40eWd .framer-4u67ji{z-index:2;flex-flow:column;flex:none;place-content:center;align-items:center;gap:10px;width:min-content;height:min-content;padding:0;display:flex;position:absolute;top:45%;left:99%;overflow:visible;transform:translate(-50%,-50%)}.framer-40eWd .framer-jrptgx{--border-bottom-width:1px;--border-color:#51a2ff;--border-left-width:1px;--border-right-width:1px;--border-style:solid;--border-top-width:1px;background-color:#fff;border-radius:8px;flex-flow:row;flex:none;place-content:center;align-items:center;gap:10px;width:32px;height:32px;padding:5px;display:flex;position:relative;overflow:visible;box-shadow:0 0 10px #7dadff}.framer-40eWd .framer-11dlf3z{filter:contrast(2)drop-shadow(0 0 3px #00000040);aspect-ratio:1;height:var(--framer-aspect-ratio-supported,22px);flex:1 0 0;width:1px;position:relative;overflow:visible}.framer-40eWd .framer-166nfci{z-index:2;flex-flow:column;flex:none;place-content:center;align-items:center;gap:10px;width:min-content;height:min-content;padding:0;display:flex;position:absolute;top:74%;left:6%;overflow:visible;transform:translate(-50%,-50%)}.framer-40eWd .framer-1obnxn3{--border-bottom-width:1px;--border-color:#b58d49;--border-left-width:1px;--border-right-width:1px;--border-style:solid;--border-top-width:1px;background-color:#fff;border-radius:8px;flex-flow:row;flex:none;place-content:center;align-items:center;gap:10px;width:32px;height:32px;padding:5px;display:flex;position:relative;overflow:visible;box-shadow:0 0 10px #fff652}.framer-40eWd .framer-10j5c3v{filter:drop-shadow(0 0 1px #00000040);aspect-ratio:1;height:var(--framer-aspect-ratio-supported,19px);flex:none;width:19px;position:relative;overflow:visible}.framer-40eWd .framer-17hxulm{--border-bottom-width:1px;--border-color:#303030;--border-left-width:1px;--border-right-width:1px;--border-style:solid;--border-top-width:1px;aspect-ratio:1;height:var(--framer-aspect-ratio-supported,370px);z-index:1;border-radius:10000px;flex:none;width:370px;position:absolute;top:50%;left:50%;overflow:visible;transform:translate(-50%,-50%)}.framer-40eWd .framer-cp79ps{z-index:2;flex-flow:column;flex:none;place-content:center;align-items:center;gap:10px;width:min-content;height:min-content;padding:0;display:flex;position:absolute;top:50%;left:0%;overflow:visible;transform:translate(-50%,-50%)}.framer-40eWd .framer-1483j8p{--border-bottom-width:1px;--border-color:#51a2ff;--border-left-width:1px;--border-right-width:1px;--border-style:solid;--border-top-width:1px;background-color:#326cef;border-radius:8px;flex-flow:row;flex:none;place-content:center;align-items:center;gap:10px;width:32px;height:32px;padding:5px;display:flex;position:relative;overflow:visible;box-shadow:0 0 10px #57beff}.framer-40eWd .framer-yy9131{filter:contrast(2)grayscale()saturate(0)sepia();aspect-ratio:1;height:var(--framer-aspect-ratio-supported,22px);flex:1 0 0;width:1px;position:relative;overflow:visible}.framer-40eWd .framer-uki44c{z-index:2;flex-flow:column;flex:none;place-content:center;align-items:center;gap:10px;width:min-content;height:min-content;padding:0;display:flex;position:absolute;top:98%;left:65%;overflow:visible;transform:translate(-50%,-50%)}.framer-40eWd .framer-1les3bj{--border-bottom-width:1px;--border-color:#362b28;--border-left-width:1px;--border-right-width:1px;--border-style:solid;--border-top-width:1px;background-color:#000;border-radius:8px;flex-flow:row;flex:none;place-content:center;align-items:center;gap:10px;width:32px;height:32px;padding:5px;display:flex;position:relative;overflow:visible;box-shadow:0 0 10px #2e2e2e}.framer-40eWd .framer-1yn7ekd{filter:contrast()invert();aspect-ratio:1.04065;height:var(--framer-aspect-ratio-supported,21px);z-index:1;flex:1 0 0;width:1px;position:relative;overflow:visible}.framer-40eWd .framer-16puhme{z-index:2;flex-flow:column;flex:none;place-content:center;align-items:center;gap:10px;width:min-content;height:min-content;padding:0;display:flex;position:absolute;top:21%;left:91%;overflow:visible;transform:translate(-50%,-50%)}.framer-40eWd .framer-1lhqqbn{--border-bottom-width:1px;--border-color:#b53a18;--border-left-width:1px;--border-right-width:1px;--border-style:solid;--border-top-width:1px;background-color:#ff4d1a;border-radius:8px;flex-flow:row;flex:none;place-content:center;align-items:center;gap:10px;width:32px;height:32px;padding:5px;display:flex;position:relative;overflow:visible;box-shadow:0 0 10px #ff480b}.framer-40eWd .framer-fxrpum{flex:1 0 0;width:1px;height:100%;position:relative;overflow:visible}.framer-40eWd .framer-812vbh{--border-bottom-width:1px;--border-color:#303030;--border-left-width:1px;--border-right-width:1px;--border-style:solid;--border-top-width:1px;aspect-ratio:1;height:var(--framer-aspect-ratio-supported,200px);z-index:1;border-radius:10000px;flex:none;gap:10px;width:200px;position:absolute;top:50%;left:50%;overflow:visible;transform:translate(-50%,-50%);box-shadow:0 0 44px #303030,inset 0 0 44px #303030}.framer-40eWd .framer-4yypy{flex:none;width:40px;height:40px;position:absolute;top:calc(50% - 20px);left:calc(50% - 20px);overflow:visible}.framer-40eWd .framer-qvxkzw{opacity:0;height:100px;overflow:var(--overflow-clip-fallback,clip);z-index:1;background-color:#0000;flex:none;width:600px;position:absolute;top:0;left:calc(50% - 300px)}.framer-40eWd .framer-1gp64af{filter:blur(100px);opacity:.35;z-index:2;background:linear-gradient(#f99d9f 0%,#9199ff 100%);flex:none;width:400px;height:300px;position:absolute;top:calc(50% - 150px);left:calc(50% - 200px);overflow:hidden}.framer-40eWd .framer-uka38w{opacity:.1;flex:none;width:100%;height:80vh;position:relative;overflow:visible}.framer-40eWd .framer-m9n1ll{flex:none;width:100%;height:50vh;position:relative;overflow:visible}.framer-40eWd .framer-1ir3h7{z-index:1;flex-flow:column;flex:none;place-content:center flex-start;align-items:center;gap:0;width:100%;height:min-content;padding:50px;scroll-margin-top:150px;display:flex;position:relative;overflow:visible}.framer-40eWd .framer-14bpl7z{z-index:1;flex-flow:column;flex:none;place-content:center;align-items:center;gap:15px;width:100%;height:min-content;padding:0 50px;display:flex;position:relative;overflow:visible}.framer-40eWd .framer-pmq2o5,.framer-40eWd .framer-12q6pgd,.framer-40eWd .framer-1svehdr,.framer-40eWd .framer-8v6ftc,.framer-40eWd .framer-4ox24d,.framer-40eWd .framer-20ox38{flex-flow:column;flex:none;place-content:center;align-items:center;gap:0;width:100%;height:min-content;padding:0;display:flex;position:relative;overflow:visible}.framer-40eWd .framer-h8kp5u,.framer-40eWd .framer-1p9mbje,.framer-40eWd .framer-su1bqr{height:min-content;overflow:var(--overflow-clip-fallback,clip);flex-flow:row;flex:none;place-content:center;align-items:center;gap:10px;width:100%;padding:0;display:flex;position:relative}.framer-40eWd .framer-1eenkkj,.framer-40eWd .framer-11j5epc,.framer-40eWd .framer-cfi7yw,.framer-40eWd .framer-6sxbsz,.framer-40eWd .framer-168jjo9,.framer-40eWd .framer-1f7g55w,.framer-40eWd .framer-1awh5gi{--framer-link-text-color:#09f;--framer-link-text-decoration:underline;pointer-events:none;white-space:pre-wrap;word-break:break-word;word-wrap:break-word;z-index:1;flex:none;width:100%;height:auto;position:relative}.framer-40eWd .framer-1rv6swy{z-index:2;flex-flow:row;flex:none;place-content:center;align-items:center;gap:10px;width:100%;max-width:1200px;height:min-content;padding:0;display:flex;position:sticky;top:0;overflow:visible}.framer-40eWd .framer-gwm1ds{z-index:3;flex-flow:column;flex:1 0 0;place-content:center;align-items:center;gap:10px;width:1px;height:min-content;padding:0 0 150px;display:flex;position:relative;overflow:visible;-webkit-mask:linear-gradient(#000 74%,#0000 83%);mask:linear-gradient(#000 74%,#0000 83%)}.framer-40eWd .framer-9qvdiq-container{flex:none;width:100%;max-width:1100px;height:auto;position:relative}.framer-40eWd .framer-2ywi83-container{filter:blur(2px);aspect-ratio:1;height:var(--framer-aspect-ratio-supported,140px);z-index:1;flex:none;width:140px;position:absolute;bottom:269px;left:20px}.framer-40eWd .framer-1dy3os9-container{aspect-ratio:1;height:var(--framer-aspect-ratio-supported,140px);z-index:3;flex:none;width:140px;position:absolute;bottom:-260px;left:210px}.framer-40eWd .framer-awn401-container{aspect-ratio:1;height:var(--framer-aspect-ratio-supported,140px);z-index:3;flex:none;width:140px;position:absolute;top:66%;left:83%;transform:translate(-50%,-50%)}.framer-40eWd .framer-l4dmdn-container{filter:blur(2px);aspect-ratio:1;height:var(--framer-aspect-ratio-supported,140px);z-index:1;flex:none;width:140px;position:absolute;bottom:-140px;right:0}.framer-40eWd .framer-6q8xe4,.framer-40eWd .framer-1b5wyfj,.framer-40eWd .framer-1wnyddm{height:min-content;overflow:var(--overflow-clip-fallback,clip);flex-flow:column;flex:none;place-content:center;align-items:center;gap:0;width:100%;padding:0;display:flex;position:relative}.framer-40eWd .framer-lkf2go,.framer-40eWd .framer-qxfdhv,.framer-40eWd .framer-1v4hugx,.framer-40eWd .framer-imo5d5,.framer-40eWd .framer-vb2z7p,.framer-40eWd .framer-1l0jawh,.framer-40eWd .framer-1rk0n20{-webkit-user-select:none;user-select:none;height:300px;overflow:var(--overflow-clip-fallback,clip);pointer-events:none;z-index:-1;flex:none;width:100%;position:relative}.framer-40eWd .framer-9tyuv5,.framer-40eWd .framer-xgcn28,.framer-40eWd .framer-1k1ng52,.framer-40eWd .framer-1r2fbu5,.framer-40eWd .framer-1gb8gsw,.framer-40eWd .framer-6k2zdz{-webkit-user-select:none;user-select:none;pointer-events:none;z-index:-1;flex:none;width:100%;height:85vh;position:relative;overflow:visible}.framer-40eWd .framer-hn1bok{-webkit-user-select:none;user-select:none;pointer-events:none;z-index:-1;flex:none;width:100%;height:80vh;position:relative;overflow:visible}.framer-40eWd .framer-1jhyf4y{flex-flow:column;flex:none;place-content:center;align-items:center;gap:10px;width:100%;max-width:900px;height:min-content;padding:0 0 50px;display:flex;position:relative;overflow:visible}.framer-40eWd .framer-19rr2pf{flex-flow:column;flex:none;place-content:center;align-items:center;gap:40px;width:100%;height:min-content;padding:0;display:flex;position:relative;overflow:hidden}.framer-40eWd .framer-1s3atoj,.framer-40eWd .framer-16d2qoh,.framer-40eWd .framer-16ojjru,.framer-40eWd .framer-11nt205,.framer-40eWd .framer-tutl1i,.framer-40eWd .framer-19r5j10,.framer-40eWd .framer-1b5av78,.framer-40eWd .framer-12tuaxv{--framer-link-text-color:#09f;--framer-link-text-decoration:underline;white-space:pre;flex:none;width:auto;height:auto;position:relative}.framer-40eWd .framer-7bd2o2,.framer-40eWd .framer-auh10d{flex-flow:column;flex:none;place-content:center flex-start;align-items:center;gap:0;width:100%;height:min-content;padding:0;display:flex;position:relative;overflow:visible}.framer-40eWd .framer-pziss3{z-index:1;flex-flow:row;flex:none;place-content:center;align-items:center;gap:10px;width:100%;height:150px;padding:50px 0 100px;display:flex;position:relative;overflow:visible}.framer-40eWd .framer-1qhhccr{max-width:1200px;height:min-content;overflow:var(--overflow-clip-fallback,clip);flex-flow:column;flex:none;place-content:center;align-items:center;gap:0;width:100%;padding:0 50px 50px;scroll-margin-top:50px;display:flex;position:relative}.framer-40eWd .framer-1y0e2cb-container{z-index:1;flex:none;width:100%;max-width:1200px;height:100vh;position:sticky;top:0}.framer-40eWd .framer-myk28h,.framer-40eWd .framer-qpscbo{height:80vh;overflow:var(--overflow-clip-fallback,clip);flex:none;width:100%;position:relative}.framer-40eWd .framer-1yqhc1k{height:80vh;overflow:var(--overflow-clip-fallback,clip);flex-flow:row;flex:none;place-content:center;align-items:center;gap:10px;width:100%;padding:0;display:flex;position:relative}.framer-40eWd .framer-1wd1usy-container,.framer-40eWd .framer-1relkj9-container,.framer-40eWd .framer-1g9qmos-container{flex:none;width:100%;height:auto;position:relative}.framer-40eWd .framer-6ygmvq{height:min-content;min-height:478px;overflow:var(--overflow-clip-fallback,clip);flex-flow:column;flex:none;place-content:center;align-items:center;gap:20px;width:100%;padding:0;display:flex;position:relative}.framer-40eWd .framer-9rtfz9,.framer-40eWd .framer-1rftpgn,.framer-40eWd .framer-funos3{background-color:var(--token-a188f442-a1e4-4b87-8d60-a4b736226cf3,#262626);border-radius:15px;flex-flow:column;flex:none;place-content:center;align-items:center;gap:10px;width:100%;max-width:500px;height:min-content;padding:15px;display:flex;position:relative;overflow:visible}.framer-40eWd .framer-p7t1kt,.framer-40eWd .framer-1cln3w5,.framer-40eWd .framer-s8rtld,.framer-40eWd .framer-zou661,.framer-40eWd .framer-auhrd2,.framer-40eWd .framer-192qf73,.framer-40eWd .framer-ndf3m0,.framer-40eWd .framer-c929kq,.framer-40eWd .framer-1glib6x,.framer-40eWd .framer-b121q3,.framer-40eWd .framer-167b7yv,.framer-40eWd .framer-fk3uj0,.framer-40eWd .framer-yq2yu5,.framer-40eWd .framer-k7x2j,.framer-40eWd .framer-vqx61i,.framer-40eWd .framer-5c9uz7{--framer-link-text-color:#09f;--framer-link-text-decoration:underline;--framer-text-wrap:balance;filter:blur();pointer-events:auto;white-space:pre-wrap;word-break:break-word;word-wrap:break-word;z-index:1;flex:none;width:100%;height:auto;position:relative}.framer-40eWd .framer-yz6f5t,.framer-40eWd .framer-b6q50p,.framer-40eWd .framer-1dc01r8{--framer-link-text-color:#09f;--framer-link-text-decoration:underline;filter:blur();pointer-events:auto;white-space:pre-wrap;word-break:break-word;word-wrap:break-word;z-index:1;flex:none;width:100%;height:auto;position:relative}.framer-40eWd .framer-13n25t4{flex-flow:row;flex:none;place-content:center;align-items:center;gap:10px;width:100%;height:min-content;min-height:75px;padding:0;display:flex;position:relative;overflow:visible}.framer-40eWd .framer-99atjx-container{z-index:1;flex:none;width:auto;height:auto;position:absolute;top:-150px;left:50%;transform:translate(-50%)}.framer-40eWd .framer-way333{background-color:#000;flex-flow:column;flex:none;place-content:center flex-end;align-items:center;gap:0;width:100%;height:min-content;padding:150px 0 0;display:flex;position:relative;overflow:visible}.framer-40eWd .framer-66gvbv,.framer-40eWd .framer-1c7qgei{height:min-content;overflow:var(--overflow-clip-fallback,clip);z-index:1;flex-flow:column;flex:none;place-content:center;align-items:center;gap:15px;width:100%;padding:0 50px;display:flex;position:relative}.framer-40eWd .framer-1cksdfr{height:min-content;overflow:var(--overflow-clip-fallback,clip);z-index:1;flex-flow:column;flex:none;place-content:center;align-items:center;gap:15px;width:100%;padding:30px 50px 0;display:flex;position:relative}.framer-40eWd .framer-1mybsqh{flex-flow:row;flex:none;place-content:center;align-items:center;gap:15px;width:min-content;height:min-content;padding:0;display:flex;position:relative;overflow:visible}.framer-40eWd .framer-1mjkzdr{height:12px;overflow:var(--overflow-clip-fallback,clip);will-change:var(--framer-will-change-override,transform);background-color:#8141fe;border-radius:12px;flex:none;width:30px;position:relative;box-shadow:0 0 10px #8142fe}.framer-40eWd .framer-1evhmnm{height:12px;overflow:var(--overflow-clip-fallback,clip);will-change:var(--framer-will-change-override,transform);background-color:#ff04c8;border-radius:12px;flex:none;width:30px;position:relative;box-shadow:0 0 10px #fe05c7}.framer-40eWd .framer-blvp6n{height:min-content;overflow:var(--overflow-clip-fallback,clip);flex-flow:row;flex:none;place-content:flex-end;align-items:flex-end;gap:0;width:100%;padding:0;display:flex;position:relative}.framer-40eWd .framer-1qtffyf-container{flex:none;width:100%;height:500px;position:relative}.framer-40eWd .framer-uddu9i,.framer-40eWd .framer-c6u7vc,.framer-40eWd .framer-12bnta0{flex-flow:column;flex:none;place-content:center;align-items:center;gap:10px;width:100%;height:min-content;padding:0;display:flex;position:relative;overflow:visible}.framer-40eWd .framer-1qb009v{flex-flow:column;flex:none;place-content:center flex-start;align-items:center;gap:0;width:100%;height:min-content;padding:150px 0;display:flex;position:relative;overflow:visible}.framer-40eWd .framer-1j3wd51{z-index:1;flex-flow:column;flex:none;place-content:center;align-items:center;gap:12px;width:100%;height:min-content;padding:0;display:flex;position:relative;overflow:visible}.framer-40eWd .framer-zv2c0u,.framer-40eWd .framer-t0fuia,.framer-40eWd .framer-vllzyg{flex-flow:row;flex:none;place-content:center;align-items:center;gap:10px;width:100%;height:min-content;padding:0;display:flex;position:relative;overflow:visible}.framer-40eWd .framer-1xg2p2b{flex-flow:row;flex:none;place-content:center space-between;align-items:center;width:100%;max-width:650px;height:min-content;padding:36px 0 0;display:flex;position:relative;overflow:hidden}.framer-40eWd .framer-d1c31,.framer-40eWd .framer-1towy0z,.framer-40eWd .framer-vw0rrh{flex-flow:column;flex:none;place-content:center;align-items:center;gap:8px;width:min-content;height:min-content;padding:0;display:flex;position:relative;overflow:hidden}.framer-40eWd .framer-tbivq6,.framer-40eWd .framer-2zm5c4,.framer-40eWd .framer-1gh23rc{flex-flow:row;flex:none;place-content:center;align-items:center;gap:5px;width:min-content;height:min-content;padding:0;display:flex;position:relative;overflow:hidden}.framer-40eWd .framer-1515c2l,.framer-40eWd .framer-sgratl,.framer-40eWd .framer-yzor66{flex-flow:row;flex:none;place-content:flex-start center;align-self:stretch;align-items:flex-start;gap:10px;width:min-content;height:auto;padding:6px 0 0;display:flex;position:relative;overflow:hidden}.framer-40eWd .framer-1jgzzxo,.framer-40eWd .framer-ett93c,.framer-40eWd .framer-hvhpge{--framer-link-text-color:#09f;--framer-link-text-decoration:underline;white-space:pre-wrap;word-break:break-word;word-wrap:break-word;z-index:1;flex:none;align-self:stretch;width:auto;height:auto;position:relative}.framer-40eWd .framer-aq1b09{height:1px;overflow:var(--overflow-clip-fallback,clip);flex:none;width:100%;scroll-margin-top:900px;position:relative}.framer-40eWd .framer-arqvyi{flex-flow:column;flex:none;place-content:center;align-items:center;gap:50px;width:100%;height:min-content;padding:50px 100px;scroll-margin-top:150px;display:flex;position:relative;overflow:visible}.framer-40eWd .framer-z3i2qx{z-index:1;flex-flow:column;flex:none;place-content:center;align-items:center;gap:10px;width:100%;height:min-content;padding:0 50px 50px;display:flex;position:relative;overflow:visible}.framer-40eWd .framer-hspw7h{max-width:1000px;height:min-content;overflow:var(--overflow-clip-fallback,clip);flex-flow:column;flex:none;place-content:center;align-items:center;gap:80px;width:100%;padding:0;display:flex;position:relative}.framer-40eWd .framer-xo6mwe,.framer-40eWd .framer-56b58t,.framer-40eWd .framer-1c9qkbt{flex-flow:row;flex:none;place-content:center;align-items:center;gap:50px;width:100%;height:444px;padding:5px;display:flex;position:relative;overflow:visible}.framer-40eWd .framer-1mh7ndq,.framer-40eWd .framer-bs0638{border-radius:32px;flex-flow:column;flex:1 0 0;place-content:center;align-items:center;gap:10px;width:1px;height:100%;padding:0;display:flex;position:relative;overflow:visible;box-shadow:0 0 10px #ffffff4d}.framer-40eWd .framer-11tuela{height:1px;overflow:var(--overflow-clip-fallback,clip);will-change:var(--framer-will-change-override,transform);border-radius:32px;flex-flow:column;flex:1 0 0;place-content:center flex-start;align-items:center;gap:0;width:100%;padding:0;display:flex;position:relative}.framer-40eWd .framer-1ng9f8c-container,.framer-40eWd .framer-ympo2d-container{flex:1 0 0;width:100%;height:1px;position:relative}.framer-40eWd .framer-8a0hue,.framer-40eWd .framer-aevu9e,.framer-40eWd .framer-fq9809{flex-flow:column;flex:1 0 0;place-content:center;align-items:center;gap:10px;width:1px;height:100%;padding:0;display:flex;position:relative;overflow:visible}.framer-40eWd .framer-17nc0jr,.framer-40eWd .framer-zb38l9,.framer-40eWd .framer-181ojgw,.framer-40eWd .framer-w2i7md{flex-flow:column;flex:none;place-content:flex-start center;align-items:flex-start;gap:10px;width:100%;height:min-content;padding:0;display:flex;position:relative;overflow:hidden}.framer-40eWd .framer-tend3f,.framer-40eWd .framer-y2qedt,.framer-40eWd .framer-16ul8u8,.framer-40eWd .framer-1sh71oh{--framer-link-text-color:#09f;--framer-link-text-decoration:underline;--framer-text-wrap:balance;white-space:pre-wrap;word-break:break-word;word-wrap:break-word;z-index:1;flex:none;width:100%;height:auto;position:relative}.framer-40eWd .framer-1jx8nz2,.framer-40eWd .framer-cr6j29,.framer-40eWd .framer-1e9thv7,.framer-40eWd .framer-1h73kct{z-index:1;flex-flow:column;flex:none;place-content:flex-start center;align-items:flex-start;gap:10px;width:100%;height:min-content;padding:15px 0 0;display:flex;position:relative;overflow:visible}.framer-40eWd .framer-mbb7em,.framer-40eWd .framer-j122dz,.framer-40eWd .framer-td2zid,.framer-40eWd .framer-wxk2xi{--framer-link-text-color:#09f;--framer-link-text-decoration:underline;--framer-text-wrap:balance;white-space:pre-wrap;word-break:break-word;word-wrap:break-word;z-index:1;flex:1 0 0;width:1px;height:auto;position:relative}.framer-40eWd .framer-hco7cn{height:100%;overflow:var(--overflow-clip-fallback,clip);will-change:var(--framer-will-change-override,transform);border-radius:33px;flex-flow:column;flex:1 0 0;place-content:center;align-items:center;gap:10px;width:1px;padding:0;display:flex;position:relative;box-shadow:0 0 10px #ffffff4d}.framer-40eWd .framer-gwgsrl{height:1px;overflow:var(--overflow-clip-fallback,clip);will-change:var(--framer-will-change-override,transform);background-color:#0c0c0c;border-radius:32px;flex-flow:column;flex:1 0 0;place-content:center flex-start;align-items:center;gap:0;width:100%;padding:0;display:flex;position:relative}.framer-40eWd .framer-1i0fbmx{flex-flow:row;flex:none;place-content:center;align-items:center;gap:50px;width:100%;height:min-content;padding:5px;display:flex;position:relative;overflow:visible}.framer-40eWd .framer-x3efcj{height:434px;overflow:var(--overflow-clip-fallback,clip);will-change:var(--framer-will-change-override,transform);border-radius:20px;flex-flow:column;flex:1 0 0;place-content:center flex-end;align-items:center;gap:10px;width:1px;padding:0;display:flex;position:relative;box-shadow:0 0 10px #ffffff4d}.framer-40eWd .framer-1t1cje6-container{flex:1 0 0;width:100%;height:1px;position:relative;-webkit-mask:linear-gradient(#000 80%,#0000 100%);mask:linear-gradient(#000 80%,#0000 100%)}.framer-40eWd .framer-xwe0lm{flex-flow:column;flex:1 0 0;place-content:center;align-self:stretch;align-items:center;gap:10px;width:1px;height:auto;padding:0;display:flex;position:relative;overflow:visible}.framer-40eWd .framer-14gi4nj{z-index:1;flex-flow:column;flex:none;place-content:center;align-items:center;gap:0;height:min-content;padding:0;display:flex;position:absolute;top:0;left:0;right:0;overflow:hidden}.framer-40eWd .framer-uuygjd{flex:none;gap:10px;width:100%;height:35vh;position:relative;overflow:hidden}.framer-40eWd .framer-1dv7tgq{flex-flow:column;flex:none;place-content:center flex-end;align-items:center;gap:24px;padding:0 16px;display:flex;position:absolute;inset:0;overflow:hidden}.framer-40eWd .framer-gywjca{flex-flow:row;flex:none;place-content:center;align-items:center;gap:10px;width:min-content;height:min-content;padding:10px 0 0;display:flex;position:relative;overflow:visible}.framer-40eWd .framer-6c3od3{height:min-content;overflow:var(--overflow-clip-fallback,clip);flex-flow:row;flex:none;place-content:center;align-items:center;gap:10px;width:min-content;padding:10px 0 0;display:flex;position:relative}.framer-40eWd .framer-12q6u24{pointer-events:none;flex:none;width:100%;height:65vh;position:relative;overflow:visible}.framer-40eWd .framer-1w2s9nf{aspect-ratio:1.85185;height:var(--framer-aspect-ratio-supported,411px);flex-flow:column;flex:none;place-content:center;align-items:center;gap:10px;width:750px;padding:0;display:flex;position:absolute;top:50%;left:50%;overflow:visible;transform:translate(-50%,-50%);box-shadow:0 -30px 120px #000}.framer-40eWd .framer-1gt6fkf{opacity:0;pointer-events:none;z-index:2;background-color:#050505;flex:none;position:absolute;inset:0;overflow:hidden}.framer-40eWd .framer-y8mw6s{aspect-ratio:1.85366;height:var(--framer-aspect-ratio-supported,405px);mix-blend-mode:screen;z-index:1;flex:none;width:100%;position:absolute;top:50%;left:50%;overflow:visible;transform:translate(-50%,-50%)}.framer-40eWd .framer-wrpv2m{aspect-ratio:1.82482;height:var(--framer-aspect-ratio-supported,411px);flex:none;width:100%;position:relative;overflow:hidden}.framer-40eWd .framer-1fobn6b{aspect-ratio:1.85366;height:var(--framer-aspect-ratio-supported,410px);flex:none;width:100%;position:absolute;top:50%;left:50%;transform:translate(-50%,-50%)}.framer-40eWd .framer-1n9j15a{aspect-ratio:1.85366;height:var(--framer-aspect-ratio-supported,405px);mix-blend-mode:screen;pointer-events:none;z-index:1;flex:none;width:100%;position:absolute;top:50%;left:50%;overflow:visible;transform:translate(-50%,-50%)}.framer-40eWd .framer-yo8mwz{flex-flow:row;flex:none;place-content:center;align-items:center;gap:10px;width:100%;height:min-content;padding:0 16px;display:flex;position:relative;overflow:hidden}.framer-40eWd .framer-n57e4b{flex-flow:column;flex:1 0 0;place-content:center;align-items:center;gap:10px;width:1px;height:min-content;padding:50px 50px 100px;display:flex;position:relative;overflow:hidden}.framer-40eWd .framer-y6gm29{height:min-content;overflow:var(--overflow-clip-fallback,clip);flex-flow:row;flex:none;place-content:center;align-items:center;gap:10px;width:min-content;padding:0;display:flex;position:relative}.framer-40eWd .framer-jauisq{pointer-events:none;flex-flow:column;flex:none;place-content:center flex-start;align-items:center;gap:0;width:100%;height:min-content;padding:0;display:flex;position:relative;overflow:visible}.framer-40eWd .framer-uqsvki{z-index:1;flex-flow:column;flex:none;place-content:center;align-items:center;gap:0;width:100%;height:min-content;padding:0;display:flex;position:sticky;top:0;overflow:hidden}.framer-40eWd .framer-1cgic29{pointer-events:none;flex:none;width:100%;height:35vh;position:relative;overflow:hidden}.framer-40eWd .framer-1gj52mz{pointer-events:none;z-index:1;flex-flow:column;flex:none;place-content:center;align-items:center;gap:10px;width:100%;height:65vh;padding:0;display:flex;position:relative;overflow:visible}.framer-40eWd .framer-1x15i22{opacity:0;pointer-events:none;z-index:3;background-color:#050505;flex:none;position:absolute;inset:0;overflow:hidden}.framer-40eWd .framer-ktdomn{aspect-ratio:1.85185;height:var(--framer-aspect-ratio-supported,405px);flex-flow:column;flex:none;place-content:center;align-items:center;gap:10px;width:750px;padding:0;display:flex;position:relative;overflow:visible}.framer-40eWd .framer-1ltwz3-container{aspect-ratio:1.59896;height:var(--framer-aspect-ratio-supported,384px);flex:none;width:614px;position:relative}.framer-40eWd .framer-ar61yo{z-index:1;flex:none;width:100%;height:50px;position:relative;overflow:hidden}.framer-40eWd .framer-14uxxiu{z-index:1;flex:none;width:100%;height:200px;position:relative;overflow:hidden}.framer-40eWd .framer-1xaath2{z-index:1;flex:none;width:100%;height:300px;position:relative;overflow:hidden}.framer-40eWd .framer-1hlfhw5{z-index:1;flex:none;width:100%;height:100px;position:relative;overflow:hidden}.framer-40eWd .framer-77aymv{height:min-content;overflow:var(--overflow-clip-fallback,clip);flex-flow:row;flex:none;place-content:center;align-items:center;gap:10px;width:100%;padding:0 0 100px;display:flex;position:relative}.framer-40eWd .framer-hsc28m{flex-flow:column;flex:none;place-content:flex-start;align-items:flex-start;gap:0;width:100%;max-width:1200px;height:min-content;padding:0;display:flex;position:relative;overflow:visible}.framer-40eWd .framer-1sqin2e{z-index:4;flex-flow:row;flex:none;place-content:flex-start center;align-items:flex-start;gap:10px;width:100%;height:100vh;max-height:1000px;padding:100px 64px 64px;display:flex;position:sticky;top:0;overflow:visible}.framer-40eWd .framer-gti1w5{z-index:1;flex-flow:column;flex:1 0 0;place-content:center;align-items:center;gap:10px;width:1px;height:min-content;padding:0 50px;display:flex;position:relative;overflow:visible}.framer-40eWd .framer-i69iip{filter:blur(100px);opacity:.4;will-change:var(--framer-will-change-effect-override,transform);z-index:1;background:linear-gradient(#f99d9f 0%,#9199ff 100%);flex:none;width:400px;height:300px;position:absolute;bottom:60px;left:calc(50% - 200px);overflow:hidden}.framer-40eWd .framer-18l7aud{z-index:4;flex-flow:row;flex:none;place-content:center;align-items:center;gap:10px;width:min-content;height:min-content;padding:0;display:flex;position:absolute;top:75%;left:50%;overflow:visible;transform:translate(-50%,-50%)}.framer-40eWd .framer-jeebv3{-webkit-user-select:none;user-select:none;aspect-ratio:.480769;height:var(--framer-aspect-ratio-supported,416px);pointer-events:none;z-index:2;flex:none;width:200px;position:relative;overflow:visible}.framer-40eWd .framer-rpmhee-container{z-index:1;flex:none;width:auto;height:auto;position:absolute;top:50%;left:3px;transform:translateY(-50%)}.framer-40eWd .framer-auaqe{opacity:0;height:1px;overflow:var(--overflow-clip-fallback,clip);background-color:#000;flex:none;width:100%;position:relative}.framer-40eWd .framer-5mznw4{z-index:1;flex-flow:row;flex:none;place-content:center flex-start;align-items:center;gap:10px;width:100%;height:100vh;padding:150px;display:flex;position:sticky;top:0;overflow:visible}.framer-40eWd .framer-j8td4n{flex-flow:column;flex:1 0 0;place-content:flex-start center;align-items:flex-start;gap:15px;width:1px;height:min-content;padding:0;display:flex;position:relative;overflow:hidden}.framer-40eWd .framer-3epliv,.framer-40eWd .framer-1irblko{z-index:1;flex-flow:column;flex:none;place-content:flex-start center;align-items:flex-start;gap:15px;width:377px;height:min-content;padding:0;display:flex;position:relative;overflow:visible}.framer-40eWd .framer-1nk08nt,.framer-40eWd .framer-pmc0yt{flex-flow:row;flex:none;place-content:center flex-start;align-items:center;gap:0;width:100%;height:50vh;padding:0;display:flex;position:relative;overflow:hidden}.framer-40eWd .framer-1y1vr4n{z-index:1;flex-flow:column;flex:none;place-content:flex-end center;align-items:flex-end;gap:44px;width:100%;height:100vh;padding:150px;display:flex;position:sticky;top:0;overflow:hidden}.framer-40eWd .framer-19lj7f6{flex-flow:column;flex:none;place-content:flex-end center;align-items:flex-end;gap:15px;width:100%;height:min-content;padding:0;display:flex;position:relative;overflow:hidden}.framer-40eWd .framer-qt50lr{background:radial-gradient(34% 44% at 50% 56.2%,#994ddb 0%,#5b1280 17%,#000 100%);flex-flow:column;flex:none;place-content:center;align-items:center;gap:40px;width:100%;height:min-content;padding:0;display:flex;position:relative;overflow:hidden}.framer-40eWd .framer-1ip10em{z-index:2;flex-flow:column;flex:none;place-content:center flex-start;align-items:center;gap:0;width:100%;max-width:1200px;height:min-content;padding:0;display:flex;position:relative;overflow:visible}.framer-40eWd .framer-m1obb0{z-index:3;flex-flow:column;flex:none;place-content:center flex-start;align-items:center;gap:45px;width:100%;height:min-content;padding:100px;display:flex;position:relative;overflow:visible}.framer-40eWd .framer-13r9xnx{flex-flow:column;flex:none;place-content:flex-start center;align-items:flex-start;gap:10px;width:100%;height:min-content;padding:0;display:flex;position:relative;overflow:visible}.framer-40eWd .framer-1lgr17{white-space:pre-wrap;word-break:break-word;word-wrap:break-word;flex:none;width:100%;height:auto;position:relative}.framer-40eWd .framer-n5h1ww{z-index:1;background-color:#000;border-radius:12px;flex-flow:column;flex:none;place-content:flex-start;align-items:flex-start;gap:15px;width:100%;max-width:450px;height:min-content;padding:15px;display:flex;position:relative;overflow:visible}.framer-40eWd .framer-bkkmpq{height:min-content;overflow:var(--overflow-clip-fallback,clip);flex-flow:column;flex:none;place-content:center;align-items:center;gap:15px;width:100%;padding:0;display:flex;position:relative}.framer-40eWd .framer-64yzph,.framer-40eWd .framer-ikw1pd,.framer-40eWd .framer-18r9qlw,.framer-40eWd .framer-1s0rzl4{flex-flow:column;flex:none;place-content:flex-start;align-items:flex-start;gap:5px;width:100%;height:min-content;padding:0;display:flex;position:relative}.framer-40eWd .framer-a5didf,.framer-40eWd .framer-b8fz4h,.framer-40eWd .framer-1l7wooc,.framer-40eWd .framer-2zpmr2{--framer-input-background:#101010;--framer-input-border-bottom-width:1px;--framer-input-border-color:#8888881a;--framer-input-border-left-width:1px;--framer-input-border-radius-bottom-left:10px;--framer-input-border-radius-bottom-right:10px;--framer-input-border-radius-top-left:10px;--framer-input-border-radius-top-right:10px;--framer-input-border-right-width:1px;--framer-input-border-style:solid;--framer-input-border-top-width:1px;--framer-input-focused-border-color:#09f;--framer-input-focused-border-style:solid;--framer-input-focused-border-width:1px;--framer-input-font-color:#fff;--framer-input-font-family:"Inter";--framer-input-font-letter-spacing:0em;--framer-input-font-line-height:1.2em;--framer-input-font-size:14px;--framer-input-font-weight:400;--framer-input-icon-color:#999;--framer-input-padding:12px;--framer-input-placeholder-color:#99999980;flex:none;width:100%;height:45px;position:relative}.framer-40eWd .framer-9y4ybp-container{flex:none;width:100%;height:45px;position:relative}.framer-40eWd .framer-1kldp4g{z-index:1;flex-flow:column;flex:none;place-content:center flex-end;align-items:center;gap:50px;width:100%;height:min-content;padding:0;display:flex;position:relative;overflow:visible}.framer-40eWd .framer-nr7iub{z-index:1;flex-flow:row;flex:none;place-content:center flex-start;align-items:center;gap:15px;width:min-content;height:min-content;padding:0;display:flex;position:relative;overflow:visible}.framer-40eWd .framer-kz83u7{--border-bottom-width:0px;--border-color:#5113e9;--border-left-width:1px;--border-right-width:1px;--border-style:solid;--border-top-width:1px;z-index:10;background-color:#0f0f0f;border-top-left-radius:20px;border-top-right-radius:20px;flex-flow:row;flex:none;place-content:center;align-items:center;gap:10px;height:min-content;padding:0;display:flex;position:fixed;bottom:0;left:0;right:0;overflow:visible}.framer-40eWd .framer-1jzla9v{height:70px;overflow:var(--overflow-clip-fallback,clip);flex-flow:row;flex:none;place-content:center;align-items:center;gap:9px;width:100%;padding:8px 20px;display:flex;position:relative}.framer-40eWd .framer-mq6j6q{height:min-content;overflow:var(--overflow-clip-fallback,clip);flex-flow:row;flex:none;place-content:center;align-items:center;gap:4px;width:min-content;padding:0;display:flex;position:relative}@media (max-width:1199px) and (min-width:810px){.framer-3mmEP .framer-styles-preset-1my0xcq:not(.rich-text-wrapper),.framer-3mmEP .framer-styles-preset-1my0xcq.rich-text-wrapper h2{--framer-font-family:"Satoshi","Satoshi Placeholder",sans-serif;--framer-font-family-bold:"Satoshi","Satoshi Placeholder",sans-serif;--framer-font-family-bold-italic:"Satoshi","Satoshi Placeholder",sans-serif;--framer-font-family-italic:"Satoshi","Satoshi Placeholder",sans-serif;--framer-font-open-type-features:normal;--framer-font-size:35px;--framer-font-style:normal;--framer-font-style-bold:normal;--framer-font-style-bold-italic:italic;--framer-font-style-italic:italic;--framer-font-variation-axes:normal;--framer-font-weight:500;--framer-font-weight-bold:700;--framer-font-weight-bold-italic:700;--framer-font-weight-italic:500;--framer-letter-spacing:-.04em;--framer-line-height:1em;--framer-paragraph-spacing:40px;--framer-text-alignment:center;--framer-text-color:#eff6ff;--framer-text-decoration:none;--framer-text-stroke-color:initial;--framer-text-stroke-width:initial;--framer-text-transform:none}}@media (max-width:809px) and (min-width:0){.framer-3mmEP .framer-styles-preset-1my0xcq:not(.rich-text-wrapper),.framer-3mmEP .framer-styles-preset-1my0xcq.rich-text-wrapper h2{--framer-font-family:"Satoshi","Satoshi Placeholder",sans-serif;--framer-font-family-bold:"Satoshi","Satoshi Placeholder",sans-serif;--framer-font-family-bold-italic:"Satoshi","Satoshi Placeholder",sans-serif;--framer-font-family-italic:"Satoshi","Satoshi Placeholder",sans-serif;--framer-font-open-type-features:normal;--framer-font-size:28px;--framer-font-style:normal;--framer-font-style-bold:normal;--framer-font-style-bold-italic:italic;--framer-font-style-italic:italic;--framer-font-variation-axes:normal;--framer-font-weight:500;--framer-font-weight-bold:700;--framer-font-weight-bold-italic:700;--framer-font-weight-italic:500;--framer-letter-spacing:-.04em;--framer-line-height:1em;--framer-paragraph-spacing:40px;--framer-text-alignment:center;--framer-text-color:#eff6ff;--framer-text-decoration:none;--framer-text-stroke-color:initial;--framer-text-stroke-width:initial;--framer-text-transform:none}}.framer-40eWd[data-border=true]:after,.framer-40eWd [data-border=true]:after{content:"";border-width:var(--border-top-width,0)var(--border-right-width,0)var(--border-bottom-width,0)var(--border-left-width,0);border-color:var(--border-color,none);border-style:var(--border-style,none);box-sizing:border-box;border-radius:inherit;corner-shape:inherit;pointer-events:none;width:100%;height:100%;position:absolute;top:0;left:0}@media (min-width:810px) and (max-width:1199.98px){.framer-40eWd.framer-v7bt91{width:810px}.framer-40eWd .framer-ayzvsy{order:0;height:800px}.framer-40eWd .framer-12i2u80{align-content:center;align-items:center;padding:0 50px}.framer-40eWd .framer-orz9dt{flex-direction:column;bottom:430px;overflow:hidden;-webkit-mask:linear-gradient(#000 56%,#0000 100%);mask:linear-gradient(#000 56%,#0000 100%)}.framer-40eWd .framer-prx6lg{width:100%;height:1px}.framer-40eWd .framer-177o19q-container{top:calc(73.5135% - 400px);left:calc(50% - min(2000px,166.667%)/2)}.framer-40eWd .framer-ukfias{align-content:center;align-items:center;width:100%;padding:250px 0 0}.framer-40eWd .framer-kqhf7h{max-width:unset;width:500px}.framer-40eWd .framer-1v772h{justify-content:center;padding:25px 0 0}.framer-40eWd .framer-1gjr6ng{flex-direction:row;align-content:center;align-items:center}.framer-40eWd .framer-xnxsx4{order:1;height:1200px}.framer-40eWd .framer-8nf4mn{top:unset;position:relative}.framer-40eWd .framer-izy0g8{top:48%}.framer-40eWd .framer-1jhyf4y{order:4}.framer-40eWd .framer-7bd2o2{order:3}.framer-40eWd .framer-1qhhccr{order:5;padding:100px 30px 0;overflow:visible}.framer-40eWd .framer-13n25t4{min-height:unset;order:6}.framer-40eWd .framer-99atjx-container,.framer-40eWd .framer-18l7aud{left:unset;top:unset;transform:unset;position:relative}.framer-40eWd .framer-way333{order:7}.framer-40eWd .framer-uddu9i{order:8}.framer-40eWd .framer-1qb009v{padding:160px 0}.framer-40eWd .framer-1xg2p2b{padding:25px 0 0}.framer-40eWd .framer-d1c31,.framer-40eWd .framer-1towy0z,.framer-40eWd .framer-vw0rrh{flex:1 0 0;width:1px}.framer-40eWd .framer-1jgzzxo,.framer-40eWd .framer-ett93c,.framer-40eWd .framer-hvhpge{align-self:unset;width:100%}.framer-40eWd .framer-aq1b09{order:10}.framer-40eWd .framer-arqvyi{order:2;gap:0;padding:50px 30px}.framer-40eWd .framer-hspw7h{gap:50px}.framer-40eWd .framer-xo6mwe,.framer-40eWd .framer-56b58t,.framer-40eWd .framer-1i0fbmx{gap:30px}.framer-40eWd .framer-1mh7ndq,.framer-40eWd .framer-hco7cn,.framer-40eWd .framer-x3efcj,.framer-40eWd .framer-bs0638{height:min-content}.framer-40eWd .framer-11tuela,.framer-40eWd .framer-gwgsrl{flex:none;height:min-content}.framer-40eWd .framer-1ng9f8c-container,.framer-40eWd .framer-1t1cje6-container{flex:none;height:375px}.framer-40eWd .framer-auhrd2,.framer-40eWd .framer-192qf73,.framer-40eWd .framer-ndf3m0,.framer-40eWd .framer-1glib6x,.framer-40eWd .framer-167b7yv{--framer-text-wrap:unset}.framer-40eWd .framer-ympo2d-container{flex:none;height:auto}.framer-40eWd .framer-1c9qkbt{gap:30px;height:min-content}.framer-40eWd .framer-fq9809{height:434px}.framer-40eWd .framer-auh10d{order:11}.framer-40eWd .framer-1w2s9nf{height:var(--framer-aspect-ratio-supported,356px);width:650px}.framer-40eWd .framer-y8mw6s,.framer-40eWd .framer-1n9j15a{height:var(--framer-aspect-ratio-supported,351px)}.framer-40eWd .framer-wrpv2m{height:var(--framer-aspect-ratio-supported,356px)}.framer-40eWd .framer-ktdomn{height:var(--framer-aspect-ratio-supported,351px);width:650px}.framer-40eWd .framer-1ltwz3-container{height:var(--framer-aspect-ratio-supported,333px);width:82%}.framer-40eWd .framer-1xaath2{height:250px}.framer-40eWd .framer-77aymv{order:13}.framer-40eWd .framer-hsc28m{order:9}.framer-40eWd .framer-1sqin2e{height:min-content;top:unset;flex-direction:column;align-content:center;align-items:center;padding:100px 30px 64px;position:relative}.framer-40eWd .framer-gti1w5{flex:none;width:100%}.framer-40eWd .framer-i69iip{opacity:.5;bottom:125px;overflow:visible}.framer-40eWd .framer-auaqe{overflow:visible}.framer-40eWd .framer-5mznw4{align-content:flex-end;align-items:flex-end;height:min-content;padding:0 50px}.framer-40eWd .framer-j8td4n{flex:.7 0 0;gap:20px}.framer-40eWd .framer-3epliv,.framer-40eWd .framer-1irblko{gap:10px;width:100%}.framer-40eWd .framer-1y1vr4n{justify-content:flex-end;height:min-content;padding:0 30px}.framer-40eWd .framer-19lj7f6{justify-content:flex-end;gap:20px;width:70%}.framer-40eWd .framer-qt50lr{order:14}}@media (max-width:809.98px){.framer-40eWd.framer-v7bt91{width:390px}.framer-40eWd .framer-ayzvsy{order:0;height:600px}.framer-40eWd .framer-12i2u80{order:0;place-content:center flex-start;align-items:center;padding:0 30px 50px}.framer-40eWd .framer-orz9dt{-webkit-user-select:none;user-select:none;bottom:unset;height:250px;left:unset;top:unset;z-index:1;order:0;justify-content:flex-start;gap:0;position:relative;overflow:hidden;-webkit-mask:linear-gradient(#000 80%,#0000 100%);mask:linear-gradient(#000 80%,#0000 100%)}.framer-40eWd .framer-177o19q-container{max-height:unset;max-width:unset;width:147%;top:-200px;left:-23.4849%}.framer-40eWd .framer-ukfias{order:1;align-content:center;align-items:center;gap:0;width:100%}.framer-40eWd .framer-1puhp9o{justify-content:center;gap:5px}.framer-40eWd .framer-ljrf26{justify-content:center;gap:10px;width:100%}.framer-40eWd .framer-1a6qtot,.framer-40eWd .framer-s8bw6v-container,.framer-40eWd .framer-qvxkzw,.framer-40eWd .framer-mq6j6q{order:0}.framer-40eWd .framer-1w3pz7p-container{order:1;width:156px}.framer-40eWd .framer-g08rp3{order:2;width:100%}.framer-40eWd .framer-1o6x9e8{padding:20px 0 0}.framer-40eWd .framer-6vfng0{padding:0 0 20px}.framer-40eWd .framer-gwnlpp,.framer-40eWd .framer-auhrd2,.framer-40eWd .framer-192qf73,.framer-40eWd .framer-ndf3m0,.framer-40eWd .framer-1glib6x,.framer-40eWd .framer-167b7yv,.framer-40eWd .framer-yq2yu5,.framer-40eWd .framer-vqx61i{--framer-text-wrap:unset}.framer-40eWd .framer-kqhf7h{order:3}.framer-40eWd .framer-1o3sdls{order:5;width:100%}.framer-40eWd .framer-1v772h{justify-content:center;gap:10px;padding:30px 0 0}.framer-40eWd .framer-1gjr6ng{flex-direction:row;align-content:center;align-items:center;gap:15px}.framer-40eWd .framer-7a287c,.framer-40eWd .framer-1rsrzae-container{order:1}.framer-40eWd .framer-xnxsx4{order:1;justify-content:flex-start;height:min-content}.framer-40eWd .framer-8nf4mn{height:min-content;top:unset;flex:none;justify-content:flex-start;position:relative}.framer-40eWd .framer-izy0g8{top:270px;transform:translate(-50%)}.framer-40eWd .framer-8eutjp{height:var(--framer-aspect-ratio-supported,510px);order:1}.framer-40eWd .framer-utsvq0{width:var(--framer-aspect-ratio-supported,200px)}.framer-40eWd .framer-11dlf3z,.framer-40eWd .framer-yy9131{height:var(--framer-aspect-ratio-supported,200px)}.framer-40eWd .framer-10j5c3v{height:var(--framer-aspect-ratio-supported,20px)}.framer-40eWd .framer-17hxulm{height:var(--framer-aspect-ratio-supported,360px);order:2}.framer-40eWd .framer-1yn7ekd{height:var(--framer-aspect-ratio-supported,192px)}.framer-40eWd .framer-812vbh{height:var(--framer-aspect-ratio-supported,210px);order:3}.framer-40eWd .framer-1gp64af{top:200px}.framer-40eWd .framer-1jhyf4y{order:3;padding:50px 0 100px}.framer-40eWd .framer-7bd2o2{order:4}.framer-40eWd .framer-pziss3{gap:0;height:1px;padding:0}.framer-40eWd .framer-1qhhccr{scroll-margin-top:unset;order:5;gap:150px;padding:100px 15px 0}.framer-40eWd .framer-6ygmvq{min-height:unset}.framer-40eWd .framer-way333{order:7}.framer-40eWd .framer-1cksdfr{padding:20px 50px 0}.framer-40eWd .framer-1mybsqh{flex-direction:column;align-content:flex-start;align-items:flex-start;gap:10px}.framer-40eWd .framer-blvp6n{padding:50px 0 0}.framer-40eWd .framer-1qtffyf-container{height:400px}.framer-40eWd .framer-uddu9i{order:8;scroll-margin-top:150px}.framer-40eWd .framer-1qb009v{padding:50px 0}.framer-40eWd .framer-1j3wd51{padding:30px 20px}.framer-40eWd .framer-1c7qgei{gap:10px;padding:0}.framer-40eWd .framer-zv2c0u,.framer-40eWd .framer-t0fuia{gap:8px}.framer-40eWd .framer-q5ofp3,.framer-40eWd .framer-17q95bd{white-space:pre-wrap;word-break:break-word;word-wrap:break-word;width:100%}.framer-40eWd .framer-1xg2p2b{place-content:flex-start center;align-items:flex-start;gap:0;padding:5px 0 0}.framer-40eWd .framer-d1c31,.framer-40eWd .framer-1towy0z,.framer-40eWd .framer-vw0rrh{flex:1 0 0;gap:5px;width:1px}.framer-40eWd .framer-1jgzzxo,.framer-40eWd .framer-ett93c,.framer-40eWd .framer-hvhpge{align-self:unset;width:100%}.framer-40eWd .framer-aq1b09{order:10}.framer-40eWd .framer-arqvyi{order:2;gap:100px;padding:50px 20px 150px;scroll-margin-top:50px}.framer-40eWd .framer-z3i2qx{gap:20px;padding:0}.framer-40eWd .framer-hspw7h{gap:100px;overflow:visible}.framer-40eWd .framer-xo6mwe,.framer-40eWd .framer-56b58t,.framer-40eWd .framer-1c9qkbt{--border-bottom-width:1px;--border-color:#222;--border-left-width:1px;--border-right-width:1px;--border-style:solid;--border-top-width:1px;background-color:#0f0f0f;border-radius:12px;flex-direction:column;gap:30px;height:min-content;padding:30px 20px;box-shadow:0 0 10px #ffffff4d}.framer-40eWd .framer-1mh7ndq,.framer-40eWd .framer-hco7cn,.framer-40eWd .framer-bs0638{flex:none;order:1;width:100%;height:min-content}.framer-40eWd .framer-11tuela{background-color:#000;flex:none;height:min-content}.framer-40eWd .framer-1ng9f8c-container{flex:none;height:264px}.framer-40eWd .framer-8a0hue,.framer-40eWd .framer-aevu9e,.framer-40eWd .framer-fq9809{flex:none;order:2;width:100%;height:min-content}.framer-40eWd .framer-17nc0jr,.framer-40eWd .framer-zb38l9,.framer-40eWd .framer-181ojgw,.framer-40eWd .framer-w2i7md{gap:20px}.framer-40eWd .framer-1jx8nz2,.framer-40eWd .framer-cr6j29{order:1;padding:0}.framer-40eWd .framer-mbb7em,.framer-40eWd .framer-j122dz,.framer-40eWd .framer-td2zid,.framer-40eWd .framer-wxk2xi{flex:none;order:0;width:100%}.framer-40eWd .framer-gwgsrl{flex:none;height:min-content}.framer-40eWd .framer-ympo2d-container,.framer-40eWd .framer-1t1cje6-container{flex:none;height:375px}.framer-40eWd .framer-1i0fbmx{--border-bottom-width:1px;--border-color:#222;--border-left-width:1px;--border-right-width:1px;--border-style:solid;--border-top-width:1px;background-color:#0f0f0f;border-radius:12px;flex-direction:column;gap:30px;padding:30px 20px;box-shadow:0 0 10px #ffffff4d}.framer-40eWd .framer-x3efcj{flex:none;order:1;width:100%;height:min-content;box-shadow:0 0 3px #ffffff4d}.framer-40eWd .framer-xwe0lm{align-self:unset;flex:none;order:2;width:100%;height:min-content}.framer-40eWd .framer-1e9thv7,.framer-40eWd .framer-1h73kct,.framer-40eWd .framer-yo8mwz,.framer-40eWd .framer-gti1w5{padding:0}.framer-40eWd .framer-auh10d{order:13}.framer-40eWd .framer-uuygjd,.framer-40eWd .framer-1cgic29{height:30vh}.framer-40eWd .framer-12q6u24,.framer-40eWd .framer-1gj52mz{height:50vh}.framer-40eWd .framer-1w2s9nf,.framer-40eWd .framer-ktdomn{height:var(--framer-aspect-ratio-supported,184px);width:340px}.framer-40eWd .framer-y8mw6s,.framer-40eWd .framer-1fobn6b,.framer-40eWd .framer-1n9j15a{height:var(--framer-aspect-ratio-supported,108px)}.framer-40eWd .framer-wrpv2m{height:var(--framer-aspect-ratio-supported,110px)}.framer-40eWd .framer-n57e4b{padding:50px 20px 0}.framer-40eWd .framer-1ltwz3-container{height:var(--framer-aspect-ratio-supported,125px);width:82%}.framer-40eWd .framer-14uxxiu,.framer-40eWd .framer-1xaath2{height:150px}.framer-40eWd .framer-hsc28m{order:9}.framer-40eWd .framer-1sqin2e{padding:150px 20px 32px;overflow:hidden}.framer-40eWd .framer-i69iip{opacity:.44;bottom:260px}.framer-40eWd .framer-jeebv3{height:var(--framer-aspect-ratio-supported,418px)}.framer-40eWd .framer-5mznw4{align-content:flex-end;align-items:flex-end;padding:32px 20px 120px}.framer-40eWd .framer-3epliv,.framer-40eWd .framer-1irblko{width:100%}.framer-40eWd .framer-1nk08nt{height:80vh}.framer-40eWd .framer-1y1vr4n{justify-content:flex-end;height:80vh;padding:32px 20px 120px}.framer-40eWd .framer-19lj7f6{align-content:flex-start;align-items:flex-start}.framer-40eWd .framer-qt50lr{background:radial-gradient(100% 41% at 50% 57.6%,#994ddb 0%,#5b1280 49.7519%,#000 100%);order:14;gap:20px}.framer-40eWd .framer-m1obb0{padding:100px 20px}.framer-40eWd .framer-vllzyg{flex-direction:column;gap:0}.framer-40eWd .framer-kz83u7{order:15}}.ssr-variant{display:contents}body{--framer-will-change-override:none}@supports (background:-webkit-named-image(i)) and (not (grid-template-rows:subgrid)){body{--framer-will-change-override:transform}}body{--framer-will-change-filter-override:none}@supports (background:-webkit-named-image(i)) and (not (position-area:top right)){body{--framer-will-change-filter-override:filter}}[data-framer-component-type]{position:absolute}[data-framer-component-type=Text]{cursor:inherit}[data-framer-component-text-autosized] *{white-space:pre}[data-framer-component-type=Text]>*{text-align:var(--framer-text-alignment,start)}[data-framer-component-type=Text] span span,[data-framer-component-type=Text] p span,[data-framer-component-type=Text] h1 span,[data-framer-component-type=Text] h2 span,[data-framer-component-type=Text] h3 span,[data-framer-component-type=Text] h4 span,[data-framer-component-type=Text] h5 span,[data-framer-component-type=Text] h6 span{display:block}[data-framer-component-type=Text] span span span,[data-framer-component-type=Text] p span span,[data-framer-component-type=Text] h1 span span,[data-framer-component-type=Text] h2 span span,[data-framer-component-type=Text] h3 span span,[data-framer-component-type=Text] h4 span span,[data-framer-component-type=Text] h5 span span,[data-framer-component-type=Text] h6 span span{display:unset}[data-framer-component-type=Text] div div span,[data-framer-component-type=Text] a div span,[data-framer-component-type=Text] span span span,[data-framer-component-type=Text] p span span,[data-framer-component-type=Text] h1 span span,[data-framer-component-type=Text] h2 span span,[data-framer-component-type=Text] h3 span span,[data-framer-component-type=Text] h4 span span,[data-framer-component-type=Text] h5 span span,[data-framer-component-type=Text] h6 span span,[data-framer-component-type=Text] a{font-family:var(--font-family);font-style:var(--font-style);font-weight:min(calc(var(--framer-font-weight-increase,0) + var(--font-weight,400)),900);color:var(--text-color);letter-spacing:var(--letter-spacing);font-size:var(--font-size);text-transform:var(--text-transform);--text-decoration:var(--framer-text-decoration-style,solid)var(--framer-text-decoration,none)var(--framer-text-decoration-color,currentcolor)var(--framer-text-decoration-thickness,auto);--text-decoration-skip-ink:var(--framer-text-decoration-skip-ink);--text-underline-offset:var(--framer-text-decoration-offset);line-height:var(--line-height);--font-family:var(--framer-font-family);--font-style:var(--framer-font-style);--font-weight:var(--framer-font-weight);--text-color:var(--framer-text-color);--letter-spacing:var(--framer-letter-spacing);--font-size:var(--framer-font-size);--text-transform:var(--framer-text-transform);--line-height:var(--framer-line-height)}[data-framer-component-type=Text] a,[data-framer-component-type=Text] a div span,[data-framer-component-type=Text] a span span span,[data-framer-component-type=Text] a p span span,[data-framer-component-type=Text] a h1 span span,[data-framer-component-type=Text] a h2 span span,[data-framer-component-type=Text] a h3 span span,[data-framer-component-type=Text] a h4 span span,[data-framer-component-type=Text] a h5 span span,[data-framer-component-type=Text] a h6 span span{--font-family:var(--framer-link-font-family,var(--framer-font-family));--font-style:var(--framer-link-font-style,var(--framer-font-style));--font-weight:var(--framer-link-font-weight,var(--framer-font-weight));--text-color:var(--framer-link-text-color,var(--framer-text-color));--font-size:var(--framer-link-font-size,var(--framer-font-size));--text-transform:var(--framer-link-text-transform,var(--framer-text-transform));--text-decoration:var(--framer-link-text-decoration-style,var(--framer-text-decoration-style,solid))var(--framer-link-text-decoration,var(--framer-text-decoration,none))var(--framer-link-text-decoration-color,var(--framer-text-decoration-color,currentcolor))var(--framer-link-text-decoration-thickness,var(--framer-text-decoration-thickness,auto));--text-decoration-skip-ink:var(--framer-link-text-decoration-skip-ink,var(--framer-text-decoration-skip-ink));--text-underline-offset:var(--framer-link-text-decoration-offset,var(--framer-text-decoration-offset))}[data-framer-component-type=Text] a:hover,[data-framer-component-type=Text] a div span:hover,[data-framer-component-type=Text] a span span span:hover,[data-framer-component-type=Text] a p span span:hover,[data-framer-component-type=Text] a h1 span span:hover,[data-framer-component-type=Text] a h2 span span:hover,[data-framer-component-type=Text] a h3 span span:hover,[data-framer-component-type=Text] a h4 span span:hover,[data-framer-component-type=Text] a h5 span span:hover,[data-framer-component-type=Text] a h6 span span:hover{--font-family:var(--framer-link-hover-font-family,var(--framer-link-font-family,var(--framer-font-family)));--font-style:var(--framer-link-hover-font-style,var(--framer-link-font-style,var(--framer-font-style)));--font-weight:var(--framer-link-hover-font-weight,var(--framer-link-font-weight,var(--framer-font-weight)));--text-color:var(--framer-link-hover-text-color,var(--framer-link-text-color,var(--framer-text-color)));--font-size:var(--framer-link-hover-font-size,var(--framer-link-font-size,var(--framer-font-size)));--text-transform:var(--framer-link-hover-text-transform,var(--framer-link-text-transform,var(--framer-text-transform)));--text-decoration:var(--framer-link-hover-text-decoration-style,var(--framer-link-text-decoration-style,var(--framer-text-decoration-style,solid)))var(--framer-link-hover-text-decoration,var(--framer-link-text-decoration,var(--framer-text-decoration,none)))var(--framer-link-hover-text-decoration-color,var(--framer-link-text-decoration-color,var(--framer-text-decoration-color,currentcolor)))var(--framer-link-hover-text-decoration-thickness,var(--framer-link-text-decoration-thickness,var(--framer-text-decoration-thickness,auto)));--text-decoration-skip-ink:var(--framer-link-hover-text-decoration-skip-ink,var(--framer-link-text-decoration-skip-ink,var(--framer-text-decoration-skip-ink)));--text-underline-offset:var(--framer-link-hover-text-decoration-offset,var(--framer-link-text-decoration-offset,var(--framer-text-decoration-offset)))}[data-framer-component-type=Text].isCurrent a,[data-framer-component-type=Text].isCurrent a div span,[data-framer-component-type=Text].isCurrent a span span span,[data-framer-component-type=Text].isCurrent a p span span,[data-framer-component-type=Text].isCurrent a h1 span span,[data-framer-component-type=Text].isCurrent a h2 span span,[data-framer-component-type=Text].isCurrent a h3 span span,[data-framer-component-type=Text].isCurrent a h4 span span,[data-framer-component-type=Text].isCurrent a h5 span span,[data-framer-component-type=Text].isCurrent a h6 span span{--font-family:var(--framer-link-current-font-family,var(--framer-link-font-family,var(--framer-font-family)));--font-style:var(--framer-link-current-font-style,var(--framer-link-font-style,var(--framer-font-style)));--font-weight:var(--framer-link-current-font-weight,var(--framer-link-font-weight,var(--framer-font-weight)));--text-color:var(--framer-link-current-text-color,var(--framer-link-text-color,var(--framer-text-color)));--font-size:var(--framer-link-current-font-size,var(--framer-link-font-size,var(--framer-font-size)));--text-transform:var(--framer-link-current-text-transform,var(--framer-link-text-transform,var(--framer-text-transform)));--text-decoration:var(--framer-link-current-text-decoration-style,var(--framer-link-text-decoration-style,var(--framer-text-decoration-style,solid)))var(--framer-link-current-text-decoration,var(--framer-link-text-decoration,var(--framer-text-decoration,none)))var(--framer-link-current-text-decoration-color,var(--framer-link-text-decoration-color,var(--framer-text-decoration-color,currentcolor)))var(--framer-link-current-text-decoration-thickness,var(--framer-link-text-decoration-thickness,var(--framer-text-decoration-thickness,auto)));--text-decoration-skip-ink:var(--framer-link-current-text-decoration-skip-ink,var(--framer-link-text-decoration-skip-ink,var(--framer-text-decoration-skip-ink)));--text-underline-offset:var(--framer-link-current-text-decoration-offset,var(--framer-link-text-decoration-offset,var(--framer-text-decoration-offset)))}[data-framer-component-type=RichTextContainer]{outline:none;flex-direction:column;flex-shrink:0;justify-content:flex-start;display:flex}p.framer-text,div.framer-text,figure.framer-text,h1.framer-text,h2.framer-text,h3.framer-text,h4.framer-text,h5.framer-text,h6.framer-text,ol.framer-text,ul.framer-text{margin:0;padding:0}p.framer-text,div.framer-text,h1.framer-text,h2.framer-text,h3.framer-text,h4.framer-text,h5.framer-text,h6.framer-text,li.framer-text,ol.framer-text,ul.framer-text,mark.framer-text,span.framer-text:not([data-text-fill]){font-family:var(--framer-font-family-preview,var(--framer-blockquote-font-family,var(--framer-font-family,Inter,Inter Placeholder,sans-serif)));font-style:var(--framer-font-style-preview,var(--framer-blockquote-font-style,var(--framer-font-style,normal)));font-weight:var(--framer-font-weight-preview,var(--framer-blockquote-font-weight,var(--framer-font-weight,400)));color:var(--framer-blockquote-text-color,var(--framer-text-color,#000));font-size:calc(var(--framer-blockquote-font-size,var(--framer-font-size,16px))*var(--framer-font-size-scale,1));letter-spacing:var(--framer-blockquote-letter-spacing,var(--framer-letter-spacing,0));text-transform:var(--framer-blockquote-text-transform,var(--framer-text-transform,none));-webkit-text-decoration-line:var(--framer-blockquote-text-decoration,var(--framer-text-decoration,initial));text-decoration-line:var(--framer-blockquote-text-decoration,var(--framer-text-decoration,initial));-webkit-text-decoration-style:var(--framer-blockquote-text-decoration-style,var(--framer-text-decoration-style,initial));text-decoration-style:var(--framer-blockquote-text-decoration-style,var(--framer-text-decoration-style,initial));-webkit-text-decoration-color:var(--framer-blockquote-text-decoration-color,var(--framer-text-decoration-color,initial));text-decoration-color:var(--framer-blockquote-text-decoration-color,var(--framer-text-decoration-color,initial));text-decoration-thickness:var(--framer-blockquote-text-decoration-thickness,var(--framer-text-decoration-thickness,initial));text-decoration-skip-ink:var(--framer-blockquote-text-decoration-skip-ink,var(--framer-text-decoration-skip-ink,initial));text-underline-offset:var(--framer-blockquote-text-decoration-offset,var(--framer-text-decoration-offset,initial));line-height:var(--framer-blockquote-line-height,var(--framer-line-height,1.2em));text-align:var(--framer-blockquote-text-alignment,var(--framer-text-alignment,start));-webkit-text-stroke-width:var(--framer-text-stroke-width,initial);-webkit-text-stroke-color:var(--framer-text-stroke-color,initial);-moz-font-feature-settings:var(--framer-font-open-type-features,initial);-webkit-font-feature-settings:var(--framer-font-open-type-features,initial);font-feature-settings:var(--framer-font-open-type-features,initial);font-variation-settings:var(--framer-font-variation-axes-preview,var(--framer-font-variation-axes,normal));text-wrap:var(--framer-text-wrap-override,var(--framer-text-wrap))}mark.framer-text,p.framer-text,div.framer-text,h1.framer-text,h2.framer-text,h3.framer-text,h4.framer-text,h5.framer-text,h6.framer-text,li.framer-text,ol.framer-text,ul.framer-text{background-color:var(--framer-blockquote-text-background-color,var(--framer-text-background-color,initial));border-radius:var(--framer-blockquote-text-background-radius,var(--framer-text-background-radius,initial));corner-shape:var(--framer-blockquote-text-background-corner-shape,var(--framer-text-background-corner-shape,initial));padding:var(--framer-blockquote-text-background-padding,var(--framer-text-background-padding,initial))}@supports not (color:color(display-p3 1 1 1)){p.framer-text,div.framer-text,h1.framer-text,h2.framer-text,h3.framer-text,h4.framer-text,h5.framer-text,h6.framer-text,li.framer-text,ol.framer-text,ul.framer-text,span.framer-text:not([data-text-fill]){color:var(--framer-blockquote-text-color-rgb,var(--framer-blockquote-text-color,var(--framer-text-color-rgb,var(--framer-text-color,#000))));-webkit-text-stroke-color:var(--framer-text-stroke-color-rgb,var(--framer-text-stroke-color,initial))}mark.framer-text{background-color:var(--framer-blockquote-text-background-color-rgb,var(--framer-blockquote-text-background-color,var(--framer-text-background-color-rgb,var(--framer-text-background-color,initial))))}}.framer-fit-text .framer-text{white-space:nowrap;white-space-collapse:preserve}strong.framer-text{font-family:var(--framer-blockquote-font-family-bold,var(--framer-font-family-bold));font-style:var(--framer-blockquote-font-style-bold,var(--framer-font-style-bold));font-weight:var(--framer-blockquote-font-weight-bold,var(--framer-font-weight-bold,bolder));font-variation-settings:var(--framer-blockquote-font-variation-axes-bold,var(--framer-font-variation-axes-bold))}em.framer-text{font-family:var(--framer-blockquote-font-family-italic,var(--framer-font-family-italic));font-style:var(--framer-blockquote-font-style-italic,var(--framer-font-style-italic,italic));font-weight:var(--framer-blockquote-font-weight-italic,var(--framer-font-weight-italic));font-variation-settings:var(--framer-blockquote-font-variation-axes-italic,var(--framer-font-variation-axes-italic))}em.framer-text>strong.framer-text{font-family:var(--framer-blockquote-font-family-bold-italic,var(--framer-font-family-bold-italic));font-style:var(--framer-blockquote-font-style-bold-italic,var(--framer-font-style-bold-italic,italic));font-weight:var(--framer-blockquote-font-weight-bold-italic,var(--framer-font-weight-bold-italic,bolder));font-variation-settings:var(--framer-blockquote-font-variation-axes-bold-italic,var(--framer-font-variation-axes-bold-italic))}p.framer-text:not(:first-child),div.framer-text:not(:first-child),h1.framer-text:not(:first-child),h2.framer-text:not(:first-child),h3.framer-text:not(:first-child),h4.framer-text:not(:first-child),h5.framer-text:not(:first-child),h6.framer-text:not(:first-child),ol.framer-text:not(:first-child),ul.framer-text:not(:first-child),blockquote.framer-text:not(:first-child),table.framer-text:not(:first-child),figure.framer-text:not(:first-child),.framer-image.framer-text:not(:first-child){margin-top:var(--framer-blockquote-paragraph-spacing,var(--framer-paragraph-spacing,0))}li.framer-text>ul.framer-text:nth-child(2),li.framer-text>ol.framer-text:nth-child(2){margin-top:0}.framer-text[data-text-fill]{-webkit-text-fill-color:transparent;padding:max(0em,calc(calc(1.3em - var(--framer-blockquote-line-height,var(--framer-line-height,1.3em)))/2));margin:min(0em,calc(calc(1.3em - var(--framer-blockquote-line-height,var(--framer-line-height,1.3em)))/-2));-webkit-background-clip:text;background-clip:text;display:inline-block}code.framer-text,code.framer-text span.framer-text:not([data-text-fill]){font-family:var(--framer-code-font-family,var(--framer-font-family,Inter,Inter Placeholder,sans-serif));font-style:var(--framer-blockquote-font-style,var(--framer-code-font-style,var(--framer-font-style,normal)));font-weight:var(--framer-blockquote-font-weight,var(--framer-code-font-weight,var(--framer-font-weight,400)));color:var(--framer-blockquote-text-color,var(--framer-code-text-color,var(--framer-text-color,#000)));font-size:calc(var(--framer-blockquote-font-size,var(--framer-font-size,16px))*var(--framer-font-size-scale,1));letter-spacing:var(--framer-blockquote-letter-spacing,var(--framer-letter-spacing,0));line-height:var(--framer-blockquote-line-height,var(--framer-line-height,1.2em))}@supports not (color:color(display-p3 1 1 1)){code.framer-text,code.framer-text span.framer-text:not([data-text-fill]){color:var(--framer-blockquote-text-color-rgb,var(--framer-blockquote-text-color,var(--framer-code-text-color-rgb,var(--framer-code-text-color,var(--framer-text-color-rgb,var(--framer-text-color,#000))))))}}blockquote.framer-text{unicode-bidi:initial;margin-block-start:initial;margin-block-end:initial;margin-inline-start:initial;margin-inline-end:initial}a.framer-text,a.framer-text span.framer-text:not([data-text-fill]),span.framer-text[data-nested-link],span.framer-text[data-nested-link] span.framer-text:not([data-text-fill]){color:inherit;font-family:var(--framer-font-family-preview,var(--framer-blockquote-font-family,var(--framer-link-font-family,var(--framer-font-family,Inter,Inter Placeholder,sans-serif))));font-style:var(--framer-font-style-preview,var(--framer-blockquote-font-style,var(--framer-link-font-style,var(--framer-font-style,normal))));font-weight:var(--framer-font-weight-preview,var(--framer-blockquote-font-weight,var(--framer-link-font-weight,var(--framer-font-weight,400))));font-size:calc(var(--framer-blockquote-font-size,var(--framer-font-size,16px))*var(--framer-font-size-scale,1));text-transform:var(--framer-blockquote-text-transform,var(--framer-link-text-transform,var(--framer-text-transform,none)));cursor:var(--framer-custom-cursors,pointer);background-color:initial;border-radius:var(--framer-link-text-background-radius,initial);corner-shape:var(--framer-link-text-background-corner-shape,initial);padding:var(--framer-link-text-background-padding,initial)}a.framer-text,span.framer-text[data-nested-link]{color:var(--framer-blockquote-text-color,var(--framer-link-text-color,var(--framer-text-color,#000)));-webkit-text-decoration-line:var(--framer-blockquote-text-decoration,var(--framer-link-text-decoration,var(--framer-text-decoration,initial)));text-decoration-line:var(--framer-blockquote-text-decoration,var(--framer-link-text-decoration,var(--framer-text-decoration,initial)));-webkit-text-decoration-style:var(--framer-blockquote-text-decoration-style,var(--framer-link-text-decoration-style,var(--framer-text-decoration-style,initial)));text-decoration-style:var(--framer-blockquote-text-decoration-style,var(--framer-link-text-decoration-style,var(--framer-text-decoration-style,initial)));-webkit-text-decoration-color:var(--framer-blockquote-text-decoration-color,var(--framer-link-text-decoration-color,var(--framer-text-decoration-color,initial)));text-decoration-color:var(--framer-blockquote-text-decoration-color,var(--framer-link-text-decoration-color,var(--framer-text-decoration-color,initial)));text-decoration-thickness:var(--framer-blockquote-text-decoration-thickness,var(--framer-link-text-decoration-thickness,var(--framer-text-decoration-thickness,initial)));text-decoration-skip-ink:var(--framer-blockquote-text-decoration-skip-ink,var(--framer-link-text-decoration-skip-ink,var(--framer-text-decoration-skip-ink,initial)));text-underline-offset:var(--framer-blockquote-text-decoration-offset,var(--framer-link-text-decoration-offset,var(--framer-text-decoration-offset,initial)));background-color:var(--framer-link-text-background-color,initial)}@supports not (color:color(display-p3 1 1 1)){a.framer-text,span.framer-text[data-nested-link]{color:var(--framer-blockquote-text-color-rgb,var(--framer-blockquote-text-color,var(--framer-link-text-color-rgb,var(--framer-link-text-color,var(--framer-text-color-rgb,var(--framer-text-color,#000))))));background-color:var(--framer-link-text-background-color-rgb,var(--framer-link-text-background-color,initial));-webkit-text-decoration-color:var(--framer-link-text-decoration-color-rgb,var(--framer-link-text-decoration-color,var(--framer-text-decoration-color-rgb,var(--framer-text-decoration-color,currentcolor))));text-decoration-color:var(--framer-link-text-decoration-color-rgb,var(--framer-link-text-decoration-color,var(--framer-text-decoration-color-rgb,var(--framer-text-decoration-color,currentcolor))))}}code.framer-text a.framer-text,code.framer-text a.framer-text span.framer-text:not([data-text-fill]),code.framer-text span.framer-text[data-nested-link],code.framer-text span.framer-text[data-nested-link] span.framer-text:not([data-text-fill]){font-family:var(--framer-code-font-family,var(--framer-font-family,Inter,Inter Placeholder,sans-serif));font-style:var(--framer-blockquote-font-style,var(--framer-code-font-style,var(--framer-font-style,normal)));font-weight:var(--framer-blockquote-font-weight,var(--framer-code-font-weight,var(--framer-font-weight,400)));color:inherit;font-size:calc(var(--framer-blockquote-font-size,var(--framer-font-size,16px))*var(--framer-font-size-scale,1))}code.framer-text a.framer-text,code.framer-text span.framer-text[data-nested-link]{color:var(--framer-blockquote-text-color,var(--framer-link-text-color,var(--framer-code-text-color,var(--framer-text-color,#000))))}@supports not (color:color(display-p3 1 1 1)){code.framer-text a.framer-text,code.framer-text a.framer-text span.framer-text:not([data-text-fill]),code.framer-text span.framer-text[data-nested-link],code.framer-text span.framer-text[data-nested-link] span.framer-text:not([data-text-fill]){color:var(--framer-blockquote-text-color-rgb,var(--framer-blockquote-text-color,var(--framer-link-text-color-rgb,var(--framer-link-text-color,var(--framer-code-text-color-rgb,var(--framer-code-text-color,var(--framer-text-color-rgb,var(--framer-text-color,#000))))))))}}a.framer-text:hover,a.framer-text:hover span.framer-text:not([data-text-fill]),span.framer-text[data-nested-link]:hover,span.framer-text[data-nested-link]:hover span.framer-text:not([data-text-fill]){font-family:var(--framer-font-family-preview,var(--framer-link-hover-font-family,var(--framer-blockquote-font-family,var(--framer-link-font-family,var(--framer-font-family,Inter,Inter Placeholder,sans-serif)))));font-style:var(--framer-font-style-preview,var(--framer-link-hover-font-style,var(--framer-blockquote-font-style,var(--framer-link-font-style,var(--framer-font-style,normal)))));font-weight:var(--framer-font-weight-preview,var(--framer-link-hover-font-weight,var(--framer-blockquote-font-weight,var(--framer-link-font-weight,var(--framer-font-weight,400)))));font-size:calc(var(--framer-link-hover-font-size,var(--framer-blockquote-font-size,var(--framer-font-size,16px)))*var(--framer-font-size-scale,1));text-transform:var(--framer-link-hover-text-transform,var(--framer-blockquote-text-transform,var(--framer-link-text-transform,var(--framer-text-transform,none))));border-radius:var(--framer-link-hover-text-background-radius,var(--framer-link-text-background-radius,var(--framer-text-background-radius,initial)));corner-shape:var(--framer-link-hover-text-background-corner-shape,var(--framer-link-text-background-corner-shape,var(--framer-text-background-corner-shape,initial)));padding:var(--framer-link-hover-text-background-padding,var(--framer-link-text-background-padding,var(--framer-text-background-padding,initial)))}a.framer-text:hover,span.framer-text[data-nested-link]:hover{color:var(--framer-link-hover-text-color,var(--framer-blockquote-text-color,var(--framer-link-text-color,var(--framer-text-color,#000))));-webkit-text-decoration-line:var(--framer-link-hover-text-decoration,var(--framer-blockquote-text-decoration,var(--framer-link-text-decoration,var(--framer-text-decoration,initial))));text-decoration-line:var(--framer-link-hover-text-decoration,var(--framer-blockquote-text-decoration,var(--framer-link-text-decoration,var(--framer-text-decoration,initial))));-webkit-text-decoration-style:var(--framer-link-hover-text-decoration-style,var(--framer-blockquote-text-decoration-style,var(--framer-link-text-decoration-style,var(--framer-text-decoration-style,initial))));text-decoration-style:var(--framer-link-hover-text-decoration-style,var(--framer-blockquote-text-decoration-style,var(--framer-link-text-decoration-style,var(--framer-text-decoration-style,initial))));-webkit-text-decoration-color:var(--framer-link-hover-text-decoration-color,var(--framer-blockquote-text-decoration-color,var(--framer-link-text-decoration-color,var(--framer-text-decoration-color,initial))));text-decoration-color:var(--framer-link-hover-text-decoration-color,var(--framer-blockquote-text-decoration-color,var(--framer-link-text-decoration-color,var(--framer-text-decoration-color,initial))));text-decoration-thickness:var(--framer-link-hover-text-decoration-thickness,var(--framer-blockquote-text-decoration-thickness,var(--framer-link-text-decoration-thickness,var(--framer-text-decoration-thickness,initial))));text-decoration-skip-ink:var(--framer-link-hover-text-decoration-skip-ink,var(--framer-blockquote-text-decoration-skip-ink,var(--framer-link-text-decoration-skip-ink,var(--framer-text-decoration-skip-ink,initial))));text-underline-offset:var(--framer-link-hover-text-decoration-offset,var(--framer-blockquote-text-decoration-offset,var(--framer-link-text-decoration-offset,var(--framer-text-decoration-offset,initial))));background-color:var(--framer-link-hover-text-background-color,var(--framer-link-text-background-color,var(--framer-text-background-color,initial)))}@supports not (color:color(display-p3 1 1 1)){a.framer-text:hover,span.framer-text[data-nested-link]:hover{color:var(--framer-link-hover-text-color-rgb,var(--framer-link-hover-text-color,var(--framer-blockquote-text-color-rgb,var(--framer-blockquote-text-color,var(--framer-link-text-color-rgb,var(--framer-link-text-color,var(--framer-text-color-rgb,var(--framer-text-color,#000))))))));background-color:var(--framer-link-hover-text-background-color-rgb,var(--framer-link-hover-text-background-color,var(--framer-link-text-background-color-rgb,var(--framer-link-text-background-color,var(--framer-text-background-color-rgb,var(--framer-text-background-color,initial))))));-webkit-text-decoration-color:var(--framer-link-hover-text-decoration-color-rgb,var(--framer-link-hover-text-decoration-color,var(--framer-link-text-decoration-color-rgb,var(--framer-link-text-decoration-color,var(--framer-text-decoration-color-rgb,var(--framer-text-decoration-color,currentcolor))))));text-decoration-color:var(--framer-link-hover-text-decoration-color-rgb,var(--framer-link-hover-text-decoration-color,var(--framer-link-text-decoration-color-rgb,var(--framer-link-text-decoration-color,var(--framer-text-decoration-color-rgb,var(--framer-text-decoration-color,currentcolor))))))}}code.framer-text a.framer-text:hover,code.framer-text span.framer-text[data-nested-link]:hover{color:var(--framer-link-hover-text-color,var(--framer-blockquote-text-color,var(--framer-link-text-color,var(--framer-code-text-color,var(--framer-text-color,#000)))))}@supports not (color:color(display-p3 1 1 1)){code.framer-text a.framer-text:hover,code.framer-text span.framer-text[data-nested-link]:hover{color:var(--framer-link-hover-text-color-rgb,var(--framer-link-hover-text-color,var(--framer-blockquote-text-color-rgb,var(--framer-blockquote-text-color,var(--framer-link-text-color-rgb,var(--framer-link-text-color,var(--framer-code-text-color-rgb,var(--framer-code-text-color,var(--framer-text-color-rgb,var(--framer-text-color,#000))))))))))}}a.framer-text[data-framer-page-link-current],a.framer-text[data-framer-page-link-current] span.framer-text:not([data-text-fill]),span.framer-text[data-framer-page-link-current],span.framer-text[data-framer-page-link-current] span.framer-text:not([data-text-fill]){font-family:var(--framer-font-family-preview,var(--framer-link-current-font-family,var(--framer-link-font-family,var(--framer-font-family,Inter,Inter Placeholder,sans-serif))));font-style:var(--framer-font-style-preview,var(--framer-link-current-font-style,var(--framer-link-font-style,var(--framer-font-style,normal))));font-weight:var(--framer-font-weight-preview,var(--framer-link-current-font-weight,var(--framer-link-font-weight,var(--framer-font-weight,400))));font-size:calc(var(--framer-link-current-font-size,var(--framer-link-font-size,var(--framer-font-size,16px)))*var(--framer-font-size-scale,1));text-transform:var(--framer-link-current-text-transform,var(--framer-link-text-transform,var(--framer-text-transform,none)));border-radius:var(--framer-link-current-text-background-radius,var(--framer-link-text-background-radius,initial));corner-shape:var(--framer-link-current-text-background-corner-shape,var(--framer-link-text-background-corner-shape,initial));padding:var(--framer-link-current-text-background-padding,var(--framer-link-text-background-padding,initial))}a.framer-text[data-framer-page-link-current],span.framer-text[data-framer-page-link-current]{color:var(--framer-link-current-text-color,var(--framer-link-text-color,var(--framer-text-color,#000)));-webkit-text-decoration-line:var(--framer-link-current-text-decoration,var(--framer-link-text-decoration,var(--framer-text-decoration,initial)));text-decoration-line:var(--framer-link-current-text-decoration,var(--framer-link-text-decoration,var(--framer-text-decoration,initial)));-webkit-text-decoration-style:var(--framer-link-current-text-decoration-style,var(--framer-link-text-decoration-style,var(--framer-text-decoration-style,initial)));text-decoration-style:var(--framer-link-current-text-decoration-style,var(--framer-link-text-decoration-style,var(--framer-text-decoration-style,initial)));-webkit-text-decoration-color:var(--framer-link-current-text-decoration-color,var(--framer-link-text-decoration-color,var(--framer-text-decoration-color,initial)));text-decoration-color:var(--framer-link-current-text-decoration-color,var(--framer-link-text-decoration-color,var(--framer-text-decoration-color,initial)));text-decoration-thickness:var(--framer-link-current-text-decoration-thickness,var(--framer-link-text-decoration-thickness,var(--framer-text-decoration-thickness,initial)));text-decoration-skip-ink:var(--framer-link-current-text-decoration-skip-ink,var(--framer-link-text-decoration-skip-ink,var(--framer-text-decoration-skip-ink,initial)));text-underline-offset:var(--framer-link-current-text-decoration-offset,var(--framer-link-text-decoration-offset,var(--framer-text-decoration-offset,initial)));background-color:var(--framer-link-current-text-background-color,var(--framer-link-text-background-color,var(--framer-text-background-color,initial)))}@supports not (color:color(display-p3 1 1 1)){a.framer-text[data-framer-page-link-current],span.framer-text[data-framer-page-link-current]{color:var(--framer-link-current-text-color-rgb,var(--framer-link-current-text-color,var(--framer-link-text-color-rgb,var(--framer-link-text-color,var(--framer-text-color-rgb,var(--framer-text-color,#000))))));background-color:var(--framer-link-current-text-background-color-rgb,var(--framer-link-current-text-background-color,var(--framer-link-text-background-color-rgb,var(--framer-link-text-background-color,var(--framer-text-background-color-rgb,var(--framer-text-background-color,initial))))));-webkit-text-decoration-color:var(--framer-link-current-text-decoration-color-rgb,var(--framer-link-current-text-decoration-color,var(--framer-link-text-decoration-color-rgb,var(--framer-link-text-decoration-color,var(--framer-text-decoration-color-rgb,var(--framer-text-decoration-color,currentcolor))))));text-decoration-color:var(--framer-link-current-text-decoration-color-rgb,var(--framer-link-current-text-decoration-color,var(--framer-link-text-decoration-color-rgb,var(--framer-link-text-decoration-color,var(--framer-text-decoration-color-rgb,var(--framer-text-decoration-color,currentcolor))))))}}code.framer-text a.framer-text[data-framer-page-link-current],code.framer-text a.framer-text[data-framer-page-link-current] span.framer-text:not([data-text-fill]),code.framer-text span.framer-text[data-framer-page-link-current],code.framer-text span.framer-text[data-framer-page-link-current] span.framer-text:not([data-text-fill]){font-family:var(--framer-code-font-family,var(--framer-font-family,Inter,Inter Placeholder,sans-serif));font-style:var(--framer-code-font-style,var(--framer-font-style,normal));font-weight:var(--framer-code-font-weight,var(--framer-font-weight,400));color:inherit;font-size:calc(var(--framer-link-current-font-size,var(--framer-link-font-size,var(--framer-font-size,16px)))*var(--framer-font-size-scale,1))}code.framer-text a.framer-text[data-framer-page-link-current],code.framer-text span.framer-text[data-framer-page-link-current]{color:var(--framer-link-current-text-color,var(--framer-link-text-color,var(--framer-code-text-color,var(--framer-text-color,#000))))}@supports not (color:color(display-p3 1 1 1)){code.framer-text a.framer-text[data-framer-page-link-current],code.framer-text a.framer-text[data-framer-page-link-current] span.framer-text:not([data-text-fill]),code.framer-text span.framer-text[data-framer-page-link-current],code.framer-text span.framer-text[data-framer-page-link-current] span.framer-text:not([data-text-fill]){color:var(--framer-link-current-text-color-rgb,var(--framer-link-current-text-color,var(--framer-link-text-color-rgb,var(--framer-link-text-color,var(--framer-code-text-color-rgb,var(--framer-code-text-color,var(--framer-text-color-rgb,var(--framer-text-color,#000))))))));background-color:var(--framer-link-current-text-background-color-rgb,var(--framer-link-current-text-background-color,var(--framer-link-text-background-color-rgb,var(--framer-link-text-background-color,var(--framer-text-background-color-rgb,var(--framer-text-background-color,initial))))))}}a.framer-text[data-framer-page-link-current]:hover,a.framer-text[data-framer-page-link-current]:hover span.framer-text:not([data-text-fill]),span.framer-text[data-framer-page-link-current]:hover,span.framer-text[data-framer-page-link-current]:hover span.framer-text:not([data-text-fill]){color:inherit;font-family:var(--framer-font-family-preview,var(--framer-link-hover-font-family,var(--framer-link-current-font-family,var(--framer-link-font-family,var(--framer-font-family,Inter,Inter Placeholder,sans-serif)))));font-style:var(--framer-font-style-preview,var(--framer-link-hover-font-style,var(--framer-link-current-font-style,var(--framer-link-font-style,var(--framer-font-style,normal)))));font-weight:var(--framer-font-weight-preview,var(--framer-link-hover-font-weight,var(--framer-link-current-font-weight,var(--framer-link-font-weight,var(--framer-font-weight,400)))));font-size:calc(var(--framer-link-hover-font-size,var(--framer-link-current-font-size,var(--framer-link-font-size,var(--framer-font-size,16px))))*var(--framer-font-size-scale,1));text-transform:var(--framer-link-hover-text-transform,var(--framer-link-current-text-transform,var(--framer-link-text-transform,var(--framer-text-transform,none))));border-radius:var(--framer-link-hover-text-background-radius,var(--framer-link-current-text-background-radius,var(--framer-link-text-background-radius,initial)));corner-shape:var(--framer-link-hover-text-background-corner-shape,var(--framer-link-current-text-background-corner-shape,var(--framer-link-text-background-corner-shape,initial)));padding:var(--framer-link-hover-text-background-padding,var(--framer-link-current-text-background-padding,var(--framer-link-text-background-padding,initial)))}a.framer-text[data-framer-page-link-current]:hover,span.framer-text[data-framer-page-link-current]:hover{color:var(--framer-link-hover-text-color,var(--framer-link-current-text-color,var(--framer-link-text-color,var(--framer-text-color,#000))));-webkit-text-decoration-line:var(--framer-link-hover-text-decoration,var(--framer-link-current-text-decoration,var(--framer-link-text-decoration,var(--framer-text-decoration,initial))));text-decoration-line:var(--framer-link-hover-text-decoration,var(--framer-link-current-text-decoration,var(--framer-link-text-decoration,var(--framer-text-decoration,initial))));-webkit-text-decoration-style:var(--framer-link-hover-text-decoration-style,var(--framer-link-current-text-decoration-style,var(--framer-link-text-decoration-style,var(--framer-text-decoration-style,initial))));text-decoration-style:var(--framer-link-hover-text-decoration-style,var(--framer-link-current-text-decoration-style,var(--framer-link-text-decoration-style,var(--framer-text-decoration-style,initial))));-webkit-text-decoration-color:var(--framer-link-hover-text-decoration-color,var(--framer-link-current-text-decoration-color,var(--framer-link-text-decoration-color,var(--framer-text-decoration-color,initial))));text-decoration-color:var(--framer-link-hover-text-decoration-color,var(--framer-link-current-text-decoration-color,var(--framer-link-text-decoration-color,var(--framer-text-decoration-color,initial))));text-decoration-thickness:var(--framer-link-hover-text-decoration-thickness,var(--framer-link-current-text-decoration-thickness,var(--framer-link-text-decoration-thickness,var(--framer-text-decoration-thickness,initial))));text-decoration-skip-ink:var(--framer-link-hover-text-decoration-skip-ink,var(--framer-link-current-text-decoration-skip-ink,var(--framer-link-text-decoration-skip-ink,var(--framer-text-decoration-skip-ink,initial))));text-underline-offset:var(--framer-link-hover-text-decoration-offset,var(--framer-link-current-text-decoration-offset,var(--framer-link-text-decoration-offset,var(--framer-text-decoration-offset,initial))));background-color:var(--framer-link-hover-text-background-color,var(--framer-link-current-text-background-color,var(--framer-link-text-background-color,initial)))}@supports not (color:color(display-p3 1 1 1)){a.framer-text[data-framer-page-link-current]:hover,span.framer-text[data-framer-page-link-current]:hover{color:var(--framer-link-hover-text-color-rgb,var(--framer-link-hover-text-color,var(--framer-link-current-text-color-rgb,var(--framer-link-current-text-color,var(--framer-link-text-color-rgb,var(--framer-link-text-color,var(--framer-code-text-color-rgb,var(--framer-code-text-color,var(--framer-text-color-rgb,var(--framer-text-color,#000))))))))));background-color:var(--framer-link-hover-text-background-color-rgb,var(--framer-link-hover-text-background-color,var(--framer-link-current-text-background-color-rgb,var(--framer-link-current-text-background-color,var(--framer-link-text-background-color-rgb,var(--framer-link-text-background-color,initial))))));-webkit-text-decoration-color:var(--framer-link-hover-text-decoration-color-rgb,var(--framer-link-hover-text-decoration-color,var(--framer-link-current-text-decoration-color-rgb,var(--framer-link-current-text-decoration-color,var(--framer-link-text-decoration-color-rgb,var(--framer-link-text-decoration-color,var(--framer-text-decoration-color-rgb,var(--framer-text-decoration-color,currentcolor))))))));text-decoration-color:var(--framer-link-hover-text-decoration-color-rgb,var(--framer-link-hover-text-decoration-color,var(--framer-link-current-text-decoration-color-rgb,var(--framer-link-current-text-decoration-color,var(--framer-link-text-decoration-color-rgb,var(--framer-link-text-decoration-color,var(--framer-text-decoration-color-rgb,var(--framer-text-decoration-color,currentcolor))))))))}}code.framer-text a.framer-text[data-framer-page-link-current]:hover,code.framer-text span.framer-text[data-framer-page-link-current]:hover{color:var(--framer-link-hover-text-color,var(--framer-link-current-text-color,var(--framer-link-text-color,var(--framer-code-text-color,var(--framer-text-color,#000)))))}@supports not (color:color(display-p3 1 1 1)){code.framer-text a.framer-text[data-framer-page-link-current]:hover,code.framer-text a.framer-text[data-framer-page-link-current]:hover span.framer-text:not([data-text-fill]),code.framer-text span.framer-text[data-framer-page-link-current]:hover,code.framer-text span.framer-text[data-framer-page-link-current]:hover span.framer-text:not([data-text-fill]){color:var(--framer-link-hover-text-color-rgb,var(--framer-link-hover-text-color,var(--framer-link-current-text-color-rgb,var(--framer-link-current-text-color,var(--framer-link-text-color-rgb,var(--framer-link-text-color,var(--framer-code-text-color-rgb,var(--framer-code-text-color,var(--framer-text-color-rgb,var(--framer-text-color,#000))))))))));background-color:var(--framer-link-hover-text-background-color-rgb,var(--framer-link-hover-text-background-color,var(--framer-link-current-text-background-color-rgb,var(--framer-link-current-text-background-color,var(--framer-link-text-background-color-rgb,var(--framer-link-text-background-color,initial))))))}}.framer-image.framer-text{max-width:100%;height:auto;display:block}.text-styles-preset-reset.framer-text{--framer-font-family:Inter,Inter Placeholder,sans-serif;--framer-font-style:normal;--framer-font-weight:500;--framer-text-color:#000;--framer-font-size:16px;--framer-letter-spacing:0;--framer-text-transform:none;--framer-text-decoration:none;--framer-text-decoration-style:none;--framer-text-decoration-color:none;--framer-text-decoration-thickness:none;--framer-text-decoration-skip-ink:none;--framer-text-decoration-offset:none;--framer-line-height:1.2em;--framer-text-alignment:start;--framer-font-open-type-features:normal;--framer-text-background-color:initial;--framer-text-background-radius:initial;--framer-text-background-corner-shape:initial;--framer-text-background-padding:initial}ol.framer-text{--list-style-type:decimal}ul.framer-text,ol.framer-text{padding-inline-start:0;position:relative}li.framer-text{counter-increment:list-item;padding-inline-start:2ch;list-style:none}ol.framer-text>li.framer-text:before{content:counter(list-item,var(--list-style-type))".";font-variant-numeric:tabular-nums;position:absolute;inset-inline-start:0}ol.framer-text>li.framer-text:nth-last-child(n+10),ol.framer-text>li.framer-text:nth-last-child(n+10)~li{padding-inline-start:3ch}ol.framer-text>li.framer-text:nth-last-child(n+100),ol.framer-text>li.framer-text:nth-last-child(n+100)~li{padding-inline-start:4ch}ol.framer-text>li.framer-text:nth-last-child(n+1000),ol.framer-text>li.framer-text:nth-last-child(n+1000)~li{padding-inline-start:5ch}ol.framer-text>li.framer-text:nth-last-child(n+10000),ol.framer-text>li.framer-text:nth-last-child(n+10000)~li{padding-inline-start:6ch}ol.framer-text>li.framer-text:nth-last-child(n+100000),ol.framer-text>li.framer-text:nth-last-child(n+100000)~li{padding-inline-start:7ch}ol.framer-text>li.framer-text:nth-last-child(n+1000000),ol.framer-text>li.framer-text:nth-last-child(n+1000000)~li{padding-inline-start:8ch}ul.framer-text>li.framer-text:before{content:"•";position:absolute;inset-inline-start:0}.framer-table-wrapper{overflow-x:auto}table.framer-text,.framer-table-wrapper table.framer-text{border-collapse:separate;border-spacing:0;table-layout:auto;word-break:normal;width:100%}td.framer-text,th.framer-text{vertical-align:top;min-width:16ch}.framer-text-module[data-width=fill]>:first-child,.framer-text-module[data-width=fill]>.ssr-variant>:first-child,.framer-text-module:not([data-width=fit])[style*=aspect-ratio]>:first-child,.framer-text-module:not([data-width=fit])[style*=aspect-ratio]>.ssr-variant>:first-child{width:100%!important}@supports not (aspect-ratio:1){.framer-text-module:not([data-width=fit])[style*=aspect-ratio]{position:relative!important}.framer-text-module:not([data-width=fit])[style*=aspect-ratio]:before{content:"";padding-bottom:calc(100%/calc(var(--aspect-ratio)));display:block}.framer-text-module[data-width=fill]>:first-child,.framer-text-module[data-width=fill]>.ssr-variant>:first-child,.framer-text-module:not([data-width=fit])[style*=aspect-ratio]>:first-child,.framer-text-module:not([data-width=fit])[style*=aspect-ratio]>.ssr-variant>:first-child{position:absolute;top:0;left:0;height:100%!important}}[data-framer-component-type=DeprecatedRichText]{cursor:inherit}[data-framer-component-type=DeprecatedRichText] .text-styles-preset-reset{--framer-font-family:Inter,Inter Placeholder,sans-serif;--framer-font-style:normal;--framer-font-weight:500;--framer-text-color:#000;--framer-font-size:16px;--framer-letter-spacing:0;--framer-text-transform:none;--framer-text-decoration:none;--framer-line-height:1.2em;--framer-text-alignment:start;--framer-font-open-type-features:normal;--font-variation-settings:normal}[data-framer-component-type=DeprecatedRichText] p,[data-framer-component-type=DeprecatedRichText] div,[data-framer-component-type=DeprecatedRichText] h1,[data-framer-component-type=DeprecatedRichText] h2,[data-framer-component-type=DeprecatedRichText] h3,[data-framer-component-type=DeprecatedRichText] h4,[data-framer-component-type=DeprecatedRichText] h5,[data-framer-component-type=DeprecatedRichText] h6{margin:0;padding:0}[data-framer-component-type=DeprecatedRichText] p,[data-framer-component-type=DeprecatedRichText] div,[data-framer-component-type=DeprecatedRichText] h1,[data-framer-component-type=DeprecatedRichText] h2,[data-framer-component-type=DeprecatedRichText] h3,[data-framer-component-type=DeprecatedRichText] h4,[data-framer-component-type=DeprecatedRichText] h5,[data-framer-component-type=DeprecatedRichText] h6,[data-framer-component-type=DeprecatedRichText] li,[data-framer-component-type=DeprecatedRichText] ol,[data-framer-component-type=DeprecatedRichText] ul,[data-framer-component-type=DeprecatedRichText] span:not([data-text-fill]){font-family:var(--framer-font-family,Inter,Inter Placeholder,sans-serif);font-style:var(--framer-font-style,normal);font-weight:var(--framer-font-weight,400);color:var(--framer-text-color,#000);font-size:var(--framer-font-size,16px);letter-spacing:var(--framer-letter-spacing,0);text-transform:var(--framer-text-transform,none);-webkit-text-decoration:var(--framer-text-decoration,none);text-decoration:var(--framer-text-decoration,none);line-height:var(--framer-line-height,1.2em);text-align:var(--framer-text-alignment,start)}[data-framer-component-type=DeprecatedRichText] p:not(:first-child),[data-framer-component-type=DeprecatedRichText] div:not(:first-child),[data-framer-component-type=DeprecatedRichText] h1:not(:first-child),[data-framer-component-type=DeprecatedRichText] h2:not(:first-child),[data-framer-component-type=DeprecatedRichText] h3:not(:first-child),[data-framer-component-type=DeprecatedRichText] h4:not(:first-child),[data-framer-component-type=DeprecatedRichText] h5:not(:first-child),[data-framer-component-type=DeprecatedRichText] h6:not(:first-child),[data-framer-component-type=DeprecatedRichText] ol:not(:first-child),[data-framer-component-type=DeprecatedRichText] ul:not(:first-child),[data-framer-component-type=DeprecatedRichText] .framer-image:not(:first-child){margin-top:var(--framer-paragraph-spacing,0)}[data-framer-component-type=DeprecatedRichText] span[data-text-fill]{-webkit-text-fill-color:transparent;-webkit-background-clip:text;background-clip:text;display:inline-block}[data-framer-component-type=DeprecatedRichText] a,[data-framer-component-type=DeprecatedRichText] a span:not([data-text-fill]){font-family:var(--framer-link-font-family,var(--framer-font-family,Inter,Inter Placeholder,sans-serif));font-style:var(--framer-link-font-style,var(--framer-font-style,normal));font-weight:var(--framer-link-font-weight,var(--framer-font-weight,400));color:var(--framer-link-text-color,var(--framer-text-color,#000));font-size:var(--framer-link-font-size,var(--framer-font-size,16px));text-transform:var(--framer-link-text-transform,var(--framer-text-transform,none));-webkit-text-decoration:var(--framer-link-text-decoration,var(--framer-text-decoration,none));text-decoration:var(--framer-link-text-decoration,var(--framer-text-decoration,none))}[data-framer-component-type=DeprecatedRichText] a:hover,[data-framer-component-type=DeprecatedRichText] a:hover span:not([data-text-fill]){font-family:var(--framer-link-hover-font-family,var(--framer-link-font-family,var(--framer-font-family,Inter,Inter Placeholder,sans-serif)));font-style:var(--framer-link-hover-font-style,var(--framer-link-font-style,var(--framer-font-style,normal)));font-weight:var(--framer-link-hover-font-weight,var(--framer-link-font-weight,var(--framer-font-weight,400)));color:var(--framer-link-hover-text-color,var(--framer-link-text-color,var(--framer-text-color,#000)));font-size:var(--framer-link-hover-font-size,var(--framer-link-font-size,var(--framer-font-size,16px)));text-transform:var(--framer-link-hover-text-transform,var(--framer-link-text-transform,var(--framer-text-transform,none)));-webkit-text-decoration:var(--framer-link-hover-text-decoration,var(--framer-link-text-decoration,var(--framer-text-decoration,none)));text-decoration:var(--framer-link-hover-text-decoration,var(--framer-link-text-decoration,var(--framer-text-decoration,none)))}[data-framer-component-type=DeprecatedRichText] a[data-framer-page-link-current],[data-framer-component-type=DeprecatedRichText] a[data-framer-page-link-current] span:not([data-text-fill]):not([data-nested-link]){font-family:var(--framer-link-current-font-family,var(--framer-link-font-family,var(--framer-font-family,Inter,Inter Placeholder,sans-serif)));font-style:var(--framer-link-current-font-style,var(--framer-link-font-style,var(--framer-font-style,normal)));font-weight:var(--framer-link-current-font-weight,var(--framer-link-font-weight,var(--framer-font-weight,400)));color:var(--framer-link-current-text-color,var(--framer-link-text-color,var(--framer-text-color,#000)));font-size:var(--framer-link-current-font-size,var(--framer-link-font-size,var(--framer-font-size,16px)));text-transform:var(--framer-link-current-text-transform,var(--framer-link-text-transform,var(--framer-text-transform,none)));-webkit-text-decoration:var(--framer-link-current-text-decoration,var(--framer-link-text-decoration,var(--framer-text-decoration,none)));text-decoration:var(--framer-link-current-text-decoration,var(--framer-link-text-decoration,var(--framer-text-decoration,none)))}[data-framer-component-type=DeprecatedRichText] a[data-framer-page-link-current]:hover,[data-framer-component-type=DeprecatedRichText] a[data-framer-page-link-current]:hover span:not([data-text-fill]):not([data-nested-link]){font-family:var(--framer-link-hover-font-family,var(--framer-link-current-font-family,var(--framer-link-font-family,var(--framer-font-family,Inter,Inter Placeholder,sans-serif))));font-style:var(--framer-link-hover-font-style,var(--framer-link-current-font-style,var(--framer-link-font-style,var(--framer-font-style,normal))));font-weight:var(--framer-link-hover-font-weight,var(--framer-link-current-font-weight,var(--framer-link-font-weight,var(--framer-font-weight,400))));color:var(--framer-link-hover-text-color,var(--framer-link-current-text-color,var(--framer-link-text-color,var(--framer-text-color,#000))));font-size:var(--framer-link-hover-font-size,var(--framer-link-current-font-size,var(--framer-link-font-size,var(--framer-font-size,16px))));text-transform:var(--framer-link-hover-text-transform,var(--framer-link-current-text-transform,var(--framer-link-text-transform,var(--framer-text-transform,none))));-webkit-text-decoration:var(--framer-link-hover-text-decoration,var(--framer-link-current-text-decoration,var(--framer-link-text-decoration,var(--framer-text-decoration,none))));text-decoration:var(--framer-link-hover-text-decoration,var(--framer-link-current-text-decoration,var(--framer-link-text-decoration,var(--framer-text-decoration,none))))}[data-framer-component-type=DeprecatedRichText] strong{font-weight:bolder}[data-framer-component-type=DeprecatedRichText] em{font-style:italic}[data-framer-component-type=DeprecatedRichText] .framer-image{max-width:100%;height:auto;display:block}[data-framer-component-type=DeprecatedRichText] ul,[data-framer-component-type=DeprecatedRichText] ol{width:100%;margin:0;padding-left:0;display:table}[data-framer-component-type=DeprecatedRichText] li{counter-increment:list-item;list-style:none;display:table-row}[data-framer-component-type=DeprecatedRichText] ol>li:before{box-sizing:border-box;content:counter(list-item)".";white-space:nowrap;width:2.25ch;padding-right:.75ch;display:table-cell}[data-framer-component-type=DeprecatedRichText] ul>li:before{box-sizing:border-box;content:"•";width:2.25ch;padding-right:.75ch;display:table-cell}:not([data-framer-generated])>[data-framer-stack-content-wrapper]>*,:not([data-framer-generated])>[data-framer-stack-content-wrapper]>[data-framer-component-type],:not([data-framer-generated])>[data-framer-stack-content-wrapper]>[data-framer-legacy-stack-gap-enabled]>*,:not([data-framer-generated])>[data-framer-stack-content-wrapper]>[data-framer-legacy-stack-gap-enabled]>[data-framer-component-type]{position:relative}.flexbox-gap-not-supported [data-framer-legacy-stack-gap-enabled=true]>*,[data-framer-legacy-stack-gap-enabled=true][data-framer-stack-flexbox-gap=false]{margin-top:calc(var(--stack-gap-y)/2);margin-bottom:calc(var(--stack-gap-y)/2);margin-right:calc(var(--stack-gap-x)/2);margin-left:calc(var(--stack-gap-x)/2)}[data-framer-stack-content-wrapper][data-framer-stack-gap-enabled=true]{row-gap:var(--stack-native-row-gap);column-gap:var(--stack-native-column-gap)}.flexbox-gap-not-supported [data-framer-stack-content-wrapper][data-framer-stack-gap-enabled=true]{row-gap:unset;column-gap:unset}.flexbox-gap-not-supported [data-framer-stack-direction-reverse=false] [data-framer-legacy-stack-gap-enabled=true]>:first-child,[data-framer-stack-direction-reverse=false] [data-framer-legacy-stack-gap-enabled=true][data-framer-stack-flexbox-gap=false]>:first-child,.flexbox-gap-not-supported [data-framer-stack-direction-reverse=true] [data-framer-legacy-stack-gap-enabled=true]>:last-child,[data-framer-stack-direction-reverse=true] [data-framer-legacy-stack-gap-enabled=true][data-framer-stack-flexbox-gap=false]>:last-child{margin-top:0;margin-left:0}.flexbox-gap-not-supported [data-framer-stack-direction-reverse=false] [data-framer-legacy-stack-gap-enabled=true]>:last-child,[data-framer-stack-direction-reverse=false] [data-framer-legacy-stack-gap-enabled=true][data-framer-stack-flexbox-gap=false]>:last-child,.flexbox-gap-not-supported [data-framer-stack-direction-reverse=true] [data-framer-legacy-stack-gap-enabled=true]>:first-child,[data-framer-stack-direction-reverse=true] [data-framer-legacy-stack-gap-enabled=true][data-framer-stack-flexbox-gap=false]>:first-child{margin-bottom:0;margin-right:0}NavigationContainer [data-framer-component-type=NavigationContainer]>*,[data-framer-component-type=NavigationContainer]>[data-framer-component-type]{position:relative}[data-framer-component-type=Scroll]::-webkit-scrollbar{display:none}[data-framer-component-type=ScrollContentWrapper]>*{position:relative}[data-framer-component-type=NativeScroll]{-webkit-overflow-scrolling:touch}[data-framer-component-type=NativeScroll]>*{position:relative}[data-framer-component-type=NativeScroll].direction-both{overflow:auto}[data-framer-component-type=NativeScroll].direction-vertical{overflow:hidden auto}[data-framer-component-type=NativeScroll].direction-horizontal{overflow:auto hidden}[data-framer-component-type=NativeScroll].direction-vertical>*{width:100%!important}[data-framer-component-type=NativeScroll].direction-horizontal>*{height:100%!important}[data-framer-component-type=NativeScroll].scrollbar-hidden::-webkit-scrollbar{display:none}[data-framer-component-type=PageContentWrapper]>*,[data-framer-component-type=PageContentWrapper]>[data-framer-component-type]{position:relative}[data-framer-component-type=DeviceComponent].no-device>*{width:100%!important;height:100%!important}[data-is-present=false],[data-is-present=false] *{pointer-events:none!important}[data-framer-cursor=pointer]{cursor:pointer}[data-framer-cursor=grab]{cursor:grab}[data-framer-cursor=grab]:active{cursor:grabbing}[data-framer-component-type=Frame] *,[data-framer-component-type=Stack] *{pointer-events:auto}[data-framer-generated] *{pointer-events:unset}.svgContainer svg{display:block}[data-reset=button]{background:0 0;border-width:0;padding:0}[data-hide-scrollbars=true]::-webkit-scrollbar{width:0;height:0}[data-hide-scrollbars=true]::-webkit-scrollbar-thumb{background:0 0}[data-hide-scrollbars=true]{scrollbar-width:none}@supports not (overflow:clip){:root{--overflow-clip-fallback:hidden}}.framer-lightbox-container{opacity:1!important;pointer-events:auto!important}@supports (background:-webkit-named-image(i)) and (not (contain-intrinsic-size:inherit)){div.framer-text,p.framer-text,h1.framer-text,h2.framer-text,h3.framer-text,h4.framer-text,h5.framer-text,h6.framer-text,ol.framer-text,ul.framer-text,li.framer-text,blockquote.framer-text,.framer-text.framer-image{display:var(--text-truncation-display-inline-for-safari-16,revert)}div.framer-text:after,p.framer-text:after,h1.framer-text:after,h2.framer-text:after,h3.framer-text:after,h4.framer-text:after,h5.framer-text:after,h6.framer-text:after,ol.framer-text:after,ul.framer-text:after,li.framer-text:after,blockquote.framer-text:after,.framer-text.framer-image:after{content:var(--text-truncation-line-break-for-safari-16);white-space:pre}.framer-text.framer-text-module,.framer-text.framer-table-wrapper{display:var(--text-truncation-display-none-for-safari-16,revert)}p.framer-text[data-text-fill]{display:var(--text-truncation-display-inline-for-safari-16,inline-block)}}@supports (corner-shape:superellipse(2)){:root{--one-if-corner-shape-supported:1}}@supports (aspect-ratio:1){body{--framer-aspect-ratio-supported:auto}}.framer-gxSAG.framer-14x6r6p,.framer-gxSAG .framer-14x6r6p{display:block}.framer-gxSAG.framer-20d8c3{cursor:pointer;flex-flow:row;place-content:center flex-start;align-items:center;gap:20px;width:min-content;height:min-content;padding:0;display:flex;position:relative;overflow:visible}.framer-gxSAG .framer-o6p5ch{flex:none;width:40px;height:40px;position:relative;overflow:visible}.framer-gxSAG .framer-1r37lje{flex-flow:row;flex:none;place-content:center;align-items:center;gap:10px;width:min-content;height:min-content;padding:0;display:flex;position:absolute;top:0;left:50%;overflow:visible}.framer-gxSAG .framer-1wdjn3x{aspect-ratio:1;height:var(--framer-aspect-ratio-supported,40px);flex:none;width:40px;position:relative;overflow:visible}.framer-gxSAG .framer-18xfglo,.framer-gxSAG .framer-13aeuie,.framer-gxSAG .framer-943fw6,.framer-gxSAG .framer-1ezbowm,.framer-gxSAG .framer-26cqsr,.framer-gxSAG .framer-65zikl{flex-flow:row;flex:none;place-content:center;align-items:center;gap:10px;width:40px;padding:5px;display:flex;position:absolute;top:0;bottom:0;left:calc(50% - 20px);overflow:visible}.framer-gxSAG .framer-1701sls,.framer-gxSAG .framer-1a6n1bf{aspect-ratio:1;height:var(--framer-aspect-ratio-supported,200px);flex:1 0 0;width:1px;position:relative;overflow:visible}.framer-gxSAG .framer-jyw6jb{flex:1 0 0;width:1px;height:100%;position:relative;overflow:visible}.framer-gxSAG .framer-ubxg8p{aspect-ratio:1.04065;height:var(--framer-aspect-ratio-supported,192px);z-index:1;flex:1 0 0;width:1px;position:relative;overflow:visible}.framer-gxSAG .framer-xqzn8q{aspect-ratio:1;height:var(--framer-aspect-ratio-supported,20px);flex:none;width:19px;position:relative;overflow:visible}.framer-gxSAG .framer-q6usnl{aspect-ratio:1;height:var(--framer-aspect-ratio-supported,30px);flex:none;width:30px;position:relative;overflow:visible}.framer-gxSAG .framer-1dwbzg8{flex:none;gap:10px;width:200px;height:44px;position:relative;overflow:visible}.framer-gxSAG .framer-1p8pqob,.framer-gxSAG .framer-1nuyo58,.framer-gxSAG .framer-30j20w,.framer-gxSAG .framer-14l1aih,.framer-gxSAG .framer-1xwvgkx,.framer-gxSAG .framer-1x4s67y,.framer-gxSAG .framer-m6ao2u{pointer-events:none;white-space:pre;z-index:1;flex:none;width:auto;height:auto;position:absolute;top:50%;left:0}.framer-gxSAG.framer-v-1es74p2.framer-20d8c3,.framer-gxSAG.framer-v-molzft.framer-20d8c3,.framer-gxSAG.framer-v-1nui4bn.framer-20d8c3,.framer-gxSAG.framer-v-1f6ehul.framer-20d8c3,.framer-gxSAG.framer-v-1fvaqxg.framer-20d8c3,.framer-gxSAG.framer-v-1moh76q.framer-20d8c3,.framer-gxSAG.framer-v-rvjvn.framer-20d8c3{cursor:unset;gap:10px}.framer-gxSAG.framer-v-1es74p2 .framer-o6p5ch,.framer-gxSAG.framer-v-molzft .framer-o6p5ch,.framer-gxSAG.framer-v-1nui4bn .framer-o6p5ch,.framer-gxSAG.framer-v-1f6ehul .framer-o6p5ch,.framer-gxSAG.framer-v-1fvaqxg .framer-o6p5ch,.framer-gxSAG.framer-v-1moh76q .framer-o6p5ch,.framer-gxSAG.framer-v-rvjvn .framer-o6p5ch{order:0}.framer-gxSAG.framer-v-1es74p2 .framer-1701sls{aspect-ratio:unset;flex:none;width:40px;height:40px}.framer-gxSAG.framer-v-1es74p2 .framer-1dwbzg8,.framer-gxSAG.framer-v-molzft .framer-1dwbzg8,.framer-gxSAG.framer-v-1nui4bn .framer-1dwbzg8,.framer-gxSAG.framer-v-1f6ehul .framer-1dwbzg8,.framer-gxSAG.framer-v-1fvaqxg .framer-1dwbzg8,.framer-gxSAG.framer-v-1moh76q .framer-1dwbzg8,.framer-gxSAG.framer-v-rvjvn .framer-1dwbzg8,.framer-gxSAG.framer-v-3baivz .framer-1dwbzg8,.framer-gxSAG.framer-v-tjdiz7 .framer-1dwbzg8,.framer-gxSAG.framer-v-ab8xrs .framer-1dwbzg8,.framer-gxSAG.framer-v-vr4gvs .framer-1dwbzg8,.framer-gxSAG.framer-v-1i804wt .framer-1dwbzg8,.framer-gxSAG.framer-v-16uokwf .framer-1dwbzg8,.framer-gxSAG.framer-v-1kvk6op .framer-1dwbzg8{order:1}.framer-gxSAG.framer-v-molzft .framer-ubxg8p,.framer-gxSAG.framer-v-1nui4bn .framer-ubxg8p,.framer-gxSAG.framer-v-1f6ehul .framer-ubxg8p,.framer-gxSAG.framer-v-1fvaqxg .framer-ubxg8p,.framer-gxSAG.framer-v-1moh76q .framer-ubxg8p,.framer-gxSAG.framer-v-rvjvn .framer-ubxg8p{height:var(--framer-aspect-ratio-supported,29px);flex:none;width:30px}.framer-gxSAG.framer-v-3baivz.framer-20d8c3,.framer-gxSAG.framer-v-tjdiz7.framer-20d8c3,.framer-gxSAG.framer-v-ab8xrs.framer-20d8c3,.framer-gxSAG.framer-v-vr4gvs.framer-20d8c3,.framer-gxSAG.framer-v-1i804wt.framer-20d8c3,.framer-gxSAG.framer-v-16uokwf.framer-20d8c3,.framer-gxSAG.framer-v-1kvk6op.framer-20d8c3{cursor:unset;gap:10px;width:180px}.framer-gxSAG.framer-v-3baivz .framer-o6p5ch{order:0;width:30px;height:30px}.framer-gxSAG.framer-v-3baivz .framer-1r37lje,.framer-gxSAG.framer-v-tjdiz7 .framer-1r37lje,.framer-gxSAG.framer-v-ab8xrs .framer-1r37lje,.framer-gxSAG.framer-v-vr4gvs .framer-1r37lje,.framer-gxSAG.framer-v-1i804wt .framer-1r37lje,.framer-gxSAG.framer-v-16uokwf .framer-1r37lje,.framer-gxSAG.framer-v-1kvk6op .framer-1r37lje{width:30px;height:30px;left:calc(50% - 15px)}.framer-gxSAG.framer-v-3baivz .framer-1wdjn3x{aspect-ratio:unset;width:30px;height:30px}.framer-gxSAG.framer-v-3baivz .framer-18xfglo,.framer-gxSAG.framer-v-3baivz .framer-13aeuie,.framer-gxSAG.framer-v-3baivz .framer-943fw6,.framer-gxSAG.framer-v-3baivz .framer-1ezbowm,.framer-gxSAG.framer-v-3baivz .framer-26cqsr,.framer-gxSAG.framer-v-3baivz .framer-65zikl,.framer-gxSAG.framer-v-tjdiz7 .framer-18xfglo,.framer-gxSAG.framer-v-tjdiz7 .framer-13aeuie,.framer-gxSAG.framer-v-tjdiz7 .framer-943fw6,.framer-gxSAG.framer-v-tjdiz7 .framer-1ezbowm,.framer-gxSAG.framer-v-tjdiz7 .framer-26cqsr,.framer-gxSAG.framer-v-tjdiz7 .framer-65zikl,.framer-gxSAG.framer-v-ab8xrs .framer-18xfglo,.framer-gxSAG.framer-v-ab8xrs .framer-13aeuie,.framer-gxSAG.framer-v-ab8xrs .framer-943fw6,.framer-gxSAG.framer-v-ab8xrs .framer-1ezbowm,.framer-gxSAG.framer-v-ab8xrs .framer-26cqsr,.framer-gxSAG.framer-v-ab8xrs .framer-65zikl,.framer-gxSAG.framer-v-vr4gvs .framer-18xfglo,.framer-gxSAG.framer-v-vr4gvs .framer-13aeuie,.framer-gxSAG.framer-v-vr4gvs .framer-943fw6,.framer-gxSAG.framer-v-vr4gvs .framer-1ezbowm,.framer-gxSAG.framer-v-vr4gvs .framer-26cqsr,.framer-gxSAG.framer-v-vr4gvs .framer-65zikl,.framer-gxSAG.framer-v-1i804wt .framer-18xfglo,.framer-gxSAG.framer-v-1i804wt .framer-13aeuie,.framer-gxSAG.framer-v-1i804wt .framer-943fw6,.framer-gxSAG.framer-v-1i804wt .framer-1ezbowm,.framer-gxSAG.framer-v-1i804wt .framer-26cqsr,.framer-gxSAG.framer-v-1i804wt .framer-65zikl,.framer-gxSAG.framer-v-16uokwf .framer-18xfglo,.framer-gxSAG.framer-v-16uokwf .framer-13aeuie,.framer-gxSAG.framer-v-16uokwf .framer-943fw6,.framer-gxSAG.framer-v-16uokwf .framer-1ezbowm,.framer-gxSAG.framer-v-16uokwf .framer-26cqsr,.framer-gxSAG.framer-v-16uokwf .framer-65zikl,.framer-gxSAG.framer-v-1kvk6op .framer-18xfglo,.framer-gxSAG.framer-v-1kvk6op .framer-13aeuie,.framer-gxSAG.framer-v-1kvk6op .framer-943fw6,.framer-gxSAG.framer-v-1kvk6op .framer-1ezbowm,.framer-gxSAG.framer-v-1kvk6op .framer-26cqsr,.framer-gxSAG.framer-v-1kvk6op .framer-65zikl{width:30px;left:calc(50% - 15px)}.framer-gxSAG.framer-v-3baivz .framer-1701sls{aspect-ratio:unset;flex:none;width:20px;height:20px}.framer-gxSAG.framer-v-tjdiz7 .framer-o6p5ch,.framer-gxSAG.framer-v-ab8xrs .framer-o6p5ch,.framer-gxSAG.framer-v-1i804wt .framer-o6p5ch,.framer-gxSAG.framer-v-16uokwf .framer-o6p5ch,.framer-gxSAG.framer-v-1kvk6op .framer-o6p5ch{aspect-ratio:1;height:var(--framer-aspect-ratio-supported,40px);order:0;width:30px}.framer-gxSAG.framer-v-vr4gvs .framer-o6p5ch{aspect-ratio:1;height:var(--framer-aspect-ratio-supported,30px);order:0;width:30px}.framer-gxSAG.framer-v-1kvk6op .framer-q6usnl{height:var(--framer-aspect-ratio-supported,21px);width:20px}.framer-gxSAG[data-border=true]:after,.framer-gxSAG [data-border=true]:after{content:"";border-width:var(--border-top-width,0)var(--border-right-width,0)var(--border-bottom-width,0)var(--border-left-width,0);border-color:var(--border-color,none);border-style:var(--border-style,none);box-sizing:border-box;border-radius:inherit;corner-shape:inherit;pointer-events:none;width:100%;height:100%;position:absolute;top:0;left:0}.framer-form-input{padding:var(--framer-input-padding);font-family:var(--framer-input-font-family);font-weight:var(--framer-input-font-weight);font-size:var(--framer-input-font-size);font-style:var(--framer-input-font-style);color:var(--framer-input-font-color);font-feature-settings:var(--framer-input-font-open-type-features);font-variation-settings:var(--framer-input-font-variation-axes);text-overflow:ellipsis;white-space:nowrap;width:100%;height:var(--framer-input-wrapper-height,100%);letter-spacing:var(--framer-input-font-letter-spacing);text-align:var(--framer-input-font-text-alignment);line-height:var(--framer-input-font-line-height);background:0 0;border:none;overflow:hidden}.framer-form-input:focus-visible{outline:none}.framer-form-input-wrapper:after{content:"";pointer-events:none;box-sizing:border-box;border-top-left-radius:var(--framer-input-border-radius-top-left);border-top-right-radius:var(--framer-input-border-radius-top-right);border-bottom-right-radius:var(--framer-input-border-radius-bottom-right);border-bottom-left-radius:var(--framer-input-border-radius-bottom-left);corner-shape:var(--framer-input-corner-shape);border-color:var(--framer-input-border-color);border-top-width:var(--framer-input-border-top-width);border-right-width:var(--framer-input-border-right-width);border-bottom-width:var(--framer-input-border-bottom-width);border-left-width:var(--framer-input-border-left-width);border-style:var(--framer-input-border-style);width:100%;height:100%;transition:var(--framer-input-focused-transition);transition-property:border-color,border-width,border-style,border-top-left-radius,border-top-right-radius,border-bottom-right-radius,border-bottom-left-radius,corner-shape;position:absolute;top:0;left:0}.framer-form-input-wrapper{box-shadow:var(--framer-input-box-shadow);border-top-left-radius:var(--framer-input-border-radius-top-left);border-top-right-radius:var(--framer-input-border-radius-top-right);border-bottom-right-radius:var(--framer-input-border-radius-bottom-right);border-bottom-left-radius:var(--framer-input-border-radius-bottom-left);corner-shape:var(--framer-input-corner-shape);background:var(--framer-input-background);transition:var(--framer-input-focused-transition);transition-property:background,box-shadow;overflow:hidden}.framer-form-text-input .framer-form-input::placeholder{color:var(--framer-input-placeholder-color)}.framer-form-text-input{padding:var(--framer-input-padding);align-items:center;display:flex}.framer-form-text-input .framer-form-input{flex:1;width:auto;min-width:0;padding:0}.framer-form-text-input.framer-form-textarea-input-type{padding:0}.framer-form-text-input.framer-form-textarea-input-type textarea.framer-form-input{width:100%;padding:var(--framer-input-padding)}.framer-form-text-input .framer-form-input[type=date],.framer-form-text-input .framer-form-input[type=time]{appearance:none}.framer-form-text-input .framer-form-input::-webkit-date-and-time-value{text-align:start}.framer-form-text-input textarea{resize:var(--framer-textarea-resize);min-height:inherit;max-height:inherit;white-space:break-spaces;display:flex;overflow-y:auto}.framer-form-text-input textarea::-webkit-resizer{background:url("data:image/svg+xml,<svg xmlns=%22http://www.w3.org/2000/svg%22 width=%2214%22 height=%2214%22><path d=%22m1.5 8 7-7M9 5.5l-3 3%22 stroke=%22%23999%22 stroke-width=%221.5%22 stroke-linecap=%22round%22></path></svg>") no-repeat}.framer-form-text-input:is(:lang(ae),:lang(ar),:lang(arc),:lang(bcc),:lang(bqi),:lang(ckb),:lang(dv),:lang(fa),:lang(glk),:lang(he),:lang(ku),:lang(mzn),:lang(nqo),:lang(pnb),:lang(ps),:lang(sd),:lang(ug),:lang(ur),:lang(yi)) textarea::-webkit-resizer{background:url("data:image/svg+xml,<svg xmlns=%22http://www.w3.org/2000/svg%22 transform=%22scale(-1, 1)%22 width=%2214%22 height=%2214%22><path d=%22m1.5 8 7-7M9 5.5l-3 3%22 stroke=%22%23999%22 stroke-width=%221.5%22 stroke-linecap=%22round%22></path></svg>") no-repeat}.framer-form-text-input textarea::-webkit-scrollbar{cursor:pointer;background:0 0}.framer-form-text-input textarea::-webkit-scrollbar-thumb:window-inactive{opacity:0}.framer-form-text-input textarea::-webkit-scrollbar-corner{background:0 0;outline:none}.framer-form-text-input .framer-form-input::-webkit-datetime-edit{height:var(--framer-input-font-line-height)}.framer-form-text-input .framer-form-input.framer-form-input-empty::-webkit-datetime-edit{color:var(--framer-input-placeholder-color);-webkit-text-fill-color:var(--framer-input-placeholder-color);overflow:visible}.framer-form-text-input.framer-form-text-input-type:before{content:var(--framer-input-icon-content,none);background-repeat:no-repeat;background-size:16px;background-color:var(--framer-input-icon-color);width:16px;height:16px;-webkit-mask-position:50%;mask-position:50%;-webkit-mask-size:16px;mask-size:16px;-webkit-mask-repeat:no-repeat;mask-repeat:no-repeat;-webkit-mask-image:var(--framer-input-icon-mask-image);mask-image:var(--framer-input-icon-mask-image);background-position:50%;background-image:var(--framer-input-icon-image);flex-shrink:0;margin-right:8px;display:block}.framer-form-text-input .framer-form-input[type=date]:before,.framer-form-text-input .framer-form-input[type=time]:before{content:"";box-sizing:content-box;width:16px;padding:var(--framer-input-padding);pointer-events:none;background-repeat:no-repeat;background-size:16px;background-color:var(--framer-input-icon-color);background-position:10px;border:none;padding-left:10px;display:block;position:absolute;top:0;bottom:0;right:0;-webkit-mask-position:10px;mask-position:10px;-webkit-mask-size:16px;mask-size:16px;-webkit-mask-repeat:no-repeat;mask-repeat:no-repeat}.framer-form-text-input .framer-form-input[type=date]:before{-webkit-mask-image:var(--framer-input-icon-mask-image,url("data:image/svg+xml,<svg xmlns=%22http://www.w3.org/2000/svg%22 width=%2216%22 height=%2216%22><path fill=%22rgb(153, 153, 153)%22 d=%22M3 5a2 2 0 0 1 2-2h6a2 2 0 0 1 2 2v2H3Z%22 opacity=%22.3%22/><path fill=%22transparent%22 stroke=%22rgb(153, 153, 153)%22 stroke-width=%221.5%22 d=%22M3.25 5.25a2 2 0 0 1 2-2h5.5a2 2 0 0 1 2 2v5.5a2 2 0 0 1-2 2h-5.5a2 2 0 0 1-2-2ZM3 6.75h9.5%22/></svg>"));mask-image:var(--framer-input-icon-mask-image,url("data:image/svg+xml,<svg xmlns=%22http://www.w3.org/2000/svg%22 width=%2216%22 height=%2216%22><path fill=%22rgb(153, 153, 153)%22 d=%22M3 5a2 2 0 0 1 2-2h6a2 2 0 0 1 2 2v2H3Z%22 opacity=%22.3%22/><path fill=%22transparent%22 stroke=%22rgb(153, 153, 153)%22 stroke-width=%221.5%22 d=%22M3.25 5.25a2 2 0 0 1 2-2h5.5a2 2 0 0 1 2 2v5.5a2 2 0 0 1-2 2h-5.5a2 2 0 0 1-2-2ZM3 6.75h9.5%22/></svg>"));background-image:var(--framer-input-icon-image)}.framer-form-text-input .framer-form-input[type=time]:before{-webkit-mask-image:var(--framer-input-icon-mask-image,url("data:image/svg+xml,<svg xmlns=%22http://www.w3.org/2000/svg%22 width=%2216%22 height=%2216%22><path fill=%22transparent%22 stroke=%22rgb(153, 153, 153)%22 stroke-width=%221.5%22 d=%22M2.5 8a5.5 5.5 0 1 1 11 0 5.5 5.5 0 1 1-11 0Z%22/><path fill=%22transparent%22 stroke=%22rgb(153, 153, 153)%22 stroke-linecap=%22round%22 stroke-linejoin=%22round%22 stroke-width=%221.5%22 d=%22M7.75 8.25v-3m0 3h2%22/></svg>"));mask-image:var(--framer-input-icon-mask-image,url("data:image/svg+xml,<svg xmlns=%22http://www.w3.org/2000/svg%22 width=%2216%22 height=%2216%22><path fill=%22transparent%22 stroke=%22rgb(153, 153, 153)%22 stroke-width=%221.5%22 d=%22M2.5 8a5.5 5.5 0 1 1 11 0 5.5 5.5 0 1 1-11 0Z%22/><path fill=%22transparent%22 stroke=%22rgb(153, 153, 153)%22 stroke-linecap=%22round%22 stroke-linejoin=%22round%22 stroke-width=%221.5%22 d=%22M7.75 8.25v-3m0 3h2%22/></svg>"));background-image:var(--framer-input-icon-image)}.framer-form-text-input .framer-form-input::-webkit-calendar-picker-indicator{opacity:0;padding:var(--framer-input-padding);width:16px;height:100%;padding-top:0;padding-bottom:0;position:absolute;top:0;bottom:0;right:0}.framer-form-text-input:focus-within,.framer-form-text-input.framer-form-input-forced-focus{box-shadow:var(--framer-input-focused-box-shadow,var(--framer-input-box-shadow));background:var(--framer-input-focused-background,var(--framer-input-background))}.framer-form-text-input:focus-within:after,.framer-form-text-input.framer-form-input-forced-focus:after{border-color:var(--framer-input-focused-border-color,var(--framer-input-border-color));border-style:var(--framer-input-focused-border-style,var(--framer-input-border-style));border-width:var(--framer-input-focused-border-width,var(--framer-input-border-top-width)var(--framer-input-border-right-width)var(--framer-input-border-bottom-width)var(--framer-input-border-left-width))}.framer-form-text-input-clear{cursor:pointer;width:16px;height:16px;color:var(--framer-input-placeholder-color);background:0 0;border:none;outline:none;flex-shrink:0;order:2;justify-content:center;align-items:center;margin-left:8px;padding:0;transition:color .15s;display:flex}.framer-form-text-input-clear:hover,.framer-form-text-input-clear:focus-visible{color:var(--framer-input-font-color)}@supports (aspect-ratio:1){body{--framer-aspect-ratio-supported:auto}}.framer-6cpxH.framer-csifsv,.framer-6cpxH .framer-csifsv{display:block}.framer-6cpxH.framer-1easzsh{cursor:pointer;flex-flow:row;place-content:center;align-items:center;gap:0;width:min-content;height:min-content;padding:8px 16px;display:flex;position:relative;overflow:visible}.framer-6cpxH .framer-17uo2ol{-webkit-user-select:none;user-select:none;white-space:pre;flex:none;width:auto;height:auto;position:relative}.framer-6cpxH .framer-545lcm{aspect-ratio:1;height:var(--framer-aspect-ratio-supported,20px);flex:none;gap:10px;width:20px;position:relative;overflow:hidden}.framer-6cpxH .framer-10n19e3{flex:none;position:absolute;inset:0;overflow:visible}.framer-6cpxH .framer-1yoywho{aspect-ratio:1;height:var(--framer-aspect-ratio-supported,2px);flex:none;width:2px;position:absolute;top:0;left:50%;overflow:visible}.framer-6cpxH.framer-v-iz7zva.framer-1easzsh,.framer-6cpxH.framer-v-1yknvel.framer-1easzsh,.framer-6cpxH.framer-v-af869i.framer-1easzsh,.framer-6cpxH.framer-v-rrzsah.framer-1easzsh{cursor:unset}.framer-6cpxH.framer-v-iz7zva .framer-10n19e3{overflow:hidden}@supports (aspect-ratio:1){body{--framer-aspect-ratio-supported:auto}}.framer-b0bws.framer-duv1gm,.framer-b0bws .framer-duv1gm{display:block}.framer-b0bws.framer-12mlazz{flex-flow:row;place-content:center;align-items:center;gap:1px;width:min-content;height:min-content;padding:0;display:flex;position:relative;overflow:visible}.framer-b0bws .framer-1svnvjf,.framer-b0bws .framer-1y1rx0u,.framer-b0bws .framer-1mti2py,.framer-b0bws .framer-1n4awzd,.framer-b0bws .framer-14jq1o3{flex:none;width:14px;height:14px;position:relative;overflow:visible}.framer-b0bws .framer-2a9vkn-container,.framer-b0bws .framer-1k0x79a-container,.framer-b0bws .framer-gu86uv-container,.framer-b0bws .framer-r0e6y3-container,.framer-b0bws .framer-161xswf-container{flex:none;position:absolute;inset:0}.framer-b0bws.framer-v-qwhaq5 .framer-1svnvjf,.framer-b0bws.framer-v-qwhaq5 .framer-1y1rx0u,.framer-b0bws.framer-v-qwhaq5 .framer-1mti2py,.framer-b0bws.framer-v-qwhaq5 .framer-1n4awzd,.framer-b0bws.framer-v-qwhaq5 .framer-14jq1o3,.framer-b0bws.framer-v-1flbkt .framer-1svnvjf,.framer-b0bws.framer-v-1flbkt .framer-1y1rx0u,.framer-b0bws.framer-v-1flbkt .framer-1mti2py,.framer-b0bws.framer-v-1flbkt .framer-1n4awzd,.framer-b0bws.framer-v-1flbkt .framer-14jq1o3,.framer-b0bws.framer-v-f66qod .framer-1svnvjf,.framer-b0bws.framer-v-f66qod .framer-1y1rx0u,.framer-b0bws.framer-v-f66qod .framer-1mti2py,.framer-b0bws.framer-v-f66qod .framer-1n4awzd,.framer-b0bws.framer-v-f66qod .framer-14jq1o3{width:20px;height:20px}@supports (aspect-ratio:1){body{--framer-aspect-ratio-supported:auto}}.framer-DMIL2.framer-1cihst2,.framer-DMIL2 .framer-1cihst2{display:block}.framer-DMIL2.framer-15ns5v4{flex-flow:column;place-content:center flex-start;align-items:center;gap:0;width:1120px;height:734px;padding:0;display:flex;position:relative;overflow:visible}.framer-DMIL2 .framer-16pdej4{flex:1 0 0;width:1120px;height:1px;position:relative;overflow:visible}.framer-DMIL2 .framer-159knml-container{z-index:-1;flex:none;width:757px;height:475px;position:absolute;top:50px;left:calc(50% - 378.5px)}.framer-DMIL2 .framer-smo7pi{z-index:4;flex-flow:row;flex:none;place-content:center;align-items:center;gap:100px;width:min-content;min-width:200px;height:min-content;min-height:200px;padding:0;display:flex;position:absolute;bottom:50px;left:50%;overflow:visible}.framer-DMIL2 .framer-1piy9vt{flex-flow:row;flex:none;place-content:center;align-items:center;gap:10px;width:min-content;height:min-content;padding:0;display:flex;position:relative;overflow:visible}.framer-DMIL2 .framer-pdxm36-container,.framer-DMIL2 .framer-1diybkm-container{pointer-events:none;z-index:1;flex:none;width:auto;height:auto;position:relative}.framer-DMIL2 .framer-16e30nc{cursor:pointer;flex-flow:row;flex:none;place-content:center;align-items:center;gap:10px;width:min-content;height:min-content;padding:0;display:flex;position:relative;overflow:visible}.framer-DMIL2.framer-v-1460937 .framer-16pdej4{order:0}.framer-DMIL2.framer-v-1460937 .framer-smo7pi{min-height:unset;min-width:unset;order:1}.framer-DMIL2.framer-v-1wrblmu .framer-smo7pi,.framer-DMIL2.framer-v-1t8n2y1 .framer-smo7pi,.framer-DMIL2.framer-v-zcnhan .framer-smo7pi,.framer-DMIL2.framer-v-qze3e3 .framer-smo7pi,.framer-DMIL2.framer-v-1tv4ilq .framer-smo7pi,.framer-DMIL2.framer-v-1jme54d .framer-smo7pi,.framer-DMIL2.framer-v-1xvcfgv .framer-smo7pi{min-height:unset;min-width:unset}.framer-DMIL2.framer-v-1wrblmu .framer-1piy9vt,.framer-DMIL2.framer-v-1t8n2y1 .framer-1piy9vt,.framer-DMIL2.framer-v-zcnhan .framer-1piy9vt,.framer-DMIL2.framer-v-qze3e3 .framer-1piy9vt,.framer-DMIL2.framer-v-1tv4ilq .framer-1piy9vt,.framer-DMIL2.framer-v-1jme54d .framer-1piy9vt,.framer-DMIL2.framer-v-1xvcfgv .framer-1piy9vt{cursor:pointer}@supports (aspect-ratio:1){body{--framer-aspect-ratio-supported:auto}}.framer-BhJve.framer-1395hej,.framer-BhJve .framer-1395hej{display:block}.framer-BhJve.framer-iuslbe{will-change:var(--framer-will-change-override,transform);flex-flow:column;place-content:center;align-items:center;gap:0;width:757px;height:475px;padding:0;display:flex;position:relative;overflow:hidden}.framer-BhJve .framer-1mbj4y6{flex-flow:column;flex:none;place-content:center;align-items:center;gap:10px;width:758px;height:476px;padding:0;display:flex;position:relative;overflow:visible}.framer-BhJve .framer-1pziddd-container{-webkit-user-select:none;user-select:none;z-index:0;flex:none;width:758px;height:100%;position:absolute;top:0;left:calc(50% - 379px)}.framer-BhJve .framer-jnshha,.framer-BhJve .framer-nqlczj{-webkit-user-select:none;user-select:none;overflow:var(--overflow-clip-fallback,clip);z-index:0;flex:none;width:758px;position:absolute;top:0;bottom:0;left:calc(50% - 379px)}.framer-BhJve .framer-1yceepg{z-index:1;flex-flow:column;flex:none;place-content:center;align-items:center;gap:0;width:758px;height:min-content;padding:0;display:flex;position:absolute;bottom:277px;left:50%;overflow:visible}.framer-BhJve .framer-v9mvec{flex-flow:row;flex:none;place-content:center;align-items:center;gap:6px;width:100%;height:min-content;padding:0;display:flex;position:relative;overflow:visible}.framer-BhJve .framer-1pyxvyg,.framer-BhJve .framer-1nch11r,.framer-BhJve .framer-1dxc7nq,.framer-BhJve .framer-yeozkn,.framer-BhJve .framer-1xmn38n,.framer-BhJve .framer-akhj0e,.framer-BhJve .framer-3z88y3,.framer-BhJve .framer-1wwq1nz,.framer-BhJve .framer-11fk6uv,.framer-BhJve .framer-18xah6s,.framer-BhJve .framer-ac357n,.framer-BhJve .framer-ujapj8,.framer-BhJve .framer-1dyse61,.framer-BhJve .framer-18dfzna,.framer-BhJve .framer-d5v2yd,.framer-BhJve .framer-18lp8qp,.framer-BhJve .framer-l9qz9q,.framer-BhJve .framer-19z4zm3,.framer-BhJve .framer-13kqam4,.framer-BhJve .framer-1gwnk4o,.framer-BhJve .framer-2qm7mq,.framer-BhJve .framer-12mkxz2,.framer-BhJve .framer-sam4h3{pointer-events:none;white-space:pre;z-index:1;flex:none;width:auto;height:auto;position:relative}.framer-BhJve .framer-1c1l6f7{pointer-events:none;white-space:pre-wrap;word-break:break-word;word-wrap:break-word;z-index:1;flex:none;width:100%;height:auto;position:relative}.framer-BhJve .framer-1m0ep30{z-index:1;flex-flow:column;flex:none;place-content:center flex-end;align-items:center;gap:10px;width:700px;max-width:700px;height:min-content;padding:0;display:flex;position:absolute;bottom:149px;left:50%;overflow:hidden}.framer-BhJve .framer-1f1w7ot{flex-flow:column;flex:none;place-content:flex-end center;align-items:flex-end;gap:20px;width:100%;height:min-content;padding:0;display:flex;position:relative;overflow:visible}.framer-BhJve .framer-13wrv58{will-change:var(--framer-will-change-override,transform);flex-flow:column;flex:none;place-content:flex-start;align-items:flex-start;gap:20px;width:100%;height:min-content;padding:16px;display:flex;position:relative;overflow:hidden}.framer-BhJve .framer-1keq4a4{flex-flow:column;flex:none;place-content:flex-start;align-items:flex-start;gap:10px;width:100%;height:min-content;min-height:22px;padding:0;display:flex;position:relative}.framer-BhJve .framer-f44qds-container,.framer-BhJve .framer-wth2z5-container,.framer-BhJve .framer-1o9m8lv-container,.framer-BhJve .framer-rbjer7-container,.framer-BhJve .framer-1es3d9c-container,.framer-BhJve .framer-wql487-container{flex:none;width:100%;height:auto;position:relative}.framer-BhJve .framer-7jf5n8{flex-flow:row;flex:none;place-content:center flex-end;align-items:center;gap:20px;width:100%;height:min-content;padding:0;display:flex;position:relative;overflow:visible}.framer-BhJve .framer-bsepva-container,.framer-BhJve .framer-lhii2x-container,.framer-BhJve .framer-1nftp43-container,.framer-BhJve .framer-12h3des-container,.framer-BhJve .framer-ay4mr-container,.framer-BhJve .framer-oga0h1-container,.framer-BhJve .framer-h3zgcx-container,.framer-BhJve .framer-1ipauiz-container{flex:none;width:auto;height:auto;position:relative}.framer-BhJve .framer-zxfwy0-container{z-index:1;flex:none;width:auto;height:32px;position:absolute;top:47%;left:50%}.framer-BhJve .framer-1uw3i9g{z-index:1;flex-flow:row;flex:none;place-content:center flex-start;align-items:center;gap:10px;width:757px;height:min-content;padding:0;display:flex;position:absolute;top:500px;left:50%;overflow:visible}.framer-BhJve .framer-1ycabjb{height:min-content;overflow:var(--overflow-clip-fallback,clip);flex-flow:column;flex:1 0 0;place-content:center flex-start;align-items:center;gap:0;width:1px;padding:25px 0 0 50px;display:flex;position:relative}.framer-BhJve .framer-1ezx2lt,.framer-BhJve .framer-4q5zmz{height:min-content;overflow:var(--overflow-clip-fallback,clip);flex-flow:column;flex:none;place-content:center;align-items:center;gap:20px;width:100%;padding:0 25px 50px 50px;display:flex;position:relative}.framer-BhJve .framer-1p1tpo5{flex-flow:row;flex:none;place-content:center;align-items:center;gap:10px;width:100%;height:min-content;padding:0;display:flex;position:relative;overflow:visible}.framer-BhJve .framer-1tgu0ks,.framer-BhJve .framer-1epbwlb,.framer-BhJve .framer-1ivemv2{height:min-content;overflow:var(--overflow-clip-fallback,clip);will-change:var(--framer-will-change-override,transform);flex-flow:column;flex:1 0 0;place-content:center flex-start;align-items:center;gap:10px;width:1px;padding:15px;display:flex;position:relative}.framer-BhJve .framer-pxv568,.framer-BhJve .framer-1m0855q,.framer-BhJve .framer-u0nae5,.framer-BhJve .framer-5ukwg9{height:min-content;overflow:var(--overflow-clip-fallback,clip);flex-flow:row;flex:none;place-content:center flex-end;align-items:center;gap:10px;width:100%;padding:0;display:flex;position:relative}.framer-BhJve .framer-1xs8mhg,.framer-BhJve .framer-cjv8hq,.framer-BhJve .framer-m3izpj,.framer-BhJve .framer-1lt7gu3{--framer-text-wrap:balance;pointer-events:auto;white-space:pre-wrap;word-break:break-word;word-wrap:break-word;z-index:1;flex:1 0 0;width:1px;height:auto;position:relative}.framer-BhJve .framer-5v7i10,.framer-BhJve .framer-sfjveq,.framer-BhJve .framer-617oed{flex-flow:row;flex:none;place-content:center;align-items:center;gap:10px;width:min-content;height:min-content;padding:6px 12px;display:flex;position:relative;overflow:visible}.framer-BhJve .framer-c68ivp,.framer-BhJve .framer-dmlty0,.framer-BhJve .framer-g3cc9,.framer-BhJve .framer-1k4h9qg,.framer-BhJve .framer-1ydfh7c{white-space:pre;flex:none;width:auto;height:auto;position:relative}.framer-BhJve .framer-1u3kghu,.framer-BhJve .framer-rryueu,.framer-BhJve .framer-1vmorc4,.framer-BhJve .framer-1prwcz5{height:min-content;overflow:var(--overflow-clip-fallback,clip);flex-flow:row;flex:none;place-content:flex-end flex-start;align-items:flex-end;gap:2px;width:100%;padding:0;display:flex;position:relative}.framer-BhJve .framer-3z0hfp{height:min-content;overflow:var(--overflow-clip-fallback,clip);will-change:var(--framer-will-change-override,transform);flex-flow:column;flex:none;place-content:center flex-start;align-items:center;gap:10px;width:100%;padding:20px;display:flex;position:relative}.framer-BhJve .framer-6e5f3w-container{flex:none;width:100%;height:200px;position:relative}.framer-BhJve .framer-w709iy{height:min-content;overflow:var(--overflow-clip-fallback,clip);flex-flow:row;flex:none;place-content:center;align-items:center;gap:10px;width:100%;padding:0;display:flex;position:relative}.framer-BhJve .framer-u1he9j{height:350px;overflow:var(--overflow-clip-fallback,clip);will-change:var(--framer-will-change-override,transform);flex-flow:column;flex:1 0 0;place-content:center flex-start;align-items:center;gap:25px;width:1px;padding:0;display:flex;position:relative}.framer-BhJve .framer-hcat4q{height:min-content;overflow:var(--overflow-clip-fallback,clip);flex-flow:column;flex:none;place-content:center flex-start;align-items:center;gap:10px;width:100%;padding:20px 20px 15px;display:flex;position:relative}.framer-BhJve .framer-16emy3l{flex:none;width:200px;height:200px;position:relative;overflow:visible}.framer-BhJve .framer-t7siz5{height:min-content;overflow:var(--overflow-clip-fallback,clip);flex-flow:row;flex:1 0 0;place-content:flex-start center;align-items:flex-start;gap:20px;width:1px;padding:0;display:flex;position:relative}.framer-BhJve .framer-2w3c24{height:350px;overflow:var(--overflow-clip-fallback,clip);flex-flow:column;flex:1 0 0;place-content:center;align-items:center;gap:0;width:1px;padding:0;display:flex;position:relative}.framer-BhJve .framer-xz50hq,.framer-BhJve .framer-4b8aua{height:1px;overflow:var(--overflow-clip-fallback,clip);will-change:var(--framer-will-change-override,transform);flex-flow:row;flex:1 0 0;place-content:center flex-end;align-items:center;gap:10px;width:100%;padding:0 25px;display:flex;position:relative}.framer-BhJve .framer-l6b43e,.framer-BhJve .framer-aigm17,.framer-BhJve .framer-z2bw1n,.framer-BhJve .framer-1xwakfx,.framer-BhJve .framer-16tlla3,.framer-BhJve .framer-qer4r,.framer-BhJve .framer-u3riwp,.framer-BhJve .framer-1r3ktxc,.framer-BhJve .framer-7tzzuw,.framer-BhJve .framer-1ru5b0w{flex-flow:row;flex:1 0 0;place-content:center flex-start;align-items:center;gap:10px;width:1px;height:min-content;padding:0;display:flex;position:relative;overflow:visible}.framer-BhJve .framer-17puoil,.framer-BhJve .framer-7ex1y,.framer-BhJve .framer-tt50ia,.framer-BhJve .framer-1e8y0hs,.framer-BhJve .framer-n0gr5j,.framer-BhJve .framer-cttgvk,.framer-BhJve .framer-189s21d,.framer-BhJve .framer-4nzb74{pointer-events:none;white-space:pre-wrap;word-break:break-word;word-wrap:break-word;z-index:1;flex:none;width:20px;height:auto;position:relative}.framer-BhJve .framer-1ww164k,.framer-BhJve .framer-jeqxyw,.framer-BhJve .framer-1254cbb,.framer-BhJve .framer-15gqwbh,.framer-BhJve .framer-1mgzlnd,.framer-BhJve .framer-18r45db,.framer-BhJve .framer-1no8a12,.framer-BhJve .framer-qnb21t{height:22px;overflow:var(--overflow-clip-fallback,clip);will-change:var(--framer-will-change-override,transform);flex:none;width:22px;position:relative}.framer-BhJve .framer-1r2ajjo,.framer-BhJve .framer-1bf69oe,.framer-BhJve .framer-7xluu3,.framer-BhJve .framer-1lsk760,.framer-BhJve .framer-146qsl7,.framer-BhJve .framer-1thzdqa,.framer-BhJve .framer-pgxi1t,.framer-BhJve .framer-1bgz964,.framer-BhJve .framer-11vhkv6,.framer-BhJve .framer-14ufu7o{height:min-content;overflow:var(--overflow-clip-fallback,clip);flex-flow:row;flex:none;place-content:center;align-items:center;gap:5px;width:min-content;padding:0;display:flex;position:relative}.framer-BhJve .framer-1uhs64g-container,.framer-BhJve .framer-1pj45q7-container,.framer-BhJve .framer-etk7bm-container,.framer-BhJve .framer-hlcu97-container,.framer-BhJve .framer-yw1b1c-container,.framer-BhJve .framer-ud7n17-container,.framer-BhJve .framer-1boof65-container,.framer-BhJve .framer-1fn4l46-container,.framer-BhJve .framer-1l1i0aa-container,.framer-BhJve .framer-1mx6ol5-container{flex:none;width:15px;height:15px;position:relative}.framer-BhJve .framer-m5eyqf,.framer-BhJve .framer-365sdq,.framer-BhJve .framer-o8t0mn,.framer-BhJve .framer-3h8rjn,.framer-BhJve .framer-1t4us6z,.framer-BhJve .framer-1327nh7,.framer-BhJve .framer-xx8unp,.framer-BhJve .framer-13ihvh6{height:1px;overflow:var(--overflow-clip-fallback,clip);flex-flow:row;flex:1 0 0;place-content:center flex-start;align-items:center;gap:10px;width:100%;padding:0 25px;display:flex;position:relative}.framer-BhJve .framer-1hflona,.framer-BhJve .framer-1iju99k{flex-flow:row;flex:none;place-content:center;align-items:center;gap:10px;width:min-content;height:min-content;padding:0;display:flex;position:relative;overflow:hidden}.framer-BhJve .framer-1dsn1ul,.framer-BhJve .framer-3s9f66{aspect-ratio:1;height:var(--framer-aspect-ratio-supported,40px);will-change:var(--framer-will-change-override,transform);z-index:1;flex:none;width:12px;position:absolute;top:50%;left:50%;overflow:hidden}.framer-BhJve .framer-g5q5aa,.framer-BhJve .framer-1218vfd{aspect-ratio:1;height:var(--framer-aspect-ratio-supported,58px);will-change:var(--framer-will-change-override,transform);flex:none;gap:10px;width:22px;position:relative;overflow:hidden}.framer-BhJve .framer-1tpsny8{will-change:var(--framer-will-change-override,transform);z-index:1;flex-flow:row;flex:none;place-content:center flex-start;align-items:center;gap:5px;width:min-content;height:min-content;padding:15px;display:flex;position:sticky;top:0;overflow:hidden}.framer-BhJve .framer-xnuy68{height:min-content;overflow:var(--overflow-clip-fallback,clip);flex-flow:column;flex:none;place-content:center;align-items:center;gap:0;width:100%;padding:0;display:flex;position:relative}.framer-BhJve .framer-jfgqmt{height:45px;overflow:var(--overflow-clip-fallback,clip);will-change:var(--framer-will-change-override,transform);flex-flow:row;flex:none;place-content:center flex-end;align-items:center;gap:10px;width:100%;padding:0 25px;display:flex;position:relative}.framer-BhJve .framer-jb1mio-container{flex:none;width:20px;height:20px;position:relative}.framer-BhJve .framer-llilx{flex-flow:column;flex:none;place-content:center;align-items:center;gap:35px;width:100%;height:min-content;padding:40px 100px 50px;display:flex;position:relative;overflow:visible}.framer-BhJve .framer-1vu821z{height:350px;overflow:var(--overflow-clip-fallback,clip);flex-flow:column;flex:none;place-content:center;align-items:center;gap:0;width:100%;padding:0;display:flex;position:relative}.framer-BhJve .framer-ygsbyk{flex-flow:column;flex:none;place-content:center;align-items:center;gap:10px;width:100%;height:min-content;padding:0;display:flex;position:relative;overflow:visible}.framer-BhJve .framer-1gt4qsg{z-index:0;flex:none;width:100%;height:475px;position:relative;overflow:visible}.framer-BhJve .framer-1kr6twx{z-index:2;flex-flow:row;flex:none;place-content:center flex-start;align-items:center;gap:5px;width:min-content;height:min-content;padding:0;display:flex;position:absolute;top:50%;left:50%;overflow:visible}.framer-BhJve .framer-1p8b9yq{aspect-ratio:1;height:var(--framer-aspect-ratio-supported,111px);flex:none;gap:0;width:110px;position:relative;overflow:visible}.framer-BhJve .framer-1wj68cz{flex-flow:column;flex:none;place-content:flex-start center;align-items:flex-start;gap:6px;width:min-content;height:min-content;padding:0;display:flex;position:relative;overflow:visible}.framer-BhJve .framer-1l2l7v5{-webkit-user-select:none;user-select:none;white-space:pre;flex:none;width:auto;height:auto;position:relative}.framer-BhJve .framer-1vnw8n7-container{height:calc(var(--framer-viewport-height,100vh)*1);z-index:10;flex:none;width:auto;position:absolute;top:0;left:1px}.framer-BhJve .framer-qm7ji1{z-index:2;flex:none;width:648px;height:106px;position:absolute;top:-276px;left:92px;overflow:visible}.framer-BhJve .framer-5ltzxb{z-index:3;flex-flow:row;flex:none;place-content:center;align-items:center;gap:10px;width:min-content;height:min-content;padding:20px;display:flex;position:absolute;top:-150px;left:92px;overflow:visible}.framer-BhJve .framer-ng77ka{white-space:pre-wrap;word-break:break-word;word-wrap:break-word;flex:none;width:340px;height:auto;position:relative}.framer-BhJve .framer-7tnhde{z-index:1;flex:none;width:90%;height:350px;position:absolute;top:calc(65.2632% - 175px);left:10.1717%;overflow:visible}.framer-BhJve .framer-yaa8zo{z-index:1;flex:none;width:46%;height:7%;position:absolute;top:0;right:1px;overflow:visible}.framer-BhJve .framer-15eg4b3{z-index:1;flex:none;width:54%;height:100%;position:absolute;top:-.105262%;left:-410px;overflow:visible}.framer-BhJve.framer-v-wjnjgx .framer-1keq4a4{min-height:unset}.framer-BhJve.framer-v-aspgch .framer-zxfwy0-container,.framer-BhJve.framer-v-1cc6bq8 .framer-zxfwy0-container{top:55%}.framer-BhJve.framer-v-1cc6bq8 .framer-1mbj4y6{width:unset;z-index:1;position:absolute;top:-480px;left:0;right:0}.framer-BhJve.framer-v-1cc6bq8 .framer-1uw3i9g,.framer-BhJve.framer-v-onmmff .framer-1uw3i9g,.framer-BhJve.framer-v-14up9sd .framer-1uw3i9g,.framer-BhJve.framer-v-14up9sd .framer-5ltzxb{top:30px}.framer-BhJve.framer-v-onmmff .framer-qm7ji1{top:44px}.framer-BhJve.framer-v-onmmff .framer-5ltzxb{top:170px}.framer-BhJve.framer-v-onmmff .framer-ng77ka,.framer-BhJve.framer-v-14up9sd .framer-ng77ka{--framer-text-wrap:balance;width:490px}.framer-BhJve.framer-v-onmmff .framer-7tnhde{bottom:-30px;top:unset}.framer-BhJve.framer-v-onmmff .framer-15eg4b3,.framer-BhJve.framer-v-14up9sd .framer-15eg4b3{left:-330px}.framer-BhJve.framer-v-14up9sd .framer-qm7ji1{height:242px;top:157px}.framer-BhJve.framer-v-14up9sd .framer-7tnhde{bottom:-290px;top:unset}.framer-BhJve.framer-v-14up9sd .framer-yaa8zo{width:88%;height:31%;right:0}.framer-BhJve.framer-v-15ys1m6 .framer-1uw3i9g{top:-320px}.framer-BhJve.framer-v-15ys1m6 .framer-1vnw8n7-container{top:320px}.framer-BhJve.framer-v-15ys1m6 .framer-qm7ji1{width:317px;height:349px;top:69px;left:418px}.framer-BhJve.framer-v-15ys1m6 .framer-5ltzxb{top:69px;left:28px}.framer-BhJve.framer-v-15ys1m6 .framer-ng77ka{--framer-text-wrap:balance}.framer-BhJve.framer-v-15ys1m6 .framer-7tnhde{bottom:-300px;top:unset}.framer-BhJve.framer-v-15ys1m6 .framer-yaa8zo{width:88%;height:31%;top:-90px;right:0}.framer-BhJve.framer-v-15ys1m6 .framer-15eg4b3{left:1px}.framer-BhJve.framer-v-bgvaxh .framer-1uw3i9g{top:-812px}.framer-BhJve.framer-v-bgvaxh .framer-1vnw8n7-container{top:810px}.framer-BhJve.framer-v-bgvaxh .framer-qm7ji1{width:633px;height:162px;top:105px;left:98px}.framer-BhJve.framer-v-bgvaxh .framer-5ltzxb{top:287px;left:99px}.framer-BhJve.framer-v-bgvaxh .framer-ng77ka{width:490px}.framer-BhJve.framer-v-bgvaxh .framer-7tnhde{bottom:-149px;top:unset}.framer-BhJve.framer-v-bgvaxh .framer-yaa8zo{width:88%;height:31%;top:-40px;right:0}.framer-BhJve.framer-v-bgvaxh .framer-15eg4b3{left:-319px}.framer-BhJve.framer-v-1y6v6k8 .framer-1uw3i9g,.framer-BhJve.framer-v-10gxw5c .framer-1uw3i9g{top:-1235px}.framer-BhJve.framer-v-1y6v6k8 .framer-llilx{padding:40px 100px}.framer-BhJve.framer-v-1y6v6k8 .framer-1ipauiz-container,.framer-BhJve.framer-v-10gxw5c .framer-1ipauiz-container,.framer-BhJve.framer-v-douq15 .framer-1ipauiz-container{order:0;width:248px}.framer-BhJve.framer-v-1y6v6k8 .framer-1vu821z,.framer-BhJve.framer-v-10gxw5c .framer-1vu821z,.framer-BhJve.framer-v-douq15 .framer-1vu821z{order:1}.framer-BhJve.framer-v-1y6v6k8 .framer-1vnw8n7-container,.framer-BhJve.framer-v-10gxw5c .framer-1vnw8n7-container{top:1242px}.framer-BhJve.framer-v-1y6v6k8 .framer-qm7ji1,.framer-BhJve.framer-v-10gxw5c .framer-qm7ji1,.framer-BhJve.framer-v-douq15 .framer-qm7ji1{width:633px;height:208px;top:-261px;left:98px}.framer-BhJve.framer-v-1y6v6k8 .framer-5ltzxb,.framer-BhJve.framer-v-10gxw5c .framer-5ltzxb,.framer-BhJve.framer-v-douq15 .framer-5ltzxb{top:500px;left:99px}.framer-BhJve.framer-v-1y6v6k8 .framer-7tnhde,.framer-BhJve.framer-v-10gxw5c .framer-7tnhde,.framer-BhJve.framer-v-douq15 .framer-7tnhde{bottom:-360px;top:unset}.framer-BhJve.framer-v-1y6v6k8 .framer-yaa8zo,.framer-BhJve.framer-v-10gxw5c .framer-yaa8zo,.framer-BhJve.framer-v-douq15 .framer-yaa8zo{width:88%;height:31%;top:-150px;right:0}.framer-BhJve.framer-v-1y6v6k8 .framer-15eg4b3,.framer-BhJve.framer-v-10gxw5c .framer-15eg4b3,.framer-BhJve.framer-v-douq15 .framer-15eg4b3{left:-429px}.framer-BhJve.framer-v-10gxw5c .framer-4b8aua,.framer-BhJve.framer-v-douq15 .framer-4b8aua{will-change:unset;order:1;justify-content:flex-start}.framer-BhJve.framer-v-10gxw5c .framer-1t4us6z,.framer-BhJve.framer-v-douq15 .framer-1t4us6z{order:2}.framer-BhJve.framer-v-10gxw5c .framer-1327nh7,.framer-BhJve.framer-v-douq15 .framer-1327nh7{order:3}.framer-BhJve.framer-v-10gxw5c .framer-189s21d,.framer-BhJve.framer-v-douq15 .framer-189s21d{white-space:pre;width:auto}.framer-BhJve.framer-v-10gxw5c .framer-xx8unp,.framer-BhJve.framer-v-douq15 .framer-xx8unp{will-change:var(--framer-will-change-override,transform);z-index:1;order:0}.framer-BhJve.framer-v-10gxw5c .framer-13ihvh6,.framer-BhJve.framer-v-douq15 .framer-13ihvh6{order:4}.framer-BhJve.framer-v-douq15 .framer-1uw3i9g{bottom:0;top:unset}.framer-BhJve.framer-v-douq15 .framer-1vnw8n7-container{top:1752px}.framer-BhJve[data-border=true]:after,.framer-BhJve [data-border=true]:after{content:"";border-width:var(--border-top-width,0)var(--border-right-width,0)var(--border-bottom-width,0)var(--border-left-width,0);border-color:var(--border-color,none);border-style:var(--border-style,none);box-sizing:border-box;border-radius:inherit;corner-shape:inherit;pointer-events:none;width:100%;height:100%;position:absolute;top:0;left:0}@supports (aspect-ratio:1){body{--framer-aspect-ratio-supported:auto}}.framer-aLdYi.framer-1lp42uh,.framer-aLdYi .framer-1lp42uh{display:block}.framer-aLdYi.framer-drvumu{cursor:pointer;flex-flow:row;place-content:center;align-items:center;gap:8px;width:min-content;min-width:88px;height:min-content;padding:9px 14px 9px 16px;display:flex;position:relative;overflow:visible}.framer-aLdYi .framer-18p32zo{-webkit-user-select:none;user-select:none;white-space:pre;flex:none;width:auto;height:auto;position:relative}.framer-aLdYi .framer-y3e9x5{aspect-ratio:1;height:var(--framer-aspect-ratio-supported,20px);flex:none;gap:10px;width:20px;position:relative;overflow:hidden}.framer-aLdYi .framer-nh9jyf{flex:none;position:absolute;inset:0;overflow:visible}.framer-aLdYi .framer-4bezgj{aspect-ratio:1;height:var(--framer-aspect-ratio-supported,2px);flex:none;width:2px;position:absolute;top:0;left:50%;overflow:visible}.framer-aLdYi .framer-vp1uu2{height:var(--framer-aspect-ratio-supported,20px);flex:none;width:20px;position:relative}.framer-aLdYi.framer-v-16onpo6.framer-drvumu,.framer-aLdYi.framer-v-1tmc029.framer-drvumu,.framer-aLdYi.framer-v-7pjmwu.framer-drvumu{cursor:unset}.framer-aLdYi.framer-v-16onpo6 .framer-nh9jyf{overflow:hidden}.framer-aLdYi.framer-v-7fwxll.framer-drvumu{cursor:not-allowed}.framer-aLdYi.framer-v-7pjmwu .framer-vp1uu2{height:var(--framer-aspect-ratio-supported,21px)}.framer-NienL{-webkit-mask:var(--framer-icon-mask);aspect-ratio:1;-webkit-mask:var(--framer-icon-mask);mask:var(--framer-icon-mask);width:24px;display:block}@supports (aspect-ratio:1){body{--framer-aspect-ratio-supported:auto}}.framer-87iWT.framer-2gbtue,.framer-87iWT .framer-2gbtue{display:block}.framer-87iWT.framer-1uwbsaz{cursor:pointer;flex-flow:row;place-content:center flex-start;align-items:center;gap:8px;width:min-content;height:min-content;padding:8px 10px;display:flex;position:relative;overflow:visible}.framer-87iWT .framer-pz6ktz-container{flex:none;width:18px;height:18px;position:relative}.framer-87iWT .framer-5vtskb{--text-truncation-display-inline-for-safari-16:inline;--text-truncation-display-none-for-safari-16:none;--text-truncation-line-break-for-safari-16:"\a ";-webkit-line-clamp:1;-webkit-user-select:none;user-select:none;height:auto;overflow:var(--overflow-clip-fallback,clip);white-space:pre;-webkit-box-orient:vertical;flex:none;width:auto;display:-webkit-box;position:relative}.framer-87iWT[data-border=true]:after,.framer-87iWT [data-border=true]:after{content:"";border-width:var(--border-top-width,0)var(--border-right-width,0)var(--border-bottom-width,0)var(--border-left-width,0);border-color:var(--border-color,none);border-style:var(--border-style,none);box-sizing:border-box;border-radius:inherit;corner-shape:inherit;pointer-events:none;width:100%;height:100%;position:absolute;top:0;left:0}@supports (aspect-ratio:1){body{--framer-aspect-ratio-supported:auto}}.framer-ychjF.framer-1rxa33l,.framer-ychjF .framer-1rxa33l{display:block}.framer-ychjF.framer-wdq4w9{cursor:pointer;height:min-content;overflow:var(--overflow-clip-fallback,clip);padding:var(--hjczwq);will-change:var(--framer-will-change-override,transform);flex-flow:row;place-content:center flex-start;align-items:center;gap:10px;width:860px;display:flex;position:relative}.framer-ychjF .framer-n483tq{height:min-content;overflow:var(--overflow-clip-fallback,clip);flex-flow:row;flex:1 0 0;place-content:center flex-start;align-items:center;gap:10px;width:1px;padding:0;display:flex;position:relative}.framer-ychjF .framer-1p5l5e5-container{flex:none;width:26px;height:26px;position:relative}.framer-ychjF .framer-bm99ku{height:min-content;overflow:var(--overflow-clip-fallback,clip);flex-flow:row;flex:1 0 0;place-content:center;align-items:center;gap:5px;width:1px;padding:0;display:flex;position:relative}.framer-ychjF .framer-x1p1d1{--text-truncation-display-inline-for-safari-16:inline;--text-truncation-display-none-for-safari-16:none;--text-truncation-line-break-for-safari-16:"\a ";-webkit-line-clamp:1;height:auto;overflow:var(--overflow-clip-fallback,clip);white-space:pre-line;word-break:break-word;word-wrap:break-word;-webkit-box-orient:vertical;flex:1 0 0;width:1px;display:-webkit-box;position:relative}.framer-ychjF .framer-1flil11-container{flex:none;width:auto;height:auto;position:relative}.framer-ychjF .framer-m4uoxw-container{flex:none;width:20px;height:20px;position:relative}.framer-ychjF.framer-v-eud0xq .framer-bm99ku{justify-content:flex-start}.framer-ychjF[data-border=true]:after,.framer-ychjF [data-border=true]:after{content:"";border-width:var(--border-top-width,0)var(--border-right-width,0)var(--border-bottom-width,0)var(--border-left-width,0);border-color:var(--border-color,none);border-style:var(--border-style,none);box-sizing:border-box;border-radius:inherit;corner-shape:inherit;pointer-events:none;width:100%;height:100%;position:absolute;top:0;left:0}@supports (aspect-ratio:1){body{--framer-aspect-ratio-supported:auto}}.framer-qH6kS.framer-176ucdl,.framer-qH6kS .framer-176ucdl{display:block}.framer-qH6kS.framer-17zggkm{flex-flow:row;place-content:center;align-items:center;gap:10px;width:min-content;height:min-content;padding:6px 12px;display:flex;position:relative;overflow:visible}.framer-qH6kS .framer-o6h1wr{white-space:pre;flex:none;width:auto;height:auto;position:relative}.framer-qH6kS[data-border=true]:after,.framer-qH6kS [data-border=true]:after{content:"";border-width:var(--border-top-width,0)var(--border-right-width,0)var(--border-bottom-width,0)var(--border-left-width,0);border-color:var(--border-color,none);border-style:var(--border-style,none);box-sizing:border-box;border-radius:inherit;corner-shape:inherit;pointer-events:none;width:100%;height:100%;position:absolute;top:0;left:0}@supports (aspect-ratio:1){body{--framer-aspect-ratio-supported:auto}}.framer-mUCAV.framer-g766n6,.framer-mUCAV .framer-g766n6{display:block}.framer-mUCAV.framer-6ws8gq{flex-flow:column;place-content:center;align-items:center;gap:0;width:min-content;height:45px;padding:0;display:flex;position:relative;overflow:visible}.framer-mUCAV .framer-wup8r8{height:1px;overflow:var(--overflow-clip-fallback,clip);will-change:var(--framer-will-change-override,transform);z-index:1;flex-flow:row;flex:1 0 0;place-content:center space-between;align-items:center;width:248px;padding:0 3px 0 15px;display:flex;position:relative}.framer-mUCAV .framer-1yxxv0p{z-index:3;flex-flow:row;flex:none;place-content:center;align-items:center;gap:6px;width:min-content;height:min-content;padding:0;display:flex;position:absolute;top:50%;left:50%;overflow:visible}.framer-mUCAV .framer-60wzni{width:16px;height:16px;position:relative}.framer-mUCAV .framer-17b0o3i{width:16px;height:16px;position:absolute;top:0;left:0}.framer-mUCAV .framer-3c9r42{width:7px;height:6px;position:absolute;top:5px;left:5px}.framer-mUCAV .framer-9iioi8{-webkit-user-select:none;user-select:none;white-space:pre;z-index:1;flex:none;width:auto;height:18px;position:relative}.framer-mUCAV .framer-a9p0z9{height:min-content;overflow:var(--overflow-clip-fallback,clip);z-index:3;flex-flow:row;flex:1 0 0;place-content:center;align-items:center;gap:0;width:1px;padding:0;display:flex;position:relative}.framer-mUCAV .framer-my6ag{-webkit-user-select:none;user-select:none;white-space:pre-wrap;word-break:break-word;word-wrap:break-word;flex:1 0 0;width:1px;height:18px;position:relative}.framer-mUCAV .framer-29lpk1-container{z-index:3;flex:none;width:auto;height:auto;position:relative}.framer-mUCAV .framer-1vs6qgp{mix-blend-mode:screen;overflow:var(--overflow-clip-fallback,clip);will-change:var(--framer-will-change-override,transform);z-index:2;flex:none;width:0;position:absolute;top:0;bottom:0;left:0}.framer-mUCAV.framer-v-1q2izrc .framer-1vs6qgp,.framer-mUCAV.framer-v-zwkpt6 .framer-1vs6qgp{width:unset;right:0}@supports (aspect-ratio:1){body{--framer-aspect-ratio-supported:auto}}.framer-FyWPR.framer-kkvq5c,.framer-FyWPR .framer-kkvq5c{display:block}.framer-FyWPR.framer-xz3glu{cursor:pointer;flex-flow:row;place-content:center;align-items:center;gap:10px;width:min-content;height:min-content;padding:0;display:flex;position:relative;overflow:visible}.framer-FyWPR .framer-scgkps{height:min-content;overflow:var(--overflow-clip-fallback,clip);will-change:var(--framer-will-change-override,transform);flex-flow:row;flex:none;place-content:center;align-items:center;gap:10px;width:min-content;padding:10px 18px;display:flex;position:relative}.framer-FyWPR .framer-m7o9q4{-webkit-user-select:none;user-select:none;white-space:pre;flex:none;width:auto;height:auto;position:relative}@supports (aspect-ratio:1){body{--framer-aspect-ratio-supported:auto}}.framer-UEJKQ.framer-1mr9q33,.framer-UEJKQ .framer-1mr9q33{display:block}.framer-UEJKQ.framer-16ryd5t{flex-flow:column;place-content:flex-start;align-items:flex-start;gap:0;width:min-content;height:min-content;padding:0;display:flex;position:relative;overflow:visible}.framer-UEJKQ .framer-1qkm4ct-container{flex:none;width:auto;height:auto;position:relative}.framer-UEJKQ .framer-8xjqtu{aspect-ratio:1;cursor:pointer;height:var(--framer-aspect-ratio-supported,40px);z-index:10;flex-flow:row;flex:none;place-content:center;align-items:center;gap:10px;width:40px;padding:0;display:flex;position:absolute;top:22px;right:-20px;overflow:visible}.framer-UEJKQ .framer-fqkxab{aspect-ratio:1;height:var(--framer-aspect-ratio-supported,24px);will-change:var(--framer-will-change-override,transform);flex-flow:row;flex:none;place-content:center;align-items:center;gap:10px;width:24px;padding:0;display:flex;position:relative;overflow:hidden}.framer-UEJKQ .framer-7sy8tr{aspect-ratio:1;height:var(--framer-aspect-ratio-supported,14px);z-index:1;flex:none;width:14px;position:relative}.framer-UEJKQ .framer-a30bax{height:calc(var(--framer-viewport-height,100vh)*1);flex-flow:column;flex:none;place-content:center flex-start;align-items:center;gap:20px;width:240px;min-height:780px;padding:24px 16px 16px;display:flex;position:relative;overflow:hidden auto}.framer-UEJKQ .framer-1bw4nkw{flex-flow:column;flex:none;place-content:center;align-items:center;gap:20px;width:100%;height:min-content;padding:0;display:flex;position:relative;overflow:visible}.framer-UEJKQ .framer-1vzvqsy{flex-flow:row;flex:none;place-content:center flex-start;align-items:center;gap:10px;width:100%;height:min-content;padding:0;display:flex;position:relative;overflow:visible}.framer-UEJKQ .framer-fdz0w9,.framer-UEJKQ .framer-12upknu{aspect-ratio:1;height:var(--framer-aspect-ratio-supported,36px);flex:none;gap:0;width:36px;position:relative;overflow:visible}.framer-UEJKQ .framer-ejmexk{flex-flow:column;flex:none;place-content:flex-start center;align-items:flex-start;gap:6px;width:min-content;height:min-content;padding:0;display:flex;position:relative;overflow:visible}.framer-UEJKQ .framer-1rzuxr7{-webkit-user-select:none;user-select:none;white-space:pre-wrap;word-break:break-word;word-wrap:break-word;flex:none;width:160px;height:auto;position:relative}.framer-UEJKQ .framer-14qv8xy,.framer-UEJKQ .framer-gwkkgu,.framer-UEJKQ .framer-utyhfn{flex:none;width:100%;height:1px;position:relative;overflow:visible}.framer-UEJKQ .framer-1udygkr{flex-flow:column;flex:none;place-content:center;align-items:center;gap:20px;width:100%;height:min-content;padding:0;text-decoration:none;display:flex;position:relative;overflow:visible}.framer-UEJKQ .framer-4yn0o2{flex-flow:row;flex:none;place-content:center space-between;align-items:center;width:100%;height:min-content;padding:0;display:flex;position:relative;overflow:visible}.framer-UEJKQ .framer-9nv0f8{flex-flow:column;flex:1 0 0;place-content:flex-start center;align-items:flex-start;gap:2px;width:1px;height:min-content;padding:5px;display:flex;position:relative;overflow:visible}.framer-UEJKQ .framer-s8sxcw,.framer-UEJKQ .framer-e7l8i9{--text-truncation-display-inline-for-safari-16:inline;--text-truncation-display-none-for-safari-16:none;--text-truncation-line-break-for-safari-16:"\a ";-webkit-line-clamp:1;-webkit-user-select:none;user-select:none;height:auto;overflow:var(--overflow-clip-fallback,clip);white-space:pre-line;word-break:break-word;word-wrap:break-word;-webkit-box-orient:vertical;flex:none;width:100%;display:-webkit-box;position:relative}.framer-UEJKQ .framer-1ld397s,.framer-UEJKQ .framer-19wl0zb{flex-flow:column;flex:none;place-content:flex-start;align-items:flex-start;gap:20px;width:100%;height:min-content;padding:0;display:flex;position:relative;overflow:visible}.framer-UEJKQ .framer-1y6bimf,.framer-UEJKQ .framer-2udgr4,.framer-UEJKQ .framer-l7jp2q{flex-flow:column;flex:none;place-content:center;align-items:center;gap:6px;width:100%;height:min-content;padding:0;display:flex;position:relative;overflow:visible}.framer-UEJKQ .framer-1f1f2kt-container,.framer-UEJKQ .framer-14ptdgj-container,.framer-UEJKQ .framer-1cilg19-container,.framer-UEJKQ .framer-14tisy1-container,.framer-UEJKQ .framer-svz7kb-container,.framer-UEJKQ .framer-p9lppo-container,.framer-UEJKQ .framer-1b695ip-container,.framer-UEJKQ .framer-wvukr7-container{flex:none;width:100%;height:auto;position:relative}.framer-UEJKQ .framer-ettef8,.framer-UEJKQ .framer-zn62nc,.framer-UEJKQ .framer-14g49m0,.framer-UEJKQ .framer-1cbm2k3,.framer-UEJKQ .framer-15lo8yl,.framer-UEJKQ .framer-1jslfru,.framer-UEJKQ .framer-52wc7h{flex:1 0 0;width:1px;height:1px;position:relative;overflow:visible}.framer-UEJKQ .framer-bwj447-container,.framer-UEJKQ .framer-1pi5ck2-container,.framer-UEJKQ .framer-d7hg2p-container,.framer-UEJKQ .framer-mlmkma-container{flex:none;width:100px;height:auto;position:relative}.framer-UEJKQ .framer-hozc5g{flex-flow:column;flex:none;place-content:flex-start flex-end;align-items:flex-start;gap:20px;width:100%;height:min-content;padding:50px 0 0;display:flex;position:relative;overflow:visible}.framer-UEJKQ .framer-13h17ep{white-space:pre-wrap;word-break:break-word;word-wrap:break-word;flex:none;width:100%;height:auto;position:relative}.framer-UEJKQ.framer-v-ev8ayj .framer-fqkxab{height:var(--framer-aspect-ratio-supported,18px);width:18px}.framer-UEJKQ.framer-v-ev8ayj .framer-7sy8tr{height:var(--framer-aspect-ratio-supported,10px);width:10px}.framer-UEJKQ.framer-v-ev8ayj .framer-a30bax,.framer-UEJKQ.framer-v-1ay2gxq .framer-a30bax{flex:1 0 0;width:min-content;height:1px;min-height:680px}.framer-UEJKQ.framer-v-ev8ayj .framer-1bw4nkw,.framer-UEJKQ.framer-v-ev8ayj .framer-14qv8xy,.framer-UEJKQ.framer-v-ev8ayj .framer-gwkkgu,.framer-UEJKQ.framer-v-ev8ayj .framer-utyhfn,.framer-UEJKQ.framer-v-1ay2gxq .framer-1bw4nkw,.framer-UEJKQ.framer-v-1ay2gxq .framer-14qv8xy,.framer-UEJKQ.framer-v-1ay2gxq .framer-gwkkgu,.framer-UEJKQ.framer-v-1ay2gxq .framer-utyhfn{width:46px}.framer-UEJKQ.framer-v-ev8ayj .framer-1vzvqsy,.framer-UEJKQ.framer-v-ev8ayj .framer-4yn0o2,.framer-UEJKQ.framer-v-1ay2gxq .framer-1vzvqsy,.framer-UEJKQ.framer-v-1ay2gxq .framer-4yn0o2{width:min-content}.framer-UEJKQ.framer-v-ev8ayj .framer-1udygkr,.framer-UEJKQ.framer-v-1ay2gxq .framer-1udygkr{align-self:stretch;width:auto;height:43px}.framer-UEJKQ.framer-v-ev8ayj .framer-1ld397s,.framer-UEJKQ.framer-v-ev8ayj .framer-19wl0zb,.framer-UEJKQ.framer-v-ev8ayj .framer-hozc5g,.framer-UEJKQ.framer-v-1ay2gxq .framer-1ld397s,.framer-UEJKQ.framer-v-1ay2gxq .framer-19wl0zb,.framer-UEJKQ.framer-v-1ay2gxq .framer-hozc5g{gap:4px;width:min-content}.framer-UEJKQ.framer-v-ev8ayj .framer-1y6bimf,.framer-UEJKQ.framer-v-ev8ayj .framer-2udgr4,.framer-UEJKQ.framer-v-ev8ayj .framer-l7jp2q,.framer-UEJKQ.framer-v-1ay2gxq .framer-1y6bimf,.framer-UEJKQ.framer-v-1ay2gxq .framer-2udgr4,.framer-UEJKQ.framer-v-1ay2gxq .framer-l7jp2q{align-self:stretch;width:auto}.framer-UEJKQ.framer-v-dtre2b.framer-16ryd5t{width:390px;overflow:auto}.framer-UEJKQ.framer-v-dtre2b .framer-a30bax{height:min-content;min-height:unset;justify-content:center;gap:16px;width:100%;padding:16px}.framer-UEJKQ.framer-v-dtre2b .framer-1y6bimf{flex-direction:row;justify-content:flex-start;gap:10px;overflow:auto}.framer-UEJKQ.framer-v-dtre2b .framer-1f1f2kt-container{order:0;width:100px}.framer-UEJKQ.framer-v-dtre2b .framer-14ptdgj-container{order:2;width:100px}.framer-UEJKQ.framer-v-dtre2b .framer-ettef8{flex:none;order:3;align-self:stretch;height:auto}.framer-UEJKQ.framer-v-dtre2b .framer-1cilg19-container{order:4;width:100px}.framer-UEJKQ.framer-v-dtre2b .framer-zn62nc{flex:none;order:5;align-self:stretch;height:auto}.framer-UEJKQ.framer-v-dtre2b .framer-14tisy1-container{order:6;width:110px}.framer-UEJKQ.framer-v-dtre2b .framer-14g49m0{flex:none;order:7;align-self:stretch;height:auto}.framer-UEJKQ.framer-v-dtre2b .framer-bwj447-container{order:10}.framer-UEJKQ.framer-v-dtre2b .framer-1cbm2k3{flex:none;order:9;align-self:stretch;height:auto}.framer-UEJKQ.framer-v-dtre2b .framer-1pi5ck2-container{order:12}.framer-UEJKQ.framer-v-dtre2b .framer-15lo8yl{flex:none;order:11;align-self:stretch;height:auto}.framer-UEJKQ.framer-v-dtre2b .framer-d7hg2p-container{order:8}.framer-UEJKQ.framer-v-dtre2b .framer-1jslfru{flex:none;order:13;align-self:stretch;height:auto}.framer-UEJKQ.framer-v-dtre2b .framer-mlmkma-container{order:14}.framer-UEJKQ.framer-v-dtre2b .framer-52wc7h{flex:none;order:1;align-self:stretch;height:auto}.framer-UEJKQ[data-border=true]:after,.framer-UEJKQ [data-border=true]:after{content:"";border-width:var(--border-top-width,0)var(--border-right-width,0)var(--border-bottom-width,0)var(--border-left-width,0);border-color:var(--border-color,none);border-style:var(--border-style,none);box-sizing:border-box;border-radius:inherit;corner-shape:inherit;pointer-events:none;width:100%;height:100%;position:absolute;top:0;left:0}.framer-UEJKQ[data-hide-scrollbars=true]::-webkit-scrollbar{width:0;height:0}.framer-UEJKQ [data-hide-scrollbars=true]::-webkit-scrollbar{width:0;height:0}.framer-UEJKQ[data-hide-scrollbars=true]::-webkit-scrollbar-thumb{background:0 0}.framer-UEJKQ [data-hide-scrollbars=true]::-webkit-scrollbar-thumb{background:0 0}.framer-UEJKQ[data-hide-scrollbars=true],.framer-UEJKQ [data-hide-scrollbars=true]{scrollbar-width:none}@supports (aspect-ratio:1){body{--framer-aspect-ratio-supported:auto}}.framer-96XwB.framer-1go9ryb,.framer-96XwB .framer-1go9ryb{display:block}.framer-96XwB.framer-10g8hu9{cursor:pointer;flex-flow:row;place-content:center flex-start;align-items:center;gap:8px;width:274px;height:min-content;padding:8px 10px;text-decoration:none;display:flex;position:relative;overflow:visible}.framer-96XwB .framer-82ele6-container{flex:none;width:18px;height:18px;position:relative}.framer-96XwB .framer-1r9fnas{-webkit-user-select:none;user-select:none;white-space:pre;flex:none;width:auto;height:auto;position:relative}.framer-96XwB.framer-v-a0t7rj.framer-10g8hu9{cursor:unset}.framer-96XwB.framer-v-7jrwzf.framer-10g8hu9{width:min-content}.framer-96XwB.framer-v-5030po.framer-10g8hu9{cursor:unset;width:min-content}.framer-96XwB.framer-v-tlfx63.framer-10g8hu9,.framer-96XwB.framer-v-74xdam.framer-10g8hu9{cursor:unset;flex-direction:column;justify-content:center;gap:6px;width:48px;height:48px}@supports (aspect-ratio:1){body{--framer-aspect-ratio-supported:auto}}.framer-aIgeX.framer-9gz1xo,.framer-aIgeX .framer-9gz1xo{display:block}.framer-aIgeX.framer-x2xqun{width:142px;height:142px;position:relative;overflow:visible}@supports (aspect-ratio:1){body{--framer-aspect-ratio-supported:auto}}.framer-5pAsF.framer-25k3fv,.framer-5pAsF .framer-25k3fv{display:block}.framer-5pAsF.framer-aa9ka6{cursor:pointer;flex-flow:row;place-content:center;align-items:center;gap:10px;width:min-content;height:min-content;padding:35.2px 95.2px;text-decoration:none;display:flex;position:relative;overflow:visible}.framer-5pAsF .framer-kjmuuy{will-change:var(--framer-will-change-override,transform);flex:none;position:absolute;inset:0;overflow:hidden}.framer-5pAsF .framer-1bkdi3d{pointer-events:none;flex:none;position:absolute;inset:-184px -140px;overflow:visible}.framer-5pAsF .framer-1k01lzs,.framer-5pAsF .framer-1lural6{will-change:var(--framer-will-change-override,transform);flex:none;width:432px;height:138px;position:absolute;top:calc(50% - 69px);left:calc(50% - 216px);overflow:hidden}.framer-5pAsF .framer-1tnr1n8{will-change:var(--framer-will-change-override,transform);flex:none;position:absolute;inset:2px;overflow:hidden}.framer-5pAsF .framer-kwskth{will-change:var(--framer-will-change-override,transform);z-index:4;flex:none;position:absolute;inset:0;overflow:hidden}.framer-5pAsF .framer-ucoe6c-container,.framer-5pAsF .framer-10kojll-container,.framer-5pAsF .framer-jzvm81-container{flex:none;height:300%;position:absolute;top:-40px;left:0;right:0}.framer-5pAsF .framer-l0cmsv{will-change:var(--framer-will-change-override,transform);z-index:3;flex:none;position:absolute;inset:0;overflow:hidden}.framer-5pAsF .framer-qqe2ev{will-change:var(--framer-will-change-override,transform);z-index:2;flex:none;position:absolute;inset:0;overflow:hidden}.framer-5pAsF .framer-x2xo61{will-change:var(--framer-will-change-override,transform);z-index:1;flex:none;position:absolute;inset:0;overflow:hidden}.framer-5pAsF .framer-11oigow{will-change:var(--framer-will-change-override,transform);z-index:7;flex:none;position:absolute;inset:2px;overflow:hidden}.framer-5pAsF .framer-nb48ql{-webkit-user-select:none;user-select:none;white-space:pre;z-index:9;flex:none;width:auto;height:auto;position:relative}@supports (aspect-ratio:1){body{--framer-aspect-ratio-supported:auto}}.framer-2gigF.framer-45siwy,.framer-2gigF .framer-45siwy{display:block}.framer-2gigF.framer-1aldsjb{flex-flow:row;place-content:center;align-items:center;gap:30px;width:1072px;height:min-content;padding:0;display:flex;position:relative;overflow:visible}.framer-2gigF .framer-1mu5xoi{flex-flow:column;flex:1 0 0;place-content:center flex-start;align-items:center;gap:0;width:1px;height:min-content;min-height:200px;padding:0;display:flex;position:relative;overflow:visible}.framer-2gigF .framer-1fjye1j,.framer-2gigF .framer-1yjeyrp,.framer-2gigF .framer-1xmdkub{z-index:1;flex-flow:column;flex:none;place-content:flex-end center;align-items:flex-end;gap:0;width:375px;height:min-content;padding:0;display:flex;position:absolute;top:0;right:0;overflow:visible}.framer-2gigF .framer-zti2nz,.framer-2gigF .framer-uggltm,.framer-2gigF .framer-1vmcghd{--framer-text-wrap-override:balance;pointer-events:auto;z-index:1;flex:none;width:100%;height:auto;position:relative}.framer-2gigF .framer-1wmphz0{flex-flow:row;flex:none;place-content:center flex-end;align-items:center;gap:15px;width:100%;height:min-content;padding:0;display:flex;position:relative;overflow:visible}.framer-2gigF .framer-wsmqrb,.framer-2gigF .framer-1kbcj68,.framer-2gigF .framer-8zuwyi{pointer-events:auto;white-space:pre;z-index:1;flex:none;width:auto;height:auto;position:relative}.framer-2gigF .framer-1di2y96-container{flex:none;width:44px;height:auto;position:relative}.framer-2gigF .framer-mv88la{height:min-content;overflow:var(--overflow-clip-fallback,clip);flex-flow:column;flex:none;place-content:center;align-items:center;gap:10px;width:min-content;padding:0;display:flex;position:relative}.framer-2gigF .framer-nnzo69{z-index:3;flex-flow:row;flex:none;place-content:center;align-items:center;gap:10px;width:min-content;min-width:258px;height:min-content;min-height:530px;padding:0;display:flex;position:relative;overflow:visible}.framer-2gigF .framer-1lwebw0-container{z-index:2;flex:none;width:auto;height:auto;position:absolute;top:50%;left:50%}.framer-2gigF .framer-5vmuiq{flex-flow:column;flex:1 0 0;place-content:center flex-start;align-items:center;gap:10px;width:1px;height:min-content;min-height:200px;padding:0;display:flex;position:relative;overflow:visible}.framer-2gigF .framer-1n9sdwn,.framer-2gigF .framer-15j2xd6,.framer-2gigF .framer-14b0y2w{z-index:1;flex-flow:column;flex:none;place-content:flex-start center;align-items:flex-start;gap:15px;width:377px;height:min-content;padding:0;display:flex;position:absolute;top:10px;left:0;overflow:visible}.framer-2gigF .framer-ny8vcg,.framer-2gigF .framer-1i9i8f1,.framer-2gigF .framer-1sdc6np,.framer-2gigF .framer-1to26ri,.framer-2gigF .framer-l5bshg,.framer-2gigF .framer-1d65jzk{--framer-text-wrap:balance;pointer-events:auto;white-space:pre-wrap;word-break:break-word;word-wrap:break-word;z-index:1;flex:none;width:100%;height:auto;position:relative}.framer-2gigF .framer-nbdfmm{z-index:1;flex:none;width:260px;height:300px;position:absolute;top:calc(50% - 150px);left:calc(50% - 130px);overflow:hidden}.framer-2gigF.framer-v-737wwu .framer-1fjye1j{order:0}.framer-2gigF.framer-v-737wwu .framer-zti2nz,.framer-2gigF.framer-v-737wwu .framer-uggltm,.framer-2gigF.framer-v-737wwu .framer-1vmcghd,.framer-2gigF.framer-v-1sx02aj .framer-1vmcghd{pointer-events:none}.framer-2gigF.framer-v-737wwu .framer-1yjeyrp,.framer-2gigF.framer-v-1sx02aj .framer-1yjeyrp{order:1}.framer-2gigF.framer-v-737wwu .framer-1xmdkub,.framer-2gigF.framer-v-1sx02aj .framer-1xmdkub{order:2}.framer-2gigF.framer-v-737wwu .framer-1n9sdwn,.framer-2gigF.framer-v-737wwu .framer-15j2xd6,.framer-2gigF.framer-v-737wwu .framer-14b0y2w,.framer-2gigF.framer-v-1sx02aj .framer-1n9sdwn,.framer-2gigF.framer-v-1sx02aj .framer-15j2xd6,.framer-2gigF.framer-v-1sx02aj .framer-14b0y2w{min-height:181px}.framer-2gigF.framer-v-737wwu .framer-ny8vcg,.framer-2gigF.framer-v-737wwu .framer-1sdc6np,.framer-2gigF.framer-v-737wwu .framer-l5bshg,.framer-2gigF.framer-v-1sx02aj .framer-ny8vcg,.framer-2gigF.framer-v-1sx02aj .framer-1sdc6np,.framer-2gigF.framer-v-1sx02aj .framer-l5bshg{pointer-events:none;position:absolute;top:1px;left:0}.framer-2gigF.framer-v-737wwu .framer-1i9i8f1,.framer-2gigF.framer-v-737wwu .framer-1to26ri,.framer-2gigF.framer-v-737wwu .framer-1d65jzk,.framer-2gigF.framer-v-1sx02aj .framer-1i9i8f1,.framer-2gigF.framer-v-1sx02aj .framer-1to26ri,.framer-2gigF.framer-v-1sx02aj .framer-1d65jzk{pointer-events:none;position:absolute;bottom:1px;left:0}.framer-2gigF.framer-v-1sx02aj .framer-1fjye1j{order:0;min-height:141px}.framer-2gigF.framer-v-1sx02aj .framer-zti2nz,.framer-2gigF.framer-v-1sx02aj .framer-uggltm{pointer-events:none;position:absolute;top:1px;right:0}.framer-3mmEP .framer-styles-preset-1my0xcq:not(.rich-text-wrapper),.framer-3mmEP .framer-styles-preset-1my0xcq.rich-text-wrapper h2{--framer-font-family:"Satoshi","Satoshi Placeholder",sans-serif;--framer-font-family-bold:"Satoshi","Satoshi Placeholder",sans-serif;--framer-font-family-bold-italic:"Satoshi","Satoshi Placeholder",sans-serif;--framer-font-family-italic:"Satoshi","Satoshi Placeholder",sans-serif;--framer-font-open-type-features:normal;--framer-font-size:44px;--framer-font-style:normal;--framer-font-style-bold:normal;--framer-font-style-bold-italic:italic;--framer-font-style-italic:italic;--framer-font-variation-axes:normal;--framer-font-weight:500;--framer-font-weight-bold:700;--framer-font-weight-bold-italic:700;--framer-font-weight-italic:500;--framer-letter-spacing:-.04em;--framer-line-height:1em;--framer-paragraph-spacing:40px;--framer-text-alignment:center;--framer-text-color:#eff6ff;--framer-text-decoration:none;--framer-text-stroke-color:initial;--framer-text-stroke-width:initial;--framer-text-transform:none}@media (max-width:1199px) and (min-width:810px){.framer-3mmEP .framer-styles-preset-1my0xcq:not(.rich-text-wrapper),.framer-3mmEP .framer-styles-preset-1my0xcq.rich-text-wrapper h2{--framer-font-family:"Satoshi","Satoshi Placeholder",sans-serif;--framer-font-family-bold:"Satoshi","Satoshi Placeholder",sans-serif;--framer-font-family-bold-italic:"Satoshi","Satoshi Placeholder",sans-serif;--framer-font-family-italic:"Satoshi","Satoshi Placeholder",sans-serif;--framer-font-open-type-features:normal;--framer-font-size:35px;--framer-font-style:normal;--framer-font-style-bold:normal;--framer-font-style-bold-italic:italic;--framer-font-style-italic:italic;--framer-font-variation-axes:normal;--framer-font-weight:500;--framer-font-weight-bold:700;--framer-font-weight-bold-italic:700;--framer-font-weight-italic:500;--framer-letter-spacing:-.04em;--framer-line-height:1em;--framer-paragraph-spacing:40px;--framer-text-alignment:center;--framer-text-color:#eff6ff;--framer-text-decoration:none;--framer-text-stroke-color:initial;--framer-text-stroke-width:initial;--framer-text-transform:none}}@media (max-width:809px) and (min-width:0){.framer-3mmEP .framer-styles-preset-1my0xcq:not(.rich-text-wrapper),.framer-3mmEP .framer-styles-preset-1my0xcq.rich-text-wrapper h2{--framer-font-family:"Satoshi","Satoshi Placeholder",sans-serif;--framer-font-family-bold:"Satoshi","Satoshi Placeholder",sans-serif;--framer-font-family-bold-italic:"Satoshi","Satoshi Placeholder",sans-serif;--framer-font-family-italic:"Satoshi","Satoshi Placeholder",sans-serif;--framer-font-open-type-features:normal;--framer-font-size:28px;--framer-font-style:normal;--framer-font-style-bold:normal;--framer-font-style-bold-italic:italic;--framer-font-style-italic:italic;--framer-font-variation-axes:normal;--framer-font-weight:500;--framer-font-weight-bold:700;--framer-font-weight-bold-italic:700;--framer-font-weight-italic:500;--framer-letter-spacing:-.04em;--framer-line-height:1em;--framer-paragraph-spacing:40px;--framer-text-alignment:center;--framer-text-color:#eff6ff;--framer-text-decoration:none;--framer-text-stroke-color:initial;--framer-text-stroke-width:initial;--framer-text-transform:none}}@supports (aspect-ratio:1){body{--framer-aspect-ratio-supported:auto}}.framer-gsaUt.framer-1eqw1ls,.framer-gsaUt .framer-1eqw1ls{display:block}.framer-gsaUt.framer-1sl2o9m{height:min-content;overflow:var(--overflow-clip-fallback,clip);will-change:var(--framer-will-change-override,transform);flex-flow:row;place-content:center;align-items:center;gap:10px;width:min-content;padding:0;display:flex;position:relative}.framer-gsaUt .framer-b17t50{-webkit-user-select:none;user-select:none;aspect-ratio:.486667;height:var(--framer-aspect-ratio-supported,551px);pointer-events:none;z-index:4;flex:none;width:278px;position:relative;overflow:visible}.framer-gsaUt .framer-35wjeg{aspect-ratio:.46884;height:100%;width:var(--framer-aspect-ratio-supported,94px);z-index:1;flex-flow:column;flex:none;place-content:center flex-start;align-items:center;gap:10px;padding:0;display:flex;position:absolute;top:50%;left:50%;overflow:visible}.framer-gsaUt .framer-qhok3u{flex-flow:column;flex:1 0 0;place-content:center;align-items:center;gap:20px;width:min-content;height:1px;padding:95px 0;display:flex;position:relative;overflow:visible}.framer-gsaUt .framer-1ecmpup{flex-flow:row;flex:none;place-content:center;align-items:center;gap:10px;width:min-content;height:min-content;padding:0;display:flex;position:relative;overflow:hidden}.framer-gsaUt .framer-7mpgev{aspect-ratio:1;height:var(--framer-aspect-ratio-supported,30px);will-change:var(--framer-will-change-override,transform);z-index:1;flex:none;width:40px;position:absolute;top:50%;left:50%;overflow:hidden}.framer-gsaUt .framer-1gauyay{aspect-ratio:1;height:var(--framer-aspect-ratio-supported,48px);will-change:var(--framer-will-change-override,transform);flex:none;gap:10px;width:58px;position:relative;overflow:hidden}.framer-gsaUt .framer-1ji44a3{flex-flow:column;flex:none;place-content:center;align-items:center;gap:5px;width:250px;height:min-content;padding:0;display:flex;position:relative;overflow:visible}.framer-gsaUt .framer-t77vxx,.framer-gsaUt .framer-n1a7ay,.framer-gsaUt .framer-7eeb3x,.framer-gsaUt .framer-14qa838,.framer-gsaUt .framer-sgufpw,.framer-gsaUt .framer-elpymy,.framer-gsaUt .framer-v9czh,.framer-gsaUt .framer-h3jllm,.framer-gsaUt .framer-3nc7su,.framer-gsaUt .framer-1cxg91g,.framer-gsaUt .framer-nschay,.framer-gsaUt .framer-1ct385t,.framer-gsaUt .framer-1uxr8w3,.framer-gsaUt .framer-24im3f,.framer-gsaUt .framer-13e85g4,.framer-gsaUt .framer-1w01erf,.framer-gsaUt .framer-10bn5dc,.framer-gsaUt .framer-41cdr3,.framer-gsaUt .framer-1egrxch,.framer-gsaUt .framer-1dinpjq,.framer-gsaUt .framer-1nn4jil,.framer-gsaUt .framer-15qdtq9,.framer-gsaUt .framer-1rflhnh,.framer-gsaUt .framer-qgsdtg,.framer-gsaUt .framer-9a7evy,.framer-gsaUt .framer-rxajqp{white-space:pre;flex:none;width:auto;height:auto;position:relative}.framer-gsaUt .framer-v5nq55{flex-flow:column;flex:none;place-content:center;align-items:center;gap:10px;width:95%;height:min-content;padding:10px 0 0;display:flex;position:relative;overflow:visible}.framer-gsaUt .framer-1gewe94{will-change:var(--framer-will-change-override,transform);flex-flow:column;flex:none;place-content:center;align-items:center;gap:10px;width:100%;height:min-content;padding:10px 8px;display:flex;position:relative;overflow:hidden}.framer-gsaUt .framer-ab3r1a{flex-flow:row;flex:none;place-content:center space-between;align-items:center;width:100%;height:min-content;padding:0;display:flex;position:relative;overflow:hidden}.framer-gsaUt .framer-wcbwjc-container{flex:1 0 0;width:1px;height:10px;position:relative}.framer-gsaUt .framer-659mw6{flex-flow:row;flex:none;place-content:center;align-items:center;gap:2px;width:min-content;height:min-content;padding:2px;display:flex;position:relative;overflow:visible}.framer-gsaUt .framer-s789v9-container,.framer-gsaUt .framer-160y6iw-container,.framer-gsaUt .framer-xw0asp-container{flex:none;width:12px;height:12px;position:relative}.framer-gsaUt .framer-lieec9{flex-flow:row;flex:none;place-content:flex-start;align-items:flex-start;gap:3px;width:100%;height:min-content;padding:0;display:flex;position:relative;overflow:hidden}.framer-gsaUt .framer-efkwd2,.framer-gsaUt .framer-1xv894t{flex-flow:row;flex:none;place-content:center;align-items:center;gap:2px;width:min-content;height:min-content;padding:3px 8px 3px 5px;display:flex;position:relative;overflow:visible}.framer-gsaUt .framer-1jtr28b{height:min-content;overflow:var(--overflow-clip-fallback,clip);will-change:var(--framer-will-change-override,transform);z-index:2;flex-flow:column;flex:none;place-content:center flex-end;align-items:center;gap:15px;width:100%;padding:10px 5px 35px;display:flex;position:relative}.framer-gsaUt .framer-10elbj2{flex-flow:column;flex:none;place-content:center;align-items:center;gap:2px;width:100%;height:min-content;padding:0;display:flex;position:relative;overflow:visible}.framer-gsaUt .framer-1trsl3j{flex-flow:row;flex:none;place-content:flex-start center;align-items:flex-start;gap:2px;width:100%;height:min-content;padding:0;display:flex;position:relative;overflow:hidden}.framer-gsaUt .framer-2q2ob6,.framer-gsaUt .framer-5sjfba,.framer-gsaUt .framer-1vabhuh,.framer-gsaUt .framer-1ey6h1w,.framer-gsaUt .framer-1nh64bn,.framer-gsaUt .framer-blc66a,.framer-gsaUt .framer-rjtt6l,.framer-gsaUt .framer-1rkk247,.framer-gsaUt .framer-f24tdi,.framer-gsaUt .framer-wj5pfu,.framer-gsaUt .framer-sr9lsx,.framer-gsaUt .framer-1rrc954,.framer-gsaUt .framer-49bokh,.framer-gsaUt .framer-fzdhe4,.framer-gsaUt .framer-iy7jbm,.framer-gsaUt .framer-1xv6c5q,.framer-gsaUt .framer-upru9g,.framer-gsaUt .framer-v23f8c,.framer-gsaUt .framer-1xd7eva,.framer-gsaUt .framer-d7m5g1,.framer-gsaUt .framer-uauzn0,.framer-gsaUt .framer-1ompm7r,.framer-gsaUt .framer-1vun9we,.framer-gsaUt .framer-1wff4kw,.framer-gsaUt .framer-km08h6,.framer-gsaUt .framer-1w9a6k5,.framer-gsaUt .framer-1oih1cv{flex-flow:row;flex:none;place-content:center;align-items:center;gap:2px;width:20px;height:23px;padding:8px;display:flex;position:relative;overflow:visible}.framer-gsaUt .framer-x5iu37,.framer-gsaUt .framer-1kd0oec,.framer-gsaUt .framer-1em0dv3,.framer-gsaUt .framer-a8twu8{cursor:pointer;white-space:pre;flex:none;width:auto;height:auto;position:relative}.framer-gsaUt .framer-jyh1fd,.framer-gsaUt .framer-4slaus,.framer-gsaUt .framer-isz29y{flex-flow:row;flex:none;place-content:center;align-items:center;gap:2px;width:100%;height:min-content;padding:0;display:flex;position:relative;overflow:hidden}.framer-gsaUt .framer-5vn1c1,.framer-gsaUt .framer-153x9oi,.framer-gsaUt .framer-cia8m5{flex-flow:row;flex:1 0 0;place-content:center;align-items:center;gap:2px;width:1px;height:23px;padding:8px;display:flex;position:relative;overflow:visible}.framer-gsaUt .framer-1c74299,.framer-gsaUt .framer-eii7ng{flex-flow:row;flex:none;place-content:center;align-items:center;gap:2px;width:38px;height:23px;padding:8px;display:flex;position:relative;overflow:visible}.framer-gsaUt .framer-1i2k8pn{z-index:1;flex-flow:column;flex:none;place-content:flex-end center;align-items:flex-end;gap:10px;width:92%;height:min-content;padding:0;display:flex;position:absolute;bottom:-350px;left:49%;overflow:visible}.framer-gsaUt .framer-1bduaaq{flex-flow:row;flex:none;place-content:center flex-start;align-items:center;gap:6px;width:100%;height:min-content;padding:0;display:flex;position:relative;overflow:visible}.framer-gsaUt .framer-1fc6qsc{width:10px;height:10px;position:relative}.framer-gsaUt .framer-s7zh84{width:8px;height:8px;position:absolute;top:0;left:0}.framer-gsaUt .framer-ne0er6{width:4px;height:4px;position:absolute;top:6px;left:6px}.framer-gsaUt .framer-1tkktqy{white-space:pre-wrap;word-break:break-word;word-wrap:break-word;flex:1 0 0;width:1px;height:auto;position:relative}.framer-gsaUt .framer-621tpg,.framer-gsaUt .framer-jgwahn{height:min-content;overflow:var(--overflow-clip-fallback,clip);will-change:var(--framer-will-change-override,transform);flex-flow:row;flex:none;place-content:center flex-end;align-items:center;gap:0;width:min-content;padding:6px 12px;display:flex;position:relative}.framer-gsaUt .framer-veefto,.framer-gsaUt .framer-1rmp8fl{white-space:pre-wrap;word-break:break-word;word-wrap:break-word;flex:none;width:108px;height:auto;position:relative}.framer-gsaUt .framer-wzcoiz{z-index:1;flex-flow:column;flex:none;place-content:flex-end center;align-items:flex-end;gap:15px;width:245px;height:390px;padding:11px 0 0;display:flex;position:absolute;bottom:-350px;left:calc(49.8978% - 122.25px);overflow:visible}.framer-gsaUt .framer-1rz2aga{white-space:pre-wrap;word-break:break-word;word-wrap:break-word;flex:none;width:197px;height:auto;position:relative}.framer-gsaUt .framer-1rhm25w{flex:none;width:197px;height:193px;position:relative;overflow:visible}.framer-gsaUt .framer-cgh6ka{aspect-ratio:.859756;height:var(--framer-aspect-ratio-supported,233px);z-index:1;flex:none;width:100%;position:absolute;bottom:0;left:50%;overflow:visible}.framer-gsaUt .framer-kav5rn{z-index:1;flex:none;width:238px;height:420px;position:absolute;bottom:-450px;left:calc(50% - 119px);overflow:visible}.framer-gsaUt .framer-1v64ky9{z-index:1;flex:none;width:100px;height:5px;position:absolute;bottom:20px;left:calc(50% - 50px);overflow:visible}.framer-gsaUt.framer-v-1wq8008 .framer-35wjeg{height:var(--framer-aspect-ratio-supported,427px);width:98%;padding:50px 15px 0;top:50%;left:50%}.framer-gsaUt.framer-v-1wq8008 .framer-qhok3u{z-index:1;flex:none;order:1;height:288px;position:absolute;top:-350px;left:50%}.framer-gsaUt.framer-v-1wq8008 .framer-v5nq55{overflow:var(--overflow-clip-fallback,clip);will-change:var(--framer-will-change-override,transform);z-index:2;order:2;justify-content:flex-end;width:95%;position:absolute;bottom:-350px;left:50%}.framer-gsaUt.framer-v-1wq8008 .framer-1gewe94,.framer-gsaUt.framer-v-1wq8008 .framer-10elbj2,.framer-gsaUt.framer-v-1wq8008 .framer-1bduaaq,.framer-gsaUt.framer-v-17z4dit .framer-1gewe94,.framer-gsaUt.framer-v-17z4dit .framer-10elbj2,.framer-gsaUt.framer-v-hl1p7c .framer-1gewe94,.framer-gsaUt.framer-v-hl1p7c .framer-10elbj2,.framer-gsaUt.framer-v-1ublhti .framer-1gewe94,.framer-gsaUt.framer-v-1ublhti .framer-10elbj2{order:0}.framer-gsaUt.framer-v-1wq8008 .framer-lieec9,.framer-gsaUt.framer-v-1wq8008 .framer-621tpg,.framer-gsaUt.framer-v-17z4dit .framer-lieec9,.framer-gsaUt.framer-v-hl1p7c .framer-lieec9,.framer-gsaUt.framer-v-1ublhti .framer-lieec9{order:1}.framer-gsaUt.framer-v-1wq8008 .framer-1jtr28b,.framer-gsaUt.framer-v-17z4dit .framer-1jtr28b,.framer-gsaUt.framer-v-hl1p7c .framer-1jtr28b,.framer-gsaUt.framer-v-1ublhti .framer-1jtr28b{order:4;width:95%;position:absolute;bottom:-350px;left:50%}.framer-gsaUt.framer-v-1wq8008 .framer-1i2k8pn{bottom:unset;left:unset;order:3;width:100%;position:relative}.framer-gsaUt.framer-v-17z4dit .framer-35wjeg,.framer-gsaUt.framer-v-hl1p7c .framer-35wjeg,.framer-gsaUt.framer-v-1ublhti .framer-35wjeg{height:var(--framer-aspect-ratio-supported,427px);bottom:20px;left:50%;top:unset;width:98%;padding:50px 15px 0}.framer-gsaUt.framer-v-17z4dit .framer-qhok3u,.framer-gsaUt.framer-v-hl1p7c .framer-qhok3u,.framer-gsaUt.framer-v-1ublhti .framer-qhok3u{z-index:1;flex:none;order:2;height:288px;position:absolute;top:-350px;left:50%}.framer-gsaUt.framer-v-17z4dit .framer-v5nq55,.framer-gsaUt.framer-v-hl1p7c .framer-v5nq55,.framer-gsaUt.framer-v-1ublhti .framer-v5nq55{overflow:var(--overflow-clip-fallback,clip);will-change:var(--framer-will-change-override,transform);z-index:2;order:3;justify-content:flex-end;width:95%;position:absolute;bottom:-350px;left:50%}.framer-gsaUt.framer-v-17z4dit .framer-1i2k8pn,.framer-gsaUt.framer-v-hl1p7c .framer-1i2k8pn,.framer-gsaUt.framer-v-1ublhti .framer-1i2k8pn{bottom:unset;left:unset;order:0;width:104%;position:relative}.framer-gsaUt.framer-v-17z4dit .framer-wzcoiz,.framer-gsaUt.framer-v-hl1p7c .framer-wzcoiz,.framer-gsaUt.framer-v-1ublhti .framer-wzcoiz{bottom:unset;height:min-content;left:unset;order:1;width:100%;position:relative}.framer-gsaUt.framer-v-17z4dit .framer-1rz2aga,.framer-gsaUt.framer-v-hl1p7c .framer-1rz2aga,.framer-gsaUt.framer-v-1ublhti .framer-1rz2aga{order:1;width:100%}.framer-gsaUt.framer-v-17z4dit .framer-1rhm25w{order:2;width:100%;height:241px}.framer-gsaUt.framer-v-hl1p7c .framer-1rhm25w,.framer-gsaUt.framer-v-1ublhti .framer-1rhm25w{order:2;width:100%;height:auto}.framer-gsaUt.framer-v-hl1p7c .framer-kav5rn{width:255px;bottom:-146px;left:calc(50% - 127.5px)}.framer-gsaUt.framer-v-1ublhti .framer-kav5rn{width:255px;bottom:5px;left:calc(50% - 127.5px)}.framer-gsaUt[data-border=true]:after,.framer-gsaUt [data-border=true]:after{content:"";border-width:var(--border-top-width,0)var(--border-right-width,0)var(--border-bottom-width,0)var(--border-left-width,0);border-color:var(--border-color,none);border-style:var(--border-style,none);box-sizing:border-box;border-radius:inherit;corner-shape:inherit;pointer-events:none;width:100%;height:100%;position:absolute;top:0;left:0}@supports (aspect-ratio:1){body{--framer-aspect-ratio-supported:auto}}.framer-D9WM7.framer-1ca0v79,.framer-D9WM7 .framer-1ca0v79{display:block}.framer-D9WM7.framer-107www1{flex-flow:column;place-content:center;align-items:center;gap:0;width:390px;height:min-content;padding:0;display:flex;position:relative;overflow:visible}.framer-D9WM7 .framer-1s1pmfw{flex-flow:column;flex:none;place-content:center;align-items:center;gap:0;width:100%;height:min-content;padding:0 0 15px;display:flex;position:relative;overflow:visible}.framer-D9WM7 .framer-19wni9f,.framer-D9WM7 .framer-16kloex{--framer-text-wrap:balance;pointer-events:auto;white-space:pre-wrap;word-break:break-word;word-wrap:break-word;z-index:1;flex:none;width:100%;height:auto;position:relative}.framer-D9WM7 .framer-3py1uu,.framer-D9WM7 .framer-u4tl94,.framer-D9WM7 .framer-2wu1t1,.framer-D9WM7 .framer-1ecd5g3{pointer-events:auto;white-space:pre;z-index:1;flex:none;width:auto;height:auto;position:relative}.framer-D9WM7 .framer-1pr8kj8{flex-flow:row;flex:none;place-content:center flex-end;align-items:center;gap:10px;width:100%;height:min-content;padding:0;display:flex;position:relative;overflow:visible}.framer-D9WM7 .framer-6s7iuj{pointer-events:auto;white-space:pre-wrap;word-break:break-word;word-wrap:break-word;z-index:1;flex:1 0 0;width:1px;height:auto;position:relative}.framer-D9WM7 .framer-10tz0qi-container{flex:1 0 0;width:1px;height:auto;position:relative}.framer-D9WM7 .framer-yoo8mf{height:min-content;overflow:var(--overflow-clip-fallback,clip);flex-flow:column;flex:none;place-content:center;align-items:center;gap:10px;width:min-content;padding:0;display:flex;position:relative}.framer-D9WM7 .framer-q4ptpv{z-index:3;flex-flow:row;flex:none;place-content:center;align-items:center;gap:0;width:min-content;height:min-content;padding:0;display:flex;position:relative;overflow:visible}.framer-D9WM7 .framer-97qxf7{height:min-content;overflow:var(--overflow-clip-fallback,clip);will-change:var(--framer-will-change-override,transform);flex-flow:row;flex:none;place-content:center;align-items:center;gap:10px;width:min-content;padding:0;display:flex;position:relative}.framer-D9WM7 .framer-1os3dvb{-webkit-user-select:none;user-select:none;aspect-ratio:.486667;height:var(--framer-aspect-ratio-supported,551px);pointer-events:none;z-index:3;flex:none;width:278px;position:relative;overflow:visible}.framer-D9WM7 .framer-1klizye{aspect-ratio:.46884;height:100%;width:var(--framer-aspect-ratio-supported,94px);z-index:1;flex-flow:column;flex:none;place-content:center flex-start;align-items:center;gap:10px;padding:0;display:flex;position:absolute;top:50%;left:50%;overflow:visible}.framer-D9WM7 .framer-12539po{flex-flow:column;flex:1 0 0;place-content:center;align-items:center;gap:20px;width:min-content;height:1px;padding:95px 0;display:flex;position:relative;overflow:visible}.framer-D9WM7 .framer-jikesk{flex-flow:row;flex:none;place-content:center;align-items:center;gap:10px;width:min-content;height:min-content;padding:0;display:flex;position:relative;overflow:hidden}.framer-D9WM7 .framer-1yxz091{aspect-ratio:1;height:var(--framer-aspect-ratio-supported,30px);will-change:var(--framer-will-change-override,transform);z-index:1;flex:none;width:40px;position:absolute;top:50%;left:50%;overflow:hidden}.framer-D9WM7 .framer-1cftk94{aspect-ratio:1;height:var(--framer-aspect-ratio-supported,48px);will-change:var(--framer-will-change-override,transform);flex:none;gap:10px;width:58px;position:relative;overflow:hidden}.framer-D9WM7 .framer-1g0rxkr{flex-flow:column;flex:none;place-content:center;align-items:center;gap:5px;width:250px;height:min-content;padding:0;display:flex;position:relative;overflow:visible}.framer-D9WM7 .framer-dv8bw,.framer-D9WM7 .framer-615tp2,.framer-D9WM7 .framer-1j20hyg,.framer-D9WM7 .framer-1gtdjvs,.framer-D9WM7 .framer-1vbn1l9,.framer-D9WM7 .framer-67lacp,.framer-D9WM7 .framer-it7q3t,.framer-D9WM7 .framer-1l7f9wv,.framer-D9WM7 .framer-86stmr,.framer-D9WM7 .framer-ru0jjn,.framer-D9WM7 .framer-1763lpb,.framer-D9WM7 .framer-1as9fqs,.framer-D9WM7 .framer-dtgvr9,.framer-D9WM7 .framer-1wogxjx,.framer-D9WM7 .framer-zwofbe,.framer-D9WM7 .framer-15h4uea,.framer-D9WM7 .framer-mecbg6,.framer-D9WM7 .framer-aq98mo,.framer-D9WM7 .framer-25i051,.framer-D9WM7 .framer-1p2a8ku,.framer-D9WM7 .framer-13dgpke,.framer-D9WM7 .framer-9kf3y7,.framer-D9WM7 .framer-1mfkpea,.framer-D9WM7 .framer-1orkzdk,.framer-D9WM7 .framer-bacwcc,.framer-D9WM7 .framer-1pvsedt{white-space:pre;flex:none;width:auto;height:auto;position:relative}.framer-D9WM7 .framer-w5nfj2{flex-flow:column;flex:none;place-content:center;align-items:center;gap:10px;width:95%;height:min-content;padding:10px 0 0;display:flex;position:relative;overflow:visible}.framer-D9WM7 .framer-1sj5vwt{will-change:var(--framer-will-change-override,transform);flex-flow:column;flex:none;place-content:center;align-items:center;gap:10px;width:100%;height:min-content;padding:10px 8px;display:flex;position:relative;overflow:hidden}.framer-D9WM7 .framer-zmativ{flex-flow:row;flex:none;place-content:center space-between;align-items:center;width:100%;height:min-content;padding:0;display:flex;position:relative;overflow:hidden}.framer-D9WM7 .framer-1ofoyhz-container{flex:1 0 0;width:1px;height:10px;position:relative}.framer-D9WM7 .framer-191s2wx{flex-flow:row;flex:none;place-content:center;align-items:center;gap:2px;width:min-content;height:min-content;padding:2px;display:flex;position:relative;overflow:visible}.framer-D9WM7 .framer-16q91lv-container,.framer-D9WM7 .framer-1e3pma3-container,.framer-D9WM7 .framer-1acztiv-container{flex:none;width:12px;height:12px;position:relative}.framer-D9WM7 .framer-1txgwtw{flex-flow:row;flex:none;place-content:flex-start;align-items:flex-start;gap:3px;width:100%;height:min-content;padding:0;display:flex;position:relative;overflow:hidden}.framer-D9WM7 .framer-1u6idj2,.framer-D9WM7 .framer-1qbzcu0{flex-flow:row;flex:none;place-content:center;align-items:center;gap:2px;width:min-content;height:min-content;padding:3px 8px 3px 5px;display:flex;position:relative;overflow:visible}.framer-D9WM7 .framer-1g6qq11{height:min-content;overflow:var(--overflow-clip-fallback,clip);will-change:var(--framer-will-change-override,transform);z-index:2;flex-flow:column;flex:none;place-content:center flex-end;align-items:center;gap:15px;width:100%;padding:10px 5px 35px;display:flex;position:relative}.framer-D9WM7 .framer-84bfg5{flex-flow:column;flex:none;place-content:center;align-items:center;gap:2px;width:100%;height:min-content;padding:0;display:flex;position:relative;overflow:visible}.framer-D9WM7 .framer-10z7rcr{flex-flow:row;flex:none;place-content:flex-start center;align-items:flex-start;gap:2px;width:100%;height:min-content;padding:0;display:flex;position:relative;overflow:hidden}.framer-D9WM7 .framer-1vngbaq,.framer-D9WM7 .framer-1o7ay8a,.framer-D9WM7 .framer-1oewbup,.framer-D9WM7 .framer-kf9s97,.framer-D9WM7 .framer-17aotxe,.framer-D9WM7 .framer-110hxw5,.framer-D9WM7 .framer-vfoc46,.framer-D9WM7 .framer-19j46vs,.framer-D9WM7 .framer-76wwej,.framer-D9WM7 .framer-jykut8,.framer-D9WM7 .framer-qyoqie,.framer-D9WM7 .framer-tu2uea,.framer-D9WM7 .framer-8weg6r,.framer-D9WM7 .framer-1d5w7hd,.framer-D9WM7 .framer-19wwt41,.framer-D9WM7 .framer-1yq129b,.framer-D9WM7 .framer-32v5yq,.framer-D9WM7 .framer-12vdsxz,.framer-D9WM7 .framer-bx6lsb,.framer-D9WM7 .framer-qerwl6,.framer-D9WM7 .framer-1351ifu,.framer-D9WM7 .framer-b0w851,.framer-D9WM7 .framer-1fm3vll,.framer-D9WM7 .framer-559ewp,.framer-D9WM7 .framer-1pmriqo,.framer-D9WM7 .framer-1g1ou3i,.framer-D9WM7 .framer-1s5vwlf{flex-flow:row;flex:none;place-content:center;align-items:center;gap:2px;width:20px;height:23px;padding:8px;display:flex;position:relative;overflow:visible}.framer-D9WM7 .framer-ef57x,.framer-D9WM7 .framer-ppp1bp,.framer-D9WM7 .framer-112ggr6,.framer-D9WM7 .framer-1c2p7x3{cursor:pointer;white-space:pre;flex:none;width:auto;height:auto;position:relative}.framer-D9WM7 .framer-14xrtjw,.framer-D9WM7 .framer-1tppagm,.framer-D9WM7 .framer-ik51js{flex-flow:row;flex:none;place-content:center;align-items:center;gap:2px;width:100%;height:min-content;padding:0;display:flex;position:relative;overflow:hidden}.framer-D9WM7 .framer-1rkvoaj,.framer-D9WM7 .framer-th09hc,.framer-D9WM7 .framer-nzvupa{flex-flow:row;flex:1 0 0;place-content:center;align-items:center;gap:2px;width:1px;height:23px;padding:8px;display:flex;position:relative;overflow:visible}.framer-D9WM7 .framer-9a90mr,.framer-D9WM7 .framer-1y40fwj{flex-flow:row;flex:none;place-content:center;align-items:center;gap:2px;width:38px;height:23px;padding:8px;display:flex;position:relative;overflow:visible}.framer-D9WM7 .framer-1ll1kxy{z-index:1;flex-flow:column;flex:none;place-content:flex-end center;align-items:flex-end;gap:10px;width:92%;height:min-content;padding:0;display:flex;position:absolute;bottom:-350px;left:49%;overflow:visible}.framer-D9WM7 .framer-1frn3by{flex-flow:row;flex:none;place-content:center flex-start;align-items:center;gap:6px;width:100%;height:min-content;padding:0;display:flex;position:relative;overflow:visible}.framer-D9WM7 .framer-28dibq{width:10px;height:10px;position:relative}.framer-D9WM7 .framer-epq9cs{width:8px;height:8px;position:absolute;top:0;left:0}.framer-D9WM7 .framer-1xnm3wi{width:4px;height:4px;position:absolute;top:6px;left:6px}.framer-D9WM7 .framer-9dtmk{white-space:pre-wrap;word-break:break-word;word-wrap:break-word;flex:1 0 0;width:1px;height:auto;position:relative}.framer-D9WM7 .framer-hkxxx,.framer-D9WM7 .framer-1bxmng0{height:min-content;overflow:var(--overflow-clip-fallback,clip);will-change:var(--framer-will-change-override,transform);flex-flow:row;flex:none;place-content:center flex-end;align-items:center;gap:0;width:min-content;padding:6px 12px;display:flex;position:relative}.framer-D9WM7 .framer-1hsiepm,.framer-D9WM7 .framer-txbvmz{white-space:pre-wrap;word-break:break-word;word-wrap:break-word;flex:none;width:108px;height:auto;position:relative}.framer-D9WM7 .framer-11mdwn4{z-index:1;flex-flow:column;flex:none;place-content:flex-end center;align-items:flex-end;gap:15px;width:245px;height:390px;padding:11px 0 0;display:flex;position:absolute;bottom:-350px;left:calc(49.8978% - 122.25px);overflow:visible}.framer-D9WM7 .framer-1n795lm{white-space:pre-wrap;word-break:break-word;word-wrap:break-word;flex:none;width:197px;height:auto;position:relative}.framer-D9WM7 .framer-e2aoz6{flex:none;width:197px;height:193px;position:relative;overflow:visible}.framer-D9WM7 .framer-4ylyjt{aspect-ratio:.859756;height:var(--framer-aspect-ratio-supported,233px);z-index:1;flex:none;width:100%;position:absolute;bottom:0;left:50%;overflow:visible}.framer-D9WM7 .framer-1h8cl86{z-index:1;flex:none;width:238px;height:420px;position:absolute;bottom:-450px;left:calc(50% - 119px);overflow:visible}.framer-D9WM7 .framer-1xcmpyu{z-index:1;flex:none;width:100px;height:5px;position:absolute;bottom:20px;left:calc(50% - 50px);overflow:visible}.framer-D9WM7 .framer-bzt6sc{flex-flow:column;flex:none;place-content:center;align-items:center;gap:10px;width:min-content;height:min-content;padding:15px;display:flex;position:relative;overflow:visible}.framer-D9WM7 .framer-1109136{flex-flow:row;flex:none;place-content:center;align-items:center;gap:0;width:min-content;height:min-content;padding:2px;display:flex;position:relative;overflow:visible}.framer-D9WM7 .framer-1huxp23,.framer-D9WM7 .framer-16bqvkj,.framer-D9WM7 .framer-129okcp{cursor:pointer;height:44px;overflow:var(--overflow-clip-fallback,clip);will-change:var(--framer-will-change-override,transform);flex-flow:row;flex:none;place-content:center;align-items:center;gap:10px;width:64px;padding:4px 12px;display:flex;position:relative}.framer-D9WM7 .framer-nxrld5{flex-flow:column;flex:none;place-content:center;align-items:center;gap:10px;width:100%;max-width:500px;height:min-content;padding:15px;display:flex;position:relative;overflow:visible}.framer-D9WM7 .framer-1wvuy7t{pointer-events:auto;white-space:pre-wrap;word-break:break-word;word-wrap:break-word;z-index:1;flex:none;width:100%;height:auto;position:relative}.framer-D9WM7 .framer-i9i67{z-index:1;flex:none;width:260px;height:300px;position:absolute;top:80px;left:calc(50% - 130px);overflow:hidden}.framer-D9WM7.framer-v-1kh7b5d .framer-q4ptpv{height:450px}.framer-D9WM7[data-border=true]:after,.framer-D9WM7 [data-border=true]:after{content:"";border-width:var(--border-top-width,0)var(--border-right-width,0)var(--border-bottom-width,0)var(--border-left-width,0);border-color:var(--border-color,none);border-style:var(--border-style,none);box-sizing:border-box;border-radius:inherit;corner-shape:inherit;pointer-events:none;width:100%;height:100%;position:absolute;top:0;left:0}@supports (aspect-ratio:1){body{--framer-aspect-ratio-supported:auto}}.framer-4L7LF.framer-1ttnvn8,.framer-4L7LF .framer-1ttnvn8{display:block}.framer-4L7LF.framer-1ot3ljq{flex-flow:column;place-content:center;align-items:center;gap:0;width:390px;height:min-content;padding:0;display:flex;position:relative;overflow:visible}.framer-4L7LF .framer-1n3z96n{flex-flow:column;flex:none;place-content:center;align-items:center;gap:0;width:100%;height:min-content;padding:0 0 5px;display:flex;position:relative;overflow:visible}.framer-4L7LF .framer-1vdtosb{--framer-text-wrap:balance;pointer-events:auto;white-space:pre-wrap;word-break:break-word;word-wrap:break-word;z-index:1;flex:none;width:100%;height:auto;position:relative}.framer-4L7LF .framer-4hsdne,.framer-4L7LF .framer-in1vqx,.framer-4L7LF .framer-cyx8rl,.framer-4L7LF .framer-1e0edb7{pointer-events:auto;white-space:pre;z-index:1;flex:none;width:auto;height:auto;position:relative}.framer-4L7LF .framer-1a44v30{flex-flow:row;flex:none;place-content:center flex-end;align-items:center;gap:10px;width:100%;height:min-content;padding:0;display:flex;position:relative;overflow:visible}.framer-4L7LF .framer-1d01mz1{pointer-events:auto;white-space:pre-wrap;word-break:break-word;word-wrap:break-word;z-index:1;flex:1 0 0;width:1px;height:auto;position:relative}.framer-4L7LF .framer-ghv4hs-container{flex:1 0 0;width:1px;height:30px;position:relative}.framer-4L7LF .framer-1rxpwxq{height:385px;overflow:var(--overflow-clip-fallback,clip);flex-flow:column;flex:none;place-content:center;align-items:center;gap:10px;width:min-content;padding:0;display:flex;position:relative}.framer-4L7LF .framer-i748o1{z-index:3;flex-flow:row;flex:none;place-content:center;align-items:center;gap:0;width:min-content;min-width:258px;height:540px;padding:0;display:flex;position:relative;overflow:visible}.framer-4L7LF .framer-1cu92d{flex-flow:row;flex:none;place-content:center;align-items:center;gap:10px;width:min-content;height:min-content;padding:0;display:flex;position:absolute;top:50%;right:0;overflow:visible}.framer-4L7LF .framer-101cy93-container{z-index:2;flex:none;width:258px;height:auto;position:relative}.framer-4L7LF .framer-fk0jvi{flex-flow:column;flex:none;place-content:center;align-items:center;gap:5px;width:min-content;height:min-content;padding:15px;display:flex;position:relative;overflow:visible}.framer-4L7LF .framer-1ibguym{pointer-events:auto;white-space:pre-wrap;word-break:break-word;word-wrap:break-word;z-index:1;flex:none;align-self:stretch;width:auto;height:auto;position:relative}.framer-4L7LF .framer-48s5lf{flex-flow:row;flex:none;place-content:center;align-items:center;gap:0;width:min-content;height:min-content;padding:2px;display:flex;position:relative;overflow:visible}.framer-4L7LF .framer-1rzp6n8,.framer-4L7LF .framer-7w6vpz,.framer-4L7LF .framer-10vz1kx{cursor:pointer;height:44px;overflow:var(--overflow-clip-fallback,clip);will-change:var(--framer-will-change-override,transform);flex-flow:row;flex:none;place-content:center;align-items:center;gap:10px;width:64px;padding:4px 12px;display:flex;position:relative}.framer-4L7LF .framer-1db4v2v{mix-blend-mode:exclusion;z-index:1;flex-flow:column;flex:none;place-content:flex-start center;align-items:flex-start;gap:12px;width:55px;height:min-content;padding:0;display:flex;position:absolute;top:8px;right:-36px;overflow:visible}.framer-4L7LF .framer-xfituz{flex:none;width:53px;height:26px;position:relative}.framer-4L7LF .framer-et5qz7{z-index:1;flex:none;width:260px;height:300px;position:absolute;top:80px;left:calc(50% - 130px);overflow:hidden}@supports (aspect-ratio:1){body{--framer-aspect-ratio-supported:auto}}.framer-8SG4P.framer-14x6r6p,.framer-8SG4P .framer-14x6r6p{display:block}.framer-8SG4P.framer-20d8c3{cursor:pointer;flex-flow:row;place-content:center flex-start;align-items:center;gap:20px;width:min-content;height:min-content;padding:0;display:flex;position:relative;overflow:visible}.framer-8SG4P .framer-o6p5ch{flex:none;width:40px;height:40px;position:relative;overflow:visible}.framer-8SG4P .framer-1r37lje{flex-flow:row;flex:none;place-content:center;align-items:center;gap:10px;width:min-content;height:min-content;padding:0;display:flex;position:absolute;top:0;left:50%;overflow:visible}.framer-8SG4P .framer-1wdjn3x{aspect-ratio:1;height:var(--framer-aspect-ratio-supported,40px);flex:none;width:40px;position:relative;overflow:visible}.framer-8SG4P .framer-18xfglo,.framer-8SG4P .framer-13aeuie,.framer-8SG4P .framer-943fw6,.framer-8SG4P .framer-1ezbowm,.framer-8SG4P .framer-26cqsr,.framer-8SG4P .framer-65zikl{aspect-ratio:1;width:var(--framer-aspect-ratio-supported,40px);flex-flow:row;flex:none;place-content:center;align-items:center;gap:10px;padding:5px;display:flex;position:absolute;top:0;bottom:0;left:50%;overflow:visible}.framer-8SG4P .framer-1701sls,.framer-8SG4P .framer-1a6n1bf{aspect-ratio:1;height:var(--framer-aspect-ratio-supported,30px);flex:1 0 0;width:1px;position:relative;overflow:visible}.framer-8SG4P .framer-jyw6jb{flex:1 0 0;width:1px;height:100%;position:relative;overflow:visible}.framer-8SG4P .framer-ubxg8p{aspect-ratio:1.04065;height:var(--framer-aspect-ratio-supported,29px);z-index:1;flex:1 0 0;width:1px;position:relative;overflow:visible}.framer-8SG4P .framer-xqzn8q{aspect-ratio:1;height:var(--framer-aspect-ratio-supported,19px);flex:none;width:19px;position:relative;overflow:visible}.framer-8SG4P .framer-q6usnl{aspect-ratio:1;height:100%;width:var(--framer-aspect-ratio-supported,30px);flex:none;position:relative;overflow:visible}.framer-8SG4P .framer-1dwbzg8{flex:none;gap:10px;width:200px;height:44px;position:relative;overflow:visible}.framer-8SG4P .framer-1p8pqob,.framer-8SG4P .framer-1nuyo58,.framer-8SG4P .framer-30j20w,.framer-8SG4P .framer-14l1aih,.framer-8SG4P .framer-1xwvgkx,.framer-8SG4P .framer-1x4s67y,.framer-8SG4P .framer-m6ao2u{pointer-events:none;white-space:pre;z-index:1;flex:none;width:auto;height:auto;position:absolute;top:50%;left:0}.framer-8SG4P.framer-v-1es74p2.framer-20d8c3,.framer-8SG4P.framer-v-molzft.framer-20d8c3,.framer-8SG4P.framer-v-1nui4bn.framer-20d8c3,.framer-8SG4P.framer-v-1f6ehul.framer-20d8c3,.framer-8SG4P.framer-v-1fvaqxg.framer-20d8c3,.framer-8SG4P.framer-v-1moh76q.framer-20d8c3,.framer-8SG4P.framer-v-rvjvn.framer-20d8c3{cursor:unset;gap:10px}.framer-8SG4P.framer-v-1es74p2 .framer-o6p5ch,.framer-8SG4P.framer-v-molzft .framer-o6p5ch,.framer-8SG4P.framer-v-1nui4bn .framer-o6p5ch,.framer-8SG4P.framer-v-1f6ehul .framer-o6p5ch,.framer-8SG4P.framer-v-1fvaqxg .framer-o6p5ch,.framer-8SG4P.framer-v-1moh76q .framer-o6p5ch,.framer-8SG4P.framer-v-rvjvn .framer-o6p5ch{order:0}.framer-8SG4P.framer-v-1es74p2 .framer-1dwbzg8,.framer-8SG4P.framer-v-molzft .framer-1dwbzg8,.framer-8SG4P.framer-v-1nui4bn .framer-1dwbzg8,.framer-8SG4P.framer-v-1f6ehul .framer-1dwbzg8,.framer-8SG4P.framer-v-1fvaqxg .framer-1dwbzg8,.framer-8SG4P.framer-v-1moh76q .framer-1dwbzg8,.framer-8SG4P.framer-v-rvjvn .framer-1dwbzg8,.framer-8SG4P.framer-v-3baivz .framer-1dwbzg8,.framer-8SG4P.framer-v-tjdiz7 .framer-1dwbzg8,.framer-8SG4P.framer-v-ab8xrs .framer-1dwbzg8,.framer-8SG4P.framer-v-vr4gvs .framer-1dwbzg8,.framer-8SG4P.framer-v-1i804wt .framer-1dwbzg8,.framer-8SG4P.framer-v-16uokwf .framer-1dwbzg8,.framer-8SG4P.framer-v-1kvk6op .framer-1dwbzg8{order:1}.framer-8SG4P.framer-v-3baivz.framer-20d8c3,.framer-8SG4P.framer-v-tjdiz7.framer-20d8c3,.framer-8SG4P.framer-v-ab8xrs.framer-20d8c3,.framer-8SG4P.framer-v-vr4gvs.framer-20d8c3,.framer-8SG4P.framer-v-1i804wt.framer-20d8c3,.framer-8SG4P.framer-v-16uokwf.framer-20d8c3,.framer-8SG4P.framer-v-1kvk6op.framer-20d8c3{cursor:unset;gap:10px;width:180px}.framer-8SG4P.framer-v-3baivz .framer-o6p5ch{order:0;width:30px;height:30px}.framer-8SG4P.framer-v-3baivz .framer-1r37lje,.framer-8SG4P.framer-v-tjdiz7 .framer-1r37lje,.framer-8SG4P.framer-v-ab8xrs .framer-1r37lje,.framer-8SG4P.framer-v-vr4gvs .framer-1r37lje,.framer-8SG4P.framer-v-1i804wt .framer-1r37lje,.framer-8SG4P.framer-v-16uokwf .framer-1r37lje,.framer-8SG4P.framer-v-1kvk6op .framer-1r37lje{width:30px;height:30px;left:calc(50% - 15px)}.framer-8SG4P.framer-v-3baivz .framer-1wdjn3x{aspect-ratio:unset;width:30px;height:30px}.framer-8SG4P.framer-v-3baivz .framer-18xfglo,.framer-8SG4P.framer-v-3baivz .framer-13aeuie,.framer-8SG4P.framer-v-3baivz .framer-943fw6,.framer-8SG4P.framer-v-3baivz .framer-1ezbowm,.framer-8SG4P.framer-v-3baivz .framer-26cqsr,.framer-8SG4P.framer-v-3baivz .framer-65zikl,.framer-8SG4P.framer-v-tjdiz7 .framer-18xfglo,.framer-8SG4P.framer-v-tjdiz7 .framer-13aeuie,.framer-8SG4P.framer-v-tjdiz7 .framer-943fw6,.framer-8SG4P.framer-v-tjdiz7 .framer-1ezbowm,.framer-8SG4P.framer-v-tjdiz7 .framer-26cqsr,.framer-8SG4P.framer-v-tjdiz7 .framer-65zikl,.framer-8SG4P.framer-v-ab8xrs .framer-18xfglo,.framer-8SG4P.framer-v-ab8xrs .framer-13aeuie,.framer-8SG4P.framer-v-ab8xrs .framer-943fw6,.framer-8SG4P.framer-v-ab8xrs .framer-1ezbowm,.framer-8SG4P.framer-v-ab8xrs .framer-26cqsr,.framer-8SG4P.framer-v-ab8xrs .framer-65zikl,.framer-8SG4P.framer-v-vr4gvs .framer-18xfglo,.framer-8SG4P.framer-v-vr4gvs .framer-13aeuie,.framer-8SG4P.framer-v-vr4gvs .framer-943fw6,.framer-8SG4P.framer-v-vr4gvs .framer-1ezbowm,.framer-8SG4P.framer-v-vr4gvs .framer-26cqsr,.framer-8SG4P.framer-v-vr4gvs .framer-65zikl,.framer-8SG4P.framer-v-1i804wt .framer-18xfglo,.framer-8SG4P.framer-v-1i804wt .framer-13aeuie,.framer-8SG4P.framer-v-1i804wt .framer-943fw6,.framer-8SG4P.framer-v-1i804wt .framer-1ezbowm,.framer-8SG4P.framer-v-1i804wt .framer-26cqsr,.framer-8SG4P.framer-v-1i804wt .framer-65zikl,.framer-8SG4P.framer-v-16uokwf .framer-18xfglo,.framer-8SG4P.framer-v-16uokwf .framer-13aeuie,.framer-8SG4P.framer-v-16uokwf .framer-943fw6,.framer-8SG4P.framer-v-16uokwf .framer-1ezbowm,.framer-8SG4P.framer-v-16uokwf .framer-26cqsr,.framer-8SG4P.framer-v-16uokwf .framer-65zikl,.framer-8SG4P.framer-v-1kvk6op .framer-18xfglo,.framer-8SG4P.framer-v-1kvk6op .framer-13aeuie,.framer-8SG4P.framer-v-1kvk6op .framer-943fw6,.framer-8SG4P.framer-v-1kvk6op .framer-1ezbowm,.framer-8SG4P.framer-v-1kvk6op .framer-26cqsr,.framer-8SG4P.framer-v-1kvk6op .framer-65zikl{aspect-ratio:unset;width:30px;left:calc(50% - 15px)}.framer-8SG4P.framer-v-3baivz .framer-1701sls{aspect-ratio:unset;flex:none;width:20px;height:20px}.framer-8SG4P.framer-v-3baivz .framer-1a6n1bf,.framer-8SG4P.framer-v-tjdiz7 .framer-1701sls,.framer-8SG4P.framer-v-tjdiz7 .framer-1a6n1bf,.framer-8SG4P.framer-v-ab8xrs .framer-1701sls,.framer-8SG4P.framer-v-ab8xrs .framer-1a6n1bf,.framer-8SG4P.framer-v-vr4gvs .framer-1701sls,.framer-8SG4P.framer-v-vr4gvs .framer-1a6n1bf,.framer-8SG4P.framer-v-1i804wt .framer-1701sls,.framer-8SG4P.framer-v-1i804wt .framer-1a6n1bf,.framer-8SG4P.framer-v-16uokwf .framer-1701sls,.framer-8SG4P.framer-v-16uokwf .framer-1a6n1bf,.framer-8SG4P.framer-v-1kvk6op .framer-1701sls,.framer-8SG4P.framer-v-1kvk6op .framer-1a6n1bf{height:var(--framer-aspect-ratio-supported,20px)}.framer-8SG4P.framer-v-3baivz .framer-ubxg8p,.framer-8SG4P.framer-v-tjdiz7 .framer-ubxg8p,.framer-8SG4P.framer-v-ab8xrs .framer-ubxg8p,.framer-8SG4P.framer-v-vr4gvs .framer-ubxg8p,.framer-8SG4P.framer-v-1i804wt .framer-ubxg8p,.framer-8SG4P.framer-v-16uokwf .framer-ubxg8p,.framer-8SG4P.framer-v-1kvk6op .framer-ubxg8p{height:var(--framer-aspect-ratio-supported,19px)}.framer-8SG4P.framer-v-3baivz .framer-q6usnl,.framer-8SG4P.framer-v-tjdiz7 .framer-q6usnl,.framer-8SG4P.framer-v-ab8xrs .framer-q6usnl,.framer-8SG4P.framer-v-vr4gvs .framer-q6usnl,.framer-8SG4P.framer-v-1i804wt .framer-q6usnl,.framer-8SG4P.framer-v-16uokwf .framer-q6usnl,.framer-8SG4P.framer-v-1kvk6op .framer-q6usnl{width:var(--framer-aspect-ratio-supported,20px)}.framer-8SG4P.framer-v-tjdiz7 .framer-o6p5ch,.framer-8SG4P.framer-v-ab8xrs .framer-o6p5ch,.framer-8SG4P.framer-v-vr4gvs .framer-o6p5ch,.framer-8SG4P.framer-v-1i804wt .framer-o6p5ch,.framer-8SG4P.framer-v-16uokwf .framer-o6p5ch,.framer-8SG4P.framer-v-1kvk6op .framer-o6p5ch{aspect-ratio:1;height:var(--framer-aspect-ratio-supported,30px);order:0;width:30px}.framer-8SG4P[data-border=true]:after,.framer-8SG4P [data-border=true]:after{content:"";border-width:var(--border-top-width,0)var(--border-right-width,0)var(--border-bottom-width,0)var(--border-left-width,0);border-color:var(--border-color,none);border-style:var(--border-style,none);box-sizing:border-box;border-radius:inherit;corner-shape:inherit;pointer-events:none;width:100%;height:100%;position:absolute;top:0;left:0}@supports (aspect-ratio:1){body{--framer-aspect-ratio-supported:auto}}.framer-48OdZ.framer-vwk85k,.framer-48OdZ .framer-vwk85k{display:block}.framer-48OdZ.framer-19bnxou{height:min-content;overflow:var(--overflow-clip-fallback,clip);will-change:var(--framer-will-change-override,transform);flex-flow:row;place-content:center;align-items:center;gap:10px;width:min-content;padding:0;display:flex;position:relative}.framer-48OdZ .framer-1a6x00q{-webkit-user-select:none;user-select:none;aspect-ratio:.486667;height:var(--framer-aspect-ratio-supported,530px);pointer-events:none;z-index:3;flex:none;width:258px;position:relative;overflow:visible}.framer-48OdZ .framer-clxrda{aspect-ratio:.46884;height:var(--framer-aspect-ratio-supported,522px);z-index:1;flex-flow:column;flex:none;place-content:center flex-start;align-items:center;gap:10px;width:245px;padding:0;display:flex;position:absolute;top:50%;left:50%;overflow:visible}.framer-48OdZ .framer-rwjs6a{flex-flow:column;flex:1 0 0;place-content:center;align-items:center;gap:20px;width:min-content;height:1px;padding:95px 0;display:flex;position:relative;overflow:visible}.framer-48OdZ .framer-56q4wq{flex-flow:row;flex:none;place-content:center;align-items:center;gap:10px;width:min-content;height:min-content;padding:0;display:flex;position:relative;overflow:hidden}.framer-48OdZ .framer-1n7wmnk{aspect-ratio:1;height:var(--framer-aspect-ratio-supported,30px);will-change:var(--framer-will-change-override,transform);z-index:1;flex:none;width:40px;position:absolute;top:50%;left:50%;overflow:hidden}.framer-48OdZ .framer-1jznpsm{aspect-ratio:1;height:var(--framer-aspect-ratio-supported,48px);will-change:var(--framer-will-change-override,transform);flex:none;gap:10px;width:58px;position:relative;overflow:hidden}.framer-48OdZ .framer-1iz43mo{flex-flow:column;flex:none;place-content:center;align-items:center;gap:5px;width:250px;height:min-content;padding:0;display:flex;position:relative;overflow:visible}.framer-48OdZ .framer-1y5etzh,.framer-48OdZ .framer-1xibqvp,.framer-48OdZ .framer-3ac01r,.framer-48OdZ .framer-pdxpmn,.framer-48OdZ .framer-90togu,.framer-48OdZ .framer-xxm8j5,.framer-48OdZ .framer-xf0esn,.framer-48OdZ .framer-1kx1fhh,.framer-48OdZ .framer-lupfi3,.framer-48OdZ .framer-wn9ute,.framer-48OdZ .framer-gqngbm,.framer-48OdZ .framer-4zy9uy,.framer-48OdZ .framer-5ej4hs,.framer-48OdZ .framer-1fj3iub,.framer-48OdZ .framer-1w71lk4,.framer-48OdZ .framer-1p3wtmm,.framer-48OdZ .framer-xmy29i,.framer-48OdZ .framer-17elp3l,.framer-48OdZ .framer-1bsc5ff,.framer-48OdZ .framer-1hfrkdz,.framer-48OdZ .framer-1pyr3y6,.framer-48OdZ .framer-grh7w3,.framer-48OdZ .framer-1stfhal,.framer-48OdZ .framer-1hf8rxs,.framer-48OdZ .framer-7ysb6m,.framer-48OdZ .framer-hijr8i{white-space:pre;flex:none;width:auto;height:auto;position:relative}.framer-48OdZ .framer-1hbojuq{flex-flow:column;flex:none;place-content:center;align-items:center;gap:10px;width:97%;height:min-content;padding:10px 0 0;display:flex;position:relative;overflow:visible}.framer-48OdZ .framer-183otyi{will-change:var(--framer-will-change-override,transform);flex-flow:column;flex:none;place-content:center;align-items:center;gap:10px;width:100%;height:min-content;padding:10px 8px;display:flex;position:relative;overflow:hidden}.framer-48OdZ .framer-stb9qq{flex-flow:row;flex:none;place-content:center space-between;align-items:center;width:100%;height:min-content;padding:0;display:flex;position:relative;overflow:hidden}.framer-48OdZ .framer-1oxk49i-container{flex:1 0 0;width:1px;height:10px;position:relative}.framer-48OdZ .framer-4t6x2p{flex-flow:row;flex:none;place-content:center;align-items:center;gap:2px;width:min-content;height:min-content;padding:2px;display:flex;position:relative;overflow:visible}.framer-48OdZ .framer-1vq84rs-container,.framer-48OdZ .framer-dwyr3m-container,.framer-48OdZ .framer-1apyamz-container{flex:none;width:12px;height:12px;position:relative}.framer-48OdZ .framer-15thsls{flex-flow:row;flex:none;place-content:flex-start;align-items:flex-start;gap:3px;width:100%;height:min-content;padding:0;display:flex;position:relative;overflow:hidden}.framer-48OdZ .framer-1xvhx6w,.framer-48OdZ .framer-1pn9msh{flex-flow:row;flex:none;place-content:center;align-items:center;gap:2px;width:min-content;height:min-content;padding:3px 8px 3px 5px;display:flex;position:relative;overflow:visible}.framer-48OdZ .framer-1mojhqj{height:min-content;overflow:var(--overflow-clip-fallback,clip);will-change:var(--framer-will-change-override,transform);z-index:2;flex-flow:column;flex:none;place-content:center flex-end;align-items:center;gap:15px;width:100%;padding:10px 5px 35px;display:flex;position:relative}.framer-48OdZ .framer-h35yiq{flex-flow:column;flex:none;place-content:center;align-items:center;gap:2px;width:100%;height:min-content;padding:0;display:flex;position:relative;overflow:visible}.framer-48OdZ .framer-3ov1qr{flex-flow:row;flex:none;place-content:flex-start center;align-items:flex-start;gap:2px;width:100%;height:min-content;padding:0;display:flex;position:relative;overflow:hidden}.framer-48OdZ .framer-15rqg0l,.framer-48OdZ .framer-1xfsyd5,.framer-48OdZ .framer-k5p4ps,.framer-48OdZ .framer-1f6zxq0,.framer-48OdZ .framer-1vjpqpo,.framer-48OdZ .framer-9n0pnb,.framer-48OdZ .framer-1a419ym,.framer-48OdZ .framer-fxrfc8,.framer-48OdZ .framer-wrie9v,.framer-48OdZ .framer-ro4ggr,.framer-48OdZ .framer-1seowvb,.framer-48OdZ .framer-1aavnmh,.framer-48OdZ .framer-1e4zkju,.framer-48OdZ .framer-wr30vu,.framer-48OdZ .framer-16rggf0,.framer-48OdZ .framer-p95aks,.framer-48OdZ .framer-1gtnopj,.framer-48OdZ .framer-1mw8n98,.framer-48OdZ .framer-fvoxu8,.framer-48OdZ .framer-ldht8e,.framer-48OdZ .framer-14zqs0p,.framer-48OdZ .framer-1e9be2m,.framer-48OdZ .framer-1ag0t51,.framer-48OdZ .framer-22maqn,.framer-48OdZ .framer-qy7u49,.framer-48OdZ .framer-1sfko5g,.framer-48OdZ .framer-16wm22r{flex-flow:row;flex:none;place-content:center;align-items:center;gap:2px;width:20px;height:23px;padding:8px;display:flex;position:relative;overflow:visible}.framer-48OdZ .framer-asy0hp,.framer-48OdZ .framer-w99u8s,.framer-48OdZ .framer-13zcjff,.framer-48OdZ .framer-1d2xwrn{cursor:pointer;white-space:pre;flex:none;width:auto;height:auto;position:relative}.framer-48OdZ .framer-zbfiw8,.framer-48OdZ .framer-u7iglc,.framer-48OdZ .framer-mh26cl{flex-flow:row;flex:none;place-content:center;align-items:center;gap:2px;width:100%;height:min-content;padding:0;display:flex;position:relative;overflow:hidden}.framer-48OdZ .framer-opx8hx,.framer-48OdZ .framer-cpppt7,.framer-48OdZ .framer-1sl8s86{flex-flow:row;flex:1 0 0;place-content:center;align-items:center;gap:2px;width:1px;height:23px;padding:8px;display:flex;position:relative;overflow:visible}.framer-48OdZ .framer-oiontj,.framer-48OdZ .framer-l4uoi0{flex-flow:row;flex:none;place-content:center;align-items:center;gap:2px;width:38px;height:23px;padding:8px;display:flex;position:relative;overflow:visible}.framer-48OdZ .framer-s2umfl{z-index:1;flex-flow:column;flex:none;place-content:flex-end center;align-items:flex-end;gap:10px;width:92%;height:min-content;padding:0;display:flex;position:absolute;bottom:-350px;left:49%;overflow:visible}.framer-48OdZ .framer-xo7lpg{flex-flow:row;flex:none;place-content:center flex-start;align-items:center;gap:6px;width:100%;height:min-content;padding:0;display:flex;position:relative;overflow:visible}.framer-48OdZ .framer-164ogz0{width:10px;height:10px;position:relative}.framer-48OdZ .framer-1am9akh{width:8px;height:8px;position:absolute;top:0;left:0}.framer-48OdZ .framer-w4xx2t{width:4px;height:4px;position:absolute;top:6px;left:6px}.framer-48OdZ .framer-8y9coe{white-space:pre-wrap;word-break:break-word;word-wrap:break-word;flex:1 0 0;width:1px;height:auto;position:relative}.framer-48OdZ .framer-1bgconv,.framer-48OdZ .framer-18iscqw{height:min-content;overflow:var(--overflow-clip-fallback,clip);will-change:var(--framer-will-change-override,transform);flex-flow:row;flex:none;place-content:center flex-end;align-items:center;gap:0;width:min-content;padding:6px 12px;display:flex;position:relative}.framer-48OdZ .framer-2tpl94,.framer-48OdZ .framer-23cumn{white-space:pre-wrap;word-break:break-word;word-wrap:break-word;flex:none;width:108px;height:auto;position:relative}.framer-48OdZ .framer-ax5zgm{z-index:1;flex-flow:column;flex:none;place-content:flex-end center;align-items:flex-end;gap:15px;width:245px;height:390px;padding:11px 0 0;display:flex;position:absolute;bottom:-350px;left:calc(49.8978% - 122.25px);overflow:visible}.framer-48OdZ .framer-1fqidaf{white-space:pre-wrap;word-break:break-word;word-wrap:break-word;flex:none;width:197px;height:auto;position:relative}.framer-48OdZ .framer-kfw5ux{flex:none;width:197px;height:193px;position:relative;overflow:visible}.framer-48OdZ .framer-19fo3ay{aspect-ratio:.859756;height:var(--framer-aspect-ratio-supported,233px);z-index:1;flex:none;width:100%;position:absolute;bottom:0;left:50%;overflow:visible}.framer-48OdZ .framer-ljun94{z-index:1;flex:none;width:238px;height:420px;position:absolute;bottom:-450px;left:calc(50% - 119px);overflow:visible}.framer-48OdZ .framer-1c5uxbb{z-index:1;flex:none;width:100px;height:5px;position:absolute;bottom:20px;left:calc(50% - 50px);overflow:visible}.framer-48OdZ.framer-v-11tp68f .framer-clxrda{height:var(--framer-aspect-ratio-supported,427px);width:98%;padding:50px 15px 0;top:50%;left:50%}.framer-48OdZ.framer-v-11tp68f .framer-rwjs6a{z-index:1;flex:none;order:1;height:288px;position:absolute;top:-350px;left:50%}.framer-48OdZ.framer-v-11tp68f .framer-1hbojuq{overflow:var(--overflow-clip-fallback,clip);will-change:var(--framer-will-change-override,transform);z-index:2;order:2;justify-content:flex-end;width:95%;position:absolute;bottom:-350px;left:50%}.framer-48OdZ.framer-v-11tp68f .framer-183otyi,.framer-48OdZ.framer-v-11tp68f .framer-h35yiq,.framer-48OdZ.framer-v-11tp68f .framer-xo7lpg,.framer-48OdZ.framer-v-19472f9 .framer-183otyi,.framer-48OdZ.framer-v-19472f9 .framer-h35yiq,.framer-48OdZ.framer-v-5sqaya .framer-183otyi,.framer-48OdZ.framer-v-5sqaya .framer-h35yiq,.framer-48OdZ.framer-v-1jbveex .framer-183otyi,.framer-48OdZ.framer-v-1jbveex .framer-h35yiq{order:0}.framer-48OdZ.framer-v-11tp68f .framer-15thsls,.framer-48OdZ.framer-v-11tp68f .framer-1bgconv,.framer-48OdZ.framer-v-19472f9 .framer-15thsls,.framer-48OdZ.framer-v-5sqaya .framer-15thsls,.framer-48OdZ.framer-v-1jbveex .framer-15thsls{order:1}.framer-48OdZ.framer-v-11tp68f .framer-1mojhqj,.framer-48OdZ.framer-v-19472f9 .framer-1mojhqj,.framer-48OdZ.framer-v-5sqaya .framer-1mojhqj,.framer-48OdZ.framer-v-1jbveex .framer-1mojhqj{order:4;width:95%;position:absolute;bottom:-350px;left:50%}.framer-48OdZ.framer-v-11tp68f .framer-s2umfl{bottom:unset;left:unset;order:3;width:100%;position:relative}.framer-48OdZ.framer-v-11tp68f .framer-2tpl94,.framer-48OdZ.framer-v-19472f9 .framer-2tpl94,.framer-48OdZ.framer-v-5sqaya .framer-2tpl94,.framer-48OdZ.framer-v-1jbveex .framer-2tpl94{width:135px}.framer-48OdZ.framer-v-19472f9 .framer-clxrda,.framer-48OdZ.framer-v-5sqaya .framer-clxrda,.framer-48OdZ.framer-v-1jbveex .framer-clxrda{height:var(--framer-aspect-ratio-supported,427px);bottom:20px;left:50%;top:unset;width:98%;padding:50px 15px 0}.framer-48OdZ.framer-v-19472f9 .framer-rwjs6a,.framer-48OdZ.framer-v-5sqaya .framer-rwjs6a,.framer-48OdZ.framer-v-1jbveex .framer-rwjs6a{z-index:1;flex:none;order:2;height:288px;position:absolute;top:-350px;left:50%}.framer-48OdZ.framer-v-19472f9 .framer-1hbojuq,.framer-48OdZ.framer-v-5sqaya .framer-1hbojuq,.framer-48OdZ.framer-v-1jbveex .framer-1hbojuq{overflow:var(--overflow-clip-fallback,clip);will-change:var(--framer-will-change-override,transform);z-index:2;order:3;justify-content:flex-end;width:95%;position:absolute;bottom:-350px;left:50%}.framer-48OdZ.framer-v-19472f9 .framer-s2umfl,.framer-48OdZ.framer-v-5sqaya .framer-s2umfl,.framer-48OdZ.framer-v-1jbveex .framer-s2umfl{bottom:unset;left:unset;order:0;width:104%;position:relative}.framer-48OdZ.framer-v-19472f9 .framer-ax5zgm,.framer-48OdZ.framer-v-5sqaya .framer-ax5zgm,.framer-48OdZ.framer-v-1jbveex .framer-ax5zgm{bottom:unset;height:min-content;left:unset;order:1;width:100%;position:relative}.framer-48OdZ.framer-v-19472f9 .framer-1fqidaf,.framer-48OdZ.framer-v-5sqaya .framer-1fqidaf,.framer-48OdZ.framer-v-1jbveex .framer-1fqidaf{order:1;width:100%}.framer-48OdZ.framer-v-19472f9 .framer-kfw5ux,.framer-48OdZ.framer-v-5sqaya .framer-kfw5ux,.framer-48OdZ.framer-v-1jbveex .framer-kfw5ux{order:2;width:100%;height:auto}.framer-48OdZ.framer-v-5sqaya .framer-ljun94{bottom:-146px}.framer-48OdZ.framer-v-1jbveex .framer-ljun94{bottom:5px}.framer-48OdZ[data-border=true]:after,.framer-48OdZ [data-border=true]:after{content:"";border-width:var(--border-top-width,0)var(--border-right-width,0)var(--border-bottom-width,0)var(--border-left-width,0);border-color:var(--border-color,none);border-style:var(--border-style,none);box-sizing:border-box;border-radius:inherit;corner-shape:inherit;pointer-events:none;width:100%;height:100%;position:absolute;top:0;left:0}@supports (aspect-ratio:1){body{--framer-aspect-ratio-supported:auto}}.framer-Yg9Xz.framer-1nkeuh5,.framer-Yg9Xz .framer-1nkeuh5{display:block}.framer-Yg9Xz.framer-dd3ssu{flex-flow:row;place-content:center;align-items:center;gap:10px;width:490px;height:min-content;padding:0;display:flex;position:relative;overflow:visible}.framer-Yg9Xz .framer-a1jgor-container{flex:1 0 0;width:1px;height:auto;position:relative}.framer-Yg9Xz .framer-1vnnqlr-container{flex:1 0 0;align-self:stretch;width:1px;height:auto;position:relative}.framer-Yg9Xz .framer-16xmqra-container{flex:1 0 0;width:1px;height:444px;position:relative}.framer-Yg9Xz .framer-um4a6v-container{flex:none;width:auto;height:auto;position:relative}.framer-Yg9Xz.framer-v-1bkjhwq.framer-dd3ssu{height:287px}.framer-Yg9Xz.framer-v-1bkjhwq .framer-1vnnqlr-container{align-self:unset;height:100%}.framer-Yg9Xz.framer-v-1vv7baw.framer-dd3ssu{align-content:flex-start;align-items:flex-start}.framer-Yg9Xz.framer-v-f77ze.framer-dd3ssu{width:340px}.framer-Yg9Xz.framer-v-1flinjz.framer-dd3ssu{align-content:flex-start;align-items:flex-start;width:340px;height:375px}.framer-Yg9Xz.framer-v-1flinjz .framer-16xmqra-container{height:100%}@supports (aspect-ratio:1){body{--framer-aspect-ratio-supported:auto}}.framer-0IyTq.framer-pnlrqt,.framer-0IyTq .framer-pnlrqt{display:block}.framer-0IyTq.framer-17lh8d3{height:min-content;overflow:var(--overflow-clip-fallback,clip);flex-flow:row;place-content:center;align-items:center;gap:10px;width:min-content;padding:0;display:flex;position:relative}.framer-0IyTq .framer-puqlhk{width:305px;height:165px;position:relative}.framer-0IyTq .framer-wso3a3{width:35px;height:35px;position:absolute;top:130px;left:270px}.framer-0IyTq .framer-1q1szgj{width:35px;height:35px;position:absolute;top:130px;left:0}.framer-0IyTq .framer-1n8ab52{width:35px;height:35px;position:absolute;top:0;left:270px}.framer-0IyTq .framer-stb4f1{width:35px;height:35px;position:absolute;top:0;left:0}.framer-0IyTq .framer-qupwps{pointer-events:none;white-space:pre-wrap;word-break:break-word;word-wrap:break-word;z-index:1;flex:none;height:auto;position:absolute;top:50%;left:0;right:0}.framer-0IyTq .framer-17m0ei3{height:134px;overflow:var(--overflow-clip-fallback,clip);z-index:1;flex:none;width:84px;position:absolute;top:calc(49.697% - 67px);left:20px}.framer-0IyTq.framer-v-1xlwop5 .framer-puqlhk{width:250px;height:135px}.framer-0IyTq.framer-v-1xlwop5 .framer-wso3a3{width:29px;height:29px;top:107px;left:222px}.framer-0IyTq.framer-v-1xlwop5 .framer-1q1szgj{width:29px;height:29px;top:107px}.framer-0IyTq.framer-v-1xlwop5 .framer-1n8ab52{width:29px;height:29px;left:222px}.framer-0IyTq.framer-v-1xlwop5 .framer-stb4f1{width:29px;height:29px}.framer-0IyTq.framer-v-1xlwop5 .framer-17m0ei3{aspect-ratio:.581395;height:var(--framer-aspect-ratio-supported,110px);width:65px;top:50%;left:15px}.framer-0IyTq[data-border=true]:after,.framer-0IyTq [data-border=true]:after{content:"";border-width:var(--border-top-width,0)var(--border-right-width,0)var(--border-bottom-width,0)var(--border-left-width,0);border-color:var(--border-color,none);border-style:var(--border-style,none);box-sizing:border-box;border-radius:inherit;corner-shape:inherit;pointer-events:none;width:100%;height:100%;position:absolute;top:0;left:0}@supports (aspect-ratio:1){body{--framer-aspect-ratio-supported:auto}}.framer-yygIE.framer-1easdtm,.framer-yygIE .framer-1easdtm{display:block}.framer-yygIE.framer-14uits3{flex-flow:column;place-content:center flex-start;align-items:center;gap:16px;width:490px;height:444px;padding:0 0 24px;display:flex;position:relative;overflow:visible}.framer-yygIE .framer-1633uy1{flex-flow:column;flex:none;place-content:center;align-items:center;gap:10px;width:100%;height:116px;padding:30px 24px 24px;display:flex;position:relative;overflow:visible}.framer-yygIE .framer-1x1u3ln{flex-flow:row;flex:none;place-content:center flex-start;align-items:center;gap:6px;width:100%;height:min-content;padding:0;display:flex;position:relative;overflow:visible}.framer-yygIE .framer-1nhg4uc{width:15px;height:15px;position:relative}.framer-yygIE .framer-1l6myx5{width:12px;height:12px;position:absolute;top:0;left:0}.framer-yygIE .framer-1twr9au{width:6px;height:6px;position:absolute;top:9px;left:9px}.framer-yygIE .framer-14dxzjc,.framer-yygIE .framer-13bcyzo,.framer-yygIE .framer-u4uq06{white-space:pre-wrap;word-break:break-word;word-wrap:break-word;flex:1 0 0;width:1px;height:auto;position:relative}.framer-yygIE .framer-1t6hzvl{flex-flow:column;flex:none;place-content:flex-start;align-items:flex-start;gap:4px;width:100%;height:min-content;padding:0;display:flex;position:relative;overflow:visible}.framer-yygIE .framer-1jjmc7h{height:34px;overflow:var(--overflow-clip-fallback,clip);will-change:var(--framer-will-change-override,transform);flex-flow:row;flex:none;place-content:center space-between;align-items:center;width:100%;padding:10px;display:flex;position:relative}.framer-yygIE .framer-p9xlvr{flex-flow:row;flex:1 0 0;place-content:center flex-start;align-items:center;gap:10px;width:1px;height:min-content;padding:0;display:flex;position:relative;overflow:visible}.framer-yygIE .framer-5ne57o-container{flex:1 0 0;width:1px;height:auto;position:relative}.framer-yygIE .framer-3w1v23,.framer-yygIE .framer-1yx5rhn,.framer-yygIE .framer-hbyhmg,.framer-yygIE .framer-hy1sxl,.framer-yygIE .framer-15j5qy5,.framer-yygIE .framer-12bsv5,.framer-yygIE .framer-11ed1vb,.framer-yygIE .framer-364063,.framer-yygIE .framer-10ocfnd,.framer-yygIE .framer-1e8tpdk,.framer-yygIE .framer-11w5sg1,.framer-yygIE .framer-c3q5t5,.framer-yygIE .framer-1kf98ec,.framer-yygIE .framer-whv3kl,.framer-yygIE .framer-2tapoy,.framer-yygIE .framer-rvivep,.framer-yygIE .framer-1ebwube,.framer-yygIE .framer-r7zo6f,.framer-yygIE .framer-1mstife,.framer-yygIE .framer-h607p,.framer-yygIE .framer-1y3yllx,.framer-yygIE .framer-1c5vyga,.framer-yygIE .framer-zn8bvn,.framer-yygIE .framer-1dp1omt,.framer-yygIE .framer-jsk1fj{white-space:pre;flex:none;width:auto;height:auto;position:relative}.framer-yygIE .framer-1g0hb2v{height:var(--framer-aspect-ratio-supported,14px);flex:none;width:14px;position:relative}.framer-yygIE .framer-1auu4eg{height:50px;overflow:var(--overflow-clip-fallback,clip);flex-flow:row;flex:none;place-content:center;align-items:center;gap:10px;width:100%;padding:0;display:flex;position:relative}.framer-yygIE .framer-4p8jbw-container{flex:none;width:auto;height:auto;position:relative}.framer-yygIE .framer-31lwjd{flex-flow:column;flex:none;place-content:flex-start;align-items:flex-start;gap:10px;width:100%;height:min-content;padding:0 20px 20px;display:flex;position:relative;overflow:visible}.framer-yygIE .framer-15xrk9p{height:min-content;overflow:var(--overflow-clip-fallback,clip);flex-flow:row;flex:none;place-content:center;align-items:center;gap:10px;width:100%;padding:0;display:flex;position:relative}.framer-yygIE .framer-13a8n6k,.framer-yygIE .framer-1vzbgee,.framer-yygIE .framer-ab82mf{flex-flow:row;flex:none;place-content:center;align-items:center;gap:10px;width:100%;height:min-content;padding:0;display:flex;position:relative;overflow:visible}.framer-yygIE .framer-y74xq3,.framer-yygIE .framer-7naztx,.framer-yygIE .framer-1c3aknb{flex:none;width:55px;height:55px;position:relative;overflow:visible}.framer-yygIE .framer-i7x2yb,.framer-yygIE .framer-rmb29h,.framer-yygIE .framer-1vzozzq{aspect-ratio:1;height:var(--framer-aspect-ratio-supported,18px);flex:none;width:18px;position:relative}.framer-yygIE .framer-11cjo0h,.framer-yygIE .framer-1ed6a0o,.framer-yygIE .framer-14e9sas{height:min-content;overflow:var(--overflow-clip-fallback,clip);flex-flow:column;flex:1 0 0;place-content:flex-start center;align-items:flex-start;gap:5px;width:1px;padding:0;display:flex;position:relative}.framer-yygIE .framer-1isd2rb,.framer-yygIE .framer-1mgaynk,.framer-yygIE .framer-doic5b,.framer-yygIE .framer-sg4o29,.framer-yygIE .framer-1ryfeki,.framer-yygIE .framer-fe85bs{white-space:pre-wrap;word-break:break-word;word-wrap:break-word;flex:none;width:100%;height:auto;position:relative}.framer-yygIE .framer-rzdx73{height:122px;overflow:var(--overflow-clip-fallback,clip);will-change:var(--framer-will-change-override,transform);z-index:2;flex-flow:column;flex:none;place-content:center flex-end;align-items:center;gap:15px;width:54%;padding:10px 5px;display:flex;position:absolute;bottom:60px;left:23%}.framer-yygIE .framer-lj63oj{flex-flow:column;flex:none;place-content:center;align-items:center;gap:2px;width:100%;height:min-content;padding:0;display:flex;position:relative;overflow:visible}.framer-yygIE .framer-12b6o75{flex-flow:row;flex:none;place-content:flex-start center;align-items:flex-start;gap:2px;width:min-content;height:min-content;padding:0;display:flex;position:relative;overflow:visible}.framer-yygIE .framer-wtcmu7,.framer-yygIE .framer-1jfdd44,.framer-yygIE .framer-nh53rd,.framer-yygIE .framer-14yd882,.framer-yygIE .framer-15kjyum,.framer-yygIE .framer-st79df,.framer-yygIE .framer-4j9602,.framer-yygIE .framer-1l7x6qp,.framer-yygIE .framer-qplrqb,.framer-yygIE .framer-cl5dyw{aspect-ratio:.869565;height:var(--framer-aspect-ratio-supported,23px);flex-flow:row;flex:none;place-content:center;align-items:center;gap:2px;width:20px;padding:8px;display:flex;position:relative;overflow:visible}.framer-yygIE .framer-1qmkny,.framer-yygIE .framer-1mqi6mh,.framer-yygIE .framer-m26e5z,.framer-yygIE .framer-hx4l61{cursor:pointer;white-space:pre;flex:none;width:auto;height:auto;position:relative}.framer-yygIE .framer-1ubqnd3{flex-flow:row;flex:none;place-content:center;align-items:center;gap:2px;width:min-content;height:min-content;padding:0;display:flex;position:relative;overflow:visible}.framer-yygIE .framer-4oa1oi,.framer-yygIE .framer-alswqz,.framer-yygIE .framer-14999a,.framer-yygIE .framer-fesrt1,.framer-yygIE .framer-1r5cfuw,.framer-yygIE .framer-1rt1fy1,.framer-yygIE .framer-u6ys65,.framer-yygIE .framer-1w3ll9f,.framer-yygIE .framer-191rrk7,.framer-yygIE .framer-fhuivh,.framer-yygIE .framer-qwx45s,.framer-yygIE .framer-t5ewvf,.framer-yygIE .framer-1hmycn7,.framer-yygIE .framer-vwaso3,.framer-yygIE .framer-1rl62ph,.framer-yygIE .framer-bwm4rx,.framer-yygIE .framer-vz72db{flex-flow:row;flex:none;place-content:center;align-items:center;gap:2px;width:20px;height:23px;padding:8px;display:flex;position:relative;overflow:visible}.framer-yygIE .framer-dq0vic,.framer-yygIE .framer-3lku81{flex-flow:row;flex:none;place-content:center;align-items:center;gap:2px;width:100%;height:min-content;padding:0;display:flex;position:relative;overflow:visible}.framer-yygIE .framer-z6itoa,.framer-yygIE .framer-vcp65c{flex-flow:row;flex:1 0 0;place-content:center;align-items:center;gap:2px;width:1px;height:23px;padding:8px;display:flex;position:relative;overflow:visible}.framer-yygIE .framer-1ort7fi,.framer-yygIE .framer-18qpm8x{flex-flow:row;flex:none;place-content:center;align-items:center;gap:2px;width:35px;height:23px;padding:8px;display:flex;position:relative;overflow:visible}.framer-yygIE .framer-167470q{flex-flow:row;flex:.9 0 0;place-content:center;align-items:center;gap:2px;width:1px;height:23px;padding:8px;display:flex;position:relative;overflow:visible}.framer-yygIE.framer-v-1tsz864 .framer-rzdx73,.framer-yygIE.framer-v-rxgs5p .framer-rzdx73{bottom:-90px}.framer-yygIE.framer-v-rxgs5p .framer-15xrk9p,.framer-yygIE.framer-v-rxgs5p .framer-y74xq3,.framer-yygIE.framer-v-rxgs5p .framer-1mgaynk,.framer-yygIE.framer-v-rxgs5p .framer-7naztx,.framer-yygIE.framer-v-rxgs5p .framer-sg4o29,.framer-yygIE.framer-v-rxgs5p .framer-1c3aknb,.framer-yygIE.framer-v-rxgs5p .framer-fe85bs,.framer-yygIE.framer-v-1h18knx .framer-y74xq3{order:0}.framer-yygIE.framer-v-rxgs5p .framer-13a8n6k,.framer-yygIE.framer-v-rxgs5p .framer-11cjo0h,.framer-yygIE.framer-v-rxgs5p .framer-1isd2rb,.framer-yygIE.framer-v-rxgs5p .framer-1ed6a0o,.framer-yygIE.framer-v-rxgs5p .framer-doic5b,.framer-yygIE.framer-v-rxgs5p .framer-14e9sas,.framer-yygIE.framer-v-rxgs5p .framer-1ryfeki,.framer-yygIE.framer-v-1h18knx .framer-11cjo0h{order:1}.framer-yygIE.framer-v-rxgs5p .framer-i7x2yb,.framer-yygIE.framer-v-rxgs5p .framer-1vzbgee,.framer-yygIE.framer-v-rxgs5p .framer-rmb29h,.framer-yygIE.framer-v-rxgs5p .framer-1vzozzq{order:2}.framer-yygIE.framer-v-rxgs5p .framer-ab82mf{order:3}.framer-yygIE.framer-v-ow5pg3.framer-14uits3,.framer-yygIE.framer-v-705i9g.framer-14uits3,.framer-yygIE.framer-v-64zpdu.framer-14uits3,.framer-yygIE.framer-v-1h18knx.framer-14uits3{width:340px;height:375px}.framer-yygIE.framer-v-ow5pg3 .framer-rzdx73{width:59%;height:120px;bottom:43px;left:20.4412%}.framer-yygIE.framer-v-ow5pg3 .framer-12b6o75,.framer-yygIE.framer-v-ow5pg3 .framer-1ubqnd3,.framer-yygIE.framer-v-705i9g .framer-12b6o75,.framer-yygIE.framer-v-705i9g .framer-1ubqnd3,.framer-yygIE.framer-v-64zpdu .framer-12b6o75,.framer-yygIE.framer-v-64zpdu .framer-1ubqnd3,.framer-yygIE.framer-v-1h18knx .framer-12b6o75,.framer-yygIE.framer-v-1h18knx .framer-1ubqnd3{width:100%}.framer-yygIE.framer-v-ow5pg3 .framer-wtcmu7,.framer-yygIE.framer-v-ow5pg3 .framer-1jfdd44,.framer-yygIE.framer-v-ow5pg3 .framer-nh53rd,.framer-yygIE.framer-v-ow5pg3 .framer-14yd882,.framer-yygIE.framer-v-ow5pg3 .framer-15kjyum,.framer-yygIE.framer-v-ow5pg3 .framer-st79df,.framer-yygIE.framer-v-ow5pg3 .framer-4j9602,.framer-yygIE.framer-v-ow5pg3 .framer-1l7x6qp,.framer-yygIE.framer-v-ow5pg3 .framer-qplrqb,.framer-yygIE.framer-v-ow5pg3 .framer-cl5dyw,.framer-yygIE.framer-v-705i9g .framer-wtcmu7,.framer-yygIE.framer-v-705i9g .framer-1jfdd44,.framer-yygIE.framer-v-705i9g .framer-nh53rd,.framer-yygIE.framer-v-705i9g .framer-14yd882,.framer-yygIE.framer-v-705i9g .framer-15kjyum,.framer-yygIE.framer-v-705i9g .framer-st79df,.framer-yygIE.framer-v-705i9g .framer-4j9602,.framer-yygIE.framer-v-705i9g .framer-1l7x6qp,.framer-yygIE.framer-v-705i9g .framer-qplrqb,.framer-yygIE.framer-v-705i9g .framer-cl5dyw,.framer-yygIE.framer-v-64zpdu .framer-wtcmu7,.framer-yygIE.framer-v-64zpdu .framer-1jfdd44,.framer-yygIE.framer-v-64zpdu .framer-nh53rd,.framer-yygIE.framer-v-64zpdu .framer-14yd882,.framer-yygIE.framer-v-64zpdu .framer-15kjyum,.framer-yygIE.framer-v-64zpdu .framer-st79df,.framer-yygIE.framer-v-64zpdu .framer-4j9602,.framer-yygIE.framer-v-64zpdu .framer-1l7x6qp,.framer-yygIE.framer-v-64zpdu .framer-qplrqb,.framer-yygIE.framer-v-64zpdu .framer-cl5dyw,.framer-yygIE.framer-v-1h18knx .framer-wtcmu7,.framer-yygIE.framer-v-1h18knx .framer-1jfdd44,.framer-yygIE.framer-v-1h18knx .framer-nh53rd,.framer-yygIE.framer-v-1h18knx .framer-14yd882,.framer-yygIE.framer-v-1h18knx .framer-15kjyum,.framer-yygIE.framer-v-1h18knx .framer-st79df,.framer-yygIE.framer-v-1h18knx .framer-4j9602,.framer-yygIE.framer-v-1h18knx .framer-1l7x6qp,.framer-yygIE.framer-v-1h18knx .framer-qplrqb,.framer-yygIE.framer-v-1h18knx .framer-cl5dyw{height:var(--framer-aspect-ratio-supported,230px);flex:1 0 0;width:1px}.framer-yygIE.framer-v-ow5pg3 .framer-4oa1oi,.framer-yygIE.framer-v-ow5pg3 .framer-alswqz,.framer-yygIE.framer-v-ow5pg3 .framer-14999a,.framer-yygIE.framer-v-ow5pg3 .framer-fesrt1,.framer-yygIE.framer-v-ow5pg3 .framer-1r5cfuw,.framer-yygIE.framer-v-ow5pg3 .framer-1rt1fy1,.framer-yygIE.framer-v-ow5pg3 .framer-u6ys65,.framer-yygIE.framer-v-ow5pg3 .framer-1w3ll9f,.framer-yygIE.framer-v-ow5pg3 .framer-191rrk7,.framer-yygIE.framer-v-ow5pg3 .framer-fhuivh,.framer-yygIE.framer-v-ow5pg3 .framer-qwx45s,.framer-yygIE.framer-v-ow5pg3 .framer-t5ewvf,.framer-yygIE.framer-v-ow5pg3 .framer-1hmycn7,.framer-yygIE.framer-v-ow5pg3 .framer-vwaso3,.framer-yygIE.framer-v-ow5pg3 .framer-1rl62ph,.framer-yygIE.framer-v-ow5pg3 .framer-bwm4rx,.framer-yygIE.framer-v-ow5pg3 .framer-vz72db,.framer-yygIE.framer-v-705i9g .framer-4oa1oi,.framer-yygIE.framer-v-705i9g .framer-alswqz,.framer-yygIE.framer-v-705i9g .framer-14999a,.framer-yygIE.framer-v-705i9g .framer-fesrt1,.framer-yygIE.framer-v-705i9g .framer-1r5cfuw,.framer-yygIE.framer-v-705i9g .framer-1rt1fy1,.framer-yygIE.framer-v-705i9g .framer-u6ys65,.framer-yygIE.framer-v-705i9g .framer-1w3ll9f,.framer-yygIE.framer-v-705i9g .framer-191rrk7,.framer-yygIE.framer-v-705i9g .framer-fhuivh,.framer-yygIE.framer-v-705i9g .framer-qwx45s,.framer-yygIE.framer-v-705i9g .framer-t5ewvf,.framer-yygIE.framer-v-705i9g .framer-1hmycn7,.framer-yygIE.framer-v-705i9g .framer-vwaso3,.framer-yygIE.framer-v-705i9g .framer-1rl62ph,.framer-yygIE.framer-v-705i9g .framer-bwm4rx,.framer-yygIE.framer-v-705i9g .framer-vz72db,.framer-yygIE.framer-v-64zpdu .framer-4oa1oi,.framer-yygIE.framer-v-64zpdu .framer-alswqz,.framer-yygIE.framer-v-64zpdu .framer-14999a,.framer-yygIE.framer-v-64zpdu .framer-fesrt1,.framer-yygIE.framer-v-64zpdu .framer-1r5cfuw,.framer-yygIE.framer-v-64zpdu .framer-1rt1fy1,.framer-yygIE.framer-v-64zpdu .framer-u6ys65,.framer-yygIE.framer-v-64zpdu .framer-1w3ll9f,.framer-yygIE.framer-v-64zpdu .framer-191rrk7,.framer-yygIE.framer-v-64zpdu .framer-fhuivh,.framer-yygIE.framer-v-64zpdu .framer-qwx45s,.framer-yygIE.framer-v-64zpdu .framer-t5ewvf,.framer-yygIE.framer-v-64zpdu .framer-1hmycn7,.framer-yygIE.framer-v-64zpdu .framer-vwaso3,.framer-yygIE.framer-v-64zpdu .framer-1rl62ph,.framer-yygIE.framer-v-64zpdu .framer-bwm4rx,.framer-yygIE.framer-v-64zpdu .framer-vz72db,.framer-yygIE.framer-v-1h18knx .framer-4oa1oi,.framer-yygIE.framer-v-1h18knx .framer-alswqz,.framer-yygIE.framer-v-1h18knx .framer-14999a,.framer-yygIE.framer-v-1h18knx .framer-fesrt1,.framer-yygIE.framer-v-1h18knx .framer-1r5cfuw,.framer-yygIE.framer-v-1h18knx .framer-1rt1fy1,.framer-yygIE.framer-v-1h18knx .framer-u6ys65,.framer-yygIE.framer-v-1h18knx .framer-1w3ll9f,.framer-yygIE.framer-v-1h18knx .framer-191rrk7,.framer-yygIE.framer-v-1h18knx .framer-fhuivh,.framer-yygIE.framer-v-1h18knx .framer-qwx45s,.framer-yygIE.framer-v-1h18knx .framer-t5ewvf,.framer-yygIE.framer-v-1h18knx .framer-1hmycn7,.framer-yygIE.framer-v-1h18knx .framer-vwaso3,.framer-yygIE.framer-v-1h18knx .framer-1rl62ph,.framer-yygIE.framer-v-1h18knx .framer-bwm4rx,.framer-yygIE.framer-v-1h18knx .framer-vz72db{flex:1 0 0;width:1px}.framer-yygIE.framer-v-705i9g .framer-rzdx73{width:59%;height:120px;bottom:43px;left:21.0294%}.framer-yygIE.framer-v-64zpdu .framer-rzdx73,.framer-yygIE.framer-v-1h18knx .framer-rzdx73{width:59%;height:120px;bottom:-160px;left:21.0294%}.framer-yygIE[data-border=true]:after,.framer-yygIE [data-border=true]:after{content:"";border-width:var(--border-top-width,0)var(--border-right-width,0)var(--border-bottom-width,0)var(--border-left-width,0);border-color:var(--border-color,none);border-style:var(--border-style,none);box-sizing:border-box;border-radius:inherit;corner-shape:inherit;pointer-events:none;width:100%;height:100%;position:absolute;top:0;left:0}.framer-4is15{-webkit-mask:var(--framer-icon-mask);aspect-ratio:1;-webkit-mask:var(--framer-icon-mask);mask:var(--framer-icon-mask);width:24px;display:block}@supports (aspect-ratio:1){body{--framer-aspect-ratio-supported:auto}}.framer-c5ucm.framer-2y1aib,.framer-c5ucm .framer-2y1aib{display:block}.framer-c5ucm.framer-937h5t{will-change:var(--framer-will-change-override,transform);flex-flow:column;place-content:flex-start;align-items:flex-start;gap:0;width:475px;height:min-content;padding:0 1px;display:flex;position:relative;overflow:hidden}.framer-c5ucm .framer-1rt5lj1{flex-flow:row;flex:none;place-content:center flex-start;align-items:center;gap:20px;width:100%;height:min-content;padding:25px 30px 0;display:flex;position:relative;overflow:visible}.framer-c5ucm .framer-sw0j4l{flex-flow:row;flex:1 0 0;place-content:center flex-start;align-items:center;gap:10px;width:1px;height:min-content;padding:0;display:flex;position:relative;overflow:visible}.framer-c5ucm .framer-n3smyk,.framer-c5ucm .framer-r0c44x{white-space:pre;flex:none;width:auto;height:auto;position:relative}.framer-c5ucm .framer-y5fb2w{flex-flow:row;flex:none;place-content:center flex-start;align-items:center;gap:10px;width:min-content;height:min-content;padding:0;display:flex;position:relative;overflow:visible}.framer-c5ucm .framer-qcqp3o-container{flex:none;width:auto;height:auto;position:relative}.framer-c5ucm .framer-lq3jip{flex-flow:column;flex:none;place-content:flex-start;align-items:flex-start;gap:0;width:100%;height:325px;padding:0;display:flex;position:relative;overflow:hidden}.framer-c5ucm .framer-vj6gxu-container{z-index:1;flex:none;height:auto;position:absolute;top:30px;left:30px;right:30px}.framer-c5ucm .framer-1ah2vxi-container{z-index:1;flex:none;height:auto;position:absolute;top:88px;left:30px;right:30px}.framer-c5ucm .framer-nqqlf6-container{z-index:1;flex:none;height:auto;position:absolute;top:53%;left:30px;right:30px}.framer-c5ucm .framer-yjoxcn-container{z-index:1;flex:none;height:auto;position:absolute;bottom:72px;left:30px;right:30px}.framer-c5ucm .framer-yg3idh-container{z-index:1;flex:none;height:auto;position:absolute;bottom:14px;left:30px;right:30px}.framer-c5ucm .framer-pmrnj7-container{z-index:1;flex:none;height:auto;position:absolute;bottom:-44px;left:30px;right:30px}.framer-c5ucm .framer-1jb4em7-container{z-index:1;flex:none;height:auto;position:absolute;bottom:-102px;left:30px;right:30px}.framer-c5ucm .framer-1t3iz58-container{z-index:1;flex:none;height:auto;position:absolute;bottom:-160px;left:30px;right:30px}.framer-c5ucm .framer-ivbpnn-container{z-index:1;flex:none;height:auto;position:absolute;bottom:-218px;left:30px;right:30px}.framer-c5ucm .framer-1e71nef-container{z-index:1;flex:none;height:auto;position:absolute;bottom:-276px;left:30px;right:30px}.framer-c5ucm.framer-v-5c7jd2 .framer-vj6gxu-container,.framer-c5ucm.framer-v-1gvcc0w .framer-vj6gxu-container,.framer-c5ucm.framer-v-1gvcc0w .framer-1ah2vxi-container,.framer-c5ucm.framer-v-kulq0w .framer-vj6gxu-container,.framer-c5ucm.framer-v-kulq0w .framer-1ah2vxi-container,.framer-c5ucm.framer-v-kulq0w .framer-nqqlf6-container,.framer-c5ucm.framer-v-n8o1s4 .framer-vj6gxu-container,.framer-c5ucm.framer-v-n8o1s4 .framer-1ah2vxi-container,.framer-c5ucm.framer-v-n8o1s4 .framer-nqqlf6-container,.framer-c5ucm.framer-v-1fi4ea3 .framer-vj6gxu-container,.framer-c5ucm.framer-v-1fi4ea3 .framer-1ah2vxi-container,.framer-c5ucm.framer-v-1fi4ea3 .framer-nqqlf6-container,.framer-c5ucm.framer-v-19sf2b8 .framer-vj6gxu-container,.framer-c5ucm.framer-v-19sf2b8 .framer-1ah2vxi-container,.framer-c5ucm.framer-v-19sf2b8 .framer-nqqlf6-container,.framer-c5ucm.framer-v-1jdiz7x .framer-vj6gxu-container,.framer-c5ucm.framer-v-1jdiz7x .framer-1ah2vxi-container,.framer-c5ucm.framer-v-1jdiz7x .framer-nqqlf6-container,.framer-c5ucm.framer-v-jh7mqt .framer-vj6gxu-container,.framer-c5ucm.framer-v-jh7mqt .framer-1ah2vxi-container,.framer-c5ucm.framer-v-jh7mqt .framer-nqqlf6-container{top:-70px}.framer-c5ucm.framer-v-5c7jd2 .framer-1ah2vxi-container,.framer-c5ucm.framer-v-1gvcc0w .framer-nqqlf6-container{top:30px}.framer-c5ucm.framer-v-5c7jd2 .framer-nqqlf6-container{top:88px}.framer-c5ucm.framer-v-5c7jd2 .framer-yjoxcn-container,.framer-c5ucm.framer-v-1gvcc0w .framer-yg3idh-container,.framer-c5ucm.framer-v-kulq0w .framer-pmrnj7-container,.framer-c5ucm.framer-v-n8o1s4 .framer-1jb4em7-container,.framer-c5ucm.framer-v-1fi4ea3 .framer-1t3iz58-container,.framer-c5ucm.framer-v-19sf2b8 .framer-ivbpnn-container{bottom:unset;height:49px;top:calc(52.3077% - 24.25px)}.framer-c5ucm.framer-v-5c7jd2 .framer-yg3idh-container,.framer-c5ucm.framer-v-1gvcc0w .framer-pmrnj7-container,.framer-c5ucm.framer-v-kulq0w .framer-1jb4em7-container,.framer-c5ucm.framer-v-n8o1s4 .framer-1t3iz58-container,.framer-c5ucm.framer-v-1fi4ea3 .framer-ivbpnn-container{height:49px;bottom:73px}.framer-c5ucm.framer-v-5c7jd2 .framer-pmrnj7-container,.framer-c5ucm.framer-v-1gvcc0w .framer-1jb4em7-container,.framer-c5ucm.framer-v-kulq0w .framer-1t3iz58-container,.framer-c5ucm.framer-v-n8o1s4 .framer-ivbpnn-container{height:49px;bottom:15px}.framer-c5ucm.framer-v-5c7jd2 .framer-1jb4em7-container,.framer-c5ucm.framer-v-1gvcc0w .framer-1t3iz58-container,.framer-c5ucm.framer-v-kulq0w .framer-ivbpnn-container{height:49px;bottom:-43px}.framer-c5ucm.framer-v-5c7jd2 .framer-1t3iz58-container,.framer-c5ucm.framer-v-1gvcc0w .framer-ivbpnn-container{height:49px;bottom:-101px}.framer-c5ucm.framer-v-5c7jd2 .framer-ivbpnn-container{height:49px;bottom:-159px}.framer-c5ucm.framer-v-5c7jd2 .framer-1e71nef-container{height:49px;bottom:-219px}.framer-c5ucm.framer-v-1gvcc0w .framer-yjoxcn-container,.framer-c5ucm.framer-v-kulq0w .framer-yg3idh-container,.framer-c5ucm.framer-v-n8o1s4 .framer-pmrnj7-container,.framer-c5ucm.framer-v-1fi4ea3 .framer-1jb4em7-container,.framer-c5ucm.framer-v-19sf2b8 .framer-1t3iz58-container{bottom:unset;height:49px;top:88px}.framer-c5ucm.framer-v-1gvcc0w .framer-1e71nef-container{height:49px;bottom:-161px}.framer-c5ucm.framer-v-kulq0w .framer-yjoxcn-container,.framer-c5ucm.framer-v-n8o1s4 .framer-yg3idh-container,.framer-c5ucm.framer-v-1fi4ea3 .framer-pmrnj7-container,.framer-c5ucm.framer-v-19sf2b8 .framer-1jb4em7-container,.framer-c5ucm.framer-v-1jdiz7x .framer-1t3iz58-container{bottom:unset;height:49px;top:30px}.framer-c5ucm.framer-v-kulq0w .framer-1e71nef-container{height:49px;bottom:-103px}.framer-c5ucm.framer-v-n8o1s4 .framer-yjoxcn-container,.framer-c5ucm.framer-v-1fi4ea3 .framer-yjoxcn-container,.framer-c5ucm.framer-v-1fi4ea3 .framer-yg3idh-container,.framer-c5ucm.framer-v-19sf2b8 .framer-yjoxcn-container,.framer-c5ucm.framer-v-19sf2b8 .framer-yg3idh-container,.framer-c5ucm.framer-v-19sf2b8 .framer-pmrnj7-container,.framer-c5ucm.framer-v-1jdiz7x .framer-yjoxcn-container,.framer-c5ucm.framer-v-1jdiz7x .framer-yg3idh-container,.framer-c5ucm.framer-v-1jdiz7x .framer-pmrnj7-container,.framer-c5ucm.framer-v-1jdiz7x .framer-1jb4em7-container,.framer-c5ucm.framer-v-jh7mqt .framer-yjoxcn-container,.framer-c5ucm.framer-v-jh7mqt .framer-yg3idh-container,.framer-c5ucm.framer-v-jh7mqt .framer-pmrnj7-container,.framer-c5ucm.framer-v-jh7mqt .framer-1jb4em7-container,.framer-c5ucm.framer-v-jh7mqt .framer-1t3iz58-container{bottom:unset;height:49px;top:-70px}.framer-c5ucm.framer-v-n8o1s4 .framer-1e71nef-container{height:49px;bottom:-45px}.framer-c5ucm.framer-v-1fi4ea3 .framer-1e71nef-container{height:49px;bottom:13px}.framer-c5ucm.framer-v-19sf2b8 .framer-1e71nef-container{bottom:unset;height:49px;top:calc(70.7692% - 24.25px)}.framer-c5ucm.framer-v-1jdiz7x .framer-ivbpnn-container{bottom:unset;height:49px;top:calc(34.4615% - 24.25px)}.framer-c5ucm.framer-v-1jdiz7x .framer-1e71nef-container{bottom:unset;height:49px;top:calc(52.9231% - 24.25px)}.framer-c5ucm.framer-v-jh7mqt .framer-ivbpnn-container{bottom:unset;height:49px;top:calc(16.6154% - 24.25px)}.framer-c5ucm.framer-v-jh7mqt .framer-1e71nef-container{bottom:unset;height:49px;top:calc(35.0769% - 24.25px)}.framer-c5ucm.framer-v-1he2yu5.framer-937h5t,.framer-c5ucm.framer-v-19g7vlu.framer-937h5t,.framer-c5ucm.framer-v-1ombtm3.framer-937h5t,.framer-c5ucm.framer-v-9679pg.framer-937h5t,.framer-c5ucm.framer-v-1sd6hht.framer-937h5t,.framer-c5ucm.framer-v-b6qok4.framer-937h5t,.framer-c5ucm.framer-v-w99u1c.framer-937h5t,.framer-c5ucm.framer-v-1v44dmw.framer-937h5t,.framer-c5ucm.framer-v-vlcura.framer-937h5t{width:340px;height:375px}.framer-c5ucm.framer-v-1he2yu5 .framer-vj6gxu-container,.framer-c5ucm.framer-v-1he2yu5 .framer-1ah2vxi-container,.framer-c5ucm.framer-v-1he2yu5 .framer-nqqlf6-container,.framer-c5ucm.framer-v-1he2yu5 .framer-yjoxcn-container,.framer-c5ucm.framer-v-1he2yu5 .framer-yg3idh-container,.framer-c5ucm.framer-v-1he2yu5 .framer-pmrnj7-container,.framer-c5ucm.framer-v-1he2yu5 .framer-1jb4em7-container,.framer-c5ucm.framer-v-1he2yu5 .framer-1t3iz58-container,.framer-c5ucm.framer-v-1he2yu5 .framer-ivbpnn-container,.framer-c5ucm.framer-v-1he2yu5 .framer-1e71nef-container{left:10px;right:10px}.framer-c5ucm.framer-v-19g7vlu .framer-vj6gxu-container,.framer-c5ucm.framer-v-1ombtm3 .framer-vj6gxu-container,.framer-c5ucm.framer-v-1ombtm3 .framer-1ah2vxi-container,.framer-c5ucm.framer-v-9679pg .framer-vj6gxu-container,.framer-c5ucm.framer-v-9679pg .framer-1ah2vxi-container,.framer-c5ucm.framer-v-9679pg .framer-nqqlf6-container,.framer-c5ucm.framer-v-1sd6hht .framer-vj6gxu-container,.framer-c5ucm.framer-v-1sd6hht .framer-1ah2vxi-container,.framer-c5ucm.framer-v-1sd6hht .framer-nqqlf6-container,.framer-c5ucm.framer-v-b6qok4 .framer-vj6gxu-container,.framer-c5ucm.framer-v-b6qok4 .framer-1ah2vxi-container,.framer-c5ucm.framer-v-b6qok4 .framer-nqqlf6-container,.framer-c5ucm.framer-v-w99u1c .framer-vj6gxu-container,.framer-c5ucm.framer-v-w99u1c .framer-1ah2vxi-container,.framer-c5ucm.framer-v-w99u1c .framer-nqqlf6-container,.framer-c5ucm.framer-v-1v44dmw .framer-vj6gxu-container,.framer-c5ucm.framer-v-1v44dmw .framer-1ah2vxi-container,.framer-c5ucm.framer-v-1v44dmw .framer-nqqlf6-container,.framer-c5ucm.framer-v-vlcura .framer-vj6gxu-container,.framer-c5ucm.framer-v-vlcura .framer-1ah2vxi-container,.framer-c5ucm.framer-v-vlcura .framer-nqqlf6-container{top:-70px;left:10px;right:10px}.framer-c5ucm.framer-v-19g7vlu .framer-1ah2vxi-container,.framer-c5ucm.framer-v-1ombtm3 .framer-nqqlf6-container{top:30px;left:10px;right:10px}.framer-c5ucm.framer-v-19g7vlu .framer-nqqlf6-container{top:88px;left:10px;right:10px}.framer-c5ucm.framer-v-19g7vlu .framer-yjoxcn-container,.framer-c5ucm.framer-v-1ombtm3 .framer-yg3idh-container,.framer-c5ucm.framer-v-9679pg .framer-pmrnj7-container,.framer-c5ucm.framer-v-1sd6hht .framer-1jb4em7-container,.framer-c5ucm.framer-v-b6qok4 .framer-1t3iz58-container,.framer-c5ucm.framer-v-w99u1c .framer-ivbpnn-container{bottom:unset;height:49px;top:calc(52.3077% - 24.25px);left:10px;right:10px}.framer-c5ucm.framer-v-19g7vlu .framer-yg3idh-container,.framer-c5ucm.framer-v-1ombtm3 .framer-pmrnj7-container,.framer-c5ucm.framer-v-9679pg .framer-1jb4em7-container,.framer-c5ucm.framer-v-1sd6hht .framer-1t3iz58-container,.framer-c5ucm.framer-v-b6qok4 .framer-ivbpnn-container{height:49px;bottom:73px;left:10px;right:10px}.framer-c5ucm.framer-v-19g7vlu .framer-pmrnj7-container,.framer-c5ucm.framer-v-1ombtm3 .framer-1jb4em7-container,.framer-c5ucm.framer-v-9679pg .framer-1t3iz58-container,.framer-c5ucm.framer-v-1sd6hht .framer-ivbpnn-container{height:49px;bottom:15px;left:10px;right:10px}.framer-c5ucm.framer-v-19g7vlu .framer-1jb4em7-container,.framer-c5ucm.framer-v-1ombtm3 .framer-1t3iz58-container,.framer-c5ucm.framer-v-9679pg .framer-ivbpnn-container,.framer-c5ucm.framer-v-9679pg .framer-1e71nef-container{height:49px;bottom:-43px;left:10px;right:10px}.framer-c5ucm.framer-v-19g7vlu .framer-1t3iz58-container,.framer-c5ucm.framer-v-1ombtm3 .framer-ivbpnn-container,.framer-c5ucm.framer-v-1ombtm3 .framer-1e71nef-container{height:49px;bottom:-101px;left:10px;right:10px}.framer-c5ucm.framer-v-19g7vlu .framer-ivbpnn-container,.framer-c5ucm.framer-v-19g7vlu .framer-1e71nef-container{height:49px;bottom:-159px;left:10px;right:10px}.framer-c5ucm.framer-v-1ombtm3 .framer-yjoxcn-container,.framer-c5ucm.framer-v-9679pg .framer-yg3idh-container,.framer-c5ucm.framer-v-1sd6hht .framer-pmrnj7-container,.framer-c5ucm.framer-v-b6qok4 .framer-1jb4em7-container,.framer-c5ucm.framer-v-w99u1c .framer-1t3iz58-container{bottom:unset;height:49px;top:88px;left:10px;right:10px}.framer-c5ucm.framer-v-9679pg .framer-yjoxcn-container,.framer-c5ucm.framer-v-1sd6hht .framer-yg3idh-container,.framer-c5ucm.framer-v-b6qok4 .framer-pmrnj7-container,.framer-c5ucm.framer-v-w99u1c .framer-1jb4em7-container,.framer-c5ucm.framer-v-1v44dmw .framer-1t3iz58-container,.framer-c5ucm.framer-v-vlcura .framer-ivbpnn-container{bottom:unset;height:49px;top:30px;left:10px;right:10px}.framer-c5ucm.framer-v-1sd6hht .framer-yjoxcn-container,.framer-c5ucm.framer-v-b6qok4 .framer-yjoxcn-container,.framer-c5ucm.framer-v-b6qok4 .framer-yg3idh-container,.framer-c5ucm.framer-v-w99u1c .framer-yjoxcn-container,.framer-c5ucm.framer-v-w99u1c .framer-yg3idh-container,.framer-c5ucm.framer-v-w99u1c .framer-pmrnj7-container,.framer-c5ucm.framer-v-1v44dmw .framer-yjoxcn-container,.framer-c5ucm.framer-v-1v44dmw .framer-yg3idh-container,.framer-c5ucm.framer-v-1v44dmw .framer-pmrnj7-container,.framer-c5ucm.framer-v-1v44dmw .framer-1jb4em7-container,.framer-c5ucm.framer-v-vlcura .framer-yjoxcn-container,.framer-c5ucm.framer-v-vlcura .framer-yg3idh-container,.framer-c5ucm.framer-v-vlcura .framer-pmrnj7-container,.framer-c5ucm.framer-v-vlcura .framer-1jb4em7-container,.framer-c5ucm.framer-v-vlcura .framer-1t3iz58-container{bottom:unset;height:49px;top:-70px;left:10px;right:10px}.framer-c5ucm.framer-v-1sd6hht .framer-1e71nef-container{height:49px;bottom:-45px;left:10px;right:10px}.framer-c5ucm.framer-v-b6qok4 .framer-1e71nef-container{height:49px;bottom:16px;left:10px;right:10px}.framer-c5ucm.framer-v-w99u1c .framer-1e71nef-container{bottom:unset;height:49px;top:calc(69.8462% - 24.25px);left:10px;right:10px}.framer-c5ucm.framer-v-1v44dmw .framer-ivbpnn-container,.framer-c5ucm.framer-v-vlcura .framer-1e71nef-container{bottom:unset;height:49px;top:calc(34.4615% - 24.25px);left:10px;right:10px}.framer-c5ucm.framer-v-1v44dmw .framer-1e71nef-container{bottom:unset;height:49px;top:calc(52% - 24.25px);left:10px;right:10px}.framer-c5ucm[data-border=true]:after,.framer-c5ucm [data-border=true]:after{content:"";border-width:var(--border-top-width,0)var(--border-right-width,0)var(--border-bottom-width,0)var(--border-left-width,0);border-color:var(--border-color,none);border-style:var(--border-style,none);box-sizing:border-box;border-radius:inherit;corner-shape:inherit;pointer-events:none;width:100%;height:100%;position:absolute;top:0;left:0}@supports (aspect-ratio:1){body{--framer-aspect-ratio-supported:auto}}.framer-8sXsv.framer-aalzau,.framer-8sXsv .framer-aalzau{display:block}.framer-8sXsv.framer-1b5ikew{flex-flow:row;place-content:center flex-start;align-items:center;gap:0;width:min-content;height:min-content;padding:8px 14px 6px;display:flex;position:relative;overflow:visible}.framer-8sXsv .framer-1xx8ifo{white-space:pre;flex:none;width:auto;height:auto;position:relative}.framer-8sXsv[data-border=true]:after,.framer-8sXsv [data-border=true]:after{content:"";border-width:var(--border-top-width,0)var(--border-right-width,0)var(--border-bottom-width,0)var(--border-left-width,0);border-color:var(--border-color,none);border-style:var(--border-style,none);box-sizing:border-box;border-radius:inherit;corner-shape:inherit;pointer-events:none;width:100%;height:100%;position:absolute;top:0;left:0}@supports (aspect-ratio:1){body{--framer-aspect-ratio-supported:auto}}.framer-pcOiL.framer-g7mext,.framer-pcOiL .framer-g7mext{display:block}.framer-pcOiL.framer-1i2nzy7{height:min-content;overflow:var(--overflow-clip-fallback,clip);flex-flow:row;place-content:center flex-start;align-items:center;gap:10px;width:450px;padding:0;display:flex;position:relative}.framer-pcOiL .framer-1ki2x6w{flex-flow:column;flex:none;place-content:flex-start;align-items:flex-start;gap:4px;width:min-content;height:min-content;padding:6px 0;display:flex;position:relative;overflow:visible}.framer-pcOiL .framer-1wcb5xa{white-space:pre;flex:none;width:auto;height:auto;position:relative;overflow:visible}.framer-pcOiL .framer-1xzpw7s{flex-flow:row;flex:1 0 0;place-content:center flex-start;align-items:center;gap:0;width:1px;height:min-content;padding:14px;display:flex;position:relative;overflow:visible}.framer-pcOiL .framer-9bckli{flex-flow:row;flex:none;place-content:center;align-items:center;gap:10px;width:20px;height:19px;padding:0 10px 0 0;display:flex;position:relative;overflow:visible}.framer-pcOiL .framer-1n8wws2-container{flex:none;width:18px;height:18px;position:relative}.framer-pcOiL .framer-1u981xr{white-space:pre-wrap;word-break:break-word;word-wrap:break-word;flex:1 0 0;width:1px;height:auto;position:relative}.framer-pcOiL .framer-1tlpf1g{white-space:pre;flex:none;width:auto;height:auto;position:relative}.framer-pcOiL.framer-v-cvhvmy .framer-9bckli{order:0}.framer-pcOiL.framer-v-cvhvmy .framer-1u981xr{order:1}.framer-pcOiL.framer-v-cvhvmy .framer-1tlpf1g{order:2}.framer-pcOiL[data-border=true]:after,.framer-pcOiL [data-border=true]:after{content:"";border-width:var(--border-top-width,0)var(--border-right-width,0)var(--border-bottom-width,0)var(--border-left-width,0);border-color:var(--border-color,none);border-style:var(--border-style,none);box-sizing:border-box;border-radius:inherit;corner-shape:inherit;pointer-events:none;width:100%;height:100%;position:absolute;top:0;left:0}@supports (aspect-ratio:1){body{--framer-aspect-ratio-supported:auto}}.framer-6lu7R.framer-xqroxo,.framer-6lu7R .framer-xqroxo{display:block}.framer-6lu7R.framer-18nv8ex{flex-flow:column;place-content:center flex-start;align-items:center;gap:16px;width:470px;height:min-content;padding:0;display:flex;position:relative;overflow:visible}.framer-6lu7R .framer-eel8m8{flex-flow:column;flex:none;place-content:center;align-items:center;gap:10px;width:100%;height:min-content;padding:0;display:flex;position:relative;overflow:visible}.framer-6lu7R .framer-1o5gms7{flex-flow:column;flex:none;place-content:center;align-items:center;gap:4px;width:100%;height:min-content;padding:24px;display:flex;position:relative;overflow:visible}.framer-6lu7R .framer-9a5si{flex-flow:row;flex:none;place-content:center space-between;align-items:center;width:100%;height:min-content;padding:0;display:flex;position:relative;overflow:visible}.framer-6lu7R .framer-z6hjb0,.framer-6lu7R .framer-1deb4rk,.framer-6lu7R .framer-1ugz5oe,.framer-6lu7R .framer-19ga4c3,.framer-6lu7R .framer-19o0lsv,.framer-6lu7R .framer-g9enw2,.framer-6lu7R .framer-11nx4bt,.framer-6lu7R .framer-2sed2h,.framer-6lu7R .framer-1yz3g6i,.framer-6lu7R .framer-2cl32o,.framer-6lu7R .framer-1yfen1l,.framer-6lu7R .framer-m98fep,.framer-6lu7R .framer-8u6tmf,.framer-6lu7R .framer-q9g3mg,.framer-6lu7R .framer-2zim71,.framer-6lu7R .framer-123erwv,.framer-6lu7R .framer-1fmhr26,.framer-6lu7R .framer-go8hmf,.framer-6lu7R .framer-12b5hhj,.framer-6lu7R .framer-1b5n4fq,.framer-6lu7R .framer-1fklpx2,.framer-6lu7R .framer-y11xjb,.framer-6lu7R .framer-17vmaz8,.framer-6lu7R .framer-19qr7ng,.framer-6lu7R .framer-yeo0yg,.framer-6lu7R .framer-pw1yhc,.framer-6lu7R .framer-1kfolgr,.framer-6lu7R .framer-vhtkmf,.framer-6lu7R .framer-popgbo,.framer-6lu7R .framer-880h4a,.framer-6lu7R .framer-1qlvdo5,.framer-6lu7R .framer-l2e15k,.framer-6lu7R .framer-1s90lbx,.framer-6lu7R .framer-z0keiv,.framer-6lu7R .framer-ogy1x8,.framer-6lu7R .framer-ubgej6,.framer-6lu7R .framer-oh9ug9,.framer-6lu7R .framer-1xap12f,.framer-6lu7R .framer-189xatt,.framer-6lu7R .framer-19dezwy,.framer-6lu7R .framer-1gnqm0t,.framer-6lu7R .framer-vz9qfq,.framer-6lu7R .framer-1hkv76i,.framer-6lu7R .framer-ush4kf,.framer-6lu7R .framer-192j157,.framer-6lu7R .framer-p56gyq,.framer-6lu7R .framer-m8vwpo,.framer-6lu7R .framer-d39et4,.framer-6lu7R .framer-j1qket,.framer-6lu7R .framer-2icki,.framer-6lu7R .framer-1otw8a6,.framer-6lu7R .framer-7mixm4,.framer-6lu7R .framer-1wmqtxy,.framer-6lu7R .framer-y7t3co,.framer-6lu7R .framer-xj8z6y,.framer-6lu7R .framer-rfseh1,.framer-6lu7R .framer-xna6v1{white-space:pre;flex:none;width:auto;height:auto;position:relative}.framer-6lu7R .framer-14r4er6{flex-flow:row;flex:none;place-content:center;align-items:center;gap:10px;width:min-content;height:min-content;padding:6px 12px;display:flex;position:relative;overflow:visible}.framer-6lu7R .framer-lbdhy2{white-space:pre-wrap;word-break:break-word;word-wrap:break-word;flex:none;width:100%;height:auto;position:relative}.framer-6lu7R .framer-17ouycj{height:min-content;overflow:var(--overflow-clip-fallback,clip);flex-flow:column;flex:none;place-content:center;align-items:center;gap:10px;width:100%;padding:8px 0;display:flex;position:relative}.framer-6lu7R .framer-hpy9n4,.framer-6lu7R .framer-bg86x2,.framer-6lu7R .framer-1umvihe,.framer-6lu7R .framer-1cj0oc0{height:min-content;overflow:var(--overflow-clip-fallback,clip);z-index:3;flex-flow:row;flex:none;place-content:center space-evenly;align-items:center;width:100%;padding:0;display:flex;position:relative}.framer-6lu7R .framer-bey8h2,.framer-6lu7R .framer-gnre4l,.framer-6lu7R .framer-wn3duw,.framer-6lu7R .framer-1aiyhd5,.framer-6lu7R .framer-1gjmtx8,.framer-6lu7R .framer-15ijxwj,.framer-6lu7R .framer-1aob4h2,.framer-6lu7R .framer-17kaaz4,.framer-6lu7R .framer-10dzhul,.framer-6lu7R .framer-1wzaias,.framer-6lu7R .framer-svqu0j,.framer-6lu7R .framer-eisjmi,.framer-6lu7R .framer-qva0xa,.framer-6lu7R .framer-1ycxibr,.framer-6lu7R .framer-hch534,.framer-6lu7R .framer-3u744u,.framer-6lu7R .framer-1vtajp2,.framer-6lu7R .framer-8luj6t,.framer-6lu7R .framer-lspedu,.framer-6lu7R .framer-1l7qj8o,.framer-6lu7R .framer-1ddxy3n,.framer-6lu7R .framer-1bif0ia,.framer-6lu7R .framer-1pd83fe,.framer-6lu7R .framer-3zjnod{height:64px;overflow:var(--overflow-clip-fallback,clip);flex-flow:column;flex:none;place-content:center;align-items:center;gap:4px;width:64px;padding:0;display:flex;position:relative}.framer-6lu7R .framer-1wy1y8y,.framer-6lu7R .framer-1yl0uvt,.framer-6lu7R .framer-1nkv90q,.framer-6lu7R .framer-17tevti{height:64px;overflow:var(--overflow-clip-fallback,clip);will-change:var(--framer-will-change-override,transform);flex-flow:column;flex:none;place-content:center;align-items:center;gap:4px;width:64px;padding:0;display:flex;position:relative}.framer-6lu7R .framer-1juzhdt{aspect-ratio:1;height:var(--framer-aspect-ratio-supported,64px);z-index:2;flex-flow:row;flex:none;place-content:center;align-items:center;gap:10px;width:64px;padding:6px 12px;display:flex;position:absolute;top:80px;left:138px;overflow:visible}.framer-6lu7R.framer-v-axa4xf .framer-1juzhdt{left:204px}.framer-6lu7R.framer-v-1s344f5 .framer-1juzhdt{left:272px}.framer-6lu7R.framer-v-uc7oji .framer-1juzhdt{left:336px}.framer-6lu7R.framer-v-1j87ujp.framer-18nv8ex,.framer-6lu7R.framer-v-vd3m82.framer-18nv8ex,.framer-6lu7R.framer-v-uknv7h.framer-18nv8ex,.framer-6lu7R.framer-v-d54ypv.framer-18nv8ex{width:340px}.framer-6lu7R.framer-v-1j87ujp .framer-bey8h2,.framer-6lu7R.framer-v-1j87ujp .framer-gnre4l,.framer-6lu7R.framer-v-1j87ujp .framer-wn3duw,.framer-6lu7R.framer-v-1j87ujp .framer-1wy1y8y,.framer-6lu7R.framer-v-1j87ujp .framer-1aiyhd5,.framer-6lu7R.framer-v-1j87ujp .framer-1gjmtx8,.framer-6lu7R.framer-v-1j87ujp .framer-15ijxwj,.framer-6lu7R.framer-v-1j87ujp .framer-1aob4h2,.framer-6lu7R.framer-v-1j87ujp .framer-17kaaz4,.framer-6lu7R.framer-v-1j87ujp .framer-10dzhul,.framer-6lu7R.framer-v-1j87ujp .framer-1yl0uvt,.framer-6lu7R.framer-v-1j87ujp .framer-1wzaias,.framer-6lu7R.framer-v-1j87ujp .framer-svqu0j,.framer-6lu7R.framer-v-1j87ujp .framer-eisjmi,.framer-6lu7R.framer-v-1j87ujp .framer-qva0xa,.framer-6lu7R.framer-v-1j87ujp .framer-1ycxibr,.framer-6lu7R.framer-v-1j87ujp .framer-hch534,.framer-6lu7R.framer-v-1j87ujp .framer-1nkv90q,.framer-6lu7R.framer-v-1j87ujp .framer-3u744u,.framer-6lu7R.framer-v-1j87ujp .framer-1vtajp2,.framer-6lu7R.framer-v-1j87ujp .framer-8luj6t,.framer-6lu7R.framer-v-1j87ujp .framer-lspedu,.framer-6lu7R.framer-v-1j87ujp .framer-1l7qj8o,.framer-6lu7R.framer-v-1j87ujp .framer-1ddxy3n,.framer-6lu7R.framer-v-1j87ujp .framer-17tevti,.framer-6lu7R.framer-v-1j87ujp .framer-1bif0ia,.framer-6lu7R.framer-v-1j87ujp .framer-1pd83fe,.framer-6lu7R.framer-v-1j87ujp .framer-3zjnod,.framer-6lu7R.framer-v-vd3m82 .framer-bey8h2,.framer-6lu7R.framer-v-vd3m82 .framer-gnre4l,.framer-6lu7R.framer-v-vd3m82 .framer-wn3duw,.framer-6lu7R.framer-v-vd3m82 .framer-1aiyhd5,.framer-6lu7R.framer-v-vd3m82 .framer-1gjmtx8,.framer-6lu7R.framer-v-vd3m82 .framer-15ijxwj,.framer-6lu7R.framer-v-vd3m82 .framer-1aob4h2,.framer-6lu7R.framer-v-vd3m82 .framer-17kaaz4,.framer-6lu7R.framer-v-vd3m82 .framer-10dzhul,.framer-6lu7R.framer-v-vd3m82 .framer-1yl0uvt,.framer-6lu7R.framer-v-vd3m82 .framer-1wzaias,.framer-6lu7R.framer-v-vd3m82 .framer-svqu0j,.framer-6lu7R.framer-v-vd3m82 .framer-eisjmi,.framer-6lu7R.framer-v-vd3m82 .framer-qva0xa,.framer-6lu7R.framer-v-vd3m82 .framer-1ycxibr,.framer-6lu7R.framer-v-vd3m82 .framer-hch534,.framer-6lu7R.framer-v-vd3m82 .framer-3u744u,.framer-6lu7R.framer-v-vd3m82 .framer-1vtajp2,.framer-6lu7R.framer-v-vd3m82 .framer-8luj6t,.framer-6lu7R.framer-v-vd3m82 .framer-lspedu,.framer-6lu7R.framer-v-vd3m82 .framer-1l7qj8o,.framer-6lu7R.framer-v-vd3m82 .framer-1ddxy3n,.framer-6lu7R.framer-v-vd3m82 .framer-1bif0ia,.framer-6lu7R.framer-v-vd3m82 .framer-1pd83fe,.framer-6lu7R.framer-v-uknv7h .framer-bey8h2,.framer-6lu7R.framer-v-uknv7h .framer-gnre4l,.framer-6lu7R.framer-v-uknv7h .framer-wn3duw,.framer-6lu7R.framer-v-uknv7h .framer-1aiyhd5,.framer-6lu7R.framer-v-uknv7h .framer-1gjmtx8,.framer-6lu7R.framer-v-uknv7h .framer-15ijxwj,.framer-6lu7R.framer-v-uknv7h .framer-1aob4h2,.framer-6lu7R.framer-v-uknv7h .framer-17kaaz4,.framer-6lu7R.framer-v-uknv7h .framer-10dzhul,.framer-6lu7R.framer-v-uknv7h .framer-1wzaias,.framer-6lu7R.framer-v-uknv7h .framer-svqu0j,.framer-6lu7R.framer-v-uknv7h .framer-eisjmi,.framer-6lu7R.framer-v-uknv7h .framer-qva0xa,.framer-6lu7R.framer-v-uknv7h .framer-1ycxibr,.framer-6lu7R.framer-v-uknv7h .framer-hch534,.framer-6lu7R.framer-v-uknv7h .framer-3u744u,.framer-6lu7R.framer-v-uknv7h .framer-1vtajp2,.framer-6lu7R.framer-v-uknv7h .framer-8luj6t,.framer-6lu7R.framer-v-uknv7h .framer-lspedu,.framer-6lu7R.framer-v-uknv7h .framer-1l7qj8o,.framer-6lu7R.framer-v-uknv7h .framer-1ddxy3n,.framer-6lu7R.framer-v-uknv7h .framer-1bif0ia,.framer-6lu7R.framer-v-uknv7h .framer-1pd83fe,.framer-6lu7R.framer-v-d54ypv .framer-bey8h2,.framer-6lu7R.framer-v-d54ypv .framer-gnre4l,.framer-6lu7R.framer-v-d54ypv .framer-wn3duw,.framer-6lu7R.framer-v-d54ypv .framer-1aiyhd5,.framer-6lu7R.framer-v-d54ypv .framer-1gjmtx8,.framer-6lu7R.framer-v-d54ypv .framer-15ijxwj,.framer-6lu7R.framer-v-d54ypv .framer-1aob4h2,.framer-6lu7R.framer-v-d54ypv .framer-17kaaz4,.framer-6lu7R.framer-v-d54ypv .framer-10dzhul,.framer-6lu7R.framer-v-d54ypv .framer-1wzaias,.framer-6lu7R.framer-v-d54ypv .framer-svqu0j,.framer-6lu7R.framer-v-d54ypv .framer-eisjmi,.framer-6lu7R.framer-v-d54ypv .framer-qva0xa,.framer-6lu7R.framer-v-d54ypv .framer-1ycxibr,.framer-6lu7R.framer-v-d54ypv .framer-hch534,.framer-6lu7R.framer-v-d54ypv .framer-3u744u,.framer-6lu7R.framer-v-d54ypv .framer-1vtajp2,.framer-6lu7R.framer-v-d54ypv .framer-8luj6t,.framer-6lu7R.framer-v-d54ypv .framer-lspedu,.framer-6lu7R.framer-v-d54ypv .framer-1l7qj8o,.framer-6lu7R.framer-v-d54ypv .framer-1ddxy3n,.framer-6lu7R.framer-v-d54ypv .framer-1bif0ia,.framer-6lu7R.framer-v-d54ypv .framer-1pd83fe{flex:1 0 0;gap:0;width:1px;height:50px}.framer-6lu7R.framer-v-1j87ujp .framer-1juzhdt{aspect-ratio:unset;width:55px;height:60px;top:61px;left:95px}.framer-6lu7R.framer-v-vd3m82 .framer-1wy1y8y,.framer-6lu7R.framer-v-vd3m82 .framer-1nkv90q,.framer-6lu7R.framer-v-vd3m82 .framer-17tevti,.framer-6lu7R.framer-v-uknv7h .framer-1wy1y8y,.framer-6lu7R.framer-v-uknv7h .framer-1yl0uvt,.framer-6lu7R.framer-v-uknv7h .framer-1nkv90q,.framer-6lu7R.framer-v-uknv7h .framer-17tevti,.framer-6lu7R.framer-v-d54ypv .framer-1wy1y8y,.framer-6lu7R.framer-v-d54ypv .framer-1yl0uvt,.framer-6lu7R.framer-v-d54ypv .framer-1nkv90q,.framer-6lu7R.framer-v-d54ypv .framer-17tevti{will-change:unset;flex:1 0 0;gap:0;width:1px;height:50px}.framer-6lu7R.framer-v-vd3m82 .framer-3zjnod,.framer-6lu7R.framer-v-uknv7h .framer-3zjnod,.framer-6lu7R.framer-v-d54ypv .framer-3zjnod{flex:1 0 0;width:1px;height:50px}.framer-6lu7R.framer-v-vd3m82 .framer-1juzhdt{aspect-ratio:unset;width:55px;height:60px;top:61px;left:calc(49.7059% - 27.5px)}.framer-6lu7R.framer-v-uknv7h .framer-1juzhdt{aspect-ratio:unset;width:55px;height:60px;top:61px;left:calc(64.4118% - 27.5px)}.framer-6lu7R.framer-v-d54ypv .framer-1juzhdt{aspect-ratio:unset;width:55px;height:60px;top:61px;left:calc(78.5294% - 27.5px)}.framer-6lu7R[data-border=true]:after,.framer-6lu7R [data-border=true]:after{content:"";border-width:var(--border-top-width,0)var(--border-right-width,0)var(--border-bottom-width,0)var(--border-left-width,0);border-color:var(--border-color,none);border-style:var(--border-style,none);box-sizing:border-box;border-radius:inherit;corner-shape:inherit;pointer-events:none;width:100%;height:100%;position:absolute;top:0;left:0}@supports (aspect-ratio:1){body{--framer-aspect-ratio-supported:auto}}.framer-rynda.framer-4t92he,.framer-rynda .framer-4t92he{display:block}.framer-rynda.framer-1wczpdv{will-change:var(--framer-will-change-override,transform);flex-flow:column;place-content:center;align-items:center;gap:0;width:614px;height:384px;padding:0;display:flex;position:relative;overflow:hidden}.framer-rynda .framer-v8dcgw,.framer-rynda .framer-19s1qxv{z-index:1;flex:none;position:absolute;inset:0;overflow:visible}.framer-rynda .framer-1jw5624{overflow:var(--overflow-clip-fallback,clip);flex-flow:column;flex:none;place-content:flex-start;align-items:flex-start;gap:20px;padding:0;display:flex;position:absolute;inset:70px 20px 20px}.framer-rynda .framer-afiwfk,.framer-rynda .framer-12qc87d{height:auto;overflow:var(--overflow-clip-fallback,clip);will-change:var(--framer-will-change-filter-override,filter);flex:none;width:100%;position:relative}.framer-rynda .framer-17yk4ti{height:35px;overflow:var(--overflow-clip-fallback,clip);flex-flow:row;flex:none;place-content:center space-between;align-items:center;padding:0 10px 0 20px;display:flex;position:absolute;top:0;left:0;right:0}.framer-rynda .framer-18lx902{flex-flow:row;flex:none;place-content:center;align-items:center;gap:5px;width:min-content;height:min-content;padding:0;display:flex;position:relative;overflow:visible}.framer-rynda .framer-y6j9pz,.framer-rynda .framer-h0rdzk,.framer-rynda .framer-sz5y3v{aspect-ratio:1;height:var(--framer-aspect-ratio-supported,5px);flex:none;width:6px;position:relative;overflow:visible}.framer-rynda.framer-v-lraw28 .framer-1jw5624{aspect-ratio:1.79937;height:var(--framer-aspect-ratio-supported,319px);bottom:0;top:unset}.framer-rynda.framer-v-lraw28 .framer-17yk4ti{aspect-ratio:17.5429;height:var(--framer-aspect-ratio-supported,35px)}.framer-rynda.framer-v-lraw28 .framer-y6j9pz{order:0}.framer-rynda.framer-v-lraw28 .framer-h0rdzk{order:1}.framer-rynda.framer-v-lraw28 .framer-sz5y3v{order:2}.framer-rynda[data-border=true]:after,.framer-rynda [data-border=true]:after{content:"";border-width:var(--border-top-width,0)var(--border-right-width,0)var(--border-bottom-width,0)var(--border-left-width,0);border-color:var(--border-color,none);border-style:var(--border-style,none);box-sizing:border-box;border-radius:inherit;corner-shape:inherit;pointer-events:none;width:100%;height:100%;position:absolute;top:0;left:0}@supports (aspect-ratio:1){body{--framer-aspect-ratio-supported:auto}}.framer-Rvddr.framer-19dcltk,.framer-Rvddr .framer-19dcltk{display:block}.framer-Rvddr.framer-15pp3oj{will-change:var(--framer-will-change-override,transform);flex-flow:row;place-content:center;align-items:center;gap:10px;width:min-content;height:min-content;padding:0;display:flex;position:relative;overflow:hidden}.framer-Rvddr .framer-1u9c5ug{aspect-ratio:.475728;height:var(--framer-aspect-ratio-supported,410px);will-change:var(--framer-will-change-override,transform);z-index:1;flex-flow:column;flex:none;place-content:center space-between;align-items:center;width:195px;padding:0;display:flex;position:relative;overflow:hidden}.framer-Rvddr .framer-1eefmid,.framer-Rvddr .framer-zr1co9{flex-flow:row;flex:none;place-content:center space-between;align-items:center;width:100%;height:min-content;padding:4px 2px 0 24px;display:flex;position:relative;overflow:visible}.framer-Rvddr .framer-2r1eet,.framer-Rvddr .framer-qiizm5,.framer-Rvddr .framer-d914yg,.framer-Rvddr .framer-ae3mgn{white-space:pre;flex:none;width:auto;height:auto;position:relative}.framer-Rvddr .framer-1jdusjh,.framer-Rvddr .framer-yrly5f{aspect-ratio:2.64815;height:var(--framer-aspect-ratio-supported,26px);flex:none;width:69px;position:relative}.framer-Rvddr .framer-3nlz53-container{aspect-ratio:1;height:var(--framer-aspect-ratio-supported,250px);z-index:1;flex:none;position:absolute;bottom:20px;left:-27px;right:-28px}.framer-Rvddr .framer-q4kwjt{z-index:2;flex-flow:column;flex:none;place-content:flex-start center;align-items:flex-start;gap:5px;width:100%;height:130px;padding:25px 12px 35px;display:flex;position:relative;overflow:hidden}.framer-Rvddr .framer-rus32c{z-index:1;flex-flow:row;flex:none;place-content:center flex-start;align-items:center;gap:5px;width:171px;height:min-content;padding:0;display:flex;position:relative;overflow:visible}.framer-Rvddr .framer-1q640gp{aspect-ratio:1;height:var(--framer-aspect-ratio-supported,50px);flex:none;gap:0;width:45px;position:relative;overflow:visible}.framer-Rvddr .framer-r293zq{flex-flow:column;flex:1 0 0;place-content:flex-start center;align-items:flex-start;gap:6px;width:1px;height:min-content;padding:0;display:flex;position:relative;overflow:visible}.framer-Rvddr .framer-v9g56t{-webkit-user-select:none;user-select:none;white-space:pre-wrap;word-break:break-word;word-wrap:break-word;flex:none;width:100%;height:auto;position:relative}.framer-Rvddr .framer-ezn2ux{z-index:1;flex-flow:row;flex:none;place-content:center;align-items:center;gap:10px;width:100px;height:100px;padding:0;display:flex;position:absolute;top:93px;left:calc(49.7436% - 50px);overflow:visible}.framer-Rvddr .framer-nqccml-container{aspect-ratio:1;height:var(--framer-aspect-ratio-supported,100px);z-index:1;flex:none;width:100px;position:absolute;top:50%;left:50%}.framer-Rvddr .framer-11c2daa{will-change:var(--framer-will-change-override,transform);z-index:1;flex-flow:column;flex:none;place-content:center flex-start;align-items:center;gap:0;width:195px;padding:0;display:flex;position:absolute;top:0;bottom:0;left:196px;overflow:hidden}.framer-Rvddr .framer-1byyn26{flex-flow:column;flex:none;place-content:center;align-items:center;gap:16px;width:100%;height:min-content;padding:20px 12px;display:flex;position:relative;overflow:visible}.framer-Rvddr .framer-1gzf1tv{flex-flow:row;flex:none;place-content:center space-between;align-items:center;width:100%;height:min-content;padding:0;display:flex;position:relative;overflow:visible}.framer-Rvddr .framer-qpj6l4{flex-flow:row;flex:none;place-content:center flex-start;align-items:center;gap:8px;width:min-content;height:min-content;padding:0;display:flex;position:relative;overflow:visible}.framer-Rvddr .framer-1j0fyut,.framer-Rvddr .framer-17wh4qt{flex-flow:row;flex:none;place-content:center;align-items:center;gap:10px;width:min-content;height:min-content;padding:0;display:flex;position:relative;overflow:hidden}.framer-Rvddr .framer-a02l3g{aspect-ratio:1;height:var(--framer-aspect-ratio-supported,20px);will-change:var(--framer-will-change-override,transform);z-index:1;flex:none;width:15px;position:absolute;top:50%;left:50%;overflow:hidden}.framer-Rvddr .framer-xdt6pu{aspect-ratio:1;height:var(--framer-aspect-ratio-supported,30px);will-change:var(--framer-will-change-override,transform);flex:none;gap:10px;width:25px;position:relative;overflow:hidden}.framer-Rvddr .framer-1du0x10{flex-flow:column;flex:none;place-content:flex-start center;align-items:flex-start;gap:2px;width:min-content;height:min-content;padding:0;display:flex;position:relative;overflow:visible}.framer-Rvddr .framer-cu2xy5{cursor:pointer;white-space:pre;flex:none;width:auto;height:auto;position:relative}.framer-Rvddr .framer-roosg4{aspect-ratio:1;height:var(--framer-aspect-ratio-supported,24px);flex:none;width:24px;position:relative}.framer-Rvddr .framer-1qtjuzy{flex-flow:column;flex:none;place-content:center;align-items:center;gap:10px;width:min-content;height:min-content;padding:0;display:flex;position:relative;overflow:visible}.framer-Rvddr .framer-1l462jr-container{-webkit-user-select:none;user-select:none;z-index:-1;flex:none;width:195px;height:180px;position:relative}.framer-Rvddr .framer-j2xmg7{z-index:1;flex:none;position:absolute;inset:0;overflow:visible}.framer-Rvddr .framer-1ywuxod{will-change:var(--framer-will-change-override,transform);flex-flow:column;flex:1 0 0;place-content:flex-start;align-items:flex-start;gap:10px;width:100%;height:1px;padding:12px 12px 25px;display:flex;position:relative;overflow:hidden}.framer-Rvddr .framer-ha5flv{flex-flow:row;flex:none;place-content:center space-between;align-items:center;width:100%;height:min-content;padding:0;display:flex;position:relative;overflow:hidden}.framer-Rvddr .framer-dpcjij{will-change:var(--framer-will-change-override,transform);flex-flow:row;flex:none;place-content:center;align-items:center;gap:0;width:min-content;height:min-content;padding:2px 8px;display:flex;position:relative;overflow:hidden}.framer-Rvddr .framer-jty69,.framer-Rvddr .framer-bs6nny,.framer-Rvddr .framer-xhf431{height:min-content;overflow:var(--overflow-clip-fallback,clip);flex-flow:row;flex:none;place-content:center flex-start;align-items:center;gap:0;width:100%;padding:0;display:flex;position:relative}.framer-Rvddr .framer-7tkdd2,.framer-Rvddr .framer-i4o7eo,.framer-Rvddr .framer-11zi4aj{white-space:pre-wrap;word-break:break-word;word-wrap:break-word;flex:none;width:20px;height:auto;position:relative}.framer-Rvddr .framer-ljfu9a,.framer-Rvddr .framer-16kt3ap,.framer-Rvddr .framer-sx5czg{height:min-content;overflow:var(--overflow-clip-fallback,clip);flex-flow:row;flex:1 0 0;place-content:center flex-start;align-items:center;gap:8px;width:1px;padding:0;display:flex;position:relative}.framer-Rvddr .framer-15lphiv{aspect-ratio:1;height:var(--framer-aspect-ratio-supported,5px);will-change:var(--framer-will-change-override,transform);z-index:1;flex:none;width:10px;position:absolute;top:50%;left:50%;overflow:hidden}.framer-Rvddr .framer-1ahk4zd{aspect-ratio:1;height:var(--framer-aspect-ratio-supported,20px);will-change:var(--framer-will-change-override,transform);flex:none;gap:10px;width:15px;position:relative;overflow:hidden}.framer-Rvddr .framer-bgxrzn,.framer-Rvddr .framer-3ccm97,.framer-Rvddr .framer-1qd67za{--text-truncation-display-inline-for-safari-16:inline;--text-truncation-display-none-for-safari-16:none;--text-truncation-line-break-for-safari-16:"\a ";-webkit-line-clamp:1;white-space:pre-line;word-break:break-word;word-wrap:break-word;-webkit-box-orient:vertical;flex:1 0 0;width:1px;height:auto;display:-webkit-box;position:relative}.framer-Rvddr .framer-1pv1pr4,.framer-Rvddr .framer-1f7phla,.framer-Rvddr .framer-19gknt2{-webkit-user-select:none;user-select:none;pointer-events:auto;white-space:pre;flex:none;width:auto;height:auto;position:relative}.framer-Rvddr .framer-bh9t3q,.framer-Rvddr .framer-1wz9d72{aspect-ratio:1;height:var(--framer-aspect-ratio-supported,25px);will-change:var(--framer-will-change-override,transform);flex:none;width:15px;position:relative;overflow:hidden}.framer-Rvddr.framer-v-tv88py.framer-15pp3oj{min-width:195px;min-height:410px}.framer-Rvddr.framer-v-tv88py .framer-1u9c5ug{aspect-ratio:unset;height:410px;position:absolute;top:0;right:195px}.framer-Rvddr.framer-v-tv88py .framer-11c2daa{left:0}.framer-Rvddr.framer-v-tv88py .framer-zr1co9,.framer-Rvddr.framer-v-tv88py .framer-ha5flv,.framer-Rvddr.framer-v-tv88py .framer-17wh4qt{order:0}.framer-Rvddr.framer-v-tv88py .framer-1byyn26,.framer-Rvddr.framer-v-tv88py .framer-1j0fyut,.framer-Rvddr.framer-v-tv88py .framer-jty69,.framer-Rvddr.framer-v-tv88py .framer-bgxrzn{order:1}.framer-Rvddr.framer-v-tv88py .framer-1du0x10,.framer-Rvddr.framer-v-tv88py .framer-bs6nny{order:2}.framer-Rvddr.framer-v-tv88py .framer-1qtjuzy,.framer-Rvddr.framer-v-tv88py .framer-xhf431{order:3}.framer-Rvddr.framer-v-tv88py .framer-1ywuxod{order:4}.framer-Rvddr.framer-v-tv88py .framer-dpcjij{padding:3px 8px 2px}.framer-Rvddr.framer-v-tv88py .framer-15lphiv{top:47%;left:47%}.framer-Rvddr[data-border=true]:after,.framer-Rvddr [data-border=true]:after{content:"";border-width:var(--border-top-width,0)var(--border-right-width,0)var(--border-bottom-width,0)var(--border-left-width,0);border-color:var(--border-color,none);border-style:var(--border-style,none);box-sizing:border-box;border-radius:inherit;corner-shape:inherit;pointer-events:none;width:100%;height:100%;position:absolute;top:0;left:0}@supports (aspect-ratio:1){body{--framer-aspect-ratio-supported:auto}}.framer-PivRV.framer-19mwe9p,.framer-PivRV .framer-19mwe9p{display:block}.framer-PivRV.framer-1jlvnyn{will-change:var(--framer-will-change-override,transform);flex-flow:row;place-content:center;align-items:center;gap:10px;width:54px;height:54px;padding:0;display:flex;position:relative;overflow:hidden}.framer-PivRV .framer-1b7z4rd{white-space:pre;flex:none;width:auto;height:auto;position:relative}@supports (background:-webkit-named-image(i)) and (not (font-palette:dark)){.framer-PivRV.framer-1jlvnyn{gap:0}.framer-PivRV.framer-1jlvnyn>*{margin:0 5px}.framer-PivRV.framer-1jlvnyn>:first-child{margin-left:0}.framer-PivRV.framer-1jlvnyn>:last-child{margin-right:0}}.framer-PivRV.framer-v-4p28e0.framer-1jlvnyn,.framer-PivRV.framer-v-5jbew8.framer-1jlvnyn,.framer-PivRV.framer-v-3667eq.framer-1jlvnyn{aspect-ratio:1;height:var(--framer-aspect-ratio-supported,120px);width:120px}@supports (aspect-ratio:1){body{--framer-aspect-ratio-supported:auto}}.framer-QBqi5.framer-a7lw5i,.framer-QBqi5 .framer-a7lw5i{display:block}.framer-QBqi5.framer-1ux3a9m{cursor:pointer;flex-flow:row;place-content:center;align-items:center;gap:0;width:min-content;height:45px;padding:6px 12px;display:flex;position:relative;overflow:visible}.framer-QBqi5 .framer-11sjhwy{-webkit-user-select:none;user-select:none;white-space:pre;flex:none;width:auto;height:auto;position:relative}.framer-QBqi5 .framer-1w4ff6s{aspect-ratio:1;height:var(--framer-aspect-ratio-supported,20px);flex:none;gap:10px;width:20px;position:relative;overflow:hidden}.framer-QBqi5 .framer-1fb06x5{flex:none;position:absolute;inset:0;overflow:visible}.framer-QBqi5 .framer-kual65{aspect-ratio:1;height:var(--framer-aspect-ratio-supported,2px);flex:none;width:2px;position:absolute;top:0;left:50%;overflow:visible}.framer-QBqi5.framer-v-1jiw157.framer-1ux3a9m{cursor:unset}.framer-QBqi5.framer-v-1jiw157 .framer-1fb06x5{overflow:hidden}.framer-QBqi5.framer-v-1sb0wl4.framer-1ux3a9m{cursor:unset;height:40px}.framer-QBqi5.framer-v-1j1etm0.framer-1ux3a9m,.framer-QBqi5.framer-v-11wyip8.framer-1ux3a9m{cursor:unset;height:30px}.framer-QBqi5.framer-v-1j1etm0 .framer-11sjhwy,.framer-QBqi5.framer-v-11wyip8 .framer-11sjhwy{-webkit-user-select:unset;user-select:unset}.framer-QBqi5[data-border=true]:after,.framer-QBqi5 [data-border=true]:after{content:"";border-width:var(--border-top-width,0)var(--border-right-width,0)var(--border-bottom-width,0)var(--border-left-width,0);border-color:var(--border-color,none);border-style:var(--border-style,none);box-sizing:border-box;border-radius:inherit;corner-shape:inherit;pointer-events:none;width:100%;height:100%;position:absolute;top:0;left:0}@supports (aspect-ratio:1){body{--framer-aspect-ratio-supported:auto}}.framer-VIhIq.framer-1qsqqpx,.framer-VIhIq .framer-1qsqqpx{display:block}.framer-VIhIq.framer-1ai4qgc{cursor:pointer;will-change:var(--framer-will-change-override,transform);flex-flow:row;place-content:center;align-items:center;gap:10px;width:min-content;height:min-content;padding:3px;text-decoration:none;display:flex;position:relative;overflow:hidden}.framer-VIhIq .framer-kz75q8{will-change:var(--framer-will-change-override,transform);z-index:2;flex-flow:row;flex:none;place-content:center;align-items:center;gap:6px;width:min-content;height:min-content;padding:10px 16px;display:flex;position:relative;overflow:hidden}.framer-VIhIq .framer-hutcj2{white-space:pre;z-index:2;flex:none;width:auto;height:auto;position:relative}.framer-VIhIq .framer-tw7yg8-container{z-index:1;flex:none;width:100%;height:100%;position:absolute;top:0%;right:0}.framer-VIhIq .framer-rlki9w{z-index:1;flex:none;height:8px;position:absolute;top:calc(50% - 4px);left:-16px;right:-16px;overflow:hidden}@supports (aspect-ratio:1){body{--framer-aspect-ratio-supported:auto}}.framer-yBdyb.framer-1unnm3a,.framer-yBdyb .framer-1unnm3a{display:block}.framer-yBdyb.framer-1qrqrh3{flex-flow:row;place-content:center;align-items:center;gap:20px;width:1200px;height:65px;padding:15px 0;display:flex;position:relative;overflow:hidden}.framer-yBdyb .framer-1sxis7g{flex-flow:row;flex:1 0 0;place-content:center space-between;align-items:center;width:1px;max-width:1200px;height:min-content;padding:0 50px;display:flex;position:relative;overflow:visible}.framer-yBdyb .framer-1mpirk0{flex-flow:row;flex:none;place-content:center;align-items:center;gap:5px;width:min-content;height:min-content;padding:0;display:flex;position:relative;overflow:visible}.framer-yBdyb .framer-1xev7jb{flex-flow:row;flex:none;place-content:center;align-items:center;gap:10px;width:min-content;height:min-content;padding:0;text-decoration:none;display:flex;position:relative;overflow:visible}.framer-yBdyb .framer-s5yset,.framer-yBdyb .framer-ix56ew,.framer-yBdyb .framer-sc64g5{flex-flow:row;flex:none;place-content:center;align-items:center;gap:6px;width:min-content;height:min-content;padding:0;display:flex;position:relative;overflow:visible}.framer-yBdyb .framer-1b1rmo9{flex:none;width:40px;height:40px;position:relative;overflow:visible}.framer-yBdyb .framer-16i8842{-webkit-user-select:none;user-select:none;white-space:pre;flex:none;width:auto;height:auto;position:relative}.framer-yBdyb .framer-mdv44t{flex:none;width:40px;height:40px;position:relative;overflow:hidden}.framer-yBdyb .framer-4esrug{will-change:var(--framer-will-change-override,transform);flex:none;width:20px;height:2px;position:absolute;top:calc(62.5% - 1px);left:calc(50% - 10px);overflow:hidden}.framer-yBdyb .framer-mhmea4{will-change:var(--framer-will-change-override,transform);flex:none;width:20px;height:2px;position:absolute;top:calc(37.5% - 1px);left:calc(50% - 10px);overflow:hidden}.framer-yBdyb .framer-jqyc51-container,.framer-yBdyb .framer-1qpm724-container,.framer-yBdyb .framer-ra9j7o-container{z-index:1;flex:none;width:auto;height:auto;position:relative}.framer-yBdyb .framer-107qel3{flex-flow:row;flex:none;place-content:center;align-items:center;gap:20px;width:min-content;height:min-content;padding:0;display:flex;position:relative;overflow:visible}.framer-yBdyb .framer-10geuer,.framer-yBdyb .framer-1j30j8g,.framer-yBdyb .framer-jw4jrn,.framer-yBdyb .framer-16h4ypn,.framer-yBdyb .framer-zsuqjt{-webkit-user-select:none;user-select:none;white-space:pre;z-index:2;flex:none;width:auto;height:auto;position:relative}.framer-yBdyb .framer-xabwaq{z-index:0;flex-flow:column;flex:none;place-content:center;align-items:center;gap:10px;width:min-content;height:min-content;padding:0;display:flex;position:absolute;top:50%;left:8%;overflow:visible}.framer-yBdyb .framer-tlbgl3{aspect-ratio:3;height:var(--framer-aspect-ratio-supported,30px);z-index:0;flex:none;width:90px;position:relative;overflow:visible}.framer-yBdyb .framer-56vpgs{flex-flow:row;flex:none;place-content:center;align-items:center;gap:11px;width:min-content;height:min-content;padding:0;display:flex;position:relative;overflow:visible}.framer-yBdyb .framer-1gzaeff-container{flex:none;width:auto;height:auto;position:relative}.framer-yBdyb .framer-30m22i{z-index:1;flex:none;height:1px;position:absolute;bottom:0;left:0;right:0;overflow:visible}.framer-yBdyb.framer-v-1c51gs6.framer-1qrqrh3{height:min-content;max-height:calc(var(--framer-viewport-height,100vh)*1);overscroll-behavior:contain;flex-direction:column;justify-content:flex-start;gap:0;width:390px;padding:0 0 15px;overflow:auto}.framer-yBdyb.framer-v-1c51gs6 .framer-1sxis7g{flex-direction:column;flex:none;width:100%;padding:11px 20px 0}.framer-yBdyb.framer-v-1c51gs6 .framer-1mpirk0{gap:unset;order:0;justify-content:space-between;width:100%}.framer-yBdyb.framer-v-1c51gs6 .framer-mdv44t{cursor:pointer;order:1;width:44px;height:44px}.framer-yBdyb.framer-v-1c51gs6 .framer-4esrug,.framer-yBdyb.framer-v-1c51gs6 .framer-mhmea4{top:calc(50% - 1px)}.framer-yBdyb.framer-v-1c51gs6 .framer-jqyc51-container,.framer-yBdyb.framer-v-lf7nxf .framer-1xev7jb{order:0}.framer-yBdyb.framer-v-1c51gs6 .framer-107qel3{flex-direction:column;order:2;align-content:flex-start;align-items:flex-start;gap:5px;width:100%;padding:20px}.framer-yBdyb.framer-v-1c51gs6 .framer-1j30j8g{cursor:pointer;order:1}.framer-yBdyb.framer-v-1c51gs6 .framer-jw4jrn{cursor:pointer;order:3}.framer-yBdyb.framer-v-1c51gs6 .framer-16h4ypn{cursor:pointer;order:0}.framer-yBdyb.framer-v-1c51gs6 .framer-zsuqjt{cursor:pointer;order:4}.framer-yBdyb.framer-v-1c51gs6 .framer-xabwaq{order:5}.framer-yBdyb.framer-v-lf7nxf.framer-1qrqrh3{flex-direction:column;justify-content:flex-start;gap:0;width:390px}.framer-yBdyb.framer-v-lf7nxf .framer-1sxis7g{flex-direction:column;width:100%;height:1px;padding:0 20px}.framer-yBdyb.framer-v-lf7nxf .framer-1mpirk0{gap:unset;flex:1 0 0;justify-content:space-between;width:100%;height:1px}.framer-yBdyb.framer-v-lf7nxf .framer-sc64g5{order:1;gap:0;height:100%}.framer-yBdyb.framer-v-lf7nxf .framer-mdv44t{cursor:pointer;order:2;width:44px;height:44px}.framer-yBdyb.framer-v-lf7nxf .framer-1qpm724-container{order:1}@supports (aspect-ratio:1){body{--framer-aspect-ratio-supported:auto}}.framer-IHNPk.framer-1qzi5cu,.framer-IHNPk .framer-1qzi5cu{display:block}.framer-IHNPk.framer-14s5yp1{cursor:pointer;flex-flow:row;place-content:center;align-items:center;gap:0;width:min-content;height:min-content;padding:0;display:flex;position:relative;overflow:visible}.framer-IHNPk .framer-1htholk-container{z-index:2;flex:none;width:100%;height:100%;position:absolute;top:0%;left:0}.framer-IHNPk .framer-ppjoza-container{z-index:1;flex:none;width:auto;height:auto;position:relative}.framer-IHNPk.framer-v-1phvlsg .framer-1htholk-container,.framer-IHNPk.framer-v-7ip55t .framer-1htholk-container,.framer-IHNPk.framer-v-7ip55t .framer-ppjoza-container{width:60px}.framer-IHNPk.framer-v-1phvlsg .framer-ppjoza-container{width:60px;height:40px}.framer-locale-picker{position:relative}.framer-locale-picker label{white-space:nowrap;clip:rect(0 0 0 0);clip-path:inset(50%);width:1px;height:1px;margin:-1px;position:absolute;overflow:hidden}.framer-locale-picker select{appearance:none;opacity:0;position:absolute;inset:0}.framer-locale-picker .input{pointer-events:none;background-color:var(--framer-background-color);height:100%;color:var(--framer-color);border-color:var(--framer-border-color);justify-content:center;align-items:center;display:flex;overflow:hidden}.framer-locale-picker select:focus-visible+.input{outline:var(--framer-focus-outline,none);outline-offset:var(--framer-focus-outline-offset)}.framer-locale-picker:hover .input{background-color:var(--framer-hover-background-color,var(--framer-background-color));color:var(--framer-hover-color,var(--framer-color));border-color:var(--framer-hover-border-color,var(--framer-border-color))}.framer-locale-picker .title{white-space:nowrap;text-overflow:ellipsis;flex:auto;overflow:hidden}.framer-locale-picker .icon,.framer-locale-picker .caret{align-items:center;display:flex}@supports (aspect-ratio:1){body{--framer-aspect-ratio-supported:auto}}.framer-b4Y8Q.framer-7dzuuw,.framer-b4Y8Q .framer-7dzuuw{display:block}.framer-b4Y8Q.framer-mx33dg{flex-flow:row;place-content:center;align-items:center;gap:4px;width:min-content;height:40px;padding:12px 18px;display:flex;position:relative;overflow:visible}.framer-b4Y8Q .framer-aatnuk{flex-flow:column;flex:none;place-content:center;align-items:center;gap:0;width:16px;height:100%;padding:0;display:flex;position:absolute;top:0%;left:18px;overflow:hidden}.framer-b4Y8Q .framer-1lohon2-container{z-index:1;flex:none;height:16px;position:absolute;top:-16px;left:0;right:0}.framer-b4Y8Q .framer-p27y0f-container{z-index:1;flex:none;height:16px;position:absolute;top:calc(50% - 8px);left:0;right:0}.framer-b4Y8Q .framer-1y5myjb{-webkit-user-select:none;user-select:none;flex-flow:row;flex:none;place-content:center;align-items:center;gap:0;width:min-content;height:min-content;padding:0 0 0 24px;display:flex;position:relative;overflow:visible}.framer-b4Y8Q .framer-1qlc7j5{white-space:pre;flex:none;width:auto;height:auto;position:relative}.framer-b4Y8Q .framer-fbwe8o-container{flex:none;width:14px;height:14px;position:relative}.framer-b4Y8Q.framer-v-iy2kd1 .framer-1lohon2-container{top:calc(50% - 8px)}.framer-b4Y8Q.framer-v-iy2kd1 .framer-p27y0f-container{bottom:-16px;top:unset}@supports (aspect-ratio:1){body{--framer-aspect-ratio-supported:auto}}.framer-5aG2b.framer-5msxip,.framer-5aG2b .framer-5msxip{display:block}.framer-5aG2b.framer-6byh8j{flex-flow:column;place-content:center;align-items:center;gap:50px;width:1200px;height:min-content;padding:50px;display:flex;position:relative;overflow:visible}.framer-5aG2b .framer-19148m5{z-index:3;flex-flow:column;flex:none;place-content:flex-start;align-items:flex-start;gap:30px;width:100%;max-width:1260px;height:min-content;padding:0;display:flex;position:relative;overflow:visible}.framer-5aG2b .framer-182xpzk{flex-flow:row;flex:none;place-content:flex-start;align-items:flex-start;gap:100px;width:100%;height:min-content;padding:0;display:flex;position:relative;overflow:visible}.framer-5aG2b .framer-16jmwgy{flex-flow:column;flex:1 0 0;place-content:flex-start center;align-items:flex-start;gap:0;width:1px;height:min-content;padding:0;display:flex;position:relative;overflow:visible}.framer-5aG2b .framer-bv2qjn{flex-flow:row;flex:none;place-content:center flex-start;align-items:center;gap:10px;width:min-content;height:min-content;padding:0;text-decoration:none;display:flex;position:relative;overflow:visible}.framer-5aG2b .framer-1kaa7eg{aspect-ratio:1;height:var(--framer-aspect-ratio-supported,45px);flex:none;gap:0;width:55px;position:relative;overflow:visible}.framer-5aG2b .framer-1nx9cvm{flex-flow:column;flex:none;place-content:flex-start center;align-items:flex-start;gap:6px;width:min-content;height:min-content;padding:0;display:flex;position:relative;overflow:visible}.framer-5aG2b .framer-1y2704p{-webkit-user-select:none;user-select:none;white-space:pre-wrap;word-break:break-word;word-wrap:break-word;flex:none;width:160px;height:auto;position:relative}.framer-5aG2b .framer-b0gf87{flex-flow:row;flex:1 0 0;place-content:flex-start;align-items:flex-start;gap:50px;width:1px;height:min-content;padding:0;display:flex;position:relative;overflow:visible}.framer-5aG2b .framer-1w7dunj,.framer-5aG2b .framer-1w0a12k{flex-flow:column;flex:1 0 0;place-content:flex-start;align-items:flex-start;gap:20px;width:1px;height:min-content;padding:15px 0 0;display:flex;position:relative;overflow:visible}.framer-5aG2b .framer-u0fr3n,.framer-5aG2b .framer-18lilq0{height:min-content;overflow:var(--overflow-clip-fallback,clip);flex-flow:column;flex:none;place-content:flex-start;align-items:flex-start;gap:16px;width:100%;padding:0;display:flex;position:relative}.framer-5aG2b .framer-16texl7,.framer-5aG2b .framer-y6sekf,.framer-5aG2b .framer-1dbhj8g,.framer-5aG2b .framer-1xbmmml,.framer-5aG2b .framer-q3a1ea,.framer-5aG2b .framer-xuvrcz,.framer-5aG2b .framer-1s6zph0,.framer-5aG2b .framer-122ntwf,.framer-5aG2b .framer-1e5x4w{white-space:pre-wrap;word-break:break-word;word-wrap:break-word;flex:none;width:100%;height:auto;position:relative}.framer-5aG2b .framer-iwvqdv{flex:none;width:100%;height:1px;position:relative;overflow:visible}.framer-5aG2b .framer-1n34c97{flex-flow:row;flex:none;place-content:center;align-items:center;gap:10px;width:100%;height:min-content;padding:0;display:flex;position:relative;overflow:visible}.framer-5aG2b .framer-jgpy6s,.framer-5aG2b .framer-dsecgq{white-space:pre-wrap;word-break:break-word;word-wrap:break-word;flex:1 0 0;width:1px;height:auto;position:relative}.framer-5aG2b.framer-v-1m2mt4u.framer-6byh8j{width:810px}.framer-5aG2b.framer-v-1m2mt4u .framer-19148m5{gap:50px}.framer-5aG2b.framer-v-1m2mt4u .framer-182xpzk{flex-direction:column;gap:30px}.framer-5aG2b.framer-v-1m2mt4u .framer-16jmwgy,.framer-5aG2b.framer-v-i7q3np .framer-16jmwgy,.framer-5aG2b.framer-v-i7q3np .framer-1w7dunj,.framer-5aG2b.framer-v-i7q3np .framer-1w0a12k,.framer-5aG2b.framer-v-i7q3np .framer-jgpy6s,.framer-5aG2b.framer-v-i7q3np .framer-dsecgq{flex:none;width:100%}.framer-5aG2b.framer-v-1m2mt4u .framer-b0gf87{align-content:unset;align-items:unset;flex:none;grid-template-rows:repeat(1,minmax(0,1fr));grid-template-columns:repeat(2,minmax(50px,1fr));grid-auto-rows:minmax(0,1fr);justify-content:center;width:100%;display:grid}.framer-5aG2b.framer-v-1m2mt4u .framer-1w7dunj,.framer-5aG2b.framer-v-1m2mt4u .framer-1w0a12k{flex:none;place-self:start;width:100%}.framer-5aG2b.framer-v-i7q3np.framer-6byh8j{width:360px;padding:30px 20px 100px}.framer-5aG2b.framer-v-i7q3np .framer-182xpzk{flex-direction:column;gap:20px}.framer-5aG2b.framer-v-i7q3np .framer-b0gf87{flex-direction:column;flex:none;gap:20px;width:100%}.framer-5aG2b.framer-v-i7q3np .framer-16texl7{order:0}.framer-5aG2b.framer-v-i7q3np .framer-1dbhj8g{order:3}.framer-5aG2b.framer-v-i7q3np .framer-1xbmmml{order:4}.framer-5aG2b.framer-v-i7q3np .framer-q3a1ea{order:2}.framer-5aG2b.framer-v-i7q3np .framer-xuvrcz{order:5}.framer-5aG2b.framer-v-i7q3np .framer-1n34c97{flex-direction:column;align-content:flex-start;align-items:flex-start}.framer-XGOQY .framer-styles-preset-1klh3n:not(.rich-text-wrapper),.framer-XGOQY .framer-styles-preset-1klh3n.rich-text-wrapper a{--framer-link-current-text-color:#fafafa;--framer-link-current-text-decoration:none;--framer-link-hover-text-color:#fafafa;--framer-link-hover-text-decoration:underline;--framer-link-text-color:#fff;--framer-link-text-decoration:none}

[aria-label="chrome-smooth"] {
  transform: translateZ(0);
  will-change: transform;
}

:root body { background: rgb(0, 0, 0); }
html body { background: rgb(255, 255, 255); }

.framer-6jWyo.framer-n0ccwk.framer-v-n0ccwk.framer-bmpgw8.__framer-badge { display:none
!important;
}
