{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/VTUDdizacRHpwbkOamr7/AykinQJbgwl92LvMGZwu/constants.js", "ssg:https://framerusercontent.com/modules/afBE9Yx1W6bY5q32qPxe/m3q7puE2tbo1S2C0s0CT/useRenderTarget.js", "ssg:https://framerusercontent.com/modules/5SM58HxZHxjjv7aLMOgQ/WXz9i6mVki0bBCrKdqB3/propUtils.js", "ssg:https://framerusercontent.com/modules/o1PI5S8YtkA5bP5g4dFz/9zLIz4fn80IR9zpOx18Q/Embed.js", "ssg:https://framerusercontent.com/modules/6ubNi1EemomXEiwnXY6F/QQnDcG7qO9vrKyeIT2fd/dqVyoEukj.js", "ssg:https://framerusercontent.com/modules/gh5xmpM9GHT9MXnnMpPc/yx3Yu3CvNlklDmNPtEF9/Animator.js", "ssg:https://framerusercontent.com/modules/c4TgUvgfuUBG6xwANPLi/hyAkGa7lGW2pazVUlgOY/GF58od4uD.js", "ssg:https://framerusercontent.com/modules/2PcM9PPioIzj7wE6FE8K/QGEhdZQ1vfHH0F4PSl9M/N9EXhGAlu.js", "ssg:https://framerusercontent.com/modules/TTWGFEwGpL6jMasdS4PO/k9RX25kHSZILfQfIYT4I/np9vbxdxd.js", "ssg:https://framerusercontent.com/modules/9y2mlZlkx7t7AJcMwzGh/DSY3svDKvwAz5sWZjZgy/ojTGWuIaR-0.js", "ssg:https://framerusercontent.com/modules/9y2mlZlkx7t7AJcMwzGh/DSY3svDKvwAz5sWZjZgy/ojTGWuIaR.js", "ssg:https://framerusercontent.com/modules/wh7CB6swVUeFphNlIihE/LvAfc3lql4AoSwd27Ddz/ojTGWuIaR.js", "ssg:https://framerusercontent.com/modules/TdVEqqxLH0oWZXmFtvuW/RLZPORFjBAcHM3nXHWuc/QD0lFU70_-0.js", "ssg:https://framerusercontent.com/modules/TdVEqqxLH0oWZXmFtvuW/RLZPORFjBAcHM3nXHWuc/QD0lFU70_.js", "ssg:https://framerusercontent.com/modules/7HOY2MihTv80iesPG4ew/IFhP3Vw5c4rWyyNOvx4B/QD0lFU70_.js", "ssg:https://framerusercontent.com/modules/VF7Z0VbEB3AE1vV3tWtK/IeA6inwAzhWJ91eaklWZ/R0OEqV3EP-0.js", "ssg:https://framerusercontent.com/modules/VF7Z0VbEB3AE1vV3tWtK/IeA6inwAzhWJ91eaklWZ/R0OEqV3EP.js", "ssg:https://framerusercontent.com/modules/mieQXWxmyMLqA3ArxdpR/7HaDSblhgEhc46aFwCWb/R0OEqV3EP.js", "ssg:https://framerusercontent.com/modules/jZpQ9BN1Lpo5LaO5C9Qb/rGUbNwCegtV3iagTJ0kK/zrx8mtaFh.js", "ssg:https://framerusercontent.com/modules/LTSk6dluGOIJnfqZ8gly/wBm9wrWqb783aLMTA11c/e5HDb2LUO.js", "ssg:https://framerusercontent.com/modules/wTHhghGRGR4gTu6EuMPC/CCIhJBiGkyRJkdQfhi0T/e5HDb2LUO.js"],
  "sourcesContent": ["import { ControlType } from \"framer\";\nexport const fontStack = `\"Inter\", system-ui, -apple-system, BlinkMacSystemFont, \"Segoe UI\", Roboto, Helvetica, Arial, sans-serif, \"Apple Color Emoji\", \"Segoe UI Emoji\", \"Segoe UI Symbol\"`;\nexport const containerStyles = {\n    position: \"relative\",\n    width: \"100%\",\n    height: \"100%\",\n    display: \"flex\",\n    justifyContent: \"center\",\n    alignItems: \"center\"\n};\nexport const emptyStateStyle = {\n    ...containerStyles,\n    borderRadius: 6,\n    background: \"rgba(136, 85, 255, 0.3)\",\n    color: \"#85F\",\n    border: \"1px dashed #85F\",\n    flexDirection: \"column\"\n};\nexport const defaultEvents = {\n    onClick: {\n        type: ControlType.EventHandler\n    },\n    onMouseEnter: {\n        type: ControlType.EventHandler\n    },\n    onMouseLeave: {\n        type: ControlType.EventHandler\n    }\n};\nexport const fontSizeOptions = {\n    type: ControlType.Number,\n    title: \"Font Size\",\n    min: 2,\n    max: 200,\n    step: 1,\n    displayStepper: true\n};\nexport const fontControls = {\n    font: {\n        type: ControlType.Boolean,\n        title: \"Font\",\n        defaultValue: false,\n        disabledTitle: \"Default\",\n        enabledTitle: \"Custom\"\n    },\n    fontFamily: {\n        type: ControlType.String,\n        title: \"Family\",\n        placeholder: \"Inter\",\n        hidden: ({ font  })=>!font\n    },\n    fontWeight: {\n        type: ControlType.Enum,\n        title: \"Weight\",\n        options: [\n            100,\n            200,\n            300,\n            400,\n            500,\n            600,\n            700,\n            800,\n            900\n        ],\n        optionTitles: [\n            \"Thin\",\n            \"Extra-light\",\n            \"Light\",\n            \"Regular\",\n            \"Medium\",\n            \"Semi-bold\",\n            \"Bold\",\n            \"Extra-bold\",\n            \"Black\", \n        ],\n        hidden: ({ font  })=>!font\n    }\n};\n// @TODO check if we're missing anything here \u2014 there doesn't seem to be a reliable browser API for this\nexport const localeOptions = {\n    af: \"Afrikaans\",\n    sq: \"Albanian\",\n    an: \"Aragonese\",\n    ar: \"Arabic (Standard)\",\n    \"ar-dz\": \"Arabic (Algeria)\",\n    \"ar-bh\": \"Arabic (Bahrain)\",\n    \"ar-eg\": \"Arabic (Egypt)\",\n    \"ar-iq\": \"Arabic (Iraq)\",\n    \"ar-jo\": \"Arabic (Jordan)\",\n    \"ar-kw\": \"Arabic (Kuwait)\",\n    \"ar-lb\": \"Arabic (Lebanon)\",\n    \"ar-ly\": \"Arabic (Libya)\",\n    \"ar-ma\": \"Arabic (Morocco)\",\n    \"ar-om\": \"Arabic (Oman)\",\n    \"ar-qa\": \"Arabic (Qatar)\",\n    \"ar-sa\": \"Arabic (Saudi Arabia)\",\n    \"ar-sy\": \"Arabic (Syria)\",\n    \"ar-tn\": \"Arabic (Tunisia)\",\n    \"ar-ae\": \"Arabic (U.A.E.)\",\n    \"ar-ye\": \"Arabic (Yemen)\",\n    hy: \"Armenian\",\n    as: \"Assamese\",\n    ast: \"Asturian\",\n    az: \"Azerbaijani\",\n    eu: \"Basque\",\n    bg: \"Bulgarian\",\n    be: \"Belarusian\",\n    bn: \"Bengali\",\n    bs: \"Bosnian\",\n    br: \"Breton\",\n    my: \"Burmese\",\n    ca: \"Catalan\",\n    ch: \"Chamorro\",\n    ce: \"Chechen\",\n    zh: \"Chinese\",\n    \"zh-hk\": \"Chinese (Hong Kong)\",\n    \"zh-cn\": \"Chinese (PRC)\",\n    \"zh-sg\": \"Chinese (Singapore)\",\n    \"zh-tw\": \"Chinese (Taiwan)\",\n    cv: \"Chuvash\",\n    co: \"Corsican\",\n    cr: \"Cree\",\n    hr: \"Croatian\",\n    cs: \"Czech\",\n    da: \"Danish\",\n    nl: \"Dutch (Standard)\",\n    \"nl-be\": \"Dutch (Belgian)\",\n    en: \"English\",\n    \"en-au\": \"English (Australia)\",\n    \"en-bz\": \"English (Belize)\",\n    \"en-ca\": \"English (Canada)\",\n    \"en-ie\": \"English (Ireland)\",\n    \"en-jm\": \"English (Jamaica)\",\n    \"en-nz\": \"English (New Zealand)\",\n    \"en-ph\": \"English (Philippines)\",\n    \"en-za\": \"English (South Africa)\",\n    \"en-tt\": \"English (Trinidad & Tobago)\",\n    \"en-gb\": \"English (United Kingdom)\",\n    \"en-us\": \"English (United States)\",\n    \"en-zw\": \"English (Zimbabwe)\",\n    eo: \"Esperanto\",\n    et: \"Estonian\",\n    fo: \"Faeroese\",\n    fa: \"Farsi\",\n    fj: \"Fijian\",\n    fi: \"Finnish\",\n    fr: \"French (Standard)\",\n    \"fr-be\": \"French (Belgium)\",\n    \"fr-ca\": \"French (Canada)\",\n    \"fr-fr\": \"French (France)\",\n    \"fr-lu\": \"French (Luxembourg)\",\n    \"fr-mc\": \"French (Monaco)\",\n    \"fr-ch\": \"French (Switzerland)\",\n    fy: \"Frisian\",\n    fur: \"Friulian\",\n    gd: \"Gaelic (Scots)\",\n    \"gd-ie\": \"Gaelic (Irish)\",\n    gl: \"Galacian\",\n    ka: \"Georgian\",\n    de: \"German (Standard)\",\n    \"de-at\": \"German (Austria)\",\n    \"de-de\": \"German (Germany)\",\n    \"de-li\": \"German (Liechtenstein)\",\n    \"de-lu\": \"German (Luxembourg)\",\n    \"de-ch\": \"German (Switzerland)\",\n    el: \"Greek\",\n    gu: \"Gujurati\",\n    ht: \"Haitian\",\n    he: \"Hebrew\",\n    hi: \"Hindi\",\n    hu: \"Hungarian\",\n    is: \"Icelandic\",\n    id: \"Indonesian\",\n    iu: \"Inuktitut\",\n    ga: \"Irish\",\n    it: \"Italian (Standard)\",\n    \"it-ch\": \"Italian (Switzerland)\",\n    ja: \"Japanese\",\n    kn: \"Kannada\",\n    ks: \"Kashmiri\",\n    kk: \"Kazakh\",\n    km: \"Khmer\",\n    ky: \"Kirghiz\",\n    tlh: \"Klingon\",\n    ko: \"Korean\",\n    \"ko-kp\": \"Korean (North Korea)\",\n    \"ko-kr\": \"Korean (South Korea)\",\n    la: \"Latin\",\n    lv: \"Latvian\",\n    lt: \"Lithuanian\",\n    lb: \"Luxembourgish\",\n    mk: \"FYRO Macedonian\",\n    ms: \"Malay\",\n    ml: \"Malayalam\",\n    mt: \"Maltese\",\n    mi: \"Maori\",\n    mr: \"Marathi\",\n    mo: \"Moldavian\",\n    nv: \"Navajo\",\n    ng: \"Ndonga\",\n    ne: \"Nepali\",\n    no: \"Norwegian\",\n    nb: \"Norwegian (Bokmal)\",\n    nn: \"Norwegian (Nynorsk)\",\n    oc: \"Occitan\",\n    or: \"Oriya\",\n    om: \"Oromo\",\n    \"fa-ir\": \"Persian/Iran\",\n    pl: \"Polish\",\n    pt: \"Portuguese\",\n    \"pt-br\": \"Portuguese (Brazil)\",\n    pa: \"Punjabi\",\n    \"pa-in\": \"Punjabi (India)\",\n    \"pa-pk\": \"Punjabi (Pakistan)\",\n    qu: \"Quechua\",\n    rm: \"Rhaeto-Romanic\",\n    ro: \"Romanian\",\n    \"ro-mo\": \"Romanian (Moldavia)\",\n    ru: \"Russian\",\n    \"ru-mo\": \"Russian (Moldavia)\",\n    sz: \"Sami (Lappish)\",\n    sg: \"Sango\",\n    sa: \"Sanskrit\",\n    sc: \"Sardinian\",\n    sd: \"Sindhi\",\n    si: \"Singhalese\",\n    sr: \"Serbian\",\n    sk: \"Slovak\",\n    sl: \"Slovenian\",\n    so: \"Somani\",\n    sb: \"Sorbian\",\n    es: \"Spanish\",\n    \"es-ar\": \"Spanish (Argentina)\",\n    \"es-bo\": \"Spanish (Bolivia)\",\n    \"es-cl\": \"Spanish (Chile)\",\n    \"es-co\": \"Spanish (Colombia)\",\n    \"es-cr\": \"Spanish (Costa Rica)\",\n    \"es-do\": \"Spanish (Dominican Republic)\",\n    \"es-ec\": \"Spanish (Ecuador)\",\n    \"es-sv\": \"Spanish (El Salvador)\",\n    \"es-gt\": \"Spanish (Guatemala)\",\n    \"es-hn\": \"Spanish (Honduras)\",\n    \"es-mx\": \"Spanish (Mexico)\",\n    \"es-ni\": \"Spanish (Nicaragua)\",\n    \"es-pa\": \"Spanish (Panama)\",\n    \"es-py\": \"Spanish (Paraguay)\",\n    \"es-pe\": \"Spanish (Peru)\",\n    \"es-pr\": \"Spanish (Puerto Rico)\",\n    \"es-es\": \"Spanish (Spain)\",\n    \"es-uy\": \"Spanish (Uruguay)\",\n    \"es-ve\": \"Spanish (Venezuela)\",\n    sx: \"Sutu\",\n    sw: \"Swahili\",\n    sv: \"Swedish\",\n    \"sv-fi\": \"Swedish (Finland)\",\n    \"sv-sv\": \"Swedish (Sweden)\",\n    ta: \"Tamil\",\n    tt: \"Tatar\",\n    te: \"Teluga\",\n    th: \"Thai\",\n    tig: \"Tigre\",\n    ts: \"Tsonga\",\n    tn: \"Tswana\",\n    tr: \"Turkish\",\n    tk: \"Turkmen\",\n    uk: \"Ukrainian\",\n    hsb: \"Upper Sorbian\",\n    ur: \"Urdu\",\n    ve: \"Venda\",\n    vi: \"Vietnamese\",\n    vo: \"Volapuk\",\n    wa: \"Walloon\",\n    cy: \"Welsh\",\n    xh: \"Xhosa\",\n    ji: \"Yiddish\",\n    zu: \"Zulu\"\n};\n\nexport const __FramerMetadata__ = {\"exports\":{\"fontSizeOptions\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"fontControls\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"localeOptions\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"fontStack\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"emptyStateStyle\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"containerStyles\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"defaultEvents\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}}}}\n//# sourceMappingURL=./constants.map", "import { useMemo } from \"react\";\nimport { RenderTarget } from \"framer\";\nexport function useRenderTarget() {\n    const currentRenderTarget = useMemo(()=>RenderTarget.current()\n    , []);\n    return currentRenderTarget;\n}\nexport function useIsInPreview() {\n    const inPreview = useMemo(()=>RenderTarget.current() === RenderTarget.preview\n    , []);\n    return inPreview;\n}\nexport function useIsOnCanvas() {\n    const onCanvas = useMemo(()=>RenderTarget.current() === RenderTarget.canvas\n    , []);\n    return onCanvas;\n}\n\nexport const __FramerMetadata__ = {\"exports\":{\"useIsInPreview\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"useRenderTarget\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"useIsOnCanvas\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}}}}\n//# sourceMappingURL=./useRenderTarget.map", "import { useMemo } from \"react\";\nimport { ControlType } from \"framer\";\nexport function useRadius(props) {\n    const { borderRadius , isMixedBorderRadius , topLeftRadius , topRightRadius , bottomRightRadius , bottomLeftRadius ,  } = props;\n    const radiusValue = useMemo(()=>isMixedBorderRadius ? `${topLeftRadius}px ${topRightRadius}px ${bottomRightRadius}px ${bottomLeftRadius}px` : `${borderRadius}px`\n    , [\n        borderRadius,\n        isMixedBorderRadius,\n        topLeftRadius,\n        topRightRadius,\n        bottomRightRadius,\n        bottomLeftRadius, \n    ]);\n    return radiusValue;\n}\nexport const borderRadiusControl = {\n    borderRadius: {\n        title: \"Radius\",\n        type: ControlType.FusedNumber,\n        toggleKey: \"isMixedBorderRadius\",\n        toggleTitles: [\n            \"Radius\",\n            \"Radius per corner\"\n        ],\n        valueKeys: [\n            \"topLeftRadius\",\n            \"topRightRadius\",\n            \"bottomRightRadius\",\n            \"bottomLeftRadius\", \n        ],\n        valueLabels: [\n            \"TL\",\n            \"TR\",\n            \"BR\",\n            \"BL\"\n        ],\n        min: 0\n    }\n};\nexport function usePadding(props) {\n    const { padding , paddingPerSide , paddingTop , paddingRight , paddingBottom , paddingLeft ,  } = props;\n    const paddingValue = useMemo(()=>paddingPerSide ? `${paddingTop}px ${paddingRight}px ${paddingBottom}px ${paddingLeft}px` : padding\n    , [\n        padding,\n        paddingPerSide,\n        paddingTop,\n        paddingRight,\n        paddingBottom,\n        paddingLeft, \n    ]);\n    return paddingValue;\n}\nexport const paddingControl = {\n    padding: {\n        type: ControlType.FusedNumber,\n        toggleKey: \"paddingPerSide\",\n        toggleTitles: [\n            \"Padding\",\n            \"Padding per side\"\n        ],\n        valueKeys: [\n            \"paddingTop\",\n            \"paddingRight\",\n            \"paddingBottom\",\n            \"paddingLeft\", \n        ],\n        valueLabels: [\n            \"T\",\n            \"R\",\n            \"B\",\n            \"L\"\n        ],\n        min: 0,\n        title: \"Padding\"\n    }\n};\n\nexport const __FramerMetadata__ = {\"exports\":{\"borderRadiusControl\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"useRadius\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"RadiusProps\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"PaddingProps\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"usePadding\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"paddingControl\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}}}}\n//# sourceMappingURL=./propUtils.map", "import{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{useEffect,useRef,useState}from\"react\";import{addPropertyControls,ControlType}from\"framer\";import{useIsOnCanvas,emptyStateStyle,containerStyles}from\"https://framer.com/m/framer/default-utils.js\";/**\n * @framerIntrinsicWidth 600\n * @framerIntrinsicHeight 400\n *\n * @framerSupportedLayoutWidth fixed\n * @framerSupportedLayoutHeight fixed\n *\n * @framerDisableUnlink\n */ export default function Embed({type,url,html}){if(type===\"url\"&&url){return /*#__PURE__*/ _jsx(EmbedURL,{url:url});}if(type===\"html\"&&html){return /*#__PURE__*/ _jsx(EmbedHTML,{html:html});}return /*#__PURE__*/ _jsx(Instructions,{});};addPropertyControls(Embed,{type:{type:ControlType.Enum,defaultValue:\"url\",displaySegmentedControl:true,options:[\"url\",\"html\"],optionTitles:[\"URL\",\"HTML\"]},url:{title:\"URL\",type:ControlType.String,description:\"Some websites don\u2019t support embedding.\",hidden(props){return props.type!==\"url\";}},html:{title:\"HTML\",displayTextArea:true,type:ControlType.String,hidden(props){return props.type!==\"html\";}}});function Instructions(){return /*#__PURE__*/ _jsx(\"div\",{style:{...emptyStateStyle,overflow:\"hidden\"},children:/*#__PURE__*/ _jsx(\"div\",{style:centerTextStyle,children:\"To embed a website or widget, add it to the properties\\xa0panel.\"})});}function EmbedURL({url}){// Add https:// if the URL does not have a protocol.\nif(!/[a-z]+:\\/\\//.test(url)){url=\"https://\"+url;}const onCanvas=useIsOnCanvas();// We need to check if the url is blocked inside an iframe by the X-Frame-Options\n// or Content-Security-Policy headers on the backend.\nconst[state,setState]=useState(onCanvas?undefined:false);useEffect(()=>{// We only want to check on the canvas.\n// On the website we want to avoid the additional delay.\nif(!onCanvas)return;// TODO: We could also use AbortController here.\nlet isLastEffect=true;setState(undefined);async function load(){const response=await fetch(\"https://api.framer.com/functions/check-iframe-url?url=\"+encodeURIComponent(url));if(response.status==200){const{isBlocked}=await response.json();if(isLastEffect){setState(isBlocked);}}else{const message=await response.text();console.error(message);const error=new Error(\"This site can\u2019t be reached.\");setState(error);}}load().catch(error=>{console.error(error);setState(error);});return()=>{isLastEffect=false;};},[url]);if(!url.startsWith(\"https://\")){return /*#__PURE__*/ _jsx(ErrorMessage,{message:\"Unsupported protocol.\"});}if(state===undefined){return /*#__PURE__*/ _jsx(LoadingIndicator,{});}if(state instanceof Error){return /*#__PURE__*/ _jsx(ErrorMessage,{message:state.message});}if(state===true){const message=`Can't embed ${url} due to its content security policy.`;return /*#__PURE__*/ _jsx(ErrorMessage,{message:message});}return /*#__PURE__*/ _jsx(\"iframe\",{src:url,style:iframeStyle,loading:\"lazy\",// @ts-ignore\nfetchPriority:onCanvas?\"low\":\"auto\",referrerPolicy:\"no-referrer\",sandbox:getSandbox(onCanvas)});}const iframeStyle={width:\"100%\",height:\"100%\",border:\"none\"};function getSandbox(onCanvas){const result=[\"allow-same-origin\",\"allow-scripts\"];if(!onCanvas){result.push(\"allow-downloads\",\"allow-forms\",\"allow-modals\",\"allow-orientation-lock\",\"allow-pointer-lock\",\"allow-popups\",\"allow-popups-to-escape-sandbox\",\"allow-presentation\",\"allow-storage-access-by-user-activation\",\"allow-top-navigation-by-user-activation\");}return result.join(\" \");}function EmbedHTML({html}){const ref=useRef();// If the HTML contains a script tag we can't use\n// dangerouslySetInnerHTML because it doesn't execute\n// scripts on the client. Otherwise, we can benefit\n// from SSG by using dangerouslySetInnerHTML.\nconst hasScript=html.includes(\"</script>\");useEffect(()=>{if(!hasScript)return;const div=ref.current;div.innerHTML=html;executeScripts(div);return()=>{div.innerHTML=\"\";};},[html,hasScript]);return /*#__PURE__*/ _jsx(\"div\",{ref:ref,style:htmlStyle,dangerouslySetInnerHTML:!hasScript?{__html:html}:undefined});}const htmlStyle={width:\"100%\",height:\"100%\",display:\"flex\",flexDirection:\"column\",justifyContent:\"center\",alignItems:\"center\"};// This function replaces scripts with executable ones.\n// https://stackoverflow.com/questions/1197575/can-scripts-be-inserted-with-innerhtml\nfunction executeScripts(node){if(node instanceof Element&&node.tagName===\"SCRIPT\"){const script=document.createElement(\"script\");script.text=node.innerHTML;for(const{name,value}of node.attributes){script.setAttribute(name,value);}node.parentElement.replaceChild(script,node);}else{for(const child of node.childNodes){executeScripts(child);}}}// Generic components\nfunction LoadingIndicator(){return /*#__PURE__*/ _jsx(\"div\",{className:\"framerInternalUI-componentPlaceholder\",style:{...containerStyles,overflow:\"hidden\"},children:/*#__PURE__*/ _jsx(\"div\",{style:centerTextStyle,children:\"Loading\u2026\"})});}function ErrorMessage({message}){return /*#__PURE__*/ _jsx(\"div\",{className:\"framerInternalUI-errorPlaceholder\",style:{...containerStyles,overflow:\"hidden\"},children:/*#__PURE__*/ _jsxs(\"div\",{style:centerTextStyle,children:[\"Error: \",message]})});}const centerTextStyle={textAlign:\"center\",minWidth:140};\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"Embed\",\"slots\":[],\"annotations\":{\"framerSupportedLayoutHeight\":\"fixed\",\"framerSupportedLayoutWidth\":\"fixed\",\"framerDisableUnlink\":\"\",\"framerIntrinsicWidth\":\"600\",\"framerIntrinsicHeight\":\"400\",\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Embed.map", "// Generated by Framer (c93245f)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,getFontsFromSharedStyle,Image,RichText,SVG,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import*as sharedStyle from\"https://framerusercontent.com/modules/799fLte9jCjTbGe4Wjp8/T1Lg4b6Jxoo25aMjSbQL/ne7Zie62m.js\";const cycleOrder=[\"dfiMnEKxq\",\"bu6wjTkiV\"];const serializationHash=\"framer-pl8Fl\";const variantClassNames={bu6wjTkiV:\"framer-v-9c2jiv\",dfiMnEKxq:\"framer-v-35b4y3\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={delay:0,duration:1,ease:[.44,0,.56,1],type:\"tween\"};const transformTemplate1=(_,t)=>`translate(-50%, -50%) ${t}`;const transformTemplate2=(_,t)=>`translateX(-50%) ${t}`;const transition2={delay:.8,duration:1.2,ease:[.44,0,.56,1],type:\"tween\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const transition3={delay:0,duration:2,ease:[.44,0,.56,1],type:\"tween\"};const transformTemplate3=(_,t)=>`translateY(-50%) ${t}`;const Variants=motion(React.Fragment);const humanReadableVariantMap={\"Variant 1\":\"dfiMnEKxq\",\"Variant 2\":\"bu6wjTkiV\"};const getProps=({height,id,width,...props})=>{var _humanReadableVariantMap_props_variant,_ref;return{...props,variant:(_ref=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref!==void 0?_ref:\"dfiMnEKxq\"};};const createLayoutDependency=(props,variants)=>variants.join(\"-\")+props.layoutDependency;const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,...restProps}=getProps(props);const{baseVariant,classNames,gestureVariant,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"dfiMnEKxq\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const ref1=React.useRef(null);const defaultLayoutId=React.useId();const sharedStyleClassNames=[sharedStyle.className];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(motion.div,{...restProps,className:cx(serializationHash,...sharedStyleClassNames,\"framer-35b4y3\",className,classNames),\"data-framer-name\":\"Variant 1\",layoutDependency:layoutDependency,layoutId:\"dfiMnEKxq\",onHoverEnd:()=>setGestureState({isHovered:false}),onHoverStart:()=>setGestureState({isHovered:true}),onTap:()=>setGestureState({isPressed:false}),onTapCancel:()=>setGestureState({isPressed:false}),onTapStart:()=>setGestureState({isPressed:true}),ref:ref!==null&&ref!==void 0?ref:ref1,style:{...style},...addPropertyOverrides({bu6wjTkiV:{\"data-framer-name\":\"Variant 2\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-9b860i\",\"data-framer-name\":\"Message Icon\",layoutDependency:layoutDependency,layoutId:\"jaNsgSY1H\",transformTemplate:transformTemplate1,...addPropertyOverrides({bu6wjTkiV:{transformTemplate:transformTemplate2}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1wef1g7\",\"data-framer-name\":\"Group 6\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:50,intrinsicWidth:52,layoutDependency:layoutDependency,layoutId:\"ZV30hmMNb\",svg:'<svg width=\"52\" height=\"50\" viewBox=\"0 0 52 50\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M31.1573 0C19.7625 0 10.5496 9.2129 10.5496 20.6078C10.5496 32.0027 19.7625 41.2156 31.1573 41.2156H32.3696V49.7011C44.2494 44.1249 51.7651 31.5178 51.7651 20.6078C51.7651 9.2129 42.5522 0 31.1573 0ZM29.9451 21.82L27.5207 26.6689H23.884L26.3085 21.82H22.6718V14.5467H29.9451V21.82ZM39.6429 21.82L37.2185 26.6689H33.5818L36.0062 21.82H32.3696V14.5467H39.6429V21.82Z\" fill=\"#F6781D\"/>\\n<path d=\"M29.9451 21.82L27.5207 26.6689H23.884L26.3085 21.82H22.6718V14.5467H29.9451V21.82Z\" fill=\"#F6781D\"/>\\n<path d=\"M39.6429 21.82L37.2185 26.6689H33.5818L36.0062 21.82H32.3696V14.5467H39.6429V21.82Z\" fill=\"#F6781D\"/>\\n<path d=\"M20.9137 0C9.5188 0 0.305908 9.2129 0.305908 20.6078C0.305908 32.0027 9.5188 41.2156 20.9137 41.2156H22.1259V49.7011C34.0057 44.1249 41.5215 31.5178 41.5215 20.6078C41.5215 9.2129 32.3086 0 20.9137 0ZM19.7015 21.82L17.277 26.6689H13.6404L16.0648 21.82H12.4281V14.5467H19.7015V21.82ZM29.3993 21.82L26.9748 26.6689H23.3381L25.7626 21.82H22.1259V14.5467H29.3993V21.82Z\" fill=\"#368B8B\"/>\\n<path d=\"M19.7015 21.82L17.277 26.6689H13.6404L16.0648 21.82H12.4281V14.5467H19.7015V21.82Z\" fill=\"#368B8B\"/>\\n<path d=\"M29.3993 21.82L26.9748 26.6689H23.3381L25.7626 21.82H22.1259V14.5467H29.3993V21.82Z\" fill=\"#368B8B\"/>\\n</svg>\\n',withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-ngxvo9\",layoutDependency:layoutDependency,layoutId:\"XMhVLpww3\",children:/*#__PURE__*/_jsx(Transition,{...addPropertyOverrides({bu6wjTkiV:{value:transition2}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h3,{className:\"framer-styles-preset-nv5eoi\",\"data-styles-preset\":\"ne7Zie62m\",style:{\"--framer-text-alignment\":\"center\"},children:'\"Avec Cirkkle, la gestion de mes tontines est enfin simplifi\\xe9e et s\\xe9curis\\xe9e. \\xc7a fait vraiment la diff\\xe9rence !\"'})}),className:\"framer-5se62s\",\"data-framer-name\":'\"Avec Cirkkle, la gestion de mes tontines est enfin simplifi\\xe9e et s\\xe9curis\\xe9e. \\xc7a fait vraiment la diff\\xe9rence !\"',fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"FRzqLPL5n\",style:{\"--framer-paragraph-spacing\":\"0px\",opacity:0},variants:{bu6wjTkiV:{opacity:1}},verticalAlignment:\"top\",withExternalLayout:true})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1mt4fjd\",\"data-framer-name\":\"Profile Image\",layoutDependency:layoutDependency,layoutId:\"ka2nH4HHL\",children:/*#__PURE__*/_jsx(Transition,{...addPropertyOverrides({bu6wjTkiV:{value:transition3}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-t36svt\",layoutDependency:layoutDependency,layoutId:\"lG7GEjEZE\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:256,intrinsicWidth:255,pixelHeight:256,pixelWidth:255,src:\"https://framerusercontent.com/images/jUvweH4jphJbogePbCOED8AbZmI.webp\"},className:\"framer-q0r2de\",\"data-framer-name\":\"Ellipse 34\",layoutDependency:layoutDependency,layoutId:\"ex6LtLK8r\",style:{borderBottomLeftRadius:\"100%\",borderBottomRightRadius:\"100%\",borderTopLeftRadius:\"100%\",borderTopRightRadius:\"100%\"},transformTemplate:transformTemplate3}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1mztphs\",\"data-framer-name\":\"Frame 924\",layoutDependency:layoutDependency,layoutId:\"U3KTTugIb\",style:{backgroundColor:\"rgb(54, 139, 139)\",borderBottomLeftRadius:2,borderBottomRightRadius:2,borderTopLeftRadius:2,borderTopRightRadius:2},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7UGx1cyBKYWthcnRhIFNhbnMtNzAw\",\"--framer-font-family\":'\"Plus Jakarta Sans\", \"Plus Jakarta Sans Placeholder\", sans-serif',\"--framer-font-size\":\"10px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"0px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"Fatou M.\"})}),className:\"framer-17p3qjc\",\"data-framer-name\":\"Fatou M.\",fonts:[\"GF;Plus Jakarta Sans-700\"],layoutDependency:layoutDependency,layoutId:\"XmjLVTyRT\",style:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true})})]})})})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-pl8Fl.framer-1th9sui, .framer-pl8Fl .framer-1th9sui { display: block; }\",\".framer-pl8Fl.framer-35b4y3 { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px 0px 0px 0px; position: relative; width: 1024px; }\",\".framer-pl8Fl .framer-9b860i { aspect-ratio: 1.0196078431372548 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 73px); left: 50%; overflow: visible; position: absolute; top: 50%; width: 74px; z-index: 1; }\",\".framer-pl8Fl .framer-1wef1g7 { bottom: 0px; flex: none; left: 0px; position: absolute; right: 0px; top: 0px; }\",\".framer-pl8Fl .framer-ngxvo9 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 100px 0px 100px 0px; position: relative; width: 100%; }\",\".framer-pl8Fl .framer-5se62s { flex: none; height: auto; max-width: 913px; position: relative; white-space: pre-wrap; width: 89%; word-break: break-word; word-wrap: break-word; z-index: 1; }\",\".framer-pl8Fl .framer-1mt4fjd { flex: none; height: 74px; left: calc(50.00000000000002% - 74px / 2); overflow: visible; position: absolute; top: calc(50.133333333333354% - 74px / 2); width: 74px; z-index: 1; }\",\".framer-pl8Fl .framer-t36svt { flex: none; height: 74px; left: 0px; overflow: visible; position: absolute; right: 0px; top: 0px; }\",\".framer-pl8Fl .framer-q0r2de { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 73px); left: 1px; position: absolute; top: 50%; width: 73px; }\",\".framer-pl8Fl .framer-1mztphs { align-content: center; align-items: center; bottom: 1px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 1px 5px 1px 5px; position: absolute; right: -16px; width: min-content; z-index: 1; }\",\".framer-pl8Fl .framer-17p3qjc { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-pl8Fl.framer-35b4y3, .framer-pl8Fl .framer-ngxvo9, .framer-pl8Fl .framer-1mztphs { gap: 0px; } .framer-pl8Fl.framer-35b4y3 > *, .framer-pl8Fl .framer-ngxvo9 > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-pl8Fl.framer-35b4y3 > :first-child, .framer-pl8Fl .framer-ngxvo9 > :first-child { margin-top: 0px; } .framer-pl8Fl.framer-35b4y3 > :last-child, .framer-pl8Fl .framer-ngxvo9 > :last-child { margin-bottom: 0px; } .framer-pl8Fl .framer-1mztphs > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-pl8Fl .framer-1mztphs > :first-child { margin-left: 0px; } .framer-pl8Fl .framer-1mztphs > :last-child { margin-right: 0px; } }\",\".framer-pl8Fl.framer-v-9c2jiv.framer-35b4y3 { width: 1470px; }\",\".framer-pl8Fl.framer-v-9c2jiv .framer-9b860i { top: 0px; }\",\".framer-pl8Fl.framer-v-9c2jiv .framer-1wef1g7 { top: 1px; }\",\".framer-pl8Fl.framer-v-9c2jiv .framer-1mt4fjd { bottom: 4px; top: unset; }\",...sharedStyle.css];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 272\n * @framerIntrinsicWidth 1024\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"bu6wjTkiV\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerdqVyoEukj=withCSS(Component,css,\"framer-pl8Fl\");export default FramerdqVyoEukj;FramerdqVyoEukj.displayName=\"Social Proof Animation\";FramerdqVyoEukj.defaultProps={height:272,width:1024};addPropertyControls(FramerdqVyoEukj,{variant:{options:[\"dfiMnEKxq\",\"bu6wjTkiV\"],optionTitles:[\"Variant 1\",\"Variant 2\"],title:\"Variant\",type:ControlType.Enum}});addFonts(FramerdqVyoEukj,[{explicitInter:true,fonts:[{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://app.framerstatic.com/Inter-Regular.cyrillic-ext-CFTLRB35.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://app.framerstatic.com/Inter-Regular.cyrillic-KKLZBALH.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://app.framerstatic.com/Inter-Regular.greek-ext-ULEBLIFV.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://app.framerstatic.com/Inter-Regular.greek-IRHSNFQB.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://app.framerstatic.com/Inter-Regular.latin-ext-VZDUGU3Q.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"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\",url:\"https://app.framerstatic.com/Inter-Regular.latin-JLQMKCHE.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://app.framerstatic.com/Inter-Regular.vietnamese-QK7VSWXK.woff2\",weight:\"400\"},{family:\"Plus Jakarta Sans\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/plusjakartasans/v8/LDIbaomQNQcsA88c7O9yZ4KMCoOg4IA6-91aHEjcWuA_TknNTxXUEKi4Rw.woff2\",weight:\"700\"}]},...getFontsFromSharedStyle(sharedStyle.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerdqVyoEukj\",\"slots\":[],\"annotations\":{\"framerComponentViewportWidth\":\"true\",\"framerContractVersion\":\"1\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"bu6wjTkiV\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerImmutableVariables\":\"true\",\"framerIntrinsicWidth\":\"1024\",\"framerIntrinsicHeight\":\"272\",\"framerDisplayContentsDiv\":\"false\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "import{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{Children}from\"react\";import{addPropertyControls,ControlType,RenderTarget}from\"framer\";import{motion,useMotionValue,useTransform}from\"framer-motion\";/**\n * ANIMATOR\n *\n * @framerIntrinsicWidth 200\n * @framerIntrinsicHeight 200\n * @framerDisableUnlink\n *\n * @framerSupportedLayoutWidth fixed\n * @framerSupportedLayoutHeight fixed\n */ export default function Animator(props){/* Properties */ const{pathAnimation,from,to,animate,shouldLoop,loopOptions,slots=[],endCircle}=props;/* State */ const hasChildren=Children.count(slots)>0;/* Empty State */ let customShape=/*#__PURE__*/ _jsxs(\"div\",{style:placeholderStyles,children:[/*#__PURE__*/ _jsx(\"div\",{style:emojiStyles,children:\"\u270D\uFE0F\"}),/*#__PURE__*/ _jsx(\"p\",{style:titleStyles,children:\"Connect to Graphic\"}),/*#__PURE__*/ _jsx(\"p\",{style:subtitleStyles,children:\"Animates single or joined paths on Web Pages only.\"})]});if(hasChildren){/* Grab the SVG from the Graphic */ const firstChild=getFirstChild(slots);const svgChild=getFirstChild(firstChild.props.svg);const isSpring=pathAnimation.type===\"spring\";/* Shape transition properties */ /* Dividing stiffness and damping by 1000 is a trick I got from Matt \n        which helps with pathLength animations, which otherwise are so fast \n        you never even see them happen in the preview. */ const shapeTransition={pathLength:{...pathAnimation,repeat:shouldLoop?Infinity:0,repeatType:loopOptions,stiffness:isSpring?pathAnimation.stiffness/1e3:pathAnimation.stiffness,damping:isSpring?pathAnimation.damping/1e3:pathAnimation.damping}};/* Add our own properties to the Path */ const pathLength=useMotionValue(0);const opacity=useTransform(pathLength,[0,.025],[0,1]);const shapeProps={variants:{start:{pathLength:from/100},end:{pathLength:to/100}},transition:shapeTransition};/* Prevent animating or adjusting pathLength on the Canvas */ const isCanvas=RenderTarget.current()===RenderTarget.canvas;/* Just render the full connected Graphic on Canvas, when connected */ if(isCanvas){customShape=firstChild;}/* If on a web page */ if(!isCanvas&&svgChild){/* Pass Attributes */ let attributes=svgChild.match(/[\\w-]+=\"[^\"]*\"/g);let pathD;let stroke;let strokeWidth;let strokeLinecap;let strokeLinejoin;for(const element of attributes){if(element.includes(\"d=\")){pathD=splitAndReplace(element);}if(element.includes(\"stroke=\")){stroke=splitAndReplace(element);}if(element.includes(\"stroke-width=\")){strokeWidth=splitAndReplace(element);}if(element.includes(\"stroke-linecap=\")){strokeLinecap=splitAndReplace(element);}if(element.includes(\"stroke-linejoin=\")){strokeLinejoin=splitAndReplace(element);}}/* Grab viewbox */ let svgViewbox;svgViewbox=svgChild.split(\"viewBox=\")[1];svgViewbox=svgViewbox.split(\">\")[0];svgViewbox=svgViewbox.replace(/^\"(.+(?=\"$))\"$/,\"$1\");customShape=/*#__PURE__*/ _jsx(motion.div,{initial:isCanvas||animate===false?false:\"start\",animate:isCanvas||animate===false?false:\"end\",style:{width:\"100%\",height:\"100%\",display:\"flex\",placeContent:\"center\",placeItems:\"center\",backgroundColor:\"transparent\",overflow:\"hidden\"},children:/*#__PURE__*/ _jsx(motion.svg,{xmlns:\"http://www.w3.org/2000/svg\",width:\"100%\",height:\"100%\",viewBox:svgViewbox,children:/*#__PURE__*/ _jsx(motion.path,{...shapeProps,d:pathD,stroke:stroke,strokeWidth:strokeWidth,strokeLinejoin:strokeLinejoin,strokeLinecap:strokeLinecap,fill:\"transparent\",style:!endCircle&&{pathLength,opacity}})})});}}return customShape;};/* Default Properties */ Animator.defaultProps={animate:true,shouldLoop:false,loopOptions:\"reverse\",from:0,to:100,pathAnimation:{type:\"tween\",duration:2},endCircle:true};/* Property Controls */ addPropertyControls(Animator,{slots:{type:ControlType.ComponentInstance,title:\"Children\"},animate:{title:\"Animate\",type:ControlType.Boolean,defaultValue:Animator.defaultProps.animate,enabledTitle:\"True\",disabledTitle:\"False\"},shouldLoop:{title:\"Loop\",type:ControlType.Boolean,defaultValue:Animator.defaultProps.shouldLoop,enabledTitle:\"True\",disabledTitle:\"False\",hidden(props){return props.animate===false;}},loopOptions:{type:ControlType.Enum,title:\"Type\",defaultValue:Animator.defaultProps.loopOptions,options:[\"loop\",\"reverse\",\"mirror\"],optionTitles:[\"Loop\",\"Reverse\",\"Mirror\"],hidden(props){return props.shouldLoop===false;}},endCircle:{title:\"End Circle\",type:ControlType.Boolean,defaultValue:Animator.defaultProps.endCircle,enabledTitle:\"Show\",disabledTitle:\"Hide\",hidden(props){return props.animate===false;}},from:{title:\"From\",type:ControlType.Number,min:0,max:100,displayStepper:true,step:1,defaultValue:Animator.defaultProps.from,unit:\"%\",hidden(props){return props.animate===false;}},to:{title:\"To\",type:ControlType.Number,min:0,max:100,displayStepper:true,step:1,defaultValue:Animator.defaultProps.to,unit:\"%\",hidden(props){return props.animate===false;}},pathAnimation:{title:\" \",type:ControlType.Transition,defaultValue:Animator.defaultProps.pathAnimation,hidden(props){return props.animate===false;}}});/* Method to get stringless attributes */ const splitAndReplace=string=>{return string.split(\"=\")[1].replace(/['\"]+/g,\"\");};/* Method to get the first child */ function getFirstChild(slots){let firstChild;Children.map(slots,child=>{if(firstChild===undefined){firstChild=child;}});return firstChild;}/* Styles */ const placeholderStyles={display:\"flex\",width:\"100%\",height:\"100%\",placeContent:\"center\",placeItems:\"center\",flexDirection:\"column\",color:\"#96F\",background:\"rgba(136, 85, 255, 0.1)\",fontSize:11,overflow:\"hidden\"};const emojiStyles={fontSize:32,marginBottom:10};const titleStyles={margin:0,marginBottom:10,fontWeight:600,textAlign:\"center\"};const subtitleStyles={margin:0,opacity:.7,maxWidth:150,lineHeight:1.5,textAlign:\"center\"};\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"Animator\",\"slots\":[],\"annotations\":{\"framerIntrinsicWidth\":\"200\",\"framerIntrinsicHeight\":\"200\",\"framerDisableUnlink\":\"*\",\"framerSupportedLayoutWidth\":\"fixed\",\"framerSupportedLayoutHeight\":\"fixed\",\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Animator.map", "// Generated by Framer (ed8225c)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,SVG,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import Animator from\"https://framerusercontent.com/modules/gh5xmpM9GHT9MXnnMpPc/yx3Yu3CvNlklDmNPtEF9/Animator.js\";const AnimatorFonts=getFonts(Animator);const serializationHash=\"framer-hxFzt\";const variantClassNames={f95sFC0Ne:\"framer-v-ij9ysp\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const getProps=({green,height,id,orange,width,...props})=>{var _ref;return{...props,bRvakbH4q:(_ref=orange!==null&&orange!==void 0?orange:props.bRvakbH4q)!==null&&_ref!==void 0?_ref:true,fD96gZIDj:green!==null&&green!==void 0?green:props.fD96gZIDj};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,fD96gZIDj,bRvakbH4q,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({defaultVariant:\"f95sFC0Ne\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const ref1=React.useRef(null);const defaultLayoutId=React.useId();const sharedStyleClassNames=[];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(motion.div,{...restProps,...gestureHandlers,className:cx(serializationHash,...sharedStyleClassNames,\"framer-ij9ysp\",className,classNames),\"data-framer-name\":\"Orange\",layoutDependency:layoutDependency,layoutId:\"f95sFC0Ne\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{...style},children:[bRvakbH4q&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-18gawa6-container\",\"data-framer-name\":\"Orange\",layoutDependency:layoutDependency,layoutId:\"bnE5ptkPy-container\",name:\"Orange\",children:/*#__PURE__*/_jsx(Animator,{animate:true,endCircle:false,from:0,height:\"100%\",id:\"bnE5ptkPy\",layoutId:\"bnE5ptkPy\",loopOptions:\"mirror\",name:\"Orange\",pathAnimation:{delay:.7,duration:2,ease:[.15,.5,.15,1.3],type:\"tween\"},shouldLoop:true,slots:[/*#__PURE__*/_jsx(SVG,{className:\"framer-g8g2cr\",\"data-framer-name\":\"Vector 43 (Stroke)\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"HbTda5uvK\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 143 100\"><path d=\"M 141.501 9.502 C -6.5 -20.5 -26 37.501 31.5 99.001\" fill=\"transparent\" stroke-width=\"2\" stroke=\"rgb(248,147,74)\" stroke-linecap=\"square\" stroke-miterlimit=\"10\" stroke-dasharray=\"\"></path></svg>',svgContentId:9762985318,withExternalLayout:true})],style:{height:\"100%\",width:\"100%\"},to:100,width:\"100%\"})})}),fD96gZIDj&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-fgphn1-container\",\"data-framer-name\":\"Green\",layoutDependency:layoutDependency,layoutId:\"kSPSIIbsa-container\",name:\"Green\",children:/*#__PURE__*/_jsx(Animator,{animate:true,endCircle:false,from:0,height:\"100%\",id:\"kSPSIIbsa\",layoutId:\"kSPSIIbsa\",loopOptions:\"mirror\",name:\"Green\",pathAnimation:{delay:.7,duration:2,ease:[.15,.5,.15,1.3],type:\"tween\"},shouldLoop:true,slots:[/*#__PURE__*/_jsx(SVG,{className:\"framer-1ebf0qt\",\"data-framer-name\":\"Vector 43 (Stroke)\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"lsXx9eljC\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 117 82\"><path d=\"M 41.5 8.5 C 99.249 -2.501 105.663 12.809 107.938 14.375 C 122.125 28.25 115.501 52.001 90.001 80.501\" fill=\"transparent\" stroke-width=\"2\" stroke=\"var(--token-8ecf3070-09f7-44e8-a71e-d4b812577923, rgb(54, 139, 139)) /* {&quot;name&quot;:&quot;Green Cirkkle&quot;} */\" stroke-linecap=\"square\" stroke-miterlimit=\"10\" stroke-dasharray=\"\"></path></svg>',svgContentId:12454026751,withExternalLayout:true})],style:{height:\"100%\",width:\"100%\"},to:100,width:\"100%\"})})})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-hxFzt.framer-10iny52, .framer-hxFzt .framer-10iny52 { display: block; }\",\".framer-hxFzt.framer-ij9ysp { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-hxFzt .framer-18gawa6-container, .framer-hxFzt .framer-fgphn1-container { flex: none; height: 99px; position: relative; width: 120px; z-index: 1; }\",\".framer-hxFzt .framer-g8g2cr { height: 100px; position: relative; width: 143px; }\",\".framer-hxFzt .framer-1ebf0qt { height: 82px; position: relative; width: 117px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-hxFzt.framer-ij9ysp { gap: 0px; } .framer-hxFzt.framer-ij9ysp > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-hxFzt.framer-ij9ysp > :first-child { margin-top: 0px; } .framer-hxFzt.framer-ij9ysp > :last-child { margin-bottom: 0px; } }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 99\n * @framerIntrinsicWidth 120\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"auto\",\"auto\"]}}}\n * @framerVariables {\"fD96gZIDj\":\"green\",\"bRvakbH4q\":\"orange\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerGF58od4uD=withCSS(Component,css,\"framer-hxFzt\");export default FramerGF58od4uD;FramerGF58od4uD.displayName=\"Anim: Curves\";FramerGF58od4uD.defaultProps={height:99,width:120};addPropertyControls(FramerGF58od4uD,{fD96gZIDj:{defaultValue:false,title:\"Green\",type:ControlType.Boolean},bRvakbH4q:{defaultValue:true,title:\"Orange\",type:ControlType.Boolean}});addFonts(FramerGF58od4uD,[{explicitInter:true,fonts:[]},...AnimatorFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerGF58od4uD\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\",\"framerVariables\":\"{\\\"fD96gZIDj\\\":\\\"green\\\",\\\"bRvakbH4q\\\":\\\"orange\\\"}\",\"framerDisplayContentsDiv\":\"false\",\"framerIntrinsicWidth\":\"120\",\"framerComponentViewportWidth\":\"true\",\"framerImmutableVariables\":\"true\",\"framerIntrinsicHeight\":\"99\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]}}}\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./GF58od4uD.map", "// Generated by Framer (41c59c7)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,Image,optimizeAppear,optimizeAppearTransformTemplate,useComponentViewport,useLocaleInfo,useVariantState,withCSS,withFX}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";const ImageWithFX=withFX(Image);const MotionDivWithFX=withFX(motion.div);const cycleOrder=[\"tQhExdv9F\",\"r3s891yot\"];const serializationHash=\"framer-LfeL3\";const variantClassNames={r3s891yot:\"framer-v-1sme1lu\",tQhExdv9F:\"framer-v-d53xij\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const transition2={delay:0,duration:40,ease:[0,0,1,1],type:\"tween\"};const animation={opacity:1,rotate:360,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0};const transformTemplate1=(_,t)=>`translateX(-50%) ${t}`;const animation1={opacity:1,rotate:-360,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0};const transition3={delay:0,duration:25,ease:[0,0,1,1],type:\"tween\"};const transformTemplate2=(_,t)=>`translate(-50%, -50%) ${t}`;const transition4={damping:30,delay:35,mass:1,stiffness:400,type:\"spring\"};const animation2={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition4,x:0,y:0};const transformTemplate3=(_,t)=>`perspective(1200px) ${t}`;const animation3={opacity:1,rotate:159,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition4,x:0,y:0};const animation4={opacity:.001,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0};const transition5={delay:0,duration:23,ease:[0,0,1,1],type:\"tween\"};const transition6={delay:0,duration:50,ease:[0,0,1,1],type:\"tween\"};const transition7={delay:0,duration:27,ease:[0,0,1,1],type:\"tween\"};const transition8={delay:0,duration:20,ease:[0,0,1,1],type:\"tween\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion(React.Fragment);const humanReadableVariantMap={\"Variant 1\":\"tQhExdv9F\",Mobile:\"r3s891yot\"};const getProps=({height,id,width,...props})=>{var _humanReadableVariantMap_props_variant,_ref;return{...props,variant:(_ref=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref!==void 0?_ref:\"tQhExdv9F\"};};const createLayoutDependency=(props,variants)=>variants.join(\"-\")+props.layoutDependency;const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,...restProps}=getProps(props);const{baseVariant,classNames,gestureVariant,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"tQhExdv9F\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const ref1=React.useRef(null);const defaultLayoutId=React.useId();const sharedStyleClassNames=[];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(motion.div,{...restProps,className:cx(serializationHash,...sharedStyleClassNames,\"framer-d53xij\",className,classNames),\"data-framer-name\":\"Variant 1\",layoutDependency:layoutDependency,layoutId:\"tQhExdv9F\",onHoverEnd:()=>setGestureState({isHovered:false}),onHoverStart:()=>setGestureState({isHovered:true}),onTap:()=>setGestureState({isPressed:false}),onTapCancel:()=>setGestureState({isPressed:false}),onTapStart:()=>setGestureState({isPressed:true}),ref:ref!==null&&ref!==void 0?ref:ref1,style:{...style},...addPropertyOverrides({r3s891yot:{\"data-framer-name\":\"Mobile\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__loop:animation,__framer__loopEffectEnabled:true,__framer__loopRepeatDelay:0,__framer__loopRepeatType:\"loop\",__framer__loopTransition:transition2,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,className:\"framer-1rj3dku\",layoutDependency:layoutDependency,layoutId:\"jOzJ1BH4f\",style:{rotate:225},transformTemplate:transformTemplate1,children:[/*#__PURE__*/_jsx(ImageWithFX,{__framer__loop:animation1,__framer__loopEffectEnabled:true,__framer__loopRepeatDelay:0,__framer__loopRepeatType:\"loop\",__framer__loopTransition:transition2,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,background:{alt:\"\",fit:\"stretch\",positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/8vvrwkSJbbRL1McF6jFVZUeVBJo.png\"},className:\"framer-28vz2u\",\"data-framer-name\":\"Rectangle 24\",layoutDependency:layoutDependency,layoutId:\"QKSaFDt4_\",style:{borderBottomLeftRadius:41,borderBottomRightRadius:41,borderTopLeftRadius:41,borderTopRightRadius:41,boxShadow:\"-4px 5px 14px 0px rgba(0, 0, 0, 0.12999999523162842)\",rotate:129}}),/*#__PURE__*/_jsx(ImageWithFX,{__framer__loop:animation1,__framer__loopEffectEnabled:true,__framer__loopRepeatDelay:0,__framer__loopRepeatType:\"loop\",__framer__loopTransition:transition2,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,background:{alt:\"\",fit:\"stretch\",positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/8vvrwkSJbbRL1McF6jFVZUeVBJo.png\"},className:\"framer-g5swrn\",\"data-framer-name\":\"Rectangle 24\",layoutDependency:layoutDependency,layoutId:\"giBKTNdGl\",style:{borderBottomLeftRadius:41,borderBottomRightRadius:41,borderTopLeftRadius:41,borderTopRightRadius:41,boxShadow:\"-4px 5px 14px 0px rgba(0, 0, 0, 0.12999999523162842)\",rotate:133}})]}),/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__loop:animation,__framer__loopEffectEnabled:true,__framer__loopRepeatDelay:0,__framer__loopRepeatType:\"loop\",__framer__loopTransition:transition3,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,className:\"framer-1gmom0s\",layoutDependency:layoutDependency,layoutId:\"Hz0PUT7hh\",style:{rotate:197},transformTemplate:transformTemplate2,children:[/*#__PURE__*/_jsx(ImageWithFX,{__framer__loop:animation1,__framer__loopEffectEnabled:true,__framer__loopRepeatDelay:0,__framer__loopRepeatType:\"loop\",__framer__loopTransition:transition3,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,background:{alt:\"\",fit:\"fill\",sizes:\"74px\",src:\"https://framerusercontent.com/images/KzzgWcBUl7cV8QfH0xh1UK1umQ.jpg\",srcSet:\"https://framerusercontent.com/images/KzzgWcBUl7cV8QfH0xh1UK1umQ.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/KzzgWcBUl7cV8QfH0xh1UK1umQ.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/KzzgWcBUl7cV8QfH0xh1UK1umQ.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/KzzgWcBUl7cV8QfH0xh1UK1umQ.jpg 4096w\"},className:\"framer-129my55\",\"data-framer-name\":\"Rectangle 21\",layoutDependency:layoutDependency,layoutId:\"HUiKnVIZy\",style:{borderBottomLeftRadius:48.92,borderBottomRightRadius:48.92,borderTopLeftRadius:48.92,borderTopRightRadius:48.92,boxShadow:\"-4px 5px 14px 0px rgba(0, 0, 0, 0.12999999523162842)\",rotate:165}}),/*#__PURE__*/_jsx(ImageWithFX,{__framer__loop:animation1,__framer__loopEffectEnabled:true,__framer__loopRepeatDelay:0,__framer__loopRepeatType:\"loop\",__framer__loopTransition:transition3,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,animate:optimizeAppear(\"animate\",\"1m4yi22\",animation3,\"d53xij\"),background:{alt:\"\",fit:\"fill\",sizes:\"74px\",src:\"https://framerusercontent.com/images/KzzgWcBUl7cV8QfH0xh1UK1umQ.jpg\",srcSet:\"https://framerusercontent.com/images/KzzgWcBUl7cV8QfH0xh1UK1umQ.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/KzzgWcBUl7cV8QfH0xh1UK1umQ.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/KzzgWcBUl7cV8QfH0xh1UK1umQ.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/KzzgWcBUl7cV8QfH0xh1UK1umQ.jpg 4096w\"},className:\"framer-1m4yi22\",\"data-framer-appear-id\":\"1m4yi22\",\"data-framer-name\":\"Rectangle 21\",exit:animation2,initial:optimizeAppear(\"initial\",\"1m4yi22\",animation4,\"d53xij\"),layoutDependency:layoutDependency,layoutId:\"PGtEXLpzm\",style:{borderBottomLeftRadius:48.92,borderBottomRightRadius:48.92,borderTopLeftRadius:48.92,borderTopRightRadius:48.92,boxShadow:\"-4px 5px 14px 0px rgba(0, 0, 0, 0.12999999523162842)\",rotate:159},transformTemplate:optimizeAppearTransformTemplate(\"1m4yi22\",transformTemplate3),...addPropertyOverrides({r3s891yot:{\"data-framer-appear-id\":\"r0xid\",animate:optimizeAppear(\"animate\",\"r0xid\",animation3,\"1sme1lu\"),initial:optimizeAppear(\"initial\",\"r0xid\",animation4,\"1sme1lu\"),transformTemplate:optimizeAppearTransformTemplate(\"r0xid\",transformTemplate3)}},baseVariant,gestureVariant)})]}),/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__loop:animation,__framer__loopEffectEnabled:true,__framer__loopRepeatDelay:0,__framer__loopRepeatType:\"loop\",__framer__loopTransition:transition5,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,className:\"framer-8i803k\",layoutDependency:layoutDependency,layoutId:\"lF3AUubgZ\",style:{rotate:229},transformTemplate:transformTemplate2,children:[/*#__PURE__*/_jsx(ImageWithFX,{__framer__loop:animation1,__framer__loopEffectEnabled:true,__framer__loopRepeatDelay:0,__framer__loopRepeatType:\"loop\",__framer__loopTransition:transition5,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,background:{alt:\"\",fit:\"stretch\",positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/vMwdQQDSd1gx7Bu9WEKbEcgqWk.png\"},className:\"framer-dp48nb\",\"data-framer-name\":\"Rectangle 23\",layoutDependency:layoutDependency,layoutId:\"bFHSC4AmA\",style:{borderBottomLeftRadius:43.46,borderBottomRightRadius:43.46,borderTopLeftRadius:43.46,borderTopRightRadius:43.46,boxShadow:\"-4px 5px 14px 0px rgba(0, 0, 0, 0.12999999523162842)\",rotate:135}}),/*#__PURE__*/_jsx(ImageWithFX,{__framer__loop:animation1,__framer__loopEffectEnabled:true,__framer__loopRepeatDelay:0,__framer__loopRepeatType:\"loop\",__framer__loopTransition:transition5,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,background:{alt:\"\",fit:\"stretch\",positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/vMwdQQDSd1gx7Bu9WEKbEcgqWk.png\"},className:\"framer-3lrshn\",\"data-framer-name\":\"Rectangle 23\",layoutDependency:layoutDependency,layoutId:\"ShftfacDz\",style:{borderBottomLeftRadius:43.46,borderBottomRightRadius:43.46,borderTopLeftRadius:43.46,borderTopRightRadius:43.46,boxShadow:\"-4px 5px 14px 0px rgba(0, 0, 0, 0.12999999523162842)\",rotate:135}})]}),/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__loop:animation,__framer__loopEffectEnabled:true,__framer__loopRepeatDelay:0,__framer__loopRepeatType:\"loop\",__framer__loopTransition:transition6,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,className:\"framer-1c5udbi\",layoutDependency:layoutDependency,layoutId:\"QLb540Rh8\",style:{rotate:267},transformTemplate:transformTemplate1,children:[/*#__PURE__*/_jsx(ImageWithFX,{__framer__loop:animation1,__framer__loopEffectEnabled:true,__framer__loopRepeatDelay:0,__framer__loopRepeatType:\"loop\",__framer__loopTransition:transition6,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,background:{alt:\"\",fit:\"stretch\",positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/XY2s4ERkXGODCwGUKHe5AsyaMg.png\"},className:\"framer-1v2pxns\",\"data-framer-name\":\"Rectangle 20\",layoutDependency:layoutDependency,layoutId:\"AyCbxF_aU\",style:{borderBottomLeftRadius:78,borderBottomRightRadius:78,borderTopLeftRadius:78,borderTopRightRadius:78,boxShadow:\"-4px 5px 14px 0px rgba(0, 0, 0, 0.12999999523162842)\",rotate:90}}),/*#__PURE__*/_jsx(ImageWithFX,{__framer__loop:animation1,__framer__loopEffectEnabled:true,__framer__loopRepeatDelay:0,__framer__loopRepeatType:\"loop\",__framer__loopTransition:transition6,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,background:{alt:\"\",fit:\"stretch\",positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/XY2s4ERkXGODCwGUKHe5AsyaMg.png\"},className:\"framer-172p7z9\",\"data-framer-name\":\"Rectangle 20\",layoutDependency:layoutDependency,layoutId:\"x71_1zVMe\",style:{borderBottomLeftRadius:78,borderBottomRightRadius:78,borderTopLeftRadius:78,borderTopRightRadius:78,boxShadow:\"-4px 5px 14px 0px rgba(0, 0, 0, 0.12999999523162842)\",rotate:90}})]}),/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__loop:animation,__framer__loopEffectEnabled:true,__framer__loopRepeatDelay:0,__framer__loopRepeatType:\"loop\",__framer__loopTransition:transition2,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,className:\"framer-1nnqug0\",layoutDependency:layoutDependency,layoutId:\"IlNupKRyY\",style:{rotate:286},transformTemplate:transformTemplate2,children:[/*#__PURE__*/_jsx(ImageWithFX,{__framer__loop:animation1,__framer__loopEffectEnabled:true,__framer__loopRepeatDelay:0,__framer__loopRepeatType:\"loop\",__framer__loopTransition:transition2,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,background:{alt:\"\",fit:\"fill\",sizes:\"90px\",src:\"https://framerusercontent.com/images/zG9iqK9iSW7TGBwygSl4rI4VU.jpg\",srcSet:\"https://framerusercontent.com/images/zG9iqK9iSW7TGBwygSl4rI4VU.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/zG9iqK9iSW7TGBwygSl4rI4VU.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/zG9iqK9iSW7TGBwygSl4rI4VU.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/zG9iqK9iSW7TGBwygSl4rI4VU.jpg 4096w\"},className:\"framer-uqkl7p\",\"data-framer-name\":\"Rectangle 22\",layoutDependency:layoutDependency,layoutId:\"JFSAZIW77\",style:{borderBottomLeftRadius:53,borderBottomRightRadius:53,borderTopLeftRadius:53,borderTopRightRadius:53,boxShadow:\"-4px 5px 14px 0px rgba(0, 0, 0, 0.12999999523162842)\",rotate:85}}),/*#__PURE__*/_jsx(ImageWithFX,{__framer__loop:animation1,__framer__loopEffectEnabled:true,__framer__loopRepeatDelay:0,__framer__loopRepeatType:\"loop\",__framer__loopTransition:transition2,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,background:{alt:\"\",fit:\"fill\",sizes:\"90px\",src:\"https://framerusercontent.com/images/zG9iqK9iSW7TGBwygSl4rI4VU.jpg\",srcSet:\"https://framerusercontent.com/images/zG9iqK9iSW7TGBwygSl4rI4VU.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/zG9iqK9iSW7TGBwygSl4rI4VU.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/zG9iqK9iSW7TGBwygSl4rI4VU.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/zG9iqK9iSW7TGBwygSl4rI4VU.jpg 4096w\"},className:\"framer-o7ydnm\",\"data-framer-name\":\"Rectangle 22\",layoutDependency:layoutDependency,layoutId:\"ETgme7YuE\",style:{borderBottomLeftRadius:53,borderBottomRightRadius:53,borderTopLeftRadius:53,borderTopRightRadius:53,boxShadow:\"-4px 5px 14px 0px rgba(0, 0, 0, 0.12999999523162842)\",rotate:77}})]}),/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__loop:animation,__framer__loopEffectEnabled:true,__framer__loopRepeatDelay:0,__framer__loopRepeatType:\"loop\",__framer__loopTransition:transition7,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,className:\"framer-1vfwek0\",layoutDependency:layoutDependency,layoutId:\"nb5YEpFgF\",style:{rotate:293},transformTemplate:transformTemplate1,children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1y27zam\",\"data-framer-name\":\"Rectangle 12\",layoutDependency:layoutDependency,layoutId:\"Bg_vHmERV\",style:{backgroundColor:\"var(--token-b50db594-ad0e-41b9-9eeb-f2064ae0196e, rgb(246, 120, 29))\",borderBottomLeftRadius:179,borderBottomRightRadius:179,borderTopLeftRadius:179,borderTopRightRadius:179,boxShadow:\"-4px 5px 14px 0px rgba(0, 0, 0, 0.07999999821186066)\"}}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1pzb7zf\",\"data-framer-name\":\"Rectangle 12\",layoutDependency:layoutDependency,layoutId:\"zF6ZVcPn8\",style:{backgroundColor:\"var(--token-b50db594-ad0e-41b9-9eeb-f2064ae0196e, rgb(246, 120, 29))\",borderBottomLeftRadius:179,borderBottomRightRadius:179,borderTopLeftRadius:179,borderTopRightRadius:179,boxShadow:\"-4px 5px 14px 0px rgba(0, 0, 0, 0.07999999821186066)\"}})]}),/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__loop:animation,__framer__loopEffectEnabled:true,__framer__loopRepeatDelay:0,__framer__loopRepeatType:\"loop\",__framer__loopTransition:transition3,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,className:\"framer-mr3d95\",layoutDependency:layoutDependency,layoutId:\"Aezx4Tm33\",style:{rotate:211},transformTemplate:transformTemplate2,children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-3qumhk\",\"data-framer-name\":\"Rectangle 12\",layoutDependency:layoutDependency,layoutId:\"aulRo5Unm\",style:{backgroundColor:\"var(--token-b50db594-ad0e-41b9-9eeb-f2064ae0196e, rgb(246, 120, 29))\",borderBottomLeftRadius:179,borderBottomRightRadius:179,borderTopLeftRadius:179,borderTopRightRadius:179,boxShadow:\"-4px 5px 14px 0px rgba(0, 0, 0, 0.07999999821186066)\"}}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-rjziiu\",\"data-framer-name\":\"Rectangle 12\",layoutDependency:layoutDependency,layoutId:\"bhW9mlpGP\",style:{backgroundColor:\"var(--token-b50db594-ad0e-41b9-9eeb-f2064ae0196e, rgb(246, 120, 29))\",borderBottomLeftRadius:179,borderBottomRightRadius:179,borderTopLeftRadius:179,borderTopRightRadius:179,boxShadow:\"-4px 5px 14px 0px rgba(0, 0, 0, 0.07999999821186066)\"}})]}),/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__loop:animation,__framer__loopEffectEnabled:true,__framer__loopRepeatDelay:0,__framer__loopRepeatType:\"loop\",__framer__loopTransition:transition5,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,className:\"framer-1axuppy\",layoutDependency:layoutDependency,layoutId:\"SAhIStMsD\",style:{rotate:216},transformTemplate:transformTemplate2,children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1pbrfn3\",\"data-framer-name\":\"Rectangle 12\",layoutDependency:layoutDependency,layoutId:\"mrDCEKvXb\",style:{backgroundColor:\"var(--token-b50db594-ad0e-41b9-9eeb-f2064ae0196e, rgb(246, 120, 29))\",borderBottomLeftRadius:179,borderBottomRightRadius:179,borderTopLeftRadius:179,borderTopRightRadius:179,boxShadow:\"-4px 5px 14px 0px rgba(0, 0, 0, 0.07999999821186066)\"}}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-aorjjq\",\"data-framer-name\":\"Rectangle 12\",layoutDependency:layoutDependency,layoutId:\"CnIfzA61x\",style:{backgroundColor:\"var(--token-b50db594-ad0e-41b9-9eeb-f2064ae0196e, rgb(246, 120, 29))\",borderBottomLeftRadius:179,borderBottomRightRadius:179,borderTopLeftRadius:179,borderTopRightRadius:179,boxShadow:\"-4px 5px 14px 0px rgba(0, 0, 0, 0.07999999821186066)\"}})]}),/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__loop:animation,__framer__loopEffectEnabled:true,__framer__loopRepeatDelay:0,__framer__loopRepeatType:\"loop\",__framer__loopTransition:transition8,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,className:\"framer-1cfdgx5\",layoutDependency:layoutDependency,layoutId:\"HI6ZVpkjr\",style:{rotate:270},transformTemplate:transformTemplate2,children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-9wgai5\",\"data-framer-name\":\"Rectangle 12\",layoutDependency:layoutDependency,layoutId:\"oq9MRyAjb\",style:{backgroundColor:\"var(--token-8ecf3070-09f7-44e8-a71e-d4b812577923, rgb(54, 139, 139))\",borderBottomLeftRadius:179,borderBottomRightRadius:179,borderTopLeftRadius:179,borderTopRightRadius:179,boxShadow:\"-4px 5px 14px 0px rgba(0, 0, 0, 0.07999999821186066)\"}}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1vny5jl\",\"data-framer-name\":\"Rectangle 12\",layoutDependency:layoutDependency,layoutId:\"UTqIQ3tfD\",style:{backgroundColor:\"var(--token-8ecf3070-09f7-44e8-a71e-d4b812577923, rgb(54, 139, 139))\",borderBottomLeftRadius:179,borderBottomRightRadius:179,borderTopLeftRadius:179,borderTopRightRadius:179,boxShadow:\"-4px 5px 14px 0px rgba(0, 0, 0, 0.07999999821186066)\"}})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1eb1pvo\",layoutDependency:layoutDependency,layoutId:\"KHEfgMQne\",style:{opacity:1,rotate:257},transformTemplate:transformTemplate2,variants:{r3s891yot:{opacity:0}},children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",sizes:\"265px\",src:\"https://framerusercontent.com/images/EIG12jABsOWovHDkaCZtsUAliQ.png\",srcSet:\"https://framerusercontent.com/images/EIG12jABsOWovHDkaCZtsUAliQ.png?scale-down-to=512 512w,https://framerusercontent.com/images/EIG12jABsOWovHDkaCZtsUAliQ.png 1024w\"},className:\"framer-dpfegf\",\"data-framer-name\":\"Rectangle 12\",layoutDependency:layoutDependency,layoutId:\"GTq_Tsw_I\",style:{borderBottomLeftRadius:179,borderBottomRightRadius:179,borderTopLeftRadius:179,borderTopRightRadius:179,boxShadow:\"-4px 5px 14px 0px rgba(0, 0, 0, 0.07999999821186066)\",rotate:100}}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",sizes:\"265px\",src:\"https://framerusercontent.com/images/EIG12jABsOWovHDkaCZtsUAliQ.png\",srcSet:\"https://framerusercontent.com/images/EIG12jABsOWovHDkaCZtsUAliQ.png?scale-down-to=512 512w,https://framerusercontent.com/images/EIG12jABsOWovHDkaCZtsUAliQ.png 1024w\"},className:\"framer-jxtea\",\"data-framer-name\":\"Rectangle 12\",layoutDependency:layoutDependency,layoutId:\"V1MzifBuS\",style:{borderBottomLeftRadius:179,borderBottomRightRadius:179,borderTopLeftRadius:179,borderTopRightRadius:179,boxShadow:\"-4px 5px 14px 0px rgba(0, 0, 0, 0.07999999821186066)\",rotate:100}})]}),/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__loop:animation,__framer__loopEffectEnabled:true,__framer__loopRepeatDelay:0,__framer__loopRepeatType:\"loop\",__framer__loopTransition:transition6,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,className:\"framer-4erpj2\",\"data-border\":true,layoutDependency:layoutDependency,layoutId:\"GgcF_qw6k\",style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"rgb(201, 201, 201)\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"dashed\",\"--border-top-width\":\"1px\",borderBottomLeftRadius:646,borderBottomRightRadius:646,borderTopLeftRadius:646,borderTopRightRadius:646},children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-19rkx6r\",layoutDependency:layoutDependency,layoutId:\"vY0dt9x38\"}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-13sm6tx\",\"data-border\":true,layoutDependency:layoutDependency,layoutId:\"j4BUzCsp3\",style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"rgba(201, 201, 201, 0.6)\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",borderBottomLeftRadius:566,borderBottomRightRadius:566,borderTopLeftRadius:566,borderTopRightRadius:566},children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-xf6gjx\",\"data-border\":true,layoutDependency:layoutDependency,layoutId:\"rlZYzKTnV\",style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"rgb(201, 201, 201)\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"dashed\",\"--border-top-width\":\"1px\",borderBottomLeftRadius:566,borderBottomRightRadius:566,borderTopLeftRadius:566,borderTopRightRadius:566},children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-h4uoo4\",\"data-border\":true,layoutDependency:layoutDependency,layoutId:\"JRuYaOSeN\",style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"rgba(201, 201, 201, 0.6)\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",borderBottomLeftRadius:566,borderBottomRightRadius:566,borderTopLeftRadius:566,borderTopRightRadius:566},children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1b71sd6\",\"data-border\":true,layoutDependency:layoutDependency,layoutId:\"mmIJWE8up\",style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"rgb(201, 201, 201)\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"dashed\",\"--border-top-width\":\"1px\",borderBottomLeftRadius:566,borderBottomRightRadius:566,borderTopLeftRadius:566,borderTopRightRadius:566},children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-43frbk\",\"data-border\":true,layoutDependency:layoutDependency,layoutId:\"gD8mqMf5R\",style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"rgba(201, 201, 201, 0.6)\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",borderBottomLeftRadius:566,borderBottomRightRadius:566,borderTopLeftRadius:566,borderTopRightRadius:566}})})})})})]})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-LfeL3.framer-xuco0z, .framer-LfeL3 .framer-xuco0z { display: block; }\",\".framer-LfeL3.framer-d53xij { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: 1292px; justify-content: center; overflow: visible; padding: 0px 0px 0px 0px; position: relative; width: 1292px; }\",\".framer-LfeL3 .framer-1rj3dku { align-content: center; align-items: center; bottom: -36px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; justify-content: space-between; left: 50%; overflow: visible; padding: 0px 0px 0px 0px; position: absolute; top: -36px; width: auto; z-index: 1; }\",\".framer-LfeL3 .framer-28vz2u, .framer-LfeL3 .framer-g5swrn { flex: none; height: 81px; position: relative; width: 81px; }\",\".framer-LfeL3 .framer-1gmom0s { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; height: 970px; justify-content: space-between; left: 50%; overflow: visible; padding: 0px 0px 0px 0px; position: absolute; top: 50%; width: auto; z-index: 1; }\",\".framer-LfeL3 .framer-129my55, .framer-LfeL3 .framer-1m4yi22 { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 74px); position: relative; width: 74px; }\",\".framer-LfeL3 .framer-8i803k { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; height: 338px; justify-content: space-between; left: 50%; overflow: visible; padding: 0px 0px 0px 0px; position: absolute; top: 50%; width: auto; z-index: 1; }\",\".framer-LfeL3 .framer-dp48nb, .framer-LfeL3 .framer-3lrshn { flex: none; height: 82px; position: relative; width: 82px; }\",\".framer-LfeL3 .framer-1c5udbi { align-content: center; align-items: center; bottom: -74px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; justify-content: space-between; left: 50%; overflow: visible; padding: 0px 0px 0px 0px; position: absolute; top: -74px; width: auto; z-index: 1; }\",\".framer-LfeL3 .framer-1v2pxns, .framer-LfeL3 .framer-172p7z9 { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 140px); position: relative; width: 140px; z-index: 1; }\",\".framer-LfeL3 .framer-1nnqug0 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; height: 1192px; justify-content: space-between; left: 50%; overflow: visible; padding: 0px 0px 0px 0px; position: absolute; top: 50%; width: auto; z-index: 1; }\",\".framer-LfeL3 .framer-uqkl7p, .framer-LfeL3 .framer-o7ydnm { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 90px); position: relative; width: 90px; z-index: 1; }\",\".framer-LfeL3 .framer-1vfwek0 { align-content: center; align-items: center; bottom: -13px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; justify-content: space-between; left: 50%; overflow: visible; padding: 0px 0px 0px 0px; position: absolute; top: -13px; width: auto; }\",\".framer-LfeL3 .framer-1y27zam, .framer-LfeL3 .framer-1pzb7zf, .framer-LfeL3 .framer-3qumhk, .framer-LfeL3 .framer-rjziiu, .framer-LfeL3 .framer-9wgai5, .framer-LfeL3 .framer-1vny5jl { flex: none; height: 29px; position: relative; width: 29px; z-index: 1; }\",\".framer-LfeL3 .framer-mr3d95 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; height: 1106px; justify-content: space-between; left: 50%; overflow: visible; padding: 0px 0px 0px 0px; position: absolute; top: 50%; width: auto; }\",\".framer-LfeL3 .framer-1axuppy { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; height: 730px; justify-content: space-between; left: 50%; overflow: visible; padding: 0px 0px 0px 0px; position: absolute; top: 50%; width: auto; z-index: 1; }\",\".framer-LfeL3 .framer-1pbrfn3, .framer-LfeL3 .framer-aorjjq { flex: none; height: 49px; position: relative; width: 49px; z-index: 1; }\",\".framer-LfeL3 .framer-1cfdgx5 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; height: 720px; justify-content: space-between; left: 50%; overflow: visible; padding: 0px 0px 0px 0px; position: absolute; top: 50%; width: auto; z-index: 1; }\",\".framer-LfeL3 .framer-1eb1pvo { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; height: 1154px; justify-content: space-between; left: 50%; overflow: visible; padding: 0px 0px 0px 0px; position: absolute; top: 50%; width: auto; z-index: 1; }\",\".framer-LfeL3 .framer-dpfegf, .framer-LfeL3 .framer-jxtea { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 265px); position: relative; width: 265px; z-index: 1; }\",\".framer-LfeL3 .framer-4erpj2 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 1292px; justify-content: center; overflow: visible; padding: 0px 0px 0px 0px; position: relative; width: 1292px; z-index: -1; }\",\".framer-LfeL3 .framer-19rkx6r { flex: none; height: 23px; left: 0px; overflow: hidden; position: absolute; top: 503px; width: 23px; }\",\".framer-LfeL3 .framer-13sm6tx { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 1082px; justify-content: center; overflow: visible; padding: 0px 0px 0px 0px; position: relative; width: 1082px; z-index: -1; }\",\".framer-LfeL3 .framer-xf6gjx { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 906px; justify-content: center; overflow: visible; padding: 0px 0px 0px 0px; position: relative; width: 906px; z-index: -1; }\",\".framer-LfeL3 .framer-h4uoo4 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 694px; justify-content: center; overflow: visible; padding: 0px 0px 0px 0px; position: relative; width: 694px; z-index: -1; }\",\".framer-LfeL3 .framer-1b71sd6 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 480px; justify-content: center; overflow: visible; padding: 0px 0px 0px 0px; position: relative; width: 480px; z-index: -1; }\",\".framer-LfeL3 .framer-43frbk { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 282px; justify-content: center; overflow: visible; padding: 0px 0px 0px 0px; position: relative; width: 282px; z-index: -1; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-LfeL3.framer-d53xij, .framer-LfeL3 .framer-4erpj2, .framer-LfeL3 .framer-13sm6tx, .framer-LfeL3 .framer-xf6gjx, .framer-LfeL3 .framer-h4uoo4, .framer-LfeL3 .framer-1b71sd6, .framer-LfeL3 .framer-43frbk { gap: 0px; } .framer-LfeL3.framer-d53xij > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-LfeL3.framer-d53xij > :first-child { margin-top: 0px; } .framer-LfeL3.framer-d53xij > :last-child { margin-bottom: 0px; } .framer-LfeL3 .framer-4erpj2 > *, .framer-LfeL3 .framer-13sm6tx > *, .framer-LfeL3 .framer-xf6gjx > *, .framer-LfeL3 .framer-h4uoo4 > *, .framer-LfeL3 .framer-1b71sd6 > *, .framer-LfeL3 .framer-43frbk > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-LfeL3 .framer-4erpj2 > :first-child, .framer-LfeL3 .framer-13sm6tx > :first-child, .framer-LfeL3 .framer-xf6gjx > :first-child, .framer-LfeL3 .framer-h4uoo4 > :first-child, .framer-LfeL3 .framer-1b71sd6 > :first-child, .framer-LfeL3 .framer-43frbk > :first-child { margin-left: 0px; } .framer-LfeL3 .framer-4erpj2 > :last-child, .framer-LfeL3 .framer-13sm6tx > :last-child, .framer-LfeL3 .framer-xf6gjx > :last-child, .framer-LfeL3 .framer-h4uoo4 > :last-child, .framer-LfeL3 .framer-1b71sd6 > :last-child, .framer-LfeL3 .framer-43frbk > :last-child { margin-right: 0px; } }\",'.framer-LfeL3[data-border=\"true\"]::after, .framer-LfeL3 [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); width: 100%; height: 100%; position: absolute; box-sizing: border-box; left: 0; top: 0; border-radius: inherit; pointer-events: none; }'];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 1292\n * @framerIntrinsicWidth 1292\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]},\"r3s891yot\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerN9EXhGAlu=withCSS(Component,css,\"framer-LfeL3\");export default FramerN9EXhGAlu;FramerN9EXhGAlu.displayName=\"Circle ROUND\";FramerN9EXhGAlu.defaultProps={height:1292,width:1292};addPropertyControls(FramerN9EXhGAlu,{variant:{options:[\"tQhExdv9F\",\"r3s891yot\"],optionTitles:[\"Variant 1\",\"Mobile\"],title:\"Variant\",type:ControlType.Enum}});addFonts(FramerN9EXhGAlu,[{explicitInter:true,fonts:[]}],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerN9EXhGAlu\",\"slots\":[],\"annotations\":{\"framerIntrinsicHeight\":\"1292\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"r3s891yot\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerImmutableVariables\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerContractVersion\":\"1\",\"framerIntrinsicWidth\":\"1292\",\"framerComponentViewportWidth\":\"true\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./N9EXhGAlu.map", "// Generated by Framer (41c59c7)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,getFontsFromSharedStyle,RichText,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import*as sharedStyle1 from\"https://framerusercontent.com/modules/3Se5R503Dq90faBXwLZu/MI6m0bXVkOcEkqIHbT2E/e8gsWVrDU.js\";import*as sharedStyle from\"https://framerusercontent.com/modules/digOgrWJ966iXkaXMfCO/6DaFcKrVT7Y9ZE0eWomB/pFr3xYY7b.js\";const cycleOrder=[\"Qys556uHS\",\"SzeLgjTGl\"];const serializationHash=\"framer-pfoTc\";const variantClassNames={Qys556uHS:\"framer-v-1v6kps9\",SzeLgjTGl:\"framer-v-wse733\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion(React.Fragment);const humanReadableVariantMap={\"Variant 1\":\"Qys556uHS\",\"Variant 2\":\"SzeLgjTGl\"};const getProps=({height,id,text,text2,width,...props})=>{var _ref,_ref1,_humanReadableVariantMap_props_variant,_ref2;return{...props,AJM6gbA_l:(_ref=text2!==null&&text2!==void 0?text2:props.AJM6gbA_l)!==null&&_ref!==void 0?_ref:\"Merci et \\xe0 bient\\xf4t sur Cirkkle !\",LBMEDJRxu:(_ref1=text!==null&&text!==void 0?text:props.LBMEDJRxu)!==null&&_ref1!==void 0?_ref1:\"Votre email a bien \\xe9t\\xe9 pris en compte\",variant:(_ref2=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref2!==void 0?_ref2:\"Qys556uHS\"};};const createLayoutDependency=(props,variants)=>variants.join(\"-\")+props.layoutDependency;const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,LBMEDJRxu,AJM6gbA_l,...restProps}=getProps(props);const{baseVariant,classNames,gestureVariant,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"Qys556uHS\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const ref1=React.useRef(null);const defaultLayoutId=React.useId();const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(motion.div,{...restProps,className:cx(serializationHash,...sharedStyleClassNames,\"framer-1v6kps9\",className,classNames),\"data-framer-name\":\"Variant 1\",layoutDependency:layoutDependency,layoutId:\"Qys556uHS\",onHoverEnd:()=>setGestureState({isHovered:false}),onHoverStart:()=>setGestureState({isHovered:true}),onTap:()=>setGestureState({isPressed:false}),onTapCancel:()=>setGestureState({isPressed:false}),onTapStart:()=>setGestureState({isPressed:true}),ref:ref!==null&&ref!==void 0?ref:ref1,style:{backgroundColor:\"var(--token-b50db594-ad0e-41b9-9eeb-f2064ae0196e, rgb(246, 120, 29))\",borderBottomLeftRadius:38,borderBottomRightRadius:38,borderTopLeftRadius:38,borderTopRightRadius:38,boxShadow:\"0px 10px 20px 0px rgba(0,0,0,0.05)\",...style},...addPropertyOverrides({SzeLgjTGl:{\"data-framer-name\":\"Variant 2\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h4,{className:\"framer-styles-preset-1ux7mzk\",\"data-styles-preset\":\"pFr3xYY7b\",style:{\"--framer-text-color\":\"var(--extracted-1eung3n, rgb(255, 255, 255))\"},children:\"Votre email a bien \\xe9t\\xe9 pris en compte\"})}),className:\"framer-1yhv2wx\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"ZCVw6yDmf\",style:{\"--extracted-1eung3n\":\"rgb(255, 255, 255)\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},text:LBMEDJRxu,verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({SzeLgjTGl:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h4,{className:\"framer-styles-preset-1ux7mzk\",\"data-styles-preset\":\"pFr3xYY7b\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-1eung3n, rgb(255, 255, 255))\"},children:\"Votre email a bien \\xe9t\\xe9 pris en compte\"})})}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h5,{className:\"framer-styles-preset-1u57xvz\",\"data-styles-preset\":\"e8gsWVrDU\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-1lwpl3i, rgb(255, 255, 255))\"},children:\"Merci et \\xe0 bient\\xf4t sur Cirkkle !\"})}),className:\"framer-46necy\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"MeO2DUhkk\",style:{\"--extracted-1lwpl3i\":\"rgb(255, 255, 255)\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},text:AJM6gbA_l,verticalAlignment:\"top\",withExternalLayout:true})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-pfoTc.framer-1i8o9c7, .framer-pfoTc .framer-1i8o9c7 { display: block; }\",\".framer-pfoTc.framer-1v6kps9 { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: 148px; justify-content: center; overflow: hidden; padding: 50px 50px 50px 50px; position: relative; width: 427px; will-change: var(--framer-will-change-override, transform); }\",\".framer-pfoTc .framer-1yhv2wx { flex: 1 0 0px; height: 1px; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-pfoTc .framer-46necy { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-pfoTc.framer-1v6kps9 { gap: 0px; } .framer-pfoTc.framer-1v6kps9 > * { margin: 0px; margin-bottom: calc(16px / 2); margin-top: calc(16px / 2); } .framer-pfoTc.framer-1v6kps9 > :first-child { margin-top: 0px; } .framer-pfoTc.framer-1v6kps9 > :last-child { margin-bottom: 0px; } }\",\".framer-pfoTc.framer-v-wse733.framer-1v6kps9 { gap: 44px; height: 157px; padding: 30px 30px 30px 30px; width: 310px; }\",\".framer-pfoTc.framer-v-wse733 .framer-1yhv2wx { order: 0; }\",\".framer-pfoTc.framer-v-wse733 .framer-46necy { order: 1; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-pfoTc.framer-v-wse733.framer-1v6kps9 { gap: 0px; } .framer-pfoTc.framer-v-wse733.framer-1v6kps9 > * { margin: 0px; margin-bottom: calc(44px / 2); margin-top: calc(44px / 2); } .framer-pfoTc.framer-v-wse733.framer-1v6kps9 > :first-child { margin-top: 0px; } .framer-pfoTc.framer-v-wse733.framer-1v6kps9 > :last-child { margin-bottom: 0px; } }\",...sharedStyle.css,...sharedStyle1.css];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 148\n * @framerIntrinsicWidth 427\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]},\"SzeLgjTGl\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerVariables {\"LBMEDJRxu\":\"text\",\"AJM6gbA_l\":\"text2\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const Framernp9vbxdxd=withCSS(Component,css,\"framer-pfoTc\");export default Framernp9vbxdxd;Framernp9vbxdxd.displayName=\"Overlay\";Framernp9vbxdxd.defaultProps={height:148,width:427};addPropertyControls(Framernp9vbxdxd,{variant:{options:[\"Qys556uHS\",\"SzeLgjTGl\"],optionTitles:[\"Variant 1\",\"Variant 2\"],title:\"Variant\",type:ControlType.Enum},LBMEDJRxu:{defaultValue:\"Votre email a bien \\xe9t\\xe9 pris en compte\",displayTextArea:false,title:\"Text\",type:ControlType.String},AJM6gbA_l:{defaultValue:\"Merci et \\xe0 bient\\xf4t sur Cirkkle !\",displayTextArea:false,title:\"Text 2\",type:ControlType.String}});addFonts(Framernp9vbxdxd,[{explicitInter:true,fonts:[{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://app.framerstatic.com/Inter-Regular.cyrillic-ext-CFTLRB35.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://app.framerstatic.com/Inter-Regular.cyrillic-KKLZBALH.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://app.framerstatic.com/Inter-Regular.greek-ext-ULEBLIFV.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://app.framerstatic.com/Inter-Regular.greek-IRHSNFQB.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://app.framerstatic.com/Inter-Regular.latin-ext-VZDUGU3Q.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"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\",url:\"https://app.framerstatic.com/Inter-Regular.latin-JLQMKCHE.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://app.framerstatic.com/Inter-Regular.vietnamese-QK7VSWXK.woff2\",weight:\"400\"}]},...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"Framernp9vbxdxd\",\"slots\":[],\"annotations\":{\"framerComponentViewportWidth\":\"true\",\"framerVariables\":\"{\\\"LBMEDJRxu\\\":\\\"text\\\",\\\"AJM6gbA_l\\\":\\\"text2\\\"}\",\"framerContractVersion\":\"1\",\"framerImmutableVariables\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"SzeLgjTGl\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerIntrinsicWidth\":\"427\",\"framerIntrinsicHeight\":\"148\",\"framerDisplayContentsDiv\":\"false\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./np9vbxdxd.map", "import{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{motion}from\"framer-motion\";import*as React from\"react\";export const v0=/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h4,{className:\"framer-styles-preset-1o5d4n7\",\"data-styles-preset\":\"ttzUtOj6f\",style:{\"--framer-text-color\":\"var(--extracted-1eung3n, var(--token-8ecf3070-09f7-44e8-a71e-d4b812577923, rgb(54, 139, 139)))\"},children:\"Simple and secure application\"})});export const v1=/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-lmirgo\",\"data-styles-preset\":\"l67b_BAPm\",children:\"Save or borrow safely, without procedures or paperwork.\"}),/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-lmirgo\",\"data-styles-preset\":\"l67b_BAPm\",children:/*#__PURE__*/_jsx(motion.br,{className:\"trailing-break\"})})]});export const v2=/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h4,{className:\"framer-styles-preset-1o5d4n7\",\"data-styles-preset\":\"ttzUtOj6f\",style:{\"--framer-text-color\":\"var(--extracted-1eung3n, var(--token-8ecf3070-09f7-44e8-a71e-d4b812577923, rgb(54, 139, 139)))\"},children:\"Discretion and autonomy guaranteed\"})});export const v3=/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-lmirgo\",\"data-styles-preset\":\"l67b_BAPm\",children:\"Your tontines only concern you and your loved ones. They remain strictly confidential, just like your data.\"}),/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-lmirgo\",\"data-styles-preset\":\"l67b_BAPm\",children:/*#__PURE__*/_jsx(motion.br,{className:\"trailing-break\"})}),/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-lmirgo\",\"data-styles-preset\":\"l67b_BAPm\",children:/*#__PURE__*/_jsx(motion.br,{className:\"trailing-break\"})})]});export const v4=/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h4,{className:\"framer-styles-preset-1o5d4n7\",\"data-styles-preset\":\"ttzUtOj6f\",style:{\"--framer-text-color\":\"var(--extracted-1eung3n, var(--token-8ecf3070-09f7-44e8-a71e-d4b812577923, rgb(54, 139, 139)))\"},children:\"Solidarity and social savings\"})});export const v5=/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-lmirgo\",\"data-styles-preset\":\"l67b_BAPm\",children:\"Finance your community projects with our digital tontine solution.\"}),/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-lmirgo\",\"data-styles-preset\":\"l67b_BAPm\",children:/*#__PURE__*/_jsx(motion.br,{className:\"trailing-break\"})}),/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-lmirgo\",\"data-styles-preset\":\"l67b_BAPm\",children:/*#__PURE__*/_jsx(motion.br,{className:\"trailing-break\"})})]});\nexport const __FramerMetadata__ = {\"exports\":{\"v4\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v5\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v0\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v3\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v2\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v1\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (ed8225c)\nimport*as localizedValues from\"./ojTGWuIaR-0.js\";const valuesByLocaleId={ENPWvRMq3:localizedValues};export default function getLocalizedValue(key,locale){while(locale){const values=valuesByLocaleId[locale.id];if(values){const value=values[key];if(value)return value;}locale=locale.fallback;}}\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (ed8225c)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,getFontsFromSharedStyle,RichText,SVG,useComponentViewport,useLocaleInfo,useVariantState,withCSS,withFX}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import*as sharedStyle1 from\"https://framerusercontent.com/modules/sOoLKq6eEJbpfq1JloQf/shDhPgTjjwI7AnnbbNqI/l67b_BAPm.js\";import*as sharedStyle from\"https://framerusercontent.com/modules/h3uDJ73kl4iobCfE8cDC/u46RNb8YJj1qiqQCGOQN/ttzUtOj6f.js\";import getLocalizedValue from\"https://framerusercontent.com/modules/9y2mlZlkx7t7AJcMwzGh/DSY3svDKvwAz5sWZjZgy/ojTGWuIaR.js\";const MotionDivWithFX=withFX(motion.div);const enabledGestures={Ogn3x58ps:{hover:true},RVl94oJmR:{hover:true},zDbUqNof_:{hover:true}};const cycleOrder=[\"RVl94oJmR\",\"Ogn3x58ps\",\"zDbUqNof_\"];const serializationHash=\"framer-ASKU4\";const variantClassNames={Ogn3x58ps:\"framer-v-1o5wfyr\",RVl94oJmR:\"framer-v-1a11jig\",zDbUqNof_:\"framer-v-1qyhqt7\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const transition2={delay:.5,duration:.2,ease:[0,0,1,1],type:\"tween\"};const animation={opacity:1,rotate:20,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0};const transformTemplate1=(_,t)=>`translate(-50%, -50%) ${t}`;const transition3={delay:.8,duration:8,ease:[0,0,1,1],type:\"tween\"};const animation1={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:16,y:0};const transition4={delay:.2,duration:.3,ease:[.44,0,.56,1],type:\"tween\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const transition5={damping:23,delay:.6,mass:1,stiffness:500,type:\"spring\"};const animation2={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:-26,y:0};const transition6={damping:60,delay:.2,mass:1,stiffness:500,type:\"spring\"};const animation3={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:-16,y:0};const animation4={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:17,y:0};const transition7={damping:14,delay:1,mass:1,stiffness:403,type:\"spring\"};const transition8={damping:60,delay:.8,mass:1,stiffness:500,type:\"spring\"};const transition9={damping:60,delay:.6,mass:1,stiffness:500,type:\"spring\"};const transition10={damping:60,delay:.4,mass:1,stiffness:500,type:\"spring\"};const transformTemplate2=(_,t)=>`translateX(-50%) ${t}`;const transition11={damping:60,delay:1,mass:1,stiffness:500,type:\"spring\"};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={\"Variant 1\":\"RVl94oJmR\",\"Variant 2\":\"Ogn3x58ps\",\"Variant 3\":\"zDbUqNof_\"};const getProps=({height,id,width,...props})=>{var _humanReadableVariantMap_props_variant,_ref;return{...props,variant:(_ref=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref!==void 0?_ref:\"RVl94oJmR\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"RVl94oJmR\",enabledGestures,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const ref1=React.useRef(null);const isDisplayed=()=>{if([\"Ogn3x58ps-hover\",\"zDbUqNof_-hover\"].includes(gestureVariant))return false;if([\"Ogn3x58ps\",\"zDbUqNof_\"].includes(baseVariant))return false;return true;};const isDisplayed1=()=>{if(gestureVariant===\"Ogn3x58ps-hover\")return true;if(baseVariant===\"Ogn3x58ps\")return true;return false;};const isDisplayed2=()=>{if(gestureVariant===\"zDbUqNof_-hover\")return true;if(baseVariant===\"zDbUqNof_\")return true;return false;};const defaultLayoutId=React.useId();const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className];const componentViewport=useComponentViewport();var _getLocalizedValue,_getLocalizedValue1,_getLocalizedValue2,_getLocalizedValue3,_getLocalizedValue4,_getLocalizedValue5;return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(motion.div,{...restProps,...gestureHandlers,className:cx(serializationHash,...sharedStyleClassNames,\"framer-1a11jig\",className,classNames),\"data-border\":true,\"data-framer-name\":\"Variant 1\",layoutDependency:layoutDependency,layoutId:\"RVl94oJmR\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"var(--token-5e6960ae-1fda-4ec0-96be-d3a246e71d2b, rgb(235, 243, 243))\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",backgroundColor:\"rgb(246, 247, 248)\",borderBottomLeftRadius:30,borderBottomRightRadius:30,borderTopLeftRadius:30,borderTopRightRadius:30,...style},...addPropertyOverrides({\"Ogn3x58ps-hover\":{\"data-framer-name\":undefined},\"RVl94oJmR-hover\":{\"data-framer-name\":undefined},\"zDbUqNof_-hover\":{\"data-framer-name\":undefined},Ogn3x58ps:{\"data-framer-name\":\"Variant 2\"},zDbUqNof_:{\"data-framer-name\":\"Variant 3\"}},baseVariant,gestureVariant),children:[isDisplayed()&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1yhz0h0\",\"data-framer-name\":\"Card 1\",layoutDependency:layoutDependency,layoutId:\"iNSRVkAKU\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-t7k0hr\",layoutDependency:layoutDependency,layoutId:\"kH4yeYOTF\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1vzo0ak\",\"data-framer-name\":\"Ellipse 21\",layoutDependency:layoutDependency,layoutId:\"xtkOmnK8y\",style:{backgroundColor:\"rgb(246, 120, 28)\",borderBottomLeftRadius:\"100%\",borderBottomRightRadius:\"100%\",borderTopLeftRadius:\"100%\",borderTopRightRadius:\"100%\"}}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1nv7ycz\",\"data-framer-name\":\"Ellipse 22\",layoutDependency:layoutDependency,layoutId:\"N_lPEE6IJ\",style:{backgroundColor:\"rgb(246, 120, 28)\",borderBottomLeftRadius:\"100%\",borderBottomRightRadius:\"100%\",borderTopLeftRadius:\"100%\",borderTopRightRadius:\"100%\"}}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-g5ja01\",\"data-framer-name\":\"Ellipse 23\",layoutDependency:layoutDependency,layoutId:\"s_kyQFkYx\",style:{backgroundColor:\"rgb(246, 120, 28)\",borderBottomLeftRadius:\"100%\",borderBottomRightRadius:\"100%\",borderTopLeftRadius:\"100%\",borderTopRightRadius:\"100%\"}}),/*#__PURE__*/_jsx(SVG,{className:\"framer-nzl041\",\"data-framer-name\":\"Vector 22\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"vHOCh2lrP\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 457 120\"><path d=\"M 1.952 56.355 L 96.571 56.355 C 99.753 56.355 102.806 57.619 105.056 59.87 L 117.22 72.033 M 451.068 79.967 L 378.089 79.967 M 1.952 30.289 L 70.505 30.289 C 73.687 30.289 76.74 31.553 78.99 33.804 L 117.22 72.033 M 117.22 72.033 L 132.864 87.677 L 160.672 115.485 C 162.922 117.735 165.974 119 169.157 119 L 235.184 119 L 288.682 119 C 291.864 119 294.917 117.735 297.167 115.485 L 329.17 83.482 C 331.421 81.232 334.473 79.967 337.656 79.967 L 341.968 79.967 L 378.089 79.967 M 117.22 72.033 L 117.22 38.777 C 117.22 33.69 120.427 29.156 125.223 27.462 L 151.369 18.226 C 156.165 16.532 159.372 11.998 159.372 6.911 L 159.372 1.768 M 378.089 79.967 L 404.238 53.818 C 406.488 51.568 409.54 50.304 412.723 50.304 L 455.805 50.304\" fill=\"transparent\" stroke=\"rgb(226,226,226)\" stroke-miterlimit=\"10\" stroke-dasharray=\"\"></path></svg>',svgContentId:9052809586,withExternalLayout:true,...addPropertyOverrides({\"RVl94oJmR-hover\":{svgContentId:9317789958}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1ncqyoy\",layoutDependency:layoutDependency,layoutId:\"tl19ftr_2\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-13l77e2\",\"data-framer-name\":\"Group\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:112,intrinsicWidth:93,layoutDependency:layoutDependency,layoutId:\"p5yDjaARs\",svg:'<svg width=\"93\" height=\"112\" viewBox=\"0 0 93 112\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M90.2436 13.7759L47.2093 0.73757C46.6068 0.554925 45.9646 0.554925 45.3618 0.73757L2.3266 13.7759C0.967189 14.1877 0.0361328 15.4515 0.0361328 16.885V64.6921C0.0361328 70.9102 2.52888 77.2755 7.44473 83.6112C11.1992 88.45 16.3936 93.3089 22.8831 98.0531C33.7852 106.023 44.5205 110.912 44.9722 111.116C45.3898 111.305 45.8377 111.399 46.2856 111.399C46.7334 111.399 47.1813 111.305 47.5989 111.116C48.0504 110.912 58.7855 106.023 69.6875 98.0531C76.1771 93.3089 81.3713 88.45 85.1259 83.6112C90.0418 77.2758 92.5341 70.9104 92.5341 64.6921V16.885C92.5341 15.4515 91.6035 14.1877 90.2436 13.7759Z\" fill=\"#368B68\" fill-opacity=\"0.1\"/>\\n<path d=\"M86.7529 17.129L47.136 5.12611C46.5813 4.95796 45.9901 4.95796 45.4352 5.12611L5.81756 17.129C4.5661 17.5081 3.70898 18.6716 3.70898 19.9912V64.0018C3.70898 69.7262 6.00377 75.586 10.5292 81.4185C13.9855 85.8731 18.7675 90.3461 24.7416 94.7136C34.7779 102.05 44.6607 106.551 45.0766 106.739C45.461 106.913 45.8733 107 46.2856 107C46.6979 107 47.1102 106.913 47.4947 106.739C47.9103 106.551 57.7929 102.05 67.8292 94.7136C73.8034 90.3461 78.5851 85.8731 82.0416 81.4185C86.5671 75.5862 88.8614 69.7264 88.8614 64.0018V19.9912C88.8614 18.6716 88.0047 17.5081 86.7529 17.129Z\" fill=\"#368B8B\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(MotionDivWithFX,{className:\"framer-h76gay\",layoutDependency:layoutDependency,layoutId:\"S0VE2y_v6\",style:{transformPerspective:1200},...addPropertyOverrides({\"RVl94oJmR-hover\":{__framer__loop:animation,__framer__loopEffectEnabled:true,__framer__loopRepeatDelay:.3,__framer__loopRepeatType:\"mirror\",__framer__loopTransition:transition2,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1xesqpl\",\"data-framer-name\":\"Group\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:45,intrinsicWidth:33,layoutDependency:layoutDependency,layoutId:\"NYIsAfLzB\",svg:'<svg width=\"33\" height=\"45\" viewBox=\"0 0 33 45\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<g filter=\"url(#filter0_d_4003_2401)\">\\n<path d=\"M16.4522 0C9.1959 0 3.29224 5.90343 3.29224 13.16V20.676C3.29224 20.7614 3.18684 20.9053 3.10405 20.9328C2.3924 21.1701 1.81444 21.3758 1.28538 21.5797C0.654454 21.8229 0.178589 22.5221 0.178589 23.2062V40.4758C0.178589 41.1552 0.65138 41.855 1.27831 42.1034C6.12899 44.0256 11.2342 45 16.4521 45C21.67 45 26.7753 44.0254 31.6262 42.1032C32.2529 41.8548 32.7254 41.1552 32.7254 40.4758V23.2062C32.7254 22.5221 32.2496 21.8229 31.6184 21.5795C31.0891 21.3755 30.5112 21.1699 29.8001 20.9326C29.7176 20.905 29.6122 20.7611 29.6122 20.6756V13.1597C29.6118 5.90343 23.7085 0 16.4522 0ZM12.8678 28.4659C12.8678 26.4849 14.4726 24.8818 16.452 24.8818C18.4312 24.8818 20.036 26.4847 20.036 28.4659C20.036 29.7786 19.2958 30.8776 18.244 31.5006V37.4264C18.244 38.417 17.4424 39.2184 16.4519 39.2184C15.4613 39.2184 14.6598 38.417 14.6598 37.4264V31.5006C13.6081 30.8776 12.8678 29.7786 12.8678 28.4659ZM25.0871 13.1597V19.6447C22.2554 19.0353 19.3503 18.7267 16.4534 18.7265C13.5577 18.7265 10.6532 19.0352 7.8172 19.644V13.1597C7.8172 8.39838 11.6907 4.52495 16.452 4.52495C21.2132 4.52488 25.0871 8.39838 25.0871 13.1597Z\" fill=\"white\"/>\\n</g>\\n<defs>\\n<filter id=\"filter0_d_4003_2401\" x=\"-9.82141\" y=\"-6\" width=\"52.5469\" height=\"65\" filterUnits=\"userSpaceOnUse\" color-interpolation-filters=\"sRGB\">\\n<feFlood flood-opacity=\"0\" result=\"BackgroundImageFix\"/>\\n<feColorMatrix in=\"SourceAlpha\" type=\"matrix\" values=\"0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0\" result=\"hardAlpha\"/>\\n<feOffset dy=\"4\"/>\\n<feGaussianBlur stdDeviation=\"5\"/>\\n<feComposite in2=\"hardAlpha\" operator=\"out\"/>\\n<feColorMatrix type=\"matrix\" values=\"0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.18 0\"/>\\n<feBlend mode=\"normal\" in2=\"BackgroundImageFix\" result=\"effect1_dropShadow_4003_2401\"/>\\n<feBlend mode=\"normal\" in=\"SourceGraphic\" in2=\"effect1_dropShadow_4003_2401\" result=\"shape\"/>\\n</filter>\\n</defs>\\n</svg>\\n',withExternalLayout:true})})]})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-7u71sq\",\"data-framer-name\":\"Frame 6\",layoutDependency:layoutDependency,layoutId:\"Zezlk2X4_\",style:{backgroundColor:\"rgba(255, 255, 255, 0.5)\",borderBottomLeftRadius:20,borderBottomRightRadius:20,borderTopLeftRadius:20,borderTopRightRadius:20},children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:(_getLocalizedValue=getLocalizedValue(\"v0\",activeLocale))!==null&&_getLocalizedValue!==void 0?_getLocalizedValue:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h4,{className:\"framer-styles-preset-1o5d4n7\",\"data-styles-preset\":\"ttzUtOj6f\",style:{\"--framer-text-color\":\"var(--extracted-1eung3n, var(--token-8ecf3070-09f7-44e8-a71e-d4b812577923, rgb(54, 139, 139)))\"},children:\"Application simple et s\\xe9curis\\xe9e\"})}),className:\"framer-8przqp\",\"data-framer-name\":\"Application simple et s\\xe9curis\\xe9e\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"pOTrsNQaO\",style:{\"--extracted-1eung3n\":\"var(--token-8ecf3070-09f7-44e8-a71e-d4b812577923, rgb(54, 139, 139))\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:(_getLocalizedValue1=getLocalizedValue(\"v1\",activeLocale))!==null&&_getLocalizedValue1!==void 0?_getLocalizedValue1:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-lmirgo\",\"data-styles-preset\":\"l67b_BAPm\",children:\"Epargnez ou empruntez en toute s\\xe9curit\\xe9, sans proc\\xe9dure ni paperasse.\"}),/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-lmirgo\",\"data-styles-preset\":\"l67b_BAPm\",children:/*#__PURE__*/_jsx(motion.br,{className:\"trailing-break\"})})]}),className:\"framer-15jsptr\",\"data-framer-name\":\"Epargnez ou empruntez en toute s\\xe9curit\\xe9, sans proc\\xe9dure ni paperasse.\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"FBptFO4NM\",style:{\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true})]})]}),isDisplayed1()&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-fpskce\",\"data-framer-name\":\"Card 2\",layoutDependency:layoutDependency,layoutId:\"cNTst6Qq9\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1b4vphm\",layoutDependency:layoutDependency,layoutId:\"BxhN9hnDv\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-8chbtf\",layoutDependency:layoutDependency,layoutId:\"C66Q1gFos\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-ppbxhk\",\"data-framer-name\":\"Vector 23\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:131,intrinsicWidth:455,layoutDependency:layoutDependency,layoutId:\"fP0MFTRMh\",svg:'<svg width=\"455\" height=\"131\" viewBox=\"-1 -1 455 131\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M0.628571 61.0092H42.2353C44.5908 61.0092 46.8942 61.7025 48.8585 63.0025L108.426 102.429C110.39 103.729 112.694 104.423 115.049 104.423H153.532C154.941 104.423 156.336 104.67 157.659 105.155C174.076 111.174 200.494 120.86 213.697 125.701C218.523 127.47 223.921 125.962 227.148 121.961L248.408 95.6046C250.129 93.4708 251.067 90.8121 251.067 88.0707V72.4867C251.067 69.337 252.306 66.3134 254.515 64.0687L271.144 47.1752C273.4 44.8836 276.481 43.5932 279.696 43.5932H282.707M452.81 78.5511H445.04C441.825 78.5511 438.744 77.2606 436.488 74.9691L409.13 47.1752C406.874 44.8836 403.793 43.5932 400.578 43.5932H397.356M314.528 43.5932H318.727H323.868M314.528 43.5932H282.707M314.528 43.5932H323.868M282.707 43.5932H323.868M323.868 43.5932H349.108H397.356M397.356 43.5932L390.519 36.7558L387.196 33.433C384.945 31.1826 381.893 29.9183 378.711 29.9183H364.29C361.107 29.9183 358.055 28.654 355.804 26.4036L329.806 0.405482\" stroke=\"#E2E2E2\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-djkg67\",\"data-framer-name\":\"Vector 24\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:26,intrinsicWidth:153,layoutDependency:layoutDependency,layoutId:\"QxP2EUbx1\",svg:'<svg width=\"153\" height=\"26\" viewBox=\"-1 -1 153 26\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M0.7211 0.962402H29.2762C32.4588 0.962402 35.511 2.22668 37.7615 4.47712L53.2093 19.925C55.4598 22.1754 58.512 23.4397 61.6946 23.4397H150.062\" stroke=\"#E2E2E2\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-n5kn9t\",\"data-framer-name\":\"Ellipse 23\",layoutDependency:layoutDependency,layoutId:\"BSMoDru5A\",style:{backgroundColor:\"rgb(246, 120, 28)\",borderBottomLeftRadius:\"100%\",borderBottomRightRadius:\"100%\",borderTopLeftRadius:\"100%\",borderTopRightRadius:\"100%\"}}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1o9lc1h\",\"data-framer-name\":\"Ellipse 24\",layoutDependency:layoutDependency,layoutId:\"xV5JiVm14\",style:{backgroundColor:\"rgb(246, 120, 28)\",borderBottomLeftRadius:\"100%\",borderBottomRightRadius:\"100%\",borderTopLeftRadius:\"100%\",borderTopRightRadius:\"100%\"},transformTemplate:transformTemplate1}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1xp1jsf\",\"data-framer-name\":\"Ellipse 25\",layoutDependency:layoutDependency,layoutId:\"qigLsg2_f\",style:{backgroundColor:\"rgb(246, 120, 28)\",borderBottomLeftRadius:\"100%\",borderBottomRightRadius:\"100%\",borderTopLeftRadius:\"100%\",borderTopRightRadius:\"100%\"}})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1vspak1\",layoutDependency:layoutDependency,layoutId:\"fQr0RnzP3\",children:[/*#__PURE__*/_jsx(Transition,{...addPropertyOverrides({\"Ogn3x58ps-hover\":{value:transition4}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(MotionDivWithFX,{className:\"framer-cn2609\",layoutDependency:layoutDependency,layoutId:\"a9k7zy6W4\",transformTemplate:transformTemplate1,...addPropertyOverrides({\"Ogn3x58ps-hover\":{__framer__loop:animation1,__framer__loopEffectEnabled:true,__framer__loopRepeatDelay:0,__framer__loopRepeatType:\"mirror\",__framer__loopTransition:transition3,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1xmjep0\",\"data-framer-name\":\"Group\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:27,intrinsicWidth:44,layoutDependency:layoutDependency,layoutId:\"ettwcan01\",svg:'<svg width=\"44\" height=\"27\" viewBox=\"0 0 44 27\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M36.8142 10.8578C36.2485 7.20639 33.1096 4.40386 29.3325 4.40386C27.9115 4.40386 26.5461 4.80033 25.3618 5.53982C23.5601 2.48616 20.3164 0.585938 16.713 0.585938C11.1464 0.585938 6.61741 5.15328 6.61741 10.7671C6.61741 10.8019 6.61741 10.8379 6.61867 10.8727C3.04105 11.4804 0.223541 14.626 0.223541 18.4029C0.223541 22.6136 3.70408 26.0388 7.87935 26.0388H35.6422C39.8175 26.0388 43.298 22.6136 43.298 18.4029C43.298 14.5937 40.4349 11.4283 36.8142 10.8578Z\" fill=\"#F8934A\"/>\\n</svg>\\n',withExternalLayout:true})})}),/*#__PURE__*/_jsx(Transition,{...addPropertyOverrides({\"Ogn3x58ps-hover\":{value:transition5}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1gcs5z7\",layoutDependency:layoutDependency,layoutId:\"NpJ33dkaW\",transformTemplate:transformTemplate1,children:/*#__PURE__*/_jsx(SVG,{className:\"framer-13cv5bm\",\"data-framer-name\":\"Group\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:71,intrinsicWidth:118,layoutDependency:layoutDependency,layoutId:\"BAqxQ3inU\",svg:'<svg width=\"118\" height=\"71\" viewBox=\"0 0 118 71\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M100.238 29.1166C98.6882 19.1139 90.0895 11.4365 79.7421 11.4365C75.8495 11.4365 72.109 12.5226 68.8647 14.5484C63.9289 6.18309 55.0432 0.977539 45.1718 0.977539C29.9224 0.977539 17.5155 13.4895 17.5155 28.8682C17.5155 28.9635 17.5155 29.0622 17.519 29.1575C7.71831 30.8224 -9.15527e-05 39.4394 -9.15527e-05 49.7861C-9.15527e-05 61.321 9.53463 70.7041 20.9726 70.7041H97.0273C108.465 70.7041 118 61.321 118 49.7861C118 39.3511 110.157 30.6794 100.238 29.1166Z\" fill=\"#368B8B\"/>\\n</svg>\\n',withExternalLayout:true})})}),/*#__PURE__*/_jsx(Transition,{...addPropertyOverrides({\"Ogn3x58ps-hover\":{value:transition6}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(MotionDivWithFX,{className:\"framer-1xh9p7j\",layoutDependency:layoutDependency,layoutId:\"gjhmC6HCd\",transformTemplate:transformTemplate1,...addPropertyOverrides({\"Ogn3x58ps-hover\":{__framer__loop:animation2,__framer__loopEffectEnabled:true,__framer__loopRepeatDelay:0,__framer__loopRepeatType:\"mirror\",__framer__loopTransition:transition3,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SVG,{className:\"framer-eu5iv2\",\"data-framer-name\":\"Group\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:27,intrinsicWidth:44,layoutDependency:layoutDependency,layoutId:\"kH0iJbE9C\",svg:'<svg width=\"44\" height=\"27\" viewBox=\"0 0 44 27\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M36.8419 11.0316C36.2762 7.38024 33.1373 4.5777 29.3601 4.5777C27.9392 4.5777 26.5737 4.97417 25.3894 5.71367C23.5877 2.66 20.3441 0.759766 16.7406 0.759766C11.174 0.759766 6.64501 5.32712 6.64501 10.9409C6.64501 10.9757 6.64501 11.0118 6.64628 11.0466C3.06864 11.6543 0.251129 14.7998 0.251129 18.5768C0.251129 22.7875 3.73167 26.2127 7.90696 26.2127H35.6699C39.8452 26.2127 43.3257 22.7875 43.3257 18.5768C43.3257 14.7676 40.4626 11.6021 36.8419 11.0316Z\" fill=\"#368B8B\"/>\\n</svg>\\n',withExternalLayout:true})})}),/*#__PURE__*/_jsx(Transition,{...addPropertyOverrides({\"Ogn3x58ps-hover\":{value:transition6}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(MotionDivWithFX,{className:\"framer-1uoh9qf\",layoutDependency:layoutDependency,layoutId:\"bZb_Pdc72\",transformTemplate:transformTemplate1,...addPropertyOverrides({\"Ogn3x58ps-hover\":{__framer__loop:animation3,__framer__loopEffectEnabled:true,__framer__loopRepeatDelay:0,__framer__loopRepeatType:\"mirror\",__framer__loopTransition:transition3,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1tclq2l\",\"data-framer-name\":\"Group\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:9,intrinsicWidth:15,layoutDependency:layoutDependency,layoutId:\"k54D4SACW\",svg:'<svg width=\"15\" height=\"9\" viewBox=\"0 0 15 9\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<g filter=\"url(#filter0_f_127_196)\">\\n<path d=\"M11.9679 4.00839C11.7864 2.8371 10.7795 1.9381 9.56785 1.9381C9.11203 1.9381 8.67403 2.06528 8.29413 2.30249C7.71617 1.32294 6.67568 0.713379 5.51976 0.713379C3.73409 0.713379 2.28129 2.1785 2.28129 3.9793C2.28129 3.99045 2.28129 4.00202 2.28169 4.01318C1.13406 4.20813 0.230255 5.21716 0.230255 6.42873C0.230255 7.77943 1.34675 8.87817 2.6861 8.87817H11.5919C12.9312 8.87817 14.0477 7.77943 14.0477 6.42873C14.0477 5.20682 13.1293 4.19139 11.9679 4.00839Z\" fill=\"#368B8B\"/>\\n</g>\\n<defs>\\n<filter id=\"filter0_f_127_196\" x=\"-3.76974\" y=\"-3.28662\" width=\"21.8175\" height=\"16.1646\" filterUnits=\"userSpaceOnUse\" color-interpolation-filters=\"sRGB\">\\n<feFlood flood-opacity=\"0\" result=\"BackgroundImageFix\"/>\\n<feBlend mode=\"normal\" in=\"SourceGraphic\" in2=\"BackgroundImageFix\" result=\"shape\"/>\\n<feGaussianBlur stdDeviation=\"2\" result=\"effect1_foregroundBlur_127_196\"/>\\n</filter>\\n</defs>\\n</svg>\\n',withExternalLayout:true})})}),/*#__PURE__*/_jsx(Transition,{...addPropertyOverrides({\"Ogn3x58ps-hover\":{value:transition6}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(MotionDivWithFX,{className:\"framer-ufyknu\",layoutDependency:layoutDependency,layoutId:\"e6dKFpK3A\",transformTemplate:transformTemplate1,...addPropertyOverrides({\"Ogn3x58ps-hover\":{__framer__loop:animation4,__framer__loopEffectEnabled:true,__framer__loopRepeatDelay:0,__framer__loopRepeatType:\"mirror\",__framer__loopTransition:transition3,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SVG,{className:\"framer-12j0ql1\",\"data-framer-name\":\"Group\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:12,intrinsicWidth:20,layoutDependency:layoutDependency,layoutId:\"pLS5CO6Ep\",svg:'<svg width=\"20\" height=\"12\" viewBox=\"0 0 20 12\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<g filter=\"url(#filter0_f_127_198)\">\\n<path d=\"M16.47 5.25709C16.2192 3.63862 14.8279 2.3964 13.1537 2.3964C12.5238 2.3964 11.9186 2.57213 11.3937 2.89991C10.595 1.54638 9.15731 0.704102 7.56008 0.704102C5.09268 0.704102 3.08521 2.72858 3.08521 5.21689C3.08521 5.23231 3.08521 5.24829 3.08577 5.26371C1.49999 5.53309 0.251129 6.92735 0.251129 8.60149C0.251129 10.4679 1.79388 11.9861 3.64457 11.9861H15.9505C17.8012 11.9861 19.3439 10.4679 19.3439 8.60149C19.3439 6.91306 18.0748 5.50996 16.47 5.25709Z\" fill=\"#F6781D\"/>\\n</g>\\n<defs>\\n<filter id=\"filter0_f_127_198\" x=\"-1.74887\" y=\"-1.2959\" width=\"23.0928\" height=\"15.2817\" filterUnits=\"userSpaceOnUse\" color-interpolation-filters=\"sRGB\">\\n<feFlood flood-opacity=\"0\" result=\"BackgroundImageFix\"/>\\n<feBlend mode=\"normal\" in=\"SourceGraphic\" in2=\"BackgroundImageFix\" result=\"shape\"/>\\n<feGaussianBlur stdDeviation=\"1\" result=\"effect1_foregroundBlur_127_198\"/>\\n</filter>\\n</defs>\\n</svg>\\n',withExternalLayout:true})})}),/*#__PURE__*/_jsx(Transition,{...addPropertyOverrides({\"Ogn3x58ps-hover\":{value:transition7}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1wx5s3a\",layoutDependency:layoutDependency,layoutId:\"jh5iKIhkR\",transformTemplate:transformTemplate1,children:/*#__PURE__*/_jsx(SVG,{className:\"framer-6hd7a1\",\"data-framer-name\":\"Vector\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:30,intrinsicWidth:39,layoutDependency:layoutDependency,layoutId:\"rsu_o7kU_\",svg:'<svg width=\"39\" height=\"30\" viewBox=\"0 0 39 30\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<g filter=\"url(#filter0_d_127_200)\">\\n<path d=\"M14.9204 28.6628C14.5577 29.0181 14.0628 29.2163 13.5487 29.2163C13.0346 29.2163 12.5397 29.0181 12.177 28.6628L1.22219 17.9945C0.0853195 16.8876 0.0853195 15.0926 1.22219 13.9877L2.5939 12.6517C3.73112 11.5448 5.5725 11.5448 6.70937 12.6517L13.5487 19.3115L32.0296 1.31654C33.1669 0.20959 35.01 0.20959 36.1451 1.31654L37.5168 2.6525C38.6537 3.75945 38.6537 5.5541 37.5168 6.65932L14.9204 28.6628Z\" fill=\"white\"/>\\n</g>\\n<defs>\\n<filter id=\"filter0_d_127_200\" x=\"-7.63046\" y=\"-3.51367\" width=\"53.9999\" height=\"44.73\" filterUnits=\"userSpaceOnUse\" color-interpolation-filters=\"sRGB\">\\n<feFlood flood-opacity=\"0\" result=\"BackgroundImageFix\"/>\\n<feColorMatrix in=\"SourceAlpha\" type=\"matrix\" values=\"0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0\" result=\"hardAlpha\"/>\\n<feOffset dy=\"4\"/>\\n<feGaussianBlur stdDeviation=\"4\"/>\\n<feComposite in2=\"hardAlpha\" operator=\"out\"/>\\n<feColorMatrix type=\"matrix\" values=\"0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.15 0\"/>\\n<feBlend mode=\"normal\" in2=\"BackgroundImageFix\" result=\"effect1_dropShadow_127_200\"/>\\n<feBlend mode=\"normal\" in=\"SourceGraphic\" in2=\"effect1_dropShadow_127_200\" result=\"shape\"/>\\n</filter>\\n</defs>\\n</svg>\\n',withExternalLayout:true})})})]})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-8t8m8c\",\"data-framer-name\":\"Frame 6\",layoutDependency:layoutDependency,layoutId:\"pPtxpFCkO\",style:{backgroundColor:\"rgba(255, 255, 255, 0.5)\",borderBottomLeftRadius:20,borderBottomRightRadius:20,borderTopLeftRadius:20,borderTopRightRadius:20},children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:(_getLocalizedValue2=getLocalizedValue(\"v2\",activeLocale))!==null&&_getLocalizedValue2!==void 0?_getLocalizedValue2:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h4,{className:\"framer-styles-preset-1o5d4n7\",\"data-styles-preset\":\"ttzUtOj6f\",style:{\"--framer-text-color\":\"var(--extracted-1eung3n, var(--token-8ecf3070-09f7-44e8-a71e-d4b812577923, rgb(54, 139, 139)))\"},children:\"Discr\\xe9tion et autonomie garanties\"})}),className:\"framer-4srx1g\",\"data-framer-name\":\"Discr\\xe9tion et autonomie garanties\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"u19tyFqs0\",style:{\"--extracted-1eung3n\":\"var(--token-8ecf3070-09f7-44e8-a71e-d4b812577923, rgb(54, 139, 139))\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:(_getLocalizedValue3=getLocalizedValue(\"v3\",activeLocale))!==null&&_getLocalizedValue3!==void 0?_getLocalizedValue3:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-lmirgo\",\"data-styles-preset\":\"l67b_BAPm\",children:\"Vos tontines ne regardent que vous et vos proches. Elles restent strictement confidentielles, tout comme vos donn\\xe9es.\"}),/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-lmirgo\",\"data-styles-preset\":\"l67b_BAPm\",children:/*#__PURE__*/_jsx(motion.br,{className:\"trailing-break\"})}),/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-lmirgo\",\"data-styles-preset\":\"l67b_BAPm\",children:/*#__PURE__*/_jsx(motion.br,{className:\"trailing-break\"})})]}),className:\"framer-xcakrw\",\"data-framer-name\":\"Vos tontines ne regardent que vous et vos proches. Elles restent strictement confidentielles, tout comme vos donn\\xe9es.\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"mwzVNyrat\",style:{\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true})]})]}),isDisplayed2()&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-10mnyh8\",\"data-framer-name\":\"Card 3\",layoutDependency:layoutDependency,layoutId:\"FRWbhZwNS\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1321zh9\",layoutDependency:layoutDependency,layoutId:\"h9ZuaVcQE\",children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-10a9bfb\",layoutDependency:layoutDependency,layoutId:\"napm0ZmuF\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-6x00l7\",\"data-framer-name\":\"Vector 24\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:114,intrinsicWidth:447,layoutDependency:layoutDependency,layoutId:\"yHvq7czPo\",svg:'<svg width=\"447\" height=\"114\" viewBox=\"-1 -1 447 114\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M0.329346 61.5535H28.7047C31.9932 61.5535 35.1376 62.9031 37.403 65.2868L52.7843 81.4711C55.0497 83.8548 58.1941 85.2044 61.4826 85.2044H95.4899M419.033 36.3915H410.407H392.368M392.368 36.3915H379.3C376.118 36.3915 373.066 37.6558 370.815 39.9062L352.683 58.0388C350.432 60.2892 347.38 61.5535 344.197 61.5535H324.487M392.368 36.3915L374.979 19.0026C372.729 16.7521 369.677 15.4878 366.494 15.4878H326.228C323.046 15.4878 319.994 14.2236 317.743 11.9731L305.851 0.0810547M291.335 61.5535H264.698C261.573 61.5535 258.571 62.7727 256.331 64.9518L243.312 77.615M291.335 61.5535L266.388 36.6067C264.137 34.3562 261.085 33.0919 257.902 33.0919H188.218C185.036 33.0919 181.983 31.8277 179.733 29.5772L153.854 3.6979M291.335 61.5535H301.199M95.4899 85.2044H134.647H145.034C148.217 85.2044 151.269 86.4687 153.52 88.7191L157.058 92.2575C159.308 94.5079 162.361 95.7722 165.543 95.7722H220.547C223.781 95.7722 226.879 94.4662 229.138 92.1503L243.312 77.615M95.4899 85.2044L71.298 61.0125C69.0475 58.762 67.7832 55.7098 67.7832 52.5272V47.3986M301.199 61.5535H317.384H324.487M301.199 61.5535H324.487M324.487 61.5535L359.697 96.7632C361.947 99.0137 364.999 100.278 368.182 100.278H404.449C406.928 100.278 409.346 99.5103 411.371 98.0805L426.494 87.4018C428.519 85.972 430.937 85.2044 433.416 85.2044H444.826M243.312 77.615C249.271 83.2268 259.092 93.1943 264.282 98.4973C266.506 100.77 269.524 102.076 272.703 102.107C276.408 102.144 281.597 102.176 286.152 102.137C289.46 102.108 292.661 103.372 295 105.711L301.199 111.911\" stroke=\"#E2E2E2\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-3b4f31\",\"data-framer-name\":\"user (2) 3\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:20,intrinsicWidth:20,layoutDependency:layoutDependency,layoutId:\"r3oHzgDCx\",svg:'<svg width=\"20\" height=\"20\" viewBox=\"0 0 20 20\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<g clip-path=\"url(#clip0_127_209)\">\\n<path d=\"M10 0.553711C4.76131 0.553711 0.5 4.81502 0.5 10.0537C0.5 15.2924 4.76131 19.5537 10 19.5537C15.2387 19.5537 19.5 15.2924 19.5 10.0537C19.5 4.81502 15.2387 0.553711 10 0.553711ZM10 18.7937C7.82791 18.7937 5.84126 17.9911 4.31139 16.6748C4.70052 16.4811 5.10635 16.3245 5.50687 16.1824C6.75174 15.7431 7.73518 15.3958 7.73518 13.8469C7.73518 13.1163 7.33903 12.473 6.95551 11.8502L6.95466 11.8488C6.62101 11.307 6.30639 10.7962 6.30639 10.2673C6.30639 9.87815 6.37326 9.61671 6.42722 9.40619C6.50779 9.09154 6.54805 8.93271 6.28509 8.40832C5.65961 7.16571 6.44318 4.69801 8.25044 3.58993C9.99766 2.51984 11.3018 2.57988 12.3407 3.78297C12.6736 3.83084 13.0833 4.0201 13.423 4.5711C14.0819 5.6404 14.1336 7.57536 13.7141 8.4091C13.4519 8.93275 13.4922 9.09158 13.5727 9.40623C13.6267 9.61675 13.6936 9.87818 13.6936 10.2673C13.6936 10.7959 13.3793 11.3064 13.0459 11.8478L13.0453 11.8489L13.0444 11.8503C12.6609 12.4731 12.2648 13.1163 12.2648 13.8469C12.2648 15.3958 13.2482 15.7431 14.4931 16.1824C14.8936 16.3245 15.2994 16.4811 15.6886 16.6749C14.1587 17.9911 12.1721 18.7937 10 18.7937Z\" fill=\"#F6781D\"/>\\n<path d=\"M10 18.7937C7.82791 18.7937 5.84126 17.9911 4.31139 16.6748C4.70052 16.4811 5.10635 16.3245 5.50687 16.1824C6.75174 15.7431 7.73518 15.3958 7.73518 13.8469C7.73518 13.1163 7.33903 12.473 6.95551 11.8502L6.95466 11.8488C6.62101 11.307 6.30639 10.7962 6.30639 10.2673C6.30639 9.87815 6.37326 9.61671 6.42722 9.40619C6.50779 9.09154 6.54805 8.93271 6.28509 8.40832C5.65961 7.16571 6.44318 4.69801 8.25044 3.58993C9.99766 2.51984 11.3018 2.57988 12.3407 3.78297C12.6736 3.83084 13.0833 4.0201 13.423 4.5711C14.0819 5.6404 14.1336 7.57536 13.7141 8.4091C13.4519 8.93275 13.4922 9.09158 13.5727 9.40623C13.6267 9.61675 13.6936 9.87818 13.6936 10.2673C13.6936 10.7959 13.3793 11.3064 13.0459 11.8478L13.0453 11.8489L13.0444 11.8503C12.6609 12.4731 12.2648 13.1163 12.2648 13.8469C12.2648 15.3958 13.2482 15.7431 14.4931 16.1824C14.8936 16.3245 15.2994 16.4811 15.6886 16.6749C14.1587 17.9911 12.1721 18.7937 10 18.7937Z\" fill=\"white\"/>\\n</g>\\n<defs>\\n<clipPath id=\"clip0_127_209\">\\n<rect width=\"19\" height=\"19\" fill=\"white\" transform=\"translate(0.5 0.553711)\"/>\\n</clipPath>\\n</defs>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-3p8pq9\",\"data-framer-name\":\"user (2) 4\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:20,intrinsicWidth:19,layoutDependency:layoutDependency,layoutId:\"CyY7zKcOu\",svg:'<svg width=\"19\" height=\"20\" viewBox=\"0 0 19 20\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<g clip-path=\"url(#clip0_127_213)\">\\n<path d=\"M9.5 0.553711C4.26131 0.553711 0 4.81502 0 10.0537C0 15.2924 4.26131 19.5537 9.5 19.5537C14.7387 19.5537 19 15.2924 19 10.0537C19 4.81502 14.7387 0.553711 9.5 0.553711ZM9.5 18.7937C7.32791 18.7937 5.34126 17.9911 3.81139 16.6748C4.20052 16.4811 4.60635 16.3245 5.00687 16.1824C6.25174 15.7431 7.23518 15.3958 7.23518 13.8469C7.23518 13.1163 6.83903 12.473 6.45551 11.8502L6.45466 11.8488C6.12101 11.307 5.80639 10.7962 5.80639 10.2673C5.80639 9.87815 5.87326 9.61671 5.92722 9.40619C6.00779 9.09154 6.04805 8.93271 5.78509 8.40832C5.15961 7.16571 5.94318 4.69801 7.75044 3.58993C9.49766 2.51984 10.8018 2.57988 11.8407 3.78297C12.1736 3.83084 12.5833 4.0201 12.923 4.5711C13.5819 5.6404 13.6336 7.57536 13.2141 8.4091C12.9519 8.93275 12.9922 9.09158 13.0727 9.40623C13.1267 9.61675 13.1936 9.87818 13.1936 10.2673C13.1936 10.7959 12.8793 11.3064 12.5459 11.8478L12.5453 11.8489L12.5444 11.8503C12.1609 12.4731 11.7648 13.1163 11.7648 13.8469C11.7648 15.3958 12.7482 15.7431 13.9931 16.1824C14.3936 16.3245 14.7994 16.4811 15.1886 16.6749C13.6587 17.9911 11.6721 18.7937 9.5 18.7937Z\" fill=\"#368B8B\"/>\\n<path d=\"M9.5 18.7937C7.32791 18.7937 5.34126 17.9911 3.81139 16.6748C4.20052 16.4811 4.60635 16.3245 5.00687 16.1824C6.25174 15.7431 7.23518 15.3958 7.23518 13.8469C7.23518 13.1163 6.83903 12.473 6.45551 11.8502L6.45466 11.8488C6.12101 11.307 5.80639 10.7962 5.80639 10.2673C5.80639 9.87815 5.87326 9.61671 5.92722 9.40619C6.00779 9.09154 6.04805 8.93271 5.78509 8.40832C5.15961 7.16571 5.94318 4.69801 7.75044 3.58993C9.49766 2.51984 10.8018 2.57988 11.8407 3.78297C12.1736 3.83084 12.5833 4.0201 12.923 4.5711C13.5819 5.6404 13.6336 7.57536 13.2141 8.4091C12.9519 8.93275 12.9922 9.09158 13.0727 9.40623C13.1267 9.61675 13.1936 9.87818 13.1936 10.2673C13.1936 10.7959 12.8793 11.3064 12.5459 11.8478L12.5453 11.8489L12.5444 11.8503C12.1609 12.4731 11.7648 13.1163 11.7648 13.8469C11.7648 15.3958 12.7482 15.7431 13.9931 16.1824C14.3936 16.3245 14.7994 16.4811 15.1886 16.6749C13.6587 17.9911 11.6721 18.7937 9.5 18.7937Z\" fill=\"white\"/>\\n</g>\\n<defs>\\n<clipPath id=\"clip0_127_213\">\\n<rect width=\"19\" height=\"19\" fill=\"white\" transform=\"translate(0 0.553711)\"/>\\n</clipPath>\\n</defs>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(Transition,{...addPropertyOverrides({\"zDbUqNof_-hover\":{value:transition8}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-irge2l\",layoutDependency:layoutDependency,layoutId:\"hNJlLh0id\",transformTemplate:transformTemplate1,children:/*#__PURE__*/_jsx(SVG,{className:\"framer-ecnyfc\",\"data-framer-name\":\"user (2) 6\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:44,intrinsicWidth:43,layoutDependency:layoutDependency,layoutId:\"EUKgIeN3o\",svg:'<svg width=\"43\" height=\"44\" viewBox=\"0 0 43 44\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<g clip-path=\"url(#clip0_127_217)\">\\n<path d=\"M21.5 0.553711C9.64401 0.553711 0 10.1977 0 22.0537C0 33.9097 9.64401 43.5537 21.5 43.5537C33.356 43.5537 43 33.9097 43 22.0537C43 10.1977 33.356 0.553711 21.5 0.553711ZM21.5 41.8337C16.5842 41.8337 12.0881 40.0174 8.62578 37.0384C9.50644 36.5998 10.4249 36.2455 11.3313 35.9238C14.1487 34.9297 16.3743 34.1436 16.3743 30.6383C16.3743 28.9848 15.4778 27.529 14.6098 26.1195L14.6079 26.1164C13.8528 24.89 13.1408 23.7342 13.1408 22.537C13.1408 21.6564 13.2921 21.0647 13.4142 20.5883C13.5966 19.8762 13.6877 19.5167 13.0926 18.3299C11.677 15.5177 13.4503 9.93292 17.5405 7.42514C21.4947 5.00337 24.4463 5.13926 26.7975 7.86203C27.5508 7.97037 28.4779 8.39869 29.2468 9.64569C30.738 12.0657 30.855 16.4448 29.9056 18.3317C29.3121 19.5168 29.4033 19.8762 29.5857 20.5884C29.7078 21.0648 29.8591 21.6565 29.8591 22.5371C29.8591 23.7335 29.1479 24.8886 28.3934 26.1141L28.392 26.1165L28.3901 26.1196C27.5221 27.5291 26.6256 28.9849 26.6256 30.6383C26.6256 34.1437 28.8512 34.9298 31.6686 35.9239C32.575 36.2456 33.4935 36.5999 34.3741 37.0385C30.9119 40.0174 26.4158 41.8337 21.5 41.8337Z\" fill=\"#368B8B\"/>\\n<path d=\"M21.5 41.8337C16.5842 41.8337 12.0881 40.0174 8.62578 37.0384C9.50644 36.5998 10.4249 36.2455 11.3313 35.9238C14.1487 34.9297 16.3743 34.1436 16.3743 30.6383C16.3743 28.9848 15.4778 27.529 14.6098 26.1195L14.6079 26.1164C13.8528 24.89 13.1408 23.7342 13.1408 22.537C13.1408 21.6564 13.2921 21.0647 13.4142 20.5883C13.5966 19.8762 13.6877 19.5167 13.0926 18.3299C11.677 15.5177 13.4503 9.93292 17.5405 7.42514C21.4947 5.00337 24.4463 5.13926 26.7975 7.86203C27.5508 7.97037 28.4779 8.39869 29.2468 9.64569C30.738 12.0657 30.855 16.4448 29.9056 18.3317C29.3121 19.5168 29.4033 19.8762 29.5857 20.5884C29.7078 21.0648 29.8591 21.6565 29.8591 22.5371C29.8591 23.7335 29.1479 24.8886 28.3934 26.1141L28.392 26.1165L28.3901 26.1196C27.5221 27.5291 26.6256 28.9849 26.6256 30.6383C26.6256 34.1437 28.8512 34.9298 31.6686 35.9239C32.575 36.2456 33.4935 36.5999 34.3741 37.0385C30.9119 40.0174 26.4158 41.8337 21.5 41.8337Z\" fill=\"white\"/>\\n</g>\\n<defs>\\n<clipPath id=\"clip0_127_217\">\\n<rect width=\"43\" height=\"43\" fill=\"white\" transform=\"translate(0 0.553711)\"/>\\n</clipPath>\\n</defs>\\n</svg>\\n',withExternalLayout:true})})}),/*#__PURE__*/_jsx(SVG,{className:\"framer-su25ek\",\"data-framer-name\":\"user (2) 5\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:13,intrinsicWidth:13,layoutDependency:layoutDependency,layoutId:\"JOFoLGxwP\",svg:'<svg width=\"13\" height=\"13\" viewBox=\"0 0 13 13\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<g clip-path=\"url(#clip0_127_221)\">\\n<path d=\"M6.5 0.553711C3.19135 0.553711 0.5 3.24506 0.5 6.55371C0.5 9.86236 3.19135 12.5537 6.5 12.5537C9.80865 12.5537 12.5 9.86236 12.5 6.55371C12.5 3.24506 9.80865 0.553711 6.5 0.553711ZM6.5 12.0737C5.12816 12.0737 3.87343 11.5668 2.9072 10.7355C3.15296 10.6131 3.40927 10.5142 3.66223 10.4244C4.44847 10.147 5.06959 9.92763 5.06959 8.9494C5.06959 8.48798 4.81939 8.08169 4.57717 7.68835L4.57662 7.68748C4.3659 7.34524 4.16719 7.02267 4.16719 6.68859C4.16719 6.44283 4.20943 6.27771 4.24351 6.14475C4.29439 5.94602 4.31982 5.84571 4.15374 5.51452C3.7587 4.72971 4.25359 3.17116 5.39502 2.47132C6.49852 1.79548 7.32221 1.8334 7.97837 2.59324C8.1886 2.62348 8.44733 2.74301 8.6619 3.09101C9.07805 3.76636 9.1107 4.98844 8.84574 5.51501C8.68013 5.84573 8.70559 5.94605 8.75647 6.14477C8.79055 6.27773 8.83278 6.44285 8.83278 6.68862C8.83278 7.02248 8.63431 7.34486 8.42375 7.68685L8.42335 7.6875L8.42281 7.68838C8.18059 8.08172 7.93039 8.488 7.93039 8.94942C7.93039 9.92766 8.55151 10.147 9.33774 10.4245C9.5907 10.5142 9.84702 10.6131 10.0928 10.7355C9.12657 11.5668 7.87184 12.0737 6.5 12.0737Z\" fill=\"#F6781D\"/>\\n<path d=\"M6.5 12.0737C5.12816 12.0737 3.87343 11.5668 2.9072 10.7355C3.15296 10.6131 3.40927 10.5142 3.66223 10.4244C4.44847 10.147 5.06959 9.92763 5.06959 8.9494C5.06959 8.48798 4.81939 8.08169 4.57717 7.68835L4.57662 7.68748C4.3659 7.34524 4.16719 7.02267 4.16719 6.68859C4.16719 6.44283 4.20943 6.27771 4.24351 6.14475C4.29439 5.94602 4.31982 5.84571 4.15374 5.51452C3.7587 4.72971 4.25359 3.17116 5.39502 2.47132C6.49852 1.79548 7.32221 1.8334 7.97837 2.59324C8.1886 2.62348 8.44733 2.74301 8.6619 3.09101C9.07805 3.76636 9.1107 4.98844 8.84574 5.51501C8.68013 5.84573 8.70559 5.94605 8.75647 6.14477C8.79055 6.27773 8.83278 6.44285 8.83278 6.68862C8.83278 7.02248 8.63431 7.34486 8.42375 7.68685L8.42335 7.6875L8.42281 7.68838C8.18059 8.08172 7.93039 8.488 7.93039 8.94942C7.93039 9.92766 8.55151 10.147 9.33774 10.4245C9.5907 10.5142 9.84702 10.6131 10.0928 10.7355C9.12657 11.5668 7.87184 12.0737 6.5 12.0737Z\" fill=\"white\"/>\\n</g>\\n<defs>\\n<clipPath id=\"clip0_127_221\">\\n<rect width=\"12\" height=\"12\" fill=\"white\" transform=\"translate(0.5 0.553711)\"/>\\n</clipPath>\\n</defs>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-10l1qg1\",\"data-framer-name\":\"user (2) 9\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:13,intrinsicWidth:12,layoutDependency:layoutDependency,layoutId:\"rY2OwjEz5\",svg:'<svg width=\"12\" height=\"13\" viewBox=\"0 0 12 13\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<g clip-path=\"url(#clip0_127_225)\">\\n<path d=\"M6 0.553711C2.69135 0.553711 0 3.24506 0 6.55371C0 9.86236 2.69135 12.5537 6 12.5537C9.30865 12.5537 12 9.86236 12 6.55371C12 3.24506 9.30865 0.553711 6 0.553711ZM6 12.0737C4.62816 12.0737 3.37343 11.5668 2.4072 10.7355C2.65296 10.6131 2.90927 10.5142 3.16223 10.4244C3.94847 10.147 4.56959 9.92763 4.56959 8.9494C4.56959 8.48798 4.31939 8.08169 4.07717 7.68835L4.07662 7.68748C3.8659 7.34524 3.66719 7.02267 3.66719 6.68859C3.66719 6.44283 3.70943 6.27771 3.74351 6.14475C3.79439 5.94602 3.81982 5.84571 3.65374 5.51452C3.2587 4.72971 3.75359 3.17116 4.89502 2.47132C5.99852 1.79548 6.82221 1.8334 7.47837 2.59324C7.6886 2.62348 7.94733 2.74301 8.1619 3.09101C8.57805 3.76636 8.6107 4.98844 8.34574 5.51501C8.18013 5.84573 8.20559 5.94605 8.25647 6.14477C8.29055 6.27773 8.33278 6.44285 8.33278 6.68862C8.33278 7.02248 8.13431 7.34486 7.92375 7.68685L7.92335 7.6875L7.92281 7.68838C7.68059 8.08172 7.43039 8.488 7.43039 8.94942C7.43039 9.92766 8.05151 10.147 8.83774 10.4245C9.0907 10.5142 9.34702 10.6131 9.59278 10.7355C8.62657 11.5668 7.37184 12.0737 6 12.0737Z\" fill=\"#368B8B\"/>\\n<path d=\"M6 12.0737C4.62816 12.0737 3.37343 11.5668 2.4072 10.7355C2.65296 10.6131 2.90927 10.5142 3.16223 10.4244C3.94847 10.147 4.56959 9.92763 4.56959 8.9494C4.56959 8.48798 4.31939 8.08169 4.07717 7.68835L4.07662 7.68748C3.8659 7.34524 3.66719 7.02267 3.66719 6.68859C3.66719 6.44283 3.70943 6.27771 3.74351 6.14475C3.79439 5.94602 3.81982 5.84571 3.65374 5.51452C3.2587 4.72971 3.75359 3.17116 4.89502 2.47132C5.99852 1.79548 6.82221 1.8334 7.47837 2.59324C7.6886 2.62348 7.94733 2.74301 8.1619 3.09101C8.57805 3.76636 8.6107 4.98844 8.34574 5.51501C8.18013 5.84573 8.20559 5.94605 8.25647 6.14477C8.29055 6.27773 8.33278 6.44285 8.33278 6.68862C8.33278 7.02248 8.13431 7.34486 7.92375 7.68685L7.92335 7.6875L7.92281 7.68838C7.68059 8.08172 7.43039 8.488 7.43039 8.94942C7.43039 9.92766 8.05151 10.147 8.83774 10.4245C9.0907 10.5142 9.34702 10.6131 9.59278 10.7355C8.62657 11.5668 7.37184 12.0737 6 12.0737Z\" fill=\"white\"/>\\n</g>\\n<defs>\\n<clipPath id=\"clip0_127_225\">\\n<rect width=\"12\" height=\"12\" fill=\"white\" transform=\"translate(0 0.553711)\"/>\\n</clipPath>\\n</defs>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-qmvkw2\",\"data-framer-name\":\"Vector 25\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:56,intrinsicWidth:67,layoutDependency:layoutDependency,layoutId:\"z6DVlM6fF\",svg:'<svg width=\"67\" height=\"56\" viewBox=\"-1 -1 67 56\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M65 53.5538V35.5854C65 32.4028 63.7357 29.3506 61.4852 27.1002L55.2953 20.9102C53.0449 18.6598 49.9926 17.3955 46.81 17.3955H22.1481C18.9655 17.3955 15.9132 16.1312 13.6628 13.8808L0.0700684 0.288086\" stroke=\"#E2E2E2\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(Transition,{...addPropertyOverrides({\"zDbUqNof_-hover\":{value:transition9}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1nh8bo0\",layoutDependency:layoutDependency,layoutId:\"fRI4c8yIp\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-7gii54\",\"data-framer-name\":\"user (2) 7\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:14,intrinsicWidth:15,layoutDependency:layoutDependency,layoutId:\"zX07tigvY\",svg:'<svg width=\"15\" height=\"14\" viewBox=\"0 0 15 14\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<g clip-path=\"url(#clip0_127_230)\">\\n<path d=\"M7.53491 0.175293C3.67482 0.175293 0.534912 3.09092 0.534912 6.67529C0.534912 10.2597 3.67482 13.1753 7.53491 13.1753C11.395 13.1753 14.5349 10.2597 14.5349 6.67529C14.5349 3.09092 11.395 0.175293 7.53491 0.175293ZM7.53491 12.6553C5.93443 12.6553 4.47058 12.1062 3.34331 11.2055C3.63003 11.0729 3.92906 10.9658 4.22419 10.8686C5.14146 10.568 5.8661 10.3304 5.8661 9.27062C5.8661 8.77075 5.5742 8.3306 5.29161 7.90449L5.29097 7.90354C5.04513 7.53279 4.81331 7.18333 4.81331 6.82142C4.81331 6.55517 4.86258 6.37629 4.90234 6.23225C4.9617 6.01696 4.99137 5.90829 4.79761 5.5495C4.33673 4.69929 4.9141 3.01087 6.24576 2.2527C7.53319 1.52054 8.49416 1.56162 9.25967 2.38478C9.50495 2.41754 9.8068 2.54703 10.0571 2.92403C10.5426 3.65566 10.5807 4.97958 10.2716 5.55003C10.0784 5.90832 10.1081 6.01699 10.1675 6.23228C10.2072 6.37632 10.2565 6.5552 10.2565 6.82144C10.2565 7.18313 10.0249 7.53237 9.77929 7.90286L9.77882 7.90356L9.77819 7.90452C9.4956 8.33063 9.2037 8.77077 9.2037 9.27065C9.2037 10.3304 9.92834 10.5681 10.8456 10.8686C11.1407 10.9659 11.4398 11.073 11.7265 11.2056C10.5992 12.1062 9.1354 12.6553 7.53491 12.6553Z\" fill=\"#368B8B\"/>\\n<path d=\"M7.53491 12.6553C5.93443 12.6553 4.47058 12.1062 3.34331 11.2055C3.63003 11.0729 3.92906 10.9658 4.22419 10.8686C5.14146 10.568 5.8661 10.3304 5.8661 9.27062C5.8661 8.77075 5.5742 8.3306 5.29161 7.90449L5.29097 7.90354C5.04513 7.53279 4.81331 7.18333 4.81331 6.82142C4.81331 6.55517 4.86258 6.37629 4.90234 6.23225C4.9617 6.01696 4.99137 5.90829 4.79761 5.5495C4.33673 4.69929 4.9141 3.01087 6.24576 2.2527C7.53319 1.52054 8.49416 1.56162 9.25967 2.38478C9.50495 2.41754 9.8068 2.54703 10.0571 2.92403C10.5426 3.65566 10.5807 4.97958 10.2716 5.55003C10.0784 5.90832 10.1081 6.01699 10.1675 6.23228C10.2072 6.37632 10.2565 6.5552 10.2565 6.82144C10.2565 7.18313 10.0249 7.53237 9.77929 7.90286L9.77882 7.90356L9.77819 7.90452C9.4956 8.33063 9.2037 8.77077 9.2037 9.27065C9.2037 10.3304 9.92834 10.5681 10.8456 10.8686C11.1407 10.9659 11.4398 11.073 11.7265 11.2056C10.5992 12.1062 9.1354 12.6553 7.53491 12.6553Z\" fill=\"white\"/>\\n</g>\\n<defs>\\n<clipPath id=\"clip0_127_230\">\\n<rect width=\"14\" height=\"13\" fill=\"white\" transform=\"translate(0.534912 0.175293)\"/>\\n</clipPath>\\n</defs>\\n</svg>\\n',withExternalLayout:true})})}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1hgockd\",\"data-framer-name\":\"user (2) 8\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:14,intrinsicWidth:15,layoutDependency:layoutDependency,layoutId:\"yxttpIjmp\",svg:'<svg width=\"15\" height=\"14\" viewBox=\"0 0 15 14\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<g clip-path=\"url(#clip0_127_234)\">\\n<path d=\"M7.74341 0.553711C3.88332 0.553711 0.743408 3.46934 0.743408 7.05371C0.743408 10.6381 3.88332 13.5537 7.74341 13.5537C11.6035 13.5537 14.7434 10.6381 14.7434 7.05371C14.7434 3.46934 11.6035 0.553711 7.74341 0.553711ZM7.74341 13.0337C6.14292 13.0337 4.67908 12.4846 3.5518 11.584C3.83853 11.4514 4.13756 11.3442 4.43268 11.247C5.34996 10.9464 6.07459 10.7088 6.07459 9.64904C6.07459 9.14917 5.78269 8.70902 5.5001 8.28291L5.49947 8.28196C5.25362 7.9112 5.0218 7.56175 5.0218 7.19983C5.0218 6.93359 5.07108 6.75471 5.11083 6.61067C5.1702 6.39538 5.19987 6.28671 5.00611 5.92792C4.54523 5.07771 5.12259 3.38929 6.45426 2.63112C7.74169 1.89896 8.70265 1.94004 9.46817 2.7632C9.71344 2.79596 10.0153 2.92545 10.2656 3.30245C10.7511 4.03408 10.7892 5.358 10.4801 5.92845C10.2869 6.28674 10.3166 6.39541 10.376 6.6107C10.4157 6.75474 10.465 6.93361 10.465 7.19986C10.465 7.56155 10.2334 7.91078 9.98779 8.28128L9.98732 8.28198L9.98669 8.28294C9.70409 8.70905 9.4122 9.14919 9.4122 9.64907C9.4122 10.7088 10.1368 10.9465 11.0541 11.247C11.3492 11.3443 11.6483 11.4514 11.935 11.584C10.8077 12.4846 9.34389 13.0337 7.74341 13.0337Z\" fill=\"#F6781D\"/>\\n<path d=\"M7.74341 13.0337C6.14292 13.0337 4.67908 12.4846 3.5518 11.584C3.83853 11.4514 4.13756 11.3442 4.43268 11.247C5.34996 10.9464 6.07459 10.7088 6.07459 9.64904C6.07459 9.14917 5.78269 8.70902 5.5001 8.28291L5.49947 8.28196C5.25362 7.9112 5.0218 7.56175 5.0218 7.19983C5.0218 6.93359 5.07108 6.75471 5.11083 6.61067C5.1702 6.39538 5.19987 6.28671 5.00611 5.92792C4.54523 5.07771 5.12259 3.38929 6.45426 2.63112C7.74169 1.89896 8.70265 1.94004 9.46817 2.7632C9.71344 2.79596 10.0153 2.92545 10.2656 3.30245C10.7511 4.03408 10.7892 5.358 10.4801 5.92845C10.2869 6.28674 10.3166 6.39541 10.376 6.6107C10.4157 6.75474 10.465 6.93361 10.465 7.19986C10.465 7.56155 10.2334 7.91078 9.98779 8.28128L9.98732 8.28198L9.98669 8.28294C9.70409 8.70905 9.4122 9.14919 9.4122 9.64907C9.4122 10.7088 10.1368 10.9465 11.0541 11.247C11.3492 11.3443 11.6483 11.4514 11.935 11.584C10.8077 12.4846 9.34389 13.0337 7.74341 13.0337Z\" fill=\"white\"/>\\n</g>\\n<defs>\\n<clipPath id=\"clip0_127_234\">\\n<rect width=\"14\" height=\"13\" fill=\"white\" transform=\"translate(0.743408 0.553711)\"/>\\n</clipPath>\\n</defs>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1scw4tt\",\"data-framer-name\":\"Vector 26\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:40,intrinsicWidth:57,layoutDependency:layoutDependency,layoutId:\"eSNCKDOXS\",svg:'<svg width=\"57\" height=\"40\" viewBox=\"-1 -1 57 40\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M0.491211 0.553711V19.7663C0.491211 24.5889 3.37828 28.943 7.82064 30.8201L21.2163 36.4801C22.6942 37.1046 24.2824 37.4264 25.8868 37.4264H54.5062\" stroke=\"#E2E2E2\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-7hpldm\",\"data-framer-name\":\"user 1\",layoutDependency:layoutDependency,layoutId:\"bSl2XjxAQ\"}),/*#__PURE__*/_jsx(Transition,{...addPropertyOverrides({\"zDbUqNof_-hover\":{value:transition10}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1ri5f37\",layoutDependency:layoutDependency,layoutId:\"uDGm4kroF\",transformTemplate:transformTemplate1,children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1frd26x\",\"data-framer-name\":\"Group\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:41,intrinsicWidth:40,layoutDependency:layoutDependency,layoutId:\"ylmr7qMMr\",svg:'<svg width=\"40\" height=\"41\" viewBox=\"0 0 40 41\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M19.9509 0.8125C9.06481 0.8125 0.209717 9.66759 0.209717 20.5537C0.209717 31.4382 9.06481 40.2949 19.9509 40.2949C30.8354 40.2949 39.6921 31.4382 39.6921 20.5537C39.6921 9.66759 30.8354 0.8125 19.9509 0.8125ZM29.2878 33.2892C30.12 33.5845 30.9634 33.9099 31.772 34.311C28.5929 37.0479 24.4646 38.7156 19.9509 38.7156C15.4357 38.7156 11.309 37.0479 8.12988 34.3109C8.93849 33.9098 9.78027 33.5845 10.6141 33.2891C10.6153 33.2887 10.6165 33.2883 10.6177 33.2879C13.056 32.4261 15.0109 31.7353 15.2257 28.9571C11.3359 28.5022 8.76159 27.6589 8.64793 27.621C8.40633 27.5405 8.21994 27.3493 8.14252 27.1093C8.06672 26.8677 8.11252 26.6039 8.26251 26.4002C8.28464 26.3702 10.4751 23.3522 10.4751 18.1863C10.4751 10.274 14.0175 5.55193 19.9509 5.55193C25.8843 5.55193 29.4267 10.274 29.4267 18.1863C29.4267 23.3522 31.6172 26.3702 31.6393 26.4002C31.7894 26.6039 31.8336 26.8677 31.7578 27.1093C31.682 27.3494 31.4941 27.5405 31.254 27.621C31.1403 27.6589 28.566 28.5022 24.6762 28.9571C24.8908 31.7353 26.8458 32.4262 29.2841 33.2879C29.2853 33.2883 29.2865 33.2888 29.2878 33.2892Z\" fill=\"#368B8B\"/>\\n<path d=\"M29.2878 33.2892C30.12 33.5845 30.9634 33.9099 31.772 34.311C28.5929 37.0479 24.4646 38.7156 19.9509 38.7156C15.4357 38.7156 11.309 37.0479 8.12988 34.3109C8.93849 33.9098 9.78027 33.5845 10.6141 33.2891L10.6177 33.2879C13.056 32.4261 15.0109 31.7353 15.2257 28.9571C11.3359 28.5022 8.76159 27.6589 8.64793 27.621C8.40633 27.5405 8.21994 27.3493 8.14252 27.1093C8.06672 26.8677 8.11252 26.6039 8.26251 26.4002C8.28464 26.3702 10.4751 23.3522 10.4751 18.1863C10.4751 10.274 14.0175 5.55193 19.9509 5.55193C25.8843 5.55193 29.4267 10.274 29.4267 18.1863C29.4267 23.3522 31.6172 26.3702 31.6393 26.4002C31.7894 26.6039 31.8336 26.8677 31.7578 27.1093C31.682 27.3494 31.4941 27.5405 31.254 27.621C31.1403 27.6589 28.566 28.5022 24.6762 28.9571C24.8908 31.7353 26.8458 32.4262 29.2841 33.2879L29.2878 33.2892Z\" fill=\"white\"/>\\n</svg>\\n',withExternalLayout:true})})}),/*#__PURE__*/_jsx(SVG,{className:\"framer-19kma1i\",\"data-framer-name\":\"user 2\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:17,intrinsicWidth:16,layoutDependency:layoutDependency,layoutId:\"iytdgvkNF\",svg:'<svg width=\"16\" height=\"17\" viewBox=\"0 0 16 17\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<g clip-path=\"url(#clip0_127_243)\">\\n<path d=\"M8 0.553711C3.58847 0.553711 0 4.14218 0 8.55371C0 12.9646 3.58847 16.5537 8 16.5537C12.4109 16.5537 16 12.9646 16 8.55371C16 4.14218 12.4109 0.553711 8 0.553711ZM11.7837 13.7147C12.121 13.8344 12.4627 13.9662 12.7904 14.1288C11.5021 15.2379 9.82913 15.9137 8 15.9137C6.17025 15.9137 4.49791 15.2379 3.20959 14.1287C3.53728 13.9662 3.87841 13.8343 4.21631 13.7146C4.21679 13.7145 4.21727 13.7143 4.21775 13.7141C5.20589 13.3649 5.9981 13.085 6.08513 11.9591C4.50881 11.7748 3.46559 11.433 3.41953 11.4177C3.32163 11.3851 3.24609 11.3076 3.21472 11.2103C3.184 11.1124 3.20256 11.0055 3.26334 10.923C3.27231 10.9108 4.16 9.68777 4.16 7.59434C4.16 4.38793 5.59553 2.47434 8 2.47434C10.4045 2.47434 11.84 4.38793 11.84 7.59434C11.84 9.68777 12.7277 10.9108 12.7367 10.923C12.7975 11.0055 12.8154 11.1124 12.7847 11.2103C12.7539 11.3076 12.6778 11.3851 12.5805 11.4177C12.5344 11.4331 11.4912 11.7748 9.91491 11.9591C10.0019 13.085 10.7941 13.365 11.7822 13.7142C11.7827 13.7143 11.7832 13.7145 11.7837 13.7147Z\" fill=\"#368B8B\"/>\\n<path d=\"M11.7837 13.7147C12.121 13.8344 12.4627 13.9662 12.7904 14.1288C11.5021 15.2379 9.82913 15.9137 8 15.9137C6.17025 15.9137 4.49791 15.2379 3.20959 14.1287C3.53728 13.9662 3.87841 13.8343 4.21631 13.7146L4.21775 13.7141C5.20589 13.3649 5.9981 13.085 6.08513 11.9591C4.50881 11.7748 3.46559 11.433 3.41953 11.4177C3.32163 11.3851 3.24609 11.3076 3.21472 11.2103C3.184 11.1124 3.20256 11.0055 3.26334 10.923C3.27231 10.9108 4.16 9.68777 4.16 7.59434C4.16 4.38793 5.59553 2.47434 8 2.47434C10.4045 2.47434 11.84 4.38793 11.84 7.59434C11.84 9.68777 12.7277 10.9108 12.7367 10.923C12.7975 11.0055 12.8154 11.1124 12.7847 11.2103C12.7539 11.3076 12.6778 11.3851 12.5805 11.4177C12.5344 11.4331 11.4912 11.7748 9.91491 11.9591C10.0019 13.085 10.7941 13.365 11.7822 13.7142L11.7837 13.7147Z\" fill=\"white\"/>\\n</g>\\n<defs>\\n<clipPath id=\"clip0_127_243\">\\n<rect width=\"16\" height=\"16\" fill=\"white\" transform=\"translate(0 0.553711)\"/>\\n</clipPath>\\n</defs>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(Transition,{...addPropertyOverrides({\"zDbUqNof_-hover\":{value:transition6}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-19jl4v1\",layoutDependency:layoutDependency,layoutId:\"oczhtocxU\",transformTemplate:transformTemplate1,children:/*#__PURE__*/_jsx(SVG,{className:\"framer-4igew3\",\"data-framer-name\":\"user 3\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:16,intrinsicWidth:17,layoutDependency:layoutDependency,layoutId:\"TIC6ES1tk\",svg:'<svg width=\"17\" height=\"16\" viewBox=\"0 0 17 16\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<g clip-path=\"url(#clip0_127_247)\">\\n<path d=\"M8.68018 0.13916C4.37419 0.13916 0.871582 3.64177 0.871582 7.94775C0.871582 12.2531 4.37419 15.7563 8.68018 15.7563C12.9855 15.7563 16.4888 12.2531 16.4888 7.94775C16.4888 3.64177 12.9855 0.13916 8.68018 0.13916ZM12.3733 12.9852C12.7025 13.1021 13.0361 13.2308 13.356 13.3894C12.0985 14.472 10.4655 15.1317 8.68018 15.1317C6.8942 15.1317 5.26187 14.472 4.00438 13.3894C4.32423 13.2307 4.65719 13.102 4.98702 12.9852C4.98748 12.985 4.98795 12.9849 4.98842 12.9847C5.95292 12.6439 6.72618 12.3706 6.81112 11.2717C5.27252 11.0918 4.25426 10.7582 4.2093 10.7432C4.11373 10.7114 4.04001 10.6357 4.00939 10.5408C3.9794 10.4453 3.99752 10.3409 4.05685 10.2603C4.0656 10.2485 4.93205 9.05468 4.93205 7.01133C4.93205 3.88164 6.33324 2.01383 8.68018 2.01383C11.0271 2.01383 12.4283 3.88164 12.4283 7.01133C12.4283 9.05468 13.2948 10.2485 13.3035 10.2603C13.3629 10.3409 13.3803 10.4452 13.3504 10.5408C13.3204 10.6358 13.246 10.7114 13.1511 10.7432C13.1061 10.7582 12.0879 11.0918 10.5493 11.2717C10.6341 12.3706 11.4074 12.6439 12.3719 12.9847C12.3724 12.9849 12.3729 12.9851 12.3733 12.9852Z\" fill=\"#F6781D\"/>\\n<path d=\"M12.3733 12.9852C12.7025 13.1021 13.0361 13.2308 13.356 13.3894C12.0985 14.472 10.4655 15.1317 8.68018 15.1317C6.8942 15.1317 5.26187 14.472 4.00438 13.3894C4.32423 13.2307 4.65719 13.102 4.98702 12.9852L4.98842 12.9847C5.95292 12.6439 6.72618 12.3706 6.81112 11.2717C5.27252 11.0918 4.25426 10.7582 4.2093 10.7432C4.11373 10.7114 4.04001 10.6357 4.00939 10.5408C3.9794 10.4453 3.99752 10.3409 4.05685 10.2603C4.0656 10.2485 4.93205 9.05468 4.93205 7.01133C4.93205 3.88164 6.33324 2.01383 8.68018 2.01383C11.0271 2.01383 12.4283 3.88164 12.4283 7.01133C12.4283 9.05468 13.2948 10.2485 13.3035 10.2603C13.3629 10.3409 13.3803 10.4452 13.3504 10.5408C13.3204 10.6358 13.246 10.7114 13.1511 10.7432C13.1061 10.7582 12.0879 11.0918 10.5493 11.2717C10.6341 12.3706 11.4074 12.6439 12.3719 12.9847L12.3733 12.9852Z\" fill=\"white\"/>\\n</g>\\n<defs>\\n<clipPath id=\"clip0_127_247\">\\n<rect width=\"15.6172\" height=\"15.6172\" fill=\"white\" transform=\"translate(0.871582 0.13916)\"/>\\n</clipPath>\\n</defs>\\n</svg>\\n',withExternalLayout:true})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-7l435p\",\"data-framer-name\":\"Ellipse 27\",layoutDependency:layoutDependency,layoutId:\"xI_dxp2ft\",style:{backgroundColor:\"rgb(226, 226, 226)\",borderBottomLeftRadius:\"100%\",borderBottomRightRadius:\"100%\",borderTopLeftRadius:\"100%\",borderTopRightRadius:\"100%\"}}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1i7kihc\",\"data-framer-name\":\"Ellipse 31\",layoutDependency:layoutDependency,layoutId:\"VuBbkJMmg\",style:{backgroundColor:\"rgb(226, 226, 226)\",borderBottomLeftRadius:\"100%\",borderBottomRightRadius:\"100%\",borderTopLeftRadius:\"100%\",borderTopRightRadius:\"100%\"}}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-yhqy4g\",\"data-framer-name\":\"Ellipse 32\",layoutDependency:layoutDependency,layoutId:\"jDwNXqcfl\",style:{backgroundColor:\"rgb(226, 226, 226)\",borderBottomLeftRadius:\"100%\",borderBottomRightRadius:\"100%\",borderTopLeftRadius:\"100%\",borderTopRightRadius:\"100%\"}}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-8moodn\",\"data-framer-name\":\"Ellipse 29\",layoutDependency:layoutDependency,layoutId:\"wyndK_d98\",style:{backgroundColor:\"rgb(226, 226, 226)\",borderBottomLeftRadius:\"100%\",borderBottomRightRadius:\"100%\",borderTopLeftRadius:\"100%\",borderTopRightRadius:\"100%\"},transformTemplate:transformTemplate2}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-4y07xg\",\"data-framer-name\":\"Ellipse 33\",layoutDependency:layoutDependency,layoutId:\"XdC8jkTh6\",style:{backgroundColor:\"rgb(226, 226, 226)\",borderBottomLeftRadius:\"100%\",borderBottomRightRadius:\"100%\",borderTopLeftRadius:\"100%\",borderTopRightRadius:\"100%\"}}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1nfnm3h\",\"data-framer-name\":\"Ellipse 30\",layoutDependency:layoutDependency,layoutId:\"e3VmVEO8B\",style:{backgroundColor:\"rgb(226, 226, 226)\",borderBottomLeftRadius:\"100%\",borderBottomRightRadius:\"100%\",borderTopLeftRadius:\"100%\",borderTopRightRadius:\"100%\"}}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-137sxv9\",\"data-framer-name\":\"Ellipse 34\",layoutDependency:layoutDependency,layoutId:\"aHSLjSFo4\",style:{backgroundColor:\"rgb(226, 226, 226)\",borderBottomLeftRadius:\"100%\",borderBottomRightRadius:\"100%\",borderTopLeftRadius:\"100%\",borderTopRightRadius:\"100%\"}}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1qu14y9\",\"data-framer-name\":\"Ellipse 28\",layoutDependency:layoutDependency,layoutId:\"KdBNDEiEz\",style:{backgroundColor:\"rgb(226, 226, 226)\",borderBottomLeftRadius:\"100%\",borderBottomRightRadius:\"100%\",borderTopLeftRadius:\"100%\",borderTopRightRadius:\"100%\"}}),/*#__PURE__*/_jsx(SVG,{className:\"framer-tmqwbp\",\"data-framer-name\":\"Vector 27\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:47,intrinsicWidth:94,layoutDependency:layoutDependency,layoutId:\"V3pGr4ZdZ\",svg:'<svg width=\"94\" height=\"47\" viewBox=\"-1 -1 94 47\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M0.249023 44.0537H46.1181C49.3007 44.0537 52.3529 42.7894 54.6033 40.5389L68.2822 26.8601C70.2006 24.9416 72.8027 23.8638 75.5158 23.8638V23.8638C79.7948 23.8638 83.6217 21.2007 85.1084 17.1883L91.2377 0.646973\" stroke=\"#E2E2E2\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1jg4ybp\",layoutDependency:layoutDependency,layoutId:\"EtJQnFPRx\",transformTemplate:transformTemplate1,children:/*#__PURE__*/_jsx(SVG,{className:\"framer-9gosbe\",\"data-framer-name\":\"user (2) 10\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:18,intrinsicWidth:17,layoutDependency:layoutDependency,layoutId:\"XKO77WsQ8\",svg:'<svg width=\"17\" height=\"18\" viewBox=\"0 0 17 18\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<g clip-path=\"url(#clip0_127_260)\">\\n<path d=\"M8.5 0.945801C3.81275 0.945801 0 4.75855 0 9.4458C0 14.1331 3.81275 17.9458 8.5 17.9458C13.1873 17.9458 17 14.1331 17 9.4458C17 4.75855 13.1873 0.945801 8.5 0.945801ZM8.5 17.2658C6.55655 17.2658 4.77903 16.5477 3.41019 15.37C3.75836 15.1966 4.12147 15.0565 4.47983 14.9293C5.59366 14.5363 6.47358 14.2255 6.47358 12.8397C6.47358 12.186 6.11913 11.6104 5.77599 11.0532L5.77522 11.052C5.47669 10.5671 5.19519 10.1102 5.19519 9.63688C5.19519 9.28872 5.25503 9.0548 5.3033 8.86644C5.37539 8.58491 5.41141 8.4428 5.17613 7.97361C4.6165 6.8618 5.31758 4.65386 6.93461 3.66241C8.49791 2.70497 9.6648 2.75869 10.5944 3.83514C10.8922 3.87797 11.2587 4.0473 11.5627 4.5403C12.1522 5.49705 12.1985 7.22833 11.8231 7.9743C11.5885 8.44283 11.6246 8.58494 11.6967 8.86647C11.7449 9.05483 11.8048 9.28875 11.8048 9.63692C11.8048 10.1099 11.5236 10.5666 11.2253 11.0511L11.2247 11.052L11.224 11.0532C10.8808 11.6105 10.5264 12.186 10.5264 12.8397C10.5264 14.2256 11.4063 14.5363 12.5201 14.9294C12.8785 15.0565 13.2416 15.1966 13.5898 15.37C12.221 16.5477 10.4434 17.2658 8.5 17.2658Z\" fill=\"#368B8B\"/>\\n<path d=\"M8.5 17.2658C6.55655 17.2658 4.77903 16.5477 3.41019 15.37C3.75836 15.1966 4.12147 15.0565 4.47983 14.9293C5.59366 14.5363 6.47358 14.2255 6.47358 12.8397C6.47358 12.186 6.11913 11.6104 5.77599 11.0532L5.77522 11.052C5.47669 10.5671 5.19519 10.1102 5.19519 9.63688C5.19519 9.28872 5.25503 9.0548 5.3033 8.86644C5.37539 8.58491 5.41141 8.4428 5.17613 7.97361C4.6165 6.8618 5.31758 4.65386 6.93461 3.66241C8.49791 2.70497 9.6648 2.75869 10.5944 3.83514C10.8922 3.87797 11.2587 4.0473 11.5627 4.5403C12.1522 5.49705 12.1985 7.22833 11.8231 7.9743C11.5885 8.44283 11.6246 8.58494 11.6967 8.86647C11.7449 9.05483 11.8048 9.28875 11.8048 9.63692C11.8048 10.1099 11.5236 10.5666 11.2253 11.0511L11.2247 11.052L11.224 11.0532C10.8808 11.6105 10.5264 12.186 10.5264 12.8397C10.5264 14.2256 11.4063 14.5363 12.5201 14.9294C12.8785 15.0565 13.2416 15.1966 13.5898 15.37C12.221 16.5477 10.4434 17.2658 8.5 17.2658Z\" fill=\"white\"/>\\n</g>\\n<defs>\\n<clipPath id=\"clip0_127_260\">\\n<rect width=\"17\" height=\"17\" fill=\"white\" transform=\"translate(0 0.945801)\"/>\\n</clipPath>\\n</defs>\\n</svg>\\n',withExternalLayout:true})}),/*#__PURE__*/_jsx(Transition,{...addPropertyOverrides({\"zDbUqNof_-hover\":{value:transition11}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-19twl71\",layoutDependency:layoutDependency,layoutId:\"VWYuDLce9\",transformTemplate:transformTemplate1,children:/*#__PURE__*/_jsx(SVG,{className:\"framer-89avw9\",\"data-framer-name\":\"user 4\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:14,intrinsicWidth:14,layoutDependency:layoutDependency,layoutId:\"soBUx2L8O\",svg:'<svg width=\"14\" height=\"14\" viewBox=\"0 0 14 14\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<g clip-path=\"url(#clip0_127_264)\">\\n<path d=\"M7.30078 0.552734C3.68477 0.552734 0.743408 3.4941 0.743408 7.11011C0.743408 10.7256 3.68477 13.6675 7.30078 13.6675C10.9163 13.6675 13.8582 10.7256 13.8582 7.11011C13.8582 3.4941 10.9163 0.552734 7.30078 0.552734ZM10.4022 11.3404C10.6786 11.4385 10.9587 11.5466 11.2273 11.6798C10.1713 12.5889 8.80006 13.1429 7.30078 13.1429C5.80099 13.1429 4.43021 12.5889 3.37422 11.6798C3.64282 11.5466 3.92243 11.4385 4.1994 11.3404C4.19979 11.3402 4.20018 11.3401 4.20058 11.34C5.01053 11.0537 5.65988 10.8243 5.73121 9.90142C4.43915 9.75035 3.58406 9.4702 3.5463 9.45762C3.46605 9.43088 3.40414 9.36738 3.37842 9.28767C3.35324 9.20742 3.36846 9.11979 3.41828 9.05211C3.42563 9.04215 4.15324 8.03967 4.15324 6.32374C4.15324 3.69553 5.32991 2.12702 7.30078 2.12702C9.27166 2.12702 10.4483 3.69553 10.4483 6.32374C10.4483 8.03967 11.1759 9.04215 11.1833 9.05211C11.2331 9.11979 11.2478 9.20739 11.2226 9.28767C11.1974 9.36741 11.135 9.43088 11.0553 9.45762C11.0175 9.47022 10.1624 9.75035 8.87038 9.90142C8.94165 10.8243 9.59102 11.0538 10.401 11.34C10.4014 11.3401 10.4018 11.3403 10.4022 11.3404Z\" fill=\"#F6781D\"/>\\n<path d=\"M10.4022 11.3404C10.6786 11.4385 10.9587 11.5466 11.2273 11.6798C10.1713 12.5889 8.80006 13.1429 7.30078 13.1429C5.80099 13.1429 4.43021 12.5889 3.37422 11.6798C3.64282 11.5466 3.92243 11.4385 4.1994 11.3404L4.20058 11.34C5.01053 11.0537 5.65988 10.8243 5.73121 9.90142C4.43915 9.75035 3.58406 9.4702 3.5463 9.45762C3.46605 9.43088 3.40414 9.36738 3.37842 9.28767C3.35324 9.20742 3.36846 9.11979 3.41828 9.05211C3.42563 9.04215 4.15324 8.03967 4.15324 6.32374C4.15324 3.69553 5.32991 2.12702 7.30078 2.12702C9.27166 2.12702 10.4483 3.69553 10.4483 6.32374C10.4483 8.03967 11.1759 9.04215 11.1833 9.05211C11.2331 9.11979 11.2478 9.20739 11.2226 9.28767C11.1974 9.36741 11.135 9.43088 11.0553 9.45762C11.0175 9.47022 10.1624 9.75035 8.87038 9.90142C8.94165 10.8243 9.59102 11.0538 10.401 11.34L10.4022 11.3404Z\" fill=\"white\"/>\\n</g>\\n<defs>\\n<clipPath id=\"clip0_127_264\">\\n<rect width=\"13.1147\" height=\"13.1147\" fill=\"white\" transform=\"translate(0.743408 0.553711)\"/>\\n</clipPath>\\n</defs>\\n</svg>\\n',withExternalLayout:true})})})]})}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1uaomin\",\"data-framer-name\":\"Frame 6\",layoutDependency:layoutDependency,layoutId:\"v29sVJsep\",style:{backgroundColor:\"rgba(255, 255, 255, 0.5)\",borderBottomLeftRadius:20,borderBottomRightRadius:20,borderTopLeftRadius:20,borderTopRightRadius:20},children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:(_getLocalizedValue4=getLocalizedValue(\"v4\",activeLocale))!==null&&_getLocalizedValue4!==void 0?_getLocalizedValue4:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h4,{className:\"framer-styles-preset-1o5d4n7\",\"data-styles-preset\":\"ttzUtOj6f\",style:{\"--framer-text-color\":\"var(--extracted-1eung3n, var(--token-8ecf3070-09f7-44e8-a71e-d4b812577923, rgb(54, 139, 139)))\"},children:\"\\xc9pargne solidaire et sociale\"})}),className:\"framer-gtawa7\",\"data-framer-name\":\"\\xc9pargne solidaire et sociale\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"myv1FcZA2\",style:{\"--extracted-1eung3n\":\"var(--token-8ecf3070-09f7-44e8-a71e-d4b812577923, rgb(54, 139, 139))\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:(_getLocalizedValue5=getLocalizedValue(\"v5\",activeLocale))!==null&&_getLocalizedValue5!==void 0?_getLocalizedValue5:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-lmirgo\",\"data-styles-preset\":\"l67b_BAPm\",children:\"Financez les projets de votre communaut\\xe9 gr\\xe2ce \\xe0 notre solution de tontine digitale.\"}),/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-lmirgo\",\"data-styles-preset\":\"l67b_BAPm\",children:/*#__PURE__*/_jsx(motion.br,{className:\"trailing-break\"})}),/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-lmirgo\",\"data-styles-preset\":\"l67b_BAPm\",children:/*#__PURE__*/_jsx(motion.br,{className:\"trailing-break\"})})]}),className:\"framer-fc4sqo\",\"data-framer-name\":\"Financez les projets de votre communaut\\xe9 gr\\xe2ce \\xe0 notre solution de tontine digitale.\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"LuQ9Ypzzj\",style:{\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true})]})]})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-ASKU4.framer-iln7kw, .framer-ASKU4 .framer-iln7kw { display: block; }\",\".framer-ASKU4.framer-1a11jig { align-content: center; align-items: center; cursor: pointer; display: flex; flex-direction: column; flex-wrap: nowrap; height: 379px; justify-content: space-between; overflow: hidden; padding: 10px 20px 20px 20px; position: relative; width: 433px; will-change: var(--framer-will-change-override, transform); }\",\".framer-ASKU4 .framer-1yhz0h0 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 26px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-ASKU4 .framer-t7k0hr { flex: none; height: 175px; overflow: hidden; position: relative; width: 100%; }\",\".framer-ASKU4 .framer-1vzo0ak { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 4px); left: 109px; position: absolute; top: 66px; width: 4px; z-index: 1; }\",\".framer-ASKU4 .framer-1nv7ycz { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 4px); left: 27px; position: absolute; top: 33px; width: 4px; z-index: 1; }\",\".framer-ASKU4 .framer-g5ja01 { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 4px); left: 343px; position: absolute; top: 56px; width: 4px; z-index: 1; }\",\".framer-ASKU4 .framer-nzl041 { flex: none; height: 120px; left: -24px; position: absolute; top: -22px; width: 457px; }\",\".framer-ASKU4 .framer-1ncqyoy { bottom: 14px; flex: none; height: 125px; left: calc(49.8727735368957% - 104px / 2); overflow: hidden; position: absolute; width: 104px; z-index: 2; }\",\".framer-ASKU4 .framer-13l77e2 { flex: none; height: 112px; left: calc(50.00000000000002% - 93px / 2); position: absolute; top: calc(49.557522123893825% - 112px / 2); width: 93px; }\",\".framer-ASKU4 .framer-h76gay { flex: none; height: 46px; left: calc(50.00000000000002% - 34px / 2); overflow: visible; position: absolute; top: calc(50.40000000000002% - 46px / 2); width: 34px; }\",\".framer-ASKU4 .framer-1xesqpl { flex: none; height: 45px; left: calc(50.00000000000002% - 33px / 2); position: absolute; top: calc(50.00000000000002% - 45px / 2); width: 33px; }\",\".framer-ASKU4 .framer-7u71sq, .framer-ASKU4 .framer-8t8m8c, .framer-ASKU4 .framer-1uaomin { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 8px; height: 181px; justify-content: flex-start; overflow: visible; padding: 20px; position: relative; width: 100%; }\",\".framer-ASKU4 .framer-8przqp { -webkit-user-select: none; flex: none; height: auto; max-width: 329.33px; position: relative; user-select: none; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-ASKU4 .framer-15jsptr, .framer-ASKU4 .framer-fc4sqo { -webkit-user-select: none; flex: none; height: 42px; position: relative; user-select: none; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-ASKU4 .framer-fpskce { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; height: 1px; justify-content: space-between; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-ASKU4 .framer-1b4vphm { flex: none; height: 165px; overflow: visible; position: relative; width: 100%; }\",\".framer-ASKU4 .framer-8chbtf { flex: none; height: 131px; left: 0px; overflow: hidden; position: absolute; right: 0px; top: 0px; }\",\".framer-ASKU4 .framer-ppbxhk { bottom: 0px; flex: none; left: 0px; position: absolute; right: 0px; top: 0px; }\",\".framer-ASKU4 .framer-djkg67 { bottom: 4px; flex: none; height: 26px; position: absolute; right: -37px; width: 153px; }\",\".framer-ASKU4 .framer-n5kn9t { aspect-ratio: 1 / 1; bottom: 50px; flex: none; height: var(--framer-aspect-ratio-supported, 4px); left: 60px; position: absolute; width: 4px; }\",\".framer-ASKU4 .framer-1o9lc1h { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 4px); left: 83%; position: absolute; top: 24%; width: 4px; }\",\".framer-ASKU4 .framer-1xp1jsf { aspect-ratio: 1 / 1; bottom: 2px; flex: none; height: var(--framer-aspect-ratio-supported, 4px); left: 373px; position: absolute; width: 4px; }\",\".framer-ASKU4 .framer-1vspak1 { flex: none; height: 94px; left: calc(48.854961832061086% - 189px / 2); overflow: visible; position: absolute; top: calc(61.21212121212123% - 94px / 2); width: 189px; }\",\".framer-ASKU4 .framer-cn2609 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; left: 86%; overflow: visible; padding: 0px; position: absolute; top: 32%; width: min-content; }\",\".framer-ASKU4 .framer-1xmjep0, .framer-ASKU4 .framer-eu5iv2 { flex: none; height: 27px; position: relative; width: 44px; }\",\".framer-ASKU4 .framer-1gcs5z7 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; left: 49%; overflow: visible; padding: 0px; position: absolute; top: 37%; width: min-content; }\",\".framer-ASKU4 .framer-13cv5bm { flex: none; height: 71px; position: relative; width: 118px; }\",\".framer-ASKU4 .framer-1xh9p7j { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; left: 12%; overflow: visible; padding: 0px; position: absolute; top: 27%; width: min-content; }\",\".framer-ASKU4 .framer-1uoh9qf { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; left: 96%; overflow: visible; padding: 0px; position: absolute; top: 95%; width: min-content; }\",\".framer-ASKU4 .framer-1tclq2l { flex: none; height: 9px; position: relative; width: 15px; }\",\".framer-ASKU4 .framer-ufyknu { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; left: 5%; overflow: visible; padding: 0px; position: absolute; top: 81%; width: min-content; }\",\".framer-ASKU4 .framer-12j0ql1 { flex: none; height: 12px; position: relative; width: 20px; }\",\".framer-ASKU4 .framer-1wx5s3a { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; left: 48%; overflow: visible; padding: 0px; position: absolute; top: 41%; width: min-content; }\",\".framer-ASKU4 .framer-6hd7a1 { flex: none; height: 23px; position: relative; width: 31px; }\",\".framer-ASKU4 .framer-4srx1g { -webkit-user-select: none; flex: none; height: auto; position: relative; user-select: none; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-ASKU4 .framer-xcakrw { -webkit-user-select: none; flex: none; height: 61px; position: relative; user-select: none; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-ASKU4 .framer-10mnyh8 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; height: 379px; justify-content: space-between; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-ASKU4 .framer-1321zh9 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 153px; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-ASKU4 .framer-10a9bfb { flex: none; height: 153px; left: calc(42.966138106896715% - 447px / 2); overflow: visible; position: absolute; top: calc(49.67320261437911% - 153px / 2); width: 447px; z-index: 1; }\",\".framer-ASKU4 .framer-6x00l7 { flex: none; height: 114px; left: 0px; position: absolute; right: 0px; top: 2px; }\",\".framer-ASKU4 .framer-3b4f31 { bottom: 54px; flex: none; height: 20px; left: 106px; position: absolute; width: 20px; }\",\".framer-ASKU4 .framer-3p8pq9 { flex: none; height: 20px; left: calc(68.00894854586133% - 19px / 2); position: absolute; top: calc(42.483660130718974% - 20px / 2); width: 19px; }\",\".framer-ASKU4 .framer-irge2l { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; left: 55%; overflow: visible; padding: 0px; position: absolute; top: 51%; width: min-content; }\",\".framer-ASKU4 .framer-ecnyfc { flex: none; height: 44px; position: relative; width: 43px; }\",\".framer-ASKU4 .framer-su25ek { bottom: 39px; flex: none; height: 13px; left: 282px; position: absolute; width: 13px; }\",\".framer-ASKU4 .framer-10l1qg1 { bottom: 42px; flex: none; height: 13px; left: 375px; position: absolute; width: 12px; }\",\".framer-ASKU4 .framer-qmvkw2 { flex: none; height: 54px; left: 119px; position: absolute; top: 41px; width: 65px; }\",\".framer-ASKU4 .framer-1nh8bo0 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; left: 145px; overflow: visible; padding: 0px; position: absolute; top: 53px; width: min-content; }\",\".framer-ASKU4 .framer-7gii54 { flex: none; height: 14px; position: relative; width: 15px; }\",\".framer-ASKU4 .framer-1hgockd { flex: none; height: 14px; left: 342px; position: absolute; top: 12px; width: 15px; }\",\".framer-ASKU4 .framer-1scw4tt { bottom: 14px; flex: none; height: 37px; left: calc(46.532438478747224% - 54px / 2); position: absolute; width: 54px; }\",\".framer-ASKU4 .framer-7hpldm { bottom: 40px; flex: none; height: 34px; left: 168px; overflow: hidden; position: absolute; width: 34px; }\",\".framer-ASKU4 .framer-1ri5f37 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; left: 41%; overflow: visible; padding: 0px; position: absolute; top: 64%; width: min-content; }\",\".framer-ASKU4 .framer-1frd26x { flex: none; height: 37px; position: relative; width: 36px; }\",\".framer-ASKU4 .framer-19kma1i { bottom: 5px; flex: none; height: 17px; left: calc(47.651006711409416% - 16px / 2); position: absolute; width: 16px; }\",\".framer-ASKU4 .framer-19jl4v1 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; left: 46%; overflow: visible; padding: 0px; position: absolute; top: 24%; width: min-content; }\",\".framer-ASKU4 .framer-4igew3 { flex: none; height: 16px; position: relative; width: 17px; }\",\".framer-ASKU4 .framer-7l435p { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 5px); left: 117px; position: absolute; top: 39px; width: 5px; }\",\".framer-ASKU4 .framer-1i7kihc { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 5px); left: 152px; position: absolute; top: 4px; width: 5px; }\",\".framer-ASKU4 .framer-yhqy4g { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 5px); left: 304px; position: absolute; top: 1px; width: 5px; }\",\".framer-ASKU4 .framer-8moodn { aspect-ratio: 1 / 1; bottom: 10px; flex: none; height: var(--framer-aspect-ratio-supported, 5px); left: 53%; position: absolute; width: 5px; }\",\".framer-ASKU4 .framer-4y07xg { aspect-ratio: 1 / 1; bottom: 3px; flex: none; height: var(--framer-aspect-ratio-supported, 5px); left: 303px; position: absolute; width: 5px; }\",\".framer-ASKU4 .framer-1nfnm3h { aspect-ratio: 1 / 1; bottom: 33px; flex: none; height: var(--framer-aspect-ratio-supported, 5px); left: 300px; position: absolute; width: 5px; }\",\".framer-ASKU4 .framer-137sxv9 { aspect-ratio: 1 / 1; bottom: 62px; flex: none; height: var(--framer-aspect-ratio-supported, 5px); left: 440px; position: absolute; width: 5px; }\",\".framer-ASKU4 .framer-1qu14y9 { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 6px); left: 66px; position: absolute; top: 48px; width: 5px; }\",\".framer-ASKU4 .framer-tmqwbp { bottom: 7px; flex: none; height: 44px; left: 302px; position: absolute; width: 92px; }\",\".framer-ASKU4 .framer-1jg4ybp { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; left: 94%; overflow: visible; padding: 0px; position: absolute; top: 26%; width: min-content; }\",\".framer-ASKU4 .framer-9gosbe { flex: none; height: 18px; position: relative; width: 17px; }\",\".framer-ASKU4 .framer-19twl71 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; left: 80%; overflow: visible; padding: 0px; position: absolute; top: 95%; width: min-content; }\",\".framer-ASKU4 .framer-89avw9 { flex: none; height: 14px; position: relative; width: 14px; }\",\".framer-ASKU4 .framer-gtawa7 { -webkit-user-select: none; flex: none; height: auto; max-width: 291.33px; position: relative; user-select: none; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-ASKU4 .framer-1yhz0h0, .framer-ASKU4 .framer-7u71sq, .framer-ASKU4 .framer-cn2609, .framer-ASKU4 .framer-1gcs5z7, .framer-ASKU4 .framer-1xh9p7j, .framer-ASKU4 .framer-1uoh9qf, .framer-ASKU4 .framer-ufyknu, .framer-ASKU4 .framer-1wx5s3a, .framer-ASKU4 .framer-8t8m8c, .framer-ASKU4 .framer-1321zh9, .framer-ASKU4 .framer-irge2l, .framer-ASKU4 .framer-1nh8bo0, .framer-ASKU4 .framer-1ri5f37, .framer-ASKU4 .framer-19jl4v1, .framer-ASKU4 .framer-1jg4ybp, .framer-ASKU4 .framer-19twl71, .framer-ASKU4 .framer-1uaomin { gap: 0px; } .framer-ASKU4 .framer-1yhz0h0 > * { margin: 0px; margin-bottom: calc(26px / 2); margin-top: calc(26px / 2); } .framer-ASKU4 .framer-1yhz0h0 > :first-child, .framer-ASKU4 .framer-7u71sq > :first-child, .framer-ASKU4 .framer-1wx5s3a > :first-child, .framer-ASKU4 .framer-8t8m8c > :first-child, .framer-ASKU4 .framer-19jl4v1 > :first-child, .framer-ASKU4 .framer-1uaomin > :first-child { margin-top: 0px; } .framer-ASKU4 .framer-1yhz0h0 > :last-child, .framer-ASKU4 .framer-7u71sq > :last-child, .framer-ASKU4 .framer-1wx5s3a > :last-child, .framer-ASKU4 .framer-8t8m8c > :last-child, .framer-ASKU4 .framer-19jl4v1 > :last-child, .framer-ASKU4 .framer-1uaomin > :last-child { margin-bottom: 0px; } .framer-ASKU4 .framer-7u71sq > *, .framer-ASKU4 .framer-8t8m8c > *, .framer-ASKU4 .framer-1uaomin > * { margin: 0px; margin-bottom: calc(8px / 2); margin-top: calc(8px / 2); } .framer-ASKU4 .framer-cn2609 > *, .framer-ASKU4 .framer-1gcs5z7 > *, .framer-ASKU4 .framer-1xh9p7j > *, .framer-ASKU4 .framer-1uoh9qf > *, .framer-ASKU4 .framer-ufyknu > *, .framer-ASKU4 .framer-1321zh9 > *, .framer-ASKU4 .framer-irge2l > *, .framer-ASKU4 .framer-1nh8bo0 > *, .framer-ASKU4 .framer-1ri5f37 > *, .framer-ASKU4 .framer-1jg4ybp > *, .framer-ASKU4 .framer-19twl71 > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-ASKU4 .framer-cn2609 > :first-child, .framer-ASKU4 .framer-1gcs5z7 > :first-child, .framer-ASKU4 .framer-1xh9p7j > :first-child, .framer-ASKU4 .framer-1uoh9qf > :first-child, .framer-ASKU4 .framer-ufyknu > :first-child, .framer-ASKU4 .framer-1321zh9 > :first-child, .framer-ASKU4 .framer-irge2l > :first-child, .framer-ASKU4 .framer-1nh8bo0 > :first-child, .framer-ASKU4 .framer-1ri5f37 > :first-child, .framer-ASKU4 .framer-1jg4ybp > :first-child, .framer-ASKU4 .framer-19twl71 > :first-child { margin-left: 0px; } .framer-ASKU4 .framer-cn2609 > :last-child, .framer-ASKU4 .framer-1gcs5z7 > :last-child, .framer-ASKU4 .framer-1xh9p7j > :last-child, .framer-ASKU4 .framer-1uoh9qf > :last-child, .framer-ASKU4 .framer-ufyknu > :last-child, .framer-ASKU4 .framer-1321zh9 > :last-child, .framer-ASKU4 .framer-irge2l > :last-child, .framer-ASKU4 .framer-1nh8bo0 > :last-child, .framer-ASKU4 .framer-1ri5f37 > :last-child, .framer-ASKU4 .framer-1jg4ybp > :last-child, .framer-ASKU4 .framer-19twl71 > :last-child { margin-right: 0px; } .framer-ASKU4 .framer-1wx5s3a > *, .framer-ASKU4 .framer-19jl4v1 > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } }\",\".framer-ASKU4.framer-v-1qyhqt7 .framer-19jl4v1 { left: 46%; top: 24%; }\",\".framer-ASKU4.framer-v-1qyhqt7 .framer-4y07xg { height: var(--framer-aspect-ratio-supported, 6px); }\",\".framer-ASKU4.framer-v-1a11jig.hover .framer-13l77e2 { height: 126px; left: 0px; right: -1px; top: -2px; width: unset; }\",\".framer-ASKU4.framer-v-1a11jig.hover .framer-h76gay { height: 60px; left: calc(50.00000000000002% - 44px / 2); top: calc(45.60000000000002% - 60px / 2); width: 44px; }\",\".framer-ASKU4.framer-v-1a11jig.hover .framer-1xesqpl { height: 59px; left: calc(50.00000000000002% - 43px / 2); top: calc(50.00000000000002% - 59px / 2); width: 43px; }\",\".framer-ASKU4.framer-v-1o5wfyr.hover .framer-1xmjep0 { height: 36px; width: 58px; }\",\".framer-ASKU4.framer-v-1o5wfyr.hover .framer-13cv5bm { height: 83px; width: 140px; }\",\".framer-ASKU4.framer-v-1o5wfyr.hover .framer-eu5iv2 { height: 34px; width: 56px; }\",\".framer-ASKU4.framer-v-1o5wfyr.hover .framer-1tclq2l { height: 13px; width: 23px; }\",\".framer-ASKU4.framer-v-1o5wfyr.hover .framer-12j0ql1 { height: 16px; width: 27px; }\",\".framer-ASKU4.framer-v-1o5wfyr.hover .framer-6hd7a1 { height: 40px; width: 55px; }\",\".framer-ASKU4.framer-v-1qyhqt7.hover .framer-ecnyfc { height: 68px; width: 67px; }\",\".framer-ASKU4.framer-v-1qyhqt7.hover .framer-1frd26x { height: 43px; width: 42px; }\",\".framer-ASKU4.framer-v-1qyhqt7.hover .framer-4igew3 { height: 29px; width: 31px; }\",\".framer-ASKU4.framer-v-1qyhqt7.hover .framer-9gosbe { height: 35px; width: 33px; }\",\".framer-ASKU4.framer-v-1qyhqt7.hover .framer-89avw9 { height: 32px; width: 32px; }\",...sharedStyle.css,...sharedStyle1.css,'.framer-ASKU4[data-border=\"true\"]::after, .framer-ASKU4 [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); width: 100%; height: 100%; position: absolute; box-sizing: border-box; left: 0; top: 0; border-radius: inherit; pointer-events: none; }'];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 379\n * @framerIntrinsicWidth 433\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]},\"Ogn3x58ps\":{\"layout\":[\"fixed\",\"fixed\"]},\"zDbUqNof_\":{\"layout\":[\"fixed\",\"fixed\"]},\"HYjAmcvHH\":{\"layout\":[\"fixed\",\"fixed\"]},\"QqsV5EbqK\":{\"layout\":[\"fixed\",\"fixed\"]},\"D4wEbQ_UK\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerojTGWuIaR=withCSS(Component,css,\"framer-ASKU4\");export default FramerojTGWuIaR;FramerojTGWuIaR.displayName=\"Function Cards\";FramerojTGWuIaR.defaultProps={height:379,width:433};addPropertyControls(FramerojTGWuIaR,{variant:{options:[\"RVl94oJmR\",\"Ogn3x58ps\",\"zDbUqNof_\"],optionTitles:[\"Variant 1\",\"Variant 2\",\"Variant 3\"],title:\"Variant\",type:ControlType.Enum}});addFonts(FramerojTGWuIaR,[{explicitInter:true,fonts:[{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/5vvr9Vy74if2I6bQbJvbw7SY1pQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/EOr0mi4hNtlgWNn9if640EZzXCo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Y9k9QrlZAqio88Klkmbd8VoMQc.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/OYrD2tBIBPvoJXiIHnLoOXnY9M.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/JeYwfuaPfZHQhEG8U5gtPDZ7WQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"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\",url:\"https://framerusercontent.com/assets/vQyevYAyHtARFwPqUzQGpnDs.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/b6Y37FthZeALduNqHicBT6FutY.woff2\",weight:\"400\"}]},...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerojTGWuIaR\",\"slots\":[],\"annotations\":{\"framerDisplayContentsDiv\":\"false\",\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicHeight\":\"379\",\"framerContractVersion\":\"1\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"Ogn3x58ps\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"zDbUqNof_\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"HYjAmcvHH\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"QqsV5EbqK\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"D4wEbQ_UK\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerIntrinsicWidth\":\"433\",\"framerImmutableVariables\":\"true\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "import{jsx as _jsx}from\"react/jsx-runtime\";import{motion}from\"framer-motion\";import*as React from\"react\";export const v0=/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7UGx1cyBKYWthcnRhIFNhbnMtODAw\",\"--framer-font-family\":'\"Plus Jakarta Sans\", \"Plus Jakarta Sans Placeholder\", sans-serif',\"--framer-font-size\":\"22px\",\"--framer-font-weight\":\"800\",\"--framer-letter-spacing\":\"0.1px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(33, 39, 39))\"},children:\"Facilitate your access to financing\"})});export const v1=/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7UGx1cyBKYWthcnRhIFNhbnMtcmVndWxhcg==\",\"--framer-font-family\":'\"Plus Jakarta Sans\", \"Plus Jakarta Sans Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-letter-spacing\":\"0.1px\"},children:\"Do you need to finance a project or an unexpected expense? Unlock your Cirkkle fund!\"})});export const v2=/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7UGx1cyBKYWthcnRhIFNhbnMtODAw\",\"--framer-font-family\":'\"Plus Jakarta Sans\", \"Plus Jakarta Sans Placeholder\", sans-serif',\"--framer-font-size\":\"22px\",\"--framer-font-weight\":\"800\",\"--framer-letter-spacing\":\"0.1px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(33, 39, 39))\"},children:\"Giving meaning to your savings\"})});export const v3=/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7UGx1cyBKYWthcnRhIFNhbnMtcmVndWxhcg==\",\"--framer-font-family\":'\"Plus Jakarta Sans\", \"Plus Jakarta Sans Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-letter-spacing\":\"0.1px\"},children:\"By saving together, you strengthen your social bond and enable your loved ones to fund their projects.\"})});export const v4=/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7UGx1cyBKYWthcnRhIFNhbnMtODAw\",\"--framer-font-family\":'\"Plus Jakarta Sans\", \"Plus Jakarta Sans Placeholder\", sans-serif',\"--framer-font-size\":\"22px\",\"--framer-font-weight\":\"800\",\"--framer-letter-spacing\":\"0.1px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(33, 39, 39))\"},children:\"Strengthen your spaniel discipline\"})});export const v5=/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7UGx1cyBKYWthcnRhIFNhbnMtcmVndWxhcg==\",\"--framer-font-family\":'\"Plus Jakarta Sans\", \"Plus Jakarta Sans Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-letter-spacing\":\"0.1px\"},children:\"Collective saving encourages greater rigor. If you struggle to save, Cirkkle finally allows you to succeed!\"})});\nexport const __FramerMetadata__ = {\"exports\":{\"v0\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v1\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v5\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v3\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v2\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v4\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (ed8225c)\nimport*as localizedValues from\"./QD0lFU70_-0.js\";const valuesByLocaleId={ENPWvRMq3:localizedValues};export default function getLocalizedValue(key,locale){while(locale){const values=valuesByLocaleId[locale.id];if(values){const value=values[key];if(value)return value;}locale=locale.fallback;}}\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (ed8225c)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,RichText,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useVariantState,withCSS,withFX}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import getLocalizedValue from\"https://framerusercontent.com/modules/TdVEqqxLH0oWZXmFtvuW/RLZPORFjBAcHM3nXHWuc/QD0lFU70_.js\";const MotionDivWithFX=withFX(motion.div);const cycleOrder=[\"w12nEPy8j\",\"BPLVvwWrE\",\"rDnSOaRAi\",\"YqDvxZ2jy\"];const serializationHash=\"framer-LGcNj\";const variantClassNames={BPLVvwWrE:\"framer-v-tj8ody\",rDnSOaRAi:\"framer-v-71qcbm\",w12nEPy8j:\"framer-v-eua75f\",YqDvxZ2jy:\"framer-v-f0bc4h\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const animation={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:0,y:50};const transition2={delay:.4,duration:.5,ease:[.56,.07,.33,.79],type:\"tween\"};const animation1={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition2,x:0,y:50};const transition3={delay:.8,duration:.5,ease:[.56,.07,.33,.79],type:\"tween\"};const animation2={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition3,x:0,y:50};const transition4={delay:1.2,duration:.5,ease:[.56,.07,.33,.79],type:\"tween\"};const animation3={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition4,x:0,y:50};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={\"Variant 1\":\"w12nEPy8j\",\"Variant 2\":\"BPLVvwWrE\",\"Variant 3\":\"rDnSOaRAi\",\"Variant 4\":\"YqDvxZ2jy\"};const getProps=({height,id,width,...props})=>{var _humanReadableVariantMap_props_variant,_ref;return{...props,variant:(_ref=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref!==void 0?_ref:\"w12nEPy8j\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"w12nEPy8j\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onMouseEnterhzkqkf=activeVariantCallback(async(...args)=>{setVariant(\"BPLVvwWrE\");});const onMouseLeave2z1ew1=activeVariantCallback(async(...args)=>{setVariant(\"w12nEPy8j\");});const onMouseEnter7y8dgn=activeVariantCallback(async(...args)=>{setVariant(\"rDnSOaRAi\");});const onMouseEnterfjebx3=activeVariantCallback(async(...args)=>{setVariant(\"YqDvxZ2jy\");});const ref1=React.useRef(null);const defaultLayoutId=React.useId();const sharedStyleClassNames=[];const componentViewport=useComponentViewport();var _getLocalizedValue,_getLocalizedValue1,_getLocalizedValue2,_getLocalizedValue3,_getLocalizedValue4,_getLocalizedValue5;return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(motion.div,{...restProps,...gestureHandlers,className:cx(serializationHash,...sharedStyleClassNames,\"framer-eua75f\",className,classNames),\"data-framer-name\":\"Variant 1\",layoutDependency:layoutDependency,layoutId:\"w12nEPy8j\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{backdropFilter:\"blur(0px)\",backgroundColor:\"rgba(0, 0, 0, 0)\",borderBottomLeftRadius:13,borderBottomRightRadius:13,borderTopLeftRadius:13,borderTopRightRadius:13,boxShadow:\"0px 4px 14px 0px rgba(0, 0, 0, 0.019999999552965164)\",WebkitBackdropFilter:\"blur(0px)\",...style},variants:{BPLVvwWrE:{backdropFilter:\"blur(5px)\",backgroundColor:\"rgba(0, 0, 0, 0.18)\",WebkitBackdropFilter:\"blur(5px)\"},rDnSOaRAi:{backdropFilter:\"blur(5px)\",backgroundColor:\"rgba(0, 0, 0, 0.18)\",WebkitBackdropFilter:\"blur(5px)\"},YqDvxZ2jy:{backdropFilter:\"blur(5px)\",backgroundColor:\"rgba(0, 0, 0, 0.18)\",WebkitBackdropFilter:\"blur(5px)\"}},...addPropertyOverrides({BPLVvwWrE:{\"data-framer-name\":\"Variant 2\"},rDnSOaRAi:{\"data-framer-name\":\"Variant 3\"},YqDvxZ2jy:{\"data-framer-name\":\"Variant 4\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation,__framer__exit:animation1,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,className:\"framer-ij7eou\",\"data-border\":true,\"data-framer-name\":\"Card 1\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"azGPmR_bB\",onMouseEnter:onMouseEnterhzkqkf,style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"rgba(0, 0, 0, 0.2)\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-style\":\"solid\",\"--border-top-width\":\"0px\",backgroundColor:\"rgb(255, 255, 255)\",borderTopLeftRadius:10,borderTopRightRadius:10,transformPerspective:1200},variants:{rDnSOaRAi:{backgroundColor:\"rgb(196, 196, 196)\"},YqDvxZ2jy:{backgroundColor:\"rgb(196, 196, 196)\"}},...addPropertyOverrides({BPLVvwWrE:{onMouseLeave:onMouseLeave2z1ew1}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:(_getLocalizedValue=getLocalizedValue(\"v0\",activeLocale))!==null&&_getLocalizedValue!==void 0?_getLocalizedValue:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7UGx1cyBKYWthcnRhIFNhbnMtODAw\",\"--framer-font-family\":'\"Plus Jakarta Sans\", \"Plus Jakarta Sans Placeholder\", sans-serif',\"--framer-font-size\":\"22px\",\"--framer-font-weight\":\"800\",\"--framer-letter-spacing\":\"0.1px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(33, 39, 39))\"},children:\"Faciliter votre acc\\xe8s au financement\"})}),className:\"framer-1247e5p\",\"data-framer-name\":\"Faciliter votre acc\\xe8s au financement\",fonts:[\"GF;Plus Jakarta Sans-800\"],layoutDependency:layoutDependency,layoutId:\"YX00xj_KS\",style:{\"--extracted-r6o4lv\":\"rgb(33, 39, 39)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:(_getLocalizedValue1=getLocalizedValue(\"v1\",activeLocale))!==null&&_getLocalizedValue1!==void 0?_getLocalizedValue1:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7UGx1cyBKYWthcnRhIFNhbnMtcmVndWxhcg==\",\"--framer-font-family\":'\"Plus Jakarta Sans\", \"Plus Jakarta Sans Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-letter-spacing\":\"0.1px\"},children:\"Vous avez besoin de financer un projet ou un impr\\xe9vu ? D\\xe9bloquez votre cagnotte Cirkkle !\"})}),className:\"framer-s9udjy\",\"data-framer-name\":\"Vous avez besoin de financer un projet ou un impr\\xe9vu ? D\\xe9bloquez votre cagnotte Cirkkle !\",fonts:[\"GF;Plus Jakarta Sans-regular\"],layoutDependency:layoutDependency,layoutId:\"aJR6lGUDw\",style:{\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition3},__framer__animateOnce:true,__framer__enter:animation,__framer__exit:animation2,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,className:\"framer-2ocsa0\",\"data-border\":true,\"data-framer-name\":\"Card 2\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"yrloZvP39\",onMouseEnter:onMouseEnter7y8dgn,style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"rgba(0, 0, 0, 0.2)\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-style\":\"solid\",\"--border-top-width\":\"0px\",backgroundColor:\"rgb(255, 255, 255)\",transformPerspective:1200},variants:{BPLVvwWrE:{backgroundColor:\"rgb(196, 196, 196)\"},YqDvxZ2jy:{backgroundColor:\"rgb(196, 196, 196)\"}},...addPropertyOverrides({rDnSOaRAi:{onMouseLeave:onMouseLeave2z1ew1}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:(_getLocalizedValue2=getLocalizedValue(\"v2\",activeLocale))!==null&&_getLocalizedValue2!==void 0?_getLocalizedValue2:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7UGx1cyBKYWthcnRhIFNhbnMtODAw\",\"--framer-font-family\":'\"Plus Jakarta Sans\", \"Plus Jakarta Sans Placeholder\", sans-serif',\"--framer-font-size\":\"22px\",\"--framer-font-weight\":\"800\",\"--framer-letter-spacing\":\"0.1px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(33, 39, 39))\"},children:\"Donner du sens \\xe0 votre \\xe9pargne\"})}),className:\"framer-1hgoojq\",\"data-framer-name\":\"Donner du sens \\xe0 votre \\xe9pargne\",fonts:[\"GF;Plus Jakarta Sans-800\"],layoutDependency:layoutDependency,layoutId:\"ERQL_gqqh\",style:{\"--extracted-r6o4lv\":\"rgb(33, 39, 39)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:(_getLocalizedValue3=getLocalizedValue(\"v3\",activeLocale))!==null&&_getLocalizedValue3!==void 0?_getLocalizedValue3:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7UGx1cyBKYWthcnRhIFNhbnMtcmVndWxhcg==\",\"--framer-font-family\":'\"Plus Jakarta Sans\", \"Plus Jakarta Sans Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-letter-spacing\":\"0.1px\"},children:\"En \\xe9pargnant ensemble, vous renforcez votre lien social et vous permettez \\xe0 vos proches de financer leurs projets.\"})}),className:\"framer-pp27lf\",\"data-framer-name\":\"En \\xe9pargnant ensemble, vous renforcez votre lien social et vous permettez \\xe0 vos proches de financer leurs projets.\",fonts:[\"GF;Plus Jakarta Sans-regular\"],layoutDependency:layoutDependency,layoutId:\"Tci3xs7Fu\",style:{\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition4},__framer__animateOnce:true,__framer__enter:animation,__framer__exit:animation3,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,className:\"framer-1yd41d2\",\"data-framer-name\":\"Card 3\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"inACIHUr8\",onMouseEnter:onMouseEnterfjebx3,style:{backgroundColor:\"rgb(255, 255, 255)\",borderBottomLeftRadius:10,borderBottomRightRadius:10,transformPerspective:1200},variants:{BPLVvwWrE:{backgroundColor:\"rgb(196, 196, 196)\"},rDnSOaRAi:{backgroundColor:\"rgb(196, 196, 196)\"}},...addPropertyOverrides({YqDvxZ2jy:{onMouseLeave:onMouseLeave2z1ew1}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:(_getLocalizedValue4=getLocalizedValue(\"v4\",activeLocale))!==null&&_getLocalizedValue4!==void 0?_getLocalizedValue4:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7UGx1cyBKYWthcnRhIFNhbnMtODAw\",\"--framer-font-family\":'\"Plus Jakarta Sans\", \"Plus Jakarta Sans Placeholder\", sans-serif',\"--framer-font-size\":\"22px\",\"--framer-font-weight\":\"800\",\"--framer-letter-spacing\":\"0.1px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(33, 39, 39))\"},children:\"Renforcer votre discipline \\xe9pagne\"})}),className:\"framer-moq5uq\",\"data-framer-name\":\"Renforcer votre discipline \\xe9pagne\",fonts:[\"GF;Plus Jakarta Sans-800\"],layoutDependency:layoutDependency,layoutId:\"eeMfsz9d_\",style:{\"--extracted-r6o4lv\":\"rgb(33, 39, 39)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:(_getLocalizedValue5=getLocalizedValue(\"v5\",activeLocale))!==null&&_getLocalizedValue5!==void 0?_getLocalizedValue5:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7UGx1cyBKYWthcnRhIFNhbnMtcmVndWxhcg==\",\"--framer-font-family\":'\"Plus Jakarta Sans\", \"Plus Jakarta Sans Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-letter-spacing\":\"0.1px\"},children:\"L'\\xe9pargne collective incite \\xe0 une plus grande rigueur. Si vous avez du mal \\xe0 \\xe9pargner, Cirkkle vous permet enfin d'y arriver !\"})}),className:\"framer-1we7f20\",\"data-framer-name\":\"L'\\xe9pargne collective incite \\xe0 une plus grande rigueur. Si vous avez du mal \\xe0 \\xe9pargner, Cirkkle vous permet enfin d'y arriver !\",fonts:[\"GF;Plus Jakarta Sans-regular\"],layoutDependency:layoutDependency,layoutId:\"jJMvTixjY\",style:{\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true})]})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-LGcNj.framer-fiqevg, .framer-LGcNj .framer-fiqevg { display: block; }\",\".framer-LGcNj.framer-eua75f { align-content: flex-end; align-items: flex-end; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 1px; height: 860px; justify-content: center; overflow: visible; padding: 33px 62px 33px 62px; position: relative; width: 985px; }\",\".framer-LGcNj .framer-ij7eou, .framer-LGcNj .framer-1yd41d2 { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 15px; height: 1px; justify-content: center; max-width: 400px; overflow: hidden; padding: 50px 40px 50px 40px; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-LGcNj .framer-1247e5p, .framer-LGcNj .framer-s9udjy, .framer-LGcNj .framer-1hgoojq, .framer-LGcNj .framer-pp27lf, .framer-LGcNj .framer-moq5uq, .framer-LGcNj .framer-1we7f20 { -webkit-user-select: none; flex: none; height: auto; position: relative; user-select: none; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-LGcNj .framer-2ocsa0 { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 15px; height: 1px; justify-content: center; max-width: 400px; overflow: hidden; padding: 50px 40px 50px 40px; position: relative; width: 100%; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-LGcNj.framer-eua75f, .framer-LGcNj .framer-ij7eou, .framer-LGcNj .framer-2ocsa0, .framer-LGcNj .framer-1yd41d2 { gap: 0px; } .framer-LGcNj.framer-eua75f > * { margin: 0px; margin-bottom: calc(1px / 2); margin-top: calc(1px / 2); } .framer-LGcNj.framer-eua75f > :first-child, .framer-LGcNj .framer-ij7eou > :first-child, .framer-LGcNj .framer-2ocsa0 > :first-child, .framer-LGcNj .framer-1yd41d2 > :first-child { margin-top: 0px; } .framer-LGcNj.framer-eua75f > :last-child, .framer-LGcNj .framer-ij7eou > :last-child, .framer-LGcNj .framer-2ocsa0 > :last-child, .framer-LGcNj .framer-1yd41d2 > :last-child { margin-bottom: 0px; } .framer-LGcNj .framer-ij7eou > *, .framer-LGcNj .framer-2ocsa0 > *, .framer-LGcNj .framer-1yd41d2 > * { margin: 0px; margin-bottom: calc(15px / 2); margin-top: calc(15px / 2); } }\",'.framer-LGcNj[data-border=\"true\"]::after, .framer-LGcNj [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); width: 100%; height: 100%; position: absolute; box-sizing: border-box; left: 0; top: 0; border-radius: inherit; pointer-events: none; }'];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 860\n * @framerIntrinsicWidth 985\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]},\"BPLVvwWrE\":{\"layout\":[\"fixed\",\"fixed\"]},\"rDnSOaRAi\":{\"layout\":[\"fixed\",\"fixed\"]},\"YqDvxZ2jy\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerQD0lFU70_=withCSS(Component,css,\"framer-LGcNj\");export default FramerQD0lFU70_;FramerQD0lFU70_.displayName=\"Stack Cards - Advantages\";FramerQD0lFU70_.defaultProps={height:860,width:985};addPropertyControls(FramerQD0lFU70_,{variant:{options:[\"w12nEPy8j\",\"BPLVvwWrE\",\"rDnSOaRAi\",\"YqDvxZ2jy\"],optionTitles:[\"Variant 1\",\"Variant 2\",\"Variant 3\",\"Variant 4\"],title:\"Variant\",type:ControlType.Enum}});addFonts(FramerQD0lFU70_,[{explicitInter:true,fonts:[{family:\"Plus Jakarta Sans\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/plusjakartasans/v8/LDIbaomQNQcsA88c7O9yZ4KMCoOg4IA6-91aHEjcWuA_KUnNTxXUEKi4Rw.woff2\",weight:\"800\"},{family:\"Plus Jakarta Sans\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/plusjakartasans/v8/LDIbaomQNQcsA88c7O9yZ4KMCoOg4IA6-91aHEjcWuA_qU7NTxXUEKi4Rw.woff2\",weight:\"400\"}]}],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerQD0lFU70_\",\"slots\":[],\"annotations\":{\"framerComponentViewportWidth\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"BPLVvwWrE\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"rDnSOaRAi\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"YqDvxZ2jy\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerDisplayContentsDiv\":\"false\",\"framerIntrinsicHeight\":\"860\",\"framerContractVersion\":\"1\",\"framerIntrinsicWidth\":\"985\",\"framerImmutableVariables\":\"true\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "export const v0={src:\"https://framerusercontent.com/images/p2m9QQ2utS64zdRr763LyAJ7usk.png\",srcSet:\"https://framerusercontent.com/images/p2m9QQ2utS64zdRr763LyAJ7usk.png 354w\"};export const v1={src:\"https://framerusercontent.com/images/UeisCTIG6Adq0FCOerY8egK5FCc.png\",srcSet:\"https://framerusercontent.com/images/UeisCTIG6Adq0FCOerY8egK5FCc.png?scale-down-to=512 512w,https://framerusercontent.com/images/UeisCTIG6Adq0FCOerY8egK5FCc.png 529w\"};export const v2={src:\"https://framerusercontent.com/images/taxqQTrFlcmWJtJJ4DKT5A9OMwU.png\",srcSet:\"https://framerusercontent.com/images/taxqQTrFlcmWJtJJ4DKT5A9OMwU.png?scale-down-to=512 512w,https://framerusercontent.com/images/taxqQTrFlcmWJtJJ4DKT5A9OMwU.png 517w\"};export const v3={src:\"https://framerusercontent.com/images/AfwCOhrzIBCqvPeHU9GY6z8lc.png\",srcSet:\"https://framerusercontent.com/images/AfwCOhrzIBCqvPeHU9GY6z8lc.png?scale-down-to=1024 638w,https://framerusercontent.com/images/AfwCOhrzIBCqvPeHU9GY6z8lc.png 707w\"};export const v4={src:\"https://framerusercontent.com/images/A7kV7fmthsspY7X2huL3LqDCLx8.png\",srcSet:\"https://framerusercontent.com/images/A7kV7fmthsspY7X2huL3LqDCLx8.png?scale-down-to=1024 639w,https://framerusercontent.com/images/A7kV7fmthsspY7X2huL3LqDCLx8.png 708w\"};export const v5={src:\"https://framerusercontent.com/images/7gkEIjVe8A11llRGfCRjy1QwCtE.png\"};export const v6={src:\"https://framerusercontent.com/images/mLpEEgyzYtx25PHwKTWta7tlTGA.png\"};export const v7={src:\"https://framerusercontent.com/images/Gl2JYwe7M2cJIl8vJoce8YhYi8.png\",srcSet:\"https://framerusercontent.com/images/Gl2JYwe7M2cJIl8vJoce8YhYi8.png?scale-down-to=1024 639w,https://framerusercontent.com/images/Gl2JYwe7M2cJIl8vJoce8YhYi8.png 708w\"};\nexport const __FramerMetadata__ = {\"exports\":{\"v0\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v6\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v5\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v7\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v3\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v4\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v1\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v2\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (ed8225c)\nimport*as localizedValues from\"./R0OEqV3EP-0.js\";const valuesByLocaleId={ENPWvRMq3:localizedValues};export default function getLocalizedValue(key,locale){while(locale){const values=valuesByLocaleId[locale.id];if(values){const value=values[key];if(value)return value;}locale=locale.fallback;}}\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (ed8225c)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,getLoadingLazyAtYPosition,Image,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import Embed from\"https://framerusercontent.com/modules/o1PI5S8YtkA5bP5g4dFz/9zLIz4fn80IR9zpOx18Q/Embed.js\";import getLocalizedValue from\"https://framerusercontent.com/modules/VF7Z0VbEB3AE1vV3tWtK/IeA6inwAzhWJ91eaklWZ/R0OEqV3EP.js\";const EmbedFonts=getFonts(Embed);const cycleOrder=[\"ix0X6gkvr\",\"xu870Ic3h\",\"JQNh5CFGh\",\"dY3IDzE1X\",\"OFJWxDfqB\"];const serializationHash=\"framer-3b4R0\";const variantClassNames={dY3IDzE1X:\"framer-v-wmxluy\",ix0X6gkvr:\"framer-v-7k44k5\",JQNh5CFGh:\"framer-v-lwdrp7\",OFJWxDfqB:\"framer-v-jaunwg\",xu870Ic3h:\"framer-v-1velsjk\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:60,delay:0,mass:1,stiffness:280,type:\"spring\"};const transformTemplate1=(_,t)=>`translate(-50%, -50%) ${t}`;const transition2={delay:1,duration:.8,ease:[.44,0,.56,1],type:\"tween\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const transition3={delay:.5,duration:.8,ease:[.44,0,.56,1],type:\"tween\"};const transition4={damping:20,delay:1,mass:1,stiffness:150,type:\"spring\"};const transition5={damping:20,delay:.5,mass:1,stiffness:150,type:\"spring\"};const transition6={duration:0,type:\"tween\"};const transition7={delay:.3,duration:1.5,ease:[.71,-.03,.16,1.02],type:\"tween\"};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={\"S1 - Anim\":\"OFJWxDfqB\",S1:\"ix0X6gkvr\",S2:\"xu870Ic3h\",S3:\"JQNh5CFGh\",S4:\"dY3IDzE1X\"};const getProps=({height,id,width,...props})=>{var _humanReadableVariantMap_props_variant,_ref;return{...props,variant:(_ref=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref!==void 0?_ref:\"ix0X6gkvr\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"ix0X6gkvr\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const ref1=React.useRef(null);const defaultLayoutId=React.useId();const sharedStyleClassNames=[];const componentViewport=useComponentViewport();var _getLocalizedValue,_getLocalizedValue1,_getLocalizedValue2,_getLocalizedValue3,_getLocalizedValue4,_getLocalizedValue5,_getLocalizedValue6,_getLocalizedValue7,_getLocalizedValue8,_getLocalizedValue9,_getLocalizedValue10,_getLocalizedValue11,_getLocalizedValue12,_getLocalizedValue13,_getLocalizedValue14;return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(motion.div,{...restProps,...gestureHandlers,className:cx(serializationHash,...sharedStyleClassNames,\"framer-7k44k5\",className,classNames),\"data-framer-name\":\"S1\",layoutDependency:layoutDependency,layoutId:\"ix0X6gkvr\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{...style},...addPropertyOverrides({dY3IDzE1X:{\"data-framer-name\":\"S4\"},JQNh5CFGh:{\"data-framer-name\":\"S3\"},OFJWxDfqB:{\"data-framer-name\":\"S1 - Anim\"},xu870Ic3h:{\"data-framer-name\":\"S2\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1kmzsl7\",\"data-framer-name\":\"1\",layoutDependency:layoutDependency,layoutId:\"Yoc21ltmm\",style:{backgroundColor:\"rgb(243, 236, 226)\",borderBottomLeftRadius:30,borderBottomRightRadius:30,borderTopLeftRadius:30,borderTopRightRadius:30,opacity:1},variants:{dY3IDzE1X:{opacity:0},JQNh5CFGh:{opacity:0},xu870Ic3h:{opacity:0}},children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-15rbnhc\",\"data-framer-name\":\"Frame 289193\",layoutDependency:layoutDependency,layoutId:\"C7ZoHjHZk\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1wsnxej\",\"data-framer-name\":\"Ellipse 147\",layoutDependency:layoutDependency,layoutId:\"w_3h8FqoU\",style:{backgroundColor:\"rgb(246, 120, 28)\",borderBottomLeftRadius:\"100%\",borderBottomRightRadius:\"100%\",borderTopLeftRadius:\"100%\",borderTopRightRadius:\"100%\",opacity:.1}}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-9oyjwo\",\"data-framer-name\":\"Ellipse 148\",layoutDependency:layoutDependency,layoutId:\"bN6LWdpzv\",style:{backgroundColor:\"rgb(246, 120, 28)\",borderBottomLeftRadius:\"100%\",borderBottomRightRadius:\"100%\",borderTopLeftRadius:\"100%\",borderTopRightRadius:\"100%\",opacity:.1}})]}),/*#__PURE__*/_jsxs(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1912.85,intrinsicWidth:1183.6666666666665,loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||1075)*.50046511627907-348.3165)+65.00000000000011),pixelHeight:1713,pixelWidth:1060,sizes:\"349px\",...(_getLocalizedValue=getLocalizedValue(\"v0\",activeLocale))!==null&&_getLocalizedValue!==void 0?_getLocalizedValue:{src:\"https://framerusercontent.com/images/y3lHWHDfXvECWLhm6cF2BSazcs.webp\",srcSet:\"https://framerusercontent.com/images/y3lHWHDfXvECWLhm6cF2BSazcs.webp?scale-down-to=1024 633w,https://framerusercontent.com/images/y3lHWHDfXvECWLhm6cF2BSazcs.webp 1060w\"}},className:\"framer-12znn5m\",\"data-framer-name\":\"Slide_1\",layoutDependency:layoutDependency,layoutId:\"L85rqR6_R\",children:[/*#__PURE__*/_jsx(Transition,{...addPropertyOverrides({OFJWxDfqB:{value:transition2}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:239.36666666666667,intrinsicWidth:1138.0666666666666,loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||1075)*.50046511627907-348.3165)+65.00000000000011+354.0000000000001),pixelHeight:167,pixelWidth:794,sizes:\"208px\",...(_getLocalizedValue1=getLocalizedValue(\"v1\",activeLocale))!==null&&_getLocalizedValue1!==void 0?_getLocalizedValue1:{src:\"https://framerusercontent.com/images/gxslleZLZ3rBAnsmULhu2VmY1Sk.webp\",srcSet:\"https://framerusercontent.com/images/gxslleZLZ3rBAnsmULhu2VmY1Sk.webp?scale-down-to=512 512w,https://framerusercontent.com/images/gxslleZLZ3rBAnsmULhu2VmY1Sk.webp 794w\"}},className:\"framer-1nyftzz\",\"data-framer-name\":\"$1_Membres\",layoutDependency:layoutDependency,layoutId:\"dbuksg8_Y\",style:{borderBottomLeftRadius:15,borderBottomRightRadius:15,borderTopLeftRadius:15,borderTopRightRadius:15,boxShadow:\"0px 0.6021873017743928px 0.6021873017743928px -0.41666666666666663px rgba(0, 0, 0, 0.07003), 0px 2.288533303243457px 2.288533303243457px -0.8333333333333333px rgba(0, 0, 0, 0.09111), 0px 10px 10px -1.25px rgba(0, 0, 0, 0.1875)\"},transformTemplate:transformTemplate1,...addPropertyOverrides({OFJWxDfqB:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:239.36666666666667,intrinsicWidth:1138.0666666666666,loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||1075)*.50046511627907-348.3165)+65.00000000000011+344.40000000000015),pixelHeight:167,pixelWidth:794,sizes:\"291px\",...(_getLocalizedValue2=getLocalizedValue(\"v1\",activeLocale))!==null&&_getLocalizedValue2!==void 0?_getLocalizedValue2:{src:\"https://framerusercontent.com/images/gxslleZLZ3rBAnsmULhu2VmY1Sk.webp\",srcSet:\"https://framerusercontent.com/images/gxslleZLZ3rBAnsmULhu2VmY1Sk.webp?scale-down-to=512 512w,https://framerusercontent.com/images/gxslleZLZ3rBAnsmULhu2VmY1Sk.webp 794w\"}}}},baseVariant,gestureVariant)})}),/*#__PURE__*/_jsx(Transition,{...addPropertyOverrides({OFJWxDfqB:{value:transition3}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:233.63333333333333,intrinsicWidth:1110.8333333333333,loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||1075)*.50046511627907-348.3165)+65.00000000000011+206.0000000000001),pixelHeight:163,pixelWidth:775,sizes:\"211px\",...(_getLocalizedValue3=getLocalizedValue(\"v2\",activeLocale))!==null&&_getLocalizedValue3!==void 0?_getLocalizedValue3:{src:\"https://framerusercontent.com/images/h0KtaedB94p3pitr2thiFtJIk.webp\",srcSet:\"https://framerusercontent.com/images/h0KtaedB94p3pitr2thiFtJIk.webp?scale-down-to=512 512w,https://framerusercontent.com/images/h0KtaedB94p3pitr2thiFtJIk.webp 775w\"}},className:\"framer-k2v74y\",\"data-framer-name\":\"$1_D\\xc3_but\",layoutDependency:layoutDependency,layoutId:\"CCTz2st91\",style:{borderBottomLeftRadius:14,borderBottomRightRadius:14,borderTopLeftRadius:14,borderTopRightRadius:14,boxShadow:\"0px 0.6021873017743928px 0.6021873017743928px -0.41666666666666663px rgba(0, 0, 0, 0.07003), 0px 2.288533303243457px 2.288533303243457px -0.8333333333333333px rgba(0, 0, 0, 0.09111), 0px 10px 10px -1.25px rgba(0, 0, 0, 0.1875)\"},transformTemplate:transformTemplate1,...addPropertyOverrides({OFJWxDfqB:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:233.63333333333333,intrinsicWidth:1110.8333333333333,loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||1075)*.50046511627907-348.3165)+65.00000000000011+198.6600000000001),pixelHeight:163,pixelWidth:775,sizes:\"279px\",...(_getLocalizedValue4=getLocalizedValue(\"v2\",activeLocale))!==null&&_getLocalizedValue4!==void 0?_getLocalizedValue4:{src:\"https://framerusercontent.com/images/h0KtaedB94p3pitr2thiFtJIk.webp\",srcSet:\"https://framerusercontent.com/images/h0KtaedB94p3pitr2thiFtJIk.webp?scale-down-to=512 512w,https://framerusercontent.com/images/h0KtaedB94p3pitr2thiFtJIk.webp 775w\"}}}},baseVariant,gestureVariant)})})]})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-715g9f\",\"data-framer-name\":\"2\",layoutDependency:layoutDependency,layoutId:\"NQQhnpFCc\",style:{backgroundColor:\"rgb(243, 236, 226)\",borderBottomLeftRadius:30,borderBottomRightRadius:30,borderTopLeftRadius:30,borderTopRightRadius:30,opacity:0},variants:{xu870Ic3h:{opacity:1}},children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1912.85,intrinsicWidth:1183.6666666666665,loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||1075)*.50046511627907-348.3165)+65.00000000000011),pixelHeight:1713,pixelWidth:1060,sizes:\"349px\",...(_getLocalizedValue5=getLocalizedValue(\"v3\",activeLocale))!==null&&_getLocalizedValue5!==void 0?_getLocalizedValue5:{src:\"https://framerusercontent.com/images/EldB1gUJby1ZpZHiO6smtpJ8uCY.webp\",srcSet:\"https://framerusercontent.com/images/EldB1gUJby1ZpZHiO6smtpJ8uCY.webp?scale-down-to=1024 633w,https://framerusercontent.com/images/EldB1gUJby1ZpZHiO6smtpJ8uCY.webp 1060w\"}},className:\"framer-1xvq509\",\"data-framer-name\":\"Slide_2\",layoutDependency:layoutDependency,layoutId:\"ENuWoqLRX\"}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-8xgw1c-container\",layoutDependency:layoutDependency,layoutId:\"HKF_psTkp-container\",children:/*#__PURE__*/_jsx(Embed,{height:\"100%\",html:\"\",id:\"HKF_psTkp\",layoutId:\"HKF_psTkp\",style:{height:\"100%\",width:\"100%\"},type:\"url\",url:\"https://rive.app/s/TU1ymevWkkG4GaVKlfRNUQ/embed\",width:\"100%\"})})})]}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-l2qr3p\",\"data-framer-name\":\"3\",layoutDependency:layoutDependency,layoutId:\"uJn_Ig944\",style:{backgroundColor:\"rgb(243, 236, 226)\",borderBottomLeftRadius:30,borderBottomRightRadius:30,borderTopLeftRadius:30,borderTopRightRadius:30,opacity:0},variants:{JQNh5CFGh:{opacity:1}},children:/*#__PURE__*/_jsxs(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1912.85,intrinsicWidth:1183.6666666666665,loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||1075)*.50046511627907-348.3165)+65.00000000000011),pixelHeight:1713,pixelWidth:1060,sizes:\"349px\",...(_getLocalizedValue6=getLocalizedValue(\"v4\",activeLocale))!==null&&_getLocalizedValue6!==void 0?_getLocalizedValue6:{src:\"https://framerusercontent.com/images/in4Sr7wEq48bZEDTN71JVXFmyE.webp\",srcSet:\"https://framerusercontent.com/images/in4Sr7wEq48bZEDTN71JVXFmyE.webp?scale-down-to=1024 633w,https://framerusercontent.com/images/in4Sr7wEq48bZEDTN71JVXFmyE.webp 1060w\"}},className:\"framer-1rsy3wm\",\"data-framer-name\":\"Slide_3\",layoutDependency:layoutDependency,layoutId:\"spp4EX4G8\",...addPropertyOverrides({xu870Ic3h:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1912.85,intrinsicWidth:1183.6666666666665,loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||1075)*.50046511627907-348.5)+65.18333326155965),pixelHeight:1713,pixelWidth:1060,sizes:\"349px\",...(_getLocalizedValue7=getLocalizedValue(\"v4\",activeLocale))!==null&&_getLocalizedValue7!==void 0?_getLocalizedValue7:{src:\"https://framerusercontent.com/images/in4Sr7wEq48bZEDTN71JVXFmyE.webp\",srcSet:\"https://framerusercontent.com/images/in4Sr7wEq48bZEDTN71JVXFmyE.webp?scale-down-to=1024 633w,https://framerusercontent.com/images/in4Sr7wEq48bZEDTN71JVXFmyE.webp 1060w\"}}}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(Transition,{...addPropertyOverrides({JQNh5CFGh:{value:transition4}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-mg2dxu\",layoutDependency:layoutDependency,layoutId:\"inBFegWng\",transformTemplate:transformTemplate1,children:[/*#__PURE__*/_jsx(Transition,{...addPropertyOverrides({JQNh5CFGh:{value:transition4}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",intrinsicHeight:527,intrinsicWidth:482,loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||1075)*.50046511627907-348.3165)+65.00000000000011+357.5000000000001+0),pixelHeight:527,pixelWidth:482,positionX:\"center\",positionY:\"center\",sizes:\"98px\",...(_getLocalizedValue8=getLocalizedValue(\"v5\",activeLocale))!==null&&_getLocalizedValue8!==void 0?_getLocalizedValue8:{src:\"https://framerusercontent.com/images/BaG3Y6k2Zcm9cXLg8WxQruomt5E.png\",srcSet:\"https://framerusercontent.com/images/BaG3Y6k2Zcm9cXLg8WxQruomt5E.png 482w\"}},className:\"framer-1n5e1hk\",\"data-framer-name\":\"$3_Genet_D\",layoutDependency:layoutDependency,layoutId:\"RGz4xYBah\",style:{borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8,boxShadow:\"0px 0.6021873017743928px 0.6021873017743928px -0.41666666666666663px rgba(0, 0, 0, 0.07003), 0px 2.288533303243457px 2.288533303243457px -0.8333333333333333px rgba(0, 0, 0, 0.09111), 0px 10px 10px -1.25px rgba(0, 0, 0, 0.1875)\",transformPerspective:1200},variants:{JQNh5CFGh:{boxShadow:\"0px 0.6021873017743928px 0.6021873017743928px -1.25px rgba(0, 0, 0, 0.17997), 0px 2.288533303243457px 2.288533303243457px -2.5px rgba(0, 0, 0, 0.15889), 0px 10px 10px -3.75px rgba(0, 0, 0, 0.0625)\"}},...addPropertyOverrides({JQNh5CFGh:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:527,intrinsicWidth:482,loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||1075)*.50046511627907-348.3165)+65.00000000000011+297.5000000000001+0),pixelHeight:527,pixelWidth:482,positionX:\"center\",positionY:\"center\",sizes:\"191px\",...(_getLocalizedValue9=getLocalizedValue(\"v5\",activeLocale))!==null&&_getLocalizedValue9!==void 0?_getLocalizedValue9:{src:\"https://framerusercontent.com/images/BaG3Y6k2Zcm9cXLg8WxQruomt5E.png\",srcSet:\"https://framerusercontent.com/images/BaG3Y6k2Zcm9cXLg8WxQruomt5E.png 482w\"}}},xu870Ic3h:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:527,intrinsicWidth:482,loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||1075)*.50046511627907-348.5)+65.18333326155965+357.5000000000001+0),pixelHeight:527,pixelWidth:482,positionX:\"center\",positionY:\"center\",sizes:\"98px\",...(_getLocalizedValue10=getLocalizedValue(\"v5\",activeLocale))!==null&&_getLocalizedValue10!==void 0?_getLocalizedValue10:{src:\"https://framerusercontent.com/images/BaG3Y6k2Zcm9cXLg8WxQruomt5E.png\",srcSet:\"https://framerusercontent.com/images/BaG3Y6k2Zcm9cXLg8WxQruomt5E.png 482w\"}}}},baseVariant,gestureVariant)})}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:96,intrinsicWidth:96,loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||1075)*.50046511627907-348.3165)+65.00000000000011+357.5000000000001+97.00000000000003),pixelHeight:96,pixelWidth:96,src:\"https://framerusercontent.com/images/ViuXklcjL8vPfoGrfsynpBqDk.png\"},className:\"framer-6jvwh1\",\"data-framer-name\":\"Group_289042\",layoutDependency:layoutDependency,layoutId:\"PXNb4eR8n\",style:{borderBottomLeftRadius:14,borderBottomRightRadius:14,borderTopLeftRadius:14,borderTopRightRadius:14,boxShadow:\"0px 0.6021873017743928px 0.6021873017743928px -0.41666666666666663px rgba(0, 0, 0, 0.07003), 0px 2.288533303243457px 2.288533303243457px -0.8333333333333333px rgba(0, 0, 0, 0.09111), 0px 10px 10px -1.25px rgba(0, 0, 0, 0.1875)\"},...addPropertyOverrides({JQNh5CFGh:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:96,intrinsicWidth:96,loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||1075)*.50046511627907-348.3165)+65.00000000000011+297.5000000000001+188.6535433070867),pixelHeight:96,pixelWidth:96,src:\"https://framerusercontent.com/images/ViuXklcjL8vPfoGrfsynpBqDk.png\"}},xu870Ic3h:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:96,intrinsicWidth:96,loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||1075)*.50046511627907-348.5)+65.18333326155965+357.5000000000001+97.00000000000003),pixelHeight:96,pixelWidth:96,src:\"https://framerusercontent.com/images/ViuXklcjL8vPfoGrfsynpBqDk.png\"}}},baseVariant,gestureVariant)})]})}),/*#__PURE__*/_jsx(Transition,{...addPropertyOverrides({JQNh5CFGh:{value:transition5}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:101,intrinsicWidth:379,loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||1075)*.50046511627907-348.3165)+65.00000000000011+220.50000000000014),pixelHeight:101,pixelWidth:379,sizes:\"117px\",...(_getLocalizedValue11=getLocalizedValue(\"v6\",activeLocale))!==null&&_getLocalizedValue11!==void 0?_getLocalizedValue11:{src:\"https://framerusercontent.com/images/v6OZmuG6R7jvKQu83hgMCuxrkw.webp\"}},className:\"framer-up8p04\",\"data-framer-name\":\"$3_Votre_Cotisation\",layoutDependency:layoutDependency,layoutId:\"mUhY4giMU\",style:{borderBottomLeftRadius:5,borderBottomRightRadius:5,borderTopLeftRadius:5,borderTopRightRadius:5,boxShadow:\"0px 0.6021873017743928px 0.6021873017743928px -0.41666666666666663px rgba(0, 0, 0, 0.07003), 0px 2.288533303243457px 2.288533303243457px -0.8333333333333333px rgba(0, 0, 0, 0.09111), 0px 10px 10px -1.25px rgba(0, 0, 0, 0.1875)\"},transformTemplate:transformTemplate1,variants:{JQNh5CFGh:{borderBottomLeftRadius:9,borderBottomRightRadius:9,borderTopLeftRadius:9,borderTopRightRadius:9,boxShadow:\"0px 0.6021873017743928px 0.6021873017743928px -0.5833333333333333px rgba(0, 0, 0, 0.09202), 0px 2.288533303243457px 2.288533303243457px -1.1666666666666665px rgba(0, 0, 0, 0.10466), 0px 10px 10px -1.75px rgba(0, 0, 0, 0.1625)\"}},...addPropertyOverrides({JQNh5CFGh:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:101,intrinsicWidth:379,loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||1075)*.50046511627907-348.3165)+65.00000000000011+208.50000000000014),pixelHeight:101,pixelWidth:379,sizes:\"207px\",...(_getLocalizedValue12=getLocalizedValue(\"v6\",activeLocale))!==null&&_getLocalizedValue12!==void 0?_getLocalizedValue12:{src:\"https://framerusercontent.com/images/v6OZmuG6R7jvKQu83hgMCuxrkw.webp\"}}},xu870Ic3h:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:101,intrinsicWidth:379,loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||1075)*.50046511627907-348.5)+65.18333326155965+220.50000000000014),pixelHeight:101,pixelWidth:379,sizes:\"117px\",...(_getLocalizedValue13=getLocalizedValue(\"v6\",activeLocale))!==null&&_getLocalizedValue13!==void 0?_getLocalizedValue13:{src:\"https://framerusercontent.com/images/v6OZmuG6R7jvKQu83hgMCuxrkw.webp\"}}}},baseVariant,gestureVariant)})})]})}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-12uln2b\",\"data-framer-name\":\"4\",layoutDependency:layoutDependency,layoutId:\"E1ZvARXfh\",style:{backgroundColor:\"rgb(243, 236, 226)\",borderBottomLeftRadius:30,borderBottomRightRadius:30,borderTopLeftRadius:30,borderTopRightRadius:30,opacity:0},variants:{dY3IDzE1X:{opacity:1}},children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1912.85,intrinsicWidth:1183.6666666666665,loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||1075)*.50046511627907-348.3165)+65.00000000000011),pixelHeight:1713,pixelWidth:1060,sizes:\"349px\",...(_getLocalizedValue14=getLocalizedValue(\"v7\",activeLocale))!==null&&_getLocalizedValue14!==void 0?_getLocalizedValue14:{src:\"https://framerusercontent.com/images/gqnPFkBomqfQg36UKQPilZZVIC4.webp\",srcSet:\"https://framerusercontent.com/images/gqnPFkBomqfQg36UKQPilZZVIC4.webp?scale-down-to=1024 633w,https://framerusercontent.com/images/gqnPFkBomqfQg36UKQPilZZVIC4.webp 1060w\"}},className:\"framer-7b2i02\",\"data-framer-name\":\"Slide_4\",layoutDependency:layoutDependency,layoutId:\"HDashxp1Z\"}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1x0plu3\",\"data-framer-name\":\"Group 289163\",layoutDependency:layoutDependency,layoutId:\"JQzYPiDxc\",children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1qxgct8\",\"data-framer-name\":\"Rectangle 270\",layoutDependency:layoutDependency,layoutId:\"BuZFydBMt\",style:{borderBottomLeftRadius:30,borderBottomRightRadius:30,borderTopLeftRadius:30,borderTopRightRadius:30},children:[/*#__PURE__*/_jsx(Transition,{value:transition6,...addPropertyOverrides({dY3IDzE1X:{value:transition7}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||1075)*.50046511627907-348.3165)+48.32518794835022+-2.9999999999998863+263.50000000000017),src:\"https://framerusercontent.com/images/SHUbAMWqMtZvmjW3pSzjnIwYYo.png\"},className:\"framer-lp3bdk\",\"data-framer-name\":\"Rectangle\",layoutDependency:layoutDependency,layoutId:\"VHE4Rg6qj\",style:{filter:\"blur(1.1873799562454224px)\",rotate:-20,WebkitFilter:\"blur(1.1873799562454224px)\"},...addPropertyOverrides({dY3IDzE1X:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||1075)*.50046511627907-348.3165)+48.32518794835022+-2.9999999999998863+227.5000000000001),src:\"https://framerusercontent.com/images/SHUbAMWqMtZvmjW3pSzjnIwYYo.png\"}}},baseVariant,gestureVariant)})}),/*#__PURE__*/_jsx(Transition,{value:transition6,...addPropertyOverrides({dY3IDzE1X:{value:transition7}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||1075)*.50046511627907-348.3165)+48.32518794835022+-2.9999999999998863+490.5500000000001),src:\"https://framerusercontent.com/images/SHUbAMWqMtZvmjW3pSzjnIwYYo.png\"},className:\"framer-pas3fp\",\"data-framer-name\":\"Rectangle\",layoutDependency:layoutDependency,layoutId:\"DgztjSIU0\",style:{filter:\"blur(0.5936899781227112px)\",rotate:82,WebkitFilter:\"blur(0.5936899781227112px)\"},...addPropertyOverrides({dY3IDzE1X:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||1075)*.50046511627907-348.3165)+48.32518794835022+-2.9999999999998863+403.5000000000001),src:\"https://framerusercontent.com/images/SHUbAMWqMtZvmjW3pSzjnIwYYo.png\"}}},baseVariant,gestureVariant)})}),/*#__PURE__*/_jsx(Transition,{value:transition6,...addPropertyOverrides({dY3IDzE1X:{value:transition7}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||1075)*.50046511627907-348.3165)+48.32518794835022+-2.9999999999998863+498.59165000000013),src:\"https://framerusercontent.com/images/SHUbAMWqMtZvmjW3pSzjnIwYYo.png\"},className:\"framer-1r87by1\",\"data-framer-name\":\"Rectangle\",layoutDependency:layoutDependency,layoutId:\"a_Y7UFJNd\",style:{filter:\"blur(1.5950000286102295px)\",rotate:82,WebkitFilter:\"blur(1.5950000286102295px)\"},...addPropertyOverrides({dY3IDzE1X:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||1075)*.50046511627907-348.3165)+48.32518794835022+-2.9999999999998863+364.50000000000017),src:\"https://framerusercontent.com/images/SHUbAMWqMtZvmjW3pSzjnIwYYo.png\"}}},baseVariant,gestureVariant)})}),/*#__PURE__*/_jsx(Transition,{value:transition6,...addPropertyOverrides({dY3IDzE1X:{value:transition7}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||1075)*.50046511627907-348.3165)+48.32518794835022+-2.9999999999998863+443.2105215131109),src:\"https://framerusercontent.com/images/SHUbAMWqMtZvmjW3pSzjnIwYYo.png\"},className:\"framer-1yzo2ao\",\"data-framer-name\":\"Rectangle\",layoutDependency:layoutDependency,layoutId:\"RAKJNl6SF\",style:{filter:\"blur(0.5936899781227112px)\",rotate:82,WebkitFilter:\"blur(0.5936899781227112px)\"},...addPropertyOverrides({dY3IDzE1X:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||1075)*.50046511627907-348.3165)+48.32518794835022+-2.9999999999998863+259.1750000000001),src:\"https://framerusercontent.com/images/SHUbAMWqMtZvmjW3pSzjnIwYYo.png\"}}},baseVariant,gestureVariant)})}),/*#__PURE__*/_jsx(Transition,{value:transition6,...addPropertyOverrides({dY3IDzE1X:{value:transition7}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||1075)*.50046511627907-348.3165)+48.32518794835022+-2.9999999999998863+363.26665000000014),src:\"https://framerusercontent.com/images/SHUbAMWqMtZvmjW3pSzjnIwYYo.png\"},className:\"framer-36klk1\",\"data-framer-name\":\"Rectangle\",layoutDependency:layoutDependency,layoutId:\"tZQe2Vcqa\",style:{filter:\"blur(0.5936899781227112px)\",rotate:82,WebkitFilter:\"blur(0.5936899781227112px)\"},...addPropertyOverrides({dY3IDzE1X:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||1075)*.50046511627907-348.3165)+48.32518794835022+-2.9999999999998863+148.2666500000001),src:\"https://framerusercontent.com/images/SHUbAMWqMtZvmjW3pSzjnIwYYo.png\"}}},baseVariant,gestureVariant)})}),/*#__PURE__*/_jsx(Transition,{value:transition6,...addPropertyOverrides({dY3IDzE1X:{value:transition7}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||1075)*.50046511627907-348.3165)+48.32518794835022+-2.9999999999998863+290.4083500000001),src:\"https://framerusercontent.com/images/SHUbAMWqMtZvmjW3pSzjnIwYYo.png\"},className:\"framer-v9i3h0\",\"data-framer-name\":\"Rectangle\",layoutDependency:layoutDependency,layoutId:\"iY8qd4p27\",style:{filter:\"blur(1.684999942779541px)\",rotate:-20,WebkitFilter:\"blur(1.684999942779541px)\"},...addPropertyOverrides({dY3IDzE1X:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||1075)*.50046511627907-348.3165)+48.32518794835022+-2.9999999999998863+127.40835000000014),src:\"https://framerusercontent.com/images/SHUbAMWqMtZvmjW3pSzjnIwYYo.png\"}}},baseVariant,gestureVariant)})}),/*#__PURE__*/_jsx(Transition,{value:transition6,...addPropertyOverrides({dY3IDzE1X:{value:transition7}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||1075)*.50046511627907-348.3165)+48.32518794835022+-2.9999999999998863+193.50000000000014),src:\"https://framerusercontent.com/images/SHUbAMWqMtZvmjW3pSzjnIwYYo.png\"},className:\"framer-m1grvl\",\"data-framer-name\":\"Rectangle\",layoutDependency:layoutDependency,layoutId:\"TZTW1tqyB\",style:{filter:\"blur(1.184999942779541px)\",rotate:-20,WebkitFilter:\"blur(1.184999942779541px)\"},...addPropertyOverrides({dY3IDzE1X:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||1075)*.50046511627907-348.3165)+48.32518794835022+-2.9999999999998863+67.50000000000013),src:\"https://framerusercontent.com/images/SHUbAMWqMtZvmjW3pSzjnIwYYo.png\"}}},baseVariant,gestureVariant)})}),/*#__PURE__*/_jsx(Transition,{value:transition6,...addPropertyOverrides({dY3IDzE1X:{value:transition7}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||1075)*.50046511627907-348.3165)+48.32518794835022+-2.9999999999998863+437.00000000000017),src:\"https://framerusercontent.com/images/SHUbAMWqMtZvmjW3pSzjnIwYYo.png\"},className:\"framer-1jm0wt6\",\"data-framer-name\":\"Rectangle\",layoutDependency:layoutDependency,layoutId:\"nzcfKhLOl\",style:{filter:\"blur(3.0950000286102295px)\",rotate:82,WebkitFilter:\"blur(3.0950000286102295px)\"},...addPropertyOverrides({dY3IDzE1X:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||1075)*.50046511627907-348.3165)+48.32518794835022+-2.9999999999998863+374.00000000000017),src:\"https://framerusercontent.com/images/SHUbAMWqMtZvmjW3pSzjnIwYYo.png\"}}},baseVariant,gestureVariant)})})]})})]})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-3b4R0.framer-1fdrc80, .framer-3b4R0 .framer-1fdrc80 { display: block; }\",\".framer-3b4R0.framer-7k44k5 { align-content: flex-start; align-items: flex-start; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 113px; height: 1075px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1074px; }\",\".framer-3b4R0 .framer-1kmzsl7, .framer-3b4R0 .framer-715g9f, .framer-3b4R0 .framer-l2qr3p { flex: none; height: 697px; left: calc(50.00000000000002% - 100% / 2); overflow: hidden; position: absolute; top: calc(50.046511627906995% - 696.633px / 2); width: 100%; will-change: var(--framer-will-change-override, transform); z-index: 1; }\",\".framer-3b4R0 .framer-15rbnhc { bottom: 0px; flex: none; left: 0px; overflow: hidden; position: absolute; right: 0px; top: 0px; }\",\".framer-3b4R0 .framer-1wsnxej { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 427px); position: absolute; right: 19px; top: -79px; width: 427px; }\",\".framer-3b4R0 .framer-9oyjwo { aspect-ratio: 1 / 1; bottom: -138px; flex: none; height: var(--framer-aspect-ratio-supported, 427px); left: 21px; position: absolute; width: 427px; }\",\".framer-3b4R0 .framer-12znn5m, .framer-3b4R0 .framer-1xvq509, .framer-3b4R0 .framer-1rsy3wm { flex: none; height: 566px; left: calc(50.00000000000002% - 349px / 2); overflow: visible; position: absolute; top: calc(49.95456718243324% - 566px / 2); width: 349px; }\",\".framer-3b4R0 .framer-1nyftzz { aspect-ratio: 4.754491017964072 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 44px); left: 50%; overflow: visible; position: absolute; top: 66%; width: 208px; }\",\".framer-3b4R0 .framer-k2v74y { aspect-ratio: 4.754601226993865 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 44px); left: 49%; overflow: visible; position: absolute; top: 40%; width: 211px; }\",\".framer-3b4R0 .framer-8xgw1c-container { bottom: -52px; flex: none; left: -64px; position: absolute; right: -64px; top: -52px; }\",\".framer-3b4R0 .framer-mg2dxu { aspect-ratio: 0.7716535433070866 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 127px); left: 36%; overflow: visible; position: absolute; top: 74%; width: 98px; }\",\".framer-3b4R0 .framer-1n5e1hk { flex: none; height: 85%; left: calc(50.00000000000002% - 100% / 2); overflow: visible; position: absolute; top: 0px; width: 100%; }\",\".framer-3b4R0 .framer-6jvwh1 { flex: none; height: 17%; left: calc(79.5918367346939% - 22.448979591836736% / 2); overflow: visible; position: absolute; top: calc(85.03937007874018% - 17.322834645669293% / 2); width: 22%; }\",\".framer-3b4R0 .framer-up8p04 { aspect-ratio: 3.7524752475247523 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 31px); left: 87%; overflow: visible; position: absolute; top: 42%; width: 117px; }\",\".framer-3b4R0 .framer-12uln2b { flex: none; height: 697px; left: calc(50.00000000000002% - 100% / 2); overflow: visible; position: absolute; top: calc(50.046511627906995% - 696.633px / 2); width: 100%; z-index: 1; }\",\".framer-3b4R0 .framer-7b2i02 { flex: none; height: 566px; left: calc(50.00000000000002% - 349px / 2); overflow: visible; position: absolute; top: calc(49.95456718243324% - 566px / 2); width: 349px; z-index: 1; }\",\".framer-3b4R0 .framer-1x0plu3 { flex: none; height: 567px; left: calc(50.00000000000002% - 350px / 2); overflow: visible; position: absolute; top: calc(47.63271162123388% - 567px / 2); width: 350px; }\",\".framer-3b4R0 .framer-1qxgct8 { flex: none; height: 101%; left: calc(50.28571428571431% - 349px / 2); position: absolute; top: calc(49.735449735449755% - 100.52910052910053% / 2); width: 349px; }\",\".framer-3b4R0 .framer-lp3bdk { flex: none; height: 57px; left: calc(24.06876790830948% - 57px / 2); position: absolute; top: calc(51.228070175438624% - 57px / 2); width: 57px; }\",\".framer-3b4R0 .framer-pas3fp { flex: none; height: 29px; left: calc(46.418338108882544% - 28.9px / 2); position: absolute; top: calc(88.59649122807019% - 28.9px / 2); width: 29px; }\",\".framer-3b4R0 .framer-1r87by1 { flex: none; height: 23px; left: calc(44.69914040114615% - 22.8167px / 2); position: absolute; top: calc(89.47368421052634% - 22.8167px / 2); width: 23px; }\",\".framer-3b4R0 .framer-1yzo2ao { flex: none; height: 50px; left: calc(53.43917498799781% - 49.64569091796875px / 2); position: absolute; top: calc(82.1111170126483% - 49.64569091796875px / 2); width: 50px; }\",\".framer-3b4R0 .framer-36klk1 { flex: none; height: 47px; left: calc(59.598853868194865% - 47.4667px / 2); position: absolute; top: calc(67.89473684210529% - 47.4667px / 2); width: 47px; }\",\".framer-3b4R0 .framer-v9i3h0 { flex: none; height: 23px; left: calc(63.03724928366764% - 23.1833px / 2); position: absolute; top: calc(52.9824561403509% - 23.1833px / 2); width: 23px; }\",\".framer-3b4R0 .framer-m1grvl { flex: none; height: 87px; left: calc(33.23782234957022% - 87px / 2); position: absolute; top: calc(41.578947368421076% - 87px / 2); width: 87px; }\",\".framer-3b4R0 .framer-1jm0wt6 { flex: none; height: 38px; left: calc(67.33524355300861% - 37px / 2); position: absolute; top: calc(80.00000000000003% - 38px / 2); width: 37px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-3b4R0.framer-7k44k5 { gap: 0px; } .framer-3b4R0.framer-7k44k5 > * { margin: 0px; margin-bottom: calc(113px / 2); margin-top: calc(113px / 2); } .framer-3b4R0.framer-7k44k5 > :first-child { margin-top: 0px; } .framer-3b4R0.framer-7k44k5 > :last-child { margin-bottom: 0px; } }\",\".framer-3b4R0.framer-v-1velsjk .framer-1xvq509 { z-index: 1; }\",\".framer-3b4R0.framer-v-1velsjk .framer-l2qr3p { height: 697px; top: calc(50.046511627906995% - 697px / 2); }\",\".framer-3b4R0.framer-v-lwdrp7 .framer-mg2dxu { height: var(--framer-aspect-ratio-supported, 247px); width: 191px; }\",\".framer-3b4R0.framer-v-lwdrp7 .framer-up8p04 { height: var(--framer-aspect-ratio-supported, 55px); width: 207px; }\",\".framer-3b4R0.framer-v-wmxluy .framer-lp3bdk { left: calc(-4.871060171919749% - 57px / 2); top: calc(44.91228070175441% - 57px / 2); }\",\".framer-3b4R0.framer-v-wmxluy .framer-pas3fp { height: 29px; left: calc(4.297994269340996% - 29px / 2); top: calc(73.33333333333336% - 29px / 2); width: 29px; }\",\".framer-3b4R0.framer-v-wmxluy .framer-1r87by1 { height: 23px; left: calc(-13.467048710601699% - 23px / 2); top: calc(65.96491228070178% - 23px / 2); width: 23px; }\",\".framer-3b4R0.framer-v-wmxluy .framer-1yzo2ao { height: 50px; left: calc(99.71346704871063% - 49.65px / 2); top: calc(49.824561403508795% - 49.65px / 2); width: 50px; }\",\".framer-3b4R0.framer-v-wmxluy .framer-36klk1 { left: calc(125.50143266475646% - 47.4667px / 2); top: calc(30.17543859649125% - 47.4667px / 2); }\",\".framer-3b4R0.framer-v-wmxluy .framer-v9i3h0 { left: calc(105.44412607449858% - 23.1833px / 2); top: calc(24.385964912280723% - 23.1833px / 2); }\",\".framer-3b4R0.framer-v-wmxluy .framer-m1grvl { left: calc(-11.46131805157591% - 87px / 2); top: calc(19.473684210526336% - 87px / 2); }\",\".framer-3b4R0.framer-v-wmxluy .framer-1jm0wt6 { left: calc(103.4383954154728% - 37px / 2); top: calc(68.94736842105266% - 38px / 2); }\",\".framer-3b4R0.framer-v-jaunwg .framer-1nyftzz { height: var(--framer-aspect-ratio-supported, 61px); left: 60%; top: 66%; width: 291px; }\",\".framer-3b4R0.framer-v-jaunwg .framer-k2v74y { height: var(--framer-aspect-ratio-supported, 59px); left: 40%; width: 279px; }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 1075\n * @framerIntrinsicWidth 1074\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]},\"xu870Ic3h\":{\"layout\":[\"fixed\",\"fixed\"]},\"JQNh5CFGh\":{\"layout\":[\"fixed\",\"fixed\"]},\"dY3IDzE1X\":{\"layout\":[\"fixed\",\"fixed\"]},\"OFJWxDfqB\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerR0OEqV3EP=withCSS(Component,css,\"framer-3b4R0\");export default FramerR0OEqV3EP;FramerR0OEqV3EP.displayName=\"Phone Animation\";FramerR0OEqV3EP.defaultProps={height:1075,width:1074};addPropertyControls(FramerR0OEqV3EP,{variant:{options:[\"ix0X6gkvr\",\"xu870Ic3h\",\"JQNh5CFGh\",\"dY3IDzE1X\",\"OFJWxDfqB\"],optionTitles:[\"S1\",\"S2\",\"S3\",\"S4\",\"S1 - Anim\"],title:\"Variant\",type:ControlType.Enum}});addFonts(FramerR0OEqV3EP,[{explicitInter:true,fonts:[]},...EmbedFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerR0OEqV3EP\",\"slots\":[],\"annotations\":{\"framerComponentViewportWidth\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerIntrinsicWidth\":\"1074\",\"framerContractVersion\":\"1\",\"framerIntrinsicHeight\":\"1075\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"xu870Ic3h\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"JQNh5CFGh\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"dY3IDzE1X\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"OFJWxDfqB\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerImmutableVariables\":\"true\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (4175fb7)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";const cycleOrder=[\"vOgSSUMI0\",\"a8TaXh7JU\",\"zqJUI5FJE\",\"XWWgoGxpm\"];const serializationHash=\"framer-bVKgD\";const variantClassNames={a8TaXh7JU:\"framer-v-l7qu7l\",vOgSSUMI0:\"framer-v-6xxnx9\",XWWgoGxpm:\"framer-v-rjdkb7\",zqJUI5FJE:\"framer-v-e6xdcm\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion(React.Fragment);const humanReadableVariantMap={S1:\"vOgSSUMI0\",S2:\"a8TaXh7JU\",S3:\"zqJUI5FJE\",S4:\"XWWgoGxpm\"};const getProps=({height,id,width,...props})=>{var _humanReadableVariantMap_props_variant,_ref;return{...props,variant:(_ref=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref!==void 0?_ref:\"vOgSSUMI0\"};};const createLayoutDependency=(props,variants)=>variants.join(\"-\")+props.layoutDependency;const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,...restProps}=getProps(props);const{baseVariant,classNames,gestureVariant,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"vOgSSUMI0\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const ref1=React.useRef(null);const defaultLayoutId=React.useId();const sharedStyleClassNames=[];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(motion.div,{...restProps,className:cx(serializationHash,...sharedStyleClassNames,\"framer-6xxnx9\",className,classNames),\"data-framer-name\":\"S1\",layoutDependency:layoutDependency,layoutId:\"vOgSSUMI0\",onHoverEnd:()=>setGestureState({isHovered:false}),onHoverStart:()=>setGestureState({isHovered:true}),onTap:()=>setGestureState({isPressed:false}),onTapCancel:()=>setGestureState({isPressed:false}),onTapStart:()=>setGestureState({isPressed:true}),ref:ref!==null&&ref!==void 0?ref:ref1,style:{...style},...addPropertyOverrides({a8TaXh7JU:{\"data-framer-name\":\"S2\"},XWWgoGxpm:{\"data-framer-name\":\"S4\"},zqJUI5FJE:{\"data-framer-name\":\"S3\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-hdy27h\",\"data-framer-name\":\"Rectangle 6329\",layoutDependency:layoutDependency,layoutId:\"ZGB4wkNF0\",style:{backgroundColor:\"var(--token-8ecf3070-09f7-44e8-a71e-d4b812577923, rgb(54, 139, 139))\",borderBottomLeftRadius:1,borderBottomRightRadius:1,borderTopLeftRadius:1,borderTopRightRadius:1},variants:{a8TaXh7JU:{backgroundColor:\"rgb(235, 243, 243)\"},XWWgoGxpm:{backgroundColor:\"rgb(235, 243, 243)\"},zqJUI5FJE:{backgroundColor:\"rgb(235, 243, 243)\"}}}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1v9u38x\",\"data-framer-name\":\"Rectangle 6330\",layoutDependency:layoutDependency,layoutId:\"tHgqEpdyw\",style:{backgroundColor:\"rgb(235, 243, 243)\",borderBottomLeftRadius:1,borderBottomRightRadius:1,borderTopLeftRadius:1,borderTopRightRadius:1},variants:{a8TaXh7JU:{backgroundColor:\"var(--token-8ecf3070-09f7-44e8-a71e-d4b812577923, rgb(54, 139, 139))\"}}}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-h286li\",\"data-framer-name\":\"Rectangle 6331\",layoutDependency:layoutDependency,layoutId:\"Zgxzs9ffz\",style:{backgroundColor:\"rgb(235, 243, 243)\",borderBottomLeftRadius:1,borderBottomRightRadius:1,borderTopLeftRadius:1,borderTopRightRadius:1},variants:{zqJUI5FJE:{backgroundColor:\"var(--token-8ecf3070-09f7-44e8-a71e-d4b812577923, rgb(54, 139, 139))\"}}}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-x6mdvp\",\"data-framer-name\":\"Rectangle 6332\",layoutDependency:layoutDependency,layoutId:\"K2beko5H2\",style:{backgroundColor:\"rgb(235, 243, 243)\",borderBottomLeftRadius:1,borderBottomRightRadius:1,borderTopLeftRadius:1,borderTopRightRadius:1},variants:{XWWgoGxpm:{backgroundColor:\"var(--token-8ecf3070-09f7-44e8-a71e-d4b812577923, rgb(54, 139, 139))\"}}})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-bVKgD.framer-6vci1d, .framer-bVKgD .framer-6vci1d { display: block; }\",\".framer-bVKgD.framer-6xxnx9 { align-content: flex-start; align-items: flex-start; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 2px; height: 260px; justify-content: flex-start; overflow: visible; padding: 0px 0px 0px 0px; position: relative; width: min-content; }\",\".framer-bVKgD .framer-hdy27h, .framer-bVKgD .framer-1v9u38x, .framer-bVKgD .framer-h286li, .framer-bVKgD .framer-x6mdvp { flex: 1 0 0px; height: 1px; position: relative; width: 5px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-bVKgD.framer-6xxnx9 { gap: 0px; } .framer-bVKgD.framer-6xxnx9 > * { margin: 0px; margin-bottom: calc(2px / 2); margin-top: calc(2px / 2); } .framer-bVKgD.framer-6xxnx9 > :first-child { margin-top: 0px; } .framer-bVKgD.framer-6xxnx9 > :last-child { margin-bottom: 0px; } }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 260\n * @framerIntrinsicWidth 5\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"auto\",\"fixed\"]},\"a8TaXh7JU\":{\"layout\":[\"auto\",\"fixed\"]},\"zqJUI5FJE\":{\"layout\":[\"auto\",\"fixed\"]},\"XWWgoGxpm\":{\"layout\":[\"auto\",\"fixed\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const Framerzrx8mtaFh=withCSS(Component,css,\"framer-bVKgD\");export default Framerzrx8mtaFh;Framerzrx8mtaFh.displayName=\"Scroll Progress\";Framerzrx8mtaFh.defaultProps={height:260,width:5};addPropertyControls(Framerzrx8mtaFh,{variant:{options:[\"vOgSSUMI0\",\"a8TaXh7JU\",\"zqJUI5FJE\",\"XWWgoGxpm\"],optionTitles:[\"S1\",\"S2\",\"S3\",\"S4\"],title:\"Variant\",type:ControlType.Enum}});addFonts(Framerzrx8mtaFh,[{explicitInter:true,fonts:[]}],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"Framerzrx8mtaFh\",\"slots\":[],\"annotations\":{\"framerIntrinsicWidth\":\"5\",\"framerContractVersion\":\"1\",\"framerImmutableVariables\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerIntrinsicHeight\":\"260\",\"framerComponentViewportWidth\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"fixed\\\"]},\\\"a8TaXh7JU\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"fixed\\\"]},\\\"zqJUI5FJE\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"fixed\\\"]},\\\"XWWgoGxpm\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"fixed\\\"]}}}\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./zrx8mtaFh.map", "// Generated by Framer (9f55354)\nimport{LazyValue}from\"framer\";const valuesByLocaleId={ENPWvRMq3:new LazyValue(()=>import(\"./e5HDb2LUO-0.js\"))};export default function getLocalizedValue(key,locale){while(locale){const values=valuesByLocaleId[locale.id];if(values){const value=values.read()[key];if(value)return value;}locale=locale.fallback;}}function preload(locale){const promises=[];while(locale){const values=valuesByLocaleId[locale.id];if(values){const promise=values.preload();if(promise)promises.push(promise);}locale=locale.fallback;}if(promises.length>0)return Promise.all(promises);}export function usePreloadLocalizedValues(locale){const preloadPromise=preload(locale);if(preloadPromise)throw preloadPromise;}\nexport const __FramerMetadata__ = {\"exports\":{\"usePreloadLocalizedValues\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (9f55354)\nimport{jsx as _jsx,jsxs as _jsxs,Fragment as _Fragment}from\"react/jsx-runtime\";import{addFonts,ComponentViewportProvider,Container,cx,Floating,GeneratedComponentContext,getFonts,getFontsFromSharedStyle,getLoadingLazyAtYPosition,Image,Link,PropertyOverrides,ResolveLinks,RichText,SVG,useActiveVariantCallback,useCustomCursors,useHydratedBreakpointVariants,useIsOnFramerCanvas,useLocaleInfo,useOverlayState,useRouteElementId,useRouter,withCSS,withFX,withOptimizedAppearEffect,withVariantAppearEffect}from\"framer\";import{AnimatePresence,LayoutGroup,motion}from\"framer-motion\";import*as React from\"react\";import Embed from\"https://framerusercontent.com/modules/o1PI5S8YtkA5bP5g4dFz/9zLIz4fn80IR9zpOx18Q/Embed.js\";import SmoothScroll from\"https://framerusercontent.com/modules/Yppqt3Cs3Y8TZqvASnXl/qXyG1UgqGGx5DS4G9abM/Smooth_Scroll.js\";import Footer from\"#framer/local/canvasComponent/AD_4iyfsR/AD_4iyfsR.js\";import SocialProofAnimation from\"#framer/local/canvasComponent/dqVyoEukj/dqVyoEukj.js\";import AnimCurves from\"#framer/local/canvasComponent/GF58od4uD/GF58od4uD.js\";import NavbarSingle from\"#framer/local/canvasComponent/I6eJ1kHAb/I6eJ1kHAb.js\";import ButtonHeader from\"#framer/local/canvasComponent/KAW7NHkrh/KAW7NHkrh.js\";import CircleROUND from\"#framer/local/canvasComponent/N9EXhGAlu/N9EXhGAlu.js\";import Overlay from\"#framer/local/canvasComponent/np9vbxdxd/np9vbxdxd.js\";import FunctionCards from\"#framer/local/canvasComponent/ojTGWuIaR/ojTGWuIaR.js\";import StackCardsAdvantages from\"#framer/local/canvasComponent/QD0lFU70_/QD0lFU70_.js\";import PhoneAnimation from\"#framer/local/canvasComponent/R0OEqV3EP/R0OEqV3EP.js\";import Navbar from\"#framer/local/canvasComponent/RMwoXxkBu/RMwoXxkBu.js\";import ScrollProgress from\"#framer/local/canvasComponent/zrx8mtaFh/zrx8mtaFh.js\";import BaseForm from\"#framer/local/codeFile/MMJtNXp/Custom_Form.js\";import*as sharedStyle7 from\"#framer/local/css/FpLI7nOAW/FpLI7nOAW.js\";import*as sharedStyle3 from\"#framer/local/css/l67b_BAPm/l67b_BAPm.js\";import*as sharedStyle1 from\"#framer/local/css/MKn8EopCP/MKn8EopCP.js\";import*as sharedStyle from\"#framer/local/css/MpTKPkTbI/MpTKPkTbI.js\";import*as sharedStyle5 from\"#framer/local/css/ne7Zie62m/ne7Zie62m.js\";import*as sharedStyle2 from\"#framer/local/css/pFr3xYY7b/pFr3xYY7b.js\";import*as sharedStyle4 from\"#framer/local/css/ttzUtOj6f/ttzUtOj6f.js\";import*as sharedStyle6 from\"#framer/local/css/ufL2aIJYD/ufL2aIJYD.js\";import getLocalizedValue,{usePreloadLocalizedValues}from\"#framer/local/localization/e5HDb2LUO/e5HDb2LUO.js\";import metadataProvider from\"#framer/local/webPageMetadata/e5HDb2LUO/e5HDb2LUO.js\";const SmoothScrollFonts=getFonts(SmoothScroll);const NavbarSingleFonts=getFonts(NavbarSingle);const NavbarFonts=getFonts(Navbar);const NavbarWithVariantAppearEffect=withVariantAppearEffect(Navbar);const ContainerWithOptimizedAppearEffect=withOptimizedAppearEffect(Container);const MotionDivWithFX=withFX(motion.div);const MotionDivWithOptimizedAppearEffect=withOptimizedAppearEffect(motion.div);const RichTextWithOptimizedAppearEffect=withOptimizedAppearEffect(RichText);const ButtonHeaderFonts=getFonts(ButtonHeader);const CircleROUNDFonts=getFonts(CircleROUND);const ContainerWithFX=withFX(Container);const FunctionCardsFonts=getFonts(FunctionCards);const SocialProofAnimationFonts=getFonts(SocialProofAnimation);const SocialProofAnimationWithVariantAppearEffect=withVariantAppearEffect(SocialProofAnimation);const PhoneAnimationFonts=getFonts(PhoneAnimation);const PhoneAnimationWithVariantAppearEffect=withVariantAppearEffect(PhoneAnimation);const ScrollProgressFonts=getFonts(ScrollProgress);const ScrollProgressWithVariantAppearEffect=withVariantAppearEffect(ScrollProgress);const ImageWithFX=withFX(Image);const StackCardsAdvantagesFonts=getFonts(StackCardsAdvantages);const AnimCurvesFonts=getFonts(AnimCurves);const EmbedFonts=getFonts(Embed);const BaseFormFonts=getFonts(BaseForm);const OverlayFonts=getFonts(Overlay);const FooterFonts=getFonts(Footer);const breakpoints={HfSG4WHcm:\"(min-width: 810px) and (max-width: 1199px)\",jhgstC6MA:\"(min-width: 1200px) and (max-width: 1799px)\",KjS12idBo:\"(min-width: 1800px)\",WPoaGmYBq:\"(max-width: 809px)\"};const isBrowser=()=>typeof document!==\"undefined\";const serializationHash=\"framer-BKmf1\";const variantClassNames={HfSG4WHcm:\"framer-v-1b56ql2\",jhgstC6MA:\"framer-v-1yfu9ea\",KjS12idBo:\"framer-v-1t3nvjz\",WPoaGmYBq:\"framer-v-1mx4hxu\"};const transition1={delay:.5,duration:.8,ease:[.44,0,.56,1],type:\"tween\"};const animation={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition1,x:0,y:0};const animation1={opacity:.001,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:0,y:-150};const convertFromEnum=(value,activeLocale)=>{switch(value){case\"default\":return\"s2mCqPzjA\";case\"ENPWvRMq3\":return\"Pb5kS0ttJ\";default:return\"s2mCqPzjA\";}};const transition2={damping:21,delay:.8,mass:1,stiffness:251,type:\"spring\"};const animation2={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition2,x:0,y:0};const transition3={delay:0,duration:8,ease:[.44,0,.56,1],type:\"tween\"};const animation3={opacity:1,rotate:4,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0};const transformTemplate1=(_,t)=>`translate(-50%, -50%) ${t}`;const transition4={delay:0,duration:.8,ease:[.44,0,.56,1],type:\"tween\"};const animation4={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition4,x:0,y:0};const animation5={opacity:.001,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:-150,y:0};const transformTemplate2=(_,t)=>`translateY(-50%) ${t}`;const transition5={delay:0,duration:.3,ease:[.44,0,.56,1],type:\"tween\"};const animation6={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition5,x:0,y:0};const transition6={delay:0,duration:32,ease:[0,0,1,1],type:\"tween\"};const animation7={opacity:1,rotate:360,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0};const transition7={delay:1,duration:.8,ease:[.44,0,.56,1],type:\"tween\"};const animation8={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition7,x:0,y:0};const animation9={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:0,y:150};const transition8={delay:.3,duration:.5,ease:[.44,0,.56,1],type:\"tween\"};const animation10={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition8,x:0,y:0};const transition9={delay:2,duration:1.4,ease:[.44,0,.56,1],type:\"tween\"};const animation11={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition9,x:0,y:0};const animation12={opacity:.001,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:0,y:0};const animation13={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:0,y:209};const animation14={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:0,y:80};const transition10={delay:.3,duration:.8,ease:[.44,0,.56,1],type:\"tween\"};const animation15={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition10,x:0,y:80};const animation16={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:0,y:0};const transition11={delay:.6,duration:.8,ease:[.44,0,.56,1],type:\"tween\"};const animation17={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition11,x:0,y:0};const animation18={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:0,y:150};const transition12={delay:.4,duration:.8,ease:[.44,0,.56,1],type:\"tween\"};const animation19={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition12,x:0,y:150};const transition13={damping:30,delay:0,mass:1,stiffness:400,type:\"spring\"};const animation20={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition13,y:-20};const transition14={delay:.8,duration:.8,ease:[.44,0,.56,1],type:\"tween\"};const animation21={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition14,x:0,y:150};const transition15={delay:1.2,duration:.8,ease:[.44,0,.56,1],type:\"tween\"};const animation22={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition15,x:0,y:150};const transition16={delay:0,duration:2,ease:[.44,0,.56,1],type:\"tween\"};const animation23={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:-14};const animation24={opacity:1,rotate:16,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0};const animation25={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition13,x:0,y:0};const animation26={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:.5,skewX:0,skewY:0,transformPerspective:1200,x:0,y:0};const animation27={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:.5,skewX:0,skewY:0,transformPerspective:1200,transition:transition13,x:0,y:0};const animation28={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition13,x:0,y:0};const animation29={opacity:.001,rotate:0,rotateX:0,rotateY:0,scale:.5,skewX:0,skewY:0,transformPerspective:1200,x:0,y:0};const animation30={opacity:.001,rotate:0,rotateX:0,rotateY:0,scale:.5,skewX:0,skewY:0,transformPerspective:1200,x:0,y:50};const animation31={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:.8,skewX:0,skewY:0,transformPerspective:1200,x:0,y:0};const transition17={delay:2,duration:.8,ease:[.44,0,.56,1],type:\"tween\"};const animation32={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:.8,skewX:0,skewY:0,transformPerspective:1200,transition:transition17,x:0,y:0};const animation33={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:0,y:50};const transition18={delay:.4,duration:.5,ease:[.56,.07,.33,.79],type:\"tween\"};const animation34={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition18,x:0,y:50};const transition19={delay:.8,duration:.5,ease:[.56,.07,.33,.79],type:\"tween\"};const animation35={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition19,x:0,y:50};const transition20={delay:1.2,duration:.5,ease:[.56,.07,.33,.79],type:\"tween\"};const animation36={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition20,x:0,y:50};const animation37={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:.9,skewX:0,skewY:0,transformPerspective:1200,x:0,y:0};const animation38={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:.9,skewX:0,skewY:0,transformPerspective:1200,transition:transition10,x:0,y:0};const animation39={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:.9,skewX:0,skewY:0,transformPerspective:1200,transition:transition1,x:0,y:0};const animation40={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition1,x:0,y:80};const animation41={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition13,x:0,y:0};const animation42={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition13,x:0,y:0};const animation43={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0};const Overlay1=({children,blockDocumentScrolling,enabled=true})=>{const[visible,setVisible]=useOverlayState({blockDocumentScrolling});return children({hide:()=>setVisible(false),show:()=>setVisible(true),toggle:()=>setVisible(!visible),visible:enabled&&visible});};const transformTemplate3=(_,t)=>`translateX(-50%) ${t}`;const HTMLStyle=({value})=>{const onCanvas=useIsOnFramerCanvas();if(onCanvas)return null;return /*#__PURE__*/_jsx(\"style\",{dangerouslySetInnerHTML:{__html:value}});};const humanReadableVariantMap={\"Desktop 2\":\"jhgstC6MA\",Desktop:\"KjS12idBo\",Phone:\"WPoaGmYBq\",Tablet:\"HfSG4WHcm\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"KjS12idBo\"};};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,...restProps}=getProps(props);React.useEffect(()=>{const metadata=metadataProvider(undefined,activeLocale);if(metadata.robots){let robotsTag=document.querySelector('meta[name=\"robots\"]');if(robotsTag){robotsTag.setAttribute(\"content\",metadata.robots);}else{robotsTag=document.createElement(\"meta\");robotsTag.setAttribute(\"name\",\"robots\");robotsTag.setAttribute(\"content\",metadata.robots);document.head.appendChild(robotsTag);}}},[undefined,activeLocale]);React.useInsertionEffect(()=>{const metadata=metadataProvider(undefined,activeLocale);document.title=metadata.title||\"\";if(metadata.viewport){document.querySelector('meta[name=\"viewport\"]')?.setAttribute(\"content\",metadata.viewport);}},[undefined,activeLocale]);const[baseVariant,hydratedBaseVariant]=useHydratedBreakpointVariants(variant,breakpoints,false);const gestureVariant=undefined;const{activeVariantCallback,delay}=useActiveVariantCallback(undefined);const onSubmittxyyif=({overlay,loadMore})=>activeVariantCallback(async(...args)=>{overlay.show();});const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className,sharedStyle2.className,sharedStyle3.className,sharedStyle4.className,sharedStyle5.className,sharedStyle6.className,sharedStyle7.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const ref1=React.useRef(null);const isDisplayed=()=>{if(!isBrowser())return true;if([\"HfSG4WHcm\",\"WPoaGmYBq\"].includes(baseVariant))return false;return true;};const ref2=React.useRef(null);const ref3=React.useRef(null);const ref4=React.useRef(null);const ref5=React.useRef(null);const elementId=useRouteElementId(\"o0aMVyWXf\");const ref6=React.useRef(null);usePreloadLocalizedValues(activeLocale);const router=useRouter();const isDisplayed1=()=>{if(!isBrowser())return true;if(baseVariant===\"WPoaGmYBq\")return false;return true;};const isDisplayed2=()=>{if(!isBrowser())return true;if(baseVariant===\"HfSG4WHcm\")return false;return true;};const elementId1=useRouteElementId(\"HO7uT52bZ\");const isDisplayed3=()=>{if(!isBrowser())return true;if([\"HfSG4WHcm\",\"WPoaGmYBq\"].includes(baseVariant))return true;return false;};const elementId2=useRouteElementId(\"C_CwCiNz0\");const ref7=React.useRef(null);const ref8=React.useRef(null);const ref9=React.useRef(null);const ref10=React.useRef(null);const elementId3=useRouteElementId(\"EU1Jv2yXa\");const isDisplayed4=()=>{if(!isBrowser())return true;if(baseVariant===\"WPoaGmYBq\")return true;return false;};const elementId4=useRouteElementId(\"KpzEnO5XC\");const elementId5=useRouteElementId(\"QOh_uVFr1\");const elementId6=useRouteElementId(\"pJp1l8QYs\");const elementId7=useRouteElementId(\"frZhcB4VT\");const elementId8=useRouteElementId(\"sD_I1NqV3\");const elementId9=useRouteElementId(\"WKfETQr27\");const ref11=React.useRef(null);const ref12=React.useRef(null);const ref13=React.useRef(null);const defaultLayoutId=React.useId();useCustomCursors({});return /*#__PURE__*/_jsx(GeneratedComponentContext.Provider,{value:{primaryVariantId:\"KjS12idBo\",variantClassNames},children:/*#__PURE__*/_jsxs(LayoutGroup,{id:layoutId??defaultLayoutId,children:[/*#__PURE__*/_jsxs(motion.div,{...restProps,className:cx(scopingClassNames,\"framer-1t3nvjz\",className),ref:ref??ref1,style:{...style},children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1rttt3c-container\",children:/*#__PURE__*/_jsx(SmoothScroll,{height:\"100%\",id:\"bCW3K8W2G\",intensity:10,layoutId:\"bCW3K8W2G\",width:\"100%\"})})}),isDisplayed()&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{jhgstC6MA:{y:-.03333333333333333}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:97,y:-.016666666666666666,children:/*#__PURE__*/_jsx(Container,{className:\"framer-14c8qqq-container hidden-1b56ql2 hidden-1mx4hxu\",layoutScroll:true,children:/*#__PURE__*/_jsx(NavbarSingle,{height:\"100%\",id:\"kciH8W_aA\",layoutId:\"kciH8W_aA\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:110,width:\"100vw\",y:0,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{WPoaGmYBq:{animate:animation2}},children:/*#__PURE__*/_jsx(ContainerWithOptimizedAppearEffect,{animate:animation,className:\"framer-ojis5j-container\",\"data-framer-appear-id\":\"ojis5j\",initial:animation1,layoutScroll:true,optimized:true,style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{HfSG4WHcm:{__framer__variantAppearEffectEnabled:undefined,variant:\"py8eNCPWa\"},WPoaGmYBq:{__framer__variantAppearEffectEnabled:undefined,variant:\"py8eNCPWa\"}},children:/*#__PURE__*/_jsx(NavbarWithVariantAppearEffect,{__framer__animateOnce:false,__framer__targets:[{ref:ref2,target:\"h3LvpnnPY\"},{ref:ref3,target:\"jjXfqEWJK\"},{ref:ref4,target:\"dNavj2EdN\"},{ref:ref5,target:\"HDkFRtC00\"}],__framer__threshold:.5,__framer__variantAppearEffectEnabled:true,height:\"100%\",id:\"gJszz9NK9\",layoutId:\"gJszz9NK9\",style:{width:\"100%\"},uWyNJa19e:convertFromEnum(activeLocale?.id,activeLocale),variant:\"i5oLSIMRB\",width:\"100%\"})})})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1e0fe0f\",\"data-framer-name\":\"Main\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-9ciho\",\"data-framer-name\":\"Welcome\",id:elementId,ref:ref6,children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-ex4ilv\",\"data-framer-name\":\"Hero Image\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{WPoaGmYBq:{__framer__loopEffectEnabled:undefined}},children:/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__loop:animation3,__framer__loopEffectEnabled:true,__framer__loopRepeatDelay:0,__framer__loopRepeatType:\"mirror\",__framer__loopTransition:transition3,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1ykog5w\",\"data-framer-name\":\"Hero Image Wrapper\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{WPoaGmYBq:{animate:animation6,transformTemplate:transformTemplate2}},children:/*#__PURE__*/_jsxs(MotionDivWithOptimizedAppearEffect,{animate:animation4,className:\"framer-1m3dopj\",\"data-framer-appear-id\":\"1m3dopj\",\"data-framer-name\":\"Image_Header\",initial:animation5,optimized:true,style:{transformPerspective:1200},transformTemplate:transformTemplate1,children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-qspbx8\",\"data-framer-name\":\"Mask group\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-f7mc2c\",\"data-framer-name\":\"Rectangle 9\",style:{rotate:14},children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-zl9edr\",\"data-framer-name\":\"Ellipse 3\"}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{HfSG4WHcm:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:797,intrinsicWidth:932,loading:getLoadingLazyAtYPosition(-73.66908295840156),pixelHeight:797,pixelWidth:932,sizes:\"calc(min(66.2963vw, 670px) / 1.086)\",src:\"https://framerusercontent.com/images/d9ShtptyFaj5C6IeFiNjrJwP60.webp\",srcSet:\"https://framerusercontent.com/images/d9ShtptyFaj5C6IeFiNjrJwP60.webp?scale-down-to=512 512w,https://framerusercontent.com/images/d9ShtptyFaj5C6IeFiNjrJwP60.webp 932w\"}},jhgstC6MA:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:797,intrinsicWidth:932,loading:getLoadingLazyAtYPosition(161.655111652007),pixelHeight:797,pixelWidth:932,sizes:\"calc(min(min(max(50vw, 1px), 839px) * 1.03, 672px) * 1.1368)\",src:\"https://framerusercontent.com/images/d9ShtptyFaj5C6IeFiNjrJwP60.webp\",srcSet:\"https://framerusercontent.com/images/d9ShtptyFaj5C6IeFiNjrJwP60.webp?scale-down-to=512 512w,https://framerusercontent.com/images/d9ShtptyFaj5C6IeFiNjrJwP60.webp 932w\"}},WPoaGmYBq:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:797,intrinsicWidth:932,pixelHeight:797,pixelWidth:932,sizes:\"calc(min(min(100vw, 550px) / 1.5, 420px) * 1.1368)\",src:\"https://framerusercontent.com/images/d9ShtptyFaj5C6IeFiNjrJwP60.webp\",srcSet:\"https://framerusercontent.com/images/d9ShtptyFaj5C6IeFiNjrJwP60.webp?scale-down-to=512 512w,https://framerusercontent.com/images/d9ShtptyFaj5C6IeFiNjrJwP60.webp 932w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:797,intrinsicWidth:932,loading:getLoadingLazyAtYPosition(202.83091704159852),pixelHeight:797,pixelWidth:932,sizes:\"calc(min(max(50vw, 1px), 839px) / 1.086)\",src:\"https://framerusercontent.com/images/d9ShtptyFaj5C6IeFiNjrJwP60.webp\",srcSet:\"https://framerusercontent.com/images/d9ShtptyFaj5C6IeFiNjrJwP60.webp?scale-down-to=512 512w,https://framerusercontent.com/images/d9ShtptyFaj5C6IeFiNjrJwP60.webp 932w\"},className:\"framer-7t2af1\",\"data-framer-name\":\"Frame_289235\",style:{rotate:-14}})})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{WPoaGmYBq:{__framer__loopEffectEnabled:undefined}},children:/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__loop:animation7,__framer__loopEffectEnabled:true,__framer__loopRepeatDelay:0,__framer__loopRepeatType:\"loop\",__framer__loopTransition:transition6,__perspectiveFX:false,__targetOpacity:1,className:\"framer-zl5n91\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-14sjr1c\",\"data-framer-name\":\"Ellipse 1\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1db6u0z\",\"data-framer-name\":\"Ellipse 2\"})]})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1m97itu\",\"data-framer-name\":\"Frame 13\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1m7hjqi\",\"data-framer-name\":\"Rectangle 260\"}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1kftyek\",\"data-border\":true,\"data-framer-name\":\"Frame 921\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-m6q1hg\",\"data-framer-name\":\"Ellipse 29\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-xx3euf\",\"data-framer-name\":\"Vector\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:19,intrinsicWidth:23,svg:'<svg width=\"23\" height=\"19\" viewBox=\"0 0 23 19\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M22.1336 7.72944H18.1823L16.047 10.9286C15.7875 11.3511 15.5281 11.7736 15.2886 12.2163H15.2487V7.72944C15.2487 3.48404 11.8762 0.043457 7.66544 0.043457C3.45472 0.043457 0.0422363 3.48404 0.0422363 7.72944V18.3731H3.31502V15.0533L4.15318 14.007L6.70755 18.3731H10.7387L6.42817 12.0352L10.1999 7.72944H6.24856L4.11327 10.9286C3.85384 11.3511 3.59441 11.7736 3.35494 12.2163H3.31502V7.72944C3.31502 5.33512 5.27072 3.38344 7.66544 3.38344C10.0602 3.38344 11.9759 5.33512 11.9759 7.72944V18.3731H15.2487V15.0533L16.0869 14.007L18.6413 18.3731H22.6724L18.3619 12.0352L22.1336 7.72944Z\" fill=\"white\"/>\\n</svg>\\n',withExternalLayout:true})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v0\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7UG9wcGlucy1yZWd1bGFy\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-size\":\"11px\",\"--framer-letter-spacing\":\"0px\",\"--framer-text-alignment\":\"left\"},children:\"Ma cagnotte\"})}),className:\"framer-1p2evd6\",\"data-framer-name\":\"Ma cagnotte\",fonts:[\"GF;Poppins-regular\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7UG9wcGlucy03MDA=\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-size\":\"17px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"0px\",\"--framer-text-alignment\":\"center\"},children:\"1400\u20AC\"})}),className:\"framer-wa60sa\",\"data-framer-name\":\"1400\u20AC\",fonts:[\"GF;Poppins-700\"],verticalAlignment:\"top\",withExternalLayout:true})]})]})]})})})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-unfvkv\",\"data-framer-name\":\"Hero Content\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-z7cj0j\",\"data-framer-name\":\"Content Wrapper\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-u4rq4u\",\"data-framer-name\":\"Header Text\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-10pjb9b\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{WPoaGmYBq:{animate:animation10}},children:/*#__PURE__*/_jsx(MotionDivWithOptimizedAppearEffect,{animate:animation8,className:\"framer-tujacp\",\"data-framer-appear-id\":\"tujacp\",\"data-framer-name\":\"Hero Title\",initial:animation9,optimized:true,style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(SVG,{className:\"framer-cqqu2m\",\"data-framer-name\":\"Group\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:88,intrinsicWidth:314,svg:'<svg width=\"314\" height=\"88\" viewBox=\"0 0 314 88\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M39.0334 29.0356C44.4736 29.0356 48.8821 30.2623 51.9774 31.5833L55.0727 19.2222C52.3526 17.8068 46.2558 16.2027 38.1892 16.2027C17.5539 16.1083 0.951904 29.2243 0.951904 52.72C0.951904 72.3469 13.1455 87.0671 36.7823 87.0671C45.1302 87.0671 51.5084 85.5573 54.3223 84.1419L51.9774 71.9695C48.9759 73.1961 43.7233 74.2341 39.1272 74.2341C25.3391 74.2341 17.1788 65.553 17.1788 51.7764C17.1788 36.4901 26.746 29.0356 39.0334 29.0356Z\" fill=\"#368B8B\"/>\\n<path d=\"M78.8971 36.1123H63.5144V86.0288H78.8971V36.1123Z\" fill=\"#368B8B\"/>\\n<path d=\"M71.2057 14.4097C66.2345 14.4097 62.9516 17.8066 63.0454 22.2416C62.9516 26.4878 66.2345 29.9791 71.0181 29.9791C75.8018 29.9791 79.3661 26.4878 79.3661 22.2416C79.3661 17.8066 76.177 14.4097 71.2057 14.4097Z\" fill=\"#368B8B\"/>\\n<path d=\"M105.066 45.3596H104.691L104.222 36.2067H90.9031C91.0907 40.4529 91.2783 45.2652 91.2783 52.6253V86.1231H106.661V60.7403C106.661 59.5136 106.755 58.2869 106.942 57.249C107.974 52.4366 111.82 49.4171 117.448 49.4171C119.136 49.4171 120.449 49.6058 121.575 49.7945V35.1687C120.449 34.98 119.792 34.98 118.292 34.98C113.696 34.98 107.599 38.0939 105.066 45.3596Z\" fill=\"#368B8B\"/>\\n<path d=\"M233.38 36.1124H214.809L204.772 51.1157C203.553 53.0973 202.334 55.0788 201.208 57.1547H201.021V36.1124C201.021 16.2025 185.169 0.0668945 165.378 0.0668945C145.587 0.0668945 129.547 16.2025 129.547 36.1124V86.0289H144.93V70.4595L148.87 65.5528L160.875 86.0289H179.822L159.562 56.3055L177.29 36.1124H158.718L148.682 51.1157C147.463 53.0973 146.243 55.0788 145.118 57.1547H144.93V36.1124C144.93 24.8836 154.122 15.7307 165.378 15.7307C176.633 15.7307 185.638 24.8836 185.638 36.1124V86.0289H201.021V70.4595L204.96 65.5528L216.966 86.0289H235.913L215.653 56.3055L233.38 36.1124Z\" fill=\"#368B8B\"/>\\n<path d=\"M257.111 13.5605H241.728V86.0291H257.111V13.5605Z\" fill=\"#368B8B\"/>\\n<path d=\"M291.816 34.98C274.557 34.98 266.772 48.9453 266.772 61.5895C266.772 77.1589 276.433 86.9724 293.223 86.9724C299.882 86.9724 306.073 85.9344 311.138 83.9529L309.074 73.4789C304.947 74.7999 300.633 75.5548 295.38 75.5548C288.158 75.5548 281.873 72.5353 281.404 66.0245H313.389C313.577 64.8921 313.858 62.5331 313.858 59.891C313.952 47.5299 307.855 34.98 291.816 34.98ZM281.31 55.4561C281.686 51.3043 284.312 45.3596 290.878 45.3596C298.006 45.3596 299.601 51.6817 299.601 55.4561H281.31Z\" fill=\"#368B8B\"/>\\n</svg>\\n',withExternalLayout:true})})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-18uzep8\",\"data-framer-name\":\"Hero Subtitle\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-pzjx6\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{WPoaGmYBq:{animate:animation10}},children:/*#__PURE__*/_jsx(RichTextWithOptimizedAppearEffect,{__fromCanvasComponent:true,animate:animation8,children:getLocalizedValue(\"v1\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{className:\"framer-styles-preset-1lzcxam\",\"data-styles-preset\":\"MpTKPkTbI\",children:\"R\\xe9volutionne vos tontines\"})}),className:\"framer-1qno7wn\",\"data-framer-appear-id\":\"1qno7wn\",\"data-framer-name\":\"R\\xe9volutionne vos tontines\",fonts:[\"Inter\"],initial:animation9,optimized:true,style:{transformPerspective:1200},verticalAlignment:\"top\",withExternalLayout:true})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{HfSG4WHcm:{children:getLocalizedValue(\"v3\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-uwtnxz\",\"data-styles-preset\":\"MKn8EopCP\",children:\"Tontine, Rosca, Esusu\u2026 quel que soit le nom de vos cercles d\u2019\\xe9pargne, Cirkkle les rassemble sur une application mobile simple et s\\xe9curis\\xe9e, pour vous permettre d'\\xe9pargner et d'emprunter gr\\xe2ce \\xe0 vos proches.\"})})},jhgstC6MA:{children:getLocalizedValue(\"v3\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-uwtnxz\",\"data-styles-preset\":\"MKn8EopCP\",children:\"Tontine, Rosca, Esusu\u2026 quel que soit le nom de vos cercles d\u2019\\xe9pargne, Cirkkle les rassemble sur une application mobile simple et s\\xe9curis\\xe9e, pour vous permettre d'\\xe9pargner et d'emprunter gr\\xe2ce \\xe0 vos proches.\"})})},WPoaGmYBq:{animate:animation10,children:getLocalizedValue(\"v3\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-uwtnxz\",\"data-styles-preset\":\"MKn8EopCP\",children:\"Tontine, Rosca, Esusu\u2026 quel que soit le nom de vos cercles d\u2019\\xe9pargne, Cirkkle les rassemble sur une application mobile simple et s\\xe9curis\\xe9e, pour vous permettre d'\\xe9pargner et d'emprunter gr\\xe2ce \\xe0 vos proches.\"})})}},children:/*#__PURE__*/_jsx(RichTextWithOptimizedAppearEffect,{__fromCanvasComponent:true,animate:animation8,children:getLocalizedValue(\"v2\",activeLocale)??/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-uwtnxz\",\"data-styles-preset\":\"MKn8EopCP\",children:\"Tontine, Rosca, Esusu\u2026 quel que soit le nom de vos cercles d\u2019\\xe9pargne, Cirkkle les rassemble sur une application mobile simple et s\\xe9curis\\xe9e, pour vous permettre d'\\xe9pargner et d'emprunter gr\\xe2ce \\xe0 vos proches.\"}),/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-uwtnxz\",\"data-styles-preset\":\"MKn8EopCP\",children:/*#__PURE__*/_jsx(\"br\",{className:\"trailing-break\"})})]}),className:\"framer-1hnfnpt\",\"data-framer-appear-id\":\"1hnfnpt\",\"data-framer-name\":\"Tontine, Rosca, Esusu\u2026 quel que soit le nom de vos cercles d\u2019\\xe9pargne, Cirkkle les rassemble sur une application mobile simple et s\\xe9curis\\xe9e, pour vous permettre d'\\xe9pargner et d'emprunter gr\\xe2ce \\xe0 vos proches.\",fonts:[\"Inter\"],initial:animation9,optimized:true,style:{transformPerspective:1200},verticalAlignment:\"top\",withExternalLayout:true})})]})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{WPoaGmYBq:{animate:animation2}},children:/*#__PURE__*/_jsxs(MotionDivWithOptimizedAppearEffect,{animate:animation8,className:\"framer-1e4kiml\",\"data-framer-appear-id\":\"1e4kiml\",\"data-framer-name\":\"CTA Buttons\",initial:animation9,optimized:true,style:{transformPerspective:1200},children:[/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{hash:\":WKfETQr27\",webPageId:\"e5HDb2LUO\"},implicitPathVariables:undefined},{href:{hash:\":WKfETQr27\",webPageId:\"e5HDb2LUO\"},implicitPathVariables:undefined},{href:{hash:\":WKfETQr27\",webPageId:\"e5HDb2LUO\"},implicitPathVariables:undefined},{href:{hash:\":WKfETQr27\",webPageId:\"e5HDb2LUO\"},implicitPathVariables:undefined}],children:resolvedLinks=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{HfSG4WHcm:{y:717.8},jhgstC6MA:{y:507.8},WPoaGmYBq:{width:\"min(100vw - 48px, 450px)\",y:undefined}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:48,y:554.0528320312501,children:/*#__PURE__*/_jsx(Container,{className:\"framer-7iy8w2-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{HfSG4WHcm:{qpuUcKVW_:resolvedLinks[2]},jhgstC6MA:{qpuUcKVW_:resolvedLinks[1]},WPoaGmYBq:{qpuUcKVW_:resolvedLinks[3],style:{width:\"100%\"}}},children:/*#__PURE__*/_jsx(ButtonHeader,{height:\"100%\",id:\"rOVLkk90_\",layoutId:\"rOVLkk90_\",NW_jYF7U0:getLocalizedValue(\"v4\",activeLocale)??\"Rejoindre la liste d'attente\",qpuUcKVW_:resolvedLinks[0],variant:\"rolD08DQ7\",width:\"100%\"})})})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{hash:\":HO7uT52bZ\",webPageId:\"e5HDb2LUO\"},implicitPathVariables:undefined},{href:{hash:\":HO7uT52bZ\",webPageId:\"e5HDb2LUO\"},implicitPathVariables:undefined},{href:{hash:\":HO7uT52bZ\",webPageId:\"e5HDb2LUO\"},implicitPathVariables:undefined},{href:{hash:\":HO7uT52bZ\",webPageId:\"e5HDb2LUO\"},implicitPathVariables:undefined}],children:resolvedLinks1=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{HfSG4WHcm:{y:717.8},jhgstC6MA:{y:507.8},WPoaGmYBq:{width:\"min(100vw - 48px, 450px)\",y:undefined}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:48,y:554.0528320312501,children:/*#__PURE__*/_jsx(Container,{className:\"framer-lymqn2-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{HfSG4WHcm:{qpuUcKVW_:resolvedLinks1[2]},jhgstC6MA:{qpuUcKVW_:resolvedLinks1[1]},WPoaGmYBq:{qpuUcKVW_:resolvedLinks1[3],style:{height:\"100%\",width:\"100%\"},variant:\"xoOlnSUCy\"}},children:/*#__PURE__*/_jsx(ButtonHeader,{height:\"100%\",id:\"NGnTGlXP9\",layoutId:\"NGnTGlXP9\",NW_jYF7U0:getLocalizedValue(\"v5\",activeLocale)??\"Continuer sur le site\",qpuUcKVW_:resolvedLinks1[0],style:{height:\"100%\"},variant:\"nCuXtZLos\",width:\"100%\"})})})})})})]})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-vwqs31\",\"data-framer-name\":\"App Buttons\",children:[isDisplayed1()&&/*#__PURE__*/_jsxs(MotionDivWithOptimizedAppearEffect,{animate:animation11,className:\"framer-xoce5i hidden-1mx4hxu\",\"data-framer-appear-id\":\"xoce5i\",\"data-framer-name\":\"Pointer Bubble\",initial:animation12,optimized:true,style:{transformPerspective:1200},children:[/*#__PURE__*/_jsx(Link,{nodeId:\"jPl3CQ6OF\",openInNewTab:true,children:/*#__PURE__*/_jsx(\"a\",{className:\"framer-ba59ku framer-bu4pd2\",\"data-framer-name\":\"Rectangle 10\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v6\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7Q2F2ZWF0IEJydXNoLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Caveat Brush\", sans-serif',\"--framer-font-size\":\"17px\",\"--framer-letter-spacing\":\"0px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"App disponible sur\"})}),className:\"framer-16ri2jb\",\"data-framer-name\":\"App bient\\xf4t disponible sur\",fonts:[\"GF;Caveat Brush-regular\"],transformTemplate:transformTemplate1,verticalAlignment:\"top\",withExternalLayout:true})})}),/*#__PURE__*/_jsx(SVG,{className:\"framer-et95pk\",\"data-framer-name\":\"Vector 11\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:49,intrinsicWidth:50,svg:'<svg width=\"50\" height=\"49\" viewBox=\"-1 -1 50 49\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M6.87856 6.1882C6.69029 5.81925 6.83675 5.36753 7.2057 5.17926C7.57465 4.99098 8.02638 5.13745 8.21465 5.5064L6.87856 6.1882ZM48.0262 33.3458C48.3298 33.6276 48.3476 34.1021 48.0658 34.4058L43.4744 39.3537C43.1927 39.6573 42.7181 39.675 42.4145 39.3933C42.1109 39.1115 42.0932 38.637 42.3749 38.3333L46.4561 33.9352L42.058 29.854C41.7544 29.5722 41.7367 29.0977 42.0184 28.7941C42.3002 28.4904 42.7747 28.4727 43.0783 28.7545L48.0262 33.3458ZM26.8052 34.6696L26.7772 33.9201L26.8052 34.6696ZM8.21465 5.5064L20.9768 30.5154L19.6407 31.1972L6.87856 6.1882L8.21465 5.5064ZM26.7772 33.9201L47.4881 33.1461L47.5441 34.6451L26.8332 35.4191L26.7772 33.9201ZM20.9768 30.5154C22.0827 32.6826 24.3458 34.011 26.7772 33.9201L26.8332 35.4191C23.8183 35.5318 21.012 33.8845 19.6407 31.1972L20.9768 30.5154Z\" fill=\"#368B8B\"/>\\n</svg>\\n',withExternalLayout:true})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1nujf1x\",\"data-framer-name\":\"Content\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{WPoaGmYBq:{animate:animation2,initial:animation13}},children:/*#__PURE__*/_jsxs(MotionDivWithOptimizedAppearEffect,{animate:animation8,className:\"framer-1rochg8\",\"data-framer-appear-id\":\"1rochg8\",\"data-framer-name\":\"App Buttons\",initial:animation9,optimized:true,style:{transformPerspective:1200},children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{HfSG4WHcm:{background:{alt:\"\",fit:\"stretch\",loading:getLoadingLazyAtYPosition(854.8),positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/YFdbM4FbG6sOpNGrUsdy0elBT8g.png\",srcSet:\"https://framerusercontent.com/images/YFdbM4FbG6sOpNGrUsdy0elBT8g.png?scale-down-to=512 512w,https://framerusercontent.com/images/YFdbM4FbG6sOpNGrUsdy0elBT8g.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/YFdbM4FbG6sOpNGrUsdy0elBT8g.png 1752w\"}},jhgstC6MA:{background:{alt:\"\",fit:\"stretch\",loading:getLoadingLazyAtYPosition(644.8),positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/YFdbM4FbG6sOpNGrUsdy0elBT8g.png\",srcSet:\"https://framerusercontent.com/images/YFdbM4FbG6sOpNGrUsdy0elBT8g.png?scale-down-to=512 512w,https://framerusercontent.com/images/YFdbM4FbG6sOpNGrUsdy0elBT8g.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/YFdbM4FbG6sOpNGrUsdy0elBT8g.png 1752w\"}},WPoaGmYBq:{background:{alt:\"\",fit:\"stretch\",positionX:\"center\",positionY:\"center\",sizes:\"min(max(100vw - 48px, 1px), 450px)\",src:\"https://framerusercontent.com/images/YFdbM4FbG6sOpNGrUsdy0elBT8g.png\",srcSet:\"https://framerusercontent.com/images/YFdbM4FbG6sOpNGrUsdy0elBT8g.png?scale-down-to=512 512w,https://framerusercontent.com/images/YFdbM4FbG6sOpNGrUsdy0elBT8g.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/YFdbM4FbG6sOpNGrUsdy0elBT8g.png 1752w\"}}},children:/*#__PURE__*/_jsxs(Image,{background:{alt:\"\",fit:\"stretch\",loading:getLoadingLazyAtYPosition(691.0528320312501),positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/YFdbM4FbG6sOpNGrUsdy0elBT8g.png\",srcSet:\"https://framerusercontent.com/images/YFdbM4FbG6sOpNGrUsdy0elBT8g.png?scale-down-to=512 512w,https://framerusercontent.com/images/YFdbM4FbG6sOpNGrUsdy0elBT8g.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/YFdbM4FbG6sOpNGrUsdy0elBT8g.png 1752w\"},className:\"framer-bhfnru\",\"data-framer-name\":\"Button Wrapper\",children:[/*#__PURE__*/_jsx(Link,{href:\"https://apps.apple.com/us/app/cirkkle/id6740536188\",nodeId:\"y1IZY5v2R\",children:/*#__PURE__*/_jsx(\"a\",{className:\"framer-vljbqd framer-bu4pd2\",\"data-framer-name\":\"App Store\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1r4fdpa\",\"data-framer-name\":\"App Store Wrapper\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-16zk1a5\",\"data-framer-name\":\"Apple Icon\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1tjyjt5\",\"data-framer-name\":\"apple\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:25,intrinsicWidth:25,svg:'<svg width=\"25\" height=\"25\" viewBox=\"0 0 25 25\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M18.942 19.9834C18.112 21.2234 17.232 22.4334 15.892 22.4534C14.552 22.4834 14.122 21.6634 12.602 21.6634C11.072 21.6634 10.602 22.4334 9.33203 22.4834C8.02203 22.5334 7.03203 21.1634 6.19203 19.9534C4.48203 17.4834 3.17203 12.9334 4.93203 9.8734C5.80203 8.3534 7.36203 7.3934 9.05203 7.3634C10.332 7.3434 11.552 8.2334 12.342 8.2334C13.122 8.2334 14.602 7.1634 16.152 7.3234C16.802 7.3534 18.622 7.5834 19.792 9.3034C19.702 9.3634 17.622 10.5834 17.642 13.1134C17.672 16.1334 20.292 17.1434 20.322 17.1534C20.292 17.2234 19.902 18.5934 18.942 19.9834ZM13.232 3.9834C13.962 3.1534 15.172 2.5234 16.172 2.4834C16.302 3.6534 15.832 4.8334 15.132 5.6734C14.442 6.5234 13.302 7.1834 12.182 7.0934C12.032 5.9434 12.592 4.7434 13.232 3.9834Z\" fill=\"white\"/>\\n</svg>\\n',withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-2ip53k\",\"data-framer-name\":\"App Store\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{WPoaGmYBq:{transformTemplate:transformTemplate2,viewBox:getLocalizedValue(\"v8\",activeLocale)??\"0 0 68 17\"}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v7\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7UGx1cyBKYWthcnRhIFNhbnMtNjAw\",\"--framer-font-family\":'\"Plus Jakarta Sans\", \"Plus Jakarta Sans Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"0px\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"App Store\"})}),className:\"framer-9ywkvp\",\"data-framer-name\":\"App Store\",fonts:[\"GF;Plus Jakarta Sans-600\"],transformTemplate:transformTemplate1,verticalAlignment:\"top\",withExternalLayout:true})})})]})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1c11jzy\",\"data-framer-name\":\"Google Play\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1gt2p9o\",\"data-framer-name\":\"Google Play Wrapper\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1scd4xg\",\"data-framer-name\":\"Logo\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-g608r\",\"data-framer-name\":\"google-play\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:25,intrinsicWidth:25,svg:'<svg width=\"25\" height=\"25\" viewBox=\"0 0 25 25\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M3.73193 20.9833V3.9833C3.73193 3.3933 4.07193 2.8733 4.57193 2.6333L14.4219 12.4833L4.57193 22.3333C4.07193 22.0833 3.73193 21.5733 3.73193 20.9833ZM17.5419 15.6033L6.78193 21.8233L15.2719 13.3333L17.5419 15.6033ZM20.8919 11.2933C21.2319 11.5633 21.4819 11.9833 21.4819 12.4833C21.4819 12.9833 21.2619 13.3833 20.9119 13.6633L18.6219 14.9833L16.1219 12.4833L18.6219 9.9833L20.8919 11.2933ZM6.78193 3.1433L17.5419 9.3633L15.2719 11.6333L6.78193 3.1433Z\" fill=\"white\"/>\\n</svg>\\n',withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1gf7gp\",\"data-framer-name\":\"Google Play\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{WPoaGmYBq:{transformTemplate:transformTemplate2,viewBox:\"0 0 82 17\"}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"14px\"},children:/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"R0Y7UGx1cyBKYWthcnRhIFNhbnMtNjAw\",\"--framer-font-family\":'\"Plus Jakarta Sans\"',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"0px\",\"--framer-text-color\":\"rgba(255, 255, 255, 1)\"},children:\"Google Play\"})})}),className:\"framer-w78sje\",\"data-framer-name\":\"Google Play\",fonts:[\"GF;Plus Jakarta Sans-600\"],transformTemplate:transformTemplate1,verticalAlignment:\"top\",withExternalLayout:true})})})]})})]})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{HfSG4WHcm:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:96,intrinsicWidth:96,loading:getLoadingLazyAtYPosition(856.8),positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/hxbHjFDQyhcrYfHnhKMiY1r3I.svg\"}},jhgstC6MA:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:96,intrinsicWidth:96,loading:getLoadingLazyAtYPosition(646.8),positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/hxbHjFDQyhcrYfHnhKMiY1r3I.svg\"}},WPoaGmYBq:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:96,intrinsicWidth:96,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/hxbHjFDQyhcrYfHnhKMiY1r3I.svg\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",intrinsicHeight:96,intrinsicWidth:96,loading:getLoadingLazyAtYPosition(693.0528320312501),positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/hxbHjFDQyhcrYfHnhKMiY1r3I.svg\"},className:\"framer-1saz5v3\",\"data-framer-name\":\"Frame 922\"})})]})})})]}),/*#__PURE__*/_jsxs(MotionDivWithOptimizedAppearEffect,{animate:animation11,className:\"framer-go5s5c\",\"data-framer-appear-id\":\"go5s5c\",\"data-framer-name\":\"Guide-lines(right)\",initial:animation12,optimized:true,style:{transformPerspective:1200},children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1uxm02m\",children:[isDisplayed()&&/*#__PURE__*/_jsx(SVG,{className:\"framer-12r6hzd hidden-1b56ql2 hidden-1mx4hxu\",\"data-framer-name\":\"Vector 5\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:50,intrinsicWidth:329,svg:'<svg width=\"329\" height=\"50\" viewBox=\"-1 -1 329 50\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M326.834 0.312988H139.059C130.995 0.312988 123.271 3.55908 117.628 9.31926L89.0317 38.5108C83.3889 44.271 75.6648 47.5171 67.6012 47.5171H0.56958\" stroke=\"#E2E2E2\"/>\\n</svg>\\n',withExternalLayout:true}),isDisplayed()&&/*#__PURE__*/_jsx(SVG,{className:\"framer-14f54us hidden-1b56ql2 hidden-1mx4hxu\",\"data-framer-name\":\"Vector 4\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:91,intrinsicWidth:342,svg:'<svg width=\"342\" height=\"91\" viewBox=\"-1 -1 342 91\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M339.121 0.781738H154.788C144.76 0.781738 135.396 5.79151 129.831 14.133L89.1157 75.1654C83.551 83.5069 74.1867 88.5166 64.1594 88.5166H0.56958\" stroke=\"#E2E2E2\"/>\\n</svg>\\n',withExternalLayout:true})]}),isDisplayed2()&&/*#__PURE__*/_jsx(SVG,{className:\"framer-1uzp2lj hidden-1b56ql2\",\"data-framer-name\":\"Group 4\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:152,intrinsicWidth:446,svg:'<svg width=\"446\" height=\"152\" viewBox=\"0 0 446 152\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M445.272 43.1392H197.304C187.6 43.1392 178.494 47.8338 172.866 55.7397L113.862 138.614C108.233 146.52 99.1279 151.215 89.4231 151.215H0.192383\" stroke=\"#E2E2E2\"/>\\n<path d=\"M429.118 93.0669H177.721C169.995 93.0669 162.568 96.0473 156.985 101.387L113.59 142.895C108.007 148.235 100.579 151.215 92.8533 151.215H0.192383\" stroke=\"#E2E2E2\"/>\\n<path d=\"M429.118 0.553777H185.929C173.694 0.553777 162.686 7.98271 158.108 19.328L112.466 132.441C107.888 143.786 96.88 151.215 84.6458 151.215H0.192383\" stroke=\"#E2E2E2\"/>\\n</svg>\\n',withExternalLayout:true})]}),/*#__PURE__*/_jsx(MotionDivWithOptimizedAppearEffect,{animate:animation11,className:\"framer-118gqcm\",\"data-framer-appear-id\":\"118gqcm\",\"data-framer-name\":\"Guide-line\",initial:animation12,optimized:true,style:{transformPerspective:1200},children:isDisplayed()&&/*#__PURE__*/_jsx(SVG,{className:\"framer-kgghf8 hidden-1b56ql2 hidden-1mx4hxu\",\"data-framer-name\":\"Group 3\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:89,intrinsicWidth:340,svg:'<svg width=\"340\" height=\"89\" viewBox=\"0 0 340 89\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M0.491923 88.252H184.825C194.853 88.252 204.217 83.2422 209.782 74.9007L250.497 13.8683C256.062 5.52682 265.426 0.517057 275.453 0.517057H339.043\" stroke=\"#E2E2E2\"/>\\n<path d=\"M12.7788 47.7207H200.554C208.618 47.7207 216.342 44.4746 221.984 38.7144L250.581 9.52287C256.224 3.76269 263.948 0.516595 272.012 0.516595H339.043\" stroke=\"#E2E2E2\"/>\\n</svg>\\n',withExternalLayout:true})})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1clxl0i\",\"data-framer-name\":\"Our Mission\",id:elementId1,ref:ref2,children:[/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__spring:{damping:60,delay:0,duration:.3,ease:[.44,0,.56,1],mass:1,stiffness:500,type:\"spring\"},__framer__styleTransformEffectEnabled:true,__framer__transformTargets:[{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:.8,skewX:0,skewY:0,x:0,y:95}},{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0}}],__framer__transformTrigger:\"onInView\",__perspectiveFX:false,__targetOpacity:1,className:\"framer-1wobufo\",\"data-framer-name\":\"Mission\",style:{transformPerspective:1200},children:[/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition10},__framer__animateOnce:true,__framer__enter:animation14,__framer__exit:animation15,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-rw28dl\",\"data-framer-name\":\"Mission Text\",style:{transformPerspective:1200},children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v9\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{className:\"framer-styles-preset-1lzcxam\",\"data-styles-preset\":\"MpTKPkTbI\",style:{\"--framer-text-color\":'var(--token-8ecf3070-09f7-44e8-a71e-d4b812577923, rgb(54, 139, 139)) /* {\"name\":\"Green Cirkkle\"'},children:\"Notre mission\"})}),className:\"framer-7eme8v\",\"data-framer-name\":\"Notre mission\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1tsd87i\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v10\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{className:\"framer-styles-preset-1ux7mzk\",\"data-styles-preset\":\"pFr3xYY7b\",children:\"Nous croyons en une \\xe9pargne plus solidaire et un financement de projets plus accessible.\"})}),className:\"framer-gt2itx\",\"data-framer-name\":\"Nous croyons en une \\xe9pargne plus solidaire et un financement de projets plus accessible.\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v11\",activeLocale)??/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-lmirgo\",\"data-styles-preset\":\"l67b_BAPm\",children:\"H\\xe9rit\\xe9e du concept de tontine traditionnelle originaire d\u2019Afrique et d\u2019Asie, notre solution vous connecte \\xe0 ceux qui vous sont chers, pour mieux \\xe9pargner ensemble.\"}),/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-lmirgo\",\"data-styles-preset\":\"l67b_BAPm\",children:/*#__PURE__*/_jsx(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-lmirgo\",\"data-styles-preset\":\"l67b_BAPm\",children:\"Cirkkle, c\u2019est vos tontines sur une application mobile simple et s\\xe9curis\\xe9e mais c\u2019est surtout des projets qui voient le jour et des r\\xeaves qui se r\\xe9alisent !\"})]}),className:\"framer-1c3ema7\",\"data-framer-name\":\"H\\xe9rit\\xe9e du concept de tontine traditionnelle originaire d\u2019Afrique et d\u2019Asie, notre solution vous connecte \\xe0 ceux qui vous sont chers, pour mieux \\xe9pargner ensemble. Cirkkle, c\u2019est vos tontines sur une application mobile simple et s\\xe9curis\\xe9e mais c\u2019est surtout des projets qui voient le jour et des r\\xeaves qui se r\\xe9alisent !\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{HfSG4WHcm:{y:1204.8},jhgstC6MA:{y:900},WPoaGmYBq:{y:undefined}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:646.4000000000001,width:\"1292px\",y:1175,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{HfSG4WHcm:{__framer__styleAppearEffectEnabled:undefined,style:{}},WPoaGmYBq:{__framer__styleAppearEffectEnabled:undefined,style:{}}},children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition11},__framer__animateOnce:true,__framer__enter:animation16,__framer__exit:animation17,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-wqc9u0-container\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{HfSG4WHcm:{variant:\"r3s891yot\"},WPoaGmYBq:{variant:\"r3s891yot\"}},children:/*#__PURE__*/_jsx(CircleROUND,{height:\"100%\",id:\"pQ_NXTWys\",layoutId:\"pQ_NXTWys\",style:{height:\"100%\",width:\"100%\"},variant:\"tQhExdv9F\",width:\"100%\"})})})})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-n2e0q5\",\"data-framer-name\":\"Gradient\"})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{WPoaGmYBq:{__framer__animate:{transition:transition10},__framer__animateOnce:true,__framer__enter:animation14,__framer__exit:animation15,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,style:{transformPerspective:1200}}},children:/*#__PURE__*/_jsxs(MotionDivWithFX,{className:\"framer-9auifm\",\"data-framer-name\":\"Features\",children:[isDisplayed3()&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{WPoaGmYBq:{__framer__styleAppearEffectEnabled:undefined,style:{}}},children:/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition12},__framer__animateOnce:true,__framer__enter:animation18,__framer__exit:animation19,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-i8vjwb hidden-1t3nvjz hidden-1yfu9ea\",\"data-border\":true,\"data-framer-name\":\"Card 1\",style:{transformPerspective:1200},whileHover:animation20,children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1wjfmih\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-19fvs8y\",\"data-framer-name\":\"Ellipse 21\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-24lnj7\",\"data-framer-name\":\"Ellipse 22\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-i65yyc\",\"data-framer-name\":\"Ellipse 23\"}),/*#__PURE__*/_jsx(SVG,{className:\"framer-16zt2te\",\"data-framer-name\":\"Vector 22\",layout:\"position\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 457 120\"><path d=\"M 1.952 56.355 L 96.571 56.355 C 99.753 56.355 102.806 57.619 105.056 59.87 L 117.22 72.033 M 451.068 79.967 L 378.089 79.967 M 1.952 30.289 L 70.505 30.289 C 73.687 30.289 76.74 31.553 78.99 33.804 L 117.22 72.033 M 117.22 72.033 L 132.864 87.677 L 160.672 115.485 C 162.922 117.735 165.974 119 169.157 119 L 235.184 119 L 288.682 119 C 291.864 119 294.917 117.735 297.167 115.485 L 329.17 83.482 C 331.421 81.232 334.473 79.967 337.656 79.967 L 341.968 79.967 L 378.089 79.967 M 117.22 72.033 L 117.22 38.777 C 117.22 33.69 120.427 29.156 125.223 27.462 L 151.369 18.226 C 156.165 16.532 159.372 11.998 159.372 6.911 L 159.372 1.768 M 378.089 79.967 L 404.238 53.818 C 406.488 51.568 409.54 50.304 412.723 50.304 L 455.805 50.304\" fill=\"transparent\" stroke=\"rgb(226,226,226)\" stroke-miterlimit=\"10\" stroke-dasharray=\"\"></path></svg>',svgContentId:9052809586,withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1s2yirp\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-1t09qbs\",\"data-framer-name\":\"Group\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:112,intrinsicWidth:93,svg:'<svg width=\"93\" height=\"112\" viewBox=\"0 0 93 112\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M90.2436 13.7759L47.2093 0.73757C46.6068 0.554925 45.9646 0.554925 45.3618 0.73757L2.3266 13.7759C0.967189 14.1877 0.0361328 15.4515 0.0361328 16.885V64.6921C0.0361328 70.9102 2.52888 77.2755 7.44473 83.6112C11.1992 88.45 16.3936 93.3089 22.8831 98.0531C33.7852 106.023 44.5205 110.912 44.9722 111.116C45.3898 111.305 45.8377 111.399 46.2856 111.399C46.7334 111.399 47.1813 111.305 47.5989 111.116C48.0504 110.912 58.7855 106.023 69.6875 98.0531C76.1771 93.3089 81.3713 88.45 85.1259 83.6112C90.0418 77.2758 92.5341 70.9104 92.5341 64.6921V16.885C92.5341 15.4515 91.6035 14.1877 90.2436 13.7759Z\" fill=\"#368B68\" fill-opacity=\"0.1\"/>\\n<path d=\"M86.7529 17.129L47.136 5.12611C46.5813 4.95796 45.9901 4.95796 45.4352 5.12611L5.81756 17.129C4.5661 17.5081 3.70898 18.6716 3.70898 19.9912V64.0018C3.70898 69.7262 6.00377 75.586 10.5292 81.4185C13.9855 85.8731 18.7675 90.3461 24.7416 94.7136C34.7779 102.05 44.6607 106.551 45.0766 106.739C45.461 106.913 45.8733 107 46.2856 107C46.6979 107 47.1102 106.913 47.4947 106.739C47.9103 106.551 57.7929 102.05 67.8292 94.7136C73.8034 90.3461 78.5851 85.8731 82.0416 81.4185C86.5671 75.5862 88.8614 69.7264 88.8614 64.0018V19.9912C88.8614 18.6716 88.0047 17.5081 86.7529 17.129Z\" fill=\"#368B8B\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-uc7pyv\",\"data-framer-name\":\"Group\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:45,intrinsicWidth:33,svg:'<svg width=\"33\" height=\"45\" viewBox=\"0 0 33 45\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<g filter=\"url(#filter0_d_4003_2401)\">\\n<path d=\"M16.4522 0C9.1959 0 3.29224 5.90343 3.29224 13.16V20.676C3.29224 20.7614 3.18684 20.9053 3.10405 20.9328C2.3924 21.1701 1.81444 21.3758 1.28538 21.5797C0.654454 21.8229 0.178589 22.5221 0.178589 23.2062V40.4758C0.178589 41.1552 0.65138 41.855 1.27831 42.1034C6.12899 44.0256 11.2342 45 16.4521 45C21.67 45 26.7753 44.0254 31.6262 42.1032C32.2529 41.8548 32.7254 41.1552 32.7254 40.4758V23.2062C32.7254 22.5221 32.2496 21.8229 31.6184 21.5795C31.0891 21.3755 30.5112 21.1699 29.8001 20.9326C29.7176 20.905 29.6122 20.7611 29.6122 20.6756V13.1597C29.6118 5.90343 23.7085 0 16.4522 0ZM12.8678 28.4659C12.8678 26.4849 14.4726 24.8818 16.452 24.8818C18.4312 24.8818 20.036 26.4847 20.036 28.4659C20.036 29.7786 19.2958 30.8776 18.244 31.5006V37.4264C18.244 38.417 17.4424 39.2184 16.4519 39.2184C15.4613 39.2184 14.6598 38.417 14.6598 37.4264V31.5006C13.6081 30.8776 12.8678 29.7786 12.8678 28.4659ZM25.0871 13.1597V19.6447C22.2554 19.0353 19.3503 18.7267 16.4534 18.7265C13.5577 18.7265 10.6532 19.0352 7.8172 19.644V13.1597C7.8172 8.39838 11.6907 4.52495 16.452 4.52495C21.2132 4.52488 25.0871 8.39838 25.0871 13.1597Z\" fill=\"white\"/>\\n</g>\\n<defs>\\n<filter id=\"filter0_d_4003_2401\" x=\"-9.82141\" y=\"-6\" width=\"52.5469\" height=\"65\" filterUnits=\"userSpaceOnUse\" color-interpolation-filters=\"sRGB\">\\n<feFlood flood-opacity=\"0\" result=\"BackgroundImageFix\"/>\\n<feColorMatrix in=\"SourceAlpha\" type=\"matrix\" values=\"0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0\" result=\"hardAlpha\"/>\\n<feOffset dy=\"4\"/>\\n<feGaussianBlur stdDeviation=\"5\"/>\\n<feComposite in2=\"hardAlpha\" operator=\"out\"/>\\n<feColorMatrix type=\"matrix\" values=\"0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.18 0\"/>\\n<feBlend mode=\"normal\" in2=\"BackgroundImageFix\" result=\"effect1_dropShadow_4003_2401\"/>\\n<feBlend mode=\"normal\" in=\"SourceGraphic\" in2=\"effect1_dropShadow_4003_2401\" result=\"shape\"/>\\n</filter>\\n</defs>\\n</svg>\\n',withExternalLayout:true})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-hfsdxl\",\"data-framer-name\":\"Frame 6\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v12\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{className:\"framer-styles-preset-1o5d4n7\",\"data-styles-preset\":\"ttzUtOj6f\",style:{\"--framer-text-color\":'var(--token-8ecf3070-09f7-44e8-a71e-d4b812577923, rgb(54, 139, 139)) /* {\"name\":\"Green Cirkkle\"'},children:\"Application simple et s\\xe9curis\\xe9e\"})}),className:\"framer-17jc7tn\",\"data-framer-name\":\"Application simple et s\\xe9curis\\xe9e\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v13\",activeLocale)??/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-lmirgo\",\"data-styles-preset\":\"l67b_BAPm\",children:\"Epargnez ou empruntez en toute s\\xe9curit\\xe9, sans proc\\xe9dure ni paperasse.\"}),/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-lmirgo\",\"data-styles-preset\":\"l67b_BAPm\",children:/*#__PURE__*/_jsx(\"br\",{className:\"trailing-break\"})})]}),className:\"framer-pigbcv\",\"data-framer-name\":\"Epargnez ou empruntez en toute s\\xe9curit\\xe9, sans proc\\xe9dure ni paperasse.\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})]})}),isDisplayed3()&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{WPoaGmYBq:{__framer__styleAppearEffectEnabled:undefined,style:{}}},children:/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition14},__framer__animateOnce:true,__framer__enter:animation18,__framer__exit:animation21,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1h5c0cs hidden-1t3nvjz hidden-1yfu9ea\",\"data-border\":true,\"data-framer-name\":\"Card 2\",style:{transformPerspective:1200},whileHover:animation20,children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1536qtw\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-ygy1g8\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-1bd4uh0\",\"data-framer-name\":\"Vector 23\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:131,intrinsicWidth:455,svg:'<svg width=\"455\" height=\"131\" viewBox=\"-1 -1 455 131\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M0.628571 61.0092H42.2353C44.5908 61.0092 46.8942 61.7025 48.8585 63.0025L108.426 102.429C110.39 103.729 112.694 104.423 115.049 104.423H153.532C154.941 104.423 156.336 104.67 157.659 105.155C174.076 111.174 200.494 120.86 213.697 125.701C218.523 127.47 223.921 125.962 227.148 121.961L248.408 95.6046C250.129 93.4708 251.067 90.8121 251.067 88.0707V72.4867C251.067 69.337 252.306 66.3134 254.515 64.0687L271.144 47.1752C273.4 44.8836 276.481 43.5932 279.696 43.5932H282.707M452.81 78.5511H445.04C441.825 78.5511 438.744 77.2606 436.488 74.9691L409.13 47.1752C406.874 44.8836 403.793 43.5932 400.578 43.5932H397.356M314.528 43.5932H318.727H323.868M314.528 43.5932H282.707M314.528 43.5932H323.868M282.707 43.5932H323.868M323.868 43.5932H349.108H397.356M397.356 43.5932L390.519 36.7558L387.196 33.433C384.945 31.1826 381.893 29.9183 378.711 29.9183H364.29C361.107 29.9183 358.055 28.654 355.804 26.4036L329.806 0.405482\" stroke=\"#E2E2E2\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-dmspub\",\"data-framer-name\":\"Vector 24\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:26,intrinsicWidth:153,svg:'<svg width=\"153\" height=\"26\" viewBox=\"-1 -1 153 26\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M0.7211 0.962402H29.2762C32.4588 0.962402 35.511 2.22668 37.7615 4.47712L53.2093 19.925C55.4598 22.1754 58.512 23.4397 61.6946 23.4397H150.062\" stroke=\"#E2E2E2\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1a4x2kl\",\"data-framer-name\":\"Ellipse 23\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-o1z1ib\",\"data-framer-name\":\"Ellipse 24\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-16tw0j3\",\"data-framer-name\":\"Ellipse 25\"})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-13kdzzw\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-llqc1k\",\"data-framer-name\":\"Group\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:27,intrinsicWidth:44,svg:'<svg width=\"44\" height=\"27\" viewBox=\"0 0 44 27\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M36.8142 10.8578C36.2485 7.20639 33.1096 4.40386 29.3325 4.40386C27.9115 4.40386 26.5461 4.80033 25.3618 5.53982C23.5601 2.48616 20.3164 0.585938 16.713 0.585938C11.1464 0.585938 6.61741 5.15328 6.61741 10.7671C6.61741 10.8019 6.61741 10.8379 6.61867 10.8727C3.04105 11.4804 0.223541 14.626 0.223541 18.4029C0.223541 22.6136 3.70408 26.0388 7.87935 26.0388H35.6422C39.8175 26.0388 43.298 22.6136 43.298 18.4029C43.298 14.5937 40.4349 11.4283 36.8142 10.8578Z\" fill=\"#F8934A\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1qz410g\",\"data-framer-name\":\"Group\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:71,intrinsicWidth:118,svg:'<svg width=\"118\" height=\"71\" viewBox=\"0 0 118 71\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M100.238 29.1166C98.6882 19.1139 90.0895 11.4365 79.7421 11.4365C75.8495 11.4365 72.109 12.5226 68.8647 14.5484C63.9289 6.18309 55.0432 0.977539 45.1718 0.977539C29.9224 0.977539 17.5155 13.4895 17.5155 28.8682C17.5155 28.9635 17.5155 29.0622 17.519 29.1575C7.71831 30.8224 -9.15527e-05 39.4394 -9.15527e-05 49.7861C-9.15527e-05 61.321 9.53463 70.7041 20.9726 70.7041H97.0273C108.465 70.7041 118 61.321 118 49.7861C118 39.3511 110.157 30.6794 100.238 29.1166Z\" fill=\"#368B8B\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-9bmsem\",\"data-framer-name\":\"Group\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:27,intrinsicWidth:44,svg:'<svg width=\"44\" height=\"27\" viewBox=\"0 0 44 27\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M36.8419 11.0316C36.2762 7.38024 33.1373 4.5777 29.3601 4.5777C27.9392 4.5777 26.5737 4.97417 25.3894 5.71367C23.5877 2.66 20.3441 0.759766 16.7406 0.759766C11.174 0.759766 6.64501 5.32712 6.64501 10.9409C6.64501 10.9757 6.64501 11.0118 6.64628 11.0466C3.06864 11.6543 0.251129 14.7998 0.251129 18.5768C0.251129 22.7875 3.73167 26.2127 7.90696 26.2127H35.6699C39.8452 26.2127 43.3257 22.7875 43.3257 18.5768C43.3257 14.7676 40.4626 11.6021 36.8419 11.0316Z\" fill=\"#368B8B\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-tpw7g0\",\"data-framer-name\":\"Group\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:9,intrinsicWidth:15,svg:'<svg width=\"15\" height=\"9\" viewBox=\"0 0 15 9\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<g filter=\"url(#filter0_f_127_196)\">\\n<path d=\"M11.9679 4.00839C11.7864 2.8371 10.7795 1.9381 9.56785 1.9381C9.11203 1.9381 8.67403 2.06528 8.29413 2.30249C7.71617 1.32294 6.67568 0.713379 5.51976 0.713379C3.73409 0.713379 2.28129 2.1785 2.28129 3.9793C2.28129 3.99045 2.28129 4.00202 2.28169 4.01318C1.13406 4.20813 0.230255 5.21716 0.230255 6.42873C0.230255 7.77943 1.34675 8.87817 2.6861 8.87817H11.5919C12.9312 8.87817 14.0477 7.77943 14.0477 6.42873C14.0477 5.20682 13.1293 4.19139 11.9679 4.00839Z\" fill=\"#368B8B\"/>\\n</g>\\n<defs>\\n<filter id=\"filter0_f_127_196\" x=\"-3.76974\" y=\"-3.28662\" width=\"21.8175\" height=\"16.1646\" filterUnits=\"userSpaceOnUse\" color-interpolation-filters=\"sRGB\">\\n<feFlood flood-opacity=\"0\" result=\"BackgroundImageFix\"/>\\n<feBlend mode=\"normal\" in=\"SourceGraphic\" in2=\"BackgroundImageFix\" result=\"shape\"/>\\n<feGaussianBlur stdDeviation=\"2\" result=\"effect1_foregroundBlur_127_196\"/>\\n</filter>\\n</defs>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1lc38e9\",\"data-framer-name\":\"Group\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:12,intrinsicWidth:20,svg:'<svg width=\"20\" height=\"12\" viewBox=\"0 0 20 12\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<g filter=\"url(#filter0_f_127_198)\">\\n<path d=\"M16.47 5.25709C16.2192 3.63862 14.8279 2.3964 13.1537 2.3964C12.5238 2.3964 11.9186 2.57213 11.3937 2.89991C10.595 1.54638 9.15731 0.704102 7.56008 0.704102C5.09268 0.704102 3.08521 2.72858 3.08521 5.21689C3.08521 5.23231 3.08521 5.24829 3.08577 5.26371C1.49999 5.53309 0.251129 6.92735 0.251129 8.60149C0.251129 10.4679 1.79388 11.9861 3.64457 11.9861H15.9505C17.8012 11.9861 19.3439 10.4679 19.3439 8.60149C19.3439 6.91306 18.0748 5.50996 16.47 5.25709Z\" fill=\"#F6781D\"/>\\n</g>\\n<defs>\\n<filter id=\"filter0_f_127_198\" x=\"-1.74887\" y=\"-1.2959\" width=\"23.0928\" height=\"15.2817\" filterUnits=\"userSpaceOnUse\" color-interpolation-filters=\"sRGB\">\\n<feFlood flood-opacity=\"0\" result=\"BackgroundImageFix\"/>\\n<feBlend mode=\"normal\" in=\"SourceGraphic\" in2=\"BackgroundImageFix\" result=\"shape\"/>\\n<feGaussianBlur stdDeviation=\"1\" result=\"effect1_foregroundBlur_127_198\"/>\\n</filter>\\n</defs>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-jz4nk\",\"data-framer-name\":\"Vector\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:30,intrinsicWidth:39,svg:'<svg width=\"39\" height=\"30\" viewBox=\"0 0 39 30\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<g filter=\"url(#filter0_d_127_200)\">\\n<path d=\"M14.9204 28.6628C14.5577 29.0181 14.0628 29.2163 13.5487 29.2163C13.0346 29.2163 12.5397 29.0181 12.177 28.6628L1.22219 17.9945C0.0853195 16.8876 0.0853195 15.0926 1.22219 13.9877L2.5939 12.6517C3.73112 11.5448 5.5725 11.5448 6.70937 12.6517L13.5487 19.3115L32.0296 1.31654C33.1669 0.20959 35.01 0.20959 36.1451 1.31654L37.5168 2.6525C38.6537 3.75945 38.6537 5.5541 37.5168 6.65932L14.9204 28.6628Z\" fill=\"white\"/>\\n</g>\\n<defs>\\n<filter id=\"filter0_d_127_200\" x=\"-7.63046\" y=\"-3.51367\" width=\"53.9999\" height=\"44.73\" filterUnits=\"userSpaceOnUse\" color-interpolation-filters=\"sRGB\">\\n<feFlood flood-opacity=\"0\" result=\"BackgroundImageFix\"/>\\n<feColorMatrix in=\"SourceAlpha\" type=\"matrix\" values=\"0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0\" result=\"hardAlpha\"/>\\n<feOffset dy=\"4\"/>\\n<feGaussianBlur stdDeviation=\"4\"/>\\n<feComposite in2=\"hardAlpha\" operator=\"out\"/>\\n<feColorMatrix type=\"matrix\" values=\"0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.15 0\"/>\\n<feBlend mode=\"normal\" in2=\"BackgroundImageFix\" result=\"effect1_dropShadow_127_200\"/>\\n<feBlend mode=\"normal\" in=\"SourceGraphic\" in2=\"effect1_dropShadow_127_200\" result=\"shape\"/>\\n</filter>\\n</defs>\\n</svg>\\n',withExternalLayout:true})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-b9k5ah\",\"data-framer-name\":\"Frame 6\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v14\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{className:\"framer-styles-preset-1o5d4n7\",\"data-styles-preset\":\"ttzUtOj6f\",style:{\"--framer-text-color\":'var(--token-8ecf3070-09f7-44e8-a71e-d4b812577923, rgb(54, 139, 139)) /* {\"name\":\"Green Cirkkle\"'},children:\"Discr\\xe9tion et autonomie garanties\"})}),className:\"framer-qnmd16\",\"data-framer-name\":\"Discr\\xe9tion et autonomie garanties\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v15\",activeLocale)??/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-lmirgo\",\"data-styles-preset\":\"l67b_BAPm\",children:\"Vos tontines ne regardent que vous et vos proches. Elles restent strictement confidentielles, tout comme vos donn\\xe9es.\"}),/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-lmirgo\",\"data-styles-preset\":\"l67b_BAPm\",children:/*#__PURE__*/_jsx(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-lmirgo\",\"data-styles-preset\":\"l67b_BAPm\",children:/*#__PURE__*/_jsx(\"br\",{className:\"trailing-break\"})})]}),className:\"framer-8npd84\",\"data-framer-name\":\"Vos tontines ne regardent que vous et vos proches. Elles restent strictement confidentielles, tout comme vos donn\\xe9es.\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})]})}),isDisplayed3()&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{WPoaGmYBq:{__framer__styleAppearEffectEnabled:undefined,style:{}}},children:/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition15},__framer__animateOnce:true,__framer__enter:animation18,__framer__exit:animation22,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1om7j0f hidden-1t3nvjz hidden-1yfu9ea\",\"data-border\":true,\"data-framer-name\":\"Card 3\",style:{transformPerspective:1200},whileHover:animation20,children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-14i8a9p\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1ifnu9r\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-1i18ko2\",\"data-framer-name\":\"Vector 24\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:114,intrinsicWidth:447,svg:'<svg width=\"447\" height=\"114\" viewBox=\"-1 -1 447 114\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M0.329346 61.5535H28.7047C31.9932 61.5535 35.1376 62.9031 37.403 65.2868L52.7843 81.4711C55.0497 83.8548 58.1941 85.2044 61.4826 85.2044H95.4899M419.033 36.3915H410.407H392.368M392.368 36.3915H379.3C376.118 36.3915 373.066 37.6558 370.815 39.9062L352.683 58.0388C350.432 60.2892 347.38 61.5535 344.197 61.5535H324.487M392.368 36.3915L374.979 19.0026C372.729 16.7521 369.677 15.4878 366.494 15.4878H326.228C323.046 15.4878 319.994 14.2236 317.743 11.9731L305.851 0.0810547M291.335 61.5535H264.698C261.573 61.5535 258.571 62.7727 256.331 64.9518L243.312 77.615M291.335 61.5535L266.388 36.6067C264.137 34.3562 261.085 33.0919 257.902 33.0919H188.218C185.036 33.0919 181.983 31.8277 179.733 29.5772L153.854 3.6979M291.335 61.5535H301.199M95.4899 85.2044H134.647H145.034C148.217 85.2044 151.269 86.4687 153.52 88.7191L157.058 92.2575C159.308 94.5079 162.361 95.7722 165.543 95.7722H220.547C223.781 95.7722 226.879 94.4662 229.138 92.1503L243.312 77.615M95.4899 85.2044L71.298 61.0125C69.0475 58.762 67.7832 55.7098 67.7832 52.5272V47.3986M301.199 61.5535H317.384H324.487M301.199 61.5535H324.487M324.487 61.5535L359.697 96.7632C361.947 99.0137 364.999 100.278 368.182 100.278H404.449C406.928 100.278 409.346 99.5103 411.371 98.0805L426.494 87.4018C428.519 85.972 430.937 85.2044 433.416 85.2044H444.826M243.312 77.615C249.271 83.2268 259.092 93.1943 264.282 98.4973C266.506 100.77 269.524 102.076 272.703 102.107C276.408 102.144 281.597 102.176 286.152 102.137C289.46 102.108 292.661 103.372 295 105.711L301.199 111.911\" stroke=\"#E2E2E2\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-2ibm5d\",\"data-framer-name\":\"user (2) 3\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:20,intrinsicWidth:20,svg:'<svg width=\"20\" height=\"20\" viewBox=\"0 0 20 20\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<g clip-path=\"url(#clip0_127_209)\">\\n<path d=\"M10 0.553711C4.76131 0.553711 0.5 4.81502 0.5 10.0537C0.5 15.2924 4.76131 19.5537 10 19.5537C15.2387 19.5537 19.5 15.2924 19.5 10.0537C19.5 4.81502 15.2387 0.553711 10 0.553711ZM10 18.7937C7.82791 18.7937 5.84126 17.9911 4.31139 16.6748C4.70052 16.4811 5.10635 16.3245 5.50687 16.1824C6.75174 15.7431 7.73518 15.3958 7.73518 13.8469C7.73518 13.1163 7.33903 12.473 6.95551 11.8502L6.95466 11.8488C6.62101 11.307 6.30639 10.7962 6.30639 10.2673C6.30639 9.87815 6.37326 9.61671 6.42722 9.40619C6.50779 9.09154 6.54805 8.93271 6.28509 8.40832C5.65961 7.16571 6.44318 4.69801 8.25044 3.58993C9.99766 2.51984 11.3018 2.57988 12.3407 3.78297C12.6736 3.83084 13.0833 4.0201 13.423 4.5711C14.0819 5.6404 14.1336 7.57536 13.7141 8.4091C13.4519 8.93275 13.4922 9.09158 13.5727 9.40623C13.6267 9.61675 13.6936 9.87818 13.6936 10.2673C13.6936 10.7959 13.3793 11.3064 13.0459 11.8478L13.0453 11.8489L13.0444 11.8503C12.6609 12.4731 12.2648 13.1163 12.2648 13.8469C12.2648 15.3958 13.2482 15.7431 14.4931 16.1824C14.8936 16.3245 15.2994 16.4811 15.6886 16.6749C14.1587 17.9911 12.1721 18.7937 10 18.7937Z\" fill=\"#F6781D\"/>\\n<path d=\"M10 18.7937C7.82791 18.7937 5.84126 17.9911 4.31139 16.6748C4.70052 16.4811 5.10635 16.3245 5.50687 16.1824C6.75174 15.7431 7.73518 15.3958 7.73518 13.8469C7.73518 13.1163 7.33903 12.473 6.95551 11.8502L6.95466 11.8488C6.62101 11.307 6.30639 10.7962 6.30639 10.2673C6.30639 9.87815 6.37326 9.61671 6.42722 9.40619C6.50779 9.09154 6.54805 8.93271 6.28509 8.40832C5.65961 7.16571 6.44318 4.69801 8.25044 3.58993C9.99766 2.51984 11.3018 2.57988 12.3407 3.78297C12.6736 3.83084 13.0833 4.0201 13.423 4.5711C14.0819 5.6404 14.1336 7.57536 13.7141 8.4091C13.4519 8.93275 13.4922 9.09158 13.5727 9.40623C13.6267 9.61675 13.6936 9.87818 13.6936 10.2673C13.6936 10.7959 13.3793 11.3064 13.0459 11.8478L13.0453 11.8489L13.0444 11.8503C12.6609 12.4731 12.2648 13.1163 12.2648 13.8469C12.2648 15.3958 13.2482 15.7431 14.4931 16.1824C14.8936 16.3245 15.2994 16.4811 15.6886 16.6749C14.1587 17.9911 12.1721 18.7937 10 18.7937Z\" fill=\"white\"/>\\n</g>\\n<defs>\\n<clipPath id=\"clip0_127_209\">\\n<rect width=\"19\" height=\"19\" fill=\"white\" transform=\"translate(0.5 0.553711)\"/>\\n</clipPath>\\n</defs>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-81otby\",\"data-framer-name\":\"user (2) 4\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:20,intrinsicWidth:19,svg:'<svg width=\"19\" height=\"20\" viewBox=\"0 0 19 20\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<g clip-path=\"url(#clip0_127_213)\">\\n<path d=\"M9.5 0.553711C4.26131 0.553711 0 4.81502 0 10.0537C0 15.2924 4.26131 19.5537 9.5 19.5537C14.7387 19.5537 19 15.2924 19 10.0537C19 4.81502 14.7387 0.553711 9.5 0.553711ZM9.5 18.7937C7.32791 18.7937 5.34126 17.9911 3.81139 16.6748C4.20052 16.4811 4.60635 16.3245 5.00687 16.1824C6.25174 15.7431 7.23518 15.3958 7.23518 13.8469C7.23518 13.1163 6.83903 12.473 6.45551 11.8502L6.45466 11.8488C6.12101 11.307 5.80639 10.7962 5.80639 10.2673C5.80639 9.87815 5.87326 9.61671 5.92722 9.40619C6.00779 9.09154 6.04805 8.93271 5.78509 8.40832C5.15961 7.16571 5.94318 4.69801 7.75044 3.58993C9.49766 2.51984 10.8018 2.57988 11.8407 3.78297C12.1736 3.83084 12.5833 4.0201 12.923 4.5711C13.5819 5.6404 13.6336 7.57536 13.2141 8.4091C12.9519 8.93275 12.9922 9.09158 13.0727 9.40623C13.1267 9.61675 13.1936 9.87818 13.1936 10.2673C13.1936 10.7959 12.8793 11.3064 12.5459 11.8478L12.5453 11.8489L12.5444 11.8503C12.1609 12.4731 11.7648 13.1163 11.7648 13.8469C11.7648 15.3958 12.7482 15.7431 13.9931 16.1824C14.3936 16.3245 14.7994 16.4811 15.1886 16.6749C13.6587 17.9911 11.6721 18.7937 9.5 18.7937Z\" fill=\"#368B8B\"/>\\n<path d=\"M9.5 18.7937C7.32791 18.7937 5.34126 17.9911 3.81139 16.6748C4.20052 16.4811 4.60635 16.3245 5.00687 16.1824C6.25174 15.7431 7.23518 15.3958 7.23518 13.8469C7.23518 13.1163 6.83903 12.473 6.45551 11.8502L6.45466 11.8488C6.12101 11.307 5.80639 10.7962 5.80639 10.2673C5.80639 9.87815 5.87326 9.61671 5.92722 9.40619C6.00779 9.09154 6.04805 8.93271 5.78509 8.40832C5.15961 7.16571 5.94318 4.69801 7.75044 3.58993C9.49766 2.51984 10.8018 2.57988 11.8407 3.78297C12.1736 3.83084 12.5833 4.0201 12.923 4.5711C13.5819 5.6404 13.6336 7.57536 13.2141 8.4091C12.9519 8.93275 12.9922 9.09158 13.0727 9.40623C13.1267 9.61675 13.1936 9.87818 13.1936 10.2673C13.1936 10.7959 12.8793 11.3064 12.5459 11.8478L12.5453 11.8489L12.5444 11.8503C12.1609 12.4731 11.7648 13.1163 11.7648 13.8469C11.7648 15.3958 12.7482 15.7431 13.9931 16.1824C14.3936 16.3245 14.7994 16.4811 15.1886 16.6749C13.6587 17.9911 11.6721 18.7937 9.5 18.7937Z\" fill=\"white\"/>\\n</g>\\n<defs>\\n<clipPath id=\"clip0_127_213\">\\n<rect width=\"19\" height=\"19\" fill=\"white\" transform=\"translate(0 0.553711)\"/>\\n</clipPath>\\n</defs>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-8qatzn\",\"data-framer-name\":\"user (2) 6\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:44,intrinsicWidth:43,svg:'<svg width=\"43\" height=\"44\" viewBox=\"0 0 43 44\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<g clip-path=\"url(#clip0_127_217)\">\\n<path d=\"M21.5 0.553711C9.64401 0.553711 0 10.1977 0 22.0537C0 33.9097 9.64401 43.5537 21.5 43.5537C33.356 43.5537 43 33.9097 43 22.0537C43 10.1977 33.356 0.553711 21.5 0.553711ZM21.5 41.8337C16.5842 41.8337 12.0881 40.0174 8.62578 37.0384C9.50644 36.5998 10.4249 36.2455 11.3313 35.9238C14.1487 34.9297 16.3743 34.1436 16.3743 30.6383C16.3743 28.9848 15.4778 27.529 14.6098 26.1195L14.6079 26.1164C13.8528 24.89 13.1408 23.7342 13.1408 22.537C13.1408 21.6564 13.2921 21.0647 13.4142 20.5883C13.5966 19.8762 13.6877 19.5167 13.0926 18.3299C11.677 15.5177 13.4503 9.93292 17.5405 7.42514C21.4947 5.00337 24.4463 5.13926 26.7975 7.86203C27.5508 7.97037 28.4779 8.39869 29.2468 9.64569C30.738 12.0657 30.855 16.4448 29.9056 18.3317C29.3121 19.5168 29.4033 19.8762 29.5857 20.5884C29.7078 21.0648 29.8591 21.6565 29.8591 22.5371C29.8591 23.7335 29.1479 24.8886 28.3934 26.1141L28.392 26.1165L28.3901 26.1196C27.5221 27.5291 26.6256 28.9849 26.6256 30.6383C26.6256 34.1437 28.8512 34.9298 31.6686 35.9239C32.575 36.2456 33.4935 36.5999 34.3741 37.0385C30.9119 40.0174 26.4158 41.8337 21.5 41.8337Z\" fill=\"#368B8B\"/>\\n<path d=\"M21.5 41.8337C16.5842 41.8337 12.0881 40.0174 8.62578 37.0384C9.50644 36.5998 10.4249 36.2455 11.3313 35.9238C14.1487 34.9297 16.3743 34.1436 16.3743 30.6383C16.3743 28.9848 15.4778 27.529 14.6098 26.1195L14.6079 26.1164C13.8528 24.89 13.1408 23.7342 13.1408 22.537C13.1408 21.6564 13.2921 21.0647 13.4142 20.5883C13.5966 19.8762 13.6877 19.5167 13.0926 18.3299C11.677 15.5177 13.4503 9.93292 17.5405 7.42514C21.4947 5.00337 24.4463 5.13926 26.7975 7.86203C27.5508 7.97037 28.4779 8.39869 29.2468 9.64569C30.738 12.0657 30.855 16.4448 29.9056 18.3317C29.3121 19.5168 29.4033 19.8762 29.5857 20.5884C29.7078 21.0648 29.8591 21.6565 29.8591 22.5371C29.8591 23.7335 29.1479 24.8886 28.3934 26.1141L28.392 26.1165L28.3901 26.1196C27.5221 27.5291 26.6256 28.9849 26.6256 30.6383C26.6256 34.1437 28.8512 34.9298 31.6686 35.9239C32.575 36.2456 33.4935 36.5999 34.3741 37.0385C30.9119 40.0174 26.4158 41.8337 21.5 41.8337Z\" fill=\"white\"/>\\n</g>\\n<defs>\\n<clipPath id=\"clip0_127_217\">\\n<rect width=\"43\" height=\"43\" fill=\"white\" transform=\"translate(0 0.553711)\"/>\\n</clipPath>\\n</defs>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-4jfy9n\",\"data-framer-name\":\"user (2) 5\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:13,intrinsicWidth:13,svg:'<svg width=\"13\" height=\"13\" viewBox=\"0 0 13 13\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<g clip-path=\"url(#clip0_127_221)\">\\n<path d=\"M6.5 0.553711C3.19135 0.553711 0.5 3.24506 0.5 6.55371C0.5 9.86236 3.19135 12.5537 6.5 12.5537C9.80865 12.5537 12.5 9.86236 12.5 6.55371C12.5 3.24506 9.80865 0.553711 6.5 0.553711ZM6.5 12.0737C5.12816 12.0737 3.87343 11.5668 2.9072 10.7355C3.15296 10.6131 3.40927 10.5142 3.66223 10.4244C4.44847 10.147 5.06959 9.92763 5.06959 8.9494C5.06959 8.48798 4.81939 8.08169 4.57717 7.68835L4.57662 7.68748C4.3659 7.34524 4.16719 7.02267 4.16719 6.68859C4.16719 6.44283 4.20943 6.27771 4.24351 6.14475C4.29439 5.94602 4.31982 5.84571 4.15374 5.51452C3.7587 4.72971 4.25359 3.17116 5.39502 2.47132C6.49852 1.79548 7.32221 1.8334 7.97837 2.59324C8.1886 2.62348 8.44733 2.74301 8.6619 3.09101C9.07805 3.76636 9.1107 4.98844 8.84574 5.51501C8.68013 5.84573 8.70559 5.94605 8.75647 6.14477C8.79055 6.27773 8.83278 6.44285 8.83278 6.68862C8.83278 7.02248 8.63431 7.34486 8.42375 7.68685L8.42335 7.6875L8.42281 7.68838C8.18059 8.08172 7.93039 8.488 7.93039 8.94942C7.93039 9.92766 8.55151 10.147 9.33774 10.4245C9.5907 10.5142 9.84702 10.6131 10.0928 10.7355C9.12657 11.5668 7.87184 12.0737 6.5 12.0737Z\" fill=\"#F6781D\"/>\\n<path d=\"M6.5 12.0737C5.12816 12.0737 3.87343 11.5668 2.9072 10.7355C3.15296 10.6131 3.40927 10.5142 3.66223 10.4244C4.44847 10.147 5.06959 9.92763 5.06959 8.9494C5.06959 8.48798 4.81939 8.08169 4.57717 7.68835L4.57662 7.68748C4.3659 7.34524 4.16719 7.02267 4.16719 6.68859C4.16719 6.44283 4.20943 6.27771 4.24351 6.14475C4.29439 5.94602 4.31982 5.84571 4.15374 5.51452C3.7587 4.72971 4.25359 3.17116 5.39502 2.47132C6.49852 1.79548 7.32221 1.8334 7.97837 2.59324C8.1886 2.62348 8.44733 2.74301 8.6619 3.09101C9.07805 3.76636 9.1107 4.98844 8.84574 5.51501C8.68013 5.84573 8.70559 5.94605 8.75647 6.14477C8.79055 6.27773 8.83278 6.44285 8.83278 6.68862C8.83278 7.02248 8.63431 7.34486 8.42375 7.68685L8.42335 7.6875L8.42281 7.68838C8.18059 8.08172 7.93039 8.488 7.93039 8.94942C7.93039 9.92766 8.55151 10.147 9.33774 10.4245C9.5907 10.5142 9.84702 10.6131 10.0928 10.7355C9.12657 11.5668 7.87184 12.0737 6.5 12.0737Z\" fill=\"white\"/>\\n</g>\\n<defs>\\n<clipPath id=\"clip0_127_221\">\\n<rect width=\"12\" height=\"12\" fill=\"white\" transform=\"translate(0.5 0.553711)\"/>\\n</clipPath>\\n</defs>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1stlz6j\",\"data-framer-name\":\"user (2) 9\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:13,intrinsicWidth:12,svg:'<svg width=\"12\" height=\"13\" viewBox=\"0 0 12 13\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<g clip-path=\"url(#clip0_127_225)\">\\n<path d=\"M6 0.553711C2.69135 0.553711 0 3.24506 0 6.55371C0 9.86236 2.69135 12.5537 6 12.5537C9.30865 12.5537 12 9.86236 12 6.55371C12 3.24506 9.30865 0.553711 6 0.553711ZM6 12.0737C4.62816 12.0737 3.37343 11.5668 2.4072 10.7355C2.65296 10.6131 2.90927 10.5142 3.16223 10.4244C3.94847 10.147 4.56959 9.92763 4.56959 8.9494C4.56959 8.48798 4.31939 8.08169 4.07717 7.68835L4.07662 7.68748C3.8659 7.34524 3.66719 7.02267 3.66719 6.68859C3.66719 6.44283 3.70943 6.27771 3.74351 6.14475C3.79439 5.94602 3.81982 5.84571 3.65374 5.51452C3.2587 4.72971 3.75359 3.17116 4.89502 2.47132C5.99852 1.79548 6.82221 1.8334 7.47837 2.59324C7.6886 2.62348 7.94733 2.74301 8.1619 3.09101C8.57805 3.76636 8.6107 4.98844 8.34574 5.51501C8.18013 5.84573 8.20559 5.94605 8.25647 6.14477C8.29055 6.27773 8.33278 6.44285 8.33278 6.68862C8.33278 7.02248 8.13431 7.34486 7.92375 7.68685L7.92335 7.6875L7.92281 7.68838C7.68059 8.08172 7.43039 8.488 7.43039 8.94942C7.43039 9.92766 8.05151 10.147 8.83774 10.4245C9.0907 10.5142 9.34702 10.6131 9.59278 10.7355C8.62657 11.5668 7.37184 12.0737 6 12.0737Z\" fill=\"#368B8B\"/>\\n<path d=\"M6 12.0737C4.62816 12.0737 3.37343 11.5668 2.4072 10.7355C2.65296 10.6131 2.90927 10.5142 3.16223 10.4244C3.94847 10.147 4.56959 9.92763 4.56959 8.9494C4.56959 8.48798 4.31939 8.08169 4.07717 7.68835L4.07662 7.68748C3.8659 7.34524 3.66719 7.02267 3.66719 6.68859C3.66719 6.44283 3.70943 6.27771 3.74351 6.14475C3.79439 5.94602 3.81982 5.84571 3.65374 5.51452C3.2587 4.72971 3.75359 3.17116 4.89502 2.47132C5.99852 1.79548 6.82221 1.8334 7.47837 2.59324C7.6886 2.62348 7.94733 2.74301 8.1619 3.09101C8.57805 3.76636 8.6107 4.98844 8.34574 5.51501C8.18013 5.84573 8.20559 5.94605 8.25647 6.14477C8.29055 6.27773 8.33278 6.44285 8.33278 6.68862C8.33278 7.02248 8.13431 7.34486 7.92375 7.68685L7.92335 7.6875L7.92281 7.68838C7.68059 8.08172 7.43039 8.488 7.43039 8.94942C7.43039 9.92766 8.05151 10.147 8.83774 10.4245C9.0907 10.5142 9.34702 10.6131 9.59278 10.7355C8.62657 11.5668 7.37184 12.0737 6 12.0737Z\" fill=\"white\"/>\\n</g>\\n<defs>\\n<clipPath id=\"clip0_127_225\">\\n<rect width=\"12\" height=\"12\" fill=\"white\" transform=\"translate(0 0.553711)\"/>\\n</clipPath>\\n</defs>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1bygarh\",\"data-framer-name\":\"Vector 25\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:56,intrinsicWidth:67,svg:'<svg width=\"67\" height=\"56\" viewBox=\"-1 -1 67 56\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M65 53.5538V35.5854C65 32.4028 63.7357 29.3506 61.4852 27.1002L55.2953 20.9102C53.0449 18.6598 49.9926 17.3955 46.81 17.3955H22.1481C18.9655 17.3955 15.9132 16.1312 13.6628 13.8808L0.0700684 0.288086\" stroke=\"#E2E2E2\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-cko5qm\",\"data-framer-name\":\"user (2) 7\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:14,intrinsicWidth:15,svg:'<svg width=\"15\" height=\"14\" viewBox=\"0 0 15 14\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<g clip-path=\"url(#clip0_127_230)\">\\n<path d=\"M7.53491 0.175293C3.67482 0.175293 0.534912 3.09092 0.534912 6.67529C0.534912 10.2597 3.67482 13.1753 7.53491 13.1753C11.395 13.1753 14.5349 10.2597 14.5349 6.67529C14.5349 3.09092 11.395 0.175293 7.53491 0.175293ZM7.53491 12.6553C5.93443 12.6553 4.47058 12.1062 3.34331 11.2055C3.63003 11.0729 3.92906 10.9658 4.22419 10.8686C5.14146 10.568 5.8661 10.3304 5.8661 9.27062C5.8661 8.77075 5.5742 8.3306 5.29161 7.90449L5.29097 7.90354C5.04513 7.53279 4.81331 7.18333 4.81331 6.82142C4.81331 6.55517 4.86258 6.37629 4.90234 6.23225C4.9617 6.01696 4.99137 5.90829 4.79761 5.5495C4.33673 4.69929 4.9141 3.01087 6.24576 2.2527C7.53319 1.52054 8.49416 1.56162 9.25967 2.38478C9.50495 2.41754 9.8068 2.54703 10.0571 2.92403C10.5426 3.65566 10.5807 4.97958 10.2716 5.55003C10.0784 5.90832 10.1081 6.01699 10.1675 6.23228C10.2072 6.37632 10.2565 6.5552 10.2565 6.82144C10.2565 7.18313 10.0249 7.53237 9.77929 7.90286L9.77882 7.90356L9.77819 7.90452C9.4956 8.33063 9.2037 8.77077 9.2037 9.27065C9.2037 10.3304 9.92834 10.5681 10.8456 10.8686C11.1407 10.9659 11.4398 11.073 11.7265 11.2056C10.5992 12.1062 9.1354 12.6553 7.53491 12.6553Z\" fill=\"#368B8B\"/>\\n<path d=\"M7.53491 12.6553C5.93443 12.6553 4.47058 12.1062 3.34331 11.2055C3.63003 11.0729 3.92906 10.9658 4.22419 10.8686C5.14146 10.568 5.8661 10.3304 5.8661 9.27062C5.8661 8.77075 5.5742 8.3306 5.29161 7.90449L5.29097 7.90354C5.04513 7.53279 4.81331 7.18333 4.81331 6.82142C4.81331 6.55517 4.86258 6.37629 4.90234 6.23225C4.9617 6.01696 4.99137 5.90829 4.79761 5.5495C4.33673 4.69929 4.9141 3.01087 6.24576 2.2527C7.53319 1.52054 8.49416 1.56162 9.25967 2.38478C9.50495 2.41754 9.8068 2.54703 10.0571 2.92403C10.5426 3.65566 10.5807 4.97958 10.2716 5.55003C10.0784 5.90832 10.1081 6.01699 10.1675 6.23228C10.2072 6.37632 10.2565 6.5552 10.2565 6.82144C10.2565 7.18313 10.0249 7.53237 9.77929 7.90286L9.77882 7.90356L9.77819 7.90452C9.4956 8.33063 9.2037 8.77077 9.2037 9.27065C9.2037 10.3304 9.92834 10.5681 10.8456 10.8686C11.1407 10.9659 11.4398 11.073 11.7265 11.2056C10.5992 12.1062 9.1354 12.6553 7.53491 12.6553Z\" fill=\"white\"/>\\n</g>\\n<defs>\\n<clipPath id=\"clip0_127_230\">\\n<rect width=\"14\" height=\"13\" fill=\"white\" transform=\"translate(0.534912 0.175293)\"/>\\n</clipPath>\\n</defs>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-gvx4db\",\"data-framer-name\":\"user (2) 8\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:14,intrinsicWidth:15,svg:'<svg width=\"15\" height=\"14\" viewBox=\"0 0 15 14\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<g clip-path=\"url(#clip0_127_234)\">\\n<path d=\"M7.74341 0.553711C3.88332 0.553711 0.743408 3.46934 0.743408 7.05371C0.743408 10.6381 3.88332 13.5537 7.74341 13.5537C11.6035 13.5537 14.7434 10.6381 14.7434 7.05371C14.7434 3.46934 11.6035 0.553711 7.74341 0.553711ZM7.74341 13.0337C6.14292 13.0337 4.67908 12.4846 3.5518 11.584C3.83853 11.4514 4.13756 11.3442 4.43268 11.247C5.34996 10.9464 6.07459 10.7088 6.07459 9.64904C6.07459 9.14917 5.78269 8.70902 5.5001 8.28291L5.49947 8.28196C5.25362 7.9112 5.0218 7.56175 5.0218 7.19983C5.0218 6.93359 5.07108 6.75471 5.11083 6.61067C5.1702 6.39538 5.19987 6.28671 5.00611 5.92792C4.54523 5.07771 5.12259 3.38929 6.45426 2.63112C7.74169 1.89896 8.70265 1.94004 9.46817 2.7632C9.71344 2.79596 10.0153 2.92545 10.2656 3.30245C10.7511 4.03408 10.7892 5.358 10.4801 5.92845C10.2869 6.28674 10.3166 6.39541 10.376 6.6107C10.4157 6.75474 10.465 6.93361 10.465 7.19986C10.465 7.56155 10.2334 7.91078 9.98779 8.28128L9.98732 8.28198L9.98669 8.28294C9.70409 8.70905 9.4122 9.14919 9.4122 9.64907C9.4122 10.7088 10.1368 10.9465 11.0541 11.247C11.3492 11.3443 11.6483 11.4514 11.935 11.584C10.8077 12.4846 9.34389 13.0337 7.74341 13.0337Z\" fill=\"#F6781D\"/>\\n<path d=\"M7.74341 13.0337C6.14292 13.0337 4.67908 12.4846 3.5518 11.584C3.83853 11.4514 4.13756 11.3442 4.43268 11.247C5.34996 10.9464 6.07459 10.7088 6.07459 9.64904C6.07459 9.14917 5.78269 8.70902 5.5001 8.28291L5.49947 8.28196C5.25362 7.9112 5.0218 7.56175 5.0218 7.19983C5.0218 6.93359 5.07108 6.75471 5.11083 6.61067C5.1702 6.39538 5.19987 6.28671 5.00611 5.92792C4.54523 5.07771 5.12259 3.38929 6.45426 2.63112C7.74169 1.89896 8.70265 1.94004 9.46817 2.7632C9.71344 2.79596 10.0153 2.92545 10.2656 3.30245C10.7511 4.03408 10.7892 5.358 10.4801 5.92845C10.2869 6.28674 10.3166 6.39541 10.376 6.6107C10.4157 6.75474 10.465 6.93361 10.465 7.19986C10.465 7.56155 10.2334 7.91078 9.98779 8.28128L9.98732 8.28198L9.98669 8.28294C9.70409 8.70905 9.4122 9.14919 9.4122 9.64907C9.4122 10.7088 10.1368 10.9465 11.0541 11.247C11.3492 11.3443 11.6483 11.4514 11.935 11.584C10.8077 12.4846 9.34389 13.0337 7.74341 13.0337Z\" fill=\"white\"/>\\n</g>\\n<defs>\\n<clipPath id=\"clip0_127_234\">\\n<rect width=\"14\" height=\"13\" fill=\"white\" transform=\"translate(0.743408 0.553711)\"/>\\n</clipPath>\\n</defs>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-s3j180\",\"data-framer-name\":\"Vector 26\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:40,intrinsicWidth:57,svg:'<svg width=\"57\" height=\"40\" viewBox=\"-1 -1 57 40\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M0.491211 0.553711V19.7663C0.491211 24.5889 3.37828 28.943 7.82064 30.8201L21.2163 36.4801C22.6942 37.1046 24.2824 37.4264 25.8868 37.4264H54.5062\" stroke=\"#E2E2E2\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1m7wxvr\",\"data-framer-name\":\"user 1\"}),/*#__PURE__*/_jsx(SVG,{className:\"framer-enfnjf\",\"data-framer-name\":\"Group\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:41,intrinsicWidth:40,svg:'<svg width=\"40\" height=\"41\" viewBox=\"0 0 40 41\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M19.9509 0.8125C9.06481 0.8125 0.209717 9.66759 0.209717 20.5537C0.209717 31.4382 9.06481 40.2949 19.9509 40.2949C30.8354 40.2949 39.6921 31.4382 39.6921 20.5537C39.6921 9.66759 30.8354 0.8125 19.9509 0.8125ZM29.2878 33.2892C30.12 33.5845 30.9634 33.9099 31.772 34.311C28.5929 37.0479 24.4646 38.7156 19.9509 38.7156C15.4357 38.7156 11.309 37.0479 8.12988 34.3109C8.93849 33.9098 9.78027 33.5845 10.6141 33.2891C10.6153 33.2887 10.6165 33.2883 10.6177 33.2879C13.056 32.4261 15.0109 31.7353 15.2257 28.9571C11.3359 28.5022 8.76159 27.6589 8.64793 27.621C8.40633 27.5405 8.21994 27.3493 8.14252 27.1093C8.06672 26.8677 8.11252 26.6039 8.26251 26.4002C8.28464 26.3702 10.4751 23.3522 10.4751 18.1863C10.4751 10.274 14.0175 5.55193 19.9509 5.55193C25.8843 5.55193 29.4267 10.274 29.4267 18.1863C29.4267 23.3522 31.6172 26.3702 31.6393 26.4002C31.7894 26.6039 31.8336 26.8677 31.7578 27.1093C31.682 27.3494 31.4941 27.5405 31.254 27.621C31.1403 27.6589 28.566 28.5022 24.6762 28.9571C24.8908 31.7353 26.8458 32.4262 29.2841 33.2879C29.2853 33.2883 29.2865 33.2888 29.2878 33.2892Z\" fill=\"#368B8B\"/>\\n<path d=\"M29.2878 33.2892C30.12 33.5845 30.9634 33.9099 31.772 34.311C28.5929 37.0479 24.4646 38.7156 19.9509 38.7156C15.4357 38.7156 11.309 37.0479 8.12988 34.3109C8.93849 33.9098 9.78027 33.5845 10.6141 33.2891L10.6177 33.2879C13.056 32.4261 15.0109 31.7353 15.2257 28.9571C11.3359 28.5022 8.76159 27.6589 8.64793 27.621C8.40633 27.5405 8.21994 27.3493 8.14252 27.1093C8.06672 26.8677 8.11252 26.6039 8.26251 26.4002C8.28464 26.3702 10.4751 23.3522 10.4751 18.1863C10.4751 10.274 14.0175 5.55193 19.9509 5.55193C25.8843 5.55193 29.4267 10.274 29.4267 18.1863C29.4267 23.3522 31.6172 26.3702 31.6393 26.4002C31.7894 26.6039 31.8336 26.8677 31.7578 27.1093C31.682 27.3494 31.4941 27.5405 31.254 27.621C31.1403 27.6589 28.566 28.5022 24.6762 28.9571C24.8908 31.7353 26.8458 32.4262 29.2841 33.2879L29.2878 33.2892Z\" fill=\"white\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-25eaxz\",\"data-framer-name\":\"user 2\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:17,intrinsicWidth:16,svg:'<svg width=\"16\" height=\"17\" viewBox=\"0 0 16 17\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<g clip-path=\"url(#clip0_127_243)\">\\n<path d=\"M8 0.553711C3.58847 0.553711 0 4.14218 0 8.55371C0 12.9646 3.58847 16.5537 8 16.5537C12.4109 16.5537 16 12.9646 16 8.55371C16 4.14218 12.4109 0.553711 8 0.553711ZM11.7837 13.7147C12.121 13.8344 12.4627 13.9662 12.7904 14.1288C11.5021 15.2379 9.82913 15.9137 8 15.9137C6.17025 15.9137 4.49791 15.2379 3.20959 14.1287C3.53728 13.9662 3.87841 13.8343 4.21631 13.7146C4.21679 13.7145 4.21727 13.7143 4.21775 13.7141C5.20589 13.3649 5.9981 13.085 6.08513 11.9591C4.50881 11.7748 3.46559 11.433 3.41953 11.4177C3.32163 11.3851 3.24609 11.3076 3.21472 11.2103C3.184 11.1124 3.20256 11.0055 3.26334 10.923C3.27231 10.9108 4.16 9.68777 4.16 7.59434C4.16 4.38793 5.59553 2.47434 8 2.47434C10.4045 2.47434 11.84 4.38793 11.84 7.59434C11.84 9.68777 12.7277 10.9108 12.7367 10.923C12.7975 11.0055 12.8154 11.1124 12.7847 11.2103C12.7539 11.3076 12.6778 11.3851 12.5805 11.4177C12.5344 11.4331 11.4912 11.7748 9.91491 11.9591C10.0019 13.085 10.7941 13.365 11.7822 13.7142C11.7827 13.7143 11.7832 13.7145 11.7837 13.7147Z\" fill=\"#368B8B\"/>\\n<path d=\"M11.7837 13.7147C12.121 13.8344 12.4627 13.9662 12.7904 14.1288C11.5021 15.2379 9.82913 15.9137 8 15.9137C6.17025 15.9137 4.49791 15.2379 3.20959 14.1287C3.53728 13.9662 3.87841 13.8343 4.21631 13.7146L4.21775 13.7141C5.20589 13.3649 5.9981 13.085 6.08513 11.9591C4.50881 11.7748 3.46559 11.433 3.41953 11.4177C3.32163 11.3851 3.24609 11.3076 3.21472 11.2103C3.184 11.1124 3.20256 11.0055 3.26334 10.923C3.27231 10.9108 4.16 9.68777 4.16 7.59434C4.16 4.38793 5.59553 2.47434 8 2.47434C10.4045 2.47434 11.84 4.38793 11.84 7.59434C11.84 9.68777 12.7277 10.9108 12.7367 10.923C12.7975 11.0055 12.8154 11.1124 12.7847 11.2103C12.7539 11.3076 12.6778 11.3851 12.5805 11.4177C12.5344 11.4331 11.4912 11.7748 9.91491 11.9591C10.0019 13.085 10.7941 13.365 11.7822 13.7142L11.7837 13.7147Z\" fill=\"white\"/>\\n</g>\\n<defs>\\n<clipPath id=\"clip0_127_243\">\\n<rect width=\"16\" height=\"16\" fill=\"white\" transform=\"translate(0 0.553711)\"/>\\n</clipPath>\\n</defs>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1e615bp\",\"data-framer-name\":\"user 3\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:16,intrinsicWidth:17,svg:'<svg width=\"17\" height=\"16\" viewBox=\"0 0 17 16\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<g clip-path=\"url(#clip0_127_247)\">\\n<path d=\"M8.68018 0.13916C4.37419 0.13916 0.871582 3.64177 0.871582 7.94775C0.871582 12.2531 4.37419 15.7563 8.68018 15.7563C12.9855 15.7563 16.4888 12.2531 16.4888 7.94775C16.4888 3.64177 12.9855 0.13916 8.68018 0.13916ZM12.3733 12.9852C12.7025 13.1021 13.0361 13.2308 13.356 13.3894C12.0985 14.472 10.4655 15.1317 8.68018 15.1317C6.8942 15.1317 5.26187 14.472 4.00438 13.3894C4.32423 13.2307 4.65719 13.102 4.98702 12.9852C4.98748 12.985 4.98795 12.9849 4.98842 12.9847C5.95292 12.6439 6.72618 12.3706 6.81112 11.2717C5.27252 11.0918 4.25426 10.7582 4.2093 10.7432C4.11373 10.7114 4.04001 10.6357 4.00939 10.5408C3.9794 10.4453 3.99752 10.3409 4.05685 10.2603C4.0656 10.2485 4.93205 9.05468 4.93205 7.01133C4.93205 3.88164 6.33324 2.01383 8.68018 2.01383C11.0271 2.01383 12.4283 3.88164 12.4283 7.01133C12.4283 9.05468 13.2948 10.2485 13.3035 10.2603C13.3629 10.3409 13.3803 10.4452 13.3504 10.5408C13.3204 10.6358 13.246 10.7114 13.1511 10.7432C13.1061 10.7582 12.0879 11.0918 10.5493 11.2717C10.6341 12.3706 11.4074 12.6439 12.3719 12.9847C12.3724 12.9849 12.3729 12.9851 12.3733 12.9852Z\" fill=\"#F6781D\"/>\\n<path d=\"M12.3733 12.9852C12.7025 13.1021 13.0361 13.2308 13.356 13.3894C12.0985 14.472 10.4655 15.1317 8.68018 15.1317C6.8942 15.1317 5.26187 14.472 4.00438 13.3894C4.32423 13.2307 4.65719 13.102 4.98702 12.9852L4.98842 12.9847C5.95292 12.6439 6.72618 12.3706 6.81112 11.2717C5.27252 11.0918 4.25426 10.7582 4.2093 10.7432C4.11373 10.7114 4.04001 10.6357 4.00939 10.5408C3.9794 10.4453 3.99752 10.3409 4.05685 10.2603C4.0656 10.2485 4.93205 9.05468 4.93205 7.01133C4.93205 3.88164 6.33324 2.01383 8.68018 2.01383C11.0271 2.01383 12.4283 3.88164 12.4283 7.01133C12.4283 9.05468 13.2948 10.2485 13.3035 10.2603C13.3629 10.3409 13.3803 10.4452 13.3504 10.5408C13.3204 10.6358 13.246 10.7114 13.1511 10.7432C13.1061 10.7582 12.0879 11.0918 10.5493 11.2717C10.6341 12.3706 11.4074 12.6439 12.3719 12.9847L12.3733 12.9852Z\" fill=\"white\"/>\\n</g>\\n<defs>\\n<clipPath id=\"clip0_127_247\">\\n<rect width=\"15.6172\" height=\"15.6172\" fill=\"white\" transform=\"translate(0.871582 0.13916)\"/>\\n</clipPath>\\n</defs>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1c8ipkz\",\"data-framer-name\":\"Ellipse 27\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-13dqpan\",\"data-framer-name\":\"Ellipse 31\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-dk0hac\",\"data-framer-name\":\"Ellipse 32\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-188vy7g\",\"data-framer-name\":\"Ellipse 29\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-11wl78h\",\"data-framer-name\":\"Ellipse 33\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1vjpxog\",\"data-framer-name\":\"Ellipse 30\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1a7xadx\",\"data-framer-name\":\"Ellipse 34\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-6vlnja\",\"data-framer-name\":\"Ellipse 28\"}),/*#__PURE__*/_jsx(SVG,{className:\"framer-12esn8\",\"data-framer-name\":\"Vector 27\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:47,intrinsicWidth:94,svg:'<svg width=\"94\" height=\"47\" viewBox=\"-1 -1 94 47\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M0.249023 44.0537H46.1181C49.3007 44.0537 52.3529 42.7894 54.6033 40.5389L68.2822 26.8601C70.2006 24.9416 72.8027 23.8638 75.5158 23.8638V23.8638C79.7948 23.8638 83.6217 21.2007 85.1084 17.1883L91.2377 0.646973\" stroke=\"#E2E2E2\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1ekfdgp\",\"data-framer-name\":\"user (2) 10\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:18,intrinsicWidth:17,svg:'<svg width=\"17\" height=\"18\" viewBox=\"0 0 17 18\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<g clip-path=\"url(#clip0_127_260)\">\\n<path d=\"M8.5 0.945801C3.81275 0.945801 0 4.75855 0 9.4458C0 14.1331 3.81275 17.9458 8.5 17.9458C13.1873 17.9458 17 14.1331 17 9.4458C17 4.75855 13.1873 0.945801 8.5 0.945801ZM8.5 17.2658C6.55655 17.2658 4.77903 16.5477 3.41019 15.37C3.75836 15.1966 4.12147 15.0565 4.47983 14.9293C5.59366 14.5363 6.47358 14.2255 6.47358 12.8397C6.47358 12.186 6.11913 11.6104 5.77599 11.0532L5.77522 11.052C5.47669 10.5671 5.19519 10.1102 5.19519 9.63688C5.19519 9.28872 5.25503 9.0548 5.3033 8.86644C5.37539 8.58491 5.41141 8.4428 5.17613 7.97361C4.6165 6.8618 5.31758 4.65386 6.93461 3.66241C8.49791 2.70497 9.6648 2.75869 10.5944 3.83514C10.8922 3.87797 11.2587 4.0473 11.5627 4.5403C12.1522 5.49705 12.1985 7.22833 11.8231 7.9743C11.5885 8.44283 11.6246 8.58494 11.6967 8.86647C11.7449 9.05483 11.8048 9.28875 11.8048 9.63692C11.8048 10.1099 11.5236 10.5666 11.2253 11.0511L11.2247 11.052L11.224 11.0532C10.8808 11.6105 10.5264 12.186 10.5264 12.8397C10.5264 14.2256 11.4063 14.5363 12.5201 14.9294C12.8785 15.0565 13.2416 15.1966 13.5898 15.37C12.221 16.5477 10.4434 17.2658 8.5 17.2658Z\" fill=\"#368B8B\"/>\\n<path d=\"M8.5 17.2658C6.55655 17.2658 4.77903 16.5477 3.41019 15.37C3.75836 15.1966 4.12147 15.0565 4.47983 14.9293C5.59366 14.5363 6.47358 14.2255 6.47358 12.8397C6.47358 12.186 6.11913 11.6104 5.77599 11.0532L5.77522 11.052C5.47669 10.5671 5.19519 10.1102 5.19519 9.63688C5.19519 9.28872 5.25503 9.0548 5.3033 8.86644C5.37539 8.58491 5.41141 8.4428 5.17613 7.97361C4.6165 6.8618 5.31758 4.65386 6.93461 3.66241C8.49791 2.70497 9.6648 2.75869 10.5944 3.83514C10.8922 3.87797 11.2587 4.0473 11.5627 4.5403C12.1522 5.49705 12.1985 7.22833 11.8231 7.9743C11.5885 8.44283 11.6246 8.58494 11.6967 8.86647C11.7449 9.05483 11.8048 9.28875 11.8048 9.63692C11.8048 10.1099 11.5236 10.5666 11.2253 11.0511L11.2247 11.052L11.224 11.0532C10.8808 11.6105 10.5264 12.186 10.5264 12.8397C10.5264 14.2256 11.4063 14.5363 12.5201 14.9294C12.8785 15.0565 13.2416 15.1966 13.5898 15.37C12.221 16.5477 10.4434 17.2658 8.5 17.2658Z\" fill=\"white\"/>\\n</g>\\n<defs>\\n<clipPath id=\"clip0_127_260\">\\n<rect width=\"17\" height=\"17\" fill=\"white\" transform=\"translate(0 0.945801)\"/>\\n</clipPath>\\n</defs>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-7ql7r4\",\"data-framer-name\":\"user 4\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:14,intrinsicWidth:14,svg:'<svg width=\"14\" height=\"14\" viewBox=\"0 0 14 14\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<g clip-path=\"url(#clip0_127_264)\">\\n<path d=\"M7.30078 0.552734C3.68477 0.552734 0.743408 3.4941 0.743408 7.11011C0.743408 10.7256 3.68477 13.6675 7.30078 13.6675C10.9163 13.6675 13.8582 10.7256 13.8582 7.11011C13.8582 3.4941 10.9163 0.552734 7.30078 0.552734ZM10.4022 11.3404C10.6786 11.4385 10.9587 11.5466 11.2273 11.6798C10.1713 12.5889 8.80006 13.1429 7.30078 13.1429C5.80099 13.1429 4.43021 12.5889 3.37422 11.6798C3.64282 11.5466 3.92243 11.4385 4.1994 11.3404C4.19979 11.3402 4.20018 11.3401 4.20058 11.34C5.01053 11.0537 5.65988 10.8243 5.73121 9.90142C4.43915 9.75035 3.58406 9.4702 3.5463 9.45762C3.46605 9.43088 3.40414 9.36738 3.37842 9.28767C3.35324 9.20742 3.36846 9.11979 3.41828 9.05211C3.42563 9.04215 4.15324 8.03967 4.15324 6.32374C4.15324 3.69553 5.32991 2.12702 7.30078 2.12702C9.27166 2.12702 10.4483 3.69553 10.4483 6.32374C10.4483 8.03967 11.1759 9.04215 11.1833 9.05211C11.2331 9.11979 11.2478 9.20739 11.2226 9.28767C11.1974 9.36741 11.135 9.43088 11.0553 9.45762C11.0175 9.47022 10.1624 9.75035 8.87038 9.90142C8.94165 10.8243 9.59102 11.0538 10.401 11.34C10.4014 11.3401 10.4018 11.3403 10.4022 11.3404Z\" fill=\"#F6781D\"/>\\n<path d=\"M10.4022 11.3404C10.6786 11.4385 10.9587 11.5466 11.2273 11.6798C10.1713 12.5889 8.80006 13.1429 7.30078 13.1429C5.80099 13.1429 4.43021 12.5889 3.37422 11.6798C3.64282 11.5466 3.92243 11.4385 4.1994 11.3404L4.20058 11.34C5.01053 11.0537 5.65988 10.8243 5.73121 9.90142C4.43915 9.75035 3.58406 9.4702 3.5463 9.45762C3.46605 9.43088 3.40414 9.36738 3.37842 9.28767C3.35324 9.20742 3.36846 9.11979 3.41828 9.05211C3.42563 9.04215 4.15324 8.03967 4.15324 6.32374C4.15324 3.69553 5.32991 2.12702 7.30078 2.12702C9.27166 2.12702 10.4483 3.69553 10.4483 6.32374C10.4483 8.03967 11.1759 9.04215 11.1833 9.05211C11.2331 9.11979 11.2478 9.20739 11.2226 9.28767C11.1974 9.36741 11.135 9.43088 11.0553 9.45762C11.0175 9.47022 10.1624 9.75035 8.87038 9.90142C8.94165 10.8243 9.59102 11.0538 10.401 11.34L10.4022 11.3404Z\" fill=\"white\"/>\\n</g>\\n<defs>\\n<clipPath id=\"clip0_127_264\">\\n<rect width=\"13.1147\" height=\"13.1147\" fill=\"white\" transform=\"translate(0.743408 0.553711)\"/>\\n</clipPath>\\n</defs>\\n</svg>\\n',withExternalLayout:true})]})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-ufcrwi\",\"data-framer-name\":\"Frame 6\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v16\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{className:\"framer-styles-preset-1o5d4n7\",\"data-styles-preset\":\"ttzUtOj6f\",style:{\"--framer-text-color\":'var(--token-8ecf3070-09f7-44e8-a71e-d4b812577923, rgb(54, 139, 139)) /* {\"name\":\"Green Cirkkle\"'},children:\"\\xc9pargne solidaire et sociale\"})}),className:\"framer-1qhxiyz\",\"data-framer-name\":\"\\xc9pargne solidaire et sociale\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v17\",activeLocale)??/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-lmirgo\",\"data-styles-preset\":\"l67b_BAPm\",children:\"Financez les projets de votre communaut\\xe9 gr\\xe2ce \\xe0 notre solution de tontine digitale.\"}),/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-lmirgo\",\"data-styles-preset\":\"l67b_BAPm\",children:/*#__PURE__*/_jsx(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-lmirgo\",\"data-styles-preset\":\"l67b_BAPm\",children:/*#__PURE__*/_jsx(\"br\",{className:\"trailing-break\"})})]}),className:\"framer-vbpcp5\",\"data-framer-name\":\"Financez les projets de votre communaut\\xe9 gr\\xe2ce \\xe0 notre solution de tontine digitale.\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})]})}),isDisplayed()&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{jhgstC6MA:{y:1588.4}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:0,width:\"max((min(100vw, 1400px) - 100px) / 3, 1px)\",y:1863.4,children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition12},__framer__animateOnce:true,__framer__enter:animation18,__framer__exit:animation19,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1sd9hnf-container hidden-1b56ql2 hidden-1mx4hxu\",style:{transformPerspective:1200},whileHover:animation20,children:/*#__PURE__*/_jsx(FunctionCards,{height:\"100%\",id:\"OTZ9xsi3b\",layoutId:\"OTZ9xsi3b\",style:{height:\"100%\",width:\"100%\"},variant:\"RVl94oJmR\",width:\"100%\"})})})}),isDisplayed()&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{jhgstC6MA:{y:1588.4}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:0,width:\"max((min(100vw, 1400px) - 100px) / 3, 1px)\",y:1863.4,children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition14},__framer__animateOnce:true,__framer__enter:animation18,__framer__exit:animation21,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-187phdt-container hidden-1b56ql2 hidden-1mx4hxu\",style:{transformPerspective:1200},whileHover:animation20,children:/*#__PURE__*/_jsx(FunctionCards,{height:\"100%\",id:\"smvHQakIs\",layoutId:\"smvHQakIs\",style:{height:\"100%\",width:\"100%\"},variant:\"Ogn3x58ps\",width:\"100%\"})})})}),isDisplayed()&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{jhgstC6MA:{y:1588.4}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:0,width:\"max((min(100vw, 1400px) - 100px) / 3, 1px)\",y:1863.4,children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition15},__framer__animateOnce:true,__framer__enter:animation18,__framer__exit:animation22,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1k2k740-container hidden-1b56ql2 hidden-1mx4hxu\",style:{transformPerspective:1200},whileHover:animation20,children:/*#__PURE__*/_jsx(FunctionCards,{height:\"100%\",id:\"wXAgSum9o\",layoutId:\"wXAgSum9o\",style:{height:\"100%\",width:\"100%\"},variant:\"zDbUqNof_\",width:\"100%\"})})})})]})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1vynwle\",\"data-framer-name\":\"Testimonial\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-17rgi8r\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{HfSG4WHcm:{y:2476.55},jhgstC6MA:{y:1708.4},WPoaGmYBq:{height:272,y:undefined}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:300,width:\"max(100vw - 48px, 1px)\",y:1983.4,children:/*#__PURE__*/_jsx(Container,{className:\"framer-hrbpd8-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{WPoaGmYBq:{style:{width:\"100%\"}}},children:/*#__PURE__*/_jsx(SocialProofAnimationWithVariantAppearEffect,{__framer__animateOnce:false,__framer__obscuredVariantId:\"dfiMnEKxq\",__framer__threshold:.5,__framer__variantAppearEffectEnabled:true,__framer__visibleVariantId:\"bu6wjTkiV\",height:\"100%\",id:\"REW8bGrfB\",layoutId:\"REW8bGrfB\",style:{height:\"100%\",width:\"100%\"},variant:\"dfiMnEKxq\",width:\"100%\"})})})})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1pu5csh\",\"data-framer-name\":\"BACK\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-18mm8hq\",\"data-framer-name\":\"Frame 923\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-byh2rf\",\"data-framer-name\":\"Vector\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:96,intrinsicWidth:1513,svg:'<svg width=\"1513\" height=\"96\" viewBox=\"0 0 1513 96\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<g opacity=\"0.08\">\\n<path d=\"M49.4269 0.920842C49.134 0.627949 48.6591 0.62795 48.3662 0.920842L30.249 19.0381C27.5153 21.7717 23.0832 21.7717 20.3495 19.0381L2.23223 0.920842C1.93934 0.627949 1.46447 0.627949 1.17157 0.920843C0.878681 1.21374 0.878681 1.68861 1.17158 1.9815L24.7689 25.5788C25.0618 25.8717 25.5367 25.8717 25.8296 25.5788L43.9468 7.46158C46.6805 4.72791 51.1126 4.72791 53.8463 7.46158L71.9635 25.5788C72.2564 25.8717 72.7313 25.8717 73.0242 25.5788L91.1414 7.46158C93.8751 4.72791 98.3072 4.72791 101.041 7.46158L119.158 25.5788C119.451 25.8717 119.926 25.8717 120.219 25.5788L138.336 7.46158C141.07 4.72791 145.502 4.7279 148.235 7.46157L166.353 25.5788C166.646 25.8717 167.12 25.8717 167.413 25.5788L185.531 7.46158C188.264 4.72791 192.696 4.72791 195.43 7.46158L213.547 25.5788C213.84 25.8717 214.315 25.8717 214.608 25.5788L232.725 7.46159C235.459 4.72792 239.891 4.72792 242.625 7.46159L260.742 25.5788C261.035 25.8717 261.51 25.8717 261.803 25.5788L279.92 7.46157C282.653 4.7279 287.086 4.7279 289.819 7.46157L307.936 25.5788C308.229 25.8717 308.704 25.8717 308.997 25.5788L327.114 7.46158C329.848 4.72791 334.28 4.72791 337.014 7.46158L355.131 25.5788C355.424 25.8717 355.899 25.8717 356.192 25.5788L374.309 7.46156C377.043 4.72789 381.475 4.72789 384.208 7.46155L402.326 25.5788C402.619 25.8717 403.094 25.8717 403.386 25.5788L421.504 7.46158C424.237 4.72791 428.669 4.72791 431.403 7.46158L449.52 25.5788C449.813 25.8717 450.288 25.8717 450.581 25.5788L468.698 7.46158C471.432 4.72791 475.864 4.72791 478.598 7.46159L496.715 25.5788C497.008 25.8717 497.483 25.8717 497.776 25.5788L515.893 7.46158C518.626 4.72791 523.059 4.72791 525.792 7.46158L543.909 25.5788C544.202 25.8717 544.677 25.8717 544.97 25.5788L563.087 7.46157C565.821 4.72791 570.253 4.72791 572.987 7.46159L591.104 25.5788C591.397 25.8717 591.872 25.8717 592.165 25.5788L610.282 7.46158C613.016 4.72791 617.448 4.72792 620.182 7.46159L638.299 25.5788C638.592 25.8717 639.066 25.8717 639.359 25.5788L657.477 7.46156C660.21 4.7279 664.642 4.7279 667.376 7.46157L685.493 25.5788C685.786 25.8717 686.261 25.8717 686.554 25.5788L704.671 7.46157C707.405 4.72791 711.837 4.72791 714.571 7.46158L732.688 25.5788C732.981 25.8717 733.456 25.8717 733.749 25.5788L751.866 7.46158C754.599 4.72791 759.032 4.72791 761.765 7.46157L779.883 25.5788C780.175 25.8717 780.65 25.8717 780.943 25.5788L799.06 7.46158C801.794 4.72791 806.226 4.72791 808.96 7.46159L827.077 25.5788C827.37 25.8717 827.845 25.8717 828.138 25.5788L846.255 7.46157C848.989 4.7279 853.421 4.72791 856.155 7.46158L874.272 25.5788C874.565 25.8717 875.039 25.8717 875.332 25.5788L893.45 7.46157C896.183 4.7279 900.615 4.72791 903.349 7.46158L921.466 25.5788C921.759 25.8717 922.234 25.8717 922.527 25.5788L940.644 7.46158C943.378 4.72791 947.81 4.72791 950.544 7.46158L968.661 25.5788C968.954 25.8717 969.429 25.8717 969.722 25.5788L987.839 7.46159C990.572 4.72792 995.005 4.72792 997.738 7.46159L1015.86 25.5788C1016.15 25.8717 1016.62 25.8717 1016.92 25.5788L1035.03 7.46157C1037.77 4.7279 1042.2 4.7279 1044.93 7.46157L1063.05 25.5788C1063.34 25.8717 1063.82 25.8717 1064.11 25.5788L1082.23 7.46157C1084.96 4.7279 1089.39 4.7279 1092.13 7.46157L1110.24 25.5788C1110.54 25.8717 1111.01 25.8717 1111.31 25.5788L1129.42 7.46159C1132.16 4.72792 1136.59 4.72791 1139.32 7.46158L1157.44 25.5788C1157.73 25.8717 1158.21 25.8717 1158.5 25.5788L1176.62 7.46158C1179.35 4.72791 1183.78 4.72791 1186.52 7.46159L1204.63 25.5788C1204.93 25.8717 1205.4 25.8717 1205.69 25.5788L1223.81 7.46158C1226.55 4.72791 1230.98 4.72791 1233.71 7.46159L1251.83 25.5788C1252.12 25.8717 1252.6 25.8717 1252.89 25.5788L1271.01 7.46157C1273.74 4.72791 1278.17 4.72791 1280.91 7.46159L1299.02 25.5788C1299.32 25.8717 1299.79 25.8717 1300.08 25.5788L1318.2 7.46157C1320.93 4.72791 1325.37 4.72791 1328.1 7.46159L1346.22 25.5788C1346.51 25.8717 1346.99 25.8717 1347.28 25.5788L1365.4 7.46158C1368.13 4.72791 1372.56 4.72792 1375.3 7.46159L1393.41 25.5788C1393.71 25.8717 1394.18 25.8717 1394.47 25.5788L1412.59 7.46158C1415.32 4.72791 1419.76 4.7279 1422.49 7.46157L1440.61 25.5788C1440.9 25.8717 1441.37 25.8717 1441.67 25.5788L1459.78 7.46159C1462.52 4.72792 1466.95 4.72791 1469.68 7.46158L1487.8 25.5788C1488.09 25.8717 1488.57 25.8717 1488.86 25.5788L1512.46 1.9815C1512.75 1.68861 1512.75 1.21374 1512.46 0.920842C1512.17 0.627949 1511.69 0.627949 1511.4 0.920842L1493.28 19.0381C1490.55 21.7717 1486.12 21.7717 1483.38 19.0381L1465.26 0.920842C1464.97 0.627982 1464.5 0.627948 1464.2 0.920842L1446.09 19.0381C1443.35 21.7717 1438.92 21.7717 1436.19 19.0381L1418.07 0.920842C1417.78 0.627958 1417.3 0.627958 1417.01 0.920842L1398.89 19.0381C1396.16 21.7717 1391.73 21.7717 1388.99 19.0381L1370.88 0.920842C1370.58 0.627958 1370.11 0.627958 1369.82 0.920842L1351.7 19.0381C1348.96 21.7717 1344.53 21.7717 1341.8 19.0381L1323.68 0.920842C1323.39 0.627958 1322.91 0.627958 1322.62 0.920842L1304.5 19.0381C1301.77 21.7717 1297.34 21.7717 1294.6 19.0381L1276.49 0.920842C1276.19 0.627948 1275.72 0.627982 1275.43 0.920842L1257.31 19.038C1254.57 21.7717 1250.14 21.7717 1247.41 19.0381L1229.29 0.920842C1229 0.627948 1228.52 0.627982 1228.23 0.920842L1210.11 19.038C1207.38 21.7717 1202.95 21.7717 1200.21 19.0381L1182.1 0.920842C1181.8 0.627948 1181.33 0.627982 1181.04 0.920842L1162.92 19.0381C1160.19 21.7717 1155.75 21.7718 1153.02 19.0381L1134.91 0.928959C1134.91 0.926238 1134.91 0.923533 1134.9 0.920842C1134.77 0.792702 1134.61 0.720622 1134.44 0.704605C1134.23 0.684011 1134.01 0.75609 1133.84 0.920842L1115.72 19.0381C1112.99 21.7717 1108.56 21.7717 1105.83 19.0381L1087.71 0.920842C1087.42 0.627982 1086.94 0.627948 1086.65 0.920842L1068.53 19.0381C1065.8 21.7717 1061.36 21.7717 1058.63 19.0381L1040.51 0.920842C1040.22 0.627982 1039.75 0.627948 1039.45 0.920842L1021.34 19.0381C1018.6 21.7717 1014.17 21.7717 1011.44 19.0381L993.319 0.920842C993.026 0.627948 992.551 0.627948 992.258 0.920842L974.141 19.0381C971.407 21.7717 966.975 21.7717 964.242 19.0381L946.124 0.920842C945.831 0.627948 945.356 0.627948 945.064 0.920842L926.946 19.0381C924.213 21.7717 919.781 21.7717 917.047 19.0381L898.93 0.920842C898.637 0.627953 898.162 0.62797 897.869 0.920842L879.752 19.0381C877.018 21.7717 872.586 21.7717 869.852 19.0381L851.735 0.920842C851.442 0.627953 850.967 0.62797 850.674 0.920842L832.557 19.0381C829.824 21.7717 825.391 21.7717 822.658 19.0381L804.54 0.920842C804.248 0.627948 803.773 0.627948 803.48 0.920842L785.363 19.0381C782.629 21.7717 778.197 21.7717 775.463 19.0381L757.346 0.920842C757.09 0.66456 756.694 0.632526 756.403 0.824737C756.361 0.852196 756.322 0.884231 756.285 0.920843L738.168 19.0381C735.434 21.7717 731.002 21.7717 728.268 19.0381L710.151 0.920842C709.858 0.627948 709.383 0.627948 709.091 0.920842L690.973 19.0381C688.24 21.7717 683.808 21.7717 681.074 19.0381L662.957 0.920842C662.664 0.627953 662.189 0.62797 661.896 0.920842L643.779 19.0381C641.045 21.7717 636.613 21.7717 633.879 19.0381L615.762 0.920842C615.469 0.627948 614.994 0.627982 614.701 0.920842L596.584 19.0381C593.851 21.7717 589.418 21.7717 586.685 19.0381L568.567 0.920842C568.275 0.627948 567.8 0.627948 567.507 0.920842L549.39 19.0381C546.656 21.7717 542.224 21.7717 539.49 19.0381L521.373 0.920842C521.08 0.627948 520.605 0.627948 520.312 0.920842L502.195 19.0381C499.461 21.7717 495.029 21.7717 492.296 19.0381L474.178 0.920842C473.885 0.627948 473.411 0.627948 473.118 0.920842L455 19.0381C452.267 21.7717 447.835 21.7717 445.101 19.0381L426.984 0.920842C426.691 0.627948 426.216 0.627948 425.923 0.920842L407.806 19.0381C405.072 21.7717 400.64 21.7717 397.906 19.0381L379.789 0.920842C379.666 0.797671 379.51 0.726298 379.35 0.706721C379.32 0.703022 379.289 0.701172 379.259 0.701172C379.067 0.701172 378.875 0.774396 378.728 0.920842L360.611 19.0381C357.877 21.7717 353.445 21.7717 350.712 19.0381L332.594 0.920842C332.302 0.627948 331.827 0.627948 331.534 0.920842L313.417 19.0381C310.683 21.7717 306.251 21.7717 303.517 19.0381L285.4 0.920842C285.107 0.627959 284.632 0.627951 284.339 0.920842L266.222 19.0381C263.488 21.7717 259.056 21.7717 256.322 19.0381L238.205 0.920842C237.912 0.627948 237.437 0.627948 237.145 0.920842L219.027 19.0381C216.294 21.7717 211.862 21.7717 209.128 19.0381L191.011 0.920842C190.718 0.627954 190.243 0.62795 189.95 0.920842L171.833 19.0381C169.099 21.7717 164.667 21.7717 161.933 19.0381L143.816 0.920842C143.523 0.62795 143.048 0.627954 142.755 0.920842L124.638 19.0381C121.905 21.7717 117.472 21.7717 114.739 19.0381L96.6215 0.920842C96.3286 0.627951 95.8537 0.627949 95.5608 0.920842L77.4436 19.0381C74.7099 21.7717 70.2778 21.7717 67.5441 19.0381L49.4269 0.920842Z\" fill=\"#515151\"/>\\n<path d=\"M49.4269 36.0181C49.134 35.7252 48.6591 35.7252 48.3662 36.0181L30.249 54.1354C27.5153 56.869 23.0832 56.869 20.3495 54.1354L2.23223 36.0181C1.93934 35.7252 1.46447 35.7252 1.17157 36.0181C0.878681 36.311 0.878681 36.7859 1.17158 37.0788L24.7689 60.6761C25.0618 60.969 25.5367 60.969 25.8296 60.6761L43.9468 42.5589C46.6805 39.8252 51.1126 39.8252 53.8463 42.5589L71.9635 60.6761C72.2564 60.969 72.7313 60.969 73.0242 60.6761L91.1414 42.5589C93.8751 39.8252 98.3072 39.8252 101.041 42.5589L119.158 60.6761C119.451 60.969 119.926 60.969 120.219 60.6761L138.336 42.5589C141.07 39.8252 145.502 39.8252 148.235 42.5589L166.353 60.6761C166.646 60.969 167.12 60.969 167.413 60.6761L185.531 42.5589C188.264 39.8252 192.696 39.8252 195.43 42.5589L213.547 60.6761C213.84 60.969 214.315 60.969 214.608 60.6761L232.725 42.5589C235.459 39.8252 239.891 39.8252 242.625 42.5589L260.742 60.6761C261.035 60.969 261.51 60.969 261.803 60.6761L279.92 42.5589C282.653 39.8252 287.086 39.8252 289.819 42.5589L307.936 60.6761C308.229 60.969 308.704 60.969 308.997 60.6761L327.114 42.5589C329.848 39.8252 334.28 39.8252 337.014 42.5589L355.131 60.6761C355.424 60.969 355.899 60.969 356.192 60.6761L374.309 42.5588C377.043 39.8252 381.475 39.8252 384.208 42.5588L402.326 60.6761C402.619 60.969 403.094 60.969 403.386 60.6761L421.504 42.5589C424.237 39.8252 428.669 39.8252 431.403 42.5589L449.52 60.6761C449.813 60.969 450.288 60.969 450.581 60.6761L468.698 42.5589C471.432 39.8252 475.864 39.8252 478.598 42.5589L496.715 60.6761C497.008 60.969 497.483 60.969 497.776 60.6761L515.893 42.5589C518.626 39.8252 523.059 39.8252 525.792 42.5589L543.909 60.6761C544.202 60.969 544.677 60.969 544.97 60.6761L563.087 42.5589C565.821 39.8252 570.253 39.8252 572.987 42.5589L591.104 60.6761C591.397 60.9689 591.872 60.969 592.165 60.6761L610.282 42.5589C613.016 39.8252 617.448 39.8252 620.182 42.5589L638.299 60.6761C638.592 60.9689 639.066 60.969 639.359 60.6761L657.477 42.5589C660.21 39.8252 664.642 39.8252 667.376 42.5589L685.493 60.6761C685.786 60.969 686.261 60.969 686.554 60.6761L704.671 42.5589C707.405 39.8252 711.837 39.8252 714.571 42.5589L732.688 60.6761C732.981 60.969 733.456 60.969 733.749 60.6761L751.866 42.5589C754.599 39.8252 759.032 39.8252 761.765 42.5589L779.883 60.6761C780.175 60.969 780.65 60.969 780.943 60.6761L799.06 42.5589C801.794 39.8252 806.226 39.8252 808.96 42.5589L827.077 60.6761C827.37 60.969 827.845 60.969 828.138 60.6761L846.255 42.5589C848.989 39.8252 853.421 39.8252 856.155 42.5589L874.272 60.6761C874.565 60.969 875.039 60.969 875.332 60.6761L893.45 42.5589C896.183 39.8252 900.615 39.8252 903.349 42.5589L921.466 60.6761C921.759 60.969 922.234 60.969 922.527 60.6761L940.644 42.5589C943.378 39.8252 947.81 39.8252 950.544 42.5589L968.661 60.6761C968.954 60.969 969.429 60.969 969.722 60.6761L987.839 42.5589C990.572 39.8252 995.005 39.8252 997.738 42.5589L1015.86 60.6761C1016.15 60.969 1016.62 60.969 1016.92 60.6761L1035.03 42.5589C1037.77 39.8252 1042.2 39.8252 1044.93 42.5589L1063.05 60.6761C1063.34 60.969 1063.82 60.969 1064.11 60.6761L1082.23 42.5589C1084.96 39.8252 1089.39 39.8252 1092.13 42.5589L1110.24 60.6761C1110.54 60.969 1111.01 60.9689 1111.31 60.6761L1129.42 42.5589C1132.16 39.8252 1136.59 39.8252 1139.32 42.5589L1157.44 60.6761C1157.73 60.969 1158.21 60.969 1158.5 60.6761L1176.62 42.5589C1179.35 39.8252 1183.78 39.8252 1186.52 42.5589L1204.63 60.6761C1204.93 60.9689 1205.4 60.969 1205.69 60.6761L1223.81 42.5589C1226.55 39.8252 1230.98 39.8252 1233.71 42.5589L1251.83 60.6761C1252.12 60.9689 1252.6 60.969 1252.89 60.6761L1271.01 42.5589C1273.74 39.8252 1278.17 39.8252 1280.91 42.5589L1299.02 60.6761C1299.32 60.9689 1299.79 60.969 1300.08 60.6761L1318.2 42.5589C1320.93 39.8252 1325.37 39.8252 1328.1 42.5589L1346.22 60.6761C1346.51 60.9689 1346.99 60.969 1347.28 60.6761L1365.4 42.5589C1368.13 39.8252 1372.56 39.8252 1375.3 42.5589L1393.41 60.6761C1393.71 60.969 1394.18 60.969 1394.47 60.6761L1412.59 42.5589C1415.32 39.8252 1419.76 39.8252 1422.49 42.5589L1440.61 60.6761C1440.9 60.969 1441.37 60.9689 1441.67 60.6761L1459.78 42.5589C1462.52 39.8252 1466.95 39.8252 1469.68 42.5589L1487.8 60.6761C1488.09 60.969 1488.57 60.9689 1488.86 60.6761L1512.46 37.0788C1512.75 36.7859 1512.75 36.311 1512.46 36.0181C1512.17 35.7252 1511.69 35.7252 1511.4 36.0181L1493.28 54.1353C1490.55 56.869 1486.12 56.869 1483.38 54.1353L1465.26 36.0181C1464.97 35.7253 1464.5 35.7252 1464.2 36.0181L1446.09 54.1354C1443.35 56.869 1438.92 56.869 1436.19 54.1354L1418.07 36.0181C1417.78 35.7252 1417.3 35.7252 1417.01 36.0181L1398.89 54.1354C1396.16 56.869 1391.73 56.869 1388.99 54.1354L1370.88 36.0181C1370.58 35.7252 1370.11 35.7252 1369.82 36.0181L1351.7 54.1354C1348.96 56.869 1344.53 56.869 1341.8 54.1354L1323.68 36.0181C1323.39 35.7252 1322.91 35.7252 1322.62 36.0181L1304.5 54.1354C1301.77 56.869 1297.34 56.869 1294.6 54.1354L1276.49 36.0181C1276.19 35.7252 1275.72 35.7253 1275.43 36.0181L1257.31 54.1353C1254.57 56.869 1250.14 56.869 1247.41 54.1354L1229.29 36.0181C1229 35.7252 1228.52 35.7253 1228.23 36.0181L1210.11 54.1353C1207.38 56.869 1202.95 56.869 1200.21 54.1354L1182.1 36.0181C1181.8 35.7252 1181.33 35.7253 1181.04 36.0181L1162.92 54.1354C1160.19 56.869 1155.75 56.869 1153.02 54.1354L1134.91 36.0262C1134.91 36.0235 1134.91 36.0208 1134.9 36.0181C1134.77 35.89 1134.61 35.8179 1134.44 35.8019C1134.23 35.7813 1134.01 35.8534 1133.84 36.0181L1115.72 54.1353C1112.99 56.869 1108.56 56.869 1105.83 54.1353L1087.71 36.0181C1087.42 35.7253 1086.94 35.7252 1086.65 36.0181L1068.53 54.1354C1065.8 56.869 1061.36 56.869 1058.63 54.1353L1040.51 36.0181C1040.22 35.7253 1039.75 35.7252 1039.45 36.0181L1021.34 54.1354C1018.6 56.869 1014.17 56.869 1011.44 54.1353L993.319 36.0181C993.026 35.7252 992.551 35.7252 992.258 36.0181L974.141 54.1353C971.407 56.869 966.975 56.869 964.242 54.1353L946.124 36.0181C945.831 35.7252 945.356 35.7252 945.064 36.0181L926.946 54.1354C924.213 56.869 919.781 56.869 917.047 54.1354L898.93 36.0181C898.637 35.7252 898.162 35.7253 897.869 36.0181L879.752 54.1354C877.018 56.869 872.586 56.869 869.852 54.1354L851.735 36.0181C851.442 35.7252 850.967 35.7253 850.674 36.0181L832.557 54.1354C829.824 56.869 825.391 56.869 822.658 54.1354L804.54 36.0181C804.248 35.7252 803.773 35.7252 803.48 36.0181L785.363 54.1354C782.629 56.869 778.197 56.869 775.463 54.1354L757.346 36.0181C757.09 35.7619 756.694 35.7298 756.403 35.922C756.361 35.9495 756.322 35.9815 756.285 36.0181L738.168 54.1353C735.434 56.869 731.002 56.869 728.268 54.1353L710.151 36.0181C709.858 35.7252 709.383 35.7252 709.091 36.0181L690.973 54.1354C688.24 56.869 683.808 56.869 681.074 54.1354L662.957 36.0181C662.664 35.7252 662.189 35.7253 661.896 36.0181L643.779 54.1354C641.045 56.869 636.613 56.869 633.879 54.1354L615.762 36.0181C615.469 35.7252 614.994 35.7253 614.701 36.0181L596.584 54.1353C593.851 56.869 589.418 56.869 586.685 54.1354L568.567 36.0181C568.275 35.7252 567.8 35.7252 567.507 36.0181L549.39 54.1353C546.656 56.869 542.224 56.869 539.49 54.1353L521.373 36.0181C521.08 35.7252 520.605 35.7252 520.312 36.0181L502.195 54.1353C499.461 56.869 495.029 56.869 492.296 54.1353L474.178 36.0181C473.885 35.7252 473.411 35.7252 473.118 36.0181L455 54.1353C452.267 56.869 447.835 56.869 445.101 54.1353L426.984 36.0181C426.691 35.7252 426.216 35.7252 425.923 36.0181L407.806 54.1354C405.072 56.869 400.64 56.869 397.906 54.1354L379.789 36.0181C379.666 35.895 379.51 35.8236 379.35 35.804C379.32 35.8003 379.289 35.7985 379.259 35.7985C379.067 35.7985 378.875 35.8717 378.728 36.0181L360.611 54.1353C357.877 56.869 353.445 56.869 350.712 54.1353L332.594 36.0181C332.302 35.7252 331.827 35.7252 331.534 36.0181L313.417 54.1354C310.683 56.869 306.251 56.869 303.517 54.1354L285.4 36.0181C285.107 35.7252 284.632 35.7252 284.339 36.0181L266.222 54.1353C263.488 56.869 259.056 56.869 256.322 54.1353L238.205 36.0181C237.912 35.7252 237.437 35.7252 237.145 36.0181L219.027 54.1353C216.294 56.869 211.862 56.869 209.128 54.1354L191.011 36.0181C190.718 35.7252 190.243 35.7252 189.95 36.0181L171.833 54.1353C169.099 56.869 164.667 56.869 161.933 54.1354L143.816 36.0181C143.523 35.7252 143.048 35.7252 142.755 36.0181L124.638 54.1353C121.905 56.869 117.472 56.869 114.739 54.1354L96.6215 36.0181C96.3286 35.7252 95.8537 35.7252 95.5608 36.0181L77.4436 54.1353C74.7099 56.869 70.2778 56.869 67.5441 54.1354L49.4269 36.0181Z\" fill=\"#515151\"/>\\n<path d=\"M49.4269 71.1154C49.134 70.8225 48.6591 70.8225 48.3662 71.1154L30.249 89.2327C27.5153 91.9663 23.0832 91.9663 20.3495 89.2327L2.23223 71.1154C1.93934 70.8225 1.46447 70.8225 1.17157 71.1154C0.878681 71.4083 0.878681 71.8832 1.17158 72.1761L24.7689 95.7734C25.0618 96.0663 25.5367 96.0663 25.8296 95.7734L43.9468 77.6562C46.6805 74.9225 51.1126 74.9225 53.8463 77.6562L71.9635 95.7734C72.2564 96.0663 72.7313 96.0663 73.0242 95.7734L91.1414 77.6562C93.8751 74.9225 98.3072 74.9225 101.041 77.6562L119.158 95.7734C119.451 96.0663 119.926 96.0663 120.219 95.7734L138.336 77.6562C141.07 74.9225 145.502 74.9225 148.235 77.6562L166.353 95.7734C166.646 96.0663 167.12 96.0663 167.413 95.7734L185.531 77.6562C188.264 74.9225 192.696 74.9225 195.43 77.6562L213.547 95.7734C213.84 96.0663 214.315 96.0663 214.608 95.7734L232.725 77.6562C235.459 74.9225 239.891 74.9225 242.625 77.6562L260.742 95.7734C261.035 96.0663 261.51 96.0663 261.803 95.7734L279.92 77.6562C282.653 74.9225 287.086 74.9225 289.819 77.6562L307.936 95.7734C308.229 96.0663 308.704 96.0663 308.997 95.7734L327.114 77.6562C329.848 74.9225 334.28 74.9225 337.014 77.6562L355.131 95.7734C355.424 96.0663 355.899 96.0663 356.192 95.7734L374.309 77.6561C377.043 74.9225 381.475 74.9225 384.208 77.6561L402.326 95.7734C402.619 96.0663 403.094 96.0663 403.386 95.7734L421.504 77.6562C424.237 74.9225 428.669 74.9225 431.403 77.6562L449.52 95.7734C449.813 96.0663 450.288 96.0663 450.581 95.7734L468.698 77.6562C471.432 74.9225 475.864 74.9225 478.598 77.6562L496.715 95.7734C497.008 96.0663 497.483 96.0663 497.776 95.7734L515.893 77.6562C518.626 74.9225 523.059 74.9225 525.792 77.6562L543.909 95.7734C544.202 96.0663 544.677 96.0663 544.97 95.7734L563.087 77.6562C565.821 74.9225 570.253 74.9225 572.987 77.6562L591.104 95.7734C591.397 96.0662 591.872 96.0663 592.165 95.7734L610.282 77.6562C613.016 74.9225 617.448 74.9225 620.182 77.6562L638.299 95.7734C638.592 96.0662 639.066 96.0663 639.359 95.7734L657.477 77.6561C660.21 74.9225 664.642 74.9225 667.376 77.6561L685.493 95.7734C685.786 96.0662 686.261 96.0663 686.554 95.7734L704.671 77.6562C707.405 74.9225 711.837 74.9225 714.571 77.6562L732.688 95.7734C732.981 96.0663 733.456 96.0663 733.749 95.7734L751.866 77.6562C754.599 74.9225 759.032 74.9225 761.765 77.6562L779.883 95.7734C780.175 96.0663 780.65 96.0663 780.943 95.7734L799.06 77.6562C801.794 74.9225 806.226 74.9225 808.96 77.6562L827.077 95.7734C827.37 96.0663 827.845 96.0663 828.138 95.7734L846.255 77.6562C848.989 74.9225 853.421 74.9225 856.155 77.6562L874.272 95.7734C874.565 96.0662 875.039 96.0663 875.332 95.7734L893.45 77.6562C896.183 74.9225 900.615 74.9225 903.349 77.6562L921.466 95.7734C921.759 96.0663 922.234 96.0663 922.527 95.7734L940.644 77.6562C943.378 74.9225 947.81 74.9225 950.544 77.6562L968.661 95.7734C968.954 96.0663 969.429 96.0663 969.722 95.7734L987.839 77.6562C990.572 74.9225 995.005 74.9225 997.738 77.6562L1015.86 95.7734C1016.15 96.0663 1016.62 96.0663 1016.92 95.7734L1035.03 77.6562C1037.77 74.9225 1042.2 74.9225 1044.93 77.6561L1063.05 95.7734C1063.34 96.0663 1063.82 96.0663 1064.11 95.7734L1082.23 77.6561C1084.96 74.9225 1089.39 74.9225 1092.13 77.6561L1110.24 95.7734C1110.54 96.0663 1111.01 96.0662 1111.31 95.7734L1129.42 77.6562C1132.16 74.9225 1136.59 74.9225 1139.32 77.6562L1157.44 95.7734C1157.73 96.0662 1158.21 96.0663 1158.5 95.7734L1176.62 77.6562C1179.35 74.9225 1183.78 74.9225 1186.52 77.6562L1204.63 95.7734C1204.93 96.0662 1205.4 96.0663 1205.69 95.7734L1223.81 77.6562C1226.55 74.9225 1230.98 74.9225 1233.71 77.6562L1251.83 95.7734C1252.12 96.0662 1252.6 96.0663 1252.89 95.7734L1271.01 77.6562C1273.74 74.9225 1278.17 74.9225 1280.91 77.6562L1299.02 95.7734C1299.32 96.0662 1299.79 96.0663 1300.08 95.7734L1318.2 77.6562C1320.93 74.9225 1325.37 74.9225 1328.1 77.6562L1346.22 95.7734C1346.51 96.0662 1346.99 96.0663 1347.28 95.7734L1365.4 77.6562C1368.13 74.9225 1372.56 74.9225 1375.3 77.6562L1393.41 95.7734C1393.71 96.0663 1394.18 96.0663 1394.47 95.7734L1412.59 77.6562C1415.32 74.9225 1419.76 74.9225 1422.49 77.6562L1440.61 95.7734C1440.9 96.0663 1441.37 96.0662 1441.67 95.7734L1459.78 77.6562C1462.52 74.9225 1466.95 74.9225 1469.68 77.6562L1487.8 95.7734C1488.09 96.0663 1488.57 96.0662 1488.86 95.7734L1512.46 72.1761C1512.75 71.8832 1512.75 71.4083 1512.46 71.1154C1512.17 70.8225 1511.69 70.8225 1511.4 71.1154L1493.28 89.2326C1490.55 91.9663 1486.12 91.9663 1483.38 89.2326L1465.26 71.1154C1464.97 70.8226 1464.5 70.8225 1464.2 71.1154L1446.09 89.2327C1443.35 91.9663 1438.92 91.9663 1436.19 89.2327L1418.07 71.1154C1417.78 70.8225 1417.3 70.8225 1417.01 71.1154L1398.89 89.2327C1396.16 91.9663 1391.73 91.9663 1388.99 89.2327L1370.88 71.1154C1370.58 70.8225 1370.11 70.8225 1369.82 71.1154L1351.7 89.2327C1348.96 91.9663 1344.53 91.9663 1341.8 89.2327L1323.68 71.1154C1323.39 70.8225 1322.91 70.8225 1322.62 71.1154L1304.5 89.2327C1301.77 91.9663 1297.34 91.9663 1294.6 89.2327L1276.49 71.1154C1276.19 70.8225 1275.72 70.8226 1275.43 71.1154L1257.31 89.2326C1254.57 91.9663 1250.14 91.9663 1247.41 89.2326L1229.29 71.1154C1229 70.8225 1228.52 70.8226 1228.23 71.1154L1210.11 89.2326C1207.38 91.9663 1202.95 91.9663 1200.21 89.2326L1182.1 71.1154C1181.8 70.8225 1181.33 70.8226 1181.04 71.1154L1162.92 89.2327C1160.19 91.9663 1155.75 91.9663 1153.02 89.2327L1134.91 71.1235C1134.91 71.1208 1134.91 71.1181 1134.9 71.1154C1134.77 70.9873 1134.61 70.9152 1134.44 70.8992C1134.23 70.8786 1134.01 70.9507 1133.84 71.1154L1115.72 89.2326C1112.99 91.9663 1108.56 91.9663 1105.83 89.2326L1087.71 71.1154C1087.42 70.8226 1086.94 70.8225 1086.65 71.1154L1068.53 89.2327C1065.8 91.9663 1061.36 91.9663 1058.63 89.2326L1040.51 71.1154C1040.22 70.8226 1039.75 70.8225 1039.45 71.1154L1021.34 89.2326C1018.6 91.9663 1014.17 91.9663 1011.44 89.2326L993.319 71.1154C993.026 70.8225 992.551 70.8225 992.258 71.1154L974.141 89.2326C971.407 91.9663 966.975 91.9663 964.242 89.2326L946.124 71.1154C945.831 70.8225 945.356 70.8225 945.064 71.1154L926.946 89.2326C924.213 91.9663 919.781 91.9663 917.047 89.2326L898.93 71.1154C898.637 70.8225 898.162 70.8226 897.869 71.1154L879.752 89.2326C877.018 91.9663 872.586 91.9663 869.852 89.2327L851.735 71.1154C851.442 70.8225 850.967 70.8226 850.674 71.1154L832.557 89.2326C829.824 91.9663 825.391 91.9663 822.658 89.2327L804.54 71.1154C804.248 70.8225 803.773 70.8225 803.48 71.1154L785.363 89.2326C782.629 91.9663 778.197 91.9663 775.463 89.2327L757.346 71.1154C757.09 70.8591 756.694 70.8271 756.403 71.0193C756.361 71.0468 756.322 71.0788 756.285 71.1154L738.168 89.2326C735.434 91.9663 731.002 91.9663 728.268 89.2326L710.151 71.1154C709.858 70.8225 709.383 70.8225 709.091 71.1154L690.973 89.2327C688.24 91.9663 683.808 91.9663 681.074 89.2327L662.957 71.1154C662.664 70.8225 662.189 70.8226 661.896 71.1154L643.779 89.2326C641.045 91.9663 636.613 91.9663 633.879 89.2326L615.762 71.1154C615.469 70.8225 614.994 70.8226 614.701 71.1154L596.584 89.2326C593.851 91.9663 589.418 91.9663 586.685 89.2326L568.567 71.1154C568.275 70.8225 567.8 70.8225 567.507 71.1154L549.39 89.2326C546.656 91.9663 542.224 91.9663 539.49 89.2326L521.373 71.1154C521.08 70.8225 520.605 70.8225 520.312 71.1154L502.195 89.2326C499.461 91.9663 495.029 91.9663 492.296 89.2326L474.178 71.1154C473.885 70.8225 473.411 70.8225 473.118 71.1154L455 89.2326C452.267 91.9663 447.835 91.9663 445.101 89.2326L426.984 71.1154C426.691 70.8225 426.216 70.8225 425.923 71.1154L407.806 89.2327C405.072 91.9663 400.64 91.9663 397.906 89.2327L379.789 71.1154C379.666 70.9923 379.51 70.9209 379.35 70.9013C379.32 70.8976 379.289 70.8958 379.259 70.8958C379.067 70.8958 378.875 70.969 378.728 71.1154L360.611 89.2326C357.877 91.9663 353.445 91.9663 350.712 89.2326L332.594 71.1154C332.302 70.8225 331.827 70.8225 331.534 71.1154L313.417 89.2327C310.683 91.9663 306.251 91.9663 303.517 89.2327L285.4 71.1154C285.107 70.8225 284.632 70.8225 284.339 71.1154L266.222 89.2326C263.488 91.9663 259.056 91.9663 256.322 89.2326L238.205 71.1154C237.912 70.8225 237.437 70.8225 237.145 71.1154L219.027 89.2326C216.294 91.9663 211.862 91.9663 209.128 89.2326L191.011 71.1154C190.718 70.8225 190.243 70.8225 189.95 71.1154L171.833 89.2326C169.099 91.9663 164.667 91.9663 161.933 89.2326L143.816 71.1154C143.523 70.8225 143.048 70.8225 142.755 71.1154L124.638 89.2326C121.905 91.9663 117.472 91.9663 114.739 89.2326L96.6215 71.1154C96.3286 70.8225 95.8537 70.8225 95.5608 71.1154L77.4436 89.2326C74.7099 91.9663 70.2778 91.9663 67.5441 89.2326L49.4269 71.1154Z\" fill=\"#515151\"/>\\n</g>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-106flot\",\"data-framer-name\":\"Union\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:26,intrinsicWidth:1513,svg:'<svg width=\"1513\" height=\"26\" viewBox=\"0 0 1513 26\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path opacity=\"0.08\" d=\"M49.4269 0.212835C49.134 -0.0800585 48.6591 -0.0800575 48.3662 0.212835L30.249 18.3301C27.5153 21.0637 23.0832 21.0637 20.3495 18.3301L2.23223 0.212834C1.93934 -0.0800591 1.46447 -0.0800583 1.17157 0.212835C0.878681 0.505729 0.878681 0.980603 1.17158 1.2735L24.7689 24.8708C25.0618 25.1637 25.5367 25.1637 25.8296 24.8708L43.9468 6.75357C46.6805 4.0199 51.1126 4.0199 53.8463 6.75357L71.9635 24.8708C72.2564 25.1637 72.7313 25.1637 73.0242 24.8708L91.1414 6.75357C93.8751 4.0199 98.3072 4.0199 101.041 6.75357L119.158 24.8708C119.451 25.1637 119.926 25.1637 120.219 24.8708L138.336 6.75357C141.07 4.0199 145.502 4.0199 148.235 6.75357L166.353 24.8708C166.646 25.1637 167.12 25.1637 167.413 24.8708L185.531 6.75357C188.264 4.0199 192.696 4.0199 195.43 6.75357L213.547 24.8708C213.84 25.1637 214.315 25.1637 214.608 24.8708L232.725 6.75358C235.459 4.01991 239.891 4.01991 242.625 6.75358L260.742 24.8708C261.035 25.1637 261.51 25.1637 261.803 24.8708L279.92 6.75357C282.653 4.01989 287.086 4.01989 289.819 6.75356L307.936 24.8708C308.229 25.1637 308.704 25.1637 308.997 24.8708L327.114 6.75357C329.848 4.0199 334.28 4.01991 337.014 6.75358L355.131 24.8708C355.424 25.1637 355.899 25.1637 356.192 24.8708L374.309 6.75355C377.043 4.01988 381.475 4.01988 384.208 6.75354L402.326 24.8708C402.619 25.1637 403.094 25.1637 403.386 24.8708L421.504 6.75357C424.237 4.0199 428.669 4.0199 431.403 6.75357L449.52 24.8708C449.813 25.1637 450.288 25.1637 450.581 24.8708L468.698 6.75357C471.432 4.0199 475.864 4.01991 478.598 6.75358L496.715 24.8708C497.008 25.1637 497.483 25.1637 497.776 24.8708L515.893 6.75357C518.626 4.0199 523.059 4.0199 525.792 6.75358L543.909 24.8708C544.202 25.1637 544.677 25.1637 544.97 24.8708L563.087 6.75357C565.821 4.0199 570.253 4.0199 572.987 6.75358L591.104 24.8708C591.397 25.1636 591.872 25.1637 592.165 24.8708L610.282 6.75357C613.016 4.0199 617.448 4.01991 620.182 6.75358L638.299 24.8708C638.592 25.1636 639.066 25.1637 639.359 24.8708L657.477 6.75355C660.21 4.01989 664.642 4.01989 667.376 6.75356L685.493 24.8708C685.786 25.1637 686.261 25.1637 686.554 24.8708L704.671 6.75356C707.405 4.0199 711.837 4.01991 714.571 6.75357L732.688 24.8708C732.981 25.1637 733.456 25.1637 733.749 24.8708L751.866 6.75357C754.599 4.0199 759.032 4.0199 761.765 6.75357L779.883 24.8708C780.175 25.1637 780.65 25.1637 780.943 24.8708L799.06 6.75357C801.794 4.0199 806.226 4.01991 808.96 6.75358L827.077 24.8708C827.37 25.1637 827.845 25.1637 828.138 24.8708L846.255 6.75356C848.989 4.0199 853.421 4.0199 856.155 6.75357L874.272 24.8708C874.565 25.1637 875.039 25.1637 875.332 24.8708L893.45 6.75356C896.183 4.01989 900.615 4.0199 903.349 6.75357L921.466 24.8708C921.759 25.1637 922.234 25.1637 922.527 24.8708L940.644 6.75357C943.378 4.0199 947.81 4.0199 950.544 6.75358L968.661 24.8708C968.954 25.1637 969.429 25.1637 969.722 24.8708L987.839 6.75358C990.572 4.01991 995.005 4.01991 997.738 6.75358L1015.86 24.8708C1016.15 25.1637 1016.62 25.1637 1016.92 24.8708L1035.03 6.75356C1037.77 4.01989 1042.2 4.01989 1044.93 6.75356L1063.05 24.8708C1063.34 25.1637 1063.82 25.1637 1064.11 24.8708L1082.23 6.75356C1084.96 4.0199 1089.39 4.0199 1092.13 6.75356L1110.24 24.8708C1110.54 25.1637 1111.01 25.1636 1111.31 24.8708L1129.42 6.75359C1132.16 4.01991 1136.59 4.01991 1139.32 6.75357L1157.44 24.8708C1157.73 25.1637 1158.21 25.1637 1158.5 24.8708L1176.62 6.75357C1179.35 4.0199 1183.78 4.0199 1186.52 6.75358L1204.63 24.8708C1204.93 25.1636 1205.4 25.1637 1205.69 24.8708L1223.81 6.75357C1226.55 4.0199 1230.98 4.0199 1233.71 6.75358L1251.83 24.8708C1252.12 25.1636 1252.6 25.1637 1252.89 24.8708L1271.01 6.75357C1273.74 4.0199 1278.17 4.0199 1280.91 6.75358L1299.02 24.8708C1299.32 25.1636 1299.79 25.1637 1300.08 24.8708L1318.2 6.75357C1320.93 4.0199 1325.37 4.0199 1328.1 6.75358L1346.22 24.8708C1346.51 25.1636 1346.99 25.1637 1347.28 24.8708L1365.4 6.75357C1368.13 4.0199 1372.56 4.01991 1375.3 6.75358L1393.41 24.8708C1393.71 25.1637 1394.18 25.1637 1394.47 24.8708L1412.59 6.75357C1415.32 4.0199 1419.76 4.01989 1422.49 6.75356L1440.61 24.8708C1440.9 25.1637 1441.37 25.1636 1441.67 24.8708L1459.78 6.75358C1462.52 4.01991 1466.95 4.0199 1469.68 6.75357L1487.8 24.8708C1488.09 25.1637 1488.57 25.1636 1488.86 24.8708L1512.46 1.27349C1512.75 0.980601 1512.75 0.505728 1512.46 0.212835C1512.17 -0.0800587 1511.69 -0.0800587 1511.4 0.212835L1493.28 18.3301C1490.55 21.0637 1486.12 21.0637 1483.38 18.33L1465.26 0.212835C1464.97 -0.0800257 1464.5 -0.0800594 1464.2 0.212835L1446.09 18.3301C1443.35 21.0637 1438.92 21.0637 1436.19 18.3301L1418.07 0.212835C1417.78 -0.0800495 1417.3 -0.0800495 1417.01 0.212835L1398.89 18.3301C1396.16 21.0637 1391.73 21.0637 1388.99 18.3301L1370.88 0.212835C1370.58 -0.0800495 1370.11 -0.0800495 1369.82 0.212835L1351.7 18.3301C1348.96 21.0637 1344.53 21.0637 1341.8 18.3301L1323.68 0.212835C1323.39 -0.0800495 1322.91 -0.0800495 1322.62 0.212835L1304.5 18.3301C1301.77 21.0637 1297.34 21.0637 1294.6 18.3301L1276.49 0.212835C1276.19 -0.0800594 1275.72 -0.0800257 1275.43 0.212835L1257.31 18.33C1254.57 21.0637 1250.14 21.0637 1247.41 18.3301L1229.29 0.212835C1229 -0.0800594 1228.52 -0.0800257 1228.23 0.212835L1210.11 18.33C1207.38 21.0637 1202.95 21.0637 1200.21 18.3301L1182.1 0.212835C1181.8 -0.0800594 1181.33 -0.0800257 1181.04 0.212835L1162.92 18.3301C1160.19 21.0637 1155.75 21.0637 1153.02 18.3301L1134.91 0.220951C1134.91 0.21823 1134.91 0.215525 1134.9 0.212835C1134.77 0.0846937 1134.61 0.0126146 1134.44 -0.00340304C1134.23 -0.0239971 1134.01 0.0480821 1133.84 0.212835L1115.72 18.3301C1112.99 21.0637 1108.56 21.0637 1105.83 18.33L1087.71 0.212835C1087.42 -0.0800257 1086.94 -0.0800594 1086.65 0.212835L1068.53 18.3301C1065.8 21.0637 1061.36 21.0637 1058.63 18.3301L1040.51 0.212835C1040.22 -0.0800257 1039.75 -0.0800594 1039.45 0.212835L1021.34 18.3301C1018.6 21.0637 1014.17 21.0637 1011.44 18.3301L993.319 0.212835C993.026 -0.0800594 992.551 -0.0800594 992.258 0.212835L974.141 18.3301C971.407 21.0637 966.975 21.0637 964.242 18.33L946.124 0.212835C945.831 -0.0800594 945.356 -0.0800594 945.064 0.212835L926.946 18.3301C924.213 21.0637 919.781 21.0637 917.047 18.3301L898.93 0.212835C898.637 -0.0800545 898.162 -0.0800376 897.869 0.212835L879.752 18.3301C877.018 21.0637 872.586 21.0637 869.852 18.3301L851.735 0.212835C851.442 -0.0800545 850.967 -0.0800376 850.674 0.212835L832.557 18.3301C829.824 21.0637 825.391 21.0637 822.658 18.3301L804.54 0.212835C804.248 -0.0800594 803.773 -0.0800594 803.48 0.212835L785.363 18.3301C782.629 21.0637 778.197 21.0637 775.463 18.3301L757.346 0.212834C757.09 -0.0434475 756.694 -0.075482 756.403 0.11673C756.361 0.144188 756.322 0.176224 756.285 0.212835L738.168 18.33C735.434 21.0637 731.002 21.0637 728.268 18.33L710.151 0.212835C709.858 -0.0800594 709.383 -0.0800594 709.091 0.212835L690.973 18.3301C688.24 21.0637 683.808 21.0637 681.074 18.3301L662.957 0.212835C662.664 -0.0800545 662.189 -0.0800376 661.896 0.212835L643.779 18.3301C641.045 21.0637 636.613 21.0637 633.879 18.3301L615.762 0.212835C615.469 -0.0800594 614.994 -0.0800257 614.701 0.212835L596.584 18.33C593.851 21.0637 589.418 21.0637 586.685 18.3301L568.567 0.212835C568.275 -0.0800594 567.8 -0.0800594 567.507 0.212835L549.39 18.33C546.656 21.0637 542.224 21.0637 539.49 18.33L521.373 0.212835C521.08 -0.0800594 520.605 -0.0800594 520.312 0.212835L502.195 18.33C499.461 21.0637 495.029 21.0637 492.296 18.33L474.178 0.212835C473.885 -0.0800594 473.411 -0.0800594 473.118 0.212835L455 18.33C452.267 21.0637 447.835 21.0637 445.101 18.33L426.984 0.212835C426.691 -0.0800594 426.216 -0.0800594 425.923 0.212835L407.806 18.3301C405.072 21.0637 400.64 21.0637 397.906 18.3301L379.789 0.212835C379.666 0.0896635 379.51 0.0182898 379.35 -0.00128642C379.32 -0.00498573 379.289 -0.00683539 379.259 -0.00683539C379.067 -0.00683539 378.875 0.0663879 378.728 0.212835L360.611 18.33C357.877 21.0637 353.445 21.0637 350.712 18.33L332.594 0.212835C332.302 -0.0800594 331.827 -0.0800594 331.534 0.212835L313.417 18.3301C310.683 21.0637 306.251 21.0637 303.517 18.3301L285.4 0.212835C285.107 -0.0800484 284.632 -0.0800568 284.339 0.212835L266.222 18.3301C263.488 21.0637 259.056 21.0637 256.322 18.33L238.205 0.212835C237.912 -0.0800594 237.437 -0.0800594 237.145 0.212835L219.027 18.3301C216.294 21.0637 211.862 21.0637 209.128 18.3301L191.011 0.212835C190.718 -0.0800539 190.243 -0.0800581 189.95 0.212835L171.833 18.3301C169.099 21.0637 164.667 21.0637 161.933 18.3301L143.816 0.212835C143.523 -0.0800581 143.048 -0.0800539 142.755 0.212835L124.638 18.3301C121.905 21.0637 117.472 21.0637 114.739 18.3301L96.6215 0.212835C96.3286 -0.0800568 95.8537 -0.0800589 95.5608 0.212835L77.4436 18.3301C74.7099 21.0637 70.2778 21.0637 67.5441 18.3301L49.4269 0.212835Z\" fill=\"#515151\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-dvbum4\",\"data-framer-name\":\"Union\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:26,intrinsicWidth:1513,svg:'<svg width=\"1513\" height=\"26\" viewBox=\"0 0 1513 26\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path opacity=\"0.08\" d=\"M49.4269 0.310003C49.134 0.0171094 48.6591 0.0171105 48.3662 0.310003L30.249 18.4272C27.5153 21.1609 23.0832 21.1609 20.3495 18.4272L2.23223 0.310002C1.93934 0.0171089 1.46447 0.0171096 1.17157 0.310003C0.878681 0.602897 0.878681 1.07777 1.17158 1.37066L24.7689 24.968C25.0618 25.2609 25.5367 25.2609 25.8296 24.968L43.9468 6.85074C46.6805 4.11707 51.1126 4.11706 53.8463 6.85074L71.9635 24.968C72.2564 25.2609 72.7313 25.2608 73.0242 24.968L91.1414 6.85074C93.8751 4.11707 98.3072 4.11707 101.041 6.85074L119.158 24.968C119.451 25.2608 119.926 25.2609 120.219 24.968L138.336 6.85074C141.07 4.11707 145.502 4.11706 148.235 6.85073L166.353 24.968C166.646 25.2609 167.12 25.2609 167.413 24.968L185.531 6.85074C188.264 4.11707 192.696 4.11707 195.43 6.85074L213.547 24.968C213.84 25.2608 214.315 25.2608 214.608 24.968L232.725 6.85074C235.459 4.11707 239.891 4.11708 242.625 6.85075L260.742 24.968C261.035 25.2609 261.51 25.2609 261.803 24.968L279.92 6.85073C282.653 4.11706 287.086 4.11706 289.819 6.85073L307.936 24.968C308.229 25.2608 308.704 25.2608 308.997 24.968L327.114 6.85074C329.848 4.11707 334.28 4.11708 337.014 6.85075L355.131 24.968C355.424 25.2609 355.899 25.2609 356.192 24.968L374.309 6.85072C377.043 4.11705 381.475 4.11705 384.208 6.85071L402.326 24.968C402.619 25.2608 403.094 25.2608 403.386 24.968L421.504 6.85074C424.237 4.11707 428.669 4.11707 431.403 6.85074L449.52 24.968C449.813 25.2609 450.288 25.2609 450.581 24.968L468.698 6.85074C471.432 4.11707 475.864 4.11707 478.598 6.85074L496.715 24.968C497.008 25.2609 497.483 25.2609 497.776 24.968L515.893 6.85074C518.626 4.11707 523.059 4.11707 525.792 6.85074L543.909 24.968C544.202 25.2609 544.677 25.2609 544.97 24.968L563.087 6.85073C565.821 4.11707 570.253 4.11707 572.987 6.85074L591.104 24.968C591.397 25.2608 591.872 25.2609 592.165 24.968L610.282 6.85074C613.016 4.11707 617.448 4.11708 620.182 6.85075L638.299 24.968C638.592 25.2608 639.066 25.2609 639.359 24.968L657.477 6.85072C660.21 4.11706 664.642 4.11706 667.376 6.85073L685.493 24.968C685.786 25.2608 686.261 25.2608 686.554 24.968L704.671 6.85073C707.405 4.11707 711.837 4.11707 714.571 6.85074L732.688 24.968C732.981 25.2609 733.456 25.2609 733.749 24.968L751.866 6.85074C754.599 4.11707 759.032 4.11707 761.765 6.85073L779.883 24.968C780.175 25.2609 780.65 25.2609 780.943 24.968L799.06 6.85074C801.794 4.11707 806.226 4.11707 808.96 6.85074L827.077 24.968C827.37 25.2609 827.845 25.2609 828.138 24.968L846.255 6.85073C848.989 4.11707 853.421 4.11707 856.155 6.85074L874.272 24.968C874.565 25.2608 875.039 25.2608 875.332 24.968L893.45 6.85073C896.183 4.11706 900.615 4.11707 903.349 6.85074L921.466 24.968C921.759 25.2609 922.234 25.2609 922.527 24.968L940.644 6.85074C943.378 4.11707 947.81 4.11707 950.544 6.85074L968.661 24.968C968.954 25.2609 969.429 25.2609 969.722 24.968L987.839 6.85075C990.572 4.11708 995.005 4.11708 997.738 6.85075L1015.86 24.968C1016.15 25.2609 1016.62 25.2609 1016.92 24.968L1035.03 6.85073C1037.77 4.11706 1042.2 4.11706 1044.93 6.85073L1063.05 24.968C1063.34 25.2608 1063.82 25.2608 1064.11 24.968L1082.23 6.85073C1084.96 4.11706 1089.39 4.11706 1092.13 6.85073L1110.24 24.968C1110.54 25.2609 1111.01 25.2608 1111.31 24.968L1129.42 6.85075C1132.16 4.11708 1136.59 4.11707 1139.32 6.85074L1157.44 24.968C1157.73 25.2608 1158.21 25.2609 1158.5 24.968L1176.62 6.85074C1179.35 4.11707 1183.78 4.11707 1186.52 6.85075L1204.63 24.968C1204.93 25.2608 1205.4 25.2609 1205.69 24.968L1223.81 6.85074C1226.55 4.11707 1230.98 4.11707 1233.71 6.85075L1251.83 24.968C1252.12 25.2608 1252.6 25.2609 1252.89 24.968L1271.01 6.85073C1273.74 4.11707 1278.17 4.11707 1280.91 6.85074L1299.02 24.968C1299.32 25.2608 1299.79 25.2609 1300.08 24.968L1318.2 6.85073C1320.93 4.11707 1325.37 4.11707 1328.1 6.85074L1346.22 24.968C1346.51 25.2608 1346.99 25.2609 1347.28 24.968L1365.4 6.85074C1368.13 4.11707 1372.56 4.11708 1375.3 6.85075L1393.41 24.968C1393.71 25.2609 1394.18 25.2609 1394.47 24.968L1412.59 6.85074C1415.32 4.11707 1419.76 4.11706 1422.49 6.85073L1440.61 24.968C1440.9 25.2609 1441.37 25.2608 1441.67 24.968L1459.78 6.85075C1462.52 4.11708 1466.95 4.11707 1469.68 6.85074L1487.8 24.968C1488.09 25.2609 1488.57 25.2608 1488.86 24.968L1512.46 1.37066C1512.75 1.07777 1512.75 0.602896 1512.46 0.310003C1512.17 0.0171093 1511.69 0.0171093 1511.4 0.310003L1493.28 18.4272C1490.55 21.1609 1486.12 21.1609 1483.38 18.4272L1465.26 0.310003C1464.97 0.0171423 1464.5 0.0171086 1464.2 0.310003L1446.09 18.4272C1443.35 21.1609 1438.92 21.1609 1436.19 18.4272L1418.07 0.310003C1417.78 0.0171185 1417.3 0.0171185 1417.01 0.310003L1398.89 18.4272C1396.16 21.1609 1391.73 21.1609 1388.99 18.4272L1370.88 0.310003C1370.58 0.0171185 1370.11 0.0171185 1369.82 0.310003L1351.7 18.4272C1348.96 21.1609 1344.53 21.1609 1341.8 18.4272L1323.68 0.310003C1323.39 0.0171185 1322.91 0.0171185 1322.62 0.310003L1304.5 18.4272C1301.77 21.1609 1297.34 21.1609 1294.6 18.4272L1276.49 0.310003C1276.19 0.0171086 1275.72 0.0171423 1275.43 0.310003L1257.31 18.4272C1254.57 21.1609 1250.14 21.1609 1247.41 18.4272L1229.29 0.310003C1229 0.0171086 1228.52 0.0171423 1228.23 0.310003L1210.11 18.4272C1207.38 21.1609 1202.95 21.1609 1200.21 18.4272L1182.1 0.310003C1181.8 0.0171086 1181.33 0.0171423 1181.04 0.310003L1162.92 18.4272C1160.19 21.1609 1155.75 21.1609 1153.02 18.4273L1134.91 0.318119C1134.91 0.315398 1134.91 0.312693 1134.9 0.310003C1134.77 0.181862 1134.61 0.109783 1134.44 0.0937649C1134.23 0.0731709 1134.01 0.14525 1133.84 0.310003L1115.72 18.4272C1112.99 21.1609 1108.56 21.1609 1105.83 18.4272L1087.71 0.310003C1087.42 0.0171423 1086.94 0.0171086 1086.65 0.310003L1068.53 18.4272C1065.8 21.1609 1061.36 21.1609 1058.63 18.4272L1040.51 0.310003C1040.22 0.0171423 1039.75 0.0171086 1039.45 0.310003L1021.34 18.4272C1018.6 21.1609 1014.17 21.1609 1011.44 18.4272L993.319 0.310003C993.026 0.0171085 992.551 0.0171085 992.258 0.310003L974.141 18.4272C971.407 21.1609 966.975 21.1609 964.242 18.4272L946.124 0.310003C945.831 0.0171085 945.356 0.0171085 945.064 0.310003L926.946 18.4272C924.213 21.1609 919.781 21.1609 917.047 18.4272L898.93 0.310003C898.637 0.0171135 898.162 0.0171304 897.869 0.310003L879.752 18.4272C877.018 21.1609 872.586 21.1609 869.852 18.4272L851.735 0.310003C851.442 0.0171135 850.967 0.0171304 850.674 0.310003L832.557 18.4272C829.824 21.1609 825.391 21.1609 822.658 18.4272L804.54 0.310003C804.248 0.0171085 803.773 0.0171085 803.48 0.310003L785.363 18.4272C782.629 21.1609 778.197 21.1609 775.463 18.4272L757.346 0.310002C757.09 0.0537205 756.694 0.0216859 756.403 0.213898C756.361 0.241356 756.322 0.273392 756.285 0.310003L738.168 18.4272C735.434 21.1609 731.002 21.1609 728.268 18.4272L710.151 0.310003C709.858 0.0171085 709.383 0.0171085 709.091 0.310003L690.973 18.4272C688.24 21.1609 683.808 21.1609 681.074 18.4272L662.957 0.310003C662.664 0.0171135 662.189 0.0171304 661.896 0.310003L643.779 18.4272C641.045 21.1609 636.613 21.1609 633.879 18.4272L615.762 0.310003C615.469 0.0171086 614.994 0.0171423 614.701 0.310003L596.584 18.4272C593.851 21.1609 589.418 21.1609 586.685 18.4272L568.567 0.310003C568.275 0.0171085 567.8 0.0171085 567.507 0.310003L549.39 18.4272C546.656 21.1609 542.224 21.1609 539.49 18.4272L521.373 0.310003C521.08 0.0171085 520.605 0.0171085 520.312 0.310003L502.195 18.4272C499.461 21.1609 495.029 21.1609 492.296 18.4272L474.178 0.310003C473.885 0.0171085 473.411 0.0171085 473.118 0.310003L455 18.4272C452.267 21.1609 447.835 21.1609 445.101 18.4272L426.984 0.310003C426.691 0.0171085 426.216 0.0171085 425.923 0.310003L407.806 18.4272C405.072 21.1609 400.64 21.1609 397.906 18.4272L379.789 0.310003C379.666 0.186831 379.51 0.115458 379.35 0.0958816C379.32 0.0921822 379.289 0.0903326 379.259 0.0903326C379.067 0.0903326 378.875 0.163556 378.728 0.310003L360.611 18.4272C357.877 21.1609 353.445 21.1609 350.712 18.4272L332.594 0.310003C332.302 0.0171085 331.827 0.0171085 331.534 0.310003L313.417 18.4272C310.683 21.1609 306.251 21.1609 303.517 18.4272L285.4 0.310003C285.107 0.0171195 284.632 0.0171111 284.339 0.310003L266.222 18.4272C263.488 21.1609 259.056 21.1609 256.322 18.4272L238.205 0.310003C237.912 0.0171085 237.437 0.0171085 237.145 0.310003L219.027 18.4272C216.294 21.1609 211.862 21.1609 209.128 18.4272L191.011 0.310003C190.718 0.017114 190.243 0.0171098 189.95 0.310003L171.833 18.4272C169.099 21.1609 164.667 21.1609 161.933 18.4272L143.816 0.310003C143.523 0.0171098 143.048 0.017114 142.755 0.310003L124.638 18.4272C121.905 21.1609 117.472 21.1609 114.739 18.4272L96.6215 0.310003C96.3286 0.0171112 95.8537 0.0171091 95.5608 0.310003L77.4436 18.4272C74.7099 21.1609 70.2778 21.1609 67.5441 18.4272L49.4269 0.310003Z\" fill=\"#515151\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-ma96jx\",\"data-framer-name\":\"Union\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:26,intrinsicWidth:1513,svg:'<svg width=\"1513\" height=\"26\" viewBox=\"0 0 1513 26\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path opacity=\"0.08\" d=\"M49.4269 0.356878C49.134 0.0639844 48.6591 0.0639855 48.3662 0.356878L30.249 18.4741C27.5153 21.2078 23.0832 21.2078 20.3495 18.4741L2.23223 0.356877C1.93934 0.0639839 1.46447 0.0639846 1.17157 0.356878C0.878681 0.649772 0.878681 1.12465 1.17158 1.41754L24.7689 25.0148C25.0618 25.3077 25.5367 25.3077 25.8296 25.0148L43.9468 6.89761C46.6805 4.16394 51.1126 4.16394 53.8463 6.89761L71.9635 25.0148C72.2564 25.3077 72.7313 25.3077 73.0242 25.0148L91.1414 6.89762C93.8751 4.16395 98.3072 4.16394 101.041 6.89761L119.158 25.0148C119.451 25.3077 119.926 25.3077 120.219 25.0148L138.336 6.89761C141.07 4.16394 145.502 4.16394 148.235 6.89761L166.353 25.0148C166.646 25.3077 167.12 25.3077 167.413 25.0148L185.531 6.89761C188.264 4.16394 192.696 4.16395 195.43 6.89762L213.547 25.0148C213.84 25.3077 214.315 25.3077 214.608 25.0148L232.725 6.89762C235.459 4.16395 239.891 4.16395 242.625 6.89762L260.742 25.0148C261.035 25.3077 261.51 25.3077 261.803 25.0148L279.92 6.89761C282.653 4.16394 287.086 4.16394 289.819 6.89761L307.936 25.0148C308.229 25.3077 308.704 25.3077 308.997 25.0148L327.114 6.89761C329.848 4.16395 334.28 4.16395 337.014 6.89762L355.131 25.0148C355.424 25.3077 355.899 25.3077 356.192 25.0148L374.309 6.89759C377.043 4.16393 381.475 4.16392 384.208 6.89758L402.326 25.0148C402.619 25.3077 403.094 25.3077 403.386 25.0148L421.504 6.89761C424.237 4.16394 428.669 4.16395 431.403 6.89762L449.52 25.0148C449.813 25.3077 450.288 25.3077 450.581 25.0148L468.698 6.89762C471.432 4.16395 475.864 4.16395 478.598 6.89762L496.715 25.0148C497.008 25.3077 497.483 25.3077 497.776 25.0148L515.893 6.89762C518.626 4.16394 523.059 4.16395 525.792 6.89762L543.909 25.0148C544.202 25.3077 544.677 25.3077 544.97 25.0148L563.087 6.89761C565.821 4.16394 570.253 4.16394 572.987 6.89762L591.104 25.0148C591.397 25.3077 591.872 25.3077 592.165 25.0148L610.282 6.89761C613.016 4.16395 617.448 4.16395 620.182 6.89762L638.299 25.0148C638.592 25.3077 639.066 25.3077 639.359 25.0148L657.477 6.8976C660.21 4.16393 664.642 4.16393 667.376 6.8976L685.493 25.0148C685.786 25.3077 686.261 25.3077 686.554 25.0148L704.671 6.89761C707.405 4.16394 711.837 4.16395 714.571 6.89762L732.688 25.0148C732.981 25.3077 733.456 25.3077 733.749 25.0148L751.866 6.89761C754.599 4.16395 759.032 4.16394 761.765 6.89761L779.883 25.0148C780.175 25.3077 780.65 25.3077 780.943 25.0148L799.06 6.89762C801.794 4.16395 806.226 4.16395 808.96 6.89762L827.077 25.0148C827.37 25.3077 827.845 25.3077 828.138 25.0148L846.255 6.89761C848.989 4.16394 853.421 4.16394 856.155 6.89761L874.272 25.0148C874.565 25.3077 875.039 25.3077 875.332 25.0148L893.45 6.8976C896.183 4.16394 900.615 4.16394 903.349 6.89761L921.466 25.0148C921.759 25.3077 922.234 25.3077 922.527 25.0148L940.644 6.89762C943.378 4.16394 947.81 4.16395 950.544 6.89762L968.661 25.0148C968.954 25.3077 969.429 25.3077 969.722 25.0148L987.839 6.89762C990.572 4.16395 995.005 4.16395 997.738 6.89762L1015.86 25.0148C1016.15 25.3077 1016.62 25.3077 1016.92 25.0148L1035.03 6.8976C1037.77 4.16393 1042.2 4.16393 1044.93 6.8976L1063.05 25.0148C1063.34 25.3077 1063.82 25.3077 1064.11 25.0148L1082.23 6.8976C1084.96 4.16394 1089.39 4.16394 1092.13 6.8976L1110.24 25.0148C1110.54 25.3077 1111.01 25.3077 1111.31 25.0148L1129.42 6.89763C1132.16 4.16395 1136.59 4.16395 1139.32 6.89762L1157.44 25.0148C1157.73 25.3077 1158.21 25.3077 1158.5 25.0148L1176.62 6.89761C1179.35 4.16394 1183.78 4.16395 1186.52 6.89762L1204.63 25.0148C1204.93 25.3077 1205.4 25.3077 1205.69 25.0148L1223.81 6.89761C1226.55 4.16394 1230.98 4.16395 1233.71 6.89762L1251.83 25.0148C1252.12 25.3077 1252.6 25.3077 1252.89 25.0148L1271.01 6.89761C1273.74 4.16394 1278.17 4.16394 1280.91 6.89762L1299.02 25.0148C1299.32 25.3077 1299.79 25.3077 1300.08 25.0148L1318.2 6.89761C1320.93 4.16394 1325.37 4.16394 1328.1 6.89762L1346.22 25.0148C1346.51 25.3077 1346.99 25.3077 1347.28 25.0148L1365.4 6.89761C1368.13 4.16395 1372.56 4.16395 1375.3 6.89762L1393.41 25.0148C1393.71 25.3077 1394.18 25.3077 1394.47 25.0148L1412.59 6.89762C1415.32 4.16394 1419.76 4.16394 1422.49 6.89761L1440.61 25.0148C1440.9 25.3077 1441.37 25.3077 1441.67 25.0148L1459.78 6.89763C1462.52 4.16395 1466.95 4.16395 1469.68 6.89761L1487.8 25.0148C1488.09 25.3077 1488.57 25.3077 1488.86 25.0148L1512.46 1.41754C1512.75 1.12464 1512.75 0.649771 1512.46 0.356878C1512.17 0.0639843 1511.69 0.0639843 1511.4 0.356878L1493.28 18.4741C1490.55 21.2078 1486.12 21.2078 1483.38 18.4741L1465.26 0.356878C1464.97 0.0640173 1464.5 0.0639836 1464.2 0.356878L1446.09 18.4741C1443.35 21.2078 1438.92 21.2078 1436.19 18.4741L1418.07 0.356878C1417.78 0.0639935 1417.3 0.0639935 1417.01 0.356878L1398.89 18.4741C1396.16 21.2078 1391.73 21.2078 1388.99 18.4741L1370.88 0.356878C1370.58 0.0639935 1370.11 0.0639935 1369.82 0.356878L1351.7 18.4741C1348.96 21.2078 1344.53 21.2078 1341.8 18.4741L1323.68 0.356878C1323.39 0.0639935 1322.91 0.0639935 1322.62 0.356878L1304.5 18.4741C1301.77 21.2078 1297.34 21.2078 1294.6 18.4741L1276.49 0.356878C1276.19 0.0639836 1275.72 0.0640173 1275.43 0.356878L1257.31 18.4741C1254.57 21.2078 1250.14 21.2078 1247.41 18.4741L1229.29 0.356878C1229 0.0639836 1228.52 0.0640173 1228.23 0.356878L1210.11 18.4741C1207.38 21.2078 1202.95 21.2078 1200.21 18.4741L1182.1 0.356878C1181.8 0.0639836 1181.33 0.0640173 1181.04 0.356878L1162.92 18.4741C1160.19 21.2078 1155.75 21.2078 1153.02 18.4741L1134.91 0.364994C1134.91 0.362273 1134.91 0.359568 1134.9 0.356878C1134.77 0.228737 1134.61 0.156658 1134.44 0.14064C1134.23 0.120046 1134.01 0.192125 1133.84 0.356878L1115.72 18.4741C1112.99 21.2078 1108.56 21.2078 1105.83 18.4741L1087.71 0.356878C1087.42 0.0640173 1086.94 0.0639836 1086.65 0.356878L1068.53 18.4741C1065.8 21.2078 1061.36 21.2078 1058.63 18.4741L1040.51 0.356878C1040.22 0.0640173 1039.75 0.0639836 1039.45 0.356878L1021.34 18.4741C1018.6 21.2078 1014.17 21.2078 1011.44 18.4741L993.319 0.356878C993.026 0.0639835 992.551 0.0639835 992.258 0.356878L974.141 18.4741C971.407 21.2078 966.975 21.2078 964.242 18.4741L946.124 0.356878C945.831 0.0639835 945.356 0.0639835 945.064 0.356878L926.946 18.4741C924.213 21.2078 919.781 21.2078 917.047 18.4741L898.93 0.356878C898.637 0.0639885 898.162 0.0640054 897.869 0.356878L879.752 18.4741C877.018 21.2078 872.586 21.2078 869.852 18.4741L851.735 0.356878C851.442 0.0639885 850.967 0.0640054 850.674 0.356878L832.557 18.4741C829.824 21.2078 825.391 21.2078 822.658 18.4741L804.54 0.356878C804.248 0.0639835 803.773 0.0639835 803.48 0.356878L785.363 18.4741C782.629 21.2078 778.197 21.2078 775.463 18.4741L757.346 0.356877C757.09 0.100596 756.694 0.0685609 756.403 0.260773C756.361 0.288231 756.322 0.320267 756.285 0.356878L738.168 18.4741C735.434 21.2078 731.002 21.2078 728.268 18.4741L710.151 0.356878C709.858 0.0639835 709.383 0.0639835 709.091 0.356878L690.973 18.4741C688.24 21.2078 683.808 21.2078 681.074 18.4741L662.957 0.356878C662.664 0.0639885 662.189 0.0640054 661.896 0.356878L643.779 18.4741C641.045 21.2078 636.613 21.2078 633.879 18.4741L615.762 0.356878C615.469 0.0639836 614.994 0.0640173 614.701 0.356878L596.584 18.4741C593.851 21.2078 589.418 21.2078 586.685 18.4741L568.567 0.356878C568.275 0.0639835 567.8 0.0639835 567.507 0.356878L549.39 18.4741C546.656 21.2078 542.224 21.2078 539.49 18.4741L521.373 0.356878C521.08 0.0639835 520.605 0.0639835 520.312 0.356878L502.195 18.4741C499.461 21.2078 495.029 21.2078 492.296 18.4741L474.178 0.356878C473.885 0.0639835 473.411 0.0639835 473.118 0.356878L455 18.4741C452.267 21.2078 447.835 21.2078 445.101 18.4741L426.984 0.356878C426.691 0.0639835 426.216 0.0639835 425.923 0.356878L407.806 18.4741C405.072 21.2078 400.64 21.2078 397.906 18.4741L379.789 0.356878C379.666 0.233706 379.51 0.162333 379.35 0.142757C379.32 0.139057 379.289 0.137208 379.259 0.137208C379.067 0.137208 378.875 0.210431 378.728 0.356878L360.611 18.4741C357.877 21.2078 353.445 21.2078 350.712 18.4741L332.594 0.356878C332.302 0.0639835 331.827 0.0639835 331.534 0.356878L313.417 18.4741C310.683 21.2078 306.251 21.2078 303.517 18.4741L285.4 0.356878C285.107 0.0639945 284.632 0.0639861 284.339 0.356878L266.222 18.4741C263.488 21.2078 259.056 21.2078 256.322 18.4741L238.205 0.356878C237.912 0.0639835 237.437 0.0639835 237.145 0.356878L219.027 18.4741C216.294 21.2078 211.862 21.2078 209.128 18.4741L191.011 0.356878C190.718 0.063989 190.243 0.0639848 189.95 0.356878L171.833 18.4741C169.099 21.2078 164.667 21.2078 161.933 18.4741L143.816 0.356878C143.523 0.0639848 143.048 0.063989 142.755 0.356878L124.638 18.4741C121.905 21.2078 117.472 21.2078 114.739 18.4741L96.6215 0.356878C96.3286 0.0639862 95.8537 0.0639841 95.5608 0.356878L77.4436 18.4741C74.7099 21.2078 70.2778 21.2078 67.5441 18.4741L49.4269 0.356878Z\" fill=\"#515151\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-13go6r1\",\"data-framer-name\":\"Union\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:26,intrinsicWidth:1513,svg:'<svg width=\"1513\" height=\"26\" viewBox=\"0 0 1513 26\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path opacity=\"0.08\" d=\"M49.4269 0.454534C49.134 0.161641 48.6591 0.161642 48.3662 0.454534L30.249 18.5718C27.5153 21.3054 23.0832 21.3054 20.3495 18.5718L2.23223 0.454533C1.93934 0.16164 1.46447 0.161641 1.17157 0.454535C0.878681 0.747428 0.878681 1.2223 1.17158 1.51519L24.7689 25.1125C25.0618 25.4054 25.5367 25.4054 25.8296 25.1125L43.9468 6.99527C46.6805 4.2616 51.1126 4.2616 53.8463 6.99527L71.9635 25.1125C72.2564 25.4054 72.7313 25.4054 73.0242 25.1125L91.1414 6.99527C93.8751 4.2616 98.3072 4.2616 101.041 6.99527L119.158 25.1125C119.451 25.4054 119.926 25.4054 120.219 25.1125L138.336 6.99527C141.07 4.2616 145.502 4.2616 148.235 6.99527L166.353 25.1125C166.646 25.4054 167.12 25.4054 167.413 25.1125L185.531 6.99527C188.264 4.2616 192.696 4.2616 195.43 6.99527L213.547 25.1125C213.84 25.4054 214.315 25.4054 214.608 25.1125L232.725 6.99528C235.459 4.26161 239.891 4.26161 242.625 6.99528L260.742 25.1125C261.035 25.4054 261.51 25.4054 261.803 25.1125L279.92 6.99526C282.653 4.26159 287.086 4.26159 289.819 6.99526L307.936 25.1125C308.229 25.4054 308.704 25.4054 308.997 25.1125L327.114 6.99527C329.848 4.2616 334.28 4.26161 337.014 6.99528L355.131 25.1125C355.424 25.4054 355.899 25.4054 356.192 25.1125L374.309 6.99525C377.043 4.26158 381.475 4.26158 384.208 6.99524L402.326 25.1125C402.619 25.4054 403.094 25.4054 403.386 25.1125L421.504 6.99527C424.237 4.2616 428.669 4.2616 431.403 6.99527L449.52 25.1125C449.813 25.4054 450.288 25.4054 450.581 25.1125L468.698 6.99527C471.432 4.2616 475.864 4.2616 478.598 6.99528L496.715 25.1125C497.008 25.4054 497.483 25.4054 497.776 25.1125L515.893 6.99527C518.626 4.2616 523.059 4.2616 525.792 6.99527L543.909 25.1125C544.202 25.4054 544.677 25.4054 544.97 25.1125L563.087 6.99527C565.821 4.2616 570.253 4.2616 572.987 6.99528L591.104 25.1125C591.397 25.4053 591.872 25.4054 592.165 25.1125L610.282 6.99527C613.016 4.2616 617.448 4.26161 620.182 6.99528L638.299 25.1125C638.592 25.4053 639.066 25.4054 639.359 25.1125L657.477 6.99525C660.21 4.26159 664.642 4.26159 667.376 6.99526L685.493 25.1125C685.786 25.4054 686.261 25.4054 686.554 25.1125L704.671 6.99526C707.405 4.2616 711.837 4.26161 714.571 6.99527L732.688 25.1125C732.981 25.4054 733.456 25.4054 733.749 25.1125L751.866 6.99527C754.599 4.2616 759.032 4.2616 761.765 6.99526L779.883 25.1125C780.175 25.4054 780.65 25.4054 780.943 25.1125L799.06 6.99527C801.794 4.2616 806.226 4.2616 808.96 6.99528L827.077 25.1125C827.37 25.4054 827.845 25.4054 828.138 25.1125L846.255 6.99526C848.989 4.2616 853.421 4.2616 856.155 6.99527L874.272 25.1125C874.565 25.4054 875.039 25.4054 875.332 25.1125L893.45 6.99526C896.183 4.26159 900.615 4.2616 903.349 6.99527L921.466 25.1125C921.759 25.4054 922.234 25.4054 922.527 25.1125L940.644 6.99527C943.378 4.2616 947.81 4.2616 950.544 6.99527L968.661 25.1125C968.954 25.4054 969.429 25.4054 969.722 25.1125L987.839 6.99528C990.572 4.26161 995.005 4.26161 997.738 6.99528L1015.86 25.1125C1016.15 25.4054 1016.62 25.4054 1016.92 25.1125L1035.03 6.99526C1037.77 4.26159 1042.2 4.26159 1044.93 6.99526L1063.05 25.1125C1063.34 25.4054 1063.82 25.4054 1064.11 25.1125L1082.23 6.99526C1084.96 4.2616 1089.39 4.26159 1092.13 6.99526L1110.24 25.1125C1110.54 25.4054 1111.01 25.4053 1111.31 25.1125L1129.42 6.99528C1132.16 4.26161 1136.59 4.2616 1139.32 6.99527L1157.44 25.1125C1157.73 25.4053 1158.21 25.4054 1158.5 25.1125L1176.62 6.99527C1179.35 4.2616 1183.78 4.2616 1186.52 6.99528L1204.63 25.1125C1204.93 25.4053 1205.4 25.4054 1205.69 25.1125L1223.81 6.99527C1226.55 4.2616 1230.98 4.2616 1233.71 6.99528L1251.83 25.1125C1252.12 25.4053 1252.6 25.4054 1252.89 25.1125L1271.01 6.99527C1273.74 4.2616 1278.17 4.2616 1280.91 6.99528L1299.02 25.1125C1299.32 25.4053 1299.79 25.4054 1300.08 25.1125L1318.2 6.99527C1320.93 4.2616 1325.37 4.2616 1328.1 6.99528L1346.22 25.1125C1346.51 25.4053 1346.99 25.4054 1347.28 25.1125L1365.4 6.99527C1368.13 4.2616 1372.56 4.26161 1375.3 6.99528L1393.41 25.1125C1393.71 25.4054 1394.18 25.4054 1394.47 25.1125L1412.59 6.99527C1415.32 4.2616 1419.76 4.26159 1422.49 6.99526L1440.61 25.1125C1440.9 25.4054 1441.37 25.4053 1441.67 25.1125L1459.78 6.99528C1462.52 4.26161 1466.95 4.2616 1469.68 6.99527L1487.8 25.1125C1488.09 25.4054 1488.57 25.4053 1488.86 25.1125L1512.46 1.51519C1512.75 1.2223 1512.75 0.747427 1512.46 0.454534C1512.17 0.161641 1511.69 0.161641 1511.4 0.454534L1493.28 18.5718C1490.55 21.3054 1486.12 21.3054 1483.38 18.5717L1465.26 0.454534C1464.97 0.161674 1464.5 0.16164 1464.2 0.454534L1446.09 18.5718C1443.35 21.3054 1438.92 21.3054 1436.19 18.5718L1418.07 0.454534C1417.78 0.16165 1417.3 0.16165 1417.01 0.454534L1398.89 18.5718C1396.16 21.3054 1391.73 21.3054 1388.99 18.5718L1370.88 0.454534C1370.58 0.16165 1370.11 0.16165 1369.82 0.454534L1351.7 18.5718C1348.96 21.3054 1344.53 21.3054 1341.8 18.5718L1323.68 0.454534C1323.39 0.16165 1322.91 0.16165 1322.62 0.454534L1304.5 18.5718C1301.77 21.3054 1297.34 21.3054 1294.6 18.5718L1276.49 0.454534C1276.19 0.16164 1275.72 0.161674 1275.43 0.454534L1257.31 18.5717C1254.57 21.3054 1250.14 21.3054 1247.41 18.5718L1229.29 0.454534C1229 0.16164 1228.52 0.161674 1228.23 0.454534L1210.11 18.5717C1207.38 21.3054 1202.95 21.3054 1200.21 18.5718L1182.1 0.454534C1181.8 0.16164 1181.33 0.161674 1181.04 0.454534L1162.92 18.5718C1160.19 21.3054 1155.75 21.3054 1153.02 18.5718L1134.91 0.46265C1134.91 0.45993 1134.91 0.457224 1134.9 0.454534C1134.77 0.326393 1134.61 0.254314 1134.44 0.238296C1134.23 0.217702 1134.01 0.289781 1133.84 0.454534L1115.72 18.5718C1112.99 21.3054 1108.56 21.3054 1105.83 18.5717L1087.71 0.454534C1087.42 0.161674 1086.94 0.16164 1086.65 0.454534L1068.53 18.5718C1065.8 21.3054 1061.36 21.3054 1058.63 18.5718L1040.51 0.454534C1040.22 0.161674 1039.75 0.16164 1039.45 0.454534L1021.34 18.5718C1018.6 21.3054 1014.17 21.3054 1011.44 18.5718L993.319 0.454534C993.026 0.16164 992.551 0.16164 992.258 0.454534L974.141 18.5718C971.407 21.3054 966.975 21.3054 964.242 18.5717L946.124 0.454534C945.831 0.16164 945.356 0.16164 945.064 0.454534L926.946 18.5718C924.213 21.3054 919.781 21.3054 917.047 18.5718L898.93 0.454534C898.637 0.161645 898.162 0.161662 897.869 0.454534L879.752 18.5718C877.018 21.3054 872.586 21.3054 869.852 18.5718L851.735 0.454534C851.442 0.161645 850.967 0.161662 850.674 0.454534L832.557 18.5718C829.824 21.3054 825.391 21.3054 822.658 18.5718L804.54 0.454534C804.248 0.16164 803.773 0.16164 803.48 0.454534L785.363 18.5718C782.629 21.3054 778.197 21.3054 775.463 18.5718L757.346 0.454533C757.09 0.198252 756.694 0.166217 756.403 0.358429C756.361 0.385888 756.322 0.417923 756.285 0.454535L738.168 18.5717C735.434 21.3054 731.002 21.3054 728.268 18.5717L710.151 0.454534C709.858 0.16164 709.383 0.16164 709.091 0.454534L690.973 18.5718C688.24 21.3054 683.808 21.3054 681.074 18.5718L662.957 0.454534C662.664 0.161645 662.189 0.161662 661.896 0.454534L643.779 18.5718C641.045 21.3054 636.613 21.3054 633.879 18.5718L615.762 0.454534C615.469 0.16164 614.994 0.161674 614.701 0.454534L596.584 18.5717C593.851 21.3054 589.418 21.3054 586.685 18.5718L568.567 0.454534C568.275 0.16164 567.8 0.16164 567.507 0.454534L549.39 18.5717C546.656 21.3054 542.224 21.3054 539.49 18.5717L521.373 0.454534C521.08 0.16164 520.605 0.16164 520.312 0.454534L502.195 18.5717C499.461 21.3054 495.029 21.3054 492.296 18.5717L474.178 0.454534C473.885 0.16164 473.411 0.16164 473.118 0.454534L455 18.5717C452.267 21.3054 447.835 21.3054 445.101 18.5717L426.984 0.454534C426.691 0.16164 426.216 0.16164 425.923 0.454534L407.806 18.5718C405.072 21.3054 400.64 21.3054 397.906 18.5718L379.789 0.454534C379.666 0.331363 379.51 0.259989 379.35 0.240413C379.32 0.236713 379.289 0.234864 379.259 0.234864C379.067 0.234864 378.875 0.308087 378.728 0.454534L360.611 18.5717C357.877 21.3054 353.445 21.3054 350.712 18.5717L332.594 0.454534C332.302 0.16164 331.827 0.16164 331.534 0.454534L313.417 18.5718C310.683 21.3054 306.251 21.3054 303.517 18.5718L285.4 0.454534C285.107 0.161651 284.632 0.161642 284.339 0.454534L266.222 18.5718C263.488 21.3054 259.056 21.3054 256.322 18.5717L238.205 0.454534C237.912 0.16164 237.437 0.16164 237.145 0.454534L219.027 18.5718C216.294 21.3054 211.862 21.3054 209.128 18.5718L191.011 0.454534C190.718 0.161645 190.243 0.161641 189.95 0.454534L171.833 18.5718C169.099 21.3054 164.667 21.3054 161.933 18.5718L143.816 0.454534C143.523 0.161641 143.048 0.161645 142.755 0.454534L124.638 18.5718C121.905 21.3054 117.472 21.3054 114.739 18.5718L96.6215 0.454534C96.3286 0.161642 95.8537 0.16164 95.5608 0.454534L77.4436 18.5718C74.7099 21.3054 70.2778 21.3054 67.5441 18.5718L49.4269 0.454534Z\" fill=\"#515151\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-3if3p5\",\"data-framer-name\":\"Union\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:26,intrinsicWidth:1513,svg:'<svg width=\"1513\" height=\"26\" viewBox=\"0 0 1513 26\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path opacity=\"0.08\" d=\"M49.4269 0.551702C49.134 0.258809 48.6591 0.25881 48.3662 0.551702L30.249 18.6689C27.5153 21.4026 23.0832 21.4026 20.3495 18.6689L2.23223 0.551701C1.93934 0.258808 1.46447 0.258809 1.17157 0.551702C0.878681 0.844596 0.878681 1.31947 1.17158 1.61236L24.7689 25.2097C25.0618 25.5026 25.5367 25.5025 25.8296 25.2097L43.9468 7.09244C46.6805 4.35877 51.1126 4.35876 53.8463 7.09243L71.9635 25.2097C72.2564 25.5025 72.7313 25.5025 73.0242 25.2097L91.1414 7.09244C93.8751 4.35877 98.3072 4.35877 101.041 7.09244L119.158 25.2097C119.451 25.5025 119.926 25.5025 120.219 25.2097L138.336 7.09244C141.07 4.35877 145.502 4.35876 148.235 7.09243L166.353 25.2097C166.646 25.5026 167.12 25.5026 167.413 25.2097L185.531 7.09244C188.264 4.35877 192.696 4.35877 195.43 7.09244L213.547 25.2097C213.84 25.5025 214.315 25.5025 214.608 25.2097L232.725 7.09244C235.459 4.35877 239.891 4.35878 242.625 7.09245L260.742 25.2097C261.035 25.5026 261.51 25.5026 261.803 25.2097L279.92 7.09243C282.653 4.35876 287.086 4.35876 289.819 7.09243L307.936 25.2097C308.229 25.5025 308.704 25.5025 308.997 25.2097L327.114 7.09244C329.848 4.35877 334.28 4.35877 337.014 7.09244L355.131 25.2097C355.424 25.5026 355.899 25.5026 356.192 25.2097L374.309 7.09242C377.043 4.35875 381.475 4.35875 384.208 7.09241L402.326 25.2097C402.619 25.5025 403.094 25.5025 403.386 25.2097L421.504 7.09243C424.237 4.35877 428.669 4.35877 431.403 7.09244L449.52 25.2097C449.813 25.5026 450.288 25.5026 450.581 25.2097L468.698 7.09244C471.432 4.35877 475.864 4.35877 478.598 7.09244L496.715 25.2097C497.008 25.5026 497.483 25.5026 497.776 25.2097L515.893 7.09244C518.626 4.35877 523.059 4.35877 525.792 7.09244L543.909 25.2097C544.202 25.5026 544.677 25.5026 544.97 25.2097L563.087 7.09243C565.821 4.35876 570.253 4.35877 572.987 7.09244L591.104 25.2097C591.397 25.5025 591.872 25.5025 592.165 25.2097L610.282 7.09244C613.016 4.35877 617.448 4.35877 620.182 7.09245L638.299 25.2097C638.592 25.5025 639.066 25.5025 639.359 25.2097L657.477 7.09242C660.21 4.35876 664.642 4.35876 667.376 7.09243L685.493 25.2097C685.786 25.5025 686.261 25.5025 686.554 25.2097L704.671 7.09243C707.405 4.35877 711.837 4.35877 714.571 7.09244L732.688 25.2097C732.981 25.5026 733.456 25.5026 733.749 25.2097L751.866 7.09244C754.599 4.35877 759.032 4.35877 761.765 7.09243L779.883 25.2097C780.175 25.5026 780.65 25.5025 780.943 25.2097L799.06 7.09244C801.794 4.35877 806.226 4.35877 808.96 7.09244L827.077 25.2097C827.37 25.5026 827.845 25.5026 828.138 25.2097L846.255 7.09243C848.989 4.35877 853.421 4.35877 856.155 7.09244L874.272 25.2097C874.565 25.5025 875.039 25.5025 875.332 25.2097L893.45 7.09243C896.183 4.35876 900.615 4.35877 903.349 7.09244L921.466 25.2097C921.759 25.5026 922.234 25.5026 922.527 25.2097L940.644 7.09244C943.378 4.35877 947.81 4.35877 950.544 7.09244L968.661 25.2097C968.954 25.5026 969.429 25.5026 969.722 25.2097L987.839 7.09245C990.572 4.35878 995.005 4.35878 997.738 7.09245L1015.86 25.2097C1016.15 25.5026 1016.62 25.5026 1016.92 25.2097L1035.03 7.09243C1037.77 4.35876 1042.2 4.35876 1044.93 7.09242L1063.05 25.2097C1063.34 25.5025 1063.82 25.5025 1064.11 25.2097L1082.23 7.09243C1084.96 4.35876 1089.39 4.35876 1092.13 7.09242L1110.24 25.2097C1110.54 25.5025 1111.01 25.5025 1111.31 25.2097L1129.42 7.09245C1132.16 4.35878 1136.59 4.35877 1139.32 7.09244L1157.44 25.2097C1157.73 25.5025 1158.21 25.5025 1158.5 25.2097L1176.62 7.09243C1179.35 4.35877 1183.78 4.35877 1186.52 7.09245L1204.63 25.2097C1204.93 25.5025 1205.4 25.5025 1205.69 25.2097L1223.81 7.09244C1226.55 4.35877 1230.98 4.35877 1233.71 7.09245L1251.83 25.2097C1252.12 25.5025 1252.6 25.5025 1252.89 25.2097L1271.01 7.09243C1273.74 4.35876 1278.17 4.35877 1280.91 7.09244L1299.02 25.2097C1299.32 25.5025 1299.79 25.5025 1300.08 25.2097L1318.2 7.09243C1320.93 4.35876 1325.37 4.35877 1328.1 7.09244L1346.22 25.2097C1346.51 25.5025 1346.99 25.5025 1347.28 25.2097L1365.4 7.09244C1368.13 4.35877 1372.56 4.35877 1375.3 7.09245L1393.41 25.2097C1393.71 25.5026 1394.18 25.5026 1394.47 25.2097L1412.59 7.09244C1415.32 4.35877 1419.76 4.35876 1422.49 7.09243L1440.61 25.2097C1440.9 25.5025 1441.37 25.5025 1441.67 25.2097L1459.78 7.09245C1462.52 4.35878 1466.95 4.35877 1469.68 7.09244L1487.8 25.2097C1488.09 25.5025 1488.57 25.5025 1488.86 25.2097L1512.46 1.61236C1512.75 1.31947 1512.75 0.844595 1512.46 0.551702C1512.17 0.258808 1511.69 0.258808 1511.4 0.551702L1493.28 18.6689C1490.55 21.4026 1486.12 21.4026 1483.38 18.6689L1465.26 0.551702C1464.97 0.258842 1464.5 0.258808 1464.2 0.551702L1446.09 18.6689C1443.35 21.4026 1438.92 21.4026 1436.19 18.6689L1418.07 0.551702C1417.78 0.258818 1417.3 0.258818 1417.01 0.551702L1398.89 18.6689C1396.16 21.4026 1391.73 21.4026 1388.99 18.6689L1370.88 0.551702C1370.58 0.258818 1370.11 0.258818 1369.82 0.551702L1351.7 18.6689C1348.96 21.4026 1344.53 21.4026 1341.8 18.6689L1323.68 0.551702C1323.39 0.258818 1322.91 0.258818 1322.62 0.551702L1304.5 18.6689C1301.77 21.4026 1297.34 21.4026 1294.6 18.6689L1276.49 0.551702C1276.19 0.258808 1275.72 0.258842 1275.43 0.551702L1257.31 18.6689C1254.57 21.4026 1250.14 21.4026 1247.41 18.6689L1229.29 0.551702C1229 0.258808 1228.52 0.258842 1228.23 0.551702L1210.11 18.6689C1207.38 21.4026 1202.95 21.4026 1200.21 18.6689L1182.1 0.551702C1181.8 0.258808 1181.33 0.258842 1181.04 0.551702L1162.92 18.6689C1160.19 21.4026 1155.75 21.4026 1153.02 18.669L1134.91 0.559818C1134.91 0.557097 1134.91 0.554392 1134.9 0.551702C1134.77 0.423561 1134.61 0.351482 1134.44 0.335464C1134.23 0.31487 1134.01 0.386949 1133.84 0.551702L1115.72 18.6689C1112.99 21.4026 1108.56 21.4026 1105.83 18.6689L1087.71 0.551702C1087.42 0.258842 1086.94 0.258808 1086.65 0.551702L1068.53 18.6689C1065.8 21.4026 1061.36 21.4026 1058.63 18.6689L1040.51 0.551702C1040.22 0.258842 1039.75 0.258808 1039.45 0.551702L1021.34 18.6689C1018.6 21.4026 1014.17 21.4026 1011.44 18.6689L993.319 0.551702C993.026 0.258808 992.551 0.258808 992.258 0.551702L974.141 18.6689C971.407 21.4026 966.975 21.4026 964.242 18.6689L946.124 0.551702C945.831 0.258808 945.356 0.258808 945.064 0.551702L926.946 18.6689C924.213 21.4026 919.781 21.4026 917.047 18.6689L898.93 0.551702C898.637 0.258813 898.162 0.25883 897.869 0.551702L879.752 18.6689C877.018 21.4026 872.586 21.4026 869.852 18.6689L851.735 0.551702C851.442 0.258813 850.967 0.25883 850.674 0.551702L832.557 18.6689C829.824 21.4026 825.391 21.4026 822.658 18.6689L804.54 0.551702C804.248 0.258808 803.773 0.258808 803.48 0.551702L785.363 18.6689C782.629 21.4026 778.197 21.4026 775.463 18.6689L757.346 0.551701C757.09 0.29542 756.694 0.263385 756.403 0.455597C756.361 0.483056 756.322 0.515091 756.285 0.551702L738.168 18.6689C735.434 21.4026 731.002 21.4026 728.268 18.6689L710.151 0.551702C709.858 0.258808 709.383 0.258808 709.091 0.551702L690.973 18.6689C688.24 21.4026 683.808 21.4026 681.074 18.6689L662.957 0.551702C662.664 0.258813 662.189 0.25883 661.896 0.551702L643.779 18.6689C641.045 21.4026 636.613 21.4026 633.879 18.6689L615.762 0.551702C615.469 0.258808 614.994 0.258842 614.701 0.551702L596.584 18.6689C593.851 21.4026 589.418 21.4026 586.685 18.6689L568.567 0.551702C568.275 0.258808 567.8 0.258808 567.507 0.551702L549.39 18.6689C546.656 21.4026 542.224 21.4026 539.49 18.6689L521.373 0.551702C521.08 0.258808 520.605 0.258808 520.312 0.551702L502.195 18.6689C499.461 21.4026 495.029 21.4026 492.296 18.6689L474.178 0.551702C473.885 0.258808 473.411 0.258808 473.118 0.551702L455 18.6689C452.267 21.4026 447.835 21.4026 445.101 18.6689L426.984 0.551702C426.691 0.258808 426.216 0.258808 425.923 0.551702L407.806 18.6689C405.072 21.4026 400.64 21.4026 397.906 18.6689L379.789 0.551702C379.666 0.428531 379.51 0.357157 379.35 0.337581C379.32 0.333881 379.289 0.332032 379.259 0.332032C379.067 0.332032 378.875 0.405255 378.728 0.551702L360.611 18.6689C357.877 21.4026 353.445 21.4026 350.712 18.6689L332.594 0.551702C332.302 0.258808 331.827 0.258808 331.534 0.551702L313.417 18.6689C310.683 21.4026 306.251 21.4026 303.517 18.6689L285.4 0.551702C285.107 0.258819 284.632 0.25881 284.339 0.551702L266.222 18.6689C263.488 21.4026 259.056 21.4026 256.322 18.6689L238.205 0.551702C237.912 0.258808 237.437 0.258808 237.145 0.551702L219.027 18.6689C216.294 21.4026 211.862 21.4026 209.128 18.6689L191.011 0.551702C190.718 0.258813 190.243 0.258809 189.95 0.551702L171.833 18.6689C169.099 21.4026 164.667 21.4026 161.933 18.6689L143.816 0.551702C143.523 0.258809 143.048 0.258813 142.755 0.551702L124.638 18.6689C121.905 21.4026 117.472 21.4026 114.739 18.6689L96.6215 0.551702C96.3286 0.25881 95.8537 0.258808 95.5608 0.551702L77.4436 18.6689C74.7099 21.4026 70.2778 21.4026 67.5441 18.6689L49.4269 0.551702Z\" fill=\"#515151\"/>\\n</svg>\\n',withExternalLayout:true})]})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-12oqgrk\",\"data-framer-name\":\"Function\",id:elementId2,ref:ref3,children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1rz7goz\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{HfSG4WHcm:{width:\"max((min(100vw, 1440px) - 52px) / 2, 1px)\",y:2880.55},jhgstC6MA:{y:2112.4},WPoaGmYBq:{width:\"max(min(100vw, 1440px) - 40px, 1px)\",y:undefined}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:1e3,width:\"max((min(100vw, 1440px) - 120px) / 2, 1px)\",y:2387.4,children:/*#__PURE__*/_jsx(Container,{className:\"framer-z2vpik-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{WPoaGmYBq:{__framer__threshold:1}},children:/*#__PURE__*/_jsx(PhoneAnimationWithVariantAppearEffect,{__framer__animateOnce:false,__framer__targets:[{ref:ref7,target:\"OFJWxDfqB\"},{ref:ref8,target:\"xu870Ic3h\"},{ref:ref9,target:\"JQNh5CFGh\"},{ref:ref10,target:\"dY3IDzE1X\"}],__framer__threshold:.5,__framer__variantAppearEffectEnabled:true,height:\"100%\",id:\"TkLPjb9Rx\",layoutId:\"TkLPjb9Rx\",style:{height:\"100%\",width:\"100%\"},variant:\"ix0X6gkvr\",width:\"100%\"})})})})}),isDisplayed1()&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{HfSG4WHcm:{y:3249.4958889669715},jhgstC6MA:{y:2481.9348837209304}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:260,width:\"5px\",y:2756.9348837209304,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1jct1qs-container hidden-1mx4hxu\",children:/*#__PURE__*/_jsx(ScrollProgressWithVariantAppearEffect,{__framer__animateOnce:false,__framer__targets:[{ref:ref8,target:\"a8TaXh7JU\"},{ref:ref9,target:\"zqJUI5FJE\"},{ref:ref10,target:\"XWWgoGxpm\"}],__framer__threshold:.5,__framer__variantAppearEffectEnabled:true,height:\"100%\",id:\"xA9psnSXg\",layoutId:\"xA9psnSXg\",style:{height:\"100%\",width:\"100%\"},variant:\"vOgSSUMI0\",width:\"100%\"})})})})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1fj9c42\",\"data-framer-name\":\"Scroll\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-sy5fed\",\"data-framer-name\":\"Function Slides\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-idfayu\",\"data-framer-name\":\"Slide 1\",id:elementId3,ref:ref7,children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1aypy4e\",\"data-framer-name\":\"Text Block 1\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v18\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{className:\"framer-styles-preset-1lzcxam\",\"data-styles-preset\":\"MpTKPkTbI\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-8ecf3070-09f7-44e8-a71e-d4b812577923, rgb(54, 139, 139))\"},children:\"Cr\\xe9ez ou importez votre tontine  (bient\\xf4t disponible)\"})}),className:\"framer-58xypp\",\"data-framer-name\":\"Cr\\xe9ez ou importez votre tontine\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v19\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{className:\"framer-styles-preset-1ux7mzk\",\"data-styles-preset\":\"pFr3xYY7b\",children:\"Personnalisez-la \\xe0 partir d\u2019un vaste choix de fonctionnalit\\xe9s (d\\xe9but, dur\\xe9e, montant, ordre des b\\xe9n\\xe9ficiaires, mode de paiement et de versement...).\"})}),className:\"framer-39tah7\",\"data-framer-name\":\"Personnalisez-la \\xe0 partir d\u2019un vaste choix de fonctionnalit\\xe9s (d\\xe9but, dur\\xe9e, montant, ordre des b\\xe9n\\xe9ficiaires, mode de paiement et de versement...).\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{\"aria-label\":\"Girl thinking about an idea while on her laptop\",className:\"framer-1wgntsp\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-88qzza\",\"data-framer-name\":\"Rectangle 265\",style:{rotate:-64}}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-4sff24\",\"data-framer-name\":\"Ellipse 4\"}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{HfSG4WHcm:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:133,intrinsicWidth:146,loading:getLoadingLazyAtYPosition(3151.303144530218),positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/KywCU3PRy33sx77OvQ4Ua9W6KI.svg\"}},jhgstC6MA:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:133,intrinsicWidth:146,loading:getLoadingLazyAtYPosition(2383.153144530218),positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/KywCU3PRy33sx77OvQ4Ua9W6KI.svg\"}},WPoaGmYBq:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:133,intrinsicWidth:146,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/KywCU3PRy33sx77OvQ4Ua9W6KI.svg\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",intrinsicHeight:133,intrinsicWidth:146,loading:getLoadingLazyAtYPosition(2658.153144530218),positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/KywCU3PRy33sx77OvQ4Ua9W6KI.svg\"},className:\"framer-1shr33v\",\"data-framer-name\":\"Group 289169\"})})]})]}),isDisplayed4()&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-stp6h5 hidden-1t3nvjz hidden-1yfu9ea hidden-1b56ql2\"})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1x4benk\",\"data-framer-name\":\"Slide 2\",id:elementId4,ref:ref8,children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1q8reb2\",\"data-framer-name\":\"Text Block 2\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v20\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{className:\"framer-styles-preset-1lzcxam\",\"data-styles-preset\":\"MpTKPkTbI\",style:{\"--framer-text-color\":'var(--token-8ecf3070-09f7-44e8-a71e-d4b812577923, rgb(54, 139, 139)) /* {\"name\":\"Green Cirkkle\"'},children:\"Invitez\\xa0vos proches\"})}),className:\"framer-1x7nbft\",\"data-framer-name\":\"Invitez\\xa0vos proches\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v21\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{className:\"framer-styles-preset-1ux7mzk\",\"data-styles-preset\":\"pFr3xYY7b\",children:\"S\\xe9lectionnez les autres membres de votre tontine. Ils recevront une invitation directement sur leur t\\xe9l\\xe9phone et n'auront qu'\\xe0 accepter les modalit\\xe9s du cercle pour le rejoindre.\"})}),className:\"framer-8m0kzp\",\"data-framer-name\":\"Vous \\xeates le b\\xe9n\\xe9ficiaire du mois ? Choisissez un mode d\u2019encaissement et recevez la cagnotte de votre tontine instantan\\xe9ment.\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{\"aria-label\":\"People throwing happy girl with plant pot and coin into the air\",className:\"framer-1e8y9mp\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-eo5dae\",\"data-framer-name\":\"Rectangle 267\",style:{rotate:-64}}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-12ik1tq\",\"data-framer-name\":\"Ellipse 32\"}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{HfSG4WHcm:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:167,intrinsicWidth:153,loading:getLoadingLazyAtYPosition(4433.630265660289),positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/M2nBbGHOL1tfQ37ipdgvco72xWQ.svg\"}},jhgstC6MA:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:167,intrinsicWidth:153,loading:getLoadingLazyAtYPosition(3665.4802656602888),positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/M2nBbGHOL1tfQ37ipdgvco72xWQ.svg\"}},WPoaGmYBq:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:167,intrinsicWidth:153,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/M2nBbGHOL1tfQ37ipdgvco72xWQ.svg\"}}},children:/*#__PURE__*/_jsx(ImageWithFX,{__framer__loop:animation23,__framer__loopEffectEnabled:true,__framer__loopRepeatDelay:0,__framer__loopRepeatType:\"mirror\",__framer__loopTransition:transition16,__perspectiveFX:false,__targetOpacity:1,background:{alt:\"\",fit:\"fit\",intrinsicHeight:167,intrinsicWidth:153,loading:getLoadingLazyAtYPosition(3940.4802656602883),positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/M2nBbGHOL1tfQ37ipdgvco72xWQ.svg\"},className:\"framer-ij67s0\",\"data-framer-name\":\"Mode_Isolation\",style:{transformPerspective:1200}})})]})]}),isDisplayed4()&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-1hsglti hidden-1t3nvjz hidden-1yfu9ea hidden-1b56ql2\"})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-em8xz3\",\"data-framer-name\":\"Slide 3\",id:elementId5,ref:ref9,children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1i93vf9\",\"data-framer-name\":\"Text Block 4\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v22\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{className:\"framer-styles-preset-1lzcxam\",\"data-styles-preset\":\"MpTKPkTbI\",style:{\"--framer-text-color\":'var(--token-8ecf3070-09f7-44e8-a71e-d4b812577923, rgb(54, 139, 139)) /* {\"name\":\"Green Cirkkle\"'},children:\"Versez vos cotisations\"})}),className:\"framer-1spqwud\",\"data-framer-name\":\"Versez vos cotisations\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v23\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{className:\"framer-styles-preset-1ux7mzk\",\"data-styles-preset\":\"pFr3xYY7b\",children:\"Choisissez le mode et la fr\\xe9quence de versement de vos cotisations.\"})}),className:\"framer-17in5wh\",\"data-framer-name\":\"Choisissez le mode et la fr\\xe9quence de versement de vos cotisations.\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{\"aria-label\":\"Girl putting coin into plant pot\",className:\"framer-1lpffs6\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1ogjb5i\",\"data-framer-name\":\"Rectangle 271\",style:{rotate:-64}}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1g5cghj\",\"data-framer-name\":\"Ellipse 33\"}),/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__loop:animation24,__framer__loopEffectEnabled:true,__framer__loopRepeatDelay:0,__framer__loopRepeatType:\"mirror\",__framer__loopTransition:transition16,__perspectiveFX:false,__targetOpacity:1,className:\"framer-pcmdbb\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1mdl7wk\",\"data-framer-name\":\"Mode_Isolation\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:126,intrinsicWidth:135,svg:'<svg width=\"135\" height=\"126\" viewBox=\"0 0 135 126\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<g clip-path=\"url(#clip0_4003_3574)\">\\n<path d=\"M131.873 24.3232C131.286 23.8149 130.304 23.9795 129.59 23.9795C128.706 23.9795 127.827 23.9892 126.943 23.9941C124.971 24.0037 122.994 23.9844 121.022 24.0957C120.517 24.1248 120.58 24.8364 121.066 24.8606C122.761 24.9429 124.456 24.9235 126.151 24.9235C126.996 24.9235 127.847 24.9235 128.692 24.9235C129.08 24.9235 129.469 24.9235 129.857 24.9235C130.217 24.9235 130.601 24.8848 130.96 24.938C131.242 24.9816 131.358 25.1026 131.392 25.3834C131.436 25.7561 131.402 26.1434 131.397 26.5161L131.373 29.0479C131.358 30.7034 131.344 32.3542 131.324 34.0097C131.31 35.7573 131.295 37.5048 131.271 39.2475C128.556 39.5912 125.845 39.6687 123.106 39.5912C122.834 39.5815 122.615 39.8671 122.63 40.1237C122.649 40.4238 122.892 40.5787 123.164 40.5981C126.03 40.7869 128.949 40.5981 131.786 40.1721C132.063 40.1286 132.247 39.9398 132.247 39.6542C132.257 36.1349 132.296 32.6156 132.325 29.1011C132.33 28.2201 132.34 27.3439 132.344 26.4629C132.349 25.7513 132.48 24.8509 131.873 24.3281V24.3232Z\" fill=\"#222727\"/>\\n<path d=\"M134.049 40.8889C134.02 41.4069 133.928 41.9152 133.593 42.3315C133.282 42.7139 132.811 42.893 132.335 42.9753C131.825 43.0624 131.29 43.0382 130.771 43.0479C130.159 43.0576 129.542 43.0673 128.93 43.077L125.243 43.1302C124.971 43.1302 124.723 42.9366 124.709 42.6558C124.641 41.3004 124.568 39.9449 124.495 38.5943C124.252 33.9859 123.98 29.3726 123.844 24.7641C123.791 24.6431 123.786 24.493 123.83 24.3671C123.83 24.3042 123.83 24.2461 123.83 24.1832C123.815 23.7185 124.442 23.641 124.597 24.0089L128.4 23.641C129.08 23.5732 129.765 23.5055 130.445 23.4425C131.014 23.3893 131.635 23.2828 132.165 23.549C132.641 23.7862 132.874 24.2655 132.971 24.7689C133.083 25.3305 133.141 25.9065 133.209 26.4777C133.365 27.6831 133.496 28.8982 133.607 30.1132C133.831 32.5239 133.972 34.9395 134.03 37.3599C134.059 38.5314 134.117 39.7271 134.054 40.9034L134.049 40.8889Z\" fill=\"#222727\"/>\\n<path d=\"M69.6993 63.8634C69.1601 70.8196 54.0149 74.7794 49.9347 65.6835C45.8545 56.5827 54.18 51.2869 56.327 50.6963C56.327 50.6963 56.3804 51.2869 56.599 53.107C56.8127 54.9272 57.5122 57.2266 60.3586 57.2798C63.205 57.3331 65.114 52.3422 65.114 52.3422C65.114 52.3422 66.372 51.984 67.7661 54.0171C67.8632 54.1575 67.9604 54.293 68.0527 54.4286C68.1887 54.6222 68.3247 54.811 68.451 54.9998C69.4856 56.5247 70.1413 58.1028 69.6993 63.8682V63.8634Z\" fill=\"#368B8B\"/>\\n<path d=\"M122.63 39.9498C122.392 40.1773 122.266 40.4677 122.1 40.7437C121.94 41.0051 121.765 41.2568 121.571 41.494C121.202 41.949 120.789 42.3702 120.332 42.7332C119.361 43.5078 118.244 44.0742 117.063 44.4421C114.319 45.294 111.414 44.931 108.728 44.0258C107.927 43.7547 107.145 43.4255 106.382 43.0673C105.979 42.8785 105.581 42.6752 105.182 42.4767C104.92 42.3411 104.653 42.1814 104.376 42.0701C104.531 41.3197 104.721 40.5597 104.803 39.7949C104.862 39.2285 104.104 39.0736 103.934 39.6158C103.706 40.3467 103.584 41.1164 103.424 41.8667C103.264 42.6364 103.103 43.4061 102.943 44.1758L102.472 46.4316C102.394 46.8092 102.316 47.182 102.239 47.5596C102.161 47.9371 102.001 48.3777 102.04 48.7649C102.059 49.0021 102.273 49.2296 102.53 49.2006C102.88 49.157 103.098 48.8859 103.05 48.6003C103.118 48.3438 103.152 48.063 103.2 47.8161C103.278 47.4385 103.356 47.061 103.434 46.6882C103.468 46.5333 103.497 46.3736 103.531 46.2186C104.08 46.1848 104.594 45.8895 104.964 45.4828C105.163 45.265 105.333 45.0084 105.44 44.7325C105.503 44.5824 105.561 44.4179 105.585 44.2533C105.6 44.1613 105.605 44.0596 105.605 43.9628C105.605 43.9096 105.595 43.8563 105.581 43.8031C105.605 43.774 105.644 43.7934 105.683 43.8128C106.411 44.171 107.149 44.4953 107.912 44.7809C108.199 44.8874 108.485 44.9842 108.772 45.0811C108.757 45.1343 108.748 45.1827 108.743 45.2408C108.524 49.8686 104.798 54.0027 100.305 54.9902C98.1488 55.4646 95.1372 55.2468 94.2192 52.87C93.7626 51.6936 93.8209 50.3721 93.918 49.1328C94.0492 47.5208 94.2192 45.9137 94.428 44.3114C94.8943 40.6904 95.6084 37.1276 96.3224 33.5502C96.4244 33.0371 95.6715 32.8918 95.5306 33.3856C94.5932 36.687 93.9957 40.0998 93.5294 43.4933C93.3011 45.1633 93.1117 46.8383 92.966 48.5132C92.864 49.7186 92.762 50.953 92.9757 52.1438C91.227 52.5892 89.3667 53.1362 87.5986 52.5166C86.8894 52.2697 86.2579 51.8292 85.8402 51.2047C85.4371 50.6044 85.2525 49.888 85.1942 49.1716C85.0582 47.5063 85.4856 45.8362 85.8499 44.2242C86.292 42.2734 86.7874 40.337 87.3509 38.4201C87.9775 36.2804 88.6915 34.165 89.3861 32.0447C89.5172 31.6526 88.8566 31.4202 88.6866 31.8026C87.0157 35.6511 85.8354 39.7368 84.8979 43.8224C84.1887 46.9206 83.0861 51.5484 86.7534 53.2717C88.8178 54.2399 91.1493 53.7316 93.238 53.1265C93.68 54.3125 94.5835 55.2516 95.7784 55.7309C97.0121 56.2247 98.3819 56.3021 99.6886 56.123C102.2 55.7841 104.522 54.5449 106.309 52.7635C108.286 50.7884 109.554 48.155 109.734 45.3667C110.695 45.6281 111.677 45.812 112.672 45.8895C115.446 46.1025 118.302 45.4683 120.57 43.8176C121.163 43.3819 121.717 42.8882 122.193 42.3266C122.44 42.0362 122.669 41.7215 122.878 41.402C123.091 41.0728 123.324 40.7243 123.358 40.3322C123.392 39.9256 122.95 39.6545 122.635 39.9643L122.63 39.9498ZM104.828 43.7208C104.803 43.8079 104.794 43.8466 104.784 43.8902C104.769 43.9531 104.755 44.0161 104.745 44.079C104.735 44.1371 104.721 44.1952 104.706 44.2533C104.696 44.2775 104.692 44.3017 104.682 44.3307C104.633 44.4614 104.575 44.5728 104.507 44.6793C104.42 44.81 104.381 44.8535 104.337 44.9019C104.298 44.9455 104.254 44.9891 104.211 45.0326C104.191 45.052 104.167 45.0762 104.143 45.0956C104.036 45.1779 103.939 45.2505 103.837 45.3086C103.793 45.3376 103.749 45.357 103.701 45.3812C103.754 45.0472 103.822 44.7083 103.895 44.3646C103.987 43.9047 104.084 43.4497 104.177 42.9898C104.308 43.0721 104.444 43.1447 104.575 43.2222C104.721 43.3045 104.871 43.3868 105.022 43.4642C104.92 43.5126 104.847 43.5998 104.818 43.7159L104.828 43.7208Z\" fill=\"#222727\"/>\\n<path d=\"M83.7517 49.9027C83.1834 50.0576 82.6442 50.2948 82.0953 50.4933C81.5319 50.6966 80.9539 50.8757 80.3613 50.9967C79.3898 51.2 78.3843 51.2049 77.4226 50.9289C76.5628 50.6772 75.7808 50.1544 75.3145 49.3847C75.0424 48.9345 74.8919 48.4311 74.8239 47.9083C74.8044 47.7485 74.7899 47.5839 74.785 47.4242C74.6101 47.2547 74.2896 47.2257 74.139 47.5065C74.0515 47.6759 73.9398 47.826 73.8087 47.9567C73.8427 48.252 73.901 48.5472 73.9835 48.8377C74.0564 49.1039 74.1535 49.3653 74.2798 49.6171C74.7413 50.561 75.567 51.2872 76.5337 51.6938C77.6508 52.1633 78.8798 52.2698 80.0698 52.0859C80.7693 51.9794 81.459 51.7954 82.1293 51.5728C82.8142 51.3404 83.504 51.0838 84.1403 50.7305C84.6114 50.4691 84.2326 49.7768 83.7517 49.9124V49.9027ZM72.8906 81.6537C70.9477 80.4483 68.0867 81.4068 67.0715 83.3916C66.2701 83.0817 65.3763 83.0575 64.5408 83.2802C63.6519 83.5174 62.729 84.079 62.3113 84.9213C61.9227 84.9552 61.539 85.0326 61.1698 85.1682C60.3198 83.5755 58.44 82.6509 56.6525 82.9704C55.8462 80.6807 53.4709 78.9428 51.0082 79.0784C50.4982 79.1074 50.5565 79.8481 51.0568 79.8578C53.296 79.9062 55.3701 81.4262 55.9579 83.6046C56.0162 83.8321 56.2833 83.9434 56.497 83.8805C58.0805 83.4158 59.9458 84.3113 60.5481 85.8507C60.6258 86.0443 60.8735 86.2283 61.0921 86.1266C61.9276 85.7345 62.8456 85.6668 63.7345 85.8943C64.1571 86.0056 64.5651 86.1847 64.9294 86.4219C65.3229 86.6785 65.5949 87.0948 66.0029 87.3175C66.2895 87.4724 66.5566 87.1771 66.4935 86.9012C66.3769 86.3929 65.828 86.0008 65.4152 85.72C64.9683 85.4199 64.468 85.202 63.9482 85.0617C63.7102 84.9987 63.4674 84.9552 63.2245 84.9309C63.6617 84.5292 64.1522 84.2097 64.7594 84.0451C65.5415 83.8321 66.3818 83.8998 67.1007 84.2774C67.2755 84.3694 67.5621 84.3065 67.6398 84.1032C68.3587 82.2007 70.7777 81.3923 72.536 82.3556C72.9878 82.6025 73.3181 81.9151 72.8955 81.6537H72.8906ZM69.6994 63.8636C70.1414 58.103 69.4856 56.5201 68.451 54.9952C68.5579 54.9759 68.6647 54.9468 68.7667 54.9129C68.6404 54.6999 68.5044 54.4918 68.3636 54.2885C68.2956 54.3127 68.2276 54.3369 68.1596 54.3659C68.1159 54.3805 68.0819 54.3998 68.0527 54.424C67.9604 54.2885 67.8633 54.1529 67.7661 54.0125C66.3721 51.9794 65.114 52.3376 65.114 52.3376C65.114 52.3376 63.2051 57.3285 60.3586 57.2753C57.5122 57.222 56.8128 54.9226 56.5991 53.1025C56.3853 51.2823 56.327 50.6917 56.327 50.6917C54.1801 51.2823 45.8546 56.5782 49.9348 65.679C54.0149 74.7749 69.1602 70.8151 69.6994 63.8588V63.8636ZM57.3762 59.4682C57.5074 59.7925 57.6434 60.112 57.7745 60.4363C57.7114 60.4363 57.6531 60.4509 57.59 60.4557C56.6865 60.5331 55.6324 60.4944 54.9427 59.8264C54.3695 59.2649 54.2821 58.3693 54.4861 57.6286C54.6998 56.8638 55.2827 56.2635 55.9482 55.8327C56.0696 56.157 56.1959 56.4814 56.3222 56.8009C56.6622 57.6916 57.0168 58.5823 57.3762 59.4682ZM49.959 63.9895C49.4976 62.7406 49.2839 61.4045 49.3956 60.0587C49.5462 58.2918 50.1825 56.5879 51.1685 55.1163C52.1594 53.635 53.5292 52.478 55.0884 51.626C55.3459 51.4856 55.6082 51.3549 55.8704 51.2291C55.8316 52.0617 55.885 52.8943 56.0453 53.7124C55.7733 53.4268 55.2438 53.6301 55.3653 54.09C55.4381 54.3659 55.5256 54.6419 55.6179 54.9178C55.1273 55.1937 54.6804 55.5471 54.3015 56.007C53.6943 56.7331 53.3495 57.648 53.4175 58.5968C53.4855 59.565 53.9712 60.4267 54.8018 60.9349C55.851 61.5788 57.0022 61.4965 58.1631 61.3706C58.644 62.5034 59.1395 63.6264 59.6446 64.7447C59.7758 65.0351 59.9118 65.3256 60.0429 65.6112C59.9943 65.6112 59.9458 65.616 59.8972 65.6209C59.2317 65.6548 58.5663 65.6548 57.9057 65.6063C57.2402 65.5628 56.5505 65.374 55.885 65.4321C55.4964 65.466 55.3556 66.013 55.7247 66.1969C56.2639 66.4583 56.8856 66.4874 57.4782 66.5406C58.0757 66.5939 58.6829 66.6229 59.2852 66.6132C59.6738 66.6132 60.0672 66.5939 60.4607 66.5551C60.6355 66.9569 60.8201 67.3732 61.199 67.6008C61.3787 67.7121 61.6604 67.5766 61.6847 67.3636C61.7333 67.0102 61.607 66.6955 61.4564 66.3906C61.6701 66.3373 61.879 66.2744 62.0879 66.1969C62.9039 65.8823 63.6374 65.3256 63.9434 64.4784C64.2737 63.5732 64.0405 62.5324 63.4576 61.7772C62.831 60.964 61.8693 60.4993 60.8638 60.3395C60.1546 60.2233 59.4552 60.2717 58.7557 60.3395C58.27 59.1826 57.7891 58.0208 57.3325 56.8493C57.2694 56.6847 57.2062 56.5201 57.1431 56.3555C57.4151 56.7234 57.7308 57.0526 58.1 57.3092C58.4691 57.5657 58.8869 57.7545 59.3483 57.8416C61.3058 58.2096 62.9622 56.7718 63.8997 55.2131C64.4097 54.3659 64.7886 53.4462 65.2112 52.5555C65.2209 52.5312 65.2354 52.507 65.2452 52.4828C65.8232 53.0395 66.4498 53.5478 66.9647 54.1675C67.5184 54.8306 67.9896 55.5713 68.3636 56.3507C69.1165 57.9191 69.4662 59.6763 69.3885 61.4142C69.2282 64.9819 66.9501 68.0461 63.7928 69.6291C62.2239 70.4133 60.4412 70.8006 58.6877 70.6989C56.9585 70.5972 55.2633 69.9583 53.8449 68.9804C52.3683 67.959 51.1491 66.5503 50.3573 64.9431C50.2019 64.6382 50.0659 64.3187 49.9493 63.9992L49.959 63.9895ZM59.1637 61.2641C59.7758 61.2157 60.3878 61.206 60.9755 61.3367C61.8207 61.5255 62.6465 62.0144 62.9816 62.8471C63.2779 63.5877 63.1371 64.3865 62.4862 64.8851C62.0684 65.2046 61.5633 65.3837 61.0484 65.4853C60.927 65.2336 60.8104 64.977 60.6938 64.7253C60.3004 63.8733 59.9215 63.0117 59.5426 62.15C59.4163 61.8547 59.29 61.5594 59.1637 61.2641ZM51.0617 71.6477C50.7799 71.6913 50.4982 71.7639 50.2213 71.8559C50.2991 72.1463 50.3719 72.4319 50.4351 72.7224C50.7119 72.6256 50.9937 72.5529 51.2754 72.5191C51.2074 72.2238 51.1394 71.9333 51.0568 71.6429L51.0617 71.6477ZM48.1132 65.2288C47.8704 65.3498 47.6081 65.4756 47.3604 65.5918C47.4769 65.7613 47.5838 65.9307 47.6955 66.1001C47.7635 66.2114 47.8364 66.3276 47.9044 66.439C48.1521 66.3179 48.3998 66.1872 48.6378 66.0469C48.6184 66.013 48.599 65.9839 48.5795 65.9549C48.429 65.7128 48.2735 65.466 48.1084 65.2239L48.1132 65.2288ZM47.6469 66.3421C47.5061 66.3421 47.5158 66.5503 47.6469 66.5648C47.6858 66.5455 47.7149 66.5309 47.7489 66.5164C47.7829 66.4486 47.7489 66.3421 47.6469 66.3421Z\" fill=\"#222727\"/>\\n<path d=\"M28.6789 52.9379C27.824 53.0637 26.8477 52.691 26.2939 52.0084C26.2211 51.9648 26.1579 51.9068 26.1142 51.839C26.0608 51.7615 26.0317 51.6696 26.0171 51.5776C25.9879 51.5195 25.9636 51.4566 25.9442 51.3936C25.8665 51.1758 26.0122 51.0015 26.1968 50.9531C26.6437 50.4497 27.4403 50.7837 27.9066 51.0887C28.4069 51.4227 28.7858 51.868 29.0432 52.4102C29.1646 52.6668 28.9072 52.904 28.6838 52.9379H28.6789Z\" fill=\"#222727\"/>\\n<path d=\"M40.9243 41.5912C40.0694 41.717 39.0931 41.3443 38.5393 40.6617C38.4665 40.6182 38.4033 40.5601 38.3596 40.4923C38.311 40.4149 38.277 40.3229 38.2624 40.2309C38.2333 40.1728 38.209 40.1099 38.1896 40.047C38.1119 39.8291 38.2576 39.6548 38.4422 39.6064C38.889 39.103 39.6856 39.437 40.152 39.742C40.6523 40.076 41.0311 40.5214 41.2886 41.0635C41.41 41.3201 41.1526 41.5573 40.9291 41.5912H40.9243Z\" fill=\"#222727\"/>\\n<path d=\"M42.5467 54.337C42.5029 54.8405 42.3718 55.3294 42.1824 55.7941C41.7986 56.7332 41.1235 57.5416 40.2297 58.0402C39.846 58.2532 39.5011 57.7256 39.8605 57.469C40.5551 56.9753 41.0992 56.2685 41.4198 55.4843C41.5801 55.0873 41.6772 54.6662 41.7161 54.2402C41.7355 54.0369 41.7355 53.8336 41.7306 53.6351C41.7306 53.3979 41.7452 53.2139 41.8181 52.9913C41.8715 52.8364 42.0852 52.7057 42.2212 52.8606C42.4107 53.0784 42.5029 53.2623 42.5418 53.5528C42.5758 53.8142 42.5661 54.0804 42.5418 54.337H42.5467Z\" fill=\"#222727\"/>\\n<path d=\"M50.9403 28.574C50.5954 28.1577 50.0903 27.935 49.5511 28.0512C49.454 28.0705 49.3617 28.1044 49.2742 28.148C49.3131 27.7559 49.3908 27.3638 49.5268 27.0056C49.6483 26.6909 49.93 26.2262 50.338 26.2891C50.678 26.3424 50.9063 25.8244 50.5517 25.6792C49.3325 25.1951 48.7351 26.5215 48.5359 27.4896C48.3173 28.5207 48.3416 29.731 48.7642 30.7088C48.9439 31.1203 49.2111 31.5172 49.6483 31.6818C50.1437 31.8706 50.678 31.706 51.0375 31.3284C51.7272 30.6071 51.5329 29.2856 50.9403 28.5643V28.574ZM50.4934 30.6798C50.3186 30.9363 50.0126 31.0186 49.7843 30.7814C49.5317 30.52 49.4394 30.1182 49.3617 29.7745C49.3374 29.6535 49.3131 29.5325 49.2985 29.4115C49.3665 29.3582 49.42 29.2759 49.4345 29.1549C49.4637 28.9322 49.692 28.8209 49.9106 28.8499C50.2263 28.8935 50.4206 29.242 50.5177 29.5131C50.6392 29.8617 50.7169 30.3457 50.4934 30.6749V30.6798Z\" fill=\"#222727\"/>\\n<path d=\"M66.0029 87.3168C65.5949 87.0942 65.3229 86.6827 64.9294 86.4213C64.5651 86.1841 64.1571 86.0001 63.7345 85.8936C62.8456 85.6661 61.9276 85.7339 61.0921 86.126C60.8735 86.2277 60.6258 86.0437 60.5481 85.8501C59.9458 84.3107 58.0854 83.4151 56.4971 83.8799C56.2833 83.9428 56.0162 83.8314 55.9579 83.6039C55.375 81.4304 53.296 79.9055 51.0568 79.8571C50.5565 79.8474 50.4982 79.1068 51.0082 79.0778C53.4709 78.9422 55.8462 80.6752 56.6525 82.9698C58.44 82.6503 60.3198 83.5749 61.1698 85.1675C61.5341 85.032 61.9227 84.9545 62.3113 84.9206C62.6125 84.8916 62.9136 84.8964 63.2148 84.9303C63.4576 84.9545 63.7005 84.9981 63.9385 85.061C64.4583 85.2014 64.9586 85.4192 65.4055 85.7194C65.8183 86.0001 66.3721 86.3874 66.4838 86.9005C66.5469 87.1765 66.2798 87.4766 65.9932 87.3168H66.0029Z\" fill=\"white\"/>\\n<path d=\"M72.5262 82.3553C70.7678 81.392 68.3488 82.2004 67.63 84.1029C67.5522 84.3062 67.2657 84.3691 67.0908 84.2771C66.3719 83.8996 65.5316 83.8318 64.7495 84.0448C64.1472 84.2094 63.6566 84.5289 63.2146 84.9307C63.0592 85.0759 62.9086 85.2308 62.758 85.3905C62.5103 85.6616 62.1217 85.3518 62.248 85.042C62.2674 84.9984 62.282 84.9597 62.3063 84.921C62.7192 84.0787 63.6469 83.5171 64.5358 83.2799C65.3713 83.0573 66.2602 83.0815 67.0665 83.3913C68.0817 81.4065 70.9427 80.448 72.8856 81.6534C73.3131 81.9197 72.9779 82.6022 72.5262 82.3553Z\" fill=\"white\"/>\\n<path d=\"M34.1921 7.19152C34.0852 6.24271 33.9104 5.30843 33.7452 4.36931C33.5849 3.44955 33.4781 2.46686 33.1478 1.58583C33.036 1.29054 32.6183 1.37768 32.6135 1.68749C32.5989 2.63145 32.8272 3.58994 32.9875 4.51453C33.1526 5.44882 33.3032 6.39278 33.5169 7.31738C33.6044 7.69496 34.2358 7.57878 34.1921 7.19152Z\" fill=\"#F8934A\"/>\\n<path d=\"M42.8576 0.995566C42.3767 1.54258 42.0318 2.21546 41.6772 2.84476C41.3032 3.50312 40.9341 4.16147 40.5698 4.81982C39.846 6.11717 39.0397 7.39999 38.4471 8.76026C38.3111 9.07008 38.7483 9.43798 38.9717 9.12332C39.8412 7.89859 40.5309 6.53832 41.2741 5.23614C41.6384 4.59715 42.0027 3.95331 42.3621 3.30948C42.7362 2.64629 43.1442 1.9831 43.3725 1.25697C43.4648 0.971362 43.0422 0.78741 42.8576 0.995566Z\" fill=\"#F8934A\"/>\\n<path d=\"M50.8188 6.71217C50.4739 6.7751 50.2067 6.96873 49.925 7.16721C49.653 7.36084 49.3858 7.55932 49.1187 7.76263L47.472 8.99704C46.9377 9.39883 46.4034 9.80546 45.874 10.2073C45.3154 10.6332 44.7373 11.035 44.271 11.5627C44.0136 11.8531 44.3682 12.1968 44.6791 12.0468C45.2862 11.7563 45.8108 11.3352 46.3451 10.9382C46.894 10.5316 47.4478 10.1201 47.9966 9.70865L49.5996 8.50328C49.8667 8.3048 50.1339 8.10149 50.3962 7.89333C50.6585 7.68034 50.9645 7.47218 51.1151 7.16237C51.2073 6.96873 51.0616 6.66376 50.8188 6.70733V6.71217Z\" fill=\"#F8934A\"/>\\n<path d=\"M76.1937 38.71C75.9751 39.1505 75.7711 39.6007 75.5816 40.0557C75.1493 41.082 74.7705 42.1324 74.4596 43.2023C74.1584 44.2334 73.8913 45.2887 73.7941 46.3633C73.7456 46.891 73.7407 47.4235 73.8087 47.9463C73.3715 48.3916 72.7352 48.624 72.1038 48.5272C71.8755 48.4933 71.5937 48.6676 71.6326 48.9338C71.8123 50.1101 71.5209 51.2816 70.8846 52.2837C70.2774 53.2325 69.3885 53.8763 68.3587 54.2878C67.8924 53.6197 67.3581 53.0049 66.7558 52.4579C66.4061 52.1384 66.0564 51.8867 65.6289 51.6882C65.9301 51.0589 66.2409 50.4393 66.5664 49.8245C67.5039 48.0431 68.5288 46.3052 69.7382 44.6884C71.4966 42.3357 73.6484 40.2009 76.1985 38.71H76.1937Z\" fill=\"#222727\"/>\\n<path d=\"M74.8238 47.9026C74.615 48.2802 74.3284 48.59 73.9835 48.8272C73.5415 49.1322 73.012 49.3113 72.4631 49.3258C72.5312 50.507 72.1863 51.7075 71.5305 52.6902C70.8797 53.6632 69.9082 54.5588 68.7667 54.9121C68.6647 54.946 68.5578 54.9751 68.451 54.9944C68.4267 54.9993 68.3975 55.009 68.3733 55.0138C67.9944 55.0864 67.7807 54.6265 68.0527 54.4232C68.0818 54.399 68.1207 54.3796 68.1595 54.3651C68.2275 54.3409 68.2955 54.3167 68.3635 54.2877C69.3933 53.8762 70.2822 53.2324 70.8894 52.2836C71.5257 51.2815 71.8171 50.11 71.6374 48.9337C71.5985 48.6723 71.8754 48.4932 72.1086 48.5271C72.74 48.6239 73.3763 48.3915 73.8135 47.9462C73.9446 47.8155 74.0564 47.6654 74.1438 47.496C74.2895 47.2201 74.615 47.2443 74.7898 47.4137C74.7947 47.5783 74.8093 47.738 74.8287 47.8978L74.8238 47.9026Z\" fill=\"#222727\"/>\\n<path d=\"M47.7487 66.5209C47.7293 66.5548 47.7002 66.5694 47.6565 66.5694C47.5107 66.5548 47.501 66.3467 47.6419 66.3467C47.7439 66.3467 47.7779 66.4532 47.7439 66.5209H47.7487Z\" fill=\"#222727\"/>\\n<path d=\"M121.187 24.1688C116.816 23.7429 112.439 23.3943 108.048 23.2152C103.696 23.0409 99.334 23.0409 94.9915 23.3992C90.9356 23.738 86.8797 24.377 82.955 25.4855C79.6131 26.4344 76.3587 27.722 73.2888 29.3534C71.3799 30.3651 69.5438 31.5221 67.8194 32.8146C65.7211 29.4938 62.9232 26.5505 59.9554 23.9946C56.8661 21.337 53.4319 19.0714 49.7743 17.261C46.1216 15.4505 42.2357 14.0854 38.243 13.2334C34.1871 12.3669 29.9709 12.0087 25.8275 12.304C21.4656 12.6186 17.0212 13.7562 13.4607 16.3799C9.94884 18.9698 7.56387 22.7311 5.69379 26.6038C3.60513 30.9218 1.87591 35.4819 0.894719 40.1823C-0.0573241 44.7375 -0.237046 49.4525 0.695567 54.0271C1.56989 58.3112 3.47398 62.4211 6.48068 65.6354C9.24938 68.598 12.9361 70.8006 16.9434 71.58C17.9003 71.7639 18.8475 71.8365 19.819 71.8559C19.649 72.461 19.4984 73.0709 19.309 73.6712C19.0855 74.3876 18.833 75.0993 18.5561 75.8012C18.0072 77.2002 17.3709 78.5653 16.7103 79.9159C15.3599 82.6606 13.8639 85.3328 12.635 88.1356C11.4255 90.9046 10.4346 93.8284 10.1626 96.854C9.93912 99.3906 10.0654 102.343 11.8626 104.348C13.7959 106.502 16.6957 106.047 19.1924 105.219C17.7935 107.058 16.7831 109.28 16.822 111.599C16.8414 112.858 17.1912 114.145 17.9101 115.186C18.6095 116.193 19.6247 116.905 20.8148 117.219C21.9562 117.519 23.2191 117.389 24.2246 116.764C26.7844 119.315 30.6315 120.274 34.0753 119.238L34.1288 119.819C34.1045 119.862 34.0899 119.911 34.0899 119.969C34.0899 120.008 34.0948 120.046 34.1093 120.09C34.5805 121.426 35.9309 122.176 37.1938 122.631C38.753 123.193 40.3948 123.537 42.0123 123.89C45.461 124.64 48.9583 125.183 52.475 125.512C56.0209 125.846 59.5862 125.972 63.1418 125.884C66.6877 125.797 70.2335 125.497 73.7454 124.989C77.2524 124.481 80.7303 123.769 84.1499 122.849C84.5773 122.733 85.0096 122.612 85.4371 122.491C85.5682 122.457 85.6557 122.385 85.7091 122.297C85.7479 122.283 85.7868 122.268 85.8257 122.249C85.8937 122.205 85.9374 122.172 85.9714 122.138C86.0248 122.089 86.0685 122.026 86.1025 121.963C86.1414 121.871 86.1657 121.813 86.1705 121.765C86.2045 121.673 86.224 121.625 86.2288 121.571C86.7243 116.106 87.6666 105.156 88.1572 99.6907C88.4049 96.9653 88.6527 94.2447 88.8955 91.5194C89.119 89.0457 89.4395 86.4026 88.5118 84.0258C87.7735 82.1281 86.1463 80.4339 84.0819 80.1967C84.1159 80.1337 84.145 80.0756 84.1693 80.0175C84.5676 79.1946 85.1554 77.5729 83.9847 77.0937C83.5087 76.9 82.9744 76.992 82.4984 77.1324C81.8912 77.3164 81.2792 77.5245 80.7109 77.8198C80.1134 78.1345 79.4722 78.6766 79.1322 79.3205C79.0399 79.1462 78.9428 78.9768 78.8408 78.8025C78.5153 78.241 78.1559 77.6988 77.7722 77.1808C77.3836 76.6532 76.9658 76.1449 76.5238 75.6656C76.1158 75.2154 75.6446 74.7362 74.9938 74.7265C73.7017 74.7023 73.3422 76.3675 73.3082 77.3551C73.3082 77.4567 73.3082 77.5584 73.3082 77.6552C72.9877 77.6939 72.6768 77.8101 72.4048 77.9892C71.9142 77.2292 71.0981 76.6822 70.1752 76.5902C69.3009 76.5079 68.4557 76.8129 67.8243 77.3841C67.4503 76.5128 66.6877 75.8205 65.7405 75.5979C64.7641 75.3655 63.7538 75.6802 63.0301 76.324C62.4812 75.1331 61.2911 74.2327 59.9748 74.102C58.5564 73.9665 57.1381 74.6781 56.3803 75.8689C55.6177 75.2542 54.5734 75.0121 53.6359 75.2106C53.9225 74.5861 54.1071 73.8842 53.9711 73.1968C53.8448 72.5578 53.4028 72.0302 52.7859 71.8026C52.2322 71.5945 51.6298 71.5703 51.0421 71.6671C51.1198 71.9575 51.1927 72.248 51.2607 72.5433C51.5084 72.5094 51.7513 72.5094 51.9941 72.5336C52.4507 72.5869 52.9025 72.7805 53.0531 73.25C53.2231 73.7777 53.0288 74.3731 52.8053 74.8524C52.3536 75.8157 51.6104 76.6096 50.707 77.1711C50.1969 77.4906 49.6383 77.723 49.0506 77.8682C48.764 77.9408 48.4774 77.9844 48.1811 78.0038C47.8265 78.0328 47.5302 77.9989 47.2048 78.1538C47.1805 78.1635 47.1611 78.178 47.1416 78.1925C46.9862 78.2168 46.8551 78.3136 46.8356 78.512C46.6851 79.8239 46.8065 81.2035 46.9425 82.5154C46.9911 82.9511 47.0445 83.3868 47.1125 83.8224C46.7191 83.6724 46.311 83.5804 45.8933 83.5417C45.8836 83.0479 45.8593 82.5541 45.8302 82.0652C45.7379 80.4581 45.5241 78.8654 45.2133 77.2873C45.1744 77.0888 44.9413 76.9727 44.7567 76.9775C42.1143 77.0356 39.5885 75.472 38.2915 73.2016C37.9661 72.6256 37.7281 72.006 37.5824 71.367C37.4998 70.9942 37.3541 70.118 37.8932 70.0067C38.2284 69.9389 38.6461 70.1277 38.9619 70.2294C39.2873 70.3359 39.6079 70.4666 39.9188 70.6118C40.5551 70.9071 41.1622 71.2653 41.7208 71.6865C42.9789 72.6401 44.0232 73.8745 44.6984 75.3026C44.883 75.6947 45.4804 75.7382 45.5873 75.2542C45.7573 74.4748 45.4367 73.7729 45.3396 73.0129C45.3056 72.7369 45.3396 72.4804 45.4901 72.2335C45.5679 72.1028 45.7184 71.8995 45.8933 71.9091C46.3208 71.9382 46.2479 72.8531 46.2527 73.1145C46.2576 73.9471 46.1993 74.804 46.3645 75.6221C46.3548 75.6656 46.3499 75.7092 46.345 75.7528C46.3013 76.1255 46.7385 76.2562 46.9425 75.9609C47.2582 75.501 47.506 75.0024 47.8605 74.5668C48.2006 74.1504 48.5746 73.7825 49.0166 73.4727C49.4295 73.1823 49.9152 72.916 50.4301 72.7369C50.3669 72.4465 50.2941 72.156 50.2164 71.8704C49.8861 70.6457 49.4489 69.45 48.9 68.3076C48.5989 67.6734 48.2637 67.0538 47.8994 66.4535C47.8314 66.3373 47.7634 66.226 47.6905 66.1147C47.5837 65.9452 47.4719 65.7758 47.3554 65.6064C46.8551 65.8436 46.4179 66.0324 46.3208 66.0759C45.3153 66.4826 44.2758 66.7924 43.212 67.0054C41.4585 67.3491 39.7002 67.4072 37.9758 67.2281C32.3218 66.6278 26.9836 63.4522 23.0346 59.4198C22.8791 59.2649 22.7334 59.11 22.5828 58.9502C21.0188 57.285 19.6198 55.4697 18.3278 53.5914C18.3132 53.0105 18.2986 52.4248 18.2938 51.8439C18.2792 50.7402 18.2792 49.6413 18.2792 48.5376C18.6775 47.7437 19.2847 47.0515 20.0181 46.5383C21.4414 45.546 23.2046 45.333 24.8804 45.7057C28.6642 46.548 31.0395 49.8543 32.7784 53.0541C33.2399 53.9061 33.6965 54.7677 34.2648 55.5568C34.8331 56.341 35.5326 57.1252 36.4117 57.5609C36.6303 57.6674 36.9072 57.5851 37.0141 57.3673C37.1355 57.1301 37.0141 56.9026 36.8198 56.767C36.0912 56.2684 35.4888 55.6778 34.9788 54.9565C34.4494 54.2062 34.0219 53.393 33.5848 52.5894C32.6473 50.8564 31.5884 49.1814 30.1943 47.7679C28.81 46.3641 27.0856 45.2797 25.1475 44.8344C23.3114 44.4084 21.3151 44.6117 19.7218 45.6621C19.1827 46.0155 18.6872 46.4609 18.2792 46.9643C18.2889 43.5757 18.2986 40.1872 18.0703 36.8034C17.8906 34.1555 17.6235 31.4446 16.9532 28.8645C17.7352 29.2566 18.5998 29.5325 19.4255 29.8084C20.3484 30.1182 21.2762 30.3942 22.2185 30.6459C24.0789 31.1396 25.9733 31.5221 27.8871 31.7835C29.898 32.0594 31.9284 32.2143 33.9636 32.2385C33.7208 32.3692 33.473 32.5096 33.2399 32.6645C31.943 33.5117 30.8549 34.7219 30.17 36.1112C29.7863 36.8954 29.4949 37.7425 29.456 38.6187C29.4511 38.7736 29.6066 38.9043 29.7523 38.914C29.9223 38.9285 30.034 38.8172 30.0875 38.6671C30.3838 37.8055 30.6655 36.9583 31.1221 36.1644C31.5641 35.3947 32.1275 34.6977 32.793 34.1071C33.4682 33.5068 34.2599 33.0227 35.1003 32.6839C35.5374 32.5096 35.9843 32.3644 36.4457 32.2627C36.5672 32.2337 36.6886 32.2143 36.8149 32.1949C37.6989 32.1562 38.5878 32.0884 39.4719 31.9916C40.5502 31.8803 41.6237 31.7302 42.6923 31.5414C43.2363 31.4446 43.7852 31.343 44.3244 31.2268C44.8684 31.1154 45.427 31.0186 45.9467 30.8201C46.0342 30.7863 46.1022 30.733 46.1507 30.6701C46.4373 30.7524 46.8065 30.5007 46.7142 30.1182C46.2722 28.3658 45.6116 26.4586 46.2576 24.6674C46.7191 23.3895 47.8945 22.1744 49.3663 22.3923C50.9692 22.6295 52.1204 24.0914 52.8782 25.3936C53.7525 26.8942 54.248 28.6079 54.3257 30.3409C54.3888 31.8658 54.1945 33.8796 52.7033 34.7122C52.3827 34.8913 52.441 35.2447 52.6548 35.4383C52.5965 36.3677 52.7082 37.3262 52.781 38.2508C52.8636 39.2674 52.9705 40.2743 53.1016 41.286C53.3688 43.3095 53.7331 45.3184 54.18 47.308C54.4374 48.4311 54.724 49.5542 55.0397 50.6627C51.7464 51.9407 49.3032 55.1986 48.5649 58.5872C48.118 60.6397 48.3414 62.7212 49.0894 64.614C49.1235 64.6963 48.662 64.9577 48.1131 65.2385C48.2783 65.4805 48.4337 65.7274 48.5843 65.9694C48.6037 66.0033 48.6231 66.0324 48.6426 66.0614C48.934 65.8968 49.2255 65.7226 49.5072 65.5386C50.1581 66.8311 51.0615 68.0026 52.169 68.9804C53.6117 70.2536 55.3846 71.1879 57.279 71.5654C59.1685 71.943 61.1551 71.7591 62.9669 71.1152C66.6294 69.8082 69.6021 66.6762 70.2773 62.8084C70.7484 60.1217 70.1801 57.2656 68.7715 54.9227C68.6695 54.9565 68.5626 54.9856 68.4557 55.005C69.4904 56.5298 70.1461 58.1079 69.7041 63.8734C69.1649 70.8296 54.0197 74.7894 49.9395 65.6935C45.8593 56.5927 54.1848 51.2969 56.3318 50.7063C56.3318 50.7063 56.3852 51.2969 56.6038 53.117C56.8175 54.9372 57.517 57.2366 60.3634 57.2898C63.2098 57.3431 65.1187 52.3522 65.1187 52.3522C65.1187 52.3522 66.3768 51.9939 67.7709 54.0271C67.868 54.1675 67.9652 54.303 68.0574 54.4386C68.0866 54.4144 68.1254 54.395 68.1643 54.3805C68.2323 54.3563 68.3003 54.3321 68.3683 54.303C67.902 53.635 67.3677 53.0202 66.7654 52.4732C66.4157 52.1537 66.0659 51.902 65.6385 51.7035C65.9396 51.0742 66.2505 50.4546 66.5759 49.8398C67.5134 48.0584 68.5383 46.3205 69.7478 44.7037C71.5062 42.351 73.658 40.2162 76.2081 38.7252C75.9895 39.1657 75.7855 39.6159 75.5961 40.071C75.1638 41.0972 74.7849 42.1477 74.474 43.2175C74.1729 44.2486 73.9057 45.3039 73.8086 46.3786C73.76 46.9062 73.7551 47.4387 73.8231 47.9615C73.9543 47.8308 74.066 47.6808 74.1534 47.5113C74.2991 47.2354 74.6246 47.2596 74.7995 47.429C74.7849 47.158 74.7946 46.8869 74.814 46.6158C74.8869 45.6137 75.1395 44.6262 75.4115 43.6677C75.6835 42.6947 76.0138 41.7411 76.3975 40.8068C76.8007 39.8193 77.2621 38.8559 77.7722 37.9217C78.0393 37.4327 78.3162 36.9535 78.6125 36.4839C78.8456 36.1112 79.0836 35.7433 79.3362 35.3851C79.992 34.4459 80.7109 33.5407 81.4783 32.6887C81.8572 32.2627 82.2458 31.8416 82.649 31.4398C83.0715 31.0138 83.4698 30.5684 83.9022 30.1618C84.1936 29.881 83.7661 29.3631 83.4407 29.6148C82.989 29.9633 82.5469 30.2925 82.1244 30.6749C81.7261 31.0428 81.3375 31.4253 80.9635 31.8222C80.2106 32.6209 79.5111 33.4778 78.8651 34.3636C78.2142 35.2544 77.607 36.1789 77.0581 37.1374C74.9112 38.1589 72.9731 39.6208 71.307 41.3151C68.5723 44.0889 66.5662 47.4968 64.8662 50.9677C64.4339 51.8536 64.0307 52.7491 63.6032 53.635C63.2049 54.4676 62.7532 55.2906 62.0829 55.9295C61.4903 56.4959 60.6548 56.9268 59.8145 56.8638C59.4648 56.8396 59.1345 56.7234 58.843 56.5395C59.1782 56.4524 59.4891 56.2878 59.7611 56.0699C60.0331 55.8521 60.2711 55.581 60.4557 55.2906C61.0434 54.3611 61.0094 53.2138 60.7957 52.1731C60.6063 51.263 60.3537 50.2125 59.7659 49.467C59.1782 48.7215 58.2456 48.4553 57.3907 48.9249C57.3518 48.9442 57.3178 48.9684 57.2838 48.9926C57.5947 47.6856 58.0901 46.4222 58.673 45.2168C60.1059 42.2494 62.0635 39.5627 64.3707 37.21C66.6877 34.8477 69.3495 32.8436 72.2008 31.159C75.0909 29.4599 78.1802 28.0996 81.3715 27.0588C84.9853 25.8777 88.7207 25.137 92.49 24.6917C96.7062 24.1979 100.961 24.0769 105.207 24.1543C109.496 24.2366 113.775 24.5319 118.049 24.8466C119.079 24.924 120.109 24.9724 121.139 25.0402C121.624 25.0741 121.688 24.2318 121.202 24.1882L121.187 24.1688ZM47.6468 66.347C47.7488 66.347 47.7828 66.4535 47.7488 66.5213C47.7294 66.5552 47.7002 66.5697 47.6565 66.5697C47.5108 66.5552 47.5011 66.347 47.642 66.347H47.6468ZM74.3574 76.3869C74.4352 76.1061 74.6246 75.6366 74.9695 75.6027C75.3872 75.5591 75.7952 76.1449 76.0381 76.4111C76.4024 76.8177 76.7473 77.2437 77.0727 77.6891C77.437 78.1829 77.777 78.7008 78.0927 79.2333C78.2482 79.4996 78.3988 79.7707 78.5396 80.0417C78.6902 80.3273 78.7922 80.6323 79.0302 80.855C79.0448 80.8889 79.0594 80.9276 79.0788 80.9615C79.1759 81.16 79.5208 81.0874 79.5451 80.8744C79.6277 80.8066 79.686 80.6953 79.6811 80.5694C79.6811 80.4919 79.6665 80.4145 79.6471 80.3467C79.8463 79.6303 80.264 79.0591 80.9586 78.6573C81.386 78.4055 81.8572 78.2361 82.3284 78.0812C82.6975 77.9602 83.1104 77.7859 83.5038 77.8295C83.9216 77.8779 83.8536 78.2748 83.7807 78.5895C83.6933 78.9961 83.5476 79.3785 83.3533 79.7464C82.9695 80.4774 82.4109 81.1212 81.7358 81.6102C80.9732 82.1572 80.0891 82.5057 79.1516 82.5832C78.5979 82.6267 78.6416 83.4933 79.2002 83.4448C79.2294 83.4448 79.2537 83.4449 79.2828 83.4352C79.1905 84.05 79.1614 84.6647 79.1274 85.2892C79.1274 85.3618 79.1225 85.4344 79.1177 85.5119C78.8214 85.6135 78.5348 85.7491 78.2676 85.9137C78.2725 85.4877 78.2676 85.0568 78.2725 84.6309C78.2725 83.7305 78.2725 82.8301 78.2725 81.9297C78.2725 81.5666 77.8887 81.4698 77.641 81.615C77.3107 81.5085 76.9707 81.4262 76.6501 81.2762C76.2178 81.0777 75.8244 80.8114 75.4795 80.4871C74.9112 79.9449 74.5129 79.2527 74.3234 78.4975C74.2749 78.299 74.236 78.0957 74.2166 77.8876C74.2166 77.844 74.2069 77.8004 74.2069 77.7569C74.1729 77.297 74.2166 76.8323 74.3429 76.3821L74.3574 76.3869ZM51.013 79.0736C53.4756 78.938 55.8509 80.6711 56.6572 82.9656C58.4447 82.6461 60.3245 83.5707 61.1746 85.1633C61.5389 85.0278 61.9275 84.9503 62.316 84.9165C62.7289 84.0742 63.6567 83.5126 64.5456 83.2754C65.381 83.0527 66.2699 83.0769 67.0763 83.3868C68.0914 81.402 70.9524 80.4435 72.8954 81.6489C73.3228 81.9151 72.9877 82.5977 72.5359 82.3508C70.7776 81.3875 68.3586 82.1959 67.6397 84.0984C67.562 84.3017 67.2754 84.3646 67.1005 84.2726C66.3817 83.895 65.5413 83.8273 64.7593 84.0403C64.157 84.2049 63.6664 84.5244 63.2244 84.9261C63.4672 84.9504 63.7101 84.9939 63.9481 85.0568C64.4679 85.1972 64.9682 85.4151 65.415 85.7152C65.8279 85.996 66.3817 86.3832 66.4934 86.8964C66.5565 87.1723 66.2894 87.4724 66.0028 87.3127C65.5948 87.09 65.3227 86.6785 64.9293 86.4171C64.565 86.1799 64.157 85.996 63.7344 85.8895C62.8455 85.6619 61.9275 85.7297 61.092 86.1218C60.8734 86.2235 60.6257 86.0395 60.548 85.8459C59.9456 84.3065 58.0853 83.411 56.4969 83.8757C56.2832 83.9386 56.016 83.8273 55.9578 83.5998C55.3749 81.4262 53.2959 79.9014 51.0567 79.8529C50.5564 79.8433 50.4981 79.1026 51.0081 79.0736H51.013ZM32.8367 85.9379C33.3273 84.0838 34.6388 82.3799 36.4555 81.7602C36.1689 82.1572 35.9211 82.5783 35.722 83.0189C35.0225 83.4352 34.6582 84.2194 34.6097 85.0084C34.5514 85.9088 34.8817 86.7415 35.4743 87.4192C36.1252 88.1598 37.0238 88.6391 37.9127 89.0263C38.9181 89.4668 39.9528 89.8541 40.9922 90.2269C45.2376 91.7517 49.6383 92.8409 54.1168 93.4266C58.5564 94.0075 63.0689 94.1044 67.5231 93.6493C71.9433 93.1943 76.3684 92.2213 80.5117 90.5996C82.4887 89.8251 84.5142 88.6778 85.3642 86.6301C85.7431 85.7104 85.8742 84.6647 85.5391 83.7063C85.2331 82.8301 84.5919 82.041 83.7467 81.6344C83.5767 81.5521 83.397 81.4843 83.2173 81.4359C83.3824 81.2568 83.5378 81.068 83.6787 80.8695C85.4614 81.0438 86.9526 82.5202 87.618 84.1032C88.5604 86.3348 88.2592 88.8714 88.0455 91.2144C87.5646 96.4861 87.0934 101.758 86.6174 107.034C86.3503 109.987 85.6362 118.425 85.3739 121.378C85.3739 121.416 85.3739 121.455 85.3739 121.494C85.3011 121.479 85.2234 121.484 85.1359 121.508C81.8135 122.462 78.4376 123.217 75.0229 123.769C71.5839 124.321 68.1157 124.669 64.633 124.819C61.1794 124.965 57.7161 124.916 54.2723 124.655C50.8138 124.393 47.3748 123.934 43.9698 123.27C42.2551 122.936 40.5551 122.549 38.8598 122.123C37.6115 121.804 36.3 121.412 35.3577 120.492C35.2314 120.371 35.11 120.235 34.9982 120.1C35.0711 120.017 35.11 119.906 35.1003 119.766C35.076 119.475 35.0468 119.19 35.0274 118.899C34.9982 118.575 34.974 118.255 34.9448 117.936C34.5028 112.8 34.0559 107.659 33.609 102.523C33.3613 99.6858 33.1136 96.8443 32.8659 94.0075C32.7444 92.6328 32.5987 91.2483 32.5356 89.8686C32.4773 88.5519 32.5113 87.2304 32.8464 85.9476L32.8367 85.9379ZM57.517 49.7478C58.0464 49.2928 58.707 49.3896 59.1199 49.9366C59.5619 50.5272 59.7465 51.3114 59.9214 52.0085C60.1205 52.8266 60.2517 53.7754 59.8874 54.5644C59.5716 55.247 58.9499 55.794 58.163 55.7456C58.1144 55.7456 58.0659 55.7553 58.0221 55.7746C57.8618 55.5616 57.721 55.3341 57.6044 55.1018C57.4684 54.8355 57.3518 54.5596 57.2644 54.2691C56.9049 53.1654 56.8564 51.931 56.9632 50.8079C56.9729 50.7111 56.9827 50.6192 56.9924 50.5223C57.1138 50.227 57.279 49.956 57.5218 49.743L57.517 49.7478Z\" fill=\"#222727\"/>\\n<path d=\"M51.2754 72.5286C50.9937 72.5625 50.7119 72.6351 50.4351 72.7319C50.3719 72.4414 50.2991 72.151 50.2213 71.8654C49.891 70.6407 49.4539 69.445 48.905 68.3025C48.6038 67.6684 48.2687 67.0488 47.9044 66.4485C47.8364 66.3323 47.7684 66.221 47.6955 66.1096C47.5886 65.9402 47.4769 65.7708 47.3604 65.6013C47.6081 65.4852 47.8704 65.3593 48.1132 65.2383C48.2784 65.4803 48.4338 65.7272 48.5844 65.9693C48.6038 66.0031 48.6233 66.0322 48.6427 66.0612C49.5316 67.4941 50.2408 69.0529 50.7654 70.6552C50.8722 70.9844 50.9694 71.3184 51.0617 71.6572C51.1394 71.9477 51.2122 72.2381 51.2802 72.5334L51.2754 72.5286Z\" fill=\"#222727\"/>\\n</g>\\n<defs>\\n<clipPath id=\"clip0_4003_3574\">\\n<rect width=\"134\" height=\"125\" fill=\"white\" transform=\"translate(0.0786133 0.90332)\"/>\\n</clipPath>\\n</defs>\\n</svg>\\n',withExternalLayout:true})})]})]}),isDisplayed4()&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-i1x10c hidden-1t3nvjz hidden-1yfu9ea hidden-1b56ql2\"})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-bcofek\",\"data-framer-name\":\"Slide 4\",id:elementId6,ref:ref10,children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-bq5ks6\",\"data-framer-name\":\"Text Block 3\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v24\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{className:\"framer-styles-preset-1lzcxam\",\"data-styles-preset\":\"MpTKPkTbI\",style:{\"--framer-text-color\":'var(--token-8ecf3070-09f7-44e8-a71e-d4b812577923, rgb(54, 139, 139)) /* {\"name\":\"Green Cirkkle\"'},children:\"Encaissez votre\\xa0cagnotte\"})}),className:\"framer-1bsr0kz\",\"data-framer-name\":\"Encaissez votre\\xa0cagnotte\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v25\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{className:\"framer-styles-preset-1ux7mzk\",\"data-styles-preset\":\"pFr3xYY7b\",children:\"Vous \\xeates le b\\xe9n\\xe9ficiaire du mois ? Choisissez un mode d\u2019encaissement et recevez la cagnotte de votre tontine instantan\\xe9ment.\"})}),className:\"framer-1w8jksg\",\"data-framer-name\":\"Vous \\xeates le b\\xe9n\\xe9ficiaire du mois ? Choisissez un mode d\u2019encaissement et recevez la cagnotte de votre tontine instantan\\xe9ment.\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{\"aria-label\":\"Girl holding coins next to plant pot\",className:\"framer-1k9oxf1\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1mrdm0e\",\"data-framer-name\":\"Rectangle 272\",style:{rotate:-64}}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-7qthoe\",\"data-framer-name\":\"Ellipse 34\"}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{HfSG4WHcm:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:119,intrinsicWidth:134,loading:getLoadingLazyAtYPosition(7058.1089117326965),positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/6CWnEt4HHGBtPpquU7fWD4qmqw.svg\"}},jhgstC6MA:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:119,intrinsicWidth:134,loading:getLoadingLazyAtYPosition(6289.958911732696),positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/6CWnEt4HHGBtPpquU7fWD4qmqw.svg\"}},WPoaGmYBq:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:119,intrinsicWidth:134,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/6CWnEt4HHGBtPpquU7fWD4qmqw.svg\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",intrinsicHeight:119,intrinsicWidth:134,loading:getLoadingLazyAtYPosition(6564.958911732696),positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/6CWnEt4HHGBtPpquU7fWD4qmqw.svg\"},className:\"framer-1b6jrei\",\"data-framer-name\":\"Mode_Isolation\"})})]})]}),isDisplayed4()&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-uutxn4 hidden-1t3nvjz hidden-1yfu9ea hidden-1b56ql2\"})]})]})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1fz4yj1\",\"data-framer-name\":\"Our Solution\",id:elementId7,ref:ref4,children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1hi1j47\",\"data-framer-name\":\"Message Wrapper\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1ymt0fq\",\"data-framer-name\":\"Messages Headings\",children:[/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition10},__framer__animateOnce:true,__framer__enter:animation14,__framer__exit:animation15,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-wgpbxt\",\"data-framer-name\":\"Text Appear\",style:{transformPerspective:1200},children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-taucnn\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{HfSG4WHcm:{children:getLocalizedValue(\"v27\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7UGx1cyBKYWthcnRhIFNhbnMtNzAw\",\"--framer-font-family\":'\"Plus Jakarta Sans\", \"Plus Jakarta Sans Placeholder\", sans-serif',\"--framer-font-size\":\"32px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"0px\",\"--framer-text-color\":\"rgb(54, 139, 139)\"},children:\"Ces petits plus qui\"})})},WPoaGmYBq:{children:getLocalizedValue(\"v27\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7UGx1cyBKYWthcnRhIFNhbnMtNzAw\",\"--framer-font-family\":'\"Plus Jakarta Sans\", \"Plus Jakarta Sans Placeholder\", sans-serif',\"--framer-font-size\":\"32px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"0px\",\"--framer-text-color\":\"rgb(54, 139, 139)\"},children:\"Ces petits plus qui\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v26\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7UGx1cyBKYWthcnRhIFNhbnMtNzAw\",\"--framer-font-family\":'\"Plus Jakarta Sans\", \"Plus Jakarta Sans Placeholder\", sans-serif',\"--framer-font-size\":\"42px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"0px\",\"--framer-text-color\":\"rgb(54, 139, 139)\"},children:\"Ces petits plus qui\"})}),className:\"framer-rnm12r\",\"data-framer-name\":\"Ces petits plus qui simplifient\\xa0la gestion\\u2028de vos tontines\",fonts:[\"GF;Plus Jakarta Sans-700\"],verticalAlignment:\"top\",withExternalLayout:true})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1uhw0d5\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{HfSG4WHcm:{children:getLocalizedValue(\"v29\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7UGx1cyBKYWthcnRhIFNhbnMtNzAw\",\"--framer-font-family\":'\"Plus Jakarta Sans\", \"Plus Jakarta Sans Placeholder\", sans-serif',\"--framer-font-size\":\"32px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"0px\",\"--framer-text-color\":\"rgb(248, 147, 74)\"},children:\"simplifient\\xa0la gestion\"})})},WPoaGmYBq:{children:getLocalizedValue(\"v29\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7UGx1cyBKYWthcnRhIFNhbnMtNzAw\",\"--framer-font-family\":'\"Plus Jakarta Sans\", \"Plus Jakarta Sans Placeholder\", sans-serif',\"--framer-font-size\":\"32px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"0px\",\"--framer-text-color\":\"rgb(248, 147, 74)\"},children:\"simplifient\\xa0la gestion\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v28\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7UGx1cyBKYWthcnRhIFNhbnMtNzAw\",\"--framer-font-family\":'\"Plus Jakarta Sans\", \"Plus Jakarta Sans Placeholder\", sans-serif',\"--framer-font-size\":\"42px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"0px\",\"--framer-text-color\":\"rgb(248, 147, 74)\"},children:\"simplifient\\xa0la gestion\"})}),className:\"framer-1fprqs2\",\"data-framer-name\":\"Ces petits plus qui simplifient\\xa0la gestion\\u2028de vos tontines\",fonts:[\"GF;Plus Jakarta Sans-700\"],verticalAlignment:\"top\",withExternalLayout:true})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-om1c9z\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{HfSG4WHcm:{children:getLocalizedValue(\"v31\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7UGx1cyBKYWthcnRhIFNhbnMtNzAw\",\"--framer-font-family\":'\"Plus Jakarta Sans\", \"Plus Jakarta Sans Placeholder\", sans-serif',\"--framer-font-size\":\"32px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"0px\",\"--framer-text-color\":\"rgb(54, 139, 139)\"},children:\"de vos tontines\"})})},WPoaGmYBq:{children:getLocalizedValue(\"v31\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7UGx1cyBKYWthcnRhIFNhbnMtNzAw\",\"--framer-font-family\":'\"Plus Jakarta Sans\", \"Plus Jakarta Sans Placeholder\", sans-serif',\"--framer-font-size\":\"32px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"0px\",\"--framer-text-color\":\"rgb(54, 139, 139)\"},children:\"de vos tontines\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v30\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7UGx1cyBKYWthcnRhIFNhbnMtNzAw\",\"--framer-font-family\":'\"Plus Jakarta Sans\", \"Plus Jakarta Sans Placeholder\", sans-serif',\"--framer-font-size\":\"42px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"0px\",\"--framer-text-color\":\"rgb(54, 139, 139)\"},children:\"de vos tontines\"})}),className:\"framer-aw0ih8\",\"data-framer-name\":\"Ces petits plus qui simplifient\\xa0la gestion\\u2028de vos tontines\",fonts:[\"GF;Plus Jakarta Sans-700\"],verticalAlignment:\"top\",withExternalLayout:true})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1jdb7dj\",children:[/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition13},__framer__animateOnce:true,__framer__enter:animation16,__framer__exit:animation25,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-9h69l\",\"data-framer-name\":\"Ellipse 129\",style:{transformPerspective:1200}}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-pnlsc7\",\"data-framer-name\":\"Ellipse 130\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-rgdxkq\",\"data-framer-name\":\"Ellipse 131\"})]})]}),isDisplayed1()&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-bfs2ll hidden-1mx4hxu\",\"data-framer-name\":\"Section Image\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1i6lvl6\",\"data-framer-name\":\"Ellipse 132\"}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{HfSG4WHcm:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:556,intrinsicWidth:816,loading:getLoadingLazyAtYPosition(7876.266500000001),pixelHeight:556,pixelWidth:816,sizes:\"calc(min(max((min(100vw - 80px, 1400px) - 10px) / 2, 1px), 847px) * 0.9984)\",...getLocalizedValue(\"v32\",activeLocale)??{src:\"https://framerusercontent.com/images/khXAzI9uRQZA5DS1XybXLieqQ.webp\",srcSet:\"https://framerusercontent.com/images/khXAzI9uRQZA5DS1XybXLieqQ.webp?scale-down-to=512 512w,https://framerusercontent.com/images/khXAzI9uRQZA5DS1XybXLieqQ.webp 816w\"}}},jhgstC6MA:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:556,intrinsicWidth:816,loading:getLoadingLazyAtYPosition(7108.1165),pixelHeight:556,pixelWidth:816,sizes:\"calc(max(min(max((min(100vw - 48px, 1400px) - 10px) / 2, 1px), 847px), 536px) * 0.9984)\",...getLocalizedValue(\"v32\",activeLocale)??{src:\"https://framerusercontent.com/images/khXAzI9uRQZA5DS1XybXLieqQ.webp\",srcSet:\"https://framerusercontent.com/images/khXAzI9uRQZA5DS1XybXLieqQ.webp?scale-down-to=512 512w,https://framerusercontent.com/images/khXAzI9uRQZA5DS1XybXLieqQ.webp 816w\"}}}},children:/*#__PURE__*/_jsx(ImageWithFX,{__framer__animate:{transition:transition13},__framer__animateOnce:false,__framer__enter:animation26,__framer__exit:animation27,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,\"aria-label\":\"Man holding smartphone\",background:{alt:\"\",fit:\"fill\",intrinsicHeight:556,intrinsicWidth:816,loading:getLoadingLazyAtYPosition(7383.1165),pixelHeight:556,pixelWidth:816,sizes:\"calc(max(min(max((min(100vw - 120px, 1400px) - 10px) / 2, 1px), 847px), 536px) * 0.9984)\",...getLocalizedValue(\"v32\",activeLocale)??{src:\"https://framerusercontent.com/images/khXAzI9uRQZA5DS1XybXLieqQ.webp\",srcSet:\"https://framerusercontent.com/images/khXAzI9uRQZA5DS1XybXLieqQ.webp?scale-down-to=512 512w,https://framerusercontent.com/images/khXAzI9uRQZA5DS1XybXLieqQ.webp 816w\"}},className:\"framer-iym5u2\",\"data-framer-name\":\"Man Holding Phone\",style:{transformPerspective:1200}})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-d7f8r7\",\"data-framer-name\":\"Ellipse 133\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-pf9qw6\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-ryaaba\",\"data-framer-name\":\"Vector 40\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:36,intrinsicWidth:28,svg:'<svg width=\"28\" height=\"36\" viewBox=\"-3 -3 28 36\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M0.958252 0.941406L21.7729 29.5615\" stroke=\"#F8934A\" stroke-width=\"5\" stroke-linecap=\"round\"/>\\n</svg>\\n',withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-17jet63\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1gfp5tv\",\"data-framer-name\":\"Vector 41\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:30,intrinsicWidth:24,svg:'<svg width=\"24\" height=\"30\" viewBox=\"-3 -3 24 30\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M8.39722 0.941406L9.17108 23.8899\" stroke=\"#F8934A\" stroke-width=\"5\" stroke-linecap=\"round\"/>\\n</svg>\\n',withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1wihvhr\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1gbk725\",\"data-framer-name\":\"Vector 42\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:17,intrinsicWidth:29,svg:'<svg width=\"29\" height=\"17\" viewBox=\"-3 -3 29 17\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M0.362305 1.38379L22.9154 9.75118\" stroke=\"#F8934A\" stroke-width=\"5\" stroke-linecap=\"round\"/>\\n</svg>\\n',withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1ejt2wf\",\"data-framer-name\":\"kk\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-o7u9d7\",\"data-framer-name\":\"Vector\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:135,intrinsicWidth:169,svg:'<svg width=\"169\" height=\"135\" viewBox=\"0 0 169 135\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M164.735 56.9777H135.355L119.469 80.427C117.54 83.4522 115.609 86.6546 113.858 89.8421H113.531V56.9777C113.531 25.8103 88.4264 0.560547 57.0717 0.560547C25.7169 0.560547 0.359863 25.825 0.359863 56.9777V134.999H24.7519V110.591L31.0169 102.932L49.9604 134.999H79.9791L47.882 88.573L75.9706 56.9777H46.5904L30.7051 80.427C28.7751 83.4522 26.8452 86.6546 25.0933 89.8421H24.7667V56.9777C24.7667 39.3722 39.3603 25.1167 57.0717 25.1167C74.783 25.1167 89.1242 39.387 89.1242 56.9777V134.999H113.516V110.591L119.781 102.932L138.725 134.999H168.743L136.646 88.573L164.735 56.9777Z\" fill=\"#EBF3F3\"/>\\n</svg>\\n',withExternalLayout:true})})]})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{WPoaGmYBq:{__framer__animate:{transition:transition10},__framer__animateOnce:true,__framer__enter:animation14,__framer__exit:animation15,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,style:{transformPerspective:1200}}},children:/*#__PURE__*/_jsxs(MotionDivWithFX,{className:\"framer-1aipruh\",\"data-framer-name\":\"Cards\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{WPoaGmYBq:{__framer__styleAppearEffectEnabled:undefined,style:{}}},children:/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition12},__framer__animateOnce:true,__framer__enter:animation18,__framer__exit:animation19,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-9lmhyr\",\"data-border\":true,\"data-framer-name\":\"Card 1\",style:{transformPerspective:1200},children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-jmy3la\",\"data-framer-name\":\"wallet 1\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:61,intrinsicWidth:61,svg:'<svg width=\"61\" height=\"61\" viewBox=\"0 0 61 61\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<g clip-path=\"url(#clip0_4003_2902)\">\\n<path d=\"M24.5275 9.75137C24.5275 6.52051 27.156 3.89199 30.3869 3.89199H32.4147L31.803 2.1916C31.4591 1.23535 30.5579 0.640625 29.5974 0.640625C29.3313 0.640625 29.0606 0.686328 28.796 0.782656L8.30539 8.24059C7.08722 8.68402 6.46027 10.032 6.90628 11.2493L7.98898 14.2045H24.5275V9.75137Z\" fill=\"#F8934A\"/>\\n<path d=\"M30.387 7.40723C29.0925 7.40723 28.0432 8.45652 28.0432 9.75098V14.2041H48.551V9.75098C48.551 8.45652 47.5017 7.40723 46.2073 7.40723H30.387Z\" fill=\"#F8934A\"/>\\n<path d=\"M54.762 48.0127H46.5588C41.7125 48.0127 37.7698 44.0699 37.7698 39.2236C37.7698 34.3773 41.7125 30.4346 46.5588 30.4346H54.762V22.4072C54.762 19.8184 52.6633 17.7197 50.0745 17.7197H4.7229C2.13411 17.7197 0.0354004 19.8184 0.0354004 22.4072V55.9527C0.0354004 58.5415 2.13411 60.6402 4.7229 60.6402H50.0745C52.6633 60.6402 54.762 58.5415 54.762 55.9527V48.0127Z\" fill=\"#368B8B\"/>\\n<path d=\"M58.2776 33.9502H46.5588C43.6511 33.9502 41.2854 36.3159 41.2854 39.2236C41.2854 42.1314 43.6511 44.4971 46.5588 44.4971H58.2776C59.2468 44.4971 60.0354 43.7085 60.0354 42.7393V35.708C60.0354 34.7388 59.2468 33.9502 58.2776 33.9502ZM46.5588 40.9814C45.5881 40.9814 44.801 40.1944 44.801 39.2236C44.801 38.2529 45.5881 37.4658 46.5588 37.4658C47.5296 37.4658 48.3167 38.2529 48.3167 39.2236C48.3167 40.1944 47.5296 40.9814 46.5588 40.9814Z\" fill=\"#368B8B\"/>\\n</g>\\n<defs>\\n<clipPath id=\"clip0_4003_2902\">\\n<rect width=\"60\" height=\"60\" fill=\"white\" transform=\"translate(0.0354004 0.640625)\"/>\\n</clipPath>\\n</defs>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-w9n4tg\",\"data-framer-name\":\"Group 289170\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v33\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{className:\"framer-styles-preset-1o5d4n7\",\"data-styles-preset\":\"ttzUtOj6f\",children:\"Multiples moyens de paiement\"})}),className:\"framer-691lyp\",\"data-framer-name\":\"Multiples moyens de paiement\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v34\",activeLocale)??/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-lmirgo\",\"data-styles-preset\":\"l67b_BAPm\",children:\"Virement, paiement par carte, d\\xe9p\\xf4t d\u2019esp\\xe8ces (bient\\xf4t disponible).\"}),/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-lmirgo\",\"data-styles-preset\":\"l67b_BAPm\",children:\"C\u2019est vous qui choisissez !\"})]}),className:\"framer-ykpezj\",\"data-framer-name\":\"Virement, paiement par carte, d\\xe9p\\xf4t d\u2019esp\\xe8ces (bient\\xf4t disponible). C\u2019est vous qui choisissez !\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})]})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{WPoaGmYBq:{__framer__styleAppearEffectEnabled:undefined,style:{}}},children:/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition14},__framer__animateOnce:true,__framer__enter:animation18,__framer__exit:animation21,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-182c0qk\",\"data-border\":true,\"data-framer-name\":\"Card 2\",style:{transformPerspective:1200},children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1oz7p4d\",\"data-framer-name\":\"Message Icon\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1d8f27z\",\"data-framer-name\":\"M1\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1eyl0qq\",\"data-framer-name\":\"message 1\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:61,intrinsicWidth:61,svg:'<svg width=\"61\" height=\"61\" viewBox=\"0 0 61 61\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<g clip-path=\"url(#clip0_4003_2911)\">\\n<path d=\"M57.5007 4.16406H2.57239C1.17322 4.16406 0.0354004 5.29962 0.0354004 6.70105V45.2651C0.0354004 46.6643 1.17096 47.8021 2.57239 47.8021H33.0253L44.7053 56.5283C46.2825 57.7067 47.5713 57.06 47.5713 55.0908V47.7998H57.4984C58.8976 47.7998 60.0354 46.6643 60.0354 45.2628V6.6988C60.0354 5.29962 58.8998 4.16406 57.5007 4.16406ZM16.1991 29.6038C14.0316 29.6038 12.2765 27.8464 12.2765 25.6811C12.2765 23.5137 14.0339 21.7585 16.1991 21.7585C18.3644 21.7585 20.1218 23.5159 20.1218 25.6811C20.1195 27.8464 18.3644 29.6038 16.1991 29.6038ZM30.0377 29.6038C27.8702 29.6038 26.115 27.8464 26.115 25.6811C26.115 23.5137 27.8724 21.7585 30.0377 21.7585C32.2029 21.7585 33.9603 23.5159 33.9603 25.6811C33.9603 27.8464 32.2051 29.6038 30.0377 29.6038ZM43.8762 29.6038C41.7087 29.6038 39.9535 27.8464 39.9535 25.6811C39.9535 23.5137 41.711 21.7585 43.8762 21.7585C46.0414 21.7585 47.7988 23.5159 47.7988 25.6811C47.7988 27.8464 46.0437 29.6038 43.8762 29.6038Z\" fill=\"#368B8B\"/>\\n</g>\\n<defs>\\n<clipPath id=\"clip0_4003_2911\">\\n<rect width=\"60\" height=\"60\" fill=\"white\" transform=\"translate(0.0354004 0.640625)\"/>\\n</clipPath>\\n</defs>\\n</svg>\\n',withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1b9sjwn\",\"data-framer-name\":\"M2\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-15z2i0r\",\"data-framer-name\":\"Vector\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:27,intrinsicWidth:31,svg:'<svg width=\"31\" height=\"27\" viewBox=\"0 0 31 27\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M29.0978 -0.0078125H1.51378C0.811136 -0.0078125 0.239746 0.562446 0.239746 1.26622V20.6324C0.239746 21.335 0.810005 21.9064 1.51378 21.9064H16.8067L22.6722 26.2886C23.4642 26.8803 24.1114 26.5556 24.1114 25.5667V21.9053H29.0967C29.7993 21.9053 30.3707 21.335 30.3707 20.6313V1.26509C30.3707 0.562446 29.8004 -0.0078125 29.0978 -0.0078125ZM8.35688 12.7676C7.26841 12.7676 6.387 11.885 6.387 10.7977C6.387 9.70922 7.26954 8.8278 8.35688 8.8278C9.44422 8.8278 10.3268 9.71035 10.3268 10.7977C10.3256 11.885 9.44422 12.7676 8.35688 12.7676ZM15.3063 12.7676C14.2179 12.7676 13.3365 11.885 13.3365 10.7977C13.3365 9.70922 14.219 8.8278 15.3063 8.8278C16.3937 8.8278 17.2762 9.71035 17.2762 10.7977C17.2762 11.885 16.3948 12.7676 15.3063 12.7676ZM22.2558 12.7676C21.1673 12.7676 20.2859 11.885 20.2859 10.7977C20.2859 9.70922 21.1685 8.8278 22.2558 8.8278C23.3432 8.8278 24.2257 9.71035 24.2257 10.7977C24.2257 11.885 23.3443 12.7676 22.2558 12.7676Z\" fill=\"#F8934A\"/>\\n<path d=\"M8.35688 12.7676C7.26841 12.7676 6.387 11.885 6.387 10.7977C6.387 9.70922 7.26954 8.8278 8.35688 8.8278C9.44422 8.8278 10.3268 9.71035 10.3268 10.7977C10.3256 11.885 9.44422 12.7676 8.35688 12.7676Z\" fill=\"white\"/>\\n<path d=\"M15.3063 12.7676C14.2179 12.7676 13.3365 11.885 13.3365 10.7977C13.3365 9.70922 14.219 8.8278 15.3063 8.8278C16.3937 8.8278 17.2762 9.71035 17.2762 10.7977C17.2762 11.885 16.3948 12.7676 15.3063 12.7676Z\" fill=\"white\"/>\\n</svg>\\n',withExternalLayout:true})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-16nftov\",\"data-framer-name\":\"Group 289171\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v35\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h4\",{className:\"framer-styles-preset-1o5d4n7\",\"data-styles-preset\":\"ttzUtOj6f\",children:[\"Messagerie instantan\\xe9e \",/*#__PURE__*/_jsx(\"br\",{}),\"(bient\\xf4t disponible)\"]})}),className:\"framer-1uj4p7b\",\"data-framer-name\":\"Messagerie instantan\\xe9e\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v36\",activeLocale)??/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-lmirgo\",\"data-styles-preset\":\"l67b_BAPm\",children:\"Communiquez avec les membres de votre tontine, individuellement ou en groupe.\"}),/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-lmirgo\",\"data-styles-preset\":\"l67b_BAPm\",children:/*#__PURE__*/_jsx(\"br\",{className:\"trailing-break\"})})]}),className:\"framer-wzox1h\",\"data-framer-name\":\"Communiquez avec les membres de votre tontine, individuellement ou en groupe.\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})]})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{WPoaGmYBq:{__framer__styleAppearEffectEnabled:undefined,style:{}}},children:/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition15},__framer__animateOnce:true,__framer__enter:animation18,__framer__exit:animation22,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-13kltd8\",\"data-framer-name\":\"Card 3\",style:{transformPerspective:1200},children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-7fxcr\",\"data-framer-name\":\"translation 1\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:61,intrinsicWidth:61,svg:'<svg width=\"61\" height=\"61\" viewBox=\"0 0 61 61\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<g clip-path=\"url(#clip0_4003_2919)\">\\n<path d=\"M45.202 45.1293L42.7541 40.2334L40.3062 45.1293H45.202Z\" fill=\"#F8934A\"/>\\n<path d=\"M54.7643 26.0776H52.2738V20.8085C52.2738 20.3114 52.0633 19.8376 51.6945 19.5043C51.3258 19.1711 50.8327 19.0097 50.3386 19.0597C50.0587 19.0881 43.7894 19.7971 40.6681 26.0776H38.1139V29.9318C38.1139 34.7769 34.1721 38.7186 29.3271 38.7186H25.4729V55.369C25.4729 58.2756 27.8376 60.6402 30.7441 60.6402H54.7643C57.6708 60.6403 60.0355 58.2756 60.0355 55.3691V31.3489C60.0355 28.4423 57.6708 26.0776 54.7643 26.0776ZM34.1257 49.629L41.1818 35.5167C41.4795 34.9212 42.0882 34.545 42.7541 34.545C43.4199 34.545 44.0285 34.9212 44.3264 35.5167L51.3826 49.629C51.8168 50.4974 51.4647 51.5531 50.5965 51.9874C49.7283 52.4217 48.6723 52.0697 48.2381 51.2013L46.9599 48.645H38.5484L37.2703 51.2013C36.9623 51.8173 36.3415 52.1734 35.6967 52.1734C35.4325 52.1734 35.1643 52.1136 34.912 51.9874C34.0435 51.5532 33.6916 50.4974 34.1257 49.629Z\" fill=\"#F8934A\"/>\\n<path d=\"M18.9824 15.4463H15.6511C15.8686 17.1878 16.4261 18.6521 17.3168 19.8319C18.2075 18.6521 18.7649 17.1878 18.9824 15.4463Z\" fill=\"#368B8B\"/>\\n<path d=\"M29.3269 35.2033C32.2335 35.2033 34.5981 32.8386 34.5981 29.9321V5.91195C34.5981 3.00535 32.2334 0.640625 29.3269 0.640625H5.30673C2.40013 0.640625 0.0354004 3.00535 0.0354004 5.91195V29.9321C0.0354004 32.8387 2.40013 35.2033 5.30661 35.2033H7.79708V40.4724C7.79708 40.9695 8.00755 41.4433 8.37634 41.7766C8.70095 42.0699 9.12142 42.2302 9.55478 42.2302C9.61372 42.2302 9.67313 42.2273 9.73231 42.2212C10.0122 42.1929 16.2815 41.4839 19.4027 35.2033H29.3269ZM18.2536 25.1179C17.9461 24.9539 17.632 24.7686 17.3168 24.5625C17.0015 24.7686 16.6875 24.954 16.38 25.1179C13.3807 26.7175 10.3867 26.7359 10.2607 26.7359C9.28993 26.7359 8.5029 25.9489 8.5029 24.9781C8.5029 24.0073 9.28993 23.2203 10.2607 23.2203C10.2762 23.2202 12.445 23.1887 14.603 22.0798C13.3683 20.4987 12.3952 18.3534 12.114 15.4461H10.2606C9.28981 15.4461 8.50278 14.6591 8.50278 13.6883C8.50278 12.7175 9.28981 11.9305 10.2606 11.9305H15.559V10.8658C15.559 9.89504 16.346 9.10801 17.3168 9.10801C18.2876 9.10801 19.0746 9.89504 19.0746 10.8658V11.9305H24.3729C25.3437 11.9305 26.1307 12.7175 26.1307 13.6883C26.1307 14.6591 25.3437 15.4461 24.3729 15.4461H22.5197C22.2384 18.3534 21.2654 20.4987 20.0308 22.0798C22.1886 23.1887 24.3578 23.2201 24.3802 23.2203C25.3509 23.2203 26.1343 24.0073 26.1343 24.9781C26.1343 25.9489 25.3437 26.7359 24.3729 26.7359C24.2469 26.7359 21.2529 26.7177 18.2536 25.1179Z\" fill=\"#368B8B\"/>\\n<path d=\"M42.8872 10.6976C43.2304 11.0408 43.6803 11.2125 44.13 11.2125C44.5798 11.2125 45.0298 11.0409 45.3729 10.6976C46.0594 10.0111 46.0594 8.89814 45.3729 8.21165L44.8683 7.70705C51.3381 8.09037 56.4845 13.4744 56.4845 20.0388C56.4845 21.0096 57.2716 21.7966 58.2423 21.7966C59.2131 21.7966 60.0002 21.0096 60.0002 20.0388C60.0002 11.5224 53.2568 4.55236 44.8293 4.18498L45.3729 3.64134C46.0594 2.95486 46.0594 1.84193 45.3729 1.15544C44.6866 0.469077 43.5735 0.46896 42.887 1.15544L39.3591 4.68361C38.6726 5.37009 38.6726 6.48302 39.3591 7.16951L42.8872 10.6976Z\" fill=\"#368B8B\"/>\\n<path d=\"M17.1485 50.5483C16.4622 49.8618 15.3491 49.8618 14.6626 50.5483C13.9761 51.2348 13.9761 52.3477 14.6626 53.0342L15.1672 53.5388C8.69743 53.1556 3.55103 47.7714 3.55103 41.207C3.55103 40.2362 2.76399 39.4492 1.79321 39.4492C0.822432 39.4492 0.0354004 40.2362 0.0354004 41.207C0.0354004 49.7234 6.77872 56.6935 15.2063 57.0609L14.6626 57.6045C13.9761 58.291 13.9761 59.4039 14.6626 60.0904C15.0059 60.4336 15.4558 60.6052 15.9055 60.6052C16.3553 60.6052 16.8053 60.4336 17.1484 60.0903L20.6765 56.5622C21.3629 55.8757 21.3629 54.7628 20.6765 54.0763L17.1485 50.5483Z\" fill=\"#F8934A\"/>\\n</g>\\n<defs>\\n<clipPath id=\"clip0_4003_2919\">\\n<rect width=\"60\" height=\"60\" fill=\"white\" transform=\"translate(0.0354004 0.640625)\"/>\\n</clipPath>\\n</defs>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-4nkn69\",\"data-framer-name\":\"Group 289172\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v37\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{className:\"framer-styles-preset-1o5d4n7\",\"data-styles-preset\":\"ttzUtOj6f\",children:\"Application multilingue\"})}),className:\"framer-11o766h\",\"data-framer-name\":\"Application multilingue\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v38\",activeLocale)??/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-lmirgo\",\"data-styles-preset\":\"l67b_BAPm\",children:\"Profitez pleinement de l\u2019application, dans votre langue pr\\xe9f\\xe9r\\xe9e.\"}),/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-lmirgo\",\"data-styles-preset\":\"l67b_BAPm\",children:/*#__PURE__*/_jsx(\"br\",{className:\"trailing-break\"})})]}),className:\"framer-5qntep\",\"data-framer-name\":\"Profitez pleinement de l\u2019application, dans votre langue pr\\xe9f\\xe9r\\xe9e.\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})]})})]})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1o1cp7w\",\"data-framer-name\":\"BG Pattern\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-nmacv8\",\"data-framer-name\":\"Waves\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-12zgvz7\",\"data-framer-name\":\"Union\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:27,intrinsicWidth:1513,svg:'<svg width=\"1513\" height=\"27\" viewBox=\"0 0 1513 27\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path opacity=\"0.08\" d=\"M49.4269 1.15229C49.134 0.859395 48.6591 0.859396 48.3662 1.15229L30.249 19.2695C27.5153 22.0032 23.0832 22.0032 20.3495 19.2695L2.23223 1.15229C1.93934 0.859394 1.46447 0.859395 1.17157 1.15229C0.878681 1.44518 0.878681 1.92006 1.17158 2.21295L24.7689 25.8102C25.0618 26.1031 25.5367 26.1031 25.8296 25.8102L43.9468 7.69302C46.6805 4.95935 51.1126 4.95935 53.8463 7.69302L71.9635 25.8102C72.2564 26.1031 72.7313 26.1031 73.0242 25.8102L91.1414 7.69303C93.8751 4.95936 98.3072 4.95935 101.041 7.69302L119.158 25.8102C119.451 26.1031 119.926 26.1031 120.219 25.8102L138.336 7.69302C141.07 4.95935 145.502 4.95935 148.235 7.69302L166.353 25.8102C166.646 26.1031 167.12 26.1031 167.413 25.8102L185.531 7.69302C188.264 4.95935 192.696 4.95936 195.43 7.69303L213.547 25.8102C213.84 26.1031 214.315 26.1031 214.608 25.8102L232.725 7.69303C235.459 4.95936 239.891 4.95936 242.625 7.69303L260.742 25.8102C261.035 26.1031 261.51 26.1031 261.803 25.8102L279.92 7.69302C282.653 4.95935 287.086 4.95935 289.819 7.69302L307.936 25.8102C308.229 26.1031 308.704 26.1031 308.997 25.8102L327.114 7.69302C329.848 4.95936 334.28 4.95936 337.014 7.69303L355.131 25.8102C355.424 26.1031 355.899 26.1031 356.192 25.8102L374.309 7.693C377.043 4.95934 381.475 4.95933 384.208 7.693L402.326 25.8102C402.619 26.1031 403.094 26.1031 403.386 25.8102L421.504 7.69302C424.237 4.95935 428.669 4.95936 431.403 7.69303L449.52 25.8102C449.813 26.1031 450.288 26.1031 450.581 25.8102L468.698 7.69303C471.432 4.95936 475.864 4.95936 478.598 7.69303L496.715 25.8102C497.008 26.1031 497.483 26.1031 497.776 25.8102L515.893 7.69303C518.626 4.95935 523.059 4.95936 525.792 7.69303L543.909 25.8102C544.202 26.1031 544.677 26.1031 544.97 25.8102L563.087 7.69302C565.821 4.95935 570.253 4.95935 572.987 7.69303L591.104 25.8102C591.397 26.1031 591.872 26.1031 592.165 25.8102L610.282 7.69303C613.016 4.95936 617.448 4.95936 620.182 7.69303L638.299 25.8102C638.592 26.1031 639.066 26.1031 639.359 25.8102L657.477 7.69301C660.21 4.95934 664.642 4.95934 667.376 7.69301L685.493 25.8102C685.786 26.1031 686.261 26.1031 686.554 25.8102L704.671 7.69302C707.405 4.95935 711.837 4.95936 714.571 7.69303L732.688 25.8102C732.981 26.1031 733.456 26.1031 733.749 25.8102L751.866 7.69303C754.599 4.95936 759.032 4.95935 761.765 7.69302L779.883 25.8102C780.175 26.1031 780.65 26.1031 780.943 25.8102L799.06 7.69303C801.794 4.95936 806.226 4.95936 808.96 7.69303L827.077 25.8102C827.37 26.1031 827.845 26.1031 828.138 25.8102L846.255 7.69302C848.989 4.95935 853.421 4.95935 856.155 7.69302L874.272 25.8102C874.565 26.1031 875.039 26.1031 875.332 25.8102L893.45 7.69301C896.183 4.95935 900.615 4.95935 903.349 7.69302L921.466 25.8102C921.759 26.1031 922.234 26.1031 922.527 25.8102L940.644 7.69303C943.378 4.95935 947.81 4.95936 950.544 7.69303L968.661 25.8102C968.954 26.1031 969.429 26.1031 969.722 25.8102L987.839 7.69303C990.572 4.95936 995.005 4.95936 997.738 7.69303L1015.86 25.8102C1016.15 26.1031 1016.62 26.1031 1016.92 25.8102L1035.03 7.69301C1037.77 4.95934 1042.2 4.95934 1044.93 7.69301L1063.05 25.8102C1063.34 26.1031 1063.82 26.1031 1064.11 25.8102L1082.23 7.69301C1084.96 4.95935 1089.39 4.95935 1092.13 7.69301L1110.24 25.8102C1110.54 26.1031 1111.01 26.1031 1111.31 25.8102L1129.42 7.69304C1132.16 4.95936 1136.59 4.95936 1139.32 7.69303L1157.44 25.8102C1157.73 26.1031 1158.21 26.1031 1158.5 25.8102L1176.62 7.69302C1179.35 4.95935 1183.78 4.95936 1186.52 7.69303L1204.63 25.8102C1204.93 26.1031 1205.4 26.1031 1205.69 25.8102L1223.81 7.69302C1226.55 4.95935 1230.98 4.95936 1233.71 7.69303L1251.83 25.8102C1252.12 26.1031 1252.6 26.1031 1252.89 25.8102L1271.01 7.69302C1273.74 4.95935 1278.17 4.95935 1280.91 7.69303L1299.02 25.8102C1299.32 26.1031 1299.79 26.1031 1300.08 25.8102L1318.2 7.69302C1320.93 4.95935 1325.37 4.95935 1328.1 7.69303L1346.22 25.8102C1346.51 26.1031 1346.99 26.1031 1347.28 25.8102L1365.4 7.69303C1368.13 4.95936 1372.56 4.95936 1375.3 7.69303L1393.41 25.8102C1393.71 26.1031 1394.18 26.1031 1394.47 25.8102L1412.59 7.69303C1415.32 4.95935 1419.76 4.95935 1422.49 7.69302L1440.61 25.8102C1440.9 26.1031 1441.37 26.1031 1441.67 25.8102L1459.78 7.69304C1462.52 4.95936 1466.95 4.95936 1469.68 7.69302L1487.8 25.8102C1488.09 26.1031 1488.57 26.1031 1488.86 25.8102L1512.46 2.21295C1512.75 1.92005 1512.75 1.44518 1512.46 1.15229C1512.17 0.859394 1511.69 0.859394 1511.4 1.15229L1493.28 19.2695C1490.55 22.0032 1486.12 22.0032 1483.38 19.2695L1465.26 1.15229C1464.97 0.859427 1464.5 0.859394 1464.2 1.15229L1446.09 19.2695C1443.35 22.0032 1438.92 22.0032 1436.19 19.2695L1418.07 1.15229C1417.78 0.859404 1417.3 0.859404 1417.01 1.15229L1398.89 19.2695C1396.16 22.0032 1391.73 22.0032 1388.99 19.2695L1370.88 1.15229C1370.58 0.859404 1370.11 0.859404 1369.82 1.15229L1351.7 19.2695C1348.96 22.0032 1344.53 22.0032 1341.8 19.2695L1323.68 1.15229C1323.39 0.859404 1322.91 0.859404 1322.62 1.15229L1304.5 19.2695C1301.77 22.0032 1297.34 22.0032 1294.6 19.2695L1276.49 1.15229C1276.19 0.859394 1275.72 0.859427 1275.43 1.15229L1257.31 19.2695C1254.57 22.0032 1250.14 22.0032 1247.41 19.2695L1229.29 1.15229C1229 0.859394 1228.52 0.859427 1228.23 1.15229L1210.11 19.2695C1207.38 22.0032 1202.95 22.0032 1200.21 19.2695L1182.1 1.15229C1181.8 0.859394 1181.33 0.859427 1181.04 1.15229L1162.92 19.2695C1160.19 22.0032 1155.75 22.0032 1153.02 19.2695L1134.91 1.1604C1134.91 1.15768 1134.91 1.15498 1134.9 1.15229C1134.77 1.02415 1134.61 0.952068 1134.44 0.93605C1134.23 0.915456 1134.01 0.987535 1133.84 1.15229L1115.72 19.2695C1112.99 22.0032 1108.56 22.0032 1105.83 19.2695L1087.71 1.15229C1087.42 0.859427 1086.94 0.859394 1086.65 1.15229L1068.53 19.2695C1065.8 22.0032 1061.36 22.0032 1058.63 19.2695L1040.51 1.15229C1040.22 0.859427 1039.75 0.859394 1039.45 1.15229L1021.34 19.2695C1018.6 22.0032 1014.17 22.0032 1011.44 19.2695L993.319 1.15229C993.026 0.859394 992.551 0.859394 992.258 1.15229L974.141 19.2695C971.407 22.0032 966.975 22.0032 964.242 19.2695L946.124 1.15229C945.831 0.859394 945.356 0.859394 945.064 1.15229L926.946 19.2695C924.213 22.0032 919.781 22.0032 917.047 19.2695L898.93 1.15229C898.637 0.859399 898.162 0.859416 897.869 1.15229L879.752 19.2695C877.018 22.0032 872.586 22.0032 869.852 19.2695L851.735 1.15229C851.442 0.859399 850.967 0.859416 850.674 1.15229L832.557 19.2695C829.824 22.0032 825.391 22.0032 822.658 19.2695L804.54 1.15229C804.248 0.859394 803.773 0.859394 803.48 1.15229L785.363 19.2695C782.629 22.0032 778.197 22.0032 775.463 19.2695L757.346 1.15229C757.09 0.896006 756.694 0.863971 756.403 1.05618C756.361 1.08364 756.322 1.11568 756.285 1.15229L738.168 19.2695C735.434 22.0032 731.002 22.0032 728.268 19.2695L710.151 1.15229C709.858 0.859394 709.383 0.859394 709.091 1.15229L690.973 19.2695C688.24 22.0032 683.808 22.0032 681.074 19.2695L662.957 1.15229C662.664 0.859399 662.189 0.859416 661.896 1.15229L643.779 19.2695C641.045 22.0032 636.613 22.0032 633.879 19.2695L615.762 1.15229C615.469 0.859394 614.994 0.859427 614.701 1.15229L596.584 19.2695C593.851 22.0032 589.418 22.0032 586.685 19.2695L568.567 1.15229C568.275 0.859394 567.8 0.859394 567.507 1.15229L549.39 19.2695C546.656 22.0032 542.224 22.0032 539.49 19.2695L521.373 1.15229C521.08 0.859394 520.605 0.859394 520.312 1.15229L502.195 19.2695C499.461 22.0032 495.029 22.0032 492.296 19.2695L474.178 1.15229C473.885 0.859394 473.411 0.859394 473.118 1.15229L455 19.2695C452.267 22.0032 447.835 22.0032 445.101 19.2695L426.984 1.15229C426.691 0.859394 426.216 0.859394 425.923 1.15229L407.806 19.2695C405.072 22.0032 400.64 22.0032 397.906 19.2695L379.789 1.15229C379.666 1.02912 379.51 0.957743 379.35 0.938167C379.32 0.934467 379.289 0.932618 379.259 0.932618C379.067 0.932618 378.875 1.00584 378.728 1.15229L360.611 19.2695C357.877 22.0032 353.445 22.0032 350.712 19.2695L332.594 1.15229C332.302 0.859394 331.827 0.859394 331.534 1.15229L313.417 19.2695C310.683 22.0032 306.251 22.0032 303.517 19.2695L285.4 1.15229C285.107 0.859405 284.632 0.859396 284.339 1.15229L266.222 19.2695C263.488 22.0032 259.056 22.0032 256.322 19.2695L238.205 1.15229C237.912 0.859394 237.437 0.859394 237.145 1.15229L219.027 19.2695C216.294 22.0032 211.862 22.0032 209.128 19.2695L191.011 1.15229C190.718 0.859399 190.243 0.859395 189.95 1.15229L171.833 19.2695C169.099 22.0032 164.667 22.0032 161.933 19.2695L143.816 1.15229C143.523 0.859395 143.048 0.859399 142.755 1.15229L124.638 19.2695C121.905 22.0032 117.472 22.0032 114.739 19.2695L96.6215 1.15229C96.3286 0.859396 95.8537 0.859394 95.5608 1.15229L77.4436 19.2695C74.7099 22.0032 70.2778 22.0032 67.5441 19.2695L49.4269 1.15229Z\" fill=\"#515151\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-11iusxi\",\"data-framer-name\":\"Union\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:26,intrinsicWidth:1513,svg:'<svg width=\"1513\" height=\"26\" viewBox=\"0 0 1513 26\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path opacity=\"0.08\" d=\"M49.4269 0.249944C49.134 -0.0429492 48.6591 -0.0429481 48.3662 0.249944L30.249 18.3672C27.5153 21.1008 23.0832 21.1008 20.3495 18.3672L2.23223 0.249943C1.93934 -0.0429497 1.46447 -0.042949 1.17157 0.249945C0.878681 0.542838 0.878681 1.01771 1.17158 1.3106L24.7689 24.9079C25.0618 25.2008 25.5367 25.2008 25.8296 24.9079L43.9468 6.79068C46.6805 4.05701 51.1126 4.05701 53.8463 6.79068L71.9635 24.9079C72.2564 25.2008 72.7313 25.2008 73.0242 24.9079L91.1414 6.79068C93.8751 4.05701 98.3072 4.05701 101.041 6.79068L119.158 24.9079C119.451 25.2008 119.926 25.2008 120.219 24.9079L138.336 6.79068C141.07 4.05701 145.502 4.05701 148.235 6.79068L166.353 24.9079C166.646 25.2008 167.12 25.2008 167.413 24.9079L185.531 6.79068C188.264 4.05701 192.696 4.05701 195.43 6.79068L213.547 24.9079C213.84 25.2008 214.315 25.2008 214.608 24.9079L232.725 6.79069C235.459 4.05702 239.891 4.05702 242.625 6.79069L260.742 24.9079C261.035 25.2008 261.51 25.2008 261.803 24.9079L279.92 6.79067C282.653 4.057 287.086 4.057 289.819 6.79067L307.936 24.9079C308.229 25.2008 308.704 25.2008 308.997 24.9079L327.114 6.79068C329.848 4.05701 334.28 4.05702 337.014 6.79069L355.131 24.9079C355.424 25.2008 355.899 25.2008 356.192 24.9079L374.309 6.79066C377.043 4.05699 381.475 4.05699 384.208 6.79065L402.326 24.9079C402.619 25.2008 403.094 25.2008 403.386 24.9079L421.504 6.79068C424.237 4.05701 428.669 4.05701 431.403 6.79068L449.52 24.9079C449.813 25.2008 450.288 25.2008 450.581 24.9079L468.698 6.79068C471.432 4.05701 475.864 4.05701 478.598 6.79069L496.715 24.9079C497.008 25.2008 497.483 25.2008 497.776 24.9079L515.893 6.79068C518.626 4.05701 523.059 4.05701 525.792 6.79068L543.909 24.9079C544.202 25.2008 544.677 25.2008 544.97 24.9079L563.087 6.79068C565.821 4.05701 570.253 4.05701 572.987 6.79069L591.104 24.9079C591.397 25.2008 591.872 25.2008 592.165 24.9079L610.282 6.79068C613.016 4.05701 617.448 4.05702 620.182 6.79069L638.299 24.9079C638.592 25.2008 639.066 25.2008 639.359 24.9079L657.477 6.79066C660.21 4.057 664.642 4.057 667.376 6.79067L685.493 24.9079C685.786 25.2008 686.261 25.2008 686.554 24.9079L704.671 6.79067C707.405 4.05701 711.837 4.05702 714.571 6.79068L732.688 24.9079C732.981 25.2008 733.456 25.2008 733.749 24.9079L751.866 6.79068C754.599 4.05701 759.032 4.05701 761.765 6.79067L779.883 24.9079C780.175 25.2008 780.65 25.2008 780.943 24.9079L799.06 6.79068C801.794 4.05701 806.226 4.05701 808.96 6.79069L827.077 24.9079C827.37 25.2008 827.845 25.2008 828.138 24.9079L846.255 6.79067C848.989 4.05701 853.421 4.05701 856.155 6.79068L874.272 24.9079C874.565 25.2008 875.039 25.2008 875.332 24.9079L893.45 6.79067C896.183 4.057 900.615 4.05701 903.349 6.79068L921.466 24.9079C921.759 25.2008 922.234 25.2008 922.527 24.9079L940.644 6.79068C943.378 4.05701 947.81 4.05701 950.544 6.79068L968.661 24.9079C968.954 25.2008 969.429 25.2008 969.722 24.9079L987.839 6.79069C990.572 4.05702 995.005 4.05702 997.738 6.79069L1015.86 24.9079C1016.15 25.2008 1016.62 25.2008 1016.92 24.9079L1035.03 6.79067C1037.77 4.057 1042.2 4.057 1044.93 6.79067L1063.05 24.9079C1063.34 25.2008 1063.82 25.2008 1064.11 24.9079L1082.23 6.79067C1084.96 4.05701 1089.39 4.057 1092.13 6.79067L1110.24 24.9079C1110.54 25.2008 1111.01 25.2008 1111.31 24.9079L1129.42 6.79069C1132.16 4.05702 1136.59 4.05701 1139.32 6.79068L1157.44 24.9079C1157.73 25.2008 1158.21 25.2008 1158.5 24.9079L1176.62 6.79068C1179.35 4.05701 1183.78 4.05701 1186.52 6.79069L1204.63 24.9079C1204.93 25.2008 1205.4 25.2008 1205.69 24.9079L1223.81 6.79068C1226.55 4.05701 1230.98 4.05701 1233.71 6.79069L1251.83 24.9079C1252.12 25.2008 1252.6 25.2008 1252.89 24.9079L1271.01 6.79068C1273.74 4.05701 1278.17 4.05701 1280.91 6.79069L1299.02 24.9079C1299.32 25.2008 1299.79 25.2008 1300.08 24.9079L1318.2 6.79068C1320.93 4.05701 1325.37 4.05701 1328.1 6.79069L1346.22 24.9079C1346.51 25.2008 1346.99 25.2008 1347.28 24.9079L1365.4 6.79068C1368.13 4.05701 1372.56 4.05702 1375.3 6.79069L1393.41 24.9079C1393.71 25.2008 1394.18 25.2008 1394.47 24.9079L1412.59 6.79068C1415.32 4.05701 1419.76 4.057 1422.49 6.79067L1440.61 24.9079C1440.9 25.2008 1441.37 25.2008 1441.67 24.9079L1459.78 6.79069C1462.52 4.05702 1466.95 4.05701 1469.68 6.79068L1487.8 24.9079C1488.09 25.2008 1488.57 25.2008 1488.86 24.9079L1512.46 1.3106C1512.75 1.01771 1512.75 0.542837 1512.46 0.249944C1512.17 -0.0429493 1511.69 -0.0429493 1511.4 0.249944L1493.28 18.3672C1490.55 21.1008 1486.12 21.1008 1483.38 18.3672L1465.26 0.249944C1464.97 -0.0429163 1464.5 -0.04295 1464.2 0.249944L1446.09 18.3672C1443.35 21.1008 1438.92 21.1008 1436.19 18.3672L1418.07 0.249944C1417.78 -0.0429401 1417.3 -0.0429401 1417.01 0.249944L1398.89 18.3672C1396.16 21.1008 1391.73 21.1008 1388.99 18.3672L1370.88 0.249944C1370.58 -0.0429401 1370.11 -0.0429401 1369.82 0.249944L1351.7 18.3672C1348.96 21.1008 1344.53 21.1008 1341.8 18.3672L1323.68 0.249944C1323.39 -0.0429401 1322.91 -0.0429401 1322.62 0.249944L1304.5 18.3672C1301.77 21.1008 1297.34 21.1008 1294.6 18.3672L1276.49 0.249944C1276.19 -0.04295 1275.72 -0.0429163 1275.43 0.249944L1257.31 18.3672C1254.57 21.1008 1250.14 21.1008 1247.41 18.3672L1229.29 0.249944C1229 -0.04295 1228.52 -0.0429163 1228.23 0.249944L1210.11 18.3672C1207.38 21.1008 1202.95 21.1008 1200.21 18.3672L1182.1 0.249944C1181.8 -0.04295 1181.33 -0.0429163 1181.04 0.249944L1162.92 18.3672C1160.19 21.1008 1155.75 21.1009 1153.02 18.3672L1134.91 0.25806C1134.91 0.25534 1134.91 0.252634 1134.9 0.249944C1134.77 0.121803 1134.61 0.0497239 1134.44 0.0337063C1134.23 0.0131123 1134.01 0.0851915 1133.84 0.249944L1115.72 18.3672C1112.99 21.1008 1108.56 21.1008 1105.83 18.3672L1087.71 0.249944C1087.42 -0.0429163 1086.94 -0.04295 1086.65 0.249944L1068.53 18.3672C1065.8 21.1008 1061.36 21.1008 1058.63 18.3672L1040.51 0.249944C1040.22 -0.0429163 1039.75 -0.04295 1039.45 0.249944L1021.34 18.3672C1018.6 21.1008 1014.17 21.1008 1011.44 18.3672L993.319 0.249944C993.026 -0.0429501 992.551 -0.0429501 992.258 0.249944L974.141 18.3672C971.407 21.1008 966.975 21.1008 964.242 18.3672L946.124 0.249944C945.831 -0.0429501 945.356 -0.0429501 945.064 0.249944L926.946 18.3672C924.213 21.1008 919.781 21.1008 917.047 18.3672L898.93 0.249944C898.637 -0.0429451 898.162 -0.0429282 897.869 0.249944L879.752 18.3672C877.018 21.1008 872.586 21.1008 869.852 18.3672L851.735 0.249944C851.442 -0.0429451 850.967 -0.0429282 850.674 0.249944L832.557 18.3672C829.824 21.1008 825.391 21.1008 822.658 18.3672L804.54 0.249944C804.248 -0.0429501 803.773 -0.0429501 803.48 0.249944L785.363 18.3672C782.629 21.1008 778.197 21.1008 775.463 18.3672L757.346 0.249943C757.09 -0.00633809 756.694 -0.0383727 756.403 0.153839C756.361 0.181298 756.322 0.213333 756.285 0.249945L738.168 18.3672C735.434 21.1008 731.002 21.1008 728.268 18.3672L710.151 0.249944C709.858 -0.0429501 709.383 -0.0429501 709.091 0.249944L690.973 18.3672C688.24 21.1008 683.808 21.1008 681.074 18.3672L662.957 0.249944C662.664 -0.0429451 662.189 -0.0429282 661.896 0.249944L643.779 18.3672C641.045 21.1008 636.613 21.1008 633.879 18.3672L615.762 0.249944C615.469 -0.04295 614.994 -0.0429163 614.701 0.249944L596.584 18.3672C593.851 21.1008 589.418 21.1008 586.685 18.3672L568.567 0.249944C568.275 -0.0429501 567.8 -0.0429501 567.507 0.249944L549.39 18.3672C546.656 21.1008 542.224 21.1008 539.49 18.3672L521.373 0.249944C521.08 -0.0429501 520.605 -0.0429501 520.312 0.249944L502.195 18.3672C499.461 21.1008 495.029 21.1008 492.296 18.3672L474.178 0.249944C473.885 -0.0429501 473.411 -0.0429501 473.118 0.249944L455 18.3672C452.267 21.1008 447.835 21.1008 445.101 18.3672L426.984 0.249944C426.691 -0.0429501 426.216 -0.0429501 425.923 0.249944L407.806 18.3672C405.072 21.1008 400.64 21.1008 397.906 18.3672L379.789 0.249944C379.666 0.126773 379.51 0.0553992 379.35 0.035823C379.32 0.0321236 379.289 0.030274 379.259 0.030274C379.067 0.030274 378.875 0.103497 378.728 0.249944L360.611 18.3672C357.877 21.1008 353.445 21.1008 350.712 18.3672L332.594 0.249944C332.302 -0.0429501 331.827 -0.0429501 331.534 0.249944L313.417 18.3672C310.683 21.1008 306.251 21.1008 303.517 18.3672L285.4 0.249944C285.107 -0.0429391 284.632 -0.0429475 284.339 0.249944L266.222 18.3672C263.488 21.1008 259.056 21.1008 256.322 18.3672L238.205 0.249944C237.912 -0.0429501 237.437 -0.0429501 237.145 0.249944L219.027 18.3672C216.294 21.1008 211.862 21.1008 209.128 18.3672L191.011 0.249944C190.718 -0.0429446 190.243 -0.0429488 189.95 0.249944L171.833 18.3672C169.099 21.1008 164.667 21.1008 161.933 18.3672L143.816 0.249944C143.523 -0.0429488 143.048 -0.0429446 142.755 0.249944L124.638 18.3672C121.905 21.1008 117.472 21.1008 114.739 18.3672L96.6215 0.249944C96.3286 -0.0429474 95.8537 -0.0429495 95.5608 0.249944L77.4436 18.3672C74.7099 21.1008 70.2778 21.1008 67.5441 18.3672L49.4269 0.249944Z\" fill=\"#515151\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1bpycot\",\"data-framer-name\":\"Vector\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:96,intrinsicWidth:1513,svg:'<svg width=\"1513\" height=\"96\" viewBox=\"0 0 1513 96\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<g opacity=\"0.08\">\\n<path d=\"M49.4269 0.860295C49.134 0.567402 48.6591 0.567403 48.3662 0.860295L30.249 18.9775C27.5153 21.7112 23.0832 21.7112 20.3495 18.9775L2.23223 0.860295C1.93934 0.567402 1.46447 0.567403 1.17157 0.860296C0.878681 1.15319 0.878681 1.62806 1.17158 1.92096L24.7689 25.5183C25.0618 25.8111 25.5367 25.8111 25.8296 25.5183L43.9468 7.40103C46.6805 4.66736 51.1126 4.66736 53.8463 7.40103L71.9635 25.5183C72.2564 25.8111 72.7313 25.8111 73.0242 25.5183L91.1414 7.40103C93.8751 4.66736 98.3072 4.66736 101.041 7.40103L119.158 25.5183C119.451 25.8111 119.926 25.8111 120.219 25.5183L138.336 7.40103C141.07 4.66736 145.502 4.66736 148.235 7.40103L166.353 25.5183C166.646 25.8111 167.12 25.8111 167.413 25.5183L185.531 7.40103C188.264 4.66736 192.696 4.66736 195.43 7.40104L213.547 25.5183C213.84 25.8111 214.315 25.8111 214.608 25.5183L232.725 7.40104C235.459 4.66737 239.891 4.66737 242.625 7.40104L260.742 25.5183C261.035 25.8111 261.51 25.8111 261.803 25.5183L279.92 7.40103C282.653 4.66735 287.086 4.66735 289.819 7.40102L307.936 25.5183C308.229 25.8111 308.704 25.8111 308.997 25.5183L327.114 7.40103C329.848 4.66736 334.28 4.66737 337.014 7.40104L355.131 25.5183C355.424 25.8111 355.899 25.8111 356.192 25.5183L374.309 7.40101C377.043 4.66735 381.475 4.66734 384.208 7.401L402.326 25.5183C402.619 25.8111 403.094 25.8111 403.386 25.5183L421.504 7.40103C424.237 4.66736 428.669 4.66736 431.403 7.40103L449.52 25.5183C449.813 25.8111 450.288 25.8111 450.581 25.5183L468.698 7.40104C471.432 4.66736 475.864 4.66737 478.598 7.40104L496.715 25.5183C497.008 25.8111 497.483 25.8111 497.776 25.5183L515.893 7.40103C518.626 4.66736 523.059 4.66736 525.792 7.40104L543.909 25.5183C544.202 25.8111 544.677 25.8111 544.97 25.5183L563.087 7.40103C565.821 4.66736 570.253 4.66736 572.987 7.40104L591.104 25.5183C591.397 25.8111 591.872 25.8111 592.165 25.5183L610.282 7.40103C613.016 4.66737 617.448 4.66737 620.182 7.40104L638.299 25.5183C638.592 25.8111 639.066 25.8111 639.359 25.5183L657.477 7.40102C660.21 4.66735 664.642 4.66735 667.376 7.40102L685.493 25.5183C685.786 25.8111 686.261 25.8111 686.554 25.5183L704.671 7.40103C707.405 4.66736 711.837 4.66737 714.571 7.40103L732.688 25.5183C732.981 25.8111 733.456 25.8111 733.749 25.5183L751.866 7.40103C754.599 4.66736 759.032 4.66736 761.765 7.40103L779.883 25.5183C780.175 25.8111 780.65 25.8111 780.943 25.5183L799.06 7.40104C801.794 4.66736 806.226 4.66737 808.96 7.40104L827.077 25.5183C827.37 25.8111 827.845 25.8111 828.138 25.5183L846.255 7.40102C848.989 4.66736 853.421 4.66736 856.155 7.40103L874.272 25.5183C874.565 25.8111 875.039 25.8111 875.332 25.5183L893.45 7.40102C896.183 4.66736 900.615 4.66736 903.349 7.40103L921.466 25.5183C921.759 25.8111 922.234 25.8111 922.527 25.5183L940.644 7.40103C943.378 4.66736 947.81 4.66736 950.544 7.40104L968.661 25.5183C968.954 25.8111 969.429 25.8111 969.722 25.5183L987.839 7.40104C990.572 4.66737 995.005 4.66737 997.738 7.40104L1015.86 25.5183C1016.15 25.8111 1016.62 25.8111 1016.92 25.5183L1035.03 7.40102C1037.77 4.66735 1042.2 4.66735 1044.93 7.40102L1063.05 25.5183C1063.34 25.8111 1063.82 25.8111 1064.11 25.5183L1082.23 7.40102C1084.96 4.66736 1089.39 4.66736 1092.13 7.40102L1110.24 25.5183C1110.54 25.8111 1111.01 25.8111 1111.31 25.5183L1129.42 7.40105C1132.16 4.66737 1136.59 4.66737 1139.32 7.40103L1157.44 25.5183C1157.73 25.8111 1158.21 25.8111 1158.5 25.5183L1176.62 7.40103C1179.35 4.66736 1183.78 4.66736 1186.52 7.40104L1204.63 25.5183C1204.93 25.8111 1205.4 25.8111 1205.69 25.5183L1223.81 7.40103C1226.55 4.66736 1230.98 4.66736 1233.71 7.40104L1251.83 25.5183C1252.12 25.8111 1252.6 25.8111 1252.89 25.5183L1271.01 7.40103C1273.74 4.66736 1278.17 4.66736 1280.91 7.40104L1299.02 25.5183C1299.32 25.8111 1299.79 25.8111 1300.08 25.5183L1318.2 7.40103C1320.93 4.66736 1325.37 4.66736 1328.1 7.40104L1346.22 25.5183C1346.51 25.8111 1346.99 25.8111 1347.28 25.5183L1365.4 7.40103C1368.13 4.66737 1372.56 4.66737 1375.3 7.40104L1393.41 25.5183C1393.71 25.8112 1394.18 25.8112 1394.47 25.5183L1412.59 7.40104C1415.32 4.66736 1419.76 4.66736 1422.49 7.40103L1440.61 25.5183C1440.9 25.8111 1441.37 25.8111 1441.67 25.5183L1459.78 7.40105C1462.52 4.66737 1466.95 4.66737 1469.68 7.40103L1487.8 25.5183C1488.09 25.8111 1488.57 25.8111 1488.86 25.5183L1512.46 1.92096C1512.75 1.62806 1512.75 1.15319 1512.46 0.860295C1512.17 0.567402 1511.69 0.567402 1511.4 0.860295L1493.28 18.9775C1490.55 21.7112 1486.12 21.7112 1483.38 18.9775L1465.26 0.860295C1464.97 0.567435 1464.5 0.567402 1464.2 0.860295L1446.09 18.9775C1443.35 21.7112 1438.92 21.7112 1436.19 18.9775L1418.07 0.860295C1417.78 0.567411 1417.3 0.567411 1417.01 0.860295L1398.89 18.9775C1396.16 21.7112 1391.73 21.7112 1388.99 18.9775L1370.88 0.860295C1370.58 0.567411 1370.11 0.567411 1369.82 0.860295L1351.7 18.9775C1348.96 21.7112 1344.53 21.7112 1341.8 18.9775L1323.68 0.860295C1323.39 0.567411 1322.91 0.567411 1322.62 0.860295L1304.5 18.9775C1301.77 21.7112 1297.34 21.7112 1294.6 18.9775L1276.49 0.860295C1276.19 0.567402 1275.72 0.567435 1275.43 0.860295L1257.31 18.9775C1254.57 21.7112 1250.14 21.7112 1247.41 18.9775L1229.29 0.860295C1229 0.567402 1228.52 0.567435 1228.23 0.860295L1210.11 18.9775C1207.38 21.7112 1202.95 21.7112 1200.21 18.9775L1182.1 0.860295C1181.8 0.567402 1181.33 0.567435 1181.04 0.860295L1162.92 18.9775C1160.19 21.7112 1155.75 21.7112 1153.02 18.9776L1134.91 0.868412C1134.91 0.865691 1134.91 0.862986 1134.9 0.860295C1134.77 0.732155 1134.61 0.660076 1134.44 0.644058C1134.23 0.623464 1134.01 0.695543 1133.84 0.860295L1115.72 18.9775C1112.99 21.7112 1108.56 21.7112 1105.83 18.9775L1087.71 0.860295C1087.42 0.567435 1086.94 0.567402 1086.65 0.860295L1068.53 18.9775C1065.8 21.7112 1061.36 21.7112 1058.63 18.9775L1040.51 0.860295C1040.22 0.567435 1039.75 0.567402 1039.45 0.860295L1021.34 18.9775C1018.6 21.7112 1014.17 21.7112 1011.44 18.9775L993.319 0.860295C993.026 0.567401 992.551 0.567401 992.258 0.860295L974.141 18.9775C971.407 21.7112 966.975 21.7112 964.242 18.9775L946.124 0.860295C945.831 0.567401 945.356 0.567401 945.064 0.860295L926.946 18.9775C924.213 21.7112 919.781 21.7112 917.047 18.9775L898.93 0.860295C898.637 0.567406 898.162 0.567423 897.869 0.860295L879.752 18.9775C877.018 21.7112 872.586 21.7112 869.852 18.9775L851.735 0.860295C851.442 0.567406 850.967 0.567423 850.674 0.860295L832.557 18.9775C829.824 21.7112 825.391 21.7112 822.658 18.9775L804.54 0.860295C804.248 0.567401 803.773 0.567401 803.48 0.860295L785.363 18.9775C782.629 21.7112 778.197 21.7112 775.463 18.9775L757.346 0.860295C757.09 0.604013 756.694 0.571979 756.403 0.76419C756.361 0.791649 756.322 0.823685 756.285 0.860296L738.168 18.9775C735.434 21.7112 731.002 21.7112 728.268 18.9775L710.151 0.860295C709.858 0.567401 709.383 0.567401 709.091 0.860295L690.973 18.9775C688.24 21.7112 683.808 21.7112 681.074 18.9775L662.957 0.860295C662.664 0.567406 662.189 0.567423 661.896 0.860295L643.779 18.9775C641.045 21.7112 636.613 21.7112 633.879 18.9775L615.762 0.860295C615.469 0.567402 614.994 0.567435 614.701 0.860295L596.584 18.9775C593.851 21.7112 589.418 21.7112 586.685 18.9775L568.567 0.860295C568.275 0.567401 567.8 0.567401 567.507 0.860295L549.39 18.9775C546.656 21.7112 542.224 21.7112 539.49 18.9775L521.373 0.860295C521.08 0.567401 520.605 0.567401 520.312 0.860295L502.195 18.9775C499.461 21.7112 495.029 21.7112 492.296 18.9775L474.178 0.860295C473.885 0.567401 473.411 0.567401 473.118 0.860295L455 18.9775C452.267 21.7112 447.835 21.7112 445.101 18.9775L426.984 0.860295C426.691 0.567401 426.216 0.567401 425.923 0.860295L407.806 18.9775C405.072 21.7112 400.64 21.7112 397.906 18.9775L379.789 0.860295C379.666 0.737124 379.51 0.665751 379.35 0.646175C379.32 0.642475 379.289 0.640626 379.259 0.640626C379.067 0.640626 378.875 0.713849 378.728 0.860295L360.611 18.9775C357.877 21.7112 353.445 21.7112 350.712 18.9775L332.594 0.860295C332.302 0.567401 331.827 0.567401 331.534 0.860295L313.417 18.9775C310.683 21.7112 306.251 21.7112 303.517 18.9775L285.4 0.860295C285.107 0.567412 284.632 0.567404 284.339 0.860295L266.222 18.9775C263.488 21.7112 259.056 21.7112 256.322 18.9775L238.205 0.860295C237.912 0.567401 237.437 0.567401 237.145 0.860295L219.027 18.9775C216.294 21.7112 211.862 21.7112 209.128 18.9775L191.011 0.860295C190.718 0.567407 190.243 0.567403 189.95 0.860295L171.833 18.9775C169.099 21.7112 164.667 21.7112 161.933 18.9775L143.816 0.860295C143.523 0.567403 143.048 0.567407 142.755 0.860295L124.638 18.9775C121.905 21.7112 117.472 21.7112 114.739 18.9775L96.6215 0.860295C96.3286 0.567404 95.8537 0.567402 95.5608 0.860295L77.4436 18.9775C74.7099 21.7112 70.2778 21.7112 67.5441 18.9775L49.4269 0.860295Z\" fill=\"#515151\"/>\\n<path d=\"M49.4269 35.9576C49.134 35.6647 48.6591 35.6647 48.3662 35.9576L30.249 54.0748C27.5153 56.8085 23.0832 56.8085 20.3495 54.0748L2.23223 35.9576C1.93934 35.6647 1.46447 35.6647 1.17157 35.9576C0.878681 36.2505 0.878681 36.7254 1.17158 37.0182L24.7689 60.6155C25.0618 60.9084 25.5367 60.9084 25.8296 60.6155L43.9468 42.4983C46.6805 39.7647 51.1126 39.7646 53.8463 42.4983L71.9635 60.6155C72.2564 60.9084 72.7313 60.9084 73.0242 60.6155L91.1414 42.4983C93.8751 39.7647 98.3072 39.7647 101.041 42.4983L119.158 60.6155C119.451 60.9084 119.926 60.9084 120.219 60.6155L138.336 42.4983C141.07 39.7647 145.502 39.7646 148.235 42.4983L166.353 60.6155C166.646 60.9084 167.12 60.9084 167.413 60.6155L185.531 42.4983C188.264 39.7647 192.696 39.7647 195.43 42.4983L213.547 60.6155C213.84 60.9084 214.315 60.9084 214.608 60.6155L232.725 42.4983C235.459 39.7647 239.891 39.7647 242.625 42.4983L260.742 60.6155C261.035 60.9084 261.51 60.9084 261.803 60.6155L279.92 42.4983C282.653 39.7646 287.086 39.7646 289.819 42.4983L307.936 60.6155C308.229 60.9084 308.704 60.9084 308.997 60.6155L327.114 42.4983C329.848 39.7647 334.28 39.7647 337.014 42.4983L355.131 60.6155C355.424 60.9084 355.899 60.9084 356.192 60.6155L374.309 42.4983C377.043 39.7646 381.475 39.7646 384.208 42.4983L402.326 60.6155C402.619 60.9084 403.094 60.9084 403.386 60.6155L421.504 42.4983C424.237 39.7646 428.669 39.7647 431.403 42.4983L449.52 60.6155C449.813 60.9084 450.288 60.9084 450.581 60.6155L468.698 42.4983C471.432 39.7647 475.864 39.7647 478.598 42.4983L496.715 60.6155C497.008 60.9084 497.483 60.9084 497.776 60.6155L515.893 42.4983C518.626 39.7647 523.059 39.7647 525.792 42.4983L543.909 60.6155C544.202 60.9084 544.677 60.9084 544.97 60.6155L563.087 42.4983C565.821 39.7646 570.253 39.7647 572.987 42.4983L591.104 60.6155C591.397 60.9084 591.872 60.9084 592.165 60.6155L610.282 42.4983C613.016 39.7647 617.448 39.7647 620.182 42.4983L638.299 60.6155C638.592 60.9084 639.066 60.9084 639.359 60.6155L657.477 42.4983C660.21 39.7646 664.642 39.7646 667.376 42.4983L685.493 60.6155C685.786 60.9084 686.261 60.9084 686.554 60.6155L704.671 42.4983C707.405 39.7647 711.837 39.7647 714.571 42.4983L732.688 60.6155C732.981 60.9084 733.456 60.9084 733.749 60.6155L751.866 42.4983C754.599 39.7647 759.032 39.7647 761.765 42.4983L779.883 60.6155C780.175 60.9084 780.65 60.9084 780.943 60.6155L799.06 42.4983C801.794 39.7647 806.226 39.7647 808.96 42.4983L827.077 60.6155C827.37 60.9084 827.845 60.9084 828.138 60.6155L846.255 42.4983C848.989 39.7646 853.421 39.7647 856.155 42.4983L874.272 60.6155C874.565 60.9084 875.039 60.9084 875.332 60.6155L893.45 42.4983C896.183 39.7646 900.615 39.7646 903.349 42.4983L921.466 60.6155C921.759 60.9084 922.234 60.9084 922.527 60.6155L940.644 42.4983C943.378 39.7647 947.81 39.7647 950.544 42.4983L968.661 60.6155C968.954 60.9084 969.429 60.9084 969.722 60.6155L987.839 42.4983C990.572 39.7647 995.005 39.7647 997.738 42.4983L1015.86 60.6155C1016.15 60.9084 1016.62 60.9084 1016.92 60.6155L1035.03 42.4983C1037.77 39.7646 1042.2 39.7646 1044.93 42.4983L1063.05 60.6155C1063.34 60.9084 1063.82 60.9084 1064.11 60.6155L1082.23 42.4983C1084.96 39.7646 1089.39 39.7646 1092.13 42.4983L1110.24 60.6155C1110.54 60.9084 1111.01 60.9084 1111.31 60.6155L1129.42 42.4983C1132.16 39.7647 1136.59 39.7647 1139.32 42.4983L1157.44 60.6155C1157.73 60.9084 1158.21 60.9084 1158.5 60.6155L1176.62 42.4983C1179.35 39.7646 1183.78 39.7647 1186.52 42.4983L1204.63 60.6155C1204.93 60.9084 1205.4 60.9084 1205.69 60.6155L1223.81 42.4983C1226.55 39.7647 1230.98 39.7647 1233.71 42.4983L1251.83 60.6155C1252.12 60.9084 1252.6 60.9084 1252.89 60.6155L1271.01 42.4983C1273.74 39.7646 1278.17 39.7647 1280.91 42.4983L1299.02 60.6155C1299.32 60.9084 1299.79 60.9084 1300.08 60.6155L1318.2 42.4983C1320.93 39.7646 1325.37 39.7647 1328.1 42.4983L1346.22 60.6155C1346.51 60.9084 1346.99 60.9084 1347.28 60.6155L1365.4 42.4983C1368.13 39.7647 1372.56 39.7647 1375.3 42.4983L1393.41 60.6155C1393.71 60.9084 1394.18 60.9084 1394.47 60.6155L1412.59 42.4983C1415.32 39.7646 1419.76 39.7646 1422.49 42.4983L1440.61 60.6155C1440.9 60.9084 1441.37 60.9084 1441.67 60.6155L1459.78 42.4983C1462.52 39.7647 1466.95 39.7647 1469.68 42.4983L1487.8 60.6155C1488.09 60.9084 1488.57 60.9084 1488.86 60.6155L1512.46 37.0182C1512.75 36.7254 1512.75 36.2505 1512.46 35.9576C1512.17 35.6647 1511.69 35.6647 1511.4 35.9576L1493.28 54.0748C1490.55 56.8085 1486.12 56.8085 1483.38 54.0748L1465.26 35.9576C1464.97 35.6647 1464.5 35.6647 1464.2 35.9576L1446.09 54.0748C1443.35 56.8085 1438.92 56.8085 1436.19 54.0748L1418.07 35.9576C1417.78 35.6647 1417.3 35.6647 1417.01 35.9576L1398.89 54.0748C1396.16 56.8085 1391.73 56.8085 1388.99 54.0748L1370.88 35.9576C1370.58 35.6647 1370.11 35.6647 1369.82 35.9576L1351.7 54.0748C1348.96 56.8085 1344.53 56.8085 1341.8 54.0748L1323.68 35.9576C1323.39 35.6647 1322.91 35.6647 1322.62 35.9576L1304.5 54.0748C1301.77 56.8085 1297.34 56.8085 1294.6 54.0748L1276.49 35.9576C1276.19 35.6647 1275.72 35.6647 1275.43 35.9576L1257.31 54.0748C1254.57 56.8085 1250.14 56.8085 1247.41 54.0748L1229.29 35.9576C1229 35.6647 1228.52 35.6647 1228.23 35.9576L1210.11 54.0748C1207.38 56.8085 1202.95 56.8085 1200.21 54.0748L1182.1 35.9576C1181.8 35.6647 1181.33 35.6647 1181.04 35.9576L1162.92 54.0748C1160.19 56.8085 1155.75 56.8085 1153.02 54.0748L1134.91 35.9657C1134.91 35.963 1134.91 35.9603 1134.9 35.9576C1134.77 35.8294 1134.61 35.7574 1134.44 35.7413C1134.23 35.7208 1134.01 35.7928 1133.84 35.9576L1115.72 54.0748C1112.99 56.8085 1108.56 56.8085 1105.83 54.0748L1087.71 35.9576C1087.42 35.6647 1086.94 35.6647 1086.65 35.9576L1068.53 54.0748C1065.8 56.8085 1061.36 56.8085 1058.63 54.0748L1040.51 35.9576C1040.22 35.6647 1039.75 35.6647 1039.45 35.9576L1021.34 54.0748C1018.6 56.8085 1014.17 56.8085 1011.44 54.0748L993.319 35.9576C993.026 35.6647 992.551 35.6647 992.258 35.9576L974.141 54.0748C971.407 56.8085 966.975 56.8085 964.242 54.0748L946.124 35.9576C945.831 35.6647 945.356 35.6647 945.064 35.9576L926.946 54.0748C924.213 56.8085 919.781 56.8085 917.047 54.0748L898.93 35.9576C898.637 35.6647 898.162 35.6647 897.869 35.9576L879.752 54.0748C877.018 56.8085 872.586 56.8085 869.852 54.0748L851.735 35.9576C851.442 35.6647 850.967 35.6647 850.674 35.9576L832.557 54.0748C829.824 56.8085 825.391 56.8085 822.658 54.0748L804.54 35.9576C804.248 35.6647 803.773 35.6647 803.48 35.9576L785.363 54.0748C782.629 56.8085 778.197 56.8085 775.463 54.0748L757.346 35.9576C757.09 35.7013 756.694 35.6693 756.403 35.8615C756.361 35.8889 756.322 35.921 756.285 35.9576L738.168 54.0748C735.434 56.8085 731.002 56.8085 728.268 54.0748L710.151 35.9576C709.858 35.6647 709.383 35.6647 709.091 35.9576L690.973 54.0748C688.24 56.8085 683.808 56.8085 681.074 54.0748L662.957 35.9576C662.664 35.6647 662.189 35.6647 661.896 35.9576L643.779 54.0748C641.045 56.8085 636.613 56.8085 633.879 54.0748L615.762 35.9576C615.469 35.6647 614.994 35.6647 614.701 35.9576L596.584 54.0748C593.851 56.8085 589.418 56.8085 586.685 54.0748L568.567 35.9576C568.275 35.6647 567.8 35.6647 567.507 35.9576L549.39 54.0748C546.656 56.8085 542.224 56.8085 539.49 54.0748L521.373 35.9576C521.08 35.6647 520.605 35.6647 520.312 35.9576L502.195 54.0748C499.461 56.8085 495.029 56.8085 492.296 54.0748L474.178 35.9576C473.885 35.6647 473.411 35.6647 473.118 35.9576L455 54.0748C452.267 56.8085 447.835 56.8085 445.101 54.0748L426.984 35.9576C426.691 35.6647 426.216 35.6647 425.923 35.9576L407.806 54.0748C405.072 56.8085 400.64 56.8085 397.906 54.0748L379.789 35.9576C379.666 35.8344 379.51 35.763 379.35 35.7435C379.32 35.7398 379.289 35.7379 379.259 35.7379C379.067 35.7379 378.875 35.8111 378.728 35.9576L360.611 54.0748C357.877 56.8085 353.445 56.8085 350.712 54.0748L332.594 35.9576C332.302 35.6647 331.827 35.6647 331.534 35.9576L313.417 54.0748C310.683 56.8085 306.251 56.8085 303.517 54.0748L285.4 35.9576C285.107 35.6647 284.632 35.6647 284.339 35.9576L266.222 54.0748C263.488 56.8085 259.056 56.8085 256.322 54.0748L238.205 35.9576C237.912 35.6647 237.437 35.6647 237.145 35.9576L219.027 54.0748C216.294 56.8085 211.862 56.8085 209.128 54.0748L191.011 35.9576C190.718 35.6647 190.243 35.6647 189.95 35.9576L171.833 54.0748C169.099 56.8085 164.667 56.8085 161.933 54.0748L143.816 35.9576C143.523 35.6647 143.048 35.6647 142.755 35.9576L124.638 54.0748C121.905 56.8085 117.472 56.8085 114.739 54.0748L96.6215 35.9576C96.3286 35.6647 95.8537 35.6647 95.5608 35.9576L77.4436 54.0748C74.7099 56.8085 70.2778 56.8085 67.5441 54.0748L49.4269 35.9576Z\" fill=\"#515151\"/>\\n<path d=\"M49.4269 71.0549C49.134 70.762 48.6591 70.762 48.3662 71.0549L30.249 89.1721C27.5153 91.9058 23.0832 91.9058 20.3495 89.1721L2.23223 71.0549C1.93934 70.762 1.46447 70.762 1.17157 71.0549C0.878681 71.3478 0.878681 71.8226 1.17158 72.1155L24.7689 95.7128C25.0618 96.0057 25.5367 96.0057 25.8296 95.7128L43.9468 77.5956C46.6805 74.8619 51.1126 74.8619 53.8463 77.5956L71.9635 95.7128C72.2564 96.0057 72.7313 96.0057 73.0242 95.7128L91.1414 77.5956C93.8751 74.8619 98.3072 74.8619 101.041 77.5956L119.158 95.7128C119.451 96.0057 119.926 96.0057 120.219 95.7128L138.336 77.5956C141.07 74.8619 145.502 74.8619 148.235 77.5956L166.353 95.7128C166.646 96.0057 167.12 96.0057 167.413 95.7128L185.531 77.5956C188.264 74.8619 192.696 74.8619 195.43 77.5956L213.547 95.7128C213.84 96.0057 214.315 96.0057 214.608 95.7128L232.725 77.5956C235.459 74.8619 239.891 74.8619 242.625 77.5956L260.742 95.7128C261.035 96.0057 261.51 96.0057 261.803 95.7128L279.92 77.5956C282.653 74.8619 287.086 74.8619 289.819 77.5956L307.936 95.7128C308.229 96.0057 308.704 96.0057 308.997 95.7128L327.114 77.5956C329.848 74.8619 334.28 74.8619 337.014 77.5956L355.131 95.7128C355.424 96.0057 355.899 96.0057 356.192 95.7128L374.309 77.5956C377.043 74.8619 381.475 74.8619 384.208 77.5956L402.326 95.7128C402.619 96.0057 403.094 96.0057 403.386 95.7128L421.504 77.5956C424.237 74.8619 428.669 74.8619 431.403 77.5956L449.52 95.7128C449.813 96.0057 450.288 96.0057 450.581 95.7128L468.698 77.5956C471.432 74.8619 475.864 74.8619 478.598 77.5956L496.715 95.7128C497.008 96.0057 497.483 96.0057 497.776 95.7128L515.893 77.5956C518.626 74.8619 523.059 74.8619 525.792 77.5956L543.909 95.7128C544.202 96.0057 544.677 96.0057 544.97 95.7128L563.087 77.5956C565.821 74.8619 570.253 74.8619 572.987 77.5956L591.104 95.7128C591.397 96.0057 591.872 96.0057 592.165 95.7128L610.282 77.5956C613.016 74.8619 617.448 74.8619 620.182 77.5956L638.299 95.7128C638.592 96.0057 639.066 96.0057 639.359 95.7128L657.477 77.5956C660.21 74.8619 664.642 74.8619 667.376 77.5956L685.493 95.7128C685.786 96.0057 686.261 96.0057 686.554 95.7128L704.671 77.5956C707.405 74.8619 711.837 74.8619 714.571 77.5956L732.688 95.7128C732.981 96.0057 733.456 96.0057 733.749 95.7128L751.866 77.5956C754.599 74.8619 759.032 74.8619 761.765 77.5956L779.883 95.7128C780.175 96.0057 780.65 96.0057 780.943 95.7128L799.06 77.5956C801.794 74.8619 806.226 74.8619 808.96 77.5956L827.077 95.7128C827.37 96.0057 827.845 96.0057 828.138 95.7128L846.255 77.5956C848.989 74.8619 853.421 74.8619 856.155 77.5956L874.272 95.7128C874.565 96.0057 875.039 96.0057 875.332 95.7128L893.45 77.5956C896.183 74.8619 900.615 74.8619 903.349 77.5956L921.466 95.7128C921.759 96.0057 922.234 96.0057 922.527 95.7128L940.644 77.5956C943.378 74.8619 947.81 74.8619 950.544 77.5956L968.661 95.7128C968.954 96.0057 969.429 96.0057 969.722 95.7128L987.839 77.5956C990.572 74.8619 995.005 74.8619 997.738 77.5956L1015.86 95.7128C1016.15 96.0057 1016.62 96.0057 1016.92 95.7128L1035.03 77.5956C1037.77 74.8619 1042.2 74.8619 1044.93 77.5956L1063.05 95.7128C1063.34 96.0057 1063.82 96.0057 1064.11 95.7128L1082.23 77.5956C1084.96 74.8619 1089.39 74.8619 1092.13 77.5956L1110.24 95.7128C1110.54 96.0057 1111.01 96.0057 1111.31 95.7128L1129.42 77.5956C1132.16 74.862 1136.59 74.8619 1139.32 77.5956L1157.44 95.7128C1157.73 96.0057 1158.21 96.0057 1158.5 95.7128L1176.62 77.5956C1179.35 74.8619 1183.78 74.8619 1186.52 77.5956L1204.63 95.7128C1204.93 96.0057 1205.4 96.0057 1205.69 95.7128L1223.81 77.5956C1226.55 74.8619 1230.98 74.8619 1233.71 77.5956L1251.83 95.7128C1252.12 96.0057 1252.6 96.0057 1252.89 95.7128L1271.01 77.5956C1273.74 74.8619 1278.17 74.8619 1280.91 77.5956L1299.02 95.7128C1299.32 96.0057 1299.79 96.0057 1300.08 95.7128L1318.2 77.5956C1320.93 74.8619 1325.37 74.8619 1328.1 77.5956L1346.22 95.7128C1346.51 96.0057 1346.99 96.0057 1347.28 95.7128L1365.4 77.5956C1368.13 74.8619 1372.56 74.8619 1375.3 77.5956L1393.41 95.7128C1393.71 96.0057 1394.18 96.0057 1394.47 95.7128L1412.59 77.5956C1415.32 74.8619 1419.76 74.8619 1422.49 77.5956L1440.61 95.7128C1440.9 96.0057 1441.37 96.0057 1441.67 95.7128L1459.78 77.5956C1462.52 74.862 1466.95 74.8619 1469.68 77.5956L1487.8 95.7128C1488.09 96.0057 1488.57 96.0057 1488.86 95.7128L1512.46 72.1155C1512.75 71.8226 1512.75 71.3478 1512.46 71.0549C1512.17 70.762 1511.69 70.762 1511.4 71.0549L1493.28 89.1721C1490.55 91.9058 1486.12 91.9058 1483.38 89.1721L1465.26 71.0549C1464.97 70.762 1464.5 70.762 1464.2 71.0549L1446.09 89.1721C1443.35 91.9058 1438.92 91.9058 1436.19 89.1721L1418.07 71.0549C1417.78 70.762 1417.3 70.762 1417.01 71.0549L1398.89 89.1721C1396.16 91.9058 1391.73 91.9058 1388.99 89.1721L1370.88 71.0549C1370.58 70.762 1370.11 70.762 1369.82 71.0549L1351.7 89.1721C1348.96 91.9058 1344.53 91.9058 1341.8 89.1721L1323.68 71.0549C1323.39 70.762 1322.91 70.762 1322.62 71.0549L1304.5 89.1721C1301.77 91.9058 1297.34 91.9058 1294.6 89.1721L1276.49 71.0549C1276.19 70.762 1275.72 70.762 1275.43 71.0549L1257.31 89.1721C1254.57 91.9058 1250.14 91.9058 1247.41 89.1721L1229.29 71.0549C1229 70.762 1228.52 70.762 1228.23 71.0549L1210.11 89.1721C1207.38 91.9058 1202.95 91.9058 1200.21 89.1721L1182.1 71.0549C1181.8 70.762 1181.33 70.762 1181.04 71.0549L1162.92 89.1721C1160.19 91.9058 1155.75 91.9058 1153.02 89.1721L1134.91 71.063C1134.91 71.0603 1134.91 71.0576 1134.9 71.0549C1134.77 70.9267 1134.61 70.8547 1134.44 70.8386C1134.23 70.818 1134.01 70.8901 1133.84 71.0549L1115.72 89.1721C1112.99 91.9058 1108.56 91.9058 1105.83 89.1721L1087.71 71.0549C1087.42 70.762 1086.94 70.762 1086.65 71.0549L1068.53 89.1721C1065.8 91.9058 1061.36 91.9058 1058.63 89.1721L1040.51 71.0549C1040.22 70.762 1039.75 70.762 1039.45 71.0549L1021.34 89.1721C1018.6 91.9058 1014.17 91.9058 1011.44 89.1721L993.319 71.0549C993.026 70.762 992.551 70.762 992.258 71.0549L974.141 89.1721C971.407 91.9058 966.975 91.9058 964.242 89.1721L946.124 71.0549C945.831 70.762 945.356 70.762 945.064 71.0549L926.946 89.1721C924.213 91.9058 919.781 91.9058 917.047 89.1721L898.93 71.0549C898.637 70.762 898.162 70.762 897.869 71.0549L879.752 89.1721C877.018 91.9058 872.586 91.9058 869.852 89.1721L851.735 71.0549C851.442 70.762 850.967 70.762 850.674 71.0549L832.557 89.1721C829.824 91.9058 825.391 91.9058 822.658 89.1721L804.54 71.0549C804.248 70.762 803.773 70.762 803.48 71.0549L785.363 89.1721C782.629 91.9058 778.197 91.9058 775.463 89.1721L757.346 71.0549C757.09 70.7986 756.694 70.7666 756.403 70.9588C756.361 70.9862 756.322 71.0183 756.285 71.0549L738.168 89.1721C735.434 91.9058 731.002 91.9058 728.268 89.1721L710.151 71.0549C709.858 70.762 709.383 70.762 709.091 71.0549L690.973 89.1721C688.24 91.9058 683.808 91.9058 681.074 89.1721L662.957 71.0549C662.664 70.762 662.189 70.762 661.896 71.0549L643.779 89.1721C641.045 91.9058 636.613 91.9058 633.879 89.1721L615.762 71.0549C615.469 70.762 614.994 70.762 614.701 71.0549L596.584 89.1721C593.851 91.9058 589.418 91.9058 586.685 89.1721L568.567 71.0549C568.275 70.762 567.8 70.762 567.507 71.0549L549.39 89.1721C546.656 91.9058 542.224 91.9058 539.49 89.1721L521.373 71.0549C521.08 70.762 520.605 70.762 520.312 71.0549L502.195 89.1721C499.461 91.9058 495.029 91.9058 492.296 89.1721L474.178 71.0549C473.885 70.762 473.411 70.762 473.118 71.0549L455 89.1721C452.267 91.9058 447.835 91.9058 445.101 89.1721L426.984 71.0549C426.691 70.762 426.216 70.762 425.923 71.0549L407.806 89.1721C405.072 91.9058 400.64 91.9058 397.906 89.1721L379.789 71.0549C379.666 70.9317 379.51 70.8603 379.35 70.8408C379.32 70.8371 379.289 70.8352 379.259 70.8352C379.067 70.8352 378.875 70.9084 378.728 71.0549L360.611 89.1721C357.877 91.9058 353.445 91.9058 350.712 89.1721L332.594 71.0549C332.302 70.762 331.827 70.762 331.534 71.0549L313.417 89.1721C310.683 91.9058 306.251 91.9058 303.517 89.1721L285.4 71.0549C285.107 70.762 284.632 70.762 284.339 71.0549L266.222 89.1721C263.488 91.9058 259.056 91.9058 256.322 89.1721L238.205 71.0549C237.912 70.762 237.437 70.762 237.145 71.0549L219.027 89.1721C216.294 91.9058 211.862 91.9058 209.128 89.1721L191.011 71.0549C190.718 70.762 190.243 70.762 189.95 71.0549L171.833 89.1721C169.099 91.9058 164.667 91.9058 161.933 89.1721L143.816 71.0549C143.523 70.762 143.048 70.762 142.755 71.0549L124.638 89.1721C121.905 91.9058 117.472 91.9058 114.739 89.1721L96.6215 71.0549C96.3286 70.762 95.8537 70.762 95.5608 71.0549L77.4436 89.1721C74.7099 91.9058 70.2778 91.9058 67.5441 89.1721L49.4269 71.0549Z\" fill=\"#515151\"/>\\n</g>\\n</svg>\\n',withExternalLayout:true})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1p4lx4a\",\"data-framer-name\":\"Gradient\"})]})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-u1ixp2\",\"data-framer-name\":\"Advantages\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1t73t04\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-aracps\",\"data-framer-name\":\"Advantages Title\",children:/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition10},__framer__animateOnce:true,__framer__enter:animation14,__framer__exit:animation15,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-58a1cu\",\"data-framer-name\":\"Header Content\",style:{transformPerspective:1200},children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-r5x8l2\",\"data-framer-name\":\"Header\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{WPoaGmYBq:{animate:animation28,initial:animation29,optimized:true,style:{transformPerspective:1200}}},children:/*#__PURE__*/_jsx(RichTextWithOptimizedAppearEffect,{__fromCanvasComponent:true,children:getLocalizedValue(\"v39\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{className:\"framer-styles-preset-1lzcxam\",\"data-styles-preset\":\"MpTKPkTbI\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(54, 139, 139)\"},children:\"Les avantages de\\xa0l'\\xe9pargne solidaire\"})}),className:\"framer-111quxc\",\"data-framer-appear-id\":\"111quxc\",\"data-framer-name\":\"Les avantages de\\xa0l'\\xe9pargne solidaire\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{WPoaGmYBq:{animate:animation28,initial:animation30,optimized:true,style:{transformPerspective:1200}}},children:/*#__PURE__*/_jsx(RichTextWithOptimizedAppearEffect,{__fromCanvasComponent:true,children:getLocalizedValue(\"v40\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-nv5eoi\",\"data-styles-preset\":\"ne7Zie62m\",style:{\"--framer-text-alignment\":\"center\"},children:\"Vos proches comptent sur vous\"})}),className:\"framer-1ku43rn\",\"data-framer-appear-id\":\"1ku43rn\",\"data-framer-name\":\"Vos proches comptent sur vous\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{HfSG4WHcm:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:377,intrinsicWidth:1513,loading:getLoadingLazyAtYPosition(9018.4),positionX:\"center\",positionY:\"center\",sizes:\"min(100vw - 120px, 1400px)\",src:\"https://framerusercontent.com/images/ABhlieAuTsYtK5eTLY4OXCoVGxs.svg\",srcSet:\"https://framerusercontent.com/images/ABhlieAuTsYtK5eTLY4OXCoVGxs.svg?scale-down-to=512 512w,https://framerusercontent.com/images/ABhlieAuTsYtK5eTLY4OXCoVGxs.svg?scale-down-to=1024 1024w,https://framerusercontent.com/images/ABhlieAuTsYtK5eTLY4OXCoVGxs.svg 1513w\"}},jhgstC6MA:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:377,intrinsicWidth:1513,loading:getLoadingLazyAtYPosition(8215.25),positionX:\"center\",positionY:\"center\",sizes:\"min(100vw - 48px, 1400px)\",src:\"https://framerusercontent.com/images/ABhlieAuTsYtK5eTLY4OXCoVGxs.svg\",srcSet:\"https://framerusercontent.com/images/ABhlieAuTsYtK5eTLY4OXCoVGxs.svg?scale-down-to=512 512w,https://framerusercontent.com/images/ABhlieAuTsYtK5eTLY4OXCoVGxs.svg?scale-down-to=1024 1024w,https://framerusercontent.com/images/ABhlieAuTsYtK5eTLY4OXCoVGxs.svg 1513w\"}},WPoaGmYBq:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:377,intrinsicWidth:1513,positionX:\"center\",positionY:\"center\",sizes:\"min(100vw - 48px, 1400px)\",src:\"https://framerusercontent.com/images/ABhlieAuTsYtK5eTLY4OXCoVGxs.svg\",srcSet:\"https://framerusercontent.com/images/ABhlieAuTsYtK5eTLY4OXCoVGxs.svg?scale-down-to=512 512w,https://framerusercontent.com/images/ABhlieAuTsYtK5eTLY4OXCoVGxs.svg?scale-down-to=1024 1024w,https://framerusercontent.com/images/ABhlieAuTsYtK5eTLY4OXCoVGxs.svg 1513w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",intrinsicHeight:377,intrinsicWidth:1513,loading:getLoadingLazyAtYPosition(8490.249999999998),positionX:\"center\",positionY:\"center\",sizes:\"min(100vw - 120px, 1400px)\",src:\"https://framerusercontent.com/images/ABhlieAuTsYtK5eTLY4OXCoVGxs.svg\",srcSet:\"https://framerusercontent.com/images/ABhlieAuTsYtK5eTLY4OXCoVGxs.svg?scale-down-to=512 512w,https://framerusercontent.com/images/ABhlieAuTsYtK5eTLY4OXCoVGxs.svg?scale-down-to=1024 1024w,https://framerusercontent.com/images/ABhlieAuTsYtK5eTLY4OXCoVGxs.svg 1513w\"},className:\"framer-1j4ihwr\",\"data-framer-name\":\"Frame 289221\"})})]})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{HfSG4WHcm:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:696,intrinsicWidth:1392,loading:getLoadingLazyAtYPosition(9112.4),pixelHeight:696,pixelWidth:1392,sizes:\"min(100vw - 120px, 1400px)\",src:\"https://framerusercontent.com/images/IzIqa8p34Hz4yfgdEQMUFVlulfo.webp\",srcSet:\"https://framerusercontent.com/images/IzIqa8p34Hz4yfgdEQMUFVlulfo.webp?scale-down-to=512 512w,https://framerusercontent.com/images/IzIqa8p34Hz4yfgdEQMUFVlulfo.webp?scale-down-to=1024 1024w,https://framerusercontent.com/images/IzIqa8p34Hz4yfgdEQMUFVlulfo.webp 1392w\"}},jhgstC6MA:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:696,intrinsicWidth:1392,loading:getLoadingLazyAtYPosition(8309.25),pixelHeight:696,pixelWidth:1392,sizes:\"min(100vw - 48px, 1400px)\",src:\"https://framerusercontent.com/images/IzIqa8p34Hz4yfgdEQMUFVlulfo.webp\",srcSet:\"https://framerusercontent.com/images/IzIqa8p34Hz4yfgdEQMUFVlulfo.webp?scale-down-to=512 512w,https://framerusercontent.com/images/IzIqa8p34Hz4yfgdEQMUFVlulfo.webp?scale-down-to=1024 1024w,https://framerusercontent.com/images/IzIqa8p34Hz4yfgdEQMUFVlulfo.webp 1392w\"}},WPoaGmYBq:{__framer__transformTargets:[{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:.8,skewX:0,skewY:0,x:0,y:20}},{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0}}],background:{alt:\"\",fit:\"fill\",intrinsicHeight:696,intrinsicWidth:1392,pixelHeight:696,pixelWidth:1392,sizes:\"min(100vw - 48px, 1400px)\",src:\"https://framerusercontent.com/images/IzIqa8p34Hz4yfgdEQMUFVlulfo.webp\",srcSet:\"https://framerusercontent.com/images/IzIqa8p34Hz4yfgdEQMUFVlulfo.webp?scale-down-to=512 512w,https://framerusercontent.com/images/IzIqa8p34Hz4yfgdEQMUFVlulfo.webp?scale-down-to=1024 1024w,https://framerusercontent.com/images/IzIqa8p34Hz4yfgdEQMUFVlulfo.webp 1392w\"}}},children:/*#__PURE__*/_jsxs(ImageWithFX,{__framer__spring:{damping:60,delay:0,duration:.3,ease:[.44,0,.56,1],mass:1,stiffness:500,type:\"spring\"},__framer__styleTransformEffectEnabled:true,__framer__transformTargets:[{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:.8,skewX:0,skewY:0,x:0,y:95}},{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0}}],__framer__transformTrigger:\"onInView\",__perspectiveFX:false,__targetOpacity:1,background:{alt:\"\",fit:\"fill\",intrinsicHeight:696,intrinsicWidth:1392,loading:getLoadingLazyAtYPosition(8584.249999999998),pixelHeight:696,pixelWidth:1392,sizes:\"min(100vw - 120px, 1400px)\",src:\"https://framerusercontent.com/images/IzIqa8p34Hz4yfgdEQMUFVlulfo.webp\",srcSet:\"https://framerusercontent.com/images/IzIqa8p34Hz4yfgdEQMUFVlulfo.webp?scale-down-to=512 512w,https://framerusercontent.com/images/IzIqa8p34Hz4yfgdEQMUFVlulfo.webp?scale-down-to=1024 1024w,https://framerusercontent.com/images/IzIqa8p34Hz4yfgdEQMUFVlulfo.webp 1392w\"},className:\"framer-16iqv7m\",\"data-framer-name\":\"Advantages Content\",style:{transformPerspective:1200},children:[isDisplayed()&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{jhgstC6MA:{width:\"max(min(100vw - 48px, 1400px), 1px)\",y:8309.25}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:703,width:\"max(min(100vw - 120px, 1400px), 1px)\",y:8584.249999999998,children:/*#__PURE__*/_jsx(Container,{className:\"framer-17h7fx7-container hidden-1b56ql2 hidden-1mx4hxu\",children:/*#__PURE__*/_jsx(StackCardsAdvantages,{height:\"100%\",id:\"VU6FMwVy_\",layoutId:\"VU6FMwVy_\",style:{height:\"100%\",width:\"100%\"},variant:\"w12nEPy8j\",width:\"100%\"})})})}),isDisplayed()&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-z09321 hidden-1b56ql2 hidden-1mx4hxu\",\"data-framer-name\":\"Orange Curve\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{jhgstC6MA:{y:8609.75}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:102,width:\"144px\",y:8884.749999999998,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1t6z0ra-container\",children:/*#__PURE__*/_jsx(AnimCurves,{bRvakbH4q:true,fD96gZIDj:false,height:\"100%\",id:\"QzJPpNXYz\",layoutId:\"QzJPpNXYz\",style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})})}),isDisplayed()&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-173hcns hidden-1b56ql2 hidden-1mx4hxu\",\"data-framer-name\":\"Green Curve\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{jhgstC6MA:{y:8578.75}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:82,width:\"118px\",y:8853.749999999998,children:/*#__PURE__*/_jsx(Container,{className:\"framer-yqoxji-container\",children:/*#__PURE__*/_jsx(AnimCurves,{bRvakbH4q:false,fD96gZIDj:true,height:\"100%\",id:\"H4stEZvYU\",layoutId:\"H4stEZvYU\",style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})})}),isDisplayed()&&/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition17},__framer__animateOnce:true,__framer__enter:animation31,__framer__exit:animation32,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1911urh hidden-1b56ql2 hidden-1mx4hxu\",\"data-framer-name\":\"Card Stroke\",style:{transformPerspective:1200},children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1a7z51e\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1n00mj5\",\"data-framer-name\":\"Group 289182\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:40,intrinsicWidth:39,svg:'<svg width=\"39\" height=\"40\" viewBox=\"0 0 39 40\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<g filter=\"url(#filter0_d_4004_4019)\">\\n<circle cx=\"19.5244\" cy=\"19.9514\" r=\"19.4397\" fill=\"#368B8B\"/>\\n<path d=\"M33.5677 16.6257H28.8998L26.3773 20.405C26.0709 20.9041 25.7644 21.4033 25.4815 21.9262H25.4343V16.6257C25.4343 11.6104 21.4502 7.5459 16.4758 7.5459C11.5015 7.5459 7.47021 11.6104 7.47021 16.6257V29.1995H11.3365V25.2776L12.3267 24.0417L15.3442 29.1995H20.1064L15.0142 21.7123L19.4699 16.6257H14.802L12.2795 20.405C11.973 20.9041 11.6666 21.4033 11.3837 21.9262H11.3365V16.6257C11.3365 13.7972 13.6469 11.4916 16.4758 11.4916C19.3048 11.4916 21.568 13.7972 21.568 16.6257V29.1995H25.4343V25.2776L26.4245 24.0417L29.4421 29.1995H34.2042L29.112 21.7123L33.5677 16.6257Z\" fill=\"white\"/>\\n</g>\\n<defs>\\n<filter id=\"filter0_d_4004_4019\" x=\"-18.9153\" y=\"-9.48828\" width=\"68.8794\" height=\"68.8789\" filterUnits=\"userSpaceOnUse\" color-interpolation-filters=\"sRGB\">\\n<feFlood flood-opacity=\"0\" result=\"BackgroundImageFix\"/>\\n<feColorMatrix in=\"SourceAlpha\" type=\"matrix\" values=\"0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0\" result=\"hardAlpha\"/>\\n<feOffset dx=\"-4\" dy=\"5\"/>\\n<feGaussianBlur stdDeviation=\"7.5\"/>\\n<feComposite in2=\"hardAlpha\" operator=\"out\"/>\\n<feColorMatrix type=\"matrix\" values=\"0 0 0 0 0.343569 0 0 0 0 0.383122 0 0 0 0 0.383122 0 0 0 0.4 0\"/>\\n<feBlend mode=\"normal\" in2=\"BackgroundImageFix\" result=\"effect1_dropShadow_4004_4019\"/>\\n<feBlend mode=\"normal\" in=\"SourceGraphic\" in2=\"effect1_dropShadow_4004_4019\" result=\"shape\"/>\\n</filter>\\n</defs>\\n</svg>\\n',withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-h4hqwr\",\"data-framer-name\":\"Rectangle 273\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-11sicm0\",\"data-framer-name\":\"Frame 289194\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v41\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7UGx1cyBKYWthcnRhIFNhbnMtNjAw\",\"--framer-font-family\":'\"Plus Jakarta Sans\", \"Plus Jakarta Sans Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"0px\",\"--framer-text-alignment\":\"center\"},children:\"Gr\\xe2ce mes tontines\\xa0Cirkkle, j\u2019aide mes parents en finan\\xe7ant une partie de mes \\xe9tudes chaque ann\\xe9e.\"})}),className:\"framer-1qar8n5\",\"data-framer-name\":\"Gr\\xe2ce mes tontines\\xa0Cirkkle, j\u2019aide mes parents en finan\\xe7ant une partie de mes \\xe9tudes chaque ann\\xe9e.\",fonts:[\"GF;Plus Jakarta Sans-600\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),isDisplayed()&&/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition17},__framer__animateOnce:true,__framer__enter:animation31,__framer__exit:animation32,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1ntniw7 hidden-1b56ql2 hidden-1mx4hxu\",\"data-framer-name\":\"Card Stroke 2\",style:{transformPerspective:1200},children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1oyqajj\",\"data-framer-name\":\"Rectangle 273\"}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1x322c8\",\"data-border\":true,\"data-framer-name\":\"Frame 289184\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1vgs20u\",\"data-framer-name\":\"Frame 921\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v42\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"11px\",\"--framer-text-alignment\":\"center\"},children:/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"R0Y7UG9wcGlucy1yZWd1bGFy\",\"--framer-font-family\":'\"Poppins\"',\"--framer-font-size\":\"11px\",\"--framer-letter-spacing\":\"0px\"},children:\"Cagnotte de Naia\"})})}),className:\"framer-gw93hl\",\"data-framer-name\":\"Cagnotte de Naia\",fonts:[\"GF;Poppins-regular\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"17px\",\"--framer-text-alignment\":\"center\"},children:/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"R0Y7UG9wcGlucy03MDA=\",\"--framer-font-family\":'\"Poppins\"',\"--framer-font-size\":\"17px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"0px\"},children:\"1400\u20AC\"})})}),className:\"framer-we03m2\",\"data-framer-name\":\"1400\u20AC\",fonts:[\"GF;Poppins-700\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-fm4zof\",\"data-framer-name\":\"Ellipse 29\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-13r2min\",\"data-framer-name\":\"Vector\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:19,intrinsicWidth:24,svg:'<svg width=\"24\" height=\"19\" viewBox=\"0 0 24 19\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M22.9903 8.16645H19.039L16.9037 11.3656C16.6442 11.7881 16.3848 12.2106 16.1453 12.6533H16.1054V8.16645C16.1054 3.92105 12.7329 0.480469 8.52213 0.480469C4.31141 0.480469 0.898926 3.92105 0.898926 8.16645V18.8101H4.17171V15.4903L5.00987 14.444L7.56424 18.8101H11.5954L7.28486 12.4722L11.0565 8.16645H7.10525L4.96996 11.3656C4.71053 11.7881 4.4511 12.2106 4.21163 12.6533H4.17171V8.16645C4.17171 5.77213 6.12741 3.82045 8.52213 3.82045C10.9169 3.82045 12.8326 5.77213 12.8326 8.16645V18.8101H16.1054V15.4903L16.9436 14.444L19.4979 18.8101H23.5291L19.2186 12.4722L22.9903 8.16645Z\" fill=\"white\"/>\\n</svg>\\n',withExternalLayout:true})})]})]}),isDisplayed3()&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-erk4kj hidden-1t3nvjz hidden-1yfu9ea\"}),isDisplayed3()&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-12ncq1j hidden-1t3nvjz hidden-1yfu9ea\",\"data-framer-name\":\"Stack Cards\",children:[/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition18},__framer__animateOnce:true,__framer__enter:animation33,__framer__exit:animation34,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-vaeppi\",\"data-border\":true,\"data-framer-name\":\"Card 1\",style:{transformPerspective:1200},children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{HfSG4WHcm:{children:getLocalizedValue(\"v44\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7UGx1cyBKYWthcnRhIFNhbnMtODAw\",\"--framer-font-family\":'\"Plus Jakarta Sans\", \"Plus Jakarta Sans Placeholder\", sans-serif',\"--framer-font-size\":\"22px\",\"--framer-font-weight\":\"800\",\"--framer-letter-spacing\":\"0px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(33, 39, 39)\"},children:\"Faciliter votre acc\\xe8s au financement\"})})},WPoaGmYBq:{children:getLocalizedValue(\"v44\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7UGx1cyBKYWthcnRhIFNhbnMtODAw\",\"--framer-font-family\":'\"Plus Jakarta Sans\", \"Plus Jakarta Sans Placeholder\", sans-serif',\"--framer-font-size\":\"22px\",\"--framer-font-weight\":\"800\",\"--framer-letter-spacing\":\"0px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(33, 39, 39)\"},children:\"Faciliter votre acc\\xe8s au financement\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v43\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7UGx1cyBKYWthcnRhIFNhbnMtODAw\",\"--framer-font-family\":'\"Plus Jakarta Sans\", \"Plus Jakarta Sans Placeholder\", sans-serif',\"--framer-font-size\":\"22px\",\"--framer-font-weight\":\"800\",\"--framer-letter-spacing\":\"0px\",\"--framer-text-color\":\"rgb(33, 39, 39)\"},children:\"Faciliter votre acc\\xe8s au financement\"})}),className:\"framer-1h3whu7\",\"data-framer-name\":\"Faciliter votre acc\\xe8s au financement\",fonts:[\"GF;Plus Jakarta Sans-800\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{HfSG4WHcm:{children:getLocalizedValue(\"v46\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7UGx1cyBKYWthcnRhIFNhbnMtcmVndWxhcg==\",\"--framer-font-family\":'\"Plus Jakarta Sans\", \"Plus Jakarta Sans Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-letter-spacing\":\"0px\",\"--framer-text-alignment\":\"center\"},children:\"Vous avez besoin de financer un projet ou un impr\\xe9vu ? D\\xe9bloquez votre cagnotte Cirkkle !\"})})},WPoaGmYBq:{children:getLocalizedValue(\"v46\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7UGx1cyBKYWthcnRhIFNhbnMtcmVndWxhcg==\",\"--framer-font-family\":'\"Plus Jakarta Sans\", \"Plus Jakarta Sans Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-letter-spacing\":\"0px\",\"--framer-text-alignment\":\"center\"},children:\"Vous avez besoin de financer un projet ou un impr\\xe9vu ? D\\xe9bloquez votre cagnotte Cirkkle !\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v45\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7UGx1cyBKYWthcnRhIFNhbnMtcmVndWxhcg==\",\"--framer-font-family\":'\"Plus Jakarta Sans\", \"Plus Jakarta Sans Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-letter-spacing\":\"0px\"},children:\"Vous avez besoin de financer un projet ou un impr\\xe9vu ? D\\xe9bloquez votre cagnotte Cirkkle !\"})}),className:\"framer-1a1bhq2\",\"data-framer-name\":\"Vous avez besoin de financer un projet ou un impr\\xe9vu ? D\\xe9bloquez votre cagnotte Cirkkle !\",fonts:[\"GF;Plus Jakarta Sans-regular\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition19},__framer__animateOnce:true,__framer__enter:animation33,__framer__exit:animation35,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1g0lacg\",\"data-border\":true,\"data-framer-name\":\"Card 2\",style:{transformPerspective:1200},children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{HfSG4WHcm:{children:getLocalizedValue(\"v48\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7UGx1cyBKYWthcnRhIFNhbnMtODAw\",\"--framer-font-family\":'\"Plus Jakarta Sans\", \"Plus Jakarta Sans Placeholder\", sans-serif',\"--framer-font-size\":\"22px\",\"--framer-font-weight\":\"800\",\"--framer-letter-spacing\":\"0px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(33, 39, 39)\"},children:\"Donner du sens \\xe0 votre \\xe9pargne\"})})},WPoaGmYBq:{children:getLocalizedValue(\"v48\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7UGx1cyBKYWthcnRhIFNhbnMtODAw\",\"--framer-font-family\":'\"Plus Jakarta Sans\", \"Plus Jakarta Sans Placeholder\", sans-serif',\"--framer-font-size\":\"22px\",\"--framer-font-weight\":\"800\",\"--framer-letter-spacing\":\"0px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(33, 39, 39)\"},children:\"Donner du sens \\xe0 votre \\xe9pargne\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v47\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7UGx1cyBKYWthcnRhIFNhbnMtODAw\",\"--framer-font-family\":'\"Plus Jakarta Sans\", \"Plus Jakarta Sans Placeholder\", sans-serif',\"--framer-font-size\":\"22px\",\"--framer-font-weight\":\"800\",\"--framer-letter-spacing\":\"0px\",\"--framer-text-color\":\"rgb(33, 39, 39)\"},children:\"Donner du sens \\xe0 votre \\xe9pargne\"})}),className:\"framer-74hvwu\",\"data-framer-name\":\"Donner du sens \\xe0 votre \\xe9pargne\",fonts:[\"GF;Plus Jakarta Sans-800\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{HfSG4WHcm:{children:getLocalizedValue(\"v50\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7UGx1cyBKYWthcnRhIFNhbnMtcmVndWxhcg==\",\"--framer-font-family\":'\"Plus Jakarta Sans\", \"Plus Jakarta Sans Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-letter-spacing\":\"0px\",\"--framer-text-alignment\":\"center\"},children:\"En \\xe9pargnant ensemble, vous renforcez votre lien social et vous permettez \\xe0 vos proches de financer leurs projets.\"})})},WPoaGmYBq:{children:getLocalizedValue(\"v50\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7UGx1cyBKYWthcnRhIFNhbnMtcmVndWxhcg==\",\"--framer-font-family\":'\"Plus Jakarta Sans\", \"Plus Jakarta Sans Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-letter-spacing\":\"0px\",\"--framer-text-alignment\":\"center\"},children:\"En \\xe9pargnant ensemble, vous renforcez votre lien social et vous permettez \\xe0 vos proches de financer leurs projets.\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v49\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7UGx1cyBKYWthcnRhIFNhbnMtcmVndWxhcg==\",\"--framer-font-family\":'\"Plus Jakarta Sans\", \"Plus Jakarta Sans Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-letter-spacing\":\"0px\"},children:\"En \\xe9pargnant ensemble, vous renforcez votre lien social et vous permettez \\xe0 vos proches de financer leurs projets.\"})}),className:\"framer-1cadqxz\",\"data-framer-name\":\"En \\xe9pargnant ensemble, vous renforcez votre lien social et vous permettez \\xe0 vos proches de financer leurs projets.\",fonts:[\"GF;Plus Jakarta Sans-regular\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition20},__framer__animateOnce:true,__framer__enter:animation33,__framer__exit:animation36,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1n0y37b\",\"data-framer-name\":\"Card 3\",style:{transformPerspective:1200},children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{HfSG4WHcm:{children:getLocalizedValue(\"v52\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7UGx1cyBKYWthcnRhIFNhbnMtODAw\",\"--framer-font-family\":'\"Plus Jakarta Sans\", \"Plus Jakarta Sans Placeholder\", sans-serif',\"--framer-font-size\":\"22px\",\"--framer-font-weight\":\"800\",\"--framer-letter-spacing\":\"0px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(33, 39, 39)\"},children:\"Renforcer votre discipline \\xe9pagne\"})})},WPoaGmYBq:{children:getLocalizedValue(\"v52\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7UGx1cyBKYWthcnRhIFNhbnMtODAw\",\"--framer-font-family\":'\"Plus Jakarta Sans\", \"Plus Jakarta Sans Placeholder\", sans-serif',\"--framer-font-size\":\"22px\",\"--framer-font-weight\":\"800\",\"--framer-letter-spacing\":\"0px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(33, 39, 39)\"},children:\"Renforcer votre discipline \\xe9pagne\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v51\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7UGx1cyBKYWthcnRhIFNhbnMtODAw\",\"--framer-font-family\":'\"Plus Jakarta Sans\", \"Plus Jakarta Sans Placeholder\", sans-serif',\"--framer-font-size\":\"22px\",\"--framer-font-weight\":\"800\",\"--framer-letter-spacing\":\"0px\",\"--framer-text-color\":\"rgb(33, 39, 39)\"},children:\"Renforcer votre discipline \\xe9pagne\"})}),className:\"framer-17cqrkq\",\"data-framer-name\":\"Renforcer votre discipline \\xe9pagne\",fonts:[\"GF;Plus Jakarta Sans-800\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{HfSG4WHcm:{children:getLocalizedValue(\"v54\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7UGx1cyBKYWthcnRhIFNhbnMtcmVndWxhcg==\",\"--framer-font-family\":'\"Plus Jakarta Sans\", \"Plus Jakarta Sans Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-letter-spacing\":\"0px\",\"--framer-text-alignment\":\"center\"},children:\"L'\\xe9pargne collective incite \\xe0 une plus grande rigueur. Si vous avez du mal \\xe0 \\xe9pargner, Cirkkle vous permet enfin d'y arriver !\"})})},WPoaGmYBq:{children:getLocalizedValue(\"v54\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7UGx1cyBKYWthcnRhIFNhbnMtcmVndWxhcg==\",\"--framer-font-family\":'\"Plus Jakarta Sans\", \"Plus Jakarta Sans Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-letter-spacing\":\"0px\",\"--framer-text-alignment\":\"center\"},children:\"L'\\xe9pargne collective incite \\xe0 une plus grande rigueur. Si vous avez du mal \\xe0 \\xe9pargner, Cirkkle vous permet enfin d'y arriver !\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v53\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7UGx1cyBKYWthcnRhIFNhbnMtcmVndWxhcg==\",\"--framer-font-family\":'\"Plus Jakarta Sans\", \"Plus Jakarta Sans Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-letter-spacing\":\"0px\"},children:\"L'\\xe9pargne collective incite \\xe0 une plus grande rigueur. Si vous avez du mal \\xe0 \\xe9pargner, Cirkkle vous permet enfin d'y arriver !\"})}),className:\"framer-1hxkytp\",\"data-framer-name\":\"L'\\xe9pargne collective incite \\xe0 une plus grande rigueur. Si vous avez du mal \\xe0 \\xe9pargner, Cirkkle vous permet enfin d'y arriver !\",fonts:[\"GF;Plus Jakarta Sans-regular\"],verticalAlignment:\"top\",withExternalLayout:true})})]})]})]})})]})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-wvw4f1\",\"data-framer-name\":\"Pricing\",id:elementId8,ref:ref5,children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-i04yr4\",\"data-framer-name\":\"Pricing Wrapper\",children:[/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition10},__framer__animateOnce:true,__framer__enter:animation14,__framer__exit:animation15,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-q9ag27\",\"data-framer-name\":\"Pricing Text\",style:{transformPerspective:1200},children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v55\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{className:\"framer-styles-preset-1lzcxam\",\"data-styles-preset\":\"MpTKPkTbI\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(54, 139, 139)\"},children:\"Nos tarifs\"})}),className:\"framer-1u4j69a\",\"data-framer-name\":\"Nos tarifs\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v56\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{className:\"framer-styles-preset-1ux7mzk\",\"data-styles-preset\":\"pFr3xYY7b\",style:{\"--framer-text-alignment\":\"center\"},children:\"Pour continuer \\xe0 vous proposer le meilleur service possible, nous avons besoin de nous financer. \"})}),className:\"framer-od7eyj\",\"data-framer-name\":\"Pour continuer \\xe0 vous proposer le meilleur service possible, nous avons besoin de nous financer.\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition10},__framer__animateOnce:true,__framer__enter:animation37,__framer__exit:animation38,__framer__spring:{damping:27,delay:0,duration:.3,ease:[.44,0,.56,1],mass:1,stiffness:500,type:\"spring\"},__framer__styleAppearEffectEnabled:true,__framer__styleTransformEffectEnabled:true,__framer__threshold:.5,__framer__transformTargets:[{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:.9,skewX:0,skewY:0,x:0,y:0}},{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0}}],__framer__transformTrigger:\"onInView\",__perspectiveFX:false,__targetOpacity:1,className:\"framer-9bd6gx\",\"data-framer-name\":\"Card\",style:{transformPerspective:1200},children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-37i5ce\",\"data-border\":true,\"data-framer-name\":\"Top Card\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-gcefe3\",\"data-framer-name\":\"Offer %\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v57\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7UGx1cyBKYWthcnRhIFNhbnMtODAw\",\"--framer-font-family\":'\"Plus Jakarta Sans\", \"Plus Jakarta Sans Placeholder\", sans-serif',\"--framer-font-size\":\"80px\",\"--framer-font-weight\":\"800\",\"--framer-letter-spacing\":\"0px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(248, 147, 74)\"},children:\"2,8%\"})}),className:\"framer-kboejh\",\"data-framer-name\":\"2,8%\",fonts:[\"GF;Plus Jakarta Sans-800\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v58\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7UGx1cyBKYWthcnRhIFNhbnMtODAw\",\"--framer-font-family\":'\"Plus Jakarta Sans\", \"Plus Jakarta Sans Placeholder\", sans-serif',\"--framer-font-size\":\"30px\",\"--framer-font-weight\":\"800\",\"--framer-letter-spacing\":\"0px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(54, 139, 139)\"},children:\"C\u2019est tout.\"})}),className:\"framer-11mp7jw\",\"data-framer-name\":\"C\u2019est tout.\",fonts:[\"GF;Plus Jakarta Sans-800\"],verticalAlignment:\"top\",withExternalLayout:true})]})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-kcfx8y\",\"data-border\":true,\"data-framer-name\":\"Bottom Card\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v59\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{className:\"framer-styles-preset-1ux7mzk\",\"data-styles-preset\":\"pFr3xYY7b\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(34, 39, 39)\"},children:\"Chez\\xa0Cirkkle, pas de frais cach\\xe9s ni de mauvaise surprise : nous pr\\xe9levons 2,8% du montant de votre cagnotte, au moment o\\xf9 vous en b\\xe9n\\xe9ficiez.\"})}),className:\"framer-1cvt4e\",\"data-framer-name\":\"Chez\\xa0Cirkkle, pas de frais cach\\xe9s ni de mauvaise surprise : nous pr\\xe9levons 2,8% du montant de votre cagnotte, au moment o\\xf9 vous en b\\xe9n\\xe9ficiez.\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1vqirzy\",\"data-framer-name\":\"Line 1\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:4,intrinsicWidth:423,svg:'<svg width=\"423\" height=\"4\" viewBox=\"-1 -1 423 4\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<line x1=\"0.24353\" y1=\"0.910156\" x2=\"420.813\" y2=\"0.910119\" stroke=\"#EBF3F3\"/>\\n</svg>\\n',withExternalLayout:true})]})]}),isDisplayed4()&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-13qtp57 hidden-1t3nvjz hidden-1yfu9ea hidden-1b56ql2\",\"data-framer-name\":\"BG Anim\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-onuoop\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-6dozae\",\"data-framer-name\":\"Group 289185\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:207,intrinsicWidth:608,svg:'<svg width=\"608\" height=\"207\" viewBox=\"0 0 608 207\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M607.848 58.9453H263.87C254.165 58.9453 245.06 63.64 239.431 71.5458L152.384 193.81C146.755 201.716 137.65 206.41 127.945 206.41H0.556152\" stroke=\"#DFE7E7\"/>\\n<path d=\"M585.808 127.07H238.399C230.674 127.07 223.246 130.051 217.663 135.391L152.112 198.09C146.529 203.431 139.101 206.411 131.375 206.411H0.556152\" stroke=\"#DFE7E7\"/>\\n<path d=\"M585.808 0.838958H246.607C234.373 0.838958 223.364 8.26789 218.786 19.6132L150.988 187.636C146.41 198.981 135.402 206.41 123.168 206.41H0.556152\" stroke=\"#DFE7E7\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-je1vg8\",\"data-framer-name\":\"Group 289184\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:43,intrinsicWidth:43,svg:'<svg width=\"43\" height=\"43\" viewBox=\"0 0 43 43\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<circle cx=\"21.6919\" cy=\"21.2905\" r=\"21.1636\" fill=\"#F8934A\"/>\\n<path d=\"M36.4745 17.6887H31.3927L28.6465 21.8031C28.3129 22.3465 27.9792 22.8899 27.6712 23.4592H27.6199V17.6887C27.6199 12.2287 23.2824 7.80371 17.867 7.80371C12.4516 7.80371 8.06274 12.2287 8.06274 17.6887V31.3776H12.2719V27.1079L13.3498 25.7623L16.635 31.3776H21.8195L16.2757 23.2263L21.1265 17.6887H16.0447L13.2985 21.8031C12.9649 22.3465 12.6312 22.8899 12.3232 23.4592H12.2719V17.6887C12.2719 14.6093 14.7871 12.0993 17.867 12.0993C20.9468 12.0993 23.4107 14.6093 23.4107 17.6887V31.3776H27.6199V27.1079L28.6978 25.7623L31.983 31.3776H37.1675L31.6237 23.2263L36.4745 17.6887Z\" fill=\"white\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1nmjhg9\",\"data-framer-name\":\"Group 289187\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:43,intrinsicWidth:43,svg:'<svg width=\"43\" height=\"43\" viewBox=\"0 0 43 43\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<circle cx=\"21.2889\" cy=\"21.2905\" r=\"21.1636\" fill=\"#368B8B\"/>\\n<path d=\"M36.0715 17.6887H30.9898L28.2436 21.8031C27.9099 22.3465 27.5762 22.8899 27.2683 23.4592H27.2169V17.6887C27.2169 12.2287 22.8795 7.80371 17.464 7.80371C12.0486 7.80371 7.65979 12.2287 7.65979 17.6887V31.3776H11.8689V27.1079L12.9469 25.7623L16.2321 31.3776H21.4165L15.8728 23.2263L20.7235 17.6887H15.6418L12.8956 21.8031C12.5619 22.3465 12.2283 22.8899 11.9203 23.4592H11.8689V17.6887C11.8689 14.6093 14.3842 12.0993 17.464 12.0993C20.5439 12.0993 23.0078 14.6093 23.0078 17.6887V31.3776H27.2169V27.1079L28.2949 25.7623L31.5801 31.3776H36.7645L31.2208 23.2263L36.0715 17.6887Z\" fill=\"white\"/>\\n</svg>\\n',withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1tbsojm\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-1g6rh18\",\"data-framer-name\":\"Group 289186\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:206,intrinsicWidth:609,svg:'<svg width=\"609\" height=\"206\" viewBox=\"0 0 609 206\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M0.951923 147.877H344.93C354.635 147.877 363.74 143.182 369.369 135.276L456.416 13.0126C462.044 5.10675 471.15 0.412098 480.855 0.412098H608.244\" stroke=\"#DFE7E7\"/>\\n<path d=\"M22.9921 79.752H370.4C378.126 79.752 385.554 76.7715 391.137 71.4314L456.688 8.73177C462.271 3.39169 469.699 0.411266 477.424 0.411266H608.244\" stroke=\"#DFE7E7\"/>\\n<path d=\"M22.9921 205.983H362.193C374.427 205.983 385.436 198.554 390.013 187.209L457.811 19.1864C462.389 7.84102 473.398 0.412108 485.632 0.412108H608.244\" stroke=\"#DFE7E7\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-3lyvon\",\"data-framer-name\":\"Group 289187\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:43,intrinsicWidth:43,svg:'<svg width=\"43\" height=\"43\" viewBox=\"0 0 43 43\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<circle cx=\"21.2889\" cy=\"21.2905\" r=\"21.1636\" fill=\"#368B8B\"/>\\n<path d=\"M36.0715 17.6887H30.9898L28.2436 21.8031C27.9099 22.3465 27.5762 22.8899 27.2683 23.4592H27.2169V17.6887C27.2169 12.2287 22.8795 7.80371 17.464 7.80371C12.0486 7.80371 7.65979 12.2287 7.65979 17.6887V31.3776H11.8689V27.1079L12.9469 25.7623L16.2321 31.3776H21.4165L15.8728 23.2263L20.7235 17.6887H15.6418L12.8956 21.8031C12.5619 22.3465 12.2283 22.8899 11.9203 23.4592H11.8689V17.6887C11.8689 14.6093 14.3842 12.0993 17.464 12.0993C20.5439 12.0993 23.0078 14.6093 23.0078 17.6887V31.3776H27.2169V27.1079L28.2949 25.7623L31.5801 31.3776H36.7645L31.2208 23.2263L36.0715 17.6887Z\" fill=\"white\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1qol94e\",\"data-framer-name\":\"Group 289184\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:43,intrinsicWidth:43,svg:'<svg width=\"43\" height=\"43\" viewBox=\"0 0 43 43\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<circle cx=\"21.6919\" cy=\"21.2905\" r=\"21.1636\" fill=\"#F8934A\"/>\\n<path d=\"M36.4745 17.6887H31.3927L28.6465 21.8031C28.3129 22.3465 27.9792 22.8899 27.6712 23.4592H27.6199V17.6887C27.6199 12.2287 23.2824 7.80371 17.867 7.80371C12.4516 7.80371 8.06274 12.2287 8.06274 17.6887V31.3776H12.2719V27.1079L13.3498 25.7623L16.635 31.3776H21.8195L16.2757 23.2263L21.1265 17.6887H16.0447L13.2985 21.8031C12.9649 22.3465 12.6312 22.8899 12.3232 23.4592H12.2719V17.6887C12.2719 14.6093 14.7871 12.0993 17.867 12.0993C20.9468 12.0993 23.4107 14.6093 23.4107 17.6887V31.3776H27.6199V27.1079L28.6978 25.7623L31.983 31.3776H37.1675L31.6237 23.2263L36.4745 17.6887Z\" fill=\"white\"/>\\n</svg>\\n',withExternalLayout:true})]})]}),isDisplayed1()&&/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation37,__framer__exit:animation39,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1o82sm0 hidden-1mx4hxu\",\"data-framer-name\":\"Rive Anim\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-wgoura-container\",children:/*#__PURE__*/_jsx(Embed,{height:\"100%\",html:\"\",id:\"Rp6LMlXpq\",layoutId:\"Rp6LMlXpq\",style:{height:\"100%\",width:\"100%\"},type:\"url\",url:\"https://rive.app/s/HSDgJmmshE2nag_AFLWiWw/embed\",width:\"100%\"})})})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-furxm0\",\"data-framer-name\":\"Waitlist\",id:elementId9,ref:ref11,children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{WPoaGmYBq:{__framer__styleTransformEffectEnabled:undefined,style:{}}},children:/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__spring:{damping:60,delay:0,duration:.3,ease:[.44,0,.56,1],mass:1,stiffness:500,type:\"spring\"},__framer__styleTransformEffectEnabled:true,__framer__transformTargets:[{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:.8,skewX:0,skewY:0,x:0,y:95}},{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0}}],__framer__transformTrigger:\"onInView\",__perspectiveFX:false,__targetOpacity:1,className:\"framer-1ynjckk\",\"data-framer-name\":\"Card\",style:{transformPerspective:1200},children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-18u0bpe\",\"data-framer-name\":\"Logo\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-t0uslf\",\"data-framer-name\":\"KK\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:191,intrinsicWidth:236,svg:'<svg width=\"236\" height=\"191\" viewBox=\"0 0 236 191\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path opacity=\"0.5\" d=\"M230.076 80.0414H188.948L166.722 113.34C164.022 117.738 161.321 122.136 158.829 126.744H158.413V80.0414C158.413 35.8522 123.309 0.0400391 79.4807 0.0400391C35.6524 0.0400391 0.132812 35.8522 0.132812 80.0414V190.829H34.1984V156.273L42.9225 145.383L69.5103 190.829H111.469L66.6023 124.859L105.861 80.0414H64.7328L42.5071 113.34C39.8068 117.738 37.1064 122.136 34.6138 126.744H34.1984V80.0414C34.1984 55.1195 54.5547 34.805 79.4807 34.805C104.407 34.805 124.348 55.1195 124.348 80.0414V190.829H158.413V156.273L167.137 145.383L193.725 190.829H235.684L190.817 124.859L230.076 80.0414Z\" fill=\"#F3ECE2\"/>\\n</svg>\\n',withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1fglgs\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{HfSG4WHcm:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:968,intrinsicWidth:1134,loading:getLoadingLazyAtYPosition(10895.283),pixelHeight:968,pixelWidth:1134,sizes:\"calc(min(100vw - 48px, 1400px) - 60px)\",src:\"https://framerusercontent.com/images/i0IzboAFqIlkQZtlCg0UVGcGbuM.png\",srcSet:\"https://framerusercontent.com/images/i0IzboAFqIlkQZtlCg0UVGcGbuM.png?scale-down-to=512 512w,https://framerusercontent.com/images/i0IzboAFqIlkQZtlCg0UVGcGbuM.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/i0IzboAFqIlkQZtlCg0UVGcGbuM.png 1134w\"}},jhgstC6MA:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:968,intrinsicWidth:1134,loading:getLoadingLazyAtYPosition(10102.65),pixelHeight:968,pixelWidth:1134,sizes:\"max((min(100vw - 48px, 1400px) - 90px) / 2, 1px)\",src:\"https://framerusercontent.com/images/i0IzboAFqIlkQZtlCg0UVGcGbuM.png\",srcSet:\"https://framerusercontent.com/images/i0IzboAFqIlkQZtlCg0UVGcGbuM.png?scale-down-to=512 512w,https://framerusercontent.com/images/i0IzboAFqIlkQZtlCg0UVGcGbuM.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/i0IzboAFqIlkQZtlCg0UVGcGbuM.png 1134w\"}},WPoaGmYBq:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:968,intrinsicWidth:1134,pixelHeight:968,pixelWidth:1134,sizes:\"calc(min(100vw - 20px, 1400px) - 28px)\",src:\"https://framerusercontent.com/images/i0IzboAFqIlkQZtlCg0UVGcGbuM.png\",srcSet:\"https://framerusercontent.com/images/i0IzboAFqIlkQZtlCg0UVGcGbuM.png?scale-down-to=512 512w,https://framerusercontent.com/images/i0IzboAFqIlkQZtlCg0UVGcGbuM.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/i0IzboAFqIlkQZtlCg0UVGcGbuM.png 1134w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:968,intrinsicWidth:1134,loading:getLoadingLazyAtYPosition(10377.649999999998),pixelHeight:968,pixelWidth:1134,sizes:\"max((min(100vw - 48px, 1400px) - 90px) / 2, 1px)\",src:\"https://framerusercontent.com/images/i0IzboAFqIlkQZtlCg0UVGcGbuM.png\",srcSet:\"https://framerusercontent.com/images/i0IzboAFqIlkQZtlCg0UVGcGbuM.png?scale-down-to=512 512w,https://framerusercontent.com/images/i0IzboAFqIlkQZtlCg0UVGcGbuM.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/i0IzboAFqIlkQZtlCg0UVGcGbuM.png 1134w\"},className:\"framer-bhf6p\",\"data-framer-name\":\"Card Image\"})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-ir0pc0\",\"data-framer-name\":\"Waitlist Subscription\",children:[/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition10},__framer__animateOnce:true,__framer__enter:animation14,__framer__exit:animation15,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-quiyba\",\"data-framer-name\":\"Waitlist Title\",style:{transformPerspective:1200},children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v60\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-1t8ri4t\",\"data-styles-preset\":\"ufL2aIJYD\",style:{\"--framer-text-color\":\"var(--token-8ecf3070-09f7-44e8-a71e-d4b812577923, rgb(54, 139, 139))\"},children:\"Rejoindre la liste d\u2019attente\"})}),className:\"framer-9gj4li\",\"data-framer-name\":\"Rejoindre la liste d\u2019attente\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v61\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-uwtnxz\",\"data-styles-preset\":\"MKn8EopCP\",style:{\"--framer-text-color\":\"rgb(33, 39, 39)\"},children:\"Restez inform\\xe9 en rejoignant la liste d'attente. Nous vous enverrons un email lorsque l'application sera disponible \uD83E\uDD73\"})}),className:\"framer-rsoa2f\",\"data-framer-name\":\"Restez inform\\xe9 en rejoignant la liste d'attente. Nous vous enverrons un email lorsque l'application sera disponible \uD83E\uDD73\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation14,__framer__exit:animation40,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-19voqfs\",\"data-framer-name\":\"Subscribe\",style:{transformPerspective:1200},children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1evv59d\",children:/*#__PURE__*/_jsx(Overlay1,{blockDocumentScrolling:false,children:overlay=>/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsxs(Container,{className:\"framer-1y56h4g-container\",id:\"1y56h4g\",ref:ref12,children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{WPoaGmYBq:{inputs:[{gridColumn:\"2\",label:\"\",max:\"\",min:\"\",name:\"email\",options:[],placeholder:getLocalizedValue(\"v62\",activeLocale)??\"Entrez votre mail\",required:false,step:0,type:\"email\",value:\"\"}]}},children:/*#__PURE__*/_jsx(BaseForm,{button:{label:getLocalizedValue(\"v63\",activeLocale)??\"S'inscrire\",shouldAppear:true},contentType:\"application/json\",height:\"100%\",id:\"nGD2Rw06p\",inputs:[{gridColumn:\"1\",label:\"\",max:\"\",min:\"\",name:\"email\",options:[],placeholder:getLocalizedValue(\"v62\",activeLocale)??\"Entrez votre mail\",required:false,step:0,type:\"email\",value:\"\"}],layoutId:\"nGD2Rw06p\",method:\"post\",onSubmit:onSubmittxyyif({overlay}),redirectAs:\"overlay\",style:{width:\"100%\"},styles:{button:{align:\"stretch\",borderRadius:5,color:\"rgb(255, 255, 255)\",fill:\"var(--token-ef14d4fb-dd01-4adf-993f-ec0eb33fa00e, rgb(248, 147, 74))\",font:{fontFamily:'\"Plus Jakarta Sans\", \"Plus Jakarta Sans Placeholder\", sans-serif',fontSize:\"14px\",fontStyle:\"normal\",fontWeight:600,letterSpacing:\"0em\",lineHeight:\"1em\"},padding:13,paddingBottom:10,paddingLeft:48,paddingPerSide:true,paddingRight:48,paddingTop:10},form:{columnGap:12,columns:\"2\",fill:\"rgb(255, 255, 255)\",rowGap:8},input:{borderRadius:8,color:\"rgb(0, 0, 0)\",fill:\"rgb(255, 255, 255)\",font:{fontFamily:'\"Plus Jakarta Sans\", \"Plus Jakarta Sans Placeholder\", sans-serif',fontSize:\"14px\",fontStyle:\"normal\",fontWeight:600,letterSpacing:\"0em\",lineHeight:\"1em\"},padding:14,paddingBottom:14,paddingLeft:14,paddingPerSide:false,paddingRight:14,paddingTop:14,placeholderColor:\"var(--token-8ecf3070-09f7-44e8-a71e-d4b812577923, rgb(54, 139, 139))\"},label:{borderRadius:8,color:\"rgb(0, 0, 0)\",fill:\"rgba(0, 0, 0, 0)\",font:{},padding:0,paddingBottom:0,paddingLeft:0,paddingPerSide:false,paddingRight:0,paddingTop:0}},url:\"https://submit-form.com/DeQC4eGKB\",width:\"100%\"})}),/*#__PURE__*/_jsx(AnimatePresence,{children:overlay.visible&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{HfSG4WHcm:{offsetX:141.5,offsetY:-119.96875},WPoaGmYBq:{collisionDetection:false,collisionDetectionPadding:undefined,offsetX:-.5,offsetY:117.36456298828125,placement:\"top\"}},children:/*#__PURE__*/_jsx(Floating,{alignment:\"center\",anchorRef:ref12,className:cx(scopingClassNames),collisionDetection:true,collisionDetectionPadding:20,\"data-framer-portal-id\":\"1y56h4g\",offsetX:-240.5,offsetY:-157.8958282470703,onDismiss:overlay.hide,placement:\"bottom\",safeArea:false,zIndex:11,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{HfSG4WHcm:{y:undefined},jhgstC6MA:{y:10335.25},WPoaGmYBq:{width:\"323px\",y:undefined}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:148,width:\"427px\",y:10610.249999999998,children:/*#__PURE__*/_jsx(Container,{animate:animation42,className:\"framer-1wakem9-container\",exit:animation41,initial:animation43,ref:ref13,role:\"dialog\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{WPoaGmYBq:{variant:\"SzeLgjTGl\"}},children:/*#__PURE__*/_jsx(Overlay,{AJM6gbA_l:getLocalizedValue(\"v65\",activeLocale)??\"Merci et \\xe0 bient\\xf4t sur Cirkkle !\",height:\"100%\",id:\"Op4MRyPCM\",layoutId:\"Op4MRyPCM\",LBMEDJRxu:getLocalizedValue(\"v64\",activeLocale)??\"Votre email a bien \\xe9t\\xe9 pris en compte\",style:{height:\"100%\",width:\"100%\"},variant:\"Qys556uHS\",width:\"100%\"})})})})})})})})]})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{WPoaGmYBq:{children:getLocalizedValue(\"v67\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{className:\"framer-styles-preset-mu2yjw\",\"data-styles-preset\":\"FpLI7nOAW\",children:[/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"rgb(166, 166, 166)\"},children:\"En vous inscrivant, vous acceptez notre\"}),/*#__PURE__*/_jsx(\"br\",{}),/*#__PURE__*/_jsx(Link,{href:\"https://www.cirkkle.com/politique-de-protection-des-donnees-personnels\",nodeId:\"eVHBtlEy8\",openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(\"a\",{children:/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"rgb(166, 166, 166)\"},children:\"Politique de protection des donn\\xe9es personnelles\"})})})]})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v66\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{className:\"framer-styles-preset-mu2yjw\",\"data-styles-preset\":\"FpLI7nOAW\",children:[/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"rgb(166, 166, 166)\"},children:\"En vous inscrivant, vous acceptez notre\"}),/*#__PURE__*/_jsx(\"br\",{}),/*#__PURE__*/_jsx(Link,{href:\"https://www.cirkkle.com/politique-de-protection-des-donnees-personnels\",nodeId:\"eVHBtlEy8\",openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(\"a\",{children:/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"rgb(166, 166, 166)\"},children:\"Politique de protection des donn\\xe9es personnelles\"})})})]})}),className:\"framer-8urqok\",\"data-framer-name\":\"En vous inscrivant, vous acceptez notre\\u2028Politique de protection des donn\\xe9es personnelles\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]})]})]})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-st49j\",\"data-framer-name\":\"Clients\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{HfSG4WHcm:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(11795.283),src:\"https://framerusercontent.com/images/BPcbLsQ3nhevMskC9gXfPhf6ws.png\"}},jhgstC6MA:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(10663.65),src:\"https://framerusercontent.com/images/BPcbLsQ3nhevMskC9gXfPhf6ws.png\"}},WPoaGmYBq:{background:{alt:\"\",fit:\"fill\",src:\"https://framerusercontent.com/images/BPcbLsQ3nhevMskC9gXfPhf6ws.png\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(10938.649999999998),src:\"https://framerusercontent.com/images/BPcbLsQ3nhevMskC9gXfPhf6ws.png\"},className:\"framer-1c8759e\",\"data-framer-name\":\"La FRENCH TECH\"})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-zfa3j2\",\"data-framer-name\":\"Bpifrance\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{HfSG4WHcm:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(11836.983),src:\"https://framerusercontent.com/images/Cqwc1ictcFGjJ9GRWTN5QWfo.png\"}},jhgstC6MA:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(10705.35),src:\"https://framerusercontent.com/images/Cqwc1ictcFGjJ9GRWTN5QWfo.png\"}},WPoaGmYBq:{background:{alt:\"\",fit:\"fill\",src:\"https://framerusercontent.com/images/Cqwc1ictcFGjJ9GRWTN5QWfo.png\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(10980.349999999999),src:\"https://framerusercontent.com/images/Cqwc1ictcFGjJ9GRWTN5QWfo.png\"},className:\"framer-1g87m83\",\"data-framer-name\":\"Bipfrance Image\",transformTemplate:transformTemplate3})})})]})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{HfSG4WHcm:{y:11941.983},jhgstC6MA:{y:10810.35},WPoaGmYBq:{y:undefined}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:424,width:\"100vw\",y:11085.349999999999,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1rsk24u-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{WPoaGmYBq:{variant:\"OTpEVqviB\"}},children:/*#__PURE__*/_jsx(Footer,{height:\"100%\",id:\"uf5G_N33q\",layoutId:\"uf5G_N33q\",style:{width:\"100%\"},variant:\"u3ExrRKod\",width:\"100%\"})})})})})]})]}),/*#__PURE__*/_jsx(HTMLStyle,{value:\"html body { background: var(--token-6a1a0986-cdb9-4a75-af01-ff60009b14ac, rgb(252, 251, 248)); }\"}),/*#__PURE__*/_jsx(\"div\",{id:\"overlay\"})]})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-BKmf1.framer-bu4pd2, .framer-BKmf1 .framer-bu4pd2 { display: block; }\",\".framer-BKmf1.framer-1t3nvjz { align-content: center; align-items: center; background-color: var(--token-6a1a0986-cdb9-4a75-af01-ff60009b14ac, #fcfbf8); display: flex; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 1800px; }\",\".framer-BKmf1 .framer-1rttt3c-container { flex: none; height: auto; left: 0px; position: absolute; top: 0px; width: auto; z-index: 1; }\",\".framer-BKmf1 .framer-14c8qqq-container { flex: none; height: auto; left: 60px; position: fixed; top: 0px; width: auto; z-index: 4; }\",\".framer-BKmf1 .framer-ojis5j-container { flex: none; height: auto; left: 0px; position: fixed; right: 0px; top: 0px; z-index: 3; }\",\".framer-BKmf1 .framer-1e0fe0f { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-BKmf1 .framer-9ciho { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: 1075px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-BKmf1 .framer-ex4ilv { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 764px; justify-content: center; overflow: visible; padding: 0px; pointer-events: none; position: relative; width: 1px; z-index: 1; }\",\".framer-BKmf1 .framer-1ykog5w { flex: none; height: 764px; max-width: 839px; overflow: visible; position: relative; width: 100%; }\",\".framer-BKmf1 .framer-1m3dopj { aspect-ratio: 0.9474665792922674 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 717px); left: 50%; overflow: visible; position: absolute; top: 50%; transform: translate(-50%, -50%); width: 81%; }\",\".framer-BKmf1 .framer-qspbx8 { flex: none; height: 106%; overflow: visible; position: absolute; right: 0px; top: -44px; width: 86%; }\",\".framer-BKmf1 .framer-f7mc2c { flex: none; height: 78%; left: calc(31.116485288190265% - 116.88835147118097% / 2); overflow: hidden; position: absolute; top: calc(51.32136994506254% - 78.28683550941741% / 2); width: 117%; z-index: 1; }\",\".framer-BKmf1 .framer-zl9edr { background-color: #f8934a; border-bottom-left-radius: 100%; border-bottom-right-radius: 100%; border-top-left-radius: 100%; border-top-right-radius: 100%; flex: none; height: 14%; left: calc(79.7241379310345% - 12.24368275862069% / 2); position: absolute; top: calc(31.58730158730161% - 14.089952380952381% / 2); width: 12%; }\",\".framer-BKmf1 .framer-7t2af1 { flex: none; height: 111%; left: calc(49.92679355783311% - 113.0307467057101% / 2); overflow: visible; position: absolute; top: calc(54.3771043771044% - 111.11111111111111% / 2); width: 113%; }\",\".framer-BKmf1 .framer-zl5n91 { flex: none; height: 93%; left: calc(25.312374042724727% - 84.64328899637243% / 2); overflow: hidden; position: absolute; top: calc(52.56401812775171% - 93.44714333822523% / 2); width: 85%; }\",\".framer-BKmf1 .framer-14sjr1c { background-color: #ebf3f0; border-bottom-left-radius: 100%; border-bottom-right-radius: 100%; border-top-left-radius: 100%; border-top-right-radius: 100%; flex: none; height: 46%; left: calc(67.04761904761907% - 65.46666666666667% / 2); position: absolute; top: calc(22.872340425531938% - 45.704787234042556% / 2); width: 65%; z-index: 0; }\",\".framer-BKmf1 .framer-1db6u0z { background-color: #368b8b; border-bottom-left-radius: 100%; border-bottom-right-radius: 100%; border-top-left-radius: 100%; border-top-right-radius: 100%; flex: none; height: 61%; left: calc(43.42857142857145% - 87.12704761904762% / 2); position: absolute; top: calc(69.4148936170213% - 60.82672872340426% / 2); width: 87%; z-index: 0; }\",\".framer-BKmf1 .framer-1m97itu { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; height: min-content; justify-content: space-between; left: 60%; overflow: visible; padding: 0px; position: absolute; top: 64%; transform: translate(-50%, -50%); width: 145px; z-index: 1; }\",\".framer-BKmf1 .framer-1m7hjqi { -webkit-backdrop-filter: blur(5px); backdrop-filter: blur(5px); background-color: rgba(242, 242, 242, 0.2); border-bottom-left-radius: 3px; border-bottom-right-radius: 3px; border-top-left-radius: 3px; border-top-right-radius: 3px; bottom: -7px; flex: none; height: 41px; left: -8px; position: absolute; width: 147px; }\",\".framer-BKmf1 .framer-1kftyek { --border-bottom-width: 1px; --border-color: #efefef; --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; align-content: flex-start; align-items: flex-start; background-color: #ffffff; border-bottom-left-radius: 3px; border-bottom-right-radius: 3px; border-top-left-radius: 3px; border-top-right-radius: 3px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: 44px; justify-content: center; overflow: visible; padding: 0px 10px 0px 10px; position: relative; width: min-content; z-index: 1; }\",\".framer-BKmf1 .framer-m6q1hg { aspect-ratio: 1 / 1; background-color: #368b8b; border-bottom-left-radius: 100%; border-bottom-right-radius: 100%; border-top-left-radius: 100%; border-top-right-radius: 100%; flex: none; height: var(--framer-aspect-ratio-supported, 33px); position: absolute; right: 12px; top: 5px; width: 33px; z-index: 1; }\",\".framer-BKmf1 .framer-xx3euf { flex: none; height: 19px; left: calc(51.64551732099514% - 23px / 2); position: absolute; top: calc(48.607545713877784% - 19px / 2); width: 23px; }\",\".framer-BKmf1 .framer-1p2evd6 { --framer-paragraph-spacing: 0px; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 125px; word-break: break-word; word-wrap: break-word; }\",\".framer-BKmf1 .framer-wa60sa, .framer-BKmf1 .framer-gw93hl, .framer-BKmf1 .framer-we03m2, .framer-BKmf1 .framer-8urqok { --framer-paragraph-spacing: 0px; flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-BKmf1 .framer-unfvkv { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 89px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px 0px 0px 20px; position: relative; width: 1px; }\",\".framer-BKmf1 .framer-z7cj0j { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 31px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; z-index: 1; }\",\".framer-BKmf1 .framer-u4rq4u, .framer-BKmf1 .framer-19voqfs { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-BKmf1 .framer-10pjb9b { flex: none; height: 87px; overflow: hidden; position: relative; width: 313px; }\",\".framer-BKmf1 .framer-tujacp { aspect-ratio: 3.5977011494252875 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 87px); left: 0px; overflow: hidden; position: absolute; right: 0px; top: 0px; z-index: 1; }\",\".framer-BKmf1 .framer-cqqu2m { flex: none; height: 101%; left: -1px; position: absolute; top: 0px; width: 100%; }\",\".framer-BKmf1 .framer-18uzep8 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-BKmf1 .framer-pzjx6 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-BKmf1 .framer-1qno7wn { --framer-paragraph-spacing: 0px; flex: 1 0 0px; height: auto; position: relative; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; }\",\".framer-BKmf1 .framer-1hnfnpt { --framer-paragraph-spacing: 0px; flex: none; height: 79px; max-width: 458.72px; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-BKmf1 .framer-1e4kiml { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 22px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-BKmf1 .framer-7iy8w2-container { flex: none; height: auto; position: relative; width: auto; }\",\".framer-BKmf1 .framer-lymqn2-container { flex: none; height: 48px; position: relative; width: auto; }\",\".framer-BKmf1 .framer-vwqs31, .framer-BKmf1 .framer-17rgi8r, .framer-BKmf1 .framer-aracps { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-BKmf1 .framer-xoce5i { flex: none; height: 104px; left: -89px; overflow: hidden; position: absolute; top: -33px; width: 122px; z-index: 1; }\",\".framer-BKmf1 .framer-ba59ku { background-color: #368b8b; border-bottom-left-radius: 9px; border-bottom-right-radius: 9px; border-top-left-radius: 9px; border-top-right-radius: 9px; flex: none; height: 69px; left: 0px; position: absolute; right: 0px; text-decoration: none; top: 1px; }\",\".framer-BKmf1 .framer-16ri2jb { --framer-paragraph-spacing: 0px; flex: none; height: auto; left: 49%; position: absolute; top: 49%; transform: translate(-50%, -50%); white-space: pre-wrap; width: 100px; word-break: break-word; word-wrap: break-word; }\",\".framer-BKmf1 .framer-et95pk { bottom: 0px; flex: none; height: 49px; left: calc(48.36065573770494% - 59px / 2); position: absolute; width: 59px; }\",\".framer-BKmf1 .framer-1nujf1x { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-BKmf1 .framer-1rochg8 { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-BKmf1 .framer-bhfnru { align-content: flex-start; align-items: flex-start; border-bottom-left-radius: 12px; border-bottom-right-radius: 12px; border-top-left-radius: 12px; border-top-right-radius: 12px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 26px 54px 26px 54px; position: relative; width: min-content; will-change: var(--framer-will-change-override, transform); }\",\".framer-BKmf1 .framer-vljbqd { align-content: center; align-items: center; background-color: #1a1d1c; border-bottom-left-radius: 5px; border-bottom-right-radius: 5px; border-top-left-radius: 5px; border-top-right-radius: 5px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; overflow: hidden; padding: 11px 14px 11px 14px; position: relative; text-decoration: none; width: 160px; will-change: var(--framer-will-change-override, transform); }\",\".framer-BKmf1 .framer-1r4fdpa { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 26px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 114px; }\",\".framer-BKmf1 .framer-16zk1a5, .framer-BKmf1 .framer-1scd4xg { flex: none; height: 25px; overflow: hidden; position: relative; width: 26px; }\",\".framer-BKmf1 .framer-1tjyjt5, .framer-BKmf1 .framer-g608r { bottom: 0px; flex: none; left: calc(50.00000000000002% - 25px / 2); position: absolute; top: 0px; width: 25px; }\",\".framer-BKmf1 .framer-2ip53k { flex: none; height: 19px; overflow: hidden; position: relative; width: 69px; }\",\".framer-BKmf1 .framer-9ywkvp, .framer-BKmf1 .framer-w78sje { --framer-paragraph-spacing: 0px; -webkit-user-select: none; flex: none; height: auto; left: 49%; position: absolute; top: 47%; transform: translate(-50%, -50%); user-select: none; white-space: pre; width: auto; }\",\".framer-BKmf1 .framer-1c11jzy { align-content: center; align-items: center; background-color: #1a1d1c; border-bottom-left-radius: 5px; border-bottom-right-radius: 5px; border-top-left-radius: 5px; border-top-right-radius: 5px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; overflow: hidden; padding: 11px 14px 11px 14px; position: relative; width: 160px; will-change: var(--framer-will-change-override, transform); }\",\".framer-BKmf1 .framer-1gt2p9o { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 26px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 128px; }\",\".framer-BKmf1 .framer-1gf7gp { flex: none; height: 19px; overflow: hidden; position: relative; width: 83px; }\",\".framer-BKmf1 .framer-1saz5v3 { flex: none; height: 96px; position: relative; width: 96px; }\",\".framer-BKmf1 .framer-go5s5c { flex: none; height: 403px; left: 387px; overflow: hidden; position: absolute; top: -88px; width: 463px; }\",\".framer-BKmf1 .framer-1uxm02m { bottom: 17px; flex: none; height: 92px; overflow: hidden; position: absolute; right: -12px; width: 343px; }\",\".framer-BKmf1 .framer-12r6hzd { bottom: 0px; flex: none; height: 50px; left: calc(48.1049562682216% - 329px / 2); position: absolute; width: 329px; }\",\".framer-BKmf1 .framer-14f54us { flex: none; height: 91px; left: calc(50.145772594752216% - 342px / 2); position: absolute; top: calc(50.00000000000002% - 91px / 2); width: 342px; }\",\".framer-BKmf1 .framer-1uzp2lj { flex: none; height: 144px; left: calc(48.38012958963285% - 446px / 2); position: absolute; top: calc(18.85856079404469% - 144px / 2); width: 446px; }\",\".framer-BKmf1 .framer-118gqcm { bottom: 118px; flex: none; height: 109px; left: -342px; overflow: hidden; position: absolute; width: 341px; }\",\".framer-BKmf1 .framer-kgghf8 { flex: none; height: 89px; left: calc(49.853372434017615% - 340px / 2); position: absolute; top: calc(50.00000000000002% - 89px / 2); width: 340px; z-index: 0; }\",\".framer-BKmf1 .framer-1clxl0i { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; max-width: 1400px; overflow: visible; padding: 100px 24px 0px 24px; position: relative; width: 100%; }\",\".framer-BKmf1 .framer-1wobufo { align-content: center; align-items: center; background-color: #f3ece2; border-bottom-left-radius: 30px; border-bottom-right-radius: 30px; border-top-left-radius: 30px; border-top-right-radius: 30px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: hidden; padding: 150px 40px 150px 40px; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-BKmf1 .framer-rw28dl { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; max-width: 1101px; overflow: visible; padding: 0px; position: relative; width: 1px; z-index: 2; }\",\".framer-BKmf1 .framer-7eme8v, .framer-BKmf1 .framer-691lyp, .framer-BKmf1 .framer-ykpezj, .framer-BKmf1 .framer-1uj4p7b, .framer-BKmf1 .framer-wzox1h, .framer-BKmf1 .framer-11o766h, .framer-BKmf1 .framer-5qntep, .framer-BKmf1 .framer-1ku43rn, .framer-BKmf1 .framer-1h3whu7, .framer-BKmf1 .framer-1a1bhq2, .framer-BKmf1 .framer-74hvwu, .framer-BKmf1 .framer-1cadqxz, .framer-BKmf1 .framer-17cqrkq, .framer-BKmf1 .framer-1hxkytp, .framer-BKmf1 .framer-1u4j69a, .framer-BKmf1 .framer-od7eyj, .framer-BKmf1 .framer-1cvt4e, .framer-BKmf1 .framer-rsoa2f { --framer-paragraph-spacing: 0px; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-BKmf1 .framer-1tsd87i { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-BKmf1 .framer-gt2itx { --framer-paragraph-spacing: 0px; flex: none; height: auto; max-width: 397px; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-BKmf1 .framer-1c3ema7 { --framer-paragraph-spacing: 0px; flex: none; height: auto; max-width: 416px; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-BKmf1 .framer-wqc9u0-container { flex: none; height: 100%; position: absolute; right: -731px; top: 0px; width: 1292px; z-index: 1; }\",\".framer-BKmf1 .framer-n2e0q5 { background: linear-gradient(270deg, rgba(84, 84, 84, 0) 48.1981981981982%, rgb(243, 236, 226) 100%); bottom: 0px; flex: none; left: 0px; overflow: hidden; position: absolute; right: 0px; top: 0px; z-index: 1; }\",\".framer-BKmf1 .framer-9auifm { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 26px; height: min-content; justify-content: flex-start; overflow: visible; padding: 32px 0px 0px 0px; position: relative; width: 100%; }\",\".framer-BKmf1 .framer-i8vjwb { --border-bottom-width: 1px; --border-color: var(--token-5e6960ae-1fda-4ec0-96be-d3a246e71d2b, #ebf3f3); --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; align-content: center; align-items: center; background-color: #f6f7f8; border-bottom-left-radius: 30px; border-bottom-right-radius: 30px; border-top-left-radius: 30px; border-top-right-radius: 30px; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; height: 379px; justify-content: space-between; overflow: hidden; padding: 10px 20px 20px 20px; position: relative; width: 1px; will-change: var(--framer-will-change-override, transform); }\",\".framer-BKmf1 .framer-1wjfmih { flex: none; height: 175px; overflow: hidden; position: relative; width: 100%; }\",\".framer-BKmf1 .framer-19fvs8y { aspect-ratio: 1 / 1; background-color: #f6781c; border-bottom-left-radius: 100%; border-bottom-right-radius: 100%; border-top-left-radius: 100%; border-top-right-radius: 100%; flex: none; height: var(--framer-aspect-ratio-supported, 4px); left: 109px; position: absolute; top: 66px; width: 4px; z-index: 1; }\",\".framer-BKmf1 .framer-24lnj7 { aspect-ratio: 1 / 1; background-color: #f6781c; border-bottom-left-radius: 100%; border-bottom-right-radius: 100%; border-top-left-radius: 100%; border-top-right-radius: 100%; flex: none; height: var(--framer-aspect-ratio-supported, 4px); left: 27px; position: absolute; top: 33px; width: 4px; z-index: 1; }\",\".framer-BKmf1 .framer-i65yyc { aspect-ratio: 1 / 1; background-color: #f6781c; border-bottom-left-radius: 100%; border-bottom-right-radius: 100%; border-top-left-radius: 100%; border-top-right-radius: 100%; flex: none; height: var(--framer-aspect-ratio-supported, 4px); left: 343px; position: absolute; top: 56px; width: 4px; z-index: 1; }\",\".framer-BKmf1 .framer-16zt2te { flex: none; height: 120px; left: -24px; position: absolute; top: -22px; width: 457px; }\",\".framer-BKmf1 .framer-1s2yirp { bottom: 20px; flex: none; height: 113px; left: calc(50.08147400771501% - 94px / 2); overflow: hidden; position: absolute; width: 94px; z-index: 2; }\",\".framer-BKmf1 .framer-1t09qbs { flex: none; height: 112px; left: calc(50.00000000000002% - 93px / 2); position: absolute; top: calc(49.557522123893825% - 112px / 2); width: 93px; }\",\".framer-BKmf1 .framer-uc7pyv { flex: none; height: 45px; left: calc(50.00000000000002% - 33px / 2); position: absolute; top: calc(45.13274336283188% - 45px / 2); width: 33px; }\",\".framer-BKmf1 .framer-hfsdxl, .framer-BKmf1 .framer-b9k5ah, .framer-BKmf1 .framer-ufcrwi { align-content: flex-start; align-items: flex-start; background-color: rgba(255, 255, 255, 0.5); border-bottom-left-radius: 20px; border-bottom-right-radius: 20px; border-top-left-radius: 20px; border-top-right-radius: 20px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 8px; height: 181px; justify-content: flex-start; overflow: visible; padding: 20px; position: relative; width: 100%; }\",\".framer-BKmf1 .framer-17jc7tn { --framer-paragraph-spacing: 0px; -webkit-user-select: none; flex: none; height: auto; max-width: 329.33px; position: relative; user-select: none; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-BKmf1 .framer-pigbcv, .framer-BKmf1 .framer-vbpcp5 { --framer-paragraph-spacing: 0px; -webkit-user-select: none; flex: none; height: 42px; position: relative; user-select: none; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-BKmf1 .framer-1h5c0cs { --border-bottom-width: 1px; --border-color: var(--token-5e6960ae-1fda-4ec0-96be-d3a246e71d2b, #ebf3f3); --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; align-content: center; align-items: center; background-color: #f6f7f8; border-bottom-left-radius: 30px; border-bottom-right-radius: 30px; border-top-left-radius: 30px; border-top-right-radius: 30px; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; height: 379px; justify-content: space-between; overflow: hidden; padding: 0px 20px 20px 20px; position: relative; width: 1px; will-change: var(--framer-will-change-override, transform); }\",\".framer-BKmf1 .framer-1536qtw { flex: none; height: 165px; overflow: hidden; position: relative; width: 100%; }\",\".framer-BKmf1 .framer-ygy1g8 { flex: none; height: 131px; left: 0px; overflow: hidden; position: absolute; right: 0px; top: 0px; }\",\".framer-BKmf1 .framer-1bd4uh0, .framer-BKmf1 .framer-o7u9d7, .framer-BKmf1 .framer-15z2i0r { bottom: 0px; flex: none; left: 0px; position: absolute; right: 0px; top: 0px; }\",\".framer-BKmf1 .framer-dmspub { bottom: 4px; flex: none; height: 26px; position: absolute; right: -37px; width: 153px; }\",\".framer-BKmf1 .framer-1a4x2kl { aspect-ratio: 1 / 1; background-color: #f6781c; border-bottom-left-radius: 100%; border-bottom-right-radius: 100%; border-top-left-radius: 100%; border-top-right-radius: 100%; bottom: 50px; flex: none; height: var(--framer-aspect-ratio-supported, 4px); left: 60px; position: absolute; width: 4px; }\",\".framer-BKmf1 .framer-o1z1ib { aspect-ratio: 1 / 1; background-color: #f6781c; border-bottom-left-radius: 100%; border-bottom-right-radius: 100%; border-top-left-radius: 100%; border-top-right-radius: 100%; flex: none; height: var(--framer-aspect-ratio-supported, 4px); left: 83%; position: absolute; top: 24%; transform: translate(-50%, -50%); width: 4px; }\",\".framer-BKmf1 .framer-16tw0j3 { aspect-ratio: 1 / 1; background-color: #f6781c; border-bottom-left-radius: 100%; border-bottom-right-radius: 100%; border-top-left-radius: 100%; border-top-right-radius: 100%; bottom: 2px; flex: none; height: var(--framer-aspect-ratio-supported, 4px); left: 373px; position: absolute; width: 4px; }\",\".framer-BKmf1 .framer-13kdzzw { bottom: 0px; flex: none; height: 94px; left: calc(49.01098901098903% - 189px / 2); overflow: hidden; position: absolute; width: 189px; }\",\".framer-BKmf1 .framer-llqc1k { flex: none; height: 27px; left: 141px; position: absolute; top: 17px; width: 44px; }\",\".framer-BKmf1 .framer-1qz410g { flex: none; height: 71px; left: calc(49.735449735449755% - 118px / 2); position: absolute; top: 0px; width: 118px; }\",\".framer-BKmf1 .framer-9bmsem { flex: none; height: 27px; left: 0px; position: absolute; top: 13px; width: 44px; }\",\".framer-BKmf1 .framer-tpw7g0 { bottom: 0px; flex: none; height: 9px; position: absolute; right: 0px; width: 15px; }\",\".framer-BKmf1 .framer-1lc38e9 { bottom: 12px; flex: none; height: 12px; left: 0px; position: absolute; width: 20px; }\",\".framer-BKmf1 .framer-jz4nk { flex: none; height: 29px; left: calc(49.20634920634922% - 38px / 2); position: absolute; top: 26px; width: 38px; }\",\".framer-BKmf1 .framer-qnmd16 { --framer-paragraph-spacing: 0px; -webkit-user-select: none; flex: none; height: auto; position: relative; user-select: none; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-BKmf1 .framer-8npd84 { --framer-paragraph-spacing: 0px; -webkit-user-select: none; flex: none; height: 61px; position: relative; user-select: none; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-BKmf1 .framer-1om7j0f { --border-bottom-width: 1px; --border-color: var(--token-5e6960ae-1fda-4ec0-96be-d3a246e71d2b, #ebf3f3); --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; align-content: flex-start; align-items: flex-start; background-color: #f6f7f8; border-bottom-left-radius: 30px; border-bottom-right-radius: 30px; border-top-left-radius: 30px; border-top-right-radius: 30px; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; height: 379px; justify-content: space-between; overflow: hidden; padding: 0px 20px 20px 20px; position: relative; width: 1px; will-change: var(--framer-will-change-override, transform); }\",\".framer-BKmf1 .framer-14i8a9p { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 153px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-BKmf1 .framer-1ifnu9r { flex: none; height: 153px; left: calc(42.966138106896715% - 447px / 2); overflow: hidden; position: absolute; top: calc(49.67320261437911% - 153px / 2); width: 447px; z-index: 1; }\",\".framer-BKmf1 .framer-1i18ko2 { flex: none; height: 114px; left: 0px; position: absolute; right: 0px; top: 2px; }\",\".framer-BKmf1 .framer-2ibm5d { bottom: 54px; flex: none; height: 20px; left: 106px; position: absolute; width: 20px; }\",\".framer-BKmf1 .framer-81otby { flex: none; height: 20px; left: 296px; position: absolute; top: 55px; width: 19px; }\",\".framer-BKmf1 .framer-8qatzn { flex: none; height: 44px; left: 226px; position: absolute; top: calc(50.98039215686276% - 44px / 2); width: 43px; }\",\".framer-BKmf1 .framer-4jfy9n { bottom: 39px; flex: none; height: 13px; left: 282px; position: absolute; width: 13px; }\",\".framer-BKmf1 .framer-1stlz6j { bottom: 42px; flex: none; height: 13px; left: 375px; position: absolute; width: 12px; }\",\".framer-BKmf1 .framer-1bygarh { flex: none; height: 54px; left: 119px; position: absolute; top: 41px; width: 65px; }\",\".framer-BKmf1 .framer-cko5qm { flex: none; height: 14px; left: 145px; position: absolute; top: 53px; width: 15px; }\",\".framer-BKmf1 .framer-gvx4db { flex: none; height: 14px; left: 342px; position: absolute; top: 12px; width: 15px; }\",\".framer-BKmf1 .framer-s3j180 { bottom: 14px; flex: none; height: 37px; left: calc(46.532438478747224% - 54px / 2); position: absolute; width: 54px; }\",\".framer-BKmf1 .framer-1m7wxvr { bottom: 40px; flex: none; height: 34px; left: 168px; overflow: hidden; position: absolute; width: 34px; }\",\".framer-BKmf1 .framer-enfnjf { bottom: 34px; flex: none; height: 41px; left: 163px; position: absolute; width: 40px; }\",\".framer-BKmf1 .framer-25eaxz { bottom: 5px; flex: none; height: 17px; left: calc(47.651006711409416% - 16px / 2); position: absolute; width: 16px; }\",\".framer-BKmf1 .framer-1e615bp { flex: none; height: 16px; left: calc(46.308724832214786% - 17px / 2); position: absolute; top: 29px; width: 17px; }\",\".framer-BKmf1 .framer-1c8ipkz { aspect-ratio: 1 / 1; background-color: #e2e2e2; border-bottom-left-radius: 100%; border-bottom-right-radius: 100%; border-top-left-radius: 100%; border-top-right-radius: 100%; flex: none; height: var(--framer-aspect-ratio-supported, 5px); left: 117px; position: absolute; top: 39px; width: 5px; }\",\".framer-BKmf1 .framer-13dqpan { aspect-ratio: 1 / 1; background-color: #e2e2e2; border-bottom-left-radius: 100%; border-bottom-right-radius: 100%; border-top-left-radius: 100%; border-top-right-radius: 100%; flex: none; height: var(--framer-aspect-ratio-supported, 5px); left: 152px; position: absolute; top: 4px; width: 5px; }\",\".framer-BKmf1 .framer-dk0hac { aspect-ratio: 1 / 1; background-color: #e2e2e2; border-bottom-left-radius: 100%; border-bottom-right-radius: 100%; border-top-left-radius: 100%; border-top-right-radius: 100%; flex: none; height: var(--framer-aspect-ratio-supported, 5px); left: 304px; position: absolute; top: 1px; width: 5px; }\",\".framer-BKmf1 .framer-188vy7g { aspect-ratio: 1 / 1; background-color: #e2e2e2; border-bottom-left-radius: 100%; border-bottom-right-radius: 100%; border-top-left-radius: 100%; border-top-right-radius: 100%; bottom: 10px; flex: none; height: var(--framer-aspect-ratio-supported, 5px); left: 53%; position: absolute; transform: translateX(-50%); width: 5px; }\",\".framer-BKmf1 .framer-11wl78h { aspect-ratio: 1 / 1; background-color: #e2e2e2; border-bottom-left-radius: 100%; border-bottom-right-radius: 100%; border-top-left-radius: 100%; border-top-right-radius: 100%; bottom: 3px; flex: none; height: var(--framer-aspect-ratio-supported, 5px); left: 303px; position: absolute; width: 5px; }\",\".framer-BKmf1 .framer-1vjpxog { aspect-ratio: 1 / 1; background-color: #e2e2e2; border-bottom-left-radius: 100%; border-bottom-right-radius: 100%; border-top-left-radius: 100%; border-top-right-radius: 100%; bottom: 33px; flex: none; height: var(--framer-aspect-ratio-supported, 5px); left: 300px; position: absolute; width: 5px; }\",\".framer-BKmf1 .framer-1a7xadx { aspect-ratio: 1 / 1; background-color: #e2e2e2; border-bottom-left-radius: 100%; border-bottom-right-radius: 100%; border-top-left-radius: 100%; border-top-right-radius: 100%; bottom: 62px; flex: none; height: var(--framer-aspect-ratio-supported, 5px); left: 440px; position: absolute; width: 5px; }\",\".framer-BKmf1 .framer-6vlnja { aspect-ratio: 1 / 1; background-color: #e2e2e2; border-bottom-left-radius: 100%; border-bottom-right-radius: 100%; border-top-left-radius: 100%; border-top-right-radius: 100%; flex: none; height: var(--framer-aspect-ratio-supported, 6px); left: 66px; position: absolute; top: 48px; width: 5px; }\",\".framer-BKmf1 .framer-12esn8 { bottom: 7px; flex: none; height: 44px; left: 302px; position: absolute; width: 92px; }\",\".framer-BKmf1 .framer-1ekfdgp { flex: none; height: 18px; left: 411px; position: absolute; top: 31px; width: 17px; }\",\".framer-BKmf1 .framer-7ql7r4 { bottom: 0px; flex: none; height: 14px; left: 349px; position: absolute; width: 14px; }\",\".framer-BKmf1 .framer-1qhxiyz { --framer-paragraph-spacing: 0px; -webkit-user-select: none; flex: none; height: auto; max-width: 291.33px; position: relative; user-select: none; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-BKmf1 .framer-1sd9hnf-container, .framer-BKmf1 .framer-187phdt-container, .framer-BKmf1 .framer-1k2k740-container { align-self: stretch; flex: 1 0 0px; height: auto; position: relative; width: 1px; }\",\".framer-BKmf1 .framer-1vynwle { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: hidden; padding: 120px 24px 104px 24px; position: relative; width: 100%; }\",\".framer-BKmf1 .framer-hrbpd8-container { flex: 1 0 0px; height: 300px; position: relative; width: 1px; }\",\".framer-BKmf1 .framer-1pu5csh { bottom: -193px; flex: none; height: 354px; left: 0px; overflow: hidden; position: absolute; right: 0px; z-index: 1; }\",\".framer-BKmf1 .framer-18mm8hq { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; left: 50%; overflow: visible; padding: 0px; position: absolute; top: 39%; transform: translate(-50%, -50%); width: 100%; }\",\".framer-BKmf1 .framer-byh2rf, .framer-BKmf1 .framer-1bpycot { flex: none; height: 96px; position: relative; width: 100%; }\",\".framer-BKmf1 .framer-106flot, .framer-BKmf1 .framer-dvbum4, .framer-BKmf1 .framer-ma96jx, .framer-BKmf1 .framer-13go6r1, .framer-BKmf1 .framer-3if3p5 { flex: none; height: 26px; position: relative; width: 100%; }\",\".framer-BKmf1 .framer-12oqgrk { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 100px; height: min-content; justify-content: center; max-width: 1440px; overflow: visible; padding: 0px 0px 0px 20px; position: relative; width: 100%; }\",\".framer-BKmf1 .framer-1rz7goz { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 100vh; justify-content: center; overflow: visible; padding: 0px; position: sticky; top: 0px; width: 1px; will-change: transform; z-index: 1; }\",\".framer-BKmf1 .framer-z2vpik-container { flex: 1 0 0px; height: 100vh; position: relative; width: 1px; z-index: 1; }\",\".framer-BKmf1 .framer-1jct1qs-container { flex: none; height: 260px; position: absolute; right: -80px; top: calc(49.95348837209305% - 260px / 2); width: 5px; z-index: 1; }\",\".framer-BKmf1 .framer-1fj9c42 { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1px; z-index: 1; }\",\".framer-BKmf1 .framer-sy5fed { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 302px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-BKmf1 .framer-idfayu, .framer-BKmf1 .framer-1x4benk, .framer-BKmf1 .framer-bcofek { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: 100vh; justify-content: center; overflow: visible; padding: 0px 32px 0px 32px; position: relative; width: 100%; }\",\".framer-BKmf1 .framer-1aypy4e, .framer-BKmf1 .framer-1q8reb2, .framer-BKmf1 .framer-bq5ks6 { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 1px; z-index: 1; }\",\".framer-BKmf1 .framer-58xypp, .framer-BKmf1 .framer-39tah7 { --framer-paragraph-spacing: 0px; flex: none; height: auto; max-width: 465px; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; z-index: 1; }\",\".framer-BKmf1 .framer-1wgntsp { aspect-ratio: 1.226932668329177 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 496px); left: 45%; min-width: 350px; overflow: visible; position: absolute; top: -23%; transform: translate(-50%, -50%); width: 102%; }\",\".framer-BKmf1 .framer-88qzza { background-color: #f6f7f8; border-bottom-left-radius: 13px; border-bottom-right-radius: 13px; border-top-left-radius: 13px; border-top-right-radius: 13px; flex: none; height: 111%; left: calc(49.59349593495937% - 42.62865853658537% / 2); position: absolute; top: calc(47.88029925187035% - 110.74389027431421% / 2); width: 43%; }\",\".framer-BKmf1 .framer-4sff24 { background-color: #f6781c; border-bottom-left-radius: 100%; border-bottom-right-radius: 100%; border-top-left-radius: 100%; border-top-right-radius: 100%; flex: none; height: 13%; left: calc(75.50372830501534% - 10.563399279835899% / 2); position: absolute; top: calc(33.90630960093487% - 12.967145189643237% / 2); width: 11%; }\",\".framer-BKmf1 .framer-1shr33v { flex: none; height: 33%; left: calc(22.764227642276445% - 29.67479674796748% / 2); position: absolute; top: calc(32.66832917705738% - 33.16708229426434% / 2); width: 30%; }\",\".framer-BKmf1 .framer-stp6h5 { background-color: #ffffff; border-bottom-left-radius: 8px; border-bottom-right-radius: 8px; border-top-left-radius: 8px; border-top-right-radius: 8px; box-shadow: 0px 0.6021873017743928px 0.6021873017743928px -0.41666666666666663px rgba(0, 0, 0, 0.03), 0px 2.288533303243457px 2.288533303243457px -0.8333333333333333px rgba(0, 0, 0, 0.03644), 0px 10px 10px -1.25px rgba(0, 0, 0, 0.075); flex: none; height: 350px; left: 0px; overflow: hidden; position: absolute; right: 0px; top: calc(46.61016949152545% - 350px / 2); will-change: var(--framer-will-change-override, transform); }\",\".framer-BKmf1 .framer-1x7nbft { --framer-paragraph-spacing: 0px; flex: none; height: auto; max-width: 425px; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; z-index: 1; }\",\".framer-BKmf1 .framer-8m0kzp { --framer-paragraph-spacing: 0px; flex: none; height: auto; max-width: 413px; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; z-index: 1; }\",\".framer-BKmf1 .framer-1e8y9mp { aspect-ratio: 1.226932668329177 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 495px); left: 45%; min-width: 350px; overflow: visible; position: absolute; top: -36%; transform: translate(-50%, -50%); width: 102%; }\",\".framer-BKmf1 .framer-eo5dae { background-color: #f6f7f8; border-bottom-left-radius: 13px; border-bottom-right-radius: 13px; border-top-left-radius: 13px; border-top-right-radius: 13px; flex: none; height: 111%; left: calc(49.796747967479696% - 42.68292682926829% / 2); position: absolute; top: calc(48.129675810473834% - 110.72319201995013% / 2); width: 43%; }\",\".framer-BKmf1 .framer-12ik1tq { background-color: #368b8b; border-bottom-left-radius: 100%; border-bottom-right-radius: 100%; border-top-left-radius: 100%; border-top-right-radius: 100%; flex: none; height: 13%; left: calc(75.50372830501534% - 10.563399279835899% / 2); position: absolute; top: calc(33.90630960093487% - 12.967145189643237% / 2); width: 11%; }\",\".framer-BKmf1 .framer-ij67s0 { flex: none; height: 42%; left: calc(21.34146341463417% - 31.097560975609756% / 2); position: absolute; top: calc(35.16209476309229% - 41.64588528678304% / 2); width: 31%; }\",\".framer-BKmf1 .framer-1hsglti { background-color: #ffffff; border-bottom-left-radius: 8px; border-bottom-right-radius: 8px; border-top-left-radius: 8px; border-top-right-radius: 8px; box-shadow: 0px 0.6021873017743928px 0.6021873017743928px -0.41666666666666663px rgba(0, 0, 0, 0.03), 0px 2.288533303243457px 2.288533303243457px -0.8333333333333333px rgba(0, 0, 0, 0.03644), 0px 10px 10px -1.25px rgba(0, 0, 0, 0.075); flex: none; height: 346px; left: 0px; overflow: hidden; position: absolute; right: 0px; top: calc(46.489104116222784% - 346px / 2); will-change: var(--framer-will-change-override, transform); }\",\".framer-BKmf1 .framer-em8xz3 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 40px; height: 100vh; justify-content: flex-start; overflow: visible; padding: 0px 32px 0px 32px; position: relative; width: 100%; }\",\".framer-BKmf1 .framer-1i93vf9 { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 1px; z-index: 0; }\",\".framer-BKmf1 .framer-1spqwud, .framer-BKmf1 .framer-17in5wh { --framer-paragraph-spacing: 0px; flex: none; height: auto; max-width: 317px; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; z-index: 1; }\",\".framer-BKmf1 .framer-1lpffs6 { aspect-ratio: 1.226932668329177 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 495px); left: 45%; min-width: 350px; overflow: visible; position: absolute; top: -8%; transform: translate(-50%, -50%); width: 102%; }\",\".framer-BKmf1 .framer-1ogjb5i { background-color: #f6f7f8; border-bottom-left-radius: 13px; border-bottom-right-radius: 13px; border-top-left-radius: 13px; border-top-right-radius: 13px; flex: none; height: 111%; left: calc(49.59349593495937% - 42.47967479674797% / 2); position: absolute; top: calc(47.88029925187035% - 110.72319201995013% / 2); width: 42%; }\",\".framer-BKmf1 .framer-1g5cghj { background-color: #f6781c; border-bottom-left-radius: 100%; border-bottom-right-radius: 100%; border-top-left-radius: 100%; border-top-right-radius: 100%; flex: none; height: 13%; left: calc(75.1747360248192% - 10.563399279835899% / 2); position: absolute; top: calc(34.30995614380314% - 12.967145189643237% / 2); width: 11%; }\",\".framer-BKmf1 .framer-pcmdbb { flex: none; height: 31%; left: calc(19.081552251376444% - 27.635351536476193% / 2); overflow: hidden; position: absolute; top: calc(30.878960529422827% - 31.48443034372521% / 2); width: 28%; }\",\".framer-BKmf1 .framer-1mdl7wk { flex: none; height: 100%; left: calc(50.00000000000002% - 99.28571428571429% / 2); position: absolute; top: calc(50.00000000000002% - 99.79679487179487% / 2); width: 99%; }\",\".framer-BKmf1 .framer-i1x10c { background-color: #ffffff; border-bottom-left-radius: 8px; border-bottom-right-radius: 8px; border-top-left-radius: 8px; border-top-right-radius: 8px; box-shadow: 0px 0.6021873017743928px 0.6021873017743928px -0.41666666666666663px rgba(0, 0, 0, 0.03), 0px 2.288533303243457px 2.288533303243457px -0.8333333333333333px rgba(0, 0, 0, 0.03644), 0px 10px 10px -1.25px rgba(0, 0, 0, 0.075); flex: none; height: 358px; left: 0px; overflow: hidden; position: absolute; right: 0px; top: calc(46.61016949152545% - 358px / 2); will-change: var(--framer-will-change-override, transform); }\",\".framer-BKmf1 .framer-1bsr0kz, .framer-BKmf1 .framer-1w8jksg { --framer-paragraph-spacing: 0px; flex: none; height: auto; max-width: 374px; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; z-index: 1; }\",\".framer-BKmf1 .framer-1k9oxf1 { aspect-ratio: 1.229426433915212 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 495px); left: 45%; min-width: 350px; overflow: visible; position: absolute; top: -10%; transform: translate(-50%, -50%); width: 102%; }\",\".framer-BKmf1 .framer-1mrdm0e { background-color: #f6f7f8; border-bottom-left-radius: 13px; border-bottom-right-radius: 13px; border-top-left-radius: 13px; border-top-right-radius: 13px; flex: none; height: 111%; left: calc(49.89858012170388% - 42.5421906693712% / 2); position: absolute; top: calc(47.88029925187035% - 110.74389027431421% / 2); width: 43%; }\",\".framer-BKmf1 .framer-7qthoe { background-color: #368b8b; border-bottom-left-radius: 100%; border-bottom-right-radius: 100%; border-top-left-radius: 100%; border-top-right-radius: 100%; flex: none; height: 13%; left: calc(75.50372830501534% - 10.530500051816285% / 2); position: absolute; top: calc(34.178216139803084% - 12.842110798091683% / 2); width: 11%; }\",\".framer-BKmf1 .framer-1b6jrei { flex: none; height: 30%; left: calc(19.269776876267773% - 27.180527383367142% / 2); position: absolute; top: calc(28.927680798005014% - 29.67581047381546% / 2); width: 27%; }\",\".framer-BKmf1 .framer-uutxn4 { background-color: #ffffff; border-bottom-left-radius: 8px; border-bottom-right-radius: 8px; border-top-left-radius: 8px; border-top-right-radius: 8px; box-shadow: 0px 0.6021873017743928px 0.6021873017743928px -0.41666666666666663px rgba(0, 0, 0, 0.03), 0px 2.288533303243457px 2.288533303243457px -0.8333333333333333px rgba(0, 0, 0, 0.03644), 0px 10px 10px -1.25px rgba(0, 0, 0, 0.075); flex: none; height: 326px; left: 0px; overflow: hidden; position: absolute; right: 0px; top: calc(46.61016949152545% - 326px / 2); will-change: var(--framer-will-change-override, transform); }\",\".framer-BKmf1 .framer-1fz4yj1 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: hidden; padding: 80px 60px 88px 60px; position: relative; width: 100%; }\",\".framer-BKmf1 .framer-1hi1j47 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 4px; height: min-content; justify-content: center; max-width: 1400px; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-BKmf1 .framer-1ymt0fq { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; height: min-content; justify-content: space-between; overflow: visible; padding: 0px; position: relative; width: 100%; z-index: 2; }\",\".framer-BKmf1 .framer-wgpbxt { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: 204px; justify-content: center; overflow: visible; padding: 0px 0px 0px 120px; position: relative; width: 1px; }\",\".framer-BKmf1 .framer-taucnn, .framer-BKmf1 .framer-om1c9z { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-BKmf1 .framer-rnm12r, .framer-BKmf1 .framer-1fprqs2, .framer-BKmf1 .framer-aw0ih8 { --framer-paragraph-spacing: 0px; flex: none; height: auto; position: relative; white-space: pre; width: auto; z-index: 1; }\",\".framer-BKmf1 .framer-1uhw0d5 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px 0px 1px 0px; position: relative; width: min-content; }\",\".framer-BKmf1 .framer-1jdb7dj { flex: none; height: 134px; left: -5px; overflow: hidden; position: absolute; top: -41px; width: 141px; }\",\".framer-BKmf1 .framer-9h69l { aspect-ratio: 1 / 1; background-color: #ebf3f3; border-bottom-left-radius: 100%; border-bottom-right-radius: 100%; border-top-left-radius: 100%; border-top-right-radius: 100%; bottom: 0px; flex: none; position: absolute; right: 0px; top: 0px; width: var(--framer-aspect-ratio-supported, 134px); }\",\".framer-BKmf1 .framer-pnlsc7 { aspect-ratio: 1 / 1; background-color: #368b8b; border-bottom-left-radius: 100%; border-bottom-right-radius: 100%; border-top-left-radius: 100%; border-top-right-radius: 100%; flex: none; height: var(--framer-aspect-ratio-supported, 31px); left: 0px; position: absolute; top: 18px; width: 31px; }\",\".framer-BKmf1 .framer-rgdxkq { aspect-ratio: 1 / 1; background-color: #f8934a; border-bottom-left-radius: 100%; border-bottom-right-radius: 100%; border-top-left-radius: 100%; border-top-right-radius: 100%; flex: none; height: var(--framer-aspect-ratio-supported, 11px); left: 104px; position: absolute; top: 5px; width: 11px; }\",\".framer-BKmf1 .framer-bfs2ll { aspect-ratio: 1.4699248120300752 / 1; flex: 1 0 0px; height: var(--framer-aspect-ratio-supported, 435px); max-width: 847px; min-width: 536px; overflow: visible; position: relative; width: 1px; }\",\".framer-BKmf1 .framer-1i6lvl6 { background-color: #f6f7f8; border-bottom-left-radius: 100%; border-bottom-right-radius: 100%; border-top-left-radius: 100%; border-top-right-radius: 100%; flex: none; height: 204px; left: calc(52.066115702479365% - 204px / 2); position: absolute; top: calc(20.833333333333357% - 204px / 2); width: 204px; }\",\".framer-BKmf1 .framer-iym5u2 { -webkit-filter: drop-shadow(0px 4px 8px rgba(0, 0, 0, 0.15)); filter: drop-shadow(0px 4px 8px rgba(0, 0, 0, 0.15)); flex: none; height: 98%; left: calc(50.00000000000002% - 99.84015345268543% / 2); position: absolute; top: calc(50.75187969924815% - 97.85093984962407% / 2); width: 100%; }\",\".framer-BKmf1 .framer-d7f8r7 { background-color: #f8934a; border-bottom-left-radius: 100%; border-bottom-right-radius: 100%; border-top-left-radius: 100%; border-top-right-radius: 100%; flex: none; height: 20px; left: calc(61.865407319952794% - 20px / 2); position: absolute; top: calc(9.548611111111132% - 20px / 2); width: 20px; }\",\".framer-BKmf1 .framer-pf9qw6 { flex: none; height: 7%; left: calc(33.6481700118064% - 3.659976387249114% / 2); overflow: hidden; position: absolute; top: calc(3.2973688731849506% - 6.941829206705114% / 2); width: 4%; }\",\".framer-BKmf1 .framer-ryaaba { flex: none; height: 97%; left: calc(48.38709677419358% - 96.72032258064517% / 2); position: absolute; top: calc(50.00000000000002% - 97.45825% / 2); width: 97%; }\",\".framer-BKmf1 .framer-17jet63 { flex: none; height: 6%; left: calc(37.07201889020073% - 3.187721369539551% / 2); overflow: hidden; position: absolute; top: calc(2.7767316826820676% - 5.900554825699346% / 2); width: 3%; }\",\".framer-BKmf1 .framer-1gfp5tv { flex: none; height: 96%; left: calc(48.14814814814817% - 96.23444444444445% / 2); position: absolute; top: calc(47.05882352941179% - 95.53911764705883% / 2); width: 96%; }\",\".framer-BKmf1 .framer-1wihvhr { flex: none; height: 3%; left: calc(31.52302243211336% - 3.896103896103896% / 2); overflow: hidden; position: absolute; top: calc(6.594737746369879% - 3.2973688731849284% / 2); width: 4%; }\",\".framer-BKmf1 .framer-1gbk725 { flex: none; height: 97%; left: calc(48.484848484848506% - 95.15151515151514% / 2); position: absolute; top: calc(47.36842105263161% - 96.8421052631579% / 2); width: 95%; }\",\".framer-BKmf1 .framer-1ejt2wf { flex: none; height: 33%; left: calc(27.272727272727295% - 27.863046044864227% / 2); overflow: hidden; position: absolute; top: calc(83.33333333333336% - 32.8125% / 2); width: 28%; z-index: -1; }\",\".framer-BKmf1 .framer-1aipruh { align-content: flex-start; align-items: flex-start; border-bottom-left-radius: 30px; border-bottom-right-radius: 30px; border-top-left-radius: 30px; border-top-right-radius: 30px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 1px; height: 268px; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; z-index: 1; }\",\".framer-BKmf1 .framer-9lmhyr { --border-bottom-width: 0px; --border-color: rgba(0, 0, 0, 0.2); --border-left-width: 0px; --border-right-width: 1px; --border-style: solid; --border-top-width: 0px; align-content: flex-start; align-items: flex-start; background-color: #ffffff; border-bottom-left-radius: 10px; border-top-left-radius: 10px; box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.05); display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 22px; height: 100%; justify-content: flex-start; overflow: hidden; padding: 40px; position: relative; width: 1px; will-change: var(--framer-will-change-override, transform); }\",\".framer-BKmf1 .framer-jmy3la, .framer-BKmf1 .framer-7fxcr { flex: none; height: 61px; position: relative; width: 61px; }\",\".framer-BKmf1 .framer-w9n4tg, .framer-BKmf1 .framer-16nftov, .framer-BKmf1 .framer-4nkn69, .framer-BKmf1 .framer-r5x8l2 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-BKmf1 .framer-182c0qk { --border-bottom-width: 0px; --border-color: rgba(0, 0, 0, 0.2); --border-left-width: 0px; --border-right-width: 1px; --border-style: solid; --border-top-width: 0px; align-content: flex-start; align-items: flex-start; background-color: #ffffff; box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.05); display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 18px; height: 100%; justify-content: flex-start; overflow: visible; padding: 40px; position: relative; width: 1px; }\",\".framer-BKmf1 .framer-1oz7p4d { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: 66px; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 61px; }\",\".framer-BKmf1 .framer-1d8f27z { flex: none; height: 61px; overflow: hidden; position: relative; width: 100%; }\",\".framer-BKmf1 .framer-1eyl0qq { bottom: 0px; flex: none; left: calc(50.00000000000002% - 61px / 2); position: absolute; top: 0px; width: 61px; }\",\".framer-BKmf1 .framer-1b9sjwn { flex: none; height: 27px; left: 42px; overflow: hidden; position: absolute; top: 0px; width: 31px; z-index: 1; }\",\".framer-BKmf1 .framer-13kltd8 { align-content: flex-start; align-items: flex-start; background-color: #ffffff; border-bottom-right-radius: 10px; border-top-right-radius: 10px; box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.05); display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 23px; height: 100%; justify-content: flex-start; overflow: hidden; padding: 40px; position: relative; width: 1px; will-change: var(--framer-will-change-override, transform); }\",\".framer-BKmf1 .framer-1o1cp7w { align-content: center; align-items: center; bottom: 0px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: 178px; justify-content: center; left: 0px; overflow: hidden; padding: 0px; position: absolute; right: 0px; }\",\".framer-BKmf1 .framer-nmacv8 { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 1px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-BKmf1 .framer-12zgvz7 { flex: none; height: 27px; position: relative; width: 1513px; }\",\".framer-BKmf1 .framer-11iusxi { flex: none; height: 26px; position: relative; width: 1513px; }\",\".framer-BKmf1 .framer-1p4lx4a { background: linear-gradient(180deg, #fcfbf8 0.12382257264107466%, rgba(252, 251, 248, 0.4399999976158142) 100%); bottom: 0px; flex: none; left: 0px; position: absolute; right: 0px; top: 0px; z-index: 0; }\",\".framer-BKmf1 .framer-u1ixp2 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 90px; height: min-content; justify-content: flex-start; overflow: visible; padding: 120px 60px 120px 60px; position: relative; width: 100%; }\",\".framer-BKmf1 .framer-1t73t04 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 100px; height: min-content; justify-content: center; max-width: 1400px; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-BKmf1 .framer-58a1cu { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-BKmf1 .framer-111quxc { --framer-paragraph-spacing: 0px; flex: none; height: auto; max-width: 564px; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-BKmf1 .framer-1j4ihwr { bottom: -383px; flex: none; height: 377px; left: calc(50.00000000000002% - 100% / 2); position: absolute; width: 100%; z-index: 1; }\",\".framer-BKmf1 .framer-16iqv7m { align-content: center; align-items: center; aspect-ratio: 1.9914651493598863 / 1; border-bottom-left-radius: 13px; border-bottom-right-radius: 13px; border-top-left-radius: 13px; border-top-right-radius: 13px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: var(--framer-aspect-ratio-supported, 703px); justify-content: flex-end; overflow: hidden; padding: 0px; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); z-index: 1; }\",\".framer-BKmf1 .framer-17h7fx7-container { flex: 1 0 0px; height: 100%; position: relative; width: 1px; z-index: 2; }\",\".framer-BKmf1 .framer-z09321 { flex: none; height: 101px; left: calc(17.000000000000025% - 143px / 2); overflow: visible; position: absolute; top: calc(49.928876244665744% - 101px / 2); width: 143px; z-index: 1; }\",\".framer-BKmf1 .framer-1t6z0ra-container, .framer-BKmf1 .framer-yqoxji-container { bottom: -1px; flex: none; left: 0px; position: absolute; right: -1px; top: 0px; }\",\".framer-BKmf1 .framer-173hcns { flex: none; height: 81px; left: calc(53.35714285714288% - 117px / 2); overflow: visible; position: absolute; top: calc(44.096728307254644% - 81px / 2); width: 117px; z-index: 1; }\",\".framer-BKmf1 .framer-1911urh { flex: none; height: 98px; left: calc(21.85714285714288% - 232.933px / 2); overflow: visible; position: absolute; top: calc(58.74822190611666% - 97.9833px / 2); width: 233px; z-index: 1; }\",\".framer-BKmf1 .framer-1a7z51e { bottom: -14px; flex: none; height: 41px; overflow: hidden; position: absolute; right: -14px; width: 40px; z-index: 1; }\",\".framer-BKmf1 .framer-1n00mj5 { flex: none; height: 40px; left: calc(47.50000000000002% - 39px / 2); position: absolute; top: calc(48.78048780487807% - 40px / 2); width: 39px; }\",\".framer-BKmf1 .framer-h4hqwr { -webkit-backdrop-filter: blur(2px); backdrop-filter: blur(2px); background-color: rgba(242, 242, 242, 0.2); border-bottom-left-radius: 3px; border-bottom-right-radius: 3px; border-top-left-radius: 3px; border-top-right-radius: 3px; flex: none; height: 89px; left: 7px; position: absolute; top: 9px; width: 226px; }\",\".framer-BKmf1 .framer-11sicm0 { align-content: center; align-items: center; background-color: #ffffff; border-bottom-left-radius: 6px; border-bottom-right-radius: 6px; border-top-left-radius: 6px; border-top-right-radius: 6px; box-shadow: 7px 7px 24px 0px rgba(0, 0, 0, 0.17); display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 90px; justify-content: center; left: 0px; overflow: visible; padding: 10px; position: absolute; top: 0px; width: 224px; }\",\".framer-BKmf1 .framer-1qar8n5 { --framer-paragraph-spacing: 0px; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 204px; word-break: break-word; word-wrap: break-word; }\",\".framer-BKmf1 .framer-1ntniw7 { flex: none; height: 52px; left: calc(50.07142857142859% - 159px / 2); overflow: visible; position: absolute; top: calc(49.928876244665744% - 52.45px / 2); width: 159px; z-index: 1; }\",\".framer-BKmf1 .framer-1oyqajj { -webkit-backdrop-filter: blur(2px); backdrop-filter: blur(2px); background-color: rgba(242, 242, 242, 0.2); border-bottom-left-radius: 3px; border-bottom-right-radius: 3px; border-top-left-radius: 3px; border-top-right-radius: 3px; flex: none; height: 41px; left: 5px; position: absolute; top: 12px; width: 148px; }\",\".framer-BKmf1 .framer-1x322c8 { --border-bottom-width: 0.5px; --border-color: #efefef; --border-left-width: 0.5px; --border-right-width: 0.5px; --border-style: solid; --border-top-width: 0.5px; align-content: center; align-items: center; background-color: #ffffff; border-bottom-left-radius: 3px; border-bottom-right-radius: 3px; border-top-left-radius: 3px; border-top-right-radius: 3px; box-shadow: 0px 4px 8px 0px rgba(0, 0, 0, 0.29); display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; height: min-content; justify-content: space-between; left: 0px; overflow: visible; padding: 0px 10px 0px 10px; position: absolute; top: 0px; width: 159px; }\",\".framer-BKmf1 .framer-1vgs20u { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: 44px; justify-content: center; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-BKmf1 .framer-fm4zof { aspect-ratio: 1 / 1; background-color: #f8934a; border-bottom-left-radius: 100%; border-bottom-right-radius: 100%; border-top-left-radius: 100%; border-top-right-radius: 100%; flex: none; height: var(--framer-aspect-ratio-supported, 33px); left: 99%; position: absolute; top: 98%; transform: translate(-50%, -50%); width: 33px; z-index: 1; }\",\".framer-BKmf1 .framer-13r2min { flex: none; height: 19px; left: calc(51.64551732099514% - 24px / 2); position: absolute; top: calc(48.607545713877784% - 19px / 2); width: 24px; }\",\".framer-BKmf1 .framer-erk4kj { -webkit-backdrop-filter: blur(5px); backdrop-filter: blur(5px); background-color: rgba(0, 0, 0, 0.15); bottom: 0px; flex: none; left: 1px; overflow: hidden; position: absolute; right: 0px; top: 0px; }\",\".framer-BKmf1 .framer-12ncq1j { align-content: flex-start; align-items: flex-start; border-bottom-left-radius: 13px; border-bottom-right-radius: 13px; border-top-left-radius: 13px; border-top-right-radius: 13px; box-shadow: 0px 4px 14px 0px rgba(0, 0, 0, 0.02); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 1px; height: 100%; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 386px; }\",\".framer-BKmf1 .framer-vaeppi { --border-bottom-width: 1px; --border-color: rgba(0, 0, 0, 0.2); --border-left-width: 0px; --border-right-width: 0px; --border-style: solid; --border-top-width: 0px; align-content: flex-start; align-items: flex-start; background-color: #ffffff; border-top-left-radius: 10px; border-top-right-radius: 10px; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 15px; height: 1px; justify-content: center; overflow: hidden; padding: 20px 40px 20px 40px; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-BKmf1 .framer-1g0lacg { --border-bottom-width: 1px; --border-color: rgba(0, 0, 0, 0.2); --border-left-width: 0px; --border-right-width: 0px; --border-style: solid; --border-top-width: 0px; align-content: flex-start; align-items: flex-start; background-color: #ffffff; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 15px; height: 1px; justify-content: center; overflow: hidden; padding: 20px 40px 20px 40px; position: relative; width: 100%; }\",\".framer-BKmf1 .framer-1n0y37b { align-content: flex-start; align-items: flex-start; background-color: #ffffff; border-bottom-left-radius: 10px; border-bottom-right-radius: 10px; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 15px; height: 1px; justify-content: center; overflow: hidden; padding: 20px 40px 20px 40px; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-BKmf1 .framer-wvw4f1 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: visible; padding: 80px 0px 80px 0px; position: relative; width: 100%; }\",\".framer-BKmf1 .framer-i04yr4 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 84px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; z-index: 1; }\",\".framer-BKmf1 .framer-q9ag27 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; max-width: 332px; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-BKmf1 .framer-9bd6gx { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: 423px; justify-content: center; max-width: 415px; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-BKmf1 .framer-37i5ce { --border-bottom-width: 1px; --border-color: #ebf3f3; --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; align-content: center; align-items: center; background-color: #ffffff; border-top-left-radius: 30px; border-top-right-radius: 30px; box-shadow: 5px 13px 60px 0px rgba(33, 39, 39, 0.02); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: 50%; justify-content: center; left: 0px; padding: 0px; position: absolute; right: 0px; top: 0px; }\",\".framer-BKmf1 .framer-gcefe3 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 2px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 399px; }\",\".framer-BKmf1 .framer-kboejh { --framer-paragraph-spacing: 0px; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 337px; word-break: break-word; word-wrap: break-word; }\",\".framer-BKmf1 .framer-11mp7jw { --framer-paragraph-spacing: 0px; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 408px; word-break: break-word; word-wrap: break-word; }\",\".framer-BKmf1 .framer-kcfx8y { --border-bottom-width: 1px; --border-color: #ebf3f3; --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; align-content: center; align-items: center; background-color: #ebf3f3; border-bottom-left-radius: 30px; border-bottom-right-radius: 30px; bottom: 0px; box-shadow: 5px 13px 60px 0px rgba(33, 39, 39, 0.02); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: 50%; justify-content: center; left: 0px; padding: 0px 10px 0px 10px; position: absolute; right: 0px; }\",\".framer-BKmf1 .framer-1vqirzy { flex: none; height: 4px; position: relative; width: 423px; }\",\".framer-BKmf1 .framer-13qtp57 { flex: none; height: 414px; left: calc(50.00000000000002% - 82.22222222222221% / 2); overflow: visible; position: absolute; top: calc(63.05170239596472% - 414px / 2); width: 82%; }\",\".framer-BKmf1 .framer-onuoop { flex: none; height: 208px; left: calc(79.45945945945948% - 609px / 2); overflow: visible; position: absolute; top: calc(25.120772946859926% - 208px / 2); width: 609px; }\",\".framer-BKmf1 .framer-6dozae { flex: none; height: 207px; left: calc(49.91789819376029% - 608px / 2); position: absolute; top: calc(50.00000000000002% - 207px / 2); width: 608px; }\",\".framer-BKmf1 .framer-je1vg8 { flex: none; height: 43px; position: absolute; right: 31px; top: -19px; width: 43px; }\",\".framer-BKmf1 .framer-1nmjhg9 { flex: none; height: 43px; left: calc(51.231527093596085% - 43px / 2); position: absolute; top: 104px; width: 43px; }\",\".framer-BKmf1 .framer-1tbsojm { flex: none; height: 207px; left: calc(20.60810810810813% - 610px / 2); overflow: visible; position: absolute; top: calc(74.87922705314011% - 207px / 2); width: 610px; }\",\".framer-BKmf1 .framer-1g6rh18 { flex: none; height: 206px; left: calc(50.00000000000002% - 609px / 2); position: absolute; top: calc(49.75845410628021% - 206px / 2); width: 609px; }\",\".framer-BKmf1 .framer-3lyvon { flex: none; height: 43px; left: calc(51.311475409836085% - 43px / 2); position: absolute; top: calc(71.01449275362322% - 43px / 2); width: 43px; }\",\".framer-BKmf1 .framer-1qol94e { flex: none; height: 43px; left: calc(28.032786885245926% - 43px / 2); position: absolute; top: calc(37.68115942028988% - 43px / 2); width: 43px; }\",\".framer-BKmf1 .framer-1o82sm0 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 761px; justify-content: center; left: 0px; overflow: hidden; padding: 0px; position: absolute; right: 0px; top: calc(63.55398942864336% - 761px / 2); }\",\".framer-BKmf1 .framer-wgoura-container { flex: 1 0 0px; height: 100%; position: relative; width: 1px; }\",\".framer-BKmf1 .framer-furxm0 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: visible; padding: 189px 24px 0px 24px; position: relative; width: 100%; z-index: 1; }\",\".framer-BKmf1 .framer-1ynjckk { align-content: center; align-items: center; background-color: #f3ece2; border-bottom-left-radius: 30px; border-bottom-right-radius: 30px; border-top-left-radius: 30px; border-top-right-radius: 30px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 30px; height: min-content; justify-content: flex-start; max-width: 1400px; overflow: visible; padding: 30px; position: relative; width: 100%; }\",\".framer-BKmf1 .framer-18u0bpe { flex: none; height: 192px; overflow: hidden; position: absolute; right: 119px; top: -186px; width: 237px; z-index: 1; }\",\".framer-BKmf1 .framer-t0uslf { flex: none; height: 191px; left: calc(49.789029535865005% - 236px / 2); position: absolute; top: calc(50.00000000000002% - 191px / 2); width: 236px; }\",\".framer-BKmf1 .framer-1fglgs { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 484px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-BKmf1 .framer-bhf6p { border-bottom-left-radius: 30px; border-bottom-right-radius: 30px; border-top-left-radius: 30px; border-top-right-radius: 30px; bottom: 0px; flex: none; left: 0px; overflow: hidden; position: absolute; right: 0px; top: 0px; will-change: var(--framer-will-change-override, transform); z-index: 1; }\",\".framer-BKmf1 .framer-ir0pc0 { align-content: flex-start; align-items: flex-start; border-bottom-left-radius: 13px; border-bottom-right-radius: 13px; border-top-left-radius: 13px; border-top-right-radius: 13px; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: center; overflow: visible; padding: 62px 69px 62px 69px; position: relative; width: 1px; }\",\".framer-BKmf1 .framer-quiyba { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 12px; height: min-content; justify-content: center; max-width: 333px; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-BKmf1 .framer-9gj4li { --framer-paragraph-spacing: 0px; flex: none; height: auto; max-width: 285px; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-BKmf1 .framer-1evv59d { align-content: center; align-items: center; background-color: #ffffff; border-bottom-left-radius: 6px; border-bottom-right-radius: 6px; border-top-left-radius: 6px; border-top-right-radius: 6px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; max-width: 374px; overflow: hidden; padding: 8px 5px 8px 5px; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-BKmf1 .framer-1y56h4g-container, .framer-BKmf1 .framer-1rsk24u-container { flex: none; height: auto; position: relative; width: 100%; }\",\".framer-BKmf1 .framer-1wakem9-container { height: 148px; position: relative; width: 427px; }\",\".framer-BKmf1 .framer-st49j { align-content: flex-end; align-items: flex-end; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 137px; height: min-content; justify-content: center; overflow: hidden; padding: 47px 0px 60px 0px; position: relative; width: 100%; }\",\".framer-BKmf1 .framer-1c8759e { aspect-ratio: 3.2338709776783867 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 87px); position: relative; width: 280px; }\",\".framer-BKmf1 .framer-zfa3j2 { flex: none; height: 63px; overflow: visible; position: relative; width: 234px; }\",\".framer-BKmf1 .framer-1g87m83 { aspect-ratio: 3.739130796462039 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 58px); left: 50%; position: absolute; top: 18px; transform: translateX(-50%); width: 216px; }\",\"@supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-BKmf1.framer-1t3nvjz, .framer-BKmf1 .framer-1e0fe0f, .framer-BKmf1 .framer-9ciho, .framer-BKmf1 .framer-ex4ilv, .framer-BKmf1 .framer-1kftyek, .framer-BKmf1 .framer-unfvkv, .framer-BKmf1 .framer-z7cj0j, .framer-BKmf1 .framer-u4rq4u, .framer-BKmf1 .framer-18uzep8, .framer-BKmf1 .framer-pzjx6, .framer-BKmf1 .framer-1e4kiml, .framer-BKmf1 .framer-vwqs31, .framer-BKmf1 .framer-1nujf1x, .framer-BKmf1 .framer-1rochg8, .framer-BKmf1 .framer-bhfnru, .framer-BKmf1 .framer-vljbqd, .framer-BKmf1 .framer-1r4fdpa, .framer-BKmf1 .framer-1c11jzy, .framer-BKmf1 .framer-1gt2p9o, .framer-BKmf1 .framer-1clxl0i, .framer-BKmf1 .framer-1wobufo, .framer-BKmf1 .framer-rw28dl, .framer-BKmf1 .framer-1tsd87i, .framer-BKmf1 .framer-9auifm, .framer-BKmf1 .framer-hfsdxl, .framer-BKmf1 .framer-b9k5ah, .framer-BKmf1 .framer-14i8a9p, .framer-BKmf1 .framer-ufcrwi, .framer-BKmf1 .framer-1vynwle, .framer-BKmf1 .framer-17rgi8r, .framer-BKmf1 .framer-18mm8hq, .framer-BKmf1 .framer-12oqgrk, .framer-BKmf1 .framer-1rz7goz, .framer-BKmf1 .framer-1fj9c42, .framer-BKmf1 .framer-sy5fed, .framer-BKmf1 .framer-idfayu, .framer-BKmf1 .framer-1aypy4e, .framer-BKmf1 .framer-1x4benk, .framer-BKmf1 .framer-1q8reb2, .framer-BKmf1 .framer-em8xz3, .framer-BKmf1 .framer-1i93vf9, .framer-BKmf1 .framer-bcofek, .framer-BKmf1 .framer-bq5ks6, .framer-BKmf1 .framer-1fz4yj1, .framer-BKmf1 .framer-1hi1j47, .framer-BKmf1 .framer-wgpbxt, .framer-BKmf1 .framer-taucnn, .framer-BKmf1 .framer-1uhw0d5, .framer-BKmf1 .framer-om1c9z, .framer-BKmf1 .framer-1aipruh, .framer-BKmf1 .framer-9lmhyr, .framer-BKmf1 .framer-w9n4tg, .framer-BKmf1 .framer-182c0qk, .framer-BKmf1 .framer-1oz7p4d, .framer-BKmf1 .framer-16nftov, .framer-BKmf1 .framer-13kltd8, .framer-BKmf1 .framer-4nkn69, .framer-BKmf1 .framer-1o1cp7w, .framer-BKmf1 .framer-nmacv8, .framer-BKmf1 .framer-u1ixp2, .framer-BKmf1 .framer-1t73t04, .framer-BKmf1 .framer-aracps, .framer-BKmf1 .framer-58a1cu, .framer-BKmf1 .framer-r5x8l2, .framer-BKmf1 .framer-16iqv7m, .framer-BKmf1 .framer-11sicm0, .framer-BKmf1 .framer-1vgs20u, .framer-BKmf1 .framer-12ncq1j, .framer-BKmf1 .framer-vaeppi, .framer-BKmf1 .framer-1g0lacg, .framer-BKmf1 .framer-1n0y37b, .framer-BKmf1 .framer-wvw4f1, .framer-BKmf1 .framer-i04yr4, .framer-BKmf1 .framer-q9ag27, .framer-BKmf1 .framer-9bd6gx, .framer-BKmf1 .framer-37i5ce, .framer-BKmf1 .framer-gcefe3, .framer-BKmf1 .framer-kcfx8y, .framer-BKmf1 .framer-1o82sm0, .framer-BKmf1 .framer-furxm0, .framer-BKmf1 .framer-1ynjckk, .framer-BKmf1 .framer-1fglgs, .framer-BKmf1 .framer-ir0pc0, .framer-BKmf1 .framer-quiyba, .framer-BKmf1 .framer-19voqfs, .framer-BKmf1 .framer-1evv59d, .framer-BKmf1 .framer-st49j { gap: 0px; } .framer-BKmf1.framer-1t3nvjz > *, .framer-BKmf1 .framer-u4rq4u > *, .framer-BKmf1 .framer-18uzep8 > *, .framer-BKmf1 .framer-1clxl0i > *, .framer-BKmf1 .framer-rw28dl > *, .framer-BKmf1 .framer-1tsd87i > *, .framer-BKmf1 .framer-18mm8hq > *, .framer-BKmf1 .framer-1aypy4e > *, .framer-BKmf1 .framer-1q8reb2 > *, .framer-BKmf1 .framer-1i93vf9 > *, .framer-BKmf1 .framer-bq5ks6 > *, .framer-BKmf1 .framer-w9n4tg > *, .framer-BKmf1 .framer-1oz7p4d > *, .framer-BKmf1 .framer-16nftov > *, .framer-BKmf1 .framer-4nkn69 > *, .framer-BKmf1 .framer-1o1cp7w > *, .framer-BKmf1 .framer-58a1cu > *, .framer-BKmf1 .framer-r5x8l2 > *, .framer-BKmf1 .framer-q9ag27 > *, .framer-BKmf1 .framer-37i5ce > *, .framer-BKmf1 .framer-kcfx8y > *, .framer-BKmf1 .framer-19voqfs > *, .framer-BKmf1 .framer-1evv59d > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-BKmf1.framer-1t3nvjz > :first-child, .framer-BKmf1 .framer-1e0fe0f > :first-child, .framer-BKmf1 .framer-1kftyek > :first-child, .framer-BKmf1 .framer-unfvkv > :first-child, .framer-BKmf1 .framer-z7cj0j > :first-child, .framer-BKmf1 .framer-u4rq4u > :first-child, .framer-BKmf1 .framer-18uzep8 > :first-child, .framer-BKmf1 .framer-1clxl0i > :first-child, .framer-BKmf1 .framer-rw28dl > :first-child, .framer-BKmf1 .framer-1tsd87i > :first-child, .framer-BKmf1 .framer-hfsdxl > :first-child, .framer-BKmf1 .framer-b9k5ah > :first-child, .framer-BKmf1 .framer-ufcrwi > :first-child, .framer-BKmf1 .framer-1vynwle > :first-child, .framer-BKmf1 .framer-18mm8hq > :first-child, .framer-BKmf1 .framer-sy5fed > :first-child, .framer-BKmf1 .framer-1aypy4e > :first-child, .framer-BKmf1 .framer-1q8reb2 > :first-child, .framer-BKmf1 .framer-1i93vf9 > :first-child, .framer-BKmf1 .framer-bq5ks6 > :first-child, .framer-BKmf1 .framer-1fz4yj1 > :first-child, .framer-BKmf1 .framer-1hi1j47 > :first-child, .framer-BKmf1 .framer-wgpbxt > :first-child, .framer-BKmf1 .framer-9lmhyr > :first-child, .framer-BKmf1 .framer-w9n4tg > :first-child, .framer-BKmf1 .framer-182c0qk > :first-child, .framer-BKmf1 .framer-1oz7p4d > :first-child, .framer-BKmf1 .framer-16nftov > :first-child, .framer-BKmf1 .framer-13kltd8 > :first-child, .framer-BKmf1 .framer-4nkn69 > :first-child, .framer-BKmf1 .framer-1o1cp7w > :first-child, .framer-BKmf1 .framer-u1ixp2 > :first-child, .framer-BKmf1 .framer-1t73t04 > :first-child, .framer-BKmf1 .framer-58a1cu > :first-child, .framer-BKmf1 .framer-r5x8l2 > :first-child, .framer-BKmf1 .framer-1vgs20u > :first-child, .framer-BKmf1 .framer-12ncq1j > :first-child, .framer-BKmf1 .framer-vaeppi > :first-child, .framer-BKmf1 .framer-1g0lacg > :first-child, .framer-BKmf1 .framer-1n0y37b > :first-child, .framer-BKmf1 .framer-wvw4f1 > :first-child, .framer-BKmf1 .framer-i04yr4 > :first-child, .framer-BKmf1 .framer-q9ag27 > :first-child, .framer-BKmf1 .framer-9bd6gx > :first-child, .framer-BKmf1 .framer-37i5ce > :first-child, .framer-BKmf1 .framer-gcefe3 > :first-child, .framer-BKmf1 .framer-kcfx8y > :first-child, .framer-BKmf1 .framer-furxm0 > :first-child, .framer-BKmf1 .framer-ir0pc0 > :first-child, .framer-BKmf1 .framer-quiyba > :first-child, .framer-BKmf1 .framer-19voqfs > :first-child, .framer-BKmf1 .framer-1evv59d > :first-child { margin-top: 0px; } .framer-BKmf1.framer-1t3nvjz > :last-child, .framer-BKmf1 .framer-1e0fe0f > :last-child, .framer-BKmf1 .framer-1kftyek > :last-child, .framer-BKmf1 .framer-unfvkv > :last-child, .framer-BKmf1 .framer-z7cj0j > :last-child, .framer-BKmf1 .framer-u4rq4u > :last-child, .framer-BKmf1 .framer-18uzep8 > :last-child, .framer-BKmf1 .framer-1clxl0i > :last-child, .framer-BKmf1 .framer-rw28dl > :last-child, .framer-BKmf1 .framer-1tsd87i > :last-child, .framer-BKmf1 .framer-hfsdxl > :last-child, .framer-BKmf1 .framer-b9k5ah > :last-child, .framer-BKmf1 .framer-ufcrwi > :last-child, .framer-BKmf1 .framer-1vynwle > :last-child, .framer-BKmf1 .framer-18mm8hq > :last-child, .framer-BKmf1 .framer-sy5fed > :last-child, .framer-BKmf1 .framer-1aypy4e > :last-child, .framer-BKmf1 .framer-1q8reb2 > :last-child, .framer-BKmf1 .framer-1i93vf9 > :last-child, .framer-BKmf1 .framer-bq5ks6 > :last-child, .framer-BKmf1 .framer-1fz4yj1 > :last-child, .framer-BKmf1 .framer-1hi1j47 > :last-child, .framer-BKmf1 .framer-wgpbxt > :last-child, .framer-BKmf1 .framer-9lmhyr > :last-child, .framer-BKmf1 .framer-w9n4tg > :last-child, .framer-BKmf1 .framer-182c0qk > :last-child, .framer-BKmf1 .framer-1oz7p4d > :last-child, .framer-BKmf1 .framer-16nftov > :last-child, .framer-BKmf1 .framer-13kltd8 > :last-child, .framer-BKmf1 .framer-4nkn69 > :last-child, .framer-BKmf1 .framer-1o1cp7w > :last-child, .framer-BKmf1 .framer-u1ixp2 > :last-child, .framer-BKmf1 .framer-1t73t04 > :last-child, .framer-BKmf1 .framer-58a1cu > :last-child, .framer-BKmf1 .framer-r5x8l2 > :last-child, .framer-BKmf1 .framer-1vgs20u > :last-child, .framer-BKmf1 .framer-12ncq1j > :last-child, .framer-BKmf1 .framer-vaeppi > :last-child, .framer-BKmf1 .framer-1g0lacg > :last-child, .framer-BKmf1 .framer-1n0y37b > :last-child, .framer-BKmf1 .framer-wvw4f1 > :last-child, .framer-BKmf1 .framer-i04yr4 > :last-child, .framer-BKmf1 .framer-q9ag27 > :last-child, .framer-BKmf1 .framer-9bd6gx > :last-child, .framer-BKmf1 .framer-37i5ce > :last-child, .framer-BKmf1 .framer-gcefe3 > :last-child, .framer-BKmf1 .framer-kcfx8y > :last-child, .framer-BKmf1 .framer-furxm0 > :last-child, .framer-BKmf1 .framer-ir0pc0 > :last-child, .framer-BKmf1 .framer-quiyba > :last-child, .framer-BKmf1 .framer-19voqfs > :last-child, .framer-BKmf1 .framer-1evv59d > :last-child { margin-bottom: 0px; } .framer-BKmf1 .framer-1e0fe0f > *, .framer-BKmf1 .framer-1kftyek > *, .framer-BKmf1 .framer-1vynwle > *, .framer-BKmf1 .framer-1fz4yj1 > *, .framer-BKmf1 .framer-wgpbxt > *, .framer-BKmf1 .framer-wvw4f1 > *, .framer-BKmf1 .framer-9bd6gx > *, .framer-BKmf1 .framer-furxm0 > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-BKmf1 .framer-9ciho > *, .framer-BKmf1 .framer-1wobufo > *, .framer-BKmf1 .framer-idfayu > *, .framer-BKmf1 .framer-1x4benk > *, .framer-BKmf1 .framer-bcofek > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } .framer-BKmf1 .framer-9ciho > :first-child, .framer-BKmf1 .framer-ex4ilv > :first-child, .framer-BKmf1 .framer-pzjx6 > :first-child, .framer-BKmf1 .framer-1e4kiml > :first-child, .framer-BKmf1 .framer-vwqs31 > :first-child, .framer-BKmf1 .framer-1nujf1x > :first-child, .framer-BKmf1 .framer-1rochg8 > :first-child, .framer-BKmf1 .framer-bhfnru > :first-child, .framer-BKmf1 .framer-vljbqd > :first-child, .framer-BKmf1 .framer-1r4fdpa > :first-child, .framer-BKmf1 .framer-1c11jzy > :first-child, .framer-BKmf1 .framer-1gt2p9o > :first-child, .framer-BKmf1 .framer-1wobufo > :first-child, .framer-BKmf1 .framer-9auifm > :first-child, .framer-BKmf1 .framer-14i8a9p > :first-child, .framer-BKmf1 .framer-17rgi8r > :first-child, .framer-BKmf1 .framer-12oqgrk > :first-child, .framer-BKmf1 .framer-1rz7goz > :first-child, .framer-BKmf1 .framer-1fj9c42 > :first-child, .framer-BKmf1 .framer-idfayu > :first-child, .framer-BKmf1 .framer-1x4benk > :first-child, .framer-BKmf1 .framer-em8xz3 > :first-child, .framer-BKmf1 .framer-bcofek > :first-child, .framer-BKmf1 .framer-taucnn > :first-child, .framer-BKmf1 .framer-1uhw0d5 > :first-child, .framer-BKmf1 .framer-om1c9z > :first-child, .framer-BKmf1 .framer-1aipruh > :first-child, .framer-BKmf1 .framer-nmacv8 > :first-child, .framer-BKmf1 .framer-aracps > :first-child, .framer-BKmf1 .framer-16iqv7m > :first-child, .framer-BKmf1 .framer-11sicm0 > :first-child, .framer-BKmf1 .framer-1o82sm0 > :first-child, .framer-BKmf1 .framer-1ynjckk > :first-child, .framer-BKmf1 .framer-1fglgs > :first-child, .framer-BKmf1 .framer-st49j > :first-child { margin-left: 0px; } .framer-BKmf1 .framer-9ciho > :last-child, .framer-BKmf1 .framer-ex4ilv > :last-child, .framer-BKmf1 .framer-pzjx6 > :last-child, .framer-BKmf1 .framer-1e4kiml > :last-child, .framer-BKmf1 .framer-vwqs31 > :last-child, .framer-BKmf1 .framer-1nujf1x > :last-child, .framer-BKmf1 .framer-1rochg8 > :last-child, .framer-BKmf1 .framer-bhfnru > :last-child, .framer-BKmf1 .framer-vljbqd > :last-child, .framer-BKmf1 .framer-1r4fdpa > :last-child, .framer-BKmf1 .framer-1c11jzy > :last-child, .framer-BKmf1 .framer-1gt2p9o > :last-child, .framer-BKmf1 .framer-1wobufo > :last-child, .framer-BKmf1 .framer-9auifm > :last-child, .framer-BKmf1 .framer-14i8a9p > :last-child, .framer-BKmf1 .framer-17rgi8r > :last-child, .framer-BKmf1 .framer-12oqgrk > :last-child, .framer-BKmf1 .framer-1rz7goz > :last-child, .framer-BKmf1 .framer-1fj9c42 > :last-child, .framer-BKmf1 .framer-idfayu > :last-child, .framer-BKmf1 .framer-1x4benk > :last-child, .framer-BKmf1 .framer-em8xz3 > :last-child, .framer-BKmf1 .framer-bcofek > :last-child, .framer-BKmf1 .framer-taucnn > :last-child, .framer-BKmf1 .framer-1uhw0d5 > :last-child, .framer-BKmf1 .framer-om1c9z > :last-child, .framer-BKmf1 .framer-1aipruh > :last-child, .framer-BKmf1 .framer-nmacv8 > :last-child, .framer-BKmf1 .framer-aracps > :last-child, .framer-BKmf1 .framer-16iqv7m > :last-child, .framer-BKmf1 .framer-11sicm0 > :last-child, .framer-BKmf1 .framer-1o82sm0 > :last-child, .framer-BKmf1 .framer-1ynjckk > :last-child, .framer-BKmf1 .framer-1fglgs > :last-child, .framer-BKmf1 .framer-st49j > :last-child { margin-right: 0px; } .framer-BKmf1 .framer-ex4ilv > *, .framer-BKmf1 .framer-pzjx6 > *, .framer-BKmf1 .framer-vwqs31 > *, .framer-BKmf1 .framer-1nujf1x > *, .framer-BKmf1 .framer-1rochg8 > *, .framer-BKmf1 .framer-bhfnru > *, .framer-BKmf1 .framer-1r4fdpa > *, .framer-BKmf1 .framer-1gt2p9o > *, .framer-BKmf1 .framer-14i8a9p > *, .framer-BKmf1 .framer-17rgi8r > *, .framer-BKmf1 .framer-1rz7goz > *, .framer-BKmf1 .framer-1fj9c42 > *, .framer-BKmf1 .framer-taucnn > *, .framer-BKmf1 .framer-1uhw0d5 > *, .framer-BKmf1 .framer-om1c9z > *, .framer-BKmf1 .framer-nmacv8 > *, .framer-BKmf1 .framer-aracps > *, .framer-BKmf1 .framer-16iqv7m > *, .framer-BKmf1 .framer-11sicm0 > *, .framer-BKmf1 .framer-1o82sm0 > *, .framer-BKmf1 .framer-1fglgs > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-BKmf1 .framer-unfvkv > * { margin: 0px; margin-bottom: calc(89px / 2); margin-top: calc(89px / 2); } .framer-BKmf1 .framer-z7cj0j > * { margin: 0px; margin-bottom: calc(31px / 2); margin-top: calc(31px / 2); } .framer-BKmf1 .framer-1e4kiml > * { margin: 0px; margin-left: calc(22px / 2); margin-right: calc(22px / 2); } .framer-BKmf1 .framer-vljbqd > *, .framer-BKmf1 .framer-1c11jzy > * { margin: 0px; margin-left: calc(20px / 2); margin-right: calc(20px / 2); } .framer-BKmf1 .framer-9auifm > * { margin: 0px; margin-left: calc(26px / 2); margin-right: calc(26px / 2); } .framer-BKmf1 .framer-hfsdxl > *, .framer-BKmf1 .framer-b9k5ah > *, .framer-BKmf1 .framer-ufcrwi > * { margin: 0px; margin-bottom: calc(8px / 2); margin-top: calc(8px / 2); } .framer-BKmf1 .framer-12oqgrk > * { margin: 0px; margin-left: calc(100px / 2); margin-right: calc(100px / 2); } .framer-BKmf1 .framer-sy5fed > * { margin: 0px; margin-bottom: calc(302px / 2); margin-top: calc(302px / 2); } .framer-BKmf1 .framer-em8xz3 > * { margin: 0px; margin-left: calc(40px / 2); margin-right: calc(40px / 2); } .framer-BKmf1 .framer-1hi1j47 > * { margin: 0px; margin-bottom: calc(4px / 2); margin-top: calc(4px / 2); } .framer-BKmf1 .framer-1aipruh > * { margin: 0px; margin-left: calc(1px / 2); margin-right: calc(1px / 2); } .framer-BKmf1 .framer-9lmhyr > * { margin: 0px; margin-bottom: calc(22px / 2); margin-top: calc(22px / 2); } .framer-BKmf1 .framer-182c0qk > * { margin: 0px; margin-bottom: calc(18px / 2); margin-top: calc(18px / 2); } .framer-BKmf1 .framer-13kltd8 > * { margin: 0px; margin-bottom: calc(23px / 2); margin-top: calc(23px / 2); } .framer-BKmf1 .framer-u1ixp2 > * { margin: 0px; margin-bottom: calc(90px / 2); margin-top: calc(90px / 2); } .framer-BKmf1 .framer-1t73t04 > * { margin: 0px; margin-bottom: calc(100px / 2); margin-top: calc(100px / 2); } .framer-BKmf1 .framer-1vgs20u > * { margin: 0px; margin-bottom: calc(-5px / 2); margin-top: calc(-5px / 2); } .framer-BKmf1 .framer-12ncq1j > * { margin: 0px; margin-bottom: calc(1px / 2); margin-top: calc(1px / 2); } .framer-BKmf1 .framer-vaeppi > *, .framer-BKmf1 .framer-1g0lacg > *, .framer-BKmf1 .framer-1n0y37b > * { margin: 0px; margin-bottom: calc(15px / 2); margin-top: calc(15px / 2); } .framer-BKmf1 .framer-i04yr4 > * { margin: 0px; margin-bottom: calc(84px / 2); margin-top: calc(84px / 2); } .framer-BKmf1 .framer-gcefe3 > * { margin: 0px; margin-bottom: calc(2px / 2); margin-top: calc(2px / 2); } .framer-BKmf1 .framer-1ynjckk > * { margin: 0px; margin-left: calc(30px / 2); margin-right: calc(30px / 2); } .framer-BKmf1 .framer-ir0pc0 > * { margin: 0px; margin-bottom: calc(40px / 2); margin-top: calc(40px / 2); } .framer-BKmf1 .framer-quiyba > * { margin: 0px; margin-bottom: calc(12px / 2); margin-top: calc(12px / 2); } .framer-BKmf1 .framer-st49j > * { margin: 0px; margin-left: calc(137px / 2); margin-right: calc(137px / 2); } }\",...sharedStyle.css,...sharedStyle1.css,...sharedStyle2.css,...sharedStyle3.css,...sharedStyle4.css,...sharedStyle5.css,...sharedStyle6.css,...sharedStyle7.css,'.framer-BKmf1[data-border=\"true\"]::after, .framer-BKmf1 [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); width: 100%; height: 100%; position: absolute; box-sizing: border-box; left: 0; top: 0; border-radius: inherit; pointer-events: none; }',\"@media (min-width: 1200px) and (max-width: 1799px) { .framer-BKmf1.framer-1t3nvjz { width: 1200px; } .framer-BKmf1 .framer-14c8qqq-container { left: 40px; top: 0px; } .framer-BKmf1 .framer-9ciho { height: 800px; padding: 100px 0px 0px 0px; } .framer-BKmf1 .framer-1m3dopj { height: var(--framer-aspect-ratio-supported, 641px); left: 42%; max-width: 672px; width: 103%; } .framer-BKmf1 .framer-unfvkv { height: 470px; } .framer-BKmf1 .framer-z7cj0j { gap: 37px; justify-content: flex-start; } .framer-BKmf1 .framer-1hnfnpt { height: auto; } .framer-BKmf1 .framer-go5s5c { top: -85px; } .framer-BKmf1 .framer-1uxm02m { bottom: 54px; } .framer-BKmf1 .framer-12r6hzd { bottom: unset; left: calc(47.81341107871722% - 329px / 2); top: calc(72.82608695652176% - 50px / 2); } .framer-BKmf1 .framer-1uzp2lj { left: calc(46.00431965442767% - 446px / 2); top: calc(19.851116625310198% - 144px / 2); } .framer-BKmf1 .framer-kgghf8 { left: unset; right: -1px; top: calc(58.76963350785343% - 89px / 2); } .framer-BKmf1 .framer-1wgntsp, .framer-BKmf1 .framer-1k9oxf1 { height: var(--framer-aspect-ratio-supported, 395px); } .framer-BKmf1 .framer-1e8y9mp, .framer-BKmf1 .framer-1lpffs6 { height: var(--framer-aspect-ratio-supported, 396px); } .framer-BKmf1 .framer-1fz4yj1 { padding: 80px 24px 88px 24px; } .framer-BKmf1 .framer-bfs2ll { height: var(--framer-aspect-ratio-supported, 364px); } .framer-BKmf1 .framer-u1ixp2 { padding: 120px 24px 120px 24px; } .framer-BKmf1 .framer-111quxc { max-width: 424px; } .framer-BKmf1 .framer-16iqv7m { height: var(--framer-aspect-ratio-supported, 578px); } .framer-BKmf1 .framer-1c8759e { height: var(--framer-aspect-ratio-supported, 86px); } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-BKmf1 .framer-z7cj0j { gap: 0px; } .framer-BKmf1 .framer-z7cj0j > * { margin: 0px; margin-bottom: calc(37px / 2); margin-top: calc(37px / 2); } .framer-BKmf1 .framer-z7cj0j > :first-child { margin-top: 0px; } .framer-BKmf1 .framer-z7cj0j > :last-child { margin-bottom: 0px; } }}\",\"@media (min-width: 810px) and (max-width: 1199px) { .framer-BKmf1.framer-1t3nvjz { width: 810px; } .framer-BKmf1 .framer-9ciho { flex-direction: column; height: min-content; padding: 100px 0px 150px 0px; } .framer-BKmf1 .framer-ex4ilv { flex: none; height: min-content; justify-content: flex-end; width: 100%; z-index: 2; } .framer-BKmf1 .framer-1ykog5w { height: 322px; max-width: 670px; width: 66%; } .framer-BKmf1 .framer-1m3dopj { height: var(--framer-aspect-ratio-supported, 459px); } .framer-BKmf1 .framer-unfvkv { flex: none; padding: 0px 40px 0px 40px; width: 100%; } .framer-BKmf1 .framer-z7cj0j { gap: 40px; justify-content: flex-start; } .framer-BKmf1 .framer-1hnfnpt, .framer-BKmf1 .framer-pigbcv, .framer-BKmf1 .framer-8npd84, .framer-BKmf1 .framer-vbpcp5 { height: auto; } .framer-BKmf1 .framer-xoce5i { left: 0px; top: -49px; } .framer-BKmf1 .framer-1rochg8 { padding: 0px 0px 0px 90px; } .framer-BKmf1 .framer-go5s5c { height: 463px; left: 387px; top: -148px; width: 309px; } .framer-BKmf1 .framer-1clxl0i { padding: 100px 40px 0px 40px; } .framer-BKmf1 .framer-n2e0q5 { background: linear-gradient(270deg, rgba(84, 84, 84, 0) 16.666666666666668%, rgb(243, 236, 226) 100%); } .framer-BKmf1 .framer-9auifm { height: 495px; } .framer-BKmf1 .framer-i8vjwb { gap: 0px; height: 100%; justify-content: center; padding: 0px 20px 20px 20px; } .framer-BKmf1 .framer-hfsdxl { flex: 1 0 0px; height: 1px; } .framer-BKmf1 .framer-1h5c0cs, .framer-BKmf1 .framer-1om7j0f { gap: 0px; height: 100%; justify-content: center; } .framer-BKmf1 .framer-1536qtw, .framer-BKmf1 .framer-14i8a9p { height: 175px; } .framer-BKmf1 .framer-13kdzzw { bottom: unset; left: calc(48.924731182795725% - 189px / 2); top: 60px; } .framer-BKmf1 .framer-b9k5ah, .framer-BKmf1 .framer-ufcrwi { height: min-content; } .framer-BKmf1 .framer-dk0hac, .framer-BKmf1 .framer-1vjpxog { height: var(--framer-aspect-ratio-supported, 6px); } .framer-BKmf1 .framer-6vlnja { height: var(--framer-aspect-ratio-supported, 5px); } .framer-BKmf1 .framer-12oqgrk { gap: 32px; } .framer-BKmf1 .framer-1jct1qs-container { right: -40px; top: calc(49.89458889669714% - 260px / 2); } .framer-BKmf1 .framer-1wgntsp { height: var(--framer-aspect-ratio-supported, 286px); } .framer-BKmf1 .framer-1e8y9mp, .framer-BKmf1 .framer-1lpffs6, .framer-BKmf1 .framer-1k9oxf1 { height: var(--framer-aspect-ratio-supported, 285px); } .framer-BKmf1 .framer-1fz4yj1 { padding: 80px 40px 88px 40px; } .framer-BKmf1 .framer-bfs2ll { height: var(--framer-aspect-ratio-supported, 207px); min-width: unset; } .framer-BKmf1 .framer-1aipruh { height: 303px; } .framer-BKmf1 .framer-9lmhyr, .framer-BKmf1 .framer-182c0qk, .framer-BKmf1 .framer-13kltd8 { padding: 40px 24px 40px 24px; } .framer-BKmf1 .framer-111quxc { max-width: 409px; } .framer-BKmf1 .framer-16iqv7m { aspect-ratio: unset; height: 692px; justify-content: center; padding: 33px 62px 33px 62px; } .framer-BKmf1 .framer-12ncq1j { flex: 1 0 0px; max-width: 416px; width: 1px; z-index: 1; } .framer-BKmf1 .framer-vaeppi, .framer-BKmf1 .framer-1g0lacg, .framer-BKmf1 .framer-1n0y37b { align-content: center; align-items: center; } .framer-BKmf1 .framer-1ynjckk { flex-direction: column; } .framer-BKmf1 .framer-1fglgs { flex: none; width: 100%; } .framer-BKmf1 .framer-ir0pc0 { flex: none; justify-content: flex-start; padding: 0px 0px 35px 20px; width: 100%; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-BKmf1 .framer-9ciho, .framer-BKmf1 .framer-z7cj0j, .framer-BKmf1 .framer-i8vjwb, .framer-BKmf1 .framer-1h5c0cs, .framer-BKmf1 .framer-1om7j0f, .framer-BKmf1 .framer-12oqgrk, .framer-BKmf1 .framer-1ynjckk { gap: 0px; } .framer-BKmf1 .framer-9ciho > *, .framer-BKmf1 .framer-i8vjwb > *, .framer-BKmf1 .framer-1h5c0cs > *, .framer-BKmf1 .framer-1om7j0f > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-BKmf1 .framer-9ciho > :first-child, .framer-BKmf1 .framer-z7cj0j > :first-child, .framer-BKmf1 .framer-i8vjwb > :first-child, .framer-BKmf1 .framer-1h5c0cs > :first-child, .framer-BKmf1 .framer-1om7j0f > :first-child, .framer-BKmf1 .framer-1ynjckk > :first-child { margin-top: 0px; } .framer-BKmf1 .framer-9ciho > :last-child, .framer-BKmf1 .framer-z7cj0j > :last-child, .framer-BKmf1 .framer-i8vjwb > :last-child, .framer-BKmf1 .framer-1h5c0cs > :last-child, .framer-BKmf1 .framer-1om7j0f > :last-child, .framer-BKmf1 .framer-1ynjckk > :last-child { margin-bottom: 0px; } .framer-BKmf1 .framer-z7cj0j > * { margin: 0px; margin-bottom: calc(40px / 2); margin-top: calc(40px / 2); } .framer-BKmf1 .framer-12oqgrk > * { margin: 0px; margin-left: calc(32px / 2); margin-right: calc(32px / 2); } .framer-BKmf1 .framer-12oqgrk > :first-child { margin-left: 0px; } .framer-BKmf1 .framer-12oqgrk > :last-child { margin-right: 0px; } .framer-BKmf1 .framer-1ynjckk > * { margin: 0px; margin-bottom: calc(30px / 2); margin-top: calc(30px / 2); } }}\",\"@media (max-width: 809px) { .framer-BKmf1.framer-1t3nvjz { width: 390px; } .framer-BKmf1 .framer-9ciho { flex-direction: column; gap: 24px; height: min-content; padding: 40px 0px 58px 0px; } .framer-BKmf1 .framer-ex4ilv { align-content: flex-start; align-items: flex-start; flex: none; height: 295px; justify-content: flex-end; width: 100%; z-index: 2; } .framer-BKmf1 .framer-1ykog5w { max-width: 550px; z-index: 2; } .framer-BKmf1 .framer-1m3dopj { height: var(--framer-aspect-ratio-supported, 211px); left: unset; max-width: 420px; right: 0px; top: 22%; transform: translateY(-50%); width: 67%; } .framer-BKmf1 .framer-1db6u0z { background-color: var(--token-ef14d4fb-dd01-4adf-993f-ec0eb33fa00e, #f8934a); } .framer-BKmf1 .framer-unfvkv { flex: none; gap: 72px; padding: 0px 24px 0px 24px; width: 100%; } .framer-BKmf1 .framer-z7cj0j { gap: 39px; } .framer-BKmf1 .framer-10pjb9b { aspect-ratio: 3.5977011494252875 / 1; height: var(--framer-aspect-ratio-supported, 56px); max-width: 310px; width: 70%; } .framer-BKmf1 .framer-tujacp { height: var(--framer-aspect-ratio-supported, 61px); } .framer-BKmf1 .framer-1hnfnpt, .framer-BKmf1 .framer-hrbpd8-container { height: auto; } .framer-BKmf1 .framer-1e4kiml { flex-direction: column; gap: 16px; max-width: 450px; width: 100%; } .framer-BKmf1 .framer-7iy8w2-container, .framer-BKmf1 .framer-lymqn2-container, .framer-BKmf1 .framer-taucnn, .framer-BKmf1 .framer-1uhw0d5, .framer-BKmf1 .framer-om1c9z { width: 100%; } .framer-BKmf1 .framer-1nujf1x { justify-content: flex-start; } .framer-BKmf1 .framer-1rochg8 { flex-direction: column; max-width: 450px; } .framer-BKmf1 .framer-bhfnru { justify-content: center; padding: 26px 10px 26px 10px; width: 100%; } .framer-BKmf1 .framer-vljbqd, .framer-BKmf1 .framer-1c11jzy { flex: 1 0 0px; width: 1px; } .framer-BKmf1 .framer-1r4fdpa { flex: 1 0 0px; gap: unset; height: min-content; justify-content: space-between; max-width: 116px; width: 1px; } .framer-BKmf1 .framer-16zk1a5 { height: 26px; width: 25px; } .framer-BKmf1 .framer-1tjyjt5 { bottom: unset; height: 25px; left: 0px; right: 0px; top: calc(46.15384615384618% - 25px / 2); width: unset; } .framer-BKmf1 .framer-2ip53k { flex: 1 0 0px; height: 18px; max-width: 57%; width: 1px; } .framer-BKmf1 .framer-9ywkvp, .framer-BKmf1 .framer-w78sje { left: 0px; top: 50%; transform: translateY(-50%); width: 100%; } .framer-BKmf1 .framer-1gt2p9o { flex: 1 0 0px; gap: unset; height: min-content; justify-content: space-between; max-width: 126px; width: 1px; } .framer-BKmf1 .framer-1scd4xg { height: 26px; } .framer-BKmf1 .framer-g608r { bottom: unset; height: 25px; left: calc(46.15384615384618% - 25px / 2); top: calc(46.15384615384618% - 25px / 2); } .framer-BKmf1 .framer-1gf7gp { flex: 1 0 0px; height: 18px; max-width: 78px; width: 1px; } .framer-BKmf1 .framer-go5s5c { left: 234px; width: 304px; } .framer-BKmf1 .framer-1uzp2lj { left: calc(78.6184210526316% - 446px / 2); top: calc(15.384615384615408% - 144px / 2); } .framer-BKmf1 .framer-1wobufo { order: 0; padding: 150px 30px 150px 30px; } .framer-BKmf1 .framer-wqc9u0-container { opacity: 0.13; } .framer-BKmf1 .framer-9auifm { flex-direction: column; order: 1; } .framer-BKmf1 .framer-i8vjwb { flex: none; padding: 10px 10px 20px 10px; width: 100%; } .framer-BKmf1 .framer-1h5c0cs, .framer-BKmf1 .framer-1om7j0f { flex: none; padding: 0px 10px 20px 10px; width: 100%; } .framer-BKmf1 .framer-17rgi8r { height: 376px; } .framer-BKmf1 .framer-12oqgrk { flex-direction: column; padding: 0px; } .framer-BKmf1 .framer-1rz7goz, .framer-BKmf1 .framer-1fj9c42 { flex: none; padding: 0px 20px 0px 20px; width: 100%; } .framer-BKmf1 .framer-idfayu, .framer-BKmf1 .framer-wgpbxt { padding: 0px; } .framer-BKmf1 .framer-1aypy4e { padding: 0px 12px 0px 12px; } .framer-BKmf1 .framer-1wgntsp { height: var(--framer-aspect-ratio-supported, 285px); left: -25px; max-width: 600px; top: -23%; transform: translateY(-50%); width: 100%; } .framer-BKmf1 .framer-1e8y9mp { height: var(--framer-aspect-ratio-supported, 285px); left: -25px; max-width: 600px; top: -35%; transform: translateY(-50%); width: 114%; } .framer-BKmf1 .framer-1i93vf9 { z-index: 1; } .framer-BKmf1 .framer-1lpffs6 { height: var(--framer-aspect-ratio-supported, 285px); left: -25px; max-width: 600px; top: -8%; transform: translateY(-50%); width: 114%; } .framer-BKmf1 .framer-1k9oxf1 { height: var(--framer-aspect-ratio-supported, 285px); left: -25px; max-width: 600px; top: -10%; transform: translateY(-50%); width: 114%; } .framer-BKmf1 .framer-1fz4yj1 { padding: 80px 24px 88px 24px; } .framer-BKmf1 .framer-rnm12r, .framer-BKmf1 .framer-aw0ih8 { flex: 1 0 0px; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; } .framer-BKmf1 .framer-1fprqs2 { flex: 1 0 0px; min-width: 320px; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; } .framer-BKmf1 .framer-1aipruh { flex-direction: column; height: min-content; } .framer-BKmf1 .framer-9lmhyr { --border-bottom-width: 1px; --border-right-width: 0px; border-bottom-left-radius: unset; border-top-right-radius: 10px; flex: none; height: min-content; width: 100%; } .framer-BKmf1 .framer-182c0qk { --border-bottom-width: 1px; --border-right-width: 0px; flex: none; height: min-content; width: 100%; } .framer-BKmf1 .framer-13kltd8 { border-bottom-left-radius: 10px; border-top-right-radius: unset; flex: none; height: min-content; width: 100%; } .framer-BKmf1 .framer-u1ixp2 { padding: 20px 24px 20px 24px; } .framer-BKmf1 .framer-aracps, .framer-BKmf1 .framer-r5x8l2 { order: 0; } .framer-BKmf1 .framer-111quxc { max-width: 412px; order: 0; } .framer-BKmf1 .framer-1ku43rn, .framer-BKmf1 .framer-1j4ihwr { order: 1; } .framer-BKmf1 .framer-16iqv7m { aspect-ratio: unset; height: 728px; justify-content: center; order: 1; padding: 33px 24px 33px 24px; } .framer-BKmf1 .framer-12ncq1j { flex: 1 0 0px; max-width: 416px; width: 1px; z-index: 2; } .framer-BKmf1 .framer-vaeppi, .framer-BKmf1 .framer-1g0lacg, .framer-BKmf1 .framer-1n0y37b { padding: 20px 10px 20px 10px; } .framer-BKmf1 .framer-wvw4f1 { overflow: hidden; padding: 66px 24px 66px 24px; } .framer-BKmf1 .framer-furxm0 { padding: 189px 10px 0px 10px; } .framer-BKmf1 .framer-1ynjckk { flex-direction: column; padding: 10px 14px 17px 14px; } .framer-BKmf1 .framer-18u0bpe { right: 81px; } .framer-BKmf1 .framer-1fglgs { flex: none; width: 100%; } .framer-BKmf1 .framer-ir0pc0 { flex: none; gap: 52px; justify-content: flex-start; padding: 0px 10px 33px 10px; width: 100%; } .framer-BKmf1 .framer-1evv59d { max-width: 450px; } .framer-BKmf1 .framer-1wakem9-container { width: 323px; } .framer-BKmf1 .framer-st49j { align-content: center; align-items: center; flex-wrap: wrap; gap: 87px; padding: 71px 0px 80px 0px; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-BKmf1 .framer-9ciho, .framer-BKmf1 .framer-unfvkv, .framer-BKmf1 .framer-z7cj0j, .framer-BKmf1 .framer-1e4kiml, .framer-BKmf1 .framer-1rochg8, .framer-BKmf1 .framer-1r4fdpa, .framer-BKmf1 .framer-1gt2p9o, .framer-BKmf1 .framer-9auifm, .framer-BKmf1 .framer-12oqgrk, .framer-BKmf1 .framer-1aipruh, .framer-BKmf1 .framer-1ynjckk, .framer-BKmf1 .framer-ir0pc0, .framer-BKmf1 .framer-st49j { gap: 0px; } .framer-BKmf1 .framer-9ciho > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } .framer-BKmf1 .framer-9ciho > :first-child, .framer-BKmf1 .framer-unfvkv > :first-child, .framer-BKmf1 .framer-z7cj0j > :first-child, .framer-BKmf1 .framer-1e4kiml > :first-child, .framer-BKmf1 .framer-1rochg8 > :first-child, .framer-BKmf1 .framer-9auifm > :first-child, .framer-BKmf1 .framer-12oqgrk > :first-child, .framer-BKmf1 .framer-1aipruh > :first-child, .framer-BKmf1 .framer-1ynjckk > :first-child, .framer-BKmf1 .framer-ir0pc0 > :first-child { margin-top: 0px; } .framer-BKmf1 .framer-9ciho > :last-child, .framer-BKmf1 .framer-unfvkv > :last-child, .framer-BKmf1 .framer-z7cj0j > :last-child, .framer-BKmf1 .framer-1e4kiml > :last-child, .framer-BKmf1 .framer-1rochg8 > :last-child, .framer-BKmf1 .framer-9auifm > :last-child, .framer-BKmf1 .framer-12oqgrk > :last-child, .framer-BKmf1 .framer-1aipruh > :last-child, .framer-BKmf1 .framer-1ynjckk > :last-child, .framer-BKmf1 .framer-ir0pc0 > :last-child { margin-bottom: 0px; } .framer-BKmf1 .framer-unfvkv > * { margin: 0px; margin-bottom: calc(72px / 2); margin-top: calc(72px / 2); } .framer-BKmf1 .framer-z7cj0j > * { margin: 0px; margin-bottom: calc(39px / 2); margin-top: calc(39px / 2); } .framer-BKmf1 .framer-1e4kiml > * { margin: 0px; margin-bottom: calc(16px / 2); margin-top: calc(16px / 2); } .framer-BKmf1 .framer-1rochg8 > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-BKmf1 .framer-1r4fdpa > *, .framer-BKmf1 .framer-1r4fdpa > :first-child, .framer-BKmf1 .framer-1r4fdpa > :last-child, .framer-BKmf1 .framer-1gt2p9o > *, .framer-BKmf1 .framer-1gt2p9o > :first-child, .framer-BKmf1 .framer-1gt2p9o > :last-child { margin: 0px; } .framer-BKmf1 .framer-9auifm > * { margin: 0px; margin-bottom: calc(26px / 2); margin-top: calc(26px / 2); } .framer-BKmf1 .framer-12oqgrk > * { margin: 0px; margin-bottom: calc(100px / 2); margin-top: calc(100px / 2); } .framer-BKmf1 .framer-1aipruh > * { margin: 0px; margin-bottom: calc(1px / 2); margin-top: calc(1px / 2); } .framer-BKmf1 .framer-1ynjckk > * { margin: 0px; margin-bottom: calc(30px / 2); margin-top: calc(30px / 2); } .framer-BKmf1 .framer-ir0pc0 > * { margin: 0px; margin-bottom: calc(52px / 2); margin-top: calc(52px / 2); } .framer-BKmf1 .framer-st49j > * { margin: 0px; margin-left: calc(87px / 2); margin-right: calc(87px / 2); } .framer-BKmf1 .framer-st49j > :first-child { margin-left: 0px; } .framer-BKmf1 .framer-st49j > :last-child { margin-right: 0px; } }}\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 12108\n * @framerIntrinsicWidth 1800\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"jhgstC6MA\":{\"layout\":[\"fixed\",\"auto\"]},\"HfSG4WHcm\":{\"layout\":[\"fixed\",\"auto\"]},\"WPoaGmYBq\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n * @framerResponsiveScreen\n */const Framere5HDb2LUO=withCSS(Component,css,\"framer-BKmf1\");export default Framere5HDb2LUO;Framere5HDb2LUO.displayName=\"Page\";Framere5HDb2LUO.defaultProps={height:12108,width:1800};addFonts(Framere5HDb2LUO,[{explicitInter:true,fonts:[{family:\"Poppins\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/poppins/v22/pxiEyp8kv8JHgFVrFJXUc1NECPY.woff2\",weight:\"400\"},{family:\"Poppins\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/poppins/v22/pxiByp8kv8JHgFVrLCz7V15vFP-KUEg.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/5vvr9Vy74if2I6bQbJvbw7SY1pQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/EOr0mi4hNtlgWNn9if640EZzXCo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Y9k9QrlZAqio88Klkmbd8VoMQc.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/OYrD2tBIBPvoJXiIHnLoOXnY9M.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/JeYwfuaPfZHQhEG8U5gtPDZ7WQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"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\",url:\"https://framerusercontent.com/assets/vQyevYAyHtARFwPqUzQGpnDs.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/b6Y37FthZeALduNqHicBT6FutY.woff2\",weight:\"400\"},{family:\"Caveat Brush\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/caveatbrush/v11/EYq0maZfwr9S9-ETZc3fKXtMXrmT03pdQw.woff2\",weight:\"400\"},{family:\"Plus Jakarta Sans\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/plusjakartasans/v8/LDIbaomQNQcsA88c7O9yZ4KMCoOg4IA6-91aHEjcWuA_d0nNTxXUEKi4Rw.woff2\",weight:\"600\"},{family:\"Plus Jakarta Sans\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/plusjakartasans/v8/LDIbaomQNQcsA88c7O9yZ4KMCoOg4IA6-91aHEjcWuA_TknNTxXUEKi4Rw.woff2\",weight:\"700\"},{family:\"Plus Jakarta Sans\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/plusjakartasans/v8/LDIbaomQNQcsA88c7O9yZ4KMCoOg4IA6-91aHEjcWuA_KUnNTxXUEKi4Rw.woff2\",weight:\"800\"},{family:\"Plus Jakarta Sans\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/plusjakartasans/v8/LDIbaomQNQcsA88c7O9yZ4KMCoOg4IA6-91aHEjcWuA_qU7NTxXUEKi4Rw.woff2\",weight:\"400\"}]},...SmoothScrollFonts,...NavbarSingleFonts,...NavbarFonts,...ButtonHeaderFonts,...CircleROUNDFonts,...FunctionCardsFonts,...SocialProofAnimationFonts,...PhoneAnimationFonts,...ScrollProgressFonts,...StackCardsAdvantagesFonts,...AnimCurvesFonts,...EmbedFonts,...BaseFormFonts,...OverlayFonts,...FooterFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts),...getFontsFromSharedStyle(sharedStyle2.fonts),...getFontsFromSharedStyle(sharedStyle3.fonts),...getFontsFromSharedStyle(sharedStyle4.fonts),...getFontsFromSharedStyle(sharedStyle5.fonts),...getFontsFromSharedStyle(sharedStyle6.fonts),...getFontsFromSharedStyle(sharedStyle7.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"Framere5HDb2LUO\",\"slots\":[],\"annotations\":{\"framerImmutableVariables\":\"true\",\"framerComponentViewportWidth\":\"true\",\"framerResponsiveScreen\":\"\",\"framerDisplayContentsDiv\":\"false\",\"framerIntrinsicHeight\":\"12108\",\"framerContractVersion\":\"1\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"jhgstC6MA\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"HfSG4WHcm\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"WPoaGmYBq\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerIntrinsicWidth\":\"1800\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}"],
  "mappings": "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",
  "names": ["containerStyles", "emptyStateStyle", "defaultEvents", "ControlType", "fontSizeOptions", "fontControls", "font", "useIsOnCanvas", "se", "RenderTarget", "borderRadiusControl", "ControlType", "paddingControl", "ControlType", "Embed", "type", "url", "html", "p", "EmbedURL", "EmbedHTML", "Instructions", "addPropertyControls", "ControlType", "props", "emptyStateStyle", "centerTextStyle", "onCanvas", "useIsOnCanvas", "state", "setState", "ye", "ue", "isLastEffect", "load", "response", "isBlocked", "message", "error", "ErrorMessage", "LoadingIndicator", "iframeStyle", "getSandbox", "result", "ref", "pe", "hasScript", "div", "executeScripts", "htmlStyle", "node", "script", "name", "value", "child", "containerStyles", "u", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "transformTemplate1", "_", "t", "transformTemplate2", "transition2", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "transition3", "transformTemplate3", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "_humanReadableVariantMap_props_variant", "_ref", "createLayoutDependency", "Component", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "restProps", "baseVariant", "classNames", "gestureVariant", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "u", "cx", "SVG", "RichText2", "Image2", "css", "FramerdqVyoEukj", "withCSS", "dqVyoEukj_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts", "Animator", "props", "pathAnimation", "from", "to", "animate", "shouldLoop", "loopOptions", "slots", "endCircle", "hasChildren", "j", "customShape", "u", "placeholderStyles", "p", "emojiStyles", "titleStyles", "subtitleStyles", "firstChild", "getFirstChild", "svgChild", "isSpring", "shapeTransition", "pathLength", "useMotionValue", "opacity", "useTransform", "shapeProps", "isCanvas", "RenderTarget", "attributes", "pathD", "stroke", "strokeWidth", "strokeLinecap", "strokeLinejoin", "element", "splitAndReplace", "svgViewbox", "motion", "addPropertyControls", "ControlType", "string", "child", "AnimatorFonts", "getFonts", "Animator", "serializationHash", "variantClassNames", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "getProps", "green", "height", "id", "orange", "width", "props", "_ref", "createLayoutDependency", "variants", "Component", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "variant", "fD96gZIDj", "bRvakbH4q", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "variantClassNames", "layoutDependency", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "u", "cx", "serializationHash", "ComponentViewportProvider", "Animator", "SVG", "css", "FramerGF58od4uD", "withCSS", "GF58od4uD_default", "addPropertyControls", "ControlType", "addFonts", "AnimatorFonts", "ImageWithFX", "withFX", "Image2", "MotionDivWithFX", "motion", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "transition2", "animation", "transformTemplate1", "_", "t", "animation1", "transition3", "transformTemplate2", "transition4", "animation2", "transformTemplate3", "animation3", "animation4", "transition5", "transition6", "transition7", "transition8", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "x", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "_humanReadableVariantMap_props_variant", "_ref", "createLayoutDependency", "Component", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "restProps", "baseVariant", "classNames", "gestureVariant", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "u", "cx", "optimizeAppear", "optimizeAppearTransformTemplate", "css", "FramerN9EXhGAlu", "withCSS", "N9EXhGAlu_default", "addPropertyControls", "ControlType", "addFonts", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "height", "id", "text", "text2", "width", "props", "_ref", "_ref1", "_humanReadableVariantMap_props_variant", "_ref2", "createLayoutDependency", "Component", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "LBMEDJRxu", "AJM6gbA_l", "restProps", "baseVariant", "classNames", "gestureVariant", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "u", "cx", "RichText2", "css", "Framernp9vbxdxd", "withCSS", "np9vbxdxd_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts", "ojTGWuIaR_0_exports", "__export", "__FramerMetadata__", "v0", "v1", "v2", "v3", "v4", "v5", "v0", "p", "x", "motion", "v1", "u", "v2", "v3", "v4", "v5", "__FramerMetadata__", "valuesByLocaleId", "ojTGWuIaR_0_exports", "getLocalizedValue", "key", "locale", "values", "value", "MotionDivWithFX", "withFX", "motion", "enabledGestures", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "transition2", "animation", "transformTemplate1", "_", "t", "transition3", "animation1", "transition4", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "transition5", "animation2", "transition6", "animation3", "animation4", "transition7", "transition8", "transition9", "transition10", "transformTemplate2", "transition11", "Variants", "x", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "_humanReadableVariantMap_props_variant", "_ref", "createLayoutDependency", "Component", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "ref1", "pe", "isDisplayed", "isDisplayed1", "isDisplayed2", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "_getLocalizedValue", "_getLocalizedValue1", "_getLocalizedValue2", "_getLocalizedValue3", "_getLocalizedValue4", "_getLocalizedValue5", "LayoutGroup", "u", "cx", "SVG", "RichText2", "getLocalizedValue", "css", "FramerojTGWuIaR", "withCSS", "ojTGWuIaR_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts", "QD0lFU70_0_exports", "__export", "__FramerMetadata__", "v0", "v1", "v2", "v3", "v4", "v5", "v0", "p", "x", "motion", "v1", "v2", "v3", "v4", "v5", "__FramerMetadata__", "valuesByLocaleId", "QD0lFU70_0_exports", "getLocalizedValue", "key", "locale", "values", "value", "MotionDivWithFX", "withFX", "motion", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "animation", "transition2", "animation1", "transition3", "animation2", "transition4", "animation3", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "x", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "_humanReadableVariantMap_props_variant", "_ref", "createLayoutDependency", "Component", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onMouseEnterhzkqkf", "args", "onMouseLeave2z1ew1", "onMouseEnter7y8dgn", "onMouseEnterfjebx3", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "_getLocalizedValue", "_getLocalizedValue1", "_getLocalizedValue2", "_getLocalizedValue3", "_getLocalizedValue4", "_getLocalizedValue5", "LayoutGroup", "u", "cx", "RichText2", "getLocalizedValue", "css", "FramerQD0lFU70_", "withCSS", "QD0lFU70_default", "addPropertyControls", "ControlType", "addFonts", "R0OEqV3EP_0_exports", "__export", "__FramerMetadata__", "v0", "v1", "v2", "v3", "v4", "v5", "v6", "v7", "v0", "v1", "v2", "v3", "v4", "v5", "v6", "v7", "__FramerMetadata__", "valuesByLocaleId", "R0OEqV3EP_0_exports", "getLocalizedValue", "key", "locale", "values", "value", "EmbedFonts", "getFonts", "Embed", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "transformTemplate1", "_", "t", "transition2", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "transition3", "transition4", "transition5", "transition6", "transition7", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "_humanReadableVariantMap_props_variant", "_ref", "createLayoutDependency", "Component", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "_getLocalizedValue", "_getLocalizedValue1", "_getLocalizedValue2", "_getLocalizedValue3", "_getLocalizedValue4", "_getLocalizedValue5", "_getLocalizedValue6", "_getLocalizedValue7", "_getLocalizedValue8", "_getLocalizedValue9", "_getLocalizedValue10", "_getLocalizedValue11", "_getLocalizedValue12", "_getLocalizedValue13", "_getLocalizedValue14", "LayoutGroup", "u", "cx", "Image2", "getLoadingLazyAtYPosition", "getLocalizedValue", "ComponentViewportProvider", "css", "FramerR0OEqV3EP", "withCSS", "R0OEqV3EP_default", "addPropertyControls", "ControlType", "addFonts", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "_humanReadableVariantMap_props_variant", "_ref", "createLayoutDependency", "Component", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "restProps", "baseVariant", "classNames", "gestureVariant", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "u", "cx", "css", "Framerzrx8mtaFh", "withCSS", "zrx8mtaFh_default", "addPropertyControls", "ControlType", "addFonts", "valuesByLocaleId", "LazyValue", "getLocalizedValue", "key", "locale", "values", "value", "preload", "promises", "promise", "usePreloadLocalizedValues", "preloadPromise", "SmoothScrollFonts", "getFonts", "SmoothScroll", "NavbarSingleFonts", "I6eJ1kHAb_default", "NavbarFonts", "RMwoXxkBu_default", "NavbarWithVariantAppearEffect", "withVariantAppearEffect", "ContainerWithOptimizedAppearEffect", "withOptimizedAppearEffect", "Container", "MotionDivWithFX", "withFX", "motion", "MotionDivWithOptimizedAppearEffect", "RichTextWithOptimizedAppearEffect", "RichText2", "ButtonHeaderFonts", "KAW7NHkrh_default", "CircleROUNDFonts", "N9EXhGAlu_default", "ContainerWithFX", "FunctionCardsFonts", "ojTGWuIaR_default", "SocialProofAnimationFonts", "dqVyoEukj_default", "SocialProofAnimationWithVariantAppearEffect", "PhoneAnimationFonts", "R0OEqV3EP_default", "PhoneAnimationWithVariantAppearEffect", "ScrollProgressFonts", "zrx8mtaFh_default", "ScrollProgressWithVariantAppearEffect", "ImageWithFX", "Image2", "StackCardsAdvantagesFonts", "QD0lFU70_default", "AnimCurvesFonts", "GF58od4uD_default", "EmbedFonts", "Embed", "BaseFormFonts", "Custom_Form_default", "OverlayFonts", "np9vbxdxd_default", "FooterFonts", "AD_4iyfsR_default", "breakpoints", "isBrowser", "serializationHash", "variantClassNames", "transition1", "animation", "animation1", "convertFromEnum", "value", "activeLocale", "transition2", "animation2", "transition3", "animation3", "transformTemplate1", "_", "t", "transition4", "animation4", "animation5", "transformTemplate2", "transition5", "animation6", "transition6", "animation7", "transition7", "animation8", "animation9", "transition8", "animation10", "transition9", "animation11", "animation12", "animation13", "animation14", "transition10", "animation15", "animation16", "transition11", "animation17", "animation18", "transition12", "animation19", "transition13", "animation20", "transition14", "animation21", "transition15", "animation22", "transition16", "animation23", "animation24", "animation25", "animation26", "animation27", "animation28", "animation29", "animation30", "animation31", "transition17", "animation32", "animation33", "transition18", "animation34", "transition19", "animation35", "transition20", "animation36", "animation37", "animation38", "animation39", "animation40", "animation41", "animation42", "animation43", "Overlay1", "children", "blockDocumentScrolling", "enabled", "visible", "setVisible", "useOverlayState", "transformTemplate3", "HTMLStyle", "useIsOnFramerCanvas", "p", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "Component", "ref", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "variant", "restProps", "ue", "metadata", "robotsTag", "ie", "baseVariant", "hydratedBaseVariant", "useHydratedBreakpointVariants", "gestureVariant", "activeVariantCallback", "delay", "useActiveVariantCallback", "onSubmittxyyif", "overlay", "loadMore", "args", "scopingClassNames", "cx", "ref1", "pe", "isDisplayed", "ref2", "ref3", "ref4", "ref5", "elementId", "useRouteElementId", "ref6", "usePreloadLocalizedValues", "router", "useRouter", "isDisplayed1", "isDisplayed2", "elementId1", "isDisplayed3", "elementId2", "ref7", "ref8", "ref9", "ref10", "elementId3", "isDisplayed4", "elementId4", "elementId5", "elementId6", "elementId7", "elementId8", "elementId9", "ref11", "ref12", "ref13", "defaultLayoutId", "ae", "useCustomCursors", "GeneratedComponentContext", "u", "LayoutGroup", "ComponentViewportProvider", "PropertyOverrides2", "getLoadingLazyAtYPosition", "SVG", "getLocalizedValue", "x", "ResolveLinks", "resolvedLinks", "resolvedLinks1", "Link", "l", "AnimatePresence", "Floating", "css", "Framere5HDb2LUO", "withCSS", "e5HDb2LUO_default", "addFonts", "getFontsFromSharedStyle", "fonts", "__FramerMetadata__"]
}
