{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/o1PI5S8YtkA5bP5g4dFz/Mn69eMnaMcqJ65TjxwR1/Embed.js", "ssg:https://framer.com/m/phosphor-icons/House.js@0.0.50", "ssg:https://framerusercontent.com/modules/tYScH7LTqUtz5KUaUAYP/H4OHcdXxZyPVKySUy1y2/Phosphor.js", "ssg:https://framerusercontent.com/modules/3Pvb0cdIs9AUjSDhagsn/NTPfYAKg0K8MZxbTtANX/acySrJjPn.js", "ssg:https://framerusercontent.com/modules/rCHdZaeZXzn5slfNUhkN/EK79irhlfY5FqBBb5Jjh/PiOu5S4og.js", "ssg:https://framerusercontent.com/modules/nU3jO1FDuAK0ZiLsT63e/hCoZP8bZSnixTR881XgK/HQM5TPZyl.js"],
  "sourcesContent": ["import{jsx as _jsx}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 any-prefer-fixed\n *\n * @framerDisableUnlink\n */export default function Embed({type,url,html,style={}}){if(type===\"url\"&&url){return /*#__PURE__*/_jsx(EmbedURL,{url:url,style:style});}if(type===\"html\"&&html){return /*#__PURE__*/_jsx(EmbedHTML,{html:html,style:style});}return /*#__PURE__*/_jsx(Instructions,{style:style});}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\",type:ControlType.String,displayTextArea:true,hidden(props){return props.type!==\"html\";}}});function Instructions({style}){return /*#__PURE__*/_jsx(\"div\",{style:{minHeight:getMinHeight(style),...emptyStateStyle,overflow:\"hidden\",...style},children:/*#__PURE__*/_jsx(\"div\",{style:centerTextStyle,children:\"To embed a website or widget, add it to the properties\\xa0panel.\"})});}function EmbedURL({url,style}){const hasAutoHeight=!style.height;// 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(onCanvas&&hasAutoHeight){return /*#__PURE__*/_jsx(ErrorMessage,{message:\"URL embeds do not support auto height.\",style:style});}if(!url.startsWith(\"https://\")){return /*#__PURE__*/_jsx(ErrorMessage,{message:\"Unsupported protocol.\",style:style});}if(state===undefined){return /*#__PURE__*/_jsx(LoadingIndicator,{});}if(state instanceof Error){return /*#__PURE__*/_jsx(ErrorMessage,{message:state.message,style:style});}if(state===true){const message=`Can\u2019t embed ${url} due to its content security policy.`;return /*#__PURE__*/_jsx(ErrorMessage,{message:message,style:style});}return /*#__PURE__*/_jsx(\"iframe\",{src:url,style:{...iframeStyle,...style},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,style}){const ref=useRef();const onCanvas=useIsOnCanvas();const[iframeHeight,setIframeHeight]=useState(0);const hasAutoHeight=!style.height;const hasScript=html.includes(\"</script>\");useEffect(()=>{var _ref_current;const iframeWindow=(_ref_current=ref.current)===null||_ref_current===void 0?void 0:_ref_current.contentWindow;function handleMessage(event){if(event.source!==iframeWindow)return;const data=event.data;if(typeof data!==\"object\"||data===null)return;const height=data.embedHeight;if(typeof height!==\"number\")return;setIframeHeight(height);}window.addEventListener(\"message\",handleMessage);// After SSG the iframe loads before we attach the event handler,\n// therefore we need to request the latest height from the iframe.\niframeWindow===null||iframeWindow===void 0?void 0:iframeWindow.postMessage(\"getEmbedHeight\",\"*\");return()=>{window.removeEventListener(\"message\",handleMessage);};},[]);if(hasScript){const srcDoc=`<html>\n    <head>\n        <style>body { margin: 0; }</style>\n    </head>\n    <body>\n        ${html}\n        <script type=\"module\">\n            let height = 0\n\n            function sendEmbedHeight() {\n                window.parent.postMessage({\n                    embedHeight: height\n                }, \"*\")\n            }\n\n            const observer = new ResizeObserver((entries) => {\n                if (entries.length !== 1) return\n                const entry = entries[0]\n                if (entry.target !== document.body) return\n\n                height = entry.contentRect.height\n                sendEmbedHeight()\n            })\n\n            observer.observe(document.body)\n\n            window.addEventListener(\"message\", (event) => {\n                if (event.source !== window.parent) return\n                if (event.data !== \"getEmbedHeight\") return\n                sendEmbedHeight()\n            })\n        </script>\n    <body>\n</html>`;const currentStyle={...iframeStyle,...style};if(hasAutoHeight){currentStyle.height=iframeHeight+\"px\";}return /*#__PURE__*/_jsx(\"iframe\",{ref:ref,style:currentStyle,srcDoc:srcDoc});}return /*#__PURE__*/_jsx(\"div\",{style:{...htmlStyle,...style},dangerouslySetInnerHTML:{__html:html}});}const htmlStyle={width:\"100%\",height:\"100%\",display:\"flex\",flexDirection:\"column\",justifyContent:\"center\",alignItems:\"center\"};// 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,style}){return /*#__PURE__*/_jsx(\"div\",{className:\"framerInternalUI-errorPlaceholder\",style:{minHeight:getMinHeight(style),...containerStyles,overflow:\"hidden\",...style},children:/*#__PURE__*/_jsx(\"div\",{style:centerTextStyle,children:message})});}const centerTextStyle={textAlign:\"center\",minWidth:140};// Returns a min-height if the component is using auto-height.\nfunction getMinHeight(style){const hasAutoHeight=!style.height;if(hasAutoHeight)return 200;}\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"Embed\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\",\"framerIntrinsicWidth\":\"600\",\"framerSupportedLayoutWidth\":\"fixed\",\"framerIntrinsicHeight\":\"400\",\"framerSupportedLayoutHeight\":\"any-prefer-fixed\",\"framerDisableUnlink\":\"\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Embed.map", "let Component;\nvar House_default = (React) => {\n  if (!Component) {\n    const renderPathForWeight = (weight, color, pathsByWeight2) => !!pathsByWeight2.get(weight) ? pathsByWeight2.get(weight)(color) : null;\n    const pathsByWeight = new Map();\n    pathsByWeight.set(\"bold\", (color) => /* @__PURE__ */ React.createElement(React.Fragment, null, /* @__PURE__ */ React.createElement(\"path\", {\n      d: \"M152,208V160a8,8,0,0,0-8-8H112a8,8,0,0,0-8,8v48a8,8,0,0,1-8,8H48a8,8,0,0,1-8-8V115.5a8.3,8.3,0,0,1,2.6-5.9l80-72.7a8,8,0,0,1,10.8,0l80,72.7a8.3,8.3,0,0,1,2.6,5.9V208a8,8,0,0,1-8,8H160A8,8,0,0,1,152,208Z\",\n      fill: \"none\",\n      stroke: color,\n      strokeLinecap: \"round\",\n      strokeLinejoin: \"round\",\n      strokeWidth: \"24\"\n    })));\n    pathsByWeight.set(\"duotone\", (color) => /* @__PURE__ */ React.createElement(React.Fragment, null, /* @__PURE__ */ React.createElement(\"path\", {\n      d: \"M152,208V160a8,8,0,0,0-8-8H112a8,8,0,0,0-8,8v48a8,8,0,0,1-8,8H48a8,8,0,0,1-8-8V115.5a8.3,8.3,0,0,1,2.6-5.9l80-72.7a8,8,0,0,1,10.8,0l80,72.7a8.3,8.3,0,0,1,2.6,5.9V208a8,8,0,0,1-8,8H160A8,8,0,0,1,152,208Z\",\n      opacity: \"0.2\"\n    }), /* @__PURE__ */ React.createElement(\"path\", {\n      d: \"M152,208V160a8,8,0,0,0-8-8H112a8,8,0,0,0-8,8v48a8,8,0,0,1-8,8H48a8,8,0,0,1-8-8V115.5a8.3,8.3,0,0,1,2.6-5.9l80-72.7a8,8,0,0,1,10.8,0l80,72.7a8.3,8.3,0,0,1,2.6,5.9V208a8,8,0,0,1-8,8H160A8,8,0,0,1,152,208Z\",\n      fill: \"none\",\n      stroke: color,\n      strokeLinecap: \"round\",\n      strokeLinejoin: \"round\",\n      strokeWidth: \"16\"\n    })));\n    pathsByWeight.set(\"fill\", () => /* @__PURE__ */ React.createElement(React.Fragment, null, /* @__PURE__ */ React.createElement(\"path\", {\n      d: \"M218.8,103.7,138.8,31a16,16,0,0,0-21.6,0l-80,72.7A16,16,0,0,0,32,115.5v92.1a16.4,16.4,0,0,0,4,11A15.9,15.9,0,0,0,48,224H96a8,8,0,0,0,8-8V168a8,8,0,0,1,8-8h32a8,8,0,0,1,8,8v48a8,8,0,0,0,8,8h48a15.6,15.6,0,0,0,7.6-1.9A16.1,16.1,0,0,0,224,208V115.5A16,16,0,0,0,218.8,103.7Z\"\n    })));\n    pathsByWeight.set(\"light\", (color) => /* @__PURE__ */ React.createElement(React.Fragment, null, /* @__PURE__ */ React.createElement(\"path\", {\n      d: \"M152,208V160a8,8,0,0,0-8-8H112a8,8,0,0,0-8,8v48a8,8,0,0,1-8,8H48a8,8,0,0,1-8-8V115.5a8.3,8.3,0,0,1,2.6-5.9l80-72.7a8,8,0,0,1,10.8,0l80,72.7a8.3,8.3,0,0,1,2.6,5.9V208a8,8,0,0,1-8,8H160A8,8,0,0,1,152,208Z\",\n      fill: \"none\",\n      stroke: color,\n      strokeLinecap: \"round\",\n      strokeLinejoin: \"round\",\n      strokeWidth: \"12\"\n    })));\n    pathsByWeight.set(\"thin\", (color) => /* @__PURE__ */ React.createElement(React.Fragment, null, /* @__PURE__ */ React.createElement(\"path\", {\n      d: \"M152,208V160a8,8,0,0,0-8-8H112a8,8,0,0,0-8,8v48a8,8,0,0,1-8,8H48a8,8,0,0,1-8-8V115.5a8.3,8.3,0,0,1,2.6-5.9l80-72.7a8,8,0,0,1,10.8,0l80,72.7a8.3,8.3,0,0,1,2.6,5.9V208a8,8,0,0,1-8,8H160A8,8,0,0,1,152,208Z\",\n      fill: \"none\",\n      stroke: color,\n      strokeLinecap: \"round\",\n      strokeLinejoin: \"round\",\n      strokeWidth: \"8\"\n    })));\n    pathsByWeight.set(\"regular\", (color) => /* @__PURE__ */ React.createElement(React.Fragment, null, /* @__PURE__ */ React.createElement(\"path\", {\n      d: \"M152,208V160a8,8,0,0,0-8-8H112a8,8,0,0,0-8,8v48a8,8,0,0,1-8,8H48a8,8,0,0,1-8-8V115.5a8.3,8.3,0,0,1,2.6-5.9l80-72.7a8,8,0,0,1,10.8,0l80,72.7a8.3,8.3,0,0,1,2.6,5.9V208a8,8,0,0,1-8,8H160A8,8,0,0,1,152,208Z\",\n      fill: \"none\",\n      stroke: color,\n      strokeLinecap: \"round\",\n      strokeLinejoin: \"round\",\n      strokeWidth: \"16\"\n    })));\n    const renderPath = (weight, color) => renderPathForWeight(weight, color, pathsByWeight);\n    const House = React.forwardRef((props, ref) => /* @__PURE__ */ React.createElement(\"g\", {\n      ref,\n      ...props\n    }, renderPath(props.weight, props.color)));\n    House.displayName = \"House\";\n    Component = House;\n  }\n  return Component;\n};\nconst __FramerMetadata__ = {\n  exports: {\n    default: {\n      type: \"reactComponent\",\n      slots: [],\n      annotations: { framerContractVersion: \"1\" }\n    },\n    __FramerMetadata__: { type: \"variable\" }\n  }\n};\nexport {\n  __FramerMetadata__,\n  House_default as default\n};\n", "import{jsx as _jsx}from\"react/jsx-runtime\";import*as React from\"react\";import{useState,useEffect,useRef}from\"react\";import{addPropertyControls,ControlType,RenderTarget}from\"framer\";import{motion}from\"framer-motion\";import{NullState}from\"https://framer.com/m/framer/icon-nullstate.js@0.7.0\";import HouseFactory from\"https://framer.com/m/phosphor-icons/House.js@0.0.50\";import{defaultEvents,useIconSelection}from\"https://framerusercontent.com/modules/Ma20hU0GGRxLxZphbywl/OSpwWF91FHPVFyQJjMHt/utils.js\";const iconKeys=[\"Activity\",\"AddressBook\",\"Airplane\",\"AirplaneInFlight\",\"AirplaneLanding\",\"AirplaneTakeoff\",\"AirplaneTilt\",\"Airplay\",\"Alarm\",\"Alien\",\"AlignBottom\",\"AlignBottomSimple\",\"AlignCenterVertical\",\"AlignLeft\",\"AlignLeftSimple\",\"AlignRight\",\"AlignRightSimple\",\"AlignTop\",\"AlignTopSimple\",\"Anchor\",\"AnchorSimple\",\"AndroidLogo\",\"AngularLogo\",\"Aperture\",\"AppStoreLogo\",\"AppWindow\",\"AppleLogo\",\"ApplePodcastsLogo\",\"Archive\",\"ArchiveBox\",\"ArchiveTray\",\"Armchair\",\"ArrowArcLeft\",\"ArrowArcRight\",\"ArrowBendDownLeft\",\"ArrowBendDownRight\",\"ArrowBendLeftDown\",\"ArrowBendLeftUp\",\"ArrowBendRightDown\",\"ArrowBendRightUp\",\"ArrowBendUpLeft\",\"ArrowBendUpRight\",\"ArrowCircleDown\",\"ArrowCircleDownLeft\",\"ArrowCircleDownRight\",\"ArrowCircleLeft\",\"ArrowCircleRight\",\"ArrowCircleUp\",\"ArrowCircleUpLeft\",\"ArrowCircleUpRight\",\"ArrowClockwise\",\"ArrowDown\",\"ArrowDownLeft\",\"ArrowDownRight\",\"ArrowElbowDownLeft\",\"ArrowElbowDownRight\",\"ArrowElbowLeft\",\"ArrowElbowLeftDown\",\"ArrowElbowLeftUp\",\"ArrowElbowRight\",\"ArrowElbowRightDown\",\"ArrowElbowRightUp\",\"ArrowElbowUpLeft\",\"ArrowElbowUpRight\",\"ArrowFatDown\",\"ArrowFatLeft\",\"ArrowFatLineDown\",\"ArrowFatLineLeft\",\"ArrowFatLineRight\",\"ArrowFatLineUp\",\"ArrowFatLinesDown\",\"ArrowFatLinesLeft\",\"ArrowFatLinesRight\",\"ArrowFatLinesUp\",\"ArrowFatRight\",\"ArrowFatUp\",\"ArrowLeft\",\"ArrowLineDown\",\"ArrowLineDownLeft\",\"ArrowLineDownRight\",\"ArrowLineLeft\",\"ArrowLineRight\",\"ArrowLineUp\",\"ArrowLineUpLeft\",\"ArrowLineUpRight\",\"ArrowRight\",\"ArrowSquareDown\",\"ArrowSquareDownLeft\",\"ArrowSquareDownRight\",\"ArrowSquareIn\",\"ArrowSquareLeft\",\"ArrowSquareOut\",\"ArrowSquareRight\",\"ArrowSquareUp\",\"ArrowSquareUpLeft\",\"ArrowSquareUpRight\",\"ArrowUDownLeft\",\"ArrowUDownRight\",\"ArrowULeftDown\",\"ArrowULeftUp\",\"ArrowURightDown\",\"ArrowURightUp\",\"ArrowUUpLeft\",\"ArrowUUpRight\",\"ArrowUp\",\"ArrowUpLeft\",\"ArrowUpRight\",\"ArrowsClockwise\",\"ArrowsDownUp\",\"ArrowsHorizontal\",\"ArrowsIn\",\"ArrowsInCardinal\",\"ArrowsInLineVertical\",\"ArrowsInSimple\",\"ArrowsLeftRight\",\"ArrowsOut\",\"ArrowsOutCardinal\",\"ArrowsOutSimple\",\"ArrowsVertical\",\"Article\",\"ArticleMedium\",\"ArticleNyTimes\",\"Asterisk\",\"AsteriskSimple\",\"At\",\"Atom\",\"Baby\",\"Backpack\",\"Backspace\",\"Bag\",\"BagSimple\",\"Balloon\",\"Bandaids\",\"Bank\",\"Barbell\",\"Barcode\",\"Barricade\",\"Baseball\",\"Basketball\",\"Bathtub\",\"BatteryCharging\",\"BatteryEmpty\",\"BatteryFull\",\"BatteryHigh\",\"BatteryLow\",\"BatteryMedium\",\"BatteryPlus\",\"BatteryWarning\",\"Bed\",\"BeerBottle\",\"BehanceLogo\",\"Bell\",\"BellRinging\",\"BellSimple\",\"BellSimpleRinging\",\"BellSimpleSlash\",\"BellSimpleZ\",\"BellSlash\",\"BellZ\",\"BezierCurve\",\"Bicycle\",\"Binoculars\",\"Bird\",\"Bluetooth\",\"BluetoothConnected\",\"BluetoothSlash\",\"BluetoothX\",\"Boat\",\"Book\",\"BookBookmark\",\"BookOpen\",\"Bookmark\",\"BookmarkSimple\",\"Bookmarks\",\"BookmarksSimple\",\"Books\",\"BoundingBox\",\"BracketsAngle\",\"BracketsCurly\",\"BracketsRound\",\"BracketsSquare\",\"Brain\",\"Brandy\",\"Briefcase\",\"BriefcaseMetal\",\"Broadcast\",\"Browser\",\"Browsers\",\"Bug\",\"BugBeetle\",\"BugDroid\",\"Buildings\",\"Bus\",\"Butterfly\",\"Cactus\",\"Cake\",\"Calculator\",\"Calendar\",\"CalendarBlank\",\"CalendarCheck\",\"CalendarPlus\",\"CalendarX\",\"Camera\",\"CameraRotate\",\"CameraSlash\",\"Campfire\",\"Car\",\"CarSimple\",\"Cardholder\",\"Cards\",\"CaretCircleDoubleUp\",\"CaretCircleDown\",\"CaretCircleLeft\",\"CaretCircleRight\",\"CaretCircleUp\",\"CaretDoubleDown\",\"CaretDoubleLeft\",\"CaretDoubleRight\",\"CaretDoubleUp\",\"CaretDown\",\"CaretLeft\",\"CaretRight\",\"CaretUp\",\"Cat\",\"CellSignalFull\",\"CellSignalHigh\",\"CellSignalLow\",\"CellSignalMedium\",\"CellSignalNone\",\"CellSignalSlash\",\"CellSignalX\",\"Chalkboard\",\"ChalkboardSimple\",\"ChalkboardTeacher\",\"ChartBar\",\"ChartBarHorizontal\",\"ChartLine\",\"ChartLineUp\",\"ChartPie\",\"ChartPieSlice\",\"Chat\",\"ChatCentered\",\"ChatCenteredDots\",\"ChatCenteredText\",\"ChatCircle\",\"ChatCircleDots\",\"ChatCircleText\",\"ChatDots\",\"ChatTeardrop\",\"ChatTeardropDots\",\"ChatTeardropText\",\"ChatText\",\"Chats\",\"ChatsCircle\",\"ChatsTeardrop\",\"Check\",\"CheckCircle\",\"CheckSquare\",\"CheckSquareOffset\",\"Checks\",\"Circle\",\"CircleDashed\",\"CircleHalf\",\"CircleHalfTilt\",\"CircleNotch\",\"CircleWavy\",\"CircleWavyCheck\",\"CircleWavyQuestion\",\"CircleWavyWarning\",\"CirclesFour\",\"CirclesThree\",\"CirclesThreePlus\",\"Clipboard\",\"ClipboardText\",\"Clock\",\"ClockAfternoon\",\"ClockClockwise\",\"ClosedCaptioning\",\"Cloud\",\"CloudArrowDown\",\"CloudArrowUp\",\"CloudCheck\",\"CloudFog\",\"CloudLightning\",\"CloudMoon\",\"CloudRain\",\"CloudSlash\",\"CloudSnow\",\"CloudSun\",\"Club\",\"CoatHanger\",\"Code\",\"CodeSimple\",\"CodepenLogo\",\"CodesandboxLogo\",\"Coffee\",\"Coin\",\"CoinVertical\",\"Coins\",\"Columns\",\"Command\",\"Compass\",\"ComputerTower\",\"Confetti\",\"Cookie\",\"CookingPot\",\"Copy\",\"CopySimple\",\"Copyleft\",\"Copyright\",\"CornersIn\",\"CornersOut\",\"Cpu\",\"CreditCard\",\"Crop\",\"Crosshair\",\"CrosshairSimple\",\"Crown\",\"CrownSimple\",\"Cube\",\"CurrencyBtc\",\"CurrencyCircleDollar\",\"CurrencyCny\",\"CurrencyDollar\",\"CurrencyDollarSimple\",\"CurrencyEth\",\"CurrencyEur\",\"CurrencyGbp\",\"CurrencyInr\",\"CurrencyJpy\",\"CurrencyKrw\",\"CurrencyKzt\",\"CurrencyNgn\",\"CurrencyRub\",\"Cursor\",\"CursorText\",\"Cylinder\",\"Database\",\"Desktop\",\"DesktopTower\",\"Detective\",\"DeviceMobile\",\"DeviceMobileCamera\",\"DeviceMobileSpeaker\",\"DeviceTablet\",\"DeviceTabletCamera\",\"DeviceTabletSpeaker\",\"Diamond\",\"DiamondsFour\",\"DiceFive\",\"DiceFour\",\"DiceOne\",\"DiceSix\",\"DiceThree\",\"DiceTwo\",\"Disc\",\"DiscordLogo\",\"Divide\",\"Dog\",\"Door\",\"DotsNine\",\"DotsSix\",\"DotsSixVertical\",\"DotsThree\",\"DotsThreeCircle\",\"DotsThreeOutline\",\"DotsThreeVertical\",\"Download\",\"DownloadSimple\",\"DribbbleLogo\",\"Drop\",\"DropHalf\",\"DropHalfBottom\",\"Ear\",\"EarSlash\",\"Egg\",\"EggCrack\",\"Eject\",\"EjectSimple\",\"Envelope\",\"EnvelopeOpen\",\"EnvelopeSimple\",\"EnvelopeSimpleOpen\",\"Equalizer\",\"Equals\",\"Eraser\",\"Exam\",\"Export\",\"Eye\",\"EyeClosed\",\"EyeSlash\",\"Eyedropper\",\"EyedropperSample\",\"Eyeglasses\",\"FaceMask\",\"FacebookLogo\",\"Factory\",\"Faders\",\"FadersHorizontal\",\"FastForward\",\"FastForwardCircle\",\"FigmaLogo\",\"File\",\"FileArrowDown\",\"FileArrowUp\",\"FileAudio\",\"FileCloud\",\"FileCode\",\"FileCss\",\"FileCsv\",\"FileDoc\",\"FileDotted\",\"FileHtml\",\"FileImage\",\"FileJpg\",\"FileJs\",\"FileJsx\",\"FileLock\",\"FileMinus\",\"FilePdf\",\"FilePlus\",\"FilePng\",\"FilePpt\",\"FileRs\",\"FileSearch\",\"FileText\",\"FileTs\",\"FileTsx\",\"FileVideo\",\"FileVue\",\"FileX\",\"FileXls\",\"FileZip\",\"Files\",\"FilmScript\",\"FilmSlate\",\"FilmStrip\",\"Fingerprint\",\"FingerprintSimple\",\"FinnTheHuman\",\"Fire\",\"FireSimple\",\"FirstAid\",\"FirstAidKit\",\"Fish\",\"FishSimple\",\"Flag\",\"FlagBanner\",\"FlagCheckered\",\"Flame\",\"Flashlight\",\"Flask\",\"FloppyDisk\",\"FloppyDiskBack\",\"FlowArrow\",\"Flower\",\"FlowerLotus\",\"FlyingSaucer\",\"Folder\",\"FolderDotted\",\"FolderLock\",\"FolderMinus\",\"FolderNotch\",\"FolderNotchMinus\",\"FolderNotchOpen\",\"FolderNotchPlus\",\"FolderOpen\",\"FolderPlus\",\"FolderSimple\",\"FolderSimpleDotted\",\"FolderSimpleLock\",\"FolderSimpleMinus\",\"FolderSimplePlus\",\"FolderSimpleStar\",\"FolderSimpleUser\",\"FolderStar\",\"FolderUser\",\"Folders\",\"Football\",\"ForkKnife\",\"FrameCorners\",\"FramerLogo\",\"Function\",\"Funnel\",\"FunnelSimple\",\"GameController\",\"GasPump\",\"Gauge\",\"Gear\",\"GearSix\",\"GenderFemale\",\"GenderIntersex\",\"GenderMale\",\"GenderNeuter\",\"GenderNonbinary\",\"GenderTransgender\",\"Ghost\",\"Gif\",\"Gift\",\"GitBranch\",\"GitCommit\",\"GitDiff\",\"GitFork\",\"GitMerge\",\"GitPullRequest\",\"GithubLogo\",\"GitlabLogo\",\"GitlabLogoSimple\",\"Globe\",\"GlobeHemisphereEast\",\"GlobeHemisphereWest\",\"GlobeSimple\",\"GlobeStand\",\"GoogleChromeLogo\",\"GoogleLogo\",\"GooglePhotosLogo\",\"GooglePlayLogo\",\"GooglePodcastsLogo\",\"Gradient\",\"GraduationCap\",\"Graph\",\"GridFour\",\"Hamburger\",\"Hand\",\"HandEye\",\"HandFist\",\"HandGrabbing\",\"HandPalm\",\"HandPointing\",\"HandSoap\",\"HandWaving\",\"Handbag\",\"HandbagSimple\",\"HandsClapping\",\"Handshake\",\"HardDrive\",\"HardDrives\",\"Hash\",\"HashStraight\",\"Headlights\",\"Headphones\",\"Headset\",\"Heart\",\"HeartBreak\",\"HeartStraight\",\"HeartStraightBreak\",\"Heartbeat\",\"Hexagon\",\"HighlighterCircle\",\"Horse\",\"Hourglass\",\"HourglassHigh\",\"HourglassLow\",\"HourglassMedium\",\"HourglassSimple\",\"HourglassSimpleHigh\",\"HourglassSimpleLow\",\"House\",\"HouseLine\",\"HouseSimple\",\"IdentificationBadge\",\"IdentificationCard\",\"Image\",\"ImageSquare\",\"Infinity\",\"Info\",\"InstagramLogo\",\"Intersect\",\"Jeep\",\"Kanban\",\"Key\",\"KeyReturn\",\"Keyboard\",\"Keyhole\",\"Knife\",\"Ladder\",\"LadderSimple\",\"Lamp\",\"Laptop\",\"Layout\",\"Leaf\",\"Lifebuoy\",\"Lightbulb\",\"LightbulbFilament\",\"Lightning\",\"LightningSlash\",\"LineSegment\",\"LineSegments\",\"Link\",\"LinkBreak\",\"LinkSimple\",\"LinkSimpleBreak\",\"LinkSimpleHorizontal\",\"LinkedinLogo\",\"LinuxLogo\",\"List\",\"ListBullets\",\"ListChecks\",\"ListDashes\",\"ListNumbers\",\"ListPlus\",\"Lock\",\"LockKey\",\"LockKeyOpen\",\"LockLaminated\",\"LockLaminatedOpen\",\"LockOpen\",\"LockSimple\",\"LockSimpleOpen\",\"MagicWand\",\"Magnet\",\"MagnetStraight\",\"MagnifyingGlass\",\"MagnifyingGlassMinus\",\"MagnifyingGlassPlus\",\"MapPin\",\"MapPinLine\",\"MapTrifold\",\"MarkerCircle\",\"Martini\",\"MaskHappy\",\"MaskSad\",\"MathOperations\",\"Medal\",\"MediumLogo\",\"Megaphone\",\"MegaphoneSimple\",\"MessengerLogo\",\"Microphone\",\"MicrophoneSlash\",\"MicrophoneStage\",\"MicrosoftExcelLogo\",\"MicrosoftTeamsLogo\",\"MicrosoftWordLogo\",\"Minus\",\"MinusCircle\",\"Money\",\"Monitor\",\"MonitorPlay\",\"Moon\",\"MoonStars\",\"Mountains\",\"Mouse\",\"MouseSimple\",\"MusicNote\",\"MusicNoteSimple\",\"MusicNotes\",\"MusicNotesPlus\",\"MusicNotesSimple\",\"NavigationArrow\",\"Needle\",\"Newspaper\",\"NewspaperClipping\",\"Note\",\"NoteBlank\",\"NotePencil\",\"Notebook\",\"Notepad\",\"Notification\",\"NumberCircleEight\",\"NumberCircleFive\",\"NumberCircleFour\",\"NumberCircleNine\",\"NumberCircleOne\",\"NumberCircleSeven\",\"NumberCircleSix\",\"NumberCircleThree\",\"NumberCircleTwo\",\"NumberCircleZero\",\"NumberEight\",\"NumberFive\",\"NumberFour\",\"NumberNine\",\"NumberOne\",\"NumberSeven\",\"NumberSix\",\"NumberSquareEight\",\"NumberSquareFive\",\"NumberSquareFour\",\"NumberSquareNine\",\"NumberSquareOne\",\"NumberSquareSeven\",\"NumberSquareSix\",\"NumberSquareThree\",\"NumberSquareTwo\",\"NumberSquareZero\",\"NumberThree\",\"NumberTwo\",\"NumberZero\",\"Nut\",\"NyTimesLogo\",\"Octagon\",\"Option\",\"Package\",\"PaintBrush\",\"PaintBrushBroad\",\"PaintBrushHousehold\",\"PaintBucket\",\"PaintRoller\",\"Palette\",\"PaperPlane\",\"PaperPlaneRight\",\"PaperPlaneTilt\",\"Paperclip\",\"PaperclipHorizontal\",\"Parachute\",\"Password\",\"Path\",\"Pause\",\"PauseCircle\",\"PawPrint\",\"Peace\",\"Pen\",\"PenNib\",\"PenNibStraight\",\"Pencil\",\"PencilCircle\",\"PencilLine\",\"PencilSimple\",\"PencilSimpleLine\",\"Percent\",\"Person\",\"PersonSimple\",\"PersonSimpleRun\",\"PersonSimpleWalk\",\"Perspective\",\"Phone\",\"PhoneCall\",\"PhoneDisconnect\",\"PhoneIncoming\",\"PhoneOutgoing\",\"PhoneSlash\",\"PhoneX\",\"PhosphorLogo\",\"PianoKeys\",\"PictureInPicture\",\"Pill\",\"PinterestLogo\",\"Pinwheel\",\"Pizza\",\"Placeholder\",\"Planet\",\"Play\",\"PlayCircle\",\"Playlist\",\"Plug\",\"Plugs\",\"PlugsConnected\",\"Plus\",\"PlusCircle\",\"PlusMinus\",\"PokerChip\",\"PoliceCar\",\"Polygon\",\"Popcorn\",\"Power\",\"Prescription\",\"Presentation\",\"PresentationChart\",\"Printer\",\"Prohibit\",\"ProhibitInset\",\"ProjectorScreen\",\"ProjectorScreenChart\",\"PushPin\",\"PushPinSimple\",\"PushPinSimpleSlash\",\"PushPinSlash\",\"PuzzlePiece\",\"QrCode\",\"Question\",\"Queue\",\"Quotes\",\"Radical\",\"Radio\",\"RadioButton\",\"Rainbow\",\"RainbowCloud\",\"Receipt\",\"Record\",\"Rectangle\",\"Recycle\",\"RedditLogo\",\"Repeat\",\"RepeatOnce\",\"Rewind\",\"RewindCircle\",\"Robot\",\"Rocket\",\"RocketLaunch\",\"Rows\",\"Rss\",\"RssSimple\",\"Rug\",\"Ruler\",\"Scales\",\"Scan\",\"Scissors\",\"Screencast\",\"ScribbleLoop\",\"Scroll\",\"Selection\",\"SelectionAll\",\"SelectionBackground\",\"SelectionForeground\",\"SelectionInverse\",\"SelectionPlus\",\"SelectionSlash\",\"Share\",\"ShareNetwork\",\"Shield\",\"ShieldCheck\",\"ShieldCheckered\",\"ShieldChevron\",\"ShieldPlus\",\"ShieldSlash\",\"ShieldStar\",\"ShieldWarning\",\"ShoppingBag\",\"ShoppingBagOpen\",\"ShoppingCart\",\"ShoppingCartSimple\",\"Shower\",\"Shuffle\",\"ShuffleAngular\",\"ShuffleSimple\",\"Sidebar\",\"SidebarSimple\",\"SignIn\",\"SignOut\",\"Signpost\",\"SimCard\",\"SketchLogo\",\"SkipBack\",\"SkipBackCircle\",\"SkipForward\",\"SkipForwardCircle\",\"Skull\",\"SlackLogo\",\"Sliders\",\"SlidersHorizontal\",\"Smiley\",\"SmileyBlank\",\"SmileyMeh\",\"SmileyNervous\",\"SmileySad\",\"SmileySticker\",\"SmileyWink\",\"SmileyXEyes\",\"SnapchatLogo\",\"Snowflake\",\"SoccerBall\",\"SortAscending\",\"SortDescending\",\"Spade\",\"Sparkle\",\"SpeakerHigh\",\"SpeakerLow\",\"SpeakerNone\",\"SpeakerSimpleHigh\",\"SpeakerSimpleLow\",\"SpeakerSimpleNone\",\"SpeakerSimpleSlash\",\"SpeakerSimpleX\",\"SpeakerSlash\",\"SpeakerX\",\"Spinner\",\"SpinnerGap\",\"Spiral\",\"SpotifyLogo\",\"Square\",\"SquareHalf\",\"SquareHalfBottom\",\"SquareLogo\",\"SquaresFour\",\"Stack\",\"StackOverflowLogo\",\"StackSimple\",\"Stamp\",\"Star\",\"StarFour\",\"StarHalf\",\"Sticker\",\"Stop\",\"StopCircle\",\"Storefront\",\"Strategy\",\"StripeLogo\",\"Student\",\"Suitcase\",\"SuitcaseSimple\",\"Sun\",\"SunDim\",\"SunHorizon\",\"Sunglasses\",\"Swap\",\"Swatches\",\"Sword\",\"Syringe\",\"TShirt\",\"Table\",\"Tabs\",\"Tag\",\"TagChevron\",\"TagSimple\",\"Target\",\"Taxi\",\"TelegramLogo\",\"Television\",\"TelevisionSimple\",\"TennisBall\",\"Terminal\",\"TerminalWindow\",\"TestTube\",\"TextAa\",\"TextAlignCenter\",\"TextAlignJustify\",\"TextAlignLeft\",\"TextAlignRight\",\"TextBolder\",\"TextH\",\"TextHFive\",\"TextHFour\",\"TextHOne\",\"TextHSix\",\"TextHThree\",\"TextHTwo\",\"TextIndent\",\"TextItalic\",\"TextOutdent\",\"TextStrikethrough\",\"TextT\",\"TextUnderline\",\"Textbox\",\"Thermometer\",\"ThermometerCold\",\"ThermometerHot\",\"ThermometerSimple\",\"ThumbsDown\",\"ThumbsUp\",\"Ticket\",\"TiktokLogo\",\"Timer\",\"ToggleLeft\",\"ToggleRight\",\"Toilet\",\"ToiletPaper\",\"Tote\",\"ToteSimple\",\"TrademarkRegistered\",\"TrafficCone\",\"TrafficSign\",\"TrafficSignal\",\"Train\",\"TrainRegional\",\"TrainSimple\",\"Translate\",\"Trash\",\"TrashSimple\",\"Tray\",\"Tree\",\"TreeEvergreen\",\"TreeStructure\",\"TrendDown\",\"TrendUp\",\"Triangle\",\"Trophy\",\"Truck\",\"TwitchLogo\",\"TwitterLogo\",\"Umbrella\",\"UmbrellaSimple\",\"Upload\",\"UploadSimple\",\"User\",\"UserCircle\",\"UserCircleGear\",\"UserCircleMinus\",\"UserCirclePlus\",\"UserFocus\",\"UserGear\",\"UserList\",\"UserMinus\",\"UserPlus\",\"UserRectangle\",\"UserSquare\",\"UserSwitch\",\"Users\",\"UsersFour\",\"UsersThree\",\"Vault\",\"Vibrate\",\"VideoCamera\",\"VideoCameraSlash\",\"Vignette\",\"Voicemail\",\"Volleyball\",\"Wall\",\"Wallet\",\"Warning\",\"WarningCircle\",\"WarningOctagon\",\"Watch\",\"WaveSawtooth\",\"WaveSine\",\"WaveSquare\",\"WaveTriangle\",\"Waves\",\"Webcam\",\"WhatsappLogo\",\"Wheelchair\",\"WifiHigh\",\"WifiLow\",\"WifiMedium\",\"WifiNone\",\"WifiSlash\",\"WifiX\",\"Wind\",\"WindowsLogo\",\"Wine\",\"Wrench\",\"X\",\"XCircle\",\"XSquare\",\"YinYang\",\"YoutubeLogo\",];const moduleBaseUrl=\"https://framer.com/m/phosphor-icons/\";const weightOptions=[\"thin\",\"light\",\"regular\",\"bold\",\"fill\",\"duotone\",];const lowercaseIconKeyPairs=iconKeys.reduce((res,key)=>{res[key.toLowerCase()]=key;return res;},{});/**\n * PHOSPHOR\n *\n * @framerSupportedLayoutWidth fixed\n * @framerSupportedLayoutHeight fixed\n *\n * @framerIntrinsicWidth 24\n * @framerIntrinsicHeight 24\n */ export function Icon(props){const{color,selectByList,iconSearch,iconSelection,onClick,onMouseDown,onMouseUp,onMouseEnter,onMouseLeave,weight,mirrored}=props;const isMounted=useRef(false);const iconKey=useIconSelection(iconKeys,selectByList,iconSearch,iconSelection,lowercaseIconKeyPairs);const[SelectedIcon,setSelectedIcon]=useState(iconKey===\"Home\"?HouseFactory(React):null);async function importModule(){// Get the selected module\ntry{// Quickfix, needs proper publish\nconst version=\"0.0.50\";const iconModuleUrl=`${moduleBaseUrl}${iconKey}.js@${version}`;const module=await import(/* webpackIgnore: true */ iconModuleUrl);if(isMounted.current)setSelectedIcon(module.default(React));}catch(err){if(isMounted.current)setSelectedIcon(null);}}useEffect(()=>{isMounted.current=true;importModule();return()=>{isMounted.current=false;};},[iconKey]);const isOnCanvas=RenderTarget.current()===RenderTarget.canvas;const emptyState=isOnCanvas?/*#__PURE__*/ _jsx(NullState,{}):null;return /*#__PURE__*/ _jsx(motion.div,{style:{display:\"contents\"},onClick,onMouseEnter,onMouseLeave,onMouseDown,onMouseUp,children:SelectedIcon?/*#__PURE__*/ _jsx(\"svg\",{xmlns:\"http://www.w3.org/2000/svg\",viewBox:\"0 0 256 256\",style:{userSelect:\"none\",width:\"100%\",height:\"100%\",display:\"inline-block\",fill:color,flexShrink:0,transform:mirrored?\"scale(-1, 1)\":undefined},focusable:\"false\",color:color,children:/*#__PURE__*/ _jsx(SelectedIcon,{color:color,weight:weight})}):emptyState});}Icon.displayName=\"Phosphor\";Icon.defaultProps={width:24,height:24,iconSelection:\"House\",iconSearch:\"House\",color:\"#66F\",selectByList:true,weight:\"regular\",mirrored:false};addPropertyControls(Icon,{selectByList:{type:ControlType.Boolean,title:\"Select\",enabledTitle:\"List\",disabledTitle:\"Search\",defaultValue:Icon.defaultProps.selectByList},iconSelection:{type:ControlType.Enum,options:iconKeys,defaultValue:Icon.defaultProps.iconSelection,title:\"Name\",hidden:({selectByList})=>!selectByList,description:\"Find every icon name on the [Phosphor site](https://phosphoricons.com/)\"},iconSearch:{type:ControlType.String,title:\"Name\",placeholder:\"Menu, Wifi, Box\u2026\",hidden:({selectByList})=>selectByList},color:{type:ControlType.Color,title:\"Color\",defaultValue:Icon.defaultProps.color},weight:{type:ControlType.Enum,title:\"Weight\",optionTitles:weightOptions.map(piece=>piece.charAt(0).toUpperCase()+piece.slice(1)),options:weightOptions,defaultValue:Icon.defaultProps.weight},mirrored:{type:ControlType.Boolean,enabledTitle:\"Yes\",disabledTitle:\"No\",defaultValue:Icon.defaultProps.mirrored},...defaultEvents});\nexport const __FramerMetadata__ = {\"exports\":{\"Icon\":{\"type\":\"reactComponent\",\"name\":\"Icon\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\",\"framerSupportedLayoutWidth\":\"fixed\",\"framerIntrinsicHeight\":\"24\",\"framerSupportedLayoutHeight\":\"fixed\",\"framerIntrinsicWidth\":\"24\"}},\"IconProps\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Phosphor.map", "// Generated by Framer (b2780b5)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,getLoadingLazyAtYPosition,Image,SVG,useComponentViewport,useLocaleInfo,useVariantState,withCSS,withFX}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";const MotionDivWithFX=withFX(motion.div);const cycleOrder=[\"ois8_nJff\",\"X3tsGGYLa\",\"PizjlGGFY\",\"BTf_TVWtu\",\"d6JbuUgDU\",\"GsQdIIGhK\",\"KnEHTRnCm\",\"WhMRKaPjI\",\"xuGBlNORp\"];const serializationHash=\"framer-Nk41V\";const variantClassNames={BTf_TVWtu:\"framer-v-9r759\",d6JbuUgDU:\"framer-v-qv1z9c\",GsQdIIGhK:\"framer-v-sit0ei\",KnEHTRnCm:\"framer-v-sn60vk\",ois8_nJff:\"framer-v-11r17sh\",PizjlGGFY:\"framer-v-scbz7c\",WhMRKaPjI:\"framer-v-kttyzf\",X3tsGGYLa:\"framer-v-c4fte\",xuGBlNORp:\"framer-v-hqk3ar\"};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={bounce:.2,delay:0,duration:.4,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 humanReadableVariantMap={\"Mobile Variant 1\":\"KnEHTRnCm\",\"Mobile Variant 2\":\"WhMRKaPjI\",\"Mobile Variant 3\":\"xuGBlNORp\",\"Tablet Variant 1\":\"BTf_TVWtu\",\"Tablet Variant 2\":\"d6JbuUgDU\",\"Tablet Variant 3\":\"GsQdIIGhK\",\"Variant 1\":\"ois8_nJff\",\"Variant 2\":\"X3tsGGYLa\",\"Variant 3\":\"PizjlGGFY\"};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:\"ois8_nJff\"};};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:\"ois8_nJff\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const ref1=React.useRef(null);const isDisplayed=()=>{if([\"X3tsGGYLa\",\"PizjlGGFY\",\"d6JbuUgDU\",\"GsQdIIGhK\",\"WhMRKaPjI\",\"xuGBlNORp\"].includes(baseVariant))return false;return true;};const isDisplayed1=()=>{if([\"X3tsGGYLa\",\"d6JbuUgDU\",\"WhMRKaPjI\"].includes(baseVariant))return true;return false;};const isDisplayed2=()=>{if([\"PizjlGGFY\",\"GsQdIIGhK\",\"xuGBlNORp\"].includes(baseVariant))return true;return false;};const isDisplayed3=()=>{if([\"X3tsGGYLa\",\"d6JbuUgDU\"].includes(baseVariant))return true;return false;};const isDisplayed4=()=>{if(baseVariant===\"WhMRKaPjI\")return true;return false;};const isDisplayed5=()=>{if([\"PizjlGGFY\",\"GsQdIIGhK\"].includes(baseVariant))return true;return false;};const isDisplayed6=()=>{if(baseVariant===\"xuGBlNORp\")return true;return false;};const isDisplayed7=()=>{if(baseVariant===\"X3tsGGYLa\")return true;return false;};const isDisplayed8=()=>{if(baseVariant===\"d6JbuUgDU\")return true;return false;};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(MotionDivWithFX,{...restProps,...gestureHandlers,__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:1,skewX:0,skewY:0,x:0,y:-150}},{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:150}}],__framer__transformTrigger:\"onScroll\",__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,className:cx(serializationHash,...sharedStyleClassNames,\"framer-11r17sh\",className,classNames),\"data-framer-name\":\"Variant 1\",layoutDependency:layoutDependency,layoutId:\"ois8_nJff\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{...style},...addPropertyOverrides({BTf_TVWtu:{__framer__transformTargets:[{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:-150,y:0}},{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:150,y:0}}],\"data-framer-name\":\"Tablet Variant 1\"},d6JbuUgDU:{__framer__transformTargets:[{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:150,y:0}},{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:-150,y:0}}],\"data-framer-name\":\"Tablet Variant 2\"},GsQdIIGhK:{__framer__transformTargets:[{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:-150,y:0}},{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:150,y:0}}],\"data-framer-name\":\"Tablet Variant 3\"},KnEHTRnCm:{__framer__transformTargets:[{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:-75,y:0}},{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:75,y:0}}],\"data-framer-name\":\"Mobile Variant 1\"},PizjlGGFY:{\"data-framer-name\":\"Variant 3\"},WhMRKaPjI:{__framer__transformTargets:[{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:75,y:0}},{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:-75,y:0}}],\"data-framer-name\":\"Mobile Variant 2\"},X3tsGGYLa:{__framer__transformTargets:[{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:150}},{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:-150}}],\"data-framer-name\":\"Variant 2\"},xuGBlNORp:{__framer__transformTargets:[{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:-75,y:0}},{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:75,y:0}}],\"data-framer-name\":\"Mobile Variant 3\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-f7uhia\",\"data-border\":true,layoutDependency:layoutDependency,layoutId:\"PpZgOcDpB\",style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"rgba(255, 255, 255, 0.25)\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",backgroundColor:\"rgba(255, 255, 255, 0.1)\",borderBottomLeftRadius:166,borderBottomRightRadius:166,borderTopLeftRadius:166,borderTopRightRadius:166},children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-cjsgq4\",layoutDependency:layoutDependency,layoutId:\"UlNRRuxWR\",style:{backgroundColor:\"rgb(255, 255, 255)\",borderBottomLeftRadius:166,borderBottomRightRadius:166,borderTopLeftRadius:166,borderTopRightRadius:166,boxShadow:\"inset 0px -6px 2px 0px rgba(31, 31, 31, 0.5)\"},children:[isDisplayed()&&/*#__PURE__*/_jsx(SVG,{className:\"framer-ttguvy\",\"data-framer-name\":\"Graphic\",fill:\"black\",intrinsicHeight:56,intrinsicWidth:132,layoutDependency:layoutDependency,layoutId:\"H4kS1qunl\",svg:'<svg width=\"132\" height=\"56\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"m40.531 55.356 3.413-4.932h-2.852a.258.258 0 0 1-.26-.26v-.468a.26.26 0 0 1 .26-.26h4.22a.26.26 0 0 1 .26.26v.153a.273.273 0 0 1-.045.146l-3.33 4.934h3.019a.26.26 0 0 1 .26.26v.468a.26.26 0 0 1-.26.26h-4.473a.258.258 0 0 1-.259-.26v-.15a.273.273 0 0 1 .047-.151ZM59.48 52.67c0-1.27-.665-2.332-2.04-2.332-1.385 0-1.979 1.079-1.979 2.372 0 1.217.726 2.296 2.056 2.296 1.369-.002 1.962-1.135 1.962-2.336Zm-5.328-.024c0-1.91 1.41-3.304 3.358-3.304 1.946 0 3.27 1.394 3.27 3.318 0 1.955-1.364 3.34-3.326 3.34s-3.302-1.385-3.302-3.354Zm16.044-3.209h.74c.143 0 .258.115.258.259v2.485h2.992v-2.485c0-.144.115-.26.259-.26h.735a.26.26 0 0 1 .259.26v5.959a.26.26 0 0 1-.26.259h-.734a.258.258 0 0 1-.26-.26v-2.489h-2.99v2.49a.26.26 0 0 1-.26.259h-.74a.258.258 0 0 1-.258-.26v-5.958c0-.144.115-.26.259-.26ZM89.91 52.67c0-1.27-.665-2.332-2.04-2.332-1.385 0-1.979 1.079-1.979 2.372 0 1.217.726 2.296 2.056 2.296 1.369-.002 1.962-1.135 1.962-2.336Zm-5.326-.024c0-1.91 1.41-3.304 3.359-3.304 1.948 0 3.269 1.394 3.269 3.318 0 1.955-1.364 3.34-3.326 3.34s-3.302-1.385-3.302-3.354Z\" fill=\"#030404\"/><path d=\"M47.381 3.868a3.232 3.232 0 0 0-2.944 1.908L34.97 27.02a3.226 3.226 0 0 0 1.625 4.263l21.245 9.468a3.212 3.212 0 0 0 2.473.07 3.241 3.241 0 0 0 1.79-1.695l9.468-21.245c.73-1.625 0-3.533-1.625-4.263L48.7 4.151a3.028 3.028 0 0 0-1.319-.283Zm11.753 41.005a7.143 7.143 0 0 1-2.873-.612l-21.245-9.468c-1.72-.777-3.062-2.167-3.721-3.934a6.973 6.973 0 0 1 .14-5.417l9.47-21.244c1.6-3.557 5.793-5.182 9.35-3.58L71.5 10.086c3.556 1.601 5.181 5.794 3.58 9.35l-9.47 21.245c-.777 1.72-2.167 3.062-3.933 3.721a7.362 7.362 0 0 1-2.544.471Z\" fill=\"#089949\"/><path d=\"M101.36 11.305a3.232 3.232 0 0 0-3.227 3.226v23.247a3.232 3.232 0 0 0 3.227 3.227h23.247a3.231 3.231 0 0 0 3.226-3.227V14.53a3.231 3.231 0 0 0-3.226-3.226H101.36Zm23.247 33.562H101.36c-3.91 0-7.09-3.18-7.09-7.09V14.532c0-3.91 3.18-7.09 7.09-7.09h23.247c3.91 0 7.089 3.18 7.089 7.09v23.247c0 3.91-3.179 7.09-7.089 7.09Z\" fill=\"#F9B21D\"/><path d=\"m38.512 19.05-2.87 6.44 1.306 8.049a3.227 3.227 0 0 1-2.662 3.698l-22.964 3.721a3.239 3.239 0 0 1-2.403-.565c-.706-.495-1.154-1.248-1.295-2.096l-3.721-22.94a3.226 3.226 0 0 1 2.661-3.699l22.964-3.721a3.85 3.85 0 0 1 .519-.047c.683 0 1.342.212 1.884.612.706.495 1.154 1.249 1.295 2.096l1.288 7.941 2.87-6.439-.342-2.114a7.092 7.092 0 0 0-2.85-4.616 7.024 7.024 0 0 0-5.276-1.249L5.952 7.843c-3.863.612-6.477 4.263-5.865 8.126l3.721 22.94a7.092 7.092 0 0 0 2.85 4.616 7.01 7.01 0 0 0 4.122 1.343c.4 0 .777-.047 1.178-.094l22.94-3.722c3.863-.612 6.478-4.263 5.865-8.126l-2.25-13.875Z\" fill=\"#E42527\"/><path d=\"m66.166 29.95 2.997-6.732-1.095-8.05a3.2 3.2 0 0 1 .636-2.38 3.206 3.206 0 0 1 2.12-1.248l23.035-3.132c.141-.024.282-.024.424-.024.873 0 1.689.362 2.283.957a7.07 7.07 0 0 1 3.555-1.764 7.17 7.17 0 0 0-1.528-1.595 7.002 7.002 0 0 0-5.252-1.39L70.306 7.725a7.055 7.055 0 0 0-4.687 2.732 7.002 7.002 0 0 0-1.39 5.252l1.937 14.242Zm38.291 3.753-3.043-22.375h-.051a3.232 3.232 0 0 0-3.227 3.227v1.393l2.482 18.25a3.201 3.201 0 0 1-.636 2.379 3.205 3.205 0 0 1-2.12 1.248l-23.034 3.133a3.217 3.217 0 0 1-3.628-2.756l-1.049-7.714-2.997 6.732.207 1.523c.495 3.533 3.533 6.124 7.019 6.124.306 0 .636-.023.966-.07l23.035-3.11c3.886-.541 6.594-4.121 6.076-7.984Z\" fill=\"#226DB4\"/></svg>',withExternalLayout:true}),isDisplayed1()&&/*#__PURE__*/_jsx(SVG,{className:\"framer-1gcqv6t\",\"data-framer-name\":\"Graphic\",fill:\"black\",intrinsicHeight:90,intrinsicWidth:129,layoutDependency:layoutDependency,layoutId:\"vefpKO4w2\",svg:'<svg width=\"129\" height=\"90\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M53.463 9.84c4.153-4.302 9.939-7.02 16.32-7.02 8.505 0 15.875 4.747 19.83 11.77 3.413-1.534 7.22-2.374 11.225-2.374 15.332 0 27.693 12.51 27.693 27.94 0 15.43-12.412 27.938-27.693 27.938-1.876 0-3.708-.198-5.439-.544-3.461 6.18-10.089 10.386-17.707 10.386-3.162 0-6.18-.742-8.851-2.028C65.33 84.167 57.12 90 47.575 90c-9.939 0-18.445-6.28-21.71-15.135a21.787 21.787 0 0 1-4.401.445C9.595 75.31 0 65.618 0 53.6c0-7.993 4.302-15.034 10.732-18.792a24.494 24.494 0 0 1-2.077-9.94C8.61 11.177 19.835 0 33.58 0a24.919 24.919 0 0 1 19.88 9.84\" fill=\"#00A1E0\"/><path d=\"m18.599 46.683.544-1.433c.099-.247.247-.148.347-.1l.445.296c1.533.99 2.968.99 3.413.99 1.138 0 1.877-.594 1.877-1.433v-.049c0-.89-1.088-1.233-2.374-1.633l-.296-.1c-1.73-.494-3.61-1.233-3.61-3.412v-.048c0-2.077 1.682-3.563 4.104-3.563h.247c1.433 0 2.77.397 3.758 1.04.1.048.198.147.148.295l-.544 1.433c-.099.247-.347.1-.347.1-.89-.496-2.225-.842-3.363-.842-1.039 0-1.682.544-1.682 1.286v.049c0 .841 1.138 1.234 2.424 1.633l.247.049c1.73.544 3.562 1.286 3.562 3.413v.048c0 2.277-1.633 3.66-4.254 3.66-1.286 0-2.52-.198-3.857-.89-.247-.148-.496-.247-.742-.445-.049-.099-.148-.147-.049-.347l.002.003Zm38.576 0 .544-1.433c.099-.247.295-.148.347-.1l.445.296c1.533.99 2.968.99 3.413.99 1.138 0 1.877-.594 1.877-1.433v-.049c0-.89-1.088-1.233-2.374-1.633l-.295-.1c-1.731-.494-3.611-1.233-3.611-3.412v-.048c0-2.077 1.682-3.563 4.104-3.563h.247c1.433 0 2.77.397 3.758 1.04.1.048.198.147.148.295l-.544 1.433c-.099.247-.347.1-.347.1-.89-.496-2.225-.842-3.363-.842-1.039 0-1.682.544-1.682 1.286v.049c0 .841 1.138 1.234 2.424 1.633l.247.049c1.73.544 3.562 1.286 3.562 3.413v.048c0 2.277-1.633 3.66-4.254 3.66-1.285 0-2.52-.198-3.857-.89-.247-.148-.495-.247-.742-.445 0-.099-.1-.147-.049-.347l.002.003Zm28.584-6.776c.198.742.348 1.532.348 2.373 0 .841-.1 1.633-.348 2.374a4.888 4.888 0 0 1-.99 1.911 4.78 4.78 0 0 1-1.682 1.286c-.692.295-1.484.445-2.374.445-.89 0-1.682-.148-2.373-.445a4.41 4.41 0 0 1-1.683-1.286 5.141 5.141 0 0 1-.99-1.911c-.2-.725-.347-1.533-.347-2.374 0-.84.099-1.633.347-2.373a4.886 4.886 0 0 1 .99-1.912 4.778 4.778 0 0 1 1.683-1.286 5.976 5.976 0 0 1 2.373-.495c.89 0 1.682.148 2.374.495a4.4 4.4 0 0 1 1.682 1.286c.448.544.79 1.187.99 1.912Zm-2.224 2.324c0-1.285-.247-2.276-.691-2.967-.445-.692-1.187-1.04-2.127-1.04-.99 0-1.682.348-2.127 1.04-.445.691-.692 1.682-.692 2.967 0 1.286.247 2.277.692 3.017.445.692 1.138 1.039 2.127 1.039.988 0 1.682-.347 2.127-1.04.495-.69.691-1.73.691-3.016Zm20.326 3.709.543 1.483c.049.198-.099.247-.099.247-.841.348-1.977.544-3.115.544-1.912 0-3.363-.544-4.351-1.633-.989-1.09-1.484-2.572-1.484-4.402 0-.84.099-1.633.347-2.373.249-.74.594-1.385 1.088-1.912a5.144 5.144 0 0 1 1.781-1.285 6.292 6.292 0 0 1 2.473-.496c.545.002 1.09.035 1.631.1.496.098 1.187.246 1.484.395.049 0 .199.1.148.247l-.544 1.484c-.099.247-.246.148-.246.148-.742-.247-1.434-.348-2.325-.348-1.088 0-1.912.348-2.424 1.088-.544.692-.841 1.634-.841 2.92 0 1.384.347 2.373.938 3.016.59.643 1.433.938 2.519.938.445 0 .841-.048 1.187-.099.346-.05.692-.148 1.039-.295-.048.099.148.048.247.246l.004-.014Zm11.225-6.478c.495 1.682.247 3.115.198 3.214 0 .198-.198.198-.198.198h-7.467c.049 1.139.296 1.912.89 2.473.544.544 1.385.89 2.572.89 1.781 0 2.519-.348 3.067-.544 0 0 .198-.049.295.148l.495 1.384c.099.247 0 .296-.048.348-.445.247-1.582.742-3.759.742-1.039 0-1.977-.148-2.719-.445-.742-.297-1.385-.692-1.877-1.234s-.841-1.187-1.088-1.876c-.247-.742-.347-1.533-.347-2.374 0-.84.099-1.633.347-2.373a4.882 4.882 0 0 1 .991-1.912 4.73 4.73 0 0 1 1.73-1.286c.692-.347 1.533-.495 2.473-.495.791 0 1.533.148 2.127.445.445.198.938.544 1.433 1.088.247.198.692.938.89 1.633l-.005-.024Zm-7.42 1.58h5.291c-.048-.69-.198-1.285-.495-1.78-.445-.692-1.088-1.088-2.076-1.088-.989 0-1.683.396-2.127 1.088-.296.445-.445 1.039-.595 1.78h.002Zm-52.272-1.58c.495 1.682.247 3.115.247 3.214 0 .198-.199.198-.199.198h-7.466c.048 1.139.295 1.912.89 2.473.543.544 1.384.89 2.571.89 1.781 0 2.52-.348 3.067-.544 0 0 .198-.049.296.148l.495 1.384c.099.247 0 .296-.049.348-.445.247-1.581.742-3.759.742-1.039 0-1.977-.148-2.719-.445-.742-.297-1.385-.692-1.877-1.234-.491-.542-.84-1.187-1.087-1.876-.247-.742-.348-1.533-.348-2.374 0-.84.1-1.633.348-2.373a4.887 4.887 0 0 1 .99-1.912 4.733 4.733 0 0 1 1.73-1.286c.692-.347 1.533-.495 2.474-.495.79 0 1.532.148 2.126.445.445.198.939.544 1.434 1.088.198.198.692.938.841 1.633l-.005-.024Zm-7.42 1.58h5.342c-.05-.69-.199-1.285-.496-1.78-.444-.692-1.087-1.088-2.076-1.088-.989 0-1.682.396-2.127 1.088-.348.445-.495 1.039-.643 1.78Zm-13.105-.395 1.233.147V40.5c0-.99-.198-1.484-.594-1.781-.396-.297-1.04-.495-1.83-.495 0 0-1.83 0-3.263.742-.049.048-.1.048-.1.048s-.197.049-.246-.099l-.544-1.433c-.099-.198.049-.296.049-.296.691-.544 2.276-.84 2.276-.84.544-.1 1.434-.199 1.978-.199 1.484 0 2.62.348 3.412 1.04.793.691 1.187 1.78 1.187 3.313v6.824s0 .198-.147.246c0 0-.296.1-.544.148l-1.877.348c-.742.147-1.484.198-2.276.198-.742 0-1.385-.049-1.978-.198-.592-.15-1.088-.348-1.532-.643a3.342 3.342 0 0 1-.99-1.187c-.248-.445-.348-1.04-.348-1.682 0-.643.147-1.234.396-1.73.248-.498.643-.89 1.088-1.234.444-.344.99-.544 1.532-.742a7.465 7.465 0 0 1 1.83-.247l1.286.048.002-.001ZM31.9 45.889s.691.544 2.175.445c1.088-.049 2.028-.247 2.028-.247v-3.413s-.938-.147-2.028-.147c-1.532 0-2.175.544-2.175.544-.445.295-.643.79-.643 1.433-.007.346.078.687.246.989.05.099.1.198.397.396Zm63.052-9.05c-.048.199-.445 1.234-.544 1.582-.048.148-.147.198-.295.198 0 0-.445-.1-.841-.1a3.995 3.995 0 0 0-.989.149c-.347.099-.643.295-.938.543-.295.249-.495.643-.643 1.088-.148.445-.247 1.187-.247 1.978v5.537c0 .148-.099.247-.246.247h-1.978c-.148 0-.247-.099-.247-.247V36.695c0-.147.1-.246.198-.246h1.912c.148 0 .198.099.198.246v.89c.295-.396.79-.742 1.234-.938.443-.197.99-.348 1.911-.296.495.049 1.138.148 1.234.198.198.05.295.1.247.296l.034-.005Zm-18.35-5.143c.05 0 .199.1.148.247l-.594 1.581c-.049.1-.099.198-.347.1-.05 0-.148-.05-.397-.1-.147-.048-.396-.048-.594-.048-.295 0-.544.048-.79.099-.247.05-.445.198-.644.396a2.462 2.462 0 0 0-.543.79 7.51 7.51 0 0 0-.397 1.682h2.374c.198 0 .247.1.247.247l-.296 1.533c-.048.246-.246.198-.246.198H72.05l-1.581 9.545c-.198.99-.397 1.83-.643 2.52-.247.689-.544 1.186-.99 1.681-.397.445-.842.79-1.386.938-.495.199-1.138.296-1.83.296-.347 0-.69 0-1.087-.1a2.833 2.833 0 0 1-.692-.197c-.099-.049-.147-.148-.099-.296l.544-1.532c.1-.198.247-.1.247-.1l.396.148c.198.049.396.049.594.049.348 0 .643-.049.89-.148.295-.099.495-.295.692-.544.196-.248.347-.594.544-1.039.182-.6.33-1.212.444-1.83l1.682-9.348h-1.633c-.198 0-.247-.099-.247-.246l.296-1.533c.048-.247.246-.198.246-.198h1.682l.1-.495c.246-1.484.742-2.62 1.484-3.363.741-.742 1.83-1.138 3.162-1.138.396 0 .742.049 1.04.1.197-.05.444 0 .69.098l.008.007ZM43.273 47.77c0 .148-.1.247-.198.247h-1.978c-.147 0-.198-.1-.198-.247V31.894c0-.099.1-.246.198-.246h1.978c.148 0 .198.099.198.246V47.77Z\" fill=\"#fff\"/></svg>',withExternalLayout:true}),isDisplayed2()&&/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1462,intrinsicWidth:1086,pixelHeight:1462,pixelWidth:1086,src:\"https://framerusercontent.com/images/XbgZg7CCToE71vx7wcamACT7MKs.png\",srcSet:\"https://framerusercontent.com/images/XbgZg7CCToE71vx7wcamACT7MKs.png?scale-down-to=1024 760w,https://framerusercontent.com/images/XbgZg7CCToE71vx7wcamACT7MKs.png 1086w\"},className:\"framer-1a0grru\",\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"IdyXDm51v\",...addPropertyOverrides({GsQdIIGhK:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1462,intrinsicWidth:1086,loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+(0+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||150)-0-150)/2)+17.5+29.5),pixelHeight:1462,pixelWidth:1086,sizes:\"56px\",src:\"https://framerusercontent.com/images/kZrgRCaJyKYTMQjQffSFACYgw4k.png\",srcSet:\"https://framerusercontent.com/images/kZrgRCaJyKYTMQjQffSFACYgw4k.png?scale-down-to=512 512w,https://framerusercontent.com/images/kZrgRCaJyKYTMQjQffSFACYgw4k.png 720w\"}},PizjlGGFY:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1462,intrinsicWidth:1086,loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||814)-0-814)/2+0+0)+17.5+27.5),pixelHeight:1462,pixelWidth:1086,sizes:\"60px\",src:\"https://framerusercontent.com/images/kZrgRCaJyKYTMQjQffSFACYgw4k.png\",srcSet:\"https://framerusercontent.com/images/kZrgRCaJyKYTMQjQffSFACYgw4k.png?scale-down-to=512 512w,https://framerusercontent.com/images/kZrgRCaJyKYTMQjQffSFACYgw4k.png 720w\"}},xuGBlNORp:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1462,intrinsicWidth:1086,loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+(0+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||75)-0-75)/2)+9+16),pixelHeight:1462,pixelWidth:1086,sizes:\"25px\",src:\"https://framerusercontent.com/images/kZrgRCaJyKYTMQjQffSFACYgw4k.png\",srcSet:\"https://framerusercontent.com/images/kZrgRCaJyKYTMQjQffSFACYgw4k.png?scale-down-to=512 512w,https://framerusercontent.com/images/kZrgRCaJyKYTMQjQffSFACYgw4k.png 720w\"}}},baseVariant,gestureVariant)})]})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-c0fess\",\"data-border\":true,layoutDependency:layoutDependency,layoutId:\"rrTP1d2ZI\",style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"rgba(255, 255, 255, 0.25)\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",backgroundColor:\"rgba(255, 255, 255, 0.1)\",borderBottomLeftRadius:166,borderBottomRightRadius:166,borderTopLeftRadius:166,borderTopRightRadius:166},children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-f63gxk\",layoutDependency:layoutDependency,layoutId:\"QhSqAuNsR\",style:{backgroundColor:\"rgb(255, 255, 255)\",borderBottomLeftRadius:166,borderBottomRightRadius:166,borderTopLeftRadius:166,borderTopRightRadius:166,boxShadow:\"inset 0px -6px 2px 0px rgba(31, 31, 31, 0.5)\"},children:[isDisplayed()&&/*#__PURE__*/_jsx(SVG,{className:\"framer-19jqjs8\",\"data-framer-name\":\"Graphic\",fill:\"black\",intrinsicHeight:67,intrinsicWidth:80,layoutDependency:layoutDependency,layoutId:\"TMf9yX6xU\",svg:'<svg width=\"80\" height=\"67\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M35.721.845 5.894 13.186c-1.658.686-1.641 3.043.028 3.704l29.951 11.877a11.114 11.114 0 0 0 8.194 0L74.019 16.89c1.668-.661 1.686-3.017.027-3.704L44.22.844a11.115 11.115 0 0 0-8.5 0\" fill=\"#FCB400\"/><path d=\"M42.629 35.25v29.67a1.999 1.999 0 0 0 2.735 1.858l33.375-12.954A1.998 1.998 0 0 0 80 51.967v-29.67a1.998 1.998 0 0 0-2.735-1.858L43.891 33.394a1.998 1.998 0 0 0-1.262 1.858\" fill=\"#18BFFF\"/><path d=\"m34.836 36.783-9.905 4.782-1.005.486L3.017 52.069C1.692 52.709 0 51.742 0 50.27V22.423c0-.533.273-.993.64-1.339.15-.15.32-.277.506-.38.5-.3 1.212-.38 1.818-.14L34.67 33.127c1.611.639 1.738 2.897.166 3.656\" fill=\"#F82B60\"/><path d=\"m34.834 36.784-9.905 4.782L.637 21.085c.15-.15.32-.277.506-.38.5-.3 1.212-.38 1.818-.14l31.706 12.562c1.612.64 1.738 2.898.167 3.657\" fill=\"#BA1E45\"/></svg>',withExternalLayout:true}),isDisplayed3()&&/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1964,intrinsicWidth:1370,pixelHeight:1964,pixelWidth:1370,src:\"https://framerusercontent.com/images/ZV0IB8i1Xi9anx7X32XMwYl2Q.png\",srcSet:\"https://framerusercontent.com/images/ZV0IB8i1Xi9anx7X32XMwYl2Q.png?scale-down-to=1024 714w,https://framerusercontent.com/images/ZV0IB8i1Xi9anx7X32XMwYl2Q.png 1370w\"},className:\"framer-o25hjq\",\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"aHsyGgeGx\",style:{borderBottomLeftRadius:0,borderBottomRightRadius:0,borderTopLeftRadius:0,borderTopRightRadius:0},variants:{d6JbuUgDU:{borderBottomLeftRadius:12,borderBottomRightRadius:12,borderTopLeftRadius:12,borderTopRightRadius:12},X3tsGGYLa:{borderBottomLeftRadius:16,borderBottomRightRadius:16,borderTopLeftRadius:16,borderTopRightRadius:16}},...addPropertyOverrides({d6JbuUgDU:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1964,intrinsicWidth:1370,loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+(0+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||150)-0-150)/2)+17.5+27.5),pixelHeight:1964,pixelWidth:1370,src:\"https://framerusercontent.com/images/LAYsX7feLFI80Dh5o1GlqLX08Q.jpg\"}},X3tsGGYLa:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1964,intrinsicWidth:1370,loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||814)-0-814)/2+150+16)+17.5+27.5),pixelHeight:512,pixelWidth:512,src:\"https://framerusercontent.com/images/LAYsX7feLFI80Dh5o1GlqLX08Q.jpg\"}}},baseVariant,gestureVariant)}),isDisplayed2()&&/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:720,intrinsicWidth:1044,pixelHeight:720,pixelWidth:1044,src:\"https://framerusercontent.com/images/tuw8TIVOACiLF8skdabTraPq4s.png\",srcSet:\"https://framerusercontent.com/images/tuw8TIVOACiLF8skdabTraPq4s.png?scale-down-to=512 512w,https://framerusercontent.com/images/tuw8TIVOACiLF8skdabTraPq4s.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/tuw8TIVOACiLF8skdabTraPq4s.png 1044w\"},className:\"framer-pq5t1y\",\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"zX7imYMf4\",...addPropertyOverrides({GsQdIIGhK:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:720,intrinsicWidth:1044,loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+(0+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||150)-0-150)/2)+17.5+40.258620689655174),pixelHeight:720,pixelWidth:1044,sizes:\"50px\",src:\"https://framerusercontent.com/images/tuw8TIVOACiLF8skdabTraPq4s.png\",srcSet:\"https://framerusercontent.com/images/tuw8TIVOACiLF8skdabTraPq4s.png?scale-down-to=512 512w,https://framerusercontent.com/images/tuw8TIVOACiLF8skdabTraPq4s.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/tuw8TIVOACiLF8skdabTraPq4s.png 1044w\"}},PizjlGGFY:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:720,intrinsicWidth:1044,loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||814)-0-814)/2+150+16)+17.5+27.5),pixelHeight:720,pixelWidth:1044,sizes:\"60px\",src:\"https://framerusercontent.com/images/dr9vyhqwCB5EsYejgXW4hm1qk.png\",srcSet:\"https://framerusercontent.com/images/dr9vyhqwCB5EsYejgXW4hm1qk.png?scale-down-to=512 512w,https://framerusercontent.com/images/dr9vyhqwCB5EsYejgXW4hm1qk.png 1000w\"}},xuGBlNORp:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:720,intrinsicWidth:1044,loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+(0+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||75)-0-75)/2)+9+16),pixelHeight:720,pixelWidth:1044,sizes:\"25px\",src:\"https://framerusercontent.com/images/dr9vyhqwCB5EsYejgXW4hm1qk.png\",srcSet:\"https://framerusercontent.com/images/dr9vyhqwCB5EsYejgXW4hm1qk.png?scale-down-to=512 512w,https://framerusercontent.com/images/dr9vyhqwCB5EsYejgXW4hm1qk.png 1000w\"}}},baseVariant,gestureVariant)}),isDisplayed4()&&/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1964,intrinsicWidth:1370,pixelHeight:1964,pixelWidth:1370,src:\"https://framerusercontent.com/images/LAYsX7feLFI80Dh5o1GlqLX08Q.jpg\"},className:\"framer-zm6q8x\",\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"zu7uo5oi4\",style:{borderBottomLeftRadius:6,borderBottomRightRadius:6,borderTopLeftRadius:6,borderTopRightRadius:6},...addPropertyOverrides({WhMRKaPjI:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1964,intrinsicWidth:1370,loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+(0+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||75)-0-75)/2)+9+14),pixelHeight:1964,pixelWidth:1370,src:\"https://framerusercontent.com/images/LAYsX7feLFI80Dh5o1GlqLX08Q.jpg\"}}},baseVariant,gestureVariant)})]})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-4a99fh\",\"data-border\":true,layoutDependency:layoutDependency,layoutId:\"IDzn3QeNj\",style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"rgba(255, 255, 255, 0.25)\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",backgroundColor:\"rgba(255, 255, 255, 0.1)\",borderBottomLeftRadius:166,borderBottomRightRadius:166,borderTopLeftRadius:166,borderTopRightRadius:166},children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-dowpb8\",layoutDependency:layoutDependency,layoutId:\"dqKwBajRH\",style:{backgroundColor:\"rgb(255, 255, 255)\",borderBottomLeftRadius:166,borderBottomRightRadius:166,borderTopLeftRadius:166,borderTopRightRadius:166,boxShadow:\"inset 0px -6px 2px 0px rgba(31, 31, 31, 0.5)\"},children:[isDisplayed()&&/*#__PURE__*/_jsx(SVG,{className:\"framer-1q8qmq1\",\"data-framer-name\":\"Graphic\",fill:\"black\",intrinsicHeight:80,intrinsicWidth:77,layoutDependency:layoutDependency,layoutId:\"HPGFYZrhR\",svg:'<svg width=\"77\" height=\"80\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M4.824 3.45 49.189.182c5.448-.467 6.85-.154 10.274 2.334l14.162 9.954c2.336 1.711 3.115 2.177 3.115 4.043v54.594c0 3.421-1.246 5.445-5.604 5.754l-51.52 3.111c-3.271.157-4.828-.31-6.541-2.488L2.645 63.952C.778 61.462 0 59.598 0 57.418V8.89c0-2.797 1.247-5.13 4.824-5.44Z\" fill=\"#fff\"/><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M49.189.182 4.824 3.45C1.247 3.76 0 6.093 0 8.89v48.527c0 2.18.777 4.043 2.646 6.534l10.429 13.532c1.713 2.178 3.27 2.645 6.54 2.489l51.521-3.112c4.358-.31 5.604-2.333 5.604-5.754V16.513c0-1.768-.7-2.28-2.762-3.785l-.353-.258-14.162-9.954C56.039.028 54.637-.284 49.189.182ZM20.784 15.618c-4.206.284-5.162.348-7.551-1.592L7.159 9.204c-.62-.623-.31-1.4 1.246-1.555l42.652-3.111c3.58-.312 5.447.934 6.849 2.023l7.315 5.288c.311.155 1.088 1.087.154 1.087l-44.048 2.645-.54.037h-.003Zm-4.906 55.021V24.292c0-2.022.622-2.956 2.49-3.113l50.587-2.954c1.716-.156 2.493.934 2.493 2.954v46.037c0 2.023-.312 3.737-3.115 3.89l-48.41 2.802c-2.8.154-4.045-.778-4.045-3.269Zm47.789-43.861c.31 1.4 0 2.8-1.404 2.958l-2.332.465v34.217c-2.025 1.089-3.893 1.71-5.45 1.71-2.49 0-3.115-.778-4.98-3.11l-15.259-23.95V62.24l4.828 1.09s0 2.798-3.895 2.798l-10.738.623c-.311-.623 0-2.177 1.09-2.489l2.802-.776v-30.64l-3.89-.312c-.313-1.401.464-3.421 2.645-3.578l11.52-.776 15.877 24.263V30.98l-4.048-.465c-.311-1.713.932-2.957 2.49-3.11l10.743-.626Z\" fill=\"#000008\"/></svg>',withExternalLayout:true}),isDisplayed1()&&/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1152,intrinsicWidth:1152,pixelHeight:1152,pixelWidth:1152,src:\"https://framerusercontent.com/images/C0qYs3yRj3K3zgFTmhUCSjzOog.png\",srcSet:\"https://framerusercontent.com/images/C0qYs3yRj3K3zgFTmhUCSjzOog.png?scale-down-to=512 512w,https://framerusercontent.com/images/C0qYs3yRj3K3zgFTmhUCSjzOog.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/C0qYs3yRj3K3zgFTmhUCSjzOog.png 1152w\"},className:\"framer-2jb4jj\",\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"MBcBmK3kX\",...addPropertyOverrides({d6JbuUgDU:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1152,intrinsicWidth:1152,loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+(0+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||150)-0-150)/2)+17.5+32.5),pixelHeight:1152,pixelWidth:1152,src:\"https://framerusercontent.com/images/IWFPK1Q0We9jqcp2IbUeVzz2kY.png\"}},WhMRKaPjI:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1152,intrinsicWidth:1152,loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+(0+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||75)-0-75)/2)+9+16),pixelHeight:1152,pixelWidth:1152,src:\"https://framerusercontent.com/images/IWFPK1Q0We9jqcp2IbUeVzz2kY.png\"}},X3tsGGYLa:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1152,intrinsicWidth:1152,loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||814)-0-814)/2+300+32)+17.5+32.5),pixelHeight:1152,pixelWidth:1152,src:\"https://framerusercontent.com/images/IWFPK1Q0We9jqcp2IbUeVzz2kY.png\"}}},baseVariant,gestureVariant)}),isDisplayed2()&&/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1344,intrinsicWidth:1298,pixelHeight:1344,pixelWidth:1298,src:\"https://framerusercontent.com/images/IEC2WuXPZIdhqTeHto4jqkPahFs.png\",srcSet:\"https://framerusercontent.com/images/IEC2WuXPZIdhqTeHto4jqkPahFs.png?scale-down-to=1024 988w,https://framerusercontent.com/images/IEC2WuXPZIdhqTeHto4jqkPahFs.png 1298w\"},className:\"framer-1gklfxb\",\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"z97I08d2E\",...addPropertyOverrides({GsQdIIGhK:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1344,intrinsicWidth:1298,loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+(0+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||150)-0-150)/2)+17.5+31.614021571648692),pixelHeight:1344,pixelWidth:1298,sizes:\"50px\",src:\"https://framerusercontent.com/images/IEC2WuXPZIdhqTeHto4jqkPahFs.png\",srcSet:\"https://framerusercontent.com/images/IEC2WuXPZIdhqTeHto4jqkPahFs.png?scale-down-to=1024 988w,https://framerusercontent.com/images/IEC2WuXPZIdhqTeHto4jqkPahFs.png 1298w\"}},PizjlGGFY:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1344,intrinsicWidth:1298,loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||814)-0-814)/2+300+32)+17.5+31.614021571648692),pixelHeight:1344,pixelWidth:1298,sizes:\"50px\",src:\"https://framerusercontent.com/images/IEC2WuXPZIdhqTeHto4jqkPahFs.png\",srcSet:\"https://framerusercontent.com/images/IEC2WuXPZIdhqTeHto4jqkPahFs.png?scale-down-to=1024 988w,https://framerusercontent.com/images/IEC2WuXPZIdhqTeHto4jqkPahFs.png 1298w\"}},xuGBlNORp:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1344,intrinsicWidth:1298,loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+(0+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||75)-0-75)/2)+9+15.557010785824346),pixelHeight:1344,pixelWidth:1298,sizes:\"25px\",src:\"https://framerusercontent.com/images/IEC2WuXPZIdhqTeHto4jqkPahFs.png\",srcSet:\"https://framerusercontent.com/images/IEC2WuXPZIdhqTeHto4jqkPahFs.png?scale-down-to=1024 988w,https://framerusercontent.com/images/IEC2WuXPZIdhqTeHto4jqkPahFs.png 1298w\"}}},baseVariant,gestureVariant)})]})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1wiacjq\",\"data-border\":true,layoutDependency:layoutDependency,layoutId:\"oWgCRHvLY\",style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"rgba(255, 255, 255, 0.25)\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",backgroundColor:\"rgba(255, 255, 255, 0.1)\",borderBottomLeftRadius:166,borderBottomRightRadius:166,borderTopLeftRadius:166,borderTopRightRadius:166},children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1mkeedg\",layoutDependency:layoutDependency,layoutId:\"GKFY4FUqg\",style:{backgroundColor:\"rgb(255, 255, 255)\",borderBottomLeftRadius:166,borderBottomRightRadius:166,borderTopLeftRadius:166,borderTopRightRadius:166,boxShadow:\"inset 0px -6px 2px 0px rgba(31, 31, 31, 0.5)\"},children:[isDisplayed()&&/*#__PURE__*/_jsx(SVG,{className:\"framer-qhbufb\",\"data-framer-name\":\"Graphic\",fill:\"black\",intrinsicHeight:56,intrinsicWidth:132,layoutDependency:layoutDependency,layoutId:\"OO8BQGmtn\",svg:'<svg width=\"132\" height=\"56\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"m40.531 55.356 3.413-4.932h-2.852a.258.258 0 0 1-.26-.26v-.468a.26.26 0 0 1 .26-.26h4.22a.26.26 0 0 1 .26.26v.153a.273.273 0 0 1-.045.146l-3.33 4.934h3.019a.26.26 0 0 1 .26.26v.468a.26.26 0 0 1-.26.26h-4.473a.258.258 0 0 1-.259-.26v-.15a.273.273 0 0 1 .047-.151ZM59.48 52.67c0-1.27-.665-2.332-2.04-2.332-1.385 0-1.979 1.079-1.979 2.372 0 1.217.726 2.296 2.056 2.296 1.369-.002 1.962-1.135 1.962-2.336Zm-5.328-.024c0-1.91 1.41-3.304 3.358-3.304 1.946 0 3.27 1.394 3.27 3.318 0 1.955-1.364 3.34-3.326 3.34s-3.302-1.385-3.302-3.354Zm16.044-3.209h.74c.143 0 .258.115.258.259v2.485h2.992v-2.485c0-.144.115-.26.259-.26h.735a.26.26 0 0 1 .259.26v5.959a.26.26 0 0 1-.26.259h-.734a.258.258 0 0 1-.26-.26v-2.489h-2.99v2.49a.26.26 0 0 1-.26.259h-.74a.258.258 0 0 1-.258-.26v-5.958c0-.144.115-.26.259-.26ZM89.91 52.67c0-1.27-.665-2.332-2.04-2.332-1.385 0-1.979 1.079-1.979 2.372 0 1.217.726 2.296 2.056 2.296 1.369-.002 1.962-1.135 1.962-2.336Zm-5.326-.024c0-1.91 1.41-3.304 3.359-3.304 1.948 0 3.269 1.394 3.269 3.318 0 1.955-1.364 3.34-3.326 3.34s-3.302-1.385-3.302-3.354Z\" fill=\"#030404\"/><path d=\"M47.381 3.868a3.232 3.232 0 0 0-2.944 1.908L34.97 27.02a3.226 3.226 0 0 0 1.625 4.263l21.245 9.468a3.212 3.212 0 0 0 2.473.07 3.241 3.241 0 0 0 1.79-1.695l9.468-21.245c.73-1.625 0-3.533-1.625-4.263L48.7 4.151a3.028 3.028 0 0 0-1.319-.283Zm11.753 41.005a7.143 7.143 0 0 1-2.873-.612l-21.245-9.468c-1.72-.777-3.062-2.167-3.721-3.934a6.973 6.973 0 0 1 .14-5.417l9.47-21.244c1.6-3.557 5.793-5.182 9.35-3.58L71.5 10.086c3.556 1.601 5.181 5.794 3.58 9.35l-9.47 21.245c-.777 1.72-2.167 3.062-3.933 3.721a7.362 7.362 0 0 1-2.544.471Z\" fill=\"#089949\"/><path d=\"M101.36 11.305a3.232 3.232 0 0 0-3.227 3.226v23.247a3.232 3.232 0 0 0 3.227 3.227h23.247a3.231 3.231 0 0 0 3.226-3.227V14.53a3.231 3.231 0 0 0-3.226-3.226H101.36Zm23.247 33.562H101.36c-3.91 0-7.09-3.18-7.09-7.09V14.532c0-3.91 3.18-7.09 7.09-7.09h23.247c3.91 0 7.089 3.18 7.089 7.09v23.247c0 3.91-3.179 7.09-7.089 7.09Z\" fill=\"#F9B21D\"/><path d=\"m38.512 19.05-2.87 6.44 1.306 8.049a3.227 3.227 0 0 1-2.662 3.698l-22.964 3.721a3.239 3.239 0 0 1-2.403-.565c-.706-.495-1.154-1.248-1.295-2.096l-3.721-22.94a3.226 3.226 0 0 1 2.661-3.699l22.964-3.721a3.85 3.85 0 0 1 .519-.047c.683 0 1.342.212 1.884.612.706.495 1.154 1.249 1.295 2.096l1.288 7.941 2.87-6.439-.342-2.114a7.092 7.092 0 0 0-2.85-4.616 7.024 7.024 0 0 0-5.276-1.249L5.952 7.843c-3.863.612-6.477 4.263-5.865 8.126l3.721 22.94a7.092 7.092 0 0 0 2.85 4.616 7.01 7.01 0 0 0 4.122 1.343c.4 0 .777-.047 1.178-.094l22.94-3.722c3.863-.612 6.478-4.263 5.865-8.126l-2.25-13.875Z\" fill=\"#E42527\"/><path d=\"m66.166 29.95 2.997-6.732-1.095-8.05a3.2 3.2 0 0 1 .636-2.38 3.206 3.206 0 0 1 2.12-1.248l23.035-3.132c.141-.024.282-.024.424-.024.873 0 1.689.362 2.283.957a7.07 7.07 0 0 1 3.555-1.764 7.17 7.17 0 0 0-1.528-1.595 7.002 7.002 0 0 0-5.252-1.39L70.306 7.725a7.055 7.055 0 0 0-4.687 2.732 7.002 7.002 0 0 0-1.39 5.252l1.937 14.242Zm38.291 3.753-3.043-22.375h-.051a3.232 3.232 0 0 0-3.227 3.227v1.393l2.482 18.25a3.201 3.201 0 0 1-.636 2.379 3.205 3.205 0 0 1-2.12 1.248l-23.034 3.133a3.217 3.217 0 0 1-3.628-2.756l-1.049-7.714-2.997 6.732.207 1.523c.495 3.533 3.533 6.124 7.019 6.124.306 0 .636-.023.966-.07l23.035-3.11c3.886-.541 6.594-4.121 6.076-7.984Z\" fill=\"#226DB4\"/></svg>',withExternalLayout:true}),isDisplayed1()&&/*#__PURE__*/_jsx(SVG,{className:\"framer-2wroys\",\"data-framer-name\":\"Graphic\",fill:\"black\",intrinsicHeight:90,intrinsicWidth:129,layoutDependency:layoutDependency,layoutId:\"DTl_eFybY\",svg:'<svg width=\"129\" height=\"90\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M53.463 9.84c4.153-4.302 9.939-7.02 16.32-7.02 8.505 0 15.875 4.747 19.83 11.77 3.413-1.534 7.22-2.374 11.225-2.374 15.332 0 27.693 12.51 27.693 27.94 0 15.43-12.412 27.938-27.693 27.938-1.876 0-3.708-.198-5.439-.544-3.461 6.18-10.089 10.386-17.707 10.386-3.162 0-6.18-.742-8.851-2.028C65.33 84.167 57.12 90 47.575 90c-9.939 0-18.445-6.28-21.71-15.135a21.787 21.787 0 0 1-4.401.445C9.595 75.31 0 65.618 0 53.6c0-7.993 4.302-15.034 10.732-18.792a24.494 24.494 0 0 1-2.077-9.94C8.61 11.177 19.835 0 33.58 0a24.919 24.919 0 0 1 19.88 9.84\" fill=\"#00A1E0\"/><path d=\"m18.599 46.683.544-1.433c.099-.247.247-.148.347-.1l.445.296c1.533.99 2.968.99 3.413.99 1.138 0 1.877-.594 1.877-1.433v-.049c0-.89-1.088-1.233-2.374-1.633l-.296-.1c-1.73-.494-3.61-1.233-3.61-3.412v-.048c0-2.077 1.682-3.563 4.104-3.563h.247c1.433 0 2.77.397 3.758 1.04.1.048.198.147.148.295l-.544 1.433c-.099.247-.347.1-.347.1-.89-.496-2.225-.842-3.363-.842-1.039 0-1.682.544-1.682 1.286v.049c0 .841 1.138 1.234 2.424 1.633l.247.049c1.73.544 3.562 1.286 3.562 3.413v.048c0 2.277-1.633 3.66-4.254 3.66-1.286 0-2.52-.198-3.857-.89-.247-.148-.496-.247-.742-.445-.049-.099-.148-.147-.049-.347l.002.003Zm38.576 0 .544-1.433c.099-.247.295-.148.347-.1l.445.296c1.533.99 2.968.99 3.413.99 1.138 0 1.877-.594 1.877-1.433v-.049c0-.89-1.088-1.233-2.374-1.633l-.295-.1c-1.731-.494-3.611-1.233-3.611-3.412v-.048c0-2.077 1.682-3.563 4.104-3.563h.247c1.433 0 2.77.397 3.758 1.04.1.048.198.147.148.295l-.544 1.433c-.099.247-.347.1-.347.1-.89-.496-2.225-.842-3.363-.842-1.039 0-1.682.544-1.682 1.286v.049c0 .841 1.138 1.234 2.424 1.633l.247.049c1.73.544 3.562 1.286 3.562 3.413v.048c0 2.277-1.633 3.66-4.254 3.66-1.285 0-2.52-.198-3.857-.89-.247-.148-.495-.247-.742-.445 0-.099-.1-.147-.049-.347l.002.003Zm28.584-6.776c.198.742.348 1.532.348 2.373 0 .841-.1 1.633-.348 2.374a4.888 4.888 0 0 1-.99 1.911 4.78 4.78 0 0 1-1.682 1.286c-.692.295-1.484.445-2.374.445-.89 0-1.682-.148-2.373-.445a4.41 4.41 0 0 1-1.683-1.286 5.141 5.141 0 0 1-.99-1.911c-.2-.725-.347-1.533-.347-2.374 0-.84.099-1.633.347-2.373a4.886 4.886 0 0 1 .99-1.912 4.778 4.778 0 0 1 1.683-1.286 5.976 5.976 0 0 1 2.373-.495c.89 0 1.682.148 2.374.495a4.4 4.4 0 0 1 1.682 1.286c.448.544.79 1.187.99 1.912Zm-2.224 2.324c0-1.285-.247-2.276-.691-2.967-.445-.692-1.187-1.04-2.127-1.04-.99 0-1.682.348-2.127 1.04-.445.691-.692 1.682-.692 2.967 0 1.286.247 2.277.692 3.017.445.692 1.138 1.039 2.127 1.039.988 0 1.682-.347 2.127-1.04.495-.69.691-1.73.691-3.016Zm20.326 3.709.543 1.483c.049.198-.099.247-.099.247-.841.348-1.977.544-3.115.544-1.912 0-3.363-.544-4.351-1.633-.989-1.09-1.484-2.572-1.484-4.402 0-.84.099-1.633.347-2.373.249-.74.594-1.385 1.088-1.912a5.144 5.144 0 0 1 1.781-1.285 6.292 6.292 0 0 1 2.473-.496c.545.002 1.09.035 1.631.1.496.098 1.187.246 1.484.395.049 0 .199.1.148.247l-.544 1.484c-.099.247-.246.148-.246.148-.742-.247-1.434-.348-2.325-.348-1.088 0-1.912.348-2.424 1.088-.544.692-.841 1.634-.841 2.92 0 1.384.347 2.373.938 3.016.59.643 1.433.938 2.519.938.445 0 .841-.048 1.187-.099.346-.05.692-.148 1.039-.295-.048.099.148.048.247.246l.004-.014Zm11.225-6.478c.495 1.682.247 3.115.198 3.214 0 .198-.198.198-.198.198h-7.467c.049 1.139.296 1.912.89 2.473.544.544 1.385.89 2.572.89 1.781 0 2.519-.348 3.067-.544 0 0 .198-.049.295.148l.495 1.384c.099.247 0 .296-.048.348-.445.247-1.582.742-3.759.742-1.039 0-1.977-.148-2.719-.445-.742-.297-1.385-.692-1.877-1.234s-.841-1.187-1.088-1.876c-.247-.742-.347-1.533-.347-2.374 0-.84.099-1.633.347-2.373a4.882 4.882 0 0 1 .991-1.912 4.73 4.73 0 0 1 1.73-1.286c.692-.347 1.533-.495 2.473-.495.791 0 1.533.148 2.127.445.445.198.938.544 1.433 1.088.247.198.692.938.89 1.633l-.005-.024Zm-7.42 1.58h5.291c-.048-.69-.198-1.285-.495-1.78-.445-.692-1.088-1.088-2.076-1.088-.989 0-1.683.396-2.127 1.088-.296.445-.445 1.039-.595 1.78h.002Zm-52.272-1.58c.495 1.682.247 3.115.247 3.214 0 .198-.199.198-.199.198h-7.466c.048 1.139.295 1.912.89 2.473.543.544 1.384.89 2.571.89 1.781 0 2.52-.348 3.067-.544 0 0 .198-.049.296.148l.495 1.384c.099.247 0 .296-.049.348-.445.247-1.581.742-3.759.742-1.039 0-1.977-.148-2.719-.445-.742-.297-1.385-.692-1.877-1.234-.491-.542-.84-1.187-1.087-1.876-.247-.742-.348-1.533-.348-2.374 0-.84.1-1.633.348-2.373a4.887 4.887 0 0 1 .99-1.912 4.733 4.733 0 0 1 1.73-1.286c.692-.347 1.533-.495 2.474-.495.79 0 1.532.148 2.126.445.445.198.939.544 1.434 1.088.198.198.692.938.841 1.633l-.005-.024Zm-7.42 1.58h5.342c-.05-.69-.199-1.285-.496-1.78-.444-.692-1.087-1.088-2.076-1.088-.989 0-1.682.396-2.127 1.088-.348.445-.495 1.039-.643 1.78Zm-13.105-.395 1.233.147V40.5c0-.99-.198-1.484-.594-1.781-.396-.297-1.04-.495-1.83-.495 0 0-1.83 0-3.263.742-.049.048-.1.048-.1.048s-.197.049-.246-.099l-.544-1.433c-.099-.198.049-.296.049-.296.691-.544 2.276-.84 2.276-.84.544-.1 1.434-.199 1.978-.199 1.484 0 2.62.348 3.412 1.04.793.691 1.187 1.78 1.187 3.313v6.824s0 .198-.147.246c0 0-.296.1-.544.148l-1.877.348c-.742.147-1.484.198-2.276.198-.742 0-1.385-.049-1.978-.198-.592-.15-1.088-.348-1.532-.643a3.342 3.342 0 0 1-.99-1.187c-.248-.445-.348-1.04-.348-1.682 0-.643.147-1.234.396-1.73.248-.498.643-.89 1.088-1.234.444-.344.99-.544 1.532-.742a7.465 7.465 0 0 1 1.83-.247l1.286.048.002-.001ZM31.9 45.889s.691.544 2.175.445c1.088-.049 2.028-.247 2.028-.247v-3.413s-.938-.147-2.028-.147c-1.532 0-2.175.544-2.175.544-.445.295-.643.79-.643 1.433-.007.346.078.687.246.989.05.099.1.198.397.396Zm63.052-9.05c-.048.199-.445 1.234-.544 1.582-.048.148-.147.198-.295.198 0 0-.445-.1-.841-.1a3.995 3.995 0 0 0-.989.149c-.347.099-.643.295-.938.543-.295.249-.495.643-.643 1.088-.148.445-.247 1.187-.247 1.978v5.537c0 .148-.099.247-.246.247h-1.978c-.148 0-.247-.099-.247-.247V36.695c0-.147.1-.246.198-.246h1.912c.148 0 .198.099.198.246v.89c.295-.396.79-.742 1.234-.938.443-.197.99-.348 1.911-.296.495.049 1.138.148 1.234.198.198.05.295.1.247.296l.034-.005Zm-18.35-5.143c.05 0 .199.1.148.247l-.594 1.581c-.049.1-.099.198-.347.1-.05 0-.148-.05-.397-.1-.147-.048-.396-.048-.594-.048-.295 0-.544.048-.79.099-.247.05-.445.198-.644.396a2.462 2.462 0 0 0-.543.79 7.51 7.51 0 0 0-.397 1.682h2.374c.198 0 .247.1.247.247l-.296 1.533c-.048.246-.246.198-.246.198H72.05l-1.581 9.545c-.198.99-.397 1.83-.643 2.52-.247.689-.544 1.186-.99 1.681-.397.445-.842.79-1.386.938-.495.199-1.138.296-1.83.296-.347 0-.69 0-1.087-.1a2.833 2.833 0 0 1-.692-.197c-.099-.049-.147-.148-.099-.296l.544-1.532c.1-.198.247-.1.247-.1l.396.148c.198.049.396.049.594.049.348 0 .643-.049.89-.148.295-.099.495-.295.692-.544.196-.248.347-.594.544-1.039.182-.6.33-1.212.444-1.83l1.682-9.348h-1.633c-.198 0-.247-.099-.247-.246l.296-1.533c.048-.247.246-.198.246-.198h1.682l.1-.495c.246-1.484.742-2.62 1.484-3.363.741-.742 1.83-1.138 3.162-1.138.396 0 .742.049 1.04.1.197-.05.444 0 .69.098l.008.007ZM43.273 47.77c0 .148-.1.247-.198.247h-1.978c-.147 0-.198-.1-.198-.247V31.894c0-.099.1-.246.198-.246h1.978c.148 0 .198.099.198.246V47.77Z\" fill=\"#fff\"/></svg>',withExternalLayout:true}),isDisplayed5()&&/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1462,intrinsicWidth:1086,pixelHeight:1462,pixelWidth:1086,src:\"https://framerusercontent.com/images/XbgZg7CCToE71vx7wcamACT7MKs.png\",srcSet:\"https://framerusercontent.com/images/XbgZg7CCToE71vx7wcamACT7MKs.png?scale-down-to=1024 760w,https://framerusercontent.com/images/XbgZg7CCToE71vx7wcamACT7MKs.png 1086w\"},className:\"framer-9tbhim\",\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"HW61nxkNu\",...addPropertyOverrides({GsQdIIGhK:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1462,intrinsicWidth:1086,loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+(0+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||150)-0-150)/2)+17.5+29.5),pixelHeight:1462,pixelWidth:1086,sizes:\"56px\",src:\"https://framerusercontent.com/images/kZrgRCaJyKYTMQjQffSFACYgw4k.png\",srcSet:\"https://framerusercontent.com/images/kZrgRCaJyKYTMQjQffSFACYgw4k.png?scale-down-to=512 512w,https://framerusercontent.com/images/kZrgRCaJyKYTMQjQffSFACYgw4k.png 720w\"}},PizjlGGFY:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1462,intrinsicWidth:1086,loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||814)-0-814)/2+450+48)+17.5+27.5),pixelHeight:1462,pixelWidth:1086,sizes:\"60px\",src:\"https://framerusercontent.com/images/kZrgRCaJyKYTMQjQffSFACYgw4k.png\",srcSet:\"https://framerusercontent.com/images/kZrgRCaJyKYTMQjQffSFACYgw4k.png?scale-down-to=512 512w,https://framerusercontent.com/images/kZrgRCaJyKYTMQjQffSFACYgw4k.png 720w\"}}},baseVariant,gestureVariant)}),isDisplayed6()&&/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:720,intrinsicWidth:1044,pixelHeight:720,pixelWidth:1044,src:\"https://framerusercontent.com/images/dr9vyhqwCB5EsYejgXW4hm1qk.png\",srcSet:\"https://framerusercontent.com/images/dr9vyhqwCB5EsYejgXW4hm1qk.png?scale-down-to=512 512w,https://framerusercontent.com/images/dr9vyhqwCB5EsYejgXW4hm1qk.png 1000w\"},className:\"framer-17sp17a\",\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"jxOGa37Hp\",...addPropertyOverrides({xuGBlNORp:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:720,intrinsicWidth:1044,loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+(0+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||75)-0-75)/2)+9+16),pixelHeight:720,pixelWidth:1044,sizes:\"25px\",src:\"https://framerusercontent.com/images/dr9vyhqwCB5EsYejgXW4hm1qk.png\",srcSet:\"https://framerusercontent.com/images/dr9vyhqwCB5EsYejgXW4hm1qk.png?scale-down-to=512 512w,https://framerusercontent.com/images/dr9vyhqwCB5EsYejgXW4hm1qk.png 1000w\"}}},baseVariant,gestureVariant)})]})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-4f5mga\",\"data-border\":true,layoutDependency:layoutDependency,layoutId:\"Objk8gguT\",style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"rgba(255, 255, 255, 0.25)\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",backgroundColor:\"rgba(255, 255, 255, 0.1)\",borderBottomLeftRadius:166,borderBottomRightRadius:166,borderTopLeftRadius:166,borderTopRightRadius:166},children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-mnh0jg\",layoutDependency:layoutDependency,layoutId:\"c0kEz5pId\",style:{backgroundColor:\"rgb(255, 255, 255)\",borderBottomLeftRadius:166,borderBottomRightRadius:166,borderTopLeftRadius:166,borderTopRightRadius:166,boxShadow:\"inset 0px -6px 2px 0px rgba(31, 31, 31, 0.5)\"},children:[isDisplayed()&&/*#__PURE__*/_jsx(SVG,{className:\"framer-4bfzn5\",\"data-framer-name\":\"Graphic\",fill:\"black\",intrinsicHeight:67,intrinsicWidth:80,layoutDependency:layoutDependency,layoutId:\"ZJgWxUMCS\",svg:'<svg width=\"80\" height=\"67\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M35.721.845 5.894 13.186c-1.658.686-1.641 3.043.028 3.704l29.951 11.877a11.114 11.114 0 0 0 8.194 0L74.019 16.89c1.668-.661 1.686-3.017.027-3.704L44.22.844a11.115 11.115 0 0 0-8.5 0\" fill=\"#FCB400\"/><path d=\"M42.629 35.25v29.67a1.999 1.999 0 0 0 2.735 1.858l33.375-12.954A1.998 1.998 0 0 0 80 51.967v-29.67a1.998 1.998 0 0 0-2.735-1.858L43.891 33.394a1.998 1.998 0 0 0-1.262 1.858\" fill=\"#18BFFF\"/><path d=\"m34.836 36.783-9.905 4.782-1.005.486L3.017 52.069C1.692 52.709 0 51.742 0 50.27V22.423c0-.533.273-.993.64-1.339.15-.15.32-.277.506-.38.5-.3 1.212-.38 1.818-.14L34.67 33.127c1.611.639 1.738 2.897.166 3.656\" fill=\"#F82B60\"/><path d=\"m34.834 36.784-9.905 4.782L.637 21.085c.15-.15.32-.277.506-.38.5-.3 1.212-.38 1.818-.14l31.706 12.562c1.612.64 1.738 2.898.167 3.657\" fill=\"#BA1E45\"/></svg>',withExternalLayout:true}),isDisplayed2()&&/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:720,intrinsicWidth:1044,pixelHeight:720,pixelWidth:1044,src:\"https://framerusercontent.com/images/tuw8TIVOACiLF8skdabTraPq4s.png\",srcSet:\"https://framerusercontent.com/images/tuw8TIVOACiLF8skdabTraPq4s.png?scale-down-to=512 512w,https://framerusercontent.com/images/tuw8TIVOACiLF8skdabTraPq4s.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/tuw8TIVOACiLF8skdabTraPq4s.png 1044w\"},className:\"framer-xgiyd1\",\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"r4rj_5jTP\",...addPropertyOverrides({GsQdIIGhK:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:720,intrinsicWidth:1044,loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+(0+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||150)-0-150)/2)+17.5+40.258620689655174),pixelHeight:720,pixelWidth:1044,sizes:\"50px\",src:\"https://framerusercontent.com/images/tuw8TIVOACiLF8skdabTraPq4s.png\",srcSet:\"https://framerusercontent.com/images/tuw8TIVOACiLF8skdabTraPq4s.png?scale-down-to=512 512w,https://framerusercontent.com/images/tuw8TIVOACiLF8skdabTraPq4s.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/tuw8TIVOACiLF8skdabTraPq4s.png 1044w\"}},PizjlGGFY:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:720,intrinsicWidth:1044,loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||814)-0-814)/2+600+64)+17.5+27.5),pixelHeight:720,pixelWidth:1044,sizes:\"60px\",src:\"https://framerusercontent.com/images/dr9vyhqwCB5EsYejgXW4hm1qk.png\",srcSet:\"https://framerusercontent.com/images/dr9vyhqwCB5EsYejgXW4hm1qk.png?scale-down-to=512 512w,https://framerusercontent.com/images/dr9vyhqwCB5EsYejgXW4hm1qk.png 1000w\"}},xuGBlNORp:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:720,intrinsicWidth:1044,loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+(0+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||75)-0-75)/2)+9+16),pixelHeight:720,pixelWidth:1044,sizes:\"25px\",src:\"https://framerusercontent.com/images/kZrgRCaJyKYTMQjQffSFACYgw4k.png\",srcSet:\"https://framerusercontent.com/images/kZrgRCaJyKYTMQjQffSFACYgw4k.png?scale-down-to=512 512w,https://framerusercontent.com/images/kZrgRCaJyKYTMQjQffSFACYgw4k.png 720w\"}}},baseVariant,gestureVariant)}),isDisplayed7()&&/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1964,intrinsicWidth:1370,pixelHeight:512,pixelWidth:512,src:\"https://framerusercontent.com/images/LAYsX7feLFI80Dh5o1GlqLX08Q.jpg\"},className:\"framer-10twwbs\",\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"wdrj153SL\",style:{borderBottomLeftRadius:16,borderBottomRightRadius:16,borderTopLeftRadius:16,borderTopRightRadius:16},...addPropertyOverrides({X3tsGGYLa:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1964,intrinsicWidth:1370,loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||814)-0-814)/2+600+64)+17.5+27.5),pixelHeight:512,pixelWidth:512,src:\"https://framerusercontent.com/images/LAYsX7feLFI80Dh5o1GlqLX08Q.jpg\"}}},baseVariant,gestureVariant)}),isDisplayed8()&&/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1964,intrinsicWidth:1370,pixelHeight:1964,pixelWidth:1370,src:\"https://framerusercontent.com/images/LAYsX7feLFI80Dh5o1GlqLX08Q.jpg\"},className:\"framer-72n2ej\",\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"w6dk3Pl4p\",style:{borderBottomLeftRadius:12,borderBottomRightRadius:12,borderTopLeftRadius:12,borderTopRightRadius:12},...addPropertyOverrides({d6JbuUgDU:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1964,intrinsicWidth:1370,loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+(0+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||150)-0-150)/2)+17.5+27.5),pixelHeight:1964,pixelWidth:1370,src:\"https://framerusercontent.com/images/LAYsX7feLFI80Dh5o1GlqLX08Q.jpg\"}}},baseVariant,gestureVariant)}),isDisplayed4()&&/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1964,intrinsicWidth:1370,pixelHeight:1964,pixelWidth:1370,src:\"https://framerusercontent.com/images/LAYsX7feLFI80Dh5o1GlqLX08Q.jpg\"},className:\"framer-yqr7e3\",\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"KgmgUCKbw\",style:{borderBottomLeftRadius:6,borderBottomRightRadius:6,borderTopLeftRadius:6,borderTopRightRadius:6},...addPropertyOverrides({WhMRKaPjI:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1964,intrinsicWidth:1370,loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+(0+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||75)-0-75)/2)+9+14),pixelHeight:1964,pixelWidth:1370,src:\"https://framerusercontent.com/images/LAYsX7feLFI80Dh5o1GlqLX08Q.jpg\"}}},baseVariant,gestureVariant)})]})})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-Nk41V.framer-ogn0a1, .framer-Nk41V .framer-ogn0a1 { display: block; }\",\".framer-Nk41V.framer-11r17sh { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 150px; }\",\".framer-Nk41V .framer-f7uhia, .framer-Nk41V .framer-c0fess, .framer-Nk41V .framer-4a99fh, .framer-Nk41V .framer-1wiacjq, .framer-Nk41V .framer-4f5mga { align-content: center; align-items: center; aspect-ratio: 1 / 1; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: var(--framer-aspect-ratio-supported, 150px); justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 150px; will-change: var(--framer-will-change-override, transform); }\",\".framer-Nk41V .framer-cjsgq4, .framer-Nk41V .framer-f63gxk, .framer-Nk41V .framer-dowpb8, .framer-Nk41V .framer-1mkeedg, .framer-Nk41V .framer-mnh0jg { align-content: center; align-items: center; aspect-ratio: 1 / 1; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: var(--framer-aspect-ratio-supported, 115px); justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 115px; will-change: var(--framer-will-change-override, transform); }\",\".framer-Nk41V .framer-ttguvy, .framer-Nk41V .framer-qhbufb { aspect-ratio: 2.357142857142857 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 21px); position: relative; width: 50px; }\",\".framer-Nk41V .framer-1gcqv6t, .framer-Nk41V .framer-2wroys { aspect-ratio: 1.4333333333333333 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 35px); position: relative; width: 50px; }\",\".framer-Nk41V .framer-1a0grru, .framer-Nk41V .framer-9tbhim { aspect-ratio: 0.7428180574555403 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 67px); overflow: visible; position: relative; width: 50px; }\",\".framer-Nk41V .framer-19jqjs8, .framer-Nk41V .framer-4bfzn5 { aspect-ratio: 1.1940298507462686 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 42px); position: relative; width: 50px; }\",\".framer-Nk41V .framer-o25hjq { aspect-ratio: 0.6975560081466395 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 72px); overflow: visible; position: relative; width: 50px; }\",\".framer-Nk41V .framer-pq5t1y { aspect-ratio: 1.45 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 34px); overflow: visible; position: relative; width: 50px; }\",\".framer-Nk41V .framer-zm6q8x, .framer-Nk41V .framer-yqr7e3 { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 29px); overflow: visible; position: relative; width: 29px; }\",\".framer-Nk41V .framer-1q8qmq1 { aspect-ratio: 0.9625 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 52px); position: relative; width: 50px; }\",\".framer-Nk41V .framer-2jb4jj { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 50px); overflow: visible; position: relative; width: 50px; }\",\".framer-Nk41V .framer-1gklfxb { aspect-ratio: 0.9657738095238095 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 52px); overflow: visible; position: relative; width: 50px; }\",\".framer-Nk41V .framer-17sp17a { flex: none; height: 25px; overflow: visible; position: relative; width: 25px; }\",\".framer-Nk41V .framer-xgiyd1 { aspect-ratio: 1.45 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 25px); overflow: visible; position: relative; width: 50px; }\",\".framer-Nk41V .framer-10twwbs, .framer-Nk41V .framer-72n2ej { flex: none; height: 60px; overflow: visible; position: relative; width: 60px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-Nk41V.framer-11r17sh, .framer-Nk41V .framer-f7uhia, .framer-Nk41V .framer-cjsgq4, .framer-Nk41V .framer-c0fess, .framer-Nk41V .framer-f63gxk, .framer-Nk41V .framer-4a99fh, .framer-Nk41V .framer-dowpb8, .framer-Nk41V .framer-1wiacjq, .framer-Nk41V .framer-1mkeedg, .framer-Nk41V .framer-4f5mga, .framer-Nk41V .framer-mnh0jg { gap: 0px; } .framer-Nk41V.framer-11r17sh > * { margin: 0px; margin-bottom: calc(16px / 2); margin-top: calc(16px / 2); } .framer-Nk41V.framer-11r17sh > :first-child { margin-top: 0px; } .framer-Nk41V.framer-11r17sh > :last-child { margin-bottom: 0px; } .framer-Nk41V .framer-f7uhia > *, .framer-Nk41V .framer-cjsgq4 > *, .framer-Nk41V .framer-c0fess > *, .framer-Nk41V .framer-f63gxk > *, .framer-Nk41V .framer-4a99fh > *, .framer-Nk41V .framer-dowpb8 > *, .framer-Nk41V .framer-1wiacjq > *, .framer-Nk41V .framer-1mkeedg > *, .framer-Nk41V .framer-4f5mga > *, .framer-Nk41V .framer-mnh0jg > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-Nk41V .framer-f7uhia > :first-child, .framer-Nk41V .framer-cjsgq4 > :first-child, .framer-Nk41V .framer-c0fess > :first-child, .framer-Nk41V .framer-f63gxk > :first-child, .framer-Nk41V .framer-4a99fh > :first-child, .framer-Nk41V .framer-dowpb8 > :first-child, .framer-Nk41V .framer-1wiacjq > :first-child, .framer-Nk41V .framer-1mkeedg > :first-child, .framer-Nk41V .framer-4f5mga > :first-child, .framer-Nk41V .framer-mnh0jg > :first-child { margin-left: 0px; } .framer-Nk41V .framer-f7uhia > :last-child, .framer-Nk41V .framer-cjsgq4 > :last-child, .framer-Nk41V .framer-c0fess > :last-child, .framer-Nk41V .framer-f63gxk > :last-child, .framer-Nk41V .framer-4a99fh > :last-child, .framer-Nk41V .framer-dowpb8 > :last-child, .framer-Nk41V .framer-1wiacjq > :last-child, .framer-Nk41V .framer-1mkeedg > :last-child, .framer-Nk41V .framer-4f5mga > :last-child, .framer-Nk41V .framer-mnh0jg > :last-child { margin-right: 0px; } }\",\".framer-Nk41V.framer-v-c4fte .framer-o25hjq, .framer-Nk41V.framer-v-scbz7c .framer-1a0grru, .framer-Nk41V.framer-v-scbz7c .framer-pq5t1y, .framer-Nk41V.framer-v-scbz7c .framer-9tbhim, .framer-Nk41V.framer-v-scbz7c .framer-xgiyd1, .framer-Nk41V.framer-v-qv1z9c .framer-o25hjq { aspect-ratio: unset; height: 60px; width: 60px; }\",\".framer-Nk41V.framer-v-9r759.framer-11r17sh, .framer-Nk41V.framer-v-qv1z9c.framer-11r17sh, .framer-Nk41V.framer-v-sit0ei.framer-11r17sh { flex-direction: row; gap: 48px; width: 944px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-Nk41V.framer-v-9r759.framer-11r17sh { gap: 0px; } .framer-Nk41V.framer-v-9r759.framer-11r17sh > * { margin: 0px; margin-left: calc(48px / 2); margin-right: calc(48px / 2); } .framer-Nk41V.framer-v-9r759.framer-11r17sh > :first-child { margin-left: 0px; } .framer-Nk41V.framer-v-9r759.framer-11r17sh > :last-child { margin-right: 0px; } }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-Nk41V.framer-v-qv1z9c.framer-11r17sh { gap: 0px; } .framer-Nk41V.framer-v-qv1z9c.framer-11r17sh > * { margin: 0px; margin-left: calc(48px / 2); margin-right: calc(48px / 2); } .framer-Nk41V.framer-v-qv1z9c.framer-11r17sh > :first-child { margin-left: 0px; } .framer-Nk41V.framer-v-qv1z9c.framer-11r17sh > :last-child { margin-right: 0px; } }\",\".framer-Nk41V.framer-v-sit0ei .framer-1a0grru, .framer-Nk41V.framer-v-sit0ei .framer-9tbhim { aspect-ratio: unset; height: 56px; width: 56px; }\",\".framer-Nk41V.framer-v-sit0ei .framer-pq5t1y, .framer-Nk41V.framer-v-sit0ei .framer-xgiyd1 { height: var(--framer-aspect-ratio-supported, 35px); }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-Nk41V.framer-v-sit0ei.framer-11r17sh { gap: 0px; } .framer-Nk41V.framer-v-sit0ei.framer-11r17sh > * { margin: 0px; margin-left: calc(48px / 2); margin-right: calc(48px / 2); } .framer-Nk41V.framer-v-sit0ei.framer-11r17sh > :first-child { margin-left: 0px; } .framer-Nk41V.framer-v-sit0ei.framer-11r17sh > :last-child { margin-right: 0px; } }\",\".framer-Nk41V.framer-v-sn60vk.framer-11r17sh, .framer-Nk41V.framer-v-kttyzf.framer-11r17sh, .framer-Nk41V.framer-v-hqk3ar.framer-11r17sh { flex-direction: row; gap: 24px; width: min-content; }\",\".framer-Nk41V.framer-v-sn60vk .framer-f7uhia, .framer-Nk41V.framer-v-sn60vk .framer-c0fess, .framer-Nk41V.framer-v-sn60vk .framer-4a99fh, .framer-Nk41V.framer-v-sn60vk .framer-1wiacjq, .framer-Nk41V.framer-v-sn60vk .framer-4f5mga, .framer-Nk41V.framer-v-kttyzf .framer-f7uhia, .framer-Nk41V.framer-v-kttyzf .framer-c0fess, .framer-Nk41V.framer-v-kttyzf .framer-4a99fh, .framer-Nk41V.framer-v-kttyzf .framer-1wiacjq, .framer-Nk41V.framer-v-kttyzf .framer-4f5mga { height: var(--framer-aspect-ratio-supported, 75px); width: 75px; }\",\".framer-Nk41V.framer-v-sn60vk .framer-cjsgq4, .framer-Nk41V.framer-v-sn60vk .framer-f63gxk, .framer-Nk41V.framer-v-sn60vk .framer-dowpb8, .framer-Nk41V.framer-v-sn60vk .framer-1mkeedg, .framer-Nk41V.framer-v-sn60vk .framer-mnh0jg, .framer-Nk41V.framer-v-kttyzf .framer-cjsgq4, .framer-Nk41V.framer-v-kttyzf .framer-f63gxk, .framer-Nk41V.framer-v-kttyzf .framer-dowpb8, .framer-Nk41V.framer-v-kttyzf .framer-1mkeedg, .framer-Nk41V.framer-v-kttyzf .framer-mnh0jg, .framer-Nk41V.framer-v-hqk3ar .framer-cjsgq4, .framer-Nk41V.framer-v-hqk3ar .framer-f63gxk, .framer-Nk41V.framer-v-hqk3ar .framer-dowpb8, .framer-Nk41V.framer-v-hqk3ar .framer-1mkeedg, .framer-Nk41V.framer-v-hqk3ar .framer-mnh0jg { height: var(--framer-aspect-ratio-supported, 57px); width: 57px; }\",\".framer-Nk41V.framer-v-sn60vk .framer-ttguvy, .framer-Nk41V.framer-v-sn60vk .framer-qhbufb { height: var(--framer-aspect-ratio-supported, 11px); width: 25px; }\",\".framer-Nk41V.framer-v-sn60vk .framer-19jqjs8, .framer-Nk41V.framer-v-sn60vk .framer-4bfzn5 { height: var(--framer-aspect-ratio-supported, 21px); width: 25px; }\",\".framer-Nk41V.framer-v-sn60vk .framer-1q8qmq1, .framer-Nk41V.framer-v-hqk3ar .framer-1gklfxb { height: var(--framer-aspect-ratio-supported, 26px); width: 25px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-Nk41V.framer-v-sn60vk.framer-11r17sh { gap: 0px; } .framer-Nk41V.framer-v-sn60vk.framer-11r17sh > * { margin: 0px; margin-left: calc(24px / 2); margin-right: calc(24px / 2); } .framer-Nk41V.framer-v-sn60vk.framer-11r17sh > :first-child { margin-left: 0px; } .framer-Nk41V.framer-v-sn60vk.framer-11r17sh > :last-child { margin-right: 0px; } }\",\".framer-Nk41V.framer-v-kttyzf .framer-1gcqv6t, .framer-Nk41V.framer-v-kttyzf .framer-2wroys { height: var(--framer-aspect-ratio-supported, 17px); width: 25px; }\",\".framer-Nk41V.framer-v-kttyzf .framer-2jb4jj { height: var(--framer-aspect-ratio-supported, 25px); width: 25px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-Nk41V.framer-v-kttyzf.framer-11r17sh { gap: 0px; } .framer-Nk41V.framer-v-kttyzf.framer-11r17sh > * { margin: 0px; margin-left: calc(24px / 2); margin-right: calc(24px / 2); } .framer-Nk41V.framer-v-kttyzf.framer-11r17sh > :first-child { margin-left: 0px; } .framer-Nk41V.framer-v-kttyzf.framer-11r17sh > :last-child { margin-right: 0px; } }\",\".framer-Nk41V.framer-v-hqk3ar .framer-f7uhia { height: var(--framer-aspect-ratio-supported, 75px); order: 0; width: 75px; }\",\".framer-Nk41V.framer-v-hqk3ar .framer-1a0grru, .framer-Nk41V.framer-v-hqk3ar .framer-pq5t1y, .framer-Nk41V.framer-v-hqk3ar .framer-xgiyd1 { aspect-ratio: unset; height: 25px; width: 25px; }\",\".framer-Nk41V.framer-v-hqk3ar .framer-c0fess { height: var(--framer-aspect-ratio-supported, 75px); order: 1; width: 75px; }\",\".framer-Nk41V.framer-v-hqk3ar .framer-4a99fh { height: var(--framer-aspect-ratio-supported, 75px); order: 2; width: 75px; }\",\".framer-Nk41V.framer-v-hqk3ar .framer-1wiacjq { height: var(--framer-aspect-ratio-supported, 75px); order: 4; width: 75px; }\",\".framer-Nk41V.framer-v-hqk3ar .framer-4f5mga { height: var(--framer-aspect-ratio-supported, 75px); order: 3; width: 75px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-Nk41V.framer-v-hqk3ar.framer-11r17sh { gap: 0px; } .framer-Nk41V.framer-v-hqk3ar.framer-11r17sh > * { margin: 0px; margin-left: calc(24px / 2); margin-right: calc(24px / 2); } .framer-Nk41V.framer-v-hqk3ar.framer-11r17sh > :first-child { margin-left: 0px; } .framer-Nk41V.framer-v-hqk3ar.framer-11r17sh > :last-child { margin-right: 0px; } }\",'.framer-Nk41V[data-border=\"true\"]::after, .framer-Nk41V [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 814\n * @framerIntrinsicWidth 150\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"X3tsGGYLa\":{\"layout\":[\"fixed\",\"auto\"]},\"PizjlGGFY\":{\"layout\":[\"fixed\",\"auto\"]},\"BTf_TVWtu\":{\"layout\":[\"fixed\",\"auto\"]},\"d6JbuUgDU\":{\"layout\":[\"fixed\",\"auto\"]},\"GsQdIIGhK\":{\"layout\":[\"fixed\",\"auto\"]},\"KnEHTRnCm\":{\"layout\":[\"auto\",\"auto\"]},\"WhMRKaPjI\":{\"layout\":[\"auto\",\"auto\"]},\"xuGBlNORp\":{\"layout\":[\"auto\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FrameracySrJjPn=withCSS(Component,css,\"framer-Nk41V\");export default FrameracySrJjPn;FrameracySrJjPn.displayName=\"Line 3\";FrameracySrJjPn.defaultProps={height:814,width:150};addPropertyControls(FrameracySrJjPn,{variant:{options:[\"ois8_nJff\",\"X3tsGGYLa\",\"PizjlGGFY\",\"BTf_TVWtu\",\"d6JbuUgDU\",\"GsQdIIGhK\",\"KnEHTRnCm\",\"WhMRKaPjI\",\"xuGBlNORp\"],optionTitles:[\"Variant 1\",\"Variant 2\",\"Variant 3\",\"Tablet Variant 1\",\"Tablet Variant 2\",\"Tablet Variant 3\",\"Mobile Variant 1\",\"Mobile Variant 2\",\"Mobile Variant 3\"],title:\"Variant\",type:ControlType.Enum}});addFonts(FrameracySrJjPn,[{explicitInter:true,fonts:[]}],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FrameracySrJjPn\",\"slots\":[],\"annotations\":{\"framerIntrinsicHeight\":\"814\",\"framerImmutableVariables\":\"true\",\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicWidth\":\"150\",\"framerDisplayContentsDiv\":\"false\",\"framerContractVersion\":\"1\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"X3tsGGYLa\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"PizjlGGFY\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"BTf_TVWtu\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"d6JbuUgDU\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"GsQdIIGhK\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"KnEHTRnCm\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"WhMRKaPjI\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"xuGBlNORp\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]}}}\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./acySrJjPn.map", "// Generated by Framer (9e4a47a)\nimport{fontStore}from\"framer\";fontStore.loadFonts([\"FS;Manrope-semibold\",\"FS;Manrope-bold\"]);export const fonts=[{explicitInter:true,fonts:[{family:\"Manrope\",source:\"fontshare\",style:\"normal\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/6U2SGH566NSNERG6RGEV3DSNEK7DL2RF/JRDYRKMSAW2H35IWEQIPL67HAJQ35MG5/JNU3GNMUBPWW6V6JTED3S27XL5HN7NM5.woff2\",weight:\"600\"},{family:\"Manrope\",source:\"fontshare\",style:\"normal\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/NGBUP45ES3F7RD5XGKPEDJ6QEPO4TMOK/EXDVWJ2EDDVVV65UENMX33EDDYBX6OF7/6P4FPMFQH7CCC7RZ4UU4NKSGJ2RLF7V5.woff2\",weight:\"700\"}]}];export const css=['.framer-ITdU4 .framer-styles-preset-q0380r:not(.rich-text-wrapper), .framer-ITdU4 .framer-styles-preset-q0380r.rich-text-wrapper p { --framer-font-family: \"Manrope\", \"Manrope Placeholder\", sans-serif; --framer-font-family-bold: \"Manrope\", \"Manrope Placeholder\", sans-serif; --framer-font-open-type-features: normal; --framer-font-size: 14px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-weight: 600; --framer-font-weight-bold: 700; --framer-letter-spacing: 0em; --framer-line-height: 1.2em; --framer-paragraph-spacing: 20px; --framer-text-alignment: start; --framer-text-color: #ffffff; --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; }','@media (max-width: 1199px) and (min-width: 810px) { .framer-ITdU4 .framer-styles-preset-q0380r:not(.rich-text-wrapper), .framer-ITdU4 .framer-styles-preset-q0380r.rich-text-wrapper p { --framer-font-family: \"Manrope\", \"Manrope Placeholder\", sans-serif; --framer-font-family-bold: \"Manrope\", \"Manrope Placeholder\", sans-serif; --framer-font-open-type-features: normal; --framer-font-size: 14px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-weight: 600; --framer-font-weight-bold: 700; --framer-letter-spacing: 0em; --framer-line-height: 1.2em; --framer-paragraph-spacing: 20px; --framer-text-alignment: start; --framer-text-color: #ffffff; --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; } }','@media (max-width: 809px) and (min-width: 0px) { .framer-ITdU4 .framer-styles-preset-q0380r:not(.rich-text-wrapper), .framer-ITdU4 .framer-styles-preset-q0380r.rich-text-wrapper p { --framer-font-family: \"Manrope\", \"Manrope Placeholder\", sans-serif; --framer-font-family-bold: \"Manrope\", \"Manrope Placeholder\", sans-serif; --framer-font-open-type-features: normal; --framer-font-size: 11px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-weight: 600; --framer-font-weight-bold: 700; --framer-letter-spacing: 0em; --framer-line-height: 1.2em; --framer-paragraph-spacing: 20px; --framer-text-alignment: start; --framer-text-color: #ffffff; --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; } }'];export const className=\"framer-ITdU4\";\nexport const __FramerMetadata__ = {\"exports\":{\"fonts\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"css\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"className\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (9e1dc8e)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,getFontsFromSharedStyle,RichText,useComponentViewport,useLocaleInfo,useVariantState,withCSS,withFX}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import*as sharedStyle from\"https://framerusercontent.com/modules/rCHdZaeZXzn5slfNUhkN/EK79irhlfY5FqBBb5Jjh/PiOu5S4og.js\";const MotionDivWithFX=withFX(motion.div);const enabledGestures={T1WqTvtCK:{hover:true,pressed:true}};const cycleOrder=[\"T1WqTvtCK\",\"nRn30Y4pO\",\"GGAVUv4e_\",\"qWt9qDleZ\",\"q39OSIX3B\"];const serializationHash=\"framer-bzjBh\";const variantClassNames={GGAVUv4e_:\"framer-v-3aht0g\",nRn30Y4pO:\"framer-v-1ew6liz\",q39OSIX3B:\"framer-v-1qxugvz\",qWt9qDleZ:\"framer-v-190jzw8\",T1WqTvtCK:\"framer-v-rn6jox\"};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:.2,ease:[.44,0,.56,1],type:\"tween\"};const transition2={delay:0,duration:1,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 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={Default:\"T1WqTvtCK\",Disabled:\"GGAVUv4e_\",Error:\"q39OSIX3B\",Loading:\"nRn30Y4pO\",Success:\"qWt9qDleZ\"};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:\"T1WqTvtCK\"};};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:\"T1WqTvtCK\",enabledGestures,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const ref1=React.useRef(null);const isDisplayed=()=>{if(baseVariant===\"nRn30Y4pO\")return false;return true;};const isDisplayed1=()=>{if(baseVariant===\"nRn30Y4pO\")return true;return false;};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.button,{...restProps,...gestureHandlers,className:cx(serializationHash,...sharedStyleClassNames,\"framer-rn6jox\",className,classNames),\"data-framer-name\":\"Default\",\"data-reset\":\"button\",layoutDependency:layoutDependency,layoutId:\"T1WqTvtCK\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{backgroundColor:\"rgb(20, 20, 20)\",borderBottomLeftRadius:7,borderBottomRightRadius:7,borderTopLeftRadius:7,borderTopRightRadius:7,opacity:1,...style},variants:{\"T1WqTvtCK-hover\":{backgroundColor:\"rgba(0, 85, 255, 0.85)\"},\"T1WqTvtCK-pressed\":{backgroundColor:\"rgb(32, 96, 223)\"},GGAVUv4e_:{opacity:.5},q39OSIX3B:{backgroundColor:\"rgba(255, 34, 68, 0.15)\"}},...addPropertyOverrides({\"T1WqTvtCK-hover\":{\"data-framer-name\":undefined},\"T1WqTvtCK-pressed\":{\"data-framer-name\":undefined},GGAVUv4e_:{\"data-framer-name\":\"Disabled\"},nRn30Y4pO:{\"data-framer-name\":\"Loading\"},q39OSIX3B:{\"data-framer-name\":\"Error\"},qWt9qDleZ:{\"data-framer-name\":\"Success\"}},baseVariant,gestureVariant),children:[isDisplayed()&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-q0380r\",\"data-styles-preset\":\"PiOu5S4og\",children:\"Call Me\"})}),className:\"framer-zidpc8\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"UzDkYUj5G\",style:{\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},variants:{q39OSIX3B:{\"--extracted-r6o4lv\":\"rgb(255, 34, 68)\"},qWt9qDleZ:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\"}},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({q39OSIX3B:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"600\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 34, 68))\"},children:\"Something went wrong\"})}),fonts:[\"Inter-SemiBold\"]},qWt9qDleZ:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlM7TWFucm9wZS1zZW1pYm9sZA==\",\"--framer-font-family\":'\"Manrope\", \"Manrope Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-font-weight\":\"600\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"You will receive a call soon\"})}),fonts:[\"FS;Manrope-semibold\"]}},baseVariant,gestureVariant)}),isDisplayed1()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-1g62jpx\",\"data-framer-name\":\"Spinner\",layoutDependency:layoutDependency,layoutId:\"p1OfwroeA\",style:{mask:\"url('https://framerusercontent.com/images/pGiXYozQ3mE4cilNOItfe2L2fUA.svg') alpha no-repeat center / cover add\",WebkitMask:\"url('https://framerusercontent.com/images/pGiXYozQ3mE4cilNOItfe2L2fUA.svg') alpha no-repeat center / cover add\"},children:/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__loop:animation,__framer__loopEffectEnabled:true,__framer__loopRepeatDelay:0,__framer__loopRepeatType:\"loop\",__framer__loopTransition:transition2,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,className:\"framer-dar8en\",\"data-framer-name\":\"Conic\",layoutDependency:layoutDependency,layoutId:\"UvBPSHoVA\",style:{background:\"conic-gradient(from 180deg at 50% 50%, #4cf 0deg, #4cf 360deg)\",backgroundColor:\"rgb(68, 204, 255)\",mask:\"none\",WebkitMask:\"none\"},variants:{nRn30Y4pO:{background:\"conic-gradient(from 0deg at 50% 50%, rgba(255, 255, 255, 0) 7.208614864864882deg, rgb(255, 255, 255) 342deg)\",backgroundColor:\"rgba(0, 0, 0, 0)\",mask:\"url('https://framerusercontent.com/images/pGiXYozQ3mE4cilNOItfe2L2fUA.svg') alpha no-repeat center / cover add\",WebkitMask:\"url('https://framerusercontent.com/images/pGiXYozQ3mE4cilNOItfe2L2fUA.svg') alpha no-repeat center / cover add\"}},children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-8pbtma\",\"data-framer-name\":\"Rounding\",layoutDependency:layoutDependency,layoutId:\"bKRTCQWkB\",style:{backgroundColor:\"rgb(255, 255, 255)\",borderBottomLeftRadius:1,borderBottomRightRadius:1,borderTopLeftRadius:1,borderTopRightRadius:1},transformTemplate:transformTemplate1})})})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-bzjBh.framer-1a0fbpd, .framer-bzjBh .framer-1a0fbpd { display: block; }\",\".framer-bzjBh.framer-rn6jox { align-content: center; align-items: center; cursor: pointer; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: 40px; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 240px; }\",\".framer-bzjBh .framer-zidpc8 { -webkit-user-select: none; flex: none; height: auto; position: relative; user-select: none; white-space: pre; width: auto; }\",\".framer-bzjBh .framer-1g62jpx { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 20px); overflow: hidden; position: relative; width: 20px; }\",\".framer-bzjBh .framer-dar8en { bottom: 0px; flex: none; left: 0px; overflow: visible; position: absolute; right: 0px; top: 0px; }\",\".framer-bzjBh .framer-8pbtma { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 2px); left: 50%; overflow: visible; position: absolute; top: 0px; width: 2px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-bzjBh.framer-rn6jox { gap: 0px; } .framer-bzjBh.framer-rn6jox > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } .framer-bzjBh.framer-rn6jox > :first-child { margin-left: 0px; } .framer-bzjBh.framer-rn6jox > :last-child { margin-right: 0px; } }\",\".framer-bzjBh.framer-v-1ew6liz.framer-rn6jox, .framer-bzjBh.framer-v-3aht0g.framer-rn6jox, .framer-bzjBh.framer-v-190jzw8.framer-rn6jox, .framer-bzjBh.framer-v-1qxugvz.framer-rn6jox { cursor: unset; }\",\".framer-bzjBh.framer-v-1ew6liz .framer-dar8en { overflow: hidden; }\",...sharedStyle.css];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 40\n * @framerIntrinsicWidth 240\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]},\"nRn30Y4pO\":{\"layout\":[\"fixed\",\"fixed\"]},\"GGAVUv4e_\":{\"layout\":[\"fixed\",\"fixed\"]},\"qWt9qDleZ\":{\"layout\":[\"fixed\",\"fixed\"]},\"q39OSIX3B\":{\"layout\":[\"fixed\",\"fixed\"]},\"lps4oGVdN\":{\"layout\":[\"fixed\",\"fixed\"]},\"dHJOfzqrU\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerHQM5TPZyl=withCSS(Component,css,\"framer-bzjBh\");export default FramerHQM5TPZyl;FramerHQM5TPZyl.displayName=\"Button\";FramerHQM5TPZyl.defaultProps={height:40,width:240};addPropertyControls(FramerHQM5TPZyl,{variant:{options:[\"T1WqTvtCK\",\"nRn30Y4pO\",\"GGAVUv4e_\",\"qWt9qDleZ\",\"q39OSIX3B\"],optionTitles:[\"Default\",\"Loading\",\"Disabled\",\"Success\",\"Error\"],title:\"Variant\",type:ControlType.Enum}});addFonts(FramerHQM5TPZyl,[{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\"},{family:\"Manrope\",source:\"fontshare\",style:\"normal\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/6U2SGH566NSNERG6RGEV3DSNEK7DL2RF/JRDYRKMSAW2H35IWEQIPL67HAJQ35MG5/JNU3GNMUBPWW6V6JTED3S27XL5HN7NM5.woff2\",weight:\"600\"},{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/hyOgCu0Xnghbimh0pE8QTvtt2AU.woff2\",weight:\"600\"},{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/NeGmSOXrPBfEFIy5YZeHq17LEDA.woff2\",weight:\"600\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/oYaAX5himiTPYuN8vLWnqBbfD2s.woff2\",weight:\"600\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/lEJLP4R0yuCaMCjSXYHtJw72M.woff2\",weight:\"600\"},{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/cRJyLNuTJR5jbyKzGi33wU9cqIQ.woff2\",weight:\"600\"},{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/1ZFS7N918ojhhd0nQWdj3jz4w.woff2\",weight:\"600\"},{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/A0Wcc7NgXMjUuFdquHDrIZpzZw0.woff2\",weight:\"600\"}]},...getFontsFromSharedStyle(sharedStyle.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerHQM5TPZyl\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\",\"framerIntrinsicHeight\":\"40\",\"framerDisplayContentsDiv\":\"false\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"nRn30Y4pO\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"GGAVUv4e_\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"qWt9qDleZ\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"q39OSIX3B\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"lps4oGVdN\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"dHJOfzqrU\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerIntrinsicWidth\":\"240\",\"framerImmutableVariables\":\"true\",\"framerComponentViewportWidth\":\"true\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./HQM5TPZyl.map"],
  "mappings": "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",
  "names": ["Embed", "type", "url", "html", "style", "p", "EmbedURL", "EmbedHTML", "Instructions", "addPropertyControls", "ControlType", "props", "getMinHeight", "emptyStateStyle", "centerTextStyle", "hasAutoHeight", "onCanvas", "useIsOnCanvas", "state", "setState", "ye", "ue", "isLastEffect", "load", "response", "isBlocked", "message", "error", "ErrorMessage", "LoadingIndicator", "iframeStyle", "getSandbox", "result", "ref", "pe", "iframeHeight", "setIframeHeight", "hasScript", "_ref_current", "iframeWindow", "handleMessage", "event", "data", "height", "window", "srcDoc", "currentStyle", "htmlStyle", "containerStyles", "Component", "House_default", "React", "renderPathForWeight", "weight", "color", "pathsByWeight2", "pathsByWeight", "renderPath", "House", "props", "ref", "iconKeys", "moduleBaseUrl", "weightOptions", "lowercaseIconKeyPairs", "res", "key", "Icon", "props", "color", "selectByList", "iconSearch", "iconSelection", "onClick", "onMouseDown", "onMouseUp", "onMouseEnter", "onMouseLeave", "weight", "mirrored", "isMounted", "pe", "iconKey", "useIconSelection", "SelectedIcon", "setSelectedIcon", "ye", "House_default", "npm_react_18_2_exports", "importModule", "module", "ue", "emptyState", "RenderTarget", "p", "NullState", "motion", "addPropertyControls", "ControlType", "piece", "defaultEvents", "MotionDivWithFX", "withFX", "motion", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "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", "ref1", "pe", "isDisplayed", "isDisplayed1", "isDisplayed2", "isDisplayed3", "isDisplayed4", "isDisplayed5", "isDisplayed6", "isDisplayed7", "isDisplayed8", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "u", "cx", "SVG", "Image2", "getLoadingLazyAtYPosition", "css", "FrameracySrJjPn", "withCSS", "acySrJjPn_default", "addPropertyControls", "ControlType", "addFonts", "fontStore", "fonts", "css", "className", "MotionDivWithFX", "withFX", "motion", "enabledGestures", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "transition2", "animation", "transformTemplate1", "_", "t", "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", "ref1", "pe", "isDisplayed", "isDisplayed1", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "u", "cx", "RichText2", "css", "FramerHQM5TPZyl", "withCSS", "HQM5TPZyl_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts"]
}
