{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/o1PI5S8YtkA5bP5g4dFz/9zLIz4fn80IR9zpOx18Q/Embed.js", "ssg:https://framer.com/m/phosphor-icons/House.js@0.0.53", "ssg:https://framerusercontent.com/modules/tYScH7LTqUtz5KUaUAYP/CAjjxbTJBxHwH1MagCef/Phosphor.js", "ssg:https://framerusercontent.com/modules/vikExTCUDLsHfAVeUryO/tQ4DQ1OrZErOFjGO01II/BYidMx2OK.js", "ssg:https://framerusercontent.com/modules/Hj20QU19p80mpYsvesiZ/RfHh9MIwqlgi04HKZ3Qo/Clipboard.js", "ssg:https://framerusercontent.com/modules/1XgIniNH7Hu7oRnevhiJ/znBCVfyZMezic7O7nyzk/TRoy3Agwc.js", "ssg:https://framerusercontent.com/modules/zSOFtv9FM7uFjxuAAP0m/iSJzqtKRb3Zy4hfZuP4G/UVWKCWT18.js", "ssg:https://framerusercontent.com/modules/u0eTSpY0OzWV3ogNqAFq/lH9A817rMfbV0Hb41g8n/componentPresets.js", "ssg:https://framerusercontent.com/modules/W5auYtzPxzd4VGC6laAz/5YBOawc1xjh8Z4SrUwb5/Bqb4Pf7eO.js", "ssg:https://framerusercontent.com/modules/7gUB3OUPbDxTFLS2FZbN/sxLh14bvOPSvdgTzD8pY/QP_7AT4sV.js", "ssg:https://framerusercontent.com/modules/buwkaUjnGTAdy4Fw9UNT/d9YOmPwJ3toKLbG9bh9e/WJPPJsoSq.js", "ssg:https://framerusercontent.com/modules/hejpLI2zSDEIwfHKdvOT/xawkfM6M4rxxDrkwugTK/MiXg3kcTC.js"],
  "sourcesContent": ["import{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{useEffect,useRef,useState}from\"react\";import{addPropertyControls,ControlType}from\"framer\";import{useIsOnCanvas,emptyStateStyle,containerStyles}from\"https://framer.com/m/framer/default-utils.js\";/**\n * @framerIntrinsicWidth 600\n * @framerIntrinsicHeight 400\n *\n * @framerSupportedLayoutWidth fixed\n * @framerSupportedLayoutHeight fixed\n *\n * @framerDisableUnlink\n */ export default function Embed({type,url,html}){if(type===\"url\"&&url){return /*#__PURE__*/ _jsx(EmbedURL,{url:url});}if(type===\"html\"&&html){return /*#__PURE__*/ _jsx(EmbedHTML,{html:html});}return /*#__PURE__*/ _jsx(Instructions,{});};addPropertyControls(Embed,{type:{type:ControlType.Enum,defaultValue:\"url\",displaySegmentedControl:true,options:[\"url\",\"html\"],optionTitles:[\"URL\",\"HTML\"]},url:{title:\"URL\",type:ControlType.String,description:\"Some websites don\u2019t support embedding.\",hidden(props){return props.type!==\"url\";}},html:{title:\"HTML\",displayTextArea:true,type:ControlType.String,hidden(props){return props.type!==\"html\";}}});function Instructions(){return /*#__PURE__*/ _jsx(\"div\",{style:{...emptyStateStyle,overflow:\"hidden\"},children:/*#__PURE__*/ _jsx(\"div\",{style:centerTextStyle,children:\"To embed a website or widget, add it to the properties\\xa0panel.\"})});}function EmbedURL({url}){// Add https:// if the URL does not have a protocol.\nif(!/[a-z]+:\\/\\//.test(url)){url=\"https://\"+url;}const onCanvas=useIsOnCanvas();// We need to check if the url is blocked inside an iframe by the X-Frame-Options\n// or Content-Security-Policy headers on the backend.\nconst[state,setState]=useState(onCanvas?undefined:false);useEffect(()=>{// We only want to check on the canvas.\n// On the website we want to avoid the additional delay.\nif(!onCanvas)return;// TODO: We could also use AbortController here.\nlet isLastEffect=true;setState(undefined);async function load(){const response=await fetch(\"https://api.framer.com/functions/check-iframe-url?url=\"+encodeURIComponent(url));if(response.status==200){const{isBlocked}=await response.json();if(isLastEffect){setState(isBlocked);}}else{const message=await response.text();console.error(message);const error=new Error(\"This site can\u2019t be reached.\");setState(error);}}load().catch(error=>{console.error(error);setState(error);});return()=>{isLastEffect=false;};},[url]);if(!url.startsWith(\"https://\")){return /*#__PURE__*/ _jsx(ErrorMessage,{message:\"Unsupported protocol.\"});}if(state===undefined){return /*#__PURE__*/ _jsx(LoadingIndicator,{});}if(state instanceof Error){return /*#__PURE__*/ _jsx(ErrorMessage,{message:state.message});}if(state===true){const message=`Can't embed ${url} due to its content security policy.`;return /*#__PURE__*/ _jsx(ErrorMessage,{message:message});}return /*#__PURE__*/ _jsx(\"iframe\",{src:url,style:iframeStyle,loading:\"lazy\",// @ts-ignore\nfetchPriority:onCanvas?\"low\":\"auto\",referrerPolicy:\"no-referrer\",sandbox:getSandbox(onCanvas)});}const iframeStyle={width:\"100%\",height:\"100%\",border:\"none\"};function getSandbox(onCanvas){const result=[\"allow-same-origin\",\"allow-scripts\"];if(!onCanvas){result.push(\"allow-downloads\",\"allow-forms\",\"allow-modals\",\"allow-orientation-lock\",\"allow-pointer-lock\",\"allow-popups\",\"allow-popups-to-escape-sandbox\",\"allow-presentation\",\"allow-storage-access-by-user-activation\",\"allow-top-navigation-by-user-activation\");}return result.join(\" \");}function EmbedHTML({html}){const ref=useRef();// If the HTML contains a script tag we can't use\n// dangerouslySetInnerHTML because it doesn't execute\n// scripts on the client. Otherwise, we can benefit\n// from SSG by using dangerouslySetInnerHTML.\nconst hasScript=html.includes(\"</script>\");useEffect(()=>{if(!hasScript)return;const div=ref.current;div.innerHTML=html;executeScripts(div);return()=>{div.innerHTML=\"\";};},[html,hasScript]);return /*#__PURE__*/ _jsx(\"div\",{ref:ref,style:htmlStyle,dangerouslySetInnerHTML:!hasScript?{__html:html}:undefined});}const htmlStyle={width:\"100%\",height:\"100%\",display:\"flex\",flexDirection:\"column\",justifyContent:\"center\",alignItems:\"center\"};// This function replaces scripts with executable ones.\n// https://stackoverflow.com/questions/1197575/can-scripts-be-inserted-with-innerhtml\nfunction executeScripts(node){if(node instanceof Element&&node.tagName===\"SCRIPT\"){const script=document.createElement(\"script\");script.text=node.innerHTML;for(const{name,value}of node.attributes){script.setAttribute(name,value);}node.parentElement.replaceChild(script,node);}else{for(const child of node.childNodes){executeScripts(child);}}}// Generic components\nfunction LoadingIndicator(){return /*#__PURE__*/ _jsx(\"div\",{className:\"framerInternalUI-componentPlaceholder\",style:{...containerStyles,overflow:\"hidden\"},children:/*#__PURE__*/ _jsx(\"div\",{style:centerTextStyle,children:\"Loading\u2026\"})});}function ErrorMessage({message}){return /*#__PURE__*/ _jsx(\"div\",{className:\"framerInternalUI-errorPlaceholder\",style:{...containerStyles,overflow:\"hidden\"},children:/*#__PURE__*/ _jsxs(\"div\",{style:centerTextStyle,children:[\"Error: \",message]})});}const centerTextStyle={textAlign:\"center\",minWidth:140};\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"Embed\",\"slots\":[],\"annotations\":{\"framerSupportedLayoutHeight\":\"fixed\",\"framerSupportedLayoutWidth\":\"fixed\",\"framerDisableUnlink\":\"\",\"framerIntrinsicWidth\":\"600\",\"framerIntrinsicHeight\":\"400\",\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Embed.map", "let Component;\nvar House_default = (React) => {\n  if (!Component) {\n    const weights = /* @__PURE__ */ new Map([\n      [\n        \"bold\",\n        /* @__PURE__ */ React.createElement(React.Fragment, null, /* @__PURE__ */ React.createElement(\"path\", { d: \"M221.56,100.85,141.61,25.38l-.16-.15a19.93,19.93,0,0,0-26.91,0l-.17.15L34.44,100.85A20.07,20.07,0,0,0,28,115.55V208a20,20,0,0,0,20,20H96a20,20,0,0,0,20-20V164h24v44a20,20,0,0,0,20,20h48a20,20,0,0,0,20-20V115.55A20.07,20.07,0,0,0,221.56,100.85ZM204,204H164V160a20,20,0,0,0-20-20H112a20,20,0,0,0-20,20v44H52V117.28l76-71.75,76,71.75Z\" }))\n      ],\n      [\n        \"duotone\",\n        /* @__PURE__ */ React.createElement(React.Fragment, null, /* @__PURE__ */ React.createElement(\n          \"path\",\n          {\n            d: \"M216,115.54V208a8,8,0,0,1-8,8H160a8,8,0,0,1-8-8V160a8,8,0,0,0-8-8H112a8,8,0,0,0-8,8v48a8,8,0,0,1-8,8H48a8,8,0,0,1-8-8V115.54a8,8,0,0,1,2.62-5.92l80-75.54a8,8,0,0,1,10.77,0l80,75.54A8,8,0,0,1,216,115.54Z\",\n            opacity: \"0.2\"\n          }\n        ), /* @__PURE__ */ React.createElement(\"path\", { d: \"M218.83,103.77l-80-75.48a1.14,1.14,0,0,1-.11-.11,16,16,0,0,0-21.53,0l-.11.11L37.17,103.77A16,16,0,0,0,32,115.55V208a16,16,0,0,0,16,16H96a16,16,0,0,0,16-16V160h32v48a16,16,0,0,0,16,16h48a16,16,0,0,0,16-16V115.55A16,16,0,0,0,218.83,103.77ZM208,208H160V160a16,16,0,0,0-16-16H112a16,16,0,0,0-16,16v48H48V115.55l.11-.1L128,40l79.9,75.43.11.1Z\" }))\n      ],\n      [\n        \"fill\",\n        /* @__PURE__ */ React.createElement(React.Fragment, null, /* @__PURE__ */ React.createElement(\"path\", { d: \"M224,115.55V208a16,16,0,0,1-16,16H168a16,16,0,0,1-16-16V168a8,8,0,0,0-8-8H112a8,8,0,0,0-8,8v40a16,16,0,0,1-16,16H48a16,16,0,0,1-16-16V115.55a16,16,0,0,1,5.17-11.78l80-75.48.11-.11a16,16,0,0,1,21.53,0,1.14,1.14,0,0,0,.11.11l80,75.48A16,16,0,0,1,224,115.55Z\" }))\n      ],\n      [\n        \"light\",\n        /* @__PURE__ */ React.createElement(React.Fragment, null, /* @__PURE__ */ React.createElement(\"path\", { d: \"M217.47,105.24l-80-75.5-.09-.08a13.94,13.94,0,0,0-18.83,0l-.09.08-80,75.5A14,14,0,0,0,34,115.55V208a14,14,0,0,0,14,14H96a14,14,0,0,0,14-14V160a2,2,0,0,1,2-2h32a2,2,0,0,1,2,2v48a14,14,0,0,0,14,14h48a14,14,0,0,0,14-14V115.55A14,14,0,0,0,217.47,105.24ZM210,208a2,2,0,0,1-2,2H160a2,2,0,0,1-2-2V160a14,14,0,0,0-14-14H112a14,14,0,0,0-14,14v48a2,2,0,0,1-2,2H48a2,2,0,0,1-2-2V115.55a2,2,0,0,1,.65-1.48l.09-.08,79.94-75.48a2,2,0,0,1,2.63,0L209.26,114l.08.08a2,2,0,0,1,.66,1.48Z\" }))\n      ],\n      [\n        \"regular\",\n        /* @__PURE__ */ React.createElement(React.Fragment, null, /* @__PURE__ */ React.createElement(\"path\", { d: \"M218.83,103.77l-80-75.48a1.14,1.14,0,0,1-.11-.11,16,16,0,0,0-21.53,0l-.11.11L37.17,103.77A16,16,0,0,0,32,115.55V208a16,16,0,0,0,16,16H96a16,16,0,0,0,16-16V160h32v48a16,16,0,0,0,16,16h48a16,16,0,0,0,16-16V115.55A16,16,0,0,0,218.83,103.77ZM208,208H160V160a16,16,0,0,0-16-16H112a16,16,0,0,0-16,16v48H48V115.55l.11-.1L128,40l79.9,75.43.11.1Z\" }))\n      ],\n      [\n        \"thin\",\n        /* @__PURE__ */ React.createElement(React.Fragment, null, /* @__PURE__ */ React.createElement(\"path\", { d: \"M216.13,106.72,136.07,31.13a12,12,0,0,0-16.2.05L39.93,106.67A12,12,0,0,0,36,115.54V208a12,12,0,0,0,12,12H96a12,12,0,0,0,12-12V160a4,4,0,0,1,4-4h32a4,4,0,0,1,4,4v48a12,12,0,0,0,12,12h48a12,12,0,0,0,12-12V115.54A12,12,0,0,0,216.13,106.72ZM212,208a4,4,0,0,1-4,4H160a4,4,0,0,1-4-4V160a12,12,0,0,0-12-12H112a12,12,0,0,0-12,12v48a4,4,0,0,1-4,4H48a4,4,0,0,1-4-4V115.54a4.09,4.09,0,0,1,1.36-3L125.3,37.05a4,4,0,0,1,5.33,0l80.06,75.58a4,4,0,0,1,1.31,3Z\" }))\n      ]\n    ]);\n    const House = React.forwardRef((props, ref) => /* @__PURE__ */ React.createElement(\"g\", { ref, ...props }, weights.get(props.weight)));\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.53\";import{defaultEvents,useIconSelection}from\"https://framerusercontent.com/modules/Ma20hU0GGRxLxZphbywl/OSpwWF91FHPVFyQJjMHt/utils.js\";const iconKeys=[\"AddressBook\",\"AirTrafficControl\",\"Airplane\",\"AirplaneInFlight\",\"AirplaneLanding\",\"AirplaneTakeoff\",\"AirplaneTilt\",\"Airplay\",\"Alarm\",\"Alien\",\"AlignBottom\",\"AlignBottomSimple\",\"AlignCenterVertical\",\"AlignLeft\",\"AlignLeftSimple\",\"AlignRight\",\"AlignRightSimple\",\"AlignTop\",\"AlignTopSimple\",\"AmazonLogo\",\"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\",\"ArrowsMerge\",\"ArrowsOut\",\"ArrowsOutCardinal\",\"ArrowsOutSimple\",\"ArrowsSplit\",\"ArrowsVertical\",\"Article\",\"ArticleMedium\",\"ArticleNyTimes\",\"Asterisk\",\"AsteriskSimple\",\"At\",\"Atom\",\"Baby\",\"Backpack\",\"Backspace\",\"Bag\",\"BagSimple\",\"Balloon\",\"Bandaids\",\"Bank\",\"Barbell\",\"Barcode\",\"Barricade\",\"Baseball\",\"BaseballCap\",\"Basket\",\"Basketball\",\"Bathtub\",\"BatteryCharging\",\"BatteryEmpty\",\"BatteryFull\",\"BatteryHigh\",\"BatteryLow\",\"BatteryMedium\",\"BatteryPlus\",\"BatteryPlusVertical\",\"BatteryVerticalEmpty\",\"BatteryVerticalFull\",\"BatteryVerticalHigh\",\"BatteryVerticalLow\",\"BatteryWarning\",\"Bed\",\"BeerBottle\",\"BeerStein\",\"BehanceLogo\",\"Bell\",\"BellRinging\",\"BellSimple\",\"BellSimpleRinging\",\"BellSimpleSlash\",\"BellSimpleZ\",\"BellSlash\",\"BellZ\",\"BezierCurve\",\"Bicycle\",\"Binoculars\",\"Bird\",\"Bluetooth\",\"BluetoothConnected\",\"BluetoothSlash\",\"BluetoothX\",\"Boat\",\"Bone\",\"Book\",\"BookBookmark\",\"BookOpen\",\"BookOpenText\",\"Bookmark\",\"BookmarkSimple\",\"Bookmarks\",\"BookmarksSimple\",\"Books\",\"Boot\",\"BoundingBox\",\"BowlFood\",\"BracketsAngle\",\"BracketsCurly\",\"BracketsRound\",\"BracketsSquare\",\"Brain\",\"Brandy\",\"Bridge\",\"Briefcase\",\"BriefcaseMetal\",\"Broadcast\",\"Broom\",\"Browser\",\"Browsers\",\"Bug\",\"BugBeetle\",\"BugDroid\",\"Buildings\",\"Bus\",\"Butterfly\",\"Cactus\",\"Cake\",\"Calculator\",\"Calendar\",\"CalendarBlank\",\"CalendarCheck\",\"CalendarPlus\",\"CalendarX\",\"CallBell\",\"Camera\",\"CameraPlus\",\"CameraRotate\",\"CameraSlash\",\"Campfire\",\"Car\",\"CarProfile\",\"CarSimple\",\"Cardholder\",\"Cards\",\"CaretCircleDoubleUp\",\"CaretCircleDown\",\"CaretCircleLeft\",\"CaretCircleRight\",\"CaretCircleUp\",\"CaretCircleUpDown\",\"CaretDoubleDown\",\"CaretDoubleLeft\",\"CaretDoubleRight\",\"CaretDoubleUp\",\"CaretDown\",\"CaretLeft\",\"CaretRight\",\"CaretUp\",\"CaretUpDown\",\"Carrot\",\"CassetteTape\",\"CastleTurret\",\"Cat\",\"CellSignalFull\",\"CellSignalHigh\",\"CellSignalLow\",\"CellSignalMedium\",\"CellSignalNone\",\"CellSignalSlash\",\"CellSignalX\",\"Certificate\",\"Chair\",\"Chalkboard\",\"ChalkboardSimple\",\"ChalkboardTeacher\",\"Champagne\",\"ChargingStation\",\"ChartBar\",\"ChartBarHorizontal\",\"ChartDonut\",\"ChartLine\",\"ChartLineDown\",\"ChartLineUp\",\"ChartPie\",\"ChartPieSlice\",\"ChartPolar\",\"ChartScatter\",\"Chat\",\"ChatCentered\",\"ChatCenteredDots\",\"ChatCenteredText\",\"ChatCircle\",\"ChatCircleDots\",\"ChatCircleText\",\"ChatDots\",\"ChatTeardrop\",\"ChatTeardropDots\",\"ChatTeardropText\",\"ChatText\",\"Chats\",\"ChatsCircle\",\"ChatsTeardrop\",\"Check\",\"CheckCircle\",\"CheckFat\",\"CheckSquare\",\"CheckSquareOffset\",\"Checks\",\"Church\",\"Circle\",\"CircleDashed\",\"CircleHalf\",\"CircleHalfTilt\",\"CircleNotch\",\"CirclesFour\",\"CirclesThree\",\"CirclesThreePlus\",\"Circuitry\",\"Clipboard\",\"ClipboardText\",\"Clock\",\"ClockAfternoon\",\"ClockClockwise\",\"ClockCounterClockwise\",\"ClockCountdown\",\"ClosedCaptioning\",\"Cloud\",\"CloudArrowDown\",\"CloudArrowUp\",\"CloudCheck\",\"CloudFog\",\"CloudLightning\",\"CloudMoon\",\"CloudRain\",\"CloudSlash\",\"CloudSnow\",\"CloudSun\",\"CloudWarning\",\"CloudX\",\"Club\",\"CoatHanger\",\"CodaLogo\",\"Code\",\"CodeBlock\",\"CodeSimple\",\"CodepenLogo\",\"CodesandboxLogo\",\"Coffee\",\"Coin\",\"CoinVertical\",\"Coins\",\"Columns\",\"Command\",\"Compass\",\"CompassTool\",\"ComputerTower\",\"Confetti\",\"ContactlessPayment\",\"Control\",\"Cookie\",\"CookingPot\",\"Copy\",\"CopySimple\",\"Copyleft\",\"Copyright\",\"CornersIn\",\"CornersOut\",\"Couch\",\"Cpu\",\"CreditCard\",\"Crop\",\"Cross\",\"Crosshair\",\"CrosshairSimple\",\"Crown\",\"CrownSimple\",\"Cube\",\"CubeFocus\",\"CubeTransparent\",\"CurrencyBtc\",\"CurrencyCircleDollar\",\"CurrencyCny\",\"CurrencyDollar\",\"CurrencyDollarSimple\",\"CurrencyEth\",\"CurrencyEur\",\"CurrencyGbp\",\"CurrencyInr\",\"CurrencyJpy\",\"CurrencyKrw\",\"CurrencyKzt\",\"CurrencyNgn\",\"CurrencyRub\",\"Cursor\",\"CursorClick\",\"CursorText\",\"Cylinder\",\"Database\",\"Desktop\",\"DesktopTower\",\"Detective\",\"DevToLogo\",\"DeviceMobile\",\"DeviceMobileCamera\",\"DeviceMobileSpeaker\",\"DeviceTablet\",\"DeviceTabletCamera\",\"DeviceTabletSpeaker\",\"Devices\",\"Diamond\",\"DiamondsFour\",\"DiceFive\",\"DiceFour\",\"DiceOne\",\"DiceSix\",\"DiceThree\",\"DiceTwo\",\"Disc\",\"DiscordLogo\",\"Divide\",\"Dna\",\"Dog\",\"Door\",\"DoorOpen\",\"Dot\",\"DotOutline\",\"DotsNine\",\"DotsSix\",\"DotsSixVertical\",\"DotsThree\",\"DotsThreeCircle\",\"DotsThreeOutline\",\"DotsThreeVertical\",\"Download\",\"DownloadSimple\",\"Dress\",\"DribbbleLogo\",\"Drop\",\"DropHalf\",\"DropHalfBottom\",\"DropboxLogo\",\"Ear\",\"EarSlash\",\"Egg\",\"EggCrack\",\"Eject\",\"EjectSimple\",\"Elevator\",\"Engine\",\"Envelope\",\"EnvelopeOpen\",\"EnvelopeSimple\",\"EnvelopeSimpleOpen\",\"Equalizer\",\"Equals\",\"Eraser\",\"EscalatorDown\",\"EscalatorUp\",\"Exam\",\"Exclude\",\"ExcludeSquare\",\"Export\",\"Eye\",\"EyeClosed\",\"EyeSlash\",\"Eyedropper\",\"EyedropperSample\",\"Eyeglasses\",\"FaceMask\",\"FacebookLogo\",\"Factory\",\"Faders\",\"FadersHorizontal\",\"Fan\",\"FastForward\",\"FastForwardCircle\",\"Feather\",\"FigmaLogo\",\"File\",\"FileArchive\",\"FileArrowDown\",\"FileArrowUp\",\"FileAudio\",\"FileCloud\",\"FileCode\",\"FileCss\",\"FileCsv\",\"FileDashed\",\"FileDoc\",\"FileHtml\",\"FileImage\",\"FileJpg\",\"FileJs\",\"FileJsx\",\"FileLock\",\"FileMagnifyingGlass\",\"FileMinus\",\"FilePdf\",\"FilePlus\",\"FilePng\",\"FilePpt\",\"FileRs\",\"FileSql\",\"FileSvg\",\"FileText\",\"FileTs\",\"FileTsx\",\"FileVideo\",\"FileVue\",\"FileX\",\"FileXls\",\"FileZip\",\"Files\",\"FilmReel\",\"FilmScript\",\"FilmSlate\",\"FilmStrip\",\"Fingerprint\",\"FingerprintSimple\",\"FinnTheHuman\",\"Fire\",\"FireExtinguisher\",\"FireSimple\",\"FirstAid\",\"FirstAidKit\",\"Fish\",\"FishSimple\",\"Flag\",\"FlagBanner\",\"FlagCheckered\",\"FlagPennant\",\"Flame\",\"Flashlight\",\"Flask\",\"FloppyDisk\",\"FloppyDiskBack\",\"FlowArrow\",\"Flower\",\"FlowerLotus\",\"FlowerTulip\",\"FlyingSaucer\",\"Folder\",\"FolderDashed\",\"FolderLock\",\"FolderMinus\",\"FolderNotch\",\"FolderNotchMinus\",\"FolderNotchOpen\",\"FolderNotchPlus\",\"FolderOpen\",\"FolderPlus\",\"FolderSimple\",\"FolderSimpleDashed\",\"FolderSimpleLock\",\"FolderSimpleMinus\",\"FolderSimplePlus\",\"FolderSimpleStar\",\"FolderSimpleUser\",\"FolderStar\",\"FolderUser\",\"Folders\",\"Football\",\"Footprints\",\"ForkKnife\",\"FrameCorners\",\"FramerLogo\",\"Function\",\"Funnel\",\"FunnelSimple\",\"GameController\",\"Garage\",\"GasCan\",\"GasPump\",\"Gauge\",\"Gavel\",\"Gear\",\"GearFine\",\"GearSix\",\"GenderFemale\",\"GenderIntersex\",\"GenderMale\",\"GenderNeuter\",\"GenderNonbinary\",\"GenderTransgender\",\"Ghost\",\"Gif\",\"Gift\",\"GitBranch\",\"GitCommit\",\"GitDiff\",\"GitFork\",\"GitMerge\",\"GitPullRequest\",\"GithubLogo\",\"GitlabLogo\",\"GitlabLogoSimple\",\"Globe\",\"GlobeHemisphereEast\",\"GlobeHemisphereWest\",\"GlobeSimple\",\"GlobeStand\",\"Goggles\",\"GoodreadsLogo\",\"GoogleCardboardLogo\",\"GoogleChromeLogo\",\"GoogleDriveLogo\",\"GoogleLogo\",\"GooglePhotosLogo\",\"GooglePlayLogo\",\"GooglePodcastsLogo\",\"Gradient\",\"GraduationCap\",\"Grains\",\"GrainsSlash\",\"Graph\",\"GridFour\",\"GridNine\",\"Guitar\",\"Hamburger\",\"Hammer\",\"Hand\",\"HandCoins\",\"HandEye\",\"HandFist\",\"HandGrabbing\",\"HandHeart\",\"HandPalm\",\"HandPointing\",\"HandSoap\",\"HandSwipeLeft\",\"HandSwipeRight\",\"HandTap\",\"HandWaving\",\"Handbag\",\"HandbagSimple\",\"HandsClapping\",\"HandsPraying\",\"Handshake\",\"HardDrive\",\"HardDrives\",\"Hash\",\"HashStraight\",\"Headlights\",\"Headphones\",\"Headset\",\"Heart\",\"HeartBreak\",\"HeartHalf\",\"HeartStraight\",\"HeartStraightBreak\",\"Heartbeat\",\"Hexagon\",\"HighHeel\",\"HighlighterCircle\",\"Hoodie\",\"Horse\",\"Hourglass\",\"HourglassHigh\",\"HourglassLow\",\"HourglassMedium\",\"HourglassSimple\",\"HourglassSimpleHigh\",\"HourglassSimpleLow\",\"House\",\"HouseLine\",\"HouseSimple\",\"IceCream\",\"IdentificationBadge\",\"IdentificationCard\",\"Image\",\"ImageSquare\",\"Images\",\"ImagesSquare\",\"Infinity\",\"Info\",\"InstagramLogo\",\"Intersect\",\"IntersectSquare\",\"IntersectThree\",\"Jeep\",\"Kanban\",\"Key\",\"KeyReturn\",\"Keyboard\",\"Keyhole\",\"Knife\",\"Ladder\",\"LadderSimple\",\"Lamp\",\"Laptop\",\"Layout\",\"Leaf\",\"Lifebuoy\",\"Lightbulb\",\"LightbulbFilament\",\"Lighthouse\",\"Lightning\",\"LightningA\",\"LightningSlash\",\"LineSegment\",\"LineSegments\",\"Link\",\"LinkBreak\",\"LinkSimple\",\"LinkSimpleBreak\",\"LinkSimpleHorizontal\",\"LinkedinLogo\",\"LinuxLogo\",\"List\",\"ListBullets\",\"ListChecks\",\"ListDashes\",\"ListMagnifyingGlass\",\"ListNumbers\",\"ListPlus\",\"Lock\",\"LockKey\",\"LockKeyOpen\",\"LockLaminated\",\"LockLaminatedOpen\",\"LockOpen\",\"LockSimple\",\"LockSimpleOpen\",\"Lockers\",\"MagicWand\",\"Magnet\",\"MagnetStraight\",\"MagnifyingGlass\",\"MagnifyingGlassMinus\",\"MagnifyingGlassPlus\",\"MapPin\",\"MapPinLine\",\"MapTrifold\",\"MarkerCircle\",\"Martini\",\"MaskHappy\",\"MaskSad\",\"MathOperations\",\"Medal\",\"MedalMilitary\",\"MediumLogo\",\"Megaphone\",\"MegaphoneSimple\",\"MessengerLogo\",\"MetaLogo\",\"Metronome\",\"Microphone\",\"MicrophoneSlash\",\"MicrophoneStage\",\"MicrosoftExcelLogo\",\"MicrosoftOutlookLogo\",\"MicrosoftTeamsLogo\",\"MicrosoftWordLogo\",\"Minus\",\"MinusCircle\",\"MinusSquare\",\"Money\",\"Monitor\",\"MonitorPlay\",\"Moon\",\"MoonStars\",\"Moped\",\"MopedFront\",\"Mosque\",\"Motorcycle\",\"Mountains\",\"Mouse\",\"MouseSimple\",\"MusicNote\",\"MusicNoteSimple\",\"MusicNotes\",\"MusicNotesPlus\",\"MusicNotesSimple\",\"NavigationArrow\",\"Needle\",\"Newspaper\",\"NewspaperClipping\",\"Notches\",\"Note\",\"NoteBlank\",\"NotePencil\",\"Notebook\",\"Notepad\",\"Notification\",\"NotionLogo\",\"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\",\"OfficeChair\",\"Option\",\"OrangeSlice\",\"Package\",\"PaintBrush\",\"PaintBrushBroad\",\"PaintBrushHousehold\",\"PaintBucket\",\"PaintRoller\",\"Palette\",\"Pants\",\"PaperPlane\",\"PaperPlaneRight\",\"PaperPlaneTilt\",\"Paperclip\",\"PaperclipHorizontal\",\"Parachute\",\"Paragraph\",\"Parallelogram\",\"Park\",\"Password\",\"Path\",\"PatreonLogo\",\"Pause\",\"PauseCircle\",\"PawPrint\",\"PaypalLogo\",\"Peace\",\"Pen\",\"PenNib\",\"PenNibStraight\",\"Pencil\",\"PencilCircle\",\"PencilLine\",\"PencilSimple\",\"PencilSimpleLine\",\"PencilSimpleSlash\",\"PencilSlash\",\"Pentagram\",\"Pepper\",\"Percent\",\"Person\",\"PersonArmsSpread\",\"PersonSimple\",\"PersonSimpleBike\",\"PersonSimpleRun\",\"PersonSimpleThrow\",\"PersonSimpleWalk\",\"Perspective\",\"Phone\",\"PhoneCall\",\"PhoneDisconnect\",\"PhoneIncoming\",\"PhoneOutgoing\",\"PhonePlus\",\"PhoneSlash\",\"PhoneX\",\"PhosphorLogo\",\"Pi\",\"PianoKeys\",\"PictureInPicture\",\"PiggyBank\",\"Pill\",\"PinterestLogo\",\"Pinwheel\",\"Pizza\",\"Placeholder\",\"Planet\",\"Plant\",\"Play\",\"PlayCircle\",\"PlayPause\",\"Playlist\",\"Plug\",\"PlugCharging\",\"Plugs\",\"PlugsConnected\",\"Plus\",\"PlusCircle\",\"PlusMinus\",\"PlusSquare\",\"PokerChip\",\"PoliceCar\",\"Polygon\",\"Popcorn\",\"PottedPlant\",\"Power\",\"Prescription\",\"Presentation\",\"PresentationChart\",\"Printer\",\"Prohibit\",\"ProhibitInset\",\"ProjectorScreen\",\"ProjectorScreenChart\",\"Pulse\",\"PushPin\",\"PushPinSimple\",\"PushPinSimpleSlash\",\"PushPinSlash\",\"PuzzlePiece\",\"QrCode\",\"Question\",\"Queue\",\"Quotes\",\"Radical\",\"Radio\",\"RadioButton\",\"Radioactive\",\"Rainbow\",\"RainbowCloud\",\"ReadCvLogo\",\"Receipt\",\"ReceiptX\",\"Record\",\"Rectangle\",\"Recycle\",\"RedditLogo\",\"Repeat\",\"RepeatOnce\",\"Rewind\",\"RewindCircle\",\"RoadHorizon\",\"Robot\",\"Rocket\",\"RocketLaunch\",\"Rows\",\"Rss\",\"RssSimple\",\"Rug\",\"Ruler\",\"Scales\",\"Scan\",\"Scissors\",\"Scooter\",\"Screencast\",\"ScribbleLoop\",\"Scroll\",\"Seal\",\"SealCheck\",\"SealQuestion\",\"SealWarning\",\"Selection\",\"SelectionAll\",\"SelectionBackground\",\"SelectionForeground\",\"SelectionInverse\",\"SelectionPlus\",\"SelectionSlash\",\"Shapes\",\"Share\",\"ShareFat\",\"ShareNetwork\",\"Shield\",\"ShieldCheck\",\"ShieldCheckered\",\"ShieldChevron\",\"ShieldPlus\",\"ShieldSlash\",\"ShieldStar\",\"ShieldWarning\",\"ShirtFolded\",\"ShootingStar\",\"ShoppingBag\",\"ShoppingBagOpen\",\"ShoppingCart\",\"ShoppingCartSimple\",\"Shower\",\"Shrimp\",\"Shuffle\",\"ShuffleAngular\",\"ShuffleSimple\",\"Sidebar\",\"SidebarSimple\",\"Sigma\",\"SignIn\",\"SignOut\",\"Signature\",\"Signpost\",\"SimCard\",\"Siren\",\"SketchLogo\",\"SkipBack\",\"SkipBackCircle\",\"SkipForward\",\"SkipForwardCircle\",\"Skull\",\"SlackLogo\",\"Sliders\",\"SlidersHorizontal\",\"Slideshow\",\"Smiley\",\"SmileyAngry\",\"SmileyBlank\",\"SmileyMeh\",\"SmileyNervous\",\"SmileySad\",\"SmileySticker\",\"SmileyWink\",\"SmileyXEyes\",\"SnapchatLogo\",\"Sneaker\",\"SneakerMove\",\"Snowflake\",\"SoccerBall\",\"SortAscending\",\"SortDescending\",\"SoundcloudLogo\",\"Spade\",\"Sparkle\",\"SpeakerHifi\",\"SpeakerHigh\",\"SpeakerLow\",\"SpeakerNone\",\"SpeakerSimpleHigh\",\"SpeakerSimpleLow\",\"SpeakerSimpleNone\",\"SpeakerSimpleSlash\",\"SpeakerSimpleX\",\"SpeakerSlash\",\"SpeakerX\",\"Spinner\",\"SpinnerGap\",\"Spiral\",\"SplitHorizontal\",\"SplitVertical\",\"SpotifyLogo\",\"Square\",\"SquareHalf\",\"SquareHalfBottom\",\"SquareLogo\",\"SquareSplitVertical\",\"SquaresFour\",\"Stack\",\"StackOverflowLogo\",\"StackSimple\",\"Stairs\",\"Stamp\",\"Star\",\"StarAndCrescent\",\"StarFour\",\"StarHalf\",\"StarOfDavid\",\"SteeringWheel\",\"Steps\",\"Stethoscope\",\"Sticker\",\"Stool\",\"Stop\",\"StopCircle\",\"Storefront\",\"Strategy\",\"StripeLogo\",\"Student\",\"Subtitles\",\"Subtract\",\"SubtractSquare\",\"Suitcase\",\"SuitcaseRolling\",\"SuitcaseSimple\",\"Sun\",\"SunDim\",\"SunHorizon\",\"Sunglasses\",\"Swap\",\"Swatches\",\"SwimmingPool\",\"Sword\",\"Synagogue\",\"Syringe\",\"TShirt\",\"Table\",\"Tabs\",\"Tag\",\"TagChevron\",\"TagSimple\",\"Target\",\"Taxi\",\"TelegramLogo\",\"Television\",\"TelevisionSimple\",\"TennisBall\",\"Tent\",\"Terminal\",\"TerminalWindow\",\"TestTube\",\"TextAUnderline\",\"TextAa\",\"TextAlignCenter\",\"TextAlignJustify\",\"TextAlignLeft\",\"TextAlignRight\",\"TextB\",\"TextColumns\",\"TextH\",\"TextHFive\",\"TextHFour\",\"TextHOne\",\"TextHSix\",\"TextHThree\",\"TextHTwo\",\"TextIndent\",\"TextItalic\",\"TextOutdent\",\"TextStrikethrough\",\"TextT\",\"TextUnderline\",\"Textbox\",\"Thermometer\",\"ThermometerCold\",\"ThermometerHot\",\"ThermometerSimple\",\"ThumbsDown\",\"ThumbsUp\",\"Ticket\",\"TidalLogo\",\"TiktokLogo\",\"Timer\",\"Tipi\",\"ToggleLeft\",\"ToggleRight\",\"Toilet\",\"ToiletPaper\",\"Toolbox\",\"Tooth\",\"Tote\",\"ToteSimple\",\"Trademark\",\"TrademarkRegistered\",\"TrafficCone\",\"TrafficSign\",\"TrafficSignal\",\"Train\",\"TrainRegional\",\"TrainSimple\",\"Tram\",\"Translate\",\"Trash\",\"TrashSimple\",\"Tray\",\"Tree\",\"TreeEvergreen\",\"TreePalm\",\"TreeStructure\",\"TrendDown\",\"TrendUp\",\"Triangle\",\"Trophy\",\"Truck\",\"TwitchLogo\",\"TwitterLogo\",\"Umbrella\",\"UmbrellaSimple\",\"Unite\",\"UniteSquare\",\"Upload\",\"UploadSimple\",\"Usb\",\"User\",\"UserCircle\",\"UserCircleGear\",\"UserCircleMinus\",\"UserCirclePlus\",\"UserFocus\",\"UserGear\",\"UserList\",\"UserMinus\",\"UserPlus\",\"UserRectangle\",\"UserSquare\",\"UserSwitch\",\"Users\",\"UsersFour\",\"UsersThree\",\"Van\",\"Vault\",\"Vibrate\",\"Video\",\"VideoCamera\",\"VideoCameraSlash\",\"Vignette\",\"VinylRecord\",\"VirtualReality\",\"Virus\",\"Voicemail\",\"Volleyball\",\"Wall\",\"Wallet\",\"Warehouse\",\"Warning\",\"WarningCircle\",\"WarningDiamond\",\"WarningOctagon\",\"Watch\",\"WaveSawtooth\",\"WaveSine\",\"WaveSquare\",\"WaveTriangle\",\"Waveform\",\"Waves\",\"Webcam\",\"WebcamSlash\",\"WebhooksLogo\",\"WechatLogo\",\"WhatsappLogo\",\"Wheelchair\",\"WheelchairMotion\",\"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{const version=\"0.0.53\";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,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\":{\"framerIntrinsicWidth\":\"24\",\"framerIntrinsicHeight\":\"24\",\"framerSupportedLayoutHeight\":\"fixed\",\"framerSupportedLayoutWidth\":\"fixed\",\"framerContractVersion\":\"1\"}},\"IconProps\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Phosphor.map", "// Generated by Framer (89417f6)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,useActiveVariantCallback,useLocaleInfo,useOnVariantChange,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";const cycleOrder=[\"iaqYK6kGi\",\"fR0shIfnA\",\"S95nMnUvn\",\"zfmSKn7ai\",\"SSwTwgRhj\"];const variantClassNames={fR0shIfnA:\"framer-v-sr3y0b\",iaqYK6kGi:\"framer-v-11wf9lt\",S95nMnUvn:\"framer-v-d5dm0t\",SSwTwgRhj:\"framer-v-17ntng7\",zfmSKn7ai:\"framer-v-bdf595\"};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 transitions={default:{damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"}};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/ _jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const humanReadableVariantMap={\"Variant 1\":\"iaqYK6kGi\",\"Variant 2\":\"fR0shIfnA\",\"Variant 3\":\"S95nMnUvn\",\"Variant 4\":\"zfmSKn7ai\",\"Variant 5\":\"SSwTwgRhj\"};const getProps=({height,id,width,...props})=>{var _variant,ref;return{...props,variant:(ref=(_variant=humanReadableVariantMap[props.variant])!==null&&_variant!==void 0?_variant:props.variant)!==null&&ref!==void 0?ref:\"iaqYK6kGi\"};};const createLayoutDependency=(props,variants)=>variants.join(\"-\")+props.layoutDependency;const Component=/*#__PURE__*/ React.forwardRef(function(props,ref){const{activeLocale}=useLocaleInfo();const{style,className,layoutId,variant,...restProps}=getProps(props);const{baseVariant,classNames,gestureVariant,setGestureState,setVariant,transition,variants}=useVariantState({cycleOrder,defaultVariant:\"iaqYK6kGi\",transitions,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onAppearmp0x9x=activeVariantCallback(async(...args)=>{await delay(()=>setVariant(\"fR0shIfnA\"),500);});const onAppearzzzdal=activeVariantCallback(async(...args)=>{await delay(()=>setVariant(\"S95nMnUvn\"),200);});const onAppear1bu6eta=activeVariantCallback(async(...args)=>{await delay(()=>setVariant(\"zfmSKn7ai\"),200);});const onAppear1stn7f8=activeVariantCallback(async(...args)=>{await delay(()=>setVariant(\"SSwTwgRhj\"),200);});const onAppearbhte4d=activeVariantCallback(async(...args)=>{await delay(()=>setVariant(\"iaqYK6kGi\"),200);});useOnVariantChange(baseVariant,{default:onAppearmp0x9x,fR0shIfnA:onAppearzzzdal,S95nMnUvn:onAppear1bu6eta,SSwTwgRhj:onAppearbhte4d,zfmSKn7ai:onAppear1stn7f8});const defaultLayoutId=React.useId();return /*#__PURE__*/ _jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/ _jsx(motion.div,{initial:variant,animate:variants,onHoverStart:()=>setGestureState({isHovered:true}),onHoverEnd:()=>setGestureState({isHovered:false}),onTapStart:()=>setGestureState({isPressed:true}),onTap:()=>setGestureState({isPressed:false}),onTapCancel:()=>setGestureState({isPressed:false}),className:cx(\"framer-Hc9V4\",classNames),style:{display:\"contents\"},children:/*#__PURE__*/ _jsx(Transition,{value:transition,children:/*#__PURE__*/ _jsxs(motion.div,{...restProps,className:cx(\"framer-11wf9lt\",className),\"data-framer-name\":\"Variant 1\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"iaqYK6kGi\",ref:ref,style:{...style},...addPropertyOverrides({fR0shIfnA:{\"data-framer-name\":\"Variant 2\"},S95nMnUvn:{\"data-framer-name\":\"Variant 3\"},SSwTwgRhj:{\"data-framer-name\":\"Variant 5\"},zfmSKn7ai:{\"data-framer-name\":\"Variant 4\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/ _jsx(motion.div,{className:\"framer-100sdsm\",layoutDependency:layoutDependency,layoutId:\"WmhAKxQlT\",style:{backgroundColor:\"rgba(255, 255, 255, 0.5)\",borderBottomLeftRadius:10,borderBottomRightRadius:10,borderTopLeftRadius:10,borderTopRightRadius:10},variants:{fR0shIfnA:{backgroundColor:\"rgb(255, 255, 255)\"}}}),/*#__PURE__*/ _jsx(motion.div,{className:\"framer-za6ve1\",layoutDependency:layoutDependency,layoutId:\"I8wFJlXG5\",style:{backgroundColor:\"rgba(255, 255, 255, 0.5)\",borderBottomLeftRadius:10,borderBottomRightRadius:10,borderTopLeftRadius:10,borderTopRightRadius:10},variants:{S95nMnUvn:{backgroundColor:\"rgb(255, 255, 255)\"}}}),/*#__PURE__*/ _jsx(motion.div,{className:\"framer-133p5bv\",layoutDependency:layoutDependency,layoutId:\"J3pYFMB5s\",style:{backgroundColor:\"rgba(255, 255, 255, 0.5)\",borderBottomLeftRadius:10,borderBottomRightRadius:10,borderTopLeftRadius:10,borderTopRightRadius:10},variants:{zfmSKn7ai:{backgroundColor:\"rgb(255, 255, 255)\"}}}),/*#__PURE__*/ _jsx(motion.div,{className:\"framer-xfy93e\",layoutDependency:layoutDependency,layoutId:\"QMA4R_MBq\",style:{backgroundColor:\"rgba(255, 255, 255, 0.5)\",borderBottomLeftRadius:10,borderBottomRightRadius:10,borderTopLeftRadius:10,borderTopRightRadius:10},variants:{SSwTwgRhj:{backgroundColor:\"rgb(255, 255, 255)\"}}})]})})})});});const css=['.framer-Hc9V4 [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; }',\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-Hc9V4 .framer-e1lbp2 { display: block; }\",\".framer-Hc9V4 .framer-11wf9lt { align-content: flex-end; align-items: flex-end; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 8px; height: 8px; justify-content: center; overflow: visible; padding: 0px 0px 0px 0px; position: relative; width: min-content; }\",\".framer-Hc9V4 .framer-100sdsm, .framer-Hc9V4 .framer-za6ve1, .framer-Hc9V4 .framer-133p5bv, .framer-Hc9V4 .framer-xfy93e { flex: none; height: 8px; overflow: hidden; position: relative; width: 8px; will-change: var(--framer-will-change-override, transform); }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-Hc9V4 .framer-11wf9lt { gap: 0px; } .framer-Hc9V4 .framer-11wf9lt > * { margin: 0px; margin-left: calc(8px / 2); margin-right: calc(8px / 2); } .framer-Hc9V4 .framer-11wf9lt > :first-child { margin-left: 0px; } .framer-Hc9V4 .framer-11wf9lt > :last-child { margin-right: 0px; } }\",\".framer-Hc9V4.framer-v-sr3y0b .framer-100sdsm, .framer-Hc9V4.framer-v-d5dm0t .framer-za6ve1, .framer-Hc9V4.framer-v-bdf595 .framer-133p5bv, .framer-Hc9V4.framer-v-17ntng7 .framer-xfy93e { height: 30px; }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 8\n * @framerIntrinsicWidth 56\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"auto\",\"fixed\"]},\"fR0shIfnA\":{\"layout\":[\"auto\",\"fixed\"]},\"S95nMnUvn\":{\"layout\":[\"auto\",\"fixed\"]},\"zfmSKn7ai\":{\"layout\":[\"auto\",\"fixed\"]},\"SSwTwgRhj\":{\"layout\":[\"auto\",\"fixed\"]}}}\n * @framerImmutableVariables false\n */ const FramerBYidMx2OK=withCSS(Component,css,\"framer-Hc9V4\");export default FramerBYidMx2OK;FramerBYidMx2OK.displayName=\"Loading\";FramerBYidMx2OK.defaultProps={height:8,width:56};addPropertyControls(FramerBYidMx2OK,{variant:{options:[\"iaqYK6kGi\",\"fR0shIfnA\",\"S95nMnUvn\",\"zfmSKn7ai\",\"SSwTwgRhj\"],optionTitles:[\"Variant 1\",\"Variant 2\",\"Variant 3\",\"Variant 4\",\"Variant 5\"],title:\"Variant\",type:ControlType.Enum}});addFonts(FramerBYidMx2OK,[]);\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerBYidMx2OK\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\",\"framerIntrinsicHeight\":\"8\",\"framerImmutableVariables\":\"false\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"fixed\\\"]},\\\"fR0shIfnA\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"fixed\\\"]},\\\"S95nMnUvn\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"fixed\\\"]},\\\"zfmSKn7ai\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"fixed\\\"]},\\\"SSwTwgRhj\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"fixed\\\"]}}}\",\"framerIntrinsicWidth\":\"56\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./BYidMx2OK.map", "import{jsx as _jsx}from\"react/jsx-runtime\";import{useCallback}from\"react\";import{addPropertyControls,ControlType}from\"framer\";import{motion}from\"framer-motion\";import{defaultEvents,usePadding,useRadius,useFontControls}from\"https://framer.com/m/framer/default-utils.js@^0.45.0\";/**\n * CLIPBOARD\n *\n * @framerIntrinsicWidth 90\n * @framerIntrinsicHeight 50\n *\n * @framerSupportedLayoutWidth any\n * @framerSupportedLayoutHeight any\n */ export default function Clipboard(props){const{label,content,fill,color,style,onClick,font,hoverOptions,...rest}=props;const deprecatedFont=useFontControls({fontWeight:500,...rest});const borderRadius=useRadius(props);const paddingValue=usePadding(props);const handleClick=useCallback(()=>{var ref;(ref=navigator.clipboard)===null||ref===void 0?void 0:ref.writeText(content);onClick===null||onClick===void 0?void 0:onClick();},[onClick,content]);return /*#__PURE__*/ _jsx(motion.button,{style:{border:\"none\",outline:\"none\",resize:\"none\",width:\"max-content\",wordBreak:\"break-word\",overflowWrap:\"break-word\",WebkitTapHighlightColor:\"rgba(0, 0, 0, 0)\",letterSpacing:\"-0.2px\",display:\"flex\",justifyContent:\"center\",alignItems:\"center\",background:fill,borderRadius,cursor:\"pointer\",padding:paddingValue,color,...deprecatedFont,...font,...style},onClick:handleClick,...rest,whileHover:hoverOptions,transition:hoverOptions===null||hoverOptions===void 0?void 0:hoverOptions.transition,children:label});};addPropertyControls(Clipboard,{content:{type:ControlType.String,title:\"Content\",displayTextArea:true,description:\"When clicked, this content will be copied to the clipboard.\"},label:{type:ControlType.String,title:\"Label\",defaultValue:\"Copy to Clipboard\"},fill:{type:ControlType.Color,title:\"Fill\",defaultValue:\"#06F\"},color:{type:ControlType.Color,title:\"Text\",defaultValue:\"#fff\"},font:{// @ts-ignore - Internal\ntype:ControlType.Font,controls:\"extended\",defaultValue:{fontSize:16}},hoverOptions:{type:ControlType.Object,title:\"Hover\",buttonTitle:\"Effect\",optional:true,controls:{scale:{type:ControlType.Number,title:\"Scale\",min:0,max:10,displayStepper:true,step:.01,defaultValue:1.1},backgroundColor:{type:ControlType.Color,title:\"Fill\",defaultValue:\"#0088FF\",optional:true},color:{type:ControlType.Color,title:\"Color\",defaultValue:\"#FFF\",optional:true},transition:{type:ControlType.Transition,title:\"Transition\",defaultValue:{type:\"spring\",stiffness:400,damping:30}}}},padding:{type:ControlType.FusedNumber,toggleKey:\"paddingPerSide\",toggleTitles:[\"Padding\",\"Padding per side\"],valueKeys:[\"paddingTop\",\"paddingRight\",\"paddingBottom\",\"paddingLeft\",],valueLabels:[\"T\",\"R\",\"B\",\"L\"],min:0,title:\"Padding\",defaultValue:10},borderRadius:{title:\"Radius\",type:ControlType.FusedNumber,toggleKey:\"isMixedBorderRadius\",toggleTitles:[\"Radius\",\"Radius per corner\"],valueKeys:[\"topLeftRadius\",\"topRightRadius\",\"bottomRightRadius\",\"bottomLeftRadius\",],valueLabels:[\"TL\",\"TR\",\"BR\",\"BL\"],min:0,defaultValue:50},...defaultEvents});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"Clipboard\",\"slots\":[],\"annotations\":{\"framerSupportedLayoutHeight\":\"any\",\"framerSupportedLayoutWidth\":\"any\",\"framerIntrinsicHeight\":\"50\",\"framerContractVersion\":\"1\",\"framerIntrinsicWidth\":\"90\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Clipboard.map", "import{fontStore}from\"framer\";fontStore.loadWebFontsFromSelectors([\"FS;General Sans-medium\"]);export const fonts=[{family:\"General Sans\",moduleAsset:{localModuleIdentifier:\"local-module:css/TRoy3Agwc:default\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/3RZHWSNONLLWJK3RLPEKUZOMM56GO4LJ/BPDRY7AHVI3MCDXXVXTQQ76H3UXA63S3/SB2OEB6IKZPRR6JT4GFJ2TFT6HBB6AZN.woff2\"},style:\"normal\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/3RZHWSNONLLWJK3RLPEKUZOMM56GO4LJ/BPDRY7AHVI3MCDXXVXTQQ76H3UXA63S3/SB2OEB6IKZPRR6JT4GFJ2TFT6HBB6AZN.woff2\",weight:\"500\"}];export const css=['.framer-7iBeF .framer-styles-preset-1f3og6z:not(.rich-text-wrapper), .framer-7iBeF .framer-styles-preset-1f3og6z.rich-text-wrapper p { --framer-font-family: \"General Sans\", sans-serif; --framer-font-size: 16px; --framer-font-style: normal; --framer-font-weight: 500; --framer-letter-spacing: 0px; --framer-line-height: 150%; --framer-paragraph-spacing: 20px; --framer-text-alignment: start; --framer-text-color: var(--token-217db8f8-1054-47de-ab16-d7395cb29a86, #2a2b2b); --framer-text-decoration: none; --framer-text-transform: none; }','@media (max-width: 809px) and (min-width: 0px) { .framer-7iBeF .framer-styles-preset-1f3og6z:not(.rich-text-wrapper), .framer-7iBeF .framer-styles-preset-1f3og6z.rich-text-wrapper p { --framer-font-family: \"General Sans\", sans-serif; --framer-font-size: 14px; --framer-font-style: normal; --framer-font-weight: 500; --framer-letter-spacing: 0px; --framer-line-height: 150%; --framer-paragraph-spacing: 20px; --framer-text-alignment: start; --framer-text-color: var(--token-217db8f8-1054-47de-ab16-d7395cb29a86, #2a2b2b); --framer-text-decoration: none; --framer-text-transform: none; } }'];export const className=\"framer-7iBeF\";\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 (a3b61f5)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,getFontsFromSharedStyle,Link,RichText,SVG,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useOnVariantChange,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import Clipboard from\"https://framerusercontent.com/modules/Hj20QU19p80mpYsvesiZ/RfHh9MIwqlgi04HKZ3Qo/Clipboard.js\";import*as sharedStyle from\"https://framerusercontent.com/modules/1XgIniNH7Hu7oRnevhiJ/znBCVfyZMezic7O7nyzk/TRoy3Agwc.js\";const ClipboardFonts=getFonts(Clipboard);const cycleOrder=[\"ykLlM3Nep\",\"rPFPcT7SQ\"];const serializationHash=\"framer-McaNs\";const variantClassNames={rPFPcT7SQ:\"framer-v-1601ip8\",ykLlM3Nep:\"framer-v-1kp2muk\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const transition2={damping:60,delay:0,mass:1,stiffness:300,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={Clicked:\"rPFPcT7SQ\",Default:\"ykLlM3Nep\"};const getProps=({content,height,id,link,tap,width,...props})=>{var _humanReadableVariantMap_props_variant,_ref,_ref1;return{...props,MtMXwCJK4:tap!==null&&tap!==void 0?tap:props.MtMXwCJK4,ryCon9jsT:link!==null&&link!==void 0?link:props.ryCon9jsT,variant:(_ref=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref!==void 0?_ref:\"ykLlM3Nep\",XLA8dU_7F:(_ref1=content!==null&&content!==void 0?content:props.XLA8dU_7F)!==null&&_ref1!==void 0?_ref1:\"you@example.com\"};};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,ryCon9jsT,XLA8dU_7F,MtMXwCJK4,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"ykLlM3Nep\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onTapk0s61l=activeVariantCallback(async(...args)=>{setGestureState({isPressed:false});if(MtMXwCJK4){const res=await MtMXwCJK4(...args);if(res===false)return false;}setVariant(\"rPFPcT7SQ\");});const onAppear1vhdrck=activeVariantCallback(async(...args)=>{await delay(()=>setVariant(\"ykLlM3Nep\"),2e3);});useOnVariantChange(baseVariant,{rPFPcT7SQ:onAppear1vhdrck});const ref1=React.useRef(null);const defaultLayoutId=React.useId();const sharedStyleClassNames=[sharedStyle.className];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,...addPropertyOverrides({rPFPcT7SQ:{value:transition2}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(Link,{href:ryCon9jsT,nodeId:\"ykLlM3Nep\",openInNewTab:true,children:/*#__PURE__*/_jsxs(motion.a,{...restProps,...gestureHandlers,className:`${cx(serializationHash,...sharedStyleClassNames,\"framer-1kp2muk\",className,classNames)} framer-1qlg6t4`,\"data-framer-name\":\"Default\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"ykLlM3Nep\",onTap:onTapk0s61l,ref:ref!==null&&ref!==void 0?ref:ref1,style:{...style},...addPropertyOverrides({rPFPcT7SQ:{\"data-framer-name\":\"Clicked\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-duoajf-container\",layoutDependency:layoutDependency,layoutId:\"dbNAglD_q-container\",style:{opacity:0},children:/*#__PURE__*/_jsx(Clipboard,{borderRadius:50,bottomLeftRadius:50,bottomRightRadius:50,color:\"rgb(255, 255, 255)\",content:XLA8dU_7F,fill:\"rgb(0, 102, 255)\",font:{},height:\"100%\",id:\"dbNAglD_q\",isMixedBorderRadius:false,label:\"\",layoutId:\"dbNAglD_q\",padding:10,paddingBottom:10,paddingLeft:10,paddingPerSide:false,paddingRight:10,paddingTop:10,style:{height:\"100%\",width:\"100%\"},topLeftRadius:50,topRightRadius:50,width:\"100%\"})})}),/*#__PURE__*/_jsxs(motion.button,{className:\"framer-qddzz0\",\"data-border\":true,\"data-framer-name\":\"Button\",\"data-reset\":\"button\",layoutDependency:layoutDependency,layoutId:\"O1P9XrUqT\",style:{\"--border-bottom-width\":\"0.5px\",\"--border-color\":\"var(--token-e7401411-8529-496d-bafd-88f52c3fc7d6, rgb(227, 229, 232))\",\"--border-left-width\":\"0.5px\",\"--border-right-width\":\"0.5px\",\"--border-style\":\"solid\",\"--border-top-width\":\"0.5px\",borderBottomLeftRadius:10,borderBottomRightRadius:10,borderTopLeftRadius:10,borderTopRightRadius:10},children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-30jvy7\",\"data-framer-name\":\"copy-icon\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"i1QWaVQKc\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 24 24\"><path d=\"M 3.25 9 C 3.25 7.475 3.856 6.012 4.934 4.934 C 6.012 3.856 7.475 3.25 9 3.25 L 16.013 3.25 C 16.212 3.25 16.403 3.329 16.543 3.47 C 16.684 3.61 16.763 3.801 16.763 4 C 16.763 4.199 16.684 4.39 16.543 4.53 C 16.403 4.671 16.212 4.75 16.013 4.75 L 9 4.75 C 7.873 4.75 6.792 5.198 5.995 5.995 C 5.198 6.792 4.75 7.873 4.75 9 L 4.75 16.107 C 4.75 16.306 4.671 16.497 4.53 16.637 C 4.39 16.778 4.199 16.857 4 16.857 C 3.801 16.857 3.61 16.778 3.47 16.637 C 3.329 16.497 3.25 16.306 3.25 16.107 Z\" fill=\"rgba(42,43,43,0.6)\"></path><path d=\"M 18.403 6.793 C 15.144 6.431 11.856 6.431 8.597 6.793 C 8.146 6.843 7.725 7.044 7.403 7.364 C 7.081 7.683 6.877 8.102 6.823 8.553 C 6.439 11.839 6.439 15.16 6.823 18.446 C 6.877 18.896 7.081 19.316 7.403 19.635 C 7.725 19.955 8.146 20.156 8.597 20.206 C 11.838 20.569 15.162 20.569 18.403 20.206 C 18.854 20.156 19.275 19.955 19.597 19.635 C 19.919 19.316 20.123 18.896 20.177 18.446 C 20.561 15.16 20.561 11.839 20.177 8.553 C 20.123 8.102 19.919 7.683 19.596 7.364 C 19.274 7.044 18.854 6.843 18.403 6.793 Z\" fill=\"rgba(42,43,43,0.6)\"></path></svg>',svgContentId:10533231731,withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1f3og6z\",\"data-styles-preset\":\"TRoy3Agwc\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgba(42, 43, 43, 0.8))\"},children:\"Copy Link\"})}),className:\"framer-p15ofc\",\"data-framer-name\":\"Label\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"tIJgbxn9b\",style:{\"--extracted-r6o4lv\":\"rgba(42, 43, 43, 0.8)\"},variants:{rPFPcT7SQ:{\"--extracted-r6o4lv\":\"var(--token-217db8f8-1054-47de-ab16-d7395cb29a86, rgb(42, 43, 43))\"}},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({rPFPcT7SQ:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1f3og6z\",\"data-styles-preset\":\"TRoy3Agwc\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-217db8f8-1054-47de-ab16-d7395cb29a86, rgb(42, 43, 43)))\"},children:\"Copied!\"})})}},baseVariant,gestureVariant)})]})]})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-McaNs.framer-1qlg6t4, .framer-McaNs .framer-1qlg6t4 { display: block; }\",\".framer-McaNs.framer-1kp2muk { align-content: center; align-items: center; cursor: pointer; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; text-decoration: none; width: min-content; }\",\".framer-McaNs .framer-duoajf-container { flex: none; height: 100%; left: calc(50.00000000000002% - 159px / 2); position: absolute; top: calc(48.57142857142859% - 100% / 2); width: 159px; z-index: 4; }\",\".framer-McaNs .framer-qddzz0 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 5px; height: min-content; justify-content: center; min-width: 100px; padding: 6px 10px 6px 10px; position: relative; width: min-content; }\",\".framer-McaNs .framer-30jvy7 { flex: none; height: 24px; position: relative; width: 24px; }\",\".framer-McaNs .framer-p15ofc { flex: none; height: auto; overflow: visible; position: relative; white-space: pre; width: auto; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-McaNs.framer-1kp2muk, .framer-McaNs .framer-qddzz0 { gap: 0px; } .framer-McaNs.framer-1kp2muk > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-McaNs.framer-1kp2muk > :first-child, .framer-McaNs .framer-qddzz0 > :first-child { margin-left: 0px; } .framer-McaNs.framer-1kp2muk > :last-child, .framer-McaNs .framer-qddzz0 > :last-child { margin-right: 0px; } .framer-McaNs .framer-qddzz0 > * { margin: 0px; margin-left: calc(5px / 2); margin-right: calc(5px / 2); } }\",\".framer-McaNs.framer-v-1601ip8 .framer-qddzz0 { flex: 1 0 0px; width: 1px; }\",...sharedStyle.css,'.framer-McaNs[data-border=\"true\"]::after, .framer-McaNs [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 36\n * @framerIntrinsicWidth 122\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"auto\",\"auto\"]},\"rPFPcT7SQ\":{\"layout\":[\"auto\",\"auto\"]}}}\n * @framerVariables {\"ryCon9jsT\":\"link\",\"XLA8dU_7F\":\"content\",\"MtMXwCJK4\":\"tap\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerUVWKCWT18=withCSS(Component,css,\"framer-McaNs\");export default FramerUVWKCWT18;FramerUVWKCWT18.displayName=\"Button / Clipboard\";FramerUVWKCWT18.defaultProps={height:36,width:122};addPropertyControls(FramerUVWKCWT18,{variant:{options:[\"ykLlM3Nep\",\"rPFPcT7SQ\"],optionTitles:[\"Default\",\"Clicked\"],title:\"Variant\",type:ControlType.Enum},ryCon9jsT:{title:\"Link\",type:ControlType.Link},XLA8dU_7F:{defaultValue:\"you@example.com\",displayTextArea:true,title:\"Content\",type:ControlType.String},MtMXwCJK4:{title:\"Tap\",type:ControlType.EventHandler}});addFonts(FramerUVWKCWT18,[{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\"}]},...ClipboardFonts,...getFontsFromSharedStyle(sharedStyle.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerUVWKCWT18\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\",\"framerDisplayContentsDiv\":\"false\",\"framerImmutableVariables\":\"true\",\"framerIntrinsicHeight\":\"36\",\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicWidth\":\"122\",\"framerVariables\":\"{\\\"ryCon9jsT\\\":\\\"link\\\",\\\"XLA8dU_7F\\\":\\\"content\\\",\\\"MtMXwCJK4\\\":\\\"tap\\\"}\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"rPFPcT7SQ\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]}}}\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./UVWKCWT18.map", "export const props={lzwXm95_Y:{borderRadius:0,bottomLeftRadius:0,bottomRightRadius:0,isMixedBorderRadius:false,isRed:true,topLeftRadius:0,topRightRadius:0},pUDGfh4mF:{borderRadius:15,bottomLeftRadius:15,bottomRightRadius:15,darkTheme:\"framerDark\",font:{fontFamily:'\"Fragment Mono\", monospace',fontSize:\"14px\",fontStyle:\"normal\",fontWeight:400,letterSpacing:\"0em\",lineHeight:\"1.5em\"},isMixedBorderRadius:false,lightTheme:\"framerLight\",padding:30,paddingBottom:30,paddingLeft:30,paddingPerSide:false,paddingRight:30,paddingTop:30,theme:\"framerDark\",themeMode:\"Static\",topLeftRadius:15,topRightRadius:15}};export const fonts={pUDGfh4mF:[{explicitInter:true,fonts:[{family:\"Fragment Mono\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/fragmentmono/v4/4iCr6K5wfMRRjxp0DA6-2CLnN4FNh4UI_1U.woff2\",weight:\"400\"}]}]};\nexport const __FramerMetadata__ = {\"exports\":{\"props\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"fonts\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "import{fontStore}from\"framer\";fontStore.loadWebFontsFromSelectors([\"FS;General Sans-medium\"]);export const fonts=[{family:\"General Sans\",moduleAsset:{localModuleIdentifier:\"local-module:css/Bqb4Pf7eO:default\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/3RZHWSNONLLWJK3RLPEKUZOMM56GO4LJ/BPDRY7AHVI3MCDXXVXTQQ76H3UXA63S3/SB2OEB6IKZPRR6JT4GFJ2TFT6HBB6AZN.woff2\"},style:\"normal\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/3RZHWSNONLLWJK3RLPEKUZOMM56GO4LJ/BPDRY7AHVI3MCDXXVXTQQ76H3UXA63S3/SB2OEB6IKZPRR6JT4GFJ2TFT6HBB6AZN.woff2\",weight:\"500\"}];export const css=['.framer-iJw1p .framer-styles-preset-129ykke:not(.rich-text-wrapper), .framer-iJw1p .framer-styles-preset-129ykke.rich-text-wrapper h4 { --framer-font-family: \"General Sans\", sans-serif; --framer-font-size: 36px; --framer-font-style: normal; --framer-font-weight: 500; --framer-letter-spacing: 0px; --framer-line-height: 120%; --framer-paragraph-spacing: 40px; --framer-text-alignment: start; --framer-text-color: var(--token-217db8f8-1054-47de-ab16-d7395cb29a86, #2a2b2b); --framer-text-decoration: none; --framer-text-transform: none; }','@media (max-width: 1279px) and (min-width: 810px) { .framer-iJw1p .framer-styles-preset-129ykke:not(.rich-text-wrapper), .framer-iJw1p .framer-styles-preset-129ykke.rich-text-wrapper h4 { --framer-font-family: \"General Sans\", sans-serif; --framer-font-size: 24px; --framer-font-style: normal; --framer-font-weight: 500; --framer-letter-spacing: 0px; --framer-line-height: 120%; --framer-paragraph-spacing: 40px; --framer-text-alignment: start; --framer-text-color: var(--token-217db8f8-1054-47de-ab16-d7395cb29a86, #2a2b2b); --framer-text-decoration: none; --framer-text-transform: none; } }','@media (max-width: 809px) and (min-width: 0px) { .framer-iJw1p .framer-styles-preset-129ykke:not(.rich-text-wrapper), .framer-iJw1p .framer-styles-preset-129ykke.rich-text-wrapper h4 { --framer-font-family: \"General Sans\", sans-serif; --framer-font-size: 18px; --framer-font-style: normal; --framer-font-weight: 500; --framer-letter-spacing: 0px; --framer-line-height: 120%; --framer-paragraph-spacing: 40px; --framer-text-alignment: start; --framer-text-color: var(--token-217db8f8-1054-47de-ab16-d7395cb29a86, #2a2b2b); --framer-text-decoration: none; --framer-text-transform: none; } }'];export const className=\"framer-iJw1p\";\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\"}}}", "import{fontStore}from\"framer\";fontStore.loadFonts([\"GF;Fragment Mono-regular\"]);export const fonts=[{family:\"Fragment Mono\",style:\"normal\",url:\"https://fonts.gstatic.com/s/fragmentmono/v4/4iCr6K5wfMRRjxp0DA6-2CLnN4FNh4UI_1U.woff2\",weight:\"400\"}];export const css=['.framer-4NzYF .framer-styles-preset-vqapym { --framer-code-font-family: \"Fragment Mono\", monospace; --framer-code-font-style: normal; --framer-code-font-weight: 400; --framer-code-text-color: #333; --framer-font-size-scale: 1; background-color: rgba(0, 0, 0, 0.1); border-bottom-left-radius: 6px; border-bottom-right-radius: 6px; border-top-left-radius: 6px; border-top-right-radius: 6px; padding-bottom: 0.1em; padding-left: 0.2em; padding-right: 0.2em; padding-top: 0.1em; }'];export const className=\"framer-4NzYF\";\nexport const __FramerMetadata__ = {\"exports\":{\"className\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"css\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"fonts\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "import{fontStore}from\"framer\";fontStore.loadWebFontsFromSelectors([\"FS;General Sans-medium\"]);export const fonts=[{family:\"General Sans\",moduleAsset:{localModuleIdentifier:\"local-module:css/WJPPJsoSq:default\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/3RZHWSNONLLWJK3RLPEKUZOMM56GO4LJ/BPDRY7AHVI3MCDXXVXTQQ76H3UXA63S3/SB2OEB6IKZPRR6JT4GFJ2TFT6HBB6AZN.woff2\"},style:\"normal\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/3RZHWSNONLLWJK3RLPEKUZOMM56GO4LJ/BPDRY7AHVI3MCDXXVXTQQ76H3UXA63S3/SB2OEB6IKZPRR6JT4GFJ2TFT6HBB6AZN.woff2\",weight:\"500\"}];export const css=['.framer-CCziB .framer-styles-preset-10hgsho:not(.rich-text-wrapper), .framer-CCziB .framer-styles-preset-10hgsho.rich-text-wrapper h6 { --framer-font-family: \"General Sans\", sans-serif; --framer-font-size: 24px; --framer-font-style: normal; --framer-font-weight: 500; --framer-letter-spacing: 0px; --framer-line-height: 120%; --framer-paragraph-spacing: 40px; --framer-text-alignment: start; --framer-text-color: var(--token-217db8f8-1054-47de-ab16-d7395cb29a86, #2a2b2b); --framer-text-decoration: none; --framer-text-transform: none; }'];export const className=\"framer-CCziB\";\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 (a3b61f5)\nvar _componentPresets_fonts,_componentPresets_fonts1,_componentPresets_fonts2,_componentPresets_fonts3;import{jsx as _jsx,jsxs as _jsxs,Fragment as _Fragment}from\"react/jsx-runtime\";import{addFonts,ChildrenCanSuspend,ComponentPresetsProvider,ComponentViewportProvider,Container,cx,GeneratedComponentContext,getFonts,getFontsFromComponentPreset,getFontsFromSharedStyle,getLoadingLazyAtYPosition,getWhereExpressionFromPathVariables,Image,Link,NotFoundError,PathVariablesContext,PropertyOverrides,ResolveLinks,RichText,SVG,useActiveVariantCallback,useCurrentPathVariables,useCustomCursors,useHydratedBreakpointVariants,useLocaleCode,useLocaleInfo,useOverlayState,useQueryData,useRouter,withCSS,withOptimizedAppearEffect}from\"framer\";import{AnimatePresence,LayoutGroup,motion}from\"framer-motion\";import*as React from\"react\";import*as ReactDOM from\"react-dom\";import Embed1 from\"https://framerusercontent.com/modules/o1PI5S8YtkA5bP5g4dFz/9zLIz4fn80IR9zpOx18Q/Embed.js\";import Embed from\"https://framerusercontent.com/modules/o1PI5S8YtkA5bP5g4dFz/Mn69eMnaMcqJ65TjxwR1/Embed.js\";import{Icon as Phosphor}from\"https://framerusercontent.com/modules/tYScH7LTqUtz5KUaUAYP/CAjjxbTJBxHwH1MagCef/Phosphor.js\";import Loading from\"https://framerusercontent.com/modules/vikExTCUDLsHfAVeUryO/tQ4DQ1OrZErOFjGO01II/BYidMx2OK.js\";import Slideshow from\"https://framerusercontent.com/modules/zvkTOpMSuRzRhLzZZIwG/V6UPjHLBAvBWqyNKvY6M/SlideShow.js\";import BlogCard from\"#framer/local/canvasComponent/HoqRnGrFT/HoqRnGrFT.js\";import Menu from\"#framer/local/canvasComponent/Sadhwxx25/Sadhwxx25.js\";import ButtonClipboard from\"#framer/local/canvasComponent/UVWKCWT18/UVWKCWT18.js\";import Footer from\"#framer/local/canvasComponent/w353A_1oN/w353A_1oN.js\";import Blog from\"#framer/local/collection/iKMqEOfxs/iKMqEOfxs.js\";import*as componentPresets from\"#framer/local/componentPresets/componentPresets/componentPresets.js\";import*as sharedStyle6 from\"#framer/local/css/Bqb4Pf7eO/Bqb4Pf7eO.js\";import*as sharedStyle1 from\"#framer/local/css/gdkUHc_1r/gdkUHc_1r.js\";import*as sharedStyle10 from\"#framer/local/css/GiYb6UKTA/GiYb6UKTA.js\";import*as sharedStyle4 from\"#framer/local/css/hO4rbrA_2/hO4rbrA_2.js\";import*as sharedStyle3 from\"#framer/local/css/jf1Jg1kzZ/jf1Jg1kzZ.js\";import*as sharedStyle2 from\"#framer/local/css/lV3YlvMd3/lV3YlvMd3.js\";import*as sharedStyle12 from\"#framer/local/css/PYtXiftJv/PYtXiftJv.js\";import*as sharedStyle9 from\"#framer/local/css/q2HVp4gZd/q2HVp4gZd.js\";import*as sharedStyle11 from\"#framer/local/css/QP_7AT4sV/QP_7AT4sV.js\";import*as sharedStyle from\"#framer/local/css/SGgpQjqLk/SGgpQjqLk.js\";import*as sharedStyle7 from\"#framer/local/css/Te8O7XLmO/Te8O7XLmO.js\";import*as sharedStyle8 from\"#framer/local/css/WJPPJsoSq/WJPPJsoSq.js\";import*as sharedStyle5 from\"#framer/local/css/Zeunb14kr/Zeunb14kr.js\";import metadataProvider from\"#framer/local/webPageMetadata/MiXg3kcTC/MiXg3kcTC.js\";const MenuFonts=getFonts(Menu);const ButtonClipboardFonts=getFonts(ButtonClipboard);const EmbedFonts=getFonts(Embed);const BlogCardFonts=getFonts(BlogCard);const SlideshowFonts=getFonts(Slideshow);const FooterFonts=getFonts(Footer);const LoadingFonts=getFonts(Loading);const Embed1Fonts=getFonts(Embed1);const PhosphorFonts=getFonts(Phosphor);const MotionDivWithOptimizedAppearEffect=withOptimizedAppearEffect(motion.div);const breakpoints={fKGbYbnEd:\"(min-width: 1920px)\",pEdgemR2t:\"(min-width: 1280px) and (max-width: 1919px)\",y3ZczbyTo:\"(max-width: 809px)\",yRbBSMZd5:\"(min-width: 810px) and (max-width: 1279px)\"};const isBrowser=()=>typeof document!==\"undefined\";const serializationHash=\"framer-p6YTq\";const variantClassNames={fKGbYbnEd:\"framer-v-1hyqkz9\",pEdgemR2t:\"framer-v-1uvstgg\",y3ZczbyTo:\"framer-v-1h0kpgo\",yRbBSMZd5:\"framer-v-ywblli\"};const toResponsiveImage=value=>{if(typeof value===\"object\"&&value!==null&&typeof value.src===\"string\"){return value;}return typeof value===\"string\"?{src:value}:undefined;};const toDateString=(value,options={},activeLocale)=>{if(typeof value!==\"string\")return\"\";const date=new Date(value);if(isNaN(date.getTime()))return\"\";const display=options.display?options.display:\"date\";const dateOptions={dateStyle:display!==\"time\"?options.dateStyle:undefined,timeStyle:display===\"date\"?undefined:\"short\",timeZone:\"UTC\"};const fallbackLocale=\"en-US\";const locale=options.locale||activeLocale||fallbackLocale;// We add a try block because an invalid language code results in a crash\ntry{return date.toLocaleString(locale,dateOptions);}catch{return date.toLocaleString(fallbackLocale,dateOptions);}};const prefix=(value,prefix)=>{if(typeof value===\"string\"&&typeof prefix===\"string\"){return prefix+value;}else if(typeof value===\"string\"){return value;}else if(typeof prefix===\"string\"){return prefix;}return\"\";};const QueryData=({query,pageSize,children})=>{const data=useQueryData(query);return children(data);};const transition1={damping:80,delay:2.1,mass:4,stiffness:400,type:\"spring\"};const animation={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition1,x:0,y:0};const animation1={opacity:.001,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:0,y:0};const transition2={damping:30,delay:0,mass:1,stiffness:300,type:\"spring\"};const animation2={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:.5,skewX:0,skewY:0,transformPerspective:1200,transition:transition2,x:0,y:0};const transformTemplate1=(_,t)=>`translate(-50%, -50%) ${t}`;const animation3={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition2,x:0,y:0};const animation4={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:.5,skewX:0,skewY:0,transformPerspective:1200,x:0,y:0};const transition3={delay:0,duration:.3,ease:[.12,.23,.5,1],type:\"tween\"};const animation5={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition3,x:0,y:0};const transition4={delay:0,duration:0,ease:[.44,0,.56,1],type:\"tween\"};const animation6={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition4,x:0,y:0};const animation7={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:0,y:0};const transition5={damping:30,delay:0,mass:1,stiffness:400,type:\"spring\"};const animation8={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1.1,skewX:0,skewY:0,transition:transition5};const Overlay=({children,blockDocumentScrolling,enabled=true})=>{const[visible,setVisible]=useOverlayState({blockDocumentScrolling});return children({hide:()=>setVisible(false),show:()=>setVisible(true),toggle:()=>setVisible(!visible),visible:enabled&&visible});};const metadata=metadataProvider();const humanReadableVariantMap={Desktop:\"pEdgemR2t\",Full:\"fKGbYbnEd\",Phone:\"y3ZczbyTo\",Tablet:\"yRbBSMZd5\"};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:\"pEdgemR2t\"};};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const currentPathVariables=useCurrentPathVariables();const[currentRouteData]=useQueryData({from:{alias:\"MiXg3kcTC\",data:Blog,type:\"Collection\"},select:[{collection:\"MiXg3kcTC\",name:\"K_LedhCd7\",type:\"Identifier\"},{collection:\"MiXg3kcTC\",name:\"TUb171g5k\",type:\"Identifier\"},{collection:\"MiXg3kcTC\",name:\"lywD3LpDE\",type:\"Identifier\"},{collection:\"MiXg3kcTC\",name:\"RwjuDVkDB\",type:\"Identifier\"},{collection:\"MiXg3kcTC\",name:\"iq2hrZ5Qh\",type:\"Identifier\"},{collection:\"MiXg3kcTC\",name:\"N_MXHlLDy\",type:\"Identifier\"},{collection:\"MiXg3kcTC\",name:\"cn8BlDOCB\",type:\"Identifier\"},{collection:\"MiXg3kcTC\",name:\"it1GbyzgH\",type:\"Identifier\"},{collection:\"MiXg3kcTC\",name:\"wVFBV5hVc\",type:\"Identifier\"},{collection:\"MiXg3kcTC\",name:\"TSag_ga1u\",type:\"Identifier\"}],where:getWhereExpressionFromPathVariables(currentPathVariables,\"MiXg3kcTC\")});const getFromCurrentRouteData=key=>{if(!currentRouteData)throw new NotFoundError(`No data matches path variables: ${JSON.stringify(currentPathVariables)}`);return currentRouteData[key];};var _getFromCurrentRouteData,_getFromCurrentRouteData1,_getFromCurrentRouteData2,_getFromCurrentRouteData3,_getFromCurrentRouteData4,_getFromCurrentRouteData5,_getFromCurrentRouteData6;const{style,className,layoutId,variant,iq2hrZ5Qh=(_getFromCurrentRouteData=getFromCurrentRouteData(\"iq2hrZ5Qh\"))!==null&&_getFromCurrentRouteData!==void 0?_getFromCurrentRouteData:\"\",K_LedhCd7=(_getFromCurrentRouteData1=getFromCurrentRouteData(\"K_LedhCd7\"))!==null&&_getFromCurrentRouteData1!==void 0?_getFromCurrentRouteData1:\"\",cn8BlDOCB=getFromCurrentRouteData(\"cn8BlDOCB\"),it1GbyzgH=(_getFromCurrentRouteData2=getFromCurrentRouteData(\"it1GbyzgH\"))!==null&&_getFromCurrentRouteData2!==void 0?_getFromCurrentRouteData2:\"\",lywD3LpDE=getFromCurrentRouteData(\"lywD3LpDE\"),N_MXHlLDy=(_getFromCurrentRouteData3=getFromCurrentRouteData(\"N_MXHlLDy\"))!==null&&_getFromCurrentRouteData3!==void 0?_getFromCurrentRouteData3:\"\",RwjuDVkDB=getFromCurrentRouteData(\"RwjuDVkDB\"),TUb171g5k=(_getFromCurrentRouteData4=getFromCurrentRouteData(\"TUb171g5k\"))!==null&&_getFromCurrentRouteData4!==void 0?_getFromCurrentRouteData4:\"\",wVFBV5hVc=(_getFromCurrentRouteData5=getFromCurrentRouteData(\"wVFBV5hVc\"))!==null&&_getFromCurrentRouteData5!==void 0?_getFromCurrentRouteData5:\"\",TSag_ga1u=(_getFromCurrentRouteData6=getFromCurrentRouteData(\"TSag_ga1u\"))!==null&&_getFromCurrentRouteData6!==void 0?_getFromCurrentRouteData6:\"\",RwjuDVkDBQ1RO39al1,iq2hrZ5QhQ1RO39al1,K_LedhCd7Q1RO39al1,lywD3LpDEQ1RO39al1,N_MXHlLDyQ1RO39al1,TUb171g5kQ1RO39al1,idQ1RO39al1,RwjuDVkDBMYlxxGP52,iq2hrZ5QhMYlxxGP52,K_LedhCd7MYlxxGP52,lywD3LpDEMYlxxGP52,N_MXHlLDyMYlxxGP52,TUb171g5kMYlxxGP52,idMYlxxGP52,RwjuDVkDBZA0sHidTl,iq2hrZ5QhZA0sHidTl,K_LedhCd7ZA0sHidTl,lywD3LpDEZA0sHidTl,N_MXHlLDyZA0sHidTl,TUb171g5kZA0sHidTl,idZA0sHidTl,RwjuDVkDBWsozf4gR4,iq2hrZ5QhWsozf4gR4,K_LedhCd7Wsozf4gR4,lywD3LpDEWsozf4gR4,N_MXHlLDyWsozf4gR4,TUb171g5kWsozf4gR4,idWsozf4gR4,RwjuDVkDBpmHOZfUDv,iq2hrZ5QhpmHOZfUDv,K_LedhCd7pmHOZfUDv,lywD3LpDEpmHOZfUDv,N_MXHlLDypmHOZfUDv,TUb171g5kpmHOZfUDv,idpmHOZfUDv,RwjuDVkDBQzCH298ud,iq2hrZ5QhQzCH298ud,K_LedhCd7QzCH298ud,lywD3LpDEQzCH298ud,N_MXHlLDyQzCH298ud,TUb171g5kQzCH298ud,idQzCH298ud,RwjuDVkDBLI7Dqfsve,iq2hrZ5QhLI7Dqfsve,K_LedhCd7LI7Dqfsve,lywD3LpDELI7Dqfsve,N_MXHlLDyLI7Dqfsve,TUb171g5kLI7Dqfsve,idLI7Dqfsve,RwjuDVkDBkBhC0CaPW,iq2hrZ5QhkBhC0CaPW,K_LedhCd7kBhC0CaPW,lywD3LpDEkBhC0CaPW,N_MXHlLDykBhC0CaPW,TUb171g5kkBhC0CaPW,idkBhC0CaPW,RwjuDVkDBhhgLwkHfi,iq2hrZ5QhhhgLwkHfi,K_LedhCd7hhgLwkHfi,lywD3LpDEhhgLwkHfi,N_MXHlLDyhhgLwkHfi,TUb171g5khhgLwkHfi,idhhgLwkHfi,RwjuDVkDBFH9cAYVRO,iq2hrZ5QhFH9cAYVRO,K_LedhCd7FH9cAYVRO,lywD3LpDEFH9cAYVRO,N_MXHlLDyFH9cAYVRO,TUb171g5kFH9cAYVRO,idFH9cAYVRO,RwjuDVkDBWfJNxcBMb,iq2hrZ5QhWfJNxcBMb,K_LedhCd7WfJNxcBMb,lywD3LpDEWfJNxcBMb,N_MXHlLDyWfJNxcBMb,TUb171g5kWfJNxcBMb,idWfJNxcBMb,RwjuDVkDBJoGU5bf3T,iq2hrZ5QhJoGU5bf3T,K_LedhCd7JoGU5bf3T,lywD3LpDEJoGU5bf3T,N_MXHlLDyJoGU5bf3T,TUb171g5kJoGU5bf3T,idJoGU5bf3T,...restProps}=getProps(props);React.useEffect(()=>{const metadata1=metadataProvider(currentRouteData,activeLocale);if(metadata1.robots){let robotsTag=document.querySelector('meta[name=\"robots\"]');if(robotsTag){robotsTag.setAttribute(\"content\",metadata1.robots);}else{robotsTag=document.createElement(\"meta\");robotsTag.setAttribute(\"name\",\"robots\");robotsTag.setAttribute(\"content\",metadata1.robots);document.head.appendChild(robotsTag);}}},[currentRouteData,activeLocale]);React.useInsertionEffect(()=>{const metadata1=metadataProvider(currentRouteData,activeLocale);document.title=metadata1.title||\"\";if(metadata1.viewport){var _document_querySelector;(_document_querySelector=document.querySelector('meta[name=\"viewport\"]'))===null||_document_querySelector===void 0?void 0:_document_querySelector.setAttribute(\"content\",metadata1.viewport);}const bodyCls=metadata1.bodyClassName;if(bodyCls){const body=document.body;body.classList.forEach(c=>c.startsWith(\"framer-body-\")&&body.classList.remove(c));body.classList.add(`${metadata1.bodyClassName}-framer-p6YTq`);}return()=>{if(bodyCls)document.body.classList.remove(`${metadata1.bodyClassName}-framer-p6YTq`);};},[currentRouteData,activeLocale]);const[baseVariant,hydratedBaseVariant]=useHydratedBreakpointVariants(variant,breakpoints,false);const gestureVariant=undefined;const{activeVariantCallback,delay}=useActiveVariantCallback(undefined);const onTap3bnx0g=({overlay,loadMore})=>activeVariantCallback(async(...args)=>{overlay.toggle();});const onTap1wnntms=({overlay,loadMore})=>activeVariantCallback(async(...args)=>{overlay.hide();});const ref1=React.useRef(null);const activeLocaleCode=useLocaleCode();const textContent=toDateString(lywD3LpDE,{dateStyle:\"medium\",locale:\"\"},activeLocaleCode);const router=useRouter();const isDisplayed=()=>{if(!isBrowser())return true;if(baseVariant===\"y3ZczbyTo\")return false;return true;};const isDisplayed1=()=>{if(!isBrowser())return true;if(baseVariant===\"y3ZczbyTo\")return true;return false;};const defaultLayoutId=React.useId();const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className,sharedStyle2.className,sharedStyle3.className,sharedStyle4.className,sharedStyle5.className,sharedStyle6.className,sharedStyle7.className,sharedStyle8.className,sharedStyle9.className,sharedStyle10.className,sharedStyle11.className,sharedStyle12.className];useCustomCursors({});return /*#__PURE__*/_jsx(GeneratedComponentContext.Provider,{value:{primaryVariantId:\"pEdgemR2t\",variantClassNames},children:/*#__PURE__*/_jsxs(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:[/*#__PURE__*/_jsxs(motion.div,{...restProps,className:cx(serializationHash,...sharedStyleClassNames,\"framer-1uvstgg\",className),ref:ref!==null&&ref!==void 0?ref:ref1,style:{...style},children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1m6xatk\",\"data-framer-name\":\"menu\",name:\"menu\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1541byw-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{y3ZczbyTo:{variant:\"tHcKCNg8l\"}},children:/*#__PURE__*/_jsx(Menu,{height:\"100%\",id:\"E02uK0_4q\",layoutId:\"E02uK0_4q\",variant:\"L_qXBqGCd\",width:\"100%\"})})})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1r6mgu5\",\"data-framer-name\":\"blog-post\",name:\"blog-post\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-11jkb45\",\"data-framer-name\":\"container\",name:\"container\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1ub95dr\",\"data-framer-name\":\"txt-link\",name:\"txt-link\",children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"H1kwXKb1z\"},nodeId:\"LGllYDiw9\",children:/*#__PURE__*/_jsxs(\"a\",{className:\"framer-p2vadq framer-1klcubh\",\"data-framer-name\":\"link\",name:\"link\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-ty91o5\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1j95zsj\",\"data-framer-name\":\"Frame\",layout:\"position\",name:\"Frame\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 24 24\"><path d=\"M 13 5.25 L 6.25 12 L 13 18.75\" fill=\"transparent\" stroke-width=\"2\" stroke=\"var(--token-052eed68-9922-4146-aee5-80442c44559a, rgb(21, 154, 156)) /* {&quot;name&quot;:&quot;Pink1&quot;} */\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-dasharray=\"\"></path></svg>',svgContentId:11744957860,withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1wrxigh\",\"data-framer-name\":\"texts\",name:\"texts\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1qdi2io\",\"data-styles-preset\":\"SGgpQjqLk\",style:{\"--framer-text-color\":\"var(--token-052eed68-9922-4146-aee5-80442c44559a, rgb(21, 154, 156))\"},children:\"Blog\"})}),className:\"framer-9592iy\",\"data-framer-name\":\"Almost before we kne\",fonts:[\"Inter\"],name:\"Almost before we kne\",verticalAlignment:\"top\",withExternalLayout:true})})]})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1rdhp4s\",\"data-framer-name\":\"top-txt\",name:\"top-txt\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-xfglgg\",\"data-framer-name\":\"texts\",name:\"texts\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-kdfewe\",\"data-styles-preset\":\"gdkUHc_1r\",style:{\"--framer-text-color\":\"var(--token-052eed68-9922-4146-aee5-80442c44559a, rgb(237, 169, 180))\"},children:\"Wellness and Self-Care\"})}),className:\"framer-1b3izv\",\"data-framer-name\":\"Category\",fonts:[\"Inter\"],name:\"Category\",text:iq2hrZ5Qh,verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1ffcgil\",\"data-framer-name\":\"headlines\",name:\"headlines\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{className:\"framer-styles-preset-1liw76i\",\"data-styles-preset\":\"lV3YlvMd3\",style:{\"--framer-text-alignment\":\"center\"},children:\"The Power of Setting Smart Goals\"})}),className:\"framer-13ytsny\",\"data-framer-name\":\"Title\",fonts:[\"Inter\"],name:\"Title\",text:K_LedhCd7,verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-b4rmlo\",\"data-framer-name\":\"image\",name:\"image\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-s9kln6\",\"data-framer-name\":\"author-date-time\",name:\"author-date-time\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-15sv093\",\"data-framer-name\":\"author+date\",name:\"author+date\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-zn4ajg\",\"data-framer-name\":\"author\",name:\"author\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{y3ZczbyTo:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(372),sizes:\"32px\",...toResponsiveImage(cn8BlDOCB)}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(436),sizes:\"32px\",...toResponsiveImage(cn8BlDOCB)},className:\"framer-tkhs5d\",\"data-framer-name\":\"Banner\",name:\"Banner\"})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1gilw74\",\"data-framer-name\":\"texts\",name:\"texts\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-j8yksx\",\"data-styles-preset\":\"jf1Jg1kzZ\",style:{\"--framer-text-color\":\"var(--token-2eb07466-8e12-4b9d-b469-66ccd1d98b7d, rgb(127, 128, 128))\"},children:\"Haylie Carder\"})}),className:\"framer-1rf5xot\",\"data-framer-name\":\"Almost before we kne\",fonts:[\"Inter\"],name:\"Almost before we kne\",text:it1GbyzgH,verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1o7pdzo\",\"data-framer-name\":\"texts\",name:\"texts\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-j8yksx\",\"data-styles-preset\":\"jf1Jg1kzZ\",style:{\"--framer-text-color\":\"var(--token-2eb07466-8e12-4b9d-b469-66ccd1d98b7d, rgb(127, 128, 128))\"},children:\"Sep 2, 2023\"})}),className:\"framer-qii42o\",\"data-framer-name\":\"Date\",fonts:[\"Inter\"],name:\"Date\",text:textContent,verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-16h5oc0\",\"data-framer-name\":\"texts\",name:\"texts\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-j8yksx\",\"data-styles-preset\":\"jf1Jg1kzZ\",style:{\"--framer-text-color\":\"var(--token-2eb07466-8e12-4b9d-b469-66ccd1d98b7d, rgb(127, 128, 128))\"},children:\"5 min read\"})}),className:\"framer-eqi0u0\",\"data-framer-name\":\"Time\",fonts:[\"Inter\"],name:\"Time\",text:N_MXHlLDy,verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{y3ZczbyTo:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(468),sizes:\"calc(min(100vw, 1180px) - 60px)\",...toResponsiveImage(RwjuDVkDB)}},yRbBSMZd5:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(492),sizes:\"calc(min(100vw, 1180px) - 120px)\",...toResponsiveImage(RwjuDVkDB)}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(492),sizes:\"calc(min(100vw, 1180px) - 64px)\",...toResponsiveImage(RwjuDVkDB)},className:\"framer-rbqqx4\",\"data-framer-name\":\"Banner\",name:\"Banner\"})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-omce4g\",\"data-framer-name\":\"copy+socialMedia\",name:\"copy+socialMedia\",children:[/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{pathVariables:{TUb171g5k},webPageId:\"MiXg3kcTC\"},implicitPathVariables:undefined},{href:{pathVariables:{TUb171g5k},webPageId:\"MiXg3kcTC\"},implicitPathVariables:undefined},{href:{pathVariables:{TUb171g5k},webPageId:\"MiXg3kcTC\"},implicitPathVariables:undefined},{href:{pathVariables:{TUb171g5k},webPageId:\"MiXg3kcTC\"},implicitPathVariables:undefined}],children:resolvedLinks=>/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-focrng-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{fKGbYbnEd:{ryCon9jsT:resolvedLinks[3]},y3ZczbyTo:{ryCon9jsT:resolvedLinks[2]},yRbBSMZd5:{ryCon9jsT:resolvedLinks[1]}},children:/*#__PURE__*/_jsx(ButtonClipboard,{height:\"100%\",id:\"RPLpM7qQj\",layoutId:\"RPLpM7qQj\",ryCon9jsT:resolvedLinks[0],variant:\"ykLlM3Nep\",width:\"100%\",XLA8dU_7F:prefix(TUb171g5k,\"https://haylie.framer.website/blog/\")})})})})}),/*#__PURE__*/_jsx(Link,{href:\"linkedin.com\",nodeId:\"CkRt_Axgc\",children:/*#__PURE__*/_jsx(\"a\",{className:\"framer-z4ou02 framer-1klcubh\",\"data-border\":true,\"data-framer-name\":\"linkedin\",name:\"linkedin\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-tt20fz\",\"data-framer-name\":\"linkedin\",layout:\"position\",name:\"linkedin\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 24 24\"><path d=\"M 20.82 1.5 L 3.294 1.5 C 2.337 1.5 1.5 2.19 1.5 3.135 L 1.5 20.701 C 1.5 21.652 2.337 22.5 3.294 22.5 L 20.815 22.5 C 21.778 22.5 22.5 21.646 22.5 20.7 L 22.5 3.136 C 22.506 2.19 21.778 1.501 20.82 1.501 Z M 8.01 19.005 L 5 19.005 L 5 9.65 L 8.01 9.65 L 8.01 19.004 Z M 6.61 8.228 L 6.588 8.228 C 5.625 8.228 5.002 7.512 5.002 6.615 C 5.002 5.7 5.642 5 6.626 5 C 7.61 5 8.213 5.695 8.234 6.614 C 8.234 7.511 7.61 8.227 6.609 8.227 Z M 19.005 19.005 L 15.996 19.005 L 15.996 13.89 C 15.996 12.665 15.558 11.827 14.47 11.827 C 13.638 11.827 13.146 12.39 12.927 12.938 C 12.845 13.135 12.823 13.403 12.823 13.677 L 12.823 19.005 L 9.815 19.005 L 9.815 9.65 L 12.823 9.65 L 12.823 10.951 C 13.261 10.328 13.945 9.431 15.536 9.431 C 17.511 9.431 19.005 10.732 19.005 13.539 L 19.005 19.004 Z\" fill=\"rgba(42, 43, 43, 0.6)\"></path></svg>',svgContentId:10775290104,withExternalLayout:true})})}),/*#__PURE__*/_jsx(Link,{href:\"instagram.com\",nodeId:\"Sx4T8JaB2\",openInNewTab:true,children:/*#__PURE__*/_jsx(\"a\",{className:\"framer-hosr6w framer-1klcubh\",\"data-border\":true,\"data-framer-name\":\"ig\",name:\"ig\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-4opwcc\",\"data-framer-name\":\"Social Media\",layout:\"position\",name:\"Social Media\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 24 24\"><g transform=\"translate(2.226 2)\" id=\"ss12180768949_1\"><path d=\"M 10 13.2 C 11.767 13.2 13.2 11.767 13.2 10 C 13.2 8.232 11.767 6.8 10 6.8 C 8.233 6.8 6.8 8.232 6.8 10 C 6.8 11.767 8.233 13.2 10 13.2 Z\" fill=\"rgba(42, 43, 43, 0.6)\"></path><path d=\"M 14.4 0 L 5.6 0 C 4.115 0 2.69 0.59 1.64 1.64 C 0.59 2.69 0 4.115 0 5.6 L 0 14.4 C 0 15.885 0.59 17.31 1.64 18.36 C 2.69 19.41 4.115 20 5.6 20 L 14.4 20 C 15.885 20 17.31 19.41 18.36 18.36 C 19.41 17.31 20 15.885 20 14.4 L 20 5.6 C 20 4.115 19.41 2.69 18.36 1.64 C 17.31 0.59 15.885 0 14.4 0 Z M 10 14.8 C 9.051 14.8 8.123 14.518 7.333 13.991 C 6.544 13.464 5.929 12.714 5.565 11.837 C 5.202 10.96 5.107 9.995 5.292 9.064 C 5.477 8.132 5.935 7.277 6.606 6.606 C 7.277 5.935 8.132 5.477 9.064 5.292 C 9.995 5.107 10.96 5.202 11.837 5.565 C 12.714 5.929 13.464 6.544 13.991 7.333 C 14.518 8.123 14.8 9.051 14.8 10 C 14.8 11.273 14.294 12.494 13.394 13.394 C 12.494 14.294 11.273 14.8 10 14.8 Z M 15.2 6 C 14.963 6 14.731 5.93 14.533 5.798 C 14.336 5.666 14.182 5.478 14.091 5.259 C 14.001 5.04 13.977 4.799 14.023 4.566 C 14.069 4.333 14.184 4.119 14.351 3.951 C 14.519 3.784 14.733 3.669 14.966 3.623 C 15.199 3.577 15.44 3.601 15.659 3.691 C 15.878 3.782 16.066 3.936 16.198 4.133 C 16.33 4.331 16.4 4.563 16.4 4.8 C 16.4 5.118 16.274 5.423 16.049 5.649 C 15.823 5.874 15.518 6 15.2 6 Z\" fill=\"rgba(42, 43, 43, 0.6)\"></path></g></svg>',svgContentId:12180768949,withExternalLayout:true})})}),/*#__PURE__*/_jsx(Link,{href:\"twitter.com\",nodeId:\"liLljrkua\",openInNewTab:true,children:/*#__PURE__*/_jsx(\"a\",{className:\"framer-e1inqq framer-1klcubh\",\"data-border\":true,\"data-framer-name\":\"twitter\",name:\"twitter\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1xie9at\",\"data-framer-name\":\"twitter\",layout:\"position\",name:\"twitter\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 24 24\"><path d=\"M 23.25 5.133 C 22.406 5.5 21.513 5.741 20.6 5.85 C 21.56 5.288 22.282 4.395 22.63 3.338 C 21.722 3.868 20.73 4.241 19.698 4.439 C 18.819 3.518 17.6 2.998 16.327 3 C 13.777 3 11.712 5.034 11.712 7.542 C 11.71 7.891 11.75 8.239 11.831 8.578 C 8.132 8.405 4.678 6.681 2.315 3.83 C 1.905 4.521 1.689 5.31 1.688 6.113 C 1.688 7.687 2.509 9.08 3.75 9.895 C 3.015 9.878 2.294 9.683 1.65 9.328 L 1.65 9.384 C 1.65 11.588 3.245 13.42 5.354 13.838 C 4.957 13.943 4.548 13.997 4.138 13.997 C 3.847 13.997 3.556 13.969 3.27 13.912 C 3.857 15.717 5.564 17.03 7.585 17.067 C 5.641 18.566 3.187 19.241 0.75 18.947 C 2.86 20.294 5.313 21.007 7.816 21 C 16.317 21 20.962 14.077 20.962 8.072 C 20.962 7.875 20.956 7.678 20.947 7.486 C 21.848 6.845 22.628 6.048 23.25 5.133 Z\" fill=\"rgba(42, 43, 43, 0.6)\"></path></svg>',svgContentId:12883948863,withExternalLayout:true})})})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-8r95ut\",\"data-framer-name\":\"Post\",name:\"Post\",children:[/*#__PURE__*/_jsx(ComponentPresetsProvider,{presets:{\"module:NEd4VmDdsxM3StIUbddO/bZxrMUxBPAhoXlARkK9C/YouTube.js:Youtube\":componentPresets.props[\"lzwXm95_Y\"],\"module:pVk4QsoHxASnVtUBp6jr/TbhpORLndv1iOkZzyo83/CodeBlock.js:default\":componentPresets.props[\"pUDGfh4mF\"]},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:wVFBV5hVc,className:\"framer-11bw9mc\",\"data-framer-name\":\"Content\",fonts:[\"Inter\"],name:\"Content\",stylesPresetsClassNames:{a:\"framer-styles-preset-wuc14h\",code:\"framer-styles-preset-vqapym\",h1:\"framer-styles-preset-1liw76i\",h2:\"framer-styles-preset-1h6znvm\",h3:\"framer-styles-preset-1lr1kj\",h4:\"framer-styles-preset-129ykke\",h5:\"framer-styles-preset-3m37wu\",h6:\"framer-styles-preset-10hgsho\",p:\"framer-styles-preset-4gz4ug\"},verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-12nsyb7\",\"data-framer-name\":\"texts\",name:\"texts\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7R2VuZXJhbCBTYW5zLXNlbWlib2xk\",\"--framer-font-family\":'\"General Sans\", \"General Sans Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"150%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-052eed68-9922-4146-aee5-80442c44559a, rgb(21, 154, 156))\"},children:\"/ / / / / / / /\"})}),className:\"framer-tj31hh\",\"data-framer-name\":\"Almost before we kne\",fonts:[\"FS;General Sans-semibold\"],name:\"Almost before we kne\",verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(ComponentPresetsProvider,{presets:{\"module:NEd4VmDdsxM3StIUbddO/bZxrMUxBPAhoXlARkK9C/YouTube.js:Youtube\":componentPresets.props[\"lzwXm95_Y\"],\"module:pVk4QsoHxASnVtUBp6jr/TbhpORLndv1iOkZzyo83/CodeBlock.js:default\":componentPresets.props[\"pUDGfh4mF\"]},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:TSag_ga1u,className:\"framer-cs2as1\",\"data-framer-name\":\"Content\",fonts:[\"Inter\"],name:\"Content\",stylesPresetsClassNames:{a:\"framer-styles-preset-wuc14h\",code:\"framer-styles-preset-vqapym\",h1:\"framer-styles-preset-1liw76i\",h2:\"framer-styles-preset-1h6znvm\",h3:\"framer-styles-preset-1lr1kj\",h4:\"framer-styles-preset-129ykke\",h5:\"framer-styles-preset-3m37wu\",h6:\"framer-styles-preset-10hgsho\",p:\"framer-styles-preset-4gz4ug\"},verticalAlignment:\"top\",withExternalLayout:true})})]})]})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-4aypaa\",\"data-framer-name\":\"latest\",name:\"latest\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-15ltob\",\"data-framer-name\":\"container\",name:\"container\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1cuw1fo\",\"data-framer-name\":\"left\",name:\"left\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1n7f0er\",\"data-framer-name\":\"txt\",name:\"txt\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-jprje3\",\"data-framer-name\":\"head-txt\",name:\"head-txt\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1uuks14\",\"data-framer-name\":\"texts\",name:\"texts\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-kdfewe\",\"data-styles-preset\":\"gdkUHc_1r\",style:{\"--framer-text-color\":\"var(--token-052eed68-9922-4146-aee5-80442c44559a, rgb(237, 169, 180))\"},children:\"G\\xfcncel\"})}),className:\"framer-1ja0iql\",\"data-framer-name\":\"Almost before we kne\",fonts:[\"Inter\"],name:\"Almost before we kne\",verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1qajif6\",\"data-framer-name\":\"heading\",name:\"heading\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-1rtj8me\",\"data-framer-name\":\"headlines\",name:\"headlines\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-1lr1kj\",\"data-styles-preset\":\"Zeunb14kr\",style:{\"--framer-text-alignment\":\"center\"},children:\"Yaz\u0131lar\u0131m\"})}),className:\"framer-jzcw9s\",\"data-framer-name\":\"Almost before\u2026\",fonts:[\"Inter\"],name:\"Almost before\u2026\",verticalAlignment:\"top\",withExternalLayout:true})})})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1t81285\",\"data-framer-name\":\"texts\",name:\"texts\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-2jfv8e\",\"data-styles-preset\":\"PYtXiftJv\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-2eb07466-8e12-4b9d-b469-66ccd1d98b7d, rgb(127, 128, 128))\"},children:\"Daha mutlu, daha sa\u011Fl\u0131kl\u0131 ve daha tatmin edici bir hayata do\u011Fru yolculu\u011Funuzda size yard\u0131mc\u0131 olacak yeni anlay\u0131\u015Flar\u0131, pratik ipu\\xe7lar\u0131n\u0131 ve g\\xfc\\xe7lendirici hikayeleri ke\u015Ffedin. A\u015Fa\u011F\u0131daki en son g\\xf6nderilerimize g\\xf6z at\u0131n ve s\\xfcrekli b\\xfcy\\xfcme ve kendini ke\u015Ffetme yoluna \\xe7\u0131k\u0131n.\"})}),className:\"framer-ysrqg\",\"data-framer-name\":\"Almost before we kne\",fonts:[\"Inter\"],name:\"Almost before we kne\",verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1wk5r0i-container\",children:/*#__PURE__*/_jsx(Embed,{height:\"100%\",html:'<iframe data-tally-src=\"https://tally.so/embed/mVZbLN?alignLeft=1&hideTitle=1&transparentBackground=1&dynamicHeight=1\" loading=\"lazy\" width=\"100%\" height=\"158\" frameborder=\"0\" marginheight=\"0\" marginwidth=\"0\" title=\"Mail Abonelik Formu\"></iframe><script>var d=document,w=\"https://tally.so/widgets/embed.js\",v=function(){\"undefined\"!=typeof Tally?Tally.loadEmbeds():d.querySelectorAll(\"iframe[data-tally-src]:not([src])\").forEach((function(e){e.src=e.dataset.tallySrc}))};if(\"undefined\"!=typeof Tally)v();else if(d.querySelector(\\'script[src=\"\\'+w+\\'\"]\\')==null){var s=d.createElement(\"script\");s.src=w,s.onload=v,s.onerror=v,d.body.appendChild(s);}</script>',id:\"CDPQcRMam\",layoutId:\"CDPQcRMam\",style:{width:\"100%\"},type:\"html\",url:\"\",width:\"100%\"})})})]})}),isDisplayed()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1cel6ln-container hidden-1h0kpgo\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{fKGbYbnEd:{arrowOptions:{arrowFill:\"rgba(0, 0, 0, 0.2)\",arrowGap:10,arrowPadding:30,arrowPaddingBottom:0,arrowPaddingLeft:0,arrowPaddingRight:0,arrowPaddingTop:0,arrowPosition:\"bottom-mid\",arrowRadius:40,arrowShouldFadeIn:false,arrowShouldSpace:false,arrowSize:64,showMouseControls:true},progressOptions:{dotsActiveOpacity:1,dotsBackground:\"rgba(0, 0, 0, 0.2)\",dotsBlur:0,dotsFill:\"rgb(255, 255, 255)\",dotsGap:10,dotsInset:10,dotSize:10,dotsOpacity:.5,dotsPadding:10,dotsRadius:50,showProgressDots:false}}},children:/*#__PURE__*/_jsx(Slideshow,{alignment:\"center\",arrowOptions:{arrowFill:\"rgba(42, 43, 43, 0.6)\",arrowGap:10,arrowPadding:20,arrowPaddingBottom:0,arrowPaddingLeft:0,arrowPaddingRight:64,arrowPaddingTop:0,arrowPosition:\"bottom-mid\",arrowRadius:56,arrowShouldFadeIn:false,arrowShouldSpace:false,arrowSize:56,showMouseControls:true},autoPlayControl:false,borderRadius:0,direction:\"left\",dragControl:false,effectsOptions:{effectsHover:true,effectsOpacity:1,effectsPerspective:1200,effectsRotate:0,effectsScale:1},fadeOptions:{fadeAlpha:0,fadeContent:false,fadeInset:0,fadeWidth:25,overflow:true},gap:409,height:\"100%\",id:\"yDrqbzUWp\",intervalControl:1.5,itemAmount:6,layoutId:\"yDrqbzUWp\",padding:0,paddingBottom:0,paddingLeft:0,paddingPerSide:false,paddingRight:0,paddingTop:0,progressOptions:{dotsActiveOpacity:1,dotsBackground:\"rgba(0, 0, 0, 0)\",dotsBlur:0,dotsFill:\"var(--token-217db8f8-1054-47de-ab16-d7395cb29a86, rgb(42, 43, 43))\",dotsGap:10,dotsInset:10,dotSize:12,dotsOpacity:.5,dotsPadding:1,dotsRadius:50,showProgressDots:false},slots:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-13jkwo7\",\"data-framer-name\":\"Desktop1\",name:\"Desktop1\",children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(QueryData,{query:{from:{alias:\"Q1RO39al1\",data:Blog,type:\"Collection\"},select:[{collection:\"Q1RO39al1\",name:\"RwjuDVkDB\",type:\"Identifier\"},{collection:\"Q1RO39al1\",name:\"iq2hrZ5Qh\",type:\"Identifier\"},{collection:\"Q1RO39al1\",name:\"K_LedhCd7\",type:\"Identifier\"},{collection:\"Q1RO39al1\",name:\"lywD3LpDE\",type:\"Identifier\"},{collection:\"Q1RO39al1\",name:\"N_MXHlLDy\",type:\"Identifier\"},{collection:\"Q1RO39al1\",name:\"TUb171g5k\",type:\"Identifier\"},{collection:\"Q1RO39al1\",name:\"id\",type:\"Identifier\"}],where:{left:{collection:\"Q1RO39al1\",name:\"TryHN7ao8\",type:\"Identifier\"},operator:\"==\",right:{type:\"LiteralValue\",value:\"1\"},type:\"BinaryOperation\"}},children:(collection,paginationInfo,loadMore)=>/*#__PURE__*/_jsx(_Fragment,{children:collection.map(({id:idQ1RO39al1,iq2hrZ5Qh:iq2hrZ5QhQ1RO39al1,K_LedhCd7:K_LedhCd7Q1RO39al1,lywD3LpDE:lywD3LpDEQ1RO39al1,N_MXHlLDy:N_MXHlLDyQ1RO39al1,RwjuDVkDB:RwjuDVkDBQ1RO39al1,TUb171g5k:TUb171g5kQ1RO39al1},i)=>{iq2hrZ5QhQ1RO39al1!==null&&iq2hrZ5QhQ1RO39al1!==void 0?iq2hrZ5QhQ1RO39al1:iq2hrZ5QhQ1RO39al1=\"\";K_LedhCd7Q1RO39al1!==null&&K_LedhCd7Q1RO39al1!==void 0?K_LedhCd7Q1RO39al1:K_LedhCd7Q1RO39al1=\"\";N_MXHlLDyQ1RO39al1!==null&&N_MXHlLDyQ1RO39al1!==void 0?N_MXHlLDyQ1RO39al1:N_MXHlLDyQ1RO39al1=\"\";TUb171g5kQ1RO39al1!==null&&TUb171g5kQ1RO39al1!==void 0?TUb171g5kQ1RO39al1:TUb171g5kQ1RO39al1=\"\";return /*#__PURE__*/_jsx(LayoutGroup,{id:`Q1RO39al1-${idQ1RO39al1}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{TUb171g5k:TUb171g5kQ1RO39al1},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-9vfuzn-container\",children:/*#__PURE__*/_jsx(BlogCard,{FhwE8cCXW:toResponsiveImage(RwjuDVkDBQ1RO39al1),height:\"100%\",hhUA3NQuU:N_MXHlLDyQ1RO39al1,id:\"emhZVUUWb\",Imxg_39iX:toDateString(lywD3LpDEQ1RO39al1,{dateStyle:\"medium\",locale:\"\"},activeLocaleCode),layoutId:\"emhZVUUWb\",smLtcOMeh:iq2hrZ5QhQ1RO39al1,style:{height:\"100%\",width:\"100%\"},T33EwGIjH:\"\",upxSWoOm6:K_LedhCd7Q1RO39al1,variant:\"jduOEZ35b\",width:\"100%\"})})})})},idQ1RO39al1);})})})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-193d6tj\",\"data-framer-name\":\"Desktop2\",name:\"Desktop2\",children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(QueryData,{query:{from:{alias:\"MYlxxGP52\",data:Blog,type:\"Collection\"},select:[{collection:\"MYlxxGP52\",name:\"RwjuDVkDB\",type:\"Identifier\"},{collection:\"MYlxxGP52\",name:\"iq2hrZ5Qh\",type:\"Identifier\"},{collection:\"MYlxxGP52\",name:\"K_LedhCd7\",type:\"Identifier\"},{collection:\"MYlxxGP52\",name:\"lywD3LpDE\",type:\"Identifier\"},{collection:\"MYlxxGP52\",name:\"N_MXHlLDy\",type:\"Identifier\"},{collection:\"MYlxxGP52\",name:\"TUb171g5k\",type:\"Identifier\"},{collection:\"MYlxxGP52\",name:\"id\",type:\"Identifier\"}],where:{left:{collection:\"MYlxxGP52\",name:\"TryHN7ao8\",type:\"Identifier\"},operator:\"==\",right:{type:\"LiteralValue\",value:\"2\"},type:\"BinaryOperation\"}},children:(collection1,paginationInfo1,loadMore1)=>/*#__PURE__*/_jsx(_Fragment,{children:collection1.map(({id:idMYlxxGP52,iq2hrZ5Qh:iq2hrZ5QhMYlxxGP52,K_LedhCd7:K_LedhCd7MYlxxGP52,lywD3LpDE:lywD3LpDEMYlxxGP52,N_MXHlLDy:N_MXHlLDyMYlxxGP52,RwjuDVkDB:RwjuDVkDBMYlxxGP52,TUb171g5k:TUb171g5kMYlxxGP52},i)=>{iq2hrZ5QhMYlxxGP52!==null&&iq2hrZ5QhMYlxxGP52!==void 0?iq2hrZ5QhMYlxxGP52:iq2hrZ5QhMYlxxGP52=\"\";K_LedhCd7MYlxxGP52!==null&&K_LedhCd7MYlxxGP52!==void 0?K_LedhCd7MYlxxGP52:K_LedhCd7MYlxxGP52=\"\";N_MXHlLDyMYlxxGP52!==null&&N_MXHlLDyMYlxxGP52!==void 0?N_MXHlLDyMYlxxGP52:N_MXHlLDyMYlxxGP52=\"\";TUb171g5kMYlxxGP52!==null&&TUb171g5kMYlxxGP52!==void 0?TUb171g5kMYlxxGP52:TUb171g5kMYlxxGP52=\"\";return /*#__PURE__*/_jsx(LayoutGroup,{id:`MYlxxGP52-${idMYlxxGP52}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{TUb171g5k:TUb171g5kMYlxxGP52},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-861kne-container\",children:/*#__PURE__*/_jsx(BlogCard,{FhwE8cCXW:toResponsiveImage(RwjuDVkDBMYlxxGP52),height:\"100%\",hhUA3NQuU:N_MXHlLDyMYlxxGP52,id:\"cZ8QSlWRP\",Imxg_39iX:toDateString(lywD3LpDEMYlxxGP52,{dateStyle:\"medium\",locale:\"\"},activeLocaleCode),layoutId:\"cZ8QSlWRP\",smLtcOMeh:iq2hrZ5QhMYlxxGP52,style:{height:\"100%\",width:\"100%\"},T33EwGIjH:\"\",upxSWoOm6:K_LedhCd7MYlxxGP52,variant:\"jduOEZ35b\",width:\"100%\"})})})})},idMYlxxGP52);})})})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-k4f3ek\",\"data-framer-name\":\"Desktop3\",name:\"Desktop3\",children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(QueryData,{query:{from:{alias:\"ZA0sHidTl\",data:Blog,type:\"Collection\"},select:[{collection:\"ZA0sHidTl\",name:\"RwjuDVkDB\",type:\"Identifier\"},{collection:\"ZA0sHidTl\",name:\"iq2hrZ5Qh\",type:\"Identifier\"},{collection:\"ZA0sHidTl\",name:\"K_LedhCd7\",type:\"Identifier\"},{collection:\"ZA0sHidTl\",name:\"lywD3LpDE\",type:\"Identifier\"},{collection:\"ZA0sHidTl\",name:\"N_MXHlLDy\",type:\"Identifier\"},{collection:\"ZA0sHidTl\",name:\"TUb171g5k\",type:\"Identifier\"},{collection:\"ZA0sHidTl\",name:\"id\",type:\"Identifier\"}],where:{left:{collection:\"ZA0sHidTl\",name:\"TryHN7ao8\",type:\"Identifier\"},operator:\"==\",right:{type:\"LiteralValue\",value:\"3\"},type:\"BinaryOperation\"}},children:(collection2,paginationInfo2,loadMore2)=>/*#__PURE__*/_jsx(_Fragment,{children:collection2.map(({id:idZA0sHidTl,iq2hrZ5Qh:iq2hrZ5QhZA0sHidTl,K_LedhCd7:K_LedhCd7ZA0sHidTl,lywD3LpDE:lywD3LpDEZA0sHidTl,N_MXHlLDy:N_MXHlLDyZA0sHidTl,RwjuDVkDB:RwjuDVkDBZA0sHidTl,TUb171g5k:TUb171g5kZA0sHidTl},i)=>{iq2hrZ5QhZA0sHidTl!==null&&iq2hrZ5QhZA0sHidTl!==void 0?iq2hrZ5QhZA0sHidTl:iq2hrZ5QhZA0sHidTl=\"\";K_LedhCd7ZA0sHidTl!==null&&K_LedhCd7ZA0sHidTl!==void 0?K_LedhCd7ZA0sHidTl:K_LedhCd7ZA0sHidTl=\"\";N_MXHlLDyZA0sHidTl!==null&&N_MXHlLDyZA0sHidTl!==void 0?N_MXHlLDyZA0sHidTl:N_MXHlLDyZA0sHidTl=\"\";TUb171g5kZA0sHidTl!==null&&TUb171g5kZA0sHidTl!==void 0?TUb171g5kZA0sHidTl:TUb171g5kZA0sHidTl=\"\";return /*#__PURE__*/_jsx(LayoutGroup,{id:`ZA0sHidTl-${idZA0sHidTl}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{TUb171g5k:TUb171g5kZA0sHidTl},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-16ovq6c-container\",children:/*#__PURE__*/_jsx(BlogCard,{FhwE8cCXW:toResponsiveImage(RwjuDVkDBZA0sHidTl),height:\"100%\",hhUA3NQuU:N_MXHlLDyZA0sHidTl,id:\"IRxV487I9\",Imxg_39iX:toDateString(lywD3LpDEZA0sHidTl,{dateStyle:\"medium\",locale:\"\"},activeLocaleCode),layoutId:\"IRxV487I9\",smLtcOMeh:iq2hrZ5QhZA0sHidTl,style:{height:\"100%\",width:\"100%\"},T33EwGIjH:\"\",upxSWoOm6:K_LedhCd7ZA0sHidTl,variant:\"jduOEZ35b\",width:\"100%\"})})})})},idZA0sHidTl);})})})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1prdx3l\",\"data-framer-name\":\"Desktop5\",name:\"Desktop5\",children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(QueryData,{query:{from:{alias:\"Wsozf4gR4\",data:Blog,type:\"Collection\"},select:[{collection:\"Wsozf4gR4\",name:\"RwjuDVkDB\",type:\"Identifier\"},{collection:\"Wsozf4gR4\",name:\"iq2hrZ5Qh\",type:\"Identifier\"},{collection:\"Wsozf4gR4\",name:\"K_LedhCd7\",type:\"Identifier\"},{collection:\"Wsozf4gR4\",name:\"lywD3LpDE\",type:\"Identifier\"},{collection:\"Wsozf4gR4\",name:\"N_MXHlLDy\",type:\"Identifier\"},{collection:\"Wsozf4gR4\",name:\"TUb171g5k\",type:\"Identifier\"},{collection:\"Wsozf4gR4\",name:\"id\",type:\"Identifier\"}],where:{left:{collection:\"Wsozf4gR4\",name:\"TryHN7ao8\",type:\"Identifier\"},operator:\"==\",right:{type:\"LiteralValue\",value:\"5\"},type:\"BinaryOperation\"}},children:(collection3,paginationInfo3,loadMore3)=>/*#__PURE__*/_jsx(_Fragment,{children:collection3.map(({id:idWsozf4gR4,iq2hrZ5Qh:iq2hrZ5QhWsozf4gR4,K_LedhCd7:K_LedhCd7Wsozf4gR4,lywD3LpDE:lywD3LpDEWsozf4gR4,N_MXHlLDy:N_MXHlLDyWsozf4gR4,RwjuDVkDB:RwjuDVkDBWsozf4gR4,TUb171g5k:TUb171g5kWsozf4gR4},i)=>{iq2hrZ5QhWsozf4gR4!==null&&iq2hrZ5QhWsozf4gR4!==void 0?iq2hrZ5QhWsozf4gR4:iq2hrZ5QhWsozf4gR4=\"\";K_LedhCd7Wsozf4gR4!==null&&K_LedhCd7Wsozf4gR4!==void 0?K_LedhCd7Wsozf4gR4:K_LedhCd7Wsozf4gR4=\"\";N_MXHlLDyWsozf4gR4!==null&&N_MXHlLDyWsozf4gR4!==void 0?N_MXHlLDyWsozf4gR4:N_MXHlLDyWsozf4gR4=\"\";TUb171g5kWsozf4gR4!==null&&TUb171g5kWsozf4gR4!==void 0?TUb171g5kWsozf4gR4:TUb171g5kWsozf4gR4=\"\";return /*#__PURE__*/_jsx(LayoutGroup,{id:`Wsozf4gR4-${idWsozf4gR4}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{TUb171g5k:TUb171g5kWsozf4gR4},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1rlnpo7-container\",children:/*#__PURE__*/_jsx(BlogCard,{FhwE8cCXW:toResponsiveImage(RwjuDVkDBWsozf4gR4),height:\"100%\",hhUA3NQuU:N_MXHlLDyWsozf4gR4,id:\"r2XGtQGLU\",Imxg_39iX:toDateString(lywD3LpDEWsozf4gR4,{dateStyle:\"medium\",locale:\"\"},activeLocaleCode),layoutId:\"r2XGtQGLU\",smLtcOMeh:iq2hrZ5QhWsozf4gR4,style:{height:\"100%\",width:\"100%\"},T33EwGIjH:\"\",upxSWoOm6:K_LedhCd7Wsozf4gR4,variant:\"jduOEZ35b\",width:\"100%\"})})})})},idWsozf4gR4);})})})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-11dwelt\",\"data-framer-name\":\"Dekstop6\",name:\"Dekstop6\",children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(QueryData,{query:{from:{alias:\"pmHOZfUDv\",data:Blog,type:\"Collection\"},select:[{collection:\"pmHOZfUDv\",name:\"RwjuDVkDB\",type:\"Identifier\"},{collection:\"pmHOZfUDv\",name:\"iq2hrZ5Qh\",type:\"Identifier\"},{collection:\"pmHOZfUDv\",name:\"K_LedhCd7\",type:\"Identifier\"},{collection:\"pmHOZfUDv\",name:\"lywD3LpDE\",type:\"Identifier\"},{collection:\"pmHOZfUDv\",name:\"N_MXHlLDy\",type:\"Identifier\"},{collection:\"pmHOZfUDv\",name:\"TUb171g5k\",type:\"Identifier\"},{collection:\"pmHOZfUDv\",name:\"id\",type:\"Identifier\"}],where:{left:{collection:\"pmHOZfUDv\",name:\"TryHN7ao8\",type:\"Identifier\"},operator:\"==\",right:{type:\"LiteralValue\",value:\"6\"},type:\"BinaryOperation\"}},children:(collection4,paginationInfo4,loadMore4)=>/*#__PURE__*/_jsx(_Fragment,{children:collection4.map(({id:idpmHOZfUDv,iq2hrZ5Qh:iq2hrZ5QhpmHOZfUDv,K_LedhCd7:K_LedhCd7pmHOZfUDv,lywD3LpDE:lywD3LpDEpmHOZfUDv,N_MXHlLDy:N_MXHlLDypmHOZfUDv,RwjuDVkDB:RwjuDVkDBpmHOZfUDv,TUb171g5k:TUb171g5kpmHOZfUDv},i)=>{iq2hrZ5QhpmHOZfUDv!==null&&iq2hrZ5QhpmHOZfUDv!==void 0?iq2hrZ5QhpmHOZfUDv:iq2hrZ5QhpmHOZfUDv=\"\";K_LedhCd7pmHOZfUDv!==null&&K_LedhCd7pmHOZfUDv!==void 0?K_LedhCd7pmHOZfUDv:K_LedhCd7pmHOZfUDv=\"\";N_MXHlLDypmHOZfUDv!==null&&N_MXHlLDypmHOZfUDv!==void 0?N_MXHlLDypmHOZfUDv:N_MXHlLDypmHOZfUDv=\"\";TUb171g5kpmHOZfUDv!==null&&TUb171g5kpmHOZfUDv!==void 0?TUb171g5kpmHOZfUDv:TUb171g5kpmHOZfUDv=\"\";return /*#__PURE__*/_jsx(LayoutGroup,{id:`pmHOZfUDv-${idpmHOZfUDv}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{TUb171g5k:TUb171g5kpmHOZfUDv},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-6hpbjh-container\",children:/*#__PURE__*/_jsx(BlogCard,{FhwE8cCXW:toResponsiveImage(RwjuDVkDBpmHOZfUDv),height:\"100%\",hhUA3NQuU:N_MXHlLDypmHOZfUDv,id:\"brNHvZxvy\",Imxg_39iX:toDateString(lywD3LpDEpmHOZfUDv,{dateStyle:\"medium\",locale:\"\"},activeLocaleCode),layoutId:\"brNHvZxvy\",smLtcOMeh:iq2hrZ5QhpmHOZfUDv,style:{height:\"100%\",width:\"100%\"},T33EwGIjH:\"\",upxSWoOm6:K_LedhCd7pmHOZfUDv,variant:\"jduOEZ35b\",width:\"100%\"})})})})},idpmHOZfUDv);})})})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-19xjzi8\",\"data-framer-name\":\"Desktop4\",name:\"Desktop4\",children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(QueryData,{query:{from:{alias:\"QzCH298ud\",data:Blog,type:\"Collection\"},select:[{collection:\"QzCH298ud\",name:\"RwjuDVkDB\",type:\"Identifier\"},{collection:\"QzCH298ud\",name:\"iq2hrZ5Qh\",type:\"Identifier\"},{collection:\"QzCH298ud\",name:\"K_LedhCd7\",type:\"Identifier\"},{collection:\"QzCH298ud\",name:\"lywD3LpDE\",type:\"Identifier\"},{collection:\"QzCH298ud\",name:\"N_MXHlLDy\",type:\"Identifier\"},{collection:\"QzCH298ud\",name:\"TUb171g5k\",type:\"Identifier\"},{collection:\"QzCH298ud\",name:\"id\",type:\"Identifier\"}],where:{left:{collection:\"QzCH298ud\",name:\"TryHN7ao8\",type:\"Identifier\"},operator:\"==\",right:{type:\"LiteralValue\",value:\"4\"},type:\"BinaryOperation\"}},children:(collection5,paginationInfo5,loadMore5)=>/*#__PURE__*/_jsx(_Fragment,{children:collection5.map(({id:idQzCH298ud,iq2hrZ5Qh:iq2hrZ5QhQzCH298ud,K_LedhCd7:K_LedhCd7QzCH298ud,lywD3LpDE:lywD3LpDEQzCH298ud,N_MXHlLDy:N_MXHlLDyQzCH298ud,RwjuDVkDB:RwjuDVkDBQzCH298ud,TUb171g5k:TUb171g5kQzCH298ud},i)=>{iq2hrZ5QhQzCH298ud!==null&&iq2hrZ5QhQzCH298ud!==void 0?iq2hrZ5QhQzCH298ud:iq2hrZ5QhQzCH298ud=\"\";K_LedhCd7QzCH298ud!==null&&K_LedhCd7QzCH298ud!==void 0?K_LedhCd7QzCH298ud:K_LedhCd7QzCH298ud=\"\";N_MXHlLDyQzCH298ud!==null&&N_MXHlLDyQzCH298ud!==void 0?N_MXHlLDyQzCH298ud:N_MXHlLDyQzCH298ud=\"\";TUb171g5kQzCH298ud!==null&&TUb171g5kQzCH298ud!==void 0?TUb171g5kQzCH298ud:TUb171g5kQzCH298ud=\"\";return /*#__PURE__*/_jsx(LayoutGroup,{id:`QzCH298ud-${idQzCH298ud}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{TUb171g5k:TUb171g5kQzCH298ud},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-14rp43j-container\",children:/*#__PURE__*/_jsx(BlogCard,{FhwE8cCXW:toResponsiveImage(RwjuDVkDBQzCH298ud),height:\"100%\",hhUA3NQuU:N_MXHlLDyQzCH298ud,id:\"duMiSmkxr\",Imxg_39iX:toDateString(lywD3LpDEQzCH298ud,{dateStyle:\"medium\",locale:\"\"},activeLocaleCode),layoutId:\"duMiSmkxr\",smLtcOMeh:iq2hrZ5QhQzCH298ud,style:{height:\"100%\",width:\"100%\"},T33EwGIjH:\"\",upxSWoOm6:K_LedhCd7QzCH298ud,variant:\"jduOEZ35b\",width:\"100%\"})})})})},idQzCH298ud);})})})})})],startFrom:0,style:{height:\"100%\",width:\"100%\"},transitionControl:{delay:0,duration:.3,ease:[.44,0,.56,1],type:\"tween\"},width:\"100%\"})})})}),isDisplayed1()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-rpq3i5-container hidden-1uvstgg hidden-ywblli hidden-1hyqkz9\",\"data-framer-name\":\"slideshow-mobile\",name:\"slideshow-mobile\",children:/*#__PURE__*/_jsx(Slideshow,{alignment:\"center\",arrowOptions:{arrowFill:\"rgba(0, 0, 0, 0.2)\",arrowGap:10,arrowPadding:20,arrowPaddingBottom:0,arrowPaddingLeft:0,arrowPaddingRight:0,arrowPaddingTop:0,arrowPosition:\"auto\",arrowRadius:40,arrowShouldFadeIn:false,arrowShouldSpace:true,arrowSize:40,showMouseControls:false},autoPlayControl:false,borderRadius:0,direction:\"left\",dragControl:true,effectsOptions:{effectsHover:true,effectsOpacity:1,effectsPerspective:1200,effectsRotate:0,effectsScale:1},fadeOptions:{fadeAlpha:0,fadeContent:false,fadeInset:0,fadeWidth:25,overflow:true},gap:338,height:\"100%\",id:\"tPtto5qKP\",intervalControl:1.5,itemAmount:6,layoutId:\"tPtto5qKP\",name:\"slideshow-mobile\",padding:0,paddingBottom:0,paddingLeft:0,paddingPerSide:false,paddingRight:0,paddingTop:0,progressOptions:{dotsActiveOpacity:1,dotsBackground:\"rgba(0, 0, 0, 0.2)\",dotsBlur:0,dotsFill:\"rgb(255, 255, 255)\",dotsGap:10,dotsInset:10,dotSize:10,dotsOpacity:.5,dotsPadding:10,dotsRadius:50,showProgressDots:false},slots:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-kn83mg\",\"data-framer-name\":\"Mobile1\",name:\"Mobile1\",children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(QueryData,{query:{from:{alias:\"LI7Dqfsve\",data:Blog,type:\"Collection\"},select:[{collection:\"LI7Dqfsve\",name:\"RwjuDVkDB\",type:\"Identifier\"},{collection:\"LI7Dqfsve\",name:\"iq2hrZ5Qh\",type:\"Identifier\"},{collection:\"LI7Dqfsve\",name:\"K_LedhCd7\",type:\"Identifier\"},{collection:\"LI7Dqfsve\",name:\"lywD3LpDE\",type:\"Identifier\"},{collection:\"LI7Dqfsve\",name:\"N_MXHlLDy\",type:\"Identifier\"},{collection:\"LI7Dqfsve\",name:\"TUb171g5k\",type:\"Identifier\"},{collection:\"LI7Dqfsve\",name:\"id\",type:\"Identifier\"}],where:{left:{collection:\"LI7Dqfsve\",name:\"TryHN7ao8\",type:\"Identifier\"},operator:\"==\",right:{type:\"LiteralValue\",value:\"1\"},type:\"BinaryOperation\"}},children:(collection6,paginationInfo6,loadMore6)=>/*#__PURE__*/_jsx(_Fragment,{children:collection6.map(({id:idLI7Dqfsve,iq2hrZ5Qh:iq2hrZ5QhLI7Dqfsve,K_LedhCd7:K_LedhCd7LI7Dqfsve,lywD3LpDE:lywD3LpDELI7Dqfsve,N_MXHlLDy:N_MXHlLDyLI7Dqfsve,RwjuDVkDB:RwjuDVkDBLI7Dqfsve,TUb171g5k:TUb171g5kLI7Dqfsve},i)=>{iq2hrZ5QhLI7Dqfsve!==null&&iq2hrZ5QhLI7Dqfsve!==void 0?iq2hrZ5QhLI7Dqfsve:iq2hrZ5QhLI7Dqfsve=\"\";K_LedhCd7LI7Dqfsve!==null&&K_LedhCd7LI7Dqfsve!==void 0?K_LedhCd7LI7Dqfsve:K_LedhCd7LI7Dqfsve=\"\";N_MXHlLDyLI7Dqfsve!==null&&N_MXHlLDyLI7Dqfsve!==void 0?N_MXHlLDyLI7Dqfsve:N_MXHlLDyLI7Dqfsve=\"\";TUb171g5kLI7Dqfsve!==null&&TUb171g5kLI7Dqfsve!==void 0?TUb171g5kLI7Dqfsve:TUb171g5kLI7Dqfsve=\"\";return /*#__PURE__*/_jsx(LayoutGroup,{id:`LI7Dqfsve-${idLI7Dqfsve}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{TUb171g5k:TUb171g5kLI7Dqfsve},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1gjpahk-container\",children:/*#__PURE__*/_jsx(BlogCard,{FhwE8cCXW:toResponsiveImage(RwjuDVkDBLI7Dqfsve),height:\"100%\",hhUA3NQuU:N_MXHlLDyLI7Dqfsve,id:\"QbqEgTpq1\",Imxg_39iX:toDateString(lywD3LpDELI7Dqfsve,{dateStyle:\"medium\",locale:\"\"},activeLocaleCode),layoutId:\"QbqEgTpq1\",smLtcOMeh:iq2hrZ5QhLI7Dqfsve,style:{height:\"100%\",width:\"100%\"},T33EwGIjH:\"\",upxSWoOm6:K_LedhCd7LI7Dqfsve,variant:\"oFSvjXRTz\",width:\"100%\"})})})})},idLI7Dqfsve);})})})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1b212uf\",\"data-framer-name\":\"Mobile2\",name:\"Mobile2\",children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(QueryData,{query:{from:{alias:\"kBhC0CaPW\",data:Blog,type:\"Collection\"},select:[{collection:\"kBhC0CaPW\",name:\"RwjuDVkDB\",type:\"Identifier\"},{collection:\"kBhC0CaPW\",name:\"iq2hrZ5Qh\",type:\"Identifier\"},{collection:\"kBhC0CaPW\",name:\"K_LedhCd7\",type:\"Identifier\"},{collection:\"kBhC0CaPW\",name:\"lywD3LpDE\",type:\"Identifier\"},{collection:\"kBhC0CaPW\",name:\"N_MXHlLDy\",type:\"Identifier\"},{collection:\"kBhC0CaPW\",name:\"TUb171g5k\",type:\"Identifier\"},{collection:\"kBhC0CaPW\",name:\"id\",type:\"Identifier\"}],where:{left:{collection:\"kBhC0CaPW\",name:\"TryHN7ao8\",type:\"Identifier\"},operator:\"==\",right:{type:\"LiteralValue\",value:\"2\"},type:\"BinaryOperation\"}},children:(collection7,paginationInfo7,loadMore7)=>/*#__PURE__*/_jsx(_Fragment,{children:collection7.map(({id:idkBhC0CaPW,iq2hrZ5Qh:iq2hrZ5QhkBhC0CaPW,K_LedhCd7:K_LedhCd7kBhC0CaPW,lywD3LpDE:lywD3LpDEkBhC0CaPW,N_MXHlLDy:N_MXHlLDykBhC0CaPW,RwjuDVkDB:RwjuDVkDBkBhC0CaPW,TUb171g5k:TUb171g5kkBhC0CaPW},i)=>{iq2hrZ5QhkBhC0CaPW!==null&&iq2hrZ5QhkBhC0CaPW!==void 0?iq2hrZ5QhkBhC0CaPW:iq2hrZ5QhkBhC0CaPW=\"\";K_LedhCd7kBhC0CaPW!==null&&K_LedhCd7kBhC0CaPW!==void 0?K_LedhCd7kBhC0CaPW:K_LedhCd7kBhC0CaPW=\"\";N_MXHlLDykBhC0CaPW!==null&&N_MXHlLDykBhC0CaPW!==void 0?N_MXHlLDykBhC0CaPW:N_MXHlLDykBhC0CaPW=\"\";TUb171g5kkBhC0CaPW!==null&&TUb171g5kkBhC0CaPW!==void 0?TUb171g5kkBhC0CaPW:TUb171g5kkBhC0CaPW=\"\";return /*#__PURE__*/_jsx(LayoutGroup,{id:`kBhC0CaPW-${idkBhC0CaPW}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{TUb171g5k:TUb171g5kkBhC0CaPW},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1kl2aaz-container\",children:/*#__PURE__*/_jsx(BlogCard,{FhwE8cCXW:toResponsiveImage(RwjuDVkDBkBhC0CaPW),height:\"100%\",hhUA3NQuU:N_MXHlLDykBhC0CaPW,id:\"H3XUEm2O8\",Imxg_39iX:toDateString(lywD3LpDEkBhC0CaPW,{dateStyle:\"medium\",locale:\"\"},activeLocaleCode),layoutId:\"H3XUEm2O8\",smLtcOMeh:iq2hrZ5QhkBhC0CaPW,style:{height:\"100%\",width:\"100%\"},T33EwGIjH:\"\",upxSWoOm6:K_LedhCd7kBhC0CaPW,variant:\"oFSvjXRTz\",width:\"100%\"})})})})},idkBhC0CaPW);})})})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1r0fpiv\",\"data-framer-name\":\"Mobile3\",name:\"Mobile3\",children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(QueryData,{query:{from:{alias:\"hhgLwkHfi\",data:Blog,type:\"Collection\"},select:[{collection:\"hhgLwkHfi\",name:\"RwjuDVkDB\",type:\"Identifier\"},{collection:\"hhgLwkHfi\",name:\"iq2hrZ5Qh\",type:\"Identifier\"},{collection:\"hhgLwkHfi\",name:\"K_LedhCd7\",type:\"Identifier\"},{collection:\"hhgLwkHfi\",name:\"lywD3LpDE\",type:\"Identifier\"},{collection:\"hhgLwkHfi\",name:\"N_MXHlLDy\",type:\"Identifier\"},{collection:\"hhgLwkHfi\",name:\"TUb171g5k\",type:\"Identifier\"},{collection:\"hhgLwkHfi\",name:\"id\",type:\"Identifier\"}],where:{left:{collection:\"hhgLwkHfi\",name:\"TryHN7ao8\",type:\"Identifier\"},operator:\"==\",right:{type:\"LiteralValue\",value:\"3\"},type:\"BinaryOperation\"}},children:(collection8,paginationInfo8,loadMore8)=>/*#__PURE__*/_jsx(_Fragment,{children:collection8.map(({id:idhhgLwkHfi,iq2hrZ5Qh:iq2hrZ5QhhhgLwkHfi,K_LedhCd7:K_LedhCd7hhgLwkHfi,lywD3LpDE:lywD3LpDEhhgLwkHfi,N_MXHlLDy:N_MXHlLDyhhgLwkHfi,RwjuDVkDB:RwjuDVkDBhhgLwkHfi,TUb171g5k:TUb171g5khhgLwkHfi},i)=>{iq2hrZ5QhhhgLwkHfi!==null&&iq2hrZ5QhhhgLwkHfi!==void 0?iq2hrZ5QhhhgLwkHfi:iq2hrZ5QhhhgLwkHfi=\"\";K_LedhCd7hhgLwkHfi!==null&&K_LedhCd7hhgLwkHfi!==void 0?K_LedhCd7hhgLwkHfi:K_LedhCd7hhgLwkHfi=\"\";N_MXHlLDyhhgLwkHfi!==null&&N_MXHlLDyhhgLwkHfi!==void 0?N_MXHlLDyhhgLwkHfi:N_MXHlLDyhhgLwkHfi=\"\";TUb171g5khhgLwkHfi!==null&&TUb171g5khhgLwkHfi!==void 0?TUb171g5khhgLwkHfi:TUb171g5khhgLwkHfi=\"\";return /*#__PURE__*/_jsx(LayoutGroup,{id:`hhgLwkHfi-${idhhgLwkHfi}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{TUb171g5k:TUb171g5khhgLwkHfi},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-8j5npb-container\",children:/*#__PURE__*/_jsx(BlogCard,{FhwE8cCXW:toResponsiveImage(RwjuDVkDBhhgLwkHfi),height:\"100%\",hhUA3NQuU:N_MXHlLDyhhgLwkHfi,id:\"dF67ETe0i\",Imxg_39iX:toDateString(lywD3LpDEhhgLwkHfi,{dateStyle:\"medium\",locale:\"\"},activeLocaleCode),layoutId:\"dF67ETe0i\",smLtcOMeh:iq2hrZ5QhhhgLwkHfi,style:{height:\"100%\",width:\"100%\"},T33EwGIjH:\"\",upxSWoOm6:K_LedhCd7hhgLwkHfi,variant:\"oFSvjXRTz\",width:\"100%\"})})})})},idhhgLwkHfi);})})})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-aevhhd\",\"data-framer-name\":\"Mobile4\",name:\"Mobile4\",children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(QueryData,{query:{from:{alias:\"FH9cAYVRO\",data:Blog,type:\"Collection\"},select:[{collection:\"FH9cAYVRO\",name:\"RwjuDVkDB\",type:\"Identifier\"},{collection:\"FH9cAYVRO\",name:\"iq2hrZ5Qh\",type:\"Identifier\"},{collection:\"FH9cAYVRO\",name:\"K_LedhCd7\",type:\"Identifier\"},{collection:\"FH9cAYVRO\",name:\"lywD3LpDE\",type:\"Identifier\"},{collection:\"FH9cAYVRO\",name:\"N_MXHlLDy\",type:\"Identifier\"},{collection:\"FH9cAYVRO\",name:\"TUb171g5k\",type:\"Identifier\"},{collection:\"FH9cAYVRO\",name:\"id\",type:\"Identifier\"}],where:{left:{collection:\"FH9cAYVRO\",name:\"TryHN7ao8\",type:\"Identifier\"},operator:\"==\",right:{type:\"LiteralValue\",value:\"4\"},type:\"BinaryOperation\"}},children:(collection9,paginationInfo9,loadMore9)=>/*#__PURE__*/_jsx(_Fragment,{children:collection9.map(({id:idFH9cAYVRO,iq2hrZ5Qh:iq2hrZ5QhFH9cAYVRO,K_LedhCd7:K_LedhCd7FH9cAYVRO,lywD3LpDE:lywD3LpDEFH9cAYVRO,N_MXHlLDy:N_MXHlLDyFH9cAYVRO,RwjuDVkDB:RwjuDVkDBFH9cAYVRO,TUb171g5k:TUb171g5kFH9cAYVRO},i)=>{iq2hrZ5QhFH9cAYVRO!==null&&iq2hrZ5QhFH9cAYVRO!==void 0?iq2hrZ5QhFH9cAYVRO:iq2hrZ5QhFH9cAYVRO=\"\";K_LedhCd7FH9cAYVRO!==null&&K_LedhCd7FH9cAYVRO!==void 0?K_LedhCd7FH9cAYVRO:K_LedhCd7FH9cAYVRO=\"\";N_MXHlLDyFH9cAYVRO!==null&&N_MXHlLDyFH9cAYVRO!==void 0?N_MXHlLDyFH9cAYVRO:N_MXHlLDyFH9cAYVRO=\"\";TUb171g5kFH9cAYVRO!==null&&TUb171g5kFH9cAYVRO!==void 0?TUb171g5kFH9cAYVRO:TUb171g5kFH9cAYVRO=\"\";return /*#__PURE__*/_jsx(LayoutGroup,{id:`FH9cAYVRO-${idFH9cAYVRO}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{TUb171g5k:TUb171g5kFH9cAYVRO},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-ttg67-container\",children:/*#__PURE__*/_jsx(BlogCard,{FhwE8cCXW:toResponsiveImage(RwjuDVkDBFH9cAYVRO),height:\"100%\",hhUA3NQuU:N_MXHlLDyFH9cAYVRO,id:\"dXVUr07U5\",Imxg_39iX:toDateString(lywD3LpDEFH9cAYVRO,{dateStyle:\"medium\",locale:\"\"},activeLocaleCode),layoutId:\"dXVUr07U5\",smLtcOMeh:iq2hrZ5QhFH9cAYVRO,style:{height:\"100%\",width:\"100%\"},T33EwGIjH:\"\",upxSWoOm6:K_LedhCd7FH9cAYVRO,variant:\"oFSvjXRTz\",width:\"100%\"})})})})},idFH9cAYVRO);})})})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-18idyrm\",\"data-framer-name\":\"Mobile5\",name:\"Mobile5\",children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(QueryData,{query:{from:{alias:\"WfJNxcBMb\",data:Blog,type:\"Collection\"},select:[{collection:\"WfJNxcBMb\",name:\"RwjuDVkDB\",type:\"Identifier\"},{collection:\"WfJNxcBMb\",name:\"iq2hrZ5Qh\",type:\"Identifier\"},{collection:\"WfJNxcBMb\",name:\"K_LedhCd7\",type:\"Identifier\"},{collection:\"WfJNxcBMb\",name:\"lywD3LpDE\",type:\"Identifier\"},{collection:\"WfJNxcBMb\",name:\"N_MXHlLDy\",type:\"Identifier\"},{collection:\"WfJNxcBMb\",name:\"TUb171g5k\",type:\"Identifier\"},{collection:\"WfJNxcBMb\",name:\"id\",type:\"Identifier\"}],where:{left:{collection:\"WfJNxcBMb\",name:\"TryHN7ao8\",type:\"Identifier\"},operator:\"==\",right:{type:\"LiteralValue\",value:\"5\"},type:\"BinaryOperation\"}},children:(collection10,paginationInfo10,loadMore10)=>/*#__PURE__*/_jsx(_Fragment,{children:collection10.map(({id:idWfJNxcBMb,iq2hrZ5Qh:iq2hrZ5QhWfJNxcBMb,K_LedhCd7:K_LedhCd7WfJNxcBMb,lywD3LpDE:lywD3LpDEWfJNxcBMb,N_MXHlLDy:N_MXHlLDyWfJNxcBMb,RwjuDVkDB:RwjuDVkDBWfJNxcBMb,TUb171g5k:TUb171g5kWfJNxcBMb},i)=>{iq2hrZ5QhWfJNxcBMb!==null&&iq2hrZ5QhWfJNxcBMb!==void 0?iq2hrZ5QhWfJNxcBMb:iq2hrZ5QhWfJNxcBMb=\"\";K_LedhCd7WfJNxcBMb!==null&&K_LedhCd7WfJNxcBMb!==void 0?K_LedhCd7WfJNxcBMb:K_LedhCd7WfJNxcBMb=\"\";N_MXHlLDyWfJNxcBMb!==null&&N_MXHlLDyWfJNxcBMb!==void 0?N_MXHlLDyWfJNxcBMb:N_MXHlLDyWfJNxcBMb=\"\";TUb171g5kWfJNxcBMb!==null&&TUb171g5kWfJNxcBMb!==void 0?TUb171g5kWfJNxcBMb:TUb171g5kWfJNxcBMb=\"\";return /*#__PURE__*/_jsx(LayoutGroup,{id:`WfJNxcBMb-${idWfJNxcBMb}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{TUb171g5k:TUb171g5kWfJNxcBMb},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-bc7bvs-container\",children:/*#__PURE__*/_jsx(BlogCard,{FhwE8cCXW:toResponsiveImage(RwjuDVkDBWfJNxcBMb),height:\"100%\",hhUA3NQuU:N_MXHlLDyWfJNxcBMb,id:\"oKhgrx_tR\",Imxg_39iX:toDateString(lywD3LpDEWfJNxcBMb,{dateStyle:\"medium\",locale:\"\"},activeLocaleCode),layoutId:\"oKhgrx_tR\",smLtcOMeh:iq2hrZ5QhWfJNxcBMb,style:{height:\"100%\",width:\"100%\"},T33EwGIjH:\"\",upxSWoOm6:K_LedhCd7WfJNxcBMb,variant:\"oFSvjXRTz\",width:\"100%\"})})})})},idWfJNxcBMb);})})})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-gskamx\",\"data-framer-name\":\"Mobile6\",name:\"Mobile6\",children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(QueryData,{query:{from:{alias:\"JoGU5bf3T\",data:Blog,type:\"Collection\"},select:[{collection:\"JoGU5bf3T\",name:\"RwjuDVkDB\",type:\"Identifier\"},{collection:\"JoGU5bf3T\",name:\"iq2hrZ5Qh\",type:\"Identifier\"},{collection:\"JoGU5bf3T\",name:\"K_LedhCd7\",type:\"Identifier\"},{collection:\"JoGU5bf3T\",name:\"lywD3LpDE\",type:\"Identifier\"},{collection:\"JoGU5bf3T\",name:\"N_MXHlLDy\",type:\"Identifier\"},{collection:\"JoGU5bf3T\",name:\"TUb171g5k\",type:\"Identifier\"},{collection:\"JoGU5bf3T\",name:\"id\",type:\"Identifier\"}],where:{left:{collection:\"JoGU5bf3T\",name:\"TryHN7ao8\",type:\"Identifier\"},operator:\"==\",right:{type:\"LiteralValue\",value:\"6\"},type:\"BinaryOperation\"}},children:(collection11,paginationInfo11,loadMore11)=>/*#__PURE__*/_jsx(_Fragment,{children:collection11.map(({id:idJoGU5bf3T,iq2hrZ5Qh:iq2hrZ5QhJoGU5bf3T,K_LedhCd7:K_LedhCd7JoGU5bf3T,lywD3LpDE:lywD3LpDEJoGU5bf3T,N_MXHlLDy:N_MXHlLDyJoGU5bf3T,RwjuDVkDB:RwjuDVkDBJoGU5bf3T,TUb171g5k:TUb171g5kJoGU5bf3T},i)=>{iq2hrZ5QhJoGU5bf3T!==null&&iq2hrZ5QhJoGU5bf3T!==void 0?iq2hrZ5QhJoGU5bf3T:iq2hrZ5QhJoGU5bf3T=\"\";K_LedhCd7JoGU5bf3T!==null&&K_LedhCd7JoGU5bf3T!==void 0?K_LedhCd7JoGU5bf3T:K_LedhCd7JoGU5bf3T=\"\";N_MXHlLDyJoGU5bf3T!==null&&N_MXHlLDyJoGU5bf3T!==void 0?N_MXHlLDyJoGU5bf3T:N_MXHlLDyJoGU5bf3T=\"\";TUb171g5kJoGU5bf3T!==null&&TUb171g5kJoGU5bf3T!==void 0?TUb171g5kJoGU5bf3T:TUb171g5kJoGU5bf3T=\"\";return /*#__PURE__*/_jsx(LayoutGroup,{id:`JoGU5bf3T-${idJoGU5bf3T}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{TUb171g5k:TUb171g5kJoGU5bf3T},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1xdodtz-container\",children:/*#__PURE__*/_jsx(BlogCard,{FhwE8cCXW:toResponsiveImage(RwjuDVkDBJoGU5bf3T),height:\"100%\",hhUA3NQuU:N_MXHlLDyJoGU5bf3T,id:\"ySyN1MGum\",Imxg_39iX:toDateString(lywD3LpDEJoGU5bf3T,{dateStyle:\"medium\",locale:\"\"},activeLocaleCode),layoutId:\"ySyN1MGum\",smLtcOMeh:iq2hrZ5QhJoGU5bf3T,style:{height:\"100%\",width:\"100%\"},T33EwGIjH:\"\",upxSWoOm6:K_LedhCd7JoGU5bf3T,variant:\"oFSvjXRTz\",width:\"100%\"})})})})},idJoGU5bf3T);})})})})})],startFrom:0,style:{height:\"100%\",width:\"100%\"},transitionControl:{damping:40,delay:0,mass:1,stiffness:200,type:\"spring\"},width:\"100%\"})})})]})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-nivajs\",\"data-framer-name\":\"footer\",name:\"footer\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-110pjft\",\"data-framer-name\":\"gray-shape\",name:\"gray-shape\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1rdncsu\",\"data-framer-name\":\"footer-bg-shape\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:405,intrinsicWidth:1920,name:\"footer-bg-shape\",svg:'<svg width=\"1920\" height=\"405\" viewBox=\"0 0 1920 405\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M2.65784 0H0V405H1920V275C1829.57 279.336 1742.39 283.699 1658.44 287.9C607.058 340.51 63.209 367.723 2.65784 0Z\" fill=\"#F5F5F7\"/>\\n</svg>\\n',withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{fKGbYbnEd:{y:3288.8},y3ZczbyTo:{width:\"100vw\",y:2587.8},yRbBSMZd5:{y:2907.8}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:371,width:\"max(100vw - 100px, 1px)\",y:3280.8,children:/*#__PURE__*/_jsx(Container,{className:\"framer-8z5wal-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{y3ZczbyTo:{variant:\"tO4ZVQzPg\"},yRbBSMZd5:{variant:\"hPZseJjAE\"}},children:/*#__PURE__*/_jsx(Footer,{height:\"100%\",id:\"f5bXwkTjm\",k8vVh3wVU:\"var(--token-10848664-432d-4e73-afdb-28ccc9331cf5, rgb(245, 245, 247))\",layoutId:\"f5bXwkTjm\",style:{width:\"100%\"},variant:\"AeG44crad\",width:\"100%\"})})})})})]}),/*#__PURE__*/_jsx(Overlay,{children:overlay=>/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/_jsxs(MotionDivWithOptimizedAppearEffect,{animate:animation,className:\"framer-1vvbsk0\",\"data-framer-appear-id\":\"1vvbsk0\",\"data-framer-name\":\"CTA Template\",id:\"1vvbsk0\",initial:animation1,name:\"CTA Template\",onTap:onTap3bnx0g({overlay}),optimized:true,style:{transformPerspective:1200},children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItQm9sZA==\",\"--framer-font-family\":'\"Inter-Bold\", \"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"13px\",\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"1em\",\"--framer-text-color\":\"var(--token-6f560874-1f36-4372-8fd6-ec39184a741d, rgb(30, 21, 21))\"},children:\"Download Haylie Template\"})}),className:\"framer-1d73e5b\",fonts:[\"Inter-Bold\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(AnimatePresence,{children:overlay.visible&&/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/ReactDOM.createPortal(/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(motion.div,{animate:{opacity:1,transition:{delay:0,duration:.3,ease:[.5,0,.88,.77],type:\"tween\"}},className:\"framer-1c3r8ff\",\"data-framer-portal-id\":\"1vvbsk0\",exit:{opacity:0,transition:{delay:0,duration:0,ease:[0,0,1,1],type:\"tween\"}},initial:{opacity:0},onTap:()=>overlay.hide()},\"oZEcivGpU\"),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{animate:animation3,className:\"framer-k671r5-container\",\"data-framer-portal-id\":\"1vvbsk0\",exit:animation2,initial:animation4,style:{transformPerspective:1200},transformTemplate:transformTemplate1,children:/*#__PURE__*/_jsx(Loading,{height:\"100%\",id:\"SDVONuwfQ\",layoutId:\"SDVONuwfQ\",style:{height:\"100%\"},variant:\"iaqYK6kGi\",width:\"100%\"})})}),/*#__PURE__*/_jsx(motion.div,{animate:animation6,className:\"framer-1epcmfy\",\"data-framer-name\":\"Embed\",\"data-framer-portal-id\":\"1vvbsk0\",exit:animation5,initial:animation7,name:\"Embed\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-jmy73u-container\",children:/*#__PURE__*/_jsx(Embed1,{height:\"100%\",html:\"\",id:\"aa348TIwo\",layoutId:\"aa348TIwo\",style:{height:\"100%\",width:\"100%\"},type:\"url\",url:\"https://babarogic.lemonsqueezy.com/checkout/buy/07f12819-4738-4c77-ac16-528bf545c0be?discount=0\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1u4dhsf\",\"data-framer-name\":\"Close\",\"data-framer-portal-id\":\"1vvbsk0\",name:\"Close\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1inelvy\",\"data-framer-name\":\"Close-button\",name:\"Close-button\",onTap:onTap1wnntms({overlay}),whileHover:animation8,children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1je3m94-container\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"rgb(122, 122, 122)\",height:\"100%\",iconSearch:\"x\",iconSelection:\"House\",id:\"xnNwc3mKx\",layoutId:\"xnNwc3mKx\",mirrored:false,selectByList:false,style:{height:\"100%\",width:\"100%\"},weight:\"bold\",width:\"100%\"})})})})})]}),document.querySelector(\"#overlay\"))})})]})})})]}),/*#__PURE__*/_jsx(\"div\",{className:cx(serializationHash,...sharedStyleClassNames),id:\"overlay\"})]})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",`.${metadata.bodyClassName}-framer-p6YTq { background: var(--token-765d4d1c-9f94-47f0-8b63-48d5fa27cccf, rgb(254, 254, 254)) /* {\"name\":\"white\"} */; }`,\".framer-p6YTq.framer-1klcubh, .framer-p6YTq .framer-1klcubh { display: block; }\",\".framer-p6YTq.framer-1uvstgg { align-content: center; align-items: center; background-color: var(--token-765d4d1c-9f94-47f0-8b63-48d5fa27cccf, #fefefe); display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 1280px; }\",\".framer-p6YTq .framer-1m6xatk { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; left: 50%; overflow: visible; padding: 20px 0px 0px 0px; position: fixed; top: 16px; transform: translateX(-50%); width: min-content; z-index: 10; }\",\".framer-p6YTq .framer-1541byw-container { flex: none; height: auto; position: relative; width: auto; z-index: 10; }\",\".framer-p6YTq .framer-1r6mgu5, .framer-p6YTq .framer-1rdhp4s, .framer-p6YTq .framer-4aypaa { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-p6YTq .framer-11jkb45 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 64px; height: min-content; justify-content: center; max-width: 1180px; overflow: visible; padding: 160px 32px 80px 32px; position: relative; width: 100%; }\",\".framer-p6YTq .framer-1ub95dr { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 5px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-p6YTq .framer-p2vadq { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; text-decoration: none; width: min-content; }\",\".framer-p6YTq .framer-ty91o5 { flex: none; height: 24px; overflow: hidden; position: relative; width: 24px; }\",\".framer-p6YTq .framer-1j95zsj { flex: none; height: 24px; left: 0px; position: absolute; top: 0px; width: 24px; }\",\".framer-p6YTq .framer-1wrxigh, .framer-p6YTq .framer-xfglgg, .framer-p6YTq .framer-1gilw74, .framer-p6YTq .framer-1o7pdzo, .framer-p6YTq .framer-16h5oc0, .framer-p6YTq .framer-1uuks14 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-p6YTq .framer-9592iy, .framer-p6YTq .framer-1b3izv, .framer-p6YTq .framer-1rf5xot, .framer-p6YTq .framer-qii42o, .framer-p6YTq .framer-eqi0u0, .framer-p6YTq .framer-1ja0iql { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-p6YTq .framer-1ffcgil { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; max-width: 898px; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-p6YTq .framer-13ytsny, .framer-p6YTq .framer-jzcw9s, .framer-p6YTq .framer-ysrqg { flex: 1 0 0px; height: auto; position: relative; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; }\",\".framer-p6YTq .framer-b4rmlo, .framer-p6YTq .framer-1n7f0er { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-p6YTq .framer-s9kln6 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 48px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-p6YTq .framer-15sv093 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-p6YTq .framer-zn4ajg { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 5px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-p6YTq .framer-tkhs5d { border-bottom-left-radius: 32px; border-bottom-right-radius: 32px; border-top-left-radius: 32px; border-top-right-radius: 32px; flex: none; height: 32px; position: relative; width: 32px; }\",\".framer-p6YTq .framer-rbqqx4 { border-bottom-left-radius: 12px; border-bottom-right-radius: 12px; border-top-left-radius: 12px; border-top-right-radius: 12px; flex: none; height: 752px; position: relative; width: 100%; }\",\".framer-p6YTq .framer-omce4g { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 36px; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-p6YTq .framer-focrng-container { flex: none; height: auto; position: relative; width: auto; }\",\".framer-p6YTq .framer-z4ou02, .framer-p6YTq .framer-hosr6w, .framer-p6YTq .framer-e1inqq { --border-bottom-width: 1px; --border-color: var(--token-e7401411-8529-496d-bafd-88f52c3fc7d6, #e3e5e8); --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; border-bottom-left-radius: 8px; border-bottom-right-radius: 8px; border-top-left-radius: 8px; border-top-right-radius: 8px; flex: none; height: 36px; overflow: hidden; position: relative; text-decoration: none; width: 36px; will-change: var(--framer-will-change-override, transform); }\",\".framer-p6YTq .framer-tt20fz, .framer-p6YTq .framer-4opwcc, .framer-p6YTq .framer-1xie9at { flex: none; height: 24px; left: calc(50.00000000000002% - 24px / 2); position: absolute; top: calc(50.00000000000002% - 24px / 2); width: 24px; }\",\".framer-p6YTq .framer-8r95ut { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 32px; height: min-content; justify-content: flex-start; padding: 0px 100px 0px 100px; position: relative; width: 100%; }\",\".framer-p6YTq .framer-11bw9mc, .framer-p6YTq .framer-cs2as1 { --framer-paragraph-spacing: 32px; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-p6YTq .framer-12nsyb7, .framer-p6YTq .framer-1t81285 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-p6YTq .framer-tj31hh { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 916px; word-break: break-word; word-wrap: break-word; }\",\".framer-p6YTq .framer-15ltob { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 48px; height: min-content; justify-content: flex-start; max-width: 1180px; overflow: visible; padding: 80px 32px 120px 32px; position: relative; width: 100%; }\",\".framer-p6YTq .framer-1cuw1fo { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 32px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 800px; z-index: 1; }\",\".framer-p6YTq .framer-jprje3 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-p6YTq .framer-1qajif6 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-p6YTq .framer-1rtj8me { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-p6YTq .framer-1wk5r0i-container { flex: none; height: auto; position: relative; width: 100%; }\",\".framer-p6YTq .framer-1cel6ln-container { flex: none; height: 572px; position: relative; width: 100%; z-index: 1; }\",\".framer-p6YTq .framer-13jkwo7, .framer-p6YTq .framer-193d6tj, .framer-p6YTq .framer-k4f3ek, .framer-p6YTq .framer-1prdx3l, .framer-p6YTq .framer-11dwelt, .framer-p6YTq .framer-19xjzi8, .framer-p6YTq .framer-kn83mg, .framer-p6YTq .framer-1b212uf, .framer-p6YTq .framer-1r0fpiv, .framer-p6YTq .framer-aevhhd, .framer-p6YTq .framer-18idyrm, .framer-p6YTq .framer-gskamx { align-content: flex-start; align-items: flex-start; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: flex-start; padding: 0px; position: relative; width: min-content; }\",\".framer-p6YTq .framer-9vfuzn-container, .framer-p6YTq .framer-861kne-container, .framer-p6YTq .framer-16ovq6c-container, .framer-p6YTq .framer-1rlnpo7-container, .framer-p6YTq .framer-6hpbjh-container, .framer-p6YTq .framer-14rp43j-container { flex: none; height: 491px; position: relative; width: 393px; }\",\".framer-p6YTq .framer-rpq3i5-container { flex: none; height: 464px; position: relative; width: 100%; z-index: 10; }\",\".framer-p6YTq .framer-1gjpahk-container, .framer-p6YTq .framer-1kl2aaz-container, .framer-p6YTq .framer-8j5npb-container, .framer-p6YTq .framer-ttg67-container, .framer-p6YTq .framer-bc7bvs-container, .framer-p6YTq .framer-1xdodtz-container { flex: none; height: 464px; position: relative; width: 330px; }\",\".framer-p6YTq .framer-nivajs { align-content: center; align-items: center; background-color: var(--token-10848664-432d-4e73-afdb-28ccc9331cf5, #f5f5f7); display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 0px 50px 0px 50px; position: relative; width: 100%; }\",\".framer-p6YTq .framer-110pjft { flex: none; height: 546px; left: -65px; overflow: hidden; position: absolute; right: 0px; top: -545px; z-index: 0; }\",\".framer-p6YTq .framer-1rdncsu { flex: none; height: 405px; left: 0px; position: absolute; right: 0px; top: 210px; }\",\".framer-p6YTq .framer-8z5wal-container { flex: 1 0 0px; height: auto; position: relative; width: 1px; }\",\".framer-p6YTq .framer-1vvbsk0 { align-content: center; align-items: center; background-color: #ffffff; border-bottom-left-radius: 10px; border-bottom-right-radius: 10px; border-top-left-radius: 10px; border-top-right-radius: 10px; bottom: 66px; box-shadow: 0px 0.6021873017743928px 0.6021873017743928px -1.25px rgba(0, 0, 0, 0.18), 0px 2.288533303243457px 2.288533303243457px -2.5px rgba(0, 0, 0, 0.15889), 0px 10px 10px -3.75px rgba(0, 0, 0, 0.0625); cursor: pointer; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 12px; position: fixed; right: 20px; width: min-content; will-change: var(--framer-will-change-override, transform); z-index: 10; }\",\".framer-p6YTq .framer-1d73e5b { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-p6YTq .framer-1c3r8ff { background-color: rgba(13, 13, 13, 0.8); inset: 0px; position: fixed; user-select: none; z-index: 1; }\",\".framer-p6YTq .framer-k671r5-container { flex: none; height: 8px; left: 50%; position: fixed; top: 50%; transform: translate(-50%, -50%); width: auto; z-index: 1; }\",\".framer-p6YTq .framer-1epcmfy { bottom: 0px; flex: none; left: 0px; overflow: hidden; position: fixed; right: 0px; top: 60px; z-index: 1; }\",\".framer-p6YTq .framer-jmy73u-container { bottom: 0px; flex: none; left: 0px; position: absolute; right: 0px; top: 0px; }\",\".framer-p6YTq .framer-1u4dhsf { flex: none; height: 60px; left: 0px; overflow: hidden; position: fixed; right: 0px; top: 0px; z-index: 1; }\",\".framer-p6YTq .framer-1inelvy { align-content: center; align-items: center; cursor: pointer; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 20px; justify-content: center; left: calc(50.00000000000002% - 20px / 2); overflow: hidden; padding: 0px; position: absolute; top: calc(50.00000000000002% - 20px / 2); width: 20px; }\",\".framer-p6YTq .framer-1je3m94-container { flex: none; height: 20px; position: relative; width: 20px; }\",\"@supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-p6YTq.framer-1uvstgg, .framer-p6YTq .framer-1m6xatk, .framer-p6YTq .framer-1r6mgu5, .framer-p6YTq .framer-11jkb45, .framer-p6YTq .framer-1ub95dr, .framer-p6YTq .framer-p2vadq, .framer-p6YTq .framer-1wrxigh, .framer-p6YTq .framer-1rdhp4s, .framer-p6YTq .framer-xfglgg, .framer-p6YTq .framer-1ffcgil, .framer-p6YTq .framer-b4rmlo, .framer-p6YTq .framer-s9kln6, .framer-p6YTq .framer-15sv093, .framer-p6YTq .framer-zn4ajg, .framer-p6YTq .framer-1gilw74, .framer-p6YTq .framer-1o7pdzo, .framer-p6YTq .framer-16h5oc0, .framer-p6YTq .framer-omce4g, .framer-p6YTq .framer-8r95ut, .framer-p6YTq .framer-12nsyb7, .framer-p6YTq .framer-4aypaa, .framer-p6YTq .framer-15ltob, .framer-p6YTq .framer-1cuw1fo, .framer-p6YTq .framer-1n7f0er, .framer-p6YTq .framer-jprje3, .framer-p6YTq .framer-1uuks14, .framer-p6YTq .framer-1qajif6, .framer-p6YTq .framer-1rtj8me, .framer-p6YTq .framer-1t81285, .framer-p6YTq .framer-13jkwo7, .framer-p6YTq .framer-193d6tj, .framer-p6YTq .framer-k4f3ek, .framer-p6YTq .framer-1prdx3l, .framer-p6YTq .framer-11dwelt, .framer-p6YTq .framer-19xjzi8, .framer-p6YTq .framer-kn83mg, .framer-p6YTq .framer-1b212uf, .framer-p6YTq .framer-1r0fpiv, .framer-p6YTq .framer-aevhhd, .framer-p6YTq .framer-18idyrm, .framer-p6YTq .framer-gskamx, .framer-p6YTq .framer-nivajs, .framer-p6YTq .framer-1vvbsk0, .framer-p6YTq .framer-1inelvy { gap: 0px; } .framer-p6YTq.framer-1uvstgg > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-p6YTq.framer-1uvstgg > :first-child, .framer-p6YTq .framer-1r6mgu5 > :first-child, .framer-p6YTq .framer-11jkb45 > :first-child, .framer-p6YTq .framer-1rdhp4s > :first-child, .framer-p6YTq .framer-b4rmlo > :first-child, .framer-p6YTq .framer-8r95ut > :first-child, .framer-p6YTq .framer-4aypaa > :first-child, .framer-p6YTq .framer-15ltob > :first-child, .framer-p6YTq .framer-1cuw1fo > :first-child, .framer-p6YTq .framer-1n7f0er > :first-child, .framer-p6YTq .framer-jprje3 > :first-child { margin-top: 0px; } .framer-p6YTq.framer-1uvstgg > :last-child, .framer-p6YTq .framer-1r6mgu5 > :last-child, .framer-p6YTq .framer-11jkb45 > :last-child, .framer-p6YTq .framer-1rdhp4s > :last-child, .framer-p6YTq .framer-b4rmlo > :last-child, .framer-p6YTq .framer-8r95ut > :last-child, .framer-p6YTq .framer-4aypaa > :last-child, .framer-p6YTq .framer-15ltob > :last-child, .framer-p6YTq .framer-1cuw1fo > :last-child, .framer-p6YTq .framer-1n7f0er > :last-child, .framer-p6YTq .framer-jprje3 > :last-child { margin-bottom: 0px; } .framer-p6YTq .framer-1m6xatk > *, .framer-p6YTq .framer-p2vadq > *, .framer-p6YTq .framer-1wrxigh > *, .framer-p6YTq .framer-xfglgg > *, .framer-p6YTq .framer-1ffcgil > *, .framer-p6YTq .framer-15sv093 > *, .framer-p6YTq .framer-1gilw74 > *, .framer-p6YTq .framer-1o7pdzo > *, .framer-p6YTq .framer-16h5oc0 > *, .framer-p6YTq .framer-omce4g > *, .framer-p6YTq .framer-12nsyb7 > *, .framer-p6YTq .framer-1uuks14 > *, .framer-p6YTq .framer-1qajif6 > *, .framer-p6YTq .framer-1rtj8me > *, .framer-p6YTq .framer-1t81285 > *, .framer-p6YTq .framer-nivajs > *, .framer-p6YTq .framer-1vvbsk0 > *, .framer-p6YTq .framer-1inelvy > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-p6YTq .framer-1m6xatk > :first-child, .framer-p6YTq .framer-1ub95dr > :first-child, .framer-p6YTq .framer-p2vadq > :first-child, .framer-p6YTq .framer-1wrxigh > :first-child, .framer-p6YTq .framer-xfglgg > :first-child, .framer-p6YTq .framer-1ffcgil > :first-child, .framer-p6YTq .framer-s9kln6 > :first-child, .framer-p6YTq .framer-15sv093 > :first-child, .framer-p6YTq .framer-zn4ajg > :first-child, .framer-p6YTq .framer-1gilw74 > :first-child, .framer-p6YTq .framer-1o7pdzo > :first-child, .framer-p6YTq .framer-16h5oc0 > :first-child, .framer-p6YTq .framer-omce4g > :first-child, .framer-p6YTq .framer-12nsyb7 > :first-child, .framer-p6YTq .framer-1uuks14 > :first-child, .framer-p6YTq .framer-1qajif6 > :first-child, .framer-p6YTq .framer-1rtj8me > :first-child, .framer-p6YTq .framer-1t81285 > :first-child, .framer-p6YTq .framer-13jkwo7 > :first-child, .framer-p6YTq .framer-193d6tj > :first-child, .framer-p6YTq .framer-k4f3ek > :first-child, .framer-p6YTq .framer-1prdx3l > :first-child, .framer-p6YTq .framer-11dwelt > :first-child, .framer-p6YTq .framer-19xjzi8 > :first-child, .framer-p6YTq .framer-kn83mg > :first-child, .framer-p6YTq .framer-1b212uf > :first-child, .framer-p6YTq .framer-1r0fpiv > :first-child, .framer-p6YTq .framer-aevhhd > :first-child, .framer-p6YTq .framer-18idyrm > :first-child, .framer-p6YTq .framer-gskamx > :first-child, .framer-p6YTq .framer-nivajs > :first-child, .framer-p6YTq .framer-1vvbsk0 > :first-child, .framer-p6YTq .framer-1inelvy > :first-child { margin-left: 0px; } .framer-p6YTq .framer-1m6xatk > :last-child, .framer-p6YTq .framer-1ub95dr > :last-child, .framer-p6YTq .framer-p2vadq > :last-child, .framer-p6YTq .framer-1wrxigh > :last-child, .framer-p6YTq .framer-xfglgg > :last-child, .framer-p6YTq .framer-1ffcgil > :last-child, .framer-p6YTq .framer-s9kln6 > :last-child, .framer-p6YTq .framer-15sv093 > :last-child, .framer-p6YTq .framer-zn4ajg > :last-child, .framer-p6YTq .framer-1gilw74 > :last-child, .framer-p6YTq .framer-1o7pdzo > :last-child, .framer-p6YTq .framer-16h5oc0 > :last-child, .framer-p6YTq .framer-omce4g > :last-child, .framer-p6YTq .framer-12nsyb7 > :last-child, .framer-p6YTq .framer-1uuks14 > :last-child, .framer-p6YTq .framer-1qajif6 > :last-child, .framer-p6YTq .framer-1rtj8me > :last-child, .framer-p6YTq .framer-1t81285 > :last-child, .framer-p6YTq .framer-13jkwo7 > :last-child, .framer-p6YTq .framer-193d6tj > :last-child, .framer-p6YTq .framer-k4f3ek > :last-child, .framer-p6YTq .framer-1prdx3l > :last-child, .framer-p6YTq .framer-11dwelt > :last-child, .framer-p6YTq .framer-19xjzi8 > :last-child, .framer-p6YTq .framer-kn83mg > :last-child, .framer-p6YTq .framer-1b212uf > :last-child, .framer-p6YTq .framer-1r0fpiv > :last-child, .framer-p6YTq .framer-aevhhd > :last-child, .framer-p6YTq .framer-18idyrm > :last-child, .framer-p6YTq .framer-gskamx > :last-child, .framer-p6YTq .framer-nivajs > :last-child, .framer-p6YTq .framer-1vvbsk0 > :last-child, .framer-p6YTq .framer-1inelvy > :last-child { margin-right: 0px; } .framer-p6YTq .framer-1r6mgu5 > *, .framer-p6YTq .framer-1rdhp4s > *, .framer-p6YTq .framer-4aypaa > *, .framer-p6YTq .framer-jprje3 > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-p6YTq .framer-11jkb45 > * { margin: 0px; margin-bottom: calc(64px / 2); margin-top: calc(64px / 2); } .framer-p6YTq .framer-1ub95dr > *, .framer-p6YTq .framer-zn4ajg > * { margin: 0px; margin-left: calc(5px / 2); margin-right: calc(5px / 2); } .framer-p6YTq .framer-b4rmlo > *, .framer-p6YTq .framer-1n7f0er > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } .framer-p6YTq .framer-s9kln6 > * { margin: 0px; margin-left: calc(48px / 2); margin-right: calc(48px / 2); } .framer-p6YTq .framer-8r95ut > *, .framer-p6YTq .framer-1cuw1fo > * { margin: 0px; margin-bottom: calc(32px / 2); margin-top: calc(32px / 2); } .framer-p6YTq .framer-15ltob > * { margin: 0px; margin-bottom: calc(48px / 2); margin-top: calc(48px / 2); } .framer-p6YTq .framer-13jkwo7 > *, .framer-p6YTq .framer-193d6tj > *, .framer-p6YTq .framer-k4f3ek > *, .framer-p6YTq .framer-1prdx3l > *, .framer-p6YTq .framer-11dwelt > *, .framer-p6YTq .framer-19xjzi8 > *, .framer-p6YTq .framer-kn83mg > *, .framer-p6YTq .framer-1b212uf > *, .framer-p6YTq .framer-1r0fpiv > *, .framer-p6YTq .framer-aevhhd > *, .framer-p6YTq .framer-18idyrm > *, .framer-p6YTq .framer-gskamx > * { margin: 0px; margin-left: calc(16px / 2); margin-right: calc(16px / 2); } }\",...sharedStyle.css,...sharedStyle1.css,...sharedStyle2.css,...sharedStyle3.css,...sharedStyle4.css,...sharedStyle5.css,...sharedStyle6.css,...sharedStyle7.css,...sharedStyle8.css,...sharedStyle9.css,...sharedStyle10.css,...sharedStyle11.css,...sharedStyle12.css,'.framer-p6YTq[data-border=\"true\"]::after, .framer-p6YTq [data-border=\"true\"]::after { content: \"\"; border-width: var(--border-top-width, 0) var(--border-right-width, 0) var(--border-bottom-width, 0) var(--border-left-width, 0); border-color: var(--border-color, none); border-style: var(--border-style, none); width: 100%; height: 100%; position: absolute; box-sizing: border-box; left: 0; top: 0; border-radius: inherit; pointer-events: none; }',`@media (min-width: 810px) and (max-width: 1279px) { .${metadata.bodyClassName}-framer-p6YTq { background: var(--token-765d4d1c-9f94-47f0-8b63-48d5fa27cccf, rgb(254, 254, 254)) /* {\"name\":\"white\"} */; } .framer-p6YTq.framer-1uvstgg { width: 810px; } .framer-p6YTq .framer-11jkb45 { padding: 160px 60px 80px 60px; } .framer-p6YTq .framer-rbqqx4 { height: 424px; } .framer-p6YTq .framer-8r95ut { padding: 0px; } .framer-p6YTq .framer-tj31hh { flex: 1 0 0px; width: 1px; } .framer-p6YTq .framer-15ltob { align-content: flex-start; align-items: flex-start; gap: 64px; padding: 40px 60px 120px 60px; } .framer-p6YTq .framer-1cuw1fo { order: 0; width: 100%; } .framer-p6YTq .framer-1n7f0er { gap: 16px; } .framer-p6YTq .framer-jprje3 { gap: 5px; } .framer-p6YTq .framer-ysrqg { max-width: 690px; } .framer-p6YTq .framer-1cel6ln-container { order: 1; width: 750px; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-p6YTq .framer-15ltob, .framer-p6YTq .framer-1n7f0er, .framer-p6YTq .framer-jprje3 { gap: 0px; } .framer-p6YTq .framer-15ltob > * { margin: 0px; margin-bottom: calc(64px / 2); margin-top: calc(64px / 2); } .framer-p6YTq .framer-15ltob > :first-child, .framer-p6YTq .framer-1n7f0er > :first-child, .framer-p6YTq .framer-jprje3 > :first-child { margin-top: 0px; } .framer-p6YTq .framer-15ltob > :last-child, .framer-p6YTq .framer-1n7f0er > :last-child, .framer-p6YTq .framer-jprje3 > :last-child { margin-bottom: 0px; } .framer-p6YTq .framer-1n7f0er > * { margin: 0px; margin-bottom: calc(16px / 2); margin-top: calc(16px / 2); } .framer-p6YTq .framer-jprje3 > * { margin: 0px; margin-bottom: calc(5px / 2); margin-top: calc(5px / 2); } }}`,`@media (max-width: 809px) { .${metadata.bodyClassName}-framer-p6YTq { background: var(--token-765d4d1c-9f94-47f0-8b63-48d5fa27cccf, rgb(254, 254, 254)) /* {\"name\":\"white\"} */; } .framer-p6YTq.framer-1uvstgg { width: 390px; } .framer-p6YTq .framer-1m6xatk { order: 0; } .framer-p6YTq .framer-1r6mgu5 { order: 1; } .framer-p6YTq .framer-11jkb45 { gap: 32px; padding: 160px 30px 80px 30px; } .framer-p6YTq .framer-ty91o5 { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; padding: 0px; width: min-content; } .framer-p6YTq .framer-1j95zsj { left: unset; position: relative; top: unset; } .framer-p6YTq .framer-s9kln6 { align-content: flex-start; align-items: flex-start; flex-direction: column; gap: 10px; justify-content: flex-start; } .framer-p6YTq .framer-rbqqx4 { height: 264px; } .framer-p6YTq .framer-8r95ut { padding: 0px; } .framer-p6YTq .framer-4aypaa { order: 2; padding: 0px 0px 40px 0px; } .framer-p6YTq .framer-15ltob { align-content: flex-start; align-items: flex-start; padding: 60px 30px 80px 30px; } .framer-p6YTq .framer-1cuw1fo { gap: 24px; order: 0; width: 100%; } .framer-p6YTq .framer-1n7f0er { gap: 16px; } .framer-p6YTq .framer-jprje3 { gap: 5px; } .framer-p6YTq .framer-rpq3i5-container { order: 3; } .framer-p6YTq .framer-nivajs { flex-direction: column; order: 3; padding: 0px; } .framer-p6YTq .framer-8z5wal-container { flex: none; width: 100%; } .framer-p6YTq .framer-1vvbsk0 { order: 4; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-p6YTq .framer-11jkb45, .framer-p6YTq .framer-ty91o5, .framer-p6YTq .framer-s9kln6, .framer-p6YTq .framer-1cuw1fo, .framer-p6YTq .framer-1n7f0er, .framer-p6YTq .framer-jprje3, .framer-p6YTq .framer-nivajs { gap: 0px; } .framer-p6YTq .framer-11jkb45 > * { margin: 0px; margin-bottom: calc(32px / 2); margin-top: calc(32px / 2); } .framer-p6YTq .framer-11jkb45 > :first-child, .framer-p6YTq .framer-s9kln6 > :first-child, .framer-p6YTq .framer-1cuw1fo > :first-child, .framer-p6YTq .framer-1n7f0er > :first-child, .framer-p6YTq .framer-jprje3 > :first-child, .framer-p6YTq .framer-nivajs > :first-child { margin-top: 0px; } .framer-p6YTq .framer-11jkb45 > :last-child, .framer-p6YTq .framer-s9kln6 > :last-child, .framer-p6YTq .framer-1cuw1fo > :last-child, .framer-p6YTq .framer-1n7f0er > :last-child, .framer-p6YTq .framer-jprje3 > :last-child, .framer-p6YTq .framer-nivajs > :last-child { margin-bottom: 0px; } .framer-p6YTq .framer-ty91o5 > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-p6YTq .framer-ty91o5 > :first-child { margin-left: 0px; } .framer-p6YTq .framer-ty91o5 > :last-child { margin-right: 0px; } .framer-p6YTq .framer-s9kln6 > *, .framer-p6YTq .framer-nivajs > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-p6YTq .framer-1cuw1fo > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } .framer-p6YTq .framer-1n7f0er > * { margin: 0px; margin-bottom: calc(16px / 2); margin-top: calc(16px / 2); } .framer-p6YTq .framer-jprje3 > * { margin: 0px; margin-bottom: calc(5px / 2); margin-top: calc(5px / 2); } }}`,`@media (min-width: 1920px) { .${metadata.bodyClassName}-framer-p6YTq { background: var(--token-765d4d1c-9f94-47f0-8b63-48d5fa27cccf, rgb(254, 254, 254)) /* {\"name\":\"white\"} */; } .framer-p6YTq.framer-1uvstgg { width: 1920px; } .framer-p6YTq .framer-1cel6ln-container { height: 580px; width: 1014px; }}`];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 4428\n * @framerIntrinsicWidth 1280\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"yRbBSMZd5\":{\"layout\":[\"fixed\",\"auto\"]},\"y3ZczbyTo\":{\"layout\":[\"fixed\",\"auto\"]},\"fKGbYbnEd\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n * @framerResponsiveScreen\n */const FramerMiXg3kcTC=withCSS(Component,css,\"framer-p6YTq\");export default FramerMiXg3kcTC;FramerMiXg3kcTC.displayName=\"Page\";FramerMiXg3kcTC.defaultProps={height:4428,width:1280};addFonts(FramerMiXg3kcTC,[{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:\"General Sans\",source:\"fontshare\",style:\"normal\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/K46YRH762FH3QJ25IQM3VAXAKCHEXXW4/ISLWQPUZHZF33LRIOTBMFOJL57GBGQ4B/3ZLMEXZEQPLTEPMHTQDAUXP5ZZXCZAEN.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/DpPBYI0sL4fYLgAkX8KXOPVt7c.woff2\",weight:\"700\"},{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/4RAEQdEOrcnDkhHiiCbJOw92Lk.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/1K3W8DizY3v4emK8Mb08YHxTbs.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/tUSCtfYVM1I1IchuyCwz9gDdQ.woff2\",weight:\"700\"},{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/VgYFWiwsAC5OYxAycRXXvhze58.woff2\",weight:\"700\"},{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/DXD0Q7LSl7HEvDzucnyLnGBHM.woff2\",weight:\"700\"},{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/GIryZETIX4IFypco5pYZONKhJIo.woff2\",weight:\"700\"}]},...MenuFonts,...ButtonClipboardFonts,...EmbedFonts,...BlogCardFonts,...SlideshowFonts,...FooterFonts,...LoadingFonts,...Embed1Fonts,...PhosphorFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts),...getFontsFromSharedStyle(sharedStyle2.fonts),...getFontsFromSharedStyle(sharedStyle3.fonts),...getFontsFromSharedStyle(sharedStyle4.fonts),...getFontsFromSharedStyle(sharedStyle5.fonts),...getFontsFromSharedStyle(sharedStyle6.fonts),...getFontsFromSharedStyle(sharedStyle7.fonts),...getFontsFromSharedStyle(sharedStyle8.fonts),...getFontsFromSharedStyle(sharedStyle9.fonts),...getFontsFromSharedStyle(sharedStyle10.fonts),...getFontsFromSharedStyle(sharedStyle11.fonts),...getFontsFromSharedStyle(sharedStyle12.fonts),...((_componentPresets_fonts=componentPresets.fonts)===null||_componentPresets_fonts===void 0?void 0:_componentPresets_fonts[\"pUDGfh4mF\"])?getFontsFromComponentPreset((_componentPresets_fonts1=componentPresets.fonts)===null||_componentPresets_fonts1===void 0?void 0:_componentPresets_fonts1[\"pUDGfh4mF\"]):[],...((_componentPresets_fonts2=componentPresets.fonts)===null||_componentPresets_fonts2===void 0?void 0:_componentPresets_fonts2[\"lzwXm95_Y\"])?getFontsFromComponentPreset((_componentPresets_fonts3=componentPresets.fonts)===null||_componentPresets_fonts3===void 0?void 0:_componentPresets_fonts3[\"lzwXm95_Y\"]):[]],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerMiXg3kcTC\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\",\"framerResponsiveScreen\":\"\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"yRbBSMZd5\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"y3ZczbyTo\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"fKGbYbnEd\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicHeight\":\"4428\",\"framerIntrinsicWidth\":\"1280\",\"framerDisplayContentsDiv\":\"false\",\"framerImmutableVariables\":\"true\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}"],
  "mappings": "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",
  "names": ["Embed", "type", "url", "html", "p", "EmbedURL", "EmbedHTML", "Instructions", "addPropertyControls", "ControlType", "props", "emptyStateStyle", "centerTextStyle", "onCanvas", "useIsOnCanvas", "state", "setState", "ye", "ue", "isLastEffect", "load", "response", "isBlocked", "message", "error", "ErrorMessage", "LoadingIndicator", "iframeStyle", "getSandbox", "result", "ref", "pe", "hasScript", "div", "executeScripts", "htmlStyle", "node", "script", "name", "value", "child", "containerStyles", "u", "Component", "House_default", "React", "weights", "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", "cycleOrder", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transitions", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "_variant", "ref", "createLayoutDependency", "Component", "Y", "activeLocale", "useLocaleInfo", "style", "className", "layoutId", "restProps", "baseVariant", "classNames", "gestureVariant", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onAppearmp0x9x", "args", "onAppearzzzdal", "onAppear1bu6eta", "onAppear1stn7f8", "onAppearbhte4d", "useOnVariantChange", "defaultLayoutId", "ae", "LayoutGroup", "motion", "cx", "u", "css", "FramerBYidMx2OK", "withCSS", "BYidMx2OK_default", "addPropertyControls", "ControlType", "addFonts", "Clipboard", "props", "label", "content", "fill", "color", "style", "onClick", "font", "hoverOptions", "rest", "deprecatedFont", "useFontControls", "borderRadius", "useRadius", "paddingValue", "usePadding", "handleClick", "te", "ref", "navigator", "p", "motion", "addPropertyControls", "ControlType", "defaultEvents", "fontStore", "fonts", "css", "className", "ClipboardFonts", "getFonts", "Clipboard", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "transition2", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "content", "height", "id", "link", "tap", "width", "props", "_humanReadableVariantMap_props_variant", "_ref", "_ref1", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "ryCon9jsT", "XLA8dU_7F", "MtMXwCJK4", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onTapk0s61l", "args", "onAppear1vhdrck", "useOnVariantChange", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "Link", "u", "cx", "ComponentViewportProvider", "SVG", "RichText2", "css", "FramerUVWKCWT18", "withCSS", "UVWKCWT18_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts", "props", "fonts", "fontStore", "fonts", "css", "className", "fontStore", "fonts", "css", "className", "fontStore", "fonts", "css", "className", "_componentPresets_fonts", "_componentPresets_fonts1", "_componentPresets_fonts2", "_componentPresets_fonts3", "MenuFonts", "getFonts", "Sadhwxx25_default", "ButtonClipboardFonts", "UVWKCWT18_default", "EmbedFonts", "Embed", "BlogCardFonts", "HoqRnGrFT_default", "SlideshowFonts", "Slideshow", "FooterFonts", "w353A_1oN_default", "LoadingFonts", "BYidMx2OK_default", "Embed1Fonts", "PhosphorFonts", "Icon", "MotionDivWithOptimizedAppearEffect", "withOptimizedAppearEffect", "motion", "breakpoints", "isBrowser", "serializationHash", "variantClassNames", "toResponsiveImage", "value", "toDateString", "options", "activeLocale", "date", "display", "dateOptions", "fallbackLocale", "locale", "prefix", "QueryData", "query", "pageSize", "children", "data", "useQueryData", "transition1", "animation", "animation1", "transition2", "animation2", "transformTemplate1", "_", "t", "animation3", "animation4", "transition3", "animation5", "transition4", "animation6", "animation7", "transition5", "animation8", "Overlay", "blockDocumentScrolling", "enabled", "visible", "setVisible", "useOverlayState", "metadata", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "_humanReadableVariantMap_props_variant", "_ref", "Component", "Y", "ref", "setLocale", "useLocaleInfo", "currentPathVariables", "useCurrentPathVariables", "currentRouteData", "iKMqEOfxs_default", "getWhereExpressionFromPathVariables", "getFromCurrentRouteData", "key", "NotFoundError", "_getFromCurrentRouteData", "_getFromCurrentRouteData1", "_getFromCurrentRouteData2", "_getFromCurrentRouteData3", "_getFromCurrentRouteData4", "_getFromCurrentRouteData5", "_getFromCurrentRouteData6", "style", "className", "layoutId", "variant", "iq2hrZ5Qh", "K_LedhCd7", "cn8BlDOCB", "it1GbyzgH", "lywD3LpDE", "N_MXHlLDy", "RwjuDVkDB", "TUb171g5k", "wVFBV5hVc", "TSag_ga1u", "RwjuDVkDBQ1RO39al1", "iq2hrZ5QhQ1RO39al1", "K_LedhCd7Q1RO39al1", "lywD3LpDEQ1RO39al1", "N_MXHlLDyQ1RO39al1", "TUb171g5kQ1RO39al1", "idQ1RO39al1", "RwjuDVkDBMYlxxGP52", "iq2hrZ5QhMYlxxGP52", "K_LedhCd7MYlxxGP52", "lywD3LpDEMYlxxGP52", "N_MXHlLDyMYlxxGP52", "TUb171g5kMYlxxGP52", "idMYlxxGP52", "RwjuDVkDBZA0sHidTl", "iq2hrZ5QhZA0sHidTl", "K_LedhCd7ZA0sHidTl", "lywD3LpDEZA0sHidTl", "N_MXHlLDyZA0sHidTl", "TUb171g5kZA0sHidTl", "idZA0sHidTl", "RwjuDVkDBWsozf4gR4", "iq2hrZ5QhWsozf4gR4", "K_LedhCd7Wsozf4gR4", "lywD3LpDEWsozf4gR4", "N_MXHlLDyWsozf4gR4", "TUb171g5kWsozf4gR4", "idWsozf4gR4", "RwjuDVkDBpmHOZfUDv", "iq2hrZ5QhpmHOZfUDv", "K_LedhCd7pmHOZfUDv", "lywD3LpDEpmHOZfUDv", "N_MXHlLDypmHOZfUDv", "TUb171g5kpmHOZfUDv", "idpmHOZfUDv", "RwjuDVkDBQzCH298ud", "iq2hrZ5QhQzCH298ud", "K_LedhCd7QzCH298ud", "lywD3LpDEQzCH298ud", "N_MXHlLDyQzCH298ud", "TUb171g5kQzCH298ud", "idQzCH298ud", "RwjuDVkDBLI7Dqfsve", "iq2hrZ5QhLI7Dqfsve", "K_LedhCd7LI7Dqfsve", "lywD3LpDELI7Dqfsve", "N_MXHlLDyLI7Dqfsve", "TUb171g5kLI7Dqfsve", "idLI7Dqfsve", "RwjuDVkDBkBhC0CaPW", "iq2hrZ5QhkBhC0CaPW", "K_LedhCd7kBhC0CaPW", "lywD3LpDEkBhC0CaPW", "N_MXHlLDykBhC0CaPW", "TUb171g5kkBhC0CaPW", "idkBhC0CaPW", "RwjuDVkDBhhgLwkHfi", "iq2hrZ5QhhhgLwkHfi", "K_LedhCd7hhgLwkHfi", "lywD3LpDEhhgLwkHfi", "N_MXHlLDyhhgLwkHfi", "TUb171g5khhgLwkHfi", "idhhgLwkHfi", "RwjuDVkDBFH9cAYVRO", "iq2hrZ5QhFH9cAYVRO", "K_LedhCd7FH9cAYVRO", "lywD3LpDEFH9cAYVRO", "N_MXHlLDyFH9cAYVRO", "TUb171g5kFH9cAYVRO", "idFH9cAYVRO", "RwjuDVkDBWfJNxcBMb", "iq2hrZ5QhWfJNxcBMb", "K_LedhCd7WfJNxcBMb", "lywD3LpDEWfJNxcBMb", "N_MXHlLDyWfJNxcBMb", "TUb171g5kWfJNxcBMb", "idWfJNxcBMb", "RwjuDVkDBJoGU5bf3T", "iq2hrZ5QhJoGU5bf3T", "K_LedhCd7JoGU5bf3T", "lywD3LpDEJoGU5bf3T", "N_MXHlLDyJoGU5bf3T", "TUb171g5kJoGU5bf3T", "idJoGU5bf3T", "restProps", "ue", "metadata1", "robotsTag", "ie", "_document_querySelector", "bodyCls", "body", "c", "baseVariant", "hydratedBaseVariant", "useHydratedBreakpointVariants", "gestureVariant", "activeVariantCallback", "delay", "useActiveVariantCallback", "onTap3bnx0g", "overlay", "loadMore", "args", "onTap1wnntms", "ref1", "pe", "activeLocaleCode", "useLocaleCode", "textContent", "router", "useRouter", "isDisplayed", "isDisplayed1", "defaultLayoutId", "ae", "sharedStyleClassNames", "useCustomCursors", "p", "GeneratedComponentContext", "u", "LayoutGroup", "cx", "ComponentViewportProvider", "Container", "PropertyOverrides2", "Link", "SVG", "RichText2", "x", "getLoadingLazyAtYPosition", "Image2", "ResolveLinks", "resolvedLinks", "ComponentPresetsProvider", "ChildrenCanSuspend", "collection", "paginationInfo", "l", "i", "PathVariablesContext", "collection1", "paginationInfo1", "loadMore1", "collection2", "paginationInfo2", "loadMore2", "collection3", "paginationInfo3", "loadMore3", "collection4", "paginationInfo4", "loadMore4", "collection5", "paginationInfo5", "loadMore5", "collection6", "paginationInfo6", "loadMore6", "collection7", "paginationInfo7", "loadMore7", "collection8", "paginationInfo8", "loadMore8", "collection9", "paginationInfo9", "loadMore9", "collection10", "paginationInfo10", "loadMore10", "collection11", "paginationInfo11", "loadMore11", "AnimatePresence", "Ga", "css", "FramerMiXg3kcTC", "withCSS", "MiXg3kcTC_default", "addFonts", "getFontsFromSharedStyle", "fonts", "getFontsFromComponentPreset", "__FramerMetadata__"]
}
