{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/o1PI5S8YtkA5bP5g4dFz/8T2kB7XwwJqrRd7LBBZ2/Embed.js", "ssg:https://framerusercontent.com/modules/5Wau6r132Sgt8ulMIK58/qbuBv7PAUywqyOIfkCzc/LDpT1HaOj.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=1,radius=0,border={width:0,color:\"rgba(200,200,200,0.5)\"},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.Object,optional:true,hidden(props){return props.type!==\"url\";},controls:{width:{title:\"Width\",type:ControlType.Number,defaultValue:1,min:0,step:1,displayStepper:true},color:{title:\"Color\",type:ControlType.Color,defaultValue:\"rgba(200,200,200,0.5)\"}},defaultValue:{width:1,color:\"rgba(200,200,200,0.5)\"}},radius:{type:ControlType.Number,title:\"Radius\",defaultValue:0,min:0,max:100,step:1,displayStepper:true,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,zoom:zoom,borderRadius:radius,border:`${border.width}px solid ${border.color}`,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\":{\"framerContractVersion\":\"1\",\"framerSupportedLayoutHeight\":\"any-prefer-fixed\",\"framerDisableUnlink\":\"\",\"framerSupportedLayoutWidth\":\"fixed\",\"framerIntrinsicWidth\":\"600\",\"framerIntrinsicHeight\":\"400\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Embed.map", "// Generated by Framer (f712822)\nimport{jsx as _jsx,jsxs as _jsxs,Fragment as _Fragment}from\"react/jsx-runtime\";import{addFonts,ComponentViewportProvider,Container,cx,FormContainer,GeneratedComponentContext,getFonts,getLoadingLazyAtYPosition,Image,PropertyOverrides,RichText,SVG,useComponentViewport,useCustomCursors,useHydratedBreakpointVariants,useIsOnFramerCanvas,useLocaleInfo,withCSS,withFX,withOptimizedAppearEffect}from\"framer\";import{LayoutGroup,motion}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import Embed from\"https://framerusercontent.com/modules/o1PI5S8YtkA5bP5g4dFz/8T2kB7XwwJqrRd7LBBZ2/Embed.js\";import NavigationAndFootersNavigation from\"#framer/local/canvasComponent/LhuE90Y7w/LhuE90Y7w.js\";import NavigationAndFootersFooter from\"#framer/local/canvasComponent/XnoQ6Lis1/XnoQ6Lis1.js\";import metadataProvider from\"#framer/local/webPageMetadata/LDpT1HaOj/LDpT1HaOj.js\";const NavigationAndFootersNavigationFonts=getFonts(NavigationAndFootersNavigation);const EmbedFonts=getFonts(Embed);const MotionDivWithOptimizedAppearEffect=withOptimizedAppearEffect(motion.div);const MotionDivWithFX=withFX(motion.div);const NavigationAndFootersFooterFonts=getFonts(NavigationAndFootersFooter);const breakpoints={Im_1rXCiY:\"(max-width: 809px)\",P1TpL4nFr:\"(min-width: 810px) and (max-width: 1199px)\",pfJwa0VY3:\"(min-width: 1200px)\"};const isBrowser=()=>typeof document!==\"undefined\";const serializationHash=\"framer-PbLnv\";const variantClassNames={Im_1rXCiY:\"framer-v-wqcefh\",P1TpL4nFr:\"framer-v-9po5ah\",pfJwa0VY3:\"framer-v-1oo5zb2\"};const transition1={damping:15,delay:0,mass:.5,stiffness:80,type:\"spring\"};const animation={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition1,x:0,y:0};const animation1={opacity:.001,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:80};const animation2={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:80};const transition2={bounce:.2,delay:0,duration:.6,type:\"spring\"};const HTMLStyle=({value})=>{const onCanvas=useIsOnFramerCanvas();if(onCanvas)return null;return /*#__PURE__*/_jsx(\"style\",{dangerouslySetInnerHTML:{__html:value},\"data-framer-html-style\":\"\"});};const humanReadableVariantMap={Desktop:\"pfJwa0VY3\",Phone:\"Im_1rXCiY\",Tablet:\"P1TpL4nFr\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"pfJwa0VY3\"};};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);React.useEffect(()=>{const metadata=metadataProvider(undefined,activeLocale);if(metadata.robots){let robotsTag=document.querySelector('meta[name=\"robots\"]');if(robotsTag){robotsTag.setAttribute(\"content\",metadata.robots);}else{robotsTag=document.createElement(\"meta\");robotsTag.setAttribute(\"name\",\"robots\");robotsTag.setAttribute(\"content\",metadata.robots);document.head.appendChild(robotsTag);}}},[undefined,activeLocale]);React.useInsertionEffect(()=>{const metadata=metadataProvider(undefined,activeLocale);document.title=metadata.title||\"\";if(metadata.viewport){document.querySelector('meta[name=\"viewport\"]')?.setAttribute(\"content\",metadata.viewport);}},[undefined,activeLocale]);const[baseVariant,hydratedBaseVariant]=useHydratedBreakpointVariants(variant,breakpoints,false);const gestureVariant=undefined;const sharedStyleClassNames=[];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const isDisplayed=()=>{if(!isBrowser())return true;if(baseVariant===\"P1TpL4nFr\")return true;return false;};useCustomCursors({});return /*#__PURE__*/_jsx(GeneratedComponentContext.Provider,{value:{primaryVariantId:\"pfJwa0VY3\",variantClassNames},children:/*#__PURE__*/_jsxs(LayoutGroup,{id:layoutId??defaultLayoutId,children:[/*#__PURE__*/_jsx(HTMLStyle,{value:\"html body { background: var(--token-f71a9c49-6137-4783-9781-2bc8e4a5b85c, rgb(255, 255, 255)); }\"}),/*#__PURE__*/_jsxs(motion.div,{...restProps,className:cx(scopingClassNames,\"framer-1oo5zb2\",className),ref:refBinding,style:{...style},children:[isDisplayed()&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{P1TpL4nFr:{height:70,width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-mydk6s-container hidden-1oo5zb2 hidden-wqcefh\",nodeId:\"bz3z67UHz\",scopeId:\"LDpT1HaOj\",children:/*#__PURE__*/_jsx(NavigationAndFootersNavigation,{height:\"100%\",id:\"bz3z67UHz\",layoutId:\"bz3z67UHz\",QtcKgL9Na:\"0px\",style:{width:\"100%\"},variant:\"atwIwl3GR\",width:\"100%\"})})})}),/*#__PURE__*/_jsxs(\"main\",{className:\"framer-1e11904\",\"data-framer-name\":\"main\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{P1TpL4nFr:{y:(componentViewport?.y||0)+0+70+0+1504.2}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:70,width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+0+0+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-d3gheb-container\",nodeId:\"oXzgWCn0s\",scopeId:\"LDpT1HaOj\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Im_1rXCiY:{variant:\"atwIwl3GR\"},P1TpL4nFr:{variant:\"atwIwl3GR\"}},children:/*#__PURE__*/_jsx(NavigationAndFootersNavigation,{height:\"100%\",id:\"oXzgWCn0s\",layoutId:\"oXzgWCn0s\",QtcKgL9Na:\"0px\",style:{width:\"100%\"},variant:\"jyd1X6kmu\",width:\"100%\"})})})})}),/*#__PURE__*/_jsx(\"section\",{className:\"framer-bsr84w\",\"data-framer-name\":\"Hero\",children:/*#__PURE__*/_jsxs(MotionDivWithOptimizedAppearEffect,{animate:animation,className:\"framer-128bk5y\",\"data-framer-appear-id\":\"128bk5y\",\"data-framer-name\":\"Wrapper\",initial:animation1,optimized:true,children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-19e6e5z\",\"data-framer-name\":\"Heading and sub\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Im_1rXCiY:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{style:{\"--font-selector\":\"RlI7SW50ZXJEaXNwbGF5LVNlbWlCb2xk\",\"--framer-font-family\":'\"Inter Display\", \"Inter Display Placeholder\", sans-serif',\"--framer-font-size\":\"26px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-1.5px\",\"--framer-line-height\":\"125%\",\"--framer-text-color\":\"var(--token-f71a9c49-6137-4783-9781-2bc8e4a5b85c, rgb(255, 255, 255))\"},children:\"Talk to an  Expert\"})})},P1TpL4nFr:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{style:{\"--font-selector\":\"RlI7SW50ZXJEaXNwbGF5LVNlbWlCb2xk\",\"--framer-font-family\":'\"Inter Display\", \"Inter Display Placeholder\", sans-serif',\"--framer-font-size\":\"28px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-1.5px\",\"--framer-line-height\":\"125%\",\"--framer-text-color\":\"var(--token-f71a9c49-6137-4783-9781-2bc8e4a5b85c, rgb(255, 255, 255))\"},children:\"Talk to an  Expert\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{style:{\"--font-selector\":\"RlI7SW50ZXJEaXNwbGF5LVNlbWlCb2xk\",\"--framer-font-family\":'\"Inter Display\", \"Inter Display Placeholder\", sans-serif',\"--framer-font-size\":\"32px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-2px\",\"--framer-line-height\":\"125%\",\"--framer-text-color\":\"var(--token-f71a9c49-6137-4783-9781-2bc8e4a5b85c, rgb(255, 255, 255))\"},children:\"Talk to an  Expert\"})}),className:\"framer-ha7ds3\",fonts:[\"FR;InterDisplay-SemiBold\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-e98i22\",\"data-framer-name\":\"Sub\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7U3dpdHplci1tZWRpdW0=\",\"--framer-font-family\":'\"Switzer\", \"Switzer Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"145%\",\"--framer-text-color\":\"var(--token-acc595ce-60e8-461b-a607-48d03b9bee37, rgb(191, 187, 187))\"},children:\"What to expect\"})}),className:\"framer-ywj3ss\",fonts:[\"FS;Switzer-medium\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1exonj6\",\"data-framer-name\":\"List stack\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-hy0plw\",\"data-framer-name\":\"List\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-exvv5u\",\"data-framer-name\":\"Icon BG\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-1sx3dkm\",\"data-framer-name\":\"Icon wrapper\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-119nhg6\",\"data-framer-name\":\"Shape\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 12 9\"><path d=\"M 10.985 1.211 C 11.203 1.411 11.194 1.727 10.965 1.918 L 4.362 7.418 C 4.249 7.511 4.098 7.561 3.942 7.555 C 3.787 7.549 3.641 7.487 3.538 7.385 L 0.999 4.846 C 0.791 4.639 0.815 4.323 1.052 4.141 C 1.29 3.959 1.651 3.98 1.859 4.188 L 4.006 6.334 L 10.177 1.193 C 10.406 1.003 10.768 1.011 10.985 1.211 Z\" fill=\"var(--token-9f51a79d-4a11-49df-ae0c-b24cb2dd1265, rgb(71, 142, 255))\"></path></svg>',svgContentId:9345704292,withExternalLayout:true})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlI7SW50ZXJEaXNwbGF5LU1lZGl1bQ==\",\"--framer-font-family\":'\"Inter Display\", \"Inter Display Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"145%\",\"--framer-text-color\":\"var(--token-f71a9c49-6137-4783-9781-2bc8e4a5b85c, rgb(255, 255, 255))\"},children:\"Interactive, no-pressure demonstration of FinanceOps'  capabilities\"})}),className:\"framer-6h5dw9\",fonts:[\"FR;InterDisplay-Medium\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-wvyv6s\",\"data-framer-name\":\"List\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-tye9ak\",\"data-framer-name\":\"Icon BG\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-19uymqe\",\"data-framer-name\":\"Icon wrapper\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-reqyb7\",\"data-framer-name\":\"Shape\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 12 9\"><path d=\"M 10.985 1.211 C 11.203 1.411 11.194 1.727 10.965 1.918 L 4.362 7.418 C 4.249 7.511 4.098 7.561 3.942 7.555 C 3.787 7.549 3.641 7.487 3.538 7.385 L 0.999 4.846 C 0.791 4.639 0.815 4.323 1.052 4.141 C 1.29 3.959 1.651 3.98 1.859 4.188 L 4.006 6.334 L 10.177 1.193 C 10.406 1.003 10.768 1.011 10.985 1.211 Z\" fill=\"var(--token-9f51a79d-4a11-49df-ae0c-b24cb2dd1265, rgb(71, 142, 255))\"></path></svg>',svgContentId:9345704292,withExternalLayout:true})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlI7SW50ZXJEaXNwbGF5LU1lZGl1bQ==\",\"--framer-font-family\":'\"Inter Display\", \"Inter Display Placeholder\", sans-serif',\"--framer-font-size\":\"19px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"145%\",\"--framer-text-color\":\"var(--token-f71a9c49-6137-4783-9781-2bc8e4a5b85c, rgb(255, 255, 255))\"},children:\"Custom walkthrough tailored to your use cases\"})}),className:\"framer-3g1yu6\",fonts:[\"FR;InterDisplay-Medium\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1wfzttl\",\"data-framer-name\":\"List\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-3lhns6\",\"data-framer-name\":\"Icon BG\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-9bsnce\",\"data-framer-name\":\"Icon wrapper\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-w9kii2\",\"data-framer-name\":\"Shape\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 12 9\"><path d=\"M 10.985 1.211 C 11.203 1.411 11.194 1.727 10.965 1.918 L 4.362 7.418 C 4.249 7.511 4.098 7.561 3.942 7.555 C 3.787 7.549 3.641 7.487 3.538 7.385 L 0.999 4.846 C 0.791 4.639 0.815 4.323 1.052 4.141 C 1.29 3.959 1.651 3.98 1.859 4.188 L 4.006 6.334 L 10.177 1.193 C 10.406 1.003 10.768 1.011 10.985 1.211 Z\" fill=\"var(--token-9f51a79d-4a11-49df-ae0c-b24cb2dd1265, rgb(71, 142, 255))\"></path></svg>',svgContentId:9345704292,withExternalLayout:true})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlI7SW50ZXJEaXNwbGF5LU1lZGl1bQ==\",\"--framer-font-family\":'\"Inter Display\", \"Inter Display Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"145%\",\"--framer-text-color\":\"var(--token-f71a9c49-6137-4783-9781-2bc8e4a5b85c, rgb(255, 255, 255))\"},children:\"Detailed overview of product features and pricing plans\"})}),className:\"framer-18chmsq\",fonts:[\"FR;InterDisplay-Medium\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1kci0hh\",\"data-framer-name\":\"List\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-9xw0jk\",\"data-framer-name\":\"Icon BG\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-e69lis\",\"data-framer-name\":\"Icon wrapper\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1xwjns7\",\"data-framer-name\":\"Shape\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 12 8\"><path d=\"M 10.985 1.211 C 11.203 1.411 11.194 1.727 10.965 1.918 L 4.362 7.418 C 4.249 7.511 4.098 7.561 3.942 7.555 C 3.787 7.549 3.641 7.487 3.538 7.385 L 0.999 4.846 C 0.791 4.639 0.815 4.323 1.052 4.141 C 1.29 3.959 1.651 3.98 1.859 4.188 L 4.006 6.334 L 10.177 1.193 C 10.406 1.003 10.768 1.011 10.985 1.211 Z\" fill=\"var(--token-9f51a79d-4a11-49df-ae0c-b24cb2dd1265, rgb(71, 142, 255))\"></path></svg>',svgContentId:9516062419,withExternalLayout:true})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlI7SW50ZXJEaXNwbGF5LU1lZGl1bQ==\",\"--framer-font-family\":'\"Inter Display\", \"Inter Display Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"145%\",\"--framer-text-color\":\"var(--token-f71a9c49-6137-4783-9781-2bc8e4a5b85c, rgb(255, 255, 255))\"},children:\"Deep dive into our API ecosystem and integration possibilities\"})}),className:\"framer-58q7af\",fonts:[\"FR;InterDisplay-Medium\"],verticalAlignment:\"top\",withExternalLayout:true})]})]})]})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Im_1rXCiY:{background:{alt:\"Photo of people seating in a round-table setting and discussing\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+70+0+0+0+585),pixelHeight:427,pixelWidth:640,sizes:componentViewport?.width||\"100vw\",src:\"https://framerusercontent.com/images/faivKioYLYpJQvFgV1D4hq2Croc.png\",srcSet:\"https://framerusercontent.com/images/faivKioYLYpJQvFgV1D4hq2Croc.png?scale-down-to=512 512w,https://framerusercontent.com/images/faivKioYLYpJQvFgV1D4hq2Croc.png 640w\"}},P1TpL4nFr:{background:{alt:\"Photo of people seating in a round-table setting and discussing\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+70+0+0+0+0+0+585),pixelHeight:427,pixelWidth:640,sizes:componentViewport?.width||\"100vw\",src:\"https://framerusercontent.com/images/faivKioYLYpJQvFgV1D4hq2Croc.png\",srcSet:\"https://framerusercontent.com/images/faivKioYLYpJQvFgV1D4hq2Croc.png?scale-down-to=512 512w,https://framerusercontent.com/images/faivKioYLYpJQvFgV1D4hq2Croc.png 640w\"}}},children:/*#__PURE__*/_jsx(Image,{as:\"figure\",background:{alt:\"Photo of people seating in a round-table setting and discussing\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+70+0+0+0+274),pixelHeight:427,pixelWidth:640,sizes:`calc(${componentViewport?.width||\"100vw\"} / 2)`,src:\"https://framerusercontent.com/images/faivKioYLYpJQvFgV1D4hq2Croc.png\",srcSet:\"https://framerusercontent.com/images/faivKioYLYpJQvFgV1D4hq2Croc.png?scale-down-to=512 512w,https://framerusercontent.com/images/faivKioYLYpJQvFgV1D4hq2Croc.png 640w\"},className:\"framer-1bxmcig\",children:/*#__PURE__*/_jsx(FormContainer,{className:\"framer-1sniod2\",nodeId:\"Eb1A7SSpF\",children:formState=>/*#__PURE__*/_jsxs(_Fragment,{children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-wqc8lo\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Im_1rXCiY:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h5\",{style:{\"--font-selector\":\"RlM7T3V0Zml0LXNlbWlib2xk\",\"--framer-font-family\":'\"Outfit\", \"Outfit Placeholder\", sans-serif',\"--framer-font-size\":\"22px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-1px\",\"--framer-line-height\":\"125%\",\"--framer-text-color\":\"var(--token-ac16d8b0-e3e7-4092-b98d-4a3308d21843, rgb(0, 0, 0))\"},children:\"Request a 30-minute demo\"})})},P1TpL4nFr:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h5\",{style:{\"--font-selector\":\"RlM7T3V0Zml0LXNlbWlib2xk\",\"--framer-font-family\":'\"Outfit\", \"Outfit Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-1px\",\"--framer-line-height\":\"125%\",\"--framer-text-color\":\"var(--token-ac16d8b0-e3e7-4092-b98d-4a3308d21843, rgb(0, 0, 0))\"},children:\"Request a 30-minute demo\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h5\",{style:{\"--font-selector\":\"RlM7T3V0Zml0LXNlbWlib2xk\",\"--framer-font-family\":'\"Outfit\", \"Outfit Placeholder\", sans-serif',\"--framer-font-size\":\"28px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-1px\",\"--framer-line-height\":\"125%\",\"--framer-text-color\":\"var(--token-ac16d8b0-e3e7-4092-b98d-4a3308d21843, rgb(0, 0, 0))\"},children:\"Request a 30-minute demo\"})}),className:\"framer-1cpvhxu\",fonts:[\"FS;Outfit-semibold\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Im_1rXCiY:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"12px\",\"--framer-line-height\":\"145%\",\"--framer-text-color\":\"var(--token-ea2d298c-34e0-43db-a69d-24234c285551, rgb(97, 100, 107))\"},children:\"Schedule a live demo with our experts, and explore the features tailored to your business needs\"})})},P1TpL4nFr:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"15px\",\"--framer-line-height\":\"145%\",\"--framer-text-color\":\"var(--token-ea2d298c-34e0-43db-a69d-24234c285551, rgb(97, 100, 107))\"},children:\"Schedule a live demo with our experts, and explore the features tailored to your business needs\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-line-height\":\"145%\",\"--framer-text-color\":\"var(--token-ea2d298c-34e0-43db-a69d-24234c285551, rgb(97, 100, 107))\"},children:\"Schedule a live demo with our experts, and explore the features tailored to your business needs\"})}),className:\"framer-ogk8c7\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1k3s5q9-container\",isModuleExternal:true,nodeId:\"HkTdWAqCq\",scopeId:\"LDpT1HaOj\",children:/*#__PURE__*/_jsx(Embed,{border:{color:\"rgba(200, 200, 200, 0.5)\",width:1},height:\"100%\",html:\"<div id=\\\"hubspot-form\\\"></div>\\n<script charset=\\\"utf-8\\\" type=\\\"text/javascript\\\" src=\\\"https://js.hsforms.net/forms/v2.js\\\"></script>\\n<script>\\n  hbspt.forms.create({\\n    region: 'na1',\\n    portalId: \\\"39774321\\\",\\n    formId: \\\"e75f8f9f-cedd-49a6-a683-3cdeb424ab35\\\",\\n    target: '#hubspot-form',\\n    onFormSubmit: function (form) {\\n      console.log(form);\\n      const formData = {};\\n      Array.from(form.elements).forEach(element => {\\n        if (element && element.name) {\\n          formData[element.name] = element.value;\\n        }\\n      });\\n       fetch(\\\"https://stage-api.financeops.ai/app-gateway/onboarding/autopilot/signup\\\", {\\n        method: 'POST',\\n        headers: {\\n          'Content-Type': 'application/json',\\n          Accept: 'application/json',\\n        },\\n        body: JSON.stringify(formData),\\n      })\\n        .then(res => res.json())\\n        .then(data => {\\n          console.log(data);\\n        })\\n        .catch(err => {\\n          console.log(err);\\n        });\\n      console.log(formData);\\n    },\\n  }); document.addEventListener(\\\"DOMContentLoaded\\\", function () {\\n    const utmKeys = ['utm_source', 'utm_medium', 'utm_campaign'];\\n\\n    const interval = setInterval(() => {\\n      const form = document.querySelector('form'); // adjust if your form has a unique selector\\n\\n      if (form) {\\n        utmKeys.forEach(key => {\\n          const storedValue = localStorage.getItem(key);\\n          if (storedValue) {\\n            let input = form.querySelector(`input[name=\\\"${key}\\\"]`);\\n\\n            // If the hidden input doesn't exist, create it\\n            if (!input) {\\n              input = document.createElement('input');\\n              input.type = 'hidden';\\n              input.name = key;\\n              form.appendChild(input);\\n            }\\n\\n            input.value = storedValue;\\n          }\\n        });\\n\\n        clearInterval(interval);\\n      }\\n    }, 500);\\n  });\\n</script>\",id:\"HkTdWAqCq\",layoutId:\"HkTdWAqCq\",radius:0,style:{height:\"100%\",width:\"100%\"},type:\"html\",url:\"\",width:\"100%\",zoom:1})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7U3dpdHplci1yZWd1bGFy\",\"--framer-font-family\":'\"Switzer\", \"Switzer Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-line-height\":\"145%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-ae76996c-3c15-4cfc-b7a1-620461235168, rgb(0, 0, 0))\"},children:'By clicking \"Submit\", you agree to our\\xa0Terms of Service\\xa0and\\xa0Privacy Policy'})}),className:\"framer-10ch7b2\",fonts:[\"FS;Switzer-regular\"],verticalAlignment:\"top\",withExternalLayout:true})]})})})})]})}),/*#__PURE__*/_jsx(\"section\",{className:\"framer-avl3jq\",\"data-framer-name\":\"Social proof\",children:/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation2,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1e17yye\",\"data-framer-name\":\"wrapper\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Im_1rXCiY:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"12px\",\"--framer-line-height\":\"145%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-ac16d8b0-e3e7-4092-b98d-4a3308d21843, rgb(0, 0, 0))\"},children:\"We have saved businesses over\"})})},P1TpL4nFr:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"15px\",\"--framer-line-height\":\"145%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-ac16d8b0-e3e7-4092-b98d-4a3308d21843, rgb(0, 0, 0))\"},children:\"We have saved businesses over\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-line-height\":\"145%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-ae76996c-3c15-4cfc-b7a1-620461235168, rgb(0, 0, 0))\"},children:\"We have saved businesses over\"})}),className:\"framer-m6qgvg\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-jq918o\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Im_1rXCiY:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"RlM7T3V0Zml0LXJlZ3VsYXI=\",\"--framer-font-family\":'\"Outfit\", \"Outfit Placeholder\", sans-serif',\"--framer-font-size\":\"47px\",\"--framer-line-height\":\"145%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-ae76996c-3c15-4cfc-b7a1-620461235168, rgb(0, 0, 0))\"},children:\"$3,000,000\"})})},P1TpL4nFr:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"RlM7T3V0Zml0LXJlZ3VsYXI=\",\"--framer-font-family\":'\"Outfit\", \"Outfit Placeholder\", sans-serif',\"--framer-font-size\":\"86px\",\"--framer-line-height\":\"145%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-ae76996c-3c15-4cfc-b7a1-620461235168, rgb(0, 0, 0))\"},children:\"$3,000,000\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"RlM7T3V0Zml0LXJlZ3VsYXI=\",\"--framer-font-family\":'\"Outfit\", \"Outfit Placeholder\", sans-serif',\"--framer-font-size\":\"48px\",\"--framer-line-height\":\"145%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-ae76996c-3c15-4cfc-b7a1-620461235168, rgb(0, 0, 0))\"},children:\"$3,000,000\"})}),className:\"framer-tkyzr7\",fonts:[\"FS;Outfit-regular\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Im_1rXCiY:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"RlM7T3V0Zml0LXJlZ3VsYXI=\",\"--framer-font-family\":'\"Outfit\", \"Outfit Placeholder\", sans-serif',\"--framer-font-size\":\"47px\",\"--framer-line-height\":\"145%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-29639882-87a7-439e-9888-ac6cd6077129, rgb(21, 112, 239))\"},children:\"+\"})})},P1TpL4nFr:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"RlM7T3V0Zml0LXJlZ3VsYXI=\",\"--framer-font-family\":'\"Outfit\", \"Outfit Placeholder\", sans-serif',\"--framer-font-size\":\"86px\",\"--framer-line-height\":\"145%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-29639882-87a7-439e-9888-ac6cd6077129, rgb(21, 112, 239))\"},children:\"+\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"RlM7T3V0Zml0LXJlZ3VsYXI=\",\"--framer-font-family\":'\"Outfit\", \"Outfit Placeholder\", sans-serif',\"--framer-font-size\":\"48px\",\"--framer-line-height\":\"145%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-29639882-87a7-439e-9888-ac6cd6077129, rgb(21, 112, 239))\"},children:\"+\"})}),className:\"framer-ys9brz\",fonts:[\"FS;Outfit-regular\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Im_1rXCiY:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"12px\",\"--framer-line-height\":\"145%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-ac16d8b0-e3e7-4092-b98d-4a3308d21843, rgb(0, 0, 0))\"},children:\"in automation worldwide, and we show no signs of slowing down!!!\"})})},P1TpL4nFr:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"15px\",\"--framer-line-height\":\"145%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-ac16d8b0-e3e7-4092-b98d-4a3308d21843, rgb(0, 0, 0))\"},children:\"in automation worldwide, and we show no signs of slowing down!!!\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-line-height\":\"145%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-ae76996c-3c15-4cfc-b7a1-620461235168, rgb(0, 0, 0))\"},children:\"in automation worldwide, and we show no signs of slowing down!!!\"})}),className:\"framer-m212xr\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Im_1rXCiY:{y:(componentViewport?.y||0)+0+0+0+1961.15},P1TpL4nFr:{y:(componentViewport?.y||0)+0+70+0+1574.2}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:1002,width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+0+0+1533.6,children:/*#__PURE__*/_jsx(Container,{className:\"framer-i3ugyr-container\",nodeId:\"RNE5l9QZE\",scopeId:\"LDpT1HaOj\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Im_1rXCiY:{variant:\"pSgNmUQ0b\"},P1TpL4nFr:{variant:\"M6bQM96OO\"}},children:/*#__PURE__*/_jsx(NavigationAndFootersFooter,{height:\"100%\",id:\"RNE5l9QZE\",layoutId:\"RNE5l9QZE\",style:{width:\"100%\"},variant:\"g23ar4saL\",width:\"100%\"})})})})})]})]}),/*#__PURE__*/_jsx(\"div\",{id:\"overlay\"})]})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-PbLnv.framer-bnup08, .framer-PbLnv .framer-bnup08 { display: block; }\",\".framer-PbLnv.framer-1oo5zb2 { align-content: center; align-items: center; background-color: var(--token-f71a9c49-6137-4783-9781-2bc8e4a5b85c, #ffffff); display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 1200px; }\",\".framer-PbLnv .framer-mydk6s-container, .framer-PbLnv .framer-d3gheb-container { flex: none; height: auto; position: relative; width: 100%; z-index: 10; }\",\".framer-PbLnv .framer-1e11904 { align-content: center; align-items: center; background-color: #ffffff; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-PbLnv .framer-bsr84w { align-content: center; align-items: center; background-color: var(--token-ae76996c-3c15-4cfc-b7a1-620461235168, #000000); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-PbLnv .framer-128bk5y { align-content: flex-end; align-items: flex-end; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: 100vh; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-PbLnv .framer-19e6e5z { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 30px; height: 585px; justify-content: flex-start; overflow: visible; padding: 0px 50px 50px 50px; position: relative; width: 50%; }\",\".framer-PbLnv .framer-ha7ds3, .framer-PbLnv .framer-ywj3ss, .framer-PbLnv .framer-1cpvhxu, .framer-PbLnv .framer-ogk8c7, .framer-PbLnv .framer-10ch7b2 { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-PbLnv .framer-e98i22 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-PbLnv .framer-1exonj6 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 12px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-PbLnv .framer-hy0plw, .framer-PbLnv .framer-wvyv6s, .framer-PbLnv .framer-1wfzttl, .framer-PbLnv .framer-1kci0hh { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 17px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-PbLnv .framer-exvv5u, .framer-PbLnv .framer-3lhns6, .framer-PbLnv .framer-9xw0jk { align-content: flex-start; align-items: flex-start; background-color: rgba(150, 132, 250, 0.28); border-bottom-left-radius: 100px; border-bottom-right-radius: 100px; border-top-left-radius: 100px; border-top-right-radius: 100px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: flex-start; overflow: visible; padding: 8px; position: relative; width: min-content; }\",\".framer-PbLnv .framer-1sx3dkm, .framer-PbLnv .framer-19uymqe, .framer-PbLnv .framer-9bsnce, .framer-PbLnv .framer-e69lis { flex: none; height: 16px; overflow: visible; position: relative; width: 16px; }\",\".framer-PbLnv .framer-119nhg6, .framer-PbLnv .framer-reqyb7, .framer-PbLnv .framer-w9kii2 { flex: none; height: 9px; left: calc(50.00000000000002% - 12px / 2); position: absolute; top: calc(50.00000000000002% - 9px / 2); width: 12px; }\",\".framer-PbLnv .framer-6h5dw9, .framer-PbLnv .framer-3g1yu6, .framer-PbLnv .framer-18chmsq, .framer-PbLnv .framer-58q7af { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: 1 0 0px; height: auto; position: relative; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; }\",\".framer-PbLnv .framer-tye9ak { align-content: flex-start; align-items: flex-start; background-color: rgba(150, 132, 250, 0.38); border-bottom-left-radius: 100px; border-bottom-right-radius: 100px; border-top-left-radius: 100px; border-top-right-radius: 100px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: flex-start; overflow: visible; padding: 8px; position: relative; width: min-content; }\",\".framer-PbLnv .framer-1xwjns7 { flex: none; height: 8px; left: calc(50.00000000000002% - 12px / 2); position: absolute; top: calc(43.75000000000002% - 8px / 2); width: 12px; }\",\".framer-PbLnv .framer-1bxmcig { border-bottom-left-radius: 6px; border-top-left-radius: 6px; flex: none; height: 726px; overflow: visible; position: relative; width: 50%; }\",\".framer-PbLnv .framer-1sniod2 { align-content: flex-start; align-items: flex-start; background-color: var(--token-f71a9c49-6137-4783-9781-2bc8e4a5b85c, #ffffff); border-bottom-left-radius: 10px; border-bottom-right-radius: 10px; border-top-left-radius: 10px; border-top-right-radius: 10px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 12px; height: min-content; justify-content: flex-start; left: 50%; max-width: 533px; overflow: hidden; padding: 30px 20px 30px 20px; position: absolute; top: 50%; transform: translate(-50%, -50%); width: 89%; will-change: var(--framer-will-change-override, transform); }\",\".framer-PbLnv .framer-wqc8lo { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-PbLnv .framer-1k3s5q9-container { flex: none; height: 470px; position: relative; width: 505px; }\",\".framer-PbLnv .framer-avl3jq { align-content: center; align-items: center; background-color: var(--token-1818cf12-a157-4bef-94ba-0e78500c726d, #efeee6); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-PbLnv .framer-1e17yye { align-content: center; align-items: center; background-color: #ffffff; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 31px; height: min-content; justify-content: center; overflow: hidden; padding: 50px 150px 50px 150px; position: relative; width: 100%; }\",\".framer-PbLnv .framer-m6qgvg, .framer-PbLnv .framer-m212xr { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; z-index: 2; }\",\".framer-PbLnv .framer-jq918o { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 4px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-PbLnv .framer-tkyzr7, .framer-PbLnv .framer-ys9brz { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; position: relative; white-space: pre; width: auto; z-index: 2; }\",\".framer-PbLnv .framer-i3ugyr-container { flex: none; height: auto; position: relative; width: 100%; }\",\"@supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-PbLnv.framer-1oo5zb2, .framer-PbLnv .framer-1e11904, .framer-PbLnv .framer-bsr84w, .framer-PbLnv .framer-128bk5y, .framer-PbLnv .framer-19e6e5z, .framer-PbLnv .framer-e98i22, .framer-PbLnv .framer-1exonj6, .framer-PbLnv .framer-hy0plw, .framer-PbLnv .framer-exvv5u, .framer-PbLnv .framer-wvyv6s, .framer-PbLnv .framer-tye9ak, .framer-PbLnv .framer-1wfzttl, .framer-PbLnv .framer-3lhns6, .framer-PbLnv .framer-1kci0hh, .framer-PbLnv .framer-9xw0jk, .framer-PbLnv .framer-1sniod2, .framer-PbLnv .framer-wqc8lo, .framer-PbLnv .framer-avl3jq, .framer-PbLnv .framer-1e17yye, .framer-PbLnv .framer-jq918o { gap: 0px; } .framer-PbLnv.framer-1oo5zb2 > *, .framer-PbLnv .framer-1e11904 > *, .framer-PbLnv .framer-bsr84w > *, .framer-PbLnv .framer-avl3jq > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-PbLnv.framer-1oo5zb2 > :first-child, .framer-PbLnv .framer-1e11904 > :first-child, .framer-PbLnv .framer-bsr84w > :first-child, .framer-PbLnv .framer-19e6e5z > :first-child, .framer-PbLnv .framer-e98i22 > :first-child, .framer-PbLnv .framer-1exonj6 > :first-child, .framer-PbLnv .framer-1sniod2 > :first-child, .framer-PbLnv .framer-wqc8lo > :first-child, .framer-PbLnv .framer-avl3jq > :first-child, .framer-PbLnv .framer-1e17yye > :first-child { margin-top: 0px; } .framer-PbLnv.framer-1oo5zb2 > :last-child, .framer-PbLnv .framer-1e11904 > :last-child, .framer-PbLnv .framer-bsr84w > :last-child, .framer-PbLnv .framer-19e6e5z > :last-child, .framer-PbLnv .framer-e98i22 > :last-child, .framer-PbLnv .framer-1exonj6 > :last-child, .framer-PbLnv .framer-1sniod2 > :last-child, .framer-PbLnv .framer-wqc8lo > :last-child, .framer-PbLnv .framer-avl3jq > :last-child, .framer-PbLnv .framer-1e17yye > :last-child { margin-bottom: 0px; } .framer-PbLnv .framer-128bk5y > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } .framer-PbLnv .framer-128bk5y > :first-child, .framer-PbLnv .framer-hy0plw > :first-child, .framer-PbLnv .framer-exvv5u > :first-child, .framer-PbLnv .framer-wvyv6s > :first-child, .framer-PbLnv .framer-tye9ak > :first-child, .framer-PbLnv .framer-1wfzttl > :first-child, .framer-PbLnv .framer-3lhns6 > :first-child, .framer-PbLnv .framer-1kci0hh > :first-child, .framer-PbLnv .framer-9xw0jk > :first-child, .framer-PbLnv .framer-jq918o > :first-child { margin-left: 0px; } .framer-PbLnv .framer-128bk5y > :last-child, .framer-PbLnv .framer-hy0plw > :last-child, .framer-PbLnv .framer-exvv5u > :last-child, .framer-PbLnv .framer-wvyv6s > :last-child, .framer-PbLnv .framer-tye9ak > :last-child, .framer-PbLnv .framer-1wfzttl > :last-child, .framer-PbLnv .framer-3lhns6 > :last-child, .framer-PbLnv .framer-1kci0hh > :last-child, .framer-PbLnv .framer-9xw0jk > :last-child, .framer-PbLnv .framer-jq918o > :last-child { margin-right: 0px; } .framer-PbLnv .framer-19e6e5z > * { margin: 0px; margin-bottom: calc(30px / 2); margin-top: calc(30px / 2); } .framer-PbLnv .framer-e98i22 > * { margin: 0px; margin-bottom: calc(20px / 2); margin-top: calc(20px / 2); } .framer-PbLnv .framer-1exonj6 > *, .framer-PbLnv .framer-1sniod2 > * { margin: 0px; margin-bottom: calc(12px / 2); margin-top: calc(12px / 2); } .framer-PbLnv .framer-hy0plw > *, .framer-PbLnv .framer-wvyv6s > *, .framer-PbLnv .framer-1wfzttl > *, .framer-PbLnv .framer-1kci0hh > * { margin: 0px; margin-left: calc(17px / 2); margin-right: calc(17px / 2); } .framer-PbLnv .framer-exvv5u > *, .framer-PbLnv .framer-tye9ak > *, .framer-PbLnv .framer-3lhns6 > *, .framer-PbLnv .framer-9xw0jk > * { margin: 0px; margin-left: calc(8px / 2); margin-right: calc(8px / 2); } .framer-PbLnv .framer-wqc8lo > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-PbLnv .framer-1e17yye > * { margin: 0px; margin-bottom: calc(31px / 2); margin-top: calc(31px / 2); } .framer-PbLnv .framer-jq918o > * { margin: 0px; margin-left: calc(4px / 2); margin-right: calc(4px / 2); } }\",\"@media (min-width: 810px) and (max-width: 1199px) { .framer-PbLnv.framer-1oo5zb2 { width: 810px; } .framer-PbLnv .framer-d3gheb-container { order: 2; } .framer-PbLnv .framer-bsr84w { order: 0; } .framer-PbLnv .framer-128bk5y { flex-direction: column; } .framer-PbLnv .framer-19e6e5z { padding: 128px 32px 32px 32px; width: 100%; } .framer-PbLnv .framer-1bxmcig { height: 820px; width: 100%; } .framer-PbLnv .framer-1sniod2 { width: 70%; } .framer-PbLnv .framer-avl3jq { order: 1; } .framer-PbLnv .framer-1e17yye { padding: 50px 100px 50px 100px; } .framer-PbLnv .framer-i3ugyr-container { order: 3; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-PbLnv .framer-128bk5y { gap: 0px; } .framer-PbLnv .framer-128bk5y > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-PbLnv .framer-128bk5y > :first-child { margin-top: 0px; } .framer-PbLnv .framer-128bk5y > :last-child { margin-bottom: 0px; } }}\",\"@media (max-width: 809px) { .framer-PbLnv.framer-1oo5zb2 { width: 390px; } .framer-PbLnv .framer-128bk5y { flex-direction: column; height: min-content; } .framer-PbLnv .framer-19e6e5z { padding: 104px 20px 40px 20px; width: 100%; } .framer-PbLnv .framer-1bxmcig { height: 922px; width: 100%; } .framer-PbLnv .framer-1sniod2 { width: 89%; } .framer-PbLnv .framer-1e17yye { padding: 40px; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-PbLnv .framer-128bk5y { gap: 0px; } .framer-PbLnv .framer-128bk5y > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-PbLnv .framer-128bk5y > :first-child { margin-top: 0px; } .framer-PbLnv .framer-128bk5y > :last-child { margin-bottom: 0px; } }}\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 2150.5\n * @framerIntrinsicWidth 1200\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"P1TpL4nFr\":{\"layout\":[\"fixed\",\"auto\"]},\"Im_1rXCiY\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n * @framerAcceptsLayoutTemplate true\n * @framerScrollSections\n * @framerResponsiveScreen\n */const FramerLDpT1HaOj=withCSS(Component,css,\"framer-PbLnv\");export default FramerLDpT1HaOj;FramerLDpT1HaOj.displayName=\"Contact\";FramerLDpT1HaOj.defaultProps={height:2150.5,width:1200};addFonts(FramerLDpT1HaOj,[{explicitInter:true,fonts:[{family:\"Inter Display\",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/gazZKZuUEtvr9ULhdA4SprP0AZ0.woff2\",weight:\"600\"},{family:\"Inter Display\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/pe8RoujoPxuTZhqoNzYqHX2MXA.woff2\",weight:\"600\"},{family:\"Inter Display\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/teGhWnhH3bCqefKGsIsqFy3hK8.woff2\",weight:\"600\"},{family:\"Inter Display\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/qQHxgTnEk6Czu1yW4xS82HQWFOk.woff2\",weight:\"600\"},{family:\"Inter Display\",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/MJ3N6lfN4iP5Um8rJGqLYl03tE.woff2\",weight:\"600\"},{family:\"Inter Display\",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/dHHUz45rhM2KCQpj9zttNVlibk.woff2\",weight:\"600\"},{family:\"Inter Display\",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/0SEEmmWc3vovhaai4RlRQSWRrz0.woff2\",weight:\"600\"},{family:\"Switzer\",source:\"fontshare\",style:\"normal\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/OYB4CXKJQXKTNSLJMTDQOIVUL2V5EL7S/WYO2P7DQVV5RNXGMCUO2HL4RJP4VFUAS/6XPIMU23OJVRY676OG5YVJMWEHWICATX.woff2\",weight:\"500\"},{family:\"Inter Display\",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/ePuN3mCjzajIHnyCdvKBFiZkyY0.woff2\",weight:\"500\"},{family:\"Inter Display\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/V3j1L0o5vPFKe26Sw4HcpXCfHo.woff2\",weight:\"500\"},{family:\"Inter Display\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/F3kdpd2N0cToWV5huaZjjgM.woff2\",weight:\"500\"},{family:\"Inter Display\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/0iDmxkizU9goZoclqIqsV5rvETU.woff2\",weight:\"500\"},{family:\"Inter Display\",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/r0mv3NegmA0akcQsNFotG32Las.woff2\",weight:\"500\"},{family:\"Inter Display\",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/8yoV9pUxquX7VD7ZXlNYKQmkmk.woff2\",weight:\"500\"},{family:\"Inter Display\",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/Ii21jnSJkulBKsHHXKlapi7fv9w.woff2\",weight:\"500\"},{family:\"Outfit\",source:\"fontshare\",style:\"normal\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/LLL2G3NRT7NQD2GKJUPGXM7TQ2DC6HXX/PW5PSBLUQB3EYD5A5UFT4XOSWCSQOKTH/P65L7VCWZE3ZYHD2XJZ2WDLQCATH7Y3R.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/5vvr9Vy74if2I6bQbJvbw7SY1pQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/EOr0mi4hNtlgWNn9if640EZzXCo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Y9k9QrlZAqio88Klkmbd8VoMQc.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/OYrD2tBIBPvoJXiIHnLoOXnY9M.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/JeYwfuaPfZHQhEG8U5gtPDZ7WQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/vQyevYAyHtARFwPqUzQGpnDs.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/b6Y37FthZeALduNqHicBT6FutY.woff2\",weight:\"400\"},{family:\"Switzer\",source:\"fontshare\",style:\"normal\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/BLNB4FAQFNK56DWWNF7PMGTCOTZHOEII/ST3WKSSDMBK2MIQQO3MAVYWLF4FTOLFV/6IN5WOLRCYP4G4MOCOHOMXNON6Q7MDAR.woff2\",weight:\"400\"},{family:\"Outfit\",source:\"fontshare\",style:\"normal\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/RPEPC24XXAVK6EWUOKWQUPTOZQR35AS2/BVWMEQ5ZCLZP2VOXOHXQDCZADXNFBXUF/5REHZLR2B5PQAKMITIQJK6BDK34RDHS4.woff2\",weight:\"400\"}]},...NavigationAndFootersNavigationFonts,...EmbedFonts,...NavigationAndFootersFooterFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerLDpT1HaOj\",\"slots\":[],\"annotations\":{\"framerDisplayContentsDiv\":\"false\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"P1TpL4nFr\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"Im_1rXCiY\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerAcceptsLayoutTemplate\":\"true\",\"framerIntrinsicHeight\":\"2150.5\",\"framerColorSyntax\":\"true\",\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicWidth\":\"1200\",\"framerImmutableVariables\":\"true\",\"framerContractVersion\":\"1\",\"framerScrollSections\":\"* @framerResponsiveScreen\"}},\"__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", "NavigationAndFootersNavigationFonts", "getFonts", "LhuE90Y7w_default", "EmbedFonts", "Embed", "MotionDivWithOptimizedAppearEffect", "withOptimizedAppearEffect", "motion", "MotionDivWithFX", "withFX", "NavigationAndFootersFooterFonts", "XnoQ6Lis1_default", "breakpoints", "isBrowser", "serializationHash", "variantClassNames", "transition1", "animation", "animation1", "animation2", "transition2", "HTMLStyle", "value", "useIsOnFramerCanvas", "p", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "variant", "restProps", "ue", "metadata", "robotsTag", "ie", "baseVariant", "hydratedBaseVariant", "useHydratedBreakpointVariants", "gestureVariant", "scopingClassNames", "cx", "isDisplayed", "useCustomCursors", "GeneratedComponentContext", "u", "LayoutGroup", "PropertyOverrides2", "ComponentViewportProvider", "Container", "x", "RichText2", "SVG", "getLoadingLazyAtYPosition", "Image2", "FormContainer", "formState", "l", "css", "FramerLDpT1HaOj", "withCSS", "LDpT1HaOj_default", "addFonts", "__FramerMetadata__"]
}
