{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/lRDHiNWNVWmE0lqtoVHP/IZ0vSV62Dv7ax4rBiGUk/Video.js", "ssg:https://framerusercontent.com/modules/1LhLcjFNW3gvHaf9kdmS/MVeucfkYVOnhd1rOwdQx/oeipDmvbA.js"],
  "sourcesContent": ["import{jsx as _jsx}from\"react/jsx-runtime\";import{addPropertyControls,ControlType,useIsInCurrentNavigationTarget}from\"framer\";import{isMotionValue,useInView}from\"framer-motion\";import{borderRadiusControl,defaultEvents,useIsBrowserSafari,useIsOnCanvas,useOnEnter,useOnExit,useRadius}from\"https://framer.com/m/framer/default-utils.js@^0.45.0\";import{memo,useCallback,useEffect,useMemo,useRef,useState}from\"react\";var ObjectFitType;(function(ObjectFitType){ObjectFitType[\"Fill\"]=\"fill\";ObjectFitType[\"Contain\"]=\"contain\";ObjectFitType[\"Cover\"]=\"cover\";ObjectFitType[\"None\"]=\"none\";ObjectFitType[\"ScaleDown\"]=\"scale-down\";})(ObjectFitType||(ObjectFitType={}));var SrcType;(function(SrcType){SrcType[\"Video\"]=\"Upload\";SrcType[\"Url\"]=\"URL\";})(SrcType||(SrcType={}));// Reduce renders\nfunction getProps(props){const{width,height,topLeft,topRight,bottomRight,bottomLeft,id,children,...rest}=props;return rest;}/**\n * VIDEO\n *\n * @framerIntrinsicWidth 200\n * @framerIntrinsicHeight 112\n *\n * @framerSupportedLayoutWidth fixed\n * @framerSupportedLayoutHeight any-prefer-fixed\n */export function Video(props){const newProps=getProps(props);return /*#__PURE__*/_jsx(VideoMemo,{...newProps});}function usePlaybackControls(videoRef){const isInCurrentNavigationTarget=useIsInCurrentNavigationTarget();const requestingPlay=useRef(false);const setProgress=useCallback(rawProgress=>{if(!videoRef.current)return;const newProgress=(rawProgress===1?.999:rawProgress)*videoRef.current.duration;const isAlreadySet=Math.abs(videoRef.current.currentTime-newProgress)<.1;if(videoRef.current.duration>0&&!isAlreadySet){videoRef.current.currentTime=newProgress;}},[]);const play=useCallback(()=>{const 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\",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\",\"framerIntrinsicWidth\":\"200\",\"framerSupportedLayoutWidth\":\"fixed\",\"framerContractVersion\":\"1\",\"framerIntrinsicHeight\":\"112\"}},\"titleCase\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"VideoProps\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Video.map", "// Generated by Framer (b742ddc)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,getLoadingLazyAtYPosition,Image,RichText,SVG,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";const cycleOrder=[\"fy4PcLdvG\",\"jFJXrQLX_\",\"XT4ed8kHT\"];const serializationHash=\"framer-2V2mV\";const variantClassNames={fy4PcLdvG:\"framer-v-19xn2dg\",jFJXrQLX_:\"framer-v-85yaol\",XT4ed8kHT:\"framer-v-1apqgrs\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion(React.Fragment);const humanReadableVariantMap={Desktop:\"fy4PcLdvG\",Ipad:\"jFJXrQLX_\",Mobile:\"XT4ed8kHT\"};const getProps=({height,id,width,...props})=>{var _humanReadableVariantMap_props_variant,_ref;return{...props,variant:(_ref=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref!==void 0?_ref:\"fy4PcLdvG\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"fy4PcLdvG\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const ref1=React.useRef(null);const isDisplayed=()=>{if(baseVariant===\"XT4ed8kHT\")return false;return true;};const isDisplayed1=()=>{if([\"jFJXrQLX_\",\"XT4ed8kHT\"].includes(baseVariant))return false;return true;};const isDisplayed2=()=>{if([\"jFJXrQLX_\",\"XT4ed8kHT\"].includes(baseVariant))return true;return false;};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__*/_jsxs(motion.div,{...restProps,...gestureHandlers,className:cx(serializationHash,...sharedStyleClassNames,\"framer-19xn2dg\",className,classNames),\"data-framer-name\":\"Desktop\",layoutDependency:layoutDependency,layoutId:\"fy4PcLdvG\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{backgroundColor:\"var(--token-c35ae444-4418-4a15-bd26-eb3d1dc3a411, rgb(250, 250, 250))\",...style},...addPropertyOverrides({jFJXrQLX_:{\"data-framer-name\":\"Ipad\"},XT4ed8kHT:{\"data-framer-name\":\"Mobile\"}},baseVariant,gestureVariant),children:[isDisplayed()&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h2,{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-0.5px\",\"--framer-line-height\":\"150%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-1of0zx5, var(--token-8a01de22-cb51-474e-af76-e18d38d43d78, rgb(99, 99, 101)))\"},children:\"TRUSTED BY 10,000+ COMPANIES FROM STARTUPS TO ENTERPRISES\"})}),className:\"framer-i8epgv\",fonts:[\"Inter-SemiBold\"],layoutDependency:layoutDependency,layoutId:\"Y92UI8STB\",style:{\"--extracted-1of0zx5\":\"var(--token-8a01de22-cb51-474e-af76-e18d38d43d78, rgb(99, 99, 101))\"},verticalAlignment:\"top\",withExternalLayout:true}),isDisplayed1()&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1v3mqlb\",layoutDependency:layoutDependency,layoutId:\"EsAHvmzdk\",style:{backgroundColor:\"rgba(255, 255, 255, 0)\",opacity:.7},children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:186,intrinsicWidth:612,loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+80+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||171)-160-96)/2+24+32)+5.563725490196079),pixelHeight:186,pixelWidth:612,sizes:\"95px\",src:\"https://framerusercontent.com/images/4dYXhS51mKOPDxZMi9P3uFNgxE0.png\",srcSet:\"https://framerusercontent.com/images/4dYXhS51mKOPDxZMi9P3uFNgxE0.png?scale-down-to=512 512w,https://framerusercontent.com/images/4dYXhS51mKOPDxZMi9P3uFNgxE0.png 612w\"},className:\"framer-18i1jdc\",\"data-framer-name\":\"Payfit2 1\",layoutDependency:layoutDependency,layoutId:\"tEEvqKF96\",style:{filter:\"grayscale(1)\",WebkitFilter:\"grayscale(1)\"}}),/*#__PURE__*/_jsx(SVG,{className:\"framer-19fyla0\",\"data-framer-name\":\"Ondeck 2 1\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:74,intrinsicWidth:252,layoutDependency:layoutDependency,layoutId:\"Y8OS_6Afy\",style:{filter:\"grayscale(1)\",WebkitFilter:\"grayscale(1)\"},svg:'<svg width=\"252\" height=\"74\" viewBox=\"0 0 252 74\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<g clip-path=\"url(#clip0_481_58843)\">\\n<path d=\"M138.236 30.9141C143.122 30.9141 147.084 34.8967 147.084 39.8094V51.9664C147.084 52.2941 146.82 52.5595 146.494 52.5595H144.134C143.809 52.5595 143.544 52.2941 143.544 51.9664V39.8094C143.544 36.8618 141.168 34.4722 138.236 34.4722C135.304 34.4722 132.928 36.8618 132.928 39.8094V51.9664C132.928 52.2941 132.663 52.5595 132.338 52.5595H129.979C129.652 52.5595 129.389 52.2941 129.389 51.9664V39.8094C129.389 34.8967 133.35 30.9141 138.236 30.9141Z\" fill=\"#212D47\"/>\\n<path d=\"M129.979 30.9141H132.338C132.663 30.9141 132.928 31.1796 132.928 31.5072V50.7804C132.928 51.108 132.663 51.3734 132.338 51.3734H129.979C129.652 51.3734 129.389 51.108 129.389 50.7804V31.5072C129.389 31.1796 129.652 30.9141 129.979 30.9141Z\" fill=\"#212D47\"/>\\n<path d=\"M167.726 52.5596C176.423 52.5596 183.357 45.59 183.357 36.9926C183.357 28.3954 176.423 21.4258 167.726 21.4258C166.949 21.4258 165.67 21.4258 163.889 21.4258V25.2804H167.726C174.471 25.2804 179.817 30.6562 179.817 37.2892C179.817 43.9221 174.471 49.0014 167.726 49.0014C166.929 49.0014 165.651 49.0014 163.889 49.0014V52.5596H167.726Z\" fill=\"#212D47\"/>\\n<path d=\"M161.238 21.4258H164.188V52.5596H161.238C160.912 52.5596 160.648 52.2942 160.648 51.9665V22.0188C160.648 21.6913 160.912 21.4258 161.238 21.4258Z\" fill=\"#212D47\"/>\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M93.7031 36.9926C93.7031 28.3954 100.635 21.4258 109.186 21.4258C117.736 21.4258 124.669 28.3954 124.669 36.9926C124.669 45.59 117.736 52.5596 109.186 52.5596C100.635 52.5596 93.7031 45.59 93.7031 36.9926ZM109.186 24.984C102.59 24.984 97.2421 30.3605 97.2421 36.9926C97.2421 43.6249 102.59 49.0014 109.186 49.0014C115.782 49.0014 121.13 43.6249 121.13 36.9926C121.13 30.3605 115.782 24.984 109.186 24.984Z\" fill=\"#212D47\"/>\\n<path d=\"M237.502 38.4516L244.408 31.6775C244.519 31.5695 244.666 31.5091 244.82 31.5091H248.586C248.749 31.5091 248.882 31.6417 248.882 31.8055C248.882 31.8841 248.851 31.9596 248.795 32.0151L241.189 39.6631L251.265 52.0762C251.367 52.2031 251.348 52.39 251.223 52.4935C251.169 52.5368 251.103 52.5602 251.035 52.5602L247.511 52.5542C247.335 52.5539 247.169 52.4754 247.058 52.3398L238.682 42.1834L237.502 43.3695V51.9609C237.502 52.2883 237.239 52.5539 236.912 52.5539H234.553C234.228 52.5539 233.963 52.2883 233.963 51.9609V23.5032C233.963 23.1757 234.228 22.9102 234.553 22.9102H236.912C237.239 22.9102 237.502 23.1757 237.502 23.5032V38.4516Z\" fill=\"#212D47\"/>\\n<path d=\"M228.922 34.1987L228.81 34.0757C226.939 32.122 224.359 30.9141 221.507 30.9141C218.579 30.9141 215.934 32.1109 214.053 34.1232C212.252 36.0582 211.168 38.7277 211.168 41.7367C211.168 48.0105 215.797 52.5595 221.507 52.5595C224.347 52.5595 226.92 51.3609 228.788 49.421L228.781 49.4132L228.91 49.2753C229.128 49.0444 229.124 48.6825 228.905 48.4546L227.26 46.7548C227.039 46.526 226.678 46.5167 226.445 46.7305C225.192 48.1393 223.421 49.0013 221.507 49.0013C217.726 49.0013 214.707 46.0193 214.707 41.7367C214.707 37.4541 217.726 34.4722 221.507 34.4722C223.426 34.4722 225.202 35.3393 226.456 36.7553C226.691 36.9567 227.044 36.9429 227.262 36.7173L228.91 35.0127C229.129 34.7874 229.134 34.4303 228.922 34.1987Z\" fill=\"#212D47\"/>\\n<path d=\"M187.338 41.7367C187.338 35.6252 191.81 30.9141 197.677 30.9141C203.329 30.9141 207.83 35.6229 208.011 41.3749C207.971 41.6632 207.724 41.8851 207.426 41.8851H193.884C193.559 41.8851 193.294 41.6195 193.294 41.2921V39.8094C193.294 39.4819 193.559 39.2164 193.884 39.2164H204.061C203.09 36.4072 200.544 34.4722 197.677 34.4722C193.897 34.4722 190.877 37.4541 190.877 41.7367C190.877 46.0193 193.897 49.0013 197.677 49.0013C199.592 49.0013 201.362 48.1393 202.616 46.7305C202.848 46.5167 203.209 46.526 203.431 46.7548L205.075 48.4546C205.295 48.6825 205.298 49.0444 205.08 49.2753L204.95 49.4132L204.958 49.4211C203.098 51.3553 200.535 52.5595 197.677 52.5595C191.81 52.5595 187.338 47.8484 187.338 41.7367Z\" fill=\"#212D47\"/>\\n<path d=\"M138.236 30.9141C143.122 30.9141 147.084 34.8967 147.084 39.8094V51.9664C147.084 52.2941 146.82 52.5595 146.494 52.5595H144.134C143.809 52.5595 143.544 52.2941 143.544 51.9664V39.8094C143.544 36.8618 141.168 34.4722 138.236 34.4722C135.304 34.4722 132.928 36.8618 132.928 39.8094V51.9664C132.928 52.2941 132.663 52.5595 132.338 52.5595H129.979C129.652 52.5595 129.389 52.2941 129.389 51.9664V39.8094C129.389 34.8967 133.35 30.9141 138.236 30.9141Z\" stroke=\"#212D47\" stroke-width=\"1.30776\" stroke-linejoin=\"round\"/>\\n<path d=\"M129.979 30.9141H132.338C132.663 30.9141 132.928 31.1796 132.928 31.5072V50.7804C132.928 51.108 132.663 51.3734 132.338 51.3734H129.979C129.652 51.3734 129.389 51.108 129.389 50.7804V31.5072C129.389 31.1796 129.652 30.9141 129.979 30.9141Z\" stroke=\"#212D47\" stroke-width=\"1.30776\" stroke-linejoin=\"round\"/>\\n<path d=\"M167.726 52.5596C176.423 52.5596 183.357 45.59 183.357 36.9926C183.357 28.3954 176.423 21.4258 167.726 21.4258C166.949 21.4258 165.67 21.4258 163.889 21.4258V25.2804H167.726C174.471 25.2804 179.817 30.6562 179.817 37.2892C179.817 43.9221 174.471 49.0014 167.726 49.0014C166.929 49.0014 165.651 49.0014 163.889 49.0014V52.5596H167.726Z\" stroke=\"#212D47\" stroke-width=\"1.30776\" stroke-linejoin=\"round\"/>\\n<path d=\"M161.238 21.4258H164.188V52.5596H161.238C160.912 52.5596 160.648 52.2942 160.648 51.9665V22.0188C160.648 21.6913 160.912 21.4258 161.238 21.4258Z\" stroke=\"#212D47\" stroke-width=\"1.30776\" stroke-linejoin=\"round\"/>\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M93.7031 36.9926C93.7031 28.3954 100.635 21.4258 109.186 21.4258C117.736 21.4258 124.669 28.3954 124.669 36.9926C124.669 45.59 117.736 52.5596 109.186 52.5596C100.635 52.5596 93.7031 45.59 93.7031 36.9926ZM109.186 24.984C102.59 24.984 97.2421 30.3605 97.2421 36.9926C97.2421 43.6249 102.59 49.0014 109.186 49.0014C115.782 49.0014 121.13 43.6249 121.13 36.9926C121.13 30.3605 115.782 24.984 109.186 24.984Z\" stroke=\"#212D47\" stroke-width=\"1.30776\" stroke-linejoin=\"round\"/>\\n<path d=\"M237.502 38.4516L244.408 31.6775C244.519 31.5695 244.666 31.5091 244.82 31.5091H248.586C248.749 31.5091 248.882 31.6417 248.882 31.8055C248.882 31.8841 248.851 31.9596 248.795 32.0151L241.189 39.6631L251.265 52.0762C251.367 52.2031 251.348 52.39 251.223 52.4935C251.169 52.5368 251.103 52.5602 251.035 52.5602L247.511 52.5542C247.335 52.5539 247.169 52.4754 247.058 52.3398L238.682 42.1834L237.502 43.3695V51.9609C237.502 52.2883 237.239 52.5539 236.912 52.5539H234.553C234.228 52.5539 233.963 52.2883 233.963 51.9609V23.5032C233.963 23.1757 234.228 22.9102 234.553 22.9102H236.912C237.239 22.9102 237.502 23.1757 237.502 23.5032V38.4516Z\" stroke=\"#212D47\" stroke-width=\"1.30776\" stroke-linejoin=\"round\"/>\\n<path d=\"M228.922 34.1987L228.81 34.0757C226.939 32.122 224.359 30.9141 221.507 30.9141C218.579 30.9141 215.934 32.1109 214.053 34.1232C212.252 36.0582 211.168 38.7277 211.168 41.7367C211.168 48.0105 215.797 52.5595 221.507 52.5595C224.347 52.5595 226.92 51.3609 228.788 49.421L228.781 49.4132L228.91 49.2753C229.128 49.0444 229.124 48.6825 228.905 48.4546L227.26 46.7548C227.039 46.526 226.678 46.5167 226.445 46.7305C225.192 48.1393 223.421 49.0013 221.507 49.0013C217.726 49.0013 214.707 46.0193 214.707 41.7367C214.707 37.4541 217.726 34.4722 221.507 34.4722C223.426 34.4722 225.202 35.3393 226.456 36.7553C226.691 36.9567 227.044 36.9429 227.262 36.7173L228.91 35.0127C229.129 34.7874 229.134 34.4303 228.922 34.1987Z\" stroke=\"#212D47\" stroke-width=\"1.30776\" stroke-linejoin=\"round\"/>\\n<path d=\"M187.338 41.7367C187.338 35.6252 191.81 30.9141 197.677 30.9141C203.329 30.9141 207.83 35.6229 208.011 41.3749C207.971 41.6632 207.724 41.8851 207.426 41.8851H193.884C193.559 41.8851 193.294 41.6195 193.294 41.2921V39.8094C193.294 39.4819 193.559 39.2164 193.884 39.2164H204.061C203.09 36.4072 200.544 34.4722 197.677 34.4722C193.897 34.4722 190.877 37.4541 190.877 41.7367C190.877 46.0193 193.897 49.0013 197.677 49.0013C199.592 49.0013 201.362 48.1393 202.616 46.7305C202.848 46.5167 203.209 46.526 203.431 46.7548L205.075 48.4546C205.295 48.6825 205.298 49.0444 205.08 49.2753L204.95 49.4132L204.958 49.4211C203.098 51.3553 200.535 52.5595 197.677 52.5595C191.81 52.5595 187.338 47.8484 187.338 41.7367Z\" stroke=\"#212D47\" stroke-width=\"1.30776\" stroke-linejoin=\"round\"/>\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M56.7954 17.0938H65.2878C66.0551 17.0938 66.6772 17.7192 66.6772 18.4907V21.9829C66.6772 22.7544 66.0551 23.3799 65.2878 23.3799H61.4706C60.2053 21.0683 58.6278 18.9539 56.7954 17.0938ZM51.2447 23.3799H36.8059C36.0385 23.3799 35.4166 22.7544 35.4166 21.9829V18.4907C35.4166 17.7192 36.0385 17.0938 36.8059 17.0938C42.5 17.0938 47.6329 19.5107 51.2447 23.3799ZM51.2447 50.6194C47.6329 54.4886 42.5 56.9055 36.8059 56.9055C36.0385 56.9055 35.4166 56.2801 35.4166 55.5086V52.0163C35.4166 51.2449 36.0385 50.6194 36.8059 50.6194H51.2447ZM61.4706 50.6194H65.2878C66.0551 50.6194 66.6772 51.2449 66.6772 52.0163V55.5086C66.6772 56.2801 66.0551 56.9055 65.2878 56.9055H56.7954C58.6278 55.0454 60.2053 52.931 61.4706 50.6194ZM55.9116 42.2381C55.2933 44.5231 54.2803 46.6446 52.9508 48.5241H36.8059C36.0385 48.5241 35.4166 47.8986 35.4166 47.1272V43.6349C35.4166 42.8634 36.0385 42.2381 36.8059 42.2381H55.9116ZM64.459 42.2381H65.2878C66.0551 42.2381 66.6772 42.8634 66.6772 43.6349V47.1272C66.6772 47.8986 66.0551 48.5241 65.2878 48.5241H62.5073C63.3892 46.5391 64.0502 44.4332 64.459 42.2381ZM56.3589 33.8566C56.5204 34.8804 56.6043 35.9302 56.6043 36.9996C56.6043 38.0691 56.5204 39.1189 56.3589 40.1427H36.8059C36.0385 40.1427 35.4166 39.5173 35.4166 38.7458V35.2536C35.4166 34.482 36.0385 33.8566 36.8059 33.8566H56.3589ZM64.7687 33.8566H65.2878C66.0551 33.8566 66.6772 34.482 66.6772 35.2536V38.7458C66.6772 39.5173 66.0551 40.1427 65.2878 40.1427H64.7687C64.8822 39.1107 64.9404 38.062 64.9404 36.9996C64.9404 35.9372 64.8822 34.8885 64.7687 33.8566ZM52.9508 25.4752C54.2803 27.3547 55.2933 29.4762 55.9116 31.7612H36.6901C35.9228 31.7612 35.3008 31.1359 35.3008 30.3644V26.8721C35.3008 26.1007 35.9228 25.4752 36.6901 25.4752H52.9508ZM62.5073 25.4752H65.172C65.9393 25.4752 66.5614 26.1007 66.5614 26.8721V30.3644C66.5614 31.1359 65.9393 31.7612 65.172 31.7612H64.459C64.0502 29.5661 63.3892 27.4602 62.5073 25.4752Z\" fill=\"#212D47\"/>\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M36.6895 73.6693C16.5472 73.6693 0.21875 57.2523 0.21875 37.0007C0.21875 16.7491 16.5472 0.332031 36.6895 0.332031C56.8319 0.332031 73.1603 16.7491 73.1603 37.0007C73.1603 57.2523 56.8319 73.6693 36.6895 73.6693ZM36.6895 65.2879C52.2279 65.2879 64.8241 52.6233 64.8241 37.0007C64.8241 21.3781 52.2279 8.71344 36.6895 8.71344C21.1512 8.71344 8.55493 21.3781 8.55493 37.0007C8.55493 52.6233 21.1512 65.2879 36.6895 65.2879Z\" fill=\"#212D47\"/>\\n</g>\\n<defs>\\n<clipPath id=\"clip0_481_58843\">\\n<rect width=\"252\" height=\"74\" fill=\"white\"/>\\n</clipPath>\\n</defs>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",intrinsicHeight:78,intrinsicWidth:447,loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+80+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||171)-160-96)/2+24+32)+-1.766304347826086),pixelHeight:78,pixelWidth:447,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/Uoz8vek5fo62I7BFdybBsqnhM.png\"},className:\"framer-g5obik\",\"data-framer-name\":\"Moove_LOGO-02 1\",layoutDependency:layoutDependency,layoutId:\"Ink3zS6Is\",style:{filter:\"grayscale(1)\",WebkitFilter:\"grayscale(1)\"}}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:180,intrinsicWidth:468,loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+80+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||171)-160-96)/2+24+32)+2.6923076923076934),pixelHeight:180,pixelWidth:468,src:\"https://framerusercontent.com/images/NBXA1ZfYjLhjHkMYNF8buyTqzE.png\"},className:\"framer-yl1d0d\",\"data-framer-name\":\"Pleo2 1\",layoutDependency:layoutDependency,layoutId:\"joLLy6th7\",style:{filter:\"grayscale(1)\",WebkitFilter:\"grayscale(1)\"}}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+80+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||171)-160-96)/2+24+32)+2.950310559006212),sizes:\"90px\",src:\"https://framerusercontent.com/images/v90pXEEswsFK5oT3MOPKyxruMw.png\",srcSet:\"https://framerusercontent.com/images/v90pXEEswsFK5oT3MOPKyxruMw.png?scale-down-to=512 512w,https://framerusercontent.com/images/v90pXEEswsFK5oT3MOPKyxruMw.png 753w\"},className:\"framer-19o5bsm\",\"data-framer-name\":\"Sprig-Logo3 1\",layoutDependency:layoutDependency,layoutId:\"U_MhUpnyu\",style:{filter:\"grayscale(1)\",WebkitFilter:\"grayscale(1)\"}}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:222,intrinsicWidth:219,loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+80+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||171)-160-96)/2+24+32)+2.950310559006212),pixelHeight:222,pixelWidth:219,src:\"https://framerusercontent.com/images/wjsjdb6IbCJBvqU2Lk7w7ozm4U.png\"},className:\"framer-18z8olm\",\"data-framer-name\":\"Sprig-Logo3 1\",layoutDependency:layoutDependency,layoutId:\"kL2TqLbTP\",style:{filter:\"grayscale(1)\",WebkitFilter:\"grayscale(1)\"}}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+80+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||171)-160-96)/2+24+32)+6.5),sizes:\"90px\",src:\"https://framerusercontent.com/images/367GB59DsirExutas5GjUtryk4c.png\",srcSet:\"https://framerusercontent.com/images/367GB59DsirExutas5GjUtryk4c.png?scale-down-to=512 512w,https://framerusercontent.com/images/367GB59DsirExutas5GjUtryk4c.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/367GB59DsirExutas5GjUtryk4c.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/367GB59DsirExutas5GjUtryk4c.png 2172w\"},className:\"framer-1rsct3a\",\"data-framer-name\":\"Trusk2 1\",layoutDependency:layoutDependency,layoutId:\"ZzYSnRRSk\",style:{filter:\"grayscale(1)\",WebkitFilter:\"grayscale(1)\"}})]}),isDisplayed2()&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-19e2s0\",\"data-framer-name\":\"Companies\",layoutDependency:layoutDependency,layoutId:\"eqNjGiwut\",style:{backgroundColor:\"var(--token-c35ae444-4418-4a15-bd26-eb3d1dc3a411, rgb(250, 250, 250))\"},children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h2,{style:{\"--font-selector\":\"R0Y7SW50ZXItcmVndWxhcg==\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"21px\",\"--framer-letter-spacing\":\"-0.5px\",\"--framer-line-height\":\"150%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-1of0zx5, var(--token-5d36b8e2-f30e-49d9-b135-ec2e35fa8571, rgb(162, 163, 163)))\"},children:\"Used by 500+ companies worldwide\"})}),className:\"framer-1ss882p\",fonts:[\"GF;Inter-regular\"],layoutDependency:layoutDependency,layoutId:\"uJM1md2HG\",style:{\"--extracted-1of0zx5\":\"var(--token-5d36b8e2-f30e-49d9-b135-ec2e35fa8571, rgb(162, 163, 163))\"},variants:{jFJXrQLX_:{\"--extracted-1of0zx5\":\"var(--token-8a01de22-cb51-474e-af76-e18d38d43d78, rgb(99, 99, 101))\"},XT4ed8kHT:{\"--extracted-1of0zx5\":\"var(--token-8a01de22-cb51-474e-af76-e18d38d43d78, rgb(99, 99, 101))\"}},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({jFJXrQLX_:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h2,{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-0.5px\",\"--framer-line-height\":\"150%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-1of0zx5, var(--token-8a01de22-cb51-474e-af76-e18d38d43d78, rgb(99, 99, 101)))\"},children:\"TRUSTED BY 10,000+ COMPANIES FROM STARTUPS TO ENTERPRISES\"})}),fonts:[\"Inter-SemiBold\"]},XT4ed8kHT:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(motion.h2,{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-0.5px\",\"--framer-line-height\":\"150%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-1of0zx5, var(--token-8a01de22-cb51-474e-af76-e18d38d43d78, rgb(99, 99, 101)))\"},children:[\"TRUSTED BY 10,000+ COMPANIES \",/*#__PURE__*/_jsx(motion.br,{}),\"FROM STARTUPS TO ENTERPRISES\"]})}),fonts:[\"Inter-SemiBold\"]}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-hn44uz\",layoutDependency:layoutDependency,layoutId:\"Uo4DtXpLq\",style:{backgroundColor:\"rgba(255, 255, 255, 0)\",opacity:.7},children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:186,intrinsicWidth:612,pixelHeight:186,pixelWidth:612,sizes:\"131.6129px\",src:\"https://framerusercontent.com/images/4dYXhS51mKOPDxZMi9P3uFNgxE0.png\",srcSet:\"https://framerusercontent.com/images/4dYXhS51mKOPDxZMi9P3uFNgxE0.png?scale-down-to=512 512w,https://framerusercontent.com/images/4dYXhS51mKOPDxZMi9P3uFNgxE0.png 612w\"},className:\"framer-1c7wggb\",\"data-framer-name\":\"Payfit2 1\",layoutDependency:layoutDependency,layoutId:\"o8qDMFx1P\",style:{filter:\"grayscale(1)\",WebkitFilter:\"grayscale(1)\"},...addPropertyOverrides({jFJXrQLX_:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:186,intrinsicWidth:612,loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+80+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||316)-160-416)/2+0+0)+80+72+0),pixelHeight:186,pixelWidth:612,sizes:\"131.6129px\",src:\"https://framerusercontent.com/images/4dYXhS51mKOPDxZMi9P3uFNgxE0.png\",srcSet:\"https://framerusercontent.com/images/4dYXhS51mKOPDxZMi9P3uFNgxE0.png?scale-down-to=512 512w,https://framerusercontent.com/images/4dYXhS51mKOPDxZMi9P3uFNgxE0.png 612w\"}},XT4ed8kHT:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:186,intrinsicWidth:612,loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+62+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||316)-142-200)/2+0+0)+0+72+0),pixelHeight:186,pixelWidth:612,sizes:\"131.6129px\",src:\"https://framerusercontent.com/images/4dYXhS51mKOPDxZMi9P3uFNgxE0.png\",srcSet:\"https://framerusercontent.com/images/4dYXhS51mKOPDxZMi9P3uFNgxE0.png?scale-down-to=512 512w,https://framerusercontent.com/images/4dYXhS51mKOPDxZMi9P3uFNgxE0.png 612w\"}}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1nspqgc\",\"data-framer-name\":\"Ondeck 2 1\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:74,intrinsicWidth:252,layoutDependency:layoutDependency,layoutId:\"cyAJoUl5m\",style:{filter:\"grayscale(1)\",WebkitFilter:\"grayscale(1)\"},svg:'<svg width=\"252\" height=\"74\" viewBox=\"0 0 252 74\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<g clip-path=\"url(#clip0_481_58843)\">\\n<path d=\"M138.236 30.9141C143.122 30.9141 147.084 34.8967 147.084 39.8094V51.9664C147.084 52.2941 146.82 52.5595 146.494 52.5595H144.134C143.809 52.5595 143.544 52.2941 143.544 51.9664V39.8094C143.544 36.8618 141.168 34.4722 138.236 34.4722C135.304 34.4722 132.928 36.8618 132.928 39.8094V51.9664C132.928 52.2941 132.663 52.5595 132.338 52.5595H129.979C129.652 52.5595 129.389 52.2941 129.389 51.9664V39.8094C129.389 34.8967 133.35 30.9141 138.236 30.9141Z\" fill=\"#212D47\"/>\\n<path d=\"M129.979 30.9141H132.338C132.663 30.9141 132.928 31.1796 132.928 31.5072V50.7804C132.928 51.108 132.663 51.3734 132.338 51.3734H129.979C129.652 51.3734 129.389 51.108 129.389 50.7804V31.5072C129.389 31.1796 129.652 30.9141 129.979 30.9141Z\" fill=\"#212D47\"/>\\n<path d=\"M167.726 52.5596C176.423 52.5596 183.357 45.59 183.357 36.9926C183.357 28.3954 176.423 21.4258 167.726 21.4258C166.949 21.4258 165.67 21.4258 163.889 21.4258V25.2804H167.726C174.471 25.2804 179.817 30.6562 179.817 37.2892C179.817 43.9221 174.471 49.0014 167.726 49.0014C166.929 49.0014 165.651 49.0014 163.889 49.0014V52.5596H167.726Z\" fill=\"#212D47\"/>\\n<path d=\"M161.238 21.4258H164.188V52.5596H161.238C160.912 52.5596 160.648 52.2942 160.648 51.9665V22.0188C160.648 21.6913 160.912 21.4258 161.238 21.4258Z\" fill=\"#212D47\"/>\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M93.7031 36.9926C93.7031 28.3954 100.635 21.4258 109.186 21.4258C117.736 21.4258 124.669 28.3954 124.669 36.9926C124.669 45.59 117.736 52.5596 109.186 52.5596C100.635 52.5596 93.7031 45.59 93.7031 36.9926ZM109.186 24.984C102.59 24.984 97.2421 30.3605 97.2421 36.9926C97.2421 43.6249 102.59 49.0014 109.186 49.0014C115.782 49.0014 121.13 43.6249 121.13 36.9926C121.13 30.3605 115.782 24.984 109.186 24.984Z\" fill=\"#212D47\"/>\\n<path d=\"M237.502 38.4516L244.408 31.6775C244.519 31.5695 244.666 31.5091 244.82 31.5091H248.586C248.749 31.5091 248.882 31.6417 248.882 31.8055C248.882 31.8841 248.851 31.9596 248.795 32.0151L241.189 39.6631L251.265 52.0762C251.367 52.2031 251.348 52.39 251.223 52.4935C251.169 52.5368 251.103 52.5602 251.035 52.5602L247.511 52.5542C247.335 52.5539 247.169 52.4754 247.058 52.3398L238.682 42.1834L237.502 43.3695V51.9609C237.502 52.2883 237.239 52.5539 236.912 52.5539H234.553C234.228 52.5539 233.963 52.2883 233.963 51.9609V23.5032C233.963 23.1757 234.228 22.9102 234.553 22.9102H236.912C237.239 22.9102 237.502 23.1757 237.502 23.5032V38.4516Z\" fill=\"#212D47\"/>\\n<path d=\"M228.922 34.1987L228.81 34.0757C226.939 32.122 224.359 30.9141 221.507 30.9141C218.579 30.9141 215.934 32.1109 214.053 34.1232C212.252 36.0582 211.168 38.7277 211.168 41.7367C211.168 48.0105 215.797 52.5595 221.507 52.5595C224.347 52.5595 226.92 51.3609 228.788 49.421L228.781 49.4132L228.91 49.2753C229.128 49.0444 229.124 48.6825 228.905 48.4546L227.26 46.7548C227.039 46.526 226.678 46.5167 226.445 46.7305C225.192 48.1393 223.421 49.0013 221.507 49.0013C217.726 49.0013 214.707 46.0193 214.707 41.7367C214.707 37.4541 217.726 34.4722 221.507 34.4722C223.426 34.4722 225.202 35.3393 226.456 36.7553C226.691 36.9567 227.044 36.9429 227.262 36.7173L228.91 35.0127C229.129 34.7874 229.134 34.4303 228.922 34.1987Z\" fill=\"#212D47\"/>\\n<path d=\"M187.338 41.7367C187.338 35.6252 191.81 30.9141 197.677 30.9141C203.329 30.9141 207.83 35.6229 208.011 41.3749C207.971 41.6632 207.724 41.8851 207.426 41.8851H193.884C193.559 41.8851 193.294 41.6195 193.294 41.2921V39.8094C193.294 39.4819 193.559 39.2164 193.884 39.2164H204.061C203.09 36.4072 200.544 34.4722 197.677 34.4722C193.897 34.4722 190.877 37.4541 190.877 41.7367C190.877 46.0193 193.897 49.0013 197.677 49.0013C199.592 49.0013 201.362 48.1393 202.616 46.7305C202.848 46.5167 203.209 46.526 203.431 46.7548L205.075 48.4546C205.295 48.6825 205.298 49.0444 205.08 49.2753L204.95 49.4132L204.958 49.4211C203.098 51.3553 200.535 52.5595 197.677 52.5595C191.81 52.5595 187.338 47.8484 187.338 41.7367Z\" fill=\"#212D47\"/>\\n<path d=\"M138.236 30.9141C143.122 30.9141 147.084 34.8967 147.084 39.8094V51.9664C147.084 52.2941 146.82 52.5595 146.494 52.5595H144.134C143.809 52.5595 143.544 52.2941 143.544 51.9664V39.8094C143.544 36.8618 141.168 34.4722 138.236 34.4722C135.304 34.4722 132.928 36.8618 132.928 39.8094V51.9664C132.928 52.2941 132.663 52.5595 132.338 52.5595H129.979C129.652 52.5595 129.389 52.2941 129.389 51.9664V39.8094C129.389 34.8967 133.35 30.9141 138.236 30.9141Z\" stroke=\"#212D47\" stroke-width=\"1.30776\" stroke-linejoin=\"round\"/>\\n<path d=\"M129.979 30.9141H132.338C132.663 30.9141 132.928 31.1796 132.928 31.5072V50.7804C132.928 51.108 132.663 51.3734 132.338 51.3734H129.979C129.652 51.3734 129.389 51.108 129.389 50.7804V31.5072C129.389 31.1796 129.652 30.9141 129.979 30.9141Z\" stroke=\"#212D47\" stroke-width=\"1.30776\" stroke-linejoin=\"round\"/>\\n<path d=\"M167.726 52.5596C176.423 52.5596 183.357 45.59 183.357 36.9926C183.357 28.3954 176.423 21.4258 167.726 21.4258C166.949 21.4258 165.67 21.4258 163.889 21.4258V25.2804H167.726C174.471 25.2804 179.817 30.6562 179.817 37.2892C179.817 43.9221 174.471 49.0014 167.726 49.0014C166.929 49.0014 165.651 49.0014 163.889 49.0014V52.5596H167.726Z\" stroke=\"#212D47\" stroke-width=\"1.30776\" stroke-linejoin=\"round\"/>\\n<path d=\"M161.238 21.4258H164.188V52.5596H161.238C160.912 52.5596 160.648 52.2942 160.648 51.9665V22.0188C160.648 21.6913 160.912 21.4258 161.238 21.4258Z\" stroke=\"#212D47\" stroke-width=\"1.30776\" stroke-linejoin=\"round\"/>\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M93.7031 36.9926C93.7031 28.3954 100.635 21.4258 109.186 21.4258C117.736 21.4258 124.669 28.3954 124.669 36.9926C124.669 45.59 117.736 52.5596 109.186 52.5596C100.635 52.5596 93.7031 45.59 93.7031 36.9926ZM109.186 24.984C102.59 24.984 97.2421 30.3605 97.2421 36.9926C97.2421 43.6249 102.59 49.0014 109.186 49.0014C115.782 49.0014 121.13 43.6249 121.13 36.9926C121.13 30.3605 115.782 24.984 109.186 24.984Z\" stroke=\"#212D47\" stroke-width=\"1.30776\" stroke-linejoin=\"round\"/>\\n<path d=\"M237.502 38.4516L244.408 31.6775C244.519 31.5695 244.666 31.5091 244.82 31.5091H248.586C248.749 31.5091 248.882 31.6417 248.882 31.8055C248.882 31.8841 248.851 31.9596 248.795 32.0151L241.189 39.6631L251.265 52.0762C251.367 52.2031 251.348 52.39 251.223 52.4935C251.169 52.5368 251.103 52.5602 251.035 52.5602L247.511 52.5542C247.335 52.5539 247.169 52.4754 247.058 52.3398L238.682 42.1834L237.502 43.3695V51.9609C237.502 52.2883 237.239 52.5539 236.912 52.5539H234.553C234.228 52.5539 233.963 52.2883 233.963 51.9609V23.5032C233.963 23.1757 234.228 22.9102 234.553 22.9102H236.912C237.239 22.9102 237.502 23.1757 237.502 23.5032V38.4516Z\" stroke=\"#212D47\" stroke-width=\"1.30776\" stroke-linejoin=\"round\"/>\\n<path d=\"M228.922 34.1987L228.81 34.0757C226.939 32.122 224.359 30.9141 221.507 30.9141C218.579 30.9141 215.934 32.1109 214.053 34.1232C212.252 36.0582 211.168 38.7277 211.168 41.7367C211.168 48.0105 215.797 52.5595 221.507 52.5595C224.347 52.5595 226.92 51.3609 228.788 49.421L228.781 49.4132L228.91 49.2753C229.128 49.0444 229.124 48.6825 228.905 48.4546L227.26 46.7548C227.039 46.526 226.678 46.5167 226.445 46.7305C225.192 48.1393 223.421 49.0013 221.507 49.0013C217.726 49.0013 214.707 46.0193 214.707 41.7367C214.707 37.4541 217.726 34.4722 221.507 34.4722C223.426 34.4722 225.202 35.3393 226.456 36.7553C226.691 36.9567 227.044 36.9429 227.262 36.7173L228.91 35.0127C229.129 34.7874 229.134 34.4303 228.922 34.1987Z\" stroke=\"#212D47\" stroke-width=\"1.30776\" stroke-linejoin=\"round\"/>\\n<path d=\"M187.338 41.7367C187.338 35.6252 191.81 30.9141 197.677 30.9141C203.329 30.9141 207.83 35.6229 208.011 41.3749C207.971 41.6632 207.724 41.8851 207.426 41.8851H193.884C193.559 41.8851 193.294 41.6195 193.294 41.2921V39.8094C193.294 39.4819 193.559 39.2164 193.884 39.2164H204.061C203.09 36.4072 200.544 34.4722 197.677 34.4722C193.897 34.4722 190.877 37.4541 190.877 41.7367C190.877 46.0193 193.897 49.0013 197.677 49.0013C199.592 49.0013 201.362 48.1393 202.616 46.7305C202.848 46.5167 203.209 46.526 203.431 46.7548L205.075 48.4546C205.295 48.6825 205.298 49.0444 205.08 49.2753L204.95 49.4132L204.958 49.4211C203.098 51.3553 200.535 52.5595 197.677 52.5595C191.81 52.5595 187.338 47.8484 187.338 41.7367Z\" stroke=\"#212D47\" stroke-width=\"1.30776\" stroke-linejoin=\"round\"/>\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M56.7954 17.0938H65.2878C66.0551 17.0938 66.6772 17.7192 66.6772 18.4907V21.9829C66.6772 22.7544 66.0551 23.3799 65.2878 23.3799H61.4706C60.2053 21.0683 58.6278 18.9539 56.7954 17.0938ZM51.2447 23.3799H36.8059C36.0385 23.3799 35.4166 22.7544 35.4166 21.9829V18.4907C35.4166 17.7192 36.0385 17.0938 36.8059 17.0938C42.5 17.0938 47.6329 19.5107 51.2447 23.3799ZM51.2447 50.6194C47.6329 54.4886 42.5 56.9055 36.8059 56.9055C36.0385 56.9055 35.4166 56.2801 35.4166 55.5086V52.0163C35.4166 51.2449 36.0385 50.6194 36.8059 50.6194H51.2447ZM61.4706 50.6194H65.2878C66.0551 50.6194 66.6772 51.2449 66.6772 52.0163V55.5086C66.6772 56.2801 66.0551 56.9055 65.2878 56.9055H56.7954C58.6278 55.0454 60.2053 52.931 61.4706 50.6194ZM55.9116 42.2381C55.2933 44.5231 54.2803 46.6446 52.9508 48.5241H36.8059C36.0385 48.5241 35.4166 47.8986 35.4166 47.1272V43.6349C35.4166 42.8634 36.0385 42.2381 36.8059 42.2381H55.9116ZM64.459 42.2381H65.2878C66.0551 42.2381 66.6772 42.8634 66.6772 43.6349V47.1272C66.6772 47.8986 66.0551 48.5241 65.2878 48.5241H62.5073C63.3892 46.5391 64.0502 44.4332 64.459 42.2381ZM56.3589 33.8566C56.5204 34.8804 56.6043 35.9302 56.6043 36.9996C56.6043 38.0691 56.5204 39.1189 56.3589 40.1427H36.8059C36.0385 40.1427 35.4166 39.5173 35.4166 38.7458V35.2536C35.4166 34.482 36.0385 33.8566 36.8059 33.8566H56.3589ZM64.7687 33.8566H65.2878C66.0551 33.8566 66.6772 34.482 66.6772 35.2536V38.7458C66.6772 39.5173 66.0551 40.1427 65.2878 40.1427H64.7687C64.8822 39.1107 64.9404 38.062 64.9404 36.9996C64.9404 35.9372 64.8822 34.8885 64.7687 33.8566ZM52.9508 25.4752C54.2803 27.3547 55.2933 29.4762 55.9116 31.7612H36.6901C35.9228 31.7612 35.3008 31.1359 35.3008 30.3644V26.8721C35.3008 26.1007 35.9228 25.4752 36.6901 25.4752H52.9508ZM62.5073 25.4752H65.172C65.9393 25.4752 66.5614 26.1007 66.5614 26.8721V30.3644C66.5614 31.1359 65.9393 31.7612 65.172 31.7612H64.459C64.0502 29.5661 63.3892 27.4602 62.5073 25.4752Z\" fill=\"#212D47\"/>\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M36.6895 73.6693C16.5472 73.6693 0.21875 57.2523 0.21875 37.0007C0.21875 16.7491 16.5472 0.332031 36.6895 0.332031C56.8319 0.332031 73.1603 16.7491 73.1603 37.0007C73.1603 57.2523 56.8319 73.6693 36.6895 73.6693ZM36.6895 65.2879C52.2279 65.2879 64.8241 52.6233 64.8241 37.0007C64.8241 21.3781 52.2279 8.71344 36.6895 8.71344C21.1512 8.71344 8.55493 21.3781 8.55493 37.0007C8.55493 52.6233 21.1512 65.2879 36.6895 65.2879Z\" fill=\"#212D47\"/>\\n</g>\\n<defs>\\n<clipPath id=\"clip0_481_58843\">\\n<rect width=\"252\" height=\"74\" fill=\"white\"/>\\n</clipPath>\\n</defs>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",intrinsicHeight:78,intrinsicWidth:447,pixelHeight:78,pixelWidth:447,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/Uoz8vek5fo62I7BFdybBsqnhM.png\"},className:\"framer-1vydgs8\",\"data-framer-name\":\"Moove_LOGO-02 1\",layoutDependency:layoutDependency,layoutId:\"Oqpt3Chca\",style:{filter:\"grayscale(1)\",WebkitFilter:\"grayscale(1)\"},...addPropertyOverrides({jFJXrQLX_:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:78,intrinsicWidth:447,loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+80+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||316)-160-416)/2+0+0)+80+72+-20),pixelHeight:78,pixelWidth:447,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/Uoz8vek5fo62I7BFdybBsqnhM.png\"}},XT4ed8kHT:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:78,intrinsicWidth:447,loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+62+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||316)-142-200)/2+0+0)+0+72+-20),pixelHeight:78,pixelWidth:447,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/Uoz8vek5fo62I7BFdybBsqnhM.png\"}}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:180,intrinsicWidth:468,pixelHeight:180,pixelWidth:468,src:\"https://framerusercontent.com/images/NBXA1ZfYjLhjHkMYNF8buyTqzE.png\"},className:\"framer-phdsfe\",\"data-framer-name\":\"Pleo2 1\",layoutDependency:layoutDependency,layoutId:\"jL_FEEA0L\",style:{filter:\"grayscale(1)\",WebkitFilter:\"grayscale(1)\"},...addPropertyOverrides({jFJXrQLX_:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:180,intrinsicWidth:468,loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+80+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||316)-160-416)/2+0+0)+80+72+0),pixelHeight:180,pixelWidth:468,src:\"https://framerusercontent.com/images/NBXA1ZfYjLhjHkMYNF8buyTqzE.png\"}},XT4ed8kHT:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:180,intrinsicWidth:468,loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+62+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||316)-142-200)/2+0+0)+0+72+0),pixelHeight:180,pixelWidth:468,src:\"https://framerusercontent.com/images/NBXA1ZfYjLhjHkMYNF8buyTqzE.png\"}}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-sorlu7\",layoutDependency:layoutDependency,layoutId:\"VXkoY02bl\",style:{backgroundColor:\"rgba(255, 255, 255, 0)\"}})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1elgo0y\",layoutDependency:layoutDependency,layoutId:\"TZLteOT8D\",style:{backgroundColor:\"rgba(255, 255, 255, 0)\",opacity:.7},children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",sizes:\"170px\",src:\"https://framerusercontent.com/images/367GB59DsirExutas5GjUtryk4c.png\",srcSet:\"https://framerusercontent.com/images/367GB59DsirExutas5GjUtryk4c.png?scale-down-to=512 512w,https://framerusercontent.com/images/367GB59DsirExutas5GjUtryk4c.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/367GB59DsirExutas5GjUtryk4c.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/367GB59DsirExutas5GjUtryk4c.png 2172w\"},className:\"framer-rtvurq\",\"data-framer-name\":\"Trusk2 1\",layoutDependency:layoutDependency,layoutId:\"IBEmW4nRY\",style:{filter:\"grayscale(1)\",WebkitFilter:\"grayscale(1)\"},...addPropertyOverrides({jFJXrQLX_:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+80+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||316)-160-416)/2+0+0)+80+160+0),sizes:\"170px\",src:\"https://framerusercontent.com/images/367GB59DsirExutas5GjUtryk4c.png\",srcSet:\"https://framerusercontent.com/images/367GB59DsirExutas5GjUtryk4c.png?scale-down-to=512 512w,https://framerusercontent.com/images/367GB59DsirExutas5GjUtryk4c.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/367GB59DsirExutas5GjUtryk4c.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/367GB59DsirExutas5GjUtryk4c.png 2172w\"}},XT4ed8kHT:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+62+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||316)-142-200)/2+0+0)+0+160+0),sizes:\"170px\",src:\"https://framerusercontent.com/images/367GB59DsirExutas5GjUtryk4c.png\",srcSet:\"https://framerusercontent.com/images/367GB59DsirExutas5GjUtryk4c.png?scale-down-to=512 512w,https://framerusercontent.com/images/367GB59DsirExutas5GjUtryk4c.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/367GB59DsirExutas5GjUtryk4c.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/367GB59DsirExutas5GjUtryk4c.png 2172w\"}}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",sizes:\"161px\",src:\"https://framerusercontent.com/images/v90pXEEswsFK5oT3MOPKyxruMw.png\",srcSet:\"https://framerusercontent.com/images/v90pXEEswsFK5oT3MOPKyxruMw.png?scale-down-to=512 512w,https://framerusercontent.com/images/v90pXEEswsFK5oT3MOPKyxruMw.png 753w\"},className:\"framer-o3saus\",\"data-framer-name\":\"Sprig-Logo3 1\",layoutDependency:layoutDependency,layoutId:\"QsTbSfkvK\",style:{filter:\"grayscale(1)\",WebkitFilter:\"grayscale(1)\"},...addPropertyOverrides({jFJXrQLX_:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+80+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||316)-160-416)/2+0+0)+80+160+0),sizes:\"161px\",src:\"https://framerusercontent.com/images/v90pXEEswsFK5oT3MOPKyxruMw.png\",srcSet:\"https://framerusercontent.com/images/v90pXEEswsFK5oT3MOPKyxruMw.png?scale-down-to=512 512w,https://framerusercontent.com/images/v90pXEEswsFK5oT3MOPKyxruMw.png 753w\"}},XT4ed8kHT:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+62+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||316)-142-200)/2+0+0)+0+160+0),sizes:\"161px\",src:\"https://framerusercontent.com/images/v90pXEEswsFK5oT3MOPKyxruMw.png\",srcSet:\"https://framerusercontent.com/images/v90pXEEswsFK5oT3MOPKyxruMw.png?scale-down-to=512 512w,https://framerusercontent.com/images/v90pXEEswsFK5oT3MOPKyxruMw.png 753w\"}}},baseVariant,gestureVariant)}),isDisplayed()&&/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:222,intrinsicWidth:219,pixelHeight:222,pixelWidth:219,src:\"https://framerusercontent.com/images/wjsjdb6IbCJBvqU2Lk7w7ozm4U.png\"},className:\"framer-sfeq7f\",\"data-framer-name\":\"Sprig-Logo3 1\",layoutDependency:layoutDependency,layoutId:\"Om2QFf_Ot\",style:{filter:\"grayscale(1)\",WebkitFilter:\"grayscale(1)\"},...addPropertyOverrides({jFJXrQLX_:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:222,intrinsicWidth:219,loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+80+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||316)-160-416)/2+0+0)+80+160+0),pixelHeight:222,pixelWidth:219,src:\"https://framerusercontent.com/images/wjsjdb6IbCJBvqU2Lk7w7ozm4U.png\"}}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-64tvpy\",layoutDependency:layoutDependency,layoutId:\"j589YKxmI\",style:{backgroundColor:\"rgba(255, 255, 255, 0)\"}})]})]})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-2V2mV.framer-1t4itgx, .framer-2V2mV .framer-1t4itgx { display: block; }\",\".framer-2V2mV.framer-19xn2dg { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 32px; height: 171px; justify-content: center; overflow: hidden; padding: 80px 0px 80px 0px; position: relative; width: 1280px; }\",\".framer-2V2mV .framer-i8epgv, .framer-2V2mV .framer-1ss882p { flex: none; height: auto; max-width: 100%; overflow: visible; position: relative; white-space: pre-wrap; width: auto; word-break: break-word; word-wrap: break-word; }\",\".framer-2V2mV .framer-1v3mqlb { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; height: 40px; justify-content: space-between; overflow: hidden; padding: 0px 100px 0px 100px; position: relative; width: 100%; }\",\".framer-2V2mV .framer-18i1jdc { aspect-ratio: 3.2903225806451615 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 29px); position: relative; width: 95px; }\",\".framer-2V2mV .framer-19fyla0 { aspect-ratio: 3.4054054054054053 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 28px); position: relative; width: 95px; }\",\".framer-2V2mV .framer-g5obik { aspect-ratio: 2.067415730337079 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 44px); position: relative; width: 90px; }\",\".framer-2V2mV .framer-yl1d0d { aspect-ratio: 2.6 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 35px); position: relative; width: 90px; }\",\".framer-2V2mV .framer-19o5bsm, .framer-2V2mV .framer-18z8olm { aspect-ratio: 2.639344262295082 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 34px); position: relative; width: 90px; }\",\".framer-2V2mV .framer-1rsct3a { aspect-ratio: 3.3333333333333335 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 27px); position: relative; width: 90px; }\",\".framer-2V2mV .framer-19e2s0 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 48px; height: min-content; justify-content: center; overflow: hidden; padding: 80px 0px 80px 0px; position: relative; width: 1097px; }\",\".framer-2V2mV .framer-hn44uz, .framer-2V2mV .framer-1elgo0y { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 40px; height: 40px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-2V2mV .framer-1c7wggb { aspect-ratio: 3.2903225806451615 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 40px); position: relative; width: 132px; }\",\".framer-2V2mV .framer-1nspqgc { aspect-ratio: 3.4054054054054053 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 40px); position: relative; width: 136px; }\",\".framer-2V2mV .framer-1vydgs8 { aspect-ratio: 2.067415730337079 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 80px); position: relative; width: 165px; }\",\".framer-2V2mV .framer-phdsfe { aspect-ratio: 2.6 / 1; flex: none; height: 100%; position: relative; width: var(--framer-aspect-ratio-supported, 520px); }\",\".framer-2V2mV .framer-sorlu7, .framer-2V2mV .framer-64tvpy { flex: none; height: 1px; overflow: hidden; position: relative; width: 1px; }\",\".framer-2V2mV .framer-rtvurq { aspect-ratio: 3.3333333333333335 / 1; flex: none; height: 100%; position: relative; width: var(--framer-aspect-ratio-supported, 667px); }\",\".framer-2V2mV .framer-o3saus, .framer-2V2mV .framer-sfeq7f { aspect-ratio: 2.639344262295082 / 1; flex: none; height: 100%; position: relative; width: var(--framer-aspect-ratio-supported, 528px); }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-2V2mV.framer-19xn2dg, .framer-2V2mV .framer-19e2s0, .framer-2V2mV .framer-hn44uz, .framer-2V2mV .framer-1elgo0y { gap: 0px; } .framer-2V2mV.framer-19xn2dg > * { margin: 0px; margin-bottom: calc(32px / 2); margin-top: calc(32px / 2); } .framer-2V2mV.framer-19xn2dg > :first-child, .framer-2V2mV .framer-19e2s0 > :first-child { margin-top: 0px; } .framer-2V2mV.framer-19xn2dg > :last-child, .framer-2V2mV .framer-19e2s0 > :last-child { margin-bottom: 0px; } .framer-2V2mV .framer-19e2s0 > * { margin: 0px; margin-bottom: calc(48px / 2); margin-top: calc(48px / 2); } .framer-2V2mV .framer-hn44uz > *, .framer-2V2mV .framer-1elgo0y > * { margin: 0px; margin-left: calc(40px / 2); margin-right: calc(40px / 2); } .framer-2V2mV .framer-hn44uz > :first-child, .framer-2V2mV .framer-1elgo0y > :first-child { margin-left: 0px; } .framer-2V2mV .framer-hn44uz > :last-child, .framer-2V2mV .framer-1elgo0y > :last-child { margin-right: 0px; } }\",\".framer-2V2mV.framer-v-85yaol.framer-19xn2dg { height: 316px; width: min-content; }\",\".framer-2V2mV.framer-v-85yaol .framer-i8epgv { order: 2; }\",\".framer-2V2mV.framer-v-85yaol .framer-19e2s0 { order: 1; }\",\".framer-2V2mV.framer-v-85yaol .framer-phdsfe, .framer-2V2mV.framer-v-1apqgrs .framer-phdsfe { width: var(--framer-aspect-ratio-supported, 104px); }\",\".framer-2V2mV.framer-v-85yaol .framer-rtvurq { width: var(--framer-aspect-ratio-supported, 133px); }\",\".framer-2V2mV.framer-v-85yaol .framer-o3saus, .framer-2V2mV.framer-v-85yaol .framer-sfeq7f, .framer-2V2mV.framer-v-1apqgrs .framer-o3saus { width: var(--framer-aspect-ratio-supported, 106px); }\",\".framer-2V2mV.framer-v-1apqgrs.framer-19xn2dg { height: 316px; padding: 62px 15px 80px 15px; width: 390px; }\",\".framer-2V2mV.framer-v-1apqgrs .framer-19e2s0 { order: 1; padding: 0px; width: 100%; }\",\".framer-2V2mV.framer-v-1apqgrs .framer-hn44uz, .framer-2V2mV.framer-v-1apqgrs .framer-1elgo0y { width: 100%; }\",\".framer-2V2mV.framer-v-1apqgrs .framer-rtvurq { width: var(--framer-aspect-ratio-supported, 134px); }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 171\n * @framerIntrinsicWidth 1280\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]},\"jFJXrQLX_\":{\"layout\":[\"auto\",\"fixed\"]},\"XT4ed8kHT\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FrameroeipDmvbA=withCSS(Component,css,\"framer-2V2mV\");export default FrameroeipDmvbA;FrameroeipDmvbA.displayName=\"Social proof\";FrameroeipDmvbA.defaultProps={height:171,width:1280};addPropertyControls(FrameroeipDmvbA,{variant:{options:[\"fy4PcLdvG\",\"jFJXrQLX_\",\"XT4ed8kHT\"],optionTitles:[\"Desktop\",\"Ipad\",\"Mobile\"],title:\"Variant\",type:ControlType.Enum}});addFonts(FrameroeipDmvbA,[{explicitInter:true,fonts:[{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/hyOgCu0Xnghbimh0pE8QTvtt2AU.woff2\",weight:\"600\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/NeGmSOXrPBfEFIy5YZeHq17LEDA.woff2\",weight:\"600\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/oYaAX5himiTPYuN8vLWnqBbfD2s.woff2\",weight:\"600\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/lEJLP4R0yuCaMCjSXYHtJw72M.woff2\",weight:\"600\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/cRJyLNuTJR5jbyKzGi33wU9cqIQ.woff2\",weight:\"600\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/1ZFS7N918ojhhd0nQWdj3jz4w.woff2\",weight:\"600\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/A0Wcc7NgXMjUuFdquHDrIZpzZw0.woff2\",weight:\"600\"},{family:\"Inter\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/inter/v18/UcCO3FwrK3iLTeHuS_nVMrMxCp50SjIw2boKoduKmMEVuLyfMZ1rib2Bg-4.woff2\",weight:\"400\"}]}],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FrameroeipDmvbA\",\"slots\":[],\"annotations\":{\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"jFJXrQLX_\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"fixed\\\"]},\\\"XT4ed8kHT\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerDisplayContentsDiv\":\"false\",\"framerIntrinsicHeight\":\"171\",\"framerImmutableVariables\":\"true\",\"framerIntrinsicWidth\":\"1280\",\"framerComponentViewportWidth\":\"true\",\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./oeipDmvbA.map"],
  "mappings": "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",
  "names": ["ObjectFitType", "SrcType", "getProps", "props", "width", "height", "topLeft", "topRight", "bottomRight", "bottomLeft", "id", "children", "rest", "Video", "newProps", "p", "VideoMemo", "usePlaybackControls", "videoRef", "isInCurrentNavigationTarget", "useIsInCurrentNavigationTarget", "requestingPlay", "pe", "setProgress", "te", "rawProgress", "newProgress", "isAlreadySet", "play", "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", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "_humanReadableVariantMap_props_variant", "_ref", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "ref1", "pe", "isDisplayed", "isDisplayed1", "isDisplayed2", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "u", "cx", "RichText2", "Image2", "getLoadingLazyAtYPosition", "SVG", "css", "FrameroeipDmvbA", "withCSS", "oeipDmvbA_default", "addPropertyControls", "ControlType", "addFonts"]
}
