{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/o1PI5S8YtkA5bP5g4dFz/Xr8CO3Ul8Gb7lVfgMKTh/Embed.js", "ssg:https://framerusercontent.com/modules/NVV4eqVRgaEEUviFPjR5/bgO9Ucdu3GjFwwFacXyV/UFKt7pA8b.js", "ssg:https://framerusercontent.com/modules/bwllbJPjhALrLT0Wcb7R/TN7eLhGgnALFS4JWfva8/UFKt7pA8b.js"],
  "sourcesContent": ["import{jsx as _jsx}from\"react/jsx-runtime\";import{useEffect,useRef,useState}from\"react\";import{addPropertyControls,ControlType}from\"framer\";import{useIsOnCanvas,emptyStateStyle,containerStyles}from\"https://framer.com/m/framer/default-utils.js\";/**\n * @framerIntrinsicWidth 600\n * @framerIntrinsicHeight 400\n *\n * @framerSupportedLayoutWidth fixed\n * @framerSupportedLayoutHeight any-prefer-fixed\n *\n * @framerDisableUnlink\n */export default function Embed({type,url,html,style={}}){if(type===\"url\"&&url){return /*#__PURE__*/_jsx(EmbedUrl,{url:url,style:style});}if(type===\"html\"&&html){return /*#__PURE__*/_jsx(EmbedHtml,{html:html,style:style});}return /*#__PURE__*/_jsx(Instructions,{style:style});}addPropertyControls(Embed,{type:{type:ControlType.Enum,defaultValue:\"url\",displaySegmentedControl:true,options:[\"url\",\"html\"],optionTitles:[\"URL\",\"HTML\"]},url:{title:\"URL\",type:ControlType.String,description:\"Some websites don\u2019t support embedding.\",hidden(props){return props.type!==\"url\";}},html:{title:\"HTML\",type:ControlType.String,displayTextArea:true,hidden(props){return props.type!==\"html\";}}});function Instructions({style}){return /*#__PURE__*/_jsx(\"div\",{style:{minHeight:getMinHeight(style),...emptyStateStyle,overflow:\"hidden\",...style},children:/*#__PURE__*/_jsx(\"div\",{style:centerTextStyle,children:\"To embed a website or widget, add it to the properties\\xa0panel.\"})});}function EmbedUrl({url,style}){const hasAutoHeight=!style.height;// Add https:// if the URL does not have a protocol.\nif(!/[a-z]+:\\/\\//.test(url)){url=\"https://\"+url;}const onCanvas=useIsOnCanvas();// We need to check if the url is blocked inside an iframe by the X-Frame-Options\n// or Content-Security-Policy headers on the backend.\nconst[state,setState]=useState(onCanvas?undefined:false);useEffect(()=>{// We only want to check on the canvas.\n// On the website we want to avoid the additional delay.\nif(!onCanvas)return;// TODO: We could also use AbortController here.\nlet isLastEffect=true;setState(undefined);async function load(){const response=await fetch(\"https://api.framer.com/functions/check-iframe-url?url=\"+encodeURIComponent(url));if(response.status==200){const{isBlocked}=await response.json();if(isLastEffect){setState(isBlocked);}}else{const message=await response.text();console.error(message);const error=new Error(\"This site can\u2019t be reached.\");setState(error);}}load().catch(error=>{console.error(error);setState(error);});return()=>{isLastEffect=false;};},[url]);if(onCanvas&&hasAutoHeight){return /*#__PURE__*/_jsx(ErrorMessage,{message:\"URL embeds do not support auto height.\",style:style});}if(!url.startsWith(\"https://\")){return /*#__PURE__*/_jsx(ErrorMessage,{message:\"Unsupported protocol.\",style:style});}if(state===undefined){return /*#__PURE__*/_jsx(LoadingIndicator,{});}if(state instanceof Error){return /*#__PURE__*/_jsx(ErrorMessage,{message:state.message,style:style});}if(state===true){const message=`Can\u2019t embed ${url} due to its content security policy.`;return /*#__PURE__*/_jsx(ErrorMessage,{message:message,style:style});}return /*#__PURE__*/_jsx(\"iframe\",{src:url,style:{...iframeStyle,...style},loading:\"lazy\",// @ts-ignore\nfetchPriority:onCanvas?\"low\":\"auto\",referrerPolicy:\"no-referrer\",sandbox:getSandbox(onCanvas)});}const iframeStyle={width:\"100%\",height:\"100%\",border:\"none\"};function getSandbox(onCanvas){const result=[\"allow-same-origin\",\"allow-scripts\"];if(!onCanvas){result.push(\"allow-downloads\",\"allow-forms\",\"allow-modals\",\"allow-orientation-lock\",\"allow-pointer-lock\",\"allow-popups\",\"allow-popups-to-escape-sandbox\",\"allow-presentation\",\"allow-storage-access-by-user-activation\",\"allow-top-navigation-by-user-activation\");}return result.join(\" \");}function EmbedHtml({html,...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(()=>{var _ref_current;const iframeWindow=(_ref_current=ref.current)===null||_ref_current===void 0?void 0:_ref_current.contentWindow;function handleMessage(event){if(event.source!==iframeWindow)return;const data=event.data;if(typeof data!==\"object\"||data===null)return;const height=data.embedHeight;if(typeof height!==\"number\")return;setIframeHeight(height);}window.addEventListener(\"message\",handleMessage);// After SSG the iframe loads before we attach the event handler,\n// therefore we need to request the latest height from the iframe.\niframeWindow===null||iframeWindow===void 0?void 0:iframeWindow.postMessage(\"getEmbedHeight\",\"*\");return()=>{window.removeEventListener(\"message\",handleMessage);};},[]);// 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                min-height: 100vh;\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\":{\"framerIntrinsicHeight\":\"400\",\"framerIntrinsicWidth\":\"600\",\"framerContractVersion\":\"1\",\"framerSupportedLayoutHeight\":\"any-prefer-fixed\",\"framerDisableUnlink\":\"\",\"framerSupportedLayoutWidth\":\"fixed\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Embed.map", "// Generated by Framer (ab692b1)\nimport{LazyValue}from\"framer\";const valuesByLocaleId={yIi6ec49_:new LazyValue(()=>import(\"./UFKt7pA8b-1.js\")),yQsP8Uhfo:new LazyValue(()=>import(\"./UFKt7pA8b-0.js\"))};export default function getLocalizedValue(key,locale){while(locale){const values=valuesByLocaleId[locale.id];if(values){const value=values.read()[key];if(value)return value;}locale=locale.fallback;}}function preload(locale){const promises=[];while(locale){const values=valuesByLocaleId[locale.id];if(values){const promise=values.preload();if(promise)promises.push(promise);}locale=locale.fallback;}if(promises.length>0)return Promise.all(promises);}export function usePreloadLocalizedValues(locale){const preloadPromise=preload(locale);if(preloadPromise)throw preloadPromise;}\nexport const __FramerMetadata__ = {\"exports\":{\"usePreloadLocalizedValues\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (ab692b1)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,ComponentViewportProvider,Container,cx,GeneratedComponentContext,getFonts,getFontsFromSharedStyle,getLoadingLazyAtYPosition,Image,Link,PropertyOverrides,ResolveLinks,RichText,SVG,useComponentViewport,useCustomCursors,useHydratedBreakpointVariants,useIsOnFramerCanvas,useLocaleInfo,useRouteElementId,useRouter,withCodeBoundaryForOverrides,withCSS}from\"framer\";import{LayoutGroup,motion}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import ComponentsButtonPrimary1 from\"https://framerusercontent.com/modules/47aIPtX5kge8AWfiJG7Z/ssJp1pR1H4INHKTBwwO1/h5OvShzF3.js\";import default1 from\"https://framerusercontent.com/modules/gmdJaPYs9stb6BqP3o1K/Yh5Dm1zmjJIIvGgiWrtc/Turncate_2r_rows.js\";import{Icon as Hero}from\"https://framerusercontent.com/modules/hKjtTuWGYB451ckw6eTN/bbq95ZQZ142lE2fXscHd/Hero.js\";import Embed from\"https://framerusercontent.com/modules/o1PI5S8YtkA5bP5g4dFz/Xr8CO3Ul8Gb7lVfgMKTh/Embed.js\";import Intercom from\"https://framerusercontent.com/modules/UIhUTcd796YH7Ndybys8/totj55n8qE3VYpdXhshW/Intercom.js\";import ComponentsButtonPrimary from\"#framer/local/canvasComponent/h5OvShzF3/h5OvShzF3.js\";import ComponentsQuotes from\"#framer/local/canvasComponent/JMPSBWeXb/JMPSBWeXb.js\";import*as sharedStyle1 from\"#framer/local/css/a1BTW6fEO/a1BTW6fEO.js\";import*as sharedStyle from\"#framer/local/css/LznTIvXK8/LznTIvXK8.js\";import getLocalizedValue,{usePreloadLocalizedValues}from\"#framer/local/localization/UFKt7pA8b/UFKt7pA8b.js\";import metadataProvider from\"#framer/local/webPageMetadata/UFKt7pA8b/UFKt7pA8b.js\";const IntercomFonts=getFonts(Intercom);const HeroFonts=getFonts(Hero);const EmbedFonts=getFonts(Embed);const ComponentsButtonPrimaryFonts=getFonts(ComponentsButtonPrimary);const RichTextDefault1tmbwqd=withCodeBoundaryForOverrides(RichText,{nodeId:\"mNN6yvlrr\",override:default1,scopeId:\"UFKt7pA8b\"});const ComponentsButtonPrimary1Fonts=getFonts(ComponentsButtonPrimary1);const RichTextDefault11oitr9t=withCodeBoundaryForOverrides(RichText,{nodeId:\"cWpzAkGGv\",override:default1,scopeId:\"UFKt7pA8b\"});const RichTextDefault1dse89h=withCodeBoundaryForOverrides(RichText,{nodeId:\"G24wOPC2j\",override:default1,scopeId:\"UFKt7pA8b\"});const ComponentsQuotesFonts=getFonts(ComponentsQuotes);const breakpoints={bHuTJ9VI9:\"(max-width: 809px)\",FwUaFikCo:\"(min-width: 1200px)\",ql6Pes_i4:\"(min-width: 810px) and (max-width: 1199px)\"};const isBrowser=()=>typeof document!==\"undefined\";const serializationHash=\"framer-mluSW\";const variantClassNames={bHuTJ9VI9:\"framer-v-1r8jh69\",FwUaFikCo:\"framer-v-lilsm\",ql6Pes_i4:\"framer-v-hta16k\"};const transition1={bounce:.25,delay:0,duration:.45,type:\"spring\"};const animation={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1.01,skewX:0,skewY:0,transition:transition1};const HTMLStyle=({value})=>{const onCanvas=useIsOnFramerCanvas();if(onCanvas)return null;return /*#__PURE__*/_jsx(\"style\",{dangerouslySetInnerHTML:{__html:value},\"data-framer-html-style\":\"\"});};const humanReadableVariantMap={Desktop:\"FwUaFikCo\",Phone:\"bHuTJ9VI9\",Tablet:\"ql6Pes_i4\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"FwUaFikCo\"};};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=[sharedStyle.className,sharedStyle1.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);usePreloadLocalizedValues(activeLocale);const router=useRouter();const elementId=useRouteElementId(\"H240CnwEp\");const ref1=React.useRef(null);const elementId1=useRouteElementId(\"ZWArLXkxL\");const ref2=React.useRef(null);useCustomCursors({});return /*#__PURE__*/_jsx(GeneratedComponentContext.Provider,{value:{primaryVariantId:\"FwUaFikCo\",variantClassNames},children:/*#__PURE__*/_jsxs(LayoutGroup,{id:layoutId??defaultLayoutId,children:[/*#__PURE__*/_jsx(HTMLStyle,{value:\"html body { background: var(--token-2ddc8810-663c-4e1a-85c0-d126012aac59, rgb(243, 245, 251)); }\"}),/*#__PURE__*/_jsxs(motion.div,{...restProps,className:cx(scopingClassNames,\"framer-lilsm\",className),ref:refBinding,style:{...style},children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-y2ukbm-container\",isAuthoredByUser:true,isModuleExternal:true,layoutScroll:true,nodeId:\"xRLfvMzXZ\",scopeId:\"UFKt7pA8b\",children:/*#__PURE__*/_jsx(Intercom,{appId:\"whnqzf5j\",height:\"100%\",id:\"xRLfvMzXZ\",layoutId:\"xRLfvMzXZ\",style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsxs(\"main\",{className:\"framer-1q0t43k\",\"data-framer-name\":\"body\",children:[/*#__PURE__*/_jsxs(\"section\",{className:\"framer-1tm2azq\",\"data-framer-name\":\"breadcrumbs\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-i69qg3\",\"data-framer-name\":\"home\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-rcmom1-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"QWYWieN78\",scopeId:\"UFKt7pA8b\",children:/*#__PURE__*/_jsx(Hero,{color:\"var(--token-f33a66d8-6caa-48a8-bc37-35574a4d7cc6, rgb(145, 153, 165))\",height:\"100%\",iconSearch:\"Home\",iconSelection:\"Home\",id:\"QWYWieN78\",layoutId:\"QWYWieN78\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v0\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-4d9zy1\",\"data-styles-preset\":\"LznTIvXK8\",style:{\"--framer-text-color\":\"var(--token-036d5f04-7ff0-40f4-a892-6301c51f0d70, rgb(108, 119, 135))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"augiA20Il\"},motionChild:true,nodeId:\"bJlJNRmTe\",openInNewTab:false,scopeId:\"UFKt7pA8b\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1xrun5v\",\"data-styles-preset\":\"a1BTW6fEO\",children:\"Home\"})})})}),className:\"framer-11pzebi\",\"data-framer-name\":\"Dom\u016F\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-ju7ezl-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"wpcoShDq9\",scopeId:\"UFKt7pA8b\",children:/*#__PURE__*/_jsx(Hero,{color:\"var(--token-f33a66d8-6caa-48a8-bc37-35574a4d7cc6, rgb(145, 153, 165))\",height:\"100%\",iconSearch:\"Home\",iconSelection:\"ChevronRight\",id:\"wpcoShDq9\",layoutId:\"wpcoShDq9\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-4d9zy1\",\"data-styles-preset\":\"LznTIvXK8\",style:{\"--framer-text-color\":\"var(--token-2975fec0-82db-4338-b6f5-e7cfb3da3711, rgb(57, 68, 84))\"},children:\"404 :(\"})}),className:\"framer-e36mwk\",\"data-framer-name\":\"404 :(\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1fc84ua-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"tZPXnl5Ra\",scopeId:\"UFKt7pA8b\",children:/*#__PURE__*/_jsx(Embed,{height:\"100%\",html:\"<iframe src='https://my.spline.design/insio404-affcb690ddd22fd39e4778c29c517873/' frameborder='0' width='100%' height='100%'></iframe>\",id:\"tZPXnl5Ra\",layoutId:\"tZPXnl5Ra\",style:{height:\"100%\",width:\"100%\"},type:\"html\",url:\"https://my.spline.design/insio404-affcb690ddd22fd39e4778c29c517873/\",width:\"100%\"})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1ca9idt\",\"data-framer-name\":\"button\",children:/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"augiA20Il\"},implicitPathVariables:undefined},{href:{webPageId:\"augiA20Il\"},implicitPathVariables:undefined},{href:{webPageId:\"augiA20Il\"},implicitPathVariables:undefined}],children:resolvedLinks=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{bHuTJ9VI9:{y:(componentViewport?.y||0)+0+0+64+450+0},ql6Pes_i4:{y:(componentViewport?.y||0)+0+0+64+700+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:44,y:(componentViewport?.y||0)+0+0+64+650+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1y5af0k-container\",nodeId:\"tiwMDM_ML\",scopeId:\"UFKt7pA8b\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{bHuTJ9VI9:{OcF7PQ4XJ:resolvedLinks[2]},ql6Pes_i4:{OcF7PQ4XJ:resolvedLinks[1]}},children:/*#__PURE__*/_jsx(ComponentsButtonPrimary,{EWIZ7KLXL:getLocalizedValue(\"v1\",activeLocale)??\"Back to homepage\",height:\"100%\",id:\"tiwMDM_ML\",layoutId:\"tiwMDM_ML\",OcF7PQ4XJ:resolvedLinks[0],style:{height:\"100%\"},variant:\"TZMrOtqs9\",width:\"100%\"})})})})})})}),/*#__PURE__*/_jsxs(\"section\",{className:\"framer-1re96fm\",\"data-framer-name\":\"products\",id:elementId,ref:ref1,children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{bHuTJ9VI9:{children:getLocalizedValue(\"v4\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"R0Y7RXhvIDItNjAw\",\"--framer-font-family\":'\"Exo 2\", \"Exo 2 Placeholder\", sans-serif',\"--framer-font-size\":\"28px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"130%\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-40ea63ae-aa2d-48d8-b08a-e2be836def53, rgb(13, 13, 13))\"},children:\"Were you looking for these?\"})})},ql6Pes_i4:{children:getLocalizedValue(\"v3\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"R0Y7RXhvIDItNjAw\",\"--framer-font-family\":'\"Exo 2\", \"Exo 2 Placeholder\", sans-serif',\"--framer-font-size\":\"30px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"130%\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-40ea63ae-aa2d-48d8-b08a-e2be836def53, rgb(13, 13, 13))\"},children:\"Were you looking for these?\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v2\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"R0Y7RXhvIDItNjAw\",\"--framer-font-family\":'\"Exo 2\", \"Exo 2 Placeholder\", sans-serif',\"--framer-font-size\":\"36px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"130%\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-40ea63ae-aa2d-48d8-b08a-e2be836def53, rgb(13, 13, 13))\"},children:\"Were you looking for these?\"})}),className:\"framer-1kzv6qq\",\"data-framer-name\":\"Automatizujte tyto procesy\",fonts:[\"GF;Exo 2-600\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1tlwpvh\",\"data-framer-name\":\"wrap\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1jzmic9\",\"data-framer-name\":\"section-info\",whileHover:animation,children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-168k3a0\",\"data-framer-name\":\"content\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-b9ec9i\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-kelnvs\",\"data-framer-name\":\"Give Document\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 30 30\"><path d=\"M 14.892 21.405 L 16.506 21.405 C 17.657 21.405 18.588 20.576 18.588 19.425 C 18.588 18.466 17.941 17.701 17.012 17.468 C 15.682 17.135 14.357 16.873 12.97 16.907 C 10.773 16.96 9.235 18.185 7.493 19.35 M 14.893 21.441 C 15.709 21.322 16.54 21.442 17.364 21.423 C 19.275 21.378 20.773 19.761 22.228 18.667 C 22.971 18.106 24.012 18.18 24.669 18.841 C 25.398 19.573 25.398 20.76 24.669 21.492 C 23.099 23.07 21.71 24.534 19.58 25.362 C 16.625 26.511 13.882 25.953 10.889 25.362 C 9.732 25.132 8.665 25.118 7.493 25.118 M 4.785 26.249 L 5.995 26.249 C 6.92 26.249 7.494 25.597 7.494 24.674 L 7.494 19.27 C 7.494 18.347 6.92 17.695 5.995 17.695 L 4.785 17.695 M 24.034 13.698 L 24.034 10.859 C 24.034 10.231 23.792 9.629 23.358 9.177 L 18.865 4.497 C 18.407 4.02 17.774 3.75 17.113 3.75 L 10.418 3.75 C 8 3.74 6.02 5.667 5.962 8.083 L 5.962 13.698 M 17.688 3.823 L 17.688 7.25 C 17.688 8.924 19.042 10.281 20.714 10.285 L 23.96 10.285\" fill=\"transparent\" stroke-width=\"1.88\" stroke=\"var(--token-1f03548c-c87a-42c1-a694-8d4154993650, rgb(255, 106, 0)) /* {&quot;name&quot;:&quot;brand-500&quot;} */\" stroke-linecap=\"round\" stroke-linejoin=\"round\"></path></svg>',svgContentId:12390251224,withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v5\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{style:{\"--font-selector\":\"R0Y7RXhvIDItNjAw\",\"--framer-font-family\":'\"Exo 2\", \"Exo 2 Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"140%\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-40ea63ae-aa2d-48d8-b08a-e2be836def53, rgb(13, 13, 13))\"},children:\"Procure To Pay\"})}),className:\"framer-wwo8fj\",\"data-framer-name\":\"Porosteme s v\\xe1mi\",fonts:[\"GF;Exo 2-600\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1yqm5aj\",\"data-framer-name\":\"text\",children:/*#__PURE__*/_jsx(RichTextDefault1tmbwqd,{__fromCanvasComponent:true,children:getLocalizedValue(\"v6\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TnVuaXRvLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Nunito\", \"Nunito Placeholder\", sans-serif',\"--framer-line-height\":\"1.6em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-2975fec0-82db-4338-b6f5-e7cfb3da3711, rgb(57, 68, 84))\"},children:\"Cash flow under control! From purchase request to invoice payment \u2013 everything is digital, fast, and without unnecessary paperwork.\"})}),className:\"framer-tmbwqd\",\"data-framer-name\":\"Do nekone\u010Dna a je\u0161t\u011B d\\xe1l! Syst\\xe9m jednodu\u0161e roz\u0161\\xed\u0159\\xedte o dal\u0161\\xed moduly dle pot\u0159eby.\",fonts:[\"GF;Nunito-regular\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"SaQC6YEyB\"},implicitPathVariables:undefined},{href:{webPageId:\"SaQC6YEyB\"},implicitPathVariables:undefined},{href:{webPageId:\"SaQC6YEyB\"},implicitPathVariables:undefined}],children:resolvedLinks1=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{bHuTJ9VI9:{width:`min(min(min(${componentViewport?.width||\"100vw\"}, 1440px) - 64px, 1440px) - 48px, 300px)`,y:(componentViewport?.y||0)+0+0+64+494+32+68.4+0+0+0+0+24+288},ql6Pes_i4:{width:`min(max((min(min(${componentViewport?.width||\"100vw\"}, 1440px) - 64px, 1440px) - 48px) / 3, 1px) - 48px, 300px)`,y:(componentViewport?.y||0)+0+0+64+744+64+103+0+0+0+24+288}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:44,width:`min(max((min(min(${componentViewport?.width||\"100vw\"}, 1440px) - 128px, 1440px) - 48px) / 3, 1px) - 48px, 300px)`,y:(componentViewport?.y||0)+0+0+64+694+64+110.8+0+0+0+24+288,children:/*#__PURE__*/_jsx(Container,{className:\"framer-b53btn-container\",isModuleExternal:true,nodeId:\"FKcD3a49b\",scopeId:\"UFKt7pA8b\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{bHuTJ9VI9:{OcF7PQ4XJ:resolvedLinks1[2]},ql6Pes_i4:{OcF7PQ4XJ:resolvedLinks1[1]}},children:/*#__PURE__*/_jsx(ComponentsButtonPrimary1,{EWIZ7KLXL:getLocalizedValue(\"v7\",activeLocale)??\"Open product\",height:\"100%\",id:\"FKcD3a49b\",layoutId:\"FKcD3a49b\",OcF7PQ4XJ:resolvedLinks1[0],style:{height:\"100%\",maxWidth:\"100%\",width:\"100%\"},variant:\"TZMrOtqs9\",width:\"100%\"})})})})})})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{bHuTJ9VI9:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+64+494+32+68.4+0+0+0),pixelHeight:525,pixelWidth:900,positionX:\"center\",positionY:\"top\",sizes:`calc(min(min(${componentViewport?.width||\"100vw\"}, 1440px) - 64px, 1440px) + 0.6594px)`,src:\"https://framerusercontent.com/images/wCBg4i7QTD5f1m7VmVYRhLqQ.jpg\",srcSet:\"https://framerusercontent.com/images/wCBg4i7QTD5f1m7VmVYRhLqQ.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/wCBg4i7QTD5f1m7VmVYRhLqQ.jpg 900w\"}},ql6Pes_i4:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+64+744+64+103+0+0),pixelHeight:525,pixelWidth:900,positionX:\"center\",positionY:\"top\",sizes:`calc(max((min(min(${componentViewport?.width||\"100vw\"}, 1440px) - 64px, 1440px) - 48px) / 3, 1px) + 0.6594px)`,src:\"https://framerusercontent.com/images/wCBg4i7QTD5f1m7VmVYRhLqQ.jpg\",srcSet:\"https://framerusercontent.com/images/wCBg4i7QTD5f1m7VmVYRhLqQ.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/wCBg4i7QTD5f1m7VmVYRhLqQ.jpg 900w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+64+694+64+110.8+0+0),pixelHeight:525,pixelWidth:900,positionX:\"center\",positionY:\"top\",sizes:`calc(max((min(min(${componentViewport?.width||\"100vw\"}, 1440px) - 128px, 1440px) - 48px) / 3, 1px) + 0.6594px)`,src:\"https://framerusercontent.com/images/wCBg4i7QTD5f1m7VmVYRhLqQ.jpg\",srcSet:\"https://framerusercontent.com/images/wCBg4i7QTD5f1m7VmVYRhLqQ.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/wCBg4i7QTD5f1m7VmVYRhLqQ.jpg 900w\"},className:\"framer-91q90c\"})})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-109k8qv\",\"data-framer-name\":\"section-info\",whileHover:animation,children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1swq43o\",\"data-framer-name\":\"content\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-xe0dyl\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-1ejq7bs\",\"data-framer-name\":\"Building office\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 30 30\"><path d=\"M 23.37 24.997 L 23.37 7.407 C 23.37 6.076 22.24 4.998 20.848 4.998 L 9.154 4.998 C 7.762 4.998 6.632 6.076 6.632 7.407 L 6.632 24.997 M 17.001 10.411 L 18.207 10.411 M 11.792 10.411 L 12.998 10.411 M 17.001 14.383 L 18.207 14.383 M 11.792 14.383 L 12.998 14.383 M 12.282 24.998 L 12.282 20.42 C 12.282 19.753 12.84 19.209 13.538 19.209 L 16.47 19.209 C 17.157 19.209 17.727 19.753 17.727 20.42 L 17.727 24.998 M 5 24.995 L 25 24.995\" fill=\"transparent\" stroke-width=\"1.88\" stroke=\"var(--token-1f03548c-c87a-42c1-a694-8d4154993650, rgb(255, 106, 0)) /* {&quot;name&quot;:&quot;brand-500&quot;} */\" stroke-linecap=\"round\" stroke-linejoin=\"round\"></path></svg>',svgContentId:11894541969,withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v8\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{style:{\"--font-selector\":\"R0Y7RXhvIDItNjAw\",\"--framer-font-family\":'\"Exo 2\", \"Exo 2 Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"140%\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-40ea63ae-aa2d-48d8-b08a-e2be836def53, rgb(13, 13, 13))\"},children:\"CAFM\"})}),className:\"framer-2x289z\",\"data-framer-name\":\"Porosteme s v\\xe1mi\",fonts:[\"GF;Exo 2-600\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1stddtf\",\"data-framer-name\":\"text\",children:/*#__PURE__*/_jsx(RichTextDefault11oitr9t,{__fromCanvasComponent:true,children:getLocalizedValue(\"v9\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TnVuaXRvLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Nunito\", \"Nunito Placeholder\", sans-serif',\"--framer-line-height\":\"1.6em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-2975fec0-82db-4338-b6f5-e7cfb3da3711, rgb(57, 68, 84))\"},children:\"Keep the status of buildings, equipment, and their maintenance in one place \u2013 clearly and without worries.\"})}),className:\"framer-1oitr9t\",\"data-framer-name\":\"Do nekone\u010Dna a je\u0161t\u011B d\\xe1l! Syst\\xe9m jednodu\u0161e roz\u0161\\xed\u0159\\xedte o dal\u0161\\xed moduly dle pot\u0159eby.\",fonts:[\"GF;Nunito-regular\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"ejWzd6TNQ\"},implicitPathVariables:undefined},{href:{webPageId:\"ejWzd6TNQ\"},implicitPathVariables:undefined},{href:{webPageId:\"ejWzd6TNQ\"},implicitPathVariables:undefined}],children:resolvedLinks2=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{bHuTJ9VI9:{width:`min(min(min(${componentViewport?.width||\"100vw\"}, 1440px) - 64px, 1440px) - 48px, 300px)`,y:(componentViewport?.y||0)+0+0+64+494+32+68.4+0+404+0+0+24+288},ql6Pes_i4:{width:`min(max((min(min(${componentViewport?.width||\"100vw\"}, 1440px) - 64px, 1440px) - 48px) / 3, 1px) - 48px, 300px)`,y:(componentViewport?.y||0)+0+0+64+744+64+103+0+0+0+24+288}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:44,width:`min(max((min(min(${componentViewport?.width||\"100vw\"}, 1440px) - 128px, 1440px) - 48px) / 3, 1px) - 48px, 300px)`,y:(componentViewport?.y||0)+0+0+64+694+64+110.8+0+0+0+24+288,children:/*#__PURE__*/_jsx(Container,{className:\"framer-bx6kb1-container\",isModuleExternal:true,nodeId:\"MY3pw92ae\",scopeId:\"UFKt7pA8b\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{bHuTJ9VI9:{OcF7PQ4XJ:resolvedLinks2[2]},ql6Pes_i4:{OcF7PQ4XJ:resolvedLinks2[1]}},children:/*#__PURE__*/_jsx(ComponentsButtonPrimary1,{EWIZ7KLXL:getLocalizedValue(\"v7\",activeLocale)??\"Open product\",height:\"100%\",id:\"MY3pw92ae\",layoutId:\"MY3pw92ae\",OcF7PQ4XJ:resolvedLinks2[0],style:{height:\"100%\",maxWidth:\"100%\",width:\"100%\"},variant:\"TZMrOtqs9\",width:\"100%\"})})})})})})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{bHuTJ9VI9:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+64+494+32+68.4+0+404+0),pixelHeight:525,pixelWidth:900,positionX:\"center\",positionY:\"top\",sizes:`calc(min(min(${componentViewport?.width||\"100vw\"}, 1440px) - 64px, 1440px) + 0.6592px)`,src:\"https://framerusercontent.com/images/cJgqyMDIbO2wFhW0JSai2kaZIDo.jpg\",srcSet:\"https://framerusercontent.com/images/cJgqyMDIbO2wFhW0JSai2kaZIDo.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/cJgqyMDIbO2wFhW0JSai2kaZIDo.jpg 900w\"}},ql6Pes_i4:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+64+744+64+103+0+0),pixelHeight:525,pixelWidth:900,positionX:\"center\",positionY:\"top\",sizes:`calc(max((min(min(${componentViewport?.width||\"100vw\"}, 1440px) - 64px, 1440px) - 48px) / 3, 1px) + 0.6592px)`,src:\"https://framerusercontent.com/images/cJgqyMDIbO2wFhW0JSai2kaZIDo.jpg\",srcSet:\"https://framerusercontent.com/images/cJgqyMDIbO2wFhW0JSai2kaZIDo.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/cJgqyMDIbO2wFhW0JSai2kaZIDo.jpg 900w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+64+694+64+110.8+0+0),pixelHeight:525,pixelWidth:900,positionX:\"center\",positionY:\"top\",sizes:`calc(max((min(min(${componentViewport?.width||\"100vw\"}, 1440px) - 128px, 1440px) - 48px) / 3, 1px) + 0.6592px)`,src:\"https://framerusercontent.com/images/cJgqyMDIbO2wFhW0JSai2kaZIDo.jpg\",srcSet:\"https://framerusercontent.com/images/cJgqyMDIbO2wFhW0JSai2kaZIDo.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/cJgqyMDIbO2wFhW0JSai2kaZIDo.jpg 900w\"},className:\"framer-jg3764\"})})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-sq8kf5\",\"data-framer-name\":\"section-info\",whileHover:animation,children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-12ibl62\",\"data-framer-name\":\"content\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-dxsx0l\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-91rsgm\",\"data-framer-name\":\"Server tree\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 30 30\"><path d=\"M 6.228 20.865 C 7.596 20.865 8.705 21.975 8.705 23.343 C 8.705 24.711 7.596 25.82 6.227 25.82 C 4.859 25.82 3.75 24.711 3.75 23.343 C 3.75 21.975 4.859 20.865 6.228 20.865 Z M 6.228 20.865 L 6.228 18.359 C 6.228 16.975 7.351 15.852 8.735 15.852 L 21.267 15.852 C 22.651 15.852 23.773 16.975 23.773 18.359 L 23.773 20.865 M 15 20.867 C 16.368 20.867 17.477 21.975 17.477 23.343 C 17.477 24.712 16.368 25.821 14.999 25.821 C 13.631 25.821 12.522 24.712 12.522 23.343 C 12.522 21.975 13.631 20.867 15 20.867 Z M 15 20.867 L 15 10.488 M 21.294 23.343 C 21.294 24.711 22.403 25.82 23.771 25.82 C 25.14 25.82 26.249 24.711 26.249 23.343 C 26.249 21.975 25.14 20.865 23.772 20.865 C 22.404 20.865 21.294 21.975 21.294 23.343 Z M 20.955 10.487 L 9.382 10.487 C 7.64 10.487 6.228 9.075 6.228 7.333 C 6.228 5.592 7.64 4.18 9.382 4.18 L 20.955 4.18 C 22.697 4.18 24.109 5.592 24.109 7.333 C 24.109 9.075 22.697 10.487 20.955 10.487 Z\" fill=\"transparent\" stroke-width=\"1.87\" stroke=\"var(--token-1f03548c-c87a-42c1-a694-8d4154993650, rgb(255, 106, 0)) /* {&quot;name&quot;:&quot;brand-500&quot;} */\" stroke-linecap=\"round\" stroke-linejoin=\"round\"></path></svg>',svgContentId:10709396540,withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v10\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{style:{\"--font-selector\":\"R0Y7RXhvIDItNjAw\",\"--framer-font-family\":'\"Exo 2\", \"Exo 2 Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"140%\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-40ea63ae-aa2d-48d8-b08a-e2be836def53, rgb(13, 13, 13))\"},children:\"ERP from INSIO\"})}),className:\"framer-1x9vlli\",\"data-framer-name\":\"Porosteme s v\\xe1mi\",fonts:[\"GF;Exo 2-600\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1899j71\",\"data-framer-name\":\"text\",children:/*#__PURE__*/_jsx(RichTextDefault1dse89h,{__fromCanvasComponent:true,children:getLocalizedValue(\"v11\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TnVuaXRvLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Nunito\", \"Nunito Placeholder\", sans-serif',\"--framer-line-height\":\"1.6em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-2975fec0-82db-4338-b6f5-e7cfb3da3711, rgb(57, 68, 84))\"},children:\"The whole company in one place. Manage finances, assets, and HR from one application \u2013 efficiently and without chaos.\"})}),className:\"framer-dse89h\",\"data-framer-name\":\"Do nekone\u010Dna a je\u0161t\u011B d\\xe1l! Syst\\xe9m jednodu\u0161e roz\u0161\\xed\u0159\\xedte o dal\u0161\\xed moduly dle pot\u0159eby.\",fonts:[\"GF;Nunito-regular\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"Et6USfWly\"},implicitPathVariables:undefined},{href:{webPageId:\"Et6USfWly\"},implicitPathVariables:undefined},{href:{webPageId:\"Et6USfWly\"},implicitPathVariables:undefined}],children:resolvedLinks3=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{bHuTJ9VI9:{width:`min(min(min(${componentViewport?.width||\"100vw\"}, 1440px) - 64px, 1440px) - 48px, 300px)`,y:(componentViewport?.y||0)+0+0+64+494+32+68.4+0+808+0+0+24+288},ql6Pes_i4:{width:`min(max((min(min(${componentViewport?.width||\"100vw\"}, 1440px) - 64px, 1440px) - 48px) / 3, 1px) - 48px, 300px)`,y:(componentViewport?.y||0)+0+0+64+744+64+103+0+0+0+24+288}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:44,width:`min(max((min(min(${componentViewport?.width||\"100vw\"}, 1440px) - 128px, 1440px) - 48px) / 3, 1px) - 48px, 300px)`,y:(componentViewport?.y||0)+0+0+64+694+64+110.8+0+0+0+24+288,children:/*#__PURE__*/_jsx(Container,{className:\"framer-6fwlaf-container\",isModuleExternal:true,nodeId:\"a5iofOrR2\",scopeId:\"UFKt7pA8b\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{bHuTJ9VI9:{OcF7PQ4XJ:resolvedLinks3[2]},ql6Pes_i4:{OcF7PQ4XJ:resolvedLinks3[1]}},children:/*#__PURE__*/_jsx(ComponentsButtonPrimary1,{EWIZ7KLXL:getLocalizedValue(\"v7\",activeLocale)??\"Open product\",height:\"100%\",id:\"a5iofOrR2\",layoutId:\"a5iofOrR2\",OcF7PQ4XJ:resolvedLinks3[0],style:{height:\"100%\",maxWidth:\"100%\",width:\"100%\"},variant:\"TZMrOtqs9\",width:\"100%\"})})})})})})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{bHuTJ9VI9:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+64+494+32+68.4+0+808+0),pixelHeight:525,pixelWidth:900,positionX:\"center\",positionY:\"top\",sizes:`calc(min(min(${componentViewport?.width||\"100vw\"}, 1440px) - 64px, 1440px) + 0.6594px)`,src:\"https://framerusercontent.com/images/CzcX9qa9FEuXxUQPDiFQx0kHs.jpg\",srcSet:\"https://framerusercontent.com/images/CzcX9qa9FEuXxUQPDiFQx0kHs.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/CzcX9qa9FEuXxUQPDiFQx0kHs.jpg 900w\"}},ql6Pes_i4:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+64+744+64+103+0+0),pixelHeight:525,pixelWidth:900,positionX:\"center\",positionY:\"top\",sizes:`calc(max((min(min(${componentViewport?.width||\"100vw\"}, 1440px) - 64px, 1440px) - 48px) / 3, 1px) + 0.6594px)`,src:\"https://framerusercontent.com/images/CzcX9qa9FEuXxUQPDiFQx0kHs.jpg\",srcSet:\"https://framerusercontent.com/images/CzcX9qa9FEuXxUQPDiFQx0kHs.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/CzcX9qa9FEuXxUQPDiFQx0kHs.jpg 900w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+64+694+64+110.8+0+0),pixelHeight:525,pixelWidth:900,positionX:\"center\",positionY:\"top\",sizes:`calc(max((min(min(${componentViewport?.width||\"100vw\"}, 1440px) - 128px, 1440px) - 48px) / 3, 1px) + 0.6594px)`,src:\"https://framerusercontent.com/images/CzcX9qa9FEuXxUQPDiFQx0kHs.jpg\",srcSet:\"https://framerusercontent.com/images/CzcX9qa9FEuXxUQPDiFQx0kHs.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/CzcX9qa9FEuXxUQPDiFQx0kHs.jpg 900w\"},className:\"framer-1tgvcp2\"})})]})]})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{bHuTJ9VI9:{y:(componentViewport?.y||0)+0+0+64+1846.4},ql6Pes_i4:{y:(componentViewport?.y||0)+0+0+64+1355}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:327,width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+0+64+1312.8,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1xry5yv-container\",id:elementId1,nodeId:\"ZWArLXkxL\",ref:ref2,scopeId:\"UFKt7pA8b\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{bHuTJ9VI9:{variant:\"yj8HmSfpc\"},ql6Pes_i4:{variant:\"Aa6jfr_J_\"}},children:/*#__PURE__*/_jsx(ComponentsQuotes,{height:\"100%\",id:\"ZWArLXkxL\",layoutId:\"ZWArLXkxL\",style:{width:\"100%\"},variant:\"wDDX1d9nC\",width:\"100%\"})})})})})]})]}),/*#__PURE__*/_jsx(\"div\",{id:\"overlay\"})]})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-mluSW.framer-2uwj9n, .framer-mluSW .framer-2uwj9n { display: block; }\",\".framer-mluSW.framer-lilsm { align-content: center; align-items: center; background-color: var(--token-2ddc8810-663c-4e1a-85c0-d126012aac59, #f3f5fb); 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-mluSW .framer-y2ukbm-container { aspect-ratio: 1 / 1; bottom: 20px; flex: none; height: var(--framer-aspect-ratio-supported, 50px); position: fixed; right: 20px; width: 50px; z-index: 10; }\",\".framer-mluSW .framer-1q0t43k { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 64px 0px 0px 0px; position: relative; width: 100%; }\",\".framer-mluSW .framer-1tm2azq { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: 50px; justify-content: flex-start; max-width: 1440px; overflow: hidden; padding: 0px 20px 0px 20px; position: relative; width: 100%; }\",\".framer-mluSW .framer-i69qg3 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-mluSW .framer-rcmom1-container, .framer-mluSW .framer-ju7ezl-container { flex: none; height: 16px; position: relative; width: 16px; }\",\".framer-mluSW .framer-11pzebi, .framer-mluSW .framer-e36mwk { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-mluSW .framer-1fc84ua-container { flex: none; height: 600px; position: relative; width: 100%; }\",\".framer-mluSW .framer-1ca9idt { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-mluSW .framer-1y5af0k-container { flex: none; height: 44px; position: relative; width: auto; }\",\".framer-mluSW .framer-1re96fm { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 64px; height: min-content; justify-content: flex-start; max-width: 1440px; overflow: visible; padding: 64px; position: relative; width: 100%; }\",\".framer-mluSW .framer-1kzv6qq, .framer-mluSW .framer-tmbwqd, .framer-mluSW .framer-1oitr9t, .framer-mluSW .framer-dse89h { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-mluSW .framer-1tlwpvh { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: center; max-width: 1440px; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-mluSW .framer-1jzmic9, .framer-mluSW .framer-109k8qv, .framer-mluSW .framer-sq8kf5 { align-content: flex-start; align-items: flex-start; border-bottom-left-radius: 24px; border-bottom-right-radius: 24px; border-top-left-radius: 24px; border-top-right-radius: 24px; box-shadow: 0px 25px 25px 0px rgba(193, 200, 217, 0.1); display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: 380px; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 1px; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-mluSW .framer-168k3a0, .framer-mluSW .framer-1swq43o, .framer-mluSW .framer-12ibl62 { align-content: center; align-items: center; background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgb(255, 255, 255) 50%); display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: 1px; justify-content: flex-end; overflow: hidden; padding: 24px; position: relative; width: 100%; z-index: 1; }\",\".framer-mluSW .framer-b9ec9i, .framer-mluSW .framer-xe0dyl, .framer-mluSW .framer-dxsx0l { 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: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-mluSW .framer-kelnvs, .framer-mluSW .framer-1ejq7bs, .framer-mluSW .framer-91rsgm { flex: none; height: 30px; position: relative; width: 30px; }\",\".framer-mluSW .framer-wwo8fj, .framer-mluSW .framer-2x289z, .framer-mluSW .framer-1x9vlli { flex: 1 0 0px; height: auto; position: relative; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; }\",\".framer-mluSW .framer-1yqm5aj, .framer-mluSW .framer-1stddtf, .framer-mluSW .framer-1899j71 { 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: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-mluSW .framer-b53btn-container, .framer-mluSW .framer-bx6kb1-container, .framer-mluSW .framer-6fwlaf-container { flex: none; height: 44px; max-width: 300px; position: relative; width: 100%; }\",\".framer-mluSW .framer-91q90c { bottom: 190px; flex: none; left: 0px; overflow: hidden; position: absolute; right: 0px; top: 0px; z-index: 0; }\",\".framer-mluSW .framer-jg3764, .framer-mluSW .framer-1tgvcp2 { bottom: 190px; flex: none; left: 0px; overflow: hidden; position: absolute; right: -1px; top: 0px; z-index: 0; }\",\".framer-mluSW .framer-1xry5yv-container { flex: none; height: auto; position: relative; width: 100%; }\",\"@supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-mluSW.framer-lilsm, .framer-mluSW .framer-1q0t43k, .framer-mluSW .framer-1tm2azq, .framer-mluSW .framer-i69qg3, .framer-mluSW .framer-1ca9idt, .framer-mluSW .framer-1re96fm, .framer-mluSW .framer-1tlwpvh, .framer-mluSW .framer-1jzmic9, .framer-mluSW .framer-168k3a0, .framer-mluSW .framer-b9ec9i, .framer-mluSW .framer-1yqm5aj, .framer-mluSW .framer-109k8qv, .framer-mluSW .framer-1swq43o, .framer-mluSW .framer-xe0dyl, .framer-mluSW .framer-1stddtf, .framer-mluSW .framer-sq8kf5, .framer-mluSW .framer-12ibl62, .framer-mluSW .framer-dxsx0l, .framer-mluSW .framer-1899j71 { gap: 0px; } .framer-mluSW.framer-lilsm > *, .framer-mluSW .framer-1q0t43k > *, .framer-mluSW .framer-1jzmic9 > *, .framer-mluSW .framer-109k8qv > *, .framer-mluSW .framer-sq8kf5 > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-mluSW.framer-lilsm > :first-child, .framer-mluSW .framer-1q0t43k > :first-child, .framer-mluSW .framer-1re96fm > :first-child, .framer-mluSW .framer-1jzmic9 > :first-child, .framer-mluSW .framer-168k3a0 > :first-child, .framer-mluSW .framer-1yqm5aj > :first-child, .framer-mluSW .framer-109k8qv > :first-child, .framer-mluSW .framer-1swq43o > :first-child, .framer-mluSW .framer-1stddtf > :first-child, .framer-mluSW .framer-sq8kf5 > :first-child, .framer-mluSW .framer-12ibl62 > :first-child, .framer-mluSW .framer-1899j71 > :first-child { margin-top: 0px; } .framer-mluSW.framer-lilsm > :last-child, .framer-mluSW .framer-1q0t43k > :last-child, .framer-mluSW .framer-1re96fm > :last-child, .framer-mluSW .framer-1jzmic9 > :last-child, .framer-mluSW .framer-168k3a0 > :last-child, .framer-mluSW .framer-1yqm5aj > :last-child, .framer-mluSW .framer-109k8qv > :last-child, .framer-mluSW .framer-1swq43o > :last-child, .framer-mluSW .framer-1stddtf > :last-child, .framer-mluSW .framer-sq8kf5 > :last-child, .framer-mluSW .framer-12ibl62 > :last-child, .framer-mluSW .framer-1899j71 > :last-child { margin-bottom: 0px; } .framer-mluSW .framer-1tm2azq > *, .framer-mluSW .framer-1ca9idt > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } .framer-mluSW .framer-1tm2azq > :first-child, .framer-mluSW .framer-i69qg3 > :first-child, .framer-mluSW .framer-1ca9idt > :first-child, .framer-mluSW .framer-1tlwpvh > :first-child, .framer-mluSW .framer-b9ec9i > :first-child, .framer-mluSW .framer-xe0dyl > :first-child, .framer-mluSW .framer-dxsx0l > :first-child { margin-left: 0px; } .framer-mluSW .framer-1tm2azq > :last-child, .framer-mluSW .framer-i69qg3 > :last-child, .framer-mluSW .framer-1ca9idt > :last-child, .framer-mluSW .framer-1tlwpvh > :last-child, .framer-mluSW .framer-b9ec9i > :last-child, .framer-mluSW .framer-xe0dyl > :last-child, .framer-mluSW .framer-dxsx0l > :last-child { margin-right: 0px; } .framer-mluSW .framer-i69qg3 > *, .framer-mluSW .framer-b9ec9i > *, .framer-mluSW .framer-xe0dyl > *, .framer-mluSW .framer-dxsx0l > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-mluSW .framer-1re96fm > * { margin: 0px; margin-bottom: calc(64px / 2); margin-top: calc(64px / 2); } .framer-mluSW .framer-1tlwpvh > * { margin: 0px; margin-left: calc(24px / 2); margin-right: calc(24px / 2); } .framer-mluSW .framer-168k3a0 > *, .framer-mluSW .framer-1yqm5aj > *, .framer-mluSW .framer-1swq43o > *, .framer-mluSW .framer-1stddtf > *, .framer-mluSW .framer-12ibl62 > *, .framer-mluSW .framer-1899j71 > * { margin: 0px; margin-bottom: calc(16px / 2); margin-top: calc(16px / 2); } }\",...sharedStyle.css,...sharedStyle1.css,\"@media (min-width: 810px) and (max-width: 1199px) { .framer-mluSW.framer-lilsm { width: 810px; } .framer-mluSW .framer-1fc84ua-container { height: 650px; } .framer-mluSW .framer-1re96fm { padding: 64px 32px 64px 32px; }}\",\"@media (max-width: 809px) { .framer-mluSW.framer-lilsm { width: 390px; } .framer-mluSW .framer-1fc84ua-container { height: 400px; } .framer-mluSW .framer-1re96fm { align-content: center; align-items: center; gap: 32px; justify-content: center; padding: 32px 32px 64px 32px; } .framer-mluSW .framer-1kzv6qq { max-width: 400px; order: 0; } .framer-mluSW .framer-1tlwpvh { flex-direction: column; order: 1; } .framer-mluSW .framer-1jzmic9, .framer-mluSW .framer-109k8qv, .framer-mluSW .framer-sq8kf5 { flex: none; width: 100%; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-mluSW .framer-1re96fm, .framer-mluSW .framer-1tlwpvh { gap: 0px; } .framer-mluSW .framer-1re96fm > * { margin: 0px; margin-bottom: calc(32px / 2); margin-top: calc(32px / 2); } .framer-mluSW .framer-1re96fm > :first-child, .framer-mluSW .framer-1tlwpvh > :first-child { margin-top: 0px; } .framer-mluSW .framer-1re96fm > :last-child, .framer-mluSW .framer-1tlwpvh > :last-child { margin-bottom: 0px; } .framer-mluSW .framer-1tlwpvh > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } }}\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 2382\n * @framerIntrinsicWidth 1200\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"ql6Pes_i4\":{\"layout\":[\"fixed\",\"auto\"]},\"bHuTJ9VI9\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n * @framerAcceptsLayoutTemplate true\n * @framerScrollSections {\"H240CnwEp\":{\"pattern\":\":H240CnwEp\",\"name\":\"products\"},\"ZWArLXkxL\":{\"pattern\":\":ZWArLXkxL\",\"name\":\"quotes\"}}\n * @framerResponsiveScreen\n */const FramerUFKt7pA8b=withCSS(Component,css,\"framer-mluSW\");export default FramerUFKt7pA8b;FramerUFKt7pA8b.displayName=\"404\";FramerUFKt7pA8b.defaultProps={height:2382,width:1200};addFonts(FramerUFKt7pA8b,[{explicitInter:true,fonts:[{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/5vvr9Vy74if2I6bQbJvbw7SY1pQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/EOr0mi4hNtlgWNn9if640EZzXCo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Y9k9QrlZAqio88Klkmbd8VoMQc.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/OYrD2tBIBPvoJXiIHnLoOXnY9M.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/JeYwfuaPfZHQhEG8U5gtPDZ7WQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/vQyevYAyHtARFwPqUzQGpnDs.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/b6Y37FthZeALduNqHicBT6FutY.woff2\",weight:\"400\"},{family:\"Exo 2\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/exo2/v24/7cH1v4okm5zmbvwkAx_sfcEuiD8jYPWcO9q-rpvLpQ.woff2\",weight:\"600\"},{family:\"Nunito\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/nunito/v26/XRXI3I6Li01BKofiOc5wtlZ2di8HDLshRTY9jo7eTWk.woff2\",weight:\"400\"}]},...IntercomFonts,...HeroFonts,...EmbedFonts,...ComponentsButtonPrimaryFonts,...ComponentsButtonPrimary1Fonts,...ComponentsQuotesFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerUFKt7pA8b\",\"slots\":[],\"annotations\":{\"framerResponsiveScreen\":\"\",\"framerScrollSections\":\"{\\\"H240CnwEp\\\":{\\\"pattern\\\":\\\":H240CnwEp\\\",\\\"name\\\":\\\"products\\\"},\\\"ZWArLXkxL\\\":{\\\"pattern\\\":\\\":ZWArLXkxL\\\",\\\"name\\\":\\\"quotes\\\"}}\",\"framerContractVersion\":\"1\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"ql6Pes_i4\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"bHuTJ9VI9\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerImmutableVariables\":\"true\",\"framerIntrinsicHeight\":\"2382\",\"framerIntrinsicWidth\":\"1200\",\"framerDisplayContentsDiv\":\"false\",\"framerAcceptsLayoutTemplate\":\"true\",\"framerComponentViewportWidth\":\"true\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}"],
  "mappings": "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",
  "names": ["Embed", "type", "url", "html", "style", "p", "EmbedUrl", "EmbedHtml", "Instructions", "addPropertyControls", "ControlType", "props", "getMinHeight", "emptyStateStyle", "centerTextStyle", "hasAutoHeight", "onCanvas", "useIsOnCanvas", "state", "setState", "ye", "ue", "isLastEffect", "load", "response", "isBlocked", "message", "error", "ErrorMessage", "LoadingIndicator", "iframeStyle", "getSandbox", "result", "hasSplineViewer", "hasComment", "EmbedHtmlWithScripts", "EmbedHtmlInsideIframe", "EmbedHtmlWithoutScripts", "ref", "pe", "iframeHeight", "setIframeHeight", "_ref_current", "iframeWindow", "handleMessage", "event", "data", "height", "window", "srcDoc", "currentStyle", "div", "executeScripts", "htmlStyle", "node", "script", "name", "value", "child", "containerStyles", "valuesByLocaleId", "LazyValue", "getLocalizedValue", "key", "locale", "values", "value", "preload", "promises", "promise", "usePreloadLocalizedValues", "preloadPromise", "IntercomFonts", "getFonts", "Intercom", "HeroFonts", "Icon", "EmbedFonts", "Embed", "ComponentsButtonPrimaryFonts", "h5OvShzF3_default", "RichTextDefault1tmbwqd", "withCodeBoundaryForOverrides", "RichText2", "withLineTruncate", "ComponentsButtonPrimary1Fonts", "RichTextDefault11oitr9t", "RichTextDefault1dse89h", "ComponentsQuotesFonts", "JMPSBWeXb_default", "breakpoints", "serializationHash", "variantClassNames", "transition1", "animation", "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", "baseVariant", "hydratedBaseVariant", "useHydratedBreakpointVariants", "breakpoints", "gestureVariant", "scopingClassNames", "cx", "usePreloadLocalizedValues", "router", "useRouter", "elementId", "useRouteElementId", "ref1", "elementId1", "ref2", "useCustomCursors", "GeneratedComponentContext", "u", "LayoutGroup", "motion", "ComponentViewportProvider", "Container", "Intercom", "Icon", "RichText2", "getLocalizedValue", "x", "Link", "Embed", "ResolveLinks", "resolvedLinks", "PropertyOverrides2", "h5OvShzF3_default", "SVG", "RichTextDefault1tmbwqd", "resolvedLinks1", "getLoadingLazyAtYPosition", "Image2", "RichTextDefault11oitr9t", "resolvedLinks2", "RichTextDefault1dse89h", "resolvedLinks3", "JMPSBWeXb_default", "css", "FramerUFKt7pA8b", "withCSS", "UFKt7pA8b_default", "addFonts", "IntercomFonts", "HeroFonts", "EmbedFonts", "ComponentsButtonPrimaryFonts", "ComponentsButtonPrimary1Fonts", "ComponentsQuotesFonts", "getFontsFromSharedStyle", "fonts", "__FramerMetadata__"]
}
