{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/lRDHiNWNVWmE0lqtoVHP/7qT0r3So12155VV5Jq5x/Video.js", "ssg:https://framerusercontent.com/modules/xqed3wtYVX9AEscbxfXF/EQkWfJNy2c8SZwUFwyZ6/qs6S8v90b.js", "ssg:https://framerusercontent.com/modules/lRDHiNWNVWmE0lqtoVHP/Z4QJ2YpzpVnWRfR6Ccgg/Video.js", "ssg:https://framerusercontent.com/modules/VvXnjt3SaKjTAnUWOZl2/WyOjANWmMXHxWOihgw5y/yDHIln484.js", "ssg:https://framerusercontent.com/modules/5YjX56kWwwxh4e0auaGm/OfI06Yy6vUX97PYw89sj/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 (4d21961)\nimport{jsx as _jsx}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,Link,RichText,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useVariantState,withCSS,withFX}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";const MotionAWithFX=withFX(motion.a);const cycleOrder=[\"mk33AzhUu\",\"sLQJfMUb5\"];const serializationHash=\"framer-4dYUk\";const variantClassNames={mk33AzhUu:\"framer-v-zruvyi\",sLQJfMUb5:\"framer-v-cxlvae\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={bounce:.2,delay:0,duration:.4,type:\"spring\"};const animation={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0};const transition2={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:\"mk33AzhUu\",Phone:\"sLQJfMUb5\"};const getProps=({click,height,id,width,...props})=>{return{...props,I2S5sUvA5:click??props.I2S5sUvA5,variant:humanReadableVariantMap[props.variant]??props.variant??\"mk33AzhUu\"};};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,I2S5sUvA5,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"mk33AzhUu\",ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onTap1sn716e=activeVariantCallback(async(...args)=>{setGestureState({isPressed:false});if(I2S5sUvA5){const res=await I2S5sUvA5(...args);if(res===false)return false;}});const sharedStyleClassNames=[];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:transition2,children:/*#__PURE__*/_jsx(Link,{href:\"https://campfire3d.com/blog/campfire-brings-spatial-collaboration-to-htc-vive-and-varjo-xr-devices\",motionChild:true,nodeId:\"mk33AzhUu\",scopeId:\"qs6S8v90b\",...addPropertyOverrides({sLQJfMUb5:{openInNewTab:true}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(MotionAWithFX,{...restProps,...gestureHandlers,__framer__animate:{transition:transition1},__framer__animateOnce:false,__framer__scrollDirection:{direction:\"down\",target:animation},__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,className:`${cx(scopingClassNames,\"framer-zruvyi\",className,classNames)} framer-17frmm`,\"data-framer-name\":\"Desktop\",\"data-hide-scrollbars\":true,\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"mk33AzhUu\",onTap:onTap1sn716e,ref:refBinding,style:{\"--border-bottom-width\":\"0px\",\"--border-color\":\"rgba(0, 0, 0, 0)\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-style\":\"solid\",\"--border-top-width\":\"0px\",...style},variants:{sLQJfMUb5:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"var(--token-6de1876c-a4d1-4b22-8c7b-ded933e14f23, rgba(230, 230, 230, 0.1))\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-style\":\"solid\",\"--border-top-width\":\"0px\"}},...addPropertyOverrides({sLQJfMUb5:{\"data-border\":true,\"data-framer-name\":\"Phone\"}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO0dyZXljbGlmZiBDRiBCb2xk\",\"--framer-font-family\":'\"Greycliff CF Bold\", \"Greycliff CF Bold Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-line-height\":\"2em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-144843d7-55e6-46a3-937e-19747eb80898, rgb(255, 255, 255)))\"},children:\"\uD83D\uDCE3  Campfire is now available for HTC VIVE and Varjo XR headsets!\"})}),className:\"framer-197fpl6\",fonts:[\"CUSTOM;Greycliff CF Bold\"],layoutDependency:layoutDependency,layoutId:\"PYYqD7vYh\",style:{\"--extracted-r6o4lv\":\"var(--token-144843d7-55e6-46a3-937e-19747eb80898, rgb(255, 255, 255))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({sLQJfMUb5:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO0dyZXljbGlmZiBDRiBCb2xk\",\"--framer-font-family\":'\"Greycliff CF Bold\", \"Greycliff CF Bold Placeholder\", sans-serif',\"--framer-font-size\":\"11px\",\"--framer-line-height\":\"2em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-144843d7-55e6-46a3-937e-19747eb80898, rgb(255, 255, 255)))\"},children:\"\uD83D\uDCE3  Campfire is now available for HTC VIVE and Varjo XR headsets!\"})})}},baseVariant,gestureVariant)})})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-4dYUk.framer-17frmm, .framer-4dYUk .framer-17frmm { display: block; }\",\".framer-4dYUk.framer-zruvyi { align-content: center; align-items: center; cursor: pointer; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 3px; height: 50px; justify-content: center; overflow: visible; padding: 20px 20px 20px 25px; position: relative; text-decoration: none; width: 1280px; }\",\".framer-4dYUk .framer-197fpl6 { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-4dYUk.framer-zruvyi { gap: 0px; } .framer-4dYUk.framer-zruvyi > * { margin: 0px; margin-left: calc(3px / 2); margin-right: calc(3px / 2); } .framer-4dYUk.framer-zruvyi > :first-child { margin-left: 0px; } .framer-4dYUk.framer-zruvyi > :last-child { margin-right: 0px; } }\",\".framer-4dYUk.framer-v-cxlvae.framer-zruvyi { gap: 1px; overflow: hidden; padding: 0px; width: 390px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-4dYUk.framer-v-cxlvae.framer-zruvyi { gap: 0px; } .framer-4dYUk.framer-v-cxlvae.framer-zruvyi > * { margin: 0px; margin-left: calc(1px / 2); margin-right: calc(1px / 2); } .framer-4dYUk.framer-v-cxlvae.framer-zruvyi > :first-child { margin-left: 0px; } .framer-4dYUk.framer-v-cxlvae.framer-zruvyi > :last-child { margin-right: 0px; } }\",'.framer-4dYUk[data-hide-scrollbars=\"true\"]::-webkit-scrollbar, .framer-4dYUk [data-hide-scrollbars=\"true\"]::-webkit-scrollbar { width: 0px; height: 0px; }','.framer-4dYUk[data-hide-scrollbars=\"true\"]::-webkit-scrollbar-thumb, .framer-4dYUk [data-hide-scrollbars=\"true\"]::-webkit-scrollbar-thumb { background: transparent; }','.framer-4dYUk[data-hide-scrollbars=\"true\"], .framer-4dYUk [data-hide-scrollbars=\"true\"] { scrollbar-width: none; }','.framer-4dYUk[data-border=\"true\"]::after, .framer-4dYUk [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 50\n * @framerIntrinsicWidth 1280\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]},\"sLQJfMUb5\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerVariables {\"I2S5sUvA5\":\"click\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const Framerqs6S8v90b=withCSS(Component,css,\"framer-4dYUk\");export default Framerqs6S8v90b;Framerqs6S8v90b.displayName=\"Update\";Framerqs6S8v90b.defaultProps={height:50,width:1280};addPropertyControls(Framerqs6S8v90b,{variant:{options:[\"mk33AzhUu\",\"sLQJfMUb5\"],optionTitles:[\"Desktop\",\"Phone\"],title:\"Variant\",type:ControlType.Enum},I2S5sUvA5:{title:\"Click\",type:ControlType.EventHandler}});addFonts(Framerqs6S8v90b,[{explicitInter:true,fonts:[{family:\"Greycliff CF Bold\",source:\"custom\",url:\"https://framerusercontent.com/assets/NXe34Q7kzo7ZvEqMIZl0PPLixGw.woff2\"}]}],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"Framerqs6S8v90b\",\"slots\":[],\"annotations\":{\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"sLQJfMUb5\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerIntrinsicWidth\":\"1280\",\"framerDisplayContentsDiv\":\"false\",\"framerVariables\":\"{\\\"I2S5sUvA5\\\":\\\"click\\\"}\",\"framerContractVersion\":\"1\",\"framerComponentViewportWidth\":\"true\",\"framerImmutableVariables\":\"true\",\"framerIntrinsicHeight\":\"50\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./qs6S8v90b.map", "import{jsx as _jsx}from\"react/jsx-runtime\";import{addPropertyControls,ControlType,useIsInCurrentNavigationTarget}from\"framer\";import{isMotionValue,useInView}from\"framer-motion\";import{borderRadiusControl,defaultEvents,useIsBrowserSafari,useIsOnCanvas,useOnEnter,useOnExit,useRadius}from\"https://framer.com/m/framer/default-utils.js@^0.45.0\";import{memo,useCallback,useEffect,useMemo,useRef,useState}from\"react\";var ObjectFitType;(function(ObjectFitType){ObjectFitType[\"Fill\"]=\"fill\";ObjectFitType[\"Contain\"]=\"contain\";ObjectFitType[\"Cover\"]=\"cover\";ObjectFitType[\"None\"]=\"none\";ObjectFitType[\"ScaleDown\"]=\"scale-down\";})(ObjectFitType||(ObjectFitType={}));var SrcType;(function(SrcType){SrcType[\"Video\"]=\"Upload\";SrcType[\"Url\"]=\"URL\";})(SrcType||(SrcType={}));// Reduce renders\nfunction getProps(props){const{width,height,topLeft,topRight,bottomRight,bottomLeft,id,children,...rest}=props;return rest;}/**\n * VIDEO\n *\n * @framerIntrinsicWidth 200\n * @framerIntrinsicHeight 112\n *\n * @framerSupportedLayoutWidth fixed\n * @framerSupportedLayoutHeight any-prefer-fixed\n */export function Video(props){const newProps=getProps(props);return /*#__PURE__*/_jsx(VideoMemo,{...newProps});}function usePlaybackControls(videoRef){const isInCurrentNavigationTarget=useIsInCurrentNavigationTarget();const requestingPlay=useRef(false);const setProgress=useCallback(rawProgress=>{if(!videoRef.current)return;const newProgress=(rawProgress===1?.999:rawProgress)*videoRef.current.duration;const isAlreadySet=Math.abs(videoRef.current.currentTime-newProgress)<.1;if(videoRef.current.duration>0&&!isAlreadySet){videoRef.current.currentTime=newProgress;}},[]);const play=useCallback(()=>{const isPlaying=videoRef.current.currentTime>0&&videoRef.current.onplaying&&!videoRef.current.paused&&!videoRef.current.ended&&videoRef.current.readyState>videoRef.current.HAVE_CURRENT_DATA;if(!isPlaying&&videoRef.current&&!requestingPlay.current&&isInCurrentNavigationTarget){requestingPlay.current=true;videoRef.current.play().catch(e=>{})// It's likely fine, swallow error\n.finally(()=>requestingPlay.current=false);}},[]);const pause=useCallback(()=>{if(!videoRef.current||requestingPlay.current)return;videoRef.current.pause();},[]);return{play,pause,setProgress};}function useAutoplayBehavior({playingProp,muted,loop,playsinline,controls}){const[initialPlayingProp]=useState(()=>playingProp);const[hasPlayingPropChanged,setHasPlayingPropChanged]=useState(false);if(playingProp!==initialPlayingProp&&!hasPlayingPropChanged){setHasPlayingPropChanged(true);}const behavesAsGif=// passing `playing === true` on mount indicates that the video should\n// autoplay, like a GIF\ninitialPlayingProp&&muted&&loop&&playsinline&&!controls&&// Some users of the <Video> component use it by wrapping it with\n// another smart component and adding their own controls on top. (The\n// controls use transitions to control the video: e.g., when clicking\n// the play button, the smart component will transition to a state with\n// <Video playing={true} />.) In this case, we don't want the video to\n// behave as a gif, as it will be weird if the video suddenly started\n// acting as such (and auto-pausing when leaving the viewport) as soon\n// as the site visitor mutes it and clicks \u201CPlay\u201D.\n!hasPlayingPropChanged;let autoplay;if(behavesAsGif)autoplay=\"on-viewport\";else if(initialPlayingProp)autoplay=\"on-mount\";else autoplay=\"no-autoplay\";return autoplay;}/**\n * The Video component has some effects that sync the video element with props\n * like `startTime`, `progress`, etc. React calls these effects whenever these\n * props change. However, it also calls them on the first mount, and this is\n * troublesome \u2013 if we\u2019re doing SSR, and the user changed the video state before\n * the video was hydrated, the initial `useEffect` call will reset the video\n * state. To avoid this, we use this flag.\n */let isMountedAndReadyForProgressChanges=false;const VideoMemo=/*#__PURE__*/memo(function VideoInner(props){const{srcType,srcFile,srcUrl,playing:playingProp,muted,playsinline,controls,progress,objectFit,backgroundColor,onSeeked,onPause,onPlay,onEnd,onClick,onMouseEnter,onMouseLeave,onMouseDown,onMouseUp,poster,posterEnabled,startTime:startTimeProp,volume,loop}=props;const videoRef=useRef();const isSafari=useIsBrowserSafari();const wasPausedOnLeave=useRef(null);const wasEndedOnLeave=useRef(null);const isOnCanvas=useIsOnCanvas();const borderRadius=useRadius(props);// Hard-coding `autoplayBehavior` and `isInViewport` when on canvas as a\n// tiny perf optimization. isOnCanvas won\u2019t change through the lifecycle of\n// the component, so using these hooks conditionally should be safe\nconst autoplayBehavior=isOnCanvas?\"no-autoplay\":useAutoplayBehavior({playingProp,muted,loop,playsinline,controls});const isInViewport=isOnCanvas?true:useInView(videoRef);// Video elements behave oddly at 100% duration\nconst startTime=startTimeProp===100?99.9:startTimeProp;const{play,pause,setProgress}=usePlaybackControls(videoRef);// Pause/play via props\nuseEffect(()=>{if(isOnCanvas)return;if(playingProp)play();else pause();},[playingProp]);// Pause/play via viewport\nuseEffect(()=>{if(isOnCanvas)return;if(autoplayBehavior!==\"on-viewport\")return;if(isInViewport)play();else pause();},[autoplayBehavior,isInViewport]);// Allow scrubbling via progress prop\n// 1) Handle cases when the progress prop itself changes\nuseEffect(()=>{if(!isMountedAndReadyForProgressChanges){isMountedAndReadyForProgressChanges=true;return;}const rawProgressValue=isMotionValue(progress)?progress.get():(progress!==null&&progress!==void 0?progress:0)*.01;setProgress(// When the progress value exists (e.g. <Video startTime={10}\n// progress={50} />), we respect the `progress` value over\n// `startTime`, even if `startTime` changes. That\u2019s because\n// `startTime` == start == changing it shouldn\u2019t affect the current\n// progress\n(rawProgressValue!==null&&rawProgressValue!==void 0?rawProgressValue:0)||// Then why fall back to `startTime` when `progress` doesn\u2019t exist,\n// you might ask? Now, that\u2019s for\n// - canvas UX: we want the video progress to change when the user\n//   is scrobbling the \u201CStart Time\u201D in component settings.\n// - backwards compatibility: maybe some users *are* scrobbling\n//   using `startTime` instead of `progress`? We don\u2019t know, and it\n//   always supported it, so let\u2019s not break it\n(startTime!==null&&startTime!==void 0?startTime:0)/100);},[startTime,srcFile,srcUrl,progress]);// 2) Handle cases when the motion value inside the progress prop changes\nuseEffect(()=>{if(!isMotionValue(progress))return;return progress.on(\"change\",value=>setProgress(value));},[progress]);// (Prototyping) Checking if we need to play on navigation enter\nuseOnEnter(()=>{if(wasPausedOnLeave.current===null)return;if(videoRef.current){// if (restartOnEnter) setProgress(0)\nif(!wasEndedOnLeave&&loop||!wasPausedOnLeave.current)play();}});// (Prototyping) Pausing & saving playing state on navigation exit\nuseOnExit(()=>{if(videoRef.current){wasEndedOnLeave.current=videoRef.current.ended;wasPausedOnLeave.current=videoRef.current.paused;pause();}});const src=useMemo(()=>{let fragment=\"\";// if (\n//     startTime > 0 &&\n//     videoRef.current &&\n//     !isNaN(videoRef.current.duration) &&\n//     !isOnCanvas\n// ) {\n//     console.log(startTime, videoRef.current.duration)\n//     fragment = `#t=${startTime * videoRef.current.duration}`\n// }\nif(srcType===\"URL\")return srcUrl+fragment;if(srcType===\"Upload\")return srcFile+fragment;},[srcType,srcFile,srcUrl,startTime]);// Autoplay via JS to work in Safari\nuseEffect(()=>{if(isSafari&&videoRef.current&&autoplayBehavior===\"on-mount\"){setTimeout(()=>play(),50);}},[]);// Volume Control\nuseEffect(()=>{if(videoRef.current&&!muted)videoRef.current.volume=(volume!==null&&volume!==void 0?volume:0)/100;},[volume]);// When video is ready, set start-time, then autoplay if needed\nconst handleReady=()=>{if(!videoRef.current)return;if(videoRef.current.currentTime<.3)setProgress((startTime!==null&&startTime!==void 0?startTime:0)*.01);if(autoplayBehavior===\"on-mount\")play();};return /*#__PURE__*/_jsx(\"video\",{onClick,onMouseEnter,onMouseLeave,onMouseDown,onMouseUp,src:src,loop:loop,ref:videoRef,onSeeked:e=>onSeeked===null||onSeeked===void 0?void 0:onSeeked(e),onPause:e=>onPause===null||onPause===void 0?void 0:onPause(e),onPlay:e=>onPlay===null||onPlay===void 0?void 0:onPlay(e),onEnded:e=>onEnd===null||onEnd===void 0?void 0:onEnd(e),autoPlay:autoplayBehavior===\"on-mount\",preload:autoplayBehavior!==\"on-mount\"&&posterEnabled?\"metadata\":\"auto\",poster:posterEnabled?poster:undefined,onLoadedData:handleReady,controls:controls,muted:isOnCanvas?true:muted,playsInline:playsinline,style:{cursor:!!onClick?\"pointer\":\"auto\",width:\"100%\",height:\"100%\",borderRadius,display:\"block\",objectFit:objectFit,backgroundColor:backgroundColor,objectPosition:\"50% 50%\"}});});Video.displayName=\"Video\";Video.defaultProps={srcType:\"URL\",srcUrl:\"https://assets.mixkit.co/videos/preview/mixkit-shining-sun-in-the-sky-surrounded-by-moving-clouds-31793-small.mp4\",srcFile:\"\",posterEnabled:false,controls:false,playing:true,loop:true,muted:true,playsinline:true,restartOnEnter:false,objectFit:\"cover\",backgroundColor:\"rgba(0,0,0,0)\",radius:0,volume:25,startTime:0};const groupsRegex=/[A-Z]{2,}|[A-Z][a-z]+|[a-z]+|[A-Z]|\\d+/gu;function capitalizeFirstLetter(value){return value.charAt(0).toUpperCase()+value.slice(1);}export function titleCase(value){const groups=value.match(groupsRegex)||[];return groups.map(capitalizeFirstLetter).join(\" \");}const objectFitOptions=[\"cover\",\"fill\",\"contain\",\"scale-down\",\"none\"];addPropertyControls(Video,{srcType:{type:ControlType.Enum,displaySegmentedControl:true,title:\"Source\",options:[\"URL\",\"Upload\"]},srcUrl:{type:ControlType.String,title:\"URL\",placeholder:\"../example.mp4\",hidden(props){return props.srcType===\"Upload\";},description:\"Hosted video file URL. For YouTube, use the YouTube component.\"},srcFile:{type:ControlType.File,title:\"File\",allowedFileTypes:[\"mp4\",\"webm\"],hidden(props){return props.srcType===\"URL\";}},playing:{type:ControlType.Boolean,title:\"Playing\",enabledTitle:\"Yes\",disabledTitle:\"No\"},posterEnabled:{type:ControlType.Boolean,title:\"Poster\",enabledTitle:\"Yes\",disabledTitle:\"No\"},poster:{type:ControlType.Image,title:\" \",hidden:({posterEnabled})=>!posterEnabled},backgroundColor:{type:ControlType.Color,title:\"Background\"},...borderRadiusControl,startTime:{title:\"Start Time\",type:ControlType.Number,min:0,max:100,step:.1,unit:\"%\"},loop:{type:ControlType.Boolean,title:\"Loop\",enabledTitle:\"Yes\",disabledTitle:\"No\"},objectFit:{type:ControlType.Enum,title:\"Fit\",options:objectFitOptions,optionTitles:objectFitOptions.map(titleCase)},// restartOnEnter: {\n//     type: ControlType.Boolean,\n//     title: \"On ReEnter\",\n//     enabledTitle: \"Restart\",\n//     disabledTitle: \"Resume\",\n// },\ncontrols:{type:ControlType.Boolean,title:\"Controls\",enabledTitle:\"Show\",disabledTitle:\"Hide\"},muted:{type:ControlType.Boolean,title:\"Muted\",enabledTitle:\"Yes\",disabledTitle:\"No\"},volume:{type:ControlType.Number,max:100,min:0,unit:\"%\",hidden:({muted})=>muted},onEnd:{type:ControlType.EventHandler},onSeeked:{type:ControlType.EventHandler},onPause:{type:ControlType.EventHandler},onPlay:{type:ControlType.EventHandler},...defaultEvents});\nexport const __FramerMetadata__ = {\"exports\":{\"Video\":{\"type\":\"reactComponent\",\"name\":\"Video\",\"slots\":[],\"annotations\":{\"framerSupportedLayoutHeight\":\"any-prefer-fixed\",\"framerIntrinsicHeight\":\"112\",\"framerSupportedLayoutWidth\":\"fixed\",\"framerContractVersion\":\"1\",\"framerIntrinsicWidth\":\"200\"}},\"VideoProps\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"titleCase\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Video.map", "// Generated by Framer (d31cd55)\nimport{jsx as _jsx}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,getPropertyControls,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{Video as Video1}from\"https://framerusercontent.com/modules/lRDHiNWNVWmE0lqtoVHP/K0mI40rrezffFjPjHAZX/Video.js\";import{Video}from\"https://framerusercontent.com/modules/lRDHiNWNVWmE0lqtoVHP/Z4QJ2YpzpVnWRfR6Ccgg/Video.js\";const VideoFonts=getFonts(Video);const Video1Controls=getPropertyControls(Video1);const cycleOrder=[\"ojgzu2z9z\",\"yZQ4IZFwn\"];const serializationHash=\"framer-ZoKnT\";const variantClassNames={ojgzu2z9z:\"framer-v-w67kh6\",yZQ4IZFwn:\"framer-v-11suwqy\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={bounce:.2,delay:0,duration:.4,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion(React.Fragment);const humanReadableVariantMap={Paused:\"yZQ4IZFwn\",Playing:\"ojgzu2z9z\"};const getProps=({height,id,videoFile,width,...props})=>{var _ref,_humanReadableVariantMap_props_variant,_ref1;return{...props,SMb3bc0ci:(_ref=videoFile!==null&&videoFile!==void 0?videoFile:props.SMb3bc0ci)!==null&&_ref!==void 0?_ref:\"https://framerusercontent.com/assets/04FQWDliCieNlkraFqW6i3DsPTg.mp4\",variant:(_ref1=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref1!==void 0?_ref1:\"ojgzu2z9z\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,SMb3bc0ci,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"ojgzu2z9z\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const ref1=React.useRef(null);const defaultLayoutId=React.useId();const sharedStyleClassNames=[];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(motion.div,{...restProps,...gestureHandlers,className:cx(serializationHash,...sharedStyleClassNames,\"framer-w67kh6\",className,classNames),\"data-framer-name\":\"Playing\",layoutDependency:layoutDependency,layoutId:\"ojgzu2z9z\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{...style},...addPropertyOverrides({yZQ4IZFwn:{\"data-framer-name\":\"Paused\"}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-87ltpp-container\",layoutDependency:layoutDependency,layoutId:\"GkzDRFkZU-container\",children:/*#__PURE__*/_jsx(Video,{backgroundColor:\"rgba(0, 0, 0, 0)\",borderRadius:0,bottomLeftRadius:0,bottomRightRadius:0,controls:false,height:\"100%\",id:\"GkzDRFkZU\",isMixedBorderRadius:false,layoutId:\"GkzDRFkZU\",loop:true,muted:true,objectFit:\"fill\",playing:true,posterEnabled:false,srcFile:SMb3bc0ci,srcType:\"Upload\",srcUrl:\"https://assets.mixkit.co/videos/preview/mixkit-shining-sun-in-the-sky-surrounded-by-moving-clouds-31793-small.mp4\",startTime:0,style:{width:\"100%\"},topLeftRadius:0,topRightRadius:0,volume:25,width:\"100%\",...addPropertyOverrides({yZQ4IZFwn:{playing:false}},baseVariant,gestureVariant)})})})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-ZoKnT.framer-dhm7f3, .framer-ZoKnT .framer-dhm7f3 { display: block; }\",\".framer-ZoKnT.framer-w67kh6 { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 610px; }\",\".framer-ZoKnT .framer-87ltpp-container { flex: none; height: auto; position: relative; width: 100%; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-ZoKnT.framer-w67kh6 { gap: 0px; } .framer-ZoKnT.framer-w67kh6 > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-ZoKnT.framer-w67kh6 > :first-child { margin-left: 0px; } .framer-ZoKnT.framer-w67kh6 > :last-child { margin-right: 0px; } }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 411.5\n * @framerIntrinsicWidth 610\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"yZQ4IZFwn\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerVariables {\"SMb3bc0ci\":\"videoFile\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FrameryDHIln484=withCSS(Component,css,\"framer-ZoKnT\");export default FrameryDHIln484;FrameryDHIln484.displayName=\"Video-Play-In-View\";FrameryDHIln484.defaultProps={height:411.5,width:610};addPropertyControls(FrameryDHIln484,{variant:{options:[\"ojgzu2z9z\",\"yZQ4IZFwn\"],optionTitles:[\"Playing\",\"Paused\"],title:\"Variant\",type:ControlType.Enum},SMb3bc0ci:(Video1Controls===null||Video1Controls===void 0?void 0:Video1Controls[\"srcFile\"])&&{...Video1Controls[\"srcFile\"],__defaultAssetReference:\"data:framer/asset-reference,04FQWDliCieNlkraFqW6i3DsPTg.mp4?originalFilename=apollo_video01.mp4\",description:undefined,hidden:undefined,title:\"Video-File\"}});addFonts(FrameryDHIln484,[{explicitInter:true,fonts:[]},...VideoFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FrameryDHIln484\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"yZQ4IZFwn\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerComponentViewportWidth\":\"true\",\"framerVariables\":\"{\\\"SMb3bc0ci\\\":\\\"videoFile\\\"}\",\"framerImmutableVariables\":\"true\",\"framerIntrinsicHeight\":\"411.5\",\"framerDisplayContentsDiv\":\"false\",\"framerIntrinsicWidth\":\"610\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./yDHIln484.map", "// Generated by Framer (4d21961)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,ComponentViewportProvider,Container,cx,GeneratedComponentContext,getFonts,getFontsFromSharedStyle,getLoadingLazyAtYPosition,Image,Link,PropertyOverrides,ResolveLinks,RichText,useComponentViewport,useCustomCursors,useHydratedBreakpointVariants,useIsOnFramerCanvas,useLocaleInfo,useRouteElementId,useRouter,withCSS,withVariantAppearEffect}from\"framer\";import{LayoutGroup,motion}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import{Video as Video1}from\"https://framerusercontent.com/modules/lRDHiNWNVWmE0lqtoVHP/7qT0r3So12155VV5Jq5x/Video.js\";import{Video}from\"https://framerusercontent.com/modules/lRDHiNWNVWmE0lqtoVHP/K0mI40rrezffFjPjHAZX/Video.js\";import LogoTicker from\"#framer/local/canvasComponent/hyA5KbLti/hyA5KbLti.js\";import Button from\"#framer/local/canvasComponent/ieJDRjPnG/ieJDRjPnG.js\";import FooterCTA from\"#framer/local/canvasComponent/J8bjUCBEl/J8bjUCBEl.js\";import FooterMenu from\"#framer/local/canvasComponent/qCztQkc1p/qCztQkc1p.js\";import Update from\"#framer/local/canvasComponent/qs6S8v90b/qs6S8v90b.js\";import VideoPlayInView from\"#framer/local/canvasComponent/yDHIln484/yDHIln484.js\";import TopNavbar from\"#framer/local/canvasComponent/zW3YxVSbU/zW3YxVSbU.js\";import*as sharedStyle from\"#framer/local/css/ffM_6BnAk/ffM_6BnAk.js\";import*as sharedStyle2 from\"#framer/local/css/qQLnKLqI9/qQLnKLqI9.js\";import*as sharedStyle1 from\"#framer/local/css/sPuPomUNN/sPuPomUNN.js\";import*as sharedStyle3 from\"#framer/local/css/sUW7dEnZD/sUW7dEnZD.js\";import metadataProvider from\"#framer/local/webPageMetadata/augiA20Il/augiA20Il.js\";const UpdateFonts=getFonts(Update);const TopNavbarFonts=getFonts(TopNavbar);const TopNavbarWithVariantAppearEffect=withVariantAppearEffect(TopNavbar);const ButtonFonts=getFonts(Button);const VideoFonts=getFonts(Video);const LogoTickerFonts=getFonts(LogoTicker);const Video1Fonts=getFonts(Video1);const VideoPlayInViewFonts=getFonts(VideoPlayInView);const VideoPlayInViewWithVariantAppearEffect=withVariantAppearEffect(VideoPlayInView);const FooterCTAFonts=getFonts(FooterCTA);const FooterMenuFonts=getFonts(FooterMenu);const breakpoints={BweP2MW2F:\"(max-width: 999px)\",WQLkyLRf1:\"(min-width: 1000px)\"};const isBrowser=()=>typeof document!==\"undefined\";const serializationHash=\"framer-BZtSe\";const variantClassNames={BweP2MW2F:\"framer-v-m36waq\",WQLkyLRf1:\"framer-v-72rtr7\"};const transformTemplate1=(_,t)=>`translate(-50%, -50%) ${t}`;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:\"BweP2MW2F\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"WQLkyLRf1\"};};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const fallbackRef=useRef(null);const refBinding=ref??fallbackRef;const defaultLayoutId=React.useId();const{activeLocale,setLocale}=useLocaleInfo();const componentViewport=useComponentViewport();const{style,className,layoutId,variant,...restProps}=getProps(props);React.useEffect(()=>{const metadata=metadataProvider(undefined,activeLocale);if(metadata.robots){let robotsTag=document.querySelector('meta[name=\"robots\"]');if(robotsTag){robotsTag.setAttribute(\"content\",metadata.robots);}else{robotsTag=document.createElement(\"meta\");robotsTag.setAttribute(\"name\",\"robots\");robotsTag.setAttribute(\"content\",metadata.robots);document.head.appendChild(robotsTag);}}},[undefined,activeLocale]);React.useInsertionEffect(()=>{const metadata=metadataProvider(undefined,activeLocale);document.title=metadata.title||\"\";if(metadata.viewport){document.querySelector('meta[name=\"viewport\"]')?.setAttribute(\"content\",metadata.viewport);}},[undefined,activeLocale]);const[baseVariant,hydratedBaseVariant]=useHydratedBreakpointVariants(variant,breakpoints,false);const gestureVariant=undefined;const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className,sharedStyle2.className,sharedStyle3.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const router=useRouter();const isDisplayed=()=>{if(!isBrowser())return true;if(baseVariant===\"BweP2MW2F\")return false;return true;};const elementId=useRouteElementId(\"DHOnIsDfe\");const ref1=React.useRef(null);const isDisplayed1=()=>{if(!isBrowser())return true;if(baseVariant===\"BweP2MW2F\")return true;return false;};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-3e8721f8-030e-4145-85ce-b2f9d8bfb4d8, rgb(21, 21, 21)); }\"}),/*#__PURE__*/_jsxs(motion.div,{...restProps,className:cx(scopingClassNames,\"framer-72rtr7\",className),ref:refBinding,style:{...style},children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{BweP2MW2F:{width:`min(${componentViewport?.width||\"100vw\"} * 1.0026, ${componentViewport?.width||\"100vw\"})`,y:(componentViewport?.y||0)+0+80}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:50,width:componentViewport?.width||\"100vw\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-fevon7-container\",nodeId:\"GC_Otyz0k\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{BweP2MW2F:{variant:\"sLQJfMUb5\"}},children:/*#__PURE__*/_jsx(Update,{height:\"100%\",id:\"GC_Otyz0k\",layoutId:\"GC_Otyz0k\",style:{height:\"100%\",maxWidth:\"100%\",width:\"100%\"},variant:\"mk33AzhUu\",width:\"100%\"})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{BweP2MW2F:{width:`calc(${componentViewport?.width||\"100vw\"} * 1.0026)`,y:(componentViewport?.y||0)+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:80,width:componentViewport?.width||\"100vw\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-bk3vt0-container\",\"data-framer-name\":\"Top Navbar\",name:\"Top Navbar\",nodeId:\"WOB2LVPTo\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{BweP2MW2F:{__framer__variantAppearEffectEnabled:undefined,variant:\"A3BXHcItP\"}},children:/*#__PURE__*/_jsx(TopNavbarWithVariantAppearEffect,{__framer__animateOnce:false,__framer__scrollDirection:{direction:\"down\"},__framer__threshold:.5,__framer__variantAppearEffectEnabled:true,height:\"100%\",id:\"WOB2LVPTo\",layoutId:\"WOB2LVPTo\",name:\"Top Navbar\",style:{height:\"100%\",width:\"100%\"},variant:\"gS95kX3y3\",width:\"100%\"})})})})}),/*#__PURE__*/_jsx(\"header\",{className:\"framer-wb3x52\",\"data-framer-name\":\"New Hero\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-y13qhh\",\"data-framer-name\":\"Container\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-l2avu1\",\"data-framer-name\":\"Copy\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{BweP2MW2F:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{className:\"framer-styles-preset-a6150c\",\"data-styles-preset\":\"ffM_6BnAk\",style:{\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Visual prototypes anyone can create\"})}),fonts:[\"Inter\"]}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"Q1VTVE9NO0dyZXljbGlmZiBDRiBFeHRyYSBCb2xk\",\"--framer-font-family\":'\"Greycliff CF Extra Bold\", \"Greycliff CF Extra Bold Placeholder\", sans-serif',\"--framer-font-size\":\"50px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Visual prototypes anyone can create\"})}),className:\"framer-1nofalc\",fonts:[\"CUSTOM;Greycliff CF Extra Bold\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{BweP2MW2F:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0dyZXljbGlmZiBDRiBMaWdodA==\",\"--framer-font-family\":'\"Greycliff CF Light\", \"Greycliff CF Light Placeholder\", sans-serif',\"--framer-font-size\":\"17px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-c9f9d079-8650-4f43-aeac-c55df0cf1d61, rgb(199, 205, 212))\"},children:\"Campfire makes it surprisingly easy for anyone to see CAD at 1:1 scale and review with others \u2014 so you can find and fix issues before they become expensive headaches.\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0dyZXljbGlmZiBDRiBMaWdodA==\",\"--framer-font-family\":'\"Greycliff CF Light\", \"Greycliff CF Light Placeholder\", sans-serif',\"--framer-font-size\":\"17px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-c9f9d079-8650-4f43-aeac-c55df0cf1d61, rgb(199, 205, 212))\"},children:\"Campfire makes it surprisingly easy for anyone to see CAD at 1:1 scale and review with others \u2014 so you can find and fix issues before they become expensive headaches.\"})}),className:\"framer-ssezar\",fonts:[\"CUSTOM;Greycliff CF Light\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-13ebhyq\",\"data-framer-name\":\"Buttons\",children:[/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"TGArvbcYt\"},implicitPathVariables:undefined},{href:{webPageId:\"TGArvbcYt\"},implicitPathVariables:undefined}],children:resolvedLinks=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{BweP2MW2F:{width:`max((min(${componentViewport?.width||\"100vw\"}, 1200px) - 85px) / 2, 1px)`,y:(componentViewport?.y||0)+0+130+0+0+40+0+0+233.1+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:40,children:/*#__PURE__*/_jsx(Container,{className:\"framer-18cmsri-container\",nodeId:\"y5OYyLIyp\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{BweP2MW2F:{lomDqnCLl:resolvedLinks[1],style:{height:\"100%\",width:\"100%\"}}},children:/*#__PURE__*/_jsx(Button,{COY7CEjcB:false,height:\"100%\",id:\"y5OYyLIyp\",layoutId:\"y5OYyLIyp\",lomDqnCLl:resolvedLinks[0],style:{height:\"100%\"},variant:\"WgBGozkvH\",w70BYjvZb:\"Get a Demo\",width:\"100%\",Z5umZTsLL:\"PlayArrow\"})})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{BweP2MW2F:{width:`max((min(${componentViewport?.width||\"100vw\"}, 1200px) - 85px) / 2, 1px)`,y:(componentViewport?.y||0)+0+130+0+0+40+0+0+233.1+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:40,children:/*#__PURE__*/_jsx(Container,{className:\"framer-15r6cjx-container\",nodeId:\"RrHmZvX_s\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{BweP2MW2F:{style:{height:\"100%\",width:\"100%\"}}},children:/*#__PURE__*/_jsx(Button,{COY7CEjcB:false,height:\"100%\",id:\"RrHmZvX_s\",layoutId:\"RrHmZvX_s\",lomDqnCLl:\"app.campfire3d.com/sup\",style:{height:\"100%\"},variant:\"KJFFTUvAG\",w70BYjvZb:\"Try for Free\",width:\"100%\",Z5umZTsLL:\"PlayArrow\"})})})})})]})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-fts6ze\",\"data-framer-name\":\"Visual\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-mq7rrd-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"MljjQ9zN0\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{BweP2MW2F:{borderRadius:30,bottomLeftRadius:30,bottomRightRadius:30,topLeftRadius:30,topRightRadius:30}},children:/*#__PURE__*/_jsx(Video,{backgroundColor:\"rgba(0, 0, 0, 0)\",borderRadius:50,bottomLeftRadius:50,bottomRightRadius:50,controls:false,height:\"100%\",id:\"MljjQ9zN0\",isMixedBorderRadius:false,layoutId:\"MljjQ9zN0\",loop:true,muted:true,objectFit:\"fill\",playing:true,posterEnabled:false,srcFile:\"https://framerusercontent.com/assets/amjGc2samoDSzGjeifLeAEqk0.mp4\",srcType:\"Upload\",srcUrl:\"https://campfire3d.com/files/heroVideo2.mp4\",startTime:0,style:{height:\"100%\",width:\"100%\"},topLeftRadius:50,topRightRadius:50,volume:25,width:\"100%\"})})})})})]})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{BweP2MW2F:{height:200,y:(componentViewport?.y||0)+0+747.1}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:125,width:`calc(${componentViewport?.width||\"100vw\"} * 0.9)`,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1qkaqog-container\",nodeId:\"ii2bkf51e\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{BweP2MW2F:{style:{width:\"100%\"},variant:\"WvqUzCUCN\"}},children:/*#__PURE__*/_jsx(LogoTicker,{height:\"100%\",id:\"ii2bkf51e\",layoutId:\"ii2bkf51e\",style:{height:\"100%\",width:\"100%\"},variant:\"WB4YEPkdI\",width:\"100%\"})})})})}),/*#__PURE__*/_jsxs(\"section\",{className:\"framer-jr49sr\",\"data-framer-name\":\"New Problem\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1570e7z\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"Q1VTVE9NO0dyZXljbGlmZiBDRiBFeHRyYSBCb2xk\",\"--framer-font-family\":'\"Greycliff CF Extra Bold\", \"Greycliff CF Extra Bold Placeholder\", sans-serif',\"--framer-font-size\":\"35px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-144843d7-55e6-46a3-937e-19747eb80898, rgb(255, 255, 255))\"},children:\"This is your CAD\"})}),className:\"framer-1oinb16\",fonts:[\"CUSTOM;Greycliff CF Extra Bold\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-12dcrks\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{BweP2MW2F:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+947.1+50+0+20+62+0),pixelHeight:743,pixelWidth:1203,positionX:\"center\",positionY:\"center\",sizes:\"350.0787px\",src:\"https://framerusercontent.com/images/kkuqActZenDPIyNJHy8ltetB8kE.png\",srcSet:\"https://framerusercontent.com/images/kkuqActZenDPIyNJHy8ltetB8kE.png?scale-down-to=512 512w,https://framerusercontent.com/images/kkuqActZenDPIyNJHy8ltetB8kE.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/kkuqActZenDPIyNJHy8ltetB8kE.png 1203w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",pixelHeight:743,pixelWidth:1203,positionX:\"center\",positionY:\"center\",sizes:\"350.0787px\",src:\"https://framerusercontent.com/images/kkuqActZenDPIyNJHy8ltetB8kE.png\",srcSet:\"https://framerusercontent.com/images/kkuqActZenDPIyNJHy8ltetB8kE.png?scale-down-to=512 512w,https://framerusercontent.com/images/kkuqActZenDPIyNJHy8ltetB8kE.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/kkuqActZenDPIyNJHy8ltetB8kE.png 1203w\"},className:\"framer-qdqqa0\"})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0dyZXljbGlmZiBDRiBMaWdodA==\",\"--framer-font-family\":'\"Greycliff CF Light\", \"Greycliff CF Light Placeholder\", sans-serif',\"--framer-font-size\":\"17px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-c9f9d079-8650-4f43-aeac-c55df0cf1d61, rgb(199, 205, 212))\"},children:\"No matter how you view it, CAD on a screen is hard for the human brain to process. So issues get caught late \u2014 wrecking your budget, your schedule, or both.\"})}),className:\"framer-109g0s8\",fonts:[\"CUSTOM;Greycliff CF Light\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-yk52pi\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"Q1VTVE9NO0dyZXljbGlmZiBDRiBFeHRyYSBCb2xk\",\"--framer-font-family\":'\"Greycliff CF Extra Bold\", \"Greycliff CF Extra Bold Placeholder\", sans-serif',\"--framer-font-size\":\"35px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-144843d7-55e6-46a3-937e-19747eb80898, rgb(255, 255, 255))\"},children:\"This is your CAD in Campfire\"})}),className:\"framer-13g0b9d\",fonts:[\"CUSTOM;Greycliff CF Extra Bold\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(\"div\",{background:{alt:\"\",fit:\"fill\"},className:\"framer-1kw6ahk\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1v7sb0a-container\",isModuleExternal:true,nodeId:\"JnVwoJp9V\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Video1,{backgroundColor:\"rgba(0, 0, 0, 0)\",borderRadius:50,bottomLeftRadius:50,bottomRightRadius:50,controls:false,height:\"100%\",id:\"JnVwoJp9V\",isMixedBorderRadius:false,layoutId:\"JnVwoJp9V\",loop:true,muted:true,objectFit:\"cover\",playing:true,posterEnabled:false,srcFile:\"https://framerusercontent.com/assets/aC8zoWZBwg3sMAjfiHx1FFLUykQ.mp4\",srcType:\"Upload\",srcUrl:\"\",startTime:0,style:{height:\"100%\",width:\"100%\"},topLeftRadius:50,topRightRadius:50,volume:25,width:\"100%\"})})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0dyZXljbGlmZiBDRiBMaWdodA==\",\"--framer-font-family\":'\"Greycliff CF Light\", \"Greycliff CF Light Placeholder\", sans-serif',\"--framer-font-size\":\"17px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-c9f9d079-8650-4f43-aeac-c55df0cf1d61, rgb(199, 205, 212))\"},children:\"Visual prototypes make immediate sense to everyone. So cross-functional reviews are more productive, and you can solve problems before they actually exist.\"})}),className:\"framer-h16baz\",fonts:[\"CUSTOM;Greycliff CF Light\"],verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsx(\"section\",{className:\"framer-gxzj9i\",\"data-framer-name\":\"Quote Hero\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-p13222\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{BweP2MW2F:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"Q1VTVE9NO0dyZXljbGlmZiBDRiBCb2xk\",\"--framer-font-family\":'\"Greycliff CF Bold\", \"Greycliff CF Bold Placeholder\", sans-serif',\"--framer-font-size\":\"35px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-144843d7-55e6-46a3-937e-19747eb80898, rgb(255, 255, 255))\"},children:\"Get better feedback, from more people, more often\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"Q1VTVE9NO0dyZXljbGlmZiBDRiBCb2xk\",\"--framer-font-family\":'\"Greycliff CF Bold\", \"Greycliff CF Bold Placeholder\", sans-serif',\"--framer-font-size\":\"45px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-144843d7-55e6-46a3-937e-19747eb80898, rgb(255, 255, 255))\"},children:\"Get better feedback, from more people, more often\"})}),className:\"framer-1woe6pr\",fonts:[\"CUSTOM;Greycliff CF Bold\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-txmun1\",\"data-framer-name\":\"Quote\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-7lsrdx\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{BweP2MW2F:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0dyZXljbGlmZiBDRiBMaWdodA==\",\"--framer-font-family\":'\"Greycliff CF Light\", \"Greycliff CF Light Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-c9f9d079-8650-4f43-aeac-c55df0cf1d61, rgb(199, 205, 212))\"},children:'\"We engaged with Campfire because it\u2019s hands down the easiest-to-use solution I\u2019ve seen. Campfire opens the door to a much broader set of use cases that we couldn\u2019t previously address.\"'})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0dyZXljbGlmZiBDRiBMaWdodA==\",\"--framer-font-family\":'\"Greycliff CF Light\", \"Greycliff CF Light Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-c9f9d079-8650-4f43-aeac-c55df0cf1d61, rgb(199, 205, 212))\"},children:'\"We engaged with Campfire because it\u2019s hands down the easiest-to-use solution I\u2019ve seen. Campfire opens the door to a much broader set of use cases that we couldn\u2019t previously address.\"'})}),className:\"framer-1i6w4hs\",fonts:[\"CUSTOM;Greycliff CF Light\"],verticalAlignment:\"top\",withExternalLayout:true})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1tgg0x2\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1pkjvvy\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{BweP2MW2F:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+2116.1+40+0+92+20+175+10+0+0),pixelHeight:362,pixelWidth:1340,positionX:\"center\",positionY:\"center\",sizes:\"186px\",src:\"https://framerusercontent.com/images/kFKJ8fOxwXp26sTO3GEv61eZLjU.png\",srcSet:\"https://framerusercontent.com/images/kFKJ8fOxwXp26sTO3GEv61eZLjU.png?scale-down-to=512 512w,https://framerusercontent.com/images/kFKJ8fOxwXp26sTO3GEv61eZLjU.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/kFKJ8fOxwXp26sTO3GEv61eZLjU.png 1340w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",pixelHeight:362,pixelWidth:1340,positionX:\"center\",positionY:\"center\",sizes:\"186px\",src:\"https://framerusercontent.com/images/kFKJ8fOxwXp26sTO3GEv61eZLjU.png\",srcSet:\"https://framerusercontent.com/images/kFKJ8fOxwXp26sTO3GEv61eZLjU.png?scale-down-to=512 512w,https://framerusercontent.com/images/kFKJ8fOxwXp26sTO3GEv61eZLjU.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/kFKJ8fOxwXp26sTO3GEv61eZLjU.png 1340w\"},className:\"framer-dv9byh\"})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1up47iz\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{BweP2MW2F:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0dyZXljbGlmZiBDRiBEZW1pIEJvbGQ=\",\"--framer-font-family\":'\"Greycliff CF Demi Bold\", \"Greycliff CF Demi Bold Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-line-height\":\"1em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-933382a9-a1f8-4980-b9bb-1560844e061f, rgb(248, 69, 54))\"},children:\"Ryan Wheeler\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0dyZXljbGlmZiBDRiBEZW1pIEJvbGQ=\",\"--framer-font-family\":'\"Greycliff CF Demi Bold\", \"Greycliff CF Demi Bold Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-line-height\":\"1em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-933382a9-a1f8-4980-b9bb-1560844e061f, rgb(248, 69, 54))\"},children:\"Ryan Wheeler\"})}),className:\"framer-1jmo9e3\",fonts:[\"CUSTOM;Greycliff CF Demi Bold\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{BweP2MW2F:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0dyZXljbGlmZiBDRiBEZW1pIEJvbGQ=\",\"--framer-font-family\":'\"Greycliff CF Demi Bold\", \"Greycliff CF Demi Bold Placeholder\", sans-serif',\"--framer-font-size\":\"17px\",\"--framer-line-height\":\"1em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-c9f9d079-8650-4f43-aeac-c55df0cf1d61, rgb(199, 205, 212))\"},children:\"Senior Fellow, Advanced Visualizations\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0dyZXljbGlmZiBDRiBEZW1pIEJvbGQ=\",\"--framer-font-family\":'\"Greycliff CF Demi Bold\", \"Greycliff CF Demi Bold Placeholder\", sans-serif',\"--framer-font-size\":\"17px\",\"--framer-line-height\":\"1em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-c9f9d079-8650-4f43-aeac-c55df0cf1d61, rgb(199, 205, 212))\"},children:\"Senior Fellow, Advanced Visualizations\"})}),className:\"framer-i61q15\",fonts:[\"CUSTOM;Greycliff CF Demi Bold\"],verticalAlignment:\"top\",withExternalLayout:true})})]})]})]})]})}),/*#__PURE__*/_jsxs(\"section\",{className:\"framer-1yfrpy5\",\"data-framer-name\":\"Value Prop Pillars\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-wqlyrz\",\"data-framer-name\":\"Section 1\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-7sknjj\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{BweP2MW2F:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"Q1VTVE9NO0dyZXljbGlmZiBDRiBFeHRyYSBCb2xk\",\"--framer-font-family\":'\"Greycliff CF Extra Bold\", \"Greycliff CF Extra Bold Placeholder\", sans-serif',\"--framer-font-size\":\"35px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Communicate about 3D in a way that feels natural\"})}),fonts:[\"CUSTOM;Greycliff CF Extra Bold\"]}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-vpvhg3\",\"data-styles-preset\":\"sPuPomUNN\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Communicate about 3D in a way that feels natural\"})}),className:\"framer-1fpekgj\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1kh546i\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1tzz21j\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{className:\"framer-styles-preset-10sjro\",\"data-styles-preset\":\"qQLnKLqI9\",style:{\"--framer-text-color\":\"var(--token-933382a9-a1f8-4980-b9bb-1560844e061f, rgb(248, 69, 54))\"},children:[\"\u2713\",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-9aa93da0-af3c-4480-b3da-9ed37528096c, rgb(137, 139, 149))\"},children:\" \"})]})}),className:\"framer-1qqi7os\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-10sjro\",\"data-styles-preset\":\"qQLnKLqI9\",style:{\"--framer-text-color\":\"var(--token-c9f9d079-8650-4f43-aeac-c55df0cf1d61, rgb(199, 205, 212))\"},children:\"Campfire automatically places everyone so you're gathered in a circle around the scene content\"})}),className:\"framer-1gf1xh6\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-15y0eb1\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{className:\"framer-styles-preset-10sjro\",\"data-styles-preset\":\"qQLnKLqI9\",style:{\"--framer-text-color\":\"var(--token-933382a9-a1f8-4980-b9bb-1560844e061f, rgb(248, 69, 54))\"},children:[\"\u2713\",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-9aa93da0-af3c-4480-b3da-9ed37528096c, rgb(137, 139, 149))\"},children:\" \"})]})}),className:\"framer-5rjtru\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-10sjro\",\"data-styles-preset\":\"qQLnKLqI9\",style:{\"--framer-text-color\":\"var(--token-c9f9d079-8650-4f43-aeac-c55df0cf1d61, rgb(199, 205, 212))\"},children:\"See where other users are as they move around the scene with you\"})}),className:\"framer-gu69k\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-zk7ciw\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{className:\"framer-styles-preset-10sjro\",\"data-styles-preset\":\"qQLnKLqI9\",style:{\"--framer-text-color\":\"var(--token-933382a9-a1f8-4980-b9bb-1560844e061f, rgb(248, 69, 54))\"},children:[\"\u2713\",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-9aa93da0-af3c-4480-b3da-9ed37528096c, rgb(137, 139, 149))\"},children:\" \"})]})}),className:\"framer-s2ql0a\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-10sjro\",\"data-styles-preset\":\"qQLnKLqI9\",style:{\"--framer-text-color\":\"var(--token-c9f9d079-8650-4f43-aeac-c55df0cf1d61, rgb(199, 205, 212))\"},children:\"Instantly remove ambiguity using intuitive tools like the laser pointer\"})}),className:\"framer-9g3bvx\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})]})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{BweP2MW2F:{background:{alt:\"A 3D model of a complex mechanical component being reviewed by 4 people on different devices. Two people are wearing XR headsets, one is represented by a digital avatar, and one is represented by a rectangle. They're using laser pointers to highlight specific parts on the model.\",fit:\"fill\",intrinsicHeight:266,intrinsicWidth:355,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+2763.1+0+0+100+0),pixelHeight:1064,pixelWidth:1420,sizes:`calc(min(min(${componentViewport?.width||\"100vw\"}, 1200px), 1100px) * 1.0216)`,src:\"https://framerusercontent.com/images/6qVd5Te8HQf59LPQauQ6OtXbRJ8.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/6qVd5Te8HQf59LPQauQ6OtXbRJ8.png?scale-down-to=512 512w,https://framerusercontent.com/images/6qVd5Te8HQf59LPQauQ6OtXbRJ8.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/6qVd5Te8HQf59LPQauQ6OtXbRJ8.png 1420w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"A 3D model of a complex mechanical component being reviewed by 4 people on different devices. Two people are wearing XR headsets, one is represented by a digital avatar, and one is represented by a rectangle. They're using laser pointers to highlight specific parts on the model.\",fit:\"fill\",intrinsicHeight:266,intrinsicWidth:355,pixelHeight:1064,pixelWidth:1420,sizes:\"1022.2932px\",src:\"https://framerusercontent.com/images/6qVd5Te8HQf59LPQauQ6OtXbRJ8.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/6qVd5Te8HQf59LPQauQ6OtXbRJ8.png?scale-down-to=512 512w,https://framerusercontent.com/images/6qVd5Te8HQf59LPQauQ6OtXbRJ8.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/6qVd5Te8HQf59LPQauQ6OtXbRJ8.png 1420w\"},className:\"framer-xqbsi\",\"data-framer-name\":\"visual\"})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-hgc1wc\",\"data-framer-name\":\"Section 2\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{BweP2MW2F:{background:{alt:\"A person wearing an XR headset is viewing a 3D model of a red car, while the same model is also displayed on a desktop computer and a tablet.\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+2763.1+0+984.5+60+0),pixelHeight:1104,pixelWidth:1584,positionX:\"center\",positionY:\"center\",sizes:`min(min(${componentViewport?.width||\"100vw\"}, 1200px), 1100px)`,src:\"https://framerusercontent.com/images/9ApAhwnES0TGgoGrY9IOujQwKw.png\",srcSet:\"https://framerusercontent.com/images/9ApAhwnES0TGgoGrY9IOujQwKw.png?scale-down-to=512 512w,https://framerusercontent.com/images/9ApAhwnES0TGgoGrY9IOujQwKw.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/9ApAhwnES0TGgoGrY9IOujQwKw.png 1584w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"A person wearing an XR headset is viewing a 3D model of a red car, while the same model is also displayed on a desktop computer and a tablet.\",fit:\"fit\",pixelHeight:1104,pixelWidth:1584,positionX:\"center\",positionY:\"center\",sizes:\"793px\",src:\"https://framerusercontent.com/images/9ApAhwnES0TGgoGrY9IOujQwKw.png\",srcSet:\"https://framerusercontent.com/images/9ApAhwnES0TGgoGrY9IOujQwKw.png?scale-down-to=512 512w,https://framerusercontent.com/images/9ApAhwnES0TGgoGrY9IOujQwKw.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/9ApAhwnES0TGgoGrY9IOujQwKw.png 1584w\"},className:\"framer-1j2da3i\",\"data-framer-name\":\"visual\",style:{rotate:180,scale:-1}})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1sd2jqk\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{BweP2MW2F:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"Q1VTVE9NO0dyZXljbGlmZiBDRiBFeHRyYSBCb2xk\",\"--framer-font-family\":'\"Greycliff CF Extra Bold\", \"Greycliff CF Extra Bold Placeholder\", sans-serif',\"--framer-font-size\":\"35px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Easily review with anyone, even across different devices\"})}),fonts:[\"CUSTOM;Greycliff CF Extra Bold\"]}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-vpvhg3\",\"data-styles-preset\":\"sPuPomUNN\",style:{\"--framer-text-alignment\":\"right\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Easily review with anyone, even across different devices\"})}),className:\"framer-1reovz4\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-wq8ql\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1vgugrn\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{className:\"framer-styles-preset-10sjro\",\"data-styles-preset\":\"qQLnKLqI9\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-933382a9-a1f8-4980-b9bb-1560844e061f, rgb(248, 69, 54))\"},children:[\"\u2713\",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-9aa93da0-af3c-4480-b3da-9ed37528096c, rgb(137, 139, 149))\"},children:\" \"})]})}),className:\"framer-yrxxyn\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-10sjro\",\"data-styles-preset\":\"qQLnKLqI9\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-c9f9d079-8650-4f43-aeac-c55df0cf1d61, rgb(199, 205, 212))\"},children:\"Switch seamlessly between Quest, Varjo, VIVE, PC, Mac, and iPad\"})}),className:\"framer-8bktx5\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-mpt7kl\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{className:\"framer-styles-preset-10sjro\",\"data-styles-preset\":\"qQLnKLqI9\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-933382a9-a1f8-4980-b9bb-1560844e061f, rgb(248, 69, 54))\"},children:[\"\u2713\",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-9aa93da0-af3c-4480-b3da-9ed37528096c, rgb(137, 139, 149))\"},children:\" \"})]})}),className:\"framer-jfajk2\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-10sjro\",\"data-styles-preset\":\"qQLnKLqI9\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-c9f9d079-8650-4f43-aeac-c55df0cf1d61, rgb(199, 205, 212))\"},children:\" Run reviews with users on different device types, in any location\"})}),className:\"framer-qnch2v\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1wvv8mg\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{className:\"framer-styles-preset-10sjro\",\"data-styles-preset\":\"qQLnKLqI9\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-933382a9-a1f8-4980-b9bb-1560844e061f, rgb(248, 69, 54))\"},children:[\"\u2713\",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-9aa93da0-af3c-4480-b3da-9ed37528096c, rgb(137, 139, 149))\"},children:\" \"})]})}),className:\"framer-9sxizu\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-10sjro\",\"data-styles-preset\":\"qQLnKLqI9\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-c9f9d079-8650-4f43-aeac-c55df0cf1d61, rgb(199, 205, 212))\"},children:\"Collaborate on 40+ types of 3D models and scans, all in one place\"})}),className:\"framer-1aqmfb5\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})]})]}),isDisplayed()&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-1a2572o hidden-m36waq\",\"data-framer-name\":\"FadeOut\"})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1s1udsx\",\"data-framer-name\":\"Section 3\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-yetevb\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{BweP2MW2F:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h2\",{style:{\"--font-selector\":\"Q1VTVE9NO0dyZXljbGlmZiBDRiBFeHRyYSBCb2xk\",\"--framer-font-family\":'\"Greycliff CF Extra Bold\", \"Greycliff CF Extra Bold Placeholder\", sans-serif',\"--framer-font-size\":\"35px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:[\"The simplicity of \",/*#__PURE__*/_jsx(\"br\",{}),\"modern 2D collaboration tools, adapted for 3D\"]})}),fonts:[\"CUSTOM;Greycliff CF Extra Bold\"]}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h2\",{className:\"framer-styles-preset-vpvhg3\",\"data-styles-preset\":\"sPuPomUNN\",style:{\"--framer-text-alignment\":\"center\"},children:[\"The simplicity of \",/*#__PURE__*/_jsx(\"br\",{}),\"modern 2D collaboration tools, adapted for 3D\"]})}),className:\"framer-50evn9\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1uynynl\",\"data-framer-name\":\"Points\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-pyloj1\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{className:\"framer-styles-preset-10sjro\",\"data-styles-preset\":\"qQLnKLqI9\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-933382a9-a1f8-4980-b9bb-1560844e061f, rgb(248, 69, 54))\"},children:[\"\u2713\",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-9aa93da0-af3c-4480-b3da-9ed37528096c, rgb(137, 139, 149))\"},children:\" \"})]})}),className:\"framer-4anjly\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-10sjro\",\"data-styles-preset\":\"qQLnKLqI9\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-c9f9d079-8650-4f43-aeac-c55df0cf1d61, rgb(199, 205, 212))\"},children:\"Create 3D scenes as easily as creating a PowerPoint slide\"})}),className:\"framer-xqb35j\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1djxm8i\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{className:\"framer-styles-preset-10sjro\",\"data-styles-preset\":\"qQLnKLqI9\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-933382a9-a1f8-4980-b9bb-1560844e061f, rgb(248, 69, 54))\"},children:[\"\u2713\",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-9aa93da0-af3c-4480-b3da-9ed37528096c, rgb(137, 139, 149))\"},children:\" \"})]})}),className:\"framer-g0sds1\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-10sjro\",\"data-styles-preset\":\"qQLnKLqI9\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-c9f9d079-8650-4f43-aeac-c55df0cf1d61, rgb(199, 205, 212))\"},children:\"Share projects as easily as sharing a Google Doc\"})}),className:\"framer-1euzybu\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-pbk6t\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{className:\"framer-styles-preset-10sjro\",\"data-styles-preset\":\"qQLnKLqI9\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-933382a9-a1f8-4980-b9bb-1560844e061f, rgb(248, 69, 54))\"},children:[\"\u2713\",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-9aa93da0-af3c-4480-b3da-9ed37528096c, rgb(137, 139, 149))\"},children:\" \"})]})}),className:\"framer-4atvum\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-10sjro\",\"data-styles-preset\":\"qQLnKLqI9\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-c9f9d079-8650-4f43-aeac-c55df0cf1d61, rgb(199, 205, 212))\"},children:\"Add comments and sketches directly to model surfaces\"})}),className:\"framer-1h9oins\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})]})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{BweP2MW2F:{background:{alt:\"A 3D model of a complex mechanical component is shown with elements of Campfire's user interface surrounding it.\",fit:\"fit\",intrinsicHeight:241,intrinsicWidth:323,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+2763.1+0+1979.5+60+0),pixelHeight:799,pixelWidth:1187,positionX:\"center\",positionY:\"center\",sizes:`calc(min(min(${componentViewport?.width||\"100vw\"}, 1200px), 1100px) * 0.9)`,src:\"https://framerusercontent.com/images/P4X7ZTCLYUeq55Cl9CS2x7p2yQg.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/P4X7ZTCLYUeq55Cl9CS2x7p2yQg.png?scale-down-to=512 512w,https://framerusercontent.com/images/P4X7ZTCLYUeq55Cl9CS2x7p2yQg.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/P4X7ZTCLYUeq55Cl9CS2x7p2yQg.png 1187w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"A 3D model of a complex mechanical component is shown with elements of Campfire's user interface surrounding it.\",fit:\"fill\",intrinsicHeight:241,intrinsicWidth:323,pixelHeight:799,pixelWidth:1187,sizes:\"817px\",src:\"https://framerusercontent.com/images/P4X7ZTCLYUeq55Cl9CS2x7p2yQg.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/P4X7ZTCLYUeq55Cl9CS2x7p2yQg.png?scale-down-to=512 512w,https://framerusercontent.com/images/P4X7ZTCLYUeq55Cl9CS2x7p2yQg.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/P4X7ZTCLYUeq55Cl9CS2x7p2yQg.png 1187w\"},className:\"framer-1fsveug\",\"data-framer-name\":\"visual\"})})]})]}),/*#__PURE__*/_jsxs(\"section\",{className:\"framer-s6igfb\",\"data-framer-name\":\"Use Cases\",id:elementId,ref:ref1,children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1ifyzcr\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{BweP2MW2F:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"Q1VTVE9NO0dyZXljbGlmZiBDRiBFeHRyYSBCb2xk\",\"--framer-font-family\":'\"Greycliff CF Extra Bold\", \"Greycliff CF Extra Bold Placeholder\", sans-serif',\"--framer-font-size\":\"35px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-144843d7-55e6-46a3-937e-19747eb80898, rgb(255, 255, 255))\"},children:\"Use cases across the physical product lifecycle\"})}),fonts:[\"CUSTOM;Greycliff CF Extra Bold\"]}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-vpvhg3\",\"data-styles-preset\":\"sPuPomUNN\",children:\"Use cases across the physical product lifecycle\"})}),className:\"framer-8nxc3w\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-2an46d\",\"data-framer-name\":\"Spacer\"})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-tenaws\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1cb7g9t\",\"data-border\":true,\"data-framer-name\":\"Card\",children:[/*#__PURE__*/_jsx(Link,{href:{webPageId:\"CgrFC5Jmi\"},motionChild:true,nodeId:\"uEONDVaeA\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-13g3ge6 framer-lux5qc\",\"data-framer-name\":\"Image\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{BweP2MW2F:{background:{alt:\"A 3D model of a mechanical robot dog is shown being reviewed by a digital avatar holding a Meta Quest controller \",fit:\"fit\",intrinsicHeight:1465,intrinsicWidth:1900,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+5683.1+100+100+0+0+6+0+-13.0821),pixelHeight:816,pixelWidth:1255,positionX:\"center\",positionY:\"center\",sizes:\"336px\",src:\"https://framerusercontent.com/images/KvJA9jsOjfv9Q8KuH1C4tvtZTw.png\",srcSet:\"https://framerusercontent.com/images/KvJA9jsOjfv9Q8KuH1C4tvtZTw.png?scale-down-to=512 512w,https://framerusercontent.com/images/KvJA9jsOjfv9Q8KuH1C4tvtZTw.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/KvJA9jsOjfv9Q8KuH1C4tvtZTw.png 1255w\"},transformTemplate:transformTemplate1}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"A 3D model of a mechanical robot dog is shown being reviewed by a digital avatar holding a Meta Quest controller \",fit:\"fit\",intrinsicHeight:1465,intrinsicWidth:1900,pixelHeight:816,pixelWidth:1255,positionX:\"center\",positionY:\"center\",sizes:\"367.0307px\",src:\"https://framerusercontent.com/images/KvJA9jsOjfv9Q8KuH1C4tvtZTw.png\",srcSet:\"https://framerusercontent.com/images/KvJA9jsOjfv9Q8KuH1C4tvtZTw.png?scale-down-to=512 512w,https://framerusercontent.com/images/KvJA9jsOjfv9Q8KuH1C4tvtZTw.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/KvJA9jsOjfv9Q8KuH1C4tvtZTw.png 1255w\"},className:\"framer-nx6nrj\",\"data-framer-name\":\"design_review\"})})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1j27g4c\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{BweP2MW2F:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{style:{\"--font-selector\":\"Q1VTVE9NO0dyZXljbGlmZiBDRiBFeHRyYSBCb2xk\",\"--framer-font-family\":'\"Greycliff CF Extra Bold\", \"Greycliff CF Extra Bold Placeholder\", sans-serif',\"--framer-font-size\":\"26px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Design Review\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{style:{\"--font-selector\":\"Q1VTVE9NO0dyZXljbGlmZiBDRiBFeHRyYSBCb2xk\",\"--framer-font-family\":'\"Greycliff CF Extra Bold\", \"Greycliff CF Extra Bold Placeholder\", sans-serif',\"--framer-font-size\":\"26px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Design Review\"})}),className:\"framer-g3avke\",fonts:[\"CUSTOM;Greycliff CF Extra Bold\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{BweP2MW2F:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-10sjro\",\"data-styles-preset\":\"qQLnKLqI9\",style:{\"--framer-text-alignment\":\"left\"},children:\"Make it easy to get high-quality feedback from more people, more often\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-10sjro\",\"data-styles-preset\":\"qQLnKLqI9\",style:{\"--framer-text-alignment\":\"center\"},children:\"Make it easy to get high-quality feedback from more people, more often\"})}),className:\"framer-tg38sw\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-raqgyd\",children:/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"CgrFC5Jmi\"},implicitPathVariables:undefined},{href:{webPageId:\"CgrFC5Jmi\"},implicitPathVariables:undefined}],children:resolvedLinks1=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{BweP2MW2F:{width:`max(max(min(${componentViewport?.width||\"100vw\"} - 50px, 1200px), 100px) - 52px, 1px)`,y:(componentViewport?.y||0)+0+5683.1+100+100+0+0+6+240+30+183.9+15}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:40,children:/*#__PURE__*/_jsx(Container,{className:\"framer-c6rlae-container\",nodeId:\"i__Ird7Qd\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{BweP2MW2F:{lomDqnCLl:resolvedLinks1[1],style:{height:\"100%\",width:\"100%\"}}},children:/*#__PURE__*/_jsx(Button,{COY7CEjcB:false,height:\"100%\",id:\"i__Ird7Qd\",layoutId:\"i__Ird7Qd\",lomDqnCLl:resolvedLinks1[0],style:{height:\"100%\"},variant:\"WgBGozkvH\",w70BYjvZb:\"Learn More\",width:\"100%\",Z5umZTsLL:\"PlayArrow\"})})})})})})})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1rj2tlv\",\"data-border\":true,\"data-framer-name\":\"Card\",children:[/*#__PURE__*/_jsx(Link,{href:{webPageId:\"SSki9bvJM\"},motionChild:true,nodeId:\"jDkvvD1ua\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-1ivq8ow framer-lux5qc\",\"data-framer-name\":\"Image\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{BweP2MW2F:{background:{alt:\"An open laptop shows a 3D model being displayed on screen\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+5683.1+100+100+0+575.9+6+0+240-253),pixelHeight:2230,pixelWidth:2814,positionX:\"center\",positionY:\"center\",sizes:`calc(max(min(${componentViewport?.width||\"100vw\"} - 50px, 1200px), 100px) + 77px)`,src:\"https://framerusercontent.com/images/vbzK60QXVEpqevAaW8OmoRlXobM.png\",srcSet:\"https://framerusercontent.com/images/vbzK60QXVEpqevAaW8OmoRlXobM.png?scale-down-to=512 512w,https://framerusercontent.com/images/vbzK60QXVEpqevAaW8OmoRlXobM.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/vbzK60QXVEpqevAaW8OmoRlXobM.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/vbzK60QXVEpqevAaW8OmoRlXobM.png 2814w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"An open laptop shows a 3D model being displayed on screen\",fit:\"fit\",pixelHeight:2230,pixelWidth:2814,positionX:\"center\",positionY:\"center\",sizes:`calc(max(min(${componentViewport?.width||\"100vw\"} - 20px, 1200px) - 60px, 100px) + 119px)`,src:\"https://framerusercontent.com/images/vbzK60QXVEpqevAaW8OmoRlXobM.png\",srcSet:\"https://framerusercontent.com/images/vbzK60QXVEpqevAaW8OmoRlXobM.png?scale-down-to=512 512w,https://framerusercontent.com/images/vbzK60QXVEpqevAaW8OmoRlXobM.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/vbzK60QXVEpqevAaW8OmoRlXobM.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/vbzK60QXVEpqevAaW8OmoRlXobM.png 2814w\"},className:\"framer-13nzs6y\",\"data-framer-name\":\"image 44\"})})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-7une4l\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{BweP2MW2F:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{style:{\"--font-selector\":\"Q1VTVE9NO0dyZXljbGlmZiBDRiBFeHRyYSBCb2xk\",\"--framer-font-family\":'\"Greycliff CF Extra Bold\", \"Greycliff CF Extra Bold Placeholder\", sans-serif',\"--framer-font-size\":\"26px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Technical Training\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{style:{\"--font-selector\":\"Q1VTVE9NO0dyZXljbGlmZiBDRiBFeHRyYSBCb2xk\",\"--framer-font-family\":'\"Greycliff CF Extra Bold\", \"Greycliff CF Extra Bold Placeholder\", sans-serif',\"--framer-font-size\":\"26px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Technical Training\"})}),className:\"framer-gqxmbs\",fonts:[\"CUSTOM;Greycliff CF Extra Bold\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{BweP2MW2F:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-10sjro\",\"data-styles-preset\":\"qQLnKLqI9\",style:{\"--framer-text-alignment\":\"left\"},children:\"Leverage immersive 3D content to deliver more engaging training sessions \"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-10sjro\",\"data-styles-preset\":\"qQLnKLqI9\",style:{\"--framer-text-alignment\":\"center\"},children:\"Leverage immersive 3D content to deliver more engaging training sessions \"})}),className:\"framer-159owwn\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-jtstkp\",children:/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"SSki9bvJM\"},implicitPathVariables:undefined},{href:{webPageId:\"SSki9bvJM\"},implicitPathVariables:undefined}],children:resolvedLinks2=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{BweP2MW2F:{width:`max(max(min(${componentViewport?.width||\"100vw\"} - 50px, 1200px), 100px) - 52px, 1px)`,y:(componentViewport?.y||0)+0+5683.1+100+100+0+575.9+6+240+30+183.9+15}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:40,children:/*#__PURE__*/_jsx(Container,{className:\"framer-xkqi5k-container\",nodeId:\"fOkY47tQ7\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{BweP2MW2F:{lomDqnCLl:resolvedLinks2[1],style:{height:\"100%\",width:\"100%\"}}},children:/*#__PURE__*/_jsx(Button,{COY7CEjcB:false,height:\"100%\",id:\"fOkY47tQ7\",layoutId:\"fOkY47tQ7\",lomDqnCLl:resolvedLinks2[0],style:{height:\"100%\"},variant:\"WgBGozkvH\",w70BYjvZb:\"Learn More\",width:\"100%\",Z5umZTsLL:\"PlayArrow\"})})})})})})})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1ak8rau\",\"data-border\":true,\"data-framer-name\":\"Card\",children:[/*#__PURE__*/_jsx(Link,{href:{webPageId:\"hba6BSqyv\"},motionChild:true,nodeId:\"rh784qu6S\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-9fyf63 framer-lux5qc\",\"data-framer-name\":\"Image\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{BweP2MW2F:{background:{alt:\"3 people are standing in the same room, all wearing Meta Quest 3 headsets, and reviewing digital models together\",fit:\"stretch\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+5683.1+100+100+0+1151.8+6+0+0),pixelHeight:1455,pixelWidth:2051,positionX:\"center\",positionY:\"center\",sizes:`calc(max(min(${componentViewport?.width||\"100vw\"} - 50px, 1200px), 100px) - 12px)`,src:\"https://framerusercontent.com/images/ELQqCf3oVMK5AQFKv776OSQgoc.png\",srcSet:\"https://framerusercontent.com/images/ELQqCf3oVMK5AQFKv776OSQgoc.png?scale-down-to=512 512w,https://framerusercontent.com/images/ELQqCf3oVMK5AQFKv776OSQgoc.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/ELQqCf3oVMK5AQFKv776OSQgoc.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/ELQqCf3oVMK5AQFKv776OSQgoc.png 2051w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"3 people are standing in the same room, all wearing Meta Quest 3 headsets, and reviewing digital models together\",fit:\"stretch\",pixelHeight:1455,pixelWidth:2051,positionX:\"center\",positionY:\"center\",sizes:`calc(max(min(${componentViewport?.width||\"100vw\"} - 20px, 1200px) - 60px, 100px) - 12px)`,src:\"https://framerusercontent.com/images/ELQqCf3oVMK5AQFKv776OSQgoc.png\",srcSet:\"https://framerusercontent.com/images/ELQqCf3oVMK5AQFKv776OSQgoc.png?scale-down-to=512 512w,https://framerusercontent.com/images/ELQqCf3oVMK5AQFKv776OSQgoc.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/ELQqCf3oVMK5AQFKv776OSQgoc.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/ELQqCf3oVMK5AQFKv776OSQgoc.png 2051w\"},className:\"framer-vusibr\",\"data-framer-name\":\"Screenshot 2024-03-20 at 1.52 2\"})})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-sp35q8\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{BweP2MW2F:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{style:{\"--font-selector\":\"Q1VTVE9NO0dyZXljbGlmZiBDRiBFeHRyYSBCb2xk\",\"--framer-font-family\":'\"Greycliff CF Extra Bold\", \"Greycliff CF Extra Bold Placeholder\", sans-serif',\"--framer-font-size\":\"26px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Technical Sales\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{style:{\"--font-selector\":\"Q1VTVE9NO0dyZXljbGlmZiBDRiBFeHRyYSBCb2xk\",\"--framer-font-family\":'\"Greycliff CF Extra Bold\", \"Greycliff CF Extra Bold Placeholder\", sans-serif',\"--framer-font-size\":\"26px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Technical Sales\"})}),className:\"framer-dhqd4n\",fonts:[\"CUSTOM;Greycliff CF Extra Bold\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{BweP2MW2F:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-10sjro\",\"data-styles-preset\":\"qQLnKLqI9\",style:{\"--framer-text-alignment\":\"left\"},children:\"Level up your sales process with a better way to review complex 3D info virtually\u200B\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-10sjro\",\"data-styles-preset\":\"qQLnKLqI9\",style:{\"--framer-text-alignment\":\"center\"},children:\"Level up your sales process with a better way to review complex 3D info virtually\u200B\"})}),className:\"framer-1pn8kts\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1vx1tx2\",children:/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"hba6BSqyv\"},implicitPathVariables:undefined},{href:{webPageId:\"hba6BSqyv\"},implicitPathVariables:undefined}],children:resolvedLinks3=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{BweP2MW2F:{width:`max(max(min(${componentViewport?.width||\"100vw\"} - 50px, 1200px), 100px) - 52px, 1px)`,y:(componentViewport?.y||0)+0+5683.1+100+100+0+1151.8+6+240+30+183.9+15}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:40,children:/*#__PURE__*/_jsx(Container,{className:\"framer-12kovm1-container\",nodeId:\"tLQQZzYqd\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{BweP2MW2F:{lomDqnCLl:resolvedLinks3[1],style:{height:\"100%\",width:\"100%\"}}},children:/*#__PURE__*/_jsx(Button,{COY7CEjcB:false,height:\"100%\",id:\"tLQQZzYqd\",layoutId:\"tLQQZzYqd\",lomDqnCLl:resolvedLinks3[0],style:{height:\"100%\"},variant:\"WgBGozkvH\",w70BYjvZb:\"Learn More\",width:\"100%\",Z5umZTsLL:\"PlayArrow\"})})})})})})})]})]})]})]}),/*#__PURE__*/_jsxs(\"section\",{className:\"framer-13rlzxo\",\"data-framer-name\":\"How it Works\",children:[isDisplayed()&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-1jyclgy hidden-m36waq\",\"data-framer-name\":\"Spacer\"}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{BweP2MW2F:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h2\",{style:{\"--font-selector\":\"Q1VTVE9NO0dyZXljbGlmZiBDRiBFeHRyYSBCb2xk\",\"--framer-font-family\":'\"Greycliff CF Extra Bold\", \"Greycliff CF Extra Bold Placeholder\", sans-serif',\"--framer-font-size\":\"35px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:[\"A better way to \",/*#__PURE__*/_jsx(\"br\",{}),\"communicate 3D information\"]})}),fonts:[\"CUSTOM;Greycliff CF Extra Bold\"]}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h2\",{className:\"framer-styles-preset-vpvhg3\",\"data-styles-preset\":\"sPuPomUNN\",children:[\"A better way to \",/*#__PURE__*/_jsx(\"br\",{}),\"communicate 3D information\"]})}),className:\"framer-ci5mob\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-aq0zf4\",\"data-framer-name\":\"Section\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-uu3yof\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1qucqu2\",\"data-framer-name\":\"CopyGroup\",children:[isDisplayed1()&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-nhmj1y hidden-72rtr7\",\"data-framer-name\":\"Count\",children:[isDisplayed1()&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-oc8xyw hidden-72rtr7\",\"data-border\":true,\"data-framer-name\":\"step\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0dyZXljbGlmZiBDRiBCb2xk\",\"--framer-font-family\":'\"Greycliff CF Bold\", \"Greycliff CF Bold Placeholder\", sans-serif',\"--framer-font-size\":\"15px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-144843d7-55e6-46a3-937e-19747eb80898, rgb(255, 255, 255))\"},children:\"1\"})}),className:\"framer-gy1rwh\",fonts:[\"CUSTOM;Greycliff CF Bold\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-58mdgl\"})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-14f0rq\",\"data-framer-name\":\"Copy\",children:[isDisplayed()&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-15tvuro hidden-m36waq\",\"data-border\":true,\"data-framer-name\":\"step\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"15px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-144843d7-55e6-46a3-937e-19747eb80898, rgb(255, 255, 255))\"},children:\"1\"})}),className:\"framer-1i680fl\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),isDisplayed()&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-1p1uiky hidden-m36waq\",\"data-framer-name\":\"Spacer\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-u8ovl2\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{BweP2MW2F:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-1pu3r8i\",\"data-styles-preset\":\"sUW7dEnZD\",style:{\"--framer-text-alignment\":\"left\"},children:\"Compose 3D scenes with models and scans\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-1pu3r8i\",\"data-styles-preset\":\"sUW7dEnZD\",style:{\"--framer-text-alignment\":\"center\"},children:\"Compose 3D scenes with models and scans\"})}),className:\"framer-4odrs5\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-d0d5gx\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{BweP2MW2F:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-10sjro\",\"data-styles-preset\":\"qQLnKLqI9\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-c9f9d079-8650-4f43-aeac-c55df0cf1d61, rgb(199, 205, 212))\"},children:\"As easy as building a slide deck, but tailor-made for 3D. Add 40+ types of 3D files, then set up one or many scenes to tell any story you need.\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-10sjro\",\"data-styles-preset\":\"qQLnKLqI9\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-c9f9d079-8650-4f43-aeac-c55df0cf1d61, rgb(199, 205, 212))\"},children:\"As easy as building a slide deck, but tailor-made for 3D. Add 40+ types of 3D files, then set up one or many scenes to tell any story you need.\"})}),className:\"framer-d6936f\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-rco238\",\"data-framer-name\":\"Spacer\"})]})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1w3aloj\",\"data-framer-name\":\"Visual\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{BweP2MW2F:{width:`calc(min(${componentViewport?.width||\"100vw\"}, 1200px) - 30px)`,y:(componentViewport?.y||0)+0+7645.8+100+42+60+0+0+213.3+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:411,width:\"610px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-1fz7bwi-container\",nodeId:\"i51y6BJFL\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{BweP2MW2F:{style:{width:\"100%\"}}},children:/*#__PURE__*/_jsx(VideoPlayInViewWithVariantAppearEffect,{__framer__animateOnce:false,__framer__obscuredVariantId:\"yZQ4IZFwn\",__framer__threshold:.5,__framer__variantAppearEffectEnabled:true,__framer__visibleVariantId:\"ojgzu2z9z\",height:\"100%\",id:\"i51y6BJFL\",layoutId:\"i51y6BJFL\",style:{height:\"100%\",width:\"100%\"},variant:\"yZQ4IZFwn\",width:\"100%\"})})})})})})]})}),isDisplayed()&&/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",pixelHeight:122,pixelWidth:254,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/Joxgqp5yoWoJPv2bK38XQU0.svg\"},className:\"framer-1sr46m1 hidden-m36waq\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-105txln\",\"data-framer-name\":\"Section\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1c6s6fc\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1a0r368\",\"data-framer-name\":\"Visual\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{BweP2MW2F:{width:`calc(min(${componentViewport?.width||\"100vw\"}, 1200px) - 31px)`,y:(componentViewport?.y||0)+0+7645.8+100+726.3+60+0+0+213.3+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:411,width:\"610px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-1x5wxf2-container\",nodeId:\"nTKvKo8pK\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{BweP2MW2F:{style:{width:\"100%\"}}},children:/*#__PURE__*/_jsx(VideoPlayInViewWithVariantAppearEffect,{__framer__animateOnce:false,__framer__obscuredVariantId:\"yZQ4IZFwn\",__framer__threshold:.5,__framer__variantAppearEffectEnabled:true,__framer__visibleVariantId:\"ojgzu2z9z\",height:\"100%\",id:\"nTKvKo8pK\",layoutId:\"nTKvKo8pK\",SMb3bc0ci:\"https://framerusercontent.com/assets/WzPP0zhZcNI12trCxtwFdhP3C4.mp4\",style:{height:\"100%\",width:\"100%\"},variant:\"yZQ4IZFwn\",width:\"100%\"})})})})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-16unnrh\",\"data-framer-name\":\"CopyGroup\",children:[isDisplayed1()&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-85ydrj hidden-72rtr7\",\"data-framer-name\":\"Count\",children:[isDisplayed1()&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-1gfp1ac hidden-72rtr7\",\"data-border\":true,\"data-framer-name\":\"step\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0dyZXljbGlmZiBDRiBCb2xk\",\"--framer-font-family\":'\"Greycliff CF Bold\", \"Greycliff CF Bold Placeholder\", sans-serif',\"--framer-font-size\":\"15px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-144843d7-55e6-46a3-937e-19747eb80898, rgb(255, 255, 255))\"},children:\"2\"})}),className:\"framer-4egnuv\",fonts:[\"CUSTOM;Greycliff CF Bold\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-gilskk\"})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-16j8n55\",\"data-framer-name\":\"Copy\",children:[isDisplayed()&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-sriud5 hidden-m36waq\",\"data-border\":true,\"data-framer-name\":\"step\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"15px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-144843d7-55e6-46a3-937e-19747eb80898, rgb(255, 255, 255))\"},children:\"2\"})}),className:\"framer-14owmu3\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),isDisplayed()&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-1asjuxc hidden-m36waq\",\"data-framer-name\":\"Spacer\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-khhycy\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{BweP2MW2F:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-1pu3r8i\",\"data-styles-preset\":\"sUW7dEnZD\",style:{\"--framer-text-alignment\":\"left\"},children:\"Share securely with anyone\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-1pu3r8i\",\"data-styles-preset\":\"sUW7dEnZD\",style:{\"--framer-text-alignment\":\"center\"},children:\"Share securely with anyone\"})}),className:\"framer-1lnk6n5\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-ribdau\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{BweP2MW2F:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-10sjro\",\"data-styles-preset\":\"qQLnKLqI9\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-c9f9d079-8650-4f43-aeac-c55df0cf1d61, rgb(199, 205, 212))\"},children:\"Easily add and manage collaborators. Use simple sharing features to copy a link to any project, comment, sketch, or measurement.\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-10sjro\",\"data-styles-preset\":\"qQLnKLqI9\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-c9f9d079-8650-4f43-aeac-c55df0cf1d61, rgb(199, 205, 212))\"},children:\"Easily add and manage collaborators. Use simple sharing features to copy a link to any project, comment, sketch, or measurement.\"})}),className:\"framer-81nl61\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1o7keh1\",\"data-framer-name\":\"Spacer\"})]})]})]})}),isDisplayed()&&/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",pixelHeight:122,pixelWidth:254,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/u8rX118Q41kxXsBsaTCGMz7Bes.svg\"},className:\"framer-1dhh7oi hidden-m36waq\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1qtivlr\",\"data-framer-name\":\"Section\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1rk3kix\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1b13te3\",\"data-framer-name\":\"CopyGroup\",children:[isDisplayed1()&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-16fk10j hidden-72rtr7\",\"data-framer-name\":\"Count\",children:[isDisplayed1()&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-rxmoea hidden-72rtr7\",\"data-border\":true,\"data-framer-name\":\"step\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0dyZXljbGlmZiBDRiBCb2xk\",\"--framer-font-family\":'\"Greycliff CF Bold\", \"Greycliff CF Bold Placeholder\", sans-serif',\"--framer-font-size\":\"15px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-144843d7-55e6-46a3-937e-19747eb80898, rgb(255, 255, 255))\"},children:\"3\"})}),className:\"framer-x3o65w\",fonts:[\"CUSTOM;Greycliff CF Bold\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1whadaw\"})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-ovkcwz\",\"data-framer-name\":\"Copy\",children:[isDisplayed()&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-1pu6ik9 hidden-m36waq\",\"data-border\":true,\"data-framer-name\":\"step\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"15px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-144843d7-55e6-46a3-937e-19747eb80898, rgb(255, 255, 255))\"},children:\"3\"})}),className:\"framer-1oojsw8\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),isDisplayed()&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-1p73xwn hidden-m36waq\",\"data-framer-name\":\"Spacer\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-sk8tnl\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{BweP2MW2F:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h3\",{className:\"framer-styles-preset-1pu3r8i\",\"data-styles-preset\":\"sUW7dEnZD\",style:{\"--framer-text-alignment\":\"left\"},children:[\"Collaborate \",/*#__PURE__*/_jsx(\"br\",{}),\"more effectively\"]})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h3\",{className:\"framer-styles-preset-1pu3r8i\",\"data-styles-preset\":\"sUW7dEnZD\",style:{\"--framer-text-alignment\":\"center\"},children:[\"Collaborate \",/*#__PURE__*/_jsx(\"br\",{}),\"more effectively\"]})}),className:\"framer-v2xdq0\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1l2ru0e\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{BweP2MW2F:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-10sjro\",\"data-styles-preset\":\"qQLnKLqI9\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-c9f9d079-8650-4f43-aeac-c55df0cf1d61, rgb(199, 205, 212))\"},children:\"Communicate naturally and clearly using intuitive tools. Discuss designs together in real-time, or review asynchronously.\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-10sjro\",\"data-styles-preset\":\"qQLnKLqI9\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-c9f9d079-8650-4f43-aeac-c55df0cf1d61, rgb(199, 205, 212))\"},children:\"Communicate naturally and clearly using intuitive tools. Discuss designs together in real-time, or review asynchronously.\"})}),className:\"framer-wzuamx\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1g1va9z\",\"data-framer-name\":\"Spacer\"})]})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-8h3dp8\",\"data-framer-name\":\"Visual\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{BweP2MW2F:{width:`calc((min(${componentViewport?.width||\"100vw\"}, 1200px) - 30px) * 1.0051)`,y:(componentViewport?.y||0)+0+7645.8+100+1410.6+60+0+0+213.3+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:411,width:\"594px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-17os4t-container\",nodeId:\"zGgMj3_a7\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(VideoPlayInViewWithVariantAppearEffect,{__framer__animateOnce:false,__framer__obscuredVariantId:\"yZQ4IZFwn\",__framer__threshold:.5,__framer__variantAppearEffectEnabled:true,__framer__visibleVariantId:\"ojgzu2z9z\",height:\"100%\",id:\"zGgMj3_a7\",layoutId:\"zGgMj3_a7\",SMb3bc0ci:\"https://framerusercontent.com/assets/nHa2K1p8hqxQjWniT49LLZukycU.mp4\",style:{width:\"100%\"},variant:\"yZQ4IZFwn\",width:\"100%\"})})})})})]})})]}),/*#__PURE__*/_jsx(\"section\",{className:\"framer-vqjlmu\",\"data-framer-name\":\"Security\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-1mjeayj\",\"data-framer-name\":\"Container\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1xk05ne\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-12xb5f6\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{BweP2MW2F:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"Q1VTVE9NO0dyZXljbGlmZiBDRiBFeHRyYSBCb2xk\",\"--framer-font-family\":'\"Greycliff CF Extra Bold\", \"Greycliff CF Extra Bold Placeholder\", sans-serif',\"--framer-font-size\":\"35px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-5872d97b-56fc-483b-b8c9-9165b136b2ae, rgb(7, 7, 7))\"},children:\"The simplicity you want, the security you need\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"Q1VTVE9NO0dyZXljbGlmZiBDRiBFeHRyYSBCb2xk\",\"--framer-font-family\":'\"Greycliff CF Extra Bold\", \"Greycliff CF Extra Bold Placeholder\", sans-serif',\"--framer-font-size\":\"40px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-5872d97b-56fc-483b-b8c9-9165b136b2ae, rgb(7, 7, 7))\"},children:\"The simplicity you want, the security you need\"})}),className:\"framer-12j94ao\",fonts:[\"CUSTOM;Greycliff CF Extra Bold\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-10sjro\",\"data-styles-preset\":\"qQLnKLqI9\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-ac99a87a-4f8a-4c82-ba32-f89a8eeb3495, rgb(65, 68, 78))\"},children:\"Campfire is SOC 2 compliant and built to the highest security standards. So you get the speed and ease of modern cloud collaboration \u2014 with the peace of mind that your data is protected.\"})}),className:\"framer-1t5m15j\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-y74b7x\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{BweP2MW2F:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+9870.7+75+0+45+0+0+209.5+0+0),pixelHeight:1463,pixelWidth:1463,positionX:\"center\",positionY:\"center\",sizes:\"236px\",src:\"https://framerusercontent.com/images/Jk8gJCwRtHtZtD4LnG2aOc80.png\",srcSet:\"https://framerusercontent.com/images/Jk8gJCwRtHtZtD4LnG2aOc80.png?scale-down-to=512 512w,https://framerusercontent.com/images/Jk8gJCwRtHtZtD4LnG2aOc80.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/Jk8gJCwRtHtZtD4LnG2aOc80.png 1463w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",pixelHeight:1463,pixelWidth:1463,positionX:\"center\",positionY:\"center\",sizes:\"236px\",src:\"https://framerusercontent.com/images/Jk8gJCwRtHtZtD4LnG2aOc80.png\",srcSet:\"https://framerusercontent.com/images/Jk8gJCwRtHtZtD4LnG2aOc80.png?scale-down-to=512 512w,https://framerusercontent.com/images/Jk8gJCwRtHtZtD4LnG2aOc80.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/Jk8gJCwRtHtZtD4LnG2aOc80.png 1463w\"},className:\"framer-1natb4h\"})})})]})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{BweP2MW2F:{y:(componentViewport?.y||0)+0+10538.2}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:410,width:`min(${componentViewport?.width||\"100vw\"}, 1200px)`,children:/*#__PURE__*/_jsx(Container,{className:\"framer-l53xos-container\",nodeId:\"zWBVjqF4j\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{BweP2MW2F:{variant:\"Oof7aRDWP\"}},children:/*#__PURE__*/_jsx(FooterCTA,{height:\"100%\",id:\"zWBVjqF4j\",layoutId:\"zWBVjqF4j\",style:{maxWidth:\"100%\",width:\"100%\"},variant:\"ZZUjGDsEN\",width:\"100%\"})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{BweP2MW2F:{y:(componentViewport?.y||0)+0+10948.2}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:452,width:componentViewport?.width||\"100vw\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-t8a9au-container\",nodeId:\"ggKAOu0ui\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{BweP2MW2F:{variant:\"eZBELA9eG\"}},children:/*#__PURE__*/_jsx(FooterMenu,{height:\"100%\",id:\"ggKAOu0ui\",layoutId:\"ggKAOu0ui\",style:{width:\"100%\"},variant:\"Ss9bsekNv\",width:\"100%\"})})})})})]}),/*#__PURE__*/_jsx(\"div\",{id:\"overlay\"})]})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-BZtSe.framer-lux5qc, .framer-BZtSe .framer-lux5qc { display: block; }\",\".framer-BZtSe.framer-72rtr7 { align-content: center; align-items: center; background-color: var(--token-3e8721f8-030e-4145-85ce-b2f9d8bfb4d8, #151515); display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 1000px; }\",\".framer-BZtSe .framer-fevon7-container { flex: none; height: 50px; max-width: 100%; position: sticky; top: 2px; width: 100%; z-index: 1; }\",\".framer-BZtSe .framer-bk3vt0-container { flex: none; height: 80px; position: sticky; top: 0px; width: 100%; z-index: 9; }\",\".framer-BZtSe .framer-wb3x52 { align-content: center; align-items: center; border-bottom-left-radius: 50px; border-bottom-right-radius: 50px; border-top-left-radius: 50px; border-top-right-radius: 50px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 30px 0px 75px 0px; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-BZtSe .framer-y13qhh { align-content: center; align-items: center; 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; height: min-content; justify-content: space-between; max-width: 1200px; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-BZtSe .framer-l2avu1 { 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: hidden; padding: 0px 0px 0px 60px; position: relative; width: 500px; z-index: 1; }\",\".framer-BZtSe .framer-1nofalc { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; --framer-paragraph-spacing: 0px; flex: none; height: auto; max-width: 100%; position: relative; white-space: pre-wrap; width: 443px; word-break: break-word; word-wrap: break-word; }\",\".framer-BZtSe .framer-ssezar { --framer-paragraph-spacing: 0px; flex: none; height: auto; max-width: 100%; overflow: visible; position: relative; white-space: pre-wrap; width: 440px; word-break: break-word; word-wrap: break-word; }\",\".framer-BZtSe .framer-13ebhyq { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 15px; height: min-content; justify-content: center; overflow: visible; padding: 30px 0px 0px 0px; position: relative; width: min-content; }\",\".framer-BZtSe .framer-18cmsri-container, .framer-BZtSe .framer-15r6cjx-container, .framer-BZtSe .framer-c6rlae-container, .framer-BZtSe .framer-xkqi5k-container, .framer-BZtSe .framer-12kovm1-container { flex: none; height: 40px; position: relative; width: auto; }\",\".framer-BZtSe .framer-fts6ze { flex: 1 0 0px; height: 365px; overflow: visible; position: relative; width: 1px; z-index: 0; }\",\".framer-BZtSe .framer-mq7rrd-container { aspect-ratio: 1.7083333333333333 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 270px); left: 50%; position: absolute; top: 26px; transform: translateX(-50%); width: 92%; z-index: 0; }\",\".framer-BZtSe .framer-1qkaqog-container { flex: none; height: 125px; position: relative; width: 90%; }\",\".framer-BZtSe .framer-jr49sr { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 75px 30px 75px 30px; position: relative; width: 100%; }\",\".framer-BZtSe .framer-1570e7z, .framer-BZtSe .framer-yk52pi { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: flex-start; max-width: 500px; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-BZtSe .framer-1oinb16, .framer-BZtSe .framer-13g0b9d { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; --framer-paragraph-spacing: 0px; flex: none; height: auto; max-width: 850px; position: relative; white-space: pre-wrap; width: 465px; word-break: break-word; word-wrap: break-word; }\",\".framer-BZtSe .framer-12dcrks { align-content: center; align-items: center; aspect-ratio: 1.7884615384615385 / 1; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: var(--framer-aspect-ratio-supported, 260px); justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 465px; }\",\".framer-BZtSe .framer-qdqqa0 { aspect-ratio: 1.3464566929133859 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 260px); overflow: hidden; position: relative; width: 75%; }\",\".framer-BZtSe .framer-109g0s8, .framer-BZtSe .framer-h16baz { --framer-paragraph-spacing: 0px; flex: none; height: auto; max-width: 100%; overflow: visible; position: relative; white-space: pre-wrap; width: 425px; word-break: break-word; word-wrap: break-word; }\",\".framer-BZtSe .framer-1kw6ahk { align-content: center; align-items: center; aspect-ratio: 1.3464566929133859 / 1; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: var(--framer-aspect-ratio-supported, 260px); justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 350px; }\",\".framer-BZtSe .framer-1v7sb0a-container { flex: none; height: 234px; position: relative; width: 97%; }\",\".framer-BZtSe .framer-gxzj9i { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; max-width: 1000px; overflow: hidden; padding: 75px 0px 0px 0px; position: relative; width: 100%; }\",\".framer-BZtSe .framer-p13222 { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 50px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-BZtSe .framer-1woe6pr { --framer-paragraph-spacing: 0px; flex: none; height: auto; overflow: visible; position: relative; white-space: pre-wrap; width: 65%; word-break: break-word; word-wrap: break-word; }\",\".framer-BZtSe .framer-txmun1 { align-content: center; align-items: center; background-color: var(--token-6de1876c-a4d1-4b22-8c7b-ded933e14f23, rgba(230, 230, 230, 0.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: column; flex-wrap: nowrap; gap: 5px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 20px 10px 10px 10px; position: relative; width: 90%; will-change: var(--framer-will-change-override, transform); }\",\".framer-BZtSe .framer-7lsrdx { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 10px; position: relative; width: 100%; }\",\".framer-BZtSe .framer-1i6w4hs { --framer-paragraph-spacing: 0px; flex: none; height: auto; overflow: visible; position: relative; white-space: pre-wrap; width: 95%; word-break: break-word; word-wrap: break-word; }\",\".framer-BZtSe .framer-1tgg0x2 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 10px; position: relative; width: 86%; }\",\".framer-BZtSe .framer-1pkjvvy { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px 50px 0px 0px; position: relative; width: min-content; }\",\".framer-BZtSe .framer-dv9byh { aspect-ratio: 2.1882352941176473 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 85px); opacity: 0.75; overflow: hidden; position: relative; width: 186px; }\",\".framer-BZtSe .framer-1up47iz { 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: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-BZtSe .framer-1jmo9e3, .framer-BZtSe .framer-i61q15 { --framer-paragraph-spacing: 0px; flex: none; height: auto; overflow: visible; position: relative; white-space: pre; width: auto; }\",\".framer-BZtSe .framer-1yfrpy5 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; max-width: 1200px; overflow: visible; padding: 50px 0px 0px 0px; position: relative; width: 100%; }\",\".framer-BZtSe .framer-wqlyrz { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 28px; height: 733px; justify-content: center; max-width: 1100px; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-BZtSe .framer-7sknjj { -webkit-backdrop-filter: blur(0px); align-content: flex-start; align-items: flex-start; backdrop-filter: blur(0px); 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: column; flex-wrap: nowrap; gap: 60px; height: min-content; justify-content: flex-start; padding: 0px 40px 21px 20px; position: relative; width: min-content; z-index: 1; }\",\".framer-BZtSe .framer-1fpekgj { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; --framer-paragraph-spacing: 0px; flex: none; height: auto; overflow: visible; position: relative; white-space: pre-wrap; width: 469px; word-break: break-word; word-wrap: break-word; }\",\".framer-BZtSe .framer-1kh546i { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 30px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px 0px 0px 20px; position: relative; width: min-content; z-index: 2; }\",\".framer-BZtSe .framer-1tzz21j, .framer-BZtSe .framer-15y0eb1, .framer-BZtSe .framer-zk7ciw { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 293px; }\",\".framer-BZtSe .framer-1qqi7os, .framer-BZtSe .framer-5rjtru, .framer-BZtSe .framer-s2ql0a, .framer-BZtSe .framer-yrxxyn, .framer-BZtSe .framer-jfajk2, .framer-BZtSe .framer-9sxizu, .framer-BZtSe .framer-4anjly, .framer-BZtSe .framer-g0sds1, .framer-BZtSe .framer-4atvum { --framer-paragraph-spacing: 0px; flex: none; height: auto; overflow: visible; position: relative; white-space: pre-wrap; width: 30px; word-break: break-word; word-wrap: break-word; }\",\".framer-BZtSe .framer-1gf1xh6, .framer-BZtSe .framer-gu69k, .framer-BZtSe .framer-9g3bvx, .framer-BZtSe .framer-8bktx5, .framer-BZtSe .framer-qnch2v, .framer-BZtSe .framer-1aqmfb5, .framer-BZtSe .framer-xqb35j, .framer-BZtSe .framer-1euzybu, .framer-BZtSe .framer-1h9oins { --framer-paragraph-spacing: 0px; flex: 1 0 0px; height: auto; overflow: visible; position: relative; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; }\",\".framer-BZtSe .framer-xqbsi { aspect-ratio: 1.3345864661654134 / 1; bottom: -52px; flex: none; left: 193px; overflow: visible; position: absolute; top: 19px; width: var(--framer-aspect-ratio-supported, 1023px); z-index: 0; }\",\".framer-BZtSe .framer-hgc1wc { -webkit-backdrop-filter: blur(0px); align-content: flex-end; align-items: flex-end; backdrop-filter: blur(0px); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: 780px; justify-content: flex-start; max-width: 1100px; overflow: hidden; padding: 50px 0px 0px 0px; position: relative; width: 100%; }\",\".framer-BZtSe .framer-1j2da3i { -webkit-mask: linear-gradient(180deg, #000000 70%, rgba(0,0,0,0) 90%) add; bottom: -190px; flex: none; mask: linear-gradient(180deg, #000000 70%, rgba(0,0,0,0) 90%) add; overflow: hidden; position: absolute; right: 374px; top: -84px; width: 793px; z-index: 0; }\",\".framer-BZtSe .framer-1sd2jqk { -webkit-backdrop-filter: blur(0px); align-content: flex-end; align-items: flex-end; backdrop-filter: blur(0px); 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: column; flex-wrap: nowrap; gap: 42px; height: min-content; justify-content: center; padding: 66px 40px 66px 40px; position: relative; width: min-content; z-index: 1; }\",\".framer-BZtSe .framer-1reovz4 { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; --framer-paragraph-spacing: 0px; flex: none; height: auto; overflow: visible; position: relative; white-space: pre-wrap; width: 496px; word-break: break-word; word-wrap: break-word; }\",\".framer-BZtSe .framer-wq8ql { align-content: flex-end; align-items: flex-end; align-self: stretch; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 30px; height: min-content; justify-content: flex-end; overflow: hidden; padding: 0px 40px 0px 0px; position: relative; width: auto; }\",\".framer-BZtSe .framer-1vgugrn, .framer-BZtSe .framer-mpt7kl, .framer-BZtSe .framer-1wvv8mg { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 322px; }\",\".framer-BZtSe .framer-1a2572o { background: linear-gradient(180deg, rgba(20, 20, 20, 0) 0%, rgba(21, 21, 21, 0.87283) 61.09785202863962%, rgb(21, 21, 21) 70%, rgb(21, 21, 21) 100%); flex: none; height: 146px; position: relative; width: 100%; z-index: 0; }\",\".framer-BZtSe .framer-1s1udsx { align-content: center; align-items: center; 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: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; max-width: 1100px; overflow: visible; padding: 15px 0px 75px 0px; position: relative; width: 100%; }\",\".framer-BZtSe .framer-yetevb { -webkit-backdrop-filter: blur(0px); align-content: center; align-items: center; backdrop-filter: blur(0px); 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: column; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: center; padding: 40px; position: relative; width: min-content; z-index: 1; }\",\".framer-BZtSe .framer-50evn9 { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; --framer-paragraph-spacing: 0px; flex: none; height: auto; overflow: visible; position: relative; white-space: pre-wrap; width: 671px; word-break: break-word; word-wrap: break-word; }\",\".framer-BZtSe .framer-1uynynl { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 73px; height: min-content; justify-content: center; overflow: hidden; padding: 30px 0px 0px 0px; position: relative; width: 913px; }\",\".framer-BZtSe .framer-pyloj1, .framer-BZtSe .framer-1djxm8i, .framer-BZtSe .framer-pbk6t { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-BZtSe .framer-1fsveug { flex: none; height: 496px; overflow: visible; position: relative; width: 817px; z-index: 0; }\",\".framer-BZtSe .framer-s6igfb { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 30px; height: min-content; justify-content: center; overflow: hidden; padding: 9px 10px 75px 10px; position: relative; width: 100%; }\",\".framer-BZtSe .framer-1ifyzcr { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: hidden; padding: 50px 0px 0px 0px; position: relative; width: 100%; }\",\".framer-BZtSe .framer-8nxc3w { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; --framer-paragraph-spacing: 0px; flex: none; height: auto; max-width: 100%; position: relative; white-space: pre-wrap; width: 650px; word-break: break-word; word-wrap: break-word; }\",\".framer-BZtSe .framer-2an46d { flex: none; height: 43px; overflow: hidden; position: relative; width: 251px; }\",\".framer-BZtSe .framer-tenaws { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: wrap; gap: 12px; height: min-content; justify-content: center; max-width: 1200px; overflow: visible; padding: 0px 30px 0px 30px; position: relative; width: 100%; }\",\".framer-BZtSe .framer-1cb7g9t, .framer-BZtSe .framer-1rj2tlv, .framer-BZtSe .framer-1ak8rau { --border-bottom-width: 0px; --border-color: var(--token-6de1876c-a4d1-4b22-8c7b-ded933e14f23, rgba(230, 230, 230, 0.1)); --border-left-width: 0px; --border-right-width: 0px; --border-style: solid; --border-top-width: 1px; align-content: center; align-items: center; background-color: rgba(230, 230, 230, 0.05); border-bottom-left-radius: 35px; border-bottom-right-radius: 35px; border-top-left-radius: 35px; border-top-right-radius: 35px; box-shadow: 0px 0.7961918735236395px 2.3885756205709185px -0.625px rgba(0, 0, 0, 0.05), 0px 2.414506143104518px 7.2435184293135535px -1.25px rgba(0, 0, 0, 0.05), 0px 6.382653521484461px 19.147960564453385px -1.875px rgba(0, 0, 0, 0.05), 0px 20px 60px -2.5px rgba(0, 0, 0, 0.05); display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; min-width: 100px; overflow: hidden; padding: 6px; position: relative; width: 1px; will-change: var(--framer-will-change-override, transform); }\",\".framer-BZtSe .framer-13g3ge6, .framer-BZtSe .framer-1ivq8ow { aspect-ratio: 1.3333333333333333 / 1; background-color: rgba(0, 0, 0, 0.18); border-bottom-left-radius: 30px; border-bottom-right-radius: 30px; border-top-left-radius: 30px; border-top-right-radius: 30px; flex: none; height: var(--framer-aspect-ratio-supported, 215px); overflow: hidden; position: relative; text-decoration: none; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-BZtSe .framer-nx6nrj { aspect-ratio: 1.2969283276450512 / 1; bottom: -9px; flex: none; left: -68px; overflow: visible; position: absolute; top: -34px; width: var(--framer-aspect-ratio-supported, 335px); }\",\".framer-BZtSe .framer-1j27g4c, .framer-BZtSe .framer-7une4l, .framer-BZtSe .framer-sp35q8 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; padding: 30px 20px 30px 20px; position: relative; width: 100%; }\",\".framer-BZtSe .framer-g3avke, .framer-BZtSe .framer-gqxmbs, .framer-BZtSe .framer-dhqd4n { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; --framer-paragraph-spacing: 0px; flex: none; height: auto; overflow: visible; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-BZtSe .framer-tg38sw, .framer-BZtSe .framer-159owwn, .framer-BZtSe .framer-1pn8kts { --framer-paragraph-spacing: 0px; flex: none; height: auto; overflow: visible; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-BZtSe .framer-raqgyd, .framer-BZtSe .framer-jtstkp, .framer-BZtSe .framer-1vx1tx2 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 15px 0px 0px 0px; position: relative; width: 100%; }\",\".framer-BZtSe .framer-13nzs6y { aspect-ratio: 1.5379901960784315 / 1; bottom: -56px; flex: none; height: var(--framer-aspect-ratio-supported, 272px); left: -36px; position: absolute; right: -95px; }\",\".framer-BZtSe .framer-9fyf63 { aspect-ratio: 1.3333333333333333 / 1; background-color: var(--token-50965d4f-a255-4b4c-98ff-86980e753422, #1d1e1f); border-bottom-left-radius: 30px; border-bottom-right-radius: 30px; border-top-left-radius: 30px; border-top-right-radius: 30px; flex: none; height: var(--framer-aspect-ratio-supported, 215px); overflow: hidden; position: relative; text-decoration: none; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-BZtSe .framer-vusibr { align-content: center; align-items: center; border-bottom-left-radius: 30px; border-bottom-right-radius: 30px; border-top-left-radius: 30px; border-top-right-radius: 30px; bottom: 0px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; justify-content: center; left: 0px; padding: 0px; position: absolute; right: 0px; top: 0px; }\",\".framer-BZtSe .framer-13rlzxo { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; max-width: 1200px; overflow: hidden; padding: 50px 0px 50px 0px; position: relative; width: 100%; }\",\".framer-BZtSe .framer-1jyclgy { background-color: #151515; flex: none; height: 20px; overflow: hidden; position: relative; width: 302px; }\",\".framer-BZtSe .framer-ci5mob { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; --framer-paragraph-spacing: 0px; flex: none; height: auto; max-width: 100%; position: relative; white-space: pre-wrap; width: auto; word-break: break-word; word-wrap: break-word; }\",\".framer-BZtSe .framer-aq0zf4 { align-content: center; align-items: center; 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: wrap; gap: 0px; height: min-content; justify-content: center; overflow: visible; padding: 75px 0px 0px 0px; position: relative; width: 100%; }\",\".framer-BZtSe .framer-uu3yof, .framer-BZtSe .framer-1rk3kix { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; padding: 0px 20px 0px 0px; position: relative; width: 1px; }\",\".framer-BZtSe .framer-1qucqu2 { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-BZtSe .framer-nhmj1y, .framer-BZtSe .framer-85ydrj, .framer-BZtSe .framer-16fk10j { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: 1px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 34px; }\",\".framer-BZtSe .framer-oc8xyw, .framer-BZtSe .framer-15tvuro, .framer-BZtSe .framer-1gfp1ac, .framer-BZtSe .framer-sriud5, .framer-BZtSe .framer-rxmoea, .framer-BZtSe .framer-1pu6ik9 { --border-bottom-width: 1px; --border-color: var(--token-933382a9-a1f8-4980-b9bb-1560844e061f, #f84536); --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; align-content: center; align-items: center; border-bottom-left-radius: 100px; border-bottom-right-radius: 100px; border-top-left-radius: 100px; border-top-right-radius: 100px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 34px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 34px; will-change: var(--framer-will-change-override, transform); }\",\".framer-BZtSe .framer-gy1rwh, .framer-BZtSe .framer-1i680fl, .framer-BZtSe .framer-4egnuv, .framer-BZtSe .framer-14owmu3, .framer-BZtSe .framer-x3o65w, .framer-BZtSe .framer-1oojsw8 { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-BZtSe .framer-58mdgl, .framer-BZtSe .framer-gilskk, .framer-BZtSe .framer-1whadaw { background-color: var(--token-933382a9-a1f8-4980-b9bb-1560844e061f, #f84536); flex: 1 0 0px; height: 1px; overflow: hidden; position: relative; width: 1px; }\",\".framer-BZtSe .framer-14f0rq, .framer-BZtSe .framer-16j8n55, .framer-BZtSe .framer-ovkcwz { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; max-width: 100%; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-BZtSe .framer-1p1uiky, .framer-BZtSe .framer-1asjuxc, .framer-BZtSe .framer-1p73xwn { background-color: #151515; flex: none; height: 14px; overflow: hidden; position: relative; width: 310px; }\",\".framer-BZtSe .framer-u8ovl2, .framer-BZtSe .framer-d0d5gx, .framer-BZtSe .framer-khhycy, .framer-BZtSe .framer-ribdau, .framer-BZtSe .framer-sk8tnl, .framer-BZtSe .framer-1l2ru0e { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-BZtSe .framer-4odrs5, .framer-BZtSe .framer-1lnk6n5, .framer-BZtSe .framer-v2xdq0 { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; --framer-paragraph-spacing: 0px; flex: none; height: auto; overflow: visible; position: relative; white-space: pre-wrap; width: 339px; word-break: break-word; word-wrap: break-word; }\",\".framer-BZtSe .framer-d6936f, .framer-BZtSe .framer-81nl61, .framer-BZtSe .framer-wzuamx { --framer-paragraph-spacing: 0px; --framer-text-wrap-override: balance; flex: none; height: auto; overflow: visible; position: relative; width: 310px; }\",\".framer-BZtSe .framer-rco238, .framer-BZtSe .framer-1o7keh1, .framer-BZtSe .framer-1g1va9z { background-color: #151515; flex: none; height: 33px; overflow: hidden; position: relative; width: 303px; }\",\".framer-BZtSe .framer-1w3aloj { align-content: center; align-items: center; border-bottom-left-radius: 9px; border-bottom-right-radius: 9px; border-top-left-radius: 9px; border-top-right-radius: 9px; box-shadow: 0px 0.7961918735236395px 2.3885756205709185px -0.625px rgba(0, 0, 0, 0.13), 0px 2.414506143104518px 7.2435184293135535px -1.25px rgba(0, 0, 0, 0.125), 0px 6.382653521484461px 19.147960564453385px -1.875px rgba(0, 0, 0, 0.125), 0px 20px 60px -2.5px rgba(0, 0, 0, 0.125); display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 610px; will-change: var(--framer-will-change-override, transform); }\",\".framer-BZtSe .framer-1fz7bwi-container, .framer-BZtSe .framer-1x5wxf2-container { flex: none; height: 411px; position: relative; width: 100%; }\",\".framer-BZtSe .framer-1sr46m1 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 306px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 625px; }\",\".framer-BZtSe .framer-105txln { align-content: center; align-items: center; 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: wrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: visible; padding: 20px 0px 0px 0px; position: relative; width: 100%; }\",\".framer-BZtSe .framer-1c6s6fc { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; padding: 0px 1px 0px 20px; position: relative; width: 1px; }\",\".framer-BZtSe .framer-1a0r368 { align-content: center; align-items: center; border-bottom-left-radius: 9px; border-bottom-right-radius: 9px; border-top-left-radius: 9px; border-top-right-radius: 9px; box-shadow: 0px 0.7961918735236395px 2.3885756205709185px -0.625px rgba(0, 0, 0, 0.13), 0px 2.414506143104518px 7.2435184293135535px -1.25px rgba(0, 0, 0, 0.125), 0px 6.382653521484461px 19.147960564453385px -1.875px rgba(0, 0, 0, 0.125), 0px 20px 60px -2.5px rgba(0, 0, 0, 0.125); display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 610px; will-change: var(--framer-will-change-override, transform); z-index: 1; }\",\".framer-BZtSe .framer-16unnrh, .framer-BZtSe .framer-1b13te3 { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-BZtSe .framer-1dhh7oi { flex: none; height: 323px; overflow: hidden; position: relative; width: 620px; }\",\".framer-BZtSe .framer-1qtivlr { align-content: center; align-items: center; 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: wrap; gap: 0px; height: min-content; justify-content: center; overflow: visible; padding: 20px 0px 0px 0px; position: relative; width: 100%; }\",\".framer-BZtSe .framer-8h3dp8 { align-content: center; align-items: center; border-bottom-left-radius: 30px; border-bottom-right-radius: 30px; border-top-left-radius: 30px; border-top-right-radius: 30px; box-shadow: 0px 0.7961918735236395px 2.3885756205709185px -0.625px rgba(0, 0, 0, 0.13), 0px 2.414506143104518px 7.2435184293135535px -1.25px rgba(0, 0, 0, 0.125), 0px 6.382653521484461px 19.147960564453385px -1.875px rgba(0, 0, 0, 0.125), 0px 20px 60px -2.5px rgba(0, 0, 0, 0.125); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 591px; will-change: var(--framer-will-change-override, transform); z-index: 1; }\",\".framer-BZtSe .framer-17os4t-container { flex: none; height: auto; position: relative; width: 101%; }\",\".framer-BZtSe .framer-vqjlmu { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: hidden; padding: 50px 30px 50px 30px; position: relative; width: 100%; }\",\".framer-BZtSe .framer-1mjeayj { align-content: center; align-items: center; background-color: #ffffff; border-bottom-left-radius: 60px; border-bottom-right-radius: 60px; border-top-left-radius: 60px; border-top-right-radius: 60px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: 341px; justify-content: center; max-width: 1200px; overflow: hidden; padding: 0px; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-BZtSe .framer-1xk05ne { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 15px; height: 456px; justify-content: center; overflow: hidden; padding: 0px 30px 0px 30px; position: relative; width: 100%; }\",\".framer-BZtSe .framer-12xb5f6 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 7px; height: min-content; justify-content: center; max-width: 2018px; padding: 0px; position: relative; width: min-content; }\",\".framer-BZtSe .framer-12j94ao { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; --framer-paragraph-spacing: 0px; flex: none; height: auto; overflow: visible; position: relative; white-space: pre-wrap; width: 500px; word-break: break-word; word-wrap: break-word; }\",\".framer-BZtSe .framer-1t5m15j { --framer-paragraph-spacing: 0px; flex: none; height: auto; max-height: 100%; max-width: 525px; overflow: visible; position: relative; white-space: pre-wrap; width: 525px; word-break: break-word; word-wrap: break-word; }\",\".framer-BZtSe .framer-y74b7x { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-BZtSe .framer-1natb4h { flex: none; height: 243px; overflow: hidden; position: relative; width: 236px; }\",\".framer-BZtSe .framer-l53xos-container { flex: none; height: auto; max-width: 1200px; position: relative; width: 100%; }\",\".framer-BZtSe .framer-t8a9au-container { flex: none; height: auto; position: relative; width: 100%; }\",\"@supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-BZtSe.framer-72rtr7, .framer-BZtSe .framer-wb3x52, .framer-BZtSe .framer-l2avu1, .framer-BZtSe .framer-13ebhyq, .framer-BZtSe .framer-jr49sr, .framer-BZtSe .framer-1570e7z, .framer-BZtSe .framer-12dcrks, .framer-BZtSe .framer-yk52pi, .framer-BZtSe .framer-1kw6ahk, .framer-BZtSe .framer-gxzj9i, .framer-BZtSe .framer-p13222, .framer-BZtSe .framer-txmun1, .framer-BZtSe .framer-7lsrdx, .framer-BZtSe .framer-1tgg0x2, .framer-BZtSe .framer-1pkjvvy, .framer-BZtSe .framer-1up47iz, .framer-BZtSe .framer-1yfrpy5, .framer-BZtSe .framer-wqlyrz, .framer-BZtSe .framer-7sknjj, .framer-BZtSe .framer-1kh546i, .framer-BZtSe .framer-1tzz21j, .framer-BZtSe .framer-15y0eb1, .framer-BZtSe .framer-zk7ciw, .framer-BZtSe .framer-hgc1wc, .framer-BZtSe .framer-1sd2jqk, .framer-BZtSe .framer-wq8ql, .framer-BZtSe .framer-1vgugrn, .framer-BZtSe .framer-mpt7kl, .framer-BZtSe .framer-1wvv8mg, .framer-BZtSe .framer-1s1udsx, .framer-BZtSe .framer-yetevb, .framer-BZtSe .framer-1uynynl, .framer-BZtSe .framer-pyloj1, .framer-BZtSe .framer-1djxm8i, .framer-BZtSe .framer-pbk6t, .framer-BZtSe .framer-s6igfb, .framer-BZtSe .framer-1ifyzcr, .framer-BZtSe .framer-tenaws, .framer-BZtSe .framer-1cb7g9t, .framer-BZtSe .framer-1j27g4c, .framer-BZtSe .framer-raqgyd, .framer-BZtSe .framer-1rj2tlv, .framer-BZtSe .framer-7une4l, .framer-BZtSe .framer-jtstkp, .framer-BZtSe .framer-1ak8rau, .framer-BZtSe .framer-vusibr, .framer-BZtSe .framer-sp35q8, .framer-BZtSe .framer-1vx1tx2, .framer-BZtSe .framer-13rlzxo, .framer-BZtSe .framer-aq0zf4, .framer-BZtSe .framer-uu3yof, .framer-BZtSe .framer-1qucqu2, .framer-BZtSe .framer-nhmj1y, .framer-BZtSe .framer-oc8xyw, .framer-BZtSe .framer-14f0rq, .framer-BZtSe .framer-15tvuro, .framer-BZtSe .framer-u8ovl2, .framer-BZtSe .framer-d0d5gx, .framer-BZtSe .framer-1w3aloj, .framer-BZtSe .framer-1sr46m1, .framer-BZtSe .framer-105txln, .framer-BZtSe .framer-1c6s6fc, .framer-BZtSe .framer-1a0r368, .framer-BZtSe .framer-16unnrh, .framer-BZtSe .framer-85ydrj, .framer-BZtSe .framer-1gfp1ac, .framer-BZtSe .framer-16j8n55, .framer-BZtSe .framer-sriud5, .framer-BZtSe .framer-khhycy, .framer-BZtSe .framer-ribdau, .framer-BZtSe .framer-1qtivlr, .framer-BZtSe .framer-1rk3kix, .framer-BZtSe .framer-1b13te3, .framer-BZtSe .framer-16fk10j, .framer-BZtSe .framer-rxmoea, .framer-BZtSe .framer-ovkcwz, .framer-BZtSe .framer-1pu6ik9, .framer-BZtSe .framer-sk8tnl, .framer-BZtSe .framer-1l2ru0e, .framer-BZtSe .framer-8h3dp8, .framer-BZtSe .framer-vqjlmu, .framer-BZtSe .framer-1mjeayj, .framer-BZtSe .framer-1xk05ne, .framer-BZtSe .framer-12xb5f6, .framer-BZtSe .framer-y74b7x { gap: 0px; } .framer-BZtSe.framer-72rtr7 > *, .framer-BZtSe .framer-wb3x52 > *, .framer-BZtSe .framer-1yfrpy5 > *, .framer-BZtSe .framer-hgc1wc > *, .framer-BZtSe .framer-1s1udsx > *, .framer-BZtSe .framer-1ifyzcr > *, .framer-BZtSe .framer-1cb7g9t > *, .framer-BZtSe .framer-1rj2tlv > *, .framer-BZtSe .framer-1ak8rau > *, .framer-BZtSe .framer-13rlzxo > *, .framer-BZtSe .framer-y74b7x > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-BZtSe.framer-72rtr7 > :first-child, .framer-BZtSe .framer-wb3x52 > :first-child, .framer-BZtSe .framer-l2avu1 > :first-child, .framer-BZtSe .framer-1570e7z > :first-child, .framer-BZtSe .framer-yk52pi > :first-child, .framer-BZtSe .framer-p13222 > :first-child, .framer-BZtSe .framer-txmun1 > :first-child, .framer-BZtSe .framer-1up47iz > :first-child, .framer-BZtSe .framer-1yfrpy5 > :first-child, .framer-BZtSe .framer-wqlyrz > :first-child, .framer-BZtSe .framer-7sknjj > :first-child, .framer-BZtSe .framer-1kh546i > :first-child, .framer-BZtSe .framer-hgc1wc > :first-child, .framer-BZtSe .framer-1sd2jqk > :first-child, .framer-BZtSe .framer-wq8ql > :first-child, .framer-BZtSe .framer-1s1udsx > :first-child, .framer-BZtSe .framer-yetevb > :first-child, .framer-BZtSe .framer-s6igfb > :first-child, .framer-BZtSe .framer-1ifyzcr > :first-child, .framer-BZtSe .framer-1cb7g9t > :first-child, .framer-BZtSe .framer-1j27g4c > :first-child, .framer-BZtSe .framer-1rj2tlv > :first-child, .framer-BZtSe .framer-7une4l > :first-child, .framer-BZtSe .framer-1ak8rau > :first-child, .framer-BZtSe .framer-sp35q8 > :first-child, .framer-BZtSe .framer-13rlzxo > :first-child, .framer-BZtSe .framer-1qucqu2 > :first-child, .framer-BZtSe .framer-nhmj1y > :first-child, .framer-BZtSe .framer-14f0rq > :first-child, .framer-BZtSe .framer-u8ovl2 > :first-child, .framer-BZtSe .framer-d0d5gx > :first-child, .framer-BZtSe .framer-16unnrh > :first-child, .framer-BZtSe .framer-85ydrj > :first-child, .framer-BZtSe .framer-16j8n55 > :first-child, .framer-BZtSe .framer-khhycy > :first-child, .framer-BZtSe .framer-ribdau > :first-child, .framer-BZtSe .framer-1b13te3 > :first-child, .framer-BZtSe .framer-16fk10j > :first-child, .framer-BZtSe .framer-ovkcwz > :first-child, .framer-BZtSe .framer-sk8tnl > :first-child, .framer-BZtSe .framer-1l2ru0e > :first-child, .framer-BZtSe .framer-8h3dp8 > :first-child, .framer-BZtSe .framer-12xb5f6 > :first-child, .framer-BZtSe .framer-y74b7x > :first-child { margin-top: 0px; } .framer-BZtSe.framer-72rtr7 > :last-child, .framer-BZtSe .framer-wb3x52 > :last-child, .framer-BZtSe .framer-l2avu1 > :last-child, .framer-BZtSe .framer-1570e7z > :last-child, .framer-BZtSe .framer-yk52pi > :last-child, .framer-BZtSe .framer-p13222 > :last-child, .framer-BZtSe .framer-txmun1 > :last-child, .framer-BZtSe .framer-1up47iz > :last-child, .framer-BZtSe .framer-1yfrpy5 > :last-child, .framer-BZtSe .framer-wqlyrz > :last-child, .framer-BZtSe .framer-7sknjj > :last-child, .framer-BZtSe .framer-1kh546i > :last-child, .framer-BZtSe .framer-hgc1wc > :last-child, .framer-BZtSe .framer-1sd2jqk > :last-child, .framer-BZtSe .framer-wq8ql > :last-child, .framer-BZtSe .framer-1s1udsx > :last-child, .framer-BZtSe .framer-yetevb > :last-child, .framer-BZtSe .framer-s6igfb > :last-child, .framer-BZtSe .framer-1ifyzcr > :last-child, .framer-BZtSe .framer-1cb7g9t > :last-child, .framer-BZtSe .framer-1j27g4c > :last-child, .framer-BZtSe .framer-1rj2tlv > :last-child, .framer-BZtSe .framer-7une4l > :last-child, .framer-BZtSe .framer-1ak8rau > :last-child, .framer-BZtSe .framer-sp35q8 > :last-child, .framer-BZtSe .framer-13rlzxo > :last-child, .framer-BZtSe .framer-1qucqu2 > :last-child, .framer-BZtSe .framer-nhmj1y > :last-child, .framer-BZtSe .framer-14f0rq > :last-child, .framer-BZtSe .framer-u8ovl2 > :last-child, .framer-BZtSe .framer-d0d5gx > :last-child, .framer-BZtSe .framer-16unnrh > :last-child, .framer-BZtSe .framer-85ydrj > :last-child, .framer-BZtSe .framer-16j8n55 > :last-child, .framer-BZtSe .framer-khhycy > :last-child, .framer-BZtSe .framer-ribdau > :last-child, .framer-BZtSe .framer-1b13te3 > :last-child, .framer-BZtSe .framer-16fk10j > :last-child, .framer-BZtSe .framer-ovkcwz > :last-child, .framer-BZtSe .framer-sk8tnl > :last-child, .framer-BZtSe .framer-1l2ru0e > :last-child, .framer-BZtSe .framer-8h3dp8 > :last-child, .framer-BZtSe .framer-12xb5f6 > :last-child, .framer-BZtSe .framer-y74b7x > :last-child { margin-bottom: 0px; } .framer-BZtSe .framer-l2avu1 > *, .framer-BZtSe .framer-1up47iz > *, .framer-BZtSe .framer-1j27g4c > *, .framer-BZtSe .framer-7une4l > *, .framer-BZtSe .framer-sp35q8 > *, .framer-BZtSe .framer-1qucqu2 > *, .framer-BZtSe .framer-nhmj1y > *, .framer-BZtSe .framer-14f0rq > *, .framer-BZtSe .framer-u8ovl2 > *, .framer-BZtSe .framer-d0d5gx > *, .framer-BZtSe .framer-16unnrh > *, .framer-BZtSe .framer-85ydrj > *, .framer-BZtSe .framer-16j8n55 > *, .framer-BZtSe .framer-khhycy > *, .framer-BZtSe .framer-ribdau > *, .framer-BZtSe .framer-1b13te3 > *, .framer-BZtSe .framer-16fk10j > *, .framer-BZtSe .framer-ovkcwz > *, .framer-BZtSe .framer-sk8tnl > *, .framer-BZtSe .framer-1l2ru0e > *, .framer-BZtSe .framer-8h3dp8 > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-BZtSe .framer-13ebhyq > *, .framer-BZtSe .framer-1xk05ne > * { margin: 0px; margin-left: calc(15px / 2); margin-right: calc(15px / 2); } .framer-BZtSe .framer-13ebhyq > :first-child, .framer-BZtSe .framer-jr49sr > :first-child, .framer-BZtSe .framer-12dcrks > :first-child, .framer-BZtSe .framer-1kw6ahk > :first-child, .framer-BZtSe .framer-gxzj9i > :first-child, .framer-BZtSe .framer-7lsrdx > :first-child, .framer-BZtSe .framer-1tgg0x2 > :first-child, .framer-BZtSe .framer-1pkjvvy > :first-child, .framer-BZtSe .framer-1tzz21j > :first-child, .framer-BZtSe .framer-15y0eb1 > :first-child, .framer-BZtSe .framer-zk7ciw > :first-child, .framer-BZtSe .framer-1vgugrn > :first-child, .framer-BZtSe .framer-mpt7kl > :first-child, .framer-BZtSe .framer-1wvv8mg > :first-child, .framer-BZtSe .framer-1uynynl > :first-child, .framer-BZtSe .framer-pyloj1 > :first-child, .framer-BZtSe .framer-1djxm8i > :first-child, .framer-BZtSe .framer-pbk6t > :first-child, .framer-BZtSe .framer-tenaws > :first-child, .framer-BZtSe .framer-raqgyd > :first-child, .framer-BZtSe .framer-jtstkp > :first-child, .framer-BZtSe .framer-vusibr > :first-child, .framer-BZtSe .framer-1vx1tx2 > :first-child, .framer-BZtSe .framer-aq0zf4 > :first-child, .framer-BZtSe .framer-uu3yof > :first-child, .framer-BZtSe .framer-oc8xyw > :first-child, .framer-BZtSe .framer-15tvuro > :first-child, .framer-BZtSe .framer-1w3aloj > :first-child, .framer-BZtSe .framer-1sr46m1 > :first-child, .framer-BZtSe .framer-105txln > :first-child, .framer-BZtSe .framer-1c6s6fc > :first-child, .framer-BZtSe .framer-1a0r368 > :first-child, .framer-BZtSe .framer-1gfp1ac > :first-child, .framer-BZtSe .framer-sriud5 > :first-child, .framer-BZtSe .framer-1qtivlr > :first-child, .framer-BZtSe .framer-1rk3kix > :first-child, .framer-BZtSe .framer-rxmoea > :first-child, .framer-BZtSe .framer-1pu6ik9 > :first-child, .framer-BZtSe .framer-vqjlmu > :first-child, .framer-BZtSe .framer-1mjeayj > :first-child, .framer-BZtSe .framer-1xk05ne > :first-child { margin-left: 0px; } .framer-BZtSe .framer-13ebhyq > :last-child, .framer-BZtSe .framer-jr49sr > :last-child, .framer-BZtSe .framer-12dcrks > :last-child, .framer-BZtSe .framer-1kw6ahk > :last-child, .framer-BZtSe .framer-gxzj9i > :last-child, .framer-BZtSe .framer-7lsrdx > :last-child, .framer-BZtSe .framer-1tgg0x2 > :last-child, .framer-BZtSe .framer-1pkjvvy > :last-child, .framer-BZtSe .framer-1tzz21j > :last-child, .framer-BZtSe .framer-15y0eb1 > :last-child, .framer-BZtSe .framer-zk7ciw > :last-child, .framer-BZtSe .framer-1vgugrn > :last-child, .framer-BZtSe .framer-mpt7kl > :last-child, .framer-BZtSe .framer-1wvv8mg > :last-child, .framer-BZtSe .framer-1uynynl > :last-child, .framer-BZtSe .framer-pyloj1 > :last-child, .framer-BZtSe .framer-1djxm8i > :last-child, .framer-BZtSe .framer-pbk6t > :last-child, .framer-BZtSe .framer-tenaws > :last-child, .framer-BZtSe .framer-raqgyd > :last-child, .framer-BZtSe .framer-jtstkp > :last-child, .framer-BZtSe .framer-vusibr > :last-child, .framer-BZtSe .framer-1vx1tx2 > :last-child, .framer-BZtSe .framer-aq0zf4 > :last-child, .framer-BZtSe .framer-uu3yof > :last-child, .framer-BZtSe .framer-oc8xyw > :last-child, .framer-BZtSe .framer-15tvuro > :last-child, .framer-BZtSe .framer-1w3aloj > :last-child, .framer-BZtSe .framer-1sr46m1 > :last-child, .framer-BZtSe .framer-105txln > :last-child, .framer-BZtSe .framer-1c6s6fc > :last-child, .framer-BZtSe .framer-1a0r368 > :last-child, .framer-BZtSe .framer-1gfp1ac > :last-child, .framer-BZtSe .framer-sriud5 > :last-child, .framer-BZtSe .framer-1qtivlr > :last-child, .framer-BZtSe .framer-1rk3kix > :last-child, .framer-BZtSe .framer-rxmoea > :last-child, .framer-BZtSe .framer-1pu6ik9 > :last-child, .framer-BZtSe .framer-vqjlmu > :last-child, .framer-BZtSe .framer-1mjeayj > :last-child, .framer-BZtSe .framer-1xk05ne > :last-child { margin-right: 0px; } .framer-BZtSe .framer-jr49sr > *, .framer-BZtSe .framer-12dcrks > *, .framer-BZtSe .framer-1kw6ahk > *, .framer-BZtSe .framer-gxzj9i > *, .framer-BZtSe .framer-7lsrdx > *, .framer-BZtSe .framer-1tgg0x2 > *, .framer-BZtSe .framer-1pkjvvy > *, .framer-BZtSe .framer-raqgyd > *, .framer-BZtSe .framer-jtstkp > *, .framer-BZtSe .framer-vusibr > *, .framer-BZtSe .framer-1vx1tx2 > *, .framer-BZtSe .framer-oc8xyw > *, .framer-BZtSe .framer-15tvuro > *, .framer-BZtSe .framer-1w3aloj > *, .framer-BZtSe .framer-1sr46m1 > *, .framer-BZtSe .framer-1a0r368 > *, .framer-BZtSe .framer-1gfp1ac > *, .framer-BZtSe .framer-sriud5 > *, .framer-BZtSe .framer-rxmoea > *, .framer-BZtSe .framer-1pu6ik9 > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-BZtSe .framer-1570e7z > *, .framer-BZtSe .framer-yk52pi > * { margin: 0px; margin-bottom: calc(20px / 2); margin-top: calc(20px / 2); } .framer-BZtSe .framer-p13222 > * { margin: 0px; margin-bottom: calc(50px / 2); margin-top: calc(50px / 2); } .framer-BZtSe .framer-txmun1 > * { margin: 0px; margin-bottom: calc(5px / 2); margin-top: calc(5px / 2); } .framer-BZtSe .framer-wqlyrz > * { margin: 0px; margin-bottom: calc(28px / 2); margin-top: calc(28px / 2); } .framer-BZtSe .framer-7sknjj > * { margin: 0px; margin-bottom: calc(60px / 2); margin-top: calc(60px / 2); } .framer-BZtSe .framer-1kh546i > *, .framer-BZtSe .framer-wq8ql > *, .framer-BZtSe .framer-s6igfb > * { margin: 0px; margin-bottom: calc(30px / 2); margin-top: calc(30px / 2); } .framer-BZtSe .framer-1tzz21j > *, .framer-BZtSe .framer-15y0eb1 > *, .framer-BZtSe .framer-zk7ciw > *, .framer-BZtSe .framer-1vgugrn > *, .framer-BZtSe .framer-mpt7kl > *, .framer-BZtSe .framer-1wvv8mg > *, .framer-BZtSe .framer-pyloj1 > *, .framer-BZtSe .framer-1djxm8i > *, .framer-BZtSe .framer-pbk6t > *, .framer-BZtSe .framer-aq0zf4 > *, .framer-BZtSe .framer-uu3yof > *, .framer-BZtSe .framer-105txln > *, .framer-BZtSe .framer-1c6s6fc > *, .framer-BZtSe .framer-1qtivlr > *, .framer-BZtSe .framer-1rk3kix > *, .framer-BZtSe .framer-vqjlmu > *, .framer-BZtSe .framer-1mjeayj > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } .framer-BZtSe .framer-1sd2jqk > * { margin: 0px; margin-bottom: calc(42px / 2); margin-top: calc(42px / 2); } .framer-BZtSe .framer-yetevb > * { margin: 0px; margin-bottom: calc(40px / 2); margin-top: calc(40px / 2); } .framer-BZtSe .framer-1uynynl > * { margin: 0px; margin-left: calc(73px / 2); margin-right: calc(73px / 2); } .framer-BZtSe .framer-tenaws > * { margin: 0px; margin-left: calc(12px / 2); margin-right: calc(12px / 2); } .framer-BZtSe .framer-12xb5f6 > * { margin: 0px; margin-bottom: calc(7px / 2); margin-top: calc(7px / 2); } }\",...sharedStyle.css,...sharedStyle1.css,...sharedStyle2.css,...sharedStyle3.css,'.framer-BZtSe[data-border=\"true\"]::after, .framer-BZtSe [data-border=\"true\"]::after { content: \"\"; border-width: var(--border-top-width, 0) var(--border-right-width, 0) var(--border-bottom-width, 0) var(--border-left-width, 0); border-color: var(--border-color, none); border-style: var(--border-style, none); width: 100%; height: 100%; position: absolute; box-sizing: border-box; left: 0; top: 0; border-radius: inherit; pointer-events: none; }',\"@media (max-width: 999px) { .framer-BZtSe.framer-72rtr7 { width: 420px; } .framer-BZtSe .framer-fevon7-container, .framer-BZtSe .framer-1w3aloj { order: 2; width: 100%; } .framer-BZtSe .framer-bk3vt0-container, .framer-BZtSe .framer-1nofalc { order: 0; width: 100%; } .framer-BZtSe .framer-wb3x52 { order: 4; padding: 0px 0px 10px 0px; } .framer-BZtSe .framer-y13qhh { flex-direction: column; gap: 0px; justify-content: center; padding: 40px 15px 0px 15px; } .framer-BZtSe .framer-l2avu1 { align-content: center; align-items: center; gap: 30px; padding: 0px 20px 40px 20px; width: 100%; } .framer-BZtSe .framer-ssezar, .framer-BZtSe .framer-1up47iz, .framer-BZtSe .framer-1a0r368 { order: 1; width: 100%; } .framer-BZtSe .framer-13ebhyq { order: 2; padding: 0px; width: 100%; } .framer-BZtSe .framer-18cmsri-container, .framer-BZtSe .framer-15r6cjx-container, .framer-BZtSe .framer-c6rlae-container, .framer-BZtSe .framer-xkqi5k-container, .framer-BZtSe .framer-12kovm1-container, .framer-BZtSe .framer-14f0rq, .framer-BZtSe .framer-d6936f, .framer-BZtSe .framer-16j8n55, .framer-BZtSe .framer-81nl61, .framer-BZtSe .framer-ovkcwz, .framer-BZtSe .framer-wzuamx { flex: 1 0 0px; width: 1px; } .framer-BZtSe .framer-fts6ze { flex: none; height: 254px; width: 100%; } .framer-BZtSe .framer-mq7rrd-container { height: var(--framer-aspect-ratio-supported, 229px); left: 0px; right: 0px; top: 0px; transform: unset; width: unset; } .framer-BZtSe .framer-1qkaqog-container { height: auto; order: 5; } .framer-BZtSe .framer-jr49sr { flex-direction: column; gap: 50px; order: 6; padding: 50px 15px 50px 15px; } .framer-BZtSe .framer-1570e7z, .framer-BZtSe .framer-yk52pi { flex: none; padding: 20px; width: 100%; } .framer-BZtSe .framer-1oinb16 { width: 350px; } .framer-BZtSe .framer-109g0s8, .framer-BZtSe .framer-h16baz, .framer-BZtSe .framer-1i6w4hs, .framer-BZtSe .framer-1fpekgj, .framer-BZtSe .framer-1tzz21j, .framer-BZtSe .framer-15y0eb1, .framer-BZtSe .framer-zk7ciw, .framer-BZtSe .framer-1reovz4, .framer-BZtSe .framer-1vgugrn, .framer-BZtSe .framer-mpt7kl, .framer-BZtSe .framer-1wvv8mg, .framer-BZtSe .framer-50evn9, .framer-BZtSe .framer-8nxc3w, .framer-BZtSe .framer-12j94ao, .framer-BZtSe .framer-1t5m15j { width: 100%; } .framer-BZtSe .framer-13g0b9d { width: 290px; } .framer-BZtSe .framer-gxzj9i { order: 8; padding: 40px 15px 0px 15px; } .framer-BZtSe .framer-1woe6pr { width: 90%; } .framer-BZtSe .framer-7lsrdx, .framer-BZtSe .framer-1tgg0x2 { flex-direction: column; } .framer-BZtSe .framer-1pkjvvy { order: 0; padding: 0px; } .framer-BZtSe .framer-1jmo9e3, .framer-BZtSe .framer-i61q15 { white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; } .framer-BZtSe .framer-1yfrpy5 { gap: 20px; order: 10; overflow: hidden; padding: 0px; } .framer-BZtSe .framer-wqlyrz { align-content: center; align-items: center; gap: 0px; height: min-content; padding: 100px 0px 0px 0px; } .framer-BZtSe .framer-7sknjj { align-content: center; align-items: center; gap: 27px; justify-content: flex-end; order: 1; padding: 30px 30px 40px 30px; width: 100%; } .framer-BZtSe .framer-1kh546i { align-content: center; align-items: center; padding: 0px; width: 100%; } .framer-BZtSe .framer-xqbsi { bottom: unset; height: var(--framer-aspect-ratio-supported, 322px); left: unset; order: 0; position: relative; top: unset; width: 102%; } .framer-BZtSe .framer-hgc1wc { height: min-content; padding: 60px 0px 0px 0px; } .framer-BZtSe .framer-1j2da3i { bottom: unset; height: 329px; order: 0; position: relative; right: unset; top: unset; width: 100%; } .framer-BZtSe .framer-1sd2jqk { justify-content: flex-end; order: 1; padding: 30px; width: 100%; } .framer-BZtSe .framer-wq8ql { align-self: unset; padding: 0px; width: 100%; } .framer-BZtSe .framer-yrxxyn, .framer-BZtSe .framer-jfajk2, .framer-BZtSe .framer-9sxizu, .framer-BZtSe .framer-17os4t-container { order: 0; } .framer-BZtSe .framer-8bktx5, .framer-BZtSe .framer-qnch2v, .framer-BZtSe .framer-1aqmfb5, .framer-BZtSe .framer-y74b7x { order: 1; } .framer-BZtSe .framer-1s1udsx { padding: 60px 0px 0px 0px; } .framer-BZtSe .framer-yetevb { justify-content: flex-end; order: 1; padding: 40px 30px 40px 30px; width: 100%; } .framer-BZtSe .framer-1uynynl { flex-direction: column; gap: 30px; padding: 0px; width: 105%; } .framer-BZtSe .framer-pyloj1, .framer-BZtSe .framer-1djxm8i, .framer-BZtSe .framer-pbk6t, .framer-BZtSe .framer-1cb7g9t, .framer-BZtSe .framer-1rj2tlv, .framer-BZtSe .framer-1ak8rau { flex: none; width: 100%; } .framer-BZtSe .framer-1fsveug { height: 276px; order: 0; width: 90%; } .framer-BZtSe .framer-s6igfb { order: 11; padding: 100px 25px 60px 25px; } .framer-BZtSe .framer-1ifyzcr { gap: 10px; padding: 0px 10px 0px 10px; } .framer-BZtSe .framer-2an46d { height: 18px; } .framer-BZtSe .framer-tenaws { flex-direction: column; gap: 25px; padding: 0px; } .framer-BZtSe .framer-13g3ge6, .framer-BZtSe .framer-1ivq8ow, .framer-BZtSe .framer-9fyf63 { height: var(--framer-aspect-ratio-supported, 269px); } .framer-BZtSe .framer-nx6nrj { bottom: unset; height: var(--framer-aspect-ratio-supported, 259px); left: 50%; top: 49%; transform: translate(-50%, -50%); width: 336px; } .framer-BZtSe .framer-13nzs6y { bottom: -37px; height: var(--framer-aspect-ratio-supported, 291px); left: -40px; right: -49px; } .framer-BZtSe .framer-13rlzxo { order: 12; padding: 100px 15px 30px 15px; } .framer-BZtSe .framer-aq0zf4, .framer-BZtSe .framer-105txln, .framer-BZtSe .framer-1qtivlr { flex-direction: column; padding: 60px 0px 0px 0px; } .framer-BZtSe .framer-uu3yof, .framer-BZtSe .framer-1rk3kix { flex: none; flex-direction: column; justify-content: flex-end; padding: 0px; width: 100%; } .framer-BZtSe .framer-1qucqu2 { align-content: flex-start; align-items: flex-start; flex: none; flex-direction: row; gap: 20px; justify-content: center; order: 1; width: 100%; } .framer-BZtSe .framer-nhmj1y, .framer-BZtSe .framer-85ydrj, .framer-BZtSe .framer-16fk10j { align-self: stretch; flex: none; height: auto; } .framer-BZtSe .framer-u8ovl2, .framer-BZtSe .framer-khhycy, .framer-BZtSe .framer-sk8tnl { align-content: flex-start; align-items: flex-start; flex-direction: row; gap: 20px; } .framer-BZtSe .framer-4odrs5, .framer-BZtSe .framer-1lnk6n5, .framer-BZtSe .framer-v2xdq0 { flex: 1 0 0px; order: 0; width: 1px; } .framer-BZtSe .framer-d0d5gx, .framer-BZtSe .framer-ribdau, .framer-BZtSe .framer-1l2ru0e { flex-direction: row; } .framer-BZtSe .framer-rco238, .framer-BZtSe .framer-1o7keh1, .framer-BZtSe .framer-1g1va9z { height: 21px; width: 307px; } .framer-BZtSe .framer-1fz7bwi-container, .framer-BZtSe .framer-1x5wxf2-container { height: auto; } .framer-BZtSe .framer-1c6s6fc { flex: none; flex-direction: column; justify-content: flex-end; padding: 0px 1px 0px 0px; width: 100%; } .framer-BZtSe .framer-16unnrh, .framer-BZtSe .framer-1b13te3 { align-content: flex-start; align-items: flex-start; flex: none; flex-direction: row; gap: 20px; order: 0; width: 100%; } .framer-BZtSe .framer-8h3dp8 { border-bottom-left-radius: 20px; border-bottom-right-radius: 20px; border-top-left-radius: 20px; border-top-right-radius: 20px; flex-direction: row; gap: 0px; order: 1; width: 100%; } .framer-BZtSe .framer-vqjlmu { flex-direction: column; order: 13; padding: 75px 17px 50px 17px; } .framer-BZtSe .framer-1mjeayj { border-bottom-left-radius: 30px; border-bottom-right-radius: 30px; border-top-left-radius: 30px; border-top-right-radius: 30px; flex-direction: column; gap: 32px; height: min-content; order: 0; padding: 45px 30px 45px 30px; } .framer-BZtSe .framer-1xk05ne { flex-direction: column; height: min-content; order: 0; padding: 0px; } .framer-BZtSe .framer-12xb5f6 { gap: 25px; order: 0; width: 100%; } .framer-BZtSe .framer-l53xos-container { order: 16; } .framer-BZtSe .framer-t8a9au-container { order: 17; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-BZtSe .framer-y13qhh, .framer-BZtSe .framer-l2avu1, .framer-BZtSe .framer-jr49sr, .framer-BZtSe .framer-7lsrdx, .framer-BZtSe .framer-1tgg0x2, .framer-BZtSe .framer-1yfrpy5, .framer-BZtSe .framer-wqlyrz, .framer-BZtSe .framer-7sknjj, .framer-BZtSe .framer-1uynynl, .framer-BZtSe .framer-1ifyzcr, .framer-BZtSe .framer-tenaws, .framer-BZtSe .framer-aq0zf4, .framer-BZtSe .framer-uu3yof, .framer-BZtSe .framer-1qucqu2, .framer-BZtSe .framer-u8ovl2, .framer-BZtSe .framer-d0d5gx, .framer-BZtSe .framer-105txln, .framer-BZtSe .framer-1c6s6fc, .framer-BZtSe .framer-16unnrh, .framer-BZtSe .framer-khhycy, .framer-BZtSe .framer-ribdau, .framer-BZtSe .framer-1qtivlr, .framer-BZtSe .framer-1rk3kix, .framer-BZtSe .framer-1b13te3, .framer-BZtSe .framer-sk8tnl, .framer-BZtSe .framer-1l2ru0e, .framer-BZtSe .framer-8h3dp8, .framer-BZtSe .framer-vqjlmu, .framer-BZtSe .framer-1mjeayj, .framer-BZtSe .framer-1xk05ne, .framer-BZtSe .framer-12xb5f6 { gap: 0px; } .framer-BZtSe .framer-y13qhh > *, .framer-BZtSe .framer-wqlyrz > *, .framer-BZtSe .framer-aq0zf4 > *, .framer-BZtSe .framer-uu3yof > *, .framer-BZtSe .framer-105txln > *, .framer-BZtSe .framer-1c6s6fc > *, .framer-BZtSe .framer-1qtivlr > *, .framer-BZtSe .framer-1rk3kix > *, .framer-BZtSe .framer-vqjlmu > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-BZtSe .framer-y13qhh > :first-child, .framer-BZtSe .framer-l2avu1 > :first-child, .framer-BZtSe .framer-jr49sr > :first-child, .framer-BZtSe .framer-7lsrdx > :first-child, .framer-BZtSe .framer-1tgg0x2 > :first-child, .framer-BZtSe .framer-1yfrpy5 > :first-child, .framer-BZtSe .framer-wqlyrz > :first-child, .framer-BZtSe .framer-7sknjj > :first-child, .framer-BZtSe .framer-1uynynl > :first-child, .framer-BZtSe .framer-1ifyzcr > :first-child, .framer-BZtSe .framer-tenaws > :first-child, .framer-BZtSe .framer-aq0zf4 > :first-child, .framer-BZtSe .framer-uu3yof > :first-child, .framer-BZtSe .framer-105txln > :first-child, .framer-BZtSe .framer-1c6s6fc > :first-child, .framer-BZtSe .framer-1qtivlr > :first-child, .framer-BZtSe .framer-1rk3kix > :first-child, .framer-BZtSe .framer-vqjlmu > :first-child, .framer-BZtSe .framer-1mjeayj > :first-child, .framer-BZtSe .framer-1xk05ne > :first-child, .framer-BZtSe .framer-12xb5f6 > :first-child { margin-top: 0px; } .framer-BZtSe .framer-y13qhh > :last-child, .framer-BZtSe .framer-l2avu1 > :last-child, .framer-BZtSe .framer-jr49sr > :last-child, .framer-BZtSe .framer-7lsrdx > :last-child, .framer-BZtSe .framer-1tgg0x2 > :last-child, .framer-BZtSe .framer-1yfrpy5 > :last-child, .framer-BZtSe .framer-wqlyrz > :last-child, .framer-BZtSe .framer-7sknjj > :last-child, .framer-BZtSe .framer-1uynynl > :last-child, .framer-BZtSe .framer-1ifyzcr > :last-child, .framer-BZtSe .framer-tenaws > :last-child, .framer-BZtSe .framer-aq0zf4 > :last-child, .framer-BZtSe .framer-uu3yof > :last-child, .framer-BZtSe .framer-105txln > :last-child, .framer-BZtSe .framer-1c6s6fc > :last-child, .framer-BZtSe .framer-1qtivlr > :last-child, .framer-BZtSe .framer-1rk3kix > :last-child, .framer-BZtSe .framer-vqjlmu > :last-child, .framer-BZtSe .framer-1mjeayj > :last-child, .framer-BZtSe .framer-1xk05ne > :last-child, .framer-BZtSe .framer-12xb5f6 > :last-child { margin-bottom: 0px; } .framer-BZtSe .framer-l2avu1 > *, .framer-BZtSe .framer-1uynynl > * { margin: 0px; margin-bottom: calc(30px / 2); margin-top: calc(30px / 2); } .framer-BZtSe .framer-jr49sr > * { margin: 0px; margin-bottom: calc(50px / 2); margin-top: calc(50px / 2); } .framer-BZtSe .framer-7lsrdx > *, .framer-BZtSe .framer-1tgg0x2 > *, .framer-BZtSe .framer-1ifyzcr > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-BZtSe .framer-1yfrpy5 > * { margin: 0px; margin-bottom: calc(20px / 2); margin-top: calc(20px / 2); } .framer-BZtSe .framer-7sknjj > * { margin: 0px; margin-bottom: calc(27px / 2); margin-top: calc(27px / 2); } .framer-BZtSe .framer-tenaws > *, .framer-BZtSe .framer-12xb5f6 > * { margin: 0px; margin-bottom: calc(25px / 2); margin-top: calc(25px / 2); } .framer-BZtSe .framer-1qucqu2 > *, .framer-BZtSe .framer-u8ovl2 > *, .framer-BZtSe .framer-16unnrh > *, .framer-BZtSe .framer-khhycy > *, .framer-BZtSe .framer-1b13te3 > *, .framer-BZtSe .framer-sk8tnl > * { margin: 0px; margin-left: calc(20px / 2); margin-right: calc(20px / 2); } .framer-BZtSe .framer-1qucqu2 > :first-child, .framer-BZtSe .framer-u8ovl2 > :first-child, .framer-BZtSe .framer-d0d5gx > :first-child, .framer-BZtSe .framer-16unnrh > :first-child, .framer-BZtSe .framer-khhycy > :first-child, .framer-BZtSe .framer-ribdau > :first-child, .framer-BZtSe .framer-1b13te3 > :first-child, .framer-BZtSe .framer-sk8tnl > :first-child, .framer-BZtSe .framer-1l2ru0e > :first-child, .framer-BZtSe .framer-8h3dp8 > :first-child { margin-left: 0px; } .framer-BZtSe .framer-1qucqu2 > :last-child, .framer-BZtSe .framer-u8ovl2 > :last-child, .framer-BZtSe .framer-d0d5gx > :last-child, .framer-BZtSe .framer-16unnrh > :last-child, .framer-BZtSe .framer-khhycy > :last-child, .framer-BZtSe .framer-ribdau > :last-child, .framer-BZtSe .framer-1b13te3 > :last-child, .framer-BZtSe .framer-sk8tnl > :last-child, .framer-BZtSe .framer-1l2ru0e > :last-child, .framer-BZtSe .framer-8h3dp8 > :last-child { margin-right: 0px; } .framer-BZtSe .framer-d0d5gx > *, .framer-BZtSe .framer-ribdau > *, .framer-BZtSe .framer-1l2ru0e > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-BZtSe .framer-8h3dp8 > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } .framer-BZtSe .framer-1mjeayj > * { margin: 0px; margin-bottom: calc(32px / 2); margin-top: calc(32px / 2); } .framer-BZtSe .framer-1xk05ne > * { margin: 0px; margin-bottom: calc(15px / 2); margin-top: calc(15px / 2); } }}\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 8569.5\n * @framerIntrinsicWidth 1000\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"BweP2MW2F\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n * @framerAcceptsLayoutTemplate true\n * @framerScrollSections {\"DHOnIsDfe\":{\"pattern\":\":DHOnIsDfe\",\"name\":\"use-cases\"}}\n * @framerResponsiveScreen\n */const FrameraugiA20Il=withCSS(Component,css,\"framer-BZtSe\");export default FrameraugiA20Il;FrameraugiA20Il.displayName=\"Home\";FrameraugiA20Il.defaultProps={height:8569.5,width:1e3};addFonts(FrameraugiA20Il,[{explicitInter:true,fonts:[{family:\"Greycliff CF Extra Bold\",source:\"custom\",url:\"https://framerusercontent.com/assets/mH2J5lxNuLy5PDAFC3oIrFzw.woff2\"},{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:\"Greycliff CF Light\",source:\"custom\",url:\"https://framerusercontent.com/assets/yAfXwuunugvLVE5slT40S8vKfYg.woff2\"},{family:\"Greycliff CF Bold\",source:\"custom\",url:\"https://framerusercontent.com/assets/NXe34Q7kzo7ZvEqMIZl0PPLixGw.woff2\"},{family:\"Greycliff CF Demi Bold\",source:\"custom\",url:\"https://framerusercontent.com/assets/xmu30lXGHZHjpB0dt2jOEaUBFw.woff2\"}]},...UpdateFonts,...TopNavbarFonts,...ButtonFonts,...VideoFonts,...LogoTickerFonts,...Video1Fonts,...VideoPlayInViewFonts,...FooterCTAFonts,...FooterMenuFonts,...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\":\"FrameraugiA20Il\",\"slots\":[],\"annotations\":{\"framerIntrinsicHeight\":\"8569.5\",\"framerResponsiveScreen\":\"\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"BweP2MW2F\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerDisplayContentsDiv\":\"false\",\"framerComponentViewportWidth\":\"true\",\"framerAcceptsLayoutTemplate\":\"true\",\"framerIntrinsicWidth\":\"1000\",\"framerScrollSections\":\"{\\\"DHOnIsDfe\\\":{\\\"pattern\\\":\\\":DHOnIsDfe\\\",\\\"name\\\":\\\"use-cases\\\"}}\",\"framerImmutableVariables\":\"true\",\"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", "MotionAWithFX", "withFX", "motion", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "animation", "transition2", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "x", "humanReadableVariantMap", "getProps", "click", "height", "id", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "I2S5sUvA5", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onTap1sn716e", "args", "scopingClassNames", "cx", "LayoutGroup", "Link", "RichText2", "css", "Framerqs6S8v90b", "withCSS", "qs6S8v90b_default", "addPropertyControls", "ControlType", "addFonts", "ObjectFitType", "SrcType", "getProps", "props", "width", "height", "topLeft", "topRight", "bottomRight", "bottomLeft", "id", "children", "rest", "Video", "newProps", "p", "VideoMemo", "usePlaybackControls", "videoRef", "isInCurrentNavigationTarget", "useIsInCurrentNavigationTarget", "requestingPlay", "pe", "setProgress", "te", "rawProgress", "newProgress", "isAlreadySet", "play", "e", "pause", "useAutoplayBehavior", "playingProp", "muted", "loop", "playsinline", "controls", "initialPlayingProp", "ye", "hasPlayingPropChanged", "setHasPlayingPropChanged", "behavesAsGif", "autoplay", "isMountedAndReadyForProgressChanges", "X", "srcType", "srcFile", "srcUrl", "progress", "objectFit", "backgroundColor", "onSeeked", "onPause", "onPlay", "onEnd", "onClick", "onMouseEnter", "onMouseLeave", "onMouseDown", "onMouseUp", "poster", "posterEnabled", "startTimeProp", "volume", "isSafari", "useIsBrowserSafari", "wasPausedOnLeave", "wasEndedOnLeave", "isOnCanvas", "useIsOnCanvas", "borderRadius", "useRadius", "autoplayBehavior", "isInViewport", "useInView", "startTime", "ue", "rawProgressValue", "isMotionValue", "value", "useOnEnter", "useOnExit", "src", "se", "fragment", "groupsRegex", "capitalizeFirstLetter", "titleCase", "objectFitOptions", "addPropertyControls", "ControlType", "borderRadiusControl", "defaultEvents", "VideoFonts", "getFonts", "Video", "Video1Controls", "getPropertyControls", "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", "videoFile", "width", "props", "_ref", "_humanReadableVariantMap_props_variant", "_ref1", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "SMb3bc0ci", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "ref1", "pe", "defaultLayoutId", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "cx", "ComponentViewportProvider", "css", "FrameryDHIln484", "withCSS", "yDHIln484_default", "addPropertyControls", "ControlType", "addFonts", "UpdateFonts", "getFonts", "qs6S8v90b_default", "TopNavbarFonts", "zW3YxVSbU_default", "TopNavbarWithVariantAppearEffect", "withVariantAppearEffect", "ButtonFonts", "ieJDRjPnG_default", "VideoFonts", "Video", "LogoTickerFonts", "hyA5KbLti_default", "Video1Fonts", "VideoPlayInViewFonts", "yDHIln484_default", "VideoPlayInViewWithVariantAppearEffect", "FooterCTAFonts", "J8bjUCBEl_default", "FooterMenuFonts", "qCztQkc1p_default", "breakpoints", "isBrowser", "serializationHash", "variantClassNames", "transformTemplate1", "_", "t", "HTMLStyle", "value", "useIsOnFramerCanvas", "p", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "variant", "restProps", "ue", "metadata", "robotsTag", "ie", "baseVariant", "hydratedBaseVariant", "useHydratedBreakpointVariants", "gestureVariant", "scopingClassNames", "cx", "router", "useRouter", "isDisplayed", "elementId", "useRouteElementId", "ref1", "isDisplayed1", "useCustomCursors", "GeneratedComponentContext", "u", "LayoutGroup", "motion", "PropertyOverrides2", "ComponentViewportProvider", "Container", "x", "RichText2", "ResolveLinks", "resolvedLinks", "getLoadingLazyAtYPosition", "Image2", "Link", "resolvedLinks1", "resolvedLinks2", "resolvedLinks3", "css", "FrameraugiA20Il", "withCSS", "augiA20Il_default", "addFonts", "getFontsFromSharedStyle", "fonts", "__FramerMetadata__"]
}
