{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/lRDHiNWNVWmE0lqtoVHP/7qT0r3So12155VV5Jq5x/Video.js", "ssg:https://framerusercontent.com/modules/1Blx9eBafHAssjxacJ1b/l44YkQnYUxtuKiOEeB8b/bAyWlSCA4.js", "ssg:https://framerusercontent.com/modules/tEd7qbq8eFJNWW3teZQW/lCFfEyCZKfgZz6GpQwaS/jqYhY69Ba.js", "ssg:https://framerusercontent.com/modules/i1voXAafCo3PerFScB6G/mLPvry2UTPS2C1yyBDOh/augiA20Il.js"],
  "sourcesContent": ["import{jsx as _jsx}from\"react/jsx-runtime\";import{addPropertyControls,ControlType,useIsInCurrentNavigationTarget,RenderTarget}from\"framer\";import{isMotionValue,useInView}from\"framer-motion\";import{borderRadiusControl,defaultEvents,useIsBrowserSafari,useIsOnCanvas,useOnEnter,useOnExit,useRadius,useRenderTarget}from\"https://framerusercontent.com/modules/G4IfyjvwmaeSBpdb4TWu/OIjZRBmWDcIE2B6qgG1j/index.js\";// https://framer.com/m/framer/default-utils.js@^0.45.0\nimport{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={}));const defaultVideo=\"https://framerusercontent.com/assets/MLWPbW1dUQawJLhhun3dBwpgJak.mp4\";// 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 isPlayingRef=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;isPlayingRef.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();isPlayingRef.current=false;},[]);return{play,pause,setProgress,isPlaying:isPlayingRef};}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;}const VideoMemo=/*#__PURE__*/memo(function VideoInner(props){const{// default props\nsrcType=\"URL\",srcUrl,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:startTimeProp=0,poster,playing:playingProp,progress,onSeeked,onPause,onPlay,onEnd,onClick,onMouseEnter,onMouseLeave,onMouseDown,onMouseUp}=props;const videoRef=useRef();const isSafari=useIsBrowserSafari();const wasPausedOnLeave=useRef(null);const wasEndedOnLeave=useRef(null);const isOnCanvas=useIsOnCanvas();const renderTarget=useRenderTarget();const isStaticRenderer=isOnCanvas||renderTarget===RenderTarget.export;const borderRadius=useRadius(props);// Hard-coding `autoplayBehavior` and `isInViewport` when on canvas as a\n// tiny perf optimization. isStaticRenderer won\u2019t change through the lifecycle of\n// the component, so using these hooks conditionally should be safe\nconst autoplayBehavior=isStaticRenderer?\"no-autoplay\":useAutoplayBehavior({playingProp,muted,loop,playsinline,controls});const isInViewport=isStaticRenderer?true:useInView(videoRef);const isCloseToViewport=isStaticRenderer?false:useInView(videoRef,{margin:\"10%\",once:true});// Video elements behave oddly at 100% duration\nconst startTime=startTimeProp===100?99.9:startTimeProp;const{play,pause,setProgress,isPlaying}=usePlaybackControls(videoRef);// Pause/play via props\nuseEffect(()=>{if(isStaticRenderer)return;if(autoplayBehavior===\"on-viewport\")return;if(playingProp)play();else pause();},[autoplayBehavior,playingProp]);// Pause/play via viewport\nuseEffect(()=>{if(isStaticRenderer)return;// this also explicitly retries playing for videos that play on-mount, which could fail if they're not muted for example\nif(isInViewport&&playingProp&&autoplayBehavior!==\"no-autoplay\")play();if(autoplayBehavior!==\"on-viewport\")return;pause();},[autoplayBehavior,isInViewport,playingProp]);useEffect(()=>{if(!isOnCanvas||poster||posterEnabled||startTime||!videoRef.current)return;// forces a poster to show up when the video is in an iframe; this is needed when `poster` changes\nvideoRef.current.currentTime=.01;},[posterEnabled,poster,startTime]);/**\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     */const isMountedAndReadyForProgressChanges=useRef(false);// Allow scrubbling via progress prop\n// 1) Handle cases when the progress prop itself changes\nuseEffect(()=>{if(!isMountedAndReadyForProgressChanges.current){isMountedAndReadyForProgressChanges.current=true;return;}const rawProgressValue=isMotionValue(progress)?progress.get():(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??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??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//     !isStaticRenderer\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??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??0)*.01);if(// when the component updates (e.g. only srcFile/url changes), and the video was already playing, keep playing\nisPlaying.current||autoplayBehavior===\"on-mount\"||playingProp&&autoplayBehavior===\"on-viewport\"&&isInViewport)play();};return /*#__PURE__*/_jsx(\"video\",{onClick,onMouseEnter,onMouseLeave,onMouseDown,onMouseUp,src:src,loop:loop,ref:videoRef,onSeeked:e=>onSeeked?.(e),onPause:e=>onPause?.(e),onPlay:e=>onPlay?.(e),onEnded:e=>onEnd?.(e),autoPlay:isPlaying.current||autoplayBehavior===\"on-mount\"||playingProp&&autoplayBehavior===\"on-viewport\"&&isInViewport,preload:isPlaying.current?\"auto\":isStaticRenderer&&!poster?\"metadata\":autoplayBehavior!==\"on-mount\"&&!isCloseToViewport?\"none\":// `autoplay` overrides this too\n\"metadata\",poster:posterEnabled&&!srcFile&&srcUrl===defaultVideo?\"https://framerusercontent.com/images/5ILRvlYXf72kHSVHqpa3snGzjU.jpg\":posterEnabled&&poster?poster:undefined,onLoadedData:handleReady,controls:controls,muted:isStaticRenderer?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\";function capitalizeFirstLetter(value){return value.charAt(0).toUpperCase()+value.slice(1);}export function titleCase(value){const groups=value.match(/[A-Z]{2,}|[A-Z][a-z]+|[a-z]+|[A-Z]|\\d+/gu)||[];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\",defaultValue:\"https://framerusercontent.com/assets/MLWPbW1dUQawJLhhun3dBwpgJak.mp4\",hidden(props){return props.srcType===\"Upload\";}},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\"},...borderRadiusControl,posterEnabled:{type:ControlType.Boolean,title:\"Poster\",enabledTitle:\"Yes\",disabledTitle:\"No\"},poster:{type:ControlType.Image,title:\"Image\",hidden:({posterEnabled})=>!posterEnabled,description:\"We recommend adding a poster. [Learn more](https://www.framer.com/help/articles/how-are-videos-optimized-in-framer/).\"},backgroundColor:{type:ControlType.Color,title:\"Background\",defaultValue:\"rgba(0,0,0,0)\"},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\",defaultValue:false},muted:{type:ControlType.Boolean,title:\"Muted\",enabledTitle:\"Yes\",disabledTitle:\"No\"},volume:{type:ControlType.Number,max:100,min:0,unit:\"%\",hidden:({muted})=>muted,defaultValue:25},onEnd:{type:ControlType.EventHandler},onSeeked:{type:ControlType.EventHandler},onPause:{type:ControlType.EventHandler},onPlay:{type:ControlType.EventHandler},...defaultEvents});\nexport const __FramerMetadata__ = {\"exports\":{\"VideoProps\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"titleCase\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"Video\":{\"type\":\"reactComponent\",\"name\":\"Video\",\"slots\":[],\"annotations\":{\"framerIntrinsicHeight\":\"112\",\"framerContractVersion\":\"1\",\"framerSupportedLayoutWidth\":\"fixed\",\"framerIntrinsicWidth\":\"200\",\"framerSupportedLayoutHeight\":\"any-prefer-fixed\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Video.map", "// Generated by Framer (5da54f8)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,getFontsFromSharedStyle,getLoadingLazyAtYPosition,Image,RichText,SmartComponentScopedContainer,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import*as sharedStyle2 from\"https://framerusercontent.com/modules/lONu2yrLHmmyX3u78UnC/bu83vzcj3XcDFrHTLegO/ky1z07apG.js\";import*as sharedStyle1 from\"https://framerusercontent.com/modules/qEKJXP5WVXIZPWHcHoO5/GQtIMTUBirlF28MP3ebq/lZkDQNdBs.js\";import*as sharedStyle3 from\"https://framerusercontent.com/modules/uuNxRqFxHvUogIOAZ9XN/6IROU04PWBYr64bxxK0A/OnjiCkJ1d.js\";import*as sharedStyle from\"https://framerusercontent.com/modules/p3YrlUbjZal6NynbpM1X/GY1bbycBmjl7a97H8SDa/zZDiT_kLU.js\";import TagTag from\"https://framerusercontent.com/modules/nHcmmqu5PRr9AIA0wt0R/37gTVvqcdlBkADrVhKWp/KelSkUejH.js\";import FaqFaqList from\"https://framerusercontent.com/modules/yl4w99RDjnx5NI39qvEg/2kzwF2iAKV7w3rqSANMM/yLH788YF3.js\";const TagTagFonts=getFonts(TagTag);const FaqFaqListFonts=getFonts(FaqFaqList);const cycleOrder=[\"XgmZCwaTO\",\"MIyzHCJmC\",\"DkvYV84vi\",\"Ghf2DcOrx\",\"QU_fY60WS\",\"qtgRZihtm\"];const serializationHash=\"framer-PQAjc\";const variantClassNames={DkvYV84vi:\"framer-v-19159ac\",Ghf2DcOrx:\"framer-v-1nyffk1\",MIyzHCJmC:\"framer-v-1xy6ikf\",qtgRZihtm:\"framer-v-pacrcz\",QU_fY60WS:\"framer-v-11m2mui\",XgmZCwaTO:\"framer-v-1ong18n\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};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??config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={\"Desktop 1\":\"XgmZCwaTO\",\"Desktop 2\":\"MIyzHCJmC\",\"Desktop 3\":\"DkvYV84vi\",\"Tablet 1\":\"Ghf2DcOrx\",\"Tablet 2\":\"QU_fY60WS\",\"Tablet 3\":\"qtgRZihtm\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"XgmZCwaTO\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const fallbackRef=useRef(null);const refBinding=ref??fallbackRef;const defaultLayoutId=React.useId();const{activeLocale,setLocale}=useLocaleInfo();const componentViewport=useComponentViewport();const{style,className,layoutId,variant,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"XgmZCwaTO\",ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const orJYwvxX0rhxeuy=activeVariantCallback(async(...args)=>{setVariant(\"XgmZCwaTO\");});const orJYwvxX01m6l3c4=activeVariantCallback(async(...args)=>{setVariant(\"Ghf2DcOrx\");});const orJYwvxX01wr1fqk=activeVariantCallback(async(...args)=>{setVariant(\"MIyzHCJmC\");});const orJYwvxX0cph7ao=activeVariantCallback(async(...args)=>{setVariant(\"QU_fY60WS\");});const orJYwvxX01xfs7vo=activeVariantCallback(async(...args)=>{setVariant(\"DkvYV84vi\");});const orJYwvxX0wq8vhl=activeVariantCallback(async(...args)=>{setVariant(\"qtgRZihtm\");});const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className,sharedStyle2.className,sharedStyle3.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(motion.div,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-1ong18n\",className,classNames),\"data-framer-name\":\"Desktop 1\",layoutDependency:layoutDependency,layoutId:\"XgmZCwaTO\",ref:refBinding,style:{borderBottomLeftRadius:24,borderBottomRightRadius:24,borderTopLeftRadius:24,borderTopRightRadius:24,...style},...addPropertyOverrides({DkvYV84vi:{\"data-framer-name\":\"Desktop 3\"},Ghf2DcOrx:{\"data-framer-name\":\"Tablet 1\"},MIyzHCJmC:{\"data-framer-name\":\"Desktop 2\"},qtgRZihtm:{\"data-framer-name\":\"Tablet 3\"},QU_fY60WS:{\"data-framer-name\":\"Tablet 2\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-qs3zhb\",\"data-framer-name\":\"Tabs\",layoutDependency:layoutDependency,layoutId:\"PMvzrtQWs\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-16fwi4i\",\"data-framer-name\":\"Title\",layoutDependency:layoutDependency,layoutId:\"aJbEdZtkn\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:27,y:(componentViewport?.y||0)+0+0+0+0+0,...addPropertyOverrides({Ghf2DcOrx:{y:(componentViewport?.y||0)+0+(((componentViewport?.height||1143)-0-1139.6)/2+0+0)+0+0+0+0},qtgRZihtm:{y:(componentViewport?.y||0)+0+(((componentViewport?.height||200)-0-1139.6)/2+0+0)+0+0+0+0},QU_fY60WS:{y:(componentViewport?.y||0)+0+(((componentViewport?.height||200)-0-1139.6)/2+0+0)+0+0+0+0}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-abm0yf-container\",layoutDependency:layoutDependency,layoutId:\"YtGzdhJTq-container\",nodeId:\"YtGzdhJTq\",rendersWithMotion:true,scopeId:\"bAyWlSCA4\",children:/*#__PURE__*/_jsx(TagTag,{height:\"100%\",id:\"YtGzdhJTq\",layoutId:\"YtGzdhJTq\",width:\"100%\",ZUR9eX7lQ:\"Services\"})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h2,{className:\"framer-styles-preset-16vi7cr\",\"data-styles-preset\":\"zZDiT_kLU\",style:{\"--framer-text-color\":\"var(--extracted-1of0zx5, var(--token-a7d7b8ee-5d8b-4580-87eb-5f9cf604cfc2, rgb(255, 255, 255)))\"},children:\"Go\\xa0Beyond\\xa0with AI-driven insights\"})}),className:\"framer-qg03qq\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"U1hVPU4R8\",style:{\"--extracted-1of0zx5\":\"var(--token-a7d7b8ee-5d8b-4580-87eb-5f9cf604cfc2, rgb(255, 255, 255))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1ivccl1\",\"data-styles-preset\":\"lZkDQNdBs\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-b346a199-bd8d-4a37-9635-203583ae6b9c, rgb(117, 117, 117)))\"},children:\"From retail optimization to facility intelligence and real-time security, Lauretta.io delivers impact where it matters most.\"})}),className:\"framer-1unxghx\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"tPdx19wbs\",style:{\"--extracted-r6o4lv\":\"var(--token-b346a199-bd8d-4a37-9635-203583ae6b9c, rgb(117, 117, 117))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-g0wwm0\",\"data-framer-name\":\"Faq List Wrapper\",layoutDependency:layoutDependency,layoutId:\"fcdcFbq4M\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:27,width:`calc(min(max(${componentViewport?.width||\"100vw\"} * 0.4967, 1px), 552px) - 24px)`,y:(componentViewport?.y||0)+0+0+322.2+18+0,...addPropertyOverrides({Ghf2DcOrx:{width:`calc(${componentViewport?.width||\"100vw\"} - 24px)`,y:(componentViewport?.y||0)+0+(((componentViewport?.height||1143)-0-1139.6)/2+0+0)+0+282.2+18+0},qtgRZihtm:{width:`calc(${componentViewport?.width||\"100vw\"} - 24px)`,y:(componentViewport?.y||0)+0+(((componentViewport?.height||200)-0-1139.6)/2+0+0)+0+282.2+18+0},QU_fY60WS:{width:`calc(${componentViewport?.width||\"100vw\"} - 24px)`,y:(componentViewport?.y||0)+0+(((componentViewport?.height||200)-0-1139.6)/2+0+0)+0+282.2+18+0}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-dxurcy-container\",layoutDependency:layoutDependency,layoutId:\"RfWPCqFp2-container\",nodeId:\"RfWPCqFp2\",rendersWithMotion:true,scopeId:\"bAyWlSCA4\",children:/*#__PURE__*/_jsx(FaqFaqList,{height:\"100%\",id:\"RfWPCqFp2\",layoutId:\"RfWPCqFp2\",lezyohA9e:\"Sector - Retail & Commercial\",orJYwvxX0:orJYwvxX0rhxeuy,style:{width:\"100%\"},width:\"100%\",...addPropertyOverrides({Ghf2DcOrx:{orJYwvxX0:orJYwvxX01m6l3c4},qtgRZihtm:{orJYwvxX0:orJYwvxX01m6l3c4},QU_fY60WS:{orJYwvxX0:orJYwvxX01m6l3c4}},baseVariant,gestureVariant)})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:27,width:`calc(min(max(${componentViewport?.width||\"100vw\"} * 0.4967, 1px), 552px) - 24px)`,y:(componentViewport?.y||0)+0+0+322.2+18+62,...addPropertyOverrides({Ghf2DcOrx:{width:`calc(${componentViewport?.width||\"100vw\"} - 24px)`,y:(componentViewport?.y||0)+0+(((componentViewport?.height||1143)-0-1139.6)/2+0+0)+0+282.2+18+62},qtgRZihtm:{width:`calc(${componentViewport?.width||\"100vw\"} - 24px)`,y:(componentViewport?.y||0)+0+(((componentViewport?.height||200)-0-1139.6)/2+0+0)+0+282.2+18+62},QU_fY60WS:{width:`calc(${componentViewport?.width||\"100vw\"} - 24px)`,y:(componentViewport?.y||0)+0+(((componentViewport?.height||200)-0-1139.6)/2+0+0)+0+282.2+18+62}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-th3pmr-container\",layoutDependency:layoutDependency,layoutId:\"A6Pxp0bxQ-container\",nodeId:\"A6Pxp0bxQ\",rendersWithMotion:true,scopeId:\"bAyWlSCA4\",children:/*#__PURE__*/_jsx(FaqFaqList,{height:\"100%\",id:\"A6Pxp0bxQ\",layoutId:\"A6Pxp0bxQ\",lezyohA9e:\"Sector - Facility\",orJYwvxX0:orJYwvxX01wr1fqk,style:{width:\"100%\"},width:\"100%\",...addPropertyOverrides({Ghf2DcOrx:{orJYwvxX0:orJYwvxX0cph7ao},qtgRZihtm:{orJYwvxX0:orJYwvxX0cph7ao},QU_fY60WS:{orJYwvxX0:orJYwvxX0cph7ao}},baseVariant,gestureVariant)})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:27,width:`calc(min(max(${componentViewport?.width||\"100vw\"} * 0.4967, 1px), 552px) - 24px)`,y:(componentViewport?.y||0)+0+0+322.2+18+124,...addPropertyOverrides({Ghf2DcOrx:{width:`calc(${componentViewport?.width||\"100vw\"} - 24px)`,y:(componentViewport?.y||0)+0+(((componentViewport?.height||1143)-0-1139.6)/2+0+0)+0+282.2+18+124},qtgRZihtm:{width:`calc(${componentViewport?.width||\"100vw\"} - 24px)`,y:(componentViewport?.y||0)+0+(((componentViewport?.height||200)-0-1139.6)/2+0+0)+0+282.2+18+124},QU_fY60WS:{width:`calc(${componentViewport?.width||\"100vw\"} - 24px)`,y:(componentViewport?.y||0)+0+(((componentViewport?.height||200)-0-1139.6)/2+0+0)+0+282.2+18+124}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-7cp2ix-container\",layoutDependency:layoutDependency,layoutId:\"QrTaP4drM-container\",nodeId:\"QrTaP4drM\",rendersWithMotion:true,scopeId:\"bAyWlSCA4\",children:/*#__PURE__*/_jsx(FaqFaqList,{height:\"100%\",id:\"QrTaP4drM\",layoutId:\"QrTaP4drM\",lezyohA9e:\"Sector - Critical Infrastructure\",orJYwvxX0:orJYwvxX01xfs7vo,style:{width:\"100%\"},width:\"100%\",...addPropertyOverrides({Ghf2DcOrx:{orJYwvxX0:orJYwvxX0wq8vhl},qtgRZihtm:{orJYwvxX0:orJYwvxX0wq8vhl},QU_fY60WS:{orJYwvxX0:orJYwvxX0wq8vhl}},baseVariant,gestureVariant)})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1cb4nlf\",\"data-border\":true,\"data-framer-name\":\"Line\",layoutDependency:layoutDependency,layoutId:\"cNRaMhENR\",style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"rgb(117, 117, 117)\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",rotate:-90},children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-ewiyvj\",\"data-border\":true,\"data-framer-name\":\"Line\",layoutDependency:layoutDependency,layoutId:\"hJ1yjGt8q\",style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"var(--token-f13db3c2-a874-4bed-887b-9e0983b5dd33, rgb(239, 124, 71))\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\"}})})]})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-qldxwz\",\"data-border\":true,\"data-framer-name\":\"Right Content\",layoutDependency:layoutDependency,layoutId:\"hEPuMXjXa\",style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"rgba(255, 255, 255, 0.1)\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",background:\"linear-gradient(180deg, var(--token-8c4d7fa6-8e25-44e1-ad38-c3ce79c5badc, rgb(14, 15, 17)) 0%, rgba(255, 255, 255, 0.2) 247.00000000000003%)\",borderBottomLeftRadius:12,borderBottomRightRadius:12,borderTopLeftRadius:12,borderTopRightRadius:12},children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-q8w92v\",\"data-border\":true,\"data-framer-name\":\"Title\",layoutDependency:layoutDependency,layoutId:\"RILd0_RZ4\",style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"rgba(255, 255, 255, 0.2)\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-style\":\"solid\",\"--border-top-width\":\"0px\"},children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h4,{className:\"framer-styles-preset-nidioi\",\"data-styles-preset\":\"ky1z07apG\",style:{\"--framer-text-color\":\"var(--extracted-1eung3n, var(--token-a7d7b8ee-5d8b-4580-87eb-5f9cf604cfc2, rgb(255, 255, 255)))\"},children:\"Retail\"})}),className:\"framer-hhvzrx\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"FqeNby0Ef\",style:{\"--extracted-1eung3n\":\"var(--token-a7d7b8ee-5d8b-4580-87eb-5f9cf604cfc2, rgb(255, 255, 255))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({DkvYV84vi:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h4,{className:\"framer-styles-preset-nidioi\",\"data-styles-preset\":\"ky1z07apG\",style:{\"--framer-text-color\":\"var(--extracted-1eung3n, var(--token-a7d7b8ee-5d8b-4580-87eb-5f9cf604cfc2, rgb(255, 255, 255)))\"},children:\"Critical Infrastructure\"})})},MIyzHCJmC:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h4,{className:\"framer-styles-preset-nidioi\",\"data-styles-preset\":\"ky1z07apG\",style:{\"--framer-text-color\":\"var(--extracted-1eung3n, var(--token-a7d7b8ee-5d8b-4580-87eb-5f9cf604cfc2, rgb(255, 255, 255)))\"},children:\"Facility\"})})},qtgRZihtm:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h4,{className:\"framer-styles-preset-nidioi\",\"data-styles-preset\":\"ky1z07apG\",style:{\"--framer-text-color\":\"var(--extracted-1eung3n, var(--token-a7d7b8ee-5d8b-4580-87eb-5f9cf604cfc2, rgb(255, 255, 255)))\"},children:\"Guarding Your Systems\"})})},QU_fY60WS:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h4,{className:\"framer-styles-preset-nidioi\",\"data-styles-preset\":\"ky1z07apG\",style:{\"--framer-text-color\":\"var(--extracted-1eung3n, var(--token-a7d7b8ee-5d8b-4580-87eb-5f9cf604cfc2, rgb(255, 255, 255)))\"},children:\"Strengthening Digital Defenses\"})})}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1yz8stq\",\"data-styles-preset\":\"OnjiCkJ1d\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-a7d7b8ee-5d8b-4580-87eb-5f9cf604cfc2, rgb(255, 255, 255)))\"},children:\"Enhance customer experiences and drive revenue with AI-driven insights. Beyond Retail helps property owners analyse foot traffic, dwell times, and customer behavior to optimise marketing campaigns and leasing strategies.\"})}),className:\"framer-1eqc3m\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"wgIOV1W1E\",style:{\"--extracted-r6o4lv\":\"var(--token-a7d7b8ee-5d8b-4580-87eb-5f9cf604cfc2, rgb(255, 255, 255))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\",opacity:.7},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({DkvYV84vi:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1yz8stq\",\"data-styles-preset\":\"OnjiCkJ1d\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-a7d7b8ee-5d8b-4580-87eb-5f9cf604cfc2, rgb(255, 255, 255)))\"},children:\"Protect high-value assets and maintain situational awareness with intelligent monitoring. Beyond Security provides advanced video analytics for perimeter detection, intrusion alerts, and behavioral anomalies\u2014helping secure airports, data centers, ports, and other mission-critical sites.\"})})},MIyzHCJmC:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1yz8stq\",\"data-styles-preset\":\"OnjiCkJ1d\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-a7d7b8ee-5d8b-4580-87eb-5f9cf604cfc2, rgb(255, 255, 255)))\"},children:\"Improve operational efficiency and ensure safety with real-time facility intelligence. Beyond Facility leverages AI to monitor usage patterns, detect anomalies, and support smarter space and resource management across commercial and public environments.\"})})},qtgRZihtm:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1yz8stq\",\"data-styles-preset\":\"OnjiCkJ1d\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-a7d7b8ee-5d8b-4580-87eb-5f9cf604cfc2, rgb(255, 255, 255)))\"},children:\"Protecting user data is paramount. We maintain stringent security protocols, comply with regulations, and provide detailed transparency on collection and usage.\"})})},QU_fY60WS:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1yz8stq\",\"data-styles-preset\":\"OnjiCkJ1d\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-a7d7b8ee-5d8b-4580-87eb-5f9cf604cfc2, rgb(255, 255, 255)))\"},children:\"We prioritize user privacy by following stringent data protection laws and ensuring full transparency regarding how we collect, process, and utilize user data responsibly.\"})})}},baseVariant,gestureVariant)})]}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+24+262.4),pixelHeight:640,pixelWidth:1136,sizes:`calc(${componentViewport?.width||\"100vw\"} / 1.987 - 48px)`,src:\"https://framerusercontent.com/images/enxn9eOEozOJgnBRKShvRrs2Cc.png\",srcSet:\"https://framerusercontent.com/images/enxn9eOEozOJgnBRKShvRrs2Cc.png?scale-down-to=512 512w,https://framerusercontent.com/images/enxn9eOEozOJgnBRKShvRrs2Cc.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/enxn9eOEozOJgnBRKShvRrs2Cc.png 1136w\"},className:\"framer-xlxyue\",layoutDependency:layoutDependency,layoutId:\"snplIV9bp\",style:{borderBottomLeftRadius:18,borderBottomRightRadius:18,borderTopLeftRadius:18,borderTopRightRadius:18},...addPropertyOverrides({Ghf2DcOrx:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+(((componentViewport?.height||1143)-0-1139.6)/2+469.2+40)+24+262.4),pixelHeight:640,pixelWidth:1136,sizes:`calc(${componentViewport?.width||\"100vw\"} - 48px)`,src:\"https://framerusercontent.com/images/enxn9eOEozOJgnBRKShvRrs2Cc.png\",srcSet:\"https://framerusercontent.com/images/enxn9eOEozOJgnBRKShvRrs2Cc.png?scale-down-to=512 512w,https://framerusercontent.com/images/enxn9eOEozOJgnBRKShvRrs2Cc.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/enxn9eOEozOJgnBRKShvRrs2Cc.png 1136w\"}},qtgRZihtm:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+(((componentViewport?.height||200)-0-1139.6)/2+469.2+40)+24+262.4),pixelHeight:640,pixelWidth:1136,sizes:`calc(${componentViewport?.width||\"100vw\"} - 48px)`,src:\"https://framerusercontent.com/images/enxn9eOEozOJgnBRKShvRrs2Cc.png\",srcSet:\"https://framerusercontent.com/images/enxn9eOEozOJgnBRKShvRrs2Cc.png?scale-down-to=512 512w,https://framerusercontent.com/images/enxn9eOEozOJgnBRKShvRrs2Cc.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/enxn9eOEozOJgnBRKShvRrs2Cc.png 1136w\"}},QU_fY60WS:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+(((componentViewport?.height||200)-0-1139.6)/2+469.2+40)+24+262.4),pixelHeight:640,pixelWidth:1136,sizes:`calc(${componentViewport?.width||\"100vw\"} - 48px)`,src:\"https://framerusercontent.com/images/enxn9eOEozOJgnBRKShvRrs2Cc.png\",srcSet:\"https://framerusercontent.com/images/enxn9eOEozOJgnBRKShvRrs2Cc.png?scale-down-to=512 512w,https://framerusercontent.com/images/enxn9eOEozOJgnBRKShvRrs2Cc.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/enxn9eOEozOJgnBRKShvRrs2Cc.png 1136w\"}}},baseVariant,gestureVariant)})]})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-PQAjc.framer-1a6klb2, .framer-PQAjc .framer-1a6klb2 { display: block; }\",\".framer-PQAjc.framer-1ong18n { align-content: flex-start; align-items: flex-start; display: flex; flex-direction: row; flex-wrap: nowrap; height: min-content; justify-content: space-between; overflow: visible; padding: 0px; position: relative; width: 1224px; }\",\".framer-PQAjc .framer-qs3zhb { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 72px; height: min-content; justify-content: center; max-width: 552px; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-PQAjc .framer-16fwi4i { 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; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-PQAjc .framer-abm0yf-container { flex: none; height: auto; position: relative; width: auto; }\",\".framer-PQAjc .framer-qg03qq { flex: none; height: auto; max-width: 496px; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-PQAjc .framer-1unxghx { flex: none; height: auto; max-width: 546px; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-PQAjc .framer-g0wwm0 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 35px; height: min-content; justify-content: center; overflow: visible; padding: 18px 0px 18px 24px; position: relative; width: 100%; }\",\".framer-PQAjc .framer-dxurcy-container, .framer-PQAjc .framer-th3pmr-container, .framer-PQAjc .framer-7cp2ix-container { flex: none; height: auto; position: relative; width: 100%; }\",\".framer-PQAjc .framer-1cb4nlf { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 2px; justify-content: center; left: calc(0.36231884057973235% - 188px / 2); overflow: visible; padding: 0px; position: absolute; top: calc(50.00000000000002% - 2px / 2); width: 188px; z-index: 1; }\",\".framer-PQAjc .framer-ewiyvj { align-content: center; align-items: center; bottom: 0px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; justify-content: center; left: 124px; overflow: visible; padding: 0px; position: absolute; top: 0px; width: 64px; z-index: 1; }\",\".framer-PQAjc .framer-qldxwz { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: center; overflow: visible; padding: 24px; position: relative; width: 50%; }\",\".framer-PQAjc .framer-q8w92v { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; overflow: visible; padding: 0px 0px 40px 0px; position: relative; width: 100%; }\",\".framer-PQAjc .framer-hhvzrx, .framer-PQAjc .framer-1eqc3m { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-PQAjc .framer-xlxyue { flex: none; height: 320px; position: relative; width: 100%; }\",\".framer-PQAjc.framer-v-1xy6ikf .framer-ewiyvj, .framer-PQAjc.framer-v-11m2mui .framer-ewiyvj { left: 62px; }\",\".framer-PQAjc.framer-v-19159ac .framer-ewiyvj, .framer-PQAjc.framer-v-pacrcz .framer-ewiyvj { left: 0px; }\",\".framer-PQAjc.framer-v-1nyffk1.framer-1ong18n, .framer-PQAjc.framer-v-11m2mui.framer-1ong18n, .framer-PQAjc.framer-v-pacrcz.framer-1ong18n { align-content: center; align-items: center; flex-direction: column; gap: 40px; justify-content: center; width: 768px; }\",\".framer-PQAjc.framer-v-1nyffk1 .framer-qs3zhb, .framer-PQAjc.framer-v-11m2mui .framer-qs3zhb, .framer-PQAjc.framer-v-pacrcz .framer-qs3zhb { flex: none; gap: 32px; max-width: unset; width: 100%; }\",\".framer-PQAjc.framer-v-1nyffk1 .framer-qg03qq, .framer-PQAjc.framer-v-11m2mui .framer-qg03qq, .framer-PQAjc.framer-v-pacrcz .framer-qg03qq { max-width: 400px; }\",\".framer-PQAjc.framer-v-1nyffk1 .framer-qldxwz, .framer-PQAjc.framer-v-11m2mui .framer-qldxwz, .framer-PQAjc.framer-v-pacrcz .framer-qldxwz { width: 100%; }\",...sharedStyle.css,...sharedStyle1.css,...sharedStyle2.css,...sharedStyle3.css,'.framer-PQAjc[data-border=\"true\"]::after, .framer-PQAjc [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; }'];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 580\n * @framerIntrinsicWidth 1224\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"MIyzHCJmC\":{\"layout\":[\"fixed\",\"auto\"]},\"DkvYV84vi\":{\"layout\":[\"fixed\",\"auto\"]},\"Ghf2DcOrx\":{\"layout\":[\"fixed\",\"auto\"]},\"QU_fY60WS\":{\"layout\":[\"fixed\",\"auto\"]},\"qtgRZihtm\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerAutoSizeImages true\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n */const FramerbAyWlSCA4=withCSS(Component,css,\"framer-PQAjc\");export default FramerbAyWlSCA4;FramerbAyWlSCA4.displayName=\"Faq/Faq Tab\";FramerbAyWlSCA4.defaultProps={height:580,width:1224};addPropertyControls(FramerbAyWlSCA4,{variant:{options:[\"XgmZCwaTO\",\"MIyzHCJmC\",\"DkvYV84vi\",\"Ghf2DcOrx\",\"QU_fY60WS\",\"qtgRZihtm\"],optionTitles:[\"Desktop 1\",\"Desktop 2\",\"Desktop 3\",\"Tablet 1\",\"Tablet 2\",\"Tablet 3\"],title:\"Variant\",type:ControlType.Enum}});addFonts(FramerbAyWlSCA4,[{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\"}]},...TagTagFonts,...FaqFaqListFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts),...getFontsFromSharedStyle(sharedStyle2.fonts),...getFontsFromSharedStyle(sharedStyle3.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerbAyWlSCA4\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\",\"framerDisplayContentsDiv\":\"false\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"MIyzHCJmC\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"DkvYV84vi\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"Ghf2DcOrx\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"QU_fY60WS\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"qtgRZihtm\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerAutoSizeImages\":\"true\",\"framerIntrinsicWidth\":\"1224\",\"framerColorSyntax\":\"true\",\"framerIntrinsicHeight\":\"580\",\"framerComponentViewportWidth\":\"true\",\"framerImmutableVariables\":\"true\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./bAyWlSCA4.map", "// Generated by Framer (662ecd5)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,getFontsFromSharedStyle,RichText,SmartComponentScopedContainer,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import AnimatedCounter from\"https://framerusercontent.com/modules/sIxZFVxIOBdfeANYhkj2/uDvKUYsz9rb9t5rJDlma/AnimatedCounter.js\";import*as sharedStyle1 from\"https://framerusercontent.com/modules/lONu2yrLHmmyX3u78UnC/bu83vzcj3XcDFrHTLegO/ky1z07apG.js\";import*as sharedStyle2 from\"https://framerusercontent.com/modules/qEKJXP5WVXIZPWHcHoO5/GQtIMTUBirlF28MP3ebq/lZkDQNdBs.js\";import*as sharedStyle from\"https://framerusercontent.com/modules/p3YrlUbjZal6NynbpM1X/GY1bbycBmjl7a97H8SDa/zZDiT_kLU.js\";const AnimatedCounterFonts=getFonts(AnimatedCounter);const cycleOrder=[\"Dcg4bFdeg\",\"nHfIcsz5F\"];const serializationHash=\"framer-Yv8eZ\";const variantClassNames={Dcg4bFdeg:\"framer-v-18575x2\",nHfIcsz5F:\"framer-v-1k6r7ka\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const numberToPixelString=value=>{if(typeof value!==\"number\")return value;if(!Number.isFinite(value))return undefined;return Math.max(0,value)+\"px\";};const transition1={bounce:.2,delay:0,duration:.4,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={\"Variant 2\":\"nHfIcsz5F\",Desktop:\"Dcg4bFdeg\"};const getProps=({counter,gap,height,id,prefix,prefixTitle,sifix,sufixTitle,text,title,width,...props})=>{return{...props,eghG6vbzL:prefix??props.eghG6vbzL??true,EHDWUdu3E:gap??props.EHDWUdu3E??72,GINVQ82ra:prefixTitle??props.GINVQ82ra??\"%\",iRNbVrgie:text??props.iRNbVrgie??\"Unlock the full potential of your finances with FinFlow\",OCxqQQLue:title??props.OCxqQQLue??\"Results That Matter\",pLMEFe2Ez:sufixTitle??props.pLMEFe2Ez??\"%\",v8nvzLGQn:sifix??props.v8nvzLGQn??true,variant:humanReadableVariantMap[props.variant]??props.variant??\"Dcg4bFdeg\",xaBQLvUYP:counter??props.xaBQLvUYP??95};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const fallbackRef=useRef(null);const refBinding=ref??fallbackRef;const defaultLayoutId=React.useId();const{activeLocale,setLocale}=useLocaleInfo();const componentViewport=useComponentViewport();const{style,className,layoutId,variant,xaBQLvUYP,OCxqQQLue,iRNbVrgie,EHDWUdu3E,v8nvzLGQn,pLMEFe2Ez,eghG6vbzL,GINVQ82ra,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"Dcg4bFdeg\",ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className,sharedStyle2.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(motion.div,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-18575x2\",className,classNames),\"data-border\":true,\"data-framer-name\":\"Desktop\",layoutDependency:layoutDependency,layoutId:\"Dcg4bFdeg\",ref:refBinding,style:{\"--1ftujlq\":numberToPixelString(EHDWUdu3E),\"--border-bottom-width\":\"1px\",\"--border-color\":\"rgba(255, 255, 255, 0.1)\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",background:\"linear-gradient(180deg, var(--token-8c4d7fa6-8e25-44e1-ad38-c3ce79c5badc, rgb(14, 15, 17)) 16%, rgba(255, 255, 255, 0.15) 181%)\",borderBottomLeftRadius:16,borderBottomRightRadius:16,borderTopLeftRadius:16,borderTopRightRadius:16,...style},...addPropertyOverrides({nHfIcsz5F:{\"data-framer-name\":\"Variant 2\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-cb26t5\",\"data-framer-name\":\"Counter \",layoutDependency:layoutDependency,layoutId:\"hT6JSfo40\",children:[eghG6vbzL&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h2,{className:\"framer-styles-preset-16vi7cr\",\"data-styles-preset\":\"zZDiT_kLU\",style:{\"--framer-text-color\":\"var(--extracted-1of0zx5, var(--token-a7d7b8ee-5d8b-4580-87eb-5f9cf604cfc2, rgb(255, 255, 255)))\"},children:\"%\"})}),className:\"framer-1g7fj90\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"kWzQi741h\",style:{\"--extracted-1of0zx5\":\"var(--token-a7d7b8ee-5d8b-4580-87eb-5f9cf604cfc2, rgb(255, 255, 255))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},text:GINVQ82ra,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-nwrzkl-container\",isAuthoredByUser:true,isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"wzdntCe8P-container\",nodeId:\"wzdntCe8P\",rendersWithMotion:true,scopeId:\"jqYhY69Ba\",children:/*#__PURE__*/_jsx(AnimatedCounter,{animationType:\"smooth\",color:\"var(--token-a7d7b8ee-5d8b-4580-87eb-5f9cf604cfc2, rgb(255, 255, 255))\",decimalPlaces:0,decimalSeparator:\".\",duration:2.5,font:{fontFamily:'\"Funnel Display\", sans-serif',fontSize:\"56px\",fontStyle:\"normal\",fontWeight:400,letterSpacing:\"-3px\",lineHeight:\"1.2em\"},from:0,height:\"100%\",id:\"wzdntCe8P\",layoutId:\"wzdntCe8P\",once:true,playOnLoad:true,to:xaBQLvUYP,width:\"100%\"})})}),v8nvzLGQn&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h2,{className:\"framer-styles-preset-16vi7cr\",\"data-styles-preset\":\"zZDiT_kLU\",style:{\"--framer-text-color\":\"var(--extracted-1of0zx5, var(--token-a7d7b8ee-5d8b-4580-87eb-5f9cf604cfc2, rgb(255, 255, 255)))\"},children:\"%\"})}),className:\"framer-kx9tg4\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"tgMOSLBSl\",style:{\"--extracted-1of0zx5\":\"var(--token-a7d7b8ee-5d8b-4580-87eb-5f9cf604cfc2, rgb(255, 255, 255))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},text:pLMEFe2Ez,verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-2jl6vr\",\"data-framer-name\":\"Title\",layoutDependency:layoutDependency,layoutId:\"UJTGvtDLq\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h4,{className:\"framer-styles-preset-nidioi\",\"data-styles-preset\":\"ky1z07apG\",style:{\"--framer-text-color\":\"var(--extracted-1eung3n, var(--token-a7d7b8ee-5d8b-4580-87eb-5f9cf604cfc2, rgb(255, 255, 255)))\"},children:\"Results That Matter\"})}),className:\"framer-qqo3gz\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"gZ2lSPNxV\",style:{\"--extracted-1eung3n\":\"var(--token-a7d7b8ee-5d8b-4580-87eb-5f9cf604cfc2, rgb(255, 255, 255))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\",opacity:.9},text:OCxqQQLue,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1ivccl1\",\"data-styles-preset\":\"lZkDQNdBs\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-a7d7b8ee-5d8b-4580-87eb-5f9cf604cfc2, rgb(255, 255, 255)))\"},children:\"Unlock the full potential of your finances with FinFlow\"})}),className:\"framer-1mebb46\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"We59FRqRr\",style:{\"--extracted-r6o4lv\":\"var(--token-a7d7b8ee-5d8b-4580-87eb-5f9cf604cfc2, rgb(255, 255, 255))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\",opacity:.7},text:iRNbVrgie,verticalAlignment:\"top\",withExternalLayout:true})]})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-Yv8eZ.framer-d21ws2, .framer-Yv8eZ .framer-d21ws2 { display: block; }\",\".framer-Yv8eZ.framer-18575x2 { align-content: flex-start; align-items: flex-start; display: flex; flex-direction: column; flex-wrap: nowrap; gap: var(--1ftujlq); height: min-content; justify-content: center; overflow: hidden; padding: 32px 24px 32px 24px; position: relative; width: 288px; will-change: var(--framer-will-change-override, transform); }\",\".framer-Yv8eZ .framer-cb26t5 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 5px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-Yv8eZ .framer-1g7fj90, .framer-Yv8eZ .framer-kx9tg4 { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-Yv8eZ .framer-nwrzkl-container { flex: none; height: auto; position: relative; width: auto; }\",\".framer-Yv8eZ .framer-2jl6vr { 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: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-Yv8eZ .framer-qqo3gz, .framer-Yv8eZ .framer-1mebb46 { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",...sharedStyle.css,...sharedStyle1.css,...sharedStyle2.css,'.framer-Yv8eZ[data-border=\"true\"]::after, .framer-Yv8eZ [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; }'];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 346.5\n * @framerIntrinsicWidth 288\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"nHfIcsz5F\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerVariables {\"xaBQLvUYP\":\"counter\",\"OCxqQQLue\":\"title\",\"iRNbVrgie\":\"text\",\"EHDWUdu3E\":\"gap\",\"v8nvzLGQn\":\"sifix\",\"pLMEFe2Ez\":\"sufixTitle\",\"eghG6vbzL\":\"prefix\",\"GINVQ82ra\":\"prefixTitle\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerAutoSizeImages true\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n */const FramerjqYhY69Ba=withCSS(Component,css,\"framer-Yv8eZ\");export default FramerjqYhY69Ba;FramerjqYhY69Ba.displayName=\"Cards/Statistics Card\";FramerjqYhY69Ba.defaultProps={height:346.5,width:288};addPropertyControls(FramerjqYhY69Ba,{variant:{options:[\"Dcg4bFdeg\",\"nHfIcsz5F\"],optionTitles:[\"Desktop\",\"Variant 2\"],title:\"Variant\",type:ControlType.Enum},xaBQLvUYP:{defaultValue:95,displayStepper:true,min:0,step:.1,title:\"Counter\",type:ControlType.Number},OCxqQQLue:{defaultValue:\"Results That Matter\",displayTextArea:false,title:\"Title\",type:ControlType.String},iRNbVrgie:{defaultValue:\"Unlock the full potential of your finances with FinFlow\",displayTextArea:false,title:\"Text\",type:ControlType.String},EHDWUdu3E:{defaultValue:72,min:0,title:\"Gap\",type:ControlType.Number},v8nvzLGQn:{defaultValue:true,title:\"Sifix\",type:ControlType.Boolean},pLMEFe2Ez:{defaultValue:\"%\",displayTextArea:false,title:\"Sufix title\",type:ControlType.String},eghG6vbzL:{defaultValue:true,title:\"Prefix\",type:ControlType.Boolean},GINVQ82ra:{defaultValue:\"%\",displayTextArea:false,title:\"Prefix title\",type:ControlType.String}});addFonts(FramerjqYhY69Ba,[{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:\"Funnel Display\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/funneldisplay/v2/B50bF7FGv37QNVWgE0ga--4PbZSRJXrOHcLHLoAYmmPXXcVwIZDKFA.woff2\",weight:\"400\"}]},...AnimatedCounterFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts),...getFontsFromSharedStyle(sharedStyle2.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerjqYhY69Ba\",\"slots\":[],\"annotations\":{\"framerDisplayContentsDiv\":\"false\",\"framerIntrinsicHeight\":\"346.5\",\"framerImmutableVariables\":\"true\",\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicWidth\":\"288\",\"framerContractVersion\":\"1\",\"framerAutoSizeImages\":\"true\",\"framerColorSyntax\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"nHfIcsz5F\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerVariables\":\"{\\\"xaBQLvUYP\\\":\\\"counter\\\",\\\"OCxqQQLue\\\":\\\"title\\\",\\\"iRNbVrgie\\\":\\\"text\\\",\\\"EHDWUdu3E\\\":\\\"gap\\\",\\\"v8nvzLGQn\\\":\\\"sifix\\\",\\\"pLMEFe2Ez\\\":\\\"sufixTitle\\\",\\\"eghG6vbzL\\\":\\\"prefix\\\",\\\"GINVQ82ra\\\":\\\"prefixTitle\\\"}\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./jqYhY69Ba.map", "// Generated by Framer (5da54f8)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,ComponentViewportProvider,Container,cx,GeneratedComponentContext,getFonts,getFontsFromSharedStyle,getLoadingLazyAtYPosition,Image,PropertyOverrides,ResolveLinks,RichText,useComponentViewport,useCustomCursors,useHydratedBreakpointVariants,useIsOnFramerCanvas,useLocaleInfo,useMetadata,useRouteElementId,useRouter,withCSS,withFX,withOptimizedAppearEffect,withVariantAppearEffect}from\"framer\";import{LayoutGroup,motion}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import{Video}from\"https://framerusercontent.com/modules/lRDHiNWNVWmE0lqtoVHP/7qT0r3So12155VV5Jq5x/Video.js\";import FaqFaqTab from\"#framer/local/canvasComponent/bAyWlSCA4/bAyWlSCA4.js\";import MenuHeader from\"#framer/local/canvasComponent/BXeT0wClp/BXeT0wClp.js\";import Cta from\"#framer/local/canvasComponent/HCim3dpKo/HCim3dpKo.js\";import ButtonButton from\"#framer/local/canvasComponent/j5tzs8Ev6/j5tzs8Ev6.js\";import CardsStatisticsCard from\"#framer/local/canvasComponent/jqYhY69Ba/jqYhY69Ba.js\";import TagTag from\"#framer/local/canvasComponent/KelSkUejH/KelSkUejH.js\";import CardsFeatureCard from\"#framer/local/canvasComponent/m2r5qx9hk/m2r5qx9hk.js\";import Footer from\"#framer/local/canvasComponent/sF4dGHpjt/sF4dGHpjt.js\";import*as sharedStyle4 from\"#framer/local/css/lZkDQNdBs/lZkDQNdBs.js\";import*as sharedStyle from\"#framer/local/css/OnKIuYAGY/OnKIuYAGY.js\";import*as sharedStyle1 from\"#framer/local/css/RudqTrEg8/RudqTrEg8.js\";import*as sharedStyle2 from\"#framer/local/css/XjL0ROsit/XjL0ROsit.js\";import*as sharedStyle3 from\"#framer/local/css/zZDiT_kLU/zZDiT_kLU.js\";import metadataProvider from\"#framer/local/webPageMetadata/augiA20Il/augiA20Il.js\";const MenuHeaderFonts=getFonts(MenuHeader);const MenuHeaderWithVariantAppearEffect=withVariantAppearEffect(MenuHeader);const ButtonButtonFonts=getFonts(ButtonButton);const MotionDivWithFX=withFX(motion.div);const VideoFonts=getFonts(Video);const TagTagFonts=getFonts(TagTag);const CardsFeatureCardFonts=getFonts(CardsFeatureCard);const MotionDivWithOptimizedAppearEffect=withOptimizedAppearEffect(motion.div);const CardsStatisticsCardFonts=getFonts(CardsStatisticsCard);const FaqFaqTabFonts=getFonts(FaqFaqTab);const CtaFonts=getFonts(Cta);const FooterFonts=getFonts(Footer);const breakpoints={A6srqD0Fs:\"(min-width: 768px) and (max-width: 1439px)\",U9pMa4I30:\"(max-width: 767px)\",WQLkyLRf1:\"(min-width: 1440px)\"};const isBrowser=()=>typeof document!==\"undefined\";const serializationHash=\"framer-Ah1Vx\";const variantClassNames={A6srqD0Fs:\"framer-v-olcxci\",U9pMa4I30:\"framer-v-6pjej9\",WQLkyLRf1:\"framer-v-72rtr7\"};const animation={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:50};const transition1={damping:60,delay:0,mass:1,stiffness:400,type:\"spring\"};const animation1={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition1,x:0,y:0};const animation2={opacity:.001,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:50};const addImageAlt=(image,alt)=>{if(!image||typeof image!==\"object\"){return;}return{...image,alt};};const HTMLStyle=({value})=>{const onCanvas=useIsOnFramerCanvas();if(onCanvas)return null;return /*#__PURE__*/_jsx(\"style\",{dangerouslySetInnerHTML:{__html:value},\"data-framer-html-style\":\"\"});};const humanReadableVariantMap={Desktop:\"WQLkyLRf1\",Phone:\"U9pMa4I30\",Tablet:\"A6srqD0Fs\"};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);const metadata=React.useMemo(()=>metadataProvider(undefined,activeLocale),[undefined,activeLocale]);useMetadata(metadata);const[baseVariant,hydratedBaseVariant]=useHydratedBreakpointVariants(variant,breakpoints,false);const gestureVariant=undefined;const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className,sharedStyle2.className,sharedStyle3.className,sharedStyle4.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const ref1=React.useRef(null);const elementId=useRouteElementId(\"FJfyGTk5F\");const router=useRouter();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-8c4d7fa6-8e25-44e1-ad38-c3ce79c5badc, rgb(14, 15, 17)); }\"}),/*#__PURE__*/_jsxs(motion.div,{...restProps,className:cx(scopingClassNames,\"framer-72rtr7\",className),ref:refBinding,style:{...style},children:[/*#__PURE__*/_jsx(\"header\",{className:\"framer-pw2m6\",\"data-framer-name\":\"Header Wrapper\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{U9pMa4I30:{width:\"min(100vw, 390px)\",y:0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:87,width:`min(${componentViewport?.width||\"100vw\"} - 60px, 1224px)`,y:(componentViewport?.y||0)+0+0+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-o8yl55-container\",nodeId:\"aA9gydb1J\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{A6srqD0Fs:{variant:\"qKyPwtSt4\"},U9pMa4I30:{__framer__animateOnce:false,__framer__targets:[{ref:ref1,target:\"zzCSZo8x1\"}],__framer__threshold:0,__framer__variantAppearEffectEnabled:true,variant:\"D2D2yoDEx\"}},children:/*#__PURE__*/_jsx(MenuHeaderWithVariantAppearEffect,{height:\"100%\",id:\"aA9gydb1J\",layoutId:\"aA9gydb1J\",style:{maxWidth:\"100%\",width:\"100%\"},variant:\"newjZHqBf\",width:\"100%\"})})})})})}),/*#__PURE__*/_jsxs(\"section\",{className:\"framer-1mdcrzs\",\"data-framer-name\":\"Hero\",children:[/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-o1x689\",\"data-framer-name\":\"Container\",id:elementId,ref:ref1,children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-4byzts\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-79ozm5\",\"data-framer-name\":\"Title\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{U9pMa4I30:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{className:\"framer-styles-preset-17nag7b\",\"data-styles-preset\":\"OnKIuYAGY\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-a7d7b8ee-5d8b-4580-87eb-5f9cf604cfc2, rgb(255, 255, 255))\"},children:\"Powerful Insight\\xa0 Beyond\\xa0Sight\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{className:\"framer-styles-preset-17nag7b\",\"data-styles-preset\":\"OnKIuYAGY\",style:{\"--framer-text-color\":\"var(--token-a7d7b8ee-5d8b-4580-87eb-5f9cf604cfc2, rgb(255, 255, 255))\"},children:\"Powerful Insight\\xa0 Beyond\\xa0Sight\"})}),className:\"framer-11srlc5\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{U9pMa4I30:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1hrujst\",\"data-styles-preset\":\"XjL0ROsit\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-a7d7b8ee-5d8b-4580-87eb-5f9cf604cfc2, rgb(255, 255, 255))\"},children:\"Unlock Valuable Insights with Al-driven video analytics and predictive solutions using your existing cameras\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1n4482o\",\"data-styles-preset\":\"RudqTrEg8\",style:{\"--framer-text-color\":\"var(--token-a7d7b8ee-5d8b-4580-87eb-5f9cf604cfc2, rgb(255, 255, 255))\"},children:\"Unlock Valuable Insights with Al-driven video analytics and predictive solutions using your existing cameras\"})}),className:\"framer-11siskn\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-29oein\",\"data-framer-name\":\"Button Wrapper\",children:/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"uSKFv4K6Y\"},implicitPathVariables:undefined},{href:{webPageId:\"uSKFv4K6Y\"},implicitPathVariables:undefined},{href:{webPageId:\"uSKFv4K6Y\"},implicitPathVariables:undefined}],children:resolvedLinks=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{A6srqD0Fs:{y:(componentViewport?.y||0)+0+0+170+0+0+356.2+0},U9pMa4I30:{y:(componentViewport?.y||0)+0+0+100+0+0+312.2+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:49,y:(componentViewport?.y||0)+0+0+250+0+0+356.2+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-n6tnbt-container\",nodeId:\"RW97ODHDU\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{A6srqD0Fs:{yM09ip1dJ:resolvedLinks[1]},U9pMa4I30:{yM09ip1dJ:resolvedLinks[2]}},children:/*#__PURE__*/_jsx(ButtonButton,{height:\"100%\",id:\"RW97ODHDU\",layoutId:\"RW97ODHDU\",variant:\"FVH9I4WgD\",width:\"100%\",ylVlgUgjr:\"Book a Demo\",yM09ip1dJ:resolvedLinks[0]})})})})})})})]})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-i202kd\",\"data-framer-name\":\"Linear Color\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-us0xem-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"MVb0usPsU\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Video,{backgroundColor:\"rgba(0, 0, 0, 0)\",borderRadius:0,bottomLeftRadius:0,bottomRightRadius:0,controls:false,height:\"100%\",id:\"MVb0usPsU\",isMixedBorderRadius:false,layoutId:\"MVb0usPsU\",loop:true,muted:true,objectFit:\"cover\",playing:true,posterEnabled:true,srcFile:\"https://framerusercontent.com/assets/ihX4wBkWYi1fNXtpcCHnGovHkY.mov\",srcType:\"Upload\",srcUrl:\"https://framerusercontent.com/assets/MLWPbW1dUQawJLhhun3dBwpgJak.mp4\",startTime:0,style:{height:\"100%\",width:\"100%\"},topLeftRadius:0,topRightRadius:0,volume:25,width:\"100%\"})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-auseit\"}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{A6srqD0Fs:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+655.2-655.2),pixelHeight:1198,pixelWidth:2403,sizes:componentViewport?.width||\"100vw\",src:\"https://framerusercontent.com/images/yjplXEafwoFwg8taXJHxPizesG8.png\",srcSet:\"https://framerusercontent.com/images/yjplXEafwoFwg8taXJHxPizesG8.png?scale-down-to=512 512w,https://framerusercontent.com/images/yjplXEafwoFwg8taXJHxPizesG8.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/yjplXEafwoFwg8taXJHxPizesG8.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/yjplXEafwoFwg8taXJHxPizesG8.png 2403w\"}},U9pMa4I30:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+521.2-521.2),pixelHeight:1198,pixelWidth:2403,sizes:componentViewport?.width||\"100vw\",src:\"https://framerusercontent.com/images/yjplXEafwoFwg8taXJHxPizesG8.png\",srcSet:\"https://framerusercontent.com/images/yjplXEafwoFwg8taXJHxPizesG8.png?scale-down-to=512 512w,https://framerusercontent.com/images/yjplXEafwoFwg8taXJHxPizesG8.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/yjplXEafwoFwg8taXJHxPizesG8.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/yjplXEafwoFwg8taXJHxPizesG8.png 2403w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+715.2-715.2),pixelHeight:1198,pixelWidth:2403,sizes:componentViewport?.width||\"100vw\",src:\"https://framerusercontent.com/images/yjplXEafwoFwg8taXJHxPizesG8.png\",srcSet:\"https://framerusercontent.com/images/yjplXEafwoFwg8taXJHxPizesG8.png?scale-down-to=512 512w,https://framerusercontent.com/images/yjplXEafwoFwg8taXJHxPizesG8.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/yjplXEafwoFwg8taXJHxPizesG8.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/yjplXEafwoFwg8taXJHxPizesG8.png 2403w\"},className:\"framer-g20z3u\"})})]})]}),/*#__PURE__*/_jsx(\"section\",{className:\"framer-a9f333\",\"data-framer-name\":\"Features Section\",children:/*#__PURE__*/_jsxs(MotionDivWithOptimizedAppearEffect,{animate:animation1,className:\"framer-1wssrpm\",\"data-framer-appear-id\":\"1wssrpm\",\"data-framer-name\":\"Container\",initial:animation2,optimized:true,children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-pykb4l\",\"data-framer-name\":\"Title\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{A6srqD0Fs:{y:(componentViewport?.y||0)+0+655.2+80+0+0+0+0+0},U9pMa4I30:{y:(componentViewport?.y||0)+0+521.2+60+0+0+0+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:27,y:(componentViewport?.y||0)+0+715.2+60+0+0+0+0+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-19dvj76-container\",nodeId:\"w_aXVMYme\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(TagTag,{height:\"100%\",id:\"w_aXVMYme\",layoutId:\"w_aXVMYme\",width:\"100%\",ZUR9eX7lQ:\"Key Features\"})})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-16vi7cr\",\"data-styles-preset\":\"zZDiT_kLU\",style:{\"--framer-text-color\":\"var(--token-a7d7b8ee-5d8b-4580-87eb-5f9cf604cfc2, rgb(255, 255, 255))\"},children:\"Go Beyond Simple Video Surveillance\"})}),className:\"framer-lvnpxu\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-t64jc4\",\"data-framer-name\":\"Feature Card Wrapper\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{A6srqD0Fs:{width:`max((min(${componentViewport?.width||\"100vw\"} - 60px, 768px) - 56px) / 2, 50px)`,y:(componentViewport?.y||0)+0+655.2+80+0+0+160.2+0+0},U9pMa4I30:{width:`min(${componentViewport?.width||\"100vw\"} - 40px, 390px)`,y:(componentViewport?.y||0)+0+521.2+60+0+0+150.2+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:220,width:`max((min(${componentViewport?.width||\"100vw\"} - 60px, 1224px) - 216px) / 4, 50px)`,y:(componentViewport?.y||0)+0+715.2+60+0+0+190.2+0+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1acbnpm-container\",nodeId:\"QWmkYZvHy\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{U9pMa4I30:{variant:\"n_IIqWwX_\"}},children:/*#__PURE__*/_jsx(CardsFeatureCard,{dHkvwDwAr:\"Leverage your existing cameras to gain deep operational insights\",height:\"100%\",id:\"QWmkYZvHy\",layoutId:\"QWmkYZvHy\",O004gdbNX:\"AI Analytics\",r57D_VpAm:addImageAlt({pixelHeight:512,pixelWidth:512,src:\"https://framerusercontent.com/images/NsSXei7kENlyFCvyT4Yn8BtllcM.png\"},\"Icon\"),style:{width:\"100%\"},variant:\"QZHhyVZgA\",width:\"100%\"})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{A6srqD0Fs:{width:`max((min(${componentViewport?.width||\"100vw\"} - 60px, 768px) - 56px) / 2, 50px)`,y:(componentViewport?.y||0)+0+655.2+80+0+0+160.2+0+0},U9pMa4I30:{width:`min(${componentViewport?.width||\"100vw\"} - 40px, 390px)`,y:(componentViewport?.y||0)+0+521.2+60+0+0+150.2+0+268}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:220,width:`max((min(${componentViewport?.width||\"100vw\"} - 60px, 1224px) - 216px) / 4, 50px)`,y:(componentViewport?.y||0)+0+715.2+60+0+0+190.2+0+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-2u1u7e-container\",nodeId:\"SjcGJBIN9\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{U9pMa4I30:{variant:\"n_IIqWwX_\"}},children:/*#__PURE__*/_jsx(CardsFeatureCard,{dHkvwDwAr:\"From foot traffic trends to loitering patterns, our AI evolves with your environment to reduce false alerts and improve accuracy\",height:\"100%\",id:\"SjcGJBIN9\",layoutId:\"SjcGJBIN9\",O004gdbNX:\"Continuous Learning\",r57D_VpAm:addImageAlt({pixelHeight:512,pixelWidth:512,src:\"https://framerusercontent.com/images/YPSJWWGph9NgQbmYTmct7NqN5BA.png\"},\"Icon\"),style:{width:\"100%\"},variant:\"QZHhyVZgA\",width:\"100%\"})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{A6srqD0Fs:{width:`max((min(${componentViewport?.width||\"100vw\"} - 60px, 768px) - 56px) / 2, 50px)`,y:(componentViewport?.y||0)+0+655.2+80+0+0+160.2+0+276},U9pMa4I30:{width:`min(${componentViewport?.width||\"100vw\"} - 40px, 390px)`,y:(componentViewport?.y||0)+0+521.2+60+0+0+150.2+0+536}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:220,width:`max((min(${componentViewport?.width||\"100vw\"} - 60px, 1224px) - 216px) / 4, 50px)`,y:(componentViewport?.y||0)+0+715.2+60+0+0+190.2+0+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-jcrfjg-container\",nodeId:\"FMMpMDA1S\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{U9pMa4I30:{variant:\"n_IIqWwX_\"}},children:/*#__PURE__*/_jsx(CardsFeatureCard,{dHkvwDwAr:\"No need for new hardware \u2014 get advanced video analytics using the infrastructure you already have\",height:\"100%\",id:\"FMMpMDA1S\",layoutId:\"FMMpMDA1S\",O004gdbNX:\"Plug & Play Deployment\",r57D_VpAm:addImageAlt({pixelHeight:512,pixelWidth:512,src:\"https://framerusercontent.com/images/Y6TS1DYUugCvqXu5b8Y1Hl85ufE.png\"},\"Icon\"),style:{width:\"100%\"},variant:\"QZHhyVZgA\",width:\"100%\"})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{A6srqD0Fs:{width:`max((min(${componentViewport?.width||\"100vw\"} - 60px, 768px) - 56px) / 2, 50px)`,y:(componentViewport?.y||0)+0+655.2+80+0+0+160.2+0+276},U9pMa4I30:{width:`min(${componentViewport?.width||\"100vw\"} - 40px, 390px)`,y:(componentViewport?.y||0)+0+521.2+60+0+0+150.2+0+804}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:220,width:`max((min(${componentViewport?.width||\"100vw\"} - 60px, 1224px) - 216px) / 4, 50px)`,y:(componentViewport?.y||0)+0+715.2+60+0+0+190.2+0+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-cmxl1w-container\",nodeId:\"u9S6uKzbP\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{U9pMa4I30:{variant:\"n_IIqWwX_\"}},children:/*#__PURE__*/_jsx(CardsFeatureCard,{dHkvwDwAr:\"By default, our AI protects privacy by focusing on movement, behavior, and intent\",height:\"100%\",id:\"u9S6uKzbP\",layoutId:\"u9S6uKzbP\",O004gdbNX:\"Privacy-First Threat Detection\",r57D_VpAm:addImageAlt({pixelHeight:512,pixelWidth:512,src:\"https://framerusercontent.com/images/wDcbTDEPzLdyy3xKSn5UUb2n1Q.png\"},\"Icon\"),style:{width:\"100%\"},variant:\"QZHhyVZgA\",width:\"100%\"})})})})})]})]})}),/*#__PURE__*/_jsx(\"section\",{className:\"framer-1ult1pj\",\"data-framer-name\":\"About Section\",children:/*#__PURE__*/_jsxs(MotionDivWithOptimizedAppearEffect,{animate:animation1,className:\"framer-fymz7v\",\"data-framer-appear-id\":\"fymz7v\",\"data-framer-name\":\"Container\",initial:animation2,optimized:true,children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1px8s18\",\"data-framer-name\":\"Image Wrapper\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{A6srqD0Fs:{background:{alt:\"About Image\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1391.4+80+0+0+0+46.5),pixelHeight:930,pixelWidth:992,sizes:\"619px\",src:\"https://framerusercontent.com/images/hnfL6ChaDmy4jrqFfFigTi4ElgE.png\",srcSet:\"https://framerusercontent.com/images/hnfL6ChaDmy4jrqFfFigTi4ElgE.png?scale-down-to=512 512w,https://framerusercontent.com/images/hnfL6ChaDmy4jrqFfFigTi4ElgE.png 992w\"}},U9pMa4I30:{background:{alt:\"About Image\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1755.4+60+0+0+0+57),pixelHeight:930,pixelWidth:992,sizes:\"301px\",src:\"https://framerusercontent.com/images/hnfL6ChaDmy4jrqFfFigTi4ElgE.png\",srcSet:\"https://framerusercontent.com/images/hnfL6ChaDmy4jrqFfFigTi4ElgE.png?scale-down-to=512 512w,https://framerusercontent.com/images/hnfL6ChaDmy4jrqFfFigTi4ElgE.png 992w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"About Image\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1185.4+120+0+0+51),pixelHeight:930,pixelWidth:992,sizes:`max(min(${componentViewport?.width||\"100vw\"} - 60px, 1224px) * 0.52 - 114px, 1px)`,src:\"https://framerusercontent.com/images/hnfL6ChaDmy4jrqFfFigTi4ElgE.png\",srcSet:\"https://framerusercontent.com/images/hnfL6ChaDmy4jrqFfFigTi4ElgE.png?scale-down-to=512 512w,https://framerusercontent.com/images/hnfL6ChaDmy4jrqFfFigTi4ElgE.png 992w\"},className:\"framer-17cmaqc\"})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1bhv3yx\",\"data-framer-name\":\"BG\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1iyywz0\",\"data-framer-name\":\"Linear Color\"}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{A6srqD0Fs:{background:{alt:\"Background Image\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1391.4+80+0+0+0+0+0),pixelHeight:1731,pixelWidth:1872,positionX:\"center\",positionY:\"top\",sizes:`min(${componentViewport?.width||\"100vw\"} - 60px, 768px)`,src:\"https://framerusercontent.com/images/n1WCDyOvyqYUVfCV9nA6HESj8s.png\",srcSet:\"https://framerusercontent.com/images/n1WCDyOvyqYUVfCV9nA6HESj8s.png?scale-down-to=512 512w,https://framerusercontent.com/images/n1WCDyOvyqYUVfCV9nA6HESj8s.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/n1WCDyOvyqYUVfCV9nA6HESj8s.png 1872w\"}},U9pMa4I30:{background:{alt:\"Background Image\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1755.4+60+0+0+0+0+0),pixelHeight:1731,pixelWidth:1872,positionX:\"center\",positionY:\"top\",sizes:`min(${componentViewport?.width||\"100vw\"} - 40px, 390px)`,src:\"https://framerusercontent.com/images/n1WCDyOvyqYUVfCV9nA6HESj8s.png\",srcSet:\"https://framerusercontent.com/images/n1WCDyOvyqYUVfCV9nA6HESj8s.png?scale-down-to=512 512w,https://framerusercontent.com/images/n1WCDyOvyqYUVfCV9nA6HESj8s.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/n1WCDyOvyqYUVfCV9nA6HESj8s.png 1872w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"Background Image\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1185.4+120+0+0+0+0),pixelHeight:1731,pixelWidth:1872,positionX:\"center\",positionY:\"top\",sizes:`calc(min(${componentViewport?.width||\"100vw\"} - 60px, 1224px) * 0.52)`,src:\"https://framerusercontent.com/images/n1WCDyOvyqYUVfCV9nA6HESj8s.png\",srcSet:\"https://framerusercontent.com/images/n1WCDyOvyqYUVfCV9nA6HESj8s.png?scale-down-to=512 512w,https://framerusercontent.com/images/n1WCDyOvyqYUVfCV9nA6HESj8s.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/n1WCDyOvyqYUVfCV9nA6HESj8s.png 1872w\"},className:\"framer-g64eaa\",\"data-framer-name\":\"Bg Image\"})})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-nhqwo6\",\"data-framer-name\":\"Content Wrapper\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1jwts5x\",\"data-framer-name\":\"About Title And Cards\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-12nou7b\",\"data-framer-name\":\"Title\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{A6srqD0Fs:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"RlM7UG9wcGlucy1yZWd1bGFy\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-size\":\"40px\",\"--framer-letter-spacing\":\"-2px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-a7d7b8ee-5d8b-4580-87eb-5f9cf604cfc2, rgb(255, 255, 255))\"},children:\"Smarter Surveillance with Multi-Camera Recognition\"})})},U9pMa4I30:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"RlM7UG9wcGlucy1yZWd1bGFy\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-size\":\"36px\",\"--framer-letter-spacing\":\"-3px\",\"--framer-text-color\":\"var(--token-a7d7b8ee-5d8b-4580-87eb-5f9cf604cfc2, rgb(255, 255, 255))\"},children:\"Smarter Surveillance with Multi-Camera Recognition\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"RlM7UG9wcGlucy1yZWd1bGFy\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-size\":\"55px\",\"--framer-letter-spacing\":\"-3px\",\"--framer-text-color\":\"var(--token-a7d7b8ee-5d8b-4580-87eb-5f9cf604cfc2, rgb(255, 255, 255))\"},children:\"Smarter Surveillance with Multi-Camera Recognition\"})}),className:\"framer-tqks6j\",fonts:[\"FS;Poppins-regular\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{A6srqD0Fs:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1ivccl1\",\"data-styles-preset\":\"lZkDQNdBs\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-a7d7b8ee-5d8b-4580-87eb-5f9cf604cfc2, rgb(255, 255, 255))\"},children:\"Our deep learning model tracks individuals across non-overlapping cameras using appearance-based features like clothing and body shape. Unlike facial recognition, it preserves privacy by avoiding biometric data, enabling accurate and ethical multi-camera surveillance.\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1ivccl1\",\"data-styles-preset\":\"lZkDQNdBs\",style:{\"--framer-text-color\":\"var(--token-a7d7b8ee-5d8b-4580-87eb-5f9cf604cfc2, rgb(255, 255, 255))\"},children:\"Our deep learning model tracks individuals across non-overlapping cameras using appearance-based features like clothing and body shape. Unlike facial recognition, it preserves privacy by avoiding biometric data, enabling accurate and ethical multi-camera surveillance.\"})}),className:\"framer-1ogobhz\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"uSKFv4K6Y\"},implicitPathVariables:undefined},{href:{webPageId:\"uSKFv4K6Y\"},implicitPathVariables:undefined},{href:{webPageId:\"uSKFv4K6Y\"},implicitPathVariables:undefined}],children:resolvedLinks1=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{A6srqD0Fs:{y:(componentViewport?.y||0)+0+1391.4+80+0+0+646+0+244},U9pMa4I30:{y:(componentViewport?.y||0)+0+1755.4+60+0+0+421+0+231.2}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:49,y:(componentViewport?.y||0)+0+1185.4+120+0+115+0+278,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1p2t1pj-container\",nodeId:\"sw0fGc74D\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{A6srqD0Fs:{yM09ip1dJ:resolvedLinks1[1]},U9pMa4I30:{yM09ip1dJ:resolvedLinks1[2]}},children:/*#__PURE__*/_jsx(ButtonButton,{height:\"100%\",id:\"sw0fGc74D\",layoutId:\"sw0fGc74D\",variant:\"FVH9I4WgD\",width:\"100%\",ylVlgUgjr:\"Book a Demo\",yM09ip1dJ:resolvedLinks1[0]})})})})})})]})]})}),/*#__PURE__*/_jsx(\"section\",{className:\"framer-19dz5hv\",\"data-framer-name\":\"Statistics Section\",children:/*#__PURE__*/_jsx(MotionDivWithOptimizedAppearEffect,{animate:animation1,className:\"framer-91ewzz\",\"data-framer-appear-id\":\"91ewzz\",\"data-framer-name\":\"Container\",initial:animation2,optimized:true,children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-nermkr\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1hbnrb9\",\"data-framer-name\":\"Title\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{A6srqD0Fs:{y:(componentViewport?.y||0)+0+2490.4+0+0+0+0+0+0+0+0},U9pMa4I30:{y:(componentViewport?.y||0)+0+2576.6+0+0+0+0+0+0+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:27,y:(componentViewport?.y||0)+0+1982.4+0+0+0+0+0+0+0+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-cg8o70-container\",nodeId:\"Rla3UkvgK\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(TagTag,{height:\"100%\",id:\"Rla3UkvgK\",layoutId:\"Rla3UkvgK\",width:\"100%\",ZUR9eX7lQ:\"Statistics\"})})})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-cmojnd\",\"data-framer-name\":\"Statistics Single Card Wrapper\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{A6srqD0Fs:{height:346.5,width:`max((min(${componentViewport?.width||\"100vw\"} - 60px, 768px) - 16px) / 2, 50px)`,y:(componentViewport?.y||0)+0+2490.4+0+0+0+0+0+77+0+0},U9pMa4I30:{width:`min(${componentViewport?.width||\"100vw\"} - 40px, 390px)`,y:(componentViewport?.y||0)+0+2576.6+0+0+0+0+0+67+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:346,width:`max((min(${componentViewport?.width||\"100vw\"} - 60px, 1224px) - 48px) / 4, 50px)`,y:(componentViewport?.y||0)+0+1982.4+0+0+0+0+0+91+0+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1aaj45b-container\",nodeId:\"rYaVBM8kf\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{U9pMa4I30:{EHDWUdu3E:32,style:{width:\"100%\"}}},children:/*#__PURE__*/_jsx(CardsStatisticsCard,{eghG6vbzL:true,EHDWUdu3E:72,GINVQ82ra:\">\",height:\"100%\",id:\"rYaVBM8kf\",iRNbVrgie:\"Leading brands use Lauretta for AI-driven insights.\",layoutId:\"rYaVBM8kf\",OCxqQQLue:\"Trusted Clients\",pLMEFe2Ez:\"%\",style:{height:\"100%\",width:\"100%\"},v8nvzLGQn:false,variant:\"Dcg4bFdeg\",width:\"100%\",xaBQLvUYP:15})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{A6srqD0Fs:{height:346.5,width:`max((min(${componentViewport?.width||\"100vw\"} - 60px, 768px) - 16px) / 2, 50px)`,y:(componentViewport?.y||0)+0+2490.4+0+0+0+0+0+77+0+0},U9pMa4I30:{width:`min(${componentViewport?.width||\"100vw\"} - 40px, 390px)`,y:(componentViewport?.y||0)+0+2576.6+0+0+0+0+0+67+0+362}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:346,width:`max((min(${componentViewport?.width||\"100vw\"} - 60px, 1224px) - 48px) / 4, 50px)`,y:(componentViewport?.y||0)+0+1982.4+0+0+0+0+0+91+0+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1qz6ld4-container\",nodeId:\"FD1d5IDB2\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{U9pMa4I30:{EHDWUdu3E:32,style:{width:\"100%\"}}},children:/*#__PURE__*/_jsx(CardsStatisticsCard,{eghG6vbzL:false,EHDWUdu3E:72,GINVQ82ra:\"%\",height:\"100%\",id:\"FD1d5IDB2\",iRNbVrgie:\"Upgraded with intelligent video analytics.\",layoutId:\"FD1d5IDB2\",OCxqQQLue:\"Cameras Powered\",pLMEFe2Ez:\"+\",style:{height:\"100%\",width:\"100%\"},v8nvzLGQn:true,variant:\"Dcg4bFdeg\",width:\"100%\",xaBQLvUYP:700})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{A6srqD0Fs:{height:346.5,width:`max((min(${componentViewport?.width||\"100vw\"} - 60px, 768px) - 16px) / 2, 50px)`,y:(componentViewport?.y||0)+0+2490.4+0+0+0+0+0+77+0+362.5},U9pMa4I30:{width:`min(${componentViewport?.width||\"100vw\"} - 40px, 390px)`,y:(componentViewport?.y||0)+0+2576.6+0+0+0+0+0+67+0+724}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:346,width:`max((min(${componentViewport?.width||\"100vw\"} - 60px, 1224px) - 48px) / 4, 50px)`,y:(componentViewport?.y||0)+0+1982.4+0+0+0+0+0+91+0+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-17mh7zd-container\",nodeId:\"PAb0cF9Hh\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{U9pMa4I30:{EHDWUdu3E:32,style:{width:\"100%\"}}},children:/*#__PURE__*/_jsx(CardsStatisticsCard,{eghG6vbzL:false,EHDWUdu3E:72,GINVQ82ra:\"%\",height:\"100%\",id:\"PAb0cF9Hh\",iRNbVrgie:\"Deployed across APAC & the US, with flexible, scalable architecture.\",layoutId:\"PAb0cF9Hh\",OCxqQQLue:\"Countries Deployed\",pLMEFe2Ez:\"%\",style:{height:\"100%\",width:\"100%\"},v8nvzLGQn:false,variant:\"Dcg4bFdeg\",width:\"100%\",xaBQLvUYP:4})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{A6srqD0Fs:{height:346.5,width:`max((min(${componentViewport?.width||\"100vw\"} - 60px, 768px) - 16px) / 2, 50px)`,y:(componentViewport?.y||0)+0+2490.4+0+0+0+0+0+77+0+362.5},U9pMa4I30:{width:`min(${componentViewport?.width||\"100vw\"} - 40px, 390px)`,y:(componentViewport?.y||0)+0+2576.6+0+0+0+0+0+67+0+1086}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:346,width:`max((min(${componentViewport?.width||\"100vw\"} - 60px, 1224px) - 48px) / 4, 50px)`,y:(componentViewport?.y||0)+0+1982.4+0+0+0+0+0+91+0+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1uwbt5i-container\",nodeId:\"cOkKE3mi_\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{U9pMa4I30:{EHDWUdu3E:32,style:{width:\"100%\"}}},children:/*#__PURE__*/_jsx(CardsStatisticsCard,{eghG6vbzL:false,EHDWUdu3E:72,GINVQ82ra:\"%\",height:\"100%\",id:\"cOkKE3mi_\",iRNbVrgie:\"Customer validated across real-world environments.\",layoutId:\"cOkKE3mi_\",OCxqQQLue:\"Detection Accuracy\",pLMEFe2Ez:\"%+\",style:{height:\"100%\",width:\"100%\"},v8nvzLGQn:true,variant:\"Dcg4bFdeg\",width:\"100%\",xaBQLvUYP:95})})})})})]})]})})}),/*#__PURE__*/_jsx(\"section\",{className:\"framer-18hhekn\",\"data-framer-name\":\"Faq Section\",children:/*#__PURE__*/_jsx(MotionDivWithOptimizedAppearEffect,{animate:animation1,className:\"framer-ymgj0l\",\"data-framer-appear-id\":\"ymgj0l\",\"data-framer-name\":\"Container\",initial:animation2,optimized:true,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{A6srqD0Fs:{width:`min(${componentViewport?.width||\"100vw\"} - 60px, 768px)`,y:(componentViewport?.y||0)+0+3276.4+80+0+0+0},U9pMa4I30:{width:`min(${componentViewport?.width||\"100vw\"} - 40px, 390px)`,y:(componentViewport?.y||0)+0+4075.6+60+0+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:580,width:`min(${componentViewport?.width||\"100vw\"} - 60px, 1224px)`,y:(componentViewport?.y||0)+0+2419.4+120+0+0+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1m0pys-container\",nodeId:\"CG4ELSmxK\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{A6srqD0Fs:{style:{width:\"100%\"},variant:\"Ghf2DcOrx\"},U9pMa4I30:{style:{width:\"100%\"},variant:\"Ghf2DcOrx\"}},children:/*#__PURE__*/_jsx(FaqFaqTab,{height:\"100%\",id:\"CG4ELSmxK\",layoutId:\"CG4ELSmxK\",style:{maxWidth:\"100%\",width:\"100%\"},variant:\"XgmZCwaTO\",width:\"100%\"})})})})})})}),/*#__PURE__*/_jsx(\"section\",{className:\"framer-fb6yx2\",\"data-framer-name\":\"About Section\",children:/*#__PURE__*/_jsxs(MotionDivWithOptimizedAppearEffect,{animate:animation1,className:\"framer-xdxesr\",\"data-framer-appear-id\":\"xdxesr\",\"data-framer-name\":\"Container\",initial:animation2,optimized:true,children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1fgob3l\",\"data-framer-name\":\"Image Wrapper\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{A6srqD0Fs:{background:{alt:\"About Image\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+3936.4+80+0+0+0+47),pixelHeight:992,pixelWidth:1920,positionX:\"center\",positionY:\"center\",sizes:`calc(min(${componentViewport?.width||\"100vw\"} - 60px, 768px) * 0.8672)`,src:\"https://framerusercontent.com/images/pLdRRQuknQ65fpLO6eAbbyn6vv8.png\",srcSet:\"https://framerusercontent.com/images/pLdRRQuknQ65fpLO6eAbbyn6vv8.png?scale-down-to=512 512w,https://framerusercontent.com/images/pLdRRQuknQ65fpLO6eAbbyn6vv8.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/pLdRRQuknQ65fpLO6eAbbyn6vv8.png 1920w\"}},U9pMa4I30:{background:{alt:\"About Image\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+4715.6+60+0+0+0+0),pixelHeight:992,pixelWidth:1920,positionX:\"center\",positionY:\"center\",sizes:\"301px\",src:\"https://framerusercontent.com/images/pLdRRQuknQ65fpLO6eAbbyn6vv8.png\",srcSet:\"https://framerusercontent.com/images/pLdRRQuknQ65fpLO6eAbbyn6vv8.png?scale-down-to=512 512w,https://framerusercontent.com/images/pLdRRQuknQ65fpLO6eAbbyn6vv8.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/pLdRRQuknQ65fpLO6eAbbyn6vv8.png 1920w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"About Image\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+3119.4+120+0+0+16),pixelHeight:992,pixelWidth:1920,positionX:\"center\",positionY:\"center\",sizes:\"568px\",src:\"https://framerusercontent.com/images/pLdRRQuknQ65fpLO6eAbbyn6vv8.png\",srcSet:\"https://framerusercontent.com/images/pLdRRQuknQ65fpLO6eAbbyn6vv8.png?scale-down-to=512 512w,https://framerusercontent.com/images/pLdRRQuknQ65fpLO6eAbbyn6vv8.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/pLdRRQuknQ65fpLO6eAbbyn6vv8.png 1920w\"},className:\"framer-7x4zbj\"})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-18qjos0\",\"data-framer-name\":\"Bg\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1rzixfu\",\"data-framer-name\":\"Linear Color\"}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{A6srqD0Fs:{background:{alt:\"Background Image\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+3936.4+80+0+0+0+0+0),pixelHeight:1154,pixelWidth:1248,positionX:\"center\",positionY:\"top\",sizes:`min(${componentViewport?.width||\"100vw\"} - 60px, 768px)`,src:\"https://framerusercontent.com/images/1OMJBnvkNM7TPFdlqA7mmOiq52U.png\",srcSet:\"https://framerusercontent.com/images/1OMJBnvkNM7TPFdlqA7mmOiq52U.png?scale-down-to=512 512w,https://framerusercontent.com/images/1OMJBnvkNM7TPFdlqA7mmOiq52U.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/1OMJBnvkNM7TPFdlqA7mmOiq52U.png 1248w\"}},U9pMa4I30:{background:{alt:\"Background Image\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+4715.6+60+0+0+0+0+0),pixelHeight:1154,pixelWidth:1248,positionX:\"center\",positionY:\"top\",sizes:`min(${componentViewport?.width||\"100vw\"} - 40px, 390px)`,src:\"https://framerusercontent.com/images/1OMJBnvkNM7TPFdlqA7mmOiq52U.png\",srcSet:\"https://framerusercontent.com/images/1OMJBnvkNM7TPFdlqA7mmOiq52U.png?scale-down-to=512 512w,https://framerusercontent.com/images/1OMJBnvkNM7TPFdlqA7mmOiq52U.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/1OMJBnvkNM7TPFdlqA7mmOiq52U.png 1248w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"Background Image\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+3119.4+120+0+0+0+0),pixelHeight:1154,pixelWidth:1248,positionX:\"center\",positionY:\"top\",sizes:`calc(min(${componentViewport?.width||\"100vw\"} - 60px, 1224px) / 2)`,src:\"https://framerusercontent.com/images/1OMJBnvkNM7TPFdlqA7mmOiq52U.png\",srcSet:\"https://framerusercontent.com/images/1OMJBnvkNM7TPFdlqA7mmOiq52U.png?scale-down-to=512 512w,https://framerusercontent.com/images/1OMJBnvkNM7TPFdlqA7mmOiq52U.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/1OMJBnvkNM7TPFdlqA7mmOiq52U.png 1248w\"},className:\"framer-1r1mkhu\",\"data-framer-name\":\"Background Image\"})})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1kw3dfl\",\"data-framer-name\":\"Content Wrapper\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-qy6xrr\",\"data-framer-name\":\"Title\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1v9gu2p\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{A6srqD0Fs:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-16vi7cr\",\"data-styles-preset\":\"zZDiT_kLU\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-a7d7b8ee-5d8b-4580-87eb-5f9cf604cfc2, rgb(255, 255, 255))\"},children:\"Beyond Labs\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-16vi7cr\",\"data-styles-preset\":\"zZDiT_kLU\",style:{\"--framer-text-color\":\"var(--token-a7d7b8ee-5d8b-4580-87eb-5f9cf604cfc2, rgb(255, 255, 255))\"},children:\"Beyond Labs\"})}),className:\"framer-bfouek\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{A6srqD0Fs:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1ivccl1\",\"data-styles-preset\":\"lZkDQNdBs\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-c002d8eb-1ea8-4fc8-9006-730dcfd16edf, rgb(243, 243, 243))\"},children:\"An end-to-end AI training pipeline designed for teams building intelligent video solutions. Beyond Labs enables users to label data, train custom models, and analyze performance\u2014all within a streamlined interface.\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1ivccl1\",\"data-styles-preset\":\"lZkDQNdBs\",style:{\"--framer-text-color\":\"var(--token-c002d8eb-1ea8-4fc8-9006-730dcfd16edf, rgb(243, 243, 243))\"},children:\"An end-to-end AI training pipeline designed for teams building intelligent video solutions. Beyond Labs enables users to label data, train custom models, and analyze performance\u2014all within a streamlined interface.\"})}),className:\"framer-1nxzr5y\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"uSKFv4K6Y\"},implicitPathVariables:undefined},{href:{webPageId:\"uSKFv4K6Y\"},implicitPathVariables:undefined},{href:{webPageId:\"uSKFv4K6Y\"},implicitPathVariables:undefined}],children:resolvedLinks2=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{A6srqD0Fs:{y:(componentViewport?.y||0)+0+3936.4+80+0+0+646+0+0+0+263.2},U9pMa4I30:{y:(componentViewport?.y||0)+0+4715.6+60+0+0+306+0+0+0+263.2}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:49,y:(componentViewport?.y||0)+0+3119.4+120+0+0+0+-145.6+0+263.2,children:/*#__PURE__*/_jsx(Container,{className:\"framer-7nyp20-container\",nodeId:\"vlYEbGFFF\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{A6srqD0Fs:{yM09ip1dJ:resolvedLinks2[1]},U9pMa4I30:{yM09ip1dJ:resolvedLinks2[2]}},children:/*#__PURE__*/_jsx(ButtonButton,{height:\"100%\",id:\"vlYEbGFFF\",layoutId:\"vlYEbGFFF\",variant:\"FVH9I4WgD\",width:\"100%\",ylVlgUgjr:\"Book a Demo\",yM09ip1dJ:resolvedLinks2[0]})})})})})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1x709qa\",\"data-framer-name\":\"About List Wrapper\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-7xdwba\",\"data-framer-name\":\"About  List 01\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{A6srqD0Fs:{background:{alt:\"Icon\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+3936.4+80+0+0+646+0+352.2+0+0+56),pixelHeight:24,pixelWidth:24,src:\"https://framerusercontent.com/images/aoMnvQS0w8toHqhdledO5Eiy4FU.svg\"}},U9pMa4I30:{background:{alt:\"Icon\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+4715.6+60+0+0+306+0+344.2+0+0+0+0),pixelHeight:24,pixelWidth:24,src:\"https://framerusercontent.com/images/aoMnvQS0w8toHqhdledO5Eiy4FU.svg\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"Icon\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+3119.4+120+0+0+0+246.6+0+0+56),pixelHeight:24,pixelWidth:24,src:\"https://framerusercontent.com/images/aoMnvQS0w8toHqhdledO5Eiy4FU.svg\"},className:\"framer-8fd8ja\",\"data-framer-name\":\"Icon\"})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1ivccl1\",\"data-styles-preset\":\"lZkDQNdBs\",style:{\"--framer-text-color\":\"var(--token-c002d8eb-1ea8-4fc8-9006-730dcfd16edf, rgb(243, 243, 243))\"},children:\"Easy-to-use data labeling tools\"})}),className:\"framer-1071ho7\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-nmeuei\",\"data-framer-name\":\"About  List 02\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{A6srqD0Fs:{background:{alt:\"Icon\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+3936.4+80+0+0+646+0+352.2+0+0+56),pixelHeight:24,pixelWidth:24,src:\"https://framerusercontent.com/images/zWpSRjeKUKBhAp85Q6r6a03FfF4.svg\"}},U9pMa4I30:{background:{alt:\"Icon\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+4715.6+60+0+0+306+0+344.2+0+204+0+0),pixelHeight:24,pixelWidth:24,src:\"https://framerusercontent.com/images/zWpSRjeKUKBhAp85Q6r6a03FfF4.svg\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"Icon\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+3119.4+120+0+0+0+246.6+0+160+56),pixelHeight:24,pixelWidth:24,src:\"https://framerusercontent.com/images/zWpSRjeKUKBhAp85Q6r6a03FfF4.svg\"},className:\"framer-1k6rsef\",\"data-framer-name\":\"Icon\"})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1ivccl1\",\"data-styles-preset\":\"lZkDQNdBs\",style:{\"--framer-text-color\":\"var(--token-c002d8eb-1ea8-4fc8-9006-730dcfd16edf, rgb(243, 243, 243))\"},children:\"Model training and iteration made simple\"})}),className:\"framer-120fc2p\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-bl47y4\",\"data-framer-name\":\"About  List 03\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{A6srqD0Fs:{background:{alt:\"Icon\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+3936.4+80+0+0+646+0+352.2+0+160+56),pixelHeight:24,pixelWidth:24,src:\"https://framerusercontent.com/images/9YfVdPahDls6EACuhBHraBPaULU.svg\"}},U9pMa4I30:{background:{alt:\"Icon\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+4715.6+60+0+0+306+0+344.2+0+408+0+0),pixelHeight:24,pixelWidth:24,src:\"https://framerusercontent.com/images/9YfVdPahDls6EACuhBHraBPaULU.svg\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"Icon\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+3119.4+120+0+0+0+246.6+0+320+56),pixelHeight:24,pixelWidth:24,src:\"https://framerusercontent.com/images/9YfVdPahDls6EACuhBHraBPaULU.svg\"},className:\"framer-1jn135p\",\"data-framer-name\":\"Icon\"})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1ivccl1\",\"data-styles-preset\":\"lZkDQNdBs\",style:{\"--framer-text-color\":\"var(--token-c002d8eb-1ea8-4fc8-9006-730dcfd16edf, rgb(243, 243, 243))\"},children:\"Visualise and analyse model performance\"})}),className:\"framer-l53r2k\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})]})]})]})}),/*#__PURE__*/_jsx(\"section\",{className:\"framer-1lia5pl\",\"data-framer-name\":\"Cta\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{A6srqD0Fs:{y:(componentViewport?.y||0)+0+5310.6+-212.1843},U9pMa4I30:{y:(componentViewport?.y||0)+0+6017.8+-222.0132}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:503,width:\"1380px\",y:(componentViewport?.y||0)+0+3796.4+-208.2527,children:/*#__PURE__*/_jsx(Container,{className:\"framer-14kkep2-container\",nodeId:\"iS2Qx2yim\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{A6srqD0Fs:{variant:\"PBAlMjGsO\"},U9pMa4I30:{variant:\"DGQTR8y0Z\"}},children:/*#__PURE__*/_jsx(Cta,{height:\"100%\",id:\"iS2Qx2yim\",layoutId:\"iS2Qx2yim\",style:{width:\"100%\"},variant:\"dNFrn4J11\",width:\"100%\"})})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{A6srqD0Fs:{y:(componentViewport?.y||0)+0+5390.6},U9pMa4I30:{y:(componentViewport?.y||0)+0+6077.8}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:554,width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+3884.4,children:/*#__PURE__*/_jsx(Container,{className:\"framer-13z6kpr-container\",nodeId:\"gVmt8DoAC\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{A6srqD0Fs:{variant:\"dHlVs_a1J\"},U9pMa4I30:{variant:\"rbQ8Fnb1q\"}},children:/*#__PURE__*/_jsx(Footer,{height:\"100%\",id:\"gVmt8DoAC\",layoutId:\"gVmt8DoAC\",style:{width:\"100%\"},variant:\"RefRUY8gR\",width:\"100%\"})})})})})]}),/*#__PURE__*/_jsx(\"div\",{id:\"overlay\"})]})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-Ah1Vx.framer-lux5qc, .framer-Ah1Vx .framer-lux5qc { display: block; }\",\".framer-Ah1Vx.framer-72rtr7 { align-content: center; align-items: center; background-color: var(--token-8c4d7fa6-8e25-44e1-ad38-c3ce79c5badc, #0e0f11); display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 1440px; }\",\".framer-Ah1Vx .framer-pw2m6 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; left: 50%; overflow: visible; padding: 0px 30px 0px 30px; position: absolute; top: 0px; transform: translateX(-50%); width: 100%; z-index: 10; }\",\".framer-Ah1Vx .framer-o8yl55-container, .framer-Ah1Vx .framer-1m0pys-container { flex: none; height: auto; max-width: 1224px; position: relative; width: 100%; }\",\".framer-Ah1Vx .framer-1mdcrzs { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; overflow: hidden; padding: 250px 30px 60px 30px; position: relative; width: 100%; }\",\".framer-Ah1Vx .framer-o1x689 { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: flex-start; max-width: 1224px; overflow: hidden; padding: 0px; position: relative; width: 1px; z-index: 2; }\",\".framer-Ah1Vx .framer-4byzts { 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; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-Ah1Vx .framer-79ozm5 { 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: center; overflow: hidden; padding: 0px; position: relative; width: 94%; }\",\".framer-Ah1Vx .framer-11srlc5 { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; --framer-paragraph-spacing: 0px; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-Ah1Vx .framer-11siskn { --framer-paragraph-spacing: 0px; flex: none; height: auto; max-width: 520px; opacity: 0.7; overflow: visible; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-Ah1Vx .framer-29oein { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-Ah1Vx .framer-n6tnbt-container, .framer-Ah1Vx .framer-19dvj76-container, .framer-Ah1Vx .framer-1p2t1pj-container, .framer-Ah1Vx .framer-cg8o70-container, .framer-Ah1Vx .framer-7nyp20-container { flex: none; height: auto; position: relative; width: auto; }\",\".framer-Ah1Vx .framer-i202kd { background: linear-gradient(180deg, rgba(0, 0, 0, 0) 22%, var(--token-8c4d7fa6-8e25-44e1-ad38-c3ce79c5badc, rgb(14, 15, 17)) 100%); bottom: 0px; flex: none; left: 0px; overflow: hidden; position: absolute; right: 0px; top: 0px; z-index: 1; }\",\".framer-Ah1Vx .framer-us0xem-container { bottom: 0px; flex: none; left: 0px; position: absolute; right: 0px; top: 0px; }\",\".framer-Ah1Vx .framer-auseit { background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, var(--token-8c4d7fa6-8e25-44e1-ad38-c3ce79c5badc, rgb(14, 15, 17)) 90%); flex: none; height: 100%; left: 0px; overflow: hidden; position: absolute; top: 0px; width: 100%; }\",\".framer-Ah1Vx .framer-g20z3u { bottom: 0px; flex: none; height: 100%; left: 0px; overflow: hidden; position: absolute; width: 100%; }\",\".framer-Ah1Vx .framer-a9f333 { align-content: center; align-items: center; background-color: var(--token-8c4d7fa6-8e25-44e1-ad38-c3ce79c5badc, #0e0f11); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; overflow: hidden; padding: 60px 30px 0px 30px; position: relative; width: 100%; }\",\".framer-Ah1Vx .framer-1wssrpm { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 80px; height: min-content; justify-content: center; max-width: 1224px; overflow: hidden; padding: 0px; position: relative; width: 100%; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-Ah1Vx .framer-pykb4l { 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: hidden; padding: 0px; position: relative; width: 44%; }\",\".framer-Ah1Vx .framer-lvnpxu, .framer-Ah1Vx .framer-tqks6j { --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-Ah1Vx .framer-t64jc4 { display: grid; flex: none; gap: 72px; grid-auto-rows: minmax(0, 1fr); grid-template-columns: repeat(4, minmax(50px, 1fr)); grid-template-rows: repeat(1, minmax(0, 1fr)); height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-Ah1Vx .framer-1acbnpm-container, .framer-Ah1Vx .framer-2u1u7e-container, .framer-Ah1Vx .framer-jcrfjg-container, .framer-Ah1Vx .framer-cmxl1w-container, .framer-Ah1Vx .framer-1aaj45b-container, .framer-Ah1Vx .framer-1qz6ld4-container, .framer-Ah1Vx .framer-17mh7zd-container, .framer-Ah1Vx .framer-1uwbt5i-container { align-self: start; flex: none; height: 100%; justify-self: start; position: relative; width: 100%; }\",\".framer-Ah1Vx .framer-1ult1pj { align-content: center; align-items: center; background-color: var(--token-8c4d7fa6-8e25-44e1-ad38-c3ce79c5badc, #0e0f11); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; overflow: hidden; padding: 120px 30px 120px 30px; position: relative; width: 100%; }\",\".framer-Ah1Vx .framer-fymz7v { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 72px; height: min-content; justify-content: center; max-width: 1224px; overflow: hidden; padding: 0px; position: relative; width: 100%; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-Ah1Vx .framer-1px8s18 { align-content: center; align-items: center; aspect-ratio: 1.0646319569120288 / 1; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: var(--framer-aspect-ratio-supported, 598px); justify-content: center; overflow: hidden; padding: 57px; position: relative; width: 52%; }\",\".framer-Ah1Vx .framer-17cmaqc { aspect-ratio: 1.079120879120879 / 1; border-bottom-left-radius: 24px; border-bottom-right-radius: 24px; border-top-left-radius: 24px; border-top-right-radius: 24px; flex: 1 0 0px; height: var(--framer-aspect-ratio-supported, 484px); position: relative; width: 1px; z-index: 2; }\",\".framer-Ah1Vx .framer-1bhv3yx, .framer-Ah1Vx .framer-18qjos0 { align-content: center; align-items: center; bottom: 0px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; justify-content: center; left: 0px; overflow: hidden; padding: 0px; position: absolute; right: 0px; top: 0px; z-index: 1; }\",\".framer-Ah1Vx .framer-1iyywz0, .framer-Ah1Vx .framer-1rzixfu { background: linear-gradient(180deg, #000000 38%, rgba(0, 0, 0, 0) 108%); border-bottom-left-radius: 30px; border-bottom-right-radius: 30px; border-top-left-radius: 30px; border-top-right-radius: 30px; bottom: 0px; flex: none; left: 0px; overflow: hidden; position: absolute; right: 0px; top: 0px; will-change: var(--framer-will-change-override, transform); z-index: 2; }\",\".framer-Ah1Vx .framer-g64eaa, .framer-Ah1Vx .framer-1r1mkhu { border-bottom-left-radius: 30px; border-bottom-right-radius: 30px; border-top-left-radius: 30px; border-top-right-radius: 30px; bottom: 0px; flex: none; left: 0px; position: absolute; right: 0px; top: 0px; z-index: 1; }\",\".framer-Ah1Vx .framer-nhqwo6 { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 56px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-Ah1Vx .framer-1jwts5x { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 48px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-Ah1Vx .framer-12nou7b { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-Ah1Vx .framer-1ogobhz, .framer-Ah1Vx .framer-1nxzr5y { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; opacity: 0.7; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-Ah1Vx .framer-19dz5hv { align-content: center; align-items: center; background-color: var(--token-8c4d7fa6-8e25-44e1-ad38-c3ce79c5badc, #0e0f11); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; overflow: hidden; padding: 0px 30px 0px 30px; position: relative; width: 100%; }\",\".framer-Ah1Vx .framer-91ewzz { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 37px; height: min-content; justify-content: center; max-width: 1224px; overflow: visible; padding: 0px; position: relative; width: 100%; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-Ah1Vx .framer-nermkr { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 64px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-Ah1Vx .framer-1hbnrb9 { 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: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-Ah1Vx .framer-cmojnd { display: grid; flex: none; gap: 16px; grid-auto-rows: minmax(0, 1fr); grid-template-columns: repeat(4, minmax(50px, 1fr)); grid-template-rows: repeat(1, minmax(0, 1fr)); height: 346px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-Ah1Vx .framer-18hhekn { align-content: center; align-items: center; background-color: var(--token-8c4d7fa6-8e25-44e1-ad38-c3ce79c5badc, #0e0f11); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 120px 30px 0px 30px; position: relative; width: 100%; }\",\".framer-Ah1Vx .framer-ymgj0l { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: center; max-width: 1224px; overflow: hidden; padding: 0px; position: relative; width: 100%; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-Ah1Vx .framer-fb6yx2 { align-content: center; align-items: center; background-color: var(--token-8c4d7fa6-8e25-44e1-ad38-c3ce79c5badc, #0e0f11); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; overflow: hidden; padding: 120px 30px 0px 30px; position: relative; width: 100%; }\",\".framer-Ah1Vx .framer-xdxesr { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 72px; height: min-content; justify-content: center; max-width: 1224px; overflow: hidden; padding: 0px; position: relative; width: 100%; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-Ah1Vx .framer-1fgob3l { align-content: center; align-items: center; aspect-ratio: 1.0646319569120288 / 1; border-bottom-left-radius: 30px; border-bottom-right-radius: 30px; border-top-left-radius: 30px; border-top-right-radius: 30px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: var(--framer-aspect-ratio-supported, 575px); justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 50%; will-change: var(--framer-will-change-override, transform); }\",\".framer-Ah1Vx .framer-7x4zbj { border-bottom-left-radius: 24px; border-bottom-right-radius: 24px; border-top-left-radius: 24px; border-top-right-radius: 24px; flex: none; height: 525px; position: relative; width: 568px; z-index: 2; }\",\".framer-Ah1Vx .framer-1kw3dfl { align-content: flex-start; align-items: flex-start; align-self: stretch; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 80px; height: auto; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-Ah1Vx .framer-qy6xrr { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-Ah1Vx .framer-1v9gu2p { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-Ah1Vx .framer-bfouek { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; max-width: 520px; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-Ah1Vx .framer-1x709qa { display: grid; flex: none; gap: 24px; grid-auto-rows: minmax(0, 1fr); grid-template-columns: repeat(1, minmax(50px, 1fr)); grid-template-rows: repeat(2, minmax(0, 1fr)); height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-Ah1Vx .framer-7xdwba, .framer-Ah1Vx .framer-nmeuei, .framer-Ah1Vx .framer-bl47y4 { align-content: center; align-items: center; align-self: start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 24px; height: 100%; justify-content: flex-start; justify-self: start; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-Ah1Vx .framer-8fd8ja, .framer-Ah1Vx .framer-1k6rsef, .framer-Ah1Vx .framer-1jn135p { flex: none; height: 24px; position: relative; width: 24px; }\",\".framer-Ah1Vx .framer-1071ho7, .framer-Ah1Vx .framer-120fc2p, .framer-Ah1Vx .framer-l53r2k { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: 1 0 0px; height: auto; position: relative; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; }\",\".framer-Ah1Vx .framer-1lia5pl { align-content: center; align-items: center; background-color: var(--token-8c4d7fa6-8e25-44e1-ad38-c3ce79c5badc, #0e0f11); display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; min-height: 643px; overflow: hidden; padding: 0px 30px 88px 30px; position: relative; width: 100%; }\",\".framer-Ah1Vx .framer-14kkep2-container { flex: none; height: auto; left: 50%; position: absolute; top: 49%; transform: translate(-50%, -50%); width: 1380px; z-index: 0; }\",\".framer-Ah1Vx .framer-13z6kpr-container { flex: none; height: auto; position: relative; width: 100%; }\",...sharedStyle.css,...sharedStyle1.css,...sharedStyle2.css,...sharedStyle3.css,...sharedStyle4.css,\"@media (min-width: 768px) and (max-width: 1439px) { .framer-Ah1Vx.framer-72rtr7 { width: 768px; } .framer-Ah1Vx .framer-1mdcrzs { padding: 170px 30px 80px 30px; } .framer-Ah1Vx .framer-o1x689 { max-width: 768px; } .framer-Ah1Vx .framer-79ozm5 { width: 100%; } .framer-Ah1Vx .framer-11siskn { width: 82%; } .framer-Ah1Vx .framer-i202kd { aspect-ratio: 1.3310225303292895 / 1; height: var(--framer-aspect-ratio-supported, 577px); left: unset; width: 100%; } .framer-Ah1Vx .framer-a9f333, .framer-Ah1Vx .framer-18hhekn, .framer-Ah1Vx .framer-fb6yx2 { padding: 80px 30px 0px 30px; } .framer-Ah1Vx .framer-1wssrpm, .framer-Ah1Vx .framer-91ewzz { gap: 50px; max-width: 768px; } .framer-Ah1Vx .framer-pykb4l { order: 0; width: 60%; } .framer-Ah1Vx .framer-t64jc4 { gap: 56px; grid-template-columns: repeat(2, minmax(50px, 1fr)); order: 1; } .framer-Ah1Vx .framer-1ult1pj { padding: 80px 30px 80px 30px; } .framer-Ah1Vx .framer-fymz7v { flex-direction: column; gap: 32px; max-width: 768px; } .framer-Ah1Vx .framer-1px8s18, .framer-Ah1Vx .framer-1fgob3l { aspect-ratio: 1.1530944625407167 / 1; height: var(--framer-aspect-ratio-supported, 614px); width: 100%; } .framer-Ah1Vx .framer-17cmaqc { aspect-ratio: 1.1880998080614202 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 521px); width: 619px; } .framer-Ah1Vx .framer-nhqwo6 { flex: none; gap: 40px; width: 100%; } .framer-Ah1Vx .framer-1jwts5x { gap: 32px; } .framer-Ah1Vx .framer-tqks6j, .framer-Ah1Vx .framer-bfouek { width: 75%; } .framer-Ah1Vx .framer-1ogobhz, .framer-Ah1Vx .framer-1nxzr5y { width: 79%; } .framer-Ah1Vx .framer-nermkr { gap: 50px; order: 0; } .framer-Ah1Vx .framer-cmojnd { grid-template-columns: repeat(2, minmax(50px, 1fr)); height: 709px; } .framer-Ah1Vx .framer-ymgj0l { gap: 50px; justify-content: flex-start; max-width: 768px; } .framer-Ah1Vx .framer-1m0pys-container { max-width: unset; } .framer-Ah1Vx .framer-xdxesr { align-content: center; align-items: center; flex-direction: column; gap: 32px; max-width: 768px; } .framer-Ah1Vx .framer-7x4zbj { aspect-ratio: 1.1807692307692308 / 1; height: var(--framer-aspect-ratio-supported, 520px); width: 87%; } .framer-Ah1Vx .framer-1rzixfu { right: unset; width: 100%; } .framer-Ah1Vx .framer-1kw3dfl { align-self: unset; flex: none; gap: 40px; height: min-content; width: 100%; } .framer-Ah1Vx .framer-qy6xrr { width: 80%; } .framer-Ah1Vx .framer-1v9gu2p { align-content: flex-start; align-items: flex-start; } .framer-Ah1Vx .framer-1x709qa { grid-template-columns: repeat(2, minmax(50px, 1fr)); } .framer-Ah1Vx .framer-1lia5pl { padding: 0px 30px 80px 30px; }}\",\"@media (max-width: 767px) { .framer-Ah1Vx.framer-72rtr7 { width: 390px; } .framer-Ah1Vx .framer-pw2m6 { padding: 0px; position: fixed; } .framer-Ah1Vx .framer-o8yl55-container, .framer-Ah1Vx .framer-o1x689, .framer-Ah1Vx .framer-ymgj0l { max-width: 390px; } .framer-Ah1Vx .framer-1mdcrzs { padding: 100px 20px 60px 20px; } .framer-Ah1Vx .framer-4byzts { align-content: center; align-items: center; justify-content: center; } .framer-Ah1Vx .framer-79ozm5 { align-content: center; align-items: center; width: 100%; } .framer-Ah1Vx .framer-29oein { flex-direction: column; } .framer-Ah1Vx .framer-i202kd { left: unset; width: 100%; } .framer-Ah1Vx .framer-a9f333, .framer-Ah1Vx .framer-18hhekn, .framer-Ah1Vx .framer-fb6yx2 { padding: 60px 20px 0px 20px; } .framer-Ah1Vx .framer-1wssrpm, .framer-Ah1Vx .framer-91ewzz { gap: 40px; max-width: 390px; } .framer-Ah1Vx .framer-pykb4l { width: 100%; } .framer-Ah1Vx .framer-t64jc4 { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: wrap; gap: 48px; } .framer-Ah1Vx .framer-1acbnpm-container, .framer-Ah1Vx .framer-2u1u7e-container, .framer-Ah1Vx .framer-jcrfjg-container, .framer-Ah1Vx .framer-cmxl1w-container, .framer-Ah1Vx .framer-1aaj45b-container, .framer-Ah1Vx .framer-1qz6ld4-container, .framer-Ah1Vx .framer-17mh7zd-container, .framer-Ah1Vx .framer-1uwbt5i-container { align-self: unset; height: auto; } .framer-Ah1Vx .framer-1ult1pj { padding: 60px 20px 60px 20px; } .framer-Ah1Vx .framer-fymz7v, .framer-Ah1Vx .framer-xdxesr { flex-direction: column; gap: 24px; max-width: 390px; } .framer-Ah1Vx .framer-1px8s18, .framer-Ah1Vx .framer-1fgob3l { aspect-ratio: unset; height: min-content; width: 100%; } .framer-Ah1Vx .framer-17cmaqc { border-bottom-left-radius: 16px; border-bottom-right-radius: 16px; border-top-left-radius: 16px; border-top-right-radius: 16px; flex: none; height: var(--framer-aspect-ratio-supported, 279px); width: 301px; } .framer-Ah1Vx .framer-1iyywz0 { border-bottom-left-radius: 16px; border-bottom-right-radius: 16px; border-top-left-radius: 16px; border-top-right-radius: 16px; bottom: -1px; top: -1px; } .framer-Ah1Vx .framer-g64eaa, .framer-Ah1Vx .framer-1r1mkhu { border-bottom-left-radius: 16px; border-bottom-right-radius: 16px; border-top-left-radius: 16px; border-top-right-radius: 16px; max-width: 100%; } .framer-Ah1Vx .framer-nhqwo6 { flex: none; gap: 32px; width: 100%; } .framer-Ah1Vx .framer-1jwts5x { gap: 24px; } .framer-Ah1Vx .framer-19dz5hv { padding: 0px 20px 0px 20px; } .framer-Ah1Vx .framer-nermkr { gap: 40px; } .framer-Ah1Vx .framer-cmojnd { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; height: min-content; } .framer-Ah1Vx .framer-1m0pys-container { max-width: unset; } .framer-Ah1Vx .framer-7x4zbj { border-bottom-left-radius: 16px; border-bottom-right-radius: 16px; border-top-left-radius: 16px; border-top-right-radius: 16px; height: 282px; width: 301px; } .framer-Ah1Vx .framer-1rzixfu { border-bottom-left-radius: 16px; border-bottom-right-radius: 16px; border-top-left-radius: 16px; border-top-right-radius: 16px; bottom: unset; height: 100%; right: unset; top: -1px; width: 100%; } .framer-Ah1Vx .framer-1kw3dfl { align-self: unset; flex: none; gap: 32px; height: min-content; width: 100%; } .framer-Ah1Vx .framer-1x709qa { gap: 20px; } .framer-Ah1Vx .framer-7xdwba, .framer-Ah1Vx .framer-nmeuei, .framer-Ah1Vx .framer-bl47y4 { align-content: flex-start; align-items: flex-start; flex-direction: column; } .framer-Ah1Vx .framer-8fd8ja { order: 0; } .framer-Ah1Vx .framer-1071ho7 { flex: none; order: 1; width: 100%; } .framer-Ah1Vx .framer-120fc2p, .framer-Ah1Vx .framer-l53r2k { flex: none; width: 100%; } .framer-Ah1Vx .framer-1lia5pl { padding: 0px 20px 60px 20px; }}\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 5185\n * @framerIntrinsicWidth 1440\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"A6srqD0Fs\":{\"layout\":[\"fixed\",\"auto\"]},\"U9pMa4I30\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerAutoSizeImages true\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n * @framerAcceptsLayoutTemplate true\n * @framerScrollSections {\"FJfyGTk5F\":{\"pattern\":\":FJfyGTk5F\",\"name\":\"hero\"}}\n * @framerResponsiveScreen\n */const FrameraugiA20Il=withCSS(Component,css,\"framer-Ah1Vx\");export default FrameraugiA20Il;FrameraugiA20Il.displayName=\"Home\";FrameraugiA20Il.defaultProps={height:5185,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:\"Poppins\",source:\"fontshare\",style:\"normal\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/NC2MP33RO4WQTSTEEAWBJLAEXNCNEQVF/7F4U3COKLHQH4WUH3AXPC7N4UELEWJQN/JMWNCAGBH3TLANIVQPVABVAVNV5QERTH.woff2\",weight:\"400\"}]},...MenuHeaderFonts,...ButtonButtonFonts,...VideoFonts,...TagTagFonts,...CardsFeatureCardFonts,...CardsStatisticsCardFonts,...FaqFaqTabFonts,...CtaFonts,...FooterFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts),...getFontsFromSharedStyle(sharedStyle2.fonts),...getFontsFromSharedStyle(sharedStyle3.fonts),...getFontsFromSharedStyle(sharedStyle4.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FrameraugiA20Il\",\"slots\":[],\"annotations\":{\"framerImmutableVariables\":\"true\",\"framerAutoSizeImages\":\"true\",\"framerAcceptsLayoutTemplate\":\"true\",\"framerScrollSections\":\"{\\\"FJfyGTk5F\\\":{\\\"pattern\\\":\\\":FJfyGTk5F\\\",\\\"name\\\":\\\"hero\\\"}}\",\"framerResponsiveScreen\":\"\",\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicWidth\":\"1440\",\"framerIntrinsicHeight\":\"5185\",\"framerDisplayContentsDiv\":\"false\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"A6srqD0Fs\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"U9pMa4I30\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerColorSyntax\":\"true\",\"framerContractVersion\":\"1\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}"],
  "mappings": "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",
  "names": ["ObjectFitType", "SrcType", "defaultVideo", "getProps", "props", "width", "height", "topLeft", "topRight", "bottomRight", "bottomLeft", "id", "children", "rest", "Video", "newProps", "p", "VideoMemo", "usePlaybackControls", "videoRef", "isInCurrentNavigationTarget", "useIsInCurrentNavigationTarget", "requestingPlay", "pe", "isPlayingRef", "setProgress", "te", "rawProgress", "newProgress", "isAlreadySet", "play", "video", "e", "pause", "useAutoplayBehavior", "playingProp", "muted", "loop", "playsinline", "controls", "initialPlayingProp", "ye", "hasPlayingPropChanged", "setHasPlayingPropChanged", "behavesAsGif", "autoplay", "X", "srcType", "srcUrl", "srcFile", "posterEnabled", "playing", "restartOnEnter", "objectFit", "backgroundColor", "radius", "volume", "startTimeProp", "poster", "progress", "onSeeked", "onPause", "onPlay", "onEnd", "onClick", "onMouseEnter", "onMouseLeave", "onMouseDown", "onMouseUp", "isSafari", "useIsBrowserSafari", "wasPausedOnLeave", "wasEndedOnLeave", "isOnCanvas", "useIsOnCanvas", "renderTarget", "useRenderTarget", "isStaticRenderer", "RenderTarget", "borderRadius", "useRadius", "autoplayBehavior", "isInViewport", "useInView", "isCloseToViewport", "startTime", "isPlaying", "ue", "isMountedAndReadyForProgressChanges", "rawProgressValue", "isMotionValue", "value", "useOnEnter", "useOnExit", "src", "se", "fragment", "handleReady", "capitalizeFirstLetter", "titleCase", "objectFitOptions", "addPropertyControls", "ControlType", "borderRadiusControl", "defaultEvents", "TagTagFonts", "getFonts", "KelSkUejH_default", "FaqFaqListFonts", "yLH788YF3_default", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "orJYwvxX0rhxeuy", "args", "orJYwvxX01m6l3c4", "orJYwvxX01wr1fqk", "orJYwvxX0cph7ao", "orJYwvxX01xfs7vo", "orJYwvxX0wq8vhl", "scopingClassNames", "cx", "LayoutGroup", "u", "ComponentViewportProvider", "SmartComponentScopedContainer", "RichText", "Image2", "getLoadingLazyAtYPosition", "css", "FramerbAyWlSCA4", "withCSS", "bAyWlSCA4_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts", "AnimatedCounterFonts", "getFonts", "AnimatedCounter", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "numberToPixelString", "value", "transition1", "Transition", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "counter", "gap", "height", "id", "prefix", "prefixTitle", "sifix", "sufixTitle", "text", "title", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "xaBQLvUYP", "OCxqQQLue", "iRNbVrgie", "EHDWUdu3E", "v8nvzLGQn", "pLMEFe2Ez", "eghG6vbzL", "GINVQ82ra", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "scopingClassNames", "cx", "LayoutGroup", "u", "RichText", "ComponentViewportProvider", "SmartComponentScopedContainer", "css", "FramerjqYhY69Ba", "withCSS", "jqYhY69Ba_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts", "MenuHeaderFonts", "getFonts", "BXeT0wClp_default", "MenuHeaderWithVariantAppearEffect", "withVariantAppearEffect", "ButtonButtonFonts", "j5tzs8Ev6_default", "MotionDivWithFX", "withFX", "motion", "VideoFonts", "Video", "TagTagFonts", "KelSkUejH_default", "CardsFeatureCardFonts", "m2r5qx9hk_default", "MotionDivWithOptimizedAppearEffect", "withOptimizedAppearEffect", "CardsStatisticsCardFonts", "jqYhY69Ba_default", "FaqFaqTabFonts", "bAyWlSCA4_default", "CtaFonts", "HCim3dpKo_default", "FooterFonts", "sF4dGHpjt_default", "breakpoints", "serializationHash", "variantClassNames", "animation", "transition1", "animation1", "animation2", "addImageAlt", "image", "alt", "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", "metadata", "se", "useMetadata", "baseVariant", "hydratedBaseVariant", "useHydratedBreakpointVariants", "breakpoints", "gestureVariant", "scopingClassNames", "cx", "ref1", "elementId", "useRouteElementId", "router", "useRouter", "useCustomCursors", "GeneratedComponentContext", "u", "LayoutGroup", "motion", "PropertyOverrides2", "ComponentViewportProvider", "Container", "MenuHeaderWithVariantAppearEffect", "MotionDivWithFX", "x", "RichText", "ResolveLinks", "resolvedLinks", "j5tzs8Ev6_default", "Video", "getLoadingLazyAtYPosition", "Image2", "MotionDivWithOptimizedAppearEffect", "KelSkUejH_default", "m2r5qx9hk_default", "resolvedLinks1", "jqYhY69Ba_default", "bAyWlSCA4_default", "resolvedLinks2", "HCim3dpKo_default", "sF4dGHpjt_default", "css", "FrameraugiA20Il", "withCSS", "augiA20Il_default", "addFonts", "MenuHeaderFonts", "ButtonButtonFonts", "VideoFonts", "TagTagFonts", "CardsFeatureCardFonts", "CardsStatisticsCardFonts", "FaqFaqTabFonts", "CtaFonts", "FooterFonts", "getFontsFromSharedStyle", "fonts", "__FramerMetadata__"]
}
