{
  "version": 3,
  "sources": ["ssg:https://ga.jspm.io/npm:react-dom@18.2.0/client.js", "ssg:https://framerusercontent.com/modules/Yppqt3Cs3Y8TZqvASnXl/PGrowqBrgWCViHduGfsA/SmoothScroll_Prod.js", "ssg:https://framerusercontent.com/modules/oUhW0K4t6i43KUlTTAvk/Iqwj9WIjdbtkWe3y512C/heKyzYayd.js", "ssg:https://framerusercontent.com/modules/jlcrHOqSFob36FeDwSOE/id5WEUOy5iQo6NBJQWQe/QHEirBxhV.js", "ssg:https://framerusercontent.com/modules/e3x7r7jvYpMgNtCpYUV0/Jbw2n9ldU0fInDQYGibl/FBO9CnB_6.js", "ssg:https://framerusercontent.com/modules/wO2FmyOabySK6itNFhd2/cQJlLlkMuzHUJdrHPf19/f3ZoosNUp.js", "framer:toplevel:framer:toplevel/main"],
  "sourcesContent": ["import*as t from\"react-dom\";var o=\"default\"in t?t.default:t;var a={};var e=o;a.createRoot=e.createRoot;a.hydrateRoot=e.hydrateRoot;const r=a.createRoot,d=a.hydrateRoot;export{r as createRoot,a as default,d as hydrateRoot};\n\n//# sourceMappingURL=client.js.map", "import{jsx as _jsx}from\"react/jsx-runtime\";import{addPropertyControls,ControlType,withCSS}from\"framer\";import Lenis from\"lenis\";import{useEffect,useRef}from\"react\";function SmoothScrollComponent(props){const{intensity}=props;const lenis=useRef(null);useEffect(()=>{if(lenis.current){try{lenis.current.scrollTo(0,{immediate:true});}catch(error){console.error(\"Error scrolling to top:\",error);}}},[lenis]);// Watch for stop scroll elements\nuseEffect(()=>{const checkForStopScroll=()=>{try{const stopScrollElement=document.querySelector(\"[data-frameruni-stop-scroll]\");const htmlElement=document.documentElement;const hasHiddenOverflow=htmlElement&&htmlElement.style&&htmlElement.style.overflow===\"hidden\";if(lenis.current){if(stopScrollElement||hasHiddenOverflow){lenis.current.stop();}else{lenis.current.start();}}}catch(error){console.error(\"Error in checkForStopScroll:\",error);}};// Initial check\ncheckForStopScroll();// Set up observers\nlet stopScrollObserver;let htmlStyleObserver;try{stopScrollObserver=new MutationObserver(checkForStopScroll);htmlStyleObserver=new MutationObserver(checkForStopScroll);// Observe document for data-frameruni-stop-scroll attribute\nif(document&&document.documentElement){stopScrollObserver.observe(document.documentElement,{childList:true,subtree:true,attributes:true,attributeFilter:[\"data-frameruni-stop-scroll\"]});// Observe only the HTML element for style changes\nhtmlStyleObserver.observe(document.documentElement,{attributes:true,attributeFilter:[\"style\"]});}}catch(error){console.error(\"Error setting up observers:\",error);}return()=>{try{if(stopScrollObserver)stopScrollObserver.disconnect();if(htmlStyleObserver)htmlStyleObserver.disconnect();}catch(error){console.error(\"Error disconnecting observers:\",error);}};},[]);useEffect(()=>{try{if(!document)return;const allElements=document.getElementsByTagName(\"*\");for(let i=0;i<allElements.length;i++){const element=allElements[i];if(!element)continue;try{const computedStyle=window.getComputedStyle(element);if(computedStyle&&computedStyle.getPropertyValue(\"overflow\")===\"auto\"){element.setAttribute(\"data-lenis-prevent\",\"true\");}}catch(styleError){console.error(\"Error getting computed style:\",styleError);}}}catch(error){console.error(\"Error in overflow detection:\",error);}},[]);useEffect(()=>{try{if(typeof Lenis!==\"function\"){console.error(\"Lenis is not available\");return;}lenis.current=new Lenis({duration:(intensity||10)/10});const raf=time=>{if(lenis.current){try{lenis.current.raf(time);requestAnimationFrame(raf);}catch(error){console.error(\"Error in animation frame:\",error);}}};const animationId=requestAnimationFrame(raf);return()=>{cancelAnimationFrame(animationId);if(lenis.current){try{lenis.current.destroy();lenis.current=null;}catch(error){console.error(\"Error destroying Lenis:\",error);}}};}catch(error){console.error(\"Error initializing Lenis:\",error);return()=>{};}},[intensity]);//https://github.com/darkroomengineering/lenis?tab=readme-ov-file#anchor-links\nuseEffect(()=>{try{if(!document||!lenis.current)return;// Get all anchor links and store click handlers with their targets\nconst anchorLinksData=Array.from(document.querySelectorAll(\"a[href]\")||[]).filter(element=>{if(!element)return false;const anchor=element;if(!anchor.href)return false;// Only handle internal anchor links\nconst isInternalLink=anchor.href.startsWith(window.location.origin)||anchor.href.startsWith(\"./\")||anchor.href.startsWith(\"/\");const hasHash=anchor.href.includes(\"#\");return isInternalLink&&hasHash;}).map(anchor=>{try{const anchorElement=anchor;const href=anchorElement.href.includes(\"#\")?`#${anchorElement.href.split(\"#\").pop()}`:\"\";const decodedHref=href?decodeURIComponent(href):\"\";let scrollMargin=0;try{if(decodedHref){const targetElement=document.querySelector(decodedHref);if(targetElement){const marginStyle=window.getComputedStyle(targetElement).scrollMarginTop;scrollMargin=marginStyle?parseInt(marginStyle)||0:0;}}}catch(targetError){console.error(\"Error finding target element:\",targetError);}return{href,scrollMargin,anchorElement:anchorElement};}catch(anchorError){console.error(\"Error processing anchor:\",anchorError);return null;}}).filter(Boolean);const handleClick=(e,href,scrollMargin)=>{try{if(e&&e.preventDefault)e.preventDefault();if(lenis.current&&href){lenis.current.scrollTo(href,{offset:-(scrollMargin||0)});}}catch(error){console.error(\"Error in anchor click handler:\",error);}};const handlers=anchorLinksData.map(({href,scrollMargin})=>e=>handleClick(e,href,scrollMargin));anchorLinksData.forEach(({anchorElement},index)=>{if(anchorElement&&handlers[index]){anchorElement.addEventListener(\"click\",handlers[index]);}});return()=>{anchorLinksData.forEach(({anchorElement},index)=>{if(anchorElement&&handlers[index]){anchorElement.removeEventListener(\"click\",handlers[index]);}});};}catch(error){console.error(\"Error setting up anchor links:\",error);return()=>{};}},[lenis]);return /*#__PURE__*/_jsx(\"div\",{style:props.style});}/**\n * @framerSupportedLayoutWidth auto\n * @framerSupportedLayoutHeight auto\n *\n * @framerDisableUnlink\n */const SmoothScroll=withCSS(SmoothScrollComponent,[\"html.lenis { height: auto; }\",\".lenis.lenis-smooth { scroll-behavior: auto !important; }\",\".lenis.lenis-smooth [data-lenis-prevent] { overscroll-behavior: contain; }\",\".lenis.lenis-stopped { overflow: hidden; }\",\".lenis.lenis-scrolling iframe { pointer-events: none; }\"],\"\");export default SmoothScroll;SmoothScroll.displayName=\"Smooth Scroll\";addPropertyControls(SmoothScroll,{intensity:{title:\"Intensity\",type:ControlType.Number,defaultValue:10,min:0,description:\"More components at [Framer University](https://frameruni.link/cc).\"}});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"SmoothScroll\",\"slots\":[],\"annotations\":{\"framerSupportedLayoutWidth\":\"auto\",\"framerDisableUnlink\":\"\",\"framerSupportedLayoutHeight\":\"auto\",\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./SmoothScroll_Prod.map", "// Generated by Framer (f7ce5cf)\nimport{jsx as _jsx}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,getFontsFromSharedStyle,Link,RichText,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import*as sharedStyle from\"https://framerusercontent.com/modules/wNm5FioQs29aDUthQqZW/6nVYuumdaKMB1s3iO9nY/RzAhCiscr.js\";const enabledGestures={PSjf9aVqr:{hover:true}};const serializationHash=\"framer-f4kIj\";const variantClassNames={PSjf9aVqr:\"framer-v-1bomkxh\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={bounce:.2,delay:0,duration:.4,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const getProps=({height,id,link,name1,width,...props})=>{return{...props,k8mHzE44c:link??props.k8mHzE44c,Rjqq1770W:name1??props.Rjqq1770W??\"Home\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const fallbackRef=useRef(null);const refBinding=ref??fallbackRef;const defaultLayoutId=React.useId();const{activeLocale,setLocale}=useLocaleInfo();const componentViewport=useComponentViewport();const{style,className,layoutId,variant,Rjqq1770W,k8mHzE44c,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({defaultVariant:\"PSjf9aVqr\",enabledGestures,ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const sharedStyleClassNames=[sharedStyle.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(Link,{href:k8mHzE44c,motionChild:true,nodeId:\"PSjf9aVqr\",openInNewTab:false,scopeId:\"heKyzYayd\",smoothScroll:true,children:/*#__PURE__*/_jsx(motion.a,{...restProps,...gestureHandlers,className:`${cx(scopingClassNames,\"framer-1bomkxh\",className,classNames)} framer-ry1qiq`,\"data-framer-name\":\"Variant 1\",layoutDependency:layoutDependency,layoutId:\"PSjf9aVqr\",ref:refBinding,style:{...style},...addPropertyOverrides({\"PSjf9aVqr-hover\":{\"data-framer-name\":undefined}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-amoww1\",\"data-styles-preset\":\"RzAhCiscr\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-2ff9a6d4-dab7-4ef6-b4fa-9e88617ec594, rgb(255, 255, 255)))\"},children:\"Home\"})}),className:\"framer-f1bazi\",\"data-framer-name\":\"Home\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"F5jIAMItF\",style:{\"--extracted-r6o4lv\":\"var(--token-2ff9a6d4-dab7-4ef6-b4fa-9e88617ec594, rgb(255, 255, 255))\",\"--framer-paragraph-spacing\":\"0px\",opacity:.6},text:Rjqq1770W,variants:{\"PSjf9aVqr-hover\":{opacity:1}},verticalAlignment:\"center\",withExternalLayout:true})})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-f4kIj.framer-ry1qiq, .framer-f4kIj .framer-ry1qiq { display: block; }\",\".framer-f4kIj.framer-1bomkxh { align-content: center; align-items: center; cursor: pointer; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; text-decoration: none; width: min-content; }\",\".framer-f4kIj .framer-f1bazi { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-f4kIj.framer-1bomkxh { gap: 0px; } .framer-f4kIj.framer-1bomkxh > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } .framer-f4kIj.framer-1bomkxh > :first-child { margin-left: 0px; } .framer-f4kIj.framer-1bomkxh > :last-child { margin-right: 0px; } }\",...sharedStyle.css];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 26\n * @framerIntrinsicWidth 45\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"auto\",\"auto\"]},\"KnNdspDXp\":{\"layout\":[\"auto\",\"auto\"]}}}\n * @framerVariables {\"Rjqq1770W\":\"name1\",\"k8mHzE44c\":\"link\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerAutoSizeImages true\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n */const FramerheKyzYayd=withCSS(Component,css,\"framer-f4kIj\");export default FramerheKyzYayd;FramerheKyzYayd.displayName=\"Footer / Link\";FramerheKyzYayd.defaultProps={height:26,width:45};addPropertyControls(FramerheKyzYayd,{Rjqq1770W:{defaultValue:\"Home\",displayTextArea:false,title:\"Name\",type:ControlType.String},k8mHzE44c:{title:\"Link\",type:ControlType.Link}});addFonts(FramerheKyzYayd,[{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\"}]},...getFontsFromSharedStyle(sharedStyle.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerheKyzYayd\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\",\"framerVariables\":\"{\\\"Rjqq1770W\\\":\\\"name1\\\",\\\"k8mHzE44c\\\":\\\"link\\\"}\",\"framerDisplayContentsDiv\":\"false\",\"framerIntrinsicHeight\":\"26\",\"framerIntrinsicWidth\":\"45\",\"framerAutoSizeImages\":\"true\",\"framerImmutableVariables\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"KnNdspDXp\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]}}}\",\"framerColorSyntax\":\"true\",\"framerComponentViewportWidth\":\"true\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (6421805)\nimport{jsx as _jsx}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,getPropertyControls,Link,SmartComponentScopedContainer,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{Icon as Phosphor}from\"https://framerusercontent.com/modules/tYScH7LTqUtz5KUaUAYP/p8dptk4UIND8hbFWz9V7/Phosphor.js\";const PhosphorFonts=getFonts(Phosphor);const PhosphorControls=getPropertyControls(Phosphor);const enabledGestures={sdPvr1I7M:{hover:true}};const serializationHash=\"framer-LcCUx\";const variantClassNames={sdPvr1I7M:\"framer-v-1o18bbc\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:30,delay:0,mass:1,stiffness:260,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const getProps=({click,height,iconName,id,link,width,...props})=>{return{...props,IiMRH2q0P:link??props.IiMRH2q0P,QEDbkKOjq:click??props.QEDbkKOjq,vDncokxwm:iconName??props.vDncokxwm??\"FacebookLogo\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,vDncokxwm,IiMRH2q0P,QEDbkKOjq,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({defaultVariant:\"sdPvr1I7M\",enabledGestures,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onTap1qgk80z=activeVariantCallback(async(...args)=>{setGestureState({isPressed:false});if(QEDbkKOjq){const res=await QEDbkKOjq(...args);if(res===false)return false;}});const sharedStyleClassNames=[];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const ref1=React.useRef(null);const defaultLayoutId=React.useId();const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(Link,{href:IiMRH2q0P,motionChild:true,nodeId:\"sdPvr1I7M\",openInNewTab:true,children:/*#__PURE__*/_jsx(motion.a,{...restProps,...gestureHandlers,className:`${cx(scopingClassNames,\"framer-1o18bbc\",className,classNames)} framer-ao4fa3`,\"data-framer-name\":\"Variant 1\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"sdPvr1I7M\",onTap:onTap1qgk80z,ref:ref??ref1,style:{...style},...addPropertyOverrides({\"sdPvr1I7M-hover\":{\"data-framer-name\":undefined}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1200jij-container\",\"data-framer-name\":\"1\",isAuthoredByUser:true,isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"YLLbDtL0E-container\",name:\"1\",nodeId:\"YLLbDtL0E\",rendersWithMotion:true,scopeId:\"QHEirBxhV\",style:{opacity:.6},variants:{\"sdPvr1I7M-hover\":{opacity:1}},children:/*#__PURE__*/_jsx(Phosphor,{color:\"var(--token-2ff9a6d4-dab7-4ef6-b4fa-9e88617ec594, rgb(255, 255, 255))\",height:\"100%\",iconSearch:\"facebook\",iconSelection:vDncokxwm,id:\"YLLbDtL0E\",layoutId:\"YLLbDtL0E\",mirrored:false,name:\"1\",selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"regular\",width:\"100%\"})})})})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-LcCUx.framer-ao4fa3, .framer-LcCUx .framer-ao4fa3 { display: block; }\",\".framer-LcCUx.framer-1o18bbc { cursor: pointer; height: 30px; overflow: hidden; position: relative; text-decoration: none; width: 30px; }\",\".framer-LcCUx .framer-1200jij-container { flex: none; height: 24px; left: calc(50.00000000000002% - 24px / 2); position: absolute; top: calc(50.00000000000002% - 24px / 2); width: 24px; }\",\".framer-LcCUx.framer-v-1o18bbc.hover.framer-1o18bbc { aspect-ratio: 1 / 1; height: var(--framer-aspect-ratio-supported, 30px); }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 30\n * @framerIntrinsicWidth 30\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]},\"WopKjSemo\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerVariables {\"vDncokxwm\":\"iconName\",\"IiMRH2q0P\":\"link\",\"QEDbkKOjq\":\"click\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerQHEirBxhV=withCSS(Component,css,\"framer-LcCUx\");export default FramerQHEirBxhV;FramerQHEirBxhV.displayName=\"Social Icon\";FramerQHEirBxhV.defaultProps={height:30,width:30};addPropertyControls(FramerQHEirBxhV,{vDncokxwm:PhosphorControls?.[\"iconSelection\"]&&{...PhosphorControls[\"iconSelection\"],defaultValue:\"FacebookLogo\",description:undefined,hidden:undefined,title:\"Icon Name\"},IiMRH2q0P:{title:\"Link\",type:ControlType.Link},QEDbkKOjq:{title:\"Click\",type:ControlType.EventHandler}});addFonts(FramerQHEirBxhV,[{explicitInter:true,fonts:[]},...PhosphorFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerQHEirBxhV\",\"slots\":[],\"annotations\":{\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"WopKjSemo\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerComponentViewportWidth\":\"true\",\"framerImmutableVariables\":\"true\",\"framerIntrinsicWidth\":\"30\",\"framerIntrinsicHeight\":\"30\",\"framerDisplayContentsDiv\":\"false\",\"framerVariables\":\"{\\\"vDncokxwm\\\":\\\"iconName\\\",\\\"IiMRH2q0P\\\":\\\"link\\\",\\\"QEDbkKOjq\\\":\\\"click\\\"}\",\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./QHEirBxhV.map", "// Generated by Framer (6aa4fc0)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,getFontsFromSharedStyle,ResolveLinks,RichText,SmartComponentScopedContainer,SVG,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useRouter,useVariantState,withCSS,withFX}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import*as sharedStyle2 from\"https://framerusercontent.com/modules/sPoHi2mPxkNojMpIWGWa/RzXzswYOvvVbQirTJVqj/chv2YGyi7.js\";import*as sharedStyle1 from\"https://framerusercontent.com/modules/yxIGFpnWCB1w0s0vaHRW/AZZMQxokDf4q3PalHZmw/L_WLniPme.js\";import*as sharedStyle4 from\"https://framerusercontent.com/modules/qyndnaF5kUpyyv42g4yb/ciMGkC0mOzu7ACyNwz4c/MigD80yic.js\";import*as sharedStyle3 from\"https://framerusercontent.com/modules/wNm5FioQs29aDUthQqZW/6nVYuumdaKMB1s3iO9nY/RzAhCiscr.js\";import*as sharedStyle from\"https://framerusercontent.com/modules/blp2UOQ4LenrVW8o9Az9/pA3fC1OpaSdWydKDNlFk/wJZnWFInK.js\";import FooterLink from\"https://framerusercontent.com/modules/oUhW0K4t6i43KUlTTAvk/Iqwj9WIjdbtkWe3y512C/heKyzYayd.js\";import Tag from\"https://framerusercontent.com/modules/9EYiaEhNECa1KCzi2xZ6/KFTfHbQSqdt5aQyNmU6g/Ihf4JO3wW.js\";import SocialIcon from\"https://framerusercontent.com/modules/jlcrHOqSFob36FeDwSOE/id5WEUOy5iQo6NBJQWQe/QHEirBxhV.js\";import ButtonButton from\"https://framerusercontent.com/modules/vhB0BRlFs3PTLMtX27yV/XduvNCm5hFEGLLmYhOYo/YBPGh7qim.js\";const TagFonts=getFonts(Tag);const ButtonButtonFonts=getFonts(ButtonButton);const SmartComponentScopedContainerWithFX=withFX(SmartComponentScopedContainer);const SocialIconFonts=getFonts(SocialIcon);const FooterLinkFonts=getFonts(FooterLink);const cycleOrder=[\"mVRYywzXp\",\"kaCOhrfJ4\",\"YczjDZfk8\"];const serializationHash=\"framer-KipsU\";const variantClassNames={kaCOhrfJ4:\"framer-v-1tavtw1\",mVRYywzXp:\"framer-v-1730qni\",YczjDZfk8:\"framer-v-y8evng\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={bounce:.2,delay:0,duration:.4,type:\"spring\"};const animation={filter:\"blur(2px)\",opacity:.001,rotate:0,scale:1,skewX:0,skewY:0,x:0,y:10};const transition2={delay:.05,duration:.3,ease:[.12,.23,.5,1],type:\"tween\"};const textEffect={effect:animation,repeat:false,startDelay:0,threshold:.5,tokenization:\"word\",transition:transition2,trigger:\"onInView\",type:\"appear\"};const animation1={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:20};const transition3={delay:.6,duration:.4,ease:[.12,.23,.5,1],type:\"tween\"};const transition4={delay:.7,duration:.4,ease:[.12,.23,.5,1],type:\"tween\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={\"Desktop L\":\"mVRYywzXp\",Phone:\"YczjDZfk8\",Tablet:\"kaCOhrfJ4\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"mVRYywzXp\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const fallbackRef=useRef(null);const refBinding=ref??fallbackRef;const defaultLayoutId=React.useId();const{activeLocale,setLocale}=useLocaleInfo();const componentViewport=useComponentViewport();const{style,className,layoutId,variant,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"mVRYywzXp\",ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const QEDbkKOjq1bznoa8=activeVariantCallback(async(...args)=>{setVariant(\"mVRYywzXp\");});const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className,sharedStyle2.className,sharedStyle3.className,sharedStyle4.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const router=useRouter();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(motion.header,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-1730qni\",className,classNames),\"data-framer-name\":\"Desktop L\",layoutDependency:layoutDependency,layoutId:\"mVRYywzXp\",ref:refBinding,style:{...style},...addPropertyOverrides({kaCOhrfJ4:{\"data-framer-name\":\"Tablet\"},YczjDZfk8:{\"data-framer-name\":\"Phone\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-ruan0o\",\"data-framer-name\":\"Container\",layoutDependency:layoutDependency,layoutId:\"gNky4TTSt\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-x0a4yg\",\"data-framer-name\":\"Heading\",layoutDependency:layoutDependency,layoutId:\"V2iSfXjY0\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-l5ink5\",\"data-framer-name\":\"Title\",layoutDependency:layoutDependency,layoutId:\"ZEUV3MqLr\",children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-10bazes\",\"data-framer-name\":\"Title\",layoutDependency:layoutDependency,layoutId:\"dUyeq60S2\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:28,y:(componentViewport?.y||0)+100+0+0+0+0+0+0+0+0,...addPropertyOverrides({kaCOhrfJ4:{y:(componentViewport?.y||0)+(120+((componentViewport?.height||919.5)-150-813.6)/2)+0+0+0+0+0+0+0+0},YczjDZfk8:{y:(componentViewport?.y||0)+64+0+0+0+0+0+0+0+0}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1wrudev-container\",layoutDependency:layoutDependency,layoutId:\"uZX9Yehso-container\",nodeId:\"uZX9Yehso\",rendersWithMotion:true,scopeId:\"FBO9CnB_6\",children:/*#__PURE__*/_jsx(Tag,{Buyp28_of:\"digital assembly line\",height:\"100%\",id:\"uZX9Yehso\",layoutId:\"uZX9Yehso\",variant:\"M9HI8jaOk\",width:\"100%\"})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h1,{className:\"framer-styles-preset-13d02to\",\"data-styles-preset\":\"wJZnWFInK\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-gdpscs, var(--token-2ff9a6d4-dab7-4ef6-b4fa-9e88617ec594, rgb(255, 255, 255)))\"},children:\"Get Started with Vsimple\"})}),className:\"framer-4qx3u9\",\"data-framer-name\":\"Title Text\",effect:textEffect,fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"dCChQtKF2\",style:{\"--extracted-gdpscs\":\"var(--token-2ff9a6d4-dab7-4ef6-b4fa-9e88617ec594, rgb(255, 255, 255))\",\"--framer-paragraph-spacing\":\"0px\"},variants:{kaCOhrfJ4:{\"--extracted-1of0zx5\":\"var(--token-2ff9a6d4-dab7-4ef6-b4fa-9e88617ec594, rgb(255, 255, 255))\"},YczjDZfk8:{\"--extracted-a0htzi\":\"var(--token-2ff9a6d4-dab7-4ef6-b4fa-9e88617ec594, rgb(255, 255, 255))\"}},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({kaCOhrfJ4:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h2,{className:\"framer-styles-preset-1cqcawc\",\"data-styles-preset\":\"L_WLniPme\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-1of0zx5, var(--token-2ff9a6d4-dab7-4ef6-b4fa-9e88617ec594, rgb(255, 255, 255)))\"},children:\"Get Started with Vsimple\"})})},YczjDZfk8:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h3,{className:\"framer-styles-preset-1j87fkn\",\"data-styles-preset\":\"chv2YGyi7\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-a0htzi, var(--token-2ff9a6d4-dab7-4ef6-b4fa-9e88617ec594, rgb(255, 255, 255)))\"},children:\"Get Started with Vsimple\"})})}},baseVariant,gestureVariant)})]})}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1mzjrk6\",\"data-framer-name\":\"Button\",layoutDependency:layoutDependency,layoutId:\"soS34HBmv\",children:[/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"o8pxaTIBU\"},implicitPathVariables:undefined},{href:{webPageId:\"o8pxaTIBU\"},implicitPathVariables:undefined},{href:{webPageId:\"o8pxaTIBU\"},implicitPathVariables:undefined}],children:resolvedLinks=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:50,width:\"200px\",y:(componentViewport?.y||0)+100+0+0+0+140+0,...addPropertyOverrides({kaCOhrfJ4:{y:(componentViewport?.y||0)+(120+((componentViewport?.height||919.5)-150-813.6)/2)+0+0+0+132+0},YczjDZfk8:{width:`max((min(min(max(${componentViewport?.width||\"100vw\"} - 32px, 1px), 1240px), 500px) - 16px) / 2, 1px)`,y:(componentViewport?.y||0)+64+0+0+0+124.8+0}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainerWithFX,{__framer__animate:{transition:transition3},__framer__animateOnce:true,__framer__enter:animation1,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,className:\"framer-gl8o67-container\",layoutDependency:layoutDependency,layoutId:\"qnw0gTFii-container\",nodeId:\"qnw0gTFii\",rendersWithMotion:true,scopeId:\"FBO9CnB_6\",children:/*#__PURE__*/_jsx(ButtonButton,{Dlc_3jNMB:false,hD_Tjd3Q1:\"Get Started\",height:\"100%\",id:\"qnw0gTFii\",layoutId:\"qnw0gTFii\",style:{height:\"100%\",width:\"100%\"},variant:\"u3RW6678t\",VV_uh9AAy:resolvedLinks[0],width:\"100%\",...addPropertyOverrides({kaCOhrfJ4:{VV_uh9AAy:resolvedLinks[1]},YczjDZfk8:{VV_uh9AAy:resolvedLinks[2]}},baseVariant,gestureVariant)})})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:50,width:\"200px\",y:(componentViewport?.y||0)+100+0+0+0+140+0,...addPropertyOverrides({kaCOhrfJ4:{y:(componentViewport?.y||0)+(120+((componentViewport?.height||919.5)-150-813.6)/2)+0+0+0+132+0},YczjDZfk8:{width:`max((min(min(max(${componentViewport?.width||\"100vw\"} - 32px, 1px), 1240px), 500px) - 16px) / 2, 1px)`,y:(componentViewport?.y||0)+64+0+0+0+124.8+0}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainerWithFX,{__framer__animate:{transition:transition4},__framer__animateOnce:true,__framer__enter:animation1,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,className:\"framer-yem845-container\",layoutDependency:layoutDependency,layoutId:\"cd6tGEd2N-container\",nodeId:\"cd6tGEd2N\",rendersWithMotion:true,scopeId:\"FBO9CnB_6\",children:/*#__PURE__*/_jsx(ButtonButton,{Dlc_3jNMB:true,hD_Tjd3Q1:\"Book a Demo\",height:\"100%\",id:\"cd6tGEd2N\",layoutId:\"cd6tGEd2N\",style:{height:\"100%\",width:\"100%\"},variant:\"gYGlZFzwy\",VV_uh9AAy:\"https://links.vsimple.com/meetings/matt-stovall/home-page-demo\",width:\"100%\"})})})]})]}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-9nc623\",\"data-framer-name\":\"Line\",layoutDependency:layoutDependency,layoutId:\"EKJxSVEkz\",style:{backgroundColor:\"rgb(255, 255, 255)\",opacity:.15}}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-l8f6mg\",\"data-framer-name\":\"Container\",layoutDependency:layoutDependency,layoutId:\"isYibJIMb\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-8ttgq1\",\"data-framer-name\":\"Left\",layoutDependency:layoutDependency,layoutId:\"hmH8YFhq0\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1ispt8x\",\"data-framer-name\":\"Logo\",layoutDependency:layoutDependency,layoutId:\"ruLoWXM2T\",children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-12ee7dv\",\"data-framer-name\":\"Container\",layoutDependency:layoutDependency,layoutId:\"qxHmGBHXB\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1i1s8k\",\"data-framer-name\":\"Logo\",layoutDependency:layoutDependency,layoutId:\"szFiOFM76\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-yakwdm\",\"data-framer-name\":\"logo\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"CS7yuvqnf\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 106.25 40\"><g transform=\"translate(-0.002 0)\"><path d=\"M 48.789 25.846 L 45.333 17.5 C 45.325 17.466 45.325 17.43 45.333 17.397 C 45.333 17.305 45.39 17.248 45.513 17.248 L 46.56 17.248 C 46.609 17.243 46.658 17.257 46.697 17.287 C 46.736 17.317 46.763 17.36 46.773 17.408 L 49.52 24.546 L 52.277 17.431 C 52.319 17.324 52.421 17.252 52.536 17.248 L 53.56 17.248 C 53.717 17.248 53.773 17.34 53.717 17.5 L 50.24 25.845 C 50.226 25.898 50.192 25.945 50.146 25.976 C 50.101 26.008 50.046 26.022 49.992 26.017 L 49.07 26.017 C 49.011 26.021 48.953 26.006 48.903 25.975 C 48.853 25.944 48.813 25.898 48.789 25.845 M 54.583 25.293 C 54.564 25.241 54.564 25.184 54.583 25.133 C 54.567 25.088 54.567 25.039 54.583 24.994 L 54.978 24.304 C 55.003 24.266 55.045 24.244 55.091 24.244 C 55.114 24.244 55.135 24.249 55.155 24.26 C 55.174 24.27 55.19 24.285 55.203 24.305 C 55.538 24.511 55.89 24.679 56.261 24.81 C 56.715 24.976 57.195 25.057 57.678 25.052 C 58.175 25.074 58.67 24.96 59.108 24.719 C 59.269 24.632 59.404 24.503 59.499 24.346 C 59.595 24.188 59.647 24.007 59.648 23.822 C 59.647 23.642 59.601 23.465 59.514 23.308 C 59.429 23.151 59.305 23.02 59.153 22.926 C 58.65 22.642 58.107 22.437 57.542 22.317 C 56.75 22.146 56.008 21.795 55.372 21.293 C 55.136 21.072 54.952 20.801 54.834 20.5 C 54.713 20.197 54.663 19.871 54.685 19.546 C 54.665 19.081 54.795 18.621 55.056 18.236 C 55.342 17.836 55.732 17.525 56.182 17.34 C 56.688 17.115 57.238 17.005 57.791 17.017 C 58.723 16.99 59.637 17.273 60.391 17.822 C 60.481 17.822 60.492 17.959 60.391 18.086 L 60.391 18.143 L 60.019 18.856 C 60.013 18.886 59.995 18.912 59.969 18.928 C 59.945 18.946 59.914 18.953 59.884 18.949 C 59.855 18.959 59.823 18.959 59.793 18.949 C 59.182 18.536 58.461 18.315 57.724 18.316 C 57.267 18.292 56.812 18.404 56.418 18.638 C 56.271 18.722 56.149 18.844 56.064 18.991 C 55.979 19.139 55.934 19.306 55.934 19.477 C 55.926 19.65 55.962 19.823 56.039 19.98 C 56.115 20.134 56.231 20.266 56.374 20.362 C 56.883 20.652 57.434 20.861 58.005 20.983 C 58.799 21.186 59.545 21.545 60.199 22.04 C 60.425 22.272 60.601 22.55 60.713 22.856 C 60.94 23.476 60.896 24.164 60.589 24.75 C 60.439 25.037 60.23 25.288 59.975 25.488 C 59.302 25.975 58.485 26.218 57.656 26.178 C 56.563 26.217 55.487 25.907 54.583 25.293 M 62.934 14.592 C 62.749 14.398 62.651 14.136 62.664 13.868 C 62.651 13.603 62.748 13.345 62.934 13.156 C 63.133 12.975 63.396 12.88 63.665 12.89 C 63.921 12.879 64.17 12.975 64.352 13.156 C 64.53 13.349 64.623 13.605 64.611 13.868 C 64.622 14.137 64.529 14.401 64.352 14.604 C 64.17 14.784 63.921 14.879 63.666 14.868 C 63.395 14.882 63.129 14.782 62.935 14.592 M 63.07 25.972 C 63.051 25.932 63.051 25.886 63.07 25.846 L 63.07 17.431 C 63.062 17.382 63.077 17.333 63.111 17.297 C 63.143 17.261 63.191 17.243 63.239 17.247 L 64.116 17.247 C 64.171 17.245 64.224 17.265 64.262 17.304 C 64.297 17.338 64.317 17.384 64.32 17.431 L 64.32 25.845 C 64.318 25.892 64.297 25.938 64.262 25.97 C 64.216 25.991 64.163 25.991 64.116 25.97 L 63.262 25.97 C 63.194 26.031 63.092 26.031 63.025 25.97 Z M 67.176 25.972 C 67.164 25.93 67.164 25.887 67.176 25.846 L 67.176 17.535 C 67.175 17.462 67.204 17.391 67.256 17.34 C 67.312 17.281 67.389 17.248 67.469 17.248 L 68.009 17.248 C 68.087 17.243 68.163 17.277 68.212 17.34 C 68.264 17.391 68.293 17.461 68.291 17.534 L 68.291 18.994 C 68.533 18.424 68.921 17.932 69.416 17.569 C 69.93 17.215 70.54 17.033 71.16 17.052 C 71.788 17.04 72.408 17.207 72.95 17.535 C 73.47 17.869 73.866 18.369 74.075 18.96 C 74.39 18.389 74.847 17.91 75.403 17.569 C 75.935 17.223 76.557 17.043 77.192 17.052 C 78.08 17.003 78.942 17.363 79.532 18.029 C 80.166 18.863 80.471 19.908 80.388 20.96 L 80.388 25.822 C 80.396 25.875 80.379 25.93 80.34 25.968 C 80.303 26.006 80.25 26.024 80.197 26.017 L 79.319 26.017 C 79.276 26.036 79.227 26.036 79.184 26.017 C 79.168 25.969 79.168 25.917 79.184 25.869 L 79.184 20.96 C 79.184 19.177 78.486 18.293 77.08 18.293 C 76.749 18.289 76.419 18.361 76.118 18.502 C 75.816 18.645 75.549 18.852 75.335 19.11 C 74.838 19.733 74.533 20.488 74.457 21.281 L 74.457 25.879 C 74.473 25.92 74.473 25.965 74.457 26.006 C 74.421 26.022 74.38 26.022 74.345 26.006 L 73.5 26.006 C 73.453 26.008 73.407 25.987 73.377 25.949 C 73.336 25.914 73.311 25.864 73.309 25.81 L 73.309 20.546 C 73.219 19.04 72.5 18.247 71.172 18.247 C 70.671 18.243 70.182 18.409 69.787 18.718 C 69.301 19.053 68.909 19.509 68.651 20.04 C 68.425 20.615 68.311 21.228 68.313 21.846 L 68.313 25.88 C 68.312 25.935 68.292 25.987 68.257 26.029 C 68.213 26.046 68.165 26.046 68.122 26.029 L 67.299 26.029 C 67.252 26.029 67.206 26.008 67.176 25.972 M 83.28 30.89 C 83.218 30.831 83.185 30.747 83.19 30.662 L 83.19 17.522 C 83.193 17.448 83.226 17.378 83.28 17.327 C 83.33 17.267 83.404 17.233 83.482 17.236 L 84.157 17.236 C 84.232 17.24 84.302 17.271 84.355 17.324 C 84.409 17.376 84.443 17.447 84.45 17.522 L 84.45 18.878 C 84.783 18.304 85.265 17.831 85.846 17.51 C 87.216 16.847 88.821 16.886 90.157 17.614 C 90.816 17.99 91.349 18.554 91.688 19.234 C 92.408 20.747 92.408 22.504 91.688 24.016 C 91.345 24.69 90.813 25.249 90.157 25.625 C 89.47 26.013 88.694 26.211 87.906 26.2 C 87.195 26.213 86.491 26.052 85.857 25.729 C 85.261 25.415 84.759 24.947 84.405 24.373 L 84.405 30.66 C 84.412 30.744 84.383 30.827 84.327 30.889 C 84.27 30.944 84.192 30.973 84.113 30.969 L 83.472 30.969 C 83.4 30.97 83.33 30.941 83.28 30.889 M 90.111 23.993 C 90.717 23.344 91.037 22.478 91 21.591 C 91.019 21.149 90.95 20.707 90.796 20.292 C 90.644 19.878 90.411 19.499 90.111 19.177 C 89.802 18.869 89.437 18.628 89.034 18.469 C 88.632 18.31 88.201 18.238 87.77 18.257 C 87.119 18.257 86.481 18.454 85.939 18.822 C 85.396 19.19 84.97 19.712 84.716 20.325 C 84.462 20.939 84.39 21.613 84.508 22.268 C 84.626 22.919 84.931 23.522 85.384 24.005 C 86.02 24.635 86.887 24.976 87.781 24.948 C 88.206 24.961 88.63 24.887 89.027 24.728 C 89.423 24.57 89.784 24.332 90.089 24.028 Z M 94.455 25.972 C 94.42 25.938 94.4 25.893 94.399 25.846 L 94.399 12.464 C 94.399 12.361 94.467 12.304 94.579 12.304 L 95.457 12.304 C 95.58 12.304 95.647 12.361 95.647 12.464 L 95.647 25.846 C 95.663 25.886 95.663 25.931 95.647 25.972 C 95.6 25.988 95.549 25.988 95.501 25.972 L 94.647 25.972 C 94.587 26.005 94.514 26.005 94.455 25.972 M 100.07 25.649 C 99.38 25.27 98.811 24.705 98.427 24.017 C 98.03 23.284 97.829 22.46 97.842 21.626 C 97.826 20.798 98.02 19.98 98.405 19.247 C 98.764 18.561 99.311 17.998 99.981 17.626 C 100.69 17.236 101.489 17.037 102.299 17.052 C 102.909 17.025 103.518 17.132 104.083 17.364 C 104.651 17.597 105.163 17.949 105.585 18.397 C 106.424 19.391 106.853 20.682 106.777 21.994 C 106.777 22.166 106.777 22.247 106.586 22.247 L 99.115 22.247 C 99.216 23.039 99.621 23.758 100.239 24.247 C 100.88 24.749 101.676 25.013 102.49 24.994 C 103.442 25.06 104.374 24.698 105.033 24.006 C 105.101 23.949 105.146 23.914 105.19 23.914 C 105.246 23.916 105.299 23.941 105.337 23.983 L 105.967 24.581 C 105.967 24.638 106.058 24.684 106.058 24.718 C 106.054 24.774 106.03 24.828 105.989 24.868 C 105.574 25.325 105.062 25.679 104.492 25.903 C 103.854 26.151 103.174 26.271 102.49 26.258 C 101.645 26.259 100.813 26.05 100.07 25.649 M 105.494 21.052 C 105.412 20.275 105.043 19.558 104.459 19.04 C 103.844 18.558 103.086 18.295 102.305 18.295 C 101.525 18.295 100.768 18.557 100.149 19.04 C 99.565 19.558 99.196 20.275 99.114 21.052 Z M 19.585 20.569 L 18.64 22.592 C 19.109 21.65 19.282 20.588 19.135 19.546 L 16.761 14.397 C 16.436 13.692 15.919 13.094 15.269 12.671 C 14.624 12.253 13.872 12.03 13.104 12.029 L 7.352 12.029 L 15.445 29.546 L 23.716 29.546 Z\" fill=\"var(--token-2ff9a6d4-dab7-4ef6-b4fa-9e88617ec594, rgb(255, 255, 255))\"></path><path d=\"M 35.037 32.281 C 32.678 35.389 29.445 37.722 25.752 38.981 C 22.081 40.227 18.119 40.333 14.388 39.284 C 10.637 38.223 7.29 36.065 4.775 33.086 C 2.233 30.077 0.627 26.39 0.153 22.479 C -0.33 18.558 0.339 14.581 2.078 11.034 C 3.797 7.515 6.52 4.584 9.904 2.612 C 13.257 0.66 17.121 -0.232 20.99 0.052 C 24.865 0.34 28.564 1.79 31.604 4.212 C 33.641 5.832 35.341 7.837 36.607 10.112 C 37.882 12.402 38.7 14.917 39.016 17.519 C 39.336 20.126 39.147 22.772 38.464 25.305 C 37.786 27.831 36.621 30.2 35.036 32.28 M 30.534 5.671 C 27.775 3.475 24.418 2.161 20.901 1.901 C 17.39 1.648 13.884 2.461 10.843 4.234 C 7.774 6.026 5.305 8.686 3.746 11.88 C 2.17 15.1 1.565 18.708 2.003 22.265 C 2.435 25.814 3.895 29.16 6.203 31.889 C 8.486 34.592 11.525 36.549 14.929 37.509 C 18.318 38.458 21.906 38.361 25.241 37.229 C 28.592 36.085 31.524 33.967 33.664 31.145 C 35.097 29.253 36.149 27.1 36.76 24.806 C 37.374 22.504 37.539 20.103 37.244 17.737 C 36.951 15.377 36.204 13.095 35.043 11.02 C 33.889 8.957 32.343 7.14 30.49 5.673 Z\" fill=\"var(--token-2ff9a6d4-dab7-4ef6-b4fa-9e88617ec594, rgb(255, 255, 255))\"></path><path d=\"M 18.775 18.833 L 16.716 14.351 C 16.392 13.646 15.874 13.047 15.224 12.624 C 14.579 12.207 13.827 11.984 13.058 11.983 L 7.352 11.983 L 12.979 24.097 C 15.413 22.991 17.44 21.15 18.775 18.833 M 15.445 29.546 L 23.716 29.546 L 31.818 11.983 L 25.977 11.983 C 25.249 11.983 24.536 12.193 23.925 12.589 C 23.308 12.989 22.818 13.556 22.511 14.224 Z\" fill=\"var(--token-2ff9a6d4-dab7-4ef6-b4fa-9e88617ec594, rgb(255, 255, 255))\"></path><path d=\"M 22.072 15.156 L 15.445 29.546 L 23.322 29.546 C 24.976 24.604 26.146 19.546 22.072 15.156\" fill=\"var(--token-2ff9a6d4-dab7-4ef6-b4fa-9e88617ec594, rgb(255, 255, 255))\"></path><path d=\"M 31.818 11.983 L 25.977 11.983 C 25.249 11.983 24.536 12.193 23.925 12.589 C 23.308 12.989 22.818 13.556 22.511 14.224 L 22.072 15.156 C 26.146 19.546 24.976 24.604 23.333 29.546 L 23.716 29.546 Z\" fill=\"var(--token-2ff9a6d4-dab7-4ef6-b4fa-9e88617ec594, rgb(255, 255, 255))\"></path><path d=\"M 19.586 20.569 L 18.64 22.592 C 19.109 21.65 19.282 20.588 19.135 19.546 L 18.821 18.879 C 17.462 21.211 15.402 23.054 12.935 24.144 L 15.445 29.592 L 23.716 29.592 Z\" fill=\"var(--token-2ff9a6d4-dab7-4ef6-b4fa-9e88617ec594, rgb(255, 255, 255))\"></path></g></svg>',svgContentId:11704114600,withExternalLayout:true})}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-kcl2gv\",\"data-framer-name\":\"Address\",layoutDependency:layoutDependency,layoutId:\"dO7M_Ei6y\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlM7R2VuZXJhbCBTYW5zLW1lZGl1bQ==\",\"--framer-font-family\":'\"General Sans\", \"General Sans Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"26px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-2ff9a6d4-dab7-4ef6-b4fa-9e88617ec594, rgb(255, 255, 255)))\"},children:\"Vsimple HQ\"})}),className:\"framer-1mvez9g\",\"data-framer-name\":\"Manage Ai effortlessly\",fonts:[\"FS;General Sans-medium\"],layoutDependency:layoutDependency,layoutId:\"NHJiOARxb\",style:{\"--extracted-r6o4lv\":\"var(--token-2ff9a6d4-dab7-4ef6-b4fa-9e88617ec594, rgb(255, 255, 255))\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"center\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlM7R2VuZXJhbCBTYW5zLXJlZ3VsYXI=\",\"--framer-font-family\":'\"General Sans\", \"General Sans Placeholder\", sans-serif',\"--framer-line-height\":\"1.3em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-2ff9a6d4-dab7-4ef6-b4fa-9e88617ec594, rgb(255, 255, 255)))\"},children:\"318 E 4th Street\"}),/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlM7R2VuZXJhbCBTYW5zLXJlZ3VsYXI=\",\"--framer-font-family\":'\"General Sans\", \"General Sans Placeholder\", sans-serif',\"--framer-line-height\":\"1.3em\",\"--framer-text-color\":\"var(--extracted-2gxw0f, var(--token-2ff9a6d4-dab7-4ef6-b4fa-9e88617ec594, rgb(255, 255, 255)))\"},children:\"New Albany, IN 47150\"})]}),className:\"framer-gs5c9t\",\"data-framer-name\":\"Manage Ai effortlessly\",fonts:[\"FS;General Sans-regular\"],layoutDependency:layoutDependency,layoutId:\"CsJOGCJCY\",style:{\"--extracted-2gxw0f\":\"var(--token-2ff9a6d4-dab7-4ef6-b4fa-9e88617ec594, rgb(255, 255, 255))\",\"--extracted-r6o4lv\":\"var(--token-2ff9a6d4-dab7-4ef6-b4fa-9e88617ec594, rgb(255, 255, 255))\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"center\",withExternalLayout:true})]})]})}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-xef159\",\"data-framer-name\":\"Social Icon\",layoutDependency:layoutDependency,layoutId:\"K22ZKmqhs\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:30,width:\"30px\",y:(componentViewport?.y||0)+100+0+391+0+0+159.6+0,...addPropertyOverrides({kaCOhrfJ4:{y:(componentViewport?.y||0)+(120+((componentViewport?.height||919.5)-150-813.6)/2)+0+263+0+0+0+159.6+0},YczjDZfk8:{y:(componentViewport?.y||0)+64+0+255.8+0+0+0+159.6+0}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1y7rqwd-container\",layoutDependency:layoutDependency,layoutId:\"mJLM42HYz-container\",nodeId:\"mJLM42HYz\",rendersWithMotion:true,scopeId:\"FBO9CnB_6\",children:/*#__PURE__*/_jsx(SocialIcon,{height:\"100%\",id:\"mJLM42HYz\",IiMRH2q0P:\"https://www.facebook.com/share/1AFSGNBg2U/?mibextid=wwXIfr\",layoutId:\"mJLM42HYz\",QEDbkKOjq:QEDbkKOjq1bznoa8,style:{height:\"100%\",width:\"100%\"},vDncokxwm:\"FacebookLogo\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:30,width:\"30px\",y:(componentViewport?.y||0)+100+0+391+0+0+159.6+0,...addPropertyOverrides({kaCOhrfJ4:{y:(componentViewport?.y||0)+(120+((componentViewport?.height||919.5)-150-813.6)/2)+0+263+0+0+0+159.6+0},YczjDZfk8:{y:(componentViewport?.y||0)+64+0+255.8+0+0+0+159.6+0}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-8ie6sb-container\",layoutDependency:layoutDependency,layoutId:\"u5ykpw0i9-container\",nodeId:\"u5ykpw0i9\",rendersWithMotion:true,scopeId:\"FBO9CnB_6\",children:/*#__PURE__*/_jsx(SocialIcon,{height:\"100%\",id:\"u5ykpw0i9\",IiMRH2q0P:\"https://x.com/vsimple_\",layoutId:\"u5ykpw0i9\",style:{height:\"100%\",width:\"100%\"},vDncokxwm:\"XLogo\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:30,width:\"30px\",y:(componentViewport?.y||0)+100+0+391+0+0+159.6+0,...addPropertyOverrides({kaCOhrfJ4:{y:(componentViewport?.y||0)+(120+((componentViewport?.height||919.5)-150-813.6)/2)+0+263+0+0+0+159.6+0},YczjDZfk8:{y:(componentViewport?.y||0)+64+0+255.8+0+0+0+159.6+0}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-5wp76-container\",layoutDependency:layoutDependency,layoutId:\"RXQWCUfGt-container\",nodeId:\"RXQWCUfGt\",rendersWithMotion:true,scopeId:\"FBO9CnB_6\",children:/*#__PURE__*/_jsx(SocialIcon,{height:\"100%\",id:\"RXQWCUfGt\",IiMRH2q0P:\"https://www.instagram.com/vsimple_/\",layoutId:\"RXQWCUfGt\",style:{height:\"100%\",width:\"100%\"},vDncokxwm:\"InstagramLogo\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:30,width:\"30px\",y:(componentViewport?.y||0)+100+0+391+0+0+159.6+0,...addPropertyOverrides({kaCOhrfJ4:{y:(componentViewport?.y||0)+(120+((componentViewport?.height||919.5)-150-813.6)/2)+0+263+0+0+0+159.6+0},YczjDZfk8:{y:(componentViewport?.y||0)+64+0+255.8+0+0+0+159.6+0}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-125zqx5-container\",layoutDependency:layoutDependency,layoutId:\"DF3fY7V9L-container\",nodeId:\"DF3fY7V9L\",rendersWithMotion:true,scopeId:\"FBO9CnB_6\",children:/*#__PURE__*/_jsx(SocialIcon,{height:\"100%\",id:\"DF3fY7V9L\",IiMRH2q0P:\"https://www.linkedin.com/company/vsimple/\",layoutId:\"DF3fY7V9L\",style:{height:\"100%\",width:\"100%\"},vDncokxwm:\"LinkedinLogo\",width:\"100%\"})})})]})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1aw8mb5\",\"data-framer-name\":\"Right\",layoutDependency:layoutDependency,layoutId:\"D5SI2hJGw\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-5mqjhp\",\"data-framer-name\":\"Links\",layoutDependency:layoutDependency,layoutId:\"nVHA1CPlc\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-amoww1\",\"data-styles-preset\":\"RzAhCiscr\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-2ff9a6d4-dab7-4ef6-b4fa-9e88617ec594, rgb(255, 255, 255)))\"},children:\"Products\"})}),className:\"framer-6bae8r\",\"data-framer-name\":\"Use Link\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"me6nVzwfb\",style:{\"--extracted-r6o4lv\":\"var(--token-2ff9a6d4-dab7-4ef6-b4fa-9e88617ec594, rgb(255, 255, 255))\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"center\",withExternalLayout:true}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-18w3hl2\",\"data-framer-name\":\"Link\",layoutDependency:layoutDependency,layoutId:\"EFLnyYRpX\",children:[/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"v77_wm5K9\"},implicitPathVariables:undefined},{href:{webPageId:\"v77_wm5K9\"},implicitPathVariables:undefined},{href:{webPageId:\"v77_wm5K9\"},implicitPathVariables:undefined}],children:resolvedLinks1=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:24,y:(componentViewport?.y||0)+100+0+391+0+0+0+146+0+0,...addPropertyOverrides({kaCOhrfJ4:{y:(componentViewport?.y||0)+(120+((componentViewport?.height||919.5)-150-813.6)/2)+0+263+0+189.6+0+0+146+0+0},YczjDZfk8:{y:(componentViewport?.y||0)+64+0+255.8+0+213.6+0+0+0+146+0+0}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-vvq96x-container\",layoutDependency:layoutDependency,layoutId:\"BeyKRYEKU-container\",nodeId:\"BeyKRYEKU\",rendersWithMotion:true,scopeId:\"FBO9CnB_6\",children:/*#__PURE__*/_jsx(FooterLink,{height:\"100%\",id:\"BeyKRYEKU\",k8mHzE44c:resolvedLinks1[0],layoutId:\"BeyKRYEKU\",Rjqq1770W:\"vAI\",style:{height:\"100%\",width:\"100%\"},width:\"100%\",...addPropertyOverrides({kaCOhrfJ4:{k8mHzE44c:resolvedLinks1[1]},YczjDZfk8:{k8mHzE44c:resolvedLinks1[2]}},baseVariant,gestureVariant)})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"YZdvzwjns\"},implicitPathVariables:undefined},{href:{webPageId:\"YZdvzwjns\"},implicitPathVariables:undefined},{href:{webPageId:\"YZdvzwjns\"},implicitPathVariables:undefined}],children:resolvedLinks2=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:24,y:(componentViewport?.y||0)+100+0+391+0+0+0+146+0+32,...addPropertyOverrides({kaCOhrfJ4:{y:(componentViewport?.y||0)+(120+((componentViewport?.height||919.5)-150-813.6)/2)+0+263+0+189.6+0+0+146+0+32},YczjDZfk8:{y:(componentViewport?.y||0)+64+0+255.8+0+213.6+0+0+0+146+0+32}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1rpc8x9-container\",layoutDependency:layoutDependency,layoutId:\"A7bRoVKi6-container\",nodeId:\"A7bRoVKi6\",rendersWithMotion:true,scopeId:\"FBO9CnB_6\",children:/*#__PURE__*/_jsx(FooterLink,{height:\"100%\",id:\"A7bRoVKi6\",k8mHzE44c:resolvedLinks2[0],layoutId:\"A7bRoVKi6\",Rjqq1770W:\"Why Vsimple\",style:{height:\"100%\",width:\"100%\"},width:\"100%\",...addPropertyOverrides({kaCOhrfJ4:{k8mHzE44c:resolvedLinks2[1]},YczjDZfk8:{k8mHzE44c:resolvedLinks2[2]}},baseVariant,gestureVariant)})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"Ww2A7hcT_\"},implicitPathVariables:undefined},{href:{webPageId:\"Ww2A7hcT_\"},implicitPathVariables:undefined},{href:{webPageId:\"Ww2A7hcT_\"},implicitPathVariables:undefined}],children:resolvedLinks3=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:26,width:\"154px\",y:(componentViewport?.y||0)+100+0+391+0+0+0+146+0+64,...addPropertyOverrides({kaCOhrfJ4:{y:(componentViewport?.y||0)+(120+((componentViewport?.height||919.5)-150-813.6)/2)+0+263+0+189.6+0+0+146+0+64},YczjDZfk8:{y:(componentViewport?.y||0)+64+0+255.8+0+213.6+0+0+0+146+0+64}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1et4kkg-container\",layoutDependency:layoutDependency,layoutId:\"CHhL9wAGV-container\",nodeId:\"CHhL9wAGV\",rendersWithMotion:true,scopeId:\"FBO9CnB_6\",children:/*#__PURE__*/_jsx(FooterLink,{height:\"100%\",id:\"CHhL9wAGV\",k8mHzE44c:resolvedLinks3[0],layoutId:\"CHhL9wAGV\",Rjqq1770W:\"How Vsimple Works\",style:{width:\"100%\"},width:\"100%\",...addPropertyOverrides({kaCOhrfJ4:{k8mHzE44c:resolvedLinks3[1]},YczjDZfk8:{k8mHzE44c:resolvedLinks3[2]}},baseVariant,gestureVariant)})})})})]})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1v0hbkt\",\"data-framer-name\":\"Links\",layoutDependency:layoutDependency,layoutId:\"dBhu82BUx\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-amoww1\",\"data-styles-preset\":\"RzAhCiscr\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-2ff9a6d4-dab7-4ef6-b4fa-9e88617ec594, rgb(255, 255, 255)))\"},children:\"Industries\"})}),className:\"framer-1q6nyh8\",\"data-framer-name\":\"Use Link\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"JWWunNJF_\",style:{\"--extracted-r6o4lv\":\"var(--token-2ff9a6d4-dab7-4ef6-b4fa-9e88617ec594, rgb(255, 255, 255))\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"center\",withExternalLayout:true}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-o2gxsd\",\"data-framer-name\":\"Link\",layoutDependency:layoutDependency,layoutId:\"GWFB91veH\",children:[/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"nCKpFYTGk\"},implicitPathVariables:undefined},{href:{webPageId:\"nCKpFYTGk\"},implicitPathVariables:undefined},{href:{webPageId:\"nCKpFYTGk\"},implicitPathVariables:undefined}],children:resolvedLinks4=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:24,y:(componentViewport?.y||0)+100+0+391+0+0+0+146+0+0,...addPropertyOverrides({kaCOhrfJ4:{y:(componentViewport?.y||0)+(120+((componentViewport?.height||919.5)-150-813.6)/2)+0+263+0+189.6+0+0+146+0+0},YczjDZfk8:{y:(componentViewport?.y||0)+64+0+255.8+0+213.6+0+268+0+146+0+0}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1eq881j-container\",layoutDependency:layoutDependency,layoutId:\"w_xwk6yi6-container\",nodeId:\"w_xwk6yi6\",rendersWithMotion:true,scopeId:\"FBO9CnB_6\",children:/*#__PURE__*/_jsx(FooterLink,{height:\"100%\",id:\"w_xwk6yi6\",k8mHzE44c:resolvedLinks4[0],layoutId:\"w_xwk6yi6\",Rjqq1770W:\"Accounting\",style:{height:\"100%\",width:\"100%\"},width:\"100%\",...addPropertyOverrides({kaCOhrfJ4:{k8mHzE44c:resolvedLinks4[1]},YczjDZfk8:{k8mHzE44c:resolvedLinks4[2]}},baseVariant,gestureVariant)})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"DyriTULF3\"},implicitPathVariables:undefined},{href:{webPageId:\"DyriTULF3\"},implicitPathVariables:undefined},{href:{webPageId:\"DyriTULF3\"},implicitPathVariables:undefined}],children:resolvedLinks5=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:24,y:(componentViewport?.y||0)+100+0+391+0+0+0+146+0+32,...addPropertyOverrides({kaCOhrfJ4:{y:(componentViewport?.y||0)+(120+((componentViewport?.height||919.5)-150-813.6)/2)+0+263+0+189.6+0+0+146+0+32},YczjDZfk8:{y:(componentViewport?.y||0)+64+0+255.8+0+213.6+0+268+0+146+0+32}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1y6i1rn-container\",layoutDependency:layoutDependency,layoutId:\"bKFAuvZR6-container\",nodeId:\"bKFAuvZR6\",rendersWithMotion:true,scopeId:\"FBO9CnB_6\",children:/*#__PURE__*/_jsx(FooterLink,{height:\"100%\",id:\"bKFAuvZR6\",k8mHzE44c:resolvedLinks5[0],layoutId:\"bKFAuvZR6\",Rjqq1770W:\"Construction\",style:{height:\"100%\",width:\"100%\"},width:\"100%\",...addPropertyOverrides({kaCOhrfJ4:{k8mHzE44c:resolvedLinks5[1]},YczjDZfk8:{k8mHzE44c:resolvedLinks5[2]}},baseVariant,gestureVariant)})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"UtSIZE4_0\"},implicitPathVariables:undefined},{href:{webPageId:\"UtSIZE4_0\"},implicitPathVariables:undefined},{href:{webPageId:\"UtSIZE4_0\"},implicitPathVariables:undefined}],children:resolvedLinks6=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:24,y:(componentViewport?.y||0)+100+0+391+0+0+0+146+0+64,...addPropertyOverrides({kaCOhrfJ4:{y:(componentViewport?.y||0)+(120+((componentViewport?.height||919.5)-150-813.6)/2)+0+263+0+189.6+0+0+146+0+64},YczjDZfk8:{y:(componentViewport?.y||0)+64+0+255.8+0+213.6+0+268+0+146+0+64}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-s8h5f-container\",layoutDependency:layoutDependency,layoutId:\"w7n7tDvWh-container\",nodeId:\"w7n7tDvWh\",rendersWithMotion:true,scopeId:\"FBO9CnB_6\",children:/*#__PURE__*/_jsx(FooterLink,{height:\"100%\",id:\"w7n7tDvWh\",k8mHzE44c:resolvedLinks6[0],layoutId:\"w7n7tDvWh\",Rjqq1770W:\"Dealers & Distributors\",style:{height:\"100%\",width:\"100%\"},width:\"100%\",...addPropertyOverrides({kaCOhrfJ4:{k8mHzE44c:resolvedLinks6[1]},YczjDZfk8:{k8mHzE44c:resolvedLinks6[2]}},baseVariant,gestureVariant)})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"uX4J5FUZg\"},implicitPathVariables:undefined},{href:{webPageId:\"uX4J5FUZg\"},implicitPathVariables:undefined},{href:{webPageId:\"uX4J5FUZg\"},implicitPathVariables:undefined}],children:resolvedLinks7=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:26,width:\"154px\",y:(componentViewport?.y||0)+100+0+391+0+0+0+146+0+96,...addPropertyOverrides({kaCOhrfJ4:{y:(componentViewport?.y||0)+(120+((componentViewport?.height||919.5)-150-813.6)/2)+0+263+0+189.6+0+0+146+0+96},YczjDZfk8:{y:(componentViewport?.y||0)+64+0+255.8+0+213.6+0+268+0+146+0+96}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1rjwe0-container\",layoutDependency:layoutDependency,layoutId:\"HAhJROF5m-container\",nodeId:\"HAhJROF5m\",rendersWithMotion:true,scopeId:\"FBO9CnB_6\",children:/*#__PURE__*/_jsx(FooterLink,{height:\"100%\",id:\"HAhJROF5m\",k8mHzE44c:resolvedLinks7[0],layoutId:\"HAhJROF5m\",Rjqq1770W:\"Manufacturing\",style:{width:\"100%\"},width:\"100%\",...addPropertyOverrides({kaCOhrfJ4:{k8mHzE44c:resolvedLinks7[1]},YczjDZfk8:{k8mHzE44c:resolvedLinks7[2]}},baseVariant,gestureVariant)})})})})]})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-pzzg5x\",\"data-framer-name\":\"Links\",layoutDependency:layoutDependency,layoutId:\"FEMRKKxLc\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-amoww1\",\"data-styles-preset\":\"RzAhCiscr\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-2ff9a6d4-dab7-4ef6-b4fa-9e88617ec594, rgb(255, 255, 255)))\"},children:\"Company\"})}),className:\"framer-6xb0xn\",\"data-framer-name\":\"Use Link\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"IxD0VyD2W\",style:{\"--extracted-r6o4lv\":\"var(--token-2ff9a6d4-dab7-4ef6-b4fa-9e88617ec594, rgb(255, 255, 255))\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"center\",withExternalLayout:true}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-uxfzwi\",\"data-framer-name\":\"Link\",layoutDependency:layoutDependency,layoutId:\"vPpxvcx0p\",children:[/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"aOseySouS\"},implicitPathVariables:undefined},{href:{webPageId:\"aOseySouS\"},implicitPathVariables:undefined},{href:{webPageId:\"aOseySouS\"},implicitPathVariables:undefined}],children:resolvedLinks8=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:24,y:(componentViewport?.y||0)+100+0+391+0+0+0+146+0+0,...addPropertyOverrides({kaCOhrfJ4:{y:(componentViewport?.y||0)+(120+((componentViewport?.height||919.5)-150-813.6)/2)+0+263+0+189.6+0+0+146+0+0},YczjDZfk8:{y:(componentViewport?.y||0)+64+0+255.8+0+213.6+0+568+0+146+0+0}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-rcgb55-container\",layoutDependency:layoutDependency,layoutId:\"f7IwKSpCj-container\",nodeId:\"f7IwKSpCj\",rendersWithMotion:true,scopeId:\"FBO9CnB_6\",children:/*#__PURE__*/_jsx(FooterLink,{height:\"100%\",id:\"f7IwKSpCj\",k8mHzE44c:resolvedLinks8[0],layoutId:\"f7IwKSpCj\",Rjqq1770W:\"About Us\",style:{height:\"100%\",width:\"100%\"},width:\"100%\",...addPropertyOverrides({kaCOhrfJ4:{k8mHzE44c:resolvedLinks8[1]},YczjDZfk8:{k8mHzE44c:resolvedLinks8[2]}},baseVariant,gestureVariant)})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"augiA20Il\"},implicitPathVariables:undefined},{href:{webPageId:\"augiA20Il\"},implicitPathVariables:undefined},{href:{webPageId:\"augiA20Il\"},implicitPathVariables:undefined}],children:resolvedLinks9=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:24,y:(componentViewport?.y||0)+100+0+391+0+0+0+146+0+32,...addPropertyOverrides({kaCOhrfJ4:{y:(componentViewport?.y||0)+(120+((componentViewport?.height||919.5)-150-813.6)/2)+0+263+0+189.6+0+0+146+0+32},YczjDZfk8:{y:(componentViewport?.y||0)+64+0+255.8+0+213.6+0+568+0+146+0+32}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-16syy8l-container\",layoutDependency:layoutDependency,layoutId:\"WXC5i__8a-container\",nodeId:\"WXC5i__8a\",rendersWithMotion:true,scopeId:\"FBO9CnB_6\",children:/*#__PURE__*/_jsx(FooterLink,{height:\"100%\",id:\"WXC5i__8a\",k8mHzE44c:resolvedLinks9[0],layoutId:\"WXC5i__8a\",Rjqq1770W:\"Careers\",style:{height:\"100%\",width:\"100%\"},width:\"100%\",...addPropertyOverrides({kaCOhrfJ4:{k8mHzE44c:resolvedLinks9[1]},YczjDZfk8:{k8mHzE44c:resolvedLinks9[2]}},baseVariant,gestureVariant)})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"augiA20Il\"},implicitPathVariables:undefined},{href:{webPageId:\"augiA20Il\"},implicitPathVariables:undefined},{href:{webPageId:\"augiA20Il\"},implicitPathVariables:undefined}],children:resolvedLinks10=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:26,width:\"154px\",y:(componentViewport?.y||0)+100+0+391+0+0+0+146+0+64,...addPropertyOverrides({kaCOhrfJ4:{y:(componentViewport?.y||0)+(120+((componentViewport?.height||919.5)-150-813.6)/2)+0+263+0+189.6+0+0+146+0+64},YczjDZfk8:{y:(componentViewport?.y||0)+64+0+255.8+0+213.6+0+568+0+146+0+64}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1ej3t0k-container\",layoutDependency:layoutDependency,layoutId:\"zeNsYTE4u-container\",nodeId:\"zeNsYTE4u\",rendersWithMotion:true,scopeId:\"FBO9CnB_6\",children:/*#__PURE__*/_jsx(FooterLink,{height:\"100%\",id:\"zeNsYTE4u\",k8mHzE44c:resolvedLinks10[0],layoutId:\"zeNsYTE4u\",Rjqq1770W:\"Partnerships\",style:{width:\"100%\"},width:\"100%\",...addPropertyOverrides({kaCOhrfJ4:{k8mHzE44c:resolvedLinks10[1]},YczjDZfk8:{k8mHzE44c:resolvedLinks10[2]}},baseVariant,gestureVariant)})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"G9kMkT9Mv\"},implicitPathVariables:undefined},{href:{webPageId:\"G9kMkT9Mv\"},implicitPathVariables:undefined},{href:{webPageId:\"G9kMkT9Mv\"},implicitPathVariables:undefined}],children:resolvedLinks11=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:26,width:\"154px\",y:(componentViewport?.y||0)+100+0+391+0+0+0+146+0+98,...addPropertyOverrides({kaCOhrfJ4:{y:(componentViewport?.y||0)+(120+((componentViewport?.height||919.5)-150-813.6)/2)+0+263+0+189.6+0+0+146+0+98},YczjDZfk8:{y:(componentViewport?.y||0)+64+0+255.8+0+213.6+0+568+0+146+0+98}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-i4ch4-container\",layoutDependency:layoutDependency,layoutId:\"s4WAQyhIW-container\",nodeId:\"s4WAQyhIW\",rendersWithMotion:true,scopeId:\"FBO9CnB_6\",children:/*#__PURE__*/_jsx(FooterLink,{height:\"100%\",id:\"s4WAQyhIW\",k8mHzE44c:resolvedLinks11[0],layoutId:\"s4WAQyhIW\",Rjqq1770W:\"Newsroom\",style:{width:\"100%\"},width:\"100%\",...addPropertyOverrides({kaCOhrfJ4:{k8mHzE44c:resolvedLinks11[1]},YczjDZfk8:{k8mHzE44c:resolvedLinks11[2]}},baseVariant,gestureVariant)})})})})]})]})]})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-n8excq\",\"data-framer-name\":\"Footer\",layoutDependency:layoutDependency,layoutId:\"FONfobBe3\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-u9w6t4\",\"data-framer-name\":\"Line\",layoutDependency:layoutDependency,layoutId:\"ZrgeBLHZ8\",style:{backgroundColor:\"rgb(255, 255, 255)\",opacity:.15}}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1r6zxme\",\"data-framer-name\":\"Container\",layoutDependency:layoutDependency,layoutId:\"kMLk6dGcv\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1e7rr0f\",\"data-styles-preset\":\"MigD80yic\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-2ff9a6d4-dab7-4ef6-b4fa-9e88617ec594, rgb(255, 255, 255)))\"},children:\"\\xa9 2025 Vsimple Inc\"})}),className:\"framer-1wb2ie2\",\"data-framer-name\":\"Footer\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"JxHrycS06\",style:{\"--extracted-r6o4lv\":\"var(--token-2ff9a6d4-dab7-4ef6-b4fa-9e88617ec594, rgb(255, 255, 255))\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"center\",withExternalLayout:true,...addPropertyOverrides({YczjDZfk8:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1e7rr0f\",\"data-styles-preset\":\"MigD80yic\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-2ff9a6d4-dab7-4ef6-b4fa-9e88617ec594, rgb(255, 255, 255)))\"},children:\"\\xa9 2025 Vsimple Inc\"})})}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-89e4wr\",\"data-framer-name\":\"Right\",layoutDependency:layoutDependency,layoutId:\"SAb5dEPBn\",children:[/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"nm0D4XlxB\"},implicitPathVariables:undefined},{href:{webPageId:\"nm0D4XlxB\"},implicitPathVariables:undefined},{href:{webPageId:\"nm0D4XlxB\"},implicitPathVariables:undefined}],children:resolvedLinks12=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:24,y:(componentViewport?.y||0)+100+0+761+0+25+0+0,...addPropertyOverrides({kaCOhrfJ4:{y:(componentViewport?.y||0)+(120+((componentViewport?.height||919.5)-150-813.6)/2)+0+762.6+0+25+0+0},YczjDZfk8:{y:(componentViewport?.y||0)+64+0+1347.4+0+25+0+142+0}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1t1minb-container\",layoutDependency:layoutDependency,layoutId:\"AKse5TqPr-container\",nodeId:\"AKse5TqPr\",rendersWithMotion:true,scopeId:\"FBO9CnB_6\",children:/*#__PURE__*/_jsx(FooterLink,{height:\"100%\",id:\"AKse5TqPr\",k8mHzE44c:resolvedLinks12[0],layoutId:\"AKse5TqPr\",Rjqq1770W:\"Privacy Policy\",style:{height:\"100%\"},width:\"100%\",...addPropertyOverrides({kaCOhrfJ4:{k8mHzE44c:resolvedLinks12[1]},YczjDZfk8:{k8mHzE44c:resolvedLinks12[2]}},baseVariant,gestureVariant)})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"nm0D4XlxB\"},implicitPathVariables:undefined},{href:{webPageId:\"nm0D4XlxB\"},implicitPathVariables:undefined},{href:{webPageId:\"nm0D4XlxB\"},implicitPathVariables:undefined}],children:resolvedLinks13=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:24,y:(componentViewport?.y||0)+100+0+761+0+25+0+0,...addPropertyOverrides({kaCOhrfJ4:{y:(componentViewport?.y||0)+(120+((componentViewport?.height||919.5)-150-813.6)/2)+0+762.6+0+25+0+0},YczjDZfk8:{y:(componentViewport?.y||0)+64+0+1347.4+0+25+0+142+0}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1yzcjr-container\",layoutDependency:layoutDependency,layoutId:\"q7LK79n52-container\",nodeId:\"q7LK79n52\",rendersWithMotion:true,scopeId:\"FBO9CnB_6\",children:/*#__PURE__*/_jsx(FooterLink,{height:\"100%\",id:\"q7LK79n52\",k8mHzE44c:resolvedLinks13[0],layoutId:\"q7LK79n52\",Rjqq1770W:\"Terms of Service\",style:{height:\"100%\"},width:\"100%\",...addPropertyOverrides({kaCOhrfJ4:{k8mHzE44c:resolvedLinks13[1]},YczjDZfk8:{k8mHzE44c:resolvedLinks13[2]}},baseVariant,gestureVariant)})})})})]})]})]})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-t4ma67\",\"data-framer-name\":\"Bg\",layoutDependency:layoutDependency,layoutId:\"kOwWwjnSA\",style:{backgroundColor:\"var(--token-7bddd129-833e-4592-8d35-b38628f5587c, rgb(27, 12, 37))\",borderBottomLeftRadius:16,borderBottomRightRadius:16,borderTopLeftRadius:16,borderTopRightRadius:16},children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-2rmdgi\",\"data-framer-name\":\"Ellipse 28\",layoutDependency:layoutDependency,layoutId:\"HjGggKAMM\",style:{backgroundColor:\"rgb(208, 195, 255)\",borderBottomLeftRadius:\"100%\",borderBottomRightRadius:\"100%\",borderTopLeftRadius:\"100%\",borderTopRightRadius:\"100%\",filter:\"blur(80px)\",opacity:.24,WebkitFilter:\"blur(80px)\"}}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1dc31jf\",\"data-framer-name\":\"Ellipse 30\",layoutDependency:layoutDependency,layoutId:\"nOP7fqlLB\",style:{background:\"linear-gradient(140.01690378379098deg, rgb(255, 73, 212) 30%, rgb(213, 136, 251) 60.82658767700195%, rgb(239, 232, 246) 109.00000000000001%)\",borderBottomLeftRadius:\"100%\",borderBottomRightRadius:\"100%\",borderTopLeftRadius:\"100%\",borderTopRightRadius:\"100%\",filter:\"blur(80px)\",opacity:.18,WebkitFilter:\"blur(80px)\"}}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-exc9dq\",\"data-framer-name\":\"Bg\",layoutDependency:layoutDependency,layoutId:\"WAYM2Nuqw\",style:{opacity:.4}})]})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-KipsU.framer-1gsbmhq, .framer-KipsU .framer-1gsbmhq { display: block; }\",\".framer-KipsU.framer-1730qni { align-content: flex-start; align-items: flex-start; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: visible; padding: 100px 40px 24px 40px; position: relative; width: 1168px; }\",\".framer-KipsU .framer-ruan0o { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 100px; height: min-content; justify-content: center; max-width: 1240px; overflow: visible; padding: 0px; position: relative; width: 1px; z-index: 2; }\",\".framer-KipsU .framer-x0a4yg { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 32px; height: min-content; justify-content: flex-start; max-width: 800px; overflow: visible; padding: 0px; position: relative; width: 100%; z-index: 1; }\",\".framer-KipsU .framer-l5ink5 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-KipsU .framer-10bazes { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 12px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-KipsU .framer-1wrudev-container { flex: none; height: auto; position: relative; width: auto; }\",\".framer-KipsU .framer-4qx3u9 { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-KipsU .framer-1mzjrk6 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-KipsU .framer-gl8o67-container, .framer-KipsU .framer-yem845-container { flex: none; height: 50px; position: relative; width: 200px; }\",\".framer-KipsU .framer-9nc623, .framer-KipsU .framer-u9w6t4 { flex: none; height: 1px; overflow: hidden; position: relative; width: 100%; z-index: 1; }\",\".framer-KipsU .framer-l8f6mg { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; height: min-content; justify-content: space-between; overflow: hidden; padding: 0px; position: relative; width: 100%; z-index: 3; }\",\".framer-KipsU .framer-8ttgq1 { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 32px; height: min-content; justify-content: flex-start; max-width: 220px; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-KipsU .framer-1ispt8x { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-KipsU .framer-12ee7dv, .framer-KipsU .framer-5mqjhp, .framer-KipsU .framer-1v0hbkt, .framer-KipsU .framer-pzzg5x { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-KipsU .framer-1i1s8k { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 12px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-KipsU .framer-yakwdm { flex: none; height: 40px; position: relative; width: 106px; }\",\".framer-KipsU .framer-kcl2gv { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 4px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-KipsU .framer-1mvez9g, .framer-KipsU .framer-gs5c9t, .framer-KipsU .framer-1wb2ie2 { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-KipsU .framer-xef159 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-KipsU .framer-1y7rqwd-container, .framer-KipsU .framer-8ie6sb-container, .framer-KipsU .framer-5wp76-container, .framer-KipsU .framer-125zqx5-container { flex: none; height: 30px; position: relative; width: 30px; }\",\".framer-KipsU .framer-1aw8mb5 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 60px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: min-content; z-index: 0; }\",\".framer-KipsU .framer-6bae8r, .framer-KipsU .framer-1q6nyh8, .framer-KipsU .framer-6xb0xn { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 154px; word-break: break-word; word-wrap: break-word; }\",\".framer-KipsU .framer-18w3hl2, .framer-KipsU .framer-o2gxsd, .framer-KipsU .framer-uxfzwi { align-content: flex-start; align-items: flex-start; align-self: stretch; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: auto; }\",\".framer-KipsU .framer-vvq96x-container, .framer-KipsU .framer-1rpc8x9-container, .framer-KipsU .framer-1eq881j-container, .framer-KipsU .framer-1y6i1rn-container, .framer-KipsU .framer-s8h5f-container, .framer-KipsU .framer-rcgb55-container, .framer-KipsU .framer-16syy8l-container { flex: none; height: 24px; position: relative; width: 100%; }\",\".framer-KipsU .framer-1et4kkg-container, .framer-KipsU .framer-1rjwe0-container, .framer-KipsU .framer-1ej3t0k-container, .framer-KipsU .framer-i4ch4-container { flex: none; height: auto; position: relative; width: 154px; }\",\".framer-KipsU .framer-n8excq { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-KipsU .framer-1r6zxme { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; height: min-content; justify-content: space-between; overflow: hidden; padding: 0px; position: relative; width: 100%; z-index: 1; }\",\".framer-KipsU .framer-89e4wr { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 60px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-KipsU .framer-1t1minb-container, .framer-KipsU .framer-1yzcjr-container { flex: none; height: 24px; position: relative; width: auto; }\",\".framer-KipsU .framer-t4ma67 { align-content: center; align-items: center; bottom: 0px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; justify-content: center; left: calc(50.00000000000002% - 100% / 2); overflow: hidden; padding: 0px; position: absolute; top: 0px; width: 100%; will-change: var(--framer-will-change-override, transform); z-index: 0; }\",\".framer-KipsU .framer-2rmdgi { flex: none; height: 548px; left: -246px; position: absolute; top: -186px; width: 658px; z-index: 1; }\",\".framer-KipsU .framer-1dc31jf { flex: none; height: 548px; position: absolute; right: -86px; top: 590px; width: 658px; z-index: 1; }\",\".framer-KipsU .framer-exc9dq { flex: none; height: 100%; overflow: hidden; position: relative; width: 100%; z-index: 0; }\",\".framer-KipsU.framer-v-1tavtw1.framer-1730qni { align-content: center; align-items: center; padding: 120px 40px 30px 40px; width: 778px; }\",\".framer-KipsU.framer-v-1tavtw1 .framer-ruan0o, .framer-KipsU.framer-v-y8evng .framer-ruan0o { gap: 40px; }\",\".framer-KipsU.framer-v-1tavtw1 .framer-x0a4yg { max-width: 600px; }\",\".framer-KipsU.framer-v-1tavtw1 .framer-4qx3u9, .framer-KipsU.framer-v-y8evng .framer-4qx3u9 { --framer-text-wrap-override: balance; }\",\".framer-KipsU.framer-v-1tavtw1 .framer-l8f6mg { flex-direction: column; }\",\".framer-KipsU.framer-v-1tavtw1 .framer-8ttgq1, .framer-KipsU.framer-v-y8evng .framer-8ttgq1 { flex: none; width: 100%; }\",\".framer-KipsU.framer-v-y8evng.framer-1730qni { padding: 64px 16px 16px 16px; width: 374px; }\",\".framer-KipsU.framer-v-y8evng .framer-x0a4yg { max-width: 500px; }\",\".framer-KipsU.framer-v-y8evng .framer-1mzjrk6 { align-content: flex-start; align-items: flex-start; }\",\".framer-KipsU.framer-v-y8evng .framer-gl8o67-container, .framer-KipsU.framer-v-y8evng .framer-yem845-container { flex: 1 0 0px; width: 1px; }\",\".framer-KipsU.framer-v-y8evng .framer-l8f6mg { flex-direction: column; gap: 24px; justify-content: flex-start; }\",\".framer-KipsU.framer-v-y8evng .framer-1aw8mb5 { flex-direction: column; gap: 32px; }\",\".framer-KipsU.framer-v-y8evng .framer-1r6zxme { flex-direction: column; gap: 12px; justify-content: center; }\",\".framer-KipsU.framer-v-y8evng .framer-1wb2ie2 { white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-KipsU.framer-v-y8evng .framer-89e4wr { gap: unset; justify-content: space-evenly; width: 100%; }\",...sharedStyle.css,...sharedStyle1.css,...sharedStyle2.css,...sharedStyle3.css,...sharedStyle4.css];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 855.5\n * @framerIntrinsicWidth 1168\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"kaCOhrfJ4\":{\"layout\":[\"fixed\",\"auto\"]},\"YczjDZfk8\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerAutoSizeImages true\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n */const FramerFBO9CnB_6=withCSS(Component,css,\"framer-KipsU\");export default FramerFBO9CnB_6;FramerFBO9CnB_6.displayName=\"Footer\";FramerFBO9CnB_6.defaultProps={height:855.5,width:1168};addPropertyControls(FramerFBO9CnB_6,{variant:{options:[\"mVRYywzXp\",\"kaCOhrfJ4\",\"YczjDZfk8\"],optionTitles:[\"Desktop L\",\"Tablet\",\"Phone\"],title:\"Variant\",type:ControlType.Enum}});addFonts(FramerFBO9CnB_6,[{explicitInter:true,fonts:[{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/5vvr9Vy74if2I6bQbJvbw7SY1pQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/EOr0mi4hNtlgWNn9if640EZzXCo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Y9k9QrlZAqio88Klkmbd8VoMQc.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/OYrD2tBIBPvoJXiIHnLoOXnY9M.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/JeYwfuaPfZHQhEG8U5gtPDZ7WQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/vQyevYAyHtARFwPqUzQGpnDs.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/b6Y37FthZeALduNqHicBT6FutY.woff2\",weight:\"400\"},{family:\"General Sans\",source:\"fontshare\",style:\"normal\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/3RZHWSNONLLWJK3RLPEKUZOMM56GO4LJ/BPDRY7AHVI3MCDXXVXTQQ76H3UXA63S3/SB2OEB6IKZPRR6JT4GFJ2TFT6HBB6AZN.woff2\",weight:\"500\"},{family:\"General Sans\",source:\"fontshare\",style:\"normal\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/MFQT7HFGCR2L5ULQTW6YXYZXXHMPKLJ3/YWQ244D6TACUX5JBKATPOW5I5MGJ3G73/7YY3ZAAE3TRV2LANYOLXNHTPHLXVWTKH.woff2\",weight:\"400\"}]},...TagFonts,...ButtonButtonFonts,...SocialIconFonts,...FooterLinkFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts),...getFontsFromSharedStyle(sharedStyle2.fonts),...getFontsFromSharedStyle(sharedStyle3.fonts),...getFontsFromSharedStyle(sharedStyle4.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerFBO9CnB_6\",\"slots\":[],\"annotations\":{\"framerIntrinsicWidth\":\"1168\",\"framerContractVersion\":\"1\",\"framerColorSyntax\":\"true\",\"framerIntrinsicHeight\":\"855.5\",\"framerImmutableVariables\":\"true\",\"framerComponentViewportWidth\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"kaCOhrfJ4\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"YczjDZfk8\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerDisplayContentsDiv\":\"false\",\"framerAutoSizeImages\":\"true\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (2306ade)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,Container,cx,GeneratedComponentContext,getFonts,getPropertyControls,PropertyOverrides,RenderTarget,useCustomCursors,useHydratedBreakpointVariants,useIsOnFramerCanvas,useLocaleInfo,withCSS}from\"framer\";import{LayoutGroup,motion}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import SmoothScroll from\"https://framerusercontent.com/modules/Yppqt3Cs3Y8TZqvASnXl/PGrowqBrgWCViHduGfsA/SmoothScroll_Prod.js\";import Navigation from\"#framer/local/canvasComponent/ceK4xa7Hn/ceK4xa7Hn.js\";import Footer from\"#framer/local/canvasComponent/FBO9CnB_6/FBO9CnB_6.js\";const SmoothScrollFonts=getFonts(SmoothScroll);const NavigationFonts=getFonts(Navigation);const FooterFonts=getFonts(Footer);const FooterControls=getPropertyControls(Footer);const breakpoints={chg8dcK5P:\"(min-width: 1200px)\",Q0SOMrJNK:\"(max-width: 809px)\",uL8CbTCvH:\"(min-width: 810px) and (max-width: 1199px)\"};const isBrowser=()=>typeof document!==\"undefined\";const serializationHash=\"framer-zD0wS\";const variantClassNames={chg8dcK5P:\"framer-v-1hmmxt8\",Q0SOMrJNK:\"framer-v-u81ilo\",uL8CbTCvH:\"framer-v-wmf85w\"};const breakpointRules={Q0SOMrJNK:[\".framer-zD0wS.framer-1hmmxt8 { padding: 8px; }\"]};const breakpointKeys=Object.keys(breakpointRules);const selectors={Q0SOMrJNK:\".framer-u81ilo-override\"};const rules=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-zD0wS.framer-4on2as, .framer-zD0wS .framer-4on2as { display: block; }\",\".framer-zD0wS.framer-1hmmxt8 { align-content: center; align-items: center; background-color: var(--token-97c47d8c-52b8-46e3-8ddb-ef0f78ad9d88, #f7f6f7); display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: visible; padding: 16px; position: relative; width: 100%; }\",\".framer-zD0wS .framer-9tnql-container { flex: none; height: auto; position: relative; width: auto; }\",\".framer-zD0wS .framer-19fixqa-container { flex: none; height: auto; left: 50%; position: var(--framer-canvas-fixed-position, fixed); top: 0px; transform: translateX(-50%); width: 100%; z-index: 10; }\",\".framer-zD0wS .framer-1hhvw1u { background: transparent; flex-grow: 1; height: 0px; margin: 0px; margin-bottom: -0px; position: relative; width: 0px; }\",\".framer-zD0wS .framer-5qykly-container { flex: none; height: auto; max-width: 1920px; order: 1003; position: relative; width: 100%; }\",'[data-layout-template=\"true\"] > #overlay { margin-bottom: -0px; }'];const mediaQueries={chg8dcK5P:\"(min-width: 1200px)\",Q0SOMrJNK:\"(max-width: 809px)\",uL8CbTCvH:\"(min-width: 810px) and (max-width: 1199px)\"};const HTMLStyle=({value})=>{const onCanvas=useIsOnFramerCanvas();if(onCanvas)return null;return /*#__PURE__*/_jsx(\"style\",{dangerouslySetInnerHTML:{__html:value},\"data-framer-html-style\":\"\"});};const humanReadableEnumMap={\"Desktop L\":\"mVRYywzXp\",Phone:\"YczjDZfk8\",Tablet:\"kaCOhrfJ4\"};const humanReadableVariantMap={Desktop:\"chg8dcK5P\",Phone:\"Q0SOMrJNK\",Tablet:\"uL8CbTCvH\"};const getProps=({footerVariant,height,id,width,...props})=>{return{...props,fYVsGsB8l:humanReadableEnumMap[footerVariant]??footerVariant??props.fYVsGsB8l??\"mVRYywzXp\",variant:humanReadableVariantMap[props.variant]??props.variant??\"chg8dcK5P\"};};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{style,className,layoutId,variant,fYVsGsB8l,children,...restProps}=getProps(props);const[baseVariant,hydratedBaseVariant]=useHydratedBreakpointVariants(variant,breakpoints,false);const gestureVariant=undefined;const sharedStyleClassNames=[];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);useCustomCursors({});return /*#__PURE__*/_jsx(GeneratedComponentContext.Provider,{value:{isLayoutTemplate:true,primaryVariantId:\"chg8dcK5P\",variantClassNames},children:/*#__PURE__*/_jsxs(LayoutGroup,{id:layoutId??defaultLayoutId,children:[/*#__PURE__*/_jsx(HTMLStyle,{value:\":root body { background: var(--token-97c47d8c-52b8-46e3-8ddb-ef0f78ad9d88, rgb(247, 246, 247)); }\"}),/*#__PURE__*/_jsxs(motion.div,{...restProps,className:cx(scopingClassNames,\"framer-1hmmxt8\",className),\"data-layout-template\":true,ref:refBinding,style:{...style},children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-9tnql-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"cIQqd5f0_\",scopeId:\"f3ZoosNUp\",children:/*#__PURE__*/_jsx(SmoothScroll,{height:\"100%\",id:\"cIQqd5f0_\",intensity:2,layoutId:\"cIQqd5f0_\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:96,width:\"100vw\",y:0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-19fixqa-container\",\"data-framer-layout-hint-center-x\":true,layoutScroll:true,nodeId:\"HMGqDbPEH\",scopeId:\"f3ZoosNUp\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Q0SOMrJNK:{variant:\"HPRmwxtsy\"},uL8CbTCvH:{variant:\"HPRmwxtsy\"}},children:/*#__PURE__*/_jsx(Navigation,{height:\"100%\",id:\"HMGqDbPEH\",layoutId:\"HMGqDbPEH\",style:{width:\"100%\"},variant:\"H_1uSyekq\",width:\"100%\"})})})}),children,/*#__PURE__*/_jsx(\"div\",{className:\"framer-1hhvw1u\"}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Q0SOMrJNK:{width:\"min(100vw - 16px, 1920px)\",y:1208}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:855,width:\"min(100vw - 32px, 1920px)\",y:1216,children:/*#__PURE__*/_jsx(Container,{className:\"framer-5qykly-container\",nodeId:\"qfrkTNt3_\",scopeId:\"f3ZoosNUp\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Q0SOMrJNK:{variant:\"YczjDZfk8\"},uL8CbTCvH:{variant:\"kaCOhrfJ4\"}},children:/*#__PURE__*/_jsx(Footer,{height:\"100%\",id:\"qfrkTNt3_\",layoutId:\"qfrkTNt3_\",style:{maxWidth:\"100%\",width:\"100%\"},variant:fYVsGsB8l,width:\"100%\"})})})})})]}),/*#__PURE__*/_jsx(\"div\",{id:\"template-overlay\"})]})});});const css=target=>{const isStaticRenderer=target===RenderTarget.canvas||target===RenderTarget.export;if(!isStaticRenderer){return[...rules,...breakpointKeys.map(key=>{const query=mediaQueries[key];return`@media ${query} { ${breakpointRules[key].join(\" \")} }`;})];}return[...rules,...breakpointKeys.flatMap(key=>{const selector=selectors[key];return breakpointRules[key].map(rule=>`${selector} {${rule}}`);})];};/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 2137\n * @framerIntrinsicWidth 1200\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]},\"uL8CbTCvH\":{\"layout\":[\"fixed\",\"fixed\"]},\"Q0SOMrJNK\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerVariables {\"fYVsGsB8l\":\"footerVariant\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerAutoSizeImages true\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n * @framerHitTargets {\"chg8dcK5P\":[\".framer-9tnql-container\",\".framer-19fixqa-container\",\".framer-5qykly-container\"],\"uL8CbTCvH\":[\".framer-9tnql-container\",\".framer-19fixqa-container\",\".framer-5qykly-container\"],\"Q0SOMrJNK\":[\".framer-9tnql-container\",\".framer-19fixqa-container\",\".framer-5qykly-container\"]}\n * @framerBreakpoints {\"chg8dcK5P\":{\"min\":1200,\"canvasClassName\":\"framer-1hmmxt8-override\",\"minHeight\":2137,\"name\":\"Desktop\",\"width\":1200,\"rootFontSize\":16},\"uL8CbTCvH\":{\"min\":810,\"max\":1199,\"canvasClassName\":\"framer-wmf85w-override\",\"minHeight\":2137,\"viewportHeight\":1080,\"name\":\"Tablet\",\"width\":810,\"rootFontSize\":16},\"Q0SOMrJNK\":{\"max\":809,\"canvasClassName\":\"framer-u81ilo-override\",\"minHeight\":2137,\"viewportHeight\":844,\"name\":\"Phone\",\"width\":390,\"rootFontSize\":16}}\n * @framerDefaultVariant chg8dcK5P\n * @framerLayoutTemplate\n */const Framerf3ZoosNUp=withCSS(Component,css,\"framer-zD0wS\");export default Framerf3ZoosNUp;Framerf3ZoosNUp.displayName=\"Main\";Framerf3ZoosNUp.defaultProps={height:2137,width:1200};addPropertyControls(Framerf3ZoosNUp,{fYVsGsB8l:FooterControls?.[\"variant\"]&&{...FooterControls[\"variant\"],defaultValue:\"mVRYywzXp\",description:undefined,hidden:undefined,title:\"Footer Variant\"}});addFonts(Framerf3ZoosNUp,[{explicitInter:true,fonts:[]},...SmoothScrollFonts,...NavigationFonts,...FooterFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"Framerf3ZoosNUp\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\",\"framerHitTargets\":\"{\\\"chg8dcK5P\\\":[\\\".framer-9tnql-container\\\",\\\".framer-19fixqa-container\\\",\\\".framer-5qykly-container\\\"],\\\"uL8CbTCvH\\\":[\\\".framer-9tnql-container\\\",\\\".framer-19fixqa-container\\\",\\\".framer-5qykly-container\\\"],\\\"Q0SOMrJNK\\\":[\\\".framer-9tnql-container\\\",\\\".framer-19fixqa-container\\\",\\\".framer-5qykly-container\\\"]}\",\"framerComponentViewportWidth\":\"true\",\"framerBreakpoints\":\"{\\\"chg8dcK5P\\\":{\\\"min\\\":1200,\\\"canvasClassName\\\":\\\"framer-1hmmxt8-override\\\",\\\"minHeight\\\":2137,\\\"name\\\":\\\"Desktop\\\",\\\"width\\\":1200,\\\"rootFontSize\\\":16},\\\"uL8CbTCvH\\\":{\\\"min\\\":810,\\\"max\\\":1199,\\\"canvasClassName\\\":\\\"framer-wmf85w-override\\\",\\\"minHeight\\\":2137,\\\"viewportHeight\\\":1080,\\\"name\\\":\\\"Tablet\\\",\\\"width\\\":810,\\\"rootFontSize\\\":16},\\\"Q0SOMrJNK\\\":{\\\"max\\\":809,\\\"canvasClassName\\\":\\\"framer-u81ilo-override\\\",\\\"minHeight\\\":2137,\\\"viewportHeight\\\":844,\\\"name\\\":\\\"Phone\\\",\\\"width\\\":390,\\\"rootFontSize\\\":16}}\",\"framerVariables\":\"{\\\"fYVsGsB8l\\\":\\\"footerVariant\\\"}\",\"framerDefaultVariant\":\"chg8dcK5P\",\"framerAutoSizeImages\":\"true\",\"framerImmutableVariables\":\"true\",\"framerIntrinsicWidth\":\"1200\",\"framerIntrinsicHeight\":\"2137\",\"framerLayoutTemplate\":\"\",\"framerDisplayContentsDiv\":\"false\",\"framerColorSyntax\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"uL8CbTCvH\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"Q0SOMrJNK\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "\r\n        import * as Framer from \"framer\";\r\nimport * as React from \"react\";\r\nimport { createPortal } from \"react-dom\";\r\nimport * as ReactDOM from \"react-dom/client\";\r\nimport Main from \"https://framerusercontent.com/modules/wO2FmyOabySK6itNFhd2/cQJlLlkMuzHUJdrHPf19/f3ZoosNUp.js\";\r\n\r\n        const routes = {augiA20Il: {elements: {A3gZIwp3r: \"sip\", bbUVglydI: \"solution\", HYAtyHIZ9: \"features\", i5atHXchd: \"nav-trigger\", j7ntcIDHN: \"testimonial\", KbhKvCnzN: \"problem\", ukvIkT_VN: \"process\", WSN5u_flb: \"hero\"}, page: Framer.lazy(() => import(\"https://framerusercontent.com/modules/22tJWYVB6KDmMIes93Bs/aqkqz9sWWZy3ej4YA4JI/augiA20Il.js\")), path: \"/\"}, yPBWQ56a0: {elements: {}, page: Framer.lazy(() => import(\"https://framerusercontent.com/modules/eEXm5F7Z4QUFhcONp1QF/vtMrHvxx9i0Uy53G87tT/yPBWQ56a0.js\")), path: \"/404\"}, G9kMkT9Mv: {elements: {}, page: Framer.lazy(() => import(\"https://framerusercontent.com/modules/dhHybznq2RAuzb21nBN0/iVabBS8E7fNHuyDjWOoB/G9kMkT9Mv.js\")), path: \"/contact\"}, o8pxaTIBU: {elements: {}, page: Framer.lazy(() => import(\"https://framerusercontent.com/modules/vidJX7BBxpW8NoxcKOxj/7SllHFYZ72y1SpjJgoMs/o8pxaTIBU.js\")), path: \"/get-started\"}, nm0D4XlxB: {elements: {}, page: Framer.lazy(() => import(\"https://framerusercontent.com/modules/2Z1TXEv9W3GfFmnh7z5E/r1AE9vIKLsrl39Odet28/nm0D4XlxB.js\")), path: \"/privacy-policy\"}, g6WCdQaSj: {elements: {iQbrwH3Nw: \"nav-trigger\"}, page: Framer.lazy(() => import(\"https://framerusercontent.com/modules/67rL8yZXF8LRg80ytqjT/Wv1R3c0fj0zGTC5ZQGQT/g6WCdQaSj.js\")), path: \"/blog\"}, UtSIZE4_0: {elements: {OYoGq2ReS: \"problem\", p6Juaq4jw: \"nav-trigger\", pwM0SJmT2: \"hero\", WcX0Jox4x: \"testimonial\", ZqfUUZTaC: \"solution\"}, page: Framer.lazy(() => import(\"https://framerusercontent.com/modules/lQCGyJX2SCrt9YO9HyNF/C4hNZWkmL0jN8G0QZJ9x/UtSIZE4_0.js\")), path: \"/material-handling\"}, nCKpFYTGk: {elements: {JMnXpMhdx: \"testimonial\", s0ORds2P7: \"tax\", twSEaLmuo: \"hero\", wSZGCfulN: \"audit\", ZpMItXllm: \"nav-trigger\"}, page: Framer.lazy(() => import(\"https://framerusercontent.com/modules/sM99oVVdhoutoqyViBUQ/001Lttn9kPEHHSV7XqA1/nCKpFYTGk.js\")), path: \"/accounting\"}, uX4J5FUZg: {elements: {dS8d4x4r3: \"nav-trigger\", JKfpfj_EK: \"hero\", jQfDtWih5: \"testimonial\", WNybs1EKL: \"solution\"}, page: Framer.lazy(() => import(\"https://framerusercontent.com/modules/rMMnKXlTSfs1nrSBj2gA/Dk78FCFDDZbLTgzAYceo/uX4J5FUZg.js\")), path: \"/manufacturing\"}, DyriTULF3: {elements: {aBKaEJBXc: \"nav-trigger\", AO9MgnMUE: \"solution\", ONjkjQEHa: \"testimonial\", yRc83M0Xd: \"hero\"}, page: Framer.lazy(() => import(\"https://framerusercontent.com/modules/7zpU1Cp5DFltl8FANgB8/0wnSgkoaWOIBwM64jlWW/DyriTULF3.js\")), path: \"/construction\"}, YZdvzwjns: {elements: {cpJseoNco: \"more-than-software\", cwwO09Llk: \"connected-for-growth\", jW9wDy1yY: \"done-for-you\", mrcfiDfPC: \"nav-trigger\", SVL9QV1LI: \"hero\"}, page: Framer.lazy(() => import(\"https://framerusercontent.com/modules/7ADM9tKcLUS4auEBTvrJ/ydM6KMOaTzmU4JIXEgTQ/YZdvzwjns.js\")), path: \"/why-vsimple\"}, v77_wm5K9: {elements: {FyCBv_avx: \"services\", g23TT8bna: \"about\", QzEVUKwso: \"scroll-trigger\", tT3tdFuk3: \"faq\", vB4CLSPzu: \"process\", zhaIxQqhv: \"reviews\"}, page: Framer.lazy(() => import(\"https://framerusercontent.com/modules/4MBbLqrvwXpTkflfLMPD/qKkZh1DeFAxWifcWDwjA/v77_wm5K9.js\")), path: \"/vai\"}, Ww2A7hcT_: {elements: {AF7mHTAEB: \"nav-trigger\", jBX8petE6: \"hero\", JKMg0_Xs2: \"stages\"}, page: Framer.lazy(() => import(\"https://framerusercontent.com/modules/pT45xvQptWnk8QfsPJOD/W34nECPNcLWHVI3mq1fs/Ww2A7hcT_.js\")), path: \"/how-it-works\"}, oujql2Vsn: {elements: {jNlPks1mF: \"nav-trigger\", XEwP51a1N: \"hero\"}, page: Framer.lazy(() => import(\"https://framerusercontent.com/modules/AatBRwk2Tx8BMPsH618b/JEUi7xo0poz1OHNf0vXT/oujql2Vsn.js\")), path: \"/customer-stories\"}, B1g3PVynN: {elements: {veJJW20TU: \"hero\"}, page: Framer.lazy(() => import(\"https://framerusercontent.com/modules/zBRkKQAyrp1NzZcrUUfx/oilmgTPdN8XZiDq8O9dp/B1g3PVynN.js\")), path: \"/form-submitted\"}, pqsQBnHiO: {elements: {jvDS3V65b: \"nav-trigger\"}, page: Framer.lazy(() => import(\"https://framerusercontent.com/modules/H988yDnedGXguBDTYBXR/x7tI8GpC43Qz4BsY2MYw/pqsQBnHiO.js\")), path: \"/bourbon-giveaway\"}, aOseySouS: {elements: {DumH_Z7gx: \"solution\", K7MzNOOrW: \"hero\"}, page: Framer.lazy(() => import(\"https://framerusercontent.com/modules/i0r8bYvOxD9H8FcAv9NN/M0FgfPIOlPO9fCU0l43l/aOseySouS.js\")), path: \"/about-us\"}, VB04Dwgbu: {collectionId: \"tzWsh6V_N\", elements: {TX0pMmMcx: \"nav-tigger\"}, page: Framer.lazy(() => import(\"https://framerusercontent.com/modules/t166h3Vjn61JKkjFjn5U/y1i1zi70yEsgg0yk4jxS/VB04Dwgbu.js\")), path: \"/blog/:v_Okvr3C3\"}, wP1BQNtAk: {collectionId: \"mfZrijj85\", elements: {DASBU0Y_p: \"hero\", ffD2dcElL: \"what-we-did\", K5b2JtUk3: \"needs\", qsAUoskM3: \"solutions\"}, page: Framer.lazy(() => import(\"https://framerusercontent.com/modules/d7Pf7hW9Y7vcIvA4kbb8/m3KuPkJLIIcxpnF2pBTN/wP1BQNtAk.js\")), path: \"/customer-stories/:zVABNivSf\"}}\r\n\r\n        const locales = [{code: \"en\", id: \"default\", name: \"English\", slug: \"\"}]\r\n        const collectionUtils = {mfZrijj85: async () => (await import(\"https://framerusercontent.com/modules/i8Bjpw2IvzOo4CFkLRi0/2C9sm7ncw8geQAO0IuFE/mfZrijj85.js\"))?.[\"utils\"], tzWsh6V_N: async () => (await import(\"https://framerusercontent.com/modules/vuqiYx7t0muM4tR55n9H/zyMjYJkz2d3j5C59R0Rx/tzWsh6V_N.js\"))?.[\"utils\"]}\r\n        const framerSiteId = \"3c2869f64f27da34e0d122dccefb53f70b5409897470ff40d0af99774ccb49a9\"\r\n        function Template({routeId, children, style, ...rest}) {const props1 = {fYVsGsB8l: \"mVRYywzXp\"}\r\nconst templateProps = {aOseySouS: props1, augiA20Il: props1, B1g3PVynN: props1, DyriTULF3: props1, g6WCdQaSj: props1, G9kMkT9Mv: props1, nCKpFYTGk: props1, nm0D4XlxB: props1, o8pxaTIBU: props1, oujql2Vsn: props1, pqsQBnHiO: props1, txMdzrna4: props1, UtSIZE4_0: props1, uX4J5FUZg: props1, VB04Dwgbu: props1, wP1BQNtAk: props1, Ww2A7hcT_: props1, yPBWQ56a0: props1, YZdvzwjns: props1}\r\nconst props = templateProps[routeId] ?? {}\r\nswitch (routeId) {case \"augiA20Il\":\r\ncase \"yPBWQ56a0\":\r\ncase \"G9kMkT9Mv\":\r\ncase \"o8pxaTIBU\":\r\ncase \"nm0D4XlxB\":\r\ncase \"g6WCdQaSj\":\r\ncase \"UtSIZE4_0\":\r\ncase \"nCKpFYTGk\":\r\ncase \"uX4J5FUZg\":\r\ncase \"DyriTULF3\":\r\ncase \"YZdvzwjns\":\r\ncase \"Ww2A7hcT_\":\r\ncase \"oujql2Vsn\":\r\ncase \"txMdzrna4\":\r\ncase \"B1g3PVynN\":\r\ncase \"pqsQBnHiO\":\r\ncase \"aOseySouS\":\r\ncase \"VB04Dwgbu\":\r\ncase \"wP1BQNtAk\":\r\nreturn React.createElement(Main, {...props, key: \"Main\", routeId, style}, children(true));\r\ndefault: { return children(false) }}}\r\nexport function getLayoutTemplateBreakpoints(routeId) {switch (routeId) {case \"augiA20Il\":\r\ncase \"yPBWQ56a0\":\r\ncase \"G9kMkT9Mv\":\r\ncase \"o8pxaTIBU\":\r\ncase \"nm0D4XlxB\":\r\ncase \"g6WCdQaSj\":\r\ncase \"UtSIZE4_0\":\r\ncase \"nCKpFYTGk\":\r\ncase \"uX4J5FUZg\":\r\ncase \"DyriTULF3\":\r\ncase \"YZdvzwjns\":\r\ncase \"Ww2A7hcT_\":\r\ncase \"oujql2Vsn\":\r\ncase \"txMdzrna4\":\r\ncase \"B1g3PVynN\":\r\ncase \"pqsQBnHiO\":\r\ncase \"aOseySouS\":\r\ncase \"VB04Dwgbu\":\r\ncase \"wP1BQNtAk\":\r\nreturn [{hash: \"1hmmxt8\", mediaQuery: \"(min-width: 1200px)\"}, {hash: \"wmf85w\", mediaQuery: \"(min-width: 810px) and (max-width: 1199px)\"}, {hash: \"u81ilo\", mediaQuery: \"(max-width: 809px)\"}]\r\ndefault: { return undefined }}}\r\n\r\n        export async function getPageRoot({ routeId, pathVariables, localeId }) {\r\n            const rootPreload = routes[routeId].page.preload()\r\n\r\n            const content = React.createElement(\r\n                Framer.PageRoot,\r\n                {\r\n                    isWebsite: true,\r\n                    routeId,\r\n                    pathVariables,\r\n                    routes,\r\n                    collectionUtils,\r\n                    framerSiteId,\r\n                    notFoundPage: Framer.lazy(() => import(\"https://framerusercontent.com/modules/eEXm5F7Z4QUFhcONp1QF/vtMrHvxx9i0Uy53G87tT/yPBWQ56a0.js\")),\r\n                    isReducedMotion: undefined,\r\n                    localeId,\r\n                    locales,\r\n                    preserveQueryParams: undefined,\r\n                    siteCanonicalURL: \"https://www.vsimple.com\",\r\n                    EditorBar: \r\ntypeof window === \"undefined\" ? undefined : (() => {\r\n    const isBot = /bot|-google|google-|yandex|ia_archiver|crawl|spider/iu.test(navigator.userAgent)\r\n    if (isBot) return\r\n\r\n    return Framer.lazy(async () => {\r\n        const { createEditorBar } = await import(\"https://edit.framer.com/init.mjs\")\r\n        return {\r\n            default: createEditorBar({\r\n                dependencies: {\r\n                    __version: 1,\r\n                    framer: {\r\n                        useCurrentRoute: Framer.useCurrentRoute,\r\n                        useLocaleInfo: Framer.useLocaleInfo,\r\n                        useRouter: Framer.useRouter,\r\n                    },\r\n                    react: {\r\n                        createElement: React.createElement,\r\n                        memo: React.memo,\r\n                        useCallback: React.useCallback,\r\n                        useEffect: React.useEffect,\r\n                        useRef: React.useRef,\r\n                        useState: React.useState,\r\n                    },\r\n                    \"react-dom\": { createPortal },\r\n                },\r\n            }),\r\n        }\r\n    })\r\n})()\r\n,\r\n                    LayoutTemplate: Template,\r\n                }\r\n            )\r\n\r\n            const contentWithFeaturesContext = React.createElement(\r\n                Framer.LibraryFeaturesProvider,\r\n                {\r\n                    children: content,\r\n                    value: {editorBarOnPageEditing: false, pauseOffscreen: true, replaceNestedLinks: true}\r\n                }\r\n            )\r\n\r\n            const contentWithGracefullyDegradingErrorBoundary = React.createElement(Framer.GracefullyDegradingErrorBoundary, {\r\n                children: contentWithFeaturesContext\r\n            })\r\n\r\n            \r\n            const page = React.createElement(Framer.PageEffectsProvider, {\r\n                children: contentWithGracefullyDegradingErrorBoundary,\r\n                value: {global: {enter: {mask: {angle: 180, type: \"wipe\", width: \"100%\"}, opacity: 1, rotate: 0, rotate3d: false, rotateX: 0, rotateY: 0, scale: 1, transition: {damping: 30, delay: 0, duration: 0.5, ease: [0.27, 0, 0.51, 1], mass: 1, stiffness: 400, type: \"tween\"}, x: \"0px\", y: \"0px\"}}, routes: {}}\r\n            })\r\n\r\n            // We don't want the initial render to immediately have to suspend.\r\n            await rootPreload\r\n            return page\r\n        }\r\n\r\n        const isBrowser = typeof document !== \"undefined\"\r\n        if (isBrowser) {\r\n            window.__framer_importFromPackage = (packageAndFilename, exportIdentifier) => () => {\r\n                return React.createElement(Framer.ErrorPlaceholder, { error: 'Package component not supported: \"' + exportIdentifier + '\" in \"' + packageAndFilename + '\"' })\r\n            }\r\n\r\n            // A lot of libraries assume process.env.NODE_ENV is present in runtime/buildtime, so we are polyfilling it\r\n            window.process = {\r\n                ...window.process,\r\n                env: {\r\n                    ...(window.process ? window.process.env: undefined),\r\n                    NODE_ENV: \"production\"\r\n                }\r\n            }\r\n\r\n            window.__framer_events = window.__framer_events || []\r\n\r\n            // Fallback support for stack gaps\r\n            Framer.installFlexboxGapWorkaroundIfNeeded()\r\n\r\n            const container = document.getElementById(\"main\")\r\n            // We know that #main is parsed before this script, so we don't need to wait for DOMContentLoaded or similar events.\r\n            if (\"framerHydrateV2\" in container.dataset) main(true, container)\r\n            else main(false, container)\r\n        }\r\n\r\n        function track() {\r\n            if (!isBrowser) return\r\n            window.__framer_events.push(arguments)\r\n        }\r\n\r\n        async function main(shouldHydrate, container) {\r\n            function handleError(error, errorInfo, recoverable = true) {\r\n                if (error.caught || window.__framer_hadFatalError) return // we already logged it\r\n\r\n                const componentStack = errorInfo?.componentStack\r\n                if (recoverable) {\r\n                    console.warn(\"Recoverable error has happened. Please check any custom code or code overrides to fix server/client mismatches:\\n\", error, componentStack)\r\n                    // we only want to collect 1%, because this can be quite noisy (floods the data pipeline)\r\n                    if (Math.random() > 0.01) return\r\n                } else {\r\n                    console.error(\"Fatal crash has happened. If you are the author of this website, please report this issue to the Framer team via https://www.framer.community/:\\n\", error, componentStack)\r\n                }\r\n                track(recoverable ? \"published_site_load_recoverable_error\" : \"published_site_load_error\", {\r\n                    message: String(error),\r\n                    componentStack, // componentStack is more useful\r\n                    stack: componentStack ? undefined : error instanceof Error && typeof error.stack === \"string\" ? error.stack : null,\r\n                })\r\n            }\r\n\r\n            try {\r\n                let routeId, localeId, pathVariables, breakpoints\r\n                if (shouldHydrate) {\r\n                    const routeData = JSON.parse(container.dataset.framerHydrateV2)\r\n                    routeId = routeData.routeId\r\n                    localeId = routeData.localeId\r\n                    pathVariables = routeData.pathVariables\r\n                    breakpoints = routeData.breakpoints\r\n\r\n                    routeId = Framer.patchRoutesForABTesting(routes, routeId) // Prioritize optimized route id to avoid flickering in browsers not supporting the server-timing header (Safari older than 16.4)\r\n                } else {\r\n                    Framer.patchRoutesForABTesting(routes, undefined) // This must happen before inferInitialRouteFromPath\r\n\r\n                    const routeData = Framer.inferInitialRouteFromPath(routes, decodeURIComponent(location.pathname), true, locales)\r\n                    routeId = routeData.routeId\r\n                    localeId = routeData.localeId\r\n                    pathVariables = routeData.pathVariables\r\n                }\r\n\r\n                const pagePromise = getPageRoot({ routeId, localeId, pathVariables })\r\n\r\n                \r\nif (typeof window !== \"undefined\") {\r\n    void (async () => {\r\n        const route = routes[routeId]\r\n\r\n        const defaultLocaleId = \"default\"\r\n        const framerLocale = locales.find(({ id }) => !localeId ? id === defaultLocaleId : id === localeId).code\r\n\r\n        let collectionItemId = null\r\n        if (route?.collectionId && collectionUtils) {\r\n              const utils = await collectionUtils[route.collectionId]?.()\r\n              const [slug] = Object.values(pathVariables)\r\n              if (utils && typeof slug === \"string\") {\r\n                  collectionItemId = (await utils.getRecordIdBySlug(slug, framerLocale || undefined)) ?? null\r\n              }\r\n        }\r\n\r\n        const resolvedDateTimeOptions = Intl.DateTimeFormat().resolvedOptions()\r\n        const timezone = resolvedDateTimeOptions.timeZone\r\n        const locale = resolvedDateTimeOptions.locale\r\n\r\n        // wait for the page to be activated before sending the pageview event\r\n        // https://developer.chrome.com/docs/web-platform/prerender-pages#impact-on-analytics\r\n        await new Promise((resolve) => {\r\n            if (document.prerendering) {\r\n                document.addEventListener(\"prerenderingchange\", resolve, { once: true })\r\n            } else {\r\n                resolve()\r\n            }\r\n        })\r\n\r\n        window.__framer_events.push([\r\n            \"published_site_pageview\",\r\n            {\r\n                framerSiteId: framerSiteId ?? null,\r\n                routePath: route?.path || \"/\",\r\n                collectionItemId,\r\n                framerLocale: framerLocale || null,\r\n                webPageId: route?.abTestingVariantId ?? routeId,\r\n                abTestId: route?.abTestId,\r\n                referrer: document.referrer || null,\r\n                url: window.location.href,\r\n                hostname: window.location.hostname || null,\r\n                pathname: window.location.pathname || null,\r\n                hash: window.location.hash || null,\r\n                search: window.location.search || null,\r\n                timezone,\r\n                locale,\r\n            },\r\n            \"eager\"\r\n        ])\r\n\r\n        // Yield to avoid blocking the main thread with the user code\r\n        await Framer.yieldUnlessUrgent()\r\n\r\n        document.dispatchEvent(new CustomEvent(\"framer:pageview\", {\r\n            detail: { framerLocale: framerLocale || null }\r\n        }))\r\n    })()\r\n}\r\n\r\n\r\n                const page = await pagePromise\r\n                if (shouldHydrate) {\r\n                    \r\n\r\n                    Framer.withPerformanceMarks(\"framer-rewrite-breakpoints\", () => {\r\n                        Framer.removeHiddenBreakpointLayersV2(breakpoints)\r\n                        window.__framer_onRewriteBreakpoints?.(breakpoints)\r\n                    })\r\n\r\n                    \r\n\r\n                    const startTransition = React.startTransition\r\n                    startTransition(() => {\r\n                        Framer.markHydrationStart()\r\n                        Framer.setInitialHydrationState()\r\n                        if (true) Framer.turnOffReactEventHandling()\r\n                        ReactDOM.hydrateRoot(container, page, { onRecoverableError: handleError })\r\n                    })\r\n                } else {\r\n                    \r\n                    ReactDOM.createRoot(container, { onRecoverableError: handleError }).render(page)\r\n                }\r\n            } catch (error) {\r\n                handleError(error, undefined, false)\r\n                throw error\r\n            }\r\n        }\r\n\r\n        \r\n\r\n        \r\n    "],
  "mappings": "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",
  "names": ["o", "npm_react_dom_18_2_exports", "Ha", "a", "e", "r", "d", "SmoothScrollComponent", "props", "intensity", "lenis", "pe", "ue", "error", "checkForStopScroll", "stopScrollElement", "htmlElement", "hasHiddenOverflow", "stopScrollObserver", "htmlStyleObserver", "allElements", "i", "element", "computedStyle", "window", "styleError", "Lenis", "raf", "time", "animationId", "anchorLinksData", "anchor", "isInternalLink", "hasHash", "anchorElement", "href", "decodedHref", "scrollMargin", "targetElement", "marginStyle", "targetError", "anchorError", "handleClick", "e", "handlers", "index", "p", "SmoothScroll", "withCSS", "SmoothScroll_Prod_default", "addPropertyControls", "ControlType", "enabledGestures", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "getProps", "height", "id", "link", "name1", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "Rjqq1770W", "k8mHzE44c", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "scopingClassNames", "cx", "LayoutGroup", "Link", "RichText2", "css", "FramerheKyzYayd", "withCSS", "heKyzYayd_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts", "PhosphorFonts", "getFonts", "Icon", "PhosphorControls", "getPropertyControls", "enabledGestures", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "getProps", "click", "height", "iconName", "id", "link", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "vDncokxwm", "IiMRH2q0P", "QEDbkKOjq", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onTap1qgk80z", "args", "scopingClassNames", "cx", "ref1", "pe", "defaultLayoutId", "ae", "componentViewport", "useComponentViewport", "LayoutGroup", "Link", "ComponentViewportProvider", "SmartComponentScopedContainer", "css", "FramerQHEirBxhV", "withCSS", "QHEirBxhV_default", "addPropertyControls", "ControlType", "addFonts", "TagFonts", "getFonts", "Ihf4JO3wW_default", "ButtonButtonFonts", "YBPGh7qim_default", "SmartComponentScopedContainerWithFX", "withFX", "SmartComponentScopedContainer", "SocialIconFonts", "QHEirBxhV_default", "FooterLinkFonts", "heKyzYayd_default", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "animation", "transition2", "textEffect", "animation1", "transition3", "transition4", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "QEDbkKOjq1bznoa8", "args", "scopingClassNames", "cx", "router", "useRouter", "LayoutGroup", "u", "ComponentViewportProvider", "RichText2", "ResolveLinks", "resolvedLinks", "SVG", "resolvedLinks1", "resolvedLinks2", "resolvedLinks3", "resolvedLinks4", "resolvedLinks5", "resolvedLinks6", "resolvedLinks7", "resolvedLinks8", "resolvedLinks9", "resolvedLinks10", "resolvedLinks11", "resolvedLinks12", "resolvedLinks13", "css", "FramerFBO9CnB_6", "withCSS", "FBO9CnB_6_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts", "SmoothScrollFonts", "getFonts", "SmoothScroll_Prod_default", "NavigationFonts", "ceK4xa7Hn_default", "FooterFonts", "FBO9CnB_6_default", "FooterControls", "getPropertyControls", "breakpoints", "serializationHash", "variantClassNames", "breakpointRules", "breakpointKeys", "selectors", "rules", "mediaQueries", "HTMLStyle", "value", "useIsOnFramerCanvas", "p", "humanReadableEnumMap", "humanReadableVariantMap", "getProps", "footerVariant", "height", "id", "width", "props", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "variant", "fYVsGsB8l", "children", "restProps", "baseVariant", "hydratedBaseVariant", "useHydratedBreakpointVariants", "breakpoints", "gestureVariant", "scopingClassNames", "cx", "useCustomCursors", "GeneratedComponentContext", "u", "LayoutGroup", "motion", "ComponentViewportProvider", "Container", "SmoothScroll_Prod_default", "PropertyOverrides2", "ceK4xa7Hn_default", "FBO9CnB_6_default", "css", "target", "RenderTarget", "key", "selector", "rule", "Framerf3ZoosNUp", "withCSS", "f3ZoosNUp_default", "addPropertyControls", "FooterControls", "addFonts", "SmoothScrollFonts", "NavigationFonts", "FooterFonts", "routes", "lazy", "locales", "collectionUtils", "framerSiteId", "Template", "routeId", "children", "style", "rest", "props1", "props", "B", "f3ZoosNUp_default", "getLayoutTemplateBreakpoints", "getPageRoot", "pathVariables", "localeId", "rootPreload", "content", "PageRoot", "window", "navigator", "createEditorBar", "useCurrentRoute", "useLocaleInfo", "useRouter", "X", "te", "ue", "pe", "ye", "Ga", "contentWithFeaturesContext", "LibraryFeaturesProvider", "contentWithGracefullyDegradingErrorBoundary", "GracefullyDegradingErrorBoundary", "page", "PageEffectsProvider", "isBrowser", "packageAndFilename", "exportIdentifier", "ErrorPlaceholder", "installFlexboxGapWorkaroundIfNeeded", "container", "main", "track", "shouldHydrate", "handleError", "error", "errorInfo", "recoverable", "componentStack", "breakpoints", "routeData", "patchRoutesForABTesting", "inferInitialRouteFromPath", "pagePromise", "route", "defaultLocaleId", "framerLocale", "id", "collectionItemId", "utils", "slug", "resolvedDateTimeOptions", "timezone", "locale", "resolve", "yieldUnlessUrgent", "withPerformanceMarks", "removeHiddenBreakpointLayersV2", "Z", "markHydrationStart", "setInitialHydrationState", "turnOffReactEventHandling", "d", "r"]
}
