{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/o1PI5S8YtkA5bP5g4dFz/s801VqobGI0Gkh3K9b41/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/brLBMY1Qd1ve56qWAWFG/6xcL7qexl5tMBtOE44lB/FGAdIjPpJ.js", "ssg:https://framerusercontent.com/modules/Vhj1E2zsF2zZIejCoY16/Z9HLZB3Iq8u3jWFiaLMC/xitgTjGVx.js", "ssg:https://framerusercontent.com/modules/N1Dz5UKIopQmRehp09V5/60wuAJZhscBSCwe2gyct/BHjr5zCdR.js", "ssg:https://framerusercontent.com/modules/CGRuycCsYWbwUIs9OTDF/r6DlxPkS1ZbLZZ1QPkaZ/PUeZboehZ.js", "ssg:https://framerusercontent.com/modules/LoDXyXemfYoMK5NtwnkK/Q9ztHJJMgGADU4YVLpfV/qTmsYlXMw.js"],
  "sourcesContent": ["import{jsx as _jsx}from\"react/jsx-runtime\";import{useEffect,useRef,useState}from\"react\";import{addPropertyControls,ControlType}from\"framer\";import{useIsOnCanvas,emptyStateStyle,containerStyles}from\"https://framer.com/m/framer/default-utils.js\";/**\n * @framerIntrinsicWidth 600\n * @framerIntrinsicHeight 400\n *\n * @framerSupportedLayoutWidth fixed\n * @framerSupportedLayoutHeight any-prefer-fixed\n *\n * @framerDisableUnlink\n */export default function Embed({type,url,html,zoom,radius,border,style={}}){if(type===\"url\"&&url){return /*#__PURE__*/_jsx(EmbedUrl,{url:url,zoom:zoom,radius:radius,border:border,style:style});}if(type===\"html\"&&html){return /*#__PURE__*/_jsx(EmbedHtml,{html:html,style:style});}return /*#__PURE__*/_jsx(Instructions,{style:style});}addPropertyControls(Embed,{type:{type:ControlType.Enum,defaultValue:\"url\",displaySegmentedControl:true,options:[\"url\",\"html\"],optionTitles:[\"URL\",\"HTML\"]},url:{title:\"URL\",type:ControlType.String,description:\"Some websites don\u2019t support embedding.\",hidden(props){return props.type!==\"url\";}},html:{title:\"HTML\",type:ControlType.String,displayTextArea:true,hidden(props){return props.type!==\"html\";}},border:{title:\"Border\",type:ControlType.Border,optional:true,hidden(props){return props.type!==\"url\";}},radius:{type:ControlType.BorderRadius,title:\"Radius\",hidden(props){return props.type!==\"url\";}},zoom:{title:\"Zoom\",defaultValue:1,type:ControlType.Number,hidden(props){return props.type!==\"url\";},min:.1,max:1,step:.1,displayStepper:true}});function Instructions({style}){return /*#__PURE__*/_jsx(\"div\",{style:{minHeight:getMinHeight(style),...emptyStateStyle,overflow:\"hidden\",...style},children:/*#__PURE__*/_jsx(\"div\",{style:centerTextStyle,children:\"To embed a website or widget, add it to the properties\\xa0panel.\"})});}function EmbedUrl({url,zoom,radius,border,style}){const hasAutoHeight=!style.height;// Add https:// if the URL does not have a protocol.\nif(!/[a-z]+:\\/\\//.test(url)){url=\"https://\"+url;}const onCanvas=useIsOnCanvas();// We need to check if the url is blocked inside an iframe by the X-Frame-Options\n// or Content-Security-Policy headers on the backend.\nconst[state,setState]=useState(onCanvas?undefined:false);useEffect(()=>{// We only want to check on the canvas.\n// On the website we want to avoid the additional delay.\nif(!onCanvas)return;// TODO: We could also use AbortController here.\nlet isLastEffect=true;setState(undefined);async function load(){const response=await fetch(\"https://api.framer.com/functions/check-iframe-url?url=\"+encodeURIComponent(url));if(response.status==200){const{isBlocked}=await response.json();if(isLastEffect){setState(isBlocked);}}else{const message=await response.text();console.error(message);const error=new Error(\"This site can\u2019t be reached.\");setState(error);}}load().catch(error=>{console.error(error);setState(error);});return()=>{isLastEffect=false;};},[url]);if(onCanvas&&hasAutoHeight){return /*#__PURE__*/_jsx(ErrorMessage,{message:\"URL embeds do not support auto height.\",style:style});}if(!url.startsWith(\"https://\")){return /*#__PURE__*/_jsx(ErrorMessage,{message:\"Unsupported protocol.\",style:style});}if(state===undefined){return /*#__PURE__*/_jsx(LoadingIndicator,{});}if(state instanceof Error){return /*#__PURE__*/_jsx(ErrorMessage,{message:state.message,style:style});}if(state===true){const message=`Can\u2019t embed ${url} due to its content security policy.`;return /*#__PURE__*/_jsx(ErrorMessage,{message:message,style:style});}return /*#__PURE__*/_jsx(\"iframe\",{src:url,style:{...iframeStyle,...style,...border,zoom:zoom,borderRadius:radius,transformOrigin:\"top center\"},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,...props}){const hasScript=html.includes(\"</script>\");if(hasScript){const hasSplineViewer=html.includes(\"</spline-viewer>\");const hasComment=html.includes(\"<!-- framer-direct-embed -->\");if(hasSplineViewer||hasComment){return /*#__PURE__*/_jsx(EmbedHtmlWithScripts,{html:html,...props});}return /*#__PURE__*/_jsx(EmbedHtmlInsideIframe,{html:html,...props});}return /*#__PURE__*/_jsx(EmbedHtmlWithoutScripts,{html:html,...props});}function EmbedHtmlInsideIframe({html,style}){const ref=useRef();const[iframeHeight,setIframeHeight]=useState(0);// Handle auto sizing\nuseEffect(()=>{const iframeWindow=ref.current?.contentWindow;function handleMessage(event){if(event.source!==iframeWindow)return;const data=event.data;if(typeof data!==\"object\"||data===null)return;const height=data.embedHeight;if(typeof height!==\"number\")return;setIframeHeight(height);}window.addEventListener(\"message\",handleMessage);// After SSG the iframe loads before we attach the event handler,\n// therefore we need to request the latest height from the iframe.\niframeWindow?.postMessage(\"getEmbedHeight\",\"*\");return()=>{window.removeEventListener(\"message\",handleMessage);};},[]);// The CSS is mainly copied from:\n// FramerStudio/src/app/vekter/src/renderer/setDefaultFont.ts\n// FramerStudio/src/app/vekter/src/export/globalStylesForExport.ts\nconst srcDoc=`\n<html>\n    <head>\n        <style>\n            html, body {\n                margin: 0;\n                padding: 0;\n            }\n\n            body {\n                display: flex;\n                justify-content: center;\n                align-items: center;\n            }\n\n            :root {\n                -webkit-font-smoothing: antialiased;\n                -moz-osx-font-smoothing: grayscale;\n            }\n\n            * {\n                box-sizing: border-box;\n                -webkit-font-smoothing: inherit;\n            }\n\n            h1, h2, h3, h4, h5, h6, p, figure {\n                margin: 0;\n            }\n\n            body, input, textarea, select, button {\n                font-size: 12px;\n                font-family: sans-serif;\n            }\n        </style>\n    </head>\n    <body>\n        ${html}\n        <script type=\"module\">\n            let height = 0\n\n            function sendEmbedHeight() {\n                window.parent.postMessage({\n                    embedHeight: height\n                }, \"*\")\n            }\n\n            const observer = new ResizeObserver((entries) => {\n                if (entries.length !== 1) return\n                const entry = entries[0]\n                if (entry.target !== document.body) return\n\n                height = entry.contentRect.height\n                sendEmbedHeight()\n            })\n\n            observer.observe(document.body)\n\n            window.addEventListener(\"message\", (event) => {\n                if (event.source !== window.parent) return\n                if (event.data !== \"getEmbedHeight\") return\n                sendEmbedHeight()\n            })\n        </script>\n    <body>\n</html>\n`;const currentStyle={...iframeStyle,...style};const hasAutoHeight=!style.height;if(hasAutoHeight){currentStyle.height=iframeHeight+\"px\";}return /*#__PURE__*/_jsx(\"iframe\",{ref:ref,style:currentStyle,srcDoc:srcDoc});}function EmbedHtmlWithScripts({html,style}){const ref=useRef();useEffect(()=>{const div=ref.current;if(!div)return;div.innerHTML=html;executeScripts(div);return()=>{div.innerHTML=\"\";};},[html]);return /*#__PURE__*/_jsx(\"div\",{ref:ref,style:{...htmlStyle,...style}});}function EmbedHtmlWithoutScripts({html,style}){return /*#__PURE__*/_jsx(\"div\",{style:{...htmlStyle,...style},dangerouslySetInnerHTML:{__html:html}});}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,style}){return /*#__PURE__*/_jsx(\"div\",{className:\"framerInternalUI-errorPlaceholder\",style:{minHeight:getMinHeight(style),...containerStyles,overflow:\"hidden\",...style},children:/*#__PURE__*/_jsx(\"div\",{style:centerTextStyle,children:message})});}const centerTextStyle={textAlign:\"center\",minWidth:140};// Returns a min-height if the component is using auto-height.\nfunction getMinHeight(style){const hasAutoHeight=!style.height;if(hasAutoHeight)return 200;}\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"Embed\",\"slots\":[],\"annotations\":{\"framerSupportedLayoutHeight\":\"any-prefer-fixed\",\"framerIntrinsicHeight\":\"400\",\"framerSupportedLayoutWidth\":\"fixed\",\"framerContractVersion\":\"1\",\"framerDisableUnlink\":\"\",\"framerIntrinsicWidth\":\"600\"}},\"__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 (eca4804)\nimport{fontStore}from\"framer\";fontStore.loadFonts([]);export const fonts=[{explicitInter:true,fonts:[]}];export const css=[\".framer-9R4e5 .framer-styles-preset-vscchq:not(.rich-text-wrapper), .framer-9R4e5 .framer-styles-preset-vscchq.rich-text-wrapper table { border-bottom-left-radius: 8px; border-bottom-right-radius: 8px; border-color: rgba(153, 153, 153, 0.25); border-style: solid; border-top-left-radius: 8px; border-top-right-radius: 8px; border-width: 1px; overflow: hidden; }\",\".framer-9R4e5 .framer-styles-preset-vscchq:not(.rich-text-wrapper) th, .framer-9R4e5 .framer-styles-preset-vscchq.rich-text-wrapper table th, .framer-9R4e5 .framer-styles-preset-vscchq:not(.rich-text-wrapper) td, .framer-9R4e5 .framer-styles-preset-vscchq.rich-text-wrapper table td { padding: 10px; }\",\".framer-9R4e5 .framer-styles-preset-vscchq:not(.rich-text-wrapper) th, .framer-9R4e5 .framer-styles-preset-vscchq.rich-text-wrapper table th { background-color: rgba(153, 153, 153, 0.1); }\",\".framer-9R4e5 .framer-styles-preset-vscchq:not(.rich-text-wrapper) tr + tr td, .framer-9R4e5 .framer-styles-preset-vscchq:not(.rich-text-wrapper) tr + tr th, .framer-9R4e5 .framer-styles-preset-vscchq.rich-text-wrapper table tr + tr td, .framer-9R4e5 .framer-styles-preset-vscchq.rich-text-wrapper table tr + tr th { border-top-color: rgba(153, 153, 153, 0.25); border-top-style: solid; border-top-width: 1px; }\",\".framer-9R4e5 .framer-styles-preset-vscchq:not(.rich-text-wrapper) td + td, .framer-9R4e5 .framer-styles-preset-vscchq:not(.rich-text-wrapper) th + th, .framer-9R4e5 .framer-styles-preset-vscchq:not(.rich-text-wrapper) td + th, .framer-9R4e5 .framer-styles-preset-vscchq:not(.rich-text-wrapper) th + td, .framer-9R4e5 .framer-styles-preset-vscchq.rich-text-wrapper table td + td, .framer-9R4e5 .framer-styles-preset-vscchq.rich-text-wrapper table th + th, .framer-9R4e5 .framer-styles-preset-vscchq.rich-text-wrapper table td + th, .framer-9R4e5 .framer-styles-preset-vscchq.rich-text-wrapper table th + td { border-left-color: rgba(153, 153, 153, 0.25); border-left-style: solid; border-left-width: 1px; }\"];export const className=\"framer-9R4e5\";\nexport const __FramerMetadata__ = {\"exports\":{\"className\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"fonts\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"css\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (7d51cf8)\nimport{fontStore}from\"framer\";fontStore.loadFonts([\"FS;Bebas Neue-regular\",\"Inter-Black\",\"Inter-BlackItalic\",\"Inter-BoldItalic\"]);export const fonts=[{explicitInter:true,fonts:[{family:\"Bebas Neue\",source:\"fontshare\",style:\"normal\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/AWXLDXTI2CYJ5SHK74YUPGPFS5S5BWLL/M6ZJD4UOFNT4DPUXGTK7T46JZ3W3QW64/2TXZKBJMJVP3NQX7K7MGJDQFMD4ZMJR7.woff2\",weight:\"400\"},{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/mkY5Sgyq51ik0AMrSBwhm9DJg.woff2\",weight:\"900\"},{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/X5hj6qzcHUYv7h1390c8Rhm6550.woff2\",weight:\"900\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/gQhNpS3tN86g8RcVKYUUaKt2oMQ.woff2\",weight:\"900\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/cugnVhSraaRyANCaUtI5FV17wk.woff2\",weight:\"900\"},{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/5HcVoGak8k5agFJSaKa4floXVu0.woff2\",weight:\"900\"},{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/jn4BtSPLlS0NDp1KiFAtFKiiY0o.woff2\",weight:\"900\"},{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/P2Bw01CtL0b9wqygO0sSVogWbo.woff2\",weight:\"900\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/05KsVHGDmqXSBXM4yRZ65P8i0s.woff2\",weight:\"900\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/ky8ovPukK4dJ1Pxq74qGhOqCYI.woff2\",weight:\"900\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/vvNSqIj42qeQ2bvCRBIWKHscrc.woff2\",weight:\"900\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/3ZmXbBKToJifDV9gwcifVd1tEY.woff2\",weight:\"900\"},{family:\"Inter\",source:\"framer\",style:\"italic\",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/FNfhX3dt4ChuLJq2PwdlxHO7PU.woff2\",weight:\"900\"},{family:\"Inter\",source:\"framer\",style:\"italic\",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/g0c8vEViiXNlKAgI4Ymmk3Ig.woff2\",weight:\"900\"},{family:\"Inter\",source:\"framer\",style:\"italic\",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/efTfQcBJ53kM2pB1hezSZ3RDUFs.woff2\",weight:\"900\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/H89BbHkbHDzlxZzxi8uPzTsp90.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/u6gJwDuwB143kpNK1T1MDKDWkMc.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/43sJ6MfOPh1LCJt46OvyDuSbA6o.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/wccHG0r4gBDAIRhfHiOlq6oEkqw.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",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/WZ367JPwf9bRW6LdTHN8rXgSjw.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",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/QxmhnWTzLtyjIiZcfaLIJ8EFBXU.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",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/2A4Xx7CngadFGlVV4xrO06OBHY.woff2\",weight:\"700\"}]}];export const css=['.framer-nAq6e .framer-styles-preset-bme6qr:not(.rich-text-wrapper), .framer-nAq6e .framer-styles-preset-bme6qr.rich-text-wrapper h1 { --framer-font-family: \"Bebas Neue\", \"Bebas Neue Placeholder\", sans-serif; --framer-font-family-bold: \"Inter\", sans-serif; --framer-font-family-bold-italic: \"Inter\", sans-serif; --framer-font-family-italic: \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-open-type-features: \\'blwf\\' on, \\'cv09\\' on, \\'cv03\\' on, \\'cv04\\' on, \\'cv11\\' on; --framer-font-size: 90px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-style-bold-italic: italic; --framer-font-style-italic: italic; --framer-font-variation-axes: normal; --framer-font-weight: 400; --framer-font-weight-bold: 900; --framer-font-weight-bold-italic: 900; --framer-font-weight-italic: 700; --framer-letter-spacing: 0em; --framer-line-height: 1.1em; --framer-paragraph-spacing: 0px; --framer-text-alignment: start; --framer-text-color: #000000; --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; }'];export const className=\"framer-nAq6e\";\nexport const __FramerMetadata__ = {\"exports\":{\"fonts\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"className\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"css\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (d65f646)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,getFontsFromSharedStyle,getLoadingLazyAtYPosition,Image,RichText,SmartComponentScopedContainer,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import Embed from\"https://framerusercontent.com/modules/o1PI5S8YtkA5bP5g4dFz/s801VqobGI0Gkh3K9b41/Embed.js\";import{Icon as Phosphor}from\"https://framerusercontent.com/modules/tYScH7LTqUtz5KUaUAYP/CAjjxbTJBxHwH1MagCef/Phosphor.js\";import*as sharedStyle9 from\"https://framerusercontent.com/modules/tDEhyRItQveAML1z2mBy/PpMCmobb9xPHn1L49dDV/dKkXuX5NV.js\";import*as sharedStyle6 from\"https://framerusercontent.com/modules/zqpDOWdXhoo5tUEaB0pX/nXAXRWDtySTBK0MJHMtl/FAWtY4cZF.js\";import*as sharedStyle8 from\"https://framerusercontent.com/modules/brLBMY1Qd1ve56qWAWFG/6xcL7qexl5tMBtOE44lB/FGAdIjPpJ.js\";import*as sharedStyle3 from\"https://framerusercontent.com/modules/yRufRqV6RL5EMjVYIQDz/ZyX0wENG3TKrcB71MmDA/FVYQhG9jg.js\";import*as sharedStyle2 from\"https://framerusercontent.com/modules/Mi2PN925DXt2WqzYi14h/E8iUNSPR0sakxdnnjXmz/JUsuatWRk.js\";import*as sharedStyle7 from\"https://framerusercontent.com/modules/O4B2mfU6MdmHcf4ap1Ye/FH1i0CS7oxpM007SfAeq/poZYosz0c.js\";import*as sharedStyle5 from\"https://framerusercontent.com/modules/bFFg28SC8QcXb4dQ9yXB/SUxMveGpiK1uVLPdWJlj/tbErLzG2W.js\";import*as sharedStyle4 from\"https://framerusercontent.com/modules/Au0yuyXFioOJ8bCK1Ilk/BVrXFUrhqVXT4Swt59bc/TJnA7fmMr.js\";import*as sharedStyle from\"https://framerusercontent.com/modules/Vhj1E2zsF2zZIejCoY16/Z9HLZB3Iq8u3jWFiaLMC/xitgTjGVx.js\";import*as sharedStyle1 from\"https://framerusercontent.com/modules/tYjIDVvtwKLDuRVWbis2/JGqrqBwtU2gAZfFpN5t4/Z4iWmXDK7.js\";const PhosphorFonts=getFonts(Phosphor);const EmbedFonts=getFonts(Embed);const enabledGestures={eidgBDW8h:{hover:true},KHShV3edk:{hover:true},tYIC4_uyy:{hover:true},xoyMutCDP:{hover:true}};const cycleOrder=[\"xWGpUyjmO\",\"KHShV3edk\",\"uCBwmjBQu\",\"eidgBDW8h\",\"TKTSYrfUK\",\"eLxewNFfL\",\"xoyMutCDP\",\"tYIC4_uyy\"];const serializationHash=\"framer-cWsEU\";const variantClassNames={eidgBDW8h:\"framer-v-5a29q\",eLxewNFfL:\"framer-v-guno6q\",KHShV3edk:\"framer-v-1ui749r\",TKTSYrfUK:\"framer-v-1vkrs9y\",tYIC4_uyy:\"framer-v-1cennd7\",uCBwmjBQu:\"framer-v-zkifvq\",xoyMutCDP:\"framer-v-174uqx4\",xWGpUyjmO:\"framer-v-dotpzb\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:40,delay:0,mass:1,stiffness:400,type:\"spring\"};const isSet=value=>{if(Array.isArray(value))return value.length>0;return value!==undefined&&value!==null&&value!==\"\";};const toResponsiveImage=value=>{if(typeof value===\"object\"&&value!==null&&typeof value.src===\"string\"){return value;}return typeof value===\"string\"?{src:value}:undefined;};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=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={\"Donate C1\":\"eLxewNFfL\",\"Donate C2\":\"uCBwmjBQu\",\"Donate C3\":\"TKTSYrfUK\",\"Donate close\":\"eidgBDW8h\",\"Variant 7\":\"xoyMutCDP\",\"Variant 8\":\"tYIC4_uyy\",Close:\"KHShV3edk\",Open:\"xWGpUyjmO\"};const getProps=({contentField,height,hTMLCode,id,image,image2,width,...props})=>{return{...props,DnMnwQJr2:image2??props.DnMnwQJr2,MO0vC1vFZ:hTMLCode??props.MO0vC1vFZ??\"Enter HTML\",rspzowpY_:contentField??props.rspzowpY_??/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(motion.h3,{children:/*#__PURE__*/_jsx(motion.strong,{children:\"1. Custom Website Design\"})}),/*#__PURE__*/_jsx(motion.p,{children:/*#__PURE__*/_jsx(motion.strong,{children:\"Tailored to Fit Your Brand, Like a Digital Glove!\"})}),/*#__PURE__*/_jsxs(motion.ul,{children:[/*#__PURE__*/_jsx(motion.li,{\"data-preset-tag\":\"p\",children:/*#__PURE__*/_jsx(motion.p,{children:\"Crafting unique layouts that reflect your brand\u2019s personality.\"})}),/*#__PURE__*/_jsx(motion.li,{\"data-preset-tag\":\"p\",children:/*#__PURE__*/_jsx(motion.p,{children:\"User-friendly designs optimized for seamless navigation.\"})}),/*#__PURE__*/_jsx(motion.li,{\"data-preset-tag\":\"p\",children:/*#__PURE__*/_jsx(motion.p,{children:\"Mobile-first approach to ensure it looks amazing everywhere.\"})})]}),/*#__PURE__*/_jsxs(motion.p,{children:[/*#__PURE__*/_jsx(motion.strong,{children:\"Why it matters:\"}),\" A one-size-fits-all website? No thanks! Your brand deserves something as unique as you are. Let\u2019s create a site that not only wows but converts.\"]}),/*#__PURE__*/_jsx(motion.h3,{children:/*#__PURE__*/_jsx(motion.strong,{children:\"2. Responsive Web Development\"})}),/*#__PURE__*/_jsx(motion.p,{children:/*#__PURE__*/_jsx(motion.strong,{children:\"Looks Good, Works Great, On Every Device!\"})}),/*#__PURE__*/_jsxs(motion.ul,{children:[/*#__PURE__*/_jsx(motion.li,{\"data-preset-tag\":\"p\",children:/*#__PURE__*/_jsx(motion.p,{children:\"Websites that adjust perfectly on mobile, tablet, and desktop.\"})}),/*#__PURE__*/_jsx(motion.li,{\"data-preset-tag\":\"p\",children:/*#__PURE__*/_jsx(motion.p,{children:\"Optimized for speed and performance.\"})}),/*#__PURE__*/_jsx(motion.li,{\"data-preset-tag\":\"p\",children:/*#__PURE__*/_jsx(motion.p,{children:\"Bug-free functionality for a stress-free experience.\"})})]}),/*#__PURE__*/_jsxs(motion.p,{children:[/*#__PURE__*/_jsx(motion.strong,{children:\"Why it matters:\"}),\" Your audience deserves a smooth browsing experience\u2014no matter where they\u2019re coming from. Fast, flexible, and flawless is our mantra.\"]}),/*#__PURE__*/_jsx(motion.h3,{children:/*#__PURE__*/_jsx(motion.strong,{children:\"3. E-Commerce Development\"})}),/*#__PURE__*/_jsx(motion.p,{children:/*#__PURE__*/_jsx(motion.strong,{children:\"Turning Browsers into Buyers, One Click at a Time!\"})}),/*#__PURE__*/_jsxs(motion.ul,{children:[/*#__PURE__*/_jsx(motion.li,{\"data-preset-tag\":\"p\",children:/*#__PURE__*/_jsx(motion.p,{children:\"Eye-catching online stores with intuitive shopping experiences.\"})}),/*#__PURE__*/_jsx(motion.li,{\"data-preset-tag\":\"p\",children:/*#__PURE__*/_jsx(motion.p,{children:\"Payment gateways that are secure and simple.\"})}),/*#__PURE__*/_jsx(motion.li,{\"data-preset-tag\":\"p\",children:/*#__PURE__*/_jsx(motion.p,{children:\"Inventory management solutions to keep you organized.\"})})]}),/*#__PURE__*/_jsxs(motion.p,{children:[/*#__PURE__*/_jsx(motion.strong,{children:\"Why it matters:\"}),\" Selling online shouldn\u2019t feel like a maze. We\u2019ll help you set up shop so you can focus on growing your business while we handle the tech.\"]}),/*#__PURE__*/_jsx(motion.h3,{children:/*#__PURE__*/_jsx(motion.strong,{children:\"4. Content Management Systems (CMS)\"})}),/*#__PURE__*/_jsx(motion.p,{children:/*#__PURE__*/_jsx(motion.strong,{children:\"Empowering You to Take the Wheel of Your Website!\"})}),/*#__PURE__*/_jsxs(motion.ul,{children:[/*#__PURE__*/_jsx(motion.li,{\"data-preset-tag\":\"p\",children:/*#__PURE__*/_jsx(motion.p,{children:\"Easy-to-use platforms like WordPress, Shopify, or custom CMS.\"})}),/*#__PURE__*/_jsx(motion.li,{\"data-preset-tag\":\"p\",children:/*#__PURE__*/_jsx(motion.p,{children:\"Simple editing tools so you can update content in a flash.\"})}),/*#__PURE__*/_jsx(motion.li,{\"data-preset-tag\":\"p\",children:/*#__PURE__*/_jsx(motion.p,{children:\"Training and support for smooth operation.\"})})]}),/*#__PURE__*/_jsxs(motion.p,{children:[/*#__PURE__*/_jsx(motion.strong,{children:\"Why it matters:\"}),\" We believe you shouldn\u2019t need a developer every time you want to tweak your site. We make it easy for you to take control.\"]}),/*#__PURE__*/_jsx(motion.h3,{children:/*#__PURE__*/_jsx(motion.strong,{children:\"5. Website Maintenance and Support\"})}),/*#__PURE__*/_jsx(motion.p,{children:/*#__PURE__*/_jsx(motion.strong,{children:\"Because Websites Deserve TLC Too!\"})}),/*#__PURE__*/_jsxs(motion.ul,{children:[/*#__PURE__*/_jsx(motion.li,{\"data-preset-tag\":\"p\",children:/*#__PURE__*/_jsx(motion.p,{children:\"Regular updates to keep your site fresh and secure.\"})}),/*#__PURE__*/_jsx(motion.li,{\"data-preset-tag\":\"p\",children:/*#__PURE__*/_jsx(motion.p,{children:\"Backups to protect your hard work.\"})}),/*#__PURE__*/_jsx(motion.li,{\"data-preset-tag\":\"p\",children:/*#__PURE__*/_jsx(motion.p,{children:\"Bug fixes and technical support when you need it.\"})})]}),/*#__PURE__*/_jsxs(motion.p,{children:[/*#__PURE__*/_jsx(motion.strong,{children:\"Why it matters:\"}),\" A healthy website is a happy website. We keep your digital presence running smoothly so you can focus on what you do best.\"]}),/*#__PURE__*/_jsx(motion.h3,{children:/*#__PURE__*/_jsx(motion.strong,{children:\"6. Search Engine Optimization (SEO) Integration\"})}),/*#__PURE__*/_jsx(motion.p,{children:/*#__PURE__*/_jsx(motion.strong,{children:\"Building Sites That Google (and Your Audience) Love!\"})}),/*#__PURE__*/_jsxs(motion.ul,{children:[/*#__PURE__*/_jsx(motion.li,{\"data-preset-tag\":\"p\",children:/*#__PURE__*/_jsx(motion.p,{children:\"SEO-friendly design and structure.\"})}),/*#__PURE__*/_jsx(motion.li,{\"data-preset-tag\":\"p\",children:/*#__PURE__*/_jsx(motion.p,{children:\"Optimized images and clean coding.\"})}),/*#__PURE__*/_jsx(motion.li,{\"data-preset-tag\":\"p\",children:/*#__PURE__*/_jsx(motion.p,{children:\"Meta tags and on-page optimization baked right in.\"})})]}),/*#__PURE__*/_jsxs(motion.p,{children:[/*#__PURE__*/_jsx(motion.strong,{children:\"Why it matters:\"}),\" What good is a beautiful site if no one can find it? We\u2019ll make sure you rank where it counts.\"]}),/*#__PURE__*/_jsx(motion.h3,{children:/*#__PURE__*/_jsx(motion.strong,{children:\"7. UX/UI Optimization\"})}),/*#__PURE__*/_jsx(motion.p,{children:/*#__PURE__*/_jsx(motion.strong,{children:\"Websites That Feel as Good as They Look!\"})}),/*#__PURE__*/_jsxs(motion.ul,{children:[/*#__PURE__*/_jsx(motion.li,{\"data-preset-tag\":\"p\",children:/*#__PURE__*/_jsx(motion.p,{children:\"Intuitive navigation for a smooth user journey.\"})}),/*#__PURE__*/_jsx(motion.li,{\"data-preset-tag\":\"p\",children:/*#__PURE__*/_jsx(motion.p,{children:\"Strategic placement of CTAs for maximum engagement.\"})}),/*#__PURE__*/_jsx(motion.li,{\"data-preset-tag\":\"p\",children:/*#__PURE__*/_jsx(motion.p,{children:\"Designs tested for real-world usability.\"})})]}),/*#__PURE__*/_jsxs(motion.p,{children:[/*#__PURE__*/_jsx(motion.strong,{children:\"Why it matters:\"}),\" Good design isn\u2019t just pretty; it\u2019s functional. Let\u2019s create a website that makes every visitor feel right at home.\"]})]}),variant:humanReadableVariantMap[props.variant]??props.variant??\"xWGpUyjmO\",xXJkVr55n:image??props.xXJkVr55n};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const fallbackRef=useRef(null);const refBinding=ref??fallbackRef;const defaultLayoutId=React.useId();const{activeLocale,setLocale}=useLocaleInfo();const componentViewport=useComponentViewport();const{style,className,layoutId,variant,rspzowpY_,xXJkVr55n,DnMnwQJr2,MO0vC1vFZ,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"xWGpUyjmO\",enabledGestures,ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onTapmghnem=activeVariantCallback(async(...args)=>{setGestureState({isPressed:false});setVariant(\"xWGpUyjmO\");});const onTapurpu7b=activeVariantCallback(async(...args)=>{setGestureState({isPressed:false});setVariant(\"uCBwmjBQu\");});const onTap12evlxp=activeVariantCallback(async(...args)=>{setGestureState({isPressed:false});setVariant(\"TKTSYrfUK\");});const onTap109kae6=activeVariantCallback(async(...args)=>{setGestureState({isPressed:false});setVariant(\"eLxewNFfL\");});const onTap1jbiib1=activeVariantCallback(async(...args)=>{setVariant(\"KHShV3edk\");});const onTaprz8rl6=activeVariantCallback(async(...args)=>{setVariant(\"eidgBDW8h\");});const onTap9okeqq=activeVariantCallback(async(...args)=>{setVariant(\"uCBwmjBQu\");});const onTap1tjxyv4=activeVariantCallback(async(...args)=>{setVariant(\"xoyMutCDP\");});const onTap1l41m3e=activeVariantCallback(async(...args)=>{setVariant(\"tYIC4_uyy\");});const onTap1ppcyvk=activeVariantCallback(async(...args)=>{setVariant(\"TKTSYrfUK\");});const onTap1iyl3m6=activeVariantCallback(async(...args)=>{setVariant(\"eLxewNFfL\");});const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className,sharedStyle2.className,sharedStyle3.className,sharedStyle4.className,sharedStyle5.className,sharedStyle6.className,sharedStyle7.className,sharedStyle8.className,sharedStyle9.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const isDisplayed=()=>{if([\"xoyMutCDP-hover\",\"tYIC4_uyy-hover\"].includes(gestureVariant))return false;return true;};const isDisplayed1=()=>{if(gestureVariant===\"xoyMutCDP-hover\")return true;return false;};const isDisplayed2=()=>{if(gestureVariant===\"tYIC4_uyy-hover\")return true;return false;};const isDisplayed3=()=>{if([\"KHShV3edk-hover\",\"eidgBDW8h-hover\",\"xoyMutCDP-hover\",\"tYIC4_uyy-hover\"].includes(gestureVariant))return false;if([\"KHShV3edk\",\"eidgBDW8h\",\"xoyMutCDP\",\"tYIC4_uyy\"].includes(baseVariant))return false;return true;};const isDisplayed4=()=>{if([\"uCBwmjBQu\",\"TKTSYrfUK\",\"eLxewNFfL\"].includes(baseVariant))return true;return false;};const visible=isSet(xXJkVr55n);const isDisplayed5=value=>{if([\"uCBwmjBQu\",\"TKTSYrfUK\",\"eLxewNFfL\"].includes(baseVariant))return false;return value;};const isDisplayed6=()=>{if([\"uCBwmjBQu\",\"TKTSYrfUK\",\"eLxewNFfL\"].includes(baseVariant))return false;return true;};return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(motion.div,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-dotpzb\",className,classNames),\"data-framer-name\":\"Open\",layoutDependency:layoutDependency,layoutId:\"xWGpUyjmO\",ref:refBinding,style:{backgroundColor:\"var(--token-c09d492a-e729-4cbb-b155-5952e8c0f0ee, rgb(238, 241, 244))\",...style},variants:{eidgBDW8h:{backgroundColor:\"var(--token-c09d492a-e729-4cbb-b155-5952e8c0f0ee, rgb(245, 247, 249))\"},KHShV3edk:{backgroundColor:\"var(--token-c09d492a-e729-4cbb-b155-5952e8c0f0ee, rgb(245, 247, 249))\"},tYIC4_uyy:{backgroundColor:\"var(--token-c09d492a-e729-4cbb-b155-5952e8c0f0ee, rgb(245, 247, 249))\"},xoyMutCDP:{backgroundColor:\"var(--token-c09d492a-e729-4cbb-b155-5952e8c0f0ee, rgb(245, 247, 249))\"}},...addPropertyOverrides({\"eidgBDW8h-hover\":{\"data-framer-name\":undefined},\"KHShV3edk-hover\":{\"data-framer-name\":undefined},\"tYIC4_uyy-hover\":{\"data-framer-name\":undefined},\"xoyMutCDP-hover\":{\"data-framer-name\":undefined},eidgBDW8h:{\"data-framer-name\":\"Donate close\",\"data-highlight\":true,onTap:onTapurpu7b},eLxewNFfL:{\"data-framer-name\":\"Donate C1\"},KHShV3edk:{\"data-framer-name\":\"Close\",\"data-highlight\":true,onTap:onTapmghnem},TKTSYrfUK:{\"data-framer-name\":\"Donate C3\"},tYIC4_uyy:{\"data-framer-name\":\"Variant 8\",\"data-highlight\":true,onTap:onTap109kae6},uCBwmjBQu:{\"data-framer-name\":\"Donate C2\"},xoyMutCDP:{\"data-framer-name\":\"Variant 7\",\"data-highlight\":true,onTap:onTap12evlxp}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-10b56cg\",\"data-framer-name\":\"Question Wrapper\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"eFCHAB7tO\",onTap:onTap1jbiib1,style:{backgroundColor:\"var(--token-5f07c49c-cabb-487f-b598-70919afb1f9a, rgb(40, 117, 117))\",boxShadow:\"0px 1.3436836425447838px 0.5374734570179134px -0.625px rgba(0, 0, 0, 0.09), 0px 3.184767494094558px 1.273906997637823px -1.25px rgba(0, 0, 0, 0.09), 0px 5.80934510345105px 2.3237380413804196px -1.875px rgba(0, 0, 0, 0.08), 0px 9.658024572418071px 3.8632098289672276px -2.5px rgba(0, 0, 0, 0.08), 0px 15.596922177565284px 6.238768871026112px -3.125px rgba(0, 0, 0, 0.07), 0px 25.530614085937845px 10.212245634375137px -3.75px rgba(0, 0, 0, 0.06), 0px 43.96199341069441px 17.58479736427776px -4.375px rgba(0, 0, 0, 0.04), 0px 80px 31.999999999999993px -5px rgba(0, 0, 0, 0)\"},variants:{eidgBDW8h:{backgroundColor:\"var(--token-7cfab920-9d1e-4f38-8c7a-a58d533b8508, rgb(255, 255, 255))\",boxShadow:\"none\"},KHShV3edk:{backgroundColor:\"var(--token-7cfab920-9d1e-4f38-8c7a-a58d533b8508, rgb(255, 255, 255))\",boxShadow:\"none\"},tYIC4_uyy:{backgroundColor:\"var(--token-7cfab920-9d1e-4f38-8c7a-a58d533b8508, rgb(255, 255, 255))\",boxShadow:\"none\"},xoyMutCDP:{backgroundColor:\"var(--token-7cfab920-9d1e-4f38-8c7a-a58d533b8508, rgb(255, 255, 255))\",boxShadow:\"none\"}},...addPropertyOverrides({\"eidgBDW8h-hover\":{\"data-highlight\":undefined,onTap:undefined},\"tYIC4_uyy-hover\":{\"data-highlight\":undefined,onTap:undefined},\"xoyMutCDP-hover\":{\"data-highlight\":undefined,onTap:undefined},eidgBDW8h:{\"data-highlight\":undefined,onTap:undefined},eLxewNFfL:{\"data-highlight\":undefined,onTap:undefined},TKTSYrfUK:{\"data-highlight\":undefined,onTap:undefined},tYIC4_uyy:{\"data-highlight\":undefined,onTap:undefined},uCBwmjBQu:{\"data-highlight\":undefined,onTap:undefined},xoyMutCDP:{\"data-highlight\":undefined,onTap:undefined}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h3,{style:{\"--font-selector\":\"R0Y7SW50ZXItNTAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.03em\",\"--framer-line-height\":\"1.4em\",\"--framer-text-color\":\"var(--extracted-a0htzi, rgb(255, 255, 255))\"},children:\"Hide Details\"})}),className:\"framer-1831e1p\",fonts:[\"GF;Inter-500\"],layoutDependency:layoutDependency,layoutId:\"U7EetYxIL\",style:{\"--extracted-a0htzi\":\"rgb(255, 255, 255)\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\",\"--framer-paragraph-spacing\":\"0px\"},variants:{eidgBDW8h:{\"--extracted-a0htzi\":\"var(--token-9e4d3cd9-c6a1-4d3f-93c0-3bd54ca04155, rgb(15, 15, 15))\"},KHShV3edk:{\"--extracted-a0htzi\":\"var(--token-9e4d3cd9-c6a1-4d3f-93c0-3bd54ca04155, rgb(15, 15, 15))\"},tYIC4_uyy:{\"--extracted-a0htzi\":\"var(--token-9e4d3cd9-c6a1-4d3f-93c0-3bd54ca04155, rgb(15, 15, 15))\"},xoyMutCDP:{\"--extracted-a0htzi\":\"var(--token-9e4d3cd9-c6a1-4d3f-93c0-3bd54ca04155, rgb(15, 15, 15))\"}},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({eidgBDW8h:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h3,{style:{\"--font-selector\":\"R0Y7Um9ib3RvIENvbmRlbnNlZC01MDA=\",\"--framer-font-family\":'\"Roboto Condensed\", \"Roboto Condensed Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.03em\",\"--framer-line-height\":\"1.4em\",\"--framer-text-color\":\"var(--extracted-a0htzi, var(--token-9e4d3cd9-c6a1-4d3f-93c0-3bd54ca04155, rgb(15, 15, 15)))\"},children:\"Donate\"})}),fonts:[\"GF;Roboto Condensed-500\"]},eLxewNFfL:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h3,{style:{\"--font-selector\":\"R0Y7SW50ZXItNTAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.03em\",\"--framer-line-height\":\"1.4em\",\"--framer-text-color\":\"var(--extracted-a0htzi, rgb(255, 255, 255))\"},children:\"Donate\"})})},KHShV3edk:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h3,{style:{\"--font-selector\":\"R0Y7Um9ib3RvIENvbmRlbnNlZC01MDA=\",\"--framer-font-family\":'\"Roboto Condensed\", \"Roboto Condensed Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.03em\",\"--framer-line-height\":\"1.4em\",\"--framer-text-color\":\"var(--extracted-a0htzi, var(--token-9e4d3cd9-c6a1-4d3f-93c0-3bd54ca04155, rgb(15, 15, 15)))\"},children:\"View Details\"})}),fonts:[\"GF;Roboto Condensed-500\"]},TKTSYrfUK:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h3,{style:{\"--font-selector\":\"R0Y7SW50ZXItNTAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.03em\",\"--framer-line-height\":\"1.4em\",\"--framer-text-color\":\"var(--extracted-a0htzi, rgb(255, 255, 255))\"},children:\"Donate\"})})},tYIC4_uyy:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h3,{style:{\"--font-selector\":\"R0Y7Um9ib3RvIENvbmRlbnNlZC01MDA=\",\"--framer-font-family\":'\"Roboto Condensed\", \"Roboto Condensed Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.03em\",\"--framer-line-height\":\"1.4em\",\"--framer-text-color\":\"var(--extracted-a0htzi, var(--token-9e4d3cd9-c6a1-4d3f-93c0-3bd54ca04155, rgb(15, 15, 15)))\"},children:\"Donate\"})}),fonts:[\"GF;Roboto Condensed-500\"]},uCBwmjBQu:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h3,{style:{\"--font-selector\":\"R0Y7SW50ZXItNTAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.03em\",\"--framer-line-height\":\"1.4em\",\"--framer-text-color\":\"var(--extracted-a0htzi, rgb(255, 255, 255))\"},children:\"Donate\"})})},xoyMutCDP:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h3,{style:{\"--font-selector\":\"R0Y7Um9ib3RvIENvbmRlbnNlZC01MDA=\",\"--framer-font-family\":'\"Roboto Condensed\", \"Roboto Condensed Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.03em\",\"--framer-line-height\":\"1.4em\",\"--framer-text-color\":\"var(--extracted-a0htzi, var(--token-9e4d3cd9-c6a1-4d3f-93c0-3bd54ca04155, rgb(15, 15, 15)))\"},children:\"Donate\"})}),fonts:[\"GF;Roboto Condensed-500\"]}},baseVariant,gestureVariant)}),isDisplayed()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-glaouu\",\"data-framer-name\":\"Icon Wrapper\",layoutDependency:layoutDependency,layoutId:\"iuD_0SevC\",style:{backgroundColor:\"rgba(0, 0, 0, 0)\",borderBottomLeftRadius:13,borderBottomRightRadius:13,borderTopLeftRadius:13,borderTopRightRadius:13},variants:{\"eidgBDW8h-hover\":{backgroundColor:\"var(--token-5f07c49c-cabb-487f-b598-70919afb1f9a, rgb(40, 117, 117))\",borderBottomLeftRadius:0,borderBottomRightRadius:0,borderTopLeftRadius:0,borderTopRightRadius:0},\"KHShV3edk-hover\":{backgroundColor:\"var(--token-5f07c49c-cabb-487f-b598-70919afb1f9a, rgb(40, 117, 117))\",borderBottomLeftRadius:0,borderBottomRightRadius:0,borderTopLeftRadius:0,borderTopRightRadius:0}},...addPropertyOverrides({eidgBDW8h:{\"data-highlight\":true,onTap:onTap9okeqq},eLxewNFfL:{\"data-highlight\":true,onTap:onTap1l41m3e},TKTSYrfUK:{\"data-highlight\":true,onTap:onTap1tjxyv4},tYIC4_uyy:{\"data-highlight\":true,onTap:onTap1iyl3m6},uCBwmjBQu:{\"data-highlight\":true,onTap:onTaprz8rl6},xoyMutCDP:{\"data-highlight\":true,onTap:onTap1ppcyvk}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-ozyapz-container\",isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"fRdZhP6hE-container\",nodeId:\"fRdZhP6hE\",rendersWithMotion:true,scopeId:\"BHjr5zCdR\",style:{rotate:-180},variants:{eidgBDW8h:{rotate:-225},KHShV3edk:{rotate:-225},tYIC4_uyy:{rotate:-225},xoyMutCDP:{rotate:-225}},children:/*#__PURE__*/_jsx(Phosphor,{color:\"var(--token-9f0badbf-8d74-41b8-a73a-e1a6bdec487b, rgb(194, 250, 105))\",height:\"100%\",iconSearch:\"House\",iconSelection:\"X\",id:\"fRdZhP6hE\",layoutId:\"fRdZhP6hE\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"regular\",width:\"100%\",...addPropertyOverrides({\"KHShV3edk-hover\":{color:\"var(--token-7cfab920-9d1e-4f38-8c7a-a58d533b8508, rgb(255, 255, 255))\"},eidgBDW8h:{color:\"var(--token-6486a9ac-e9e8-4ced-becb-afb4c654ba35, rgb(10, 10, 10))\"},KHShV3edk:{color:\"var(--token-6486a9ac-e9e8-4ced-becb-afb4c654ba35, rgb(10, 10, 10))\"},tYIC4_uyy:{color:\"var(--token-6486a9ac-e9e8-4ced-becb-afb4c654ba35, rgb(10, 10, 10))\"},xoyMutCDP:{color:\"var(--token-6486a9ac-e9e8-4ced-becb-afb4c654ba35, rgb(10, 10, 10))\"}},baseVariant,gestureVariant)})})})}),isDisplayed1()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-tij09u\",\"data-framer-name\":\"Icon Wrapper\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"fyaMgg5rh\",onTap:onTap9okeqq,style:{backgroundColor:\"var(--token-5f07c49c-cabb-487f-b598-70919afb1f9a, rgb(40, 117, 117))\"},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1c8g24p-container\",isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"pHLdwePpo-container\",nodeId:\"pHLdwePpo\",rendersWithMotion:true,scopeId:\"BHjr5zCdR\",style:{rotate:-225},children:/*#__PURE__*/_jsx(Phosphor,{color:\"var(--token-6486a9ac-e9e8-4ced-becb-afb4c654ba35, rgb(10, 10, 10))\",height:\"100%\",iconSearch:\"House\",iconSelection:\"X\",id:\"pHLdwePpo\",layoutId:\"pHLdwePpo\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"regular\",width:\"100%\"})})})}),isDisplayed2()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-w27jbd\",\"data-framer-name\":\"Icon Wrapper\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"V51hoGcgp\",onTap:onTap9okeqq,style:{backgroundColor:\"var(--token-5f07c49c-cabb-487f-b598-70919afb1f9a, rgb(40, 117, 117))\"},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-verkua-container\",isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"fCy7smY1U-container\",nodeId:\"fCy7smY1U\",rendersWithMotion:true,scopeId:\"BHjr5zCdR\",style:{rotate:-225},children:/*#__PURE__*/_jsx(Phosphor,{color:\"var(--token-6486a9ac-e9e8-4ced-becb-afb4c654ba35, rgb(10, 10, 10))\",height:\"100%\",iconSearch:\"House\",iconSelection:\"X\",id:\"fCy7smY1U\",layoutId:\"fCy7smY1U\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"regular\",width:\"100%\"})})})})]}),isDisplayed3()&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-jin9rh\",\"data-framer-name\":\"Details Wrapper\",layoutDependency:layoutDependency,layoutId:\"n38JRZP90\",style:{borderBottomLeftRadius:20,borderBottomRightRadius:20,borderTopLeftRadius:20,borderTopRightRadius:20},children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-458dhd\",layoutDependency:layoutDependency,layoutId:\"dFMFA1_vX\",children:[isDisplayed4()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1qtspuy-container\",isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"JZ9OuQ1wL-container\",nodeId:\"JZ9OuQ1wL\",rendersWithMotion:true,scopeId:\"BHjr5zCdR\",children:/*#__PURE__*/_jsx(Embed,{height:\"100%\",html:\"\",id:\"JZ9OuQ1wL\",layoutId:\"JZ9OuQ1wL\",radius:\"0px\",style:{height:\"100%\",width:\"100%\"},type:\"html\",url:\"\",width:\"100%\",zoom:1,...addPropertyOverrides({eLxewNFfL:{html:MO0vC1vFZ},TKTSYrfUK:{html:MO0vC1vFZ},uCBwmjBQu:{html:MO0vC1vFZ}},baseVariant,gestureVariant)})})}),isDisplayed5(visible)&&/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+82+20+0+-75),sizes:`max((${componentViewport?.width||\"100vw\"} - 30px) / 0, 1px)`,...toResponsiveImage(xXJkVr55n)},className:\"framer-ockb06\",layoutDependency:layoutDependency,layoutId:\"UIxZQvC3I\"}),isDisplayed5(visible)&&/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+82+20+0+-75),sizes:`max((${componentViewport?.width||\"100vw\"} - 30px) / 0, 1px)`,...toResponsiveImage(DnMnwQJr2)},className:\"framer-1mawdwr\",layoutDependency:layoutDependency,layoutId:\"MEouJVayL\"}),isDisplayed4()&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7Um9ib3RvIENvbmRlbnNlZC1yZWd1bGFy\",\"--framer-font-family\":'\"Roboto Condensed\", \"Roboto Condensed Placeholder\", sans-serif',\"--framer-font-size\":\"14px\"},children:\"Do not close the window while the transaction is in progress.\"})}),className:\"framer-17uyaci\",fonts:[\"GF;Roboto Condensed-regular\"],layoutDependency:layoutDependency,layoutId:\"Ybb3KTRpZ\",style:{\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true})]}),isDisplayed6()&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:rspzowpY_,className:\"framer-z3eqha\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"TcCZtuyPz\",style:{\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\",\"--framer-paragraph-spacing\":\"0px\",opacity:.7},stylesPresetsClassNames:{a:\"framer-styles-preset-k8x6vw\",code:\"framer-styles-preset-c93lsu\",h1:\"framer-styles-preset-bme6qr\",h2:\"framer-styles-preset-1nopokr\",h3:\"framer-styles-preset-1j6s7nu\",h4:\"framer-styles-preset-pdpktj\",h5:\"framer-styles-preset-ol8uyl\",h6:\"framer-styles-preset-1syt15w\",img:\"framer-styles-preset-15a4acw\",p:\"framer-styles-preset-124c1kw\",table:\"framer-styles-preset-vscchq\"},verticalAlignment:\"top\",withExternalLayout:true})]})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-cWsEU.framer-ke1ubq, .framer-cWsEU .framer-ke1ubq { display: block; }\",\".framer-cWsEU.framer-dotpzb { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 800px; }\",\".framer-cWsEU .framer-10b56cg { align-content: center; align-items: center; cursor: pointer; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; height: min-content; justify-content: space-between; overflow: visible; padding: 20px; position: relative; width: 100%; z-index: 4; }\",\".framer-cWsEU .framer-1831e1p { -webkit-user-select: none; flex: 0.95 0 0px; height: auto; position: relative; user-select: none; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; }\",\".framer-cWsEU .framer-glaouu { align-content: center; align-items: center; aspect-ratio: 1 / 1; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: var(--framer-aspect-ratio-supported, 42px); justify-content: center; overflow: visible; padding: 0px; position: relative; width: 42px; }\",\".framer-cWsEU .framer-ozyapz-container, .framer-cWsEU .framer-1c8g24p-container, .framer-cWsEU .framer-verkua-container { flex: none; height: 16px; position: relative; width: 16px; }\",\".framer-cWsEU .framer-tij09u, .framer-cWsEU .framer-w27jbd { align-content: center; align-items: center; aspect-ratio: 1 / 1; cursor: pointer; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: var(--framer-aspect-ratio-supported, 42px); justify-content: center; overflow: visible; padding: 0px; position: relative; width: 42px; }\",\".framer-cWsEU .framer-jin9rh { align-content: flex-end; align-items: flex-end; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: center; overflow: visible; padding: 20px; position: relative; width: 100%; }\",\".framer-cWsEU .framer-458dhd { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; min-height: 151px; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-cWsEU .framer-1qtspuy-container { flex: none; height: 600px; position: relative; width: 600px; }\",\".framer-cWsEU .framer-ockb06, .framer-cWsEU .framer-1mawdwr { aspect-ratio: 1.3333333333333333 / 1; flex: 1 0 0px; height: var(--framer-aspect-ratio-supported, 150px); overflow: visible; position: relative; width: 1px; }\",\".framer-cWsEU .framer-17uyaci { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-cWsEU .framer-z3eqha { -webkit-user-select: none; flex: none; height: auto; max-width: 800px; position: relative; user-select: none; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-cWsEU.framer-v-1ui749r.framer-dotpzb, .framer-cWsEU.framer-v-5a29q.framer-dotpzb, .framer-cWsEU.framer-v-174uqx4.framer-dotpzb, .framer-cWsEU.framer-v-1cennd7.framer-dotpzb { cursor: pointer; overflow: hidden; }\",\".framer-cWsEU.framer-v-zkifvq.framer-dotpzb, .framer-cWsEU.framer-v-1vkrs9y.framer-dotpzb, .framer-cWsEU.framer-v-guno6q.framer-dotpzb { height: 750px; }\",\".framer-cWsEU.framer-v-zkifvq .framer-10b56cg, .framer-cWsEU.framer-v-5a29q .framer-10b56cg, .framer-cWsEU.framer-v-1vkrs9y .framer-10b56cg, .framer-cWsEU.framer-v-guno6q .framer-10b56cg, .framer-cWsEU.framer-v-174uqx4 .framer-10b56cg, .framer-cWsEU.framer-v-1cennd7 .framer-10b56cg, .framer-cWsEU.framer-v-5a29q.hover .framer-10b56cg, .framer-cWsEU.framer-v-174uqx4.hover .framer-10b56cg, .framer-cWsEU.framer-v-1cennd7.hover .framer-10b56cg { cursor: unset; }\",\".framer-cWsEU.framer-v-zkifvq .framer-glaouu, .framer-cWsEU.framer-v-5a29q .framer-glaouu, .framer-cWsEU.framer-v-1vkrs9y .framer-glaouu, .framer-cWsEU.framer-v-guno6q .framer-glaouu, .framer-cWsEU.framer-v-174uqx4 .framer-glaouu, .framer-cWsEU.framer-v-1cennd7 .framer-glaouu { cursor: pointer; }\",\".framer-cWsEU.framer-v-zkifvq .framer-458dhd, .framer-cWsEU.framer-v-1vkrs9y .framer-458dhd, .framer-cWsEU.framer-v-guno6q .framer-458dhd { flex-direction: column; min-height: unset; }\",\".framer-cWsEU.framer-v-zkifvq .framer-1qtspuy-container, .framer-cWsEU.framer-v-1vkrs9y .framer-1qtspuy-container, .framer-cWsEU.framer-v-guno6q .framer-1qtspuy-container { order: 1; }\",\".framer-cWsEU.framer-v-zkifvq .framer-17uyaci, .framer-cWsEU.framer-v-1vkrs9y .framer-17uyaci, .framer-cWsEU.framer-v-guno6q .framer-17uyaci { order: 0; }\",...sharedStyle.css,...sharedStyle1.css,...sharedStyle2.css,...sharedStyle3.css,...sharedStyle4.css,...sharedStyle5.css,...sharedStyle6.css,...sharedStyle7.css,...sharedStyle8.css,...sharedStyle9.css];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 2232\n * @framerIntrinsicWidth 800\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"KHShV3edk\":{\"layout\":[\"fixed\",\"auto\"]},\"uCBwmjBQu\":{\"layout\":[\"fixed\",\"fixed\"]},\"eidgBDW8h\":{\"layout\":[\"fixed\",\"auto\"]},\"TKTSYrfUK\":{\"layout\":[\"fixed\",\"fixed\"]},\"eLxewNFfL\":{\"layout\":[\"fixed\",\"fixed\"]},\"xoyMutCDP\":{\"layout\":[\"fixed\",\"auto\"]},\"tYIC4_uyy\":{\"layout\":[\"fixed\",\"auto\"]},\"c158jVEyl\":{\"layout\":[\"fixed\",\"auto\"]},\"bRtKujopY\":{\"layout\":[\"fixed\",\"auto\"]},\"wDPpUZi02\":{\"layout\":[\"fixed\",\"auto\"]},\"mvCaRuO_X\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerVariables {\"rspzowpY_\":\"contentField\",\"xXJkVr55n\":\"image\",\"DnMnwQJr2\":\"image2\",\"MO0vC1vFZ\":\"hTMLCode\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerAutoSizeImages true\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n */const FramerBHjr5zCdR=withCSS(Component,css,\"framer-cWsEU\");export default FramerBHjr5zCdR;FramerBHjr5zCdR.displayName=\"View Details\";FramerBHjr5zCdR.defaultProps={height:2232,width:800};addPropertyControls(FramerBHjr5zCdR,{variant:{options:[\"xWGpUyjmO\",\"KHShV3edk\",\"uCBwmjBQu\",\"eidgBDW8h\",\"TKTSYrfUK\",\"eLxewNFfL\",\"xoyMutCDP\",\"tYIC4_uyy\"],optionTitles:[\"Open\",\"Close\",\"Donate C2\",\"Donate close\",\"Donate C3\",\"Donate C1\",\"Variant 7\",\"Variant 8\"],title:\"Variant\",type:ControlType.Enum},rspzowpY_:{defaultValue:'<h3><strong>1. Custom Website Design</strong></h3><p><strong>Tailored to Fit Your Brand, Like a Digital Glove!</strong></p><ul><li data-preset-tag=\"p\"><p>Crafting unique layouts that reflect your brand\u2019s personality.</p></li><li data-preset-tag=\"p\"><p>User-friendly designs optimized for seamless navigation.</p></li><li data-preset-tag=\"p\"><p>Mobile-first approach to ensure it looks amazing everywhere.</p></li></ul><p><strong>Why it matters:</strong> A one-size-fits-all website? No thanks! Your brand deserves something as unique as you are. Let\u2019s create a site that not only wows but converts.</p><h3><strong>2. Responsive Web Development</strong></h3><p><strong>Looks Good, Works Great, On Every Device!</strong></p><ul><li data-preset-tag=\"p\"><p>Websites that adjust perfectly on mobile, tablet, and desktop.</p></li><li data-preset-tag=\"p\"><p>Optimized for speed and performance.</p></li><li data-preset-tag=\"p\"><p>Bug-free functionality for a stress-free experience.</p></li></ul><p><strong>Why it matters:</strong> Your audience deserves a smooth browsing experience\u2014no matter where they\u2019re coming from. Fast, flexible, and flawless is our mantra.</p><h3><strong>3. E-Commerce Development</strong></h3><p><strong>Turning Browsers into Buyers, One Click at a Time!</strong></p><ul><li data-preset-tag=\"p\"><p>Eye-catching online stores with intuitive shopping experiences.</p></li><li data-preset-tag=\"p\"><p>Payment gateways that are secure and simple.</p></li><li data-preset-tag=\"p\"><p>Inventory management solutions to keep you organized.</p></li></ul><p><strong>Why it matters:</strong> Selling online shouldn\u2019t feel like a maze. We\u2019ll help you set up shop so you can focus on growing your business while we handle the tech.</p><h3><strong>4. Content Management Systems (CMS)</strong></h3><p><strong>Empowering You to Take the Wheel of Your Website!</strong></p><ul><li data-preset-tag=\"p\"><p>Easy-to-use platforms like WordPress, Shopify, or custom CMS.</p></li><li data-preset-tag=\"p\"><p>Simple editing tools so you can update content in a flash.</p></li><li data-preset-tag=\"p\"><p>Training and support for smooth operation.</p></li></ul><p><strong>Why it matters:</strong> We believe you shouldn\u2019t need a developer every time you want to tweak your site. We make it easy for you to take control.</p><h3><strong>5. Website Maintenance and Support</strong></h3><p><strong>Because Websites Deserve TLC Too!</strong></p><ul><li data-preset-tag=\"p\"><p>Regular updates to keep your site fresh and secure.</p></li><li data-preset-tag=\"p\"><p>Backups to protect your hard work.</p></li><li data-preset-tag=\"p\"><p>Bug fixes and technical support when you need it.</p></li></ul><p><strong>Why it matters:</strong> A healthy website is a happy website. We keep your digital presence running smoothly so you can focus on what you do best.</p><h3><strong>6. Search Engine Optimization (SEO) Integration</strong></h3><p><strong>Building Sites That Google (and Your Audience) Love!</strong></p><ul><li data-preset-tag=\"p\"><p>SEO-friendly design and structure.</p></li><li data-preset-tag=\"p\"><p>Optimized images and clean coding.</p></li><li data-preset-tag=\"p\"><p>Meta tags and on-page optimization baked right in.</p></li></ul><p><strong>Why it matters:</strong> What good is a beautiful site if no one can find it? We\u2019ll make sure you rank where it counts.</p><h3><strong>7. UX/UI Optimization</strong></h3><p><strong>Websites That Feel as Good as They Look!</strong></p><ul><li data-preset-tag=\"p\"><p>Intuitive navigation for a smooth user journey.</p></li><li data-preset-tag=\"p\"><p>Strategic placement of CTAs for maximum engagement.</p></li><li data-preset-tag=\"p\"><p>Designs tested for real-world usability.</p></li></ul><p><strong>Why it matters:</strong> Good design isn\u2019t just pretty; it\u2019s functional. Let\u2019s create a website that makes every visitor feel right at home.</p>',title:\"Content Field\",type:ControlType.RichText},xXJkVr55n:{title:\"Image\",type:ControlType.ResponsiveImage},DnMnwQJr2:{title:\"Image 2\",type:ControlType.ResponsiveImage},MO0vC1vFZ:{defaultValue:\"Enter HTML\",displayTextArea:true,title:\"HTML Code\",type:ControlType.String}});addFonts(FramerBHjr5zCdR,[{explicitInter:true,fonts:[{family:\"Inter\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/inter/v18/UcCO3FwrK3iLTeHuS_nVMrMxCp50SjIw2boKoduKmMEVuI6fMZ1rib2Bg-4.woff2\",weight:\"500\"},{family:\"Roboto Condensed\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/robotocondensed/v27/ieVo2ZhZI2eCN5jzbjEETS9weq8-_d6T_POl0fRJeyWAovBM731BKMSK.woff2\",weight:\"500\"},{family:\"Roboto Condensed\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/robotocondensed/v27/ieVo2ZhZI2eCN5jzbjEETS9weq8-_d6T_POl0fRJeyWyovBM731BKMSK.woff2\",weight:\"400\"},{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\"}]},...PhosphorFonts,...EmbedFonts,...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)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerBHjr5zCdR\",\"slots\":[],\"annotations\":{\"framerColorSyntax\":\"true\",\"framerIntrinsicWidth\":\"800\",\"framerImmutableVariables\":\"true\",\"framerContractVersion\":\"1\",\"framerComponentViewportWidth\":\"true\",\"framerVariables\":\"{\\\"rspzowpY_\\\":\\\"contentField\\\",\\\"xXJkVr55n\\\":\\\"image\\\",\\\"DnMnwQJr2\\\":\\\"image2\\\",\\\"MO0vC1vFZ\\\":\\\"hTMLCode\\\"}\",\"framerIntrinsicHeight\":\"2232\",\"framerDisplayContentsDiv\":\"false\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"KHShV3edk\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"uCBwmjBQu\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"eidgBDW8h\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"TKTSYrfUK\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"eLxewNFfL\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"xoyMutCDP\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"tYIC4_uyy\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"c158jVEyl\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"bRtKujopY\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"wDPpUZi02\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"mvCaRuO_X\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerAutoSizeImages\":\"true\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (d65f646)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,getPropertyControls,ResolveLinks,RichText,SmartComponentScopedContainer,useComponentViewport,useLocaleInfo,useRouter,useVariantState,withCSS,withFX,withOptimizedAppearEffect}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import ViewDetails from\"https://framerusercontent.com/modules/N1Dz5UKIopQmRehp09V5/60wuAJZhscBSCwe2gyct/BHjr5zCdR.js\";import ButtonButton2 from\"https://framerusercontent.com/modules/iX8og8bHB7VCB91tRvKp/feyoS5VBnImyUxpwTysF/n34cumPxg.js\";const ViewDetailsFonts=getFonts(ViewDetails);const ButtonButton2Fonts=getFonts(ButtonButton2);const SmartComponentScopedContainerWithFXWithOptimizedAppearEffect=withOptimizedAppearEffect(withFX(SmartComponentScopedContainer));const ViewDetailsControls=getPropertyControls(ViewDetails);const cycleOrder=[\"mFK7Z1u2v\",\"fBbKhS7Xd\",\"UBN0ER8xW\"];const serializationHash=\"framer-wl762\";const variantClassNames={fBbKhS7Xd:\"framer-v-rcoa78\",mFK7Z1u2v:\"framer-v-d2wb7v\",UBN0ER8xW:\"framer-v-4wdzhk\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={bounce:.2,delay:0,duration:.4,type:\"spring\"};const animation={filter:\"blur(10px)\",opacity:.001,rotate:0,scale:1,skewX:0,skewY:0,x:0,y:10};const transition2={damping:40,delay:.15,mass:1,stiffness:188,type:\"spring\"};const textEffect={effect:animation,repeat:false,startDelay:0,threshold:.5,tokenization:\"word\",transition:transition2,trigger:\"onInView\",type:\"appear\"};const toResponsiveImage=value=>{if(typeof value===\"object\"&&value!==null&&typeof value.src===\"string\"){return value;}return typeof value===\"string\"?{src:value}:undefined;};const transition3={damping:16,delay:.9,mass:1,stiffness:52,type:\"spring\"};const animation1={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition3,x:0,y:0};const animation2={opacity:.001,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:10};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=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 humanReadableEnumMap={\"Donate C1\":\"eLxewNFfL\",\"Donate C2\":\"uCBwmjBQu\",\"Donate C3\":\"TKTSYrfUK\",\"Donate close\":\"eidgBDW8h\",\"Variant 7\":\"xoyMutCDP\",\"Variant 8\":\"tYIC4_uyy\",Close:\"KHShV3edk\",Open:\"xWGpUyjmO\"};const humanReadableVariantMap={\"Closed without details\":\"UBN0ER8xW\",Closed:\"fBbKhS7Xd\",Opened:\"mFK7Z1u2v\"};const getProps=({background,background2,campgaign,detailedTexts,height,hTMLCode,id,image,image2,shortOverview,text,title,width,...props})=>{return{...props,AvGN0eBp4:background2??props.AvGN0eBp4??\"var(--token-c09d492a-e729-4cbb-b155-5952e8c0f0ee, rgb(245, 247, 249))\",i2_hZ3XXg:background??props.i2_hZ3XXg??\"var(--token-c09d492a-e729-4cbb-b155-5952e8c0f0ee, rgb(245, 247, 249))\",OboBVCCQw:title??props.OboBVCCQw??\"Web Design and Development\",OlhUA7ZJn:humanReadableEnumMap[campgaign]??campgaign??props.OlhUA7ZJn??\"eLxewNFfL\",TVS_Kzce4:hTMLCode??props.TVS_Kzce4??\"Enter HTML\",UIqrvbHnB:detailedTexts??props.UIqrvbHnB??/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(motion.h3,{children:/*#__PURE__*/_jsx(motion.strong,{children:\"What\u2019s Included:\"})}),/*#__PURE__*/_jsxs(motion.ul,{children:[/*#__PURE__*/_jsx(motion.li,{\"data-preset-tag\":\"p\",children:/*#__PURE__*/_jsxs(motion.p,{children:[/*#__PURE__*/_jsx(motion.strong,{children:\"UI Design\"}),\": Eye candy for your website! We make sure every button, color, and layout looks gorgeous and matches your vibe.\"]})}),/*#__PURE__*/_jsx(motion.li,{\"data-preset-tag\":\"p\",children:/*#__PURE__*/_jsxs(motion.p,{children:[/*#__PURE__*/_jsx(motion.strong,{children:\"UX Design\"}),\": No frustrating clicks here! We map out smooth and intuitive user experiences that guide visitors effortlessly.\"]})}),/*#__PURE__*/_jsx(motion.li,{\"data-preset-tag\":\"p\",children:/*#__PURE__*/_jsxs(motion.p,{children:[/*#__PURE__*/_jsx(motion.strong,{children:\"Custom Web Development\"}),\": Need something extra special? We\u2019ll code your dream site from scratch, tailored to your exact needs.\"]})}),/*#__PURE__*/_jsx(motion.li,{\"data-preset-tag\":\"p\",children:/*#__PURE__*/_jsxs(motion.p,{children:[/*#__PURE__*/_jsx(motion.strong,{children:\"E-commerce Development\"}),\": Selling stuff online? We\u2019ll create a secure, easy-to-navigate store that makes checkout a breeze.\"]})}),/*#__PURE__*/_jsx(motion.li,{\"data-preset-tag\":\"p\",children:/*#__PURE__*/_jsxs(motion.p,{children:[/*#__PURE__*/_jsx(motion.strong,{children:\"CMS Integration\"}),\": Want to update your site without calling us every time? We\u2019ll hook you up with WordPress or Webflow for DIY magic.\"]})}),/*#__PURE__*/_jsx(motion.li,{\"data-preset-tag\":\"p\",children:/*#__PURE__*/_jsxs(motion.p,{children:[/*#__PURE__*/_jsx(motion.strong,{children:\"Website Maintenance\"}),\": Think of us as your website\u2019s personal trainer\u2014keeping it fit, fast, and fabulous.\"]})}),/*#__PURE__*/_jsx(motion.li,{\"data-preset-tag\":\"p\",children:/*#__PURE__*/_jsxs(motion.p,{children:[/*#__PURE__*/_jsx(motion.strong,{children:\"Responsive Design\"}),\": Your site will look perfect on all screens, from giant monitors to tiny phones.\"]})})]})]}),UVaRFR8rL:image2??props.UVaRFR8rL,v_FqhkZKZ:image??props.v_FqhkZKZ??{pixelHeight:1800,pixelWidth:2400,src:\"https://framerusercontent.com/images/ksoahdCs5wmZvCWkSavafYdY.png?scale-down-to=2048\",srcSet:\"https://framerusercontent.com/images/ksoahdCs5wmZvCWkSavafYdY.png?scale-down-to=512 512w,https://framerusercontent.com/images/ksoahdCs5wmZvCWkSavafYdY.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/ksoahdCs5wmZvCWkSavafYdY.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/ksoahdCs5wmZvCWkSavafYdY.png 2400w\"},variant:humanReadableVariantMap[props.variant]??props.variant??\"mFK7Z1u2v\",VIhqr_Iw6:text??props.VIhqr_Iw6??\"Your website is like your digital handshake\u2014it\u2019s the first thing people notice about you online. Our Web Design & Development services are all about making that handshake firm, friendly, and unforgettable.\",wVMATwfEj:shortOverview??props.wVMATwfEj??\"Your website is like your digital handshake\u2014it\u2019s the first thing people notice about you online. Our Web Design & Development services are all about making that handshake firm, friendly, and unforgettable.\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const fallbackRef=useRef(null);const refBinding=ref??fallbackRef;const defaultLayoutId=React.useId();const{activeLocale,setLocale}=useLocaleInfo();const componentViewport=useComponentViewport();const{style,className,layoutId,variant,OboBVCCQw,wVMATwfEj,v_FqhkZKZ,UIqrvbHnB,i2_hZ3XXg,VIhqr_Iw6,UVaRFR8rL,AvGN0eBp4,OlhUA7ZJn,TVS_Kzce4,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"mFK7Z1u2v\",ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const sharedStyleClassNames=[];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const isDisplayed=()=>{if(baseVariant===\"fBbKhS7Xd\")return true;return false;};const isDisplayed1=()=>{if(baseVariant===\"UBN0ER8xW\")return false;return true;};const isDisplayed2=()=>{if([\"fBbKhS7Xd\",\"UBN0ER8xW\"].includes(baseVariant))return false;return true;};const router=useRouter();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(motion.div,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-d2wb7v\",className,classNames),\"data-framer-name\":\"Opened\",layoutDependency:layoutDependency,layoutId:\"mFK7Z1u2v\",ref:refBinding,style:{backgroundColor:\"var(--token-c09d492a-e729-4cbb-b155-5952e8c0f0ee, rgb(245, 247, 249))\",...style},variants:{fBbKhS7Xd:{backgroundColor:AvGN0eBp4},UBN0ER8xW:{backgroundColor:i2_hZ3XXg}},...addPropertyOverrides({fBbKhS7Xd:{\"data-framer-name\":\"Closed\"},UBN0ER8xW:{\"data-framer-name\":\"Closed without details\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-16muqwj\",\"data-framer-name\":\"Text Content\",layoutDependency:layoutDependency,layoutId:\"O2On3bO2d\",children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-122128e\",\"data-framer-name\":\"Heading And Supporting Text\",layoutDependency:layoutDependency,layoutId:\"Tuur6uQzj\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h3,{style:{\"--font-selector\":\"RlM7QmViYXMgTmV1ZS1yZWd1bGFy\",\"--framer-font-family\":'\"Bebas Neue\", \"Bebas Neue Placeholder\", sans-serif',\"--framer-font-size\":\"26px\",\"--framer-letter-spacing\":\"-0.04em\",\"--framer-line-height\":\"1em\",\"--framer-text-color\":\"var(--extracted-a0htzi, var(--token-9e4d3cd9-c6a1-4d3f-93c0-3bd54ca04155, rgb(29, 50, 45)))\"},children:\"Web Design and Development\"})}),className:\"framer-1cvwrey\",effect:textEffect,fonts:[\"FS;Bebas Neue-regular\"],layoutDependency:layoutDependency,layoutId:\"MPdyNPaxg\",style:{\"--extracted-a0htzi\":\"var(--token-9e4d3cd9-c6a1-4d3f-93c0-3bd54ca04155, rgb(29, 50, 45))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},text:OboBVCCQw,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7Um9ib3RvIENvbmRlbnNlZC01MDA=\",\"--framer-font-family\":'\"Roboto Condensed\", \"Roboto Condensed Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.03em\",\"--framer-line-height\":\"150%\",\"--framer-text-alignment\":\"left\"},children:\"Your website is like your digital handshake\u2014it\u2019s the first thing people notice about you online. Our Web Design & Development services are all about making that handshake firm, friendly, and unforgettable.\"})}),className:\"framer-1uu7jbh\",fonts:[\"GF;Roboto Condensed-500\"],layoutDependency:layoutDependency,layoutId:\"JsKTHhJH8\",style:{\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\",opacity:.8},text:wVMATwfEj,variants:{UBN0ER8xW:{\"--extracted-r6o4lv\":\"var(--token-f8c9b9a8-e753-451c-a939-fa09640fa9dc, rgb(13, 13, 13))\"}},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({fBbKhS7Xd:{text:VIhqr_Iw6},UBN0ER8xW:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7Um9ib3RvIENvbmRlbnNlZC01MDA=\",\"--framer-font-family\":'\"Roboto Condensed\", \"Roboto Condensed Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"150%\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-f8c9b9a8-e753-451c-a939-fa09640fa9dc, rgb(13, 13, 13)))\"},children:\"Your website is like your digital handshake\u2014it\u2019s the first thing people notice about you online. Our Web Design & Development services are all about making that handshake firm, friendly, and unforgettable.\"})})}},baseVariant,gestureVariant)}),isDisplayed()&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7Um9ib3RvIENvbmRlbnNlZC01MDA=\",\"--framer-font-family\":'\"Roboto Condensed\", \"Roboto Condensed Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.03em\",\"--framer-line-height\":\"150%\",\"--framer-text-alignment\":\"left\"},children:\"Your website is like your digital handshake\u2014it\u2019s the first thing people notice about you online. Our Web Design & Development services are all about making that handshake firm, friendly, and unforgettable.\"})}),className:\"framer-8cd8rf\",fonts:[\"GF;Roboto Condensed-500\"],layoutDependency:layoutDependency,layoutId:\"GoAXkVZNC\",style:{\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\",opacity:.8},text:wVMATwfEj,verticalAlignment:\"top\",withExternalLayout:true})]})}),isDisplayed1()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{height:2232,width:`calc(${componentViewport?.width||\"100vw\"} - 20px)`,y:(componentViewport?.y||0)+10+(((componentViewport?.height||1863)-20-4811)/2+217+30),...addPropertyOverrides({fBbKhS7Xd:{y:(componentViewport?.y||0)+10+(((componentViewport?.height||450)-20-4892)/2+368+30)}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1perc4q-container\",layoutDependency:layoutDependency,layoutId:\"ltf8SzlUm-container\",nodeId:\"ltf8SzlUm\",rendersWithMotion:true,scopeId:\"PUeZboehZ\",children:/*#__PURE__*/_jsx(ViewDetails,{DnMnwQJr2:toResponsiveImage(UVaRFR8rL),height:\"100%\",id:\"ltf8SzlUm\",layoutId:\"ltf8SzlUm\",MO0vC1vFZ:\"Enter HTML\",rspzowpY_:UIqrvbHnB,style:{width:\"100%\"},variant:\"xWGpUyjmO\",width:\"100%\",xXJkVr55n:toResponsiveImage(v_FqhkZKZ),...addPropertyOverrides({fBbKhS7Xd:{variant:\"KHShV3edk\"}},baseVariant,gestureVariant)})})}),isDisplayed1()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{height:2232,width:`calc(${componentViewport?.width||\"100vw\"} - 20px)`,y:(componentViewport?.y||0)+10+(((componentViewport?.height||1863)-20-4811)/2+2449+60),...addPropertyOverrides({fBbKhS7Xd:{y:(componentViewport?.y||0)+10+(((componentViewport?.height||450)-20-4892)/2+2600+60)}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-ykeuhv-container\",layoutDependency:layoutDependency,layoutId:\"yQAeeKZ6T-container\",nodeId:\"yQAeeKZ6T\",rendersWithMotion:true,scopeId:\"PUeZboehZ\",children:/*#__PURE__*/_jsx(ViewDetails,{DnMnwQJr2:toResponsiveImage(UVaRFR8rL),height:\"100%\",id:\"yQAeeKZ6T\",layoutId:\"yQAeeKZ6T\",MO0vC1vFZ:TVS_Kzce4,rspzowpY_:UIqrvbHnB,style:{width:\"100%\"},variant:OlhUA7ZJn,width:\"100%\",xXJkVr55n:toResponsiveImage(v_FqhkZKZ),...addPropertyOverrides({fBbKhS7Xd:{variant:\"eidgBDW8h\"}},baseVariant,gestureVariant)})})}),isDisplayed2()&&/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"augiA20Il\"},implicitPathVariables:undefined}],children:resolvedLinks=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:40,y:(componentViewport?.y||0)+10+(((componentViewport?.height||1863)-20-4811)/2+4681+90),children:/*#__PURE__*/_jsx(SmartComponentScopedContainerWithFXWithOptimizedAppearEffect,{__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,animate:animation1,className:\"framer-yz10fv-container\",\"data-framer-appear-id\":\"yz10fv\",initial:animation2,layoutDependency:layoutDependency,layoutId:\"U6p3d9E9U-container\",nodeId:\"U6p3d9E9U\",optimized:true,rendersWithMotion:true,scopeId:\"PUeZboehZ\",children:/*#__PURE__*/_jsx(ButtonButton2,{dBeFYRcUU:\"var(--token-5f07c49c-cabb-487f-b598-70919afb1f9a, rgb(40, 117, 117))\",fsdfh1UMA:resolvedLinks[0],height:\"100%\",id:\"U6p3d9E9U\",layoutId:\"U6p3d9E9U\",O2_oLkk2a:true,PLawRz9Cz:\"var(--token-e20b81d4-d539-406e-9652-bd00c86b32e7, rgb(255, 255, 255))\",RmUMWgq7w:false,T8QypKCli:\"rgb(255, 255, 255)\",tF3xadmZj:\"Volunteer With Us\",variant:\"PRQ5qMkPY\",width:\"100%\",xDX_bN8XN:{borderColor:\"rgb(255, 255, 255)\",borderStyle:\"solid\",borderWidth:1}})})})})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-wl762.framer-3cl9jo, .framer-wl762 .framer-3cl9jo { display: block; }\",\".framer-wl762.framer-d2wb7v { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 30px; height: min-content; justify-content: center; overflow: visible; padding: 10px; position: relative; width: 740px; }\",\".framer-wl762 .framer-16muqwj { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 30px; height: min-content; justify-content: flex-end; overflow: hidden; padding: 20px; position: relative; width: 100%; }\",\".framer-wl762 .framer-122128e { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-wl762 .framer-1cvwrey { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-wl762 .framer-1uu7jbh, .framer-wl762 .framer-8cd8rf { --framer-text-wrap: balance; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-wl762 .framer-1perc4q-container, .framer-wl762 .framer-ykeuhv-container { flex: none; height: auto; position: relative; width: 100%; }\",\".framer-wl762 .framer-yz10fv-container { flex: none; height: auto; position: relative; width: auto; }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 1863\n * @framerIntrinsicWidth 740\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"fBbKhS7Xd\":{\"layout\":[\"fixed\",\"auto\"]},\"UBN0ER8xW\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerVariables {\"OboBVCCQw\":\"title\",\"wVMATwfEj\":\"shortOverview\",\"v_FqhkZKZ\":\"image\",\"UIqrvbHnB\":\"detailedTexts\",\"i2_hZ3XXg\":\"background\",\"VIhqr_Iw6\":\"text\",\"UVaRFR8rL\":\"image2\",\"AvGN0eBp4\":\"background2\",\"OlhUA7ZJn\":\"campgaign\",\"TVS_Kzce4\":\"hTMLCode\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerAutoSizeImages true\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n */const FramerPUeZboehZ=withCSS(Component,css,\"framer-wl762\");export default FramerPUeZboehZ;FramerPUeZboehZ.displayName=\"Service - Card\";FramerPUeZboehZ.defaultProps={height:1863,width:740};addPropertyControls(FramerPUeZboehZ,{variant:{options:[\"mFK7Z1u2v\",\"fBbKhS7Xd\",\"UBN0ER8xW\"],optionTitles:[\"Opened\",\"Closed\",\"Closed without details\"],title:\"Variant\",type:ControlType.Enum},OboBVCCQw:{defaultValue:\"Web Design and Development\",displayTextArea:false,title:\"Title\",type:ControlType.String},wVMATwfEj:{defaultValue:\"Your website is like your digital handshake\u2014it\u2019s the first thing people notice about you online. Our Web Design & Development services are all about making that handshake firm, friendly, and unforgettable.\",displayTextArea:true,title:\"Short Overview\",type:ControlType.String},v_FqhkZKZ:{__defaultAssetReference:\"data:framer/asset-reference,ksoahdCs5wmZvCWkSavafYdY.png?originalFilename=Frame+2976.png&preferredSize=auto\",title:\"Image\",type:ControlType.ResponsiveImage},UIqrvbHnB:{defaultValue:'<h3><strong>What\u2019s Included:</strong></h3><ul><li data-preset-tag=\"p\"><p><strong>UI Design</strong>: Eye candy for your website! We make sure every button, color, and layout looks gorgeous and matches your vibe.</p></li><li data-preset-tag=\"p\"><p><strong>UX Design</strong>: No frustrating clicks here! We map out smooth and intuitive user experiences that guide visitors effortlessly.</p></li><li data-preset-tag=\"p\"><p><strong>Custom Web Development</strong>: Need something extra special? We\u2019ll code your dream site from scratch, tailored to your exact needs.</p></li><li data-preset-tag=\"p\"><p><strong>E-commerce Development</strong>: Selling stuff online? We\u2019ll create a secure, easy-to-navigate store that makes checkout a breeze.</p></li><li data-preset-tag=\"p\"><p><strong>CMS Integration</strong>: Want to update your site without calling us every time? We\u2019ll hook you up with WordPress or Webflow for DIY magic.</p></li><li data-preset-tag=\"p\"><p><strong>Website Maintenance</strong>: Think of us as your website\u2019s personal trainer\u2014keeping it fit, fast, and fabulous.</p></li><li data-preset-tag=\"p\"><p><strong>Responsive Design</strong>: Your site will look perfect on all screens, from giant monitors to tiny phones.</p></li></ul>',title:\"Detailed Texts\",type:ControlType.RichText},i2_hZ3XXg:{defaultValue:\"var(--token-c09d492a-e729-4cbb-b155-5952e8c0f0ee, rgb(245, 247, 249))\",title:\"Background\",type:ControlType.Color},VIhqr_Iw6:{defaultValue:\"Your website is like your digital handshake\u2014it\u2019s the first thing people notice about you online. Our Web Design & Development services are all about making that handshake firm, friendly, and unforgettable.\",displayTextArea:false,title:\"Text\",type:ControlType.String},UVaRFR8rL:{title:\"Image 2\",type:ControlType.ResponsiveImage},AvGN0eBp4:{defaultValue:\"var(--token-c09d492a-e729-4cbb-b155-5952e8c0f0ee, rgb(245, 247, 249))\",title:\"Background 2\",type:ControlType.Color},OlhUA7ZJn:ViewDetailsControls?.[\"variant\"]&&{...ViewDetailsControls[\"variant\"],defaultValue:\"eLxewNFfL\",description:undefined,hidden:undefined,title:\"Campgaign\"},TVS_Kzce4:{defaultValue:\"Enter HTML\",displayTextArea:true,title:\"HTML Code\",type:ControlType.String}});addFonts(FramerPUeZboehZ,[{explicitInter:true,fonts:[{family:\"Bebas Neue\",source:\"fontshare\",style:\"normal\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/AWXLDXTI2CYJ5SHK74YUPGPFS5S5BWLL/M6ZJD4UOFNT4DPUXGTK7T46JZ3W3QW64/2TXZKBJMJVP3NQX7K7MGJDQFMD4ZMJR7.woff2\",weight:\"400\"},{family:\"Roboto Condensed\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/robotocondensed/v27/ieVo2ZhZI2eCN5jzbjEETS9weq8-_d6T_POl0fRJeyWAovBM731BKMSK.woff2\",weight:\"500\"}]},...ViewDetailsFonts,...ButtonButton2Fonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerPUeZboehZ\",\"slots\":[],\"annotations\":{\"framerDisplayContentsDiv\":\"false\",\"framerContractVersion\":\"1\",\"framerAutoSizeImages\":\"true\",\"framerIntrinsicHeight\":\"1863\",\"framerImmutableVariables\":\"true\",\"framerColorSyntax\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"fBbKhS7Xd\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"UBN0ER8xW\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerComponentViewportWidth\":\"true\",\"framerVariables\":\"{\\\"OboBVCCQw\\\":\\\"title\\\",\\\"wVMATwfEj\\\":\\\"shortOverview\\\",\\\"v_FqhkZKZ\\\":\\\"image\\\",\\\"UIqrvbHnB\\\":\\\"detailedTexts\\\",\\\"i2_hZ3XXg\\\":\\\"background\\\",\\\"VIhqr_Iw6\\\":\\\"text\\\",\\\"UVaRFR8rL\\\":\\\"image2\\\",\\\"AvGN0eBp4\\\":\\\"background2\\\",\\\"OlhUA7ZJn\\\":\\\"campgaign\\\",\\\"TVS_Kzce4\\\":\\\"hTMLCode\\\"}\",\"framerIntrinsicWidth\":\"740\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (86f5ff9)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,Link,RichText,SmartComponentScopedContainer,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import{Icon as Phosphor}from\"https://framerusercontent.com/modules/tYScH7LTqUtz5KUaUAYP/p8dptk4UIND8hbFWz9V7/Phosphor.js\";const PhosphorFonts=getFonts(Phosphor);const enabledGestures={NkzMjHjys:{hover:true}};const cycleOrder=[\"NkzMjHjys\",\"UU4D5uwVI\"];const serializationHash=\"framer-b7bKq\";const variantClassNames={NkzMjHjys:\"framer-v-v7t71d\",UU4D5uwVI:\"framer-v-1azy867\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={bounce:.2,delay:0,duration:1,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=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={Active:\"UU4D5uwVI\",Default:\"NkzMjHjys\"};const getProps=({height,id,link,title,width,...props})=>{return{...props,Q5VBa6djI:link??props.Q5VBa6djI,variant:humanReadableVariantMap[props.variant]??props.variant??\"NkzMjHjys\",WmDf9W7be:title??props.WmDf9W7be??\"Other Services\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const fallbackRef=useRef(null);const refBinding=ref??fallbackRef;const defaultLayoutId=React.useId();const{activeLocale,setLocale}=useLocaleInfo();const componentViewport=useComponentViewport();const{style,className,layoutId,variant,WmDf9W7be,Q5VBa6djI,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"NkzMjHjys\",enabledGestures,ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const sharedStyleClassNames=[];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(Link,{href:Q5VBa6djI,motionChild:true,nodeId:\"NkzMjHjys\",scopeId:\"qTmsYlXMw\",children:/*#__PURE__*/_jsxs(motion.a,{...restProps,...gestureHandlers,className:`${cx(scopingClassNames,\"framer-v7t71d\",className,classNames)} framer-ycw2sz`,\"data-framer-name\":\"Default\",layoutDependency:layoutDependency,layoutId:\"NkzMjHjys\",ref:refBinding,style:{...style},...addPropertyOverrides({\"NkzMjHjys-hover\":{\"data-framer-name\":undefined},UU4D5uwVI:{\"data-framer-name\":\"Active\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-u3w7ss-container\",isAuthoredByUser:true,isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"jiRoA_uQD-container\",nodeId:\"jiRoA_uQD\",rendersWithMotion:true,scopeId:\"qTmsYlXMw\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"var(--token-441e6b96-cded-437c-bbd4-5862cce7caef, rgb(255, 109, 65))\",height:\"100%\",iconSearch:\"House\",iconSelection:\"CaretRight\",id:\"jiRoA_uQD\",layoutId:\"jiRoA_uQD\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"bold\",width:\"100%\",...addPropertyOverrides({\"NkzMjHjys-hover\":{color:\"var(--token-5f07c49c-cabb-487f-b598-70919afb1f9a, rgb(40, 117, 117))\"},UU4D5uwVI:{color:\"var(--token-5f07c49c-cabb-487f-b598-70919afb1f9a, rgb(40, 117, 117))\",weight:\"fill\"}},baseVariant,gestureVariant)})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7Um9ib3RvIENvbmRlbnNlZC01MDA=\",\"--framer-font-family\":'\"Roboto Condensed\", \"Roboto Condensed Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.01em\",\"--framer-line-height\":\"140%\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-9e4d3cd9-c6a1-4d3f-93c0-3bd54ca04155, rgb(29, 50, 45)))\"},children:\"Other Services\"})}),className:\"framer-1k7xle9\",fonts:[\"GF;Roboto Condensed-500\"],layoutDependency:layoutDependency,layoutId:\"B37I1dMBG\",style:{\"--extracted-r6o4lv\":\"var(--token-9e4d3cd9-c6a1-4d3f-93c0-3bd54ca04155, rgb(29, 50, 45))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\",opacity:.8},text:WmDf9W7be,variants:{UU4D5uwVI:{opacity:1}},verticalAlignment:\"top\",withExternalLayout:true})]})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-b7bKq.framer-ycw2sz, .framer-b7bKq .framer-ycw2sz { display: block; }\",\".framer-b7bKq.framer-v7t71d { align-content: center; align-items: center; cursor: pointer; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 2px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 5px 4px 5px 0px; position: relative; text-decoration: none; width: 207px; }\",\".framer-b7bKq .framer-u3w7ss-container { flex: none; height: 16px; left: -16px; position: absolute; top: calc(51.51515151515154% - 16px / 2); width: 16px; z-index: 1; }\",\".framer-b7bKq .framer-1k7xle9 { -webkit-user-select: none; flex: none; height: auto; position: relative; user-select: none; white-space: pre; width: auto; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-b7bKq.framer-v7t71d { gap: 0px; } .framer-b7bKq.framer-v7t71d > * { margin: 0px; margin-left: calc(2px / 2); margin-right: calc(2px / 2); } .framer-b7bKq.framer-v7t71d > :first-child { margin-left: 0px; } .framer-b7bKq.framer-v7t71d > :last-child { margin-right: 0px; } }\",\".framer-b7bKq.framer-v-1azy867.framer-v7t71d { cursor: unset; gap: 7px; }\",\".framer-b7bKq.framer-v-1azy867 .framer-u3w7ss-container { height: 18px; left: unset; position: relative; top: unset; width: 18px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-b7bKq.framer-v-1azy867.framer-v7t71d { gap: 0px; } .framer-b7bKq.framer-v-1azy867.framer-v7t71d > * { margin: 0px; margin-left: calc(7px / 2); margin-right: calc(7px / 2); } .framer-b7bKq.framer-v-1azy867.framer-v7t71d > :first-child { margin-left: 0px; } .framer-b7bKq.framer-v-1azy867.framer-v7t71d > :last-child { margin-right: 0px; } }\",\".framer-b7bKq.framer-v-v7t71d.hover .framer-u3w7ss-container { left: unset; position: relative; top: unset; }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 38\n * @framerIntrinsicWidth 207\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"UU4D5uwVI\":{\"layout\":[\"fixed\",\"auto\"]},\"NUGTt6aDL\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerVariables {\"WmDf9W7be\":\"title\",\"Q5VBa6djI\":\"link\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerAutoSizeImages true\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n */const FramerqTmsYlXMw=withCSS(Component,css,\"framer-b7bKq\");export default FramerqTmsYlXMw;FramerqTmsYlXMw.displayName=\"Sidebar - Service Title - Single\";FramerqTmsYlXMw.defaultProps={height:38,width:207};addPropertyControls(FramerqTmsYlXMw,{variant:{options:[\"NkzMjHjys\",\"UU4D5uwVI\"],optionTitles:[\"Default\",\"Active\"],title:\"Variant\",type:ControlType.Enum},WmDf9W7be:{defaultValue:\"Other Services\",displayTextArea:false,title:\"Title\",type:ControlType.String},Q5VBa6djI:{title:\"Link\",type:ControlType.Link}});addFonts(FramerqTmsYlXMw,[{explicitInter:true,fonts:[{family:\"Roboto Condensed\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/robotocondensed/v27/ieVo2ZhZI2eCN5jzbjEETS9weq8-_d6T_POl0fRJeyWAovBM731BKMSK.woff2\",weight:\"500\"}]},...PhosphorFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerqTmsYlXMw\",\"slots\":[],\"annotations\":{\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"UU4D5uwVI\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"NUGTt6aDL\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerIntrinsicWidth\":\"207\",\"framerContractVersion\":\"1\",\"framerAutoSizeImages\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerImmutableVariables\":\"true\",\"framerIntrinsicHeight\":\"38\",\"framerVariables\":\"{\\\"WmDf9W7be\\\":\\\"title\\\",\\\"Q5VBa6djI\\\":\\\"link\\\"}\",\"framerColorSyntax\":\"true\",\"framerComponentViewportWidth\":\"true\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./qTmsYlXMw.map"],
  "mappings": "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",
  "names": ["Embed", "type", "url", "html", "zoom", "radius", "border", "style", "p", "EmbedUrl", "EmbedHtml", "Instructions", "addPropertyControls", "ControlType", "props", "getMinHeight", "emptyStateStyle", "centerTextStyle", "hasAutoHeight", "onCanvas", "useIsOnCanvas", "state", "setState", "ye", "ue", "isLastEffect", "load", "response", "isBlocked", "message", "error", "ErrorMessage", "LoadingIndicator", "iframeStyle", "getSandbox", "result", "hasSplineViewer", "hasComment", "EmbedHtmlWithScripts", "EmbedHtmlInsideIframe", "EmbedHtmlWithoutScripts", "ref", "pe", "iframeHeight", "setIframeHeight", "iframeWindow", "handleMessage", "event", "data", "height", "window", "srcDoc", "currentStyle", "div", "executeScripts", "htmlStyle", "node", "script", "name", "value", "child", "containerStyles", "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", "fontStore", "fonts", "css", "className", "fontStore", "fonts", "css", "className", "PhosphorFonts", "getFonts", "Icon", "EmbedFonts", "Embed", "enabledGestures", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "isSet", "value", "toResponsiveImage", "Transition", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "contentField", "height", "hTMLCode", "id", "image", "image2", "width", "props", "u", "createLayoutDependency", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "rspzowpY_", "xXJkVr55n", "DnMnwQJr2", "MO0vC1vFZ", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onTapmghnem", "args", "onTapurpu7b", "onTap12evlxp", "onTap109kae6", "onTap1jbiib1", "onTaprz8rl6", "onTap9okeqq", "onTap1tjxyv4", "onTap1l41m3e", "onTap1ppcyvk", "onTap1iyl3m6", "scopingClassNames", "cx", "isDisplayed", "isDisplayed1", "isDisplayed2", "isDisplayed3", "isDisplayed4", "visible", "isDisplayed5", "isDisplayed6", "LayoutGroup", "RichText2", "ComponentViewportProvider", "SmartComponentScopedContainer", "Image2", "getLoadingLazyAtYPosition", "css", "FramerBHjr5zCdR", "withCSS", "BHjr5zCdR_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts", "ViewDetailsFonts", "getFonts", "BHjr5zCdR_default", "ButtonButton2Fonts", "n34cumPxg_default", "SmartComponentScopedContainerWithFXWithOptimizedAppearEffect", "withOptimizedAppearEffect", "withFX", "SmartComponentScopedContainer", "ViewDetailsControls", "getPropertyControls", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "animation", "transition2", "textEffect", "toResponsiveImage", "value", "transition3", "animation1", "animation2", "Transition", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableEnumMap", "humanReadableVariantMap", "getProps", "background", "background2", "campgaign", "detailedTexts", "height", "hTMLCode", "id", "image", "image2", "shortOverview", "text", "title", "width", "props", "u", "createLayoutDependency", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "OboBVCCQw", "wVMATwfEj", "v_FqhkZKZ", "UIqrvbHnB", "i2_hZ3XXg", "VIhqr_Iw6", "UVaRFR8rL", "AvGN0eBp4", "OlhUA7ZJn", "TVS_Kzce4", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "scopingClassNames", "cx", "isDisplayed", "isDisplayed1", "isDisplayed2", "router", "useRouter", "LayoutGroup", "RichText2", "ComponentViewportProvider", "ResolveLinks", "resolvedLinks", "css", "FramerPUeZboehZ", "withCSS", "PUeZboehZ_default", "addPropertyControls", "ControlType", "addFonts", "PhosphorFonts", "getFonts", "Icon", "enabledGestures", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "height", "id", "link", "title", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "WmDf9W7be", "Q5VBa6djI", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "scopingClassNames", "cx", "LayoutGroup", "Link", "u", "ComponentViewportProvider", "SmartComponentScopedContainer", "RichText2", "css", "FramerqTmsYlXMw", "withCSS", "qTmsYlXMw_default", "addPropertyControls", "ControlType", "addFonts"]
}
