{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/lRDHiNWNVWmE0lqtoVHP/K0mI40rrezffFjPjHAZX/Video.js", "ssg:https://framerusercontent.com/modules/MPQYEvbhCErBWrqnuEGO/S2ZPcTGnIXinHNlhgrlF/RoutesTravelledNumbers.js", "ssg:https://framerusercontent.com/modules/HN5y9ou13rWwBaTdOHUD/vX3hZ9fLytWnz8P84SX4/p1xYhxj5G.js", "ssg:https://framerusercontent.com/modules/wwxhYfbWZyfV1hrS04Aq/nALtT3tkJE4j9Zw2OkFt/TjAKinpEr.js", "ssg:https://framerusercontent.com/modules/yvA1R9zrJpKYtN1FUbTV/w6bxkqoDxSuEYfGwft8C/augiA20Il.js"],
  "sourcesContent": ["import{jsx as _jsx}from\"react/jsx-runtime\";import{addPropertyControls,ControlType,useIsInCurrentNavigationTarget}from\"framer\";import{isMotionValue,useInView}from\"framer-motion\";import{borderRadiusControl,defaultEvents,useIsBrowserSafari,useIsOnCanvas,useOnEnter,useOnExit,useRadius}from\"https://framer.com/m/framer/default-utils.js@^0.45.0\";import{memo,useCallback,useEffect,useMemo,useRef,useState}from\"react\";var ObjectFitType;(function(ObjectFitType){ObjectFitType[\"Fill\"]=\"fill\";ObjectFitType[\"Contain\"]=\"contain\";ObjectFitType[\"Cover\"]=\"cover\";ObjectFitType[\"None\"]=\"none\";ObjectFitType[\"ScaleDown\"]=\"scale-down\";})(ObjectFitType||(ObjectFitType={}));var SrcType;(function(SrcType){SrcType[\"Video\"]=\"Upload\";SrcType[\"Url\"]=\"URL\";})(SrcType||(SrcType={}));// Reduce renders\nfunction getProps(props){const{width,height,topLeft,topRight,bottomRight,bottomLeft,id,children,...rest}=props;return rest;}/**\n * VIDEO\n *\n * @framerIntrinsicWidth 200\n * @framerIntrinsicHeight 112\n *\n * @framerSupportedLayoutWidth fixed\n * @framerSupportedLayoutHeight any-prefer-fixed\n */export function Video(props){const newProps=getProps(props);return /*#__PURE__*/_jsx(VideoMemo,{...newProps});}function usePlaybackControls(videoRef){const isInCurrentNavigationTarget=useIsInCurrentNavigationTarget();const requestingPlay=useRef(false);const setProgress=useCallback(rawProgress=>{if(!videoRef.current)return;const newProgress=(rawProgress===1?.999:rawProgress)*videoRef.current.duration;const isAlreadySet=Math.abs(videoRef.current.currentTime-newProgress)<.1;if(videoRef.current.duration>0&&!isAlreadySet){videoRef.current.currentTime=newProgress;}},[]);const play=useCallback(()=>{const video=videoRef.current;if(!video)return;video.preload=\"auto\"// makes sure browsers don't throttle: https://html.spec.whatwg.org/multipage/media.html#:~:text=When%20the%20media%20resource%20is%20playing%2C%20hints%20to%20the%20user%20agent%20that%20bandwidth%20is%20to%20be%20considered%20scarce%2C%20e.g.%20suggesting%20throttling%20the%20download%20so%20that%20the%20media%20data%20is%20obtained%20at%20the%20slowest%20possible%20rate%20that%20still%20maintains%20consistent%20playback.\n;const isPlaying=video.currentTime>0&&video.onplaying&&!video.paused&&!video.ended&&video.readyState>video.HAVE_CURRENT_DATA;if(!isPlaying&&video&&!requestingPlay.current&&isInCurrentNavigationTarget){requestingPlay.current=true;video.play().catch(e=>{})// It's likely fine, swallow error\n.finally(()=>requestingPlay.current=false);}},[]);const pause=useCallback(()=>{if(!videoRef.current||requestingPlay.current)return;videoRef.current.pause();},[]);return{play,pause,setProgress};}function useAutoplayBehavior({playingProp,muted,loop,playsinline,controls}){const[initialPlayingProp]=useState(()=>playingProp);const[hasPlayingPropChanged,setHasPlayingPropChanged]=useState(false);if(playingProp!==initialPlayingProp&&!hasPlayingPropChanged){setHasPlayingPropChanged(true);}const behavesAsGif=// passing `playing === true` on mount indicates that the video should\n// autoplay, like a GIF\ninitialPlayingProp&&muted&&loop&&playsinline&&!controls&&// Some users of the <Video> component use it by wrapping it with\n// another smart component and adding their own controls on top. (The\n// controls use transitions to control the video: e.g., when clicking\n// the play button, the smart component will transition to a state with\n// <Video playing={true} />.) In this case, we don't want the video to\n// behave as a gif, as it will be weird if the video suddenly started\n// acting as such (and auto-pausing when leaving the viewport) as soon\n// as the site visitor mutes it and clicks \u201CPlay\u201D.\n!hasPlayingPropChanged;let autoplay;if(behavesAsGif)autoplay=\"on-viewport\";else if(initialPlayingProp)autoplay=\"on-mount\";else autoplay=\"no-autoplay\";return autoplay;}/**\n * The Video component has some effects that sync the video element with props\n * like `startTime`, `progress`, etc. React calls these effects whenever these\n * props change. However, it also calls them on the first mount, and this is\n * troublesome \u2013 if we\u2019re doing SSR, and the user changed the video state before\n * the video was hydrated, the initial `useEffect` call will reset the video\n * state. To avoid this, we use this flag.\n */let isMountedAndReadyForProgressChanges=false;const VideoMemo=/*#__PURE__*/memo(function VideoInner(props){const{srcType,srcFile,srcUrl,playing:playingProp,muted,playsinline,controls,progress,objectFit,backgroundColor,onSeeked,onPause,onPlay,onEnd,onClick,onMouseEnter,onMouseLeave,onMouseDown,onMouseUp,poster,posterEnabled,startTime:startTimeProp,volume,loop}=props;const videoRef=useRef();const isSafari=useIsBrowserSafari();const wasPausedOnLeave=useRef(null);const wasEndedOnLeave=useRef(null);const isOnCanvas=useIsOnCanvas();const borderRadius=useRadius(props);// Hard-coding `autoplayBehavior` and `isInViewport` when on canvas as a\n// tiny perf optimization. isOnCanvas won\u2019t change through the lifecycle of\n// the component, so using these hooks conditionally should be safe\nconst autoplayBehavior=isOnCanvas?\"no-autoplay\":useAutoplayBehavior({playingProp,muted,loop,playsinline,controls});const isInViewport=isOnCanvas?true:useInView(videoRef);const isCloseToViewport=isOnCanvas?false:useInView(videoRef,{margin:\"100px\",once:true});// Video elements behave oddly at 100% duration\nconst startTime=startTimeProp===100?99.9:startTimeProp;const{play,pause,setProgress}=usePlaybackControls(videoRef);// Pause/play via props\nuseEffect(()=>{if(isOnCanvas)return;if(playingProp)play();else pause();},[playingProp]);// Pause/play via viewport\nuseEffect(()=>{if(isOnCanvas)return;if(autoplayBehavior!==\"on-viewport\")return;if(isInViewport)play();else pause();},[autoplayBehavior,isInViewport]);// Allow scrubbling via progress prop\n// 1) Handle cases when the progress prop itself changes\nuseEffect(()=>{if(!isMountedAndReadyForProgressChanges){isMountedAndReadyForProgressChanges=true;return;}const rawProgressValue=isMotionValue(progress)?progress.get():(progress!==null&&progress!==void 0?progress:0)*.01;setProgress(// When the progress value exists (e.g. <Video startTime={10}\n// progress={50} />), we respect the `progress` value over\n// `startTime`, even if `startTime` changes. That\u2019s because\n// `startTime` == start == changing it shouldn\u2019t affect the current\n// progress\n(rawProgressValue!==null&&rawProgressValue!==void 0?rawProgressValue:0)||// Then why fall back to `startTime` when `progress` doesn\u2019t exist,\n// you might ask? Now, that\u2019s for\n// - canvas UX: we want the video progress to change when the user\n//   is scrobbling the \u201CStart Time\u201D in component settings.\n// - backwards compatibility: maybe some users *are* scrobbling\n//   using `startTime` instead of `progress`? We don\u2019t know, and it\n//   always supported it, so let\u2019s not break it\n(startTime!==null&&startTime!==void 0?startTime:0)/100);},[startTime,srcFile,srcUrl,progress]);// 2) Handle cases when the motion value inside the progress prop changes\nuseEffect(()=>{if(!isMotionValue(progress))return;return progress.on(\"change\",value=>setProgress(value));},[progress]);// (Prototyping) Checking if we need to play on navigation enter\nuseOnEnter(()=>{if(wasPausedOnLeave.current===null)return;if(videoRef.current){// if (restartOnEnter) setProgress(0)\nif(!wasEndedOnLeave&&loop||!wasPausedOnLeave.current)play();}});// (Prototyping) Pausing & saving playing state on navigation exit\nuseOnExit(()=>{if(videoRef.current){wasEndedOnLeave.current=videoRef.current.ended;wasPausedOnLeave.current=videoRef.current.paused;pause();}});const src=useMemo(()=>{let fragment=\"\";// if (\n//     startTime > 0 &&\n//     videoRef.current &&\n//     !isNaN(videoRef.current.duration) &&\n//     !isOnCanvas\n// ) {\n//     console.log(startTime, videoRef.current.duration)\n//     fragment = `#t=${startTime * videoRef.current.duration}`\n// }\nif(srcType===\"URL\")return srcUrl+fragment;if(srcType===\"Upload\")return srcFile+fragment;},[srcType,srcFile,srcUrl,startTime]);// Autoplay via JS to work in Safari\nuseEffect(()=>{if(isSafari&&videoRef.current&&autoplayBehavior===\"on-mount\"){setTimeout(()=>play(),50);}},[]);// Volume Control\nuseEffect(()=>{if(videoRef.current&&!muted)videoRef.current.volume=(volume!==null&&volume!==void 0?volume:0)/100;},[volume]);// When video is ready, set start-time, then autoplay if needed\nconst handleReady=()=>{const video=videoRef.current;if(!video)return;if(video.currentTime<.3&&startTime>0)setProgress((startTime!==null&&startTime!==void 0?startTime:0)*.01);if(autoplayBehavior===\"on-mount\")play();};return /*#__PURE__*/_jsx(\"video\",{onClick,onMouseEnter,onMouseLeave,onMouseDown,onMouseUp,src:src,loop:loop,ref:videoRef,onSeeked:e=>onSeeked===null||onSeeked===void 0?void 0:onSeeked(e),onPause:e=>onPause===null||onPause===void 0?void 0:onPause(e),onPlay:e=>onPlay===null||onPlay===void 0?void 0:onPlay(e),onEnded:e=>onEnd===null||onEnd===void 0?void 0:onEnd(e),autoPlay:autoplayBehavior===\"on-mount\",preload:autoplayBehavior!==\"on-mount\"&&posterEnabled&&!isCloseToViewport?\"none\":// `autoplay` overrides this too\n\"metadata\",poster:posterEnabled?poster:undefined,onLoadedData:handleReady,controls:controls,muted:isOnCanvas?true:muted,playsInline:playsinline,style:{cursor:!!onClick?\"pointer\":\"auto\",width:\"100%\",height:\"100%\",borderRadius,display:\"block\",objectFit:objectFit,backgroundColor:backgroundColor,objectPosition:\"50% 50%\"}});});Video.displayName=\"Video\";Video.defaultProps={srcType:\"URL\",srcUrl:\"https://assets.mixkit.co/videos/preview/mixkit-shining-sun-in-the-sky-surrounded-by-moving-clouds-31793-small.mp4\",srcFile:\"\",posterEnabled:false,controls:false,playing:true,loop:true,muted:true,playsinline:true,restartOnEnter:false,objectFit:\"cover\",backgroundColor:\"rgba(0,0,0,0)\",radius:0,volume:25,startTime:0};const groupsRegex=/[A-Z]{2,}|[A-Z][a-z]+|[a-z]+|[A-Z]|\\d+/gu;function capitalizeFirstLetter(value){return value.charAt(0).toUpperCase()+value.slice(1);}export function titleCase(value){const groups=value.match(groupsRegex)||[];return groups.map(capitalizeFirstLetter).join(\" \");}const objectFitOptions=[\"cover\",\"fill\",\"contain\",\"scale-down\",\"none\"];addPropertyControls(Video,{srcType:{type:ControlType.Enum,displaySegmentedControl:true,title:\"Source\",options:[\"URL\",\"Upload\"]},srcUrl:{type:ControlType.String,title:\"URL\",placeholder:\"../example.mp4\",hidden(props){return props.srcType===\"Upload\";},description:\"Hosted video file URL. For YouTube, use the YouTube component.\"},srcFile:{type:ControlType.File,title:\"File\",allowedFileTypes:[\"mp4\",\"webm\"],hidden(props){return props.srcType===\"URL\";}},playing:{type:ControlType.Boolean,title:\"Playing\",enabledTitle:\"Yes\",disabledTitle:\"No\"},posterEnabled:{type:ControlType.Boolean,title:\"Poster\",enabledTitle:\"Yes\",disabledTitle:\"No\"},poster:{type:ControlType.Image,title:\" \",hidden:({posterEnabled})=>!posterEnabled},backgroundColor:{type:ControlType.Color,title:\"Background\"},...borderRadiusControl,startTime:{title:\"Start Time\",type:ControlType.Number,min:0,max:100,step:.1,unit:\"%\"},loop:{type:ControlType.Boolean,title:\"Loop\",enabledTitle:\"Yes\",disabledTitle:\"No\"},objectFit:{type:ControlType.Enum,title:\"Fit\",options:objectFitOptions,optionTitles:objectFitOptions.map(titleCase)},// restartOnEnter: {\n//     type: ControlType.Boolean,\n//     title: \"On ReEnter\",\n//     enabledTitle: \"Restart\",\n//     disabledTitle: \"Resume\",\n// },\ncontrols:{type:ControlType.Boolean,title:\"Controls\",enabledTitle:\"Show\",disabledTitle:\"Hide\"},muted:{type:ControlType.Boolean,title:\"Muted\",enabledTitle:\"Yes\",disabledTitle:\"No\"},volume:{type:ControlType.Number,max:100,min:0,unit:\"%\",hidden:({muted})=>muted},onEnd:{type:ControlType.EventHandler},onSeeked:{type:ControlType.EventHandler},onPause:{type:ControlType.EventHandler},onPlay:{type:ControlType.EventHandler},...defaultEvents});\nexport const __FramerMetadata__ = {\"exports\":{\"Video\":{\"type\":\"reactComponent\",\"name\":\"Video\",\"slots\":[],\"annotations\":{\"framerSupportedLayoutWidth\":\"fixed\",\"framerIntrinsicWidth\":\"200\",\"framerContractVersion\":\"1\",\"framerSupportedLayoutHeight\":\"any-prefer-fixed\",\"framerIntrinsicHeight\":\"112\"}},\"VideoProps\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"titleCase\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Video.map", "import{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{useState,useEffect}from\"react\";const formatNumber=number=>{return number.toString().replace(/\\B(?=(\\d{3})+(?!\\d))/g,\",\");};const useIncrementAnimation=(start,end,duration,incrementStep=1)=>{const[value,setValue]=useState(start);useEffect(()=>{const totalIncrements=Math.floor((end-start)/incrementStep);const incrementDuration=duration/totalIncrements;let currentValue=start;const interval=setInterval(()=>{currentValue+=incrementStep;if(currentValue>=end){currentValue=end;clearInterval(interval);}setValue(currentValue);},incrementDuration);return()=>clearInterval(interval);},[start,end,duration,incrementStep]);return value;};export function withRoutesTravelledNumber(Component){return props=>{const[initialValue,setInitialValue]=useState(1e4);const[finalValue,setFinalValue]=useState(1e4);const[isAnimationDone,setIsAnimationDone]=useState(false);useEffect(()=>{const startDate=new Date(new Date(\"07/01/2024 13:30\").toDateString());const currentDate=new Date;const intervalsPassed=Math.floor((currentDate-startDate)/22e3);let updatedValue=initialValue+intervalsPassed;setFinalValue(updatedValue);setTimeout(()=>{setIsAnimationDone(true);},1e4);const customInterval=setInterval(()=>{setFinalValue(prevState=>prevState+1);},22e3);return()=>{clearInterval(customInterval);};},[]);const animatedValue=useIncrementAnimation(initialValue,finalValue,1e4,103)// Use 103 for larger increment steps\n;return /*#__PURE__*/_jsxs(Component,{...props,style:{...props===null||props===void 0?void 0:props.style,fontSize:\"16px\"},children:[\"Over\",\" \",/*#__PURE__*/_jsx(\"span\",{style:{color:\"rgb(240, 77, 74)\",fontWeight:\"bold\"},children:isAnimationDone?formatNumber(finalValue):formatNumber(animatedValue)}),\" \",\"routes have been travelled\"]});};}\nexport const __FramerMetadata__ = {\"exports\":{\"withRoutesTravelledNumber\":{\"type\":\"reactHoc\",\"name\":\"withRoutesTravelledNumber\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./RoutesTravelledNumbers.map", "// Generated by Framer (e68e9e8)\nimport{jsx as _jsx}from\"react/jsx-runtime\";import{addFonts,cx,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{withRoutesTravelledNumber}from\"https://framerusercontent.com/modules/MPQYEvbhCErBWrqnuEGO/S2ZPcTGnIXinHNlhgrlF/RoutesTravelledNumbers.js\";const MotionDivWithRoutesTravelledNumber=withRoutesTravelledNumber(motion.div);const cycleOrder=[\"o0ukJvEJc\"];const serializationHash=\"framer-qkjb9\";const variantClassNames={o0ukJvEJc:\"framer-v-8gy2a1\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion(React.Fragment);const getProps=({height,id,width,...props})=>{return{...props};};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,...restProps}=getProps(props);const{baseVariant,classNames,gestureHandlers,gestureVariant,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"o0ukJvEJc\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const ref1=React.useRef(null);const defaultLayoutId=React.useId();const sharedStyleClassNames=[];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(MotionDivWithRoutesTravelledNumber,{...restProps,...gestureHandlers,className:cx(serializationHash,...sharedStyleClassNames,\"framer-8gy2a1\",className,classNames),\"data-framer-name\":\"Desktop-1440\",layoutDependency:layoutDependency,layoutId:\"o0ukJvEJc\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{...style}})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-qkjb9.framer-zhx9uk, .framer-qkjb9 .framer-zhx9uk { display: block; }\",\".framer-qkjb9.framer-8gy2a1 { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 3px; height: min-content; justify-content: flex-start; min-height: 21px; overflow: hidden; padding: 0px; position: relative; width: 309px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-qkjb9.framer-8gy2a1 { gap: 0px; } .framer-qkjb9.framer-8gy2a1 > * { margin: 0px; margin-left: calc(3px / 2); margin-right: calc(3px / 2); } .framer-qkjb9.framer-8gy2a1 > :first-child { margin-left: 0px; } .framer-qkjb9.framer-8gy2a1 > :last-child { margin-right: 0px; } }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 21\n * @framerIntrinsicWidth 309\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const Framerp1xYhxj5G=withCSS(Component,css,\"framer-qkjb9\");export default Framerp1xYhxj5G;Framerp1xYhxj5G.displayName=\"RoutesTravelledNumbers\";Framerp1xYhxj5G.defaultProps={height:21,width:309};addFonts(Framerp1xYhxj5G,[{explicitInter:true,fonts:[]}],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"Framerp1xYhxj5G\",\"slots\":[],\"annotations\":{\"framerDisplayContentsDiv\":\"false\",\"framerIntrinsicWidth\":\"309\",\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicHeight\":\"21\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerImmutableVariables\":\"true\",\"framerContractVersion\":\"1\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (fe89999)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,getFontsFromSharedStyle,RichText,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useOnVariantChange,useVariantState,withCSS,withFX,withOptimizedAppearEffect}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import*as sharedStyle from\"https://framerusercontent.com/modules/zG3YBhZGasp5oTdTqVV6/QodIlZX5qkF4uZH2sVvq/zHRta2ytI.js\";const RichTextWithFXWithOptimizedAppearEffect=withOptimizedAppearEffect(withFX(RichText));const cycleOrder=[\"oihvsweWr\",\"a0TJ3E6GT\",\"nhUXdXLPY\",\"nz0BlWyeE\",\"lZgzImB_Z\",\"icCnpAYM0\"];const serializationHash=\"framer-nBCG2\";const variantClassNames={a0TJ3E6GT:\"framer-v-o30r0w\",icCnpAYM0:\"framer-v-o2liol\",lZgzImB_Z:\"framer-v-1uu0m9b\",nhUXdXLPY:\"framer-v-86l8yq\",nz0BlWyeE:\"framer-v-1x6vvue\",oihvsweWr:\"framer-v-1akgxhd\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={delay:0,duration:0,ease:[.44,0,.56,1],type:\"tween\"};const transition2={damping:40,delay:0,mass:1,stiffness:400,type:\"spring\"};const transition3={damping:30,delay:.05,mass:1,stiffness:200,type:\"spring\"};const animation={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition3,x:0,y:0};const animation1={opacity:.001,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:0,y:10};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?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={\"Transition 1\":\"a0TJ3E6GT\",\"Transition 2\":\"nhUXdXLPY\",\"Transition 3\":\"nz0BlWyeE\",\"Transition 4\":\"lZgzImB_Z\",\"Transition 5\":\"icCnpAYM0\",Start:\"oihvsweWr\"};const getProps=({height,id,width,word1,word2,word3,word4,word5,word6,...props})=>{var _ref,_ref1,_ref2,_ref3,_ref4,_humanReadableVariantMap_props_variant,_ref5,_ref6;return{...props,agXkrRnYD:(_ref=word3!==null&&word3!==void 0?word3:props.agXkrRnYD)!==null&&_ref!==void 0?_ref:\"designer\",auB66AFUm:(_ref1=word1!==null&&word1!==void 0?word1:props.auB66AFUm)!==null&&_ref1!==void 0?_ref1:\"solopreneur\",D7ja_SPDx:(_ref2=word4!==null&&word4!==void 0?word4:props.D7ja_SPDx)!==null&&_ref2!==void 0?_ref2:\"indie hacker\",mjFS6eu5M:(_ref3=word5!==null&&word5!==void 0?word5:props.mjFS6eu5M)!==null&&_ref3!==void 0?_ref3:\"indie hacker\",mnpp9gJvH:(_ref4=word6!==null&&word6!==void 0?word6:props.mnpp9gJvH)!==null&&_ref4!==void 0?_ref4:\"text\",variant:(_ref5=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref5!==void 0?_ref5:\"oihvsweWr\",w1nWOs5iT:(_ref6=word2!==null&&word2!==void 0?word2:props.w1nWOs5iT)!==null&&_ref6!==void 0?_ref6:\"maker\"};};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,auB66AFUm,w1nWOs5iT,agXkrRnYD,D7ja_SPDx,mjFS6eu5M,mnpp9gJvH,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"oihvsweWr\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onAppear90n33b=activeVariantCallback(async(...args)=>{await delay(()=>setVariant(\"a0TJ3E6GT\"),1e3);});const onAppearhepul8=activeVariantCallback(async(...args)=>{await delay(()=>setVariant(\"nhUXdXLPY\"),2e3);});const onAppear1jegjcb=activeVariantCallback(async(...args)=>{await delay(()=>setVariant(\"nz0BlWyeE\"),2e3);});const onAppearhcyvxx=activeVariantCallback(async(...args)=>{await delay(()=>setVariant(\"lZgzImB_Z\"),2e3);});const onAppearhcaouz=activeVariantCallback(async(...args)=>{await delay(()=>setVariant(\"icCnpAYM0\"),2e3);});const onAppear1vldglc=activeVariantCallback(async(...args)=>{await delay(()=>setVariant(\"oihvsweWr\"),2e3);});useOnVariantChange(baseVariant,{a0TJ3E6GT:onAppearhepul8,default:onAppear90n33b,icCnpAYM0:onAppear1vldglc,lZgzImB_Z:onAppearhcaouz,nhUXdXLPY:onAppear1jegjcb,nz0BlWyeE:onAppearhcyvxx});const ref1=React.useRef(null);const defaultLayoutId=React.useId();const sharedStyleClassNames=[sharedStyle.className];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,...addPropertyOverrides({a0TJ3E6GT:{value:transition2},icCnpAYM0:{value:transition2},lZgzImB_Z:{value:transition2},nhUXdXLPY:{value:transition2},nz0BlWyeE:{value:transition2}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{...restProps,...gestureHandlers,className:cx(serializationHash,...sharedStyleClassNames,\"framer-1akgxhd\",className,classNames),\"data-framer-name\":\"Start\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"oihvsweWr\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{...style},...addPropertyOverrides({a0TJ3E6GT:{\"data-framer-name\":\"Transition 1\"},icCnpAYM0:{\"data-framer-name\":\"Transition 5\"},lZgzImB_Z:{\"data-framer-name\":\"Transition 4\"},nhUXdXLPY:{\"data-framer-name\":\"Transition 2\"},nz0BlWyeE:{\"data-framer-name\":\"Transition 3\"}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-2yh5pe\",\"data-framer-name\":\"Titles\",layoutDependency:layoutDependency,layoutId:\"LcGVA5pS8\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-dir3ki\",\"data-framer-name\":\"Word 1\",layoutDependency:layoutDependency,layoutId:\"gPMqucadF\",children:/*#__PURE__*/_jsx(RichTextWithFXWithOptimizedAppearEffect,{__fromCanvasComponent:true,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,animate:animation,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h1,{className:\"framer-styles-preset-zpl8fi\",\"data-styles-preset\":\"zHRta2ytI\",style:{\"--framer-text-color\":\"var(--extracted-gdpscs, rgb(255, 70, 3))\"},children:\"solopreneur\"})}),className:\"framer-1464qd\",\"data-framer-appear-id\":\"1464qd\",fonts:[\"Inter\"],initial:animation1,layoutDependency:layoutDependency,layoutId:\"g9gKSTIqC\",optimized:true,style:{\"--extracted-gdpscs\":\"rgb(255, 70, 3)\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\",transformPerspective:1200},text:auB66AFUm,verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1imy1ub\",\"data-framer-name\":\"Word 2\",layoutDependency:layoutDependency,layoutId:\"ViYffcecR\",children:/*#__PURE__*/_jsx(RichTextWithFXWithOptimizedAppearEffect,{__fromCanvasComponent:true,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,animate:animation,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h1,{className:\"framer-styles-preset-zpl8fi\",\"data-styles-preset\":\"zHRta2ytI\",children:\"maker\"})}),className:\"framer-1iajcog\",\"data-framer-appear-id\":\"1iajcog\",fonts:[\"Inter\"],initial:animation1,layoutDependency:layoutDependency,layoutId:\"fG1meUVsD\",optimized:true,style:{\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\",transformPerspective:1200},text:w1nWOs5iT,variants:{a0TJ3E6GT:{\"--extracted-gdpscs\":\"rgb(255, 70, 3)\"}},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({a0TJ3E6GT:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h1,{className:\"framer-styles-preset-zpl8fi\",\"data-styles-preset\":\"zHRta2ytI\",style:{\"--framer-text-color\":\"var(--extracted-gdpscs, rgb(255, 70, 3))\"},children:\"maker\"})})}},baseVariant,gestureVariant)})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-ekn4nw\",\"data-framer-name\":\"Word 3\",layoutDependency:layoutDependency,layoutId:\"oYBR6IwNv\",children:/*#__PURE__*/_jsx(RichTextWithFXWithOptimizedAppearEffect,{__fromCanvasComponent:true,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,animate:animation,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h1,{className:\"framer-styles-preset-zpl8fi\",\"data-styles-preset\":\"zHRta2ytI\",children:\"designer\"})}),className:\"framer-xwroyg\",\"data-framer-appear-id\":\"xwroyg\",fonts:[\"Inter\"],initial:animation1,layoutDependency:layoutDependency,layoutId:\"cZjimkquU\",optimized:true,style:{\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\",transformPerspective:1200},text:agXkrRnYD,variants:{nhUXdXLPY:{\"--extracted-gdpscs\":\"rgb(255, 70, 3)\"}},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({nhUXdXLPY:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h1,{className:\"framer-styles-preset-zpl8fi\",\"data-styles-preset\":\"zHRta2ytI\",style:{\"--framer-text-color\":\"var(--extracted-gdpscs, rgb(255, 70, 3))\"},children:\"designer\"})})}},baseVariant,gestureVariant)})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-tom11j\",\"data-framer-name\":\"Word 4\",layoutDependency:layoutDependency,layoutId:\"LMt9YKiQQ\",children:/*#__PURE__*/_jsx(RichTextWithFXWithOptimizedAppearEffect,{__fromCanvasComponent:true,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,animate:animation,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h1,{className:\"framer-styles-preset-zpl8fi\",\"data-styles-preset\":\"zHRta2ytI\",children:\"indie hacker\"})}),className:\"framer-6ku568\",\"data-framer-appear-id\":\"6ku568\",fonts:[\"Inter\"],initial:animation1,layoutDependency:layoutDependency,layoutId:\"Vuyla5Hfn\",optimized:true,style:{\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\",transformPerspective:1200},text:D7ja_SPDx,variants:{nz0BlWyeE:{\"--extracted-gdpscs\":\"rgb(255, 70, 3)\"}},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({nz0BlWyeE:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h1,{className:\"framer-styles-preset-zpl8fi\",\"data-styles-preset\":\"zHRta2ytI\",style:{\"--framer-text-color\":\"var(--extracted-gdpscs, rgb(255, 70, 3))\"},children:\"indie hacker\"})})}},baseVariant,gestureVariant)})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-ilv2qh\",\"data-framer-name\":\"Word 5\",layoutDependency:layoutDependency,layoutId:\"Q5vHheTcd\",children:/*#__PURE__*/_jsx(RichTextWithFXWithOptimizedAppearEffect,{__fromCanvasComponent:true,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,animate:animation,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h1,{className:\"framer-styles-preset-zpl8fi\",\"data-styles-preset\":\"zHRta2ytI\",children:\"indie hacker\"})}),className:\"framer-2zrasq\",\"data-framer-appear-id\":\"2zrasq\",fonts:[\"Inter\"],initial:animation1,layoutDependency:layoutDependency,layoutId:\"x7vcYOdde\",optimized:true,style:{\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\",transformPerspective:1200},text:mjFS6eu5M,variants:{icCnpAYM0:{\"--extracted-gdpscs\":\"rgb(255, 70, 3)\"},lZgzImB_Z:{\"--extracted-gdpscs\":\"rgb(255, 70, 3)\"}},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({icCnpAYM0:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h1,{className:\"framer-styles-preset-zpl8fi\",\"data-styles-preset\":\"zHRta2ytI\",style:{\"--framer-text-color\":\"var(--extracted-gdpscs, rgb(255, 70, 3))\"},children:\"indie hacker\"})})},lZgzImB_Z:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h1,{className:\"framer-styles-preset-zpl8fi\",\"data-styles-preset\":\"zHRta2ytI\",style:{\"--framer-text-color\":\"var(--extracted-gdpscs, rgb(255, 70, 3))\"},children:\"indie hacker\"})})}},baseVariant,gestureVariant)})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1fqjmve\",\"data-framer-name\":\"Word 6\",layoutDependency:layoutDependency,layoutId:\"Lwl5_4dWh\",children:/*#__PURE__*/_jsx(RichTextWithFXWithOptimizedAppearEffect,{__fromCanvasComponent:true,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,animate:animation,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h1,{className:\"framer-styles-preset-zpl8fi\",\"data-styles-preset\":\"zHRta2ytI\",children:\"indie hacker\"})}),className:\"framer-t89n2w\",\"data-framer-appear-id\":\"t89n2w\",fonts:[\"Inter\"],initial:animation1,layoutDependency:layoutDependency,layoutId:\"filkhKMjP\",optimized:true,style:{\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\",transformPerspective:1200},text:mnpp9gJvH,variants:{icCnpAYM0:{\"--extracted-gdpscs\":\"rgb(255, 70, 3)\"},lZgzImB_Z:{\"--extracted-gdpscs\":\"rgb(255, 70, 3)\"}},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({icCnpAYM0:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h1,{className:\"framer-styles-preset-zpl8fi\",\"data-styles-preset\":\"zHRta2ytI\",style:{\"--framer-text-color\":\"var(--extracted-gdpscs, rgb(255, 70, 3))\"},children:\"indie hacker\"})})},lZgzImB_Z:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h1,{className:\"framer-styles-preset-zpl8fi\",\"data-styles-preset\":\"zHRta2ytI\",style:{\"--framer-text-color\":\"var(--extracted-gdpscs, rgb(255, 70, 3))\"},children:\"indie hacker\"})})}},baseVariant,gestureVariant)})})]})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-nBCG2.framer-qmsnee, .framer-nBCG2 .framer-qmsnee { display: block; }\",\".framer-nBCG2.framer-1akgxhd { align-content: flex-start; align-items: flex-start; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: 100px; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 390px; }\",\".framer-nBCG2 .framer-2yh5pe { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; left: 0px; overflow: hidden; padding: 0px; position: absolute; top: 0px; width: min-content; z-index: 1; }\",\".framer-nBCG2 .framer-dir3ki { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 95px; justify-content: center; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-nBCG2 .framer-1464qd { flex: none; height: 100px; position: relative; white-space: pre; width: auto; }\",\".framer-nBCG2 .framer-1imy1ub, .framer-nBCG2 .framer-ekn4nw, .framer-nBCG2 .framer-tom11j, .framer-nBCG2 .framer-ilv2qh, .framer-nBCG2 .framer-1fqjmve { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 100px; justify-content: center; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-nBCG2 .framer-1iajcog, .framer-nBCG2 .framer-xwroyg, .framer-nBCG2 .framer-6ku568, .framer-nBCG2 .framer-2zrasq, .framer-nBCG2 .framer-t89n2w { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-nBCG2.framer-1akgxhd, .framer-nBCG2 .framer-2yh5pe, .framer-nBCG2 .framer-dir3ki, .framer-nBCG2 .framer-1imy1ub, .framer-nBCG2 .framer-ekn4nw, .framer-nBCG2 .framer-tom11j, .framer-nBCG2 .framer-ilv2qh, .framer-nBCG2 .framer-1fqjmve { gap: 0px; } .framer-nBCG2.framer-1akgxhd > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-nBCG2.framer-1akgxhd > :first-child, .framer-nBCG2 .framer-2yh5pe > :first-child { margin-top: 0px; } .framer-nBCG2.framer-1akgxhd > :last-child, .framer-nBCG2 .framer-2yh5pe > :last-child { margin-bottom: 0px; } .framer-nBCG2 .framer-2yh5pe > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-nBCG2 .framer-dir3ki > *, .framer-nBCG2 .framer-1imy1ub > *, .framer-nBCG2 .framer-ekn4nw > *, .framer-nBCG2 .framer-tom11j > *, .framer-nBCG2 .framer-ilv2qh > *, .framer-nBCG2 .framer-1fqjmve > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-nBCG2 .framer-dir3ki > :first-child, .framer-nBCG2 .framer-1imy1ub > :first-child, .framer-nBCG2 .framer-ekn4nw > :first-child, .framer-nBCG2 .framer-tom11j > :first-child, .framer-nBCG2 .framer-ilv2qh > :first-child, .framer-nBCG2 .framer-1fqjmve > :first-child { margin-left: 0px; } .framer-nBCG2 .framer-dir3ki > :last-child, .framer-nBCG2 .framer-1imy1ub > :last-child, .framer-nBCG2 .framer-ekn4nw > :last-child, .framer-nBCG2 .framer-tom11j > :last-child, .framer-nBCG2 .framer-ilv2qh > :last-child, .framer-nBCG2 .framer-1fqjmve > :last-child { margin-right: 0px; } }\",\".framer-nBCG2.framer-v-o30r0w.framer-1akgxhd { flex-wrap: wrap; }\",\".framer-nBCG2.framer-v-o30r0w .framer-2yh5pe { top: -102px; }\",\".framer-nBCG2.framer-v-o30r0w .framer-dir3ki, .framer-nBCG2.framer-v-o30r0w .framer-1iajcog, .framer-nBCG2.framer-v-86l8yq .framer-dir3ki, .framer-nBCG2.framer-v-1x6vvue .framer-dir3ki, .framer-nBCG2.framer-v-1uu0m9b .framer-dir3ki, .framer-nBCG2.framer-v-o2liol .framer-dir3ki { height: 100px; }\",\".framer-nBCG2.framer-v-o30r0w .framer-1464qd { height: 48px; }\",\".framer-nBCG2.framer-v-o30r0w .framer-1imy1ub, .framer-nBCG2.framer-v-1x6vvue .framer-tom11j, .framer-nBCG2.framer-v-1uu0m9b .framer-ilv2qh, .framer-nBCG2.framer-v-1uu0m9b .framer-1fqjmve, .framer-nBCG2.framer-v-o2liol .framer-ilv2qh { height: 95px; }\",\".framer-nBCG2.framer-v-86l8yq.framer-1akgxhd, .framer-nBCG2.framer-v-1x6vvue.framer-1akgxhd, .framer-nBCG2.framer-v-1uu0m9b.framer-1akgxhd, .framer-nBCG2.framer-v-o2liol.framer-1akgxhd { flex-wrap: wrap; min-width: 390px; width: min-content; }\",\".framer-nBCG2.framer-v-86l8yq .framer-2yh5pe { top: -203px; }\",\".framer-nBCG2.framer-v-1x6vvue .framer-2yh5pe { top: -300px; }\",\".framer-nBCG2.framer-v-1uu0m9b .framer-2yh5pe { top: -400px; }\",\".framer-nBCG2.framer-v-o2liol .framer-2yh5pe { top: -492px; }\",\".framer-nBCG2.framer-v-o2liol .framer-1fqjmve { height: min-content; }\",...sharedStyle.css];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 100\n * @framerIntrinsicWidth 390\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]},\"a0TJ3E6GT\":{\"layout\":[\"fixed\",\"fixed\"]},\"nhUXdXLPY\":{\"layout\":[\"auto\",\"fixed\"]},\"nz0BlWyeE\":{\"layout\":[\"auto\",\"fixed\"]},\"lZgzImB_Z\":{\"layout\":[\"auto\",\"fixed\"]},\"icCnpAYM0\":{\"layout\":[\"auto\",\"fixed\"]}}}\n * @framerVariables {\"auB66AFUm\":\"word1\",\"w1nWOs5iT\":\"word2\",\"agXkrRnYD\":\"word3\",\"D7ja_SPDx\":\"word4\",\"mjFS6eu5M\":\"word5\",\"mnpp9gJvH\":\"word6\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerTjAKinpEr=withCSS(Component,css,\"framer-nBCG2\");export default FramerTjAKinpEr;FramerTjAKinpEr.displayName=\"Rotating Words\";FramerTjAKinpEr.defaultProps={height:100,width:390};addPropertyControls(FramerTjAKinpEr,{variant:{options:[\"oihvsweWr\",\"a0TJ3E6GT\",\"nhUXdXLPY\",\"nz0BlWyeE\",\"lZgzImB_Z\",\"icCnpAYM0\"],optionTitles:[\"Start\",\"Transition 1\",\"Transition 2\",\"Transition 3\",\"Transition 4\",\"Transition 5\"],title:\"Variant\",type:ControlType.Enum},auB66AFUm:{defaultValue:\"solopreneur\",displayTextArea:false,title:\"Word 1\",type:ControlType.String},w1nWOs5iT:{defaultValue:\"maker\",displayTextArea:false,title:\"Word 2\",type:ControlType.String},agXkrRnYD:{defaultValue:\"designer\",displayTextArea:false,title:\"Word 3\",type:ControlType.String},D7ja_SPDx:{defaultValue:\"indie hacker\",displayTextArea:false,title:\"Word 4\",type:ControlType.String},mjFS6eu5M:{defaultValue:\"indie hacker\",displayTextArea:false,title:\"Word 5\",type:ControlType.String},mnpp9gJvH:{defaultValue:\"text\",displayTextArea:false,title:\"Word 6\",type:ControlType.String}});addFonts(FramerTjAKinpEr,[{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\":\"FramerTjAKinpEr\",\"slots\":[],\"annotations\":{\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"a0TJ3E6GT\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"nhUXdXLPY\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"fixed\\\"]},\\\"nz0BlWyeE\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"fixed\\\"]},\\\"lZgzImB_Z\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"fixed\\\"]},\\\"icCnpAYM0\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"fixed\\\"]}}}\",\"framerVariables\":\"{\\\"auB66AFUm\\\":\\\"word1\\\",\\\"w1nWOs5iT\\\":\\\"word2\\\",\\\"agXkrRnYD\\\":\\\"word3\\\",\\\"D7ja_SPDx\\\":\\\"word4\\\",\\\"mjFS6eu5M\\\":\\\"word5\\\",\\\"mnpp9gJvH\\\":\\\"word6\\\"}\",\"framerContractVersion\":\"1\",\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicWidth\":\"390\",\"framerImmutableVariables\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerIntrinsicHeight\":\"100\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./TjAKinpEr.map", "// Generated by Framer (f7d95e4)\nimport{jsx as _jsx,jsxs as _jsxs,Fragment as _Fragment}from\"react/jsx-runtime\";import{addFonts,ComponentViewportProvider,Container,cx,GeneratedComponentContext,getFonts,getFontsFromSharedStyle,getLoadingLazyAtYPosition,Image,PropertyOverrides,ResolveLinks,RichText,useActiveVariantCallback,useComponentViewport,useCustomCursors,useHydratedBreakpointVariants,useIsOnFramerCanvas,useLocaleInfo,useOverlayState,useRouter,withCSS,withFX,withOptimizedAppearEffect}from\"framer\";import{AnimatePresence,LayoutGroup,motion}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import*as ReactDOM from\"react-dom\";import{Video}from\"https://framerusercontent.com/modules/lRDHiNWNVWmE0lqtoVHP/K0mI40rrezffFjPjHAZX/Video.js\";import Button from\"#framer/local/canvasComponent/KF7UbbSfc/KF7UbbSfc.js\";import CTA from\"#framer/local/canvasComponent/LpjyIZj0_/LpjyIZj0_.js\";import Footer from\"#framer/local/canvasComponent/lS9TvqxVt/lS9TvqxVt.js\";import RoutesTravelledNumbers from\"#framer/local/canvasComponent/p1xYhxj5G/p1xYhxj5G.js\";import Topbar from\"#framer/local/canvasComponent/sltkc74h7/sltkc74h7.js\";import Badge from\"#framer/local/canvasComponent/sqcnnD9OB/sqcnnD9OB.js\";import RotatingWords from\"#framer/local/canvasComponent/TjAKinpEr/TjAKinpEr.js\";import*as sharedStyle7 from\"#framer/local/css/FhiEA0I0q/FhiEA0I0q.js\";import*as sharedStyle3 from\"#framer/local/css/iWwuCnlxd/iWwuCnlxd.js\";import*as sharedStyle5 from\"#framer/local/css/oEPT_ciXE/oEPT_ciXE.js\";import*as sharedStyle4 from\"#framer/local/css/pP7JHpqrA/pP7JHpqrA.js\";import*as sharedStyle2 from\"#framer/local/css/VD7TwZfeV/VD7TwZfeV.js\";import*as sharedStyle1 from\"#framer/local/css/WtbOAWqvg/WtbOAWqvg.js\";import*as sharedStyle6 from\"#framer/local/css/xRA3Aj3_H/xRA3Aj3_H.js\";import*as sharedStyle from\"#framer/local/css/zHRta2ytI/zHRta2ytI.js\";import metadataProvider from\"#framer/local/webPageMetadata/augiA20Il/augiA20Il.js\";const TopbarFonts=getFonts(Topbar);const RotatingWordsFonts=getFonts(RotatingWords);const MotionDivWithOptimizedAppearEffect=withOptimizedAppearEffect(motion.div);const ButtonFonts=getFonts(Button);const RoutesTravelledNumbersFonts=getFonts(RoutesTravelledNumbers);const MotionDivWithFX=withFX(motion.div);const ImageWithOptimizedAppearEffect=withOptimizedAppearEffect(Image);const BadgeFonts=getFonts(Badge);const ContainerWithFX=withFX(Container);const VideoFonts=getFonts(Video);const RichTextWithFX=withFX(RichText);const CTAFonts=getFonts(CTA);const FooterFonts=getFonts(Footer);const breakpoints={ilCPgpUK1:\"(min-width: 767px) and (max-width: 1199px)\",WQLkyLRf1:\"(min-width: 1440px)\",xf27aOaI0:\"(min-width: 1200px) and (max-width: 1439px)\",xmttBflmi:\"(max-width: 766px)\"};const isBrowser=()=>typeof document!==\"undefined\";const serializationHash=\"framer-MxcaZ\";const variantClassNames={ilCPgpUK1:\"framer-v-fr0arj\",WQLkyLRf1:\"framer-v-72rtr7\",xf27aOaI0:\"framer-v-138cown\",xmttBflmi:\"framer-v-1oijrcc\"};const transition1={damping:80,delay:.1,mass:1,stiffness:500,type:\"spring\"};const animation={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition1,x:0,y:0};const animation1={opacity:.001,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:0,y:40};const transition2={delay:.1,duration:.5,ease:[.44,0,.56,1],type:\"tween\"};const animation2={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition2,x:0,y:0};const animation3={opacity:.001,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:48,y:0};const animation4={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:0,y:40};const animation5={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition1,x:0,y:40};const transition3={damping:80,delay:.3,mass:1,stiffness:500,type:\"spring\"};const animation6={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1.4,skewX:0,skewY:0,transformPerspective:500,transition:transition3,x:0,y:0};const animation7={opacity:.001,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:500,x:0,y:40};const transition4={damping:80,delay:.2,mass:1,stiffness:500,type:\"spring\"};const animation8={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition4,x:0,y:40};const animation9={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition3,x:0,y:40};const getContainer=()=>{return document.querySelector(\"#template-overlay\")??document.querySelector(\"#overlay\")??document.body;};const Overlay=({children,blockDocumentScrolling,enabled=true})=>{const[visible,setVisible]=useOverlayState({blockDocumentScrolling});return children({hide:()=>setVisible(false),show:()=>setVisible(true),toggle:()=>setVisible(!visible),visible:enabled&&visible});};const transition5={damping:80,delay:.4,mass:1,stiffness:500,type:\"spring\"};const animation10={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition5,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-1440\":\"WQLkyLRf1\",Desktop:\"xf27aOaI0\",Phone:\"xmttBflmi\",Tablet:\"ilCPgpUK1\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"WQLkyLRf1\"};};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{activeVariantCallback,delay}=useActiveVariantCallback(undefined);const a84QWb9it3bnx0g=({overlay,loadMore})=>activeVariantCallback(async(...args)=>{overlay.toggle();});const onTap1wnntms=({overlay,loadMore})=>activeVariantCallback(async(...args)=>{overlay.hide();});const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className,sharedStyle2.className,sharedStyle3.className,sharedStyle4.className,sharedStyle5.className,sharedStyle6.className,sharedStyle7.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const isDisplayed=()=>{if(!isBrowser())return true;if([\"ilCPgpUK1\",\"xmttBflmi\"].includes(baseVariant))return false;return true;};const isDisplayed1=()=>{if(!isBrowser())return true;if([\"ilCPgpUK1\",\"xmttBflmi\"].includes(baseVariant))return true;return false;};const isDisplayed2=()=>{if(!isBrowser())return true;if(baseVariant===\"xmttBflmi\")return true;return false;};const router=useRouter();const isDisplayed3=()=>{if(!isBrowser())return true;if(baseVariant===\"xmttBflmi\")return false;return true;};const isDisplayed4=()=>{if(!isBrowser())return true;if(baseVariant===\"ilCPgpUK1\")return true;return false;};const isDisplayed5=()=>{if(!isBrowser())return true;if(baseVariant===\"xf27aOaI0\")return true;return false;};const isDisplayed6=()=>{if(!isBrowser())return true;if([\"xf27aOaI0\",\"ilCPgpUK1\",\"xmttBflmi\"].includes(baseVariant))return false;return true;};const isDisplayed7=()=>{if(!isBrowser())return true;if(baseVariant===\"xf27aOaI0\")return false;return true;};useCustomCursors({});return /*#__PURE__*/_jsx(GeneratedComponentContext.Provider,{value:{primaryVariantId:\"WQLkyLRf1\",variantClassNames},children:/*#__PURE__*/_jsxs(LayoutGroup,{id:layoutId??defaultLayoutId,children:[/*#__PURE__*/_jsx(HTMLStyle,{value:\"html body { background: var(--token-f185e619-7ab0-4648-8fea-7397aa0c9ce6, rgb(255, 255, 255)); }\"}),/*#__PURE__*/_jsxs(motion.div,{...restProps,className:cx(scopingClassNames,\"framer-72rtr7\",className),ref:refBinding,style:{...style},children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ilCPgpUK1:{height:84}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:88,width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1nfyqiq-container\",nodeId:\"e6KSY9g1O\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ilCPgpUK1:{style:{height:\"100%\",width:\"100%\"},variant:\"QFrDOQu_j\"},xmttBflmi:{variant:\"wLpyUMyTT\"}},children:/*#__PURE__*/_jsx(Topbar,{height:\"100%\",id:\"e6KSY9g1O\",layoutId:\"e6KSY9g1O\",style:{width:\"100%\"},variant:\"tZO_1MKZj\",width:\"100%\"})})})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-ssplkx\",\"data-framer-name\":\"Hero Section\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ilCPgpUK1:{background:{alt:\"Backgroun Image\",fit:\"fill\",intrinsicHeight:1905,intrinsicWidth:2880,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0),pixelHeight:320,pixelWidth:212,positionX:\"center\",positionY:\"bottom\",src:\"https://framerusercontent.com/images/om3519biNEsDIK6blogk5ftYO0.jpg\"}},xmttBflmi:{background:{alt:\"Backgroun Image\",fit:\"fill\",intrinsicHeight:1905,intrinsicWidth:2880,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0),pixelHeight:320,pixelWidth:212,positionX:\"0%\",positionY:\"91.2%\",src:\"https://framerusercontent.com/images/om3519biNEsDIK6blogk5ftYO0.jpg\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"Backgroun Image\",fit:\"stretch\",intrinsicHeight:1905,intrinsicWidth:2880,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0),pixelHeight:212,pixelWidth:320,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/I3n1RDECOSWxrvHRkbxc03gd7s.jpeg\"},className:\"framer-1wue6qx\",\"data-framer-name\":\"Background Image\"})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-15z0qep\",\"data-framer-name\":\"Container\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-xa2ofc\",\"data-framer-name\":\"Content Full Wrap\",children:[/*#__PURE__*/_jsxs(MotionDivWithOptimizedAppearEffect,{animate:animation,className:\"framer-1qo3se8\",\"data-framer-appear-id\":\"1qo3se8\",\"data-framer-name\":\"Content Wrap\",initial:animation1,optimized:true,style:{transformPerspective:1200},children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-24bomm\",\"data-framer-name\":\"content\",children:[/*#__PURE__*/_jsxs(MotionDivWithOptimizedAppearEffect,{animate:animation2,className:\"framer-pmvpkv\",\"data-framer-appear-id\":\"pmvpkv\",\"data-framer-name\":\"Title\",initial:animation3,optimized:true,style:{transformPerspective:1200},children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{className:\"framer-styles-preset-zpl8fi\",\"data-styles-preset\":\"zHRta2ytI\",children:\"A new way forward for indoor navigation at\"})}),className:\"framer-1iafqto\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ilCPgpUK1:{height:54,y:(componentViewport?.y||0)+0+0+120+0+0+0+0+0+0+0+0+0+0+92},xmttBflmi:{height:52,y:(componentViewport?.y||0)+0+0+88+0+0+0+0+0+0+0+0+0+0+88}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:100,width:\"604px\",y:(componentViewport?.y||0)+0+0+180+0+0+0+0+0+0+0+0+92,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1j51jss-container\",nodeId:\"Ma9zt7ixf\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(RotatingWords,{agXkrRnYD:\"resorts\",auB66AFUm:\"airports\",D7ja_SPDx:\"work\",height:\"100%\",id:\"Ma9zt7ixf\",layoutId:\"Ma9zt7ixf\",mjFS6eu5M:\"conferences\",mnpp9gJvH:\"hospitals\",style:{height:\"100%\",width:\"100%\"},variant:\"oihvsweWr\",w1nWOs5iT:\"arenas\",width:\"100%\"})})})})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-229lvy\",\"data-styles-preset\":\"WtbOAWqvg\",children:\"Seamless enterprise indoor navigation\u2014no downloads, no equipment.\"})}),className:\"framer-58vmb4\",\"data-framer-name\":\"Content\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-6bzsam\",\"data-framer-name\":\"actions\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ilCPgpUK1:{y:(componentViewport?.y||0)+0+0+120+0+0+0+0+0+0+330+16},xmttBflmi:{y:(componentViewport?.y||0)+0+0+88+0+0+0+0+0+0+324+16}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:51,y:(componentViewport?.y||0)+0+0+180+0+0+0+0+376+16,children:/*#__PURE__*/_jsx(Container,{className:\"framer-110u2uf-container\",nodeId:\"hEi0Qa8or\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{xmttBflmi:{variant:\"zWgBfU2y6\"}},children:/*#__PURE__*/_jsx(Button,{CJwkcCfE5:\"https://zcal.co/i/T5ngEyOg\",GR68CgLTN:\"Book a Demo\",height:\"100%\",id:\"hEi0Qa8or\",layoutId:\"hEi0Qa8or\",ot18wTv79:true,variant:\"WKIwTYTZF\",width:\"100%\"})})})})})})]}),isDisplayed()&&/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation4,__framer__exit:animation5,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1c9licv hidden-fr0arj hidden-1oijrcc\",\"data-framer-name\":\"Users Full Wrap\",style:{transformPerspective:1200},children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1lkrj8z\",\"data-framer-name\":\"Users Wrap\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{xf27aOaI0:{background:{alt:\"person Icon\",fit:\"fill\",intrinsicHeight:144,intrinsicWidth:144,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+180+0+0+-128+40+0),pixelHeight:144,pixelWidth:144,src:\"https://framerusercontent.com/images/x74TObNHAolsBXNXj0UNhs3OTyc.png\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"person Icon\",fit:\"fill\",intrinsicHeight:144,intrinsicWidth:144,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+180+0+0+656+40+0),pixelHeight:144,pixelWidth:144,src:\"https://framerusercontent.com/images/x74TObNHAolsBXNXj0UNhs3OTyc.png\"},className:\"framer-48wtgj\",\"data-border\":true,\"data-framer-name\":\"User\"})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{xf27aOaI0:{background:{alt:\"person Icon\",fit:\"fill\",intrinsicHeight:144,intrinsicWidth:144,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+180+0+0+-128+40+0),pixelHeight:144,pixelWidth:144,src:\"https://framerusercontent.com/images/sasGB9hURuQL8P6YdKIDa4fm0.png\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"person Icon\",fit:\"fill\",intrinsicHeight:144,intrinsicWidth:144,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+180+0+0+656+40+0),pixelHeight:144,pixelWidth:144,src:\"https://framerusercontent.com/images/sasGB9hURuQL8P6YdKIDa4fm0.png\"},className:\"framer-ug9fof\",\"data-border\":true,\"data-framer-name\":\"User\"})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{xf27aOaI0:{background:{alt:\"person Icon\",fit:\"fill\",intrinsicHeight:144,intrinsicWidth:144,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+180+0+0+-128+40+0),pixelHeight:144,pixelWidth:144,src:\"https://framerusercontent.com/images/q0d9KRnw15NbEjTpLKDcPPijcU.png\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"person Icon\",fit:\"fill\",intrinsicHeight:144,intrinsicWidth:144,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+180+0+0+656+40+0),pixelHeight:144,pixelWidth:144,src:\"https://framerusercontent.com/images/q0d9KRnw15NbEjTpLKDcPPijcU.png\"},className:\"framer-90vq0u\",\"data-border\":true,\"data-framer-name\":\"User\"})})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{xf27aOaI0:{width:\"474.5192px\",y:(componentViewport?.y||0)+0+0+180+0+0+-128+53.5}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:21,width:\"428.8248px\",y:(componentViewport?.y||0)+0+0+180+0+0+656+53.5,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1jrepev-container\",nodeId:\"ZrZscN7K4\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(RoutesTravelledNumbers,{height:\"100%\",id:\"ZrZscN7K4\",layoutId:\"ZrZscN7K4\",style:{width:\"100%\"},width:\"100%\"})})})})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-ffabmk\",\"data-framer-name\":\"Image Wrap\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1rqwzgt\",\"data-framer-name\":\"Wrrap\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ilCPgpUK1:{background:{alt:\"Design Image\",fit:\"fit\",intrinsicHeight:1358,intrinsicWidth:1212,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+120+0+0+397+0+0+0),pixelHeight:2170,pixelWidth:3162,positionX:\"center\",positionY:\"center\",sizes:`calc((${componentViewport?.width||\"100vw\"} - 60px) * 1.3225)`,src:\"https://framerusercontent.com/images/JWd5YkDU4R0sToimjMv1Ap7gU.png?scale-down-to=2048\",srcSet:\"https://framerusercontent.com/images/JWd5YkDU4R0sToimjMv1Ap7gU.png?scale-down-to=512 512w,https://framerusercontent.com/images/JWd5YkDU4R0sToimjMv1Ap7gU.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/JWd5YkDU4R0sToimjMv1Ap7gU.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/JWd5YkDU4R0sToimjMv1Ap7gU.png 3162w\"}},xf27aOaI0:{background:{alt:\"Design Image\",fit:\"fit\",intrinsicHeight:1358,intrinsicWidth:1212,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+180+0+80+-316.5),pixelHeight:2170,pixelWidth:3162,positionX:\"center\",positionY:\"center\",sizes:\"545px\",src:\"https://framerusercontent.com/images/fbzDs5s70SIaCsbWJXwcWsS1lY.png?scale-down-to=2048\",srcSet:\"https://framerusercontent.com/images/fbzDs5s70SIaCsbWJXwcWsS1lY.png?scale-down-to=512 512w,https://framerusercontent.com/images/fbzDs5s70SIaCsbWJXwcWsS1lY.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/fbzDs5s70SIaCsbWJXwcWsS1lY.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/fbzDs5s70SIaCsbWJXwcWsS1lY.png 3162w\"}},xmttBflmi:{background:{alt:\"Design Image\",fit:\"fit\",intrinsicHeight:1358,intrinsicWidth:1212,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+88+0+0+413+53+0+0),pixelHeight:2170,pixelWidth:3162,positionX:\"center\",positionY:\"center\",sizes:`calc((${componentViewport?.width||\"100vw\"} - 32px) * 1.237)`,src:\"https://framerusercontent.com/images/JWd5YkDU4R0sToimjMv1Ap7gU.png?scale-down-to=2048\",srcSet:\"https://framerusercontent.com/images/JWd5YkDU4R0sToimjMv1Ap7gU.png?scale-down-to=512 512w,https://framerusercontent.com/images/JWd5YkDU4R0sToimjMv1Ap7gU.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/JWd5YkDU4R0sToimjMv1Ap7gU.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/JWd5YkDU4R0sToimjMv1Ap7gU.png 3162w\"}}},children:/*#__PURE__*/_jsx(ImageWithOptimizedAppearEffect,{animate:animation6,background:{alt:\"Design Image\",fit:\"fit\",intrinsicHeight:1358,intrinsicWidth:1212,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+180+0+80+0),pixelHeight:2170,pixelWidth:3162,positionX:\"center\",positionY:\"center\",sizes:\"669px\",src:\"https://framerusercontent.com/images/JWd5YkDU4R0sToimjMv1Ap7gU.png?scale-down-to=2048\",srcSet:\"https://framerusercontent.com/images/JWd5YkDU4R0sToimjMv1Ap7gU.png?scale-down-to=512 512w,https://framerusercontent.com/images/JWd5YkDU4R0sToimjMv1Ap7gU.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/JWd5YkDU4R0sToimjMv1Ap7gU.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/JWd5YkDU4R0sToimjMv1Ap7gU.png 3162w\"},className:\"framer-186cnfw\",\"data-framer-appear-id\":\"186cnfw\",\"data-framer-name\":\"Image \",initial:animation7,optimized:true,style:{scale:1.4,transformPerspective:500}})})}),isDisplayed1()&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-14otlz6 hidden-72rtr7 hidden-138cown\",\"data-framer-name\":\"Users Full Wrap\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1pleqs5\",\"data-framer-name\":\"Users Wrap\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ilCPgpUK1:{background:{alt:\"person Icon\",fit:\"fill\",intrinsicHeight:144,intrinsicWidth:144,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+120+0+0+397+0+479+20+0),pixelHeight:144,pixelWidth:144,src:\"https://framerusercontent.com/images/x74TObNHAolsBXNXj0UNhs3OTyc.png\"}},xmttBflmi:{background:{alt:\"person Icon\",fit:\"fill\",intrinsicHeight:144,intrinsicWidth:144,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+88+0+0+413+53+413+48+0+0),pixelHeight:144,pixelWidth:144,src:\"https://framerusercontent.com/images/x74TObNHAolsBXNXj0UNhs3OTyc.png\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"person Icon\",fit:\"fill\",intrinsicHeight:144,intrinsicWidth:144,pixelHeight:144,pixelWidth:144,src:\"https://framerusercontent.com/images/x74TObNHAolsBXNXj0UNhs3OTyc.png\"},className:\"framer-1swohkx\",\"data-border\":true,\"data-framer-name\":\"User\"})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ilCPgpUK1:{background:{alt:\"person Icon\",fit:\"fill\",intrinsicHeight:144,intrinsicWidth:144,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+120+0+0+397+0+479+20+0),pixelHeight:144,pixelWidth:144,src:\"https://framerusercontent.com/images/sasGB9hURuQL8P6YdKIDa4fm0.png\"}},xmttBflmi:{background:{alt:\"person Icon\",fit:\"fill\",intrinsicHeight:144,intrinsicWidth:144,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+88+0+0+413+53+413+48+0+0),pixelHeight:144,pixelWidth:144,src:\"https://framerusercontent.com/images/sasGB9hURuQL8P6YdKIDa4fm0.png\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"person Icon\",fit:\"fill\",intrinsicHeight:144,intrinsicWidth:144,pixelHeight:144,pixelWidth:144,src:\"https://framerusercontent.com/images/x74TObNHAolsBXNXj0UNhs3OTyc.png\"},className:\"framer-1kfnn05\",\"data-border\":true,\"data-framer-name\":\"User\"})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ilCPgpUK1:{background:{alt:\"person Icon\",fit:\"fill\",intrinsicHeight:144,intrinsicWidth:144,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+120+0+0+397+0+479+20+0),pixelHeight:144,pixelWidth:144,src:\"https://framerusercontent.com/images/q0d9KRnw15NbEjTpLKDcPPijcU.png\"}},xmttBflmi:{background:{alt:\"person Icon\",fit:\"fill\",intrinsicHeight:144,intrinsicWidth:144,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+88+0+0+413+53+413+48+0+0),pixelHeight:144,pixelWidth:144,src:\"https://framerusercontent.com/images/q0d9KRnw15NbEjTpLKDcPPijcU.png\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"person Icon\",fit:\"fill\",intrinsicHeight:144,intrinsicWidth:144,pixelHeight:144,pixelWidth:144,src:\"https://framerusercontent.com/images/x74TObNHAolsBXNXj0UNhs3OTyc.png\"},className:\"framer-16ixl7e\",\"data-border\":true,\"data-framer-name\":\"User\"})})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ilCPgpUK1:{width:`calc((${componentViewport?.width||\"100vw\"} - 60px) * 0.4107)`,y:(componentViewport?.y||0)+0+0+120+0+0+397+0+479+33.5},xmttBflmi:{width:`calc(${componentViewport?.width||\"100vw\"} - 32px)`,y:(componentViewport?.y||0)+0+0+88+0+0+413+53+413+48+58}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:21,children:/*#__PURE__*/_jsx(Container,{className:\"framer-te31eu-container\",nodeId:\"mIwDhSspj\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(RoutesTravelledNumbers,{height:\"100%\",id:\"mIwDhSspj\",layoutId:\"mIwDhSspj\",style:{width:\"100%\"},width:\"100%\"})})})})]})]})]})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1lrj5oo\",\"data-framer-name\":\"First Content Section\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-h8e2dh\",\"data-framer-name\":\"Container\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1qjpqou\",\"data-framer-name\":\"Content Full Wrap\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-dzca70\",\"data-framer-name\":\"Badge & Title\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ilCPgpUK1:{y:(componentViewport?.y||0)+0+1064+60+0+0+0+0+0+0+0},xf27aOaI0:{y:(componentViewport?.y||0)+0+250+40+0+20+0+0+0},xmttBflmi:{y:(componentViewport?.y||0)+0+1171+0+0+0+0+0+0+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:30,y:(componentViewport?.y||0)+0+1034+40+0+20+0+0+0,children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation4,__framer__exit:animation5,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-jupugb-container\",nodeId:\"e7rEu7mg1\",rendersWithMotion:true,scopeId:\"augiA20Il\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(Badge,{height:\"100%\",id:\"e7rEu7mg1\",JDEMNPLZW:\"Ease of Use\",layoutId:\"e7rEu7mg1\",variant:\"CjEHFWqVh\",width:\"100%\"})})})}),/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition4},__framer__animateOnce:true,__framer__enter:animation4,__framer__exit:animation8,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-12mvrje\",\"data-framer-name\":\"content\",style:{transformPerspective:1200},children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h2\",{className:\"framer-styles-preset-1axzzt9\",\"data-styles-preset\":\"VD7TwZfeV\",style:{\"--framer-text-color\":\"var(--token-86cd157c-1fe2-40b9-b2ac-563c05890241, rgb(255, 70, 3))\"},children:[\"No Downloads or \",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-ed705807-585b-4e03-8afc-4b5ea6dac55d, rgb(17, 17, 17))\"},children:\"Equipment Needed\"})]})}),className:\"framer-1u2iy3x\",\"data-framer-name\":\"Heading\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-f0yoox\",\"data-styles-preset\":\"iWwuCnlxd\",children:\"Instant wayfinding\u2014just scan a QR code or tap NFC. No downloads or sign-ups needed.\"})}),className:\"framer-k8ushj\",\"data-framer-name\":\"Paragraph\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition3},__framer__animateOnce:true,__framer__enter:animation4,__framer__exit:animation9,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-lfon5t\",\"data-framer-name\":\"Options wrap\",style:{transformPerspective:1200},children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1njlxra\",\"data-framer-name\":\"Option\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1fvm03s\",\"data-framer-name\":\"tick wrap\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ilCPgpUK1:{background:{alt:\"tick icon\",fit:\"fit\",intrinsicHeight:7,intrinsicWidth:10,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1064+60+0+0+0+0+304.4+0+0+6),pixelHeight:7,pixelWidth:10,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/JHKP1OcUvCkSLya5oSBVwLE1g8.svg\"}},xf27aOaI0:{background:{alt:\"tick icon\",fit:\"fit\",intrinsicHeight:7,intrinsicWidth:10,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+250+40+0+20+304.4+0+0+6),pixelHeight:7,pixelWidth:10,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/JHKP1OcUvCkSLya5oSBVwLE1g8.svg\"}},xmttBflmi:{background:{alt:\"tick icon\",fit:\"fit\",intrinsicHeight:7,intrinsicWidth:10,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1171+0+0+0+0+0+288.4+0+0+0+6),pixelHeight:7,pixelWidth:10,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/JHKP1OcUvCkSLya5oSBVwLE1g8.svg\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"tick icon\",fit:\"fit\",intrinsicHeight:7,intrinsicWidth:10,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1034+40+0+20+304.4+0+0+6),pixelHeight:7,pixelWidth:10,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/JHKP1OcUvCkSLya5oSBVwLE1g8.svg\"},className:\"framer-f2is6y\",\"data-framer-name\":\"tick icon\"})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1hmsvbq\",\"data-styles-preset\":\"pP7JHpqrA\",children:\"No download required\"})}),className:\"framer-h7xle4\",\"data-framer-name\":\"text\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-159sst2\",\"data-framer-name\":\"Option\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-120ufco\",\"data-framer-name\":\"tick wrap\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ilCPgpUK1:{background:{alt:\"tick icon\",fit:\"fit\",intrinsicHeight:7,intrinsicWidth:10,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1064+60+0+0+0+0+304.4+0+0+6),pixelHeight:7,pixelWidth:10,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/JHKP1OcUvCkSLya5oSBVwLE1g8.svg\"}},xf27aOaI0:{background:{alt:\"tick icon\",fit:\"fit\",intrinsicHeight:7,intrinsicWidth:10,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+250+40+0+20+304.4+0+0+6),pixelHeight:7,pixelWidth:10,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/JHKP1OcUvCkSLya5oSBVwLE1g8.svg\"}},xmttBflmi:{background:{alt:\"tick icon\",fit:\"fit\",intrinsicHeight:7,intrinsicWidth:10,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1171+0+0+0+0+0+288.4+0+44+0+6),pixelHeight:7,pixelWidth:10,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/JHKP1OcUvCkSLya5oSBVwLE1g8.svg\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"tick icon\",fit:\"fit\",intrinsicHeight:7,intrinsicWidth:10,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1034+40+0+20+304.4+0+0+6),pixelHeight:7,pixelWidth:10,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/JHKP1OcUvCkSLya5oSBVwLE1g8.svg\"},className:\"framer-f7l982\",\"data-framer-name\":\"tick icon\"})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1hmsvbq\",\"data-styles-preset\":\"pP7JHpqrA\",children:\"No beacons or equipment needed\"})}),className:\"framer-cbss48\",\"data-framer-name\":\"text\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsx(Overlay,{children:overlay=>/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ilCPgpUK1:{y:(componentViewport?.y||0)+0+1064+60+0+0+0+0+368.4},xf27aOaI0:{y:(componentViewport?.y||0)+0+250+40+0+20+368.4},xmttBflmi:{y:(componentViewport?.y||0)+0+1171+0+0+0+0+0+380.4}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:51,y:(componentViewport?.y||0)+0+1034+40+0+20+368.4,children:/*#__PURE__*/_jsxs(Container,{className:\"framer-unyo6k-container\",id:\"unyo6k\",nodeId:\"hMJsCH88w\",scopeId:\"augiA20Il\",children:[/*#__PURE__*/_jsx(Button,{a84QWb9it:a84QWb9it3bnx0g({overlay}),GR68CgLTN:\"See it in action\",height:\"100%\",id:\"hMJsCH88w\",layoutId:\"hMJsCH88w\",ot18wTv79:true,variant:\"KChSd_g7a\",width:\"100%\"}),/*#__PURE__*/_jsx(AnimatePresence,{children:overlay.visible&&/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/ReactDOM.createPortal(/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(motion.div,{animate:{opacity:1,transition:{delay:0,duration:0,ease:[.5,0,.88,.77],type:\"tween\"}},className:cx(scopingClassNames,\"framer-1wsjkbx\"),\"data-framer-portal-id\":\"unyo6k\",exit:{opacity:0,transition:{delay:0,duration:0,ease:[.12,.23,.5,1],type:\"tween\"}},initial:{opacity:0},onTap:()=>overlay.hide()},\"igwMWEnBO\"),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:cx(scopingClassNames,\"framer-98qeqf-container\"),\"data-framer-portal-id\":\"unyo6k\",inComponentSlot:true,isModuleExternal:true,nodeId:\"UzM93O9hI\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Video,{backgroundColor:\"rgba(0, 0, 0, 0)\",borderRadius:0,bottomLeftRadius:0,bottomRightRadius:0,controls:false,height:\"100%\",id:\"UzM93O9hI\",isMixedBorderRadius:false,layoutId:\"UzM93O9hI\",loop:true,muted:false,objectFit:\"contain\",playing:true,posterEnabled:false,srcFile:\"https://framerusercontent.com/assets/dMJRsncF55vPabSMx740uJuKfc.mp4\",srcType:\"Upload\",srcUrl:\"https://assets.mixkit.co/videos/preview/mixkit-shining-sun-in-the-sky-surrounded-by-moving-clouds-31793-small.mp4\",startTime:0,style:{height:\"100%\",width:\"100%\"},topLeftRadius:0,topRightRadius:0,volume:25,width:\"100%\"})})}),isDisplayed2()&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{xmttBflmi:{onTap:onTap1wnntms({overlay})}},children:/*#__PURE__*/_jsx(motion.div,{className:`${cx(scopingClassNames,\"framer-14acten\")} hidden-72rtr7 hidden-138cown hidden-fr0arj`,\"data-framer-portal-id\":\"unyo6k\",children:isDisplayed2()&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{xmttBflmi:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-weight\":\"500\"},children:\"CLOSE\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-style\":\"normal\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"0em\",\"--framer-line-height\":\"1.2em\",\"--framer-text-alignment\":\"start\",\"--framer-text-color\":\"hsl(0, 0%, 0%)\"},children:/*#__PURE__*/_jsx(\"br\",{className:\"trailing-break\"})})}),className:\"framer-ezr7en hidden-72rtr7\",fonts:[\"Inter-Medium\"],verticalAlignment:\"top\",withExternalLayout:true})})})})]}),getContainer())})})]})})})})}),/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition5},__framer__animateOnce:true,__framer__enter:animation4,__framer__exit:animation10,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1wfed5t\",\"data-framer-name\":\"Button Wrap\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"ODd9uFWWb\"},implicitPathVariables:undefined},{href:{webPageId:\"ODd9uFWWb\"},implicitPathVariables:undefined},{href:{webPageId:\"ODd9uFWWb\"},implicitPathVariables:undefined},{href:{webPageId:\"ODd9uFWWb\"},implicitPathVariables:undefined}],children:resolvedLinks=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ilCPgpUK1:{y:(componentViewport?.y||0)+0+1064+60+0+0+0+0+459.4+0},xf27aOaI0:{y:(componentViewport?.y||0)+0+250+40+0+20+459.4+0},xmttBflmi:{y:(componentViewport?.y||0)+0+1171+0+0+0+0+0+455.4+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:51,y:(componentViewport?.y||0)+0+1034+40+0+20+459.4+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1isvibj-container\",nodeId:\"GGtXuUg6b\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ilCPgpUK1:{CJwkcCfE5:resolvedLinks[2]},xf27aOaI0:{CJwkcCfE5:resolvedLinks[1]},xmttBflmi:{CJwkcCfE5:resolvedLinks[3]}},children:/*#__PURE__*/_jsx(Button,{CJwkcCfE5:resolvedLinks[0],GR68CgLTN:\"See Features\",height:\"100%\",id:\"GGtXuUg6b\",layoutId:\"GGtXuUg6b\",ot18wTv79:false,variant:\"hxme9uJgB\",width:\"100%\"})})})})})})})]}),/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation4,__framer__exit:animation5,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1ogoumu\",\"data-framer-name\":\"Image Wrap\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ilCPgpUK1:{background:{alt:\"Design Image\",fit:\"fill\",intrinsicHeight:954,intrinsicWidth:1312,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1064+60+0+0+550.4+0),pixelHeight:2048,pixelWidth:2048,positionX:\"center\",positionY:\"center\",sizes:`max(${componentViewport?.width||\"100vw\"} - 60px, 1px)`,src:\"https://framerusercontent.com/images/wdPBQxoM3Uis53R3yOpL6qw6ysI.jpg\",srcSet:\"https://framerusercontent.com/images/wdPBQxoM3Uis53R3yOpL6qw6ysI.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/wdPBQxoM3Uis53R3yOpL6qw6ysI.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/wdPBQxoM3Uis53R3yOpL6qw6ysI.jpg 2048w\"}},xf27aOaI0:{background:{alt:\"Design Image\",fit:\"fill\",intrinsicHeight:954,intrinsicWidth:1312,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+250+40+0+0),pixelHeight:2048,pixelWidth:2048,positionX:\"center\",positionY:\"center\",sizes:`max((min(${componentViewport?.width||\"100vw\"} - 80px, 1280px) - 70px) / 2, 1px)`,src:\"https://framerusercontent.com/images/wdPBQxoM3Uis53R3yOpL6qw6ysI.jpg\",srcSet:\"https://framerusercontent.com/images/wdPBQxoM3Uis53R3yOpL6qw6ysI.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/wdPBQxoM3Uis53R3yOpL6qw6ysI.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/wdPBQxoM3Uis53R3yOpL6qw6ysI.jpg 2048w\"}},xmttBflmi:{background:{alt:\"Design Image\",fit:\"fill\",intrinsicHeight:954,intrinsicWidth:1312,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1171+0+0+0+530.4+0),pixelHeight:2048,pixelWidth:2048,positionX:\"center\",positionY:\"center\",sizes:`max(${componentViewport?.width||\"100vw\"} - 32px, 1px)`,src:\"https://framerusercontent.com/images/wdPBQxoM3Uis53R3yOpL6qw6ysI.jpg\",srcSet:\"https://framerusercontent.com/images/wdPBQxoM3Uis53R3yOpL6qw6ysI.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/wdPBQxoM3Uis53R3yOpL6qw6ysI.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/wdPBQxoM3Uis53R3yOpL6qw6ysI.jpg 2048w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"Design Image\",fit:\"fill\",intrinsicHeight:954,intrinsicWidth:1312,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1034+40+0+0),pixelHeight:2048,pixelWidth:2048,positionX:\"center\",positionY:\"center\",sizes:`max((min(${componentViewport?.width||\"100vw\"} - 80px, 1280px) - 70px) / 2, 1px)`,src:\"https://framerusercontent.com/images/wdPBQxoM3Uis53R3yOpL6qw6ysI.jpg\",srcSet:\"https://framerusercontent.com/images/wdPBQxoM3Uis53R3yOpL6qw6ysI.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/wdPBQxoM3Uis53R3yOpL6qw6ysI.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/wdPBQxoM3Uis53R3yOpL6qw6ysI.jpg 2048w\"},className:\"framer-ym8ivz\",\"data-framer-name\":\"Image\"})})})]})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-kyc5o0\",\"data-framer-name\":\"Second Content Section\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-13s62u7\",\"data-framer-name\":\"Container\",children:[/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation4,__framer__exit:animation5,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-d2g3bj\",\"data-framer-name\":\"Image Wrap\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ilCPgpUK1:{background:{alt:\"Design Image\",fit:\"fill\",intrinsicHeight:946,intrinsicWidth:976,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+2254.4+60+0+0+349+0),pixelHeight:1024,pixelWidth:819,sizes:`max(${componentViewport?.width||\"100vw\"} - 60px, 1px)`,src:\"https://framerusercontent.com/images/vrOJFBiF3KJtZVImCxQmPbHa0BI.jpg\",srcSet:\"https://framerusercontent.com/images/vrOJFBiF3KJtZVImCxQmPbHa0BI.jpg 819w\"}},xf27aOaI0:{background:{alt:\"Design Image\",fit:\"fill\",intrinsicHeight:946,intrinsicWidth:976,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+900.4+0+0+0),pixelHeight:1024,pixelWidth:819,sizes:`max((min(${componentViewport?.width||\"100vw\"} - 80px, 1280px) - 70px) / 2, 1px)`,src:\"https://framerusercontent.com/images/vrOJFBiF3KJtZVImCxQmPbHa0BI.jpg\",srcSet:\"https://framerusercontent.com/images/vrOJFBiF3KJtZVImCxQmPbHa0BI.jpg 819w\"}},xmttBflmi:{background:{alt:\"Design Image\",fit:\"fill\",intrinsicHeight:946,intrinsicWidth:976,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+2015.4+40+0+0+411.4+0),pixelHeight:1024,pixelWidth:819,sizes:`max(${componentViewport?.width||\"100vw\"} - 32px, 1px)`,src:\"https://framerusercontent.com/images/vrOJFBiF3KJtZVImCxQmPbHa0BI.jpg\",srcSet:\"https://framerusercontent.com/images/vrOJFBiF3KJtZVImCxQmPbHa0BI.jpg 819w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"Design Image\",fit:\"fill\",intrinsicHeight:946,intrinsicWidth:976,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1684.4+0+0+0),pixelHeight:1024,pixelWidth:819,sizes:`max((min(${componentViewport?.width||\"100vw\"} - 80px, 1280px) - 70px) / 2, 1px)`,src:\"https://framerusercontent.com/images/vrOJFBiF3KJtZVImCxQmPbHa0BI.jpg\",srcSet:\"https://framerusercontent.com/images/vrOJFBiF3KJtZVImCxQmPbHa0BI.jpg 819w\"},className:\"framer-5f7hox\",\"data-framer-name\":\"Image\"})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-6sp0vs\",\"data-framer-name\":\"Content Full Wrap\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1dbbhzq\",\"data-framer-name\":\"Badge & Title\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ilCPgpUK1:{y:(componentViewport?.y||0)+0+2254.4+60+0+0+0+0+0+0+0},xf27aOaI0:{y:(componentViewport?.y||0)+0+900.4+0+0+20+0+0+0},xmttBflmi:{y:(componentViewport?.y||0)+0+2015.4+40+0+0+0+0+0+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:30,y:(componentViewport?.y||0)+0+1684.4+0+0+20+0+0+0,children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation4,__framer__exit:animation5,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-l67ftj-container\",nodeId:\"p4TIYkQYk\",rendersWithMotion:true,scopeId:\"augiA20Il\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(Badge,{height:\"100%\",id:\"p4TIYkQYk\",JDEMNPLZW:\"Automatic Translation\",layoutId:\"p4TIYkQYk\",variant:\"CjEHFWqVh\",width:\"100%\"})})})}),/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition4},__framer__animateOnce:true,__framer__enter:animation4,__framer__exit:animation8,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-17mpdb8\",\"data-framer-name\":\"content\",style:{transformPerspective:1200},children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h2\",{className:\"framer-styles-preset-1axzzt9\",\"data-styles-preset\":\"VD7TwZfeV\",children:[/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-86cd157c-1fe2-40b9-b2ac-563c05890241, rgb(255, 70, 3))\"},children:\"Multilingual\"}),\" Magic\"]})}),className:\"framer-sexd7r\",\"data-framer-name\":\"Heading\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-f0yoox\",\"data-styles-preset\":\"iWwuCnlxd\",children:\"Provide navigation in the customers' preferred language without lifting a finger\u2014our tech automatically adapts to their device\u2019s settings for a smooth, hassle-free experience.\"})}),className:\"framer-1wagqzb\",\"data-framer-name\":\"Paragraph\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-193yyh6\",\"data-framer-name\":\"Option\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-hdbzzx\",\"data-framer-name\":\"tick wrap\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ilCPgpUK1:{background:{alt:\"tick icon\",fit:\"fit\",intrinsicHeight:7,intrinsicWidth:10,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+2254.4+60+0+0+0+0+0+0+46+0+242.4+0+6),pixelHeight:7,pixelWidth:10,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/JHKP1OcUvCkSLya5oSBVwLE1g8.svg\"}},xf27aOaI0:{background:{alt:\"tick icon\",fit:\"fit\",intrinsicHeight:7,intrinsicWidth:10,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+900.4+0+0+20+0+0+46+0+242.4+0+6),pixelHeight:7,pixelWidth:10,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/JHKP1OcUvCkSLya5oSBVwLE1g8.svg\"}},xmttBflmi:{background:{alt:\"tick icon\",fit:\"fit\",intrinsicHeight:7,intrinsicWidth:10,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+2015.4+40+0+0+0+0+0+0+46+0+242.4+0+6),pixelHeight:7,pixelWidth:10,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/JHKP1OcUvCkSLya5oSBVwLE1g8.svg\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"tick icon\",fit:\"fit\",intrinsicHeight:7,intrinsicWidth:10,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1684.4+0+0+20+0+0+46+0+242.4+0+6),pixelHeight:7,pixelWidth:10,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/JHKP1OcUvCkSLya5oSBVwLE1g8.svg\"},className:\"framer-1dfhhma\",\"data-framer-name\":\"tick icon\"})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1hmsvbq\",\"data-styles-preset\":\"pP7JHpqrA\",children:\"Available in 22 languages \"})}),className:\"framer-cxnag0\",\"data-framer-name\":\"text\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})]})]}),isDisplayed3()&&/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition3},__framer__animateOnce:true,__framer__enter:animation4,__framer__exit:animation9,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1b8piid hidden-1oijrcc\",\"data-framer-name\":\"Video Button Wrap\",style:{transformPerspective:1200}}),/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition5},__framer__animateOnce:true,__framer__enter:animation4,__framer__exit:animation10,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-qp4o6c\",\"data-framer-name\":\"Button Wrap\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"ODd9uFWWb\"},implicitPathVariables:undefined},{href:{webPageId:\"ODd9uFWWb\"},implicitPathVariables:undefined},{href:{webPageId:\"ODd9uFWWb\"},implicitPathVariables:undefined},{href:{webPageId:\"ODd9uFWWb\"},implicitPathVariables:undefined}],children:resolvedLinks1=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ilCPgpUK1:{y:(componentViewport?.y||0)+0+2254.4+60+0+0+0+0+258+0},xf27aOaI0:{y:(componentViewport?.y||0)+0+900.4+0+0+20+258+0},xmttBflmi:{y:(componentViewport?.y||0)+0+2015.4+40+0+0+0+0+336.4+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:51,y:(componentViewport?.y||0)+0+1684.4+0+0+20+258+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1y13joc-container\",nodeId:\"XKVoWK4JP\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ilCPgpUK1:{CJwkcCfE5:resolvedLinks1[2]},xf27aOaI0:{CJwkcCfE5:resolvedLinks1[1]},xmttBflmi:{CJwkcCfE5:resolvedLinks1[3]}},children:/*#__PURE__*/_jsx(Button,{CJwkcCfE5:resolvedLinks1[0],GR68CgLTN:\"See Features\",height:\"100%\",id:\"XKVoWK4JP\",layoutId:\"XKVoWK4JP\",ot18wTv79:false,variant:\"hxme9uJgB\",width:\"100%\"})})})})})})})]})]})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-f7i4cp\",\"data-framer-name\":\"First Content Section\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-bccrmd\",\"data-framer-name\":\"Container\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-nz6ytj\",\"data-framer-name\":\"Content Full Wrap\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-7ynfmq\",\"data-framer-name\":\"Badge & Title\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ilCPgpUK1:{y:(componentViewport?.y||0)+0+3243.4+60+5684341886080802e-29+0+0+0+0+0+0},xf27aOaI0:{y:(componentViewport?.y||0)+0+1329.4+80+0+20+0+0+0},xmttBflmi:{y:(componentViewport?.y||0)+0+2756.8+64+0+0+0+0+0+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:30,y:(componentViewport?.y||0)+0+2113.4+80+0+20+0+0+0,children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation4,__framer__exit:animation5,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1fml11i-container\",nodeId:\"jddLYwnqC\",rendersWithMotion:true,scopeId:\"augiA20Il\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(Badge,{height:\"100%\",id:\"jddLYwnqC\",JDEMNPLZW:\"Quick Elevator Access\",layoutId:\"jddLYwnqC\",variant:\"CjEHFWqVh\",width:\"100%\"})})})}),/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition4},__framer__animateOnce:true,__framer__enter:animation4,__framer__exit:animation8,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-3swtmn\",\"data-framer-name\":\"content\",style:{transformPerspective:1200},children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h2\",{className:\"framer-styles-preset-1axzzt9\",\"data-styles-preset\":\"VD7TwZfeV\",style:{\"--framer-text-color\":\"var(--token-86cd157c-1fe2-40b9-b2ac-563c05890241, rgb(255, 70, 3))\"},children:[\"Accessibility\",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"rgb(255, 70, 3)\"},children:\" \"}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-ed705807-585b-4e03-8afc-4b5ea6dac55d, rgb(17, 17, 17))\"},children:\"Friendly\"})]})}),className:\"framer-11jrmi7\",\"data-framer-name\":\"Heading\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-f0yoox\",\"data-styles-preset\":\"iWwuCnlxd\",children:\"Our technology automatically segments routes requiring elevators for those with mobility impairments, and offers route previews, making it especially beneficial for neurodivergent individuals.\"})}),className:\"framer-hllz3n\",\"data-framer-name\":\"Paragraph\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition3},__framer__animateOnce:true,__framer__enter:animation4,__framer__exit:animation9,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-2nfddq\",\"data-framer-name\":\"Options wrap\",style:{transformPerspective:1200},children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1ffdpjh\",\"data-framer-name\":\"Option\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-vvzghf\",\"data-framer-name\":\"tick wrap\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ilCPgpUK1:{background:{alt:\"tick icon\",fit:\"fit\",intrinsicHeight:7,intrinsicWidth:10,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+3243.4+60+5684341886080802e-29+0+0+0+304.4+0+0+6),pixelHeight:7,pixelWidth:10,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/JHKP1OcUvCkSLya5oSBVwLE1g8.svg\"}},xf27aOaI0:{background:{alt:\"tick icon\",fit:\"fit\",intrinsicHeight:7,intrinsicWidth:10,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1329.4+80+0+20+304.4+0+0+6),pixelHeight:7,pixelWidth:10,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/JHKP1OcUvCkSLya5oSBVwLE1g8.svg\"}},xmttBflmi:{background:{alt:\"tick icon\",fit:\"fit\",intrinsicHeight:7,intrinsicWidth:10,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+2756.8+64+0+0+0+0+288.4+0+0+0+6),pixelHeight:7,pixelWidth:10,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/JHKP1OcUvCkSLya5oSBVwLE1g8.svg\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"tick icon\",fit:\"fit\",intrinsicHeight:7,intrinsicWidth:10,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+2113.4+80+0+20+304.4+0+0+6),pixelHeight:7,pixelWidth:10,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/JHKP1OcUvCkSLya5oSBVwLE1g8.svg\"},className:\"framer-1fphaon\",\"data-framer-name\":\"tick icon\"})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1hmsvbq\",\"data-styles-preset\":\"pP7JHpqrA\",children:\"Accessible Routes\"})}),className:\"framer-nie4ue\",\"data-framer-name\":\"text\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-151uqp8\",\"data-framer-name\":\"Option\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1q6t2rd\",\"data-framer-name\":\"tick wrap\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ilCPgpUK1:{background:{alt:\"tick icon\",fit:\"fit\",intrinsicHeight:7,intrinsicWidth:10,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+3243.4+60+5684341886080802e-29+0+0+0+304.4+0+0+6),pixelHeight:7,pixelWidth:10,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/JHKP1OcUvCkSLya5oSBVwLE1g8.svg\"}},xf27aOaI0:{background:{alt:\"tick icon\",fit:\"fit\",intrinsicHeight:7,intrinsicWidth:10,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1329.4+80+0+20+304.4+0+0+6),pixelHeight:7,pixelWidth:10,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/JHKP1OcUvCkSLya5oSBVwLE1g8.svg\"}},xmttBflmi:{background:{alt:\"tick icon\",fit:\"fit\",intrinsicHeight:7,intrinsicWidth:10,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+2756.8+64+0+0+0+0+288.4+0+44+0+6),pixelHeight:7,pixelWidth:10,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/JHKP1OcUvCkSLya5oSBVwLE1g8.svg\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"tick icon\",fit:\"fit\",intrinsicHeight:7,intrinsicWidth:10,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+2113.4+80+0+20+304.4+0+0+6),pixelHeight:7,pixelWidth:10,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/JHKP1OcUvCkSLya5oSBVwLE1g8.svg\"},className:\"framer-1cbesau\",\"data-framer-name\":\"tick icon\"})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1hmsvbq\",\"data-styles-preset\":\"pP7JHpqrA\",children:\"Preview Routes from Anywhere\"})}),className:\"framer-1jjqsqo\",\"data-framer-name\":\"text\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition5},__framer__animateOnce:true,__framer__enter:animation4,__framer__exit:animation10,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-83gw8h\",\"data-framer-name\":\"Button Wrap\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"ODd9uFWWb\"},implicitPathVariables:undefined},{href:{webPageId:\"ODd9uFWWb\"},implicitPathVariables:undefined},{href:{webPageId:\"ODd9uFWWb\"},implicitPathVariables:undefined},{href:{webPageId:\"ODd9uFWWb\"},implicitPathVariables:undefined}],children:resolvedLinks2=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ilCPgpUK1:{y:(componentViewport?.y||0)+0+3243.4+60+5684341886080802e-29+0+0+0+368.4+0},xf27aOaI0:{y:(componentViewport?.y||0)+0+1329.4+80+0+20+368.4+0},xmttBflmi:{y:(componentViewport?.y||0)+0+2756.8+64+0+0+0+0+380.4+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:51,y:(componentViewport?.y||0)+0+2113.4+80+0+20+368.4+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-151tzm8-container\",nodeId:\"PND_0UMBZ\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ilCPgpUK1:{CJwkcCfE5:resolvedLinks2[2]},xf27aOaI0:{CJwkcCfE5:resolvedLinks2[1]},xmttBflmi:{CJwkcCfE5:resolvedLinks2[3]}},children:/*#__PURE__*/_jsx(Button,{CJwkcCfE5:resolvedLinks2[0],GR68CgLTN:\"See Features\",height:\"100%\",id:\"PND_0UMBZ\",layoutId:\"PND_0UMBZ\",ot18wTv79:false,variant:\"hxme9uJgB\",width:\"100%\"})})})})})})})]}),/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation4,__framer__exit:animation5,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-19qk5vn\",\"data-framer-name\":\"Image Wrap\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ilCPgpUK1:{background:{alt:\"Design Image\",fit:\"fill\",intrinsicHeight:954,intrinsicWidth:1312,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+3243.4+60+5684341886080802e-29+0+459.4+0),pixelHeight:1744,pixelWidth:2615,positionX:\"center\",positionY:\"center\",sizes:`max(${componentViewport?.width||\"100vw\"} - 60px, 1px)`,src:\"https://framerusercontent.com/images/aM5sY4goCanYiIq7CJw9KKavws8.jpg?scale-down-to=2048\",srcSet:\"https://framerusercontent.com/images/aM5sY4goCanYiIq7CJw9KKavws8.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/aM5sY4goCanYiIq7CJw9KKavws8.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/aM5sY4goCanYiIq7CJw9KKavws8.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/aM5sY4goCanYiIq7CJw9KKavws8.jpg 2615w\"}},xf27aOaI0:{background:{alt:\"Design Image\",fit:\"fill\",intrinsicHeight:954,intrinsicWidth:1312,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1329.4+80+0+0),pixelHeight:1744,pixelWidth:2615,positionX:\"center\",positionY:\"center\",sizes:`max((min(${componentViewport?.width||\"100vw\"} - 80px, 1280px) - 70px) / 2, 1px)`,src:\"https://framerusercontent.com/images/aM5sY4goCanYiIq7CJw9KKavws8.jpg?scale-down-to=2048\",srcSet:\"https://framerusercontent.com/images/aM5sY4goCanYiIq7CJw9KKavws8.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/aM5sY4goCanYiIq7CJw9KKavws8.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/aM5sY4goCanYiIq7CJw9KKavws8.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/aM5sY4goCanYiIq7CJw9KKavws8.jpg 2615w\"}},xmttBflmi:{background:{alt:\"Design Image\",fit:\"fill\",intrinsicHeight:954,intrinsicWidth:1312,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+2756.8+64+0+0+455.4+0),pixelHeight:1744,pixelWidth:2615,positionX:\"center\",positionY:\"center\",sizes:`max(${componentViewport?.width||\"100vw\"} - 32px, 1px)`,src:\"https://framerusercontent.com/images/aM5sY4goCanYiIq7CJw9KKavws8.jpg?scale-down-to=2048\",srcSet:\"https://framerusercontent.com/images/aM5sY4goCanYiIq7CJw9KKavws8.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/aM5sY4goCanYiIq7CJw9KKavws8.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/aM5sY4goCanYiIq7CJw9KKavws8.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/aM5sY4goCanYiIq7CJw9KKavws8.jpg 2615w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"Design Image\",fit:\"fill\",intrinsicHeight:954,intrinsicWidth:1312,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+2113.4+80+0+0),pixelHeight:1744,pixelWidth:2615,positionX:\"center\",positionY:\"center\",sizes:`max((min(${componentViewport?.width||\"100vw\"} - 80px, 1280px) - 70px) / 2, 1px)`,src:\"https://framerusercontent.com/images/aM5sY4goCanYiIq7CJw9KKavws8.jpg?scale-down-to=2048\",srcSet:\"https://framerusercontent.com/images/aM5sY4goCanYiIq7CJw9KKavws8.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/aM5sY4goCanYiIq7CJw9KKavws8.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/aM5sY4goCanYiIq7CJw9KKavws8.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/aM5sY4goCanYiIq7CJw9KKavws8.jpg 2615w\"},className:\"framer-16jv8ch\",\"data-framer-name\":\"Image\"})})})]})}),isDisplayed4()&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-11htv60 hidden-72rtr7 hidden-138cown hidden-1oijrcc\",\"data-framer-name\":\"App Design Section\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-mhwbu2\",\"data-framer-name\":\"Container\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-tjndad\",\"data-framer-name\":\"Header\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-19hzz5n\",\"data-framer-name\":\"Section Header\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-lv7a1c\",\"data-framer-name\":\"Header\",children:/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition4},__framer__animateOnce:true,__framer__enter:animation4,__framer__exit:animation8,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h2\",{className:\"framer-styles-preset-1axzzt9\",\"data-styles-preset\":\"VD7TwZfeV\",style:{\"--framer-text-alignment\":\"center\"},children:[/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-ed705807-585b-4e03-8afc-4b5ea6dac55d, rgb(17, 17, 17))\"},children:\"Use our \"}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"rgb(255, 70, 3)\"},children:\"API\"}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-ed705807-585b-4e03-8afc-4b5ea6dac55d, rgb(17, 17, 17))\"},children:\" to send routes in \"}),/*#__PURE__*/_jsx(\"br\",{}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-ed705807-585b-4e03-8afc-4b5ea6dac55d, rgb(17, 17, 17))\"},children:\"pre-arrival messages for enhanced \"}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"rgb(255, 70, 3)\"},children:\"CX\"})]})}),className:\"framer-1jbtakc\",\"data-framer-name\":\"Title\",fonts:[\"Inter\"],style:{transformPerspective:1200},verticalAlignment:\"top\",withExternalLayout:true})})})})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-15ypr7b\",\"data-framer-name\":\"Grid 1\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-9n0yo\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1rtarxq\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ilCPgpUK1:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:800,intrinsicWidth:2e3,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+4342.8+100+0+0+0+0+0),pixelHeight:150,pixelWidth:162,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/GHc4uTlC3r6mi9guNz66EJ8Bluw.svg\"}},xf27aOaI0:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:800,intrinsicWidth:2e3,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1948.8000000000002+45+0+0+0+0+0),pixelHeight:150,pixelWidth:162,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/GHc4uTlC3r6mi9guNz66EJ8Bluw.svg\"}},xmttBflmi:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:800,intrinsicWidth:2e3,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+3590.2000000000003+20+0+0+0+0+0),pixelHeight:150,pixelWidth:162,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/GHc4uTlC3r6mi9guNz66EJ8Bluw.svg\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",intrinsicHeight:800,intrinsicWidth:2e3,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+2732.8+45+0+0+0+0+0),pixelHeight:150,pixelWidth:162,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/GHc4uTlC3r6mi9guNz66EJ8Bluw.svg\"},className:\"framer-zaelqv\",\"data-framer-name\":\"Image\"})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-m9b605\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNzAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.8px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 70, 3)\"},children:\"No Downloads\"})}),className:\"framer-6x8pi6\",fonts:[\"GF;Inter-700\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h3\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNTAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"17px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.5px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-1021654d-251a-4750-952b-de3f7005260e, rgb(136, 136, 136))\"},children:[\"Scan a QR code or tap to NFC \",/*#__PURE__*/_jsx(\"br\",{}),\"activate navigation.\"]})}),className:\"framer-m0oazy\",fonts:[\"GF;Inter-500\"],verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-rgi64a\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ilCPgpUK1:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:800,intrinsicWidth:2e3,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+4342.8+100+0+0+0+0+0),pixelHeight:150,pixelWidth:150,src:\"https://framerusercontent.com/images/J4ldavwTdA4pO25u2qrNV0rUak.svg\"}},xf27aOaI0:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:800,intrinsicWidth:2e3,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1948.8000000000002+45+0+0+0+0+0),pixelHeight:150,pixelWidth:150,src:\"https://framerusercontent.com/images/J4ldavwTdA4pO25u2qrNV0rUak.svg\"}},xmttBflmi:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:800,intrinsicWidth:2e3,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+3590.2000000000003+20+0+0+239.8+0+0),pixelHeight:150,pixelWidth:150,src:\"https://framerusercontent.com/images/J4ldavwTdA4pO25u2qrNV0rUak.svg\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:800,intrinsicWidth:2e3,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+2732.8+45+0+0+0+0+0),pixelHeight:150,pixelWidth:150,src:\"https://framerusercontent.com/images/J4ldavwTdA4pO25u2qrNV0rUak.svg\"},className:\"framer-1p8zeln\",\"data-framer-name\":\"Image\"})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1ntjlhr\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNzAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.8px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 70, 3)\"},children:\"No Equipment Required\"})}),className:\"framer-4oirxd\",fonts:[\"GF;Inter-700\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNTAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"17px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.5px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-1021654d-251a-4750-952b-de3f7005260e, rgb(136, 136, 136))\"},children:\"No beacon integration or Wi-Fi triangulation is needed. \"})}),className:\"framer-s0verq\",fonts:[\"GF;Inter-500\"],verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-6thxr4\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ilCPgpUK1:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:800,intrinsicWidth:2e3,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+4342.8+100+0+0+0+0+0),pixelHeight:150,pixelWidth:116,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/HsxJmh6k7svq6YUsT8UeU6OaoI.svg\"}},xf27aOaI0:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:800,intrinsicWidth:2e3,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1948.8000000000002+45+0+0+0+0+0),pixelHeight:150,pixelWidth:116,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/HsxJmh6k7svq6YUsT8UeU6OaoI.svg\"}},xmttBflmi:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:800,intrinsicWidth:2e3,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+3590.2000000000003+20+0+0+479.6+0+0),pixelHeight:150,pixelWidth:116,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/HsxJmh6k7svq6YUsT8UeU6OaoI.svg\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",intrinsicHeight:800,intrinsicWidth:2e3,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+2732.8+45+0+0+0+0+0),pixelHeight:150,pixelWidth:116,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/HsxJmh6k7svq6YUsT8UeU6OaoI.svg\"},className:\"framer-iqw1sl\",\"data-framer-name\":\"Image\"})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-pmdbsu\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNzAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.8px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 70, 3)\"},children:\"No User Data Collected\"})}),className:\"framer-1wtkble\",fonts:[\"GF;Inter-700\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h3\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNTAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"17px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.5px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-1021654d-251a-4750-952b-de3f7005260e, rgb(136, 136, 136))\"},children:[\"We do not collect, store or \",/*#__PURE__*/_jsx(\"br\",{}),\"transmit any user data.\"]})}),className:\"framer-pnnr0v\",fonts:[\"GF;Inter-500\"],verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-13qbeu8\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ilCPgpUK1:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:800,intrinsicWidth:2e3,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+4342.8+100+0+0+246.8+0+0),pixelHeight:150,pixelWidth:295,positionX:\"center\",positionY:\"center\",sizes:\"87px\",src:\"https://framerusercontent.com/images/DjxcQM0Tf83jdL2I4O4AncS9c.svg\",srcSet:\"https://framerusercontent.com/images/DjxcQM0Tf83jdL2I4O4AncS9c.svg?scale-down-to=512 512w,https://framerusercontent.com/images/DjxcQM0Tf83jdL2I4O4AncS9c.svg 552w\"}},xf27aOaI0:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:800,intrinsicWidth:2e3,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1948.8000000000002+45+0+0+255.8+0+0),pixelHeight:150,pixelWidth:295,positionX:\"center\",positionY:\"center\",sizes:\"96px\",src:\"https://framerusercontent.com/images/DjxcQM0Tf83jdL2I4O4AncS9c.svg\",srcSet:\"https://framerusercontent.com/images/DjxcQM0Tf83jdL2I4O4AncS9c.svg?scale-down-to=512 512w,https://framerusercontent.com/images/DjxcQM0Tf83jdL2I4O4AncS9c.svg 552w\"}},xmttBflmi:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:800,intrinsicWidth:2e3,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+3590.2000000000003+20+0+0+719.4000000000001+0+0),pixelHeight:150,pixelWidth:295,positionX:\"center\",positionY:\"center\",sizes:\"80px\",src:\"https://framerusercontent.com/images/DjxcQM0Tf83jdL2I4O4AncS9c.svg\",srcSet:\"https://framerusercontent.com/images/DjxcQM0Tf83jdL2I4O4AncS9c.svg?scale-down-to=512 512w,https://framerusercontent.com/images/DjxcQM0Tf83jdL2I4O4AncS9c.svg 552w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",intrinsicHeight:800,intrinsicWidth:2e3,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+2732.8+45+0+0+255.8+0+0),pixelHeight:150,pixelWidth:295,positionX:\"center\",positionY:\"center\",sizes:\"96px\",src:\"https://framerusercontent.com/images/DjxcQM0Tf83jdL2I4O4AncS9c.svg\",srcSet:\"https://framerusercontent.com/images/DjxcQM0Tf83jdL2I4O4AncS9c.svg?scale-down-to=512 512w,https://framerusercontent.com/images/DjxcQM0Tf83jdL2I4O4AncS9c.svg 552w\"},className:\"framer-rayj4r\",\"data-framer-name\":\"Image\"})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-10tfjlj\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNzAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.8px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 70, 3)\"},children:\"Motion Aware\"})}),className:\"framer-4w96lj\",fonts:[\"GF;Inter-700\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNTAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"17px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.5px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-1021654d-251a-4750-952b-de3f7005260e, rgb(136, 136, 136))\"},children:\"Navigation that moves with you. It will resume when you start moving again.\"})}),className:\"framer-8nt50j\",fonts:[\"GF;Inter-500\"],verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-8yuf8g\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ilCPgpUK1:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:800,intrinsicWidth:2e3,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+4342.8+100+0+0+246.8+0+0),pixelHeight:150,pixelWidth:150,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/d72wnGawd19i540VCuSOTX8ZLw.svg\"}},xf27aOaI0:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:800,intrinsicWidth:2e3,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1948.8000000000002+45+0+0+255.8+0+0),pixelHeight:150,pixelWidth:150,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/d72wnGawd19i540VCuSOTX8ZLw.svg\"}},xmttBflmi:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:800,intrinsicWidth:2e3,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+3590.2000000000003+20+0+0+957.2+0+0),pixelHeight:150,pixelWidth:150,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/d72wnGawd19i540VCuSOTX8ZLw.svg\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",intrinsicHeight:800,intrinsicWidth:2e3,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+2732.8+45+0+0+255.8+0+0),pixelHeight:150,pixelWidth:150,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/d72wnGawd19i540VCuSOTX8ZLw.svg\"},className:\"framer-12b3q9l\",\"data-framer-name\":\"Image\"})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1xbjl5b\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNzAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.8px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 70, 3)\"},children:\"Location-Based Ads\"})}),className:\"framer-rbr4id\",fonts:[\"GF;Inter-700\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNTAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"17px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.5px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-1021654d-251a-4750-952b-de3f7005260e, rgb(136, 136, 136))\"},children:\"We know where your customer starts and ends. Anything in between can be sent promotional pushes to users on specific routes.\"})}),className:\"framer-1vp76w8\",fonts:[\"GF;Inter-500\"],verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1rdezoa\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ilCPgpUK1:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:800,intrinsicWidth:2e3,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+4342.8+100+0+0+246.8+0+0),pixelHeight:150,pixelWidth:150,src:\"https://framerusercontent.com/images/OKGydJ2oWR6NjE5CpHYRvwscOt8.svg\"}},xf27aOaI0:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:800,intrinsicWidth:2e3,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1948.8000000000002+45+0+0+255.8+0+0),pixelHeight:150,pixelWidth:150,src:\"https://framerusercontent.com/images/OKGydJ2oWR6NjE5CpHYRvwscOt8.svg\"}},xmttBflmi:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:800,intrinsicWidth:2e3,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+3590.2000000000003+20+0+0+1197+0+0),pixelHeight:150,pixelWidth:150,src:\"https://framerusercontent.com/images/OKGydJ2oWR6NjE5CpHYRvwscOt8.svg\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:800,intrinsicWidth:2e3,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+2732.8+45+0+0+255.8+0+0),pixelHeight:150,pixelWidth:150,src:\"https://framerusercontent.com/images/OKGydJ2oWR6NjE5CpHYRvwscOt8.svg\"},className:\"framer-1g5wxux\",\"data-framer-name\":\"Image\"})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-12gr5h4\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNzAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.8px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 70, 3)\"},children:\"Emergency Routes \"})}),className:\"framer-ucju16\",fonts:[\"GF;Inter-700\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNTAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"17px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.5px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-1021654d-251a-4750-952b-de3f7005260e, rgb(136, 136, 136))\"},children:\"Push notifications and emergency routes can be turned on for active users. These same routes can be shared with emergency responders via our API.\"})}),className:\"framer-9gzm5s\",fonts:[\"GF;Inter-500\"],verticalAlignment:\"top\",withExternalLayout:true})]})]})]})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-14xd0oj\",\"data-framer-name\":\"Network Section\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-vomjx7\",\"data-framer-name\":\"container\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1yb20zr\",\"data-framer-name\":\"Title Wrap\",children:[isDisplayed3()&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ilCPgpUK1:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"27px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-ed705807-585b-4e03-8afc-4b5ea6dac55d, rgb(17, 17, 17))\"},children:\"Introducing\"})})}},children:/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation4,__framer__exit:animation5,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"27px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"1.5em\",\"--framer-text-color\":\"var(--token-ed705807-585b-4e03-8afc-4b5ea6dac55d, rgb(17, 17, 17))\"},children:\"Introducing\"})}),className:\"framer-1idhk4a hidden-1oijrcc\",\"data-framer-name\":\"Badge\",fonts:[\"Inter-SemiBold\"],style:{transformPerspective:1200},verticalAlignment:\"top\",withExternalLayout:true})}),isDisplayed3()&&/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition4},__framer__animateOnce:true,__framer__enter:animation4,__framer__exit:animation8,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h2\",{className:\"framer-styles-preset-1axzzt9\",\"data-styles-preset\":\"VD7TwZfeV\",style:{\"--framer-text-alignment\":\"center\"},children:[/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-86cd157c-1fe2-40b9-b2ac-563c05890241, rgb(255, 70, 3))\"},children:\"Pre-Arrival\"}),\" Navigation\"]})}),className:\"framer-a5d3ky hidden-1oijrcc\",\"data-framer-name\":\"Title\",fonts:[\"Inter\"],style:{transformPerspective:1200},verticalAlignment:\"top\",withExternalLayout:true}),isDisplayed4()&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-229lvy\",\"data-styles-preset\":\"WtbOAWqvg\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-ed705807-585b-4e03-8afc-4b5ea6dac55d, rgb(17, 17, 17))\"},children:\"What if you could solve the problem of getting lost before it happens?\"})}),className:\"framer-12mxj0x hidden-72rtr7 hidden-138cown hidden-1oijrcc\",\"data-framer-name\":\"Title\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),isDisplayed5()&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-229lvy\",\"data-styles-preset\":\"WtbOAWqvg\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-ed705807-585b-4e03-8afc-4b5ea6dac55d, rgb(17, 17, 17))\"},children:\"What if you could solve the problem of getting lost before it happens?\"})}),className:\"framer-nnxl74 hidden-72rtr7 hidden-fr0arj hidden-1oijrcc\",\"data-framer-name\":\"Title\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),isDisplayed2()&&/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition4},__framer__animateOnce:true,__framer__enter:animation4,__framer__exit:animation8,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-1axzzt9\",\"data-styles-preset\":\"VD7TwZfeV\",style:{\"--framer-text-alignment\":\"center\"},children:\"Pre-Arrival Navigation\"})}),className:\"framer-1ke86zr hidden-72rtr7 hidden-138cown hidden-fr0arj\",\"data-framer-name\":\"Title\",fonts:[\"Inter\"],style:{transformPerspective:1200},verticalAlignment:\"top\",withExternalLayout:true}),isDisplayed2()&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-229lvy\",\"data-styles-preset\":\"WtbOAWqvg\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-ed705807-585b-4e03-8afc-4b5ea6dac55d, rgb(17, 17, 17))\"},children:\"What if you could solve the problem of getting lost before it happens?\"})}),className:\"framer-16ld070 hidden-72rtr7 hidden-138cown hidden-fr0arj\",\"data-framer-name\":\"Title\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),isDisplayed2()&&/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation4,__framer__exit:animation5,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-ed705807-585b-4e03-8afc-4b5ea6dac55d, rgb(17, 17, 17))\"},children:\"Introducing\"})}),className:\"framer-715uis hidden-72rtr7 hidden-138cown hidden-fr0arj\",\"data-framer-name\":\"Badge\",fonts:[\"Inter-SemiBold\"],style:{transformPerspective:1200},verticalAlignment:\"top\",withExternalLayout:true})]}),isDisplayed6()&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-229lvy\",\"data-styles-preset\":\"WtbOAWqvg\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-ed705807-585b-4e03-8afc-4b5ea6dac55d, rgb(17, 17, 17))\"},children:\"Prevent lost visitors with proactive pre-arrival navigation\"})}),className:\"framer-o65lbl hidden-138cown hidden-fr0arj hidden-1oijrcc\",\"data-framer-name\":\"Title\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition5},__framer__animateOnce:true,__framer__enter:animation4,__framer__exit:animation10,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-3q750d\",\"data-framer-name\":\"Button Wrap\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"cwd_APtsQ\"},implicitPathVariables:undefined},{href:{webPageId:\"cwd_APtsQ\"},implicitPathVariables:undefined},{href:{webPageId:\"cwd_APtsQ\"},implicitPathVariables:undefined},{href:{webPageId:\"cwd_APtsQ\"},implicitPathVariables:undefined}],children:resolvedLinks3=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ilCPgpUK1:{y:(componentViewport?.y||0)+0+4899.400000000001+1+0+0+527.9+0+0},xf27aOaI0:{y:(componentViewport?.y||0)+0+2490.4+62+0+0+341.9+0+0},xmttBflmi:{y:(componentViewport?.y||0)+0+5007+53+0+0+434.4+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:51,y:(componentViewport?.y||0)+0+3274.4+62+0+0+334.9+0+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-p19q62-container\",nodeId:\"X6Xwi3rxe\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ilCPgpUK1:{CJwkcCfE5:resolvedLinks3[2]},xf27aOaI0:{CJwkcCfE5:resolvedLinks3[1]},xmttBflmi:{CJwkcCfE5:resolvedLinks3[3]}},children:/*#__PURE__*/_jsx(Button,{CJwkcCfE5:resolvedLinks3[0],GR68CgLTN:\"Learn More\",height:\"100%\",id:\"X6Xwi3rxe\",layoutId:\"X6Xwi3rxe\",ot18wTv79:false,variant:\"WKIwTYTZF\",width:\"100%\"})})})})})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-14ebd2i\",\"data-framer-name\":\"network wrap\",children:/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition3},__framer__animateOnce:true,__framer__enter:animation4,__framer__exit:animation9,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1vn2x1u\",\"data-framer-name\":\" First Section\",style:{transformPerspective:1200},children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ilCPgpUK1:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+4899.400000000001+1+0+0+628.9+0+0+50+0),pixelHeight:2450,pixelWidth:1234,positionX:\"center\",positionY:\"center\",sizes:\"424px\",src:\"https://framerusercontent.com/images/Zp9wq7MSiWF5FbQ5wYQ5cg30xKc.png\",srcSet:\"https://framerusercontent.com/images/Zp9wq7MSiWF5FbQ5wYQ5cg30xKc.png?scale-down-to=1024 515w,https://framerusercontent.com/images/Zp9wq7MSiWF5FbQ5wYQ5cg30xKc.png?scale-down-to=2048 1031w,https://framerusercontent.com/images/Zp9wq7MSiWF5FbQ5wYQ5cg30xKc.png 1234w\"}},xf27aOaI0:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+2490.4+62+0+0+418.9+0+50+90.4),pixelHeight:2450,pixelWidth:1234,positionX:\"center\",positionY:\"center\",sizes:\"424px\",src:\"https://framerusercontent.com/images/Zp9wq7MSiWF5FbQ5wYQ5cg30xKc.png\",srcSet:\"https://framerusercontent.com/images/Zp9wq7MSiWF5FbQ5wYQ5cg30xKc.png?scale-down-to=1024 515w,https://framerusercontent.com/images/Zp9wq7MSiWF5FbQ5wYQ5cg30xKc.png?scale-down-to=2048 1031w,https://framerusercontent.com/images/Zp9wq7MSiWF5FbQ5wYQ5cg30xKc.png 1234w\"}},xmttBflmi:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+5007+53+0+0+509.4+0+0+48+57.6),pixelHeight:2450,pixelWidth:1234,positionX:\"center\",positionY:\"center\",sizes:\"273px\",src:\"https://framerusercontent.com/images/Zp9wq7MSiWF5FbQ5wYQ5cg30xKc.png\",srcSet:\"https://framerusercontent.com/images/Zp9wq7MSiWF5FbQ5wYQ5cg30xKc.png?scale-down-to=1024 515w,https://framerusercontent.com/images/Zp9wq7MSiWF5FbQ5wYQ5cg30xKc.png?scale-down-to=2048 1031w,https://framerusercontent.com/images/Zp9wq7MSiWF5FbQ5wYQ5cg30xKc.png 1234w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+3274.4+62+0+0+411.9+0+50+0),pixelHeight:2450,pixelWidth:1234,positionX:\"center\",positionY:\"center\",sizes:\"424px\",src:\"https://framerusercontent.com/images/Zp9wq7MSiWF5FbQ5wYQ5cg30xKc.png\",srcSet:\"https://framerusercontent.com/images/Zp9wq7MSiWF5FbQ5wYQ5cg30xKc.png?scale-down-to=1024 515w,https://framerusercontent.com/images/Zp9wq7MSiWF5FbQ5wYQ5cg30xKc.png?scale-down-to=2048 1031w,https://framerusercontent.com/images/Zp9wq7MSiWF5FbQ5wYQ5cg30xKc.png 1234w\"},className:\"framer-1k7jzys\"})}),isDisplayed7()&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-15qb485 hidden-138cown\",\"data-framer-name\":\"Content Wrap\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ilCPgpUK1:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h1\",{className:\"framer-styles-preset-l9pyi7\",\"data-styles-preset\":\"oEPT_ciXE\",style:{\"--framer-text-color\":\"var(--token-ed705807-585b-4e03-8afc-4b5ea6dac55d, rgb(17, 17, 17))\"},children:[\"Use our \",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"rgb(255, 70, 3)\"},children:\"API\"}),\" to send routes in pre-arrival communications for better \",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"rgb(255, 70, 3)\"},children:\"CX\"})]})})},xmttBflmi:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h2\",{className:\"framer-styles-preset-19o1mfn\",\"data-styles-preset\":\"xRA3Aj3_H\",style:{\"--framer-text-alignment\":\"center\"},children:[/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-ed705807-585b-4e03-8afc-4b5ea6dac55d, rgb(17, 17, 17))\"},children:\"Use our \"}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"rgb(255, 70, 3)\"},children:\"API\"}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-ed705807-585b-4e03-8afc-4b5ea6dac55d, rgb(17, 17, 17))\"},children:\" to send routes in \"}),/*#__PURE__*/_jsx(\"br\",{}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-ed705807-585b-4e03-8afc-4b5ea6dac55d, rgb(17, 17, 17))\"},children:\"pre-arrival messages for enhanced \"}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"rgb(255, 70, 3)\"},children:\"CX\"})]})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h2\",{className:\"framer-styles-preset-1axzzt9\",\"data-styles-preset\":\"VD7TwZfeV\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-ed705807-585b-4e03-8afc-4b5ea6dac55d, rgb(17, 17, 17))\"},children:[\"Use our \",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"rgb(255, 70, 3)\"},children:\"API\"}),\" to send routes in pre-arrival communications for better \",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"rgb(255, 70, 3)\"},children:\"CX\"})]})}),className:\"framer-i8gf0z\",\"data-framer-name\":\"Title\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),isDisplayed3()&&/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"ODd9uFWWb\"},implicitPathVariables:undefined},{href:{webPageId:\"ODd9uFWWb\"},implicitPathVariables:undefined}],children:resolvedLinks4=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ilCPgpUK1:{y:(componentViewport?.y||0)+0+4899.400000000001+1+0+0+628.9+0+0+50+897+0+86.4}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:51,y:(componentViewport?.y||0)+0+3274.4+62+0+0+411.9+0+50+897+0+75.4,children:/*#__PURE__*/_jsx(Container,{className:\"framer-12sxswk-container hidden-1oijrcc\",nodeId:\"V_pvDuR5Q\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ilCPgpUK1:{CJwkcCfE5:resolvedLinks4[1]}},children:/*#__PURE__*/_jsx(Button,{CJwkcCfE5:resolvedLinks4[0],GR68CgLTN:\"Learn More\",height:\"100%\",id:\"V_pvDuR5Q\",layoutId:\"V_pvDuR5Q\",ot18wTv79:false,variant:\"hxme9uJgB\",width:\"100%\"})})})})})})]}),isDisplayed3()&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{xf27aOaI0:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h2\",{className:\"framer-styles-preset-1buhsfr\",\"data-styles-preset\":\"FhiEA0I0q\",style:{\"--framer-text-alignment\":\"center\"},children:[/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-ed705807-585b-4e03-8afc-4b5ea6dac55d, rgb(17, 17, 17))\"},children:\"Use our \"}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"rgb(255, 70, 3)\"},children:\"API\"}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-ed705807-585b-4e03-8afc-4b5ea6dac55d, rgb(17, 17, 17))\"},children:\" to send routes in \"}),/*#__PURE__*/_jsx(\"br\",{}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-ed705807-585b-4e03-8afc-4b5ea6dac55d, rgb(17, 17, 17))\"},children:\"pre-arrival messages for enhanced \"}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"rgb(255, 70, 3)\"},children:\"CX\"})]})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h2\",{className:\"framer-styles-preset-1axzzt9\",\"data-styles-preset\":\"VD7TwZfeV\",style:{\"--framer-text-alignment\":\"center\"},children:[/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-ed705807-585b-4e03-8afc-4b5ea6dac55d, rgb(17, 17, 17))\"},children:\"Use our \"}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"rgb(255, 70, 3)\"},children:\"API\"}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-ed705807-585b-4e03-8afc-4b5ea6dac55d, rgb(17, 17, 17))\"},children:\" to send routes in \"}),/*#__PURE__*/_jsx(\"br\",{}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-ed705807-585b-4e03-8afc-4b5ea6dac55d, rgb(17, 17, 17))\"},children:\"pre-arrival messages for better \"}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"rgb(255, 70, 3)\"},children:\"CX\"})]})}),className:\"framer-7z61nd hidden-1oijrcc\",\"data-framer-name\":\"Title\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h2\",{className:\"framer-styles-preset-1axzzt9\",\"data-styles-preset\":\"VD7TwZfeV\",style:{\"--framer-text-alignment\":\"center\"},children:[/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-ed705807-585b-4e03-8afc-4b5ea6dac55d, rgb(17, 17, 17))\"},children:\"Use our \"}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"rgb(255, 70, 3)\"},children:\"API\"}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-ed705807-585b-4e03-8afc-4b5ea6dac55d, rgb(17, 17, 17))\"},children:\" to send routes in \"}),/*#__PURE__*/_jsx(\"br\",{}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-ed705807-585b-4e03-8afc-4b5ea6dac55d, rgb(17, 17, 17))\"},children:\"pre-arrival messages for better \"}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"rgb(255, 70, 3)\"},children:\"CX\"})]})}),className:\"framer-yjuy1f\",\"data-framer-name\":\"Title\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})})]})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ilCPgpUK1:{y:(componentViewport?.y||0)+0+6248.700000000001},xf27aOaI0:{y:(componentViewport?.y||0)+0+3712.3},xmttBflmi:{y:(componentViewport?.y||0)+0+6113.4}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:395,width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+4284.3,children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation4,__framer__exit:animation5,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1a1v6xh-container\",nodeId:\"HuFDIhcTV\",rendersWithMotion:true,scopeId:\"augiA20Il\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ilCPgpUK1:{variant:\"bxCCCX6Qn\"},xmttBflmi:{variant:\"b5pZoR74d\"}},children:/*#__PURE__*/_jsx(CTA,{height:\"100%\",id:\"HuFDIhcTV\",layoutId:\"HuFDIhcTV\",style:{width:\"100%\"},variant:\"RmqJkb9gf\",width:\"100%\"})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ilCPgpUK1:{y:(componentViewport?.y||0)+0+6643.700000000001},xf27aOaI0:{y:(componentViewport?.y||0)+0+4107.3},xmttBflmi:{y:(componentViewport?.y||0)+0+6508.4}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:447,width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+4679.3,children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation4,__framer__exit:animation5,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-lej1m7-container\",nodeId:\"qJRyITRr0\",rendersWithMotion:true,scopeId:\"augiA20Il\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ilCPgpUK1:{variant:\"F3zm5FrZx\"},xmttBflmi:{variant:\"TfR8Rq4xe\"}},children:/*#__PURE__*/_jsx(Footer,{height:\"100%\",id:\"qJRyITRr0\",layoutId:\"qJRyITRr0\",style:{width:\"100%\"},variant:\"Rnrfca9Uv\",width:\"100%\"})})})})})]}),/*#__PURE__*/_jsx(\"div\",{id:\"overlay\"})]})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-MxcaZ.framer-lux5qc, .framer-MxcaZ .framer-lux5qc { display: block; }\",\".framer-MxcaZ.framer-72rtr7 { align-content: center; align-items: center; background-color: var(--token-f185e619-7ab0-4648-8fea-7397aa0c9ce6, #ffffff); display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1440px; }\",\".framer-MxcaZ .framer-1nfyqiq-container { flex: none; height: auto; left: 50%; position: absolute; top: 0px; transform: translateX(-50%); width: 100%; z-index: 4; }\",\".framer-MxcaZ .framer-ssplkx { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: hidden; padding: 180px 40px 70px 40px; position: relative; width: 100%; }\",\".framer-MxcaZ .framer-1wue6qx { flex: none; height: 94%; left: calc(50.00000000000002% - 100% / 2); overflow: hidden; position: absolute; top: 0px; width: 100%; z-index: 0; }\",\".framer-MxcaZ .framer-15z0qep { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; max-width: 1280px; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-MxcaZ .framer-xa2ofc { align-content: center; align-items: center; align-self: stretch; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; height: auto; justify-content: space-between; overflow: visible; padding: 0px; position: relative; width: 610px; }\",\".framer-MxcaZ .framer-1qo3se8 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-MxcaZ .framer-24bomm, .framer-MxcaZ .framer-12mvrje, .framer-MxcaZ .framer-3swtmn { 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-MxcaZ .framer-pmvpkv { 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: hidden; padding: 0px; position: relative; width: 100%; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-MxcaZ .framer-1iafqto { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-MxcaZ .framer-1j51jss-container { flex: none; height: 100px; position: relative; width: 604px; }\",\".framer-MxcaZ .framer-58vmb4, .framer-MxcaZ .framer-1u2iy3x, .framer-MxcaZ .framer-k8ushj, .framer-MxcaZ .framer-1wagqzb, .framer-MxcaZ .framer-11jrmi7, .framer-MxcaZ .framer-hllz3n, .framer-MxcaZ .framer-12mxj0x, .framer-MxcaZ .framer-nnxl74, .framer-MxcaZ .framer-1ke86zr, .framer-MxcaZ .framer-16ld070, .framer-MxcaZ .framer-715uis, .framer-MxcaZ .framer-o65lbl, .framer-MxcaZ .framer-i8gf0z, .framer-MxcaZ .framer-7z61nd, .framer-MxcaZ .framer-yjuy1f { flex: none; height: auto; overflow: hidden; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-MxcaZ .framer-6bzsam { 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: 16px 0px 0px 0px; position: relative; width: 100%; }\",\".framer-MxcaZ .framer-110u2uf-container, .framer-MxcaZ .framer-jupugb-container, .framer-MxcaZ .framer-unyo6k-container, .framer-MxcaZ .framer-1isvibj-container, .framer-MxcaZ .framer-l67ftj-container, .framer-MxcaZ .framer-1y13joc-container, .framer-MxcaZ .framer-1fml11i-container, .framer-MxcaZ .framer-151tzm8-container, .framer-MxcaZ .framer-p19q62-container, .framer-MxcaZ .framer-12sxswk-container { flex: none; height: auto; position: relative; width: auto; }\",\".framer-MxcaZ .framer-1c9licv { 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: 40px 0px 40px 0px; position: relative; width: 100%; }\",\".framer-MxcaZ .framer-1lkrj8z, .framer-MxcaZ .framer-1pleqs5 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 100px; }\",\".framer-MxcaZ .framer-48wtgj, .framer-MxcaZ .framer-1swohkx { --border-bottom-width: 2px; --border-color: var(--token-f185e619-7ab0-4648-8fea-7397aa0c9ce6, #ffffff); --border-left-width: 2px; --border-right-width: 2px; --border-style: solid; --border-top-width: 2px; border-bottom-left-radius: 100%; border-bottom-right-radius: 100%; border-top-left-radius: 100%; border-top-right-radius: 100%; flex: none; height: 48px; overflow: hidden; position: relative; width: 48px; will-change: var(--framer-will-change-override, transform); z-index: 1; }\",\".framer-MxcaZ .framer-ug9fof, .framer-MxcaZ .framer-1kfnn05 { --border-bottom-width: 2px; --border-color: var(--token-f185e619-7ab0-4648-8fea-7397aa0c9ce6, #ffffff); --border-left-width: 2px; --border-right-width: 2px; --border-style: solid; --border-top-width: 2px; border-bottom-left-radius: 100%; border-bottom-right-radius: 100%; border-top-left-radius: 100%; border-top-right-radius: 100%; bottom: 0px; flex: none; left: calc(50.00000000000002% - 48px / 2); overflow: hidden; position: absolute; top: 0px; width: 48px; will-change: var(--framer-will-change-override, transform); z-index: 1; }\",\".framer-MxcaZ .framer-90vq0u, .framer-MxcaZ .framer-16ixl7e { --border-bottom-width: 2px; --border-color: var(--token-f185e619-7ab0-4648-8fea-7397aa0c9ce6, #ffffff); --border-left-width: 2px; --border-right-width: 2px; --border-style: solid; --border-top-width: 2px; border-bottom-left-radius: 100%; border-bottom-right-radius: 100%; border-top-left-radius: 100%; border-top-right-radius: 100%; bottom: 0px; flex: none; overflow: hidden; position: absolute; right: -2px; top: 0px; width: 48px; will-change: var(--framer-will-change-override, transform); z-index: 1; }\",\".framer-MxcaZ .framer-1jrepev-container { flex: none; height: auto; position: relative; width: 70%; }\",\".framer-MxcaZ .framer-ffabmk { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; overflow: visible; padding: 80px 0px 80px 0px; position: relative; width: 1px; }\",\".framer-MxcaZ .framer-1rqwzgt { 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: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-MxcaZ .framer-186cnfw { align-content: center; align-items: center; border-bottom-left-radius: 22px; border-bottom-right-radius: 22px; border-top-left-radius: 22px; border-top-right-radius: 22px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: 624px; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 669px; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-MxcaZ .framer-14otlz6 { 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: 50%; }\",\".framer-MxcaZ .framer-te31eu-container { flex: none; height: auto; position: relative; width: 30%; }\",\".framer-MxcaZ .framer-1lrj5oo { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: hidden; padding: 40px 40px 60px 40px; position: relative; width: 100%; }\",\".framer-MxcaZ .framer-h8e2dh, .framer-MxcaZ .framer-13s62u7, .framer-MxcaZ .framer-bccrmd { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 70px; height: min-content; justify-content: center; max-width: 1280px; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-MxcaZ .framer-1qjpqou, .framer-MxcaZ .framer-nz6ytj { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: flex-start; max-width: 540px; overflow: visible; padding: 20px 0px 20px 0px; position: relative; width: 1px; }\",\".framer-MxcaZ .framer-dzca70, .framer-MxcaZ .framer-1dbbhzq, .framer-MxcaZ .framer-7ynfmq { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-MxcaZ .framer-lfon5t, .framer-MxcaZ .framer-1wfed5t, .framer-MxcaZ .framer-2nfddq, .framer-MxcaZ .framer-83gw8h { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 30px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-MxcaZ .framer-1njlxra, .framer-MxcaZ .framer-193yyh6, .framer-MxcaZ .framer-1ffdpjh { align-content: center; align-items: center; background-color: #ffffff; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-MxcaZ .framer-1fvm03s, .framer-MxcaZ .framer-120ufco, .framer-MxcaZ .framer-hdbzzx, .framer-MxcaZ .framer-vvzghf, .framer-MxcaZ .framer-1q6t2rd { align-content: center; align-items: center; background-color: #f2f4f7; border-bottom-left-radius: 100%; border-bottom-right-radius: 100%; border-top-left-radius: 100%; border-top-right-radius: 100%; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 24px; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 24px; }\",\".framer-MxcaZ .framer-f2is6y, .framer-MxcaZ .framer-f7l982, .framer-MxcaZ .framer-1dfhhma, .framer-MxcaZ .framer-1fphaon, .framer-MxcaZ .framer-1cbesau { flex: none; height: 12px; overflow: visible; position: relative; width: 12px; }\",\".framer-MxcaZ .framer-h7xle4, .framer-MxcaZ .framer-cbss48, .framer-MxcaZ .framer-sexd7r, .framer-MxcaZ .framer-cxnag0, .framer-MxcaZ .framer-nie4ue, .framer-MxcaZ .framer-1jjqsqo, .framer-MxcaZ .framer-1idhk4a, .framer-MxcaZ .framer-a5d3ky { flex: none; height: auto; overflow: visible; position: relative; white-space: pre; width: auto; }\",\".framer-MxcaZ .framer-159sst2, .framer-MxcaZ .framer-151uqp8 { align-content: center; align-items: center; background-color: #ffffff; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-MxcaZ.framer-1wsjkbx { background-color: rgba(0, 0, 0, 0.8); inset: 0px; position: fixed; user-select: none; z-index: 0; }\",\".framer-MxcaZ.framer-98qeqf-container { flex: none; height: 700px; left: calc(49.6527777777778% - 700px / 2); position: fixed; top: calc(51.12500000000002% - 700px / 2); width: 700px; z-index: 0; }\",\".framer-MxcaZ.framer-14acten { background-color: #44ccff; flex: none; height: 37px; left: calc(49.20634920634922% - 143px / 2); overflow: hidden; position: fixed; top: 58px; width: 143px; z-index: 0; }\",\".framer-MxcaZ .framer-ezr7en { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; left: 50px; position: absolute; top: 22px; white-space: pre; width: auto; }\",\".framer-MxcaZ .framer-1ogoumu, .framer-MxcaZ .framer-19qk5vn { align-content: center; align-items: center; align-self: stretch; background-color: #f9fafb; border-bottom-left-radius: 25px; border-bottom-right-radius: 25px; border-top-left-radius: 25px; border-top-right-radius: 25px; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: auto; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1px; will-change: var(--framer-will-change-override, transform); }\",\".framer-MxcaZ .framer-ym8ivz, .framer-MxcaZ .framer-5f7hox, .framer-MxcaZ .framer-16jv8ch { border-bottom-left-radius: 25px; border-bottom-right-radius: 25px; border-top-left-radius: 25px; border-top-right-radius: 25px; flex: 1 0 0px; height: 100%; overflow: hidden; position: relative; width: 1px; will-change: var(--framer-will-change-override, transform); z-index: 0; }\",\".framer-MxcaZ .framer-kyc5o0 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: hidden; padding: 0px 40px 80px 40px; position: relative; width: 100%; }\",\".framer-MxcaZ .framer-d2g3bj { align-content: center; align-items: center; align-self: stretch; background-color: var(--token-62c1f5e9-89be-4736-adeb-1587e16b8dc0, #f9fafb); border-bottom-left-radius: 25px; border-bottom-right-radius: 25px; border-top-left-radius: 25px; border-top-right-radius: 25px; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: auto; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1px; will-change: var(--framer-will-change-override, transform); }\",\".framer-MxcaZ .framer-6sp0vs { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; max-width: 540px; overflow: visible; padding: 20px 0px 20px 0px; position: relative; width: 1px; }\",\".framer-MxcaZ .framer-17mpdb8 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: 212px; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-MxcaZ .framer-1b8piid { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 30px; height: min-content; justify-content: flex-start; min-height: 40px; min-width: 178px; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-MxcaZ .framer-qp4o6c { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 30px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-MxcaZ .framer-f7i4cp { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: hidden; padding: 80px 40px 80px 40px; position: relative; width: 100%; }\",\".framer-MxcaZ .framer-11htv60 { align-content: center; align-items: center; background-color: var(--token-62c1f5e9-89be-4736-adeb-1587e16b8dc0, #f9fafb); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: center; overflow: visible; padding: 60px 30px 60px 30px; position: relative; width: 100%; }\",\".framer-MxcaZ .framer-mhwbu2 { align-content: center; align-items: center; background-color: #e3e3e3; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 50px; height: min-content; justify-content: flex-start; max-width: 1280px; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-MxcaZ .framer-tjndad { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 32px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-MxcaZ .framer-19hzz5n { align-content: center; align-items: center; background-color: var(--token-62c1f5e9-89be-4736-adeb-1587e16b8dc0, #f9fafb); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px 80px 0px 80px; position: relative; width: 100%; }\",\".framer-MxcaZ .framer-lv7a1c { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 4px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-MxcaZ .framer-1jbtakc { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 722px; word-break: break-word; word-wrap: break-word; }\",\".framer-MxcaZ .framer-15ypr7b { align-content: center; align-items: center; background-color: #ffffff; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: hidden; padding: 45px; position: relative; width: 1200px; }\",\".framer-MxcaZ .framer-9n0yo { display: grid; flex: none; gap: 60px; grid-auto-rows: min-content; grid-template-columns: repeat(3, minmax(200px, 1fr)); grid-template-rows: repeat(2, min-content); height: min-content; justify-content: center; max-width: 1000px; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-MxcaZ .framer-1rtarxq, .framer-MxcaZ .framer-rgi64a, .framer-MxcaZ .framer-6thxr4, .framer-MxcaZ .framer-8yuf8g, .framer-MxcaZ .framer-1rdezoa { align-content: center; align-items: center; align-self: start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 30px; height: auto; justify-content: center; justify-self: start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-MxcaZ .framer-zaelqv, .framer-MxcaZ .framer-1p8zeln, .framer-MxcaZ .framer-iqw1sl, .framer-MxcaZ .framer-rayj4r, .framer-MxcaZ .framer-12b3q9l, .framer-MxcaZ .framer-1g5wxux { align-content: center; align-items: center; aspect-ratio: 1 / 1; border-bottom-left-radius: 20px; border-bottom-right-radius: 20px; border-top-left-radius: 20px; border-top-right-radius: 20px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: var(--framer-aspect-ratio-supported, 96px); justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 96px; will-change: var(--framer-will-change-override, transform); }\",\".framer-MxcaZ .framer-m9b605, .framer-MxcaZ .framer-1ntjlhr, .framer-MxcaZ .framer-pmdbsu, .framer-MxcaZ .framer-10tfjlj, .framer-MxcaZ .framer-1xbjl5b, .framer-MxcaZ .framer-12gr5h4 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; padding: 0px; position: relative; width: 100%; }\",\".framer-MxcaZ .framer-6x8pi6, .framer-MxcaZ .framer-4oirxd, .framer-MxcaZ .framer-1wtkble, .framer-MxcaZ .framer-4w96lj, .framer-MxcaZ .framer-rbr4id, .framer-MxcaZ .framer-ucju16 { --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-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-MxcaZ .framer-m0oazy, .framer-MxcaZ .framer-s0verq, .framer-MxcaZ .framer-pnnr0v, .framer-MxcaZ .framer-8nt50j, .framer-MxcaZ .framer-1vp76w8, .framer-MxcaZ .framer-9gzm5s { --framer-paragraph-spacing: 0px; flex: none; height: auto; overflow: visible; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-MxcaZ .framer-13qbeu8 { align-content: center; align-items: center; align-self: start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 28px; height: auto; justify-content: center; justify-self: start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-MxcaZ .framer-14xd0oj { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 62px 40px 2px 40px; position: relative; width: 100%; }\",\".framer-MxcaZ .framer-vomjx7 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 26px; height: min-content; justify-content: center; max-width: 1280px; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-MxcaZ .framer-1yb20zr { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 33px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 55%; }\",\".framer-MxcaZ .framer-3q750d { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 30px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-MxcaZ .framer-14ebd2i { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 30px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-MxcaZ .framer-1vn2x1u { align-content: center; align-items: center; background-color: var(--token-62c1f5e9-89be-4736-adeb-1587e16b8dc0, #f9fafb); border-bottom-left-radius: 24px; border-bottom-right-radius: 24px; border-top-left-radius: 24px; border-top-right-radius: 24px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: 534px; justify-content: flex-start; overflow: visible; padding: 50px 100px 0px 100px; position: relative; width: 1276px; }\",\".framer-MxcaZ .framer-1k7jzys { flex: none; height: 857px; position: relative; width: 424px; }\",\".framer-MxcaZ .framer-15qb485 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-MxcaZ .framer-1a1v6xh-container, .framer-MxcaZ .framer-lej1m7-container { flex: none; height: auto; position: relative; width: 100%; }\",\"@supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-MxcaZ.framer-72rtr7, .framer-MxcaZ .framer-ssplkx, .framer-MxcaZ .framer-15z0qep, .framer-MxcaZ .framer-1qo3se8, .framer-MxcaZ .framer-24bomm, .framer-MxcaZ .framer-pmvpkv, .framer-MxcaZ .framer-6bzsam, .framer-MxcaZ .framer-1c9licv, .framer-MxcaZ .framer-1lkrj8z, .framer-MxcaZ .framer-ffabmk, .framer-MxcaZ .framer-1rqwzgt, .framer-MxcaZ .framer-186cnfw, .framer-MxcaZ .framer-14otlz6, .framer-MxcaZ .framer-1pleqs5, .framer-MxcaZ .framer-1lrj5oo, .framer-MxcaZ .framer-h8e2dh, .framer-MxcaZ .framer-1qjpqou, .framer-MxcaZ .framer-dzca70, .framer-MxcaZ .framer-12mvrje, .framer-MxcaZ .framer-lfon5t, .framer-MxcaZ .framer-1njlxra, .framer-MxcaZ .framer-1fvm03s, .framer-MxcaZ .framer-159sst2, .framer-MxcaZ .framer-120ufco, .framer-MxcaZ .framer-1wfed5t, .framer-MxcaZ .framer-1ogoumu, .framer-MxcaZ .framer-kyc5o0, .framer-MxcaZ .framer-13s62u7, .framer-MxcaZ .framer-d2g3bj, .framer-MxcaZ .framer-6sp0vs, .framer-MxcaZ .framer-1dbbhzq, .framer-MxcaZ .framer-17mpdb8, .framer-MxcaZ .framer-193yyh6, .framer-MxcaZ .framer-hdbzzx, .framer-MxcaZ .framer-1b8piid, .framer-MxcaZ .framer-qp4o6c, .framer-MxcaZ .framer-f7i4cp, .framer-MxcaZ .framer-bccrmd, .framer-MxcaZ .framer-nz6ytj, .framer-MxcaZ .framer-7ynfmq, .framer-MxcaZ .framer-3swtmn, .framer-MxcaZ .framer-2nfddq, .framer-MxcaZ .framer-1ffdpjh, .framer-MxcaZ .framer-vvzghf, .framer-MxcaZ .framer-151uqp8, .framer-MxcaZ .framer-1q6t2rd, .framer-MxcaZ .framer-83gw8h, .framer-MxcaZ .framer-19qk5vn, .framer-MxcaZ .framer-11htv60, .framer-MxcaZ .framer-mhwbu2, .framer-MxcaZ .framer-tjndad, .framer-MxcaZ .framer-19hzz5n, .framer-MxcaZ .framer-lv7a1c, .framer-MxcaZ .framer-15ypr7b, .framer-MxcaZ .framer-1rtarxq, .framer-MxcaZ .framer-zaelqv, .framer-MxcaZ .framer-m9b605, .framer-MxcaZ .framer-rgi64a, .framer-MxcaZ .framer-1p8zeln, .framer-MxcaZ .framer-1ntjlhr, .framer-MxcaZ .framer-6thxr4, .framer-MxcaZ .framer-iqw1sl, .framer-MxcaZ .framer-pmdbsu, .framer-MxcaZ .framer-13qbeu8, .framer-MxcaZ .framer-rayj4r, .framer-MxcaZ .framer-10tfjlj, .framer-MxcaZ .framer-8yuf8g, .framer-MxcaZ .framer-12b3q9l, .framer-MxcaZ .framer-1xbjl5b, .framer-MxcaZ .framer-1rdezoa, .framer-MxcaZ .framer-1g5wxux, .framer-MxcaZ .framer-12gr5h4, .framer-MxcaZ .framer-14xd0oj, .framer-MxcaZ .framer-vomjx7, .framer-MxcaZ .framer-1yb20zr, .framer-MxcaZ .framer-3q750d, .framer-MxcaZ .framer-14ebd2i, .framer-MxcaZ .framer-1vn2x1u, .framer-MxcaZ .framer-15qb485 { gap: 0px; } .framer-MxcaZ.framer-72rtr7 > *, .framer-MxcaZ .framer-186cnfw > *, .framer-MxcaZ .framer-6sp0vs > *, .framer-MxcaZ .framer-15ypr7b > *, .framer-MxcaZ .framer-14xd0oj > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-MxcaZ.framer-72rtr7 > :first-child, .framer-MxcaZ .framer-1qo3se8 > :first-child, .framer-MxcaZ .framer-24bomm > :first-child, .framer-MxcaZ .framer-pmvpkv > :first-child, .framer-MxcaZ .framer-186cnfw > :first-child, .framer-MxcaZ .framer-1qjpqou > :first-child, .framer-MxcaZ .framer-dzca70 > :first-child, .framer-MxcaZ .framer-12mvrje > :first-child, .framer-MxcaZ .framer-6sp0vs > :first-child, .framer-MxcaZ .framer-1dbbhzq > :first-child, .framer-MxcaZ .framer-17mpdb8 > :first-child, .framer-MxcaZ .framer-nz6ytj > :first-child, .framer-MxcaZ .framer-7ynfmq > :first-child, .framer-MxcaZ .framer-3swtmn > :first-child, .framer-MxcaZ .framer-11htv60 > :first-child, .framer-MxcaZ .framer-mhwbu2 > :first-child, .framer-MxcaZ .framer-tjndad > :first-child, .framer-MxcaZ .framer-19hzz5n > :first-child, .framer-MxcaZ .framer-lv7a1c > :first-child, .framer-MxcaZ .framer-15ypr7b > :first-child, .framer-MxcaZ .framer-1rtarxq > :first-child, .framer-MxcaZ .framer-zaelqv > :first-child, .framer-MxcaZ .framer-m9b605 > :first-child, .framer-MxcaZ .framer-rgi64a > :first-child, .framer-MxcaZ .framer-1p8zeln > :first-child, .framer-MxcaZ .framer-1ntjlhr > :first-child, .framer-MxcaZ .framer-6thxr4 > :first-child, .framer-MxcaZ .framer-iqw1sl > :first-child, .framer-MxcaZ .framer-pmdbsu > :first-child, .framer-MxcaZ .framer-13qbeu8 > :first-child, .framer-MxcaZ .framer-rayj4r > :first-child, .framer-MxcaZ .framer-10tfjlj > :first-child, .framer-MxcaZ .framer-8yuf8g > :first-child, .framer-MxcaZ .framer-12b3q9l > :first-child, .framer-MxcaZ .framer-1xbjl5b > :first-child, .framer-MxcaZ .framer-1rdezoa > :first-child, .framer-MxcaZ .framer-1g5wxux > :first-child, .framer-MxcaZ .framer-12gr5h4 > :first-child, .framer-MxcaZ .framer-14xd0oj > :first-child, .framer-MxcaZ .framer-vomjx7 > :first-child, .framer-MxcaZ .framer-1yb20zr > :first-child, .framer-MxcaZ .framer-3q750d > :first-child, .framer-MxcaZ .framer-1vn2x1u > :first-child, .framer-MxcaZ .framer-15qb485 > :first-child { margin-top: 0px; } .framer-MxcaZ.framer-72rtr7 > :last-child, .framer-MxcaZ .framer-1qo3se8 > :last-child, .framer-MxcaZ .framer-24bomm > :last-child, .framer-MxcaZ .framer-pmvpkv > :last-child, .framer-MxcaZ .framer-186cnfw > :last-child, .framer-MxcaZ .framer-1qjpqou > :last-child, .framer-MxcaZ .framer-dzca70 > :last-child, .framer-MxcaZ .framer-12mvrje > :last-child, .framer-MxcaZ .framer-6sp0vs > :last-child, .framer-MxcaZ .framer-1dbbhzq > :last-child, .framer-MxcaZ .framer-17mpdb8 > :last-child, .framer-MxcaZ .framer-nz6ytj > :last-child, .framer-MxcaZ .framer-7ynfmq > :last-child, .framer-MxcaZ .framer-3swtmn > :last-child, .framer-MxcaZ .framer-11htv60 > :last-child, .framer-MxcaZ .framer-mhwbu2 > :last-child, .framer-MxcaZ .framer-tjndad > :last-child, .framer-MxcaZ .framer-19hzz5n > :last-child, .framer-MxcaZ .framer-lv7a1c > :last-child, .framer-MxcaZ .framer-15ypr7b > :last-child, .framer-MxcaZ .framer-1rtarxq > :last-child, .framer-MxcaZ .framer-zaelqv > :last-child, .framer-MxcaZ .framer-m9b605 > :last-child, .framer-MxcaZ .framer-rgi64a > :last-child, .framer-MxcaZ .framer-1p8zeln > :last-child, .framer-MxcaZ .framer-1ntjlhr > :last-child, .framer-MxcaZ .framer-6thxr4 > :last-child, .framer-MxcaZ .framer-iqw1sl > :last-child, .framer-MxcaZ .framer-pmdbsu > :last-child, .framer-MxcaZ .framer-13qbeu8 > :last-child, .framer-MxcaZ .framer-rayj4r > :last-child, .framer-MxcaZ .framer-10tfjlj > :last-child, .framer-MxcaZ .framer-8yuf8g > :last-child, .framer-MxcaZ .framer-12b3q9l > :last-child, .framer-MxcaZ .framer-1xbjl5b > :last-child, .framer-MxcaZ .framer-1rdezoa > :last-child, .framer-MxcaZ .framer-1g5wxux > :last-child, .framer-MxcaZ .framer-12gr5h4 > :last-child, .framer-MxcaZ .framer-14xd0oj > :last-child, .framer-MxcaZ .framer-vomjx7 > :last-child, .framer-MxcaZ .framer-1yb20zr > :last-child, .framer-MxcaZ .framer-3q750d > :last-child, .framer-MxcaZ .framer-1vn2x1u > :last-child, .framer-MxcaZ .framer-15qb485 > :last-child { margin-bottom: 0px; } .framer-MxcaZ .framer-ssplkx > *, .framer-MxcaZ .framer-15z0qep > *, .framer-MxcaZ .framer-1lrj5oo > *, .framer-MxcaZ .framer-kyc5o0 > *, .framer-MxcaZ .framer-f7i4cp > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } .framer-MxcaZ .framer-ssplkx > :first-child, .framer-MxcaZ .framer-15z0qep > :first-child, .framer-MxcaZ .framer-6bzsam > :first-child, .framer-MxcaZ .framer-1c9licv > :first-child, .framer-MxcaZ .framer-1lkrj8z > :first-child, .framer-MxcaZ .framer-ffabmk > :first-child, .framer-MxcaZ .framer-1rqwzgt > :first-child, .framer-MxcaZ .framer-14otlz6 > :first-child, .framer-MxcaZ .framer-1pleqs5 > :first-child, .framer-MxcaZ .framer-1lrj5oo > :first-child, .framer-MxcaZ .framer-h8e2dh > :first-child, .framer-MxcaZ .framer-lfon5t > :first-child, .framer-MxcaZ .framer-1njlxra > :first-child, .framer-MxcaZ .framer-1fvm03s > :first-child, .framer-MxcaZ .framer-159sst2 > :first-child, .framer-MxcaZ .framer-120ufco > :first-child, .framer-MxcaZ .framer-1wfed5t > :first-child, .framer-MxcaZ .framer-1ogoumu > :first-child, .framer-MxcaZ .framer-kyc5o0 > :first-child, .framer-MxcaZ .framer-13s62u7 > :first-child, .framer-MxcaZ .framer-d2g3bj > :first-child, .framer-MxcaZ .framer-193yyh6 > :first-child, .framer-MxcaZ .framer-hdbzzx > :first-child, .framer-MxcaZ .framer-1b8piid > :first-child, .framer-MxcaZ .framer-qp4o6c > :first-child, .framer-MxcaZ .framer-f7i4cp > :first-child, .framer-MxcaZ .framer-bccrmd > :first-child, .framer-MxcaZ .framer-2nfddq > :first-child, .framer-MxcaZ .framer-1ffdpjh > :first-child, .framer-MxcaZ .framer-vvzghf > :first-child, .framer-MxcaZ .framer-151uqp8 > :first-child, .framer-MxcaZ .framer-1q6t2rd > :first-child, .framer-MxcaZ .framer-83gw8h > :first-child, .framer-MxcaZ .framer-19qk5vn > :first-child, .framer-MxcaZ .framer-14ebd2i > :first-child { margin-left: 0px; } .framer-MxcaZ .framer-ssplkx > :last-child, .framer-MxcaZ .framer-15z0qep > :last-child, .framer-MxcaZ .framer-6bzsam > :last-child, .framer-MxcaZ .framer-1c9licv > :last-child, .framer-MxcaZ .framer-1lkrj8z > :last-child, .framer-MxcaZ .framer-ffabmk > :last-child, .framer-MxcaZ .framer-1rqwzgt > :last-child, .framer-MxcaZ .framer-14otlz6 > :last-child, .framer-MxcaZ .framer-1pleqs5 > :last-child, .framer-MxcaZ .framer-1lrj5oo > :last-child, .framer-MxcaZ .framer-h8e2dh > :last-child, .framer-MxcaZ .framer-lfon5t > :last-child, .framer-MxcaZ .framer-1njlxra > :last-child, .framer-MxcaZ .framer-1fvm03s > :last-child, .framer-MxcaZ .framer-159sst2 > :last-child, .framer-MxcaZ .framer-120ufco > :last-child, .framer-MxcaZ .framer-1wfed5t > :last-child, .framer-MxcaZ .framer-1ogoumu > :last-child, .framer-MxcaZ .framer-kyc5o0 > :last-child, .framer-MxcaZ .framer-13s62u7 > :last-child, .framer-MxcaZ .framer-d2g3bj > :last-child, .framer-MxcaZ .framer-193yyh6 > :last-child, .framer-MxcaZ .framer-hdbzzx > :last-child, .framer-MxcaZ .framer-1b8piid > :last-child, .framer-MxcaZ .framer-qp4o6c > :last-child, .framer-MxcaZ .framer-f7i4cp > :last-child, .framer-MxcaZ .framer-bccrmd > :last-child, .framer-MxcaZ .framer-2nfddq > :last-child, .framer-MxcaZ .framer-1ffdpjh > :last-child, .framer-MxcaZ .framer-vvzghf > :last-child, .framer-MxcaZ .framer-151uqp8 > :last-child, .framer-MxcaZ .framer-1q6t2rd > :last-child, .framer-MxcaZ .framer-83gw8h > :last-child, .framer-MxcaZ .framer-19qk5vn > :last-child, .framer-MxcaZ .framer-14ebd2i > :last-child { margin-right: 0px; } .framer-MxcaZ .framer-1qo3se8 > *, .framer-MxcaZ .framer-m9b605 > *, .framer-MxcaZ .framer-1ntjlhr > *, .framer-MxcaZ .framer-pmdbsu > *, .framer-MxcaZ .framer-10tfjlj > *, .framer-MxcaZ .framer-1xbjl5b > *, .framer-MxcaZ .framer-12gr5h4 > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-MxcaZ .framer-24bomm > *, .framer-MxcaZ .framer-12mvrje > *, .framer-MxcaZ .framer-17mpdb8 > *, .framer-MxcaZ .framer-3swtmn > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } .framer-MxcaZ .framer-pmvpkv > *, .framer-MxcaZ .framer-lv7a1c > * { margin: 0px; margin-bottom: calc(4px / 2); margin-top: calc(4px / 2); } .framer-MxcaZ .framer-6bzsam > *, .framer-MxcaZ .framer-1c9licv > *, .framer-MxcaZ .framer-14otlz6 > * { margin: 0px; margin-left: calc(16px / 2); margin-right: calc(16px / 2); } .framer-MxcaZ .framer-1lkrj8z > *, .framer-MxcaZ .framer-1rqwzgt > *, .framer-MxcaZ .framer-1pleqs5 > *, .framer-MxcaZ .framer-1fvm03s > *, .framer-MxcaZ .framer-159sst2 > *, .framer-MxcaZ .framer-120ufco > *, .framer-MxcaZ .framer-1ogoumu > *, .framer-MxcaZ .framer-d2g3bj > *, .framer-MxcaZ .framer-hdbzzx > *, .framer-MxcaZ .framer-vvzghf > *, .framer-MxcaZ .framer-151uqp8 > *, .framer-MxcaZ .framer-1q6t2rd > *, .framer-MxcaZ .framer-19qk5vn > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-MxcaZ .framer-ffabmk > * { margin: 0px; margin-left: calc(20px / 2); margin-right: calc(20px / 2); } .framer-MxcaZ .framer-h8e2dh > *, .framer-MxcaZ .framer-13s62u7 > *, .framer-MxcaZ .framer-bccrmd > * { margin: 0px; margin-left: calc(70px / 2); margin-right: calc(70px / 2); } .framer-MxcaZ .framer-1qjpqou > *, .framer-MxcaZ .framer-nz6ytj > *, .framer-MxcaZ .framer-1vn2x1u > * { margin: 0px; margin-bottom: calc(40px / 2); margin-top: calc(40px / 2); } .framer-MxcaZ .framer-dzca70 > *, .framer-MxcaZ .framer-1dbbhzq > *, .framer-MxcaZ .framer-7ynfmq > *, .framer-MxcaZ .framer-19hzz5n > *, .framer-MxcaZ .framer-15qb485 > * { margin: 0px; margin-bottom: calc(16px / 2); margin-top: calc(16px / 2); } .framer-MxcaZ .framer-lfon5t > *, .framer-MxcaZ .framer-1wfed5t > *, .framer-MxcaZ .framer-1b8piid > *, .framer-MxcaZ .framer-qp4o6c > *, .framer-MxcaZ .framer-2nfddq > *, .framer-MxcaZ .framer-83gw8h > *, .framer-MxcaZ .framer-14ebd2i > * { margin: 0px; margin-left: calc(30px / 2); margin-right: calc(30px / 2); } .framer-MxcaZ .framer-1njlxra > *, .framer-MxcaZ .framer-193yyh6 > *, .framer-MxcaZ .framer-1ffdpjh > * { margin: 0px; margin-left: calc(8px / 2); margin-right: calc(8px / 2); } .framer-MxcaZ .framer-11htv60 > * { margin: 0px; margin-bottom: calc(8px / 2); margin-top: calc(8px / 2); } .framer-MxcaZ .framer-mhwbu2 > * { margin: 0px; margin-bottom: calc(50px / 2); margin-top: calc(50px / 2); } .framer-MxcaZ .framer-tjndad > * { margin: 0px; margin-bottom: calc(32px / 2); margin-top: calc(32px / 2); } .framer-MxcaZ .framer-1rtarxq > *, .framer-MxcaZ .framer-rgi64a > *, .framer-MxcaZ .framer-6thxr4 > *, .framer-MxcaZ .framer-8yuf8g > *, .framer-MxcaZ .framer-1rdezoa > *, .framer-MxcaZ .framer-3q750d > * { margin: 0px; margin-bottom: calc(30px / 2); margin-top: calc(30px / 2); } .framer-MxcaZ .framer-zaelqv > *, .framer-MxcaZ .framer-1p8zeln > *, .framer-MxcaZ .framer-iqw1sl > *, .framer-MxcaZ .framer-rayj4r > *, .framer-MxcaZ .framer-12b3q9l > *, .framer-MxcaZ .framer-1g5wxux > * { margin: 0px; margin-bottom: calc(20px / 2); margin-top: calc(20px / 2); } .framer-MxcaZ .framer-13qbeu8 > * { margin: 0px; margin-bottom: calc(28px / 2); margin-top: calc(28px / 2); } .framer-MxcaZ .framer-vomjx7 > * { margin: 0px; margin-bottom: calc(26px / 2); margin-top: calc(26px / 2); } .framer-MxcaZ .framer-1yb20zr > * { margin: 0px; margin-bottom: calc(33px / 2); margin-top: calc(33px / 2); } }\",...sharedStyle.css,...sharedStyle1.css,...sharedStyle2.css,...sharedStyle3.css,...sharedStyle4.css,...sharedStyle5.css,...sharedStyle6.css,...sharedStyle7.css,'.framer-MxcaZ[data-border=\"true\"]::after, .framer-MxcaZ [data-border=\"true\"]::after { content: \"\"; border-width: var(--border-top-width, 0) var(--border-right-width, 0) var(--border-bottom-width, 0) var(--border-left-width, 0); border-color: var(--border-color, none); border-style: var(--border-style, none); width: 100%; height: 100%; position: absolute; box-sizing: border-box; left: 0; top: 0; border-radius: inherit; pointer-events: none; }',\"@media (min-width: 1200px) and (max-width: 1439px) { .framer-MxcaZ.framer-72rtr7 { width: 1200px; } .framer-MxcaZ .framer-1nfyqiq-container, .framer-MxcaZ .framer-1qo3se8 { order: 0; } .framer-MxcaZ .framer-ssplkx, .framer-MxcaZ .framer-1c9licv, .framer-MxcaZ .framer-7z61nd { order: 1; } .framer-MxcaZ .framer-15z0qep { align-self: stretch; height: auto; } .framer-MxcaZ .framer-xa2ofc { align-self: unset; height: 100%; width: 675px; } .framer-MxcaZ .framer-6bzsam { gap: 0px; } .framer-MxcaZ .framer-ffabmk { height: 100%; } .framer-MxcaZ .framer-1rqwzgt { height: 100%; order: 0; } .framer-MxcaZ .framer-186cnfw { height: 473px; order: 0; width: 545px; } .framer-MxcaZ .framer-1lrj5oo, .framer-MxcaZ .framer-1k7jzys { order: 2; } .framer-MxcaZ .framer-kyc5o0 { order: 4; } .framer-MxcaZ .framer-1b8piid { min-height: 24px; } .framer-MxcaZ .framer-f7i4cp { order: 5; } .framer-MxcaZ .framer-15ypr7b { order: 7; } .framer-MxcaZ .framer-14xd0oj { order: 9; } .framer-MxcaZ .framer-1vn2x1u { height: 739px; order: 0; padding: 50px 50px 0px 50px; width: 1119px; } .framer-MxcaZ .framer-yjuy1f { order: 3; } .framer-MxcaZ .framer-1a1v6xh-container { order: 10; } .framer-MxcaZ .framer-lej1m7-container { order: 13; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-MxcaZ .framer-6bzsam { gap: 0px; } .framer-MxcaZ .framer-6bzsam > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } .framer-MxcaZ .framer-6bzsam > :first-child { margin-left: 0px; } .framer-MxcaZ .framer-6bzsam > :last-child { margin-right: 0px; } }}\",\"@media (min-width: 767px) and (max-width: 1199px) { .framer-MxcaZ.framer-72rtr7 { width: 767px; } .framer-MxcaZ .framer-1nfyqiq-container { height: 84px; left: calc(50.06518904823992% - 1fr / 2); order: 0; transform: unset; } .framer-MxcaZ .framer-ssplkx { align-content: flex-start; align-items: flex-start; flex-direction: column; order: 1; overflow: visible; padding: 120px 30px 0px 30px; } .framer-MxcaZ .framer-1wue6qx { height: 94%; left: 179px; } .framer-MxcaZ .framer-15z0qep { flex-direction: column; max-width: 100%; } .framer-MxcaZ .framer-xa2ofc { align-self: unset; gap: 60px; height: min-content; justify-content: center; width: 100%; } .framer-MxcaZ .framer-1j51jss-container { height: 54px; } .framer-MxcaZ .framer-58vmb4 { width: 75%; } .framer-MxcaZ .framer-ffabmk { flex: none; flex-direction: column; gap: 70px; padding: 0px; width: 100%; } .framer-MxcaZ .framer-1rqwzgt { justify-content: flex-start; width: 100%; } .framer-MxcaZ .framer-186cnfw { height: 409px; order: 0; width: 132%; } .framer-MxcaZ .framer-14otlz6 { padding: 20px 0px 0px 0px; width: 100%; } .framer-MxcaZ .framer-te31eu-container { width: 41%; } .framer-MxcaZ .framer-1lrj5oo { flex-direction: column; order: 2; padding: 60px 30px 60px 30px; } .framer-MxcaZ .framer-h8e2dh, .framer-MxcaZ .framer-bccrmd { align-content: flex-start; align-items: flex-start; flex-direction: column; gap: 40px; justify-content: flex-start; max-width: 100%; } .framer-MxcaZ .framer-1qjpqou, .framer-MxcaZ .framer-nz6ytj { flex: none; padding: 0px; width: 100%; } .framer-MxcaZ .framer-1ogoumu, .framer-MxcaZ .framer-19qk5vn { align-self: unset; flex: none; height: 520px; width: 100%; } .framer-MxcaZ .framer-kyc5o0 { flex-direction: column; order: 4; padding: 60px 30px 60px 30px; } .framer-MxcaZ .framer-13s62u7 { align-content: flex-start; align-items: flex-start; flex-direction: column; gap: 40px; max-width: 100%; } .framer-MxcaZ .framer-d2g3bj { align-self: unset; flex: none; height: 520px; order: 1; width: 100%; } .framer-MxcaZ .framer-6sp0vs { flex: none; order: 0; padding: 0px; width: 100%; } .framer-MxcaZ .framer-1b8piid { min-height: 24px; } .framer-MxcaZ .framer-f7i4cp { flex-direction: column; order: 5; padding: 60px 30px 60px 30px; } .framer-MxcaZ .framer-11htv60 { order: 9; } .framer-MxcaZ .framer-1jbtakc, .framer-MxcaZ .framer-i8gf0z { order: 0; } .framer-MxcaZ .framer-15ypr7b { order: 6; padding: 100px 40px 22px 40px; width: 100%; } .framer-MxcaZ .framer-zaelqv, .framer-MxcaZ .framer-1p8zeln, .framer-MxcaZ .framer-iqw1sl, .framer-MxcaZ .framer-rayj4r, .framer-MxcaZ .framer-1g5wxux { height: var(--framer-aspect-ratio-supported, 87px); width: 87px; } .framer-MxcaZ .framer-12b3q9l { height: var(--framer-aspect-ratio-supported, 88px); width: 88px; } .framer-MxcaZ .framer-14xd0oj { order: 8; padding: 1px 30px 1px 30px; } .framer-MxcaZ .framer-vomjx7 { gap: 50px; } .framer-MxcaZ .framer-1yb20zr { width: 100%; } .framer-MxcaZ .framer-1idhk4a, .framer-MxcaZ .framer-a5d3ky { overflow: hidden; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; } .framer-MxcaZ .framer-14ebd2i { flex-direction: column; } .framer-MxcaZ .framer-1vn2x1u { height: 539px; order: 0; width: 100%; } .framer-MxcaZ .framer-12sxswk-container { order: 2; } .framer-MxcaZ .framer-1a1v6xh-container { order: 12; } .framer-MxcaZ .framer-lej1m7-container { order: 13; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-MxcaZ .framer-ssplkx, .framer-MxcaZ .framer-15z0qep, .framer-MxcaZ .framer-xa2ofc, .framer-MxcaZ .framer-ffabmk, .framer-MxcaZ .framer-1lrj5oo, .framer-MxcaZ .framer-h8e2dh, .framer-MxcaZ .framer-kyc5o0, .framer-MxcaZ .framer-13s62u7, .framer-MxcaZ .framer-f7i4cp, .framer-MxcaZ .framer-bccrmd, .framer-MxcaZ .framer-vomjx7, .framer-MxcaZ .framer-14ebd2i { gap: 0px; } .framer-MxcaZ .framer-ssplkx > *, .framer-MxcaZ .framer-15z0qep > *, .framer-MxcaZ .framer-1lrj5oo > *, .framer-MxcaZ .framer-kyc5o0 > *, .framer-MxcaZ .framer-f7i4cp > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-MxcaZ .framer-ssplkx > :first-child, .framer-MxcaZ .framer-15z0qep > :first-child, .framer-MxcaZ .framer-xa2ofc > :first-child, .framer-MxcaZ .framer-ffabmk > :first-child, .framer-MxcaZ .framer-1lrj5oo > :first-child, .framer-MxcaZ .framer-h8e2dh > :first-child, .framer-MxcaZ .framer-kyc5o0 > :first-child, .framer-MxcaZ .framer-13s62u7 > :first-child, .framer-MxcaZ .framer-f7i4cp > :first-child, .framer-MxcaZ .framer-bccrmd > :first-child, .framer-MxcaZ .framer-vomjx7 > :first-child, .framer-MxcaZ .framer-14ebd2i > :first-child { margin-top: 0px; } .framer-MxcaZ .framer-ssplkx > :last-child, .framer-MxcaZ .framer-15z0qep > :last-child, .framer-MxcaZ .framer-xa2ofc > :last-child, .framer-MxcaZ .framer-ffabmk > :last-child, .framer-MxcaZ .framer-1lrj5oo > :last-child, .framer-MxcaZ .framer-h8e2dh > :last-child, .framer-MxcaZ .framer-kyc5o0 > :last-child, .framer-MxcaZ .framer-13s62u7 > :last-child, .framer-MxcaZ .framer-f7i4cp > :last-child, .framer-MxcaZ .framer-bccrmd > :last-child, .framer-MxcaZ .framer-vomjx7 > :last-child, .framer-MxcaZ .framer-14ebd2i > :last-child { margin-bottom: 0px; } .framer-MxcaZ .framer-xa2ofc > * { margin: 0px; margin-bottom: calc(60px / 2); margin-top: calc(60px / 2); } .framer-MxcaZ .framer-ffabmk > * { margin: 0px; margin-bottom: calc(70px / 2); margin-top: calc(70px / 2); } .framer-MxcaZ .framer-h8e2dh > *, .framer-MxcaZ .framer-13s62u7 > *, .framer-MxcaZ .framer-bccrmd > * { margin: 0px; margin-bottom: calc(40px / 2); margin-top: calc(40px / 2); } .framer-MxcaZ .framer-vomjx7 > * { margin: 0px; margin-bottom: calc(50px / 2); margin-top: calc(50px / 2); } .framer-MxcaZ .framer-14ebd2i > * { margin: 0px; margin-bottom: calc(30px / 2); margin-top: calc(30px / 2); } }}\",\"@media (max-width: 766px) { .framer-MxcaZ.framer-72rtr7 { width: 378px; } .framer-MxcaZ .framer-ssplkx { align-content: flex-start; align-items: flex-start; flex-direction: column; padding: 88px 16px 0px 16px; } .framer-MxcaZ .framer-1wue6qx { height: 94%; left: -2px; right: 0px; width: unset; } .framer-MxcaZ .framer-15z0qep { align-content: flex-start; align-items: flex-start; flex-direction: column; gap: 22px; max-width: 100%; } .framer-MxcaZ .framer-xa2ofc { align-self: unset; gap: 60px; height: min-content; justify-content: center; width: 100%; z-index: 0; } .framer-MxcaZ .framer-1qo3se8 { z-index: 0; } .framer-MxcaZ .framer-pmvpkv { gap: 0px; } .framer-MxcaZ .framer-1j51jss-container { height: 52px; } .framer-MxcaZ .framer-6bzsam { z-index: 10; } .framer-MxcaZ .framer-ffabmk { flex: none; flex-direction: column; padding: 53px 0px 53px 0px; width: 100%; } .framer-MxcaZ .framer-1rqwzgt, .framer-MxcaZ .framer-193yyh6 { align-content: flex-start; align-items: flex-start; justify-content: flex-start; width: 100%; } .framer-MxcaZ .framer-186cnfw { height: 393px; order: 0; width: 124%; } .framer-MxcaZ .framer-14otlz6 { align-content: flex-start; align-items: flex-start; flex-direction: column; gap: 10px; padding: 48px 0px 24px 0px; width: 100%; } .framer-MxcaZ .framer-te31eu-container, .framer-MxcaZ .framer-1yb20zr { width: 100%; } .framer-MxcaZ .framer-1lrj5oo { align-content: flex-start; align-items: flex-start; flex-direction: column; padding: 0px 16px 64px 16px; } .framer-MxcaZ .framer-h8e2dh, .framer-MxcaZ .framer-bccrmd { align-content: flex-start; align-items: flex-start; flex-direction: column; gap: 24px; max-width: 100%; } .framer-MxcaZ .framer-1qjpqou, .framer-MxcaZ .framer-nz6ytj { flex: none; gap: 24px; padding: 0px; width: 100%; } .framer-MxcaZ .framer-lfon5t, .framer-MxcaZ .framer-2nfddq { align-content: flex-start; align-items: flex-start; flex-direction: column; gap: 20px; } .framer-MxcaZ.framer-1wsjkbx { z-index: 4; } .framer-MxcaZ.framer-98qeqf-container { height: 600px; left: calc(49.6527777777778% - 100% / 2); top: calc(51.12500000000002% - 600px / 2); width: 100%; z-index: 4; } .framer-MxcaZ.framer-14acten { align-content: center; align-items: center; background-color: var(--token-f185e619-7ab0-4648-8fea-7397aa0c9ce6, #ffffff); border-bottom-left-radius: 4px; border-bottom-right-radius: 4px; border-top-left-radius: 4px; border-top-right-radius: 4px; cursor: pointer; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 33px; justify-content: center; padding: 0px; top: 45px; will-change: var(--framer-will-change-override, transform); z-index: 4; } .framer-MxcaZ .framer-ezr7en { left: unset; position: relative; top: unset; } .framer-MxcaZ .framer-1ogoumu, .framer-MxcaZ .framer-19qk5vn { align-self: unset; flex: none; height: 250px; width: 100%; } .framer-MxcaZ .framer-ym8ivz { border-bottom-left-radius: 12px; border-bottom-right-radius: 12px; border-top-left-radius: 12px; border-top-right-radius: 12px; order: 0; } .framer-MxcaZ .framer-kyc5o0 { flex-direction: column; padding: 40px 16px 40px 16px; } .framer-MxcaZ .framer-13s62u7 { align-content: flex-start; align-items: flex-start; flex-direction: column; gap: 24px; max-width: unset; } .framer-MxcaZ .framer-d2g3bj { align-self: unset; flex: none; height: 250px; order: 1; width: 100%; } .framer-MxcaZ .framer-5f7hox, .framer-MxcaZ .framer-16jv8ch { border-bottom-left-radius: 12px; border-bottom-right-radius: 12px; border-top-left-radius: 12px; border-top-right-radius: 12px; } .framer-MxcaZ .framer-6sp0vs { flex: none; gap: 24px; max-width: unset; order: 0; padding: 0px; width: 100%; } .framer-MxcaZ .framer-17mpdb8 { height: min-content; } .framer-MxcaZ .framer-f7i4cp { align-content: flex-start; align-items: flex-start; flex-direction: column; padding: 64px 16px 64px 16px; } .framer-MxcaZ .framer-15ypr7b { padding: 20px; width: 100%; } .framer-MxcaZ .framer-9n0yo { grid-template-columns: repeat(1, minmax(200px, 1fr)); } .framer-MxcaZ .framer-zaelqv, .framer-MxcaZ .framer-1p8zeln, .framer-MxcaZ .framer-iqw1sl, .framer-MxcaZ .framer-rayj4r, .framer-MxcaZ .framer-12b3q9l, .framer-MxcaZ .framer-1g5wxux { height: var(--framer-aspect-ratio-supported, 80px); width: 80px; } .framer-MxcaZ .framer-14xd0oj { padding: 53px 16px 0px 16px; } .framer-MxcaZ .framer-vomjx7 { gap: 24px; } .framer-MxcaZ .framer-1ke86zr { order: 5; } .framer-MxcaZ .framer-16ld070 { order: 6; } .framer-MxcaZ .framer-715uis { order: 4; } .framer-MxcaZ .framer-14ebd2i { flex-direction: column; gap: 16px; } .framer-MxcaZ .framer-1vn2x1u { gap: 24px; height: 544px; order: 0; padding: 48px 24px 0px 24px; width: 100%; } .framer-MxcaZ .framer-1k7jzys { height: 516px; order: 1; overflow: visible; width: 273px; } .framer-MxcaZ .framer-15qb485 { gap: 12px; order: 0; } .framer-MxcaZ .framer-yjuy1f { order: 3; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-MxcaZ .framer-ssplkx, .framer-MxcaZ .framer-15z0qep, .framer-MxcaZ .framer-xa2ofc, .framer-MxcaZ .framer-pmvpkv, .framer-MxcaZ .framer-ffabmk, .framer-MxcaZ .framer-14otlz6, .framer-MxcaZ .framer-1lrj5oo, .framer-MxcaZ .framer-h8e2dh, .framer-MxcaZ .framer-1qjpqou, .framer-MxcaZ .framer-lfon5t, .framer-MxcaZ.framer-14acten, .framer-MxcaZ .framer-kyc5o0, .framer-MxcaZ .framer-13s62u7, .framer-MxcaZ .framer-6sp0vs, .framer-MxcaZ .framer-f7i4cp, .framer-MxcaZ .framer-bccrmd, .framer-MxcaZ .framer-nz6ytj, .framer-MxcaZ .framer-2nfddq, .framer-MxcaZ .framer-vomjx7, .framer-MxcaZ .framer-14ebd2i, .framer-MxcaZ .framer-1vn2x1u, .framer-MxcaZ .framer-15qb485 { gap: 0px; } .framer-MxcaZ .framer-ssplkx > *, .framer-MxcaZ .framer-pmvpkv > *, .framer-MxcaZ .framer-1lrj5oo > *, .framer-MxcaZ .framer-kyc5o0 > *, .framer-MxcaZ .framer-f7i4cp > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-MxcaZ .framer-ssplkx > :first-child, .framer-MxcaZ .framer-15z0qep > :first-child, .framer-MxcaZ .framer-xa2ofc > :first-child, .framer-MxcaZ .framer-pmvpkv > :first-child, .framer-MxcaZ .framer-ffabmk > :first-child, .framer-MxcaZ .framer-14otlz6 > :first-child, .framer-MxcaZ .framer-1lrj5oo > :first-child, .framer-MxcaZ .framer-h8e2dh > :first-child, .framer-MxcaZ .framer-1qjpqou > :first-child, .framer-MxcaZ .framer-lfon5t > :first-child, .framer-MxcaZ .framer-kyc5o0 > :first-child, .framer-MxcaZ .framer-13s62u7 > :first-child, .framer-MxcaZ .framer-6sp0vs > :first-child, .framer-MxcaZ .framer-f7i4cp > :first-child, .framer-MxcaZ .framer-bccrmd > :first-child, .framer-MxcaZ .framer-nz6ytj > :first-child, .framer-MxcaZ .framer-2nfddq > :first-child, .framer-MxcaZ .framer-vomjx7 > :first-child, .framer-MxcaZ .framer-14ebd2i > :first-child, .framer-MxcaZ .framer-1vn2x1u > :first-child, .framer-MxcaZ .framer-15qb485 > :first-child { margin-top: 0px; } .framer-MxcaZ .framer-ssplkx > :last-child, .framer-MxcaZ .framer-15z0qep > :last-child, .framer-MxcaZ .framer-xa2ofc > :last-child, .framer-MxcaZ .framer-pmvpkv > :last-child, .framer-MxcaZ .framer-ffabmk > :last-child, .framer-MxcaZ .framer-14otlz6 > :last-child, .framer-MxcaZ .framer-1lrj5oo > :last-child, .framer-MxcaZ .framer-h8e2dh > :last-child, .framer-MxcaZ .framer-1qjpqou > :last-child, .framer-MxcaZ .framer-lfon5t > :last-child, .framer-MxcaZ .framer-kyc5o0 > :last-child, .framer-MxcaZ .framer-13s62u7 > :last-child, .framer-MxcaZ .framer-6sp0vs > :last-child, .framer-MxcaZ .framer-f7i4cp > :last-child, .framer-MxcaZ .framer-bccrmd > :last-child, .framer-MxcaZ .framer-nz6ytj > :last-child, .framer-MxcaZ .framer-2nfddq > :last-child, .framer-MxcaZ .framer-vomjx7 > :last-child, .framer-MxcaZ .framer-14ebd2i > :last-child, .framer-MxcaZ .framer-1vn2x1u > :last-child, .framer-MxcaZ .framer-15qb485 > :last-child { margin-bottom: 0px; } .framer-MxcaZ .framer-15z0qep > * { margin: 0px; margin-bottom: calc(22px / 2); margin-top: calc(22px / 2); } .framer-MxcaZ .framer-xa2ofc > * { margin: 0px; margin-bottom: calc(60px / 2); margin-top: calc(60px / 2); } .framer-MxcaZ .framer-ffabmk > *, .framer-MxcaZ .framer-lfon5t > *, .framer-MxcaZ .framer-2nfddq > * { margin: 0px; margin-bottom: calc(20px / 2); margin-top: calc(20px / 2); } .framer-MxcaZ .framer-14otlz6 > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-MxcaZ .framer-h8e2dh > *, .framer-MxcaZ .framer-1qjpqou > *, .framer-MxcaZ .framer-13s62u7 > *, .framer-MxcaZ .framer-6sp0vs > *, .framer-MxcaZ .framer-bccrmd > *, .framer-MxcaZ .framer-nz6ytj > *, .framer-MxcaZ .framer-vomjx7 > *, .framer-MxcaZ .framer-1vn2x1u > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } .framer-MxcaZ.framer-14acten > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-MxcaZ.framer-14acten > :first-child { margin-left: 0px; } .framer-MxcaZ.framer-14acten > :last-child { margin-right: 0px; } .framer-MxcaZ .framer-14ebd2i > * { margin: 0px; margin-bottom: calc(16px / 2); margin-top: calc(16px / 2); } .framer-MxcaZ .framer-15qb485 > * { margin: 0px; margin-bottom: calc(12px / 2); margin-top: calc(12px / 2); } }}\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 5049\n * @framerIntrinsicWidth 1440\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"xf27aOaI0\":{\"layout\":[\"fixed\",\"auto\"]},\"ilCPgpUK1\":{\"layout\":[\"fixed\",\"auto\"]},\"xmttBflmi\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n * @framerAcceptsLayoutTemplate true\n * @framerScrollSections\n * @framerResponsiveScreen\n */const FrameraugiA20Il=withCSS(Component,css,\"framer-MxcaZ\");export default FrameraugiA20Il;FrameraugiA20Il.displayName=\"Home\";FrameraugiA20Il.defaultProps={height:5049,width:1440};addFonts(FrameraugiA20Il,[{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:\"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/5A3Ce6C9YYmCjpQx9M4inSaKU.woff2\",weight:\"500\"},{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/Qx95Xyt0Ka3SGhinnbXIGpEIyP4.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/6mJuEAguuIuMog10gGvH5d3cl8.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/xYYWaj7wCU5zSQH0eXvSaS19wo.woff2\",weight:\"500\"},{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/otTaNuNpVK4RbdlT7zDDdKvQBA.woff2\",weight:\"500\"},{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/d3tHnaQIAeqiE5hGcRw4mmgWYU.woff2\",weight:\"500\"},{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/DolVirEGb34pEXEp8t8FQBSK4.woff2\",weight:\"500\"},{family:\"Inter\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/inter/v18/UcCO3FwrK3iLTeHuS_nVMrMxCp50SjIw2boKoduKmMEVuFuYMZ1rib2Bg-4.woff2\",weight:\"700\"},{family:\"Inter\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/inter/v18/UcCO3FwrK3iLTeHuS_nVMrMxCp50SjIw2boKoduKmMEVuI6fMZ1rib2Bg-4.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/hyOgCu0Xnghbimh0pE8QTvtt2AU.woff2\",weight:\"600\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/NeGmSOXrPBfEFIy5YZeHq17LEDA.woff2\",weight:\"600\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/oYaAX5himiTPYuN8vLWnqBbfD2s.woff2\",weight:\"600\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/lEJLP4R0yuCaMCjSXYHtJw72M.woff2\",weight:\"600\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/cRJyLNuTJR5jbyKzGi33wU9cqIQ.woff2\",weight:\"600\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/1ZFS7N918ojhhd0nQWdj3jz4w.woff2\",weight:\"600\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/A0Wcc7NgXMjUuFdquHDrIZpzZw0.woff2\",weight:\"600\"}]},...TopbarFonts,...RotatingWordsFonts,...ButtonFonts,...RoutesTravelledNumbersFonts,...BadgeFonts,...VideoFonts,...CTAFonts,...FooterFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts),...getFontsFromSharedStyle(sharedStyle2.fonts),...getFontsFromSharedStyle(sharedStyle3.fonts),...getFontsFromSharedStyle(sharedStyle4.fonts),...getFontsFromSharedStyle(sharedStyle5.fonts),...getFontsFromSharedStyle(sharedStyle6.fonts),...getFontsFromSharedStyle(sharedStyle7.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FrameraugiA20Il\",\"slots\":[],\"annotations\":{\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"xf27aOaI0\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"ilCPgpUK1\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"xmttBflmi\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerComponentViewportWidth\":\"true\",\"framerScrollSections\":\"* @framerResponsiveScreen\",\"framerDisplayContentsDiv\":\"false\",\"framerIntrinsicHeight\":\"5049\",\"framerAcceptsLayoutTemplate\":\"true\",\"framerContractVersion\":\"1\",\"framerImmutableVariables\":\"true\",\"framerIntrinsicWidth\":\"1440\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}"],
  "mappings": "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",
  "names": ["ObjectFitType", "SrcType", "getProps", "props", "width", "height", "topLeft", "topRight", "bottomRight", "bottomLeft", "id", "children", "rest", "Video", "newProps", "p", "VideoMemo", "usePlaybackControls", "videoRef", "isInCurrentNavigationTarget", "useIsInCurrentNavigationTarget", "requestingPlay", "pe", "setProgress", "te", "rawProgress", "newProgress", "isAlreadySet", "play", "video", "e", "pause", "useAutoplayBehavior", "playingProp", "muted", "loop", "playsinline", "controls", "initialPlayingProp", "ye", "hasPlayingPropChanged", "setHasPlayingPropChanged", "behavesAsGif", "autoplay", "isMountedAndReadyForProgressChanges", "X", "srcType", "srcFile", "srcUrl", "progress", "objectFit", "backgroundColor", "onSeeked", "onPause", "onPlay", "onEnd", "onClick", "onMouseEnter", "onMouseLeave", "onMouseDown", "onMouseUp", "poster", "posterEnabled", "startTimeProp", "volume", "isSafari", "useIsBrowserSafari", "wasPausedOnLeave", "wasEndedOnLeave", "isOnCanvas", "useIsOnCanvas", "borderRadius", "useRadius", "autoplayBehavior", "isInViewport", "useInView", "isCloseToViewport", "startTime", "ue", "rawProgressValue", "isMotionValue", "value", "useOnEnter", "useOnExit", "src", "se", "fragment", "groupsRegex", "capitalizeFirstLetter", "titleCase", "objectFitOptions", "addPropertyControls", "ControlType", "borderRadiusControl", "defaultEvents", "formatNumber", "number", "useIncrementAnimation", "start", "end", "duration", "incrementStep", "value", "setValue", "ye", "ue", "totalIncrements", "incrementDuration", "currentValue", "interval", "withRoutesTravelledNumber", "Component", "props", "initialValue", "setInitialValue", "finalValue", "setFinalValue", "isAnimationDone", "setIsAnimationDone", "startDate", "intervalsPassed", "updatedValue", "customInterval", "prevState", "animatedValue", "u", "p", "MotionDivWithRoutesTravelledNumber", "withRoutesTravelledNumber", "motion", "cycleOrder", "serializationHash", "variantClassNames", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "getProps", "height", "id", "width", "props", "createLayoutDependency", "variants", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "variant", "restProps", "baseVariant", "classNames", "gestureHandlers", "gestureVariant", "setGestureState", "setVariant", "useVariantState", "cycleOrder", "variantClassNames", "layoutDependency", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "MotionDivWithRoutesTravelledNumber", "cx", "serializationHash", "css", "Framerp1xYhxj5G", "withCSS", "p1xYhxj5G_default", "addFonts", "RichTextWithFXWithOptimizedAppearEffect", "withOptimizedAppearEffect", "withFX", "RichText2", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "transition2", "transition3", "animation", "animation1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "height", "id", "width", "word1", "word2", "word3", "word4", "word5", "word6", "props", "_ref", "_ref1", "_ref2", "_ref3", "_ref4", "_humanReadableVariantMap_props_variant", "_ref5", "_ref6", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "auB66AFUm", "w1nWOs5iT", "agXkrRnYD", "D7ja_SPDx", "mjFS6eu5M", "mnpp9gJvH", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onAppear90n33b", "args", "onAppearhepul8", "onAppear1jegjcb", "onAppearhcyvxx", "onAppearhcaouz", "onAppear1vldglc", "useOnVariantChange", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "cx", "u", "css", "FramerTjAKinpEr", "withCSS", "TjAKinpEr_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts", "TopbarFonts", "getFonts", "sltkc74h7_default", "RotatingWordsFonts", "TjAKinpEr_default", "MotionDivWithOptimizedAppearEffect", "withOptimizedAppearEffect", "motion", "ButtonFonts", "KF7UbbSfc_default", "RoutesTravelledNumbersFonts", "p1xYhxj5G_default", "MotionDivWithFX", "withFX", "ImageWithOptimizedAppearEffect", "Image2", "BadgeFonts", "sqcnnD9OB_default", "ContainerWithFX", "Container", "VideoFonts", "Video", "RichTextWithFX", "RichText2", "CTAFonts", "LpjyIZj0_default", "FooterFonts", "lS9TvqxVt_default", "breakpoints", "isBrowser", "serializationHash", "variantClassNames", "transition1", "animation", "animation1", "transition2", "animation2", "animation3", "animation4", "animation5", "transition3", "animation6", "animation7", "transition4", "animation8", "animation9", "getContainer", "Overlay", "children", "blockDocumentScrolling", "enabled", "visible", "setVisible", "useOverlayState", "transition5", "animation10", "HTMLStyle", "value", "useIsOnFramerCanvas", "p", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "variant", "restProps", "ue", "metadata", "robotsTag", "ie", "baseVariant", "hydratedBaseVariant", "useHydratedBreakpointVariants", "gestureVariant", "activeVariantCallback", "delay", "useActiveVariantCallback", "a84QWb9it3bnx0g", "overlay", "loadMore", "args", "onTap1wnntms", "scopingClassNames", "cx", "isDisplayed", "isDisplayed1", "isDisplayed2", "router", "useRouter", "isDisplayed3", "isDisplayed4", "isDisplayed5", "isDisplayed6", "isDisplayed7", "useCustomCursors", "GeneratedComponentContext", "u", "LayoutGroup", "PropertyOverrides2", "ComponentViewportProvider", "getLoadingLazyAtYPosition", "x", "l", "AnimatePresence", "Ga", "ResolveLinks", "resolvedLinks", "resolvedLinks1", "resolvedLinks2", "resolvedLinks3", "resolvedLinks4", "css", "FrameraugiA20Il", "withCSS", "augiA20Il_default", "addFonts", "getFontsFromSharedStyle", "fonts", "__FramerMetadata__"]
}
