{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/o1PI5S8YtkA5bP5g4dFz/s801VqobGI0Gkh3K9b41/Embed.js", "ssg:https://framerusercontent.com/modules/4b0Kogv54zxmo35wQnn5/0H18v4PM6VFwhsVZsdTH/NsdXKewpx.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", "// Generated by Framer (7d51cf8)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,getFontsFromSharedStyle,Link,RichText,SmartComponentScopedContainer,SVG,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*as sharedStyle from\"https://framerusercontent.com/modules/7e2vC36dYwRdSMQpAaw3/IbRF5b8N5LlH7bVDYJ40/el5HpB_jV.js\";import*as sharedStyle1 from\"https://framerusercontent.com/modules/aZUFOtlHtSPNlZC3MTaN/qzahWXUFzANq7Etv8bBc/UsqEjTX8D.js\";import SmallButton from\"https://framerusercontent.com/modules/bLaXjnDtidnJnD0S0XGd/MHXKy10oquZAe939e2Uv/Gnbxpyy7n.js\";import MainButtonGreenArrow from\"https://framerusercontent.com/modules/xUStdmNanKwDaPfutTEv/t8mhHTVcOA4hGI3nRlAe/up1YlInym.js\";const MainButtonGreenArrowFonts=getFonts(MainButtonGreenArrow);const SmallButtonFonts=getFonts(SmallButton);const EmbedFonts=getFonts(Embed);const cycleOrder=[\"K0S4wYyI5\",\"tB0iuvjNk\",\"mM2EmgPJZ\",\"cnZKYVqzF\"];const serializationHash=\"framer-Jh7yD\";const variantClassNames={cnZKYVqzF:\"framer-v-x8v7m1\",K0S4wYyI5:\"framer-v-1fclil3\",mM2EmgPJZ:\"framer-v-qpuin5\",tB0iuvjNk:\"framer-v-11pmsb0\"};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 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={\"Desktop Medium\":\"tB0iuvjNk\",Desktop:\"K0S4wYyI5\",Mobile:\"cnZKYVqzF\",Tablet:\"mM2EmgPJZ\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"K0S4wYyI5\"};};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,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"K0S4wYyI5\",ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const isDisplayed=()=>{if(baseVariant===\"cnZKYVqzF\")return true;return false;};const isDisplayed1=()=>{if(baseVariant===\"cnZKYVqzF\")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__*/_jsx(motion.footer,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-1fclil3\",className,classNames),\"data-framer-name\":\"Desktop\",layoutDependency:layoutDependency,layoutId:\"K0S4wYyI5\",ref:refBinding,style:{backgroundColor:\"rgb(255, 255, 255)\",...style},...addPropertyOverrides({cnZKYVqzF:{\"data-framer-name\":\"Mobile\"},mM2EmgPJZ:{\"data-framer-name\":\"Tablet\"},tB0iuvjNk:{\"data-framer-name\":\"Desktop Medium\"}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-hvowt5\",\"data-framer-name\":\"Content\",layoutDependency:layoutDependency,layoutId:\"EYOotB0m6\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-z6om59\",\"data-framer-name\":\"Top\",layoutDependency:layoutDependency,layoutId:\"Ri37j8ea2\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-1wrbu6i\",\"data-framer-name\":\"Shopify Icons\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:24,intrinsicWidth:217,layoutDependency:layoutDependency,layoutId:\"f4qsTqvP2\",svg:'<svg width=\"217\" height=\"24\" viewBox=\"0 0 217 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<g clip-path=\"url(#clip0_336_2805)\">\\n<path d=\"M90.9533 9.07291C89.4669 9.07291 88.2471 9.59061 87.3801 10.5796L87.5481 9.70781C87.6011 9.43187 87.4131 9.19867 87.1373 9.19867C86.8613 9.19867 86.5829 9.43187 86.5303 9.70781L83.9621 23.0416C83.9089 23.3174 84.0969 23.5506 84.3729 23.5506C84.6489 23.5506 84.9273 23.3174 84.9803 23.0416L85.9339 18.0892C86.2849 18.7223 87.0993 19.5904 88.9277 19.5904C90.3581 19.5904 91.5577 19.1509 92.4943 18.2828C93.4607 17.3872 94.1199 16.0545 94.4539 14.3207C94.7879 12.5881 94.6407 11.2585 94.0181 10.369C93.4161 9.50941 92.3843 9.07291 90.9533 9.07291ZM89.1079 18.6576C86.9327 18.6576 86.0719 17.1582 86.6183 14.3219C87.1701 11.4587 88.5469 10.0069 90.7111 10.0069C93.0761 10.0069 93.9533 11.4184 93.3941 14.3219C92.8239 17.2797 91.4619 18.6576 89.1079 18.6576Z\" fill=\"#1F2125\"/>\\n<path d=\"M113.115 13.7584C111.825 13.2798 110.606 12.828 110.838 11.6253C110.954 11.0209 111.445 10.0063 113.421 10.0063C114.531 10.0063 115.232 10.3134 115.84 11.0667C115.954 11.2071 116.083 11.2071 116.139 11.2071C116.391 11.2071 116.647 10.9935 116.695 10.7401C116.722 10.6028 116.696 10.5216 116.636 10.4135C116.633 10.4092 116.631 10.405 116.628 10.4007C116.011 9.51915 114.993 9.07227 113.601 9.07227C111.572 9.07227 110.124 10.0503 109.82 11.6247C109.457 13.5093 111.125 14.1406 112.598 14.6973C113.87 15.1784 115.073 15.6326 114.85 16.7852C114.536 18.4134 112.829 18.6564 111.839 18.6564C110.474 18.6564 109.632 18.2852 109.02 17.4146C109.019 17.4122 109.016 17.4091 109.014 17.4067C108.939 17.3133 108.838 17.2663 108.716 17.2663C108.491 17.2663 108.213 17.4543 108.159 17.7333C108.132 17.87 108.158 17.9506 108.219 18.0593C108.625 18.8206 109.848 19.5904 111.66 19.5904C113.957 19.5904 115.53 18.5416 115.868 16.7852C116.23 14.9128 114.575 14.2993 113.115 13.7584Z\" fill=\"#1F2125\"/>\\n<path d=\"M110.033 6.43985H108.959L109.165 5.36539C109.219 5.08945 109.031 4.85623 108.755 4.85623C108.479 4.85623 108.2 5.08945 108.147 5.36539L107.94 6.43985H106.866C106.59 6.43985 106.312 6.67307 106.259 6.94901C106.206 7.22495 106.394 7.45815 106.67 7.45815H107.744L107.537 8.53261C107.484 8.80855 107.672 9.04177 107.948 9.04177C108.224 9.04177 108.502 8.80855 108.555 8.53261L108.762 7.45815H109.836C110.112 7.45815 110.39 7.22495 110.443 6.94901C110.498 6.67367 110.309 6.43985 110.033 6.43985Z\" fill=\"#1F2125\"/>\\n<path d=\"M24.725 16.7882C25.247 17.0599 26.1866 17.4354 27.0846 17.4146C27.899 17.4146 28.3374 16.9757 28.3374 16.4335C28.3374 15.9116 28.0242 15.5569 27.1468 15.0557C26.0614 14.4293 25.247 13.552 25.247 12.4037C25.247 10.3781 26.9802 8.93735 29.5064 8.93735C30.6132 8.93735 31.4692 9.14613 31.9282 9.41779L31.2604 11.4642C30.8636 11.2761 30.2164 11.0673 29.465 11.0673C28.6506 11.0673 28.1286 11.4434 28.1286 12.0276C28.1286 12.4867 28.5046 12.8213 29.2354 13.2181C30.363 13.8652 31.3026 14.7425 31.3026 15.9745C31.3026 18.2711 29.4442 19.566 26.855 19.5452C25.6646 19.5245 24.5578 19.2107 24.0156 18.8352L24.725 16.7882Z\" fill=\"#1F2125\"/>\\n<path d=\"M31.8906 19.4885L34.6884 4.86783H37.57L36.4632 10.5356L36.5046 10.4984C37.277 9.57959 38.2794 8.94529 39.5528 8.94529C41.0564 8.94529 41.9124 9.91231 41.9124 11.5411C41.9124 12.0423 41.8288 12.8524 41.7036 13.4794L40.576 19.4891H37.6946L38.78 13.6595C38.863 13.2627 38.9058 12.7493 38.9058 12.353C38.9058 11.7267 38.6554 11.2719 38.0076 11.2719C37.0888 11.2719 36.1072 12.499 35.7318 14.3994L34.7708 19.4891H31.8906V19.4885Z\" fill=\"#1F2125\"/>\\n<path d=\"M52.3319 12.9465C52.3319 16.5172 50.0347 19.566 46.6311 19.566C44.0421 19.566 42.6641 17.77 42.6641 15.5356C42.6641 12.0484 44.9615 8.91602 48.4273 8.91602C51.1213 8.91662 52.3319 10.8794 52.3319 12.9465ZM45.6085 15.4733C45.6085 16.5172 46.0261 17.3524 47.0079 17.3524C48.5317 17.3524 49.3881 14.6375 49.3881 12.8628C49.3881 12.0069 49.0535 11.1303 48.0311 11.1303C46.4645 11.1297 45.6085 13.8231 45.6085 15.4733Z\" fill=\"#1F2125\"/>\\n<path d=\"M51.6445 23.55L53.6487 13.013C53.8789 11.8225 54.1079 10.2829 54.2335 9.19925H56.7811L56.6139 10.8238H56.6553C57.4277 9.74075 58.5559 9.01367 59.7035 9.01367C61.8121 9.01367 62.6687 10.698 62.6687 12.64C62.6687 16.1485 60.4557 19.6039 57.0729 19.6039C56.3629 19.6039 55.7159 19.4885 55.3813 19.218H55.3185L54.5247 23.55H51.6445ZM55.7585 16.9763C56.0717 17.2266 56.4265 17.3939 56.9491 17.3939C58.5571 17.3939 59.6639 14.7419 59.6639 12.8836C59.6639 12.1113 59.3923 11.2969 58.5155 11.2969C57.5131 11.2969 56.5735 12.4874 56.2397 14.2828L55.7585 16.9763Z\" fill=\"#1F2125\"/>\\n<path d=\"M62.75 19.4885L64.692 9.19991H67.5942L65.6314 19.4885H62.75ZM66.488 8.11689C65.6736 8.11689 65.1308 7.42033 65.1308 6.56441C65.1308 5.62487 65.8616 4.83795 66.7804 4.83795C67.657 4.83795 68.2212 5.52781 68.2212 6.36297C68.2004 7.42765 67.4276 8.11751 66.5302 8.11751L66.488 8.11689Z\" fill=\"#1F2125\"/>\\n<path d=\"M68.1367 19.4885L69.6611 11.3659H68.3249L68.7423 9.19987H70.0787L70.1623 8.68219C70.3925 7.47097 70.8511 6.24083 71.8327 5.40567C72.6049 4.73779 73.6281 4.43561 74.6519 4.43561C75.3619 4.43561 75.8839 4.53573 76.2179 4.68163L75.6543 6.93435C75.4041 6.85133 75.1117 6.78721 74.7355 6.78721C73.7747 6.78721 73.1899 7.70113 73.0231 8.68279L72.9187 9.19987H74.9229L74.5261 11.3659H72.5427L71.0183 19.4885H68.1367Z\" fill=\"#1F2125\"/>\\n<path d=\"M78.4946 9.19989L78.9536 13.8054C79.0794 14.8286 79.1624 15.698 79.2038 16.2395H79.2454C79.4756 15.698 79.6844 14.8909 80.102 13.7847L81.8558 9.20051H84.8626L81.3338 16.7327C80.0812 19.3218 78.87 21.2088 77.5544 22.4408C76.5312 23.4012 75.32 23.8748 74.735 24L73.9414 21.5532C74.422 21.386 75.027 21.1338 75.5702 20.7376C76.2382 20.2784 76.8022 19.6509 77.1362 19.0037C77.2192 18.8578 77.2406 18.7589 77.199 18.5502L75.4658 9.20111L78.4946 9.19989Z\" fill=\"#1F2125\"/>\\n<path d=\"M107.678 10.1675C107.402 10.1675 107.124 10.4007 107.071 10.6766L106.098 15.7309C105.569 18.3053 103.988 18.657 102.506 18.657C99.8364 18.657 99.7692 17.1362 100.055 15.6485L101.2 9.70841C101.253 9.43247 101.065 9.19925 100.789 9.19925C100.513 9.19925 100.234 9.43247 100.181 9.70841L99.0372 15.6485C98.807 16.8456 98.8888 17.7394 99.2894 18.3798C99.7912 19.1832 100.813 19.5904 102.326 19.5904C103.839 19.5904 105.017 19.1826 105.829 18.3798C106.476 17.7394 106.903 16.8456 107.133 15.6485L108.09 10.6766C108.142 10.4007 107.954 10.1675 107.678 10.1675Z\" fill=\"#1F2125\"/>\\n<path d=\"M98.4782 4.88495C98.2022 4.88495 97.9238 5.11817 97.8708 5.39411L95.259 18.9561C95.206 19.2321 95.394 19.4653 95.67 19.4653C95.9458 19.4653 96.2242 19.2321 96.2774 18.9561L98.889 5.39411C98.9422 5.11755 98.7542 4.88495 98.4782 4.88495Z\" fill=\"#1F2125\"/>\\n<path d=\"M14.1567 2.74028C14.1548 2.7409 13.8942 2.82148 13.4534 2.95822C13.3801 2.71952 13.2715 2.42588 13.117 2.13102C12.6188 1.18048 11.8887 0.676824 11.0071 0.675604C11.0059 0.675604 11.0053 0.675604 11.0041 0.675604C10.943 0.675604 10.882 0.681094 10.8209 0.686588C10.7953 0.655454 10.7691 0.624318 10.741 0.595014C10.357 0.184155 9.8637 -0.016085 9.27396 0.00100875C8.13478 0.0339752 7.0005 0.85631 6.0811 2.31722C5.43336 3.34528 4.94192 4.63708 4.80212 5.63646C3.49444 6.0412 2.57932 6.32508 2.55978 6.33118C1.89985 6.53814 1.87909 6.5589 1.7924 7.18098C1.72708 7.65168 0 21.0086 0 21.0086L14.3307 23.4872V2.71098C14.2598 2.71586 14.1963 2.72868 14.1567 2.74028ZM10.8478 3.7653C10.0896 4.00034 9.26176 4.25674 8.43088 4.51376C8.6647 3.61938 9.1073 2.72868 9.65124 2.14506C9.85332 1.92772 10.1366 1.68597 10.4717 1.54739C10.7874 2.20428 10.8551 3.13588 10.8478 3.7653ZM9.29594 0.75924C9.56334 0.753746 9.7886 0.81235 9.9809 0.938722C9.67322 1.09867 9.3753 1.32822 9.0963 1.62736C8.37288 2.40328 7.81856 3.6084 7.59756 4.77078C6.9077 4.98444 6.2331 5.19324 5.61286 5.38554C6.00418 3.5559 7.53772 0.809912 9.29594 0.75924ZM7.07986 11.1828C7.15678 12.4019 10.3643 12.6681 10.5444 15.524C10.686 17.7706 9.35272 19.3072 7.4315 19.4286C5.12568 19.5739 3.85646 18.2138 3.85646 18.2138L4.34486 16.1351C4.34486 16.1351 5.62262 17.099 6.64518 17.0343C7.31306 16.9922 7.55176 16.4488 7.52796 16.0642C7.42784 14.4739 4.81616 14.5673 4.65072 11.9544C4.51214 9.75542 5.95594 7.52714 9.1427 7.32568C10.3704 7.24814 10.9992 7.56132 10.9992 7.56132L10.2703 10.2872C10.2703 10.2872 9.45772 9.9172 8.49376 9.97764C7.08046 10.0686 7.0652 10.9599 7.07986 11.1828ZM11.6048 3.53086C11.5963 2.95396 11.5273 2.15176 11.2587 1.45825C12.1231 1.62186 12.5486 2.59986 12.7281 3.18288C12.3954 3.28606 12.0163 3.40328 11.6048 3.53086Z\" fill=\"#1F2125\"/>\\n<path d=\"M14.8047 23.431L20.7497 21.953C20.7497 21.953 18.1898 4.64686 18.174 4.52782C18.1575 4.40938 18.0537 4.34346 17.9682 4.33612C17.8828 4.3288 16.2088 4.30378 16.2088 4.30378C16.2088 4.30378 15.1881 3.31296 14.8047 2.9375V23.431Z\" fill=\"#1F2125\"/>\\n</g>\\n<g clip-path=\"url(#clip1_336_2805)\">\\n<path d=\"M161.844 13.3459C161.129 12.9506 160.753 12.6306 160.753 12.1789C160.753 11.5953 161.261 11.2377 162.07 11.2377C163.011 11.2377 163.84 11.633 163.84 11.633L164.499 9.61888C164.499 9.61888 163.896 9.14828 162.108 9.14828C159.623 9.14828 157.891 10.5789 157.891 12.5742C157.891 13.7036 158.701 14.5695 159.774 15.1906C160.64 15.68 160.941 16.0377 160.941 16.5459C160.941 17.0918 160.508 17.5248 159.699 17.5248C158.494 17.5248 157.364 16.9036 157.364 16.9036L156.668 18.9177C156.668 18.9177 157.722 19.6142 159.473 19.6142C162.033 19.6142 163.859 18.353 163.859 16.0942C163.896 14.8518 162.955 13.9859 161.844 13.3459ZM172.047 9.11064C170.786 9.11064 169.807 9.71298 169.035 10.6165L168.997 10.5977L170.089 4.87534H167.247L164.48 19.4259H167.322L168.263 14.4565C168.64 12.5742 169.6 11.4259 170.503 11.4259C171.143 11.4259 171.388 11.8589 171.388 12.48C171.388 12.8753 171.35 13.3459 171.256 13.7412L170.183 19.4448H173.026L174.136 13.5718C174.268 12.9506 174.343 12.2165 174.343 11.7083C174.362 10.0706 173.515 9.11064 172.047 9.11064ZM180.8 9.11064C177.374 9.11064 175.096 12.1977 175.096 15.6424C175.096 17.8448 176.451 19.633 179.011 19.633C182.381 19.633 184.64 16.6212 184.64 13.1012C184.659 11.0495 183.473 9.11064 180.8 9.11064ZM179.407 17.4306C178.428 17.4306 178.033 16.6024 178.033 15.5671C178.033 13.9295 178.88 11.2753 180.423 11.2753C181.44 11.2753 181.76 12.1412 181.76 12.9883C181.76 14.7577 180.913 17.4306 179.407 17.4306ZM191.943 9.11064C190.023 9.11064 188.931 10.8048 188.931 10.8048H188.894L189.063 9.28004H186.541C186.409 10.3153 186.183 11.8777 185.957 13.0636L183.981 23.4918H186.823L187.614 19.2753H187.67C187.67 19.2753 188.254 19.6518 189.346 19.6518C192.696 19.6518 194.88 16.2259 194.88 12.7624C194.88 10.8236 194.033 9.11064 191.943 9.11064ZM189.233 17.4871C188.499 17.4871 188.066 17.073 188.066 17.073L188.536 14.4189C188.875 12.6495 189.797 11.4636 190.776 11.4636C191.642 11.4636 191.906 12.273 191.906 13.0259C191.906 14.8518 190.814 17.4871 189.233 17.4871ZM198.946 5.0071C198.042 5.0071 197.308 5.7224 197.308 6.66358C197.308 7.51064 197.835 8.09416 198.644 8.09416H198.682C199.567 8.09416 200.339 7.49182 200.357 6.4377C200.376 5.60946 199.811 5.0071 198.946 5.0071Z\" fill=\"#1F2125\"/>\\n<path d=\"M194.957 19.4259H197.818L199.757 9.33649H196.877L194.957 19.4259Z\" fill=\"#1F2125\"/>\\n<path d=\"M206.982 9.29887H205.006L205.1 8.82827C205.269 7.84945 205.834 6.98357 206.794 6.98357C207.302 6.98357 207.698 7.13415 207.698 7.13415L208.262 4.91297C208.262 4.91297 207.773 4.66827 206.719 4.66827C205.702 4.66827 204.705 4.95063 203.933 5.60945C202.954 6.43769 202.502 7.62357 202.276 8.82827L202.201 9.29887H200.883L200.469 11.4448H201.787L200.281 19.4071H203.123L204.629 11.4448H206.587L206.982 9.29887ZM213.834 9.33651C213.834 9.33651 212.046 13.8165 211.255 16.2636H211.218C211.161 15.473 210.521 9.33651 210.521 9.33651H207.528L209.241 18.5977C209.279 18.8048 209.26 18.9365 209.185 19.0683C208.846 19.7083 208.3 20.3294 207.641 20.7812C207.114 21.1764 206.512 21.4212 206.041 21.5906L206.832 24C207.415 23.8682 208.601 23.3976 209.618 22.4564C210.916 21.233 212.121 19.3695 213.345 16.8095L216.827 9.33651H213.834Z\" fill=\"#1F2125\"/>\\n<path d=\"M146.354 23.3976L153.394 21.873C153.394 21.873 150.853 4.68706 150.834 4.57412C150.815 4.46118 150.721 4.38588 150.627 4.38588C150.533 4.38588 148.744 4.25412 148.744 4.25412C148.744 4.25412 147.502 3.01176 147.351 2.88C147.314 2.84236 147.276 2.82354 147.238 2.8047L146.354 23.3976ZM146.937 2.76706C146.918 2.76706 146.881 2.78588 146.862 2.78588C146.843 2.78588 146.58 2.86118 146.165 2.99294C145.751 1.78824 145.017 0.677648 143.718 0.677648C143.681 0.677648 143.643 0.677648 143.605 0.677648C143.229 0.20706 142.777 0 142.382 0C139.351 0 137.902 3.78354 137.45 5.70354C136.283 6.06118 135.436 6.3247 135.342 6.36236C134.683 6.56942 134.664 6.58824 134.589 7.20942C134.514 7.66118 132.801 20.9318 132.801 20.9318L146.034 23.4164L146.937 2.76706ZM143.493 3.68942C143.493 3.72706 143.493 3.78352 143.493 3.82118C142.758 4.04706 141.949 4.29176 141.158 4.53648C141.61 2.8047 142.457 1.95765 143.191 1.63765C143.38 2.12706 143.493 2.78588 143.493 3.68942ZM142.288 0.809412C142.42 0.809412 142.551 0.847058 142.683 0.941176C141.723 1.39294 140.669 2.54118 140.236 4.83764C139.596 5.0447 138.975 5.23294 138.391 5.40236C138.9 3.65176 140.123 0.809412 142.288 0.809412ZM142.815 11.0306C142.815 11.0306 142.024 10.6165 141.083 10.6165C139.671 10.6165 139.615 11.5012 139.615 11.7271C139.615 12.9318 142.777 13.4024 142.777 16.2447C142.777 18.4847 141.365 19.9153 139.445 19.9153C137.149 19.9153 135.982 18.4847 135.982 18.4847L136.603 16.4518C136.603 16.4518 137.808 17.4871 138.824 17.4871C139.483 17.4871 139.765 16.96 139.765 16.5835C139.765 15.0024 137.168 14.9271 137.168 12.3294C137.168 10.1459 138.73 8.01882 141.911 8.01882C143.135 8.01882 143.737 8.37648 143.737 8.37648L142.815 11.0306ZM144.02 1.50588C144.697 1.58118 145.13 2.35294 145.413 3.21882C145.074 3.33176 144.697 3.4447 144.283 3.57648C144.283 3.50118 144.283 3.42588 144.283 3.33176C144.283 2.59764 144.189 1.99529 144.02 1.50588Z\" fill=\"#1F2125\"/>\\n</g>\\n<defs>\\n<clipPath id=\"clip0_336_2805\">\\n<rect width=\"116.8\" height=\"24\" fill=\"white\"/>\\n</clipPath>\\n<clipPath id=\"clip1_336_2805\">\\n<rect width=\"84.2\" height=\"24\" fill=\"white\" transform=\"translate(132.801)\"/>\\n</clipPath>\\n</defs>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(motion.p,{style:{\"--font-selector\":\"RlM7QXJjaGl2by1zZW1pYm9sZA==\",\"--framer-font-family\":'\"Archivo\", \"Archivo Placeholder\", sans-serif',\"--framer-font-size\":\"56px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-2px\",\"--framer-line-height\":\"64px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(31, 33, 37))\"},children:[/*#__PURE__*/_jsx(motion.span,{style:{\"--font-selector\":\"R0Y7QmVzbGV5LTYwMGl0YWxpYw==\",\"--framer-font-family\":'\"Besley\", \"Besley Placeholder\", serif',\"--framer-font-style\":\"italic\"},children:\"Level up your Shopify store\"}),/*#__PURE__*/_jsx(motion.span,{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif'},children:\" \"}),\"or augment your staff with shopexperts!\"]})}),className:\"framer-1rdugq9\",\"data-framer-name\":\"Label\",fonts:[\"FS;Archivo-semibold\",\"GF;Besley-600italic\",\"Inter-SemiBold\"],layoutDependency:layoutDependency,layoutId:\"c80fez8h1\",style:{\"--extracted-r6o4lv\":\"rgb(31, 33, 37)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({cnZKYVqzF:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(motion.p,{style:{\"--font-selector\":\"RlM7QXJjaGl2by1zZW1pYm9sZA==\",\"--framer-font-family\":'\"Archivo\", \"Archivo Placeholder\", sans-serif',\"--framer-font-size\":\"32px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-1px\",\"--framer-line-height\":\"40px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(31, 33, 37))\"},children:[/*#__PURE__*/_jsx(motion.span,{style:{\"--font-selector\":\"R0Y7QmVzbGV5LTYwMGl0YWxpYw==\",\"--framer-font-family\":'\"Besley\", \"Besley Placeholder\", serif',\"--framer-font-style\":\"italic\"},children:\"Level up your Shopify store\"}),/*#__PURE__*/_jsx(motion.span,{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif'},children:\" \"}),\"or augment your team staff with shopexperts!\"]})})},mM2EmgPJZ:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(motion.p,{style:{\"--font-selector\":\"RlM7QXJjaGl2by1zZW1pYm9sZA==\",\"--framer-font-family\":'\"Archivo\", \"Archivo Placeholder\", sans-serif',\"--framer-font-size\":\"48px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-1px\",\"--framer-line-height\":\"56px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(31, 33, 37))\"},children:[/*#__PURE__*/_jsx(motion.span,{style:{\"--font-selector\":\"R0Y7QmVzbGV5LTYwMGl0YWxpYw==\",\"--framer-font-family\":'\"Besley\", \"Besley Placeholder\", serif',\"--framer-font-style\":\"italic\"},children:\"Level up your Shopify store\"}),/*#__PURE__*/_jsx(motion.span,{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif'},children:\" \"}),\"or augment your team staff with shopexperts!\"]})})}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7QXJjaGl2by0zMDA=\",\"--framer-font-family\":'\"Archivo\", \"Archivo Placeholder\", sans-serif',\"--framer-font-size\":\"22px\",\"--framer-font-weight\":\"300\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"32px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(31, 33, 37))\"},children:\"Hire for single projects or ongoing needs. No hiring fees or recurring charges.\"})}),className:\"framer-pi6g47\",\"data-framer-name\":\"Label\",fonts:[\"GF;Archivo-300\"],layoutDependency:layoutDependency,layoutId:\"FY76I6Hbd\",style:{\"--extracted-r6o4lv\":\"rgb(31, 33, 37)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({cnZKYVqzF:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7QXJjaGl2by0zMDA=\",\"--framer-font-family\":'\"Archivo\", \"Archivo Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"300\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"26px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(31, 33, 37))\"},children:\"Hire for single projects or ongoing needs. No hiring fees or recurring charges.\"})})}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-a3ji05\",layoutDependency:layoutDependency,layoutId:\"e5FjiGIrd\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:48,width:\"197px\",...addPropertyOverrides({cnZKYVqzF:{width:`calc(min(${componentViewport?.width||\"100vw\"}, 1300px) - 48px)`,y:(componentViewport?.y||0)+40+0+0+0+0+426+0+0}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-9gex29-container\",layoutDependency:layoutDependency,layoutId:\"xIhSWwbGX-container\",nodeId:\"xIhSWwbGX\",rendersWithMotion:true,scopeId:\"NsdXKewpx\",children:/*#__PURE__*/_jsx(MainButtonGreenArrow,{d3QNb8PPa:\"rgb(37, 37, 37)\",height:\"100%\",id:\"xIhSWwbGX\",layoutId:\"xIhSWwbGX\",RMjrkE1dl:\"https://app.shopexperts.com/client/new-project\",style:{width:\"100%\"},variant:\"rarvLzwV9\",wAnAjPvLz:\"Submit a Project\",width:\"100%\",X8k8qIDjF:false,...addPropertyOverrides({cnZKYVqzF:{variant:\"NCM7CCZin\"}},baseVariant,gestureVariant)})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:48,width:\"197px\",...addPropertyOverrides({cnZKYVqzF:{width:`calc(min(${componentViewport?.width||\"100vw\"}, 1300px) - 48px)`,y:(componentViewport?.y||0)+40+0+0+0+0+426+0+64}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-37fiyt-container\",layoutDependency:layoutDependency,layoutId:\"OihAbcLda-container\",nodeId:\"OihAbcLda\",rendersWithMotion:true,scopeId:\"NsdXKewpx\",children:/*#__PURE__*/_jsx(MainButtonGreenArrow,{d3QNb8PPa:\"rgb(37, 37, 37)\",height:\"100%\",id:\"OihAbcLda\",layoutId:\"OihAbcLda\",RMjrkE1dl:\"https://app.shopexperts.com/client/register\",style:{width:\"100%\"},variant:\"nWcFx3MFe\",wAnAjPvLz:\"Create a Free Account\",width:\"100%\",X8k8qIDjF:false})})})]})]}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-10v854c\",\"data-framer-name\":\"Separator\",layoutDependency:layoutDependency,layoutId:\"h0n_hqpC6\",style:{backgroundColor:\"rgba(31, 33, 37, 0.2)\"}}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1rquebw\",layoutDependency:layoutDependency,layoutId:\"g2PnWPsbw\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-mwpdv\",layoutDependency:layoutDependency,layoutId:\"m0uw0p0UR\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1rx2kgu\",layoutDependency:layoutDependency,layoutId:\"bEYNzi6if\",children:[/*#__PURE__*/_jsx(Link,{href:{webPageId:\"vbULFy5_S\"},motionChild:true,nodeId:\"arObiU6Lr\",scopeId:\"NsdXKewpx\",children:/*#__PURE__*/_jsx(SVG,{as:\"a\",className:\"framer-1bwggol framer-1red5la\",\"data-framer-name\":\"Shopexperts-0\",fill:'var(--token-c2f4ae5f-5de3-41f6-846b-8691fb8ce84e, rgb(31, 33, 37)) /* {\"name\":\"Black Color/Text\"} */',intrinsicHeight:39,intrinsicWidth:130,layoutDependency:layoutDependency,layoutId:\"arObiU6Lr\",svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 130 39\" fill=\"currentColor\"><path d=\"M4.542 20.259c-1.754 0-3.139-.647-4.154-1.939l1.384-1.643c.72.868 1.773 1.403 2.788 1.403.794 0 1.385-.406 1.385-.978 0-.351-.24-.647-.72-.868a29.28 29.28 0 0 0-1.2-.462 14.24 14.24 0 0 1-1.293-.535C1.57 14.683.997 13.815.997 12.634c0-.886.35-1.606 1.034-2.179.683-.572 1.606-.849 2.732-.849 1.422 0 2.603.48 3.526 1.44l-1.292 1.68c-.702-.665-1.477-.997-2.308-.997-.683 0-1.144.388-1.144.85 0 .424.295.72.886.922 1.329.499 2.141.831 2.418.979 1.126.59 1.699 1.44 1.699 2.548 0 .941-.37 1.717-1.108 2.326-.72.61-1.698.905-2.898.905ZM12.943 20H10.34V5.97h2.53v5.28c.535-.905 1.753-1.588 3.175-1.588 1.089 0 2.012.369 2.769 1.089.757.72 1.145 1.754 1.145 3.101V20h-2.603v-5.446c0-1.606-.831-2.492-2.105-2.492-1.385 0-2.308 1.052-2.308 2.547V20Zm8.707-5.04c0-1.477.498-2.732 1.514-3.748 1.015-1.034 2.307-1.55 3.877-1.55 1.569 0 2.861.516 3.877 1.55 1.015 1.016 1.513 2.271 1.513 3.748 0 1.495-.498 2.75-1.513 3.766-1.016 1.015-2.308 1.533-3.877 1.533-1.57 0-2.862-.518-3.877-1.533-1.016-1.015-1.514-2.27-1.514-3.766Zm3.397 2.05c.535.553 1.2.83 1.994.83.793 0 1.44-.277 1.975-.83a2.904 2.904 0 0 0 .812-2.05 2.83 2.83 0 0 0-.812-2.03c-.535-.555-1.182-.832-1.975-.832-.794 0-1.459.277-1.994.831-.536.554-.794 1.237-.794 2.031s.258 1.477.794 2.05Zm14.996-7.33c1.422 0 2.603.517 3.544 1.532.942 1.016 1.404 2.271 1.404 3.748 0 1.477-.48 2.732-1.422 3.748-.942 1.015-2.123 1.532-3.544 1.532-1.237 0-2.29-.461-3.157-1.403v5.298h-2.604V9.938h2.585v1.237c.868-.997 1.92-1.495 3.194-1.495Zm-.462 8.178c.831 0 1.496-.277 2.013-.83.517-.554.775-1.237.775-2.05 0-.812-.258-1.495-.775-2.049-.517-.554-1.182-.83-2.013-.83-.812 0-1.477.276-1.994.83-.516.554-.775 1.237-.775 2.05 0 .812.259 1.495.776 2.049.517.553 1.181.83 1.993.83Zm17.016-3.12c0 .351-.037.739-.093 1.145h-7.55c.369 1.422 1.347 2.142 2.935 2.142 1.09 0 2.382-.425 3.25-1.016l1.033 1.828c-1.274.923-2.732 1.384-4.394 1.384-1.772 0-3.12-.516-4.061-1.532-.942-1.015-1.403-2.27-1.403-3.729 0-1.532.48-2.788 1.458-3.785.979-.997 2.234-1.495 3.785-1.495 1.458 0 2.677.462 3.618 1.366.942.905 1.422 2.123 1.422 3.693Zm-5.04-2.898c-1.311 0-2.29.794-2.603 2.105h5.114c-.24-1.311-1.182-2.105-2.511-2.105Zm12.154 3.101L66.94 20h-2.99l-1.92-3.305L60.018 20h-3.01l3.342-5.132-2.972-4.93h2.972l1.717 3.083 1.847-3.083h2.935l-3.139 5.003ZM74.099 9.68c1.422 0 2.603.517 3.545 1.532.942 1.016 1.403 2.271 1.403 3.748 0 1.477-.48 2.732-1.421 3.748-.942 1.015-2.124 1.532-3.545 1.532-1.237 0-2.29-.461-3.157-1.403v5.298h-2.603V9.938h2.585v1.237c.867-.997 1.92-1.495 3.193-1.495Zm-.461 8.178c.83 0 1.495-.277 2.012-.83.517-.554.776-1.237.776-2.05 0-.812-.259-1.495-.776-2.049-.517-.554-1.181-.83-2.012-.83-.812 0-1.477.276-1.994.83-.517.554-.775 1.237-.775 2.05 0 .812.258 1.495.775 2.049.517.553 1.182.83 1.994.83Zm17.015-3.12c0 .351-.037.739-.092 1.145h-7.55c.368 1.422 1.347 2.142 2.934 2.142 1.09 0 2.382-.425 3.25-1.016l1.034 1.828c-1.274.923-2.733 1.384-4.394 1.384-1.772 0-3.12-.516-4.062-1.532-.941-1.015-1.403-2.27-1.403-3.729 0-1.532.48-2.788 1.459-3.785.978-.997 2.234-1.495 3.784-1.495 1.459 0 2.677.462 3.619 1.366.941.905 1.421 2.123 1.421 3.693Zm-5.04-2.898c-1.31 0-2.289.794-2.603 2.105h5.114c-.24-1.311-1.181-2.105-2.51-2.105ZM95.047 20h-2.603V9.938h2.492v1.348c.61-1.09 1.532-1.624 2.77-1.624.405 0 .811.073 1.218.221l-.222 2.492a4.192 4.192 0 0 0-1.2-.203c-1.477 0-2.455.96-2.455 3.046V20Zm11.9-2.64.775 2.05c-.831.553-1.809.83-2.972.83-2.308 0-3.508-1.366-3.508-3.97v-4.153h-1.643V9.938h1.662V6.375h2.584v3.563h3.323v2.179h-3.323v3.988c0 1.181.48 1.772 1.422 1.772.498 0 1.071-.166 1.68-.517Zm5.371 2.899c-1.754 0-3.138-.647-4.154-1.939l1.385-1.643c.72.868 1.772 1.403 2.787 1.403.794 0 1.385-.406 1.385-.978 0-.351-.24-.647-.72-.868a29.274 29.274 0 0 0-1.2-.462 14.205 14.205 0 0 1-1.292-.535c-1.163-.554-1.736-1.422-1.736-2.603 0-.886.351-1.606 1.034-2.179.683-.572 1.606-.849 2.733-.849 1.421 0 2.603.48 3.526 1.44l-1.293 1.68c-.701-.665-1.477-.997-2.307-.997-.683 0-1.145.388-1.145.85 0 .424.295.72.886.922 1.329.499 2.142.831 2.419.979 1.126.59 1.698 1.44 1.698 2.548 0 .941-.369 1.717-1.108 2.326-.72.61-1.698.905-2.898.905ZM123.087.885a.405.405 0 0 1 .747 0l1.276 3.02a.403.403 0 0 0 .216.215l3.019 1.275a.406.406 0 0 1 0 .748l-3.019 1.275a.403.403 0 0 0-.216.216l-1.276 3.02a.405.405 0 0 1-.747 0l-1.276-3.02a.403.403 0 0 0-.216-.216l-3.019-1.275a.406.406 0 0 1 0-.748l3.019-1.275a.403.403 0 0 0 .216-.216l1.276-3.02ZM42.704 29.608c-.576 0-.888.304-.888.848v.232h1.36v.752h-1.36V35h-.88v-3.56h-.72v-.752h.72v-.248c0-1.048.664-1.64 1.656-1.64.36 0 .712.088 1.048.264l-.28.712c-.264-.112-.488-.168-.656-.168Zm.733 3.232c0-.632.216-1.16.64-1.6.432-.44.976-.664 1.64-.664.664 0 1.208.224 1.632.664.432.44.648.968.648 1.6 0 .64-.216 1.176-.648 1.616-.424.44-.968.656-1.632.656-.664 0-1.208-.216-1.64-.656a2.24 2.24 0 0 1-.64-1.616Zm3.672 0c0-.392-.136-.736-.408-1.016a1.28 1.28 0 0 0-.984-.432c-.392 0-.72.144-.992.432-.264.28-.4.624-.4 1.016 0 .4.136.744.4 1.024.272.28.6.424.992.424s.72-.144.984-.424c.272-.28.408-.624.408-1.024ZM49.76 35h-.88v-4.312h.84v.616c.257-.488.665-.728 1.224-.728.184 0 .352.024.512.072l-.08.856a1.362 1.362 0 0 0-.471-.08c-.672 0-1.145.464-1.145 1.368V35Zm7.372-4.432c.52 0 .936.168 1.248.504.32.328.48.784.48 1.352V35h-.88v-2.432c0-.76-.384-1.176-.984-1.176-.64 0-1.08.472-1.08 1.2V35h-.88v-2.416c0-.744-.384-1.192-.992-1.192-.64 0-1.088.48-1.088 1.216V35h-.88v-4.312h.864v.624a1.467 1.467 0 0 1 1.304-.744c.568.008 1.096.288 1.328.792.296-.48.896-.792 1.56-.792Zm6.875 2.192c0 .12-.008.264-.032.424h-3.368c.128.672.6 1.128 1.432 1.128.488 0 1.08-.184 1.464-.464l.368.648c-.44.328-1.136.6-1.864.6-1.616 0-2.312-1.128-2.312-2.264 0-.648.2-1.184.608-1.608.408-.424.944-.64 1.592-.64.616 0 1.128.192 1.52.584.392.392.592.92.592 1.592Zm-2.112-1.416c-.664 0-1.16.448-1.288 1.12h2.512c-.072-.68-.576-1.12-1.224-1.12ZM65.753 35h-.88v-4.312h.84v.616c.256-.488.664-.728 1.224-.728.184 0 .352.024.512.072l-.08.856a1.362 1.362 0 0 0-.472-.08c-.672 0-1.144.464-1.144 1.368V35Zm3.195-6.064V35h-.88v-6.064h.88Zm2.944 4.864 1.104-3.112h.968l-1.784 4.704c-.384 1.016-.872 1.44-1.608 1.44-.304 0-.552-.064-.736-.184l.128-.76c.2.088.384.136.536.136.352 0 .632-.248.848-.736l.136-.32-1.872-4.28h1.016l1.264 3.112Zm5.58 1.2h-.88v-6.064h.855v2.296c.256-.392.76-.656 1.368-.656.472 0 .872.152 1.2.464.328.312.488.752.488 1.336V35h-.88v-2.376c0-.792-.416-1.232-1.032-1.232-.664 0-1.12.504-1.12 1.24V35Zm8.183-2.24c0 .12-.008.264-.032.424h-3.368c.128.672.6 1.128 1.432 1.128.488 0 1.08-.184 1.464-.464l.368.648c-.44.328-1.136.6-1.864.6-1.616 0-2.312-1.128-2.312-2.264 0-.648.2-1.184.608-1.608.408-.424.944-.64 1.592-.64.616 0 1.128.192 1.52.584.392.392.592.92.592 1.592Zm-2.112-1.416c-.664 0-1.16.448-1.288 1.12h2.512c-.072-.68-.576-1.12-1.224-1.12Zm4.59 2.456 1.105-3.112h.968l-1.784 4.704c-.384 1.016-.872 1.44-1.608 1.44-.304 0-.552-.064-.736-.184l.128-.76c.2.088.384.136.536.136.352 0 .632-.248.848-.736l.136-.32-1.872-4.28h1.016l1.264 3.112Zm4.6 1.296c-.664 0-1.216-.208-1.64-.632-.424-.424-.64-.96-.64-1.616 0-.664.216-1.2.648-1.624.432-.424.984-.64 1.664-.64.864 0 1.64.44 1.984 1.152l-.728.408c-.264-.456-.736-.752-1.248-.752-.408 0-.752.136-1.024.416a1.43 1.43 0 0 0-.408 1.04c0 .408.136.744.4 1.024s.6.416 1 .416c.512 0 1.032-.312 1.256-.736l.728.424c-.352.672-1.128 1.12-1.992 1.12Zm6.133-3.808v-.6h.848V35h-.848v-.592c-.392.464-.888.696-1.472.696-.616 0-1.136-.216-1.544-.656-.408-.44-.608-.984-.608-1.632 0-.648.2-1.176.608-1.6.408-.424.928-.632 1.544-.632.584 0 1.08.232 1.472.704Zm-1.352 3.008c.408 0 .736-.144 1-.424s.392-.624.392-1.032c0-.4-.128-.744-.392-1.024a1.311 1.311 0 0 0-1-.424c-.408 0-.744.144-1 .424s-.384.624-.384 1.032c0 .408.128.752.384 1.032s.592.416 1 .416Zm4.215.704h-.88v-4.312h.84v.616c.256-.488.664-.728 1.224-.728.184 0 .352.024.512.072l-.08.856a1.362 1.362 0 0 0-.472-.08c-.672 0-1.144.464-1.144 1.368V35Zm3.533.104c-.664 0-1.296-.304-1.656-.904l.568-.512c.264.424.696.656 1.104.656.416 0 .712-.24.712-.536 0-.208-.12-.376-.368-.496a5.537 5.537 0 0 0-.52-.216 6.054 6.054 0 0 1-.544-.248c-.456-.24-.688-.592-.688-1.064 0-.36.136-.656.4-.888.272-.232.632-.352 1.072-.352.616 0 1.088.224 1.416.664l-.512.544c-.256-.312-.568-.472-.944-.472-.36 0-.576.208-.576.472 0 .208.12.368.36.472l.44.184c.272.112.472.2.608.272.488.256.736.616.736 1.088 0 .376-.152.696-.448.952-.296.256-.688.384-1.16.384Zm2.198-2.264c0-.632.216-1.16.64-1.6.432-.44.976-.664 1.64-.664.664 0 1.208.224 1.632.664.432.44.648.968.648 1.6 0 .64-.216 1.176-.648 1.616-.424.44-.968.656-1.632.656-.664 0-1.208-.216-1.64-.656a2.24 2.24 0 0 1-.64-1.616Zm3.672 0c0-.392-.136-.736-.408-1.016a1.28 1.28 0 0 0-.984-.432c-.392 0-.72.144-.992.432-.264.28-.4.624-.4 1.016 0 .4.136.744.4 1.024.272.28.6.424.992.424s.72-.144.984-.424c.272-.28.408-.624.408-1.024Zm2.652 2.16h-.88v-4.312h.864v.608c.256-.448.752-.72 1.368-.72.472 0 .872.152 1.2.464.328.312.496.752.496 1.336V35h-.888v-2.376c0-.792-.416-1.232-1.032-1.232-.664 0-1.128.512-1.128 1.248V35Z\"/></svg>',withExternalLayout:true})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7QXJjaGl2by1yZWd1bGFy\",\"--framer-font-family\":'\"Archivo\", \"Archivo Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"26px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(31, 33, 37))\"},children:\"Connect with the world\u2019s best Shopify developers & designers in minutes. Rates from $80/hour.\"})}),className:\"framer-12i4e9e\",\"data-framer-name\":\"Label\",fonts:[\"GF;Archivo-regular\"],layoutDependency:layoutDependency,layoutId:\"oN7imWiUc\",style:{\"--extracted-r6o4lv\":\"rgb(31, 33, 37)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({cnZKYVqzF:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7QXJjaGl2by1yZWd1bGFy\",\"--framer-font-family\":'\"Archivo\", \"Archivo Placeholder\", sans-serif',\"--framer-font-size\":\"15px\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"24px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(31, 33, 37))\"},children:\"Connect with the world\u2019s best Shopify developers & designers in minutes. Rates from $80/hour.\"})})}},baseVariant,gestureVariant)})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-lq7pt4\",layoutDependency:layoutDependency,layoutId:\"qgknWVQ9i\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-17e2cmk\",\"data-framer-name\":\"Frame 58718\",layoutDependency:layoutDependency,layoutId:\"jbCmLrcC8\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:40,...addPropertyOverrides({cnZKYVqzF:{y:(componentViewport?.y||0)+40+0+0+619+0+0+0+805+0+0+0+0}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1sqw9g8-container\",layoutDependency:layoutDependency,layoutId:\"cFoty2gDa-container\",nodeId:\"cFoty2gDa\",rendersWithMotion:true,scopeId:\"NsdXKewpx\",children:/*#__PURE__*/_jsx(SmallButton,{dlgOlrHg1:\"Submit a Project\",height:\"100%\",hqB2LUfoH:\"Login as Client\",id:\"cFoty2gDa\",layoutId:\"cFoty2gDa\",variant:\"nTeZMlJwk\",VEmSTfm7y:\"https://app.shopexperts.com/client/login\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:40,...addPropertyOverrides({cnZKYVqzF:{y:(componentViewport?.y||0)+40+0+0+619+0+0+0+805+0+0+0+64}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-j3iwuv-container\",layoutDependency:layoutDependency,layoutId:\"xLWsyEbTr-container\",nodeId:\"xLWsyEbTr\",rendersWithMotion:true,scopeId:\"NsdXKewpx\",children:/*#__PURE__*/_jsx(SmallButton,{dlgOlrHg1:\"Submit a Project\",height:\"100%\",hqB2LUfoH:\"Login as Expert\",id:\"xLWsyEbTr\",layoutId:\"xLWsyEbTr\",variant:\"nTeZMlJwk\",VEmSTfm7y:\"https://app.shopexperts.com/expert/login\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:40,...addPropertyOverrides({cnZKYVqzF:{y:(componentViewport?.y||0)+40+0+0+619+0+0+0+805+0+0+0+128}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-f6q8ab-container\",layoutDependency:layoutDependency,layoutId:\"Gl5wqlfhH-container\",nodeId:\"Gl5wqlfhH\",rendersWithMotion:true,scopeId:\"NsdXKewpx\",children:/*#__PURE__*/_jsx(SmallButton,{dlgOlrHg1:\"Submit a Project\",height:\"100%\",hqB2LUfoH:\"Login as Partner\",id:\"Gl5wqlfhH\",layoutId:\"Gl5wqlfhH\",variant:\"nTeZMlJwk\",VEmSTfm7y:\"https://partners.shopexperts.com/login\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:40,...addPropertyOverrides({cnZKYVqzF:{y:(componentViewport?.y||0)+40+0+0+619+0+0+0+805+0+0+0+192}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-t6tlm4-container\",layoutDependency:layoutDependency,layoutId:\"V6gVngYJH-container\",nodeId:\"V6gVngYJH\",rendersWithMotion:true,scopeId:\"NsdXKewpx\",children:/*#__PURE__*/_jsx(SmallButton,{dlgOlrHg1:\"Submit a Project\",height:\"100%\",hqB2LUfoH:\"HeyCarson Client Login\",id:\"V6gVngYJH\",layoutId:\"V6gVngYJH\",variant:\"nTeZMlJwk\",VEmSTfm7y:\"https://dashboard.heycarson.com/login\",width:\"100%\"})})})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1e3zs9g\",\"data-framer-name\":\"Tabs\",layoutDependency:layoutDependency,layoutId:\"N9qSZ92iC\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7QXJjaGl2by1yZWd1bGFy\",\"--framer-font-family\":'\"Archivo\", \"Archivo Placeholder\", sans-serif',\"--framer-font-size\":\"15px\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"24px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(144, 144, 144))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"QoMNvG8DO\"},motionChild:true,nodeId:\"lPBn0AtPg\",openInNewTab:false,scopeId:\"NsdXKewpx\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-yqzgsx\",\"data-styles-preset\":\"el5HpB_jV\",children:\"How it works\"})})})}),className:\"framer-sg31by\",\"data-framer-name\":\"How it works\",fonts:[\"GF;Archivo-regular\"],layoutDependency:layoutDependency,layoutId:\"lPBn0AtPg\",style:{\"--extracted-r6o4lv\":\"rgb(144, 144, 144)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7QXJjaGl2by1yZWd1bGFy\",\"--framer-font-family\":'\"Archivo\", \"Archivo Placeholder\", sans-serif',\"--framer-font-size\":\"15px\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"24px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-54a1331c-ecf9-4b82-b170-a8a3f9d3cf3d, rgb(144, 144, 144)))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"WkHQ1mbw5\"},motionChild:true,nodeId:\"YWI_HddHR\",openInNewTab:false,scopeId:\"NsdXKewpx\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-yqzgsx\",\"data-styles-preset\":\"el5HpB_jV\",children:\"Customers\"})})})}),className:\"framer-7stnvz\",\"data-framer-name\":\"Customers\",fonts:[\"GF;Archivo-regular\"],layoutDependency:layoutDependency,layoutId:\"YWI_HddHR\",style:{\"--extracted-r6o4lv\":\"var(--token-54a1331c-ecf9-4b82-b170-a8a3f9d3cf3d, rgb(144, 144, 144))\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7QXJjaGl2by1yZWd1bGFy\",\"--framer-font-family\":'\"Archivo\", \"Archivo Placeholder\", sans-serif',\"--framer-font-size\":\"15px\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"24px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-54a1331c-ecf9-4b82-b170-a8a3f9d3cf3d, rgb(144, 144, 144)))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"jlB7SqGoD\"},motionChild:true,nodeId:\"Lwp8UVI7w\",openInNewTab:false,scopeId:\"NsdXKewpx\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-yqzgsx\",\"data-styles-preset\":\"el5HpB_jV\",children:\"Pricing\"})})})}),className:\"framer-1up750o\",\"data-framer-name\":\"Pricing\",fonts:[\"GF;Archivo-regular\"],layoutDependency:layoutDependency,layoutId:\"Lwp8UVI7w\",style:{\"--extracted-r6o4lv\":\"var(--token-54a1331c-ecf9-4b82-b170-a8a3f9d3cf3d, rgb(144, 144, 144))\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7QXJjaGl2by02MDA=\",\"--framer-font-family\":'\"Archivo\", \"Archivo Placeholder\", sans-serif',\"--framer-font-size\":\"15px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"24px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(144, 144, 144))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"Futnm03RJ\"},motionChild:true,nodeId:\"ayEEyQbFY\",openInNewTab:false,scopeId:\"NsdXKewpx\",smoothScroll:false,children:/*#__PURE__*/_jsxs(motion.a,{className:\"framer-styles-preset-yqzgsx\",\"data-styles-preset\":\"el5HpB_jV\",children:[/*#__PURE__*/_jsx(motion.span,{style:{\"--font-selector\":\"R0Y7QXJjaGl2by1yZWd1bGFy\",\"--framer-font-weight\":\"400\"},children:\"Become a \"}),\"shopexpert\"]})})})}),className:\"framer-vaxxjf\",\"data-framer-name\":\"Become a shopexpert\",fonts:[\"GF;Archivo-600\",\"GF;Archivo-regular\"],layoutDependency:layoutDependency,layoutId:\"ayEEyQbFY\",style:{\"--extracted-r6o4lv\":\"rgb(144, 144, 144)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7QXJjaGl2by1yZWd1bGFy\",\"--framer-font-family\":'\"Archivo\", \"Archivo Placeholder\", sans-serif',\"--framer-font-size\":\"15px\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"24px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(144, 144, 144))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"mkDTgX98E\"},motionChild:true,nodeId:\"gnMQ72Lce\",openInNewTab:false,scopeId:\"NsdXKewpx\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-yqzgsx\",\"data-styles-preset\":\"el5HpB_jV\",children:\"Partnerships\"})})})}),className:\"framer-1s9ccs2\",\"data-framer-name\":\"Partnerships\",fonts:[\"GF;Archivo-regular\"],layoutDependency:layoutDependency,layoutId:\"gnMQ72Lce\",style:{\"--extracted-r6o4lv\":\"rgb(144, 144, 144)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7QXJjaGl2by1yZWd1bGFy\",\"--framer-font-family\":'\"Archivo\", \"Archivo Placeholder\", sans-serif',\"--framer-font-size\":\"15px\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"24px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(144, 144, 144))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"OUyKZTd63\"},motionChild:true,nodeId:\"OyvLdJDPX\",openInNewTab:false,scopeId:\"NsdXKewpx\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-yqzgsx\",\"data-styles-preset\":\"el5HpB_jV\",children:\"About \"})})})}),className:\"framer-7exkmp\",\"data-framer-name\":\"About\",fonts:[\"GF;Archivo-regular\"],layoutDependency:layoutDependency,layoutId:\"OyvLdJDPX\",style:{\"--extracted-r6o4lv\":\"rgb(144, 144, 144)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true})]})]}),isDisplayed()&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1yc9xvl\",layoutDependency:layoutDependency,layoutId:\"Lwp3cTcZ9\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1rzz67q\",layoutDependency:layoutDependency,layoutId:\"WWRf7cDua\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7QXJjaGl2by02MDA=\",\"--framer-font-family\":'\"Archivo\", \"Archivo Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"26px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(31, 33, 37))\"},children:\"Shopify Entrepreneur Weekly\"})}),className:\"framer-1sw0gqc\",\"data-framer-name\":\"Label\",fonts:[\"GF;Archivo-600\"],layoutDependency:layoutDependency,layoutId:\"YUPKfsrCD\",style:{\"--extracted-r6o4lv\":\"rgb(31, 33, 37)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7QXJjaGl2by1yZWd1bGFy\",\"--framer-font-family\":'\"Archivo\", \"Archivo Placeholder\", sans-serif',\"--framer-font-size\":\"15px\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"24px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(31, 33, 37))\"},children:\"Join 9k+ merchants and get the latest Shopify news, key updates, and tips to navigate the Shopify ecosystem for success.\"})}),className:\"framer-dbrgb7\",\"data-framer-name\":\"Label\",fonts:[\"GF;Archivo-regular\"],layoutDependency:layoutDependency,layoutId:\"gLvAiyHeX\",style:{\"--extracted-r6o4lv\":\"rgb(31, 33, 37)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1o21air\",layoutDependency:layoutDependency,layoutId:\"P79fDCRIv\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-oi70cx-container\",isAuthoredByUser:true,isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"WV1P19160-container\",nodeId:\"WV1P19160\",rendersWithMotion:true,scopeId:\"NsdXKewpx\",children:/*#__PURE__*/_jsx(Embed,{height:\"100%\",html:'<iframe src=\"https://embeds.beehiiv.com/0182dfdd-d999-42ef-8d39-c2cc6e86fe1f?slim=true\" data-test-id=\"beehiiv-embed\" height=\"52\" frameborder=\"0\" scrolling=\"no\" style=\"margin: 0; border-radius: 0px !important; background-color: transparent;\"></iframe>\\n',id:\"WV1P19160\",layoutId:\"WV1P19160\",radius:\"0px\",style:{width:\"100%\"},type:\"html\",url:\"\",width:\"100%\",zoom:1})})})})]})]}),isDisplayed1()&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-zs5gkv\",layoutDependency:layoutDependency,layoutId:\"Xa0qxWqhR\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-11asu4s\",layoutDependency:layoutDependency,layoutId:\"qgVEY4g1l\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7QXJjaGl2by02MDA=\",\"--framer-font-family\":'\"Archivo\", \"Archivo Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"26px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(31, 33, 37))\"},children:\"Shopify Entrepreneur Weekly\"})}),className:\"framer-aozjed\",\"data-framer-name\":\"Label\",fonts:[\"GF;Archivo-600\"],layoutDependency:layoutDependency,layoutId:\"n8rpX9nu4\",style:{\"--extracted-r6o4lv\":\"rgb(31, 33, 37)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7QXJjaGl2by1yZWd1bGFy\",\"--framer-font-family\":'\"Archivo\", \"Archivo Placeholder\", sans-serif',\"--framer-font-size\":\"15px\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"24px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(31, 33, 37))\"},children:\"Join 9k+ merchants and get the latest Shopify news, key updates, and tips to navigate the Shopify ecosystem for success.\"})}),className:\"framer-1kcq85i\",\"data-framer-name\":\"Label\",fonts:[\"GF;Archivo-regular\"],layoutDependency:layoutDependency,layoutId:\"X41izdmuY\",style:{\"--extracted-r6o4lv\":\"rgb(31, 33, 37)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1md18av\",layoutDependency:layoutDependency,layoutId:\"j0o5ZkF9U\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1anbxdj-container\",\"data-framer-name\":\"Email Input Field \",isAuthoredByUser:true,isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"K5ZlAG4q6-container\",name:\"Email Input Field \",nodeId:\"K5ZlAG4q6\",rendersWithMotion:true,scopeId:\"NsdXKewpx\",children:/*#__PURE__*/_jsx(Embed,{height:\"100%\",html:'<iframe src=\"https://embeds.beehiiv.com/0182dfdd-d999-42ef-8d39-c2cc6e86fe1f?slim=true\" data-test-id=\"beehiiv-embed\" height=\"52\" frameborder=\"0\" scrolling=\"no\" style=\"margin: 0; border-radius: 0px !important; background-color: transparent;\"></iframe>\\n',id:\"K5ZlAG4q6\",layoutId:\"K5ZlAG4q6\",name:\"Email Input Field \",radius:\"0px\",style:{width:\"100%\"},type:\"html\",url:\"\",width:\"100%\",zoom:1})})})})]})]}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1l9qr11\",\"data-framer-name\":\"Copyright\",layoutDependency:layoutDependency,layoutId:\"PVkU0gPBB\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-qah4is\",\"data-framer-name\":\"Frame 58745\",layoutDependency:layoutDependency,layoutId:\"yNim_kDao\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1suljts\",\"data-framer-name\":\"Copyright\",layoutDependency:layoutDependency,layoutId:\"J7OdwM9rt\",children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-v7fxrg\",layoutDependency:layoutDependency,layoutId:\"UEHR7wkGY\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlM7QXJjaGl2by1yZWd1bGFy\",\"--framer-font-family\":'\"Archivo\", \"Archivo Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"18px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(144, 144, 144))\"},children:\"\\xa92025 shopexperts. All rights reserved.\"})}),className:\"framer-kby2nj\",\"data-framer-name\":\"Label\",fonts:[\"FS;Archivo-regular\"],layoutDependency:layoutDependency,layoutId:\"fGwskEcpu\",style:{\"--extracted-r6o4lv\":\"rgb(144, 144, 144)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({cnZKYVqzF:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlM7QXJjaGl2by1yZWd1bGFy\",\"--framer-font-family\":'\"Archivo\", \"Archivo Placeholder\", sans-serif',\"--framer-font-size\":\"11px\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"18px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(144, 144, 144))\"},children:\"\\xa92025 shopexperts. All rights reserved.\"})})}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-4v6utl\",layoutDependency:layoutDependency,layoutId:\"jnLvHVIk0\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlM7QXJjaGl2by1yZWd1bGFy\",\"--framer-font-family\":'\"Archivo\", \"Archivo Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"18px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(144, 144, 144))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"om3ydjHgx\"},motionChild:true,nodeId:\"bKv1PlToC\",openInNewTab:false,scopeId:\"NsdXKewpx\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-19oan9x\",\"data-styles-preset\":\"UsqEjTX8D\",children:\"Privacy Policy\"})})})}),className:\"framer-1egjpsl\",\"data-framer-name\":\"Label\",fonts:[\"FS;Archivo-regular\"],layoutDependency:layoutDependency,layoutId:\"bKv1PlToC\",style:{\"--extracted-r6o4lv\":\"rgb(144, 144, 144)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({cnZKYVqzF:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlM7QXJjaGl2by1yZWd1bGFy\",\"--framer-font-family\":'\"Archivo\", \"Archivo Placeholder\", sans-serif',\"--framer-font-size\":\"11px\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"18px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(144, 144, 144))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"om3ydjHgx\"},motionChild:true,nodeId:\"bKv1PlToC\",openInNewTab:false,scopeId:\"NsdXKewpx\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-19oan9x\",\"data-styles-preset\":\"UsqEjTX8D\",children:\"Privacy Policy\"})})})})}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlM7QXJjaGl2by1yZWd1bGFy\",\"--framer-font-family\":'\"Archivo\", \"Archivo Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"18px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(144, 144, 144))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"D7mWj5NCy\"},motionChild:true,nodeId:\"iQ1JAiIge\",openInNewTab:false,scopeId:\"NsdXKewpx\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-19oan9x\",\"data-styles-preset\":\"UsqEjTX8D\",children:\"Terms of Service Client\"})})})}),className:\"framer-19q39hg\",\"data-framer-name\":\"Label\",fonts:[\"FS;Archivo-regular\"],layoutDependency:layoutDependency,layoutId:\"iQ1JAiIge\",style:{\"--extracted-r6o4lv\":\"rgb(144, 144, 144)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({cnZKYVqzF:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlM7QXJjaGl2by1yZWd1bGFy\",\"--framer-font-family\":'\"Archivo\", \"Archivo Placeholder\", sans-serif',\"--framer-font-size\":\"11px\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"18px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(144, 144, 144))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"D7mWj5NCy\"},motionChild:true,nodeId:\"iQ1JAiIge\",openInNewTab:false,scopeId:\"NsdXKewpx\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-19oan9x\",\"data-styles-preset\":\"UsqEjTX8D\",children:\"Terms of Service Client\"})})})})}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlM7QXJjaGl2by1yZWd1bGFy\",\"--framer-font-family\":'\"Archivo\", \"Archivo Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"18px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(144, 144, 144))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"ID6Py2nMD\"},motionChild:true,nodeId:\"qyrXZ4O55\",openInNewTab:false,scopeId:\"NsdXKewpx\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-19oan9x\",\"data-styles-preset\":\"UsqEjTX8D\",children:\"Terms of Service Expert\"})})})}),className:\"framer-wsnn71\",\"data-framer-name\":\"Label\",fonts:[\"FS;Archivo-regular\"],layoutDependency:layoutDependency,layoutId:\"qyrXZ4O55\",style:{\"--extracted-r6o4lv\":\"rgb(144, 144, 144)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true})]})]})})})})]})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-Jh7yD.framer-1red5la, .framer-Jh7yD .framer-1red5la { display: block; }\",\".framer-Jh7yD.framer-1fclil3 { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 100px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 100px 0px 100px 0px; position: relative; width: 1600px; }\",\".framer-Jh7yD .framer-hvowt5 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 100px; height: min-content; justify-content: flex-start; max-width: 1300px; overflow: hidden; padding: 0px 50px 0px 50px; position: relative; width: 100%; }\",\".framer-Jh7yD .framer-z6om59 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 32px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-Jh7yD .framer-1wrbu6i { flex: none; height: 24px; position: relative; width: 217px; }\",\".framer-Jh7yD .framer-1rdugq9 { flex: none; height: auto; max-width: 1000px; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-Jh7yD .framer-pi6g47, .framer-Jh7yD .framer-12i4e9e, .framer-Jh7yD .framer-dbrgb7, .framer-Jh7yD .framer-1kcq85i { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-Jh7yD .framer-a3ji05 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-Jh7yD .framer-9gex29-container, .framer-Jh7yD .framer-37fiyt-container { flex: none; height: auto; position: relative; width: 197px; }\",\".framer-Jh7yD .framer-10v854c { flex: none; height: 1px; overflow: hidden; position: relative; width: 100%; }\",\".framer-Jh7yD .framer-1rquebw, .framer-Jh7yD .framer-lq7pt4 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; height: min-content; justify-content: space-between; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-Jh7yD .framer-mwpdv { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 48px; height: min-content; justify-content: flex-start; max-width: 450px; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-Jh7yD .framer-1rx2kgu { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-Jh7yD .framer-1bwggol { aspect-ratio: 3.3333333333333335 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 52px); position: relative; text-decoration: none; width: 173px; }\",\".framer-Jh7yD .framer-17e2cmk { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: flex-end; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-Jh7yD .framer-1sqw9g8-container, .framer-Jh7yD .framer-j3iwuv-container, .framer-Jh7yD .framer-f6q8ab-container, .framer-Jh7yD .framer-t6tlm4-container { flex: none; height: auto; position: relative; width: auto; }\",\".framer-Jh7yD .framer-1e3zs9g { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-Jh7yD .framer-sg31by { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 87px; word-break: break-word; word-wrap: break-word; }\",\".framer-Jh7yD .framer-7stnvz, .framer-Jh7yD .framer-1up750o, .framer-Jh7yD .framer-vaxxjf, .framer-Jh7yD .framer-1s9ccs2, .framer-Jh7yD .framer-7exkmp, .framer-Jh7yD .framer-1sw0gqc, .framer-Jh7yD .framer-aozjed, .framer-Jh7yD .framer-kby2nj, .framer-Jh7yD .framer-1egjpsl, .framer-Jh7yD .framer-19q39hg, .framer-Jh7yD .framer-wsnn71 { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-Jh7yD .framer-1yc9xvl { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; max-width: 432px; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-Jh7yD .framer-1rzz67q, .framer-Jh7yD .framer-11asu4s { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 4px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-Jh7yD .framer-1o21air, .framer-Jh7yD .framer-1md18av { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-Jh7yD .framer-oi70cx-container, .framer-Jh7yD .framer-1anbxdj-container { flex: none; height: auto; position: relative; width: 300px; }\",\".framer-Jh7yD .framer-zs5gkv { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; max-width: 432px; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-Jh7yD .framer-1l9qr11 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-Jh7yD .framer-qah4is { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: wrap; height: min-content; justify-content: space-between; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-Jh7yD .framer-1suljts { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-Jh7yD .framer-v7fxrg, .framer-Jh7yD .framer-4v6utl { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-Jh7yD.framer-1fclil3, .framer-Jh7yD .framer-hvowt5, .framer-Jh7yD .framer-z6om59, .framer-Jh7yD .framer-a3ji05, .framer-Jh7yD .framer-mwpdv, .framer-Jh7yD .framer-1rx2kgu, .framer-Jh7yD .framer-17e2cmk, .framer-Jh7yD .framer-1e3zs9g, .framer-Jh7yD .framer-1yc9xvl, .framer-Jh7yD .framer-1rzz67q, .framer-Jh7yD .framer-1o21air, .framer-Jh7yD .framer-zs5gkv, .framer-Jh7yD .framer-11asu4s, .framer-Jh7yD .framer-1md18av, .framer-Jh7yD .framer-1l9qr11, .framer-Jh7yD .framer-1suljts, .framer-Jh7yD .framer-v7fxrg, .framer-Jh7yD .framer-4v6utl { gap: 0px; } .framer-Jh7yD.framer-1fclil3 > *, .framer-Jh7yD .framer-hvowt5 > * { margin: 0px; margin-bottom: calc(100px / 2); margin-top: calc(100px / 2); } .framer-Jh7yD.framer-1fclil3 > :first-child, .framer-Jh7yD .framer-hvowt5 > :first-child, .framer-Jh7yD .framer-z6om59 > :first-child, .framer-Jh7yD .framer-mwpdv > :first-child, .framer-Jh7yD .framer-1rx2kgu > :first-child, .framer-Jh7yD .framer-17e2cmk > :first-child, .framer-Jh7yD .framer-1e3zs9g > :first-child, .framer-Jh7yD .framer-1yc9xvl > :first-child, .framer-Jh7yD .framer-1rzz67q > :first-child, .framer-Jh7yD .framer-zs5gkv > :first-child, .framer-Jh7yD .framer-11asu4s > :first-child, .framer-Jh7yD .framer-1l9qr11 > :first-child, .framer-Jh7yD .framer-1suljts > :first-child { margin-top: 0px; } .framer-Jh7yD.framer-1fclil3 > :last-child, .framer-Jh7yD .framer-hvowt5 > :last-child, .framer-Jh7yD .framer-z6om59 > :last-child, .framer-Jh7yD .framer-mwpdv > :last-child, .framer-Jh7yD .framer-1rx2kgu > :last-child, .framer-Jh7yD .framer-17e2cmk > :last-child, .framer-Jh7yD .framer-1e3zs9g > :last-child, .framer-Jh7yD .framer-1yc9xvl > :last-child, .framer-Jh7yD .framer-1rzz67q > :last-child, .framer-Jh7yD .framer-zs5gkv > :last-child, .framer-Jh7yD .framer-11asu4s > :last-child, .framer-Jh7yD .framer-1l9qr11 > :last-child, .framer-Jh7yD .framer-1suljts > :last-child { margin-bottom: 0px; } .framer-Jh7yD .framer-z6om59 > * { margin: 0px; margin-bottom: calc(32px / 2); margin-top: calc(32px / 2); } .framer-Jh7yD .framer-a3ji05 > *, .framer-Jh7yD .framer-v7fxrg > *, .framer-Jh7yD .framer-4v6utl > * { margin: 0px; margin-left: calc(24px / 2); margin-right: calc(24px / 2); } .framer-Jh7yD .framer-a3ji05 > :first-child, .framer-Jh7yD .framer-1o21air > :first-child, .framer-Jh7yD .framer-1md18av > :first-child, .framer-Jh7yD .framer-v7fxrg > :first-child, .framer-Jh7yD .framer-4v6utl > :first-child { margin-left: 0px; } .framer-Jh7yD .framer-a3ji05 > :last-child, .framer-Jh7yD .framer-1o21air > :last-child, .framer-Jh7yD .framer-1md18av > :last-child, .framer-Jh7yD .framer-v7fxrg > :last-child, .framer-Jh7yD .framer-4v6utl > :last-child { margin-right: 0px; } .framer-Jh7yD .framer-mwpdv > * { margin: 0px; margin-bottom: calc(48px / 2); margin-top: calc(48px / 2); } .framer-Jh7yD .framer-1rx2kgu > *, .framer-Jh7yD .framer-1suljts > * { margin: 0px; margin-bottom: calc(8px / 2); margin-top: calc(8px / 2); } .framer-Jh7yD .framer-17e2cmk > *, .framer-Jh7yD .framer-1e3zs9g > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } .framer-Jh7yD .framer-1yc9xvl > *, .framer-Jh7yD .framer-zs5gkv > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-Jh7yD .framer-1rzz67q > *, .framer-Jh7yD .framer-11asu4s > * { margin: 0px; margin-bottom: calc(4px / 2); margin-top: calc(4px / 2); } .framer-Jh7yD .framer-1o21air > *, .framer-Jh7yD .framer-1md18av > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-Jh7yD .framer-1l9qr11 > * { margin: 0px; margin-bottom: calc(16px / 2); margin-top: calc(16px / 2); } }\",\".framer-Jh7yD.framer-v-11pmsb0.framer-1fclil3 { padding: 80px 0px 80px 0px; width: 1200px; }\",\".framer-Jh7yD.framer-v-11pmsb0 .framer-hvowt5 { gap: 80px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-Jh7yD.framer-v-11pmsb0 .framer-hvowt5 { gap: 0px; } .framer-Jh7yD.framer-v-11pmsb0 .framer-hvowt5 > * { margin: 0px; margin-bottom: calc(80px / 2); margin-top: calc(80px / 2); } .framer-Jh7yD.framer-v-11pmsb0 .framer-hvowt5 > :first-child { margin-top: 0px; } .framer-Jh7yD.framer-v-11pmsb0 .framer-hvowt5 > :last-child { margin-bottom: 0px; } }\",\".framer-Jh7yD.framer-v-qpuin5.framer-1fclil3 { width: 810px; }\",\".framer-Jh7yD.framer-v-qpuin5 .framer-hvowt5 { gap: 50px; }\",\".framer-Jh7yD.framer-v-qpuin5 .framer-z6om59, .framer-Jh7yD.framer-v-x8v7m1 .framer-z6om59, .framer-Jh7yD.framer-v-x8v7m1 .framer-1l9qr11 { gap: 24px; }\",\".framer-Jh7yD.framer-v-qpuin5 .framer-1rquebw { flex-direction: column; gap: 48px; justify-content: flex-start; }\",\".framer-Jh7yD.framer-v-qpuin5 .framer-mwpdv, .framer-Jh7yD.framer-v-qpuin5 .framer-zs5gkv { flex: none; width: 100%; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-Jh7yD.framer-v-qpuin5 .framer-hvowt5, .framer-Jh7yD.framer-v-qpuin5 .framer-z6om59, .framer-Jh7yD.framer-v-qpuin5 .framer-1rquebw { gap: 0px; } .framer-Jh7yD.framer-v-qpuin5 .framer-hvowt5 > * { margin: 0px; margin-bottom: calc(50px / 2); margin-top: calc(50px / 2); } .framer-Jh7yD.framer-v-qpuin5 .framer-hvowt5 > :first-child, .framer-Jh7yD.framer-v-qpuin5 .framer-z6om59 > :first-child, .framer-Jh7yD.framer-v-qpuin5 .framer-1rquebw > :first-child { margin-top: 0px; } .framer-Jh7yD.framer-v-qpuin5 .framer-hvowt5 > :last-child, .framer-Jh7yD.framer-v-qpuin5 .framer-z6om59 > :last-child, .framer-Jh7yD.framer-v-qpuin5 .framer-1rquebw > :last-child { margin-bottom: 0px; } .framer-Jh7yD.framer-v-qpuin5 .framer-z6om59 > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } .framer-Jh7yD.framer-v-qpuin5 .framer-1rquebw > * { margin: 0px; margin-bottom: calc(48px / 2); margin-top: calc(48px / 2); } }\",\".framer-Jh7yD.framer-v-x8v7m1.framer-1fclil3 { padding: 40px 0px 64px 0px; width: 400px; }\",\".framer-Jh7yD.framer-v-x8v7m1 .framer-hvowt5 { gap: 40px; padding: 0px 24px 0px 24px; }\",\".framer-Jh7yD.framer-v-x8v7m1 .framer-pi6g47 { max-width: 97%; }\",\".framer-Jh7yD.framer-v-x8v7m1 .framer-a3ji05 { flex-direction: column; gap: 16px; width: 100%; }\",\".framer-Jh7yD.framer-v-x8v7m1 .framer-9gex29-container, .framer-Jh7yD.framer-v-x8v7m1 .framer-37fiyt-container { width: 100%; }\",\".framer-Jh7yD.framer-v-x8v7m1 .framer-1rquebw { flex-direction: column; gap: 40px; justify-content: flex-start; }\",\".framer-Jh7yD.framer-v-x8v7m1 .framer-mwpdv { flex: none; gap: 40px; order: 0; width: 100%; }\",\".framer-Jh7yD.framer-v-x8v7m1 .framer-1rx2kgu, .framer-Jh7yD.framer-v-x8v7m1 .framer-1rzz67q { order: 0; }\",\".framer-Jh7yD.framer-v-x8v7m1 .framer-1bwggol { height: var(--framer-aspect-ratio-supported, 37px); width: 123px; }\",\".framer-Jh7yD.framer-v-x8v7m1 .framer-lq7pt4 { flex-direction: column; gap: 40px; justify-content: flex-start; order: 2; }\",\".framer-Jh7yD.framer-v-x8v7m1 .framer-1yc9xvl, .framer-Jh7yD.framer-v-x8v7m1 .framer-1o21air { order: 1; }\",\".framer-Jh7yD.framer-v-x8v7m1 .framer-qah4is { align-content: flex-start; align-items: flex-start; flex-direction: column; gap: 24px; justify-content: flex-start; }\",\".framer-Jh7yD.framer-v-x8v7m1 .framer-1suljts { gap: 24px; width: 100%; }\",\".framer-Jh7yD.framer-v-x8v7m1 .framer-v7fxrg { align-content: flex-start; align-items: flex-start; flex-direction: column; width: 100%; }\",\".framer-Jh7yD.framer-v-x8v7m1 .framer-kby2nj { order: 1; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-Jh7yD.framer-v-x8v7m1 .framer-4v6utl { gap: unset; justify-content: space-between; order: 0; width: 100%; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-Jh7yD.framer-v-x8v7m1 .framer-hvowt5, .framer-Jh7yD.framer-v-x8v7m1 .framer-z6om59, .framer-Jh7yD.framer-v-x8v7m1 .framer-a3ji05, .framer-Jh7yD.framer-v-x8v7m1 .framer-1rquebw, .framer-Jh7yD.framer-v-x8v7m1 .framer-mwpdv, .framer-Jh7yD.framer-v-x8v7m1 .framer-lq7pt4, .framer-Jh7yD.framer-v-x8v7m1 .framer-1l9qr11, .framer-Jh7yD.framer-v-x8v7m1 .framer-qah4is, .framer-Jh7yD.framer-v-x8v7m1 .framer-1suljts, .framer-Jh7yD.framer-v-x8v7m1 .framer-v7fxrg, .framer-Jh7yD.framer-v-x8v7m1 .framer-4v6utl { gap: 0px; } .framer-Jh7yD.framer-v-x8v7m1 .framer-hvowt5 > *, .framer-Jh7yD.framer-v-x8v7m1 .framer-1rquebw > *, .framer-Jh7yD.framer-v-x8v7m1 .framer-mwpdv > *, .framer-Jh7yD.framer-v-x8v7m1 .framer-lq7pt4 > * { margin: 0px; margin-bottom: calc(40px / 2); margin-top: calc(40px / 2); } .framer-Jh7yD.framer-v-x8v7m1 .framer-hvowt5 > :first-child, .framer-Jh7yD.framer-v-x8v7m1 .framer-z6om59 > :first-child, .framer-Jh7yD.framer-v-x8v7m1 .framer-a3ji05 > :first-child, .framer-Jh7yD.framer-v-x8v7m1 .framer-1rquebw > :first-child, .framer-Jh7yD.framer-v-x8v7m1 .framer-mwpdv > :first-child, .framer-Jh7yD.framer-v-x8v7m1 .framer-lq7pt4 > :first-child, .framer-Jh7yD.framer-v-x8v7m1 .framer-1l9qr11 > :first-child, .framer-Jh7yD.framer-v-x8v7m1 .framer-qah4is > :first-child, .framer-Jh7yD.framer-v-x8v7m1 .framer-1suljts > :first-child, .framer-Jh7yD.framer-v-x8v7m1 .framer-v7fxrg > :first-child { margin-top: 0px; } .framer-Jh7yD.framer-v-x8v7m1 .framer-hvowt5 > :last-child, .framer-Jh7yD.framer-v-x8v7m1 .framer-z6om59 > :last-child, .framer-Jh7yD.framer-v-x8v7m1 .framer-a3ji05 > :last-child, .framer-Jh7yD.framer-v-x8v7m1 .framer-1rquebw > :last-child, .framer-Jh7yD.framer-v-x8v7m1 .framer-mwpdv > :last-child, .framer-Jh7yD.framer-v-x8v7m1 .framer-lq7pt4 > :last-child, .framer-Jh7yD.framer-v-x8v7m1 .framer-1l9qr11 > :last-child, .framer-Jh7yD.framer-v-x8v7m1 .framer-qah4is > :last-child, .framer-Jh7yD.framer-v-x8v7m1 .framer-1suljts > :last-child, .framer-Jh7yD.framer-v-x8v7m1 .framer-v7fxrg > :last-child { margin-bottom: 0px; } .framer-Jh7yD.framer-v-x8v7m1 .framer-z6om59 > *, .framer-Jh7yD.framer-v-x8v7m1 .framer-1l9qr11 > *, .framer-Jh7yD.framer-v-x8v7m1 .framer-qah4is > *, .framer-Jh7yD.framer-v-x8v7m1 .framer-1suljts > *, .framer-Jh7yD.framer-v-x8v7m1 .framer-v7fxrg > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } .framer-Jh7yD.framer-v-x8v7m1 .framer-a3ji05 > * { margin: 0px; margin-bottom: calc(16px / 2); margin-top: calc(16px / 2); } .framer-Jh7yD.framer-v-x8v7m1 .framer-4v6utl > *, .framer-Jh7yD.framer-v-x8v7m1 .framer-4v6utl > :first-child, .framer-Jh7yD.framer-v-x8v7m1 .framer-4v6utl > :last-child { margin: 0px; } }\",...sharedStyle.css,...sharedStyle1.css];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 1276\n * @framerIntrinsicWidth 1600\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"tB0iuvjNk\":{\"layout\":[\"fixed\",\"auto\"]},\"mM2EmgPJZ\":{\"layout\":[\"fixed\",\"auto\"]},\"cnZKYVqzF\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerAutoSizeImages true\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n */const FramerNsdXKewpx=withCSS(Component,css,\"framer-Jh7yD\");export default FramerNsdXKewpx;FramerNsdXKewpx.displayName=\"Footer\";FramerNsdXKewpx.defaultProps={height:1276,width:1600};addPropertyControls(FramerNsdXKewpx,{variant:{options:[\"K0S4wYyI5\",\"tB0iuvjNk\",\"mM2EmgPJZ\",\"cnZKYVqzF\"],optionTitles:[\"Desktop\",\"Desktop Medium\",\"Tablet\",\"Mobile\"],title:\"Variant\",type:ControlType.Enum}});addFonts(FramerNsdXKewpx,[{explicitInter:true,fonts:[{family:\"Archivo\",source:\"fontshare\",style:\"normal\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/F5RLVZAAIFTTOUZCAGXSRHZGXKIH5EXB/IU4JRATO5NXUAJNVPECD46XUNDJVGCZY/HI3GXDQAABUJ5YHSPOI3V5JTNTJ4PCRR.woff2\",weight:\"600\"},{family:\"Besley\",source:\"google\",style:\"italic\",url:\"https://fonts.gstatic.com/s/besley/v20/PlIjFlO1MaNwaNG8WR2J-IiUAH-_aH6Cf5BiFdGg4-E04A.woff2\",weight:\"600\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/hyOgCu0Xnghbimh0pE8QTvtt2AU.woff2\",weight:\"600\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/NeGmSOXrPBfEFIy5YZeHq17LEDA.woff2\",weight:\"600\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/oYaAX5himiTPYuN8vLWnqBbfD2s.woff2\",weight:\"600\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/lEJLP4R0yuCaMCjSXYHtJw72M.woff2\",weight:\"600\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/cRJyLNuTJR5jbyKzGi33wU9cqIQ.woff2\",weight:\"600\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/1ZFS7N918ojhhd0nQWdj3jz4w.woff2\",weight:\"600\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/A0Wcc7NgXMjUuFdquHDrIZpzZw0.woff2\",weight:\"600\"},{family:\"Archivo\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/archivo/v19/k3k6o8UDI-1M0wlSV9XAw6lQkqWY8Q82sJaRE-NWIDdgffTTajNp9R1oJ0vyVQ.woff2\",weight:\"300\"},{family:\"Archivo\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/archivo/v19/k3k6o8UDI-1M0wlSV9XAw6lQkqWY8Q82sJaRE-NWIDdgffTTNDNp9R1oJ0vyVQ.woff2\",weight:\"400\"},{family:\"Archivo\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/archivo/v19/k3k6o8UDI-1M0wlSV9XAw6lQkqWY8Q82sJaRE-NWIDdgffTT6jRp9R1oJ0vyVQ.woff2\",weight:\"600\"},{family:\"Archivo\",source:\"fontshare\",style:\"normal\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/YSKLU24545WP65XCD7ZVOFPD6AKR3JSM/SPF276V6UKGPA6W5ZNFTEWBJXRSQNXCR/7BTLO3ZVFMNDGT63YATXTEALTKTYZUZG.woff2\",weight:\"400\"}]},...MainButtonGreenArrowFonts,...SmallButtonFonts,...EmbedFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerNsdXKewpx\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\",\"framerComponentViewportWidth\":\"true\",\"framerColorSyntax\":\"true\",\"framerAutoSizeImages\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerIntrinsicHeight\":\"1276\",\"framerIntrinsicWidth\":\"1600\",\"framerImmutableVariables\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"tB0iuvjNk\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"mM2EmgPJZ\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"cnZKYVqzF\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}"],
  "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", "MainButtonGreenArrowFonts", "getFonts", "up1YlInym_default", "SmallButtonFonts", "Gnbxpyy7n_default", "EmbedFonts", "Embed", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "scopingClassNames", "cx", "isDisplayed", "isDisplayed1", "LayoutGroup", "u", "SVG", "RichText", "ComponentViewportProvider", "SmartComponentScopedContainer", "Link", "css", "FramerNsdXKewpx", "withCSS", "NsdXKewpx_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts"]
}
