{
  "version": 3,
  "sources": ["ssg:https://framer.com/m/framer/store.js@^1.0.0", "ssg:https://framerusercontent.com/modules/3KGDVB8usr2c0ZZfKnhV/U1UZGUCMushE2ekHuK7H/Exit.js", "ssg:https://framerusercontent.com/modules/5WIg5jtZFYj4BIXJk37r/mTYLyRVmIlXiXGIQUemm/yjEfcmKNw.js"],
  "sourcesContent": ["import{useState,useEffect}from\"react\";import{Data,useObserveData}from\"framer\";export function createStore(state1){// Use Data so that a Preview reload resets the state\nconst dataStore=Data({state:Object.freeze({...state1})});// Create a set function that updates the state\nconst setDataStore=newState=>{// If the state is an object, make sure we copy it\nif(typeof newState===\"function\"){newState=newState(dataStore.state);}dataStore.state=Object.freeze({...dataStore.state,...newState});};// Store the initial state, copy the object if it's an object\nlet storeState=typeof state1===\"object\"?Object.freeze({...state1}):state1;// Keep a list of all the listeners, in the form of React hook setters\nconst storeSetters=new Set();// Create a set function that updates all the listeners / setters\nconst setStoreState=newState=>{// If the state is an object, make sure we copy it\nif(typeof newState===\"function\"){newState=newState(storeState);}storeState=typeof newState===\"object\"?Object.freeze({...storeState,...newState}):newState;// Update all the listeners / setters with the new value\nstoreSetters.forEach(setter=>setter(storeState));};// Create the actual hook based on everything above\nfunction useStore(){// Create the hook we are going to use as a listener\nconst[state,setState]=useState(storeState);// If we unmount the component using this hook, we need to remove the listener\n// @ts-ignore\nuseEffect(()=>{// But right now, we need to add the listener\nstoreSetters.add(setState);return()=>storeSetters.delete(setState);},[]);// If Data context exists, use Data, otherwise use vanilla React state\nif(useObserveData()===true){useObserveData();return[dataStore.state,setDataStore];}else{// Return the state and a function to update the central store\nreturn[state,setStoreState];}}return useStore;}\nexport const __FramerMetadata__ = {\"exports\":{\"createStore\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./createStore.map", "/*\n * ExitIntent by framer.today\n * v1.0.0\n * https://framer.today/license\n *\n */import{jsx as _jsx}from\"react/jsx-runtime\";import React from\"react\";import{motion}from\"framer-motion\";import{createStore}from\"https://framer.com/m/framer/store.js@^1.0.0\";const useStore=createStore({isOverlayVisible:false});export function withWindowLeaveOverlay(Component){return function WrappedComponent(props){const[store,setStore]=useStore();const[overlayDismissed,setOverlayDismissed]=React.useState(false);// Check session storage once and initialize overlay visibility\nReact.useEffect(()=>{const dismissed=sessionStorage.getItem(\"overlayDismissed\")===\"true\";setOverlayDismissed(dismissed);if(dismissed){setStore({isOverlayVisible:false});}},[]);// Listen for mouseout events to detect exit intent\nReact.useEffect(()=>{if(overlayDismissed)return;const handleMouseLeave=event=>{if(sessionStorage.getItem(\"overlayDismissed\")===\"true\")return;const{clientX,clientY,relatedTarget}=event;const{innerWidth,innerHeight}=window;if(!relatedTarget&&(clientY<=0||clientY>=innerHeight||clientX<=0||clientX>=innerWidth)){setStore({isOverlayVisible:true});}};document.addEventListener(\"mouseout\",handleMouseLeave);return()=>document.removeEventListener(\"mouseout\",handleMouseLeave);},[overlayDismissed,setStore]);const dismissOverlay=event=>{event.preventDefault();setStore({isOverlayVisible:false});sessionStorage.setItem(\"overlayDismissed\",\"true\");};if(!store.isOverlayVisible)return null;const overlayStyle={position:\"fixed\",top:0,left:0,right:0,bottom:0,display:\"flex\",alignItems:\"center\",justifyContent:\"center\",backgroundColor:\"rgba(0, 0, 0, 0.8)\",zIndex:1e3};const motionStyle={initial:{y:25,opacity:0},animate:{y:0,opacity:1},exit:{y:25,opacity:0},transition:{type:\"spring\",stiffness:300,damping:45,mass:1.1}};return /*#__PURE__*/_jsx(\"div\",{style:overlayStyle,onClick:dismissOverlay,children:/*#__PURE__*/_jsx(motion.div,{...motionStyle,onClick:e=>e.stopPropagation(),children:/*#__PURE__*/_jsx(Component,{...props})})});};}export function withDismissOverlay(Component){return function WrappedComponent(props){const[,setStore]=useStore();const dismissOverlay=event=>{event.preventDefault();setStore({isOverlayVisible:false});sessionStorage.setItem(\"overlayDismissed\",\"true\");};return /*#__PURE__*/_jsx(Component,{...props,onClick:dismissOverlay});};}\nexport const __FramerMetadata__ = {\"exports\":{\"withDismissOverlay\":{\"type\":\"reactHoc\",\"name\":\"withDismissOverlay\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"withWindowLeaveOverlay\":{\"type\":\"reactHoc\",\"name\":\"withWindowLeaveOverlay\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Exit.map", "// Generated by Framer (9045c1a)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,ComponentViewportProvider,Container,cx,GeneratedComponentContext,getFonts,getFontsFromSharedStyle,PropertyOverrides,ResolveLinks,RichText,useComponentViewport,useCustomCursors,useHydratedBreakpointVariants,useIsOnFramerCanvas,useLocaleInfo,useRouter,withCodeBoundaryForOverrides,withCSS,withFX}from\"framer\";import{LayoutGroup,motion}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import NavigationHeaderMenu from\"#framer/local/canvasComponent/INojTeMuc/INojTeMuc.js\";import NavigationFooterMenu from\"#framer/local/canvasComponent/M35vybDff/M35vybDff.js\";import MarketingPopUpDesigns from\"#framer/local/canvasComponent/r8HEiuFWp/r8HEiuFWp.js\";import ElementsButtons from\"#framer/local/canvasComponent/rZ2WyGphJ/rZ2WyGphJ.js\";import{withDismissOverlay,withWindowLeaveOverlay}from\"#framer/local/codeFile/fQrTp3r/Exit.js\";import*as sharedStyle1 from\"#framer/local/css/gLvjgVYJd/gLvjgVYJd.js\";import*as sharedStyle from\"#framer/local/css/zHzauYEF4/zHzauYEF4.js\";import metadataProvider from\"#framer/local/webPageMetadata/yjEfcmKNw/yjEfcmKNw.js\";const NavigationHeaderMenuFonts=getFonts(NavigationHeaderMenu);const RichTextWithFX=withFX(RichText);const ElementsButtonsFonts=getFonts(ElementsButtons);const NavigationFooterMenuFonts=getFonts(NavigationFooterMenu);const MarketingPopUpDesignsFonts=getFonts(MarketingPopUpDesigns);const MotionDivWithDismissOverlay2qg7yq=withCodeBoundaryForOverrides(motion.div,{nodeId:\"bWNu77Sf4\",override:withDismissOverlay,scopeId:\"yjEfcmKNw\"});const MotionDivWithWindowLeaveOverlay1uycxme=withCodeBoundaryForOverrides(motion.div,{nodeId:\"XfyEqdavg\",override:withWindowLeaveOverlay,scopeId:\"yjEfcmKNw\"});const breakpoints={mcW254Vyf:\"(min-width: 810px) and (max-width: 1199px)\",pD93qJ_U_:\"(min-width: 1200px)\",SPU7jOPw5:\"(max-width: 809px)\"};const isBrowser=()=>typeof document!==\"undefined\";const serializationHash=\"framer-An7BL\";const variantClassNames={mcW254Vyf:\"framer-v-1n0zilv\",pD93qJ_U_:\"framer-v-7qwe1a\",SPU7jOPw5:\"framer-v-w2gd81\"};const animation={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:40};const transition1={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const animation1={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition1,x:0,y:40};const transition2={damping:60,delay:.1,mass:1,stiffness:500,type:\"spring\"};const animation2={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition2,x:0,y:40};const HTMLStyle=({value})=>{const onCanvas=useIsOnFramerCanvas();if(onCanvas)return null;return /*#__PURE__*/_jsx(\"style\",{dangerouslySetInnerHTML:{__html:value},\"data-framer-html-style\":\"\"});};const humanReadableVariantMap={Desktop:\"pD93qJ_U_\",Phone:\"SPU7jOPw5\",Tablet:\"mcW254Vyf\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"pD93qJ_U_\"};};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const fallbackRef=useRef(null);const refBinding=ref??fallbackRef;const defaultLayoutId=React.useId();const{activeLocale,setLocale}=useLocaleInfo();const componentViewport=useComponentViewport();const{style,className,layoutId,variant,...restProps}=getProps(props);React.useEffect(()=>{const metadata=metadataProvider(undefined,activeLocale);if(metadata.robots){let robotsTag=document.querySelector('meta[name=\"robots\"]');if(robotsTag){robotsTag.setAttribute(\"content\",metadata.robots);}else{robotsTag=document.createElement(\"meta\");robotsTag.setAttribute(\"name\",\"robots\");robotsTag.setAttribute(\"content\",metadata.robots);document.head.appendChild(robotsTag);}}},[undefined,activeLocale]);React.useInsertionEffect(()=>{const metadata=metadataProvider(undefined,activeLocale);document.title=metadata.title||\"\";if(metadata.viewport){document.querySelector('meta[name=\"viewport\"]')?.setAttribute(\"content\",metadata.viewport);}},[undefined,activeLocale]);const[baseVariant,hydratedBaseVariant]=useHydratedBreakpointVariants(variant,breakpoints,false);const gestureVariant=undefined;const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const router=useRouter();useCustomCursors({});return /*#__PURE__*/_jsx(GeneratedComponentContext.Provider,{value:{primaryVariantId:\"pD93qJ_U_\",variantClassNames},children:/*#__PURE__*/_jsxs(LayoutGroup,{id:layoutId??defaultLayoutId,children:[/*#__PURE__*/_jsx(HTMLStyle,{value:\"html body { background: rgb(255, 255, 255); }\"}),/*#__PURE__*/_jsxs(motion.div,{...restProps,className:cx(scopingClassNames,\"framer-7qwe1a\",className),ref:refBinding,style:{...style},children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-gkviyi\",\"data-framer-name\":\"S: NAV BAR TOP\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{SPU7jOPw5:{width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+0+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:94,width:`max(${componentViewport?.width||\"100vw\"}, 1px)`,y:(componentViewport?.y||0)+0+0+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-hf1l0n-container\",nodeId:\"SGhBy7Vbd\",scopeId:\"yjEfcmKNw\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{mcW254Vyf:{variant:\"MOACvh7dI\"},SPU7jOPw5:{variant:\"RnkBpC6Gq\"}},children:/*#__PURE__*/_jsx(NavigationHeaderMenu,{height:\"100%\",id:\"SGhBy7Vbd\",layoutId:\"SGhBy7Vbd\",style:{width:\"100%\"},variant:\"EiYSbcw7B\",width:\"100%\"})})})})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1o3uoev\",\"data-framer-name\":\"S: 404\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-duil31\",\"data-framer-name\":\"<> TITLE/ SUPPORTING TEXT\",children:[/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation,__framer__exit:animation1,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-1njka2j\",\"data-styles-preset\":\"zHzauYEF4\",style:{\"--framer-text-color\":\"var(--token-94ac7ec0-e6fa-4b1b-a6e5-cc56bf6956e7, rgb(18, 18, 18))\"},children:\"404\"})}),className:\"framer-1li3uiu\",\"data-framer-name\":\"H2\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation,__framer__exit:animation2,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{className:\"framer-styles-preset-1ic2c18\",\"data-styles-preset\":\"gLvjgVYJd\",style:{\"--framer-text-color\":\"var(--token-df27d774-5f9c-4b90-96fc-f0db2480dd38, rgb(54, 54, 54))\"},children:\"Oops! The page you are looking for doesn't exist or has been moved. Please go back to the homepage.\"})}),className:\"framer-ooaik3\",\"data-framer-name\":\"Supporting text\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"cBTuzJxgt\"},implicitPathVariables:undefined},{href:{webPageId:\"cBTuzJxgt\"},implicitPathVariables:undefined},{href:{webPageId:\"cBTuzJxgt\"},implicitPathVariables:undefined}],children:resolvedLinks=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{mcW254Vyf:{y:(componentViewport?.y||0)+0+94+203+335.79999999999995},SPU7jOPw5:{width:`calc(${componentViewport?.width||\"100vw\"} - 40px)`,y:(componentViewport?.y||0)+0+94+155+359.79999999999995}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:61,y:(componentViewport?.y||0)+0+94+100+387.29999999999995,children:/*#__PURE__*/_jsx(Container,{className:\"framer-6tzf77-container\",\"data-framer-name\":\"Button\",name:\"Button\",nodeId:\"PyzFKAse2\",scopeId:\"yjEfcmKNw\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{mcW254Vyf:{RYXtDEfqC:resolvedLinks[1]},SPU7jOPw5:{RYXtDEfqC:resolvedLinks[2],style:{width:\"100%\"}}},children:/*#__PURE__*/_jsx(ElementsButtons,{ehfiBJd7I:false,height:\"100%\",id:\"PyzFKAse2\",layoutId:\"PyzFKAse2\",lbYKnRISr:\"Back home\",name:\"Button\",rDZiZcfBd:\"var(--token-82f70ca3-c399-4af6-92d5-4593a0871e13, rgb(34, 102, 255))\",RYXtDEfqC:resolvedLinks[0],t1J_OTEnE:\"ArrowRightAlt\",variant:\"AsvHBr3Am\",width:\"100%\"})})})})})})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-mvx826\",\"data-framer-name\":\"S: NAV BAR FOOTER\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:138,width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+894+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-fupfh2-container\",nodeId:\"aBW6cZvQr\",scopeId:\"yjEfcmKNw\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{mcW254Vyf:{variant:\"X4wH4D5AK\"},SPU7jOPw5:{variant:\"X4wH4D5AK\"}},children:/*#__PURE__*/_jsx(NavigationFooterMenu,{height:\"100%\",id:\"aBW6cZvQr\",layoutId:\"aBW6cZvQr\",MWcXWzBpv:\"var(--token-5caa04cc-1d92-4569-9e79-94692caa36ff, rgb(0, 0, 0))\",style:{width:\"100%\"},variant:\"zX65j_Xr1\",width:\"100%\"})})})})}),/*#__PURE__*/_jsxs(MotionDivWithWindowLeaveOverlay1uycxme,{className:\"framer-1uycxme\",\"data-framer-name\":\"S: EXIT INTENT\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1vfh0i4\",\"data-framer-name\":\"POP UP\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{SPU7jOPw5:{width:`min(max(${componentViewport?.width||\"100vw\"} - 40px, 1px), 500px)`,y:172}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:696,width:`min(max(${componentViewport?.width||\"100vw\"}, 1px), 500px)`,y:152,children:/*#__PURE__*/_jsx(Container,{className:\"framer-e60sk7-container\",nodeId:\"LqlUYGRKa\",rendersWithMotion:true,scopeId:\"yjEfcmKNw\",children:/*#__PURE__*/_jsx(MarketingPopUpDesigns,{height:\"100%\",id:\"LqlUYGRKa\",layoutId:\"LqlUYGRKa\",style:{maxWidth:\"100%\",width:\"100%\"},variant:\"QRsGkSlbQ\",width:\"100%\"})})})})}),/*#__PURE__*/_jsx(MotionDivWithDismissOverlay2qg7yq,{className:\"framer-2qg7yq\",\"data-framer-name\":\"CLOSE\"})]})]}),/*#__PURE__*/_jsx(\"div\",{id:\"overlay\"})]})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-An7BL.framer-r816zd, .framer-An7BL .framer-r816zd { display: block; }\",\".framer-An7BL.framer-7qwe1a { align-content: center; align-items: center; background-color: #ffffff; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 1200px; }\",\".framer-An7BL .framer-gkviyi { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; z-index: 1; }\",\".framer-An7BL .framer-hf1l0n-container { flex: 1 0 0px; height: auto; position: relative; width: 1px; }\",\".framer-An7BL .framer-1o3uoev { align-content: center; align-items: center; background-color: var(--token-c48dad22-bc18-41f9-8b34-bc4f41953a5a, #ffffff); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 30px; height: 80vh; justify-content: center; overflow: visible; padding: 100px 20px 100px 20px; position: relative; width: 100%; }\",\".framer-An7BL .framer-duil31 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; max-width: 800px; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-An7BL .framer-1li3uiu { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; --framer-paragraph-spacing: 0px; flex: none; height: auto; overflow: visible; position: relative; white-space: pre; width: auto; }\",\".framer-An7BL .framer-ooaik3 { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; --framer-paragraph-spacing: 0px; flex: none; height: auto; overflow: hidden; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-An7BL .framer-6tzf77-container { flex: none; height: auto; position: relative; width: auto; }\",\".framer-An7BL .framer-mvx826 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-An7BL .framer-fupfh2-container { flex: none; height: auto; position: relative; width: 100%; }\",\".framer-An7BL .framer-1uycxme { align-content: center; align-items: center; background-color: rgba(0, 0, 0, 0.2); display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 100vh; justify-content: center; left: 0px; overflow: hidden; padding: 0px; position: fixed; right: 0px; top: 0px; z-index: -1; }\",\".framer-An7BL .framer-1vfh0i4 { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; max-width: 500px; overflow: hidden; padding: 0px; position: relative; width: 1px; z-index: 1; }\",\".framer-An7BL .framer-e60sk7-container { flex: none; height: auto; max-width: 500px; position: relative; width: 100%; }\",\".framer-An7BL .framer-2qg7yq { background-color: rgba(0, 0, 0, 0.2); bottom: 0px; flex: none; left: 0px; overflow: hidden; position: absolute; right: 0px; top: 0px; z-index: 0; }\",\"@supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-An7BL.framer-7qwe1a, .framer-An7BL .framer-gkviyi, .framer-An7BL .framer-1o3uoev, .framer-An7BL .framer-duil31, .framer-An7BL .framer-mvx826, .framer-An7BL .framer-1uycxme, .framer-An7BL .framer-1vfh0i4 { gap: 0px; } .framer-An7BL.framer-7qwe1a > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-An7BL.framer-7qwe1a > :first-child, .framer-An7BL .framer-1o3uoev > :first-child, .framer-An7BL .framer-duil31 > :first-child, .framer-An7BL .framer-1vfh0i4 > :first-child { margin-top: 0px; } .framer-An7BL.framer-7qwe1a > :last-child, .framer-An7BL .framer-1o3uoev > :last-child, .framer-An7BL .framer-duil31 > :last-child, .framer-An7BL .framer-1vfh0i4 > :last-child { margin-bottom: 0px; } .framer-An7BL .framer-gkviyi > *, .framer-An7BL .framer-mvx826 > *, .framer-An7BL .framer-1uycxme > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-An7BL .framer-gkviyi > :first-child, .framer-An7BL .framer-mvx826 > :first-child, .framer-An7BL .framer-1uycxme > :first-child { margin-left: 0px; } .framer-An7BL .framer-gkviyi > :last-child, .framer-An7BL .framer-mvx826 > :last-child, .framer-An7BL .framer-1uycxme > :last-child { margin-right: 0px; } .framer-An7BL .framer-1o3uoev > * { margin: 0px; margin-bottom: calc(30px / 2); margin-top: calc(30px / 2); } .framer-An7BL .framer-duil31 > *, .framer-An7BL .framer-1vfh0i4 > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } }\",...sharedStyle.css,...sharedStyle1.css,\"@media (min-width: 810px) and (max-width: 1199px) { .framer-An7BL.framer-7qwe1a { width: 810px; } .framer-An7BL .framer-1o3uoev { padding: 203px 20px 100px 20px; } .framer-An7BL .framer-ooaik3 { max-width: 500px; }}\",\"@media (max-width: 809px) { .framer-An7BL.framer-7qwe1a { width: 390px; } .framer-An7BL .framer-gkviyi { flex-direction: column; } .framer-An7BL .framer-hf1l0n-container { flex: none; width: 100%; } .framer-An7BL .framer-1o3uoev { padding: 155px 20px 100px 20px; } .framer-An7BL .framer-ooaik3 { max-width: 300px; } .framer-An7BL .framer-6tzf77-container { width: 100%; } .framer-An7BL .framer-1uycxme { left: 20px; right: 20px; top: 20px; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-An7BL .framer-gkviyi { gap: 0px; } .framer-An7BL .framer-gkviyi > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-An7BL .framer-gkviyi > :first-child { margin-top: 0px; } .framer-An7BL .framer-gkviyi > :last-child { margin-bottom: 0px; } }}\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 866\n * @framerIntrinsicWidth 1200\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"mcW254Vyf\":{\"layout\":[\"fixed\",\"auto\"]},\"SPU7jOPw5\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n * @framerAcceptsLayoutTemplate true\n * @framerScrollSections\n * @framerResponsiveScreen\n */const FrameryjEfcmKNw=withCSS(Component,css,\"framer-An7BL\");export default FrameryjEfcmKNw;FrameryjEfcmKNw.displayName=\"Page\";FrameryjEfcmKNw.defaultProps={height:866,width:1200};addFonts(FrameryjEfcmKNw,[{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\"}]},...NavigationHeaderMenuFonts,...ElementsButtonsFonts,...NavigationFooterMenuFonts,...MarketingPopUpDesignsFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FrameryjEfcmKNw\",\"slots\":[],\"annotations\":{\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicHeight\":\"866\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"mcW254Vyf\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"SPU7jOPw5\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerImmutableVariables\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerScrollSections\":\"* @framerResponsiveScreen\",\"framerContractVersion\":\"1\",\"framerIntrinsicWidth\":\"1200\",\"framerAcceptsLayoutTemplate\":\"true\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}"],
  "mappings": "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",
  "names": ["createStore", "state1", "dataStore", "Data", "setDataStore", "newState", "storeState", "storeSetters", "setStoreState", "setter", "useStore", "state", "setState", "ye", "ue", "useObserveData", "useStore", "createStore", "withWindowLeaveOverlay", "Component", "props", "store", "setStore", "overlayDismissed", "setOverlayDismissed", "e", "dismissed", "handleMouseLeave", "event", "clientX", "clientY", "relatedTarget", "innerWidth", "innerHeight", "window", "dismissOverlay", "overlayStyle", "motionStyle", "p", "motion", "withDismissOverlay", "NavigationHeaderMenuFonts", "getFonts", "INojTeMuc_default", "RichTextWithFX", "withFX", "RichText2", "ElementsButtonsFonts", "rZ2WyGphJ_default", "NavigationFooterMenuFonts", "M35vybDff_default", "MarketingPopUpDesignsFonts", "r8HEiuFWp_default", "MotionDivWithDismissOverlay2qg7yq", "withCodeBoundaryForOverrides", "motion", "withDismissOverlay", "MotionDivWithWindowLeaveOverlay1uycxme", "withWindowLeaveOverlay", "breakpoints", "serializationHash", "variantClassNames", "animation", "transition1", "animation1", "transition2", "animation2", "HTMLStyle", "value", "useIsOnFramerCanvas", "p", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "variant", "restProps", "ue", "metadata", "robotsTag", "ie", "baseVariant", "hydratedBaseVariant", "useHydratedBreakpointVariants", "breakpoints", "gestureVariant", "scopingClassNames", "cx", "router", "useRouter", "useCustomCursors", "GeneratedComponentContext", "LayoutGroup", "motion", "PropertyOverrides2", "ComponentViewportProvider", "Container", "INojTeMuc_default", "RichTextWithFX", "x", "ResolveLinks", "resolvedLinks", "rZ2WyGphJ_default", "M35vybDff_default", "MotionDivWithWindowLeaveOverlay1uycxme", "r8HEiuFWp_default", "MotionDivWithDismissOverlay2qg7yq", "css", "FrameryjEfcmKNw", "withCSS", "yjEfcmKNw_default", "addFonts", "NavigationHeaderMenuFonts", "ElementsButtonsFonts", "NavigationFooterMenuFonts", "MarketingPopUpDesignsFonts", "getFontsFromSharedStyle", "fonts", "__FramerMetadata__"]
}
