{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/lRDHiNWNVWmE0lqtoVHP/7qT0r3So12155VV5Jq5x/Video.js", "ssg:https://framerusercontent.com/modules/iE6Y7rQ1s86HJaCGxx1w/AZL8PsRwZWS6ljVHrRzv/CzO8GNTIG.js", "ssg:https://framerusercontent.com/modules/zOWizR96cTaP2NWLv7pA/turCoDFqaHpyBEAUoiZF/F_6TybYwg.js", "ssg:https://framerusercontent.com/modules/9tBvH8cOjYLpgDYM81hq/zGAqUnAfuN6KjAcuuTpC/phMbsGD6E.js", "ssg:https://framerusercontent.com/modules/ezm2ohQ6NQon6LjqAyXH/I8kyS1iiqHfqRuJvGabE/QtdgcA1EY.js", "ssg:https://framerusercontent.com/modules/qlrqPS9eUEJCxStzpIYt/r75P8pGzin0qPchPOvHZ/CMS_Images.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 (f57d8b5)\nimport{fontStore}from\"framer\";fontStore.loadFonts([]);export const fonts=[{explicitInter:true,fonts:[]}];export const css=[\".framer-hCVLb .framer-styles-preset-1jlsu8h:not(.rich-text-wrapper), .framer-hCVLb .framer-styles-preset-1jlsu8h.rich-text-wrapper a { --framer-link-current-text-decoration: none; --framer-link-hover-text-color: #ef43b3; --framer-link-hover-text-decoration: none; --framer-link-text-decoration: underline; }\"];export const className=\"framer-hCVLb\";\nexport const __FramerMetadata__ = {\"exports\":{\"css\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"className\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"fonts\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (f57d8b5)\nimport{fontStore}from\"framer\";fontStore.loadFonts([]);export const fonts=[{explicitInter:true,fonts:[]}];export const css=['.framer-yPUHG .framer-styles-preset-1w9ymdf:not(.rich-text-wrapper), .framer-yPUHG .framer-styles-preset-1w9ymdf.rich-text-wrapper a { --framer-link-current-text-decoration: none; --framer-link-hover-text-color: var(--token-6a1632fe-ad32-4164-a9aa-b1a4d2eaaddd, #ef43b3) /* {\"name\":\"pink\"} */; --framer-link-hover-text-decoration: none; --framer-link-text-decoration: none; }'];export const className=\"framer-yPUHG\";\nexport const __FramerMetadata__ = {\"exports\":{\"fonts\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"css\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"className\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (1b7c4bf)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,Link,RichText,SVG,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";const enabledGestures={iIkF02VrK:{hover:true},p1s41gKd4:{hover:true}};const cycleOrder=[\"p1s41gKd4\",\"iIkF02VrK\"];const serializationHash=\"framer-0npgg\";const variantClassNames={iIkF02VrK:\"framer-v-1kpnngy\",p1s41gKd4:\"framer-v-sn6kls\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={\"Variant 1\":\"p1s41gKd4\",Mobile:\"iIkF02VrK\"};const getProps=({height,id,link,newTab,title,width,...props})=>{return{...props,DvORA_emD:link??props.DvORA_emD,omsrs2OFq:title??props.omsrs2OFq??\"Start building\",UecgHxH1B:newTab??props.UecgHxH1B,variant:humanReadableVariantMap[props.variant]??props.variant??\"p1s41gKd4\"};};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,omsrs2OFq,DvORA_emD,UecgHxH1B,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"p1s41gKd4\",enabledGestures,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const sharedStyleClassNames=[];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const ref1=React.useRef(null);const isDisplayed=()=>{if([\"p1s41gKd4-hover\",\"iIkF02VrK-hover\"].includes(gestureVariant))return false;return true;};const isDisplayed1=()=>{if([\"p1s41gKd4-hover\",\"iIkF02VrK-hover\"].includes(gestureVariant))return true;return false;};const defaultLayoutId=React.useId();const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(Link,{href:DvORA_emD,nodeId:\"p1s41gKd4\",openInNewTab:UecgHxH1B,children:/*#__PURE__*/_jsxs(motion.a,{...restProps,...gestureHandlers,className:`${cx(scopingClassNames,\"framer-sn6kls\",className,classNames)} framer-cz0a2h`,\"data-border\":true,\"data-framer-name\":\"Variant 1\",layoutDependency:layoutDependency,layoutId:\"p1s41gKd4\",ref:ref??ref1,style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"rgb(177, 178, 181)\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",backgroundColor:\"rgba(0, 0, 0, 0)\",...style},variants:{\"iIkF02VrK-hover\":{\"--border-color\":\"var(--token-6a1632fe-ad32-4164-a9aa-b1a4d2eaaddd, rgb(239, 67, 179))\"},\"p1s41gKd4-hover\":{\"--border-bottom-width\":\"0px\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-top-width\":\"0px\",backgroundColor:\"var(--token-13ed80bf-b17b-4be8-99d8-0f9c8c47e687, rgb(204, 18, 173))\"}},...addPropertyOverrides({\"iIkF02VrK-hover\":{\"data-framer-name\":undefined,style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"rgb(177, 178, 181)\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",...style}},\"p1s41gKd4-hover\":{\"data-framer-name\":undefined},iIkF02VrK:{\"data-framer-name\":\"Mobile\"}},baseVariant,gestureVariant),children:[isDisplayed()&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-font-size\":\"14px\",\"--framer-text-alignment\":\"right\"},children:/*#__PURE__*/_jsx(motion.span,{style:{\"--font-selector\":\"R0Y7UG9wcGlucy0zMDA=\",\"--framer-font-family\":'\"Poppins\"',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"300\",\"--framer-letter-spacing\":\"0.12em\",\"--framer-text-color\":\"var(--extracted-1w3ko1f, rgba(255, 255, 255, 1))\"},children:\"Start building\"})})}),className:\"framer-1440ci4\",\"data-framer-name\":\"Book a demo\",fonts:[\"GF;Poppins-300\"],layoutDependency:layoutDependency,layoutId:\"I3124:2312;541:2959\",style:{\"--extracted-1w3ko1f\":\"rgba(255, 255, 255, 1)\",\"--framer-paragraph-spacing\":\"0px\"},text:omsrs2OFq,variants:{iIkF02VrK:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\"}},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({iIkF02VrK:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7UG9wcGlucy0zMDA=\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-size\":\"13px\",\"--framer-font-weight\":\"300\",\"--framer-letter-spacing\":\"0.12em\",\"--framer-text-alignment\":\"right\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"Start building\"})})}},baseVariant,gestureVariant)}),isDisplayed()&&/*#__PURE__*/_jsx(SVG,{className:\"framer-1ntaei\",\"data-framer-name\":\"Group 7327\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:11,intrinsicWidth:22,layoutDependency:layoutDependency,layoutId:\"I3124:2312;541:2970\",svg:'<svg width=\"22\" height=\"11\" viewBox=\"0 0 22 11\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M0 6.25509H19.621V4.74609H0V6.25509Z\" fill=\"white\"/>\\n<path d=\"M16.3773 10.5574L15.3203 9.50036L19.3203 5.50036L15.3203 1.50036L16.3773 0.443359L21.4333 5.49936L16.3773 10.5574Z\" fill=\"white\"/>\\n</svg>\\n',withExternalLayout:true}),isDisplayed1()&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7UG9wcGlucy0zMDA=\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"300\",\"--framer-letter-spacing\":\"0.12em\",\"--framer-text-alignment\":\"right\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-6a1632fe-ad32-4164-a9aa-b1a4d2eaaddd, rgb(239, 67, 179)))\"},children:\"Start building\"})}),className:\"framer-pgp288\",\"data-framer-name\":\"Book a demo\",fonts:[\"GF;Poppins-300\"],layoutDependency:layoutDependency,layoutId:\"tN7SDX_ju\",style:{\"--extracted-r6o4lv\":\"var(--token-6a1632fe-ad32-4164-a9aa-b1a4d2eaaddd, rgb(239, 67, 179))\",\"--framer-paragraph-spacing\":\"0px\"},text:omsrs2OFq,variants:{\"p1s41gKd4-hover\":{\"--extracted-r6o4lv\":\"var(--token-c63eaa75-963d-476a-b719-455b1088b839, rgb(255, 255, 255))\"}},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({\"iIkF02VrK-hover\":{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7UG9wcGlucy0zMDA=\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-size\":\"13px\",\"--framer-font-weight\":\"300\",\"--framer-letter-spacing\":\"0.12em\",\"--framer-text-alignment\":\"right\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-6a1632fe-ad32-4164-a9aa-b1a4d2eaaddd, rgb(239, 67, 179)))\"},children:\"Start building\"})})},\"p1s41gKd4-hover\":{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7UG9wcGlucy0zMDA=\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"300\",\"--framer-letter-spacing\":\"0.12em\",\"--framer-text-alignment\":\"right\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-c63eaa75-963d-476a-b719-455b1088b839, rgb(255, 255, 255)))\"},children:\"Start building\"})})}},baseVariant,gestureVariant)}),isDisplayed1()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-1tq25w0\",layoutDependency:layoutDependency,layoutId:\"tBnhJTJq_\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1c3nffm\",\"data-framer-name\":\"arrow\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"Hq2uba4tE\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 22 11\"><path d=\"M 0.285 6.255 L 19.906 6.255 L 19.906 4.746 L 0.285 4.746 Z\" fill=\"rgb(239, 67, 179)\"></path><path d=\"M 16.663 10.557 L 15.605 9.5 L 19.605 5.5 L 15.605 1.5 L 16.663 0.443 L 21.718 5.499 Z\" fill=\"var(--token-6a1632fe-ad32-4164-a9aa-b1a4d2eaaddd, rgb(239, 67, 179)) /* {&quot;name&quot;:&quot;pink&quot;} */\"></path></svg>',svgContentId:12770076152,withExternalLayout:true,...addPropertyOverrides({\"p1s41gKd4-hover\":{svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 22 11\"><path d=\"M 0.285 6.255 L 19.906 6.255 L 19.906 4.746 L 0.285 4.746 Z\" fill=\"var(--token-c63eaa75-963d-476a-b719-455b1088b839, rgb(255, 255, 255)) /* {&quot;name&quot;:&quot;#ffffff&quot;} */\"></path><path d=\"M 16.663 10.557 L 15.605 9.5 L 19.605 5.5 L 15.605 1.5 L 16.663 0.443 L 21.718 5.499 Z\" fill=\"var(--token-c63eaa75-963d-476a-b719-455b1088b839, rgb(255, 255, 255)) /* {&quot;name&quot;:&quot;#ffffff&quot;} */\"></path></svg>',svgContentId:12631863360}},baseVariant,gestureVariant)})})]})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-0npgg.framer-cz0a2h, .framer-0npgg .framer-cz0a2h { display: block; }\",\".framer-0npgg.framer-sn6kls { align-content: center; align-items: center; cursor: pointer; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 12px; height: min-content; justify-content: flex-start; overflow: visible; padding: 16px 70px 16px 48px; position: relative; text-decoration: none; width: min-content; }\",\".framer-0npgg .framer-1440ci4, .framer-0npgg .framer-pgp288 { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-0npgg .framer-1ntaei { flex: none; height: 11px; position: absolute; right: 38px; top: 21px; width: 22px; z-index: 1; }\",\".framer-0npgg .framer-1tq25w0 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: absolute; right: 34px; top: 21px; width: 1px; z-index: 1; }\",\".framer-0npgg .framer-1c3nffm { flex: none; height: 11px; position: relative; width: 22px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-0npgg.framer-sn6kls, .framer-0npgg .framer-1tq25w0 { gap: 0px; } .framer-0npgg.framer-sn6kls > * { margin: 0px; margin-left: calc(12px / 2); margin-right: calc(12px / 2); } .framer-0npgg.framer-sn6kls > :first-child, .framer-0npgg .framer-1tq25w0 > :first-child { margin-left: 0px; } .framer-0npgg.framer-sn6kls > :last-child, .framer-0npgg .framer-1tq25w0 > :last-child { margin-right: 0px; } .framer-0npgg .framer-1tq25w0 > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } }\",\".framer-0npgg.framer-v-1kpnngy.framer-sn6kls { padding: 16px 50px 16px 28px; }\",\".framer-0npgg.framer-v-1kpnngy .framer-1ntaei { right: 18px; top: 20px; }\",\".framer-0npgg.framer-v-sn6kls.hover .framer-1tq25w0 { right: 35px; }\",\".framer-0npgg.framer-v-1kpnngy.hover .framer-1tq25w0 { right: 20px; top: 20px; }\",'.framer-0npgg[data-border=\"true\"]::after, .framer-0npgg [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 49\n * @framerIntrinsicWidth 234\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"auto\",\"auto\"]},\"iIkF02VrK\":{\"layout\":[\"auto\",\"auto\"]},\"A6XXAuLqo\":{\"layout\":[\"auto\",\"auto\"]},\"axa3Ebfc0\":{\"layout\":[\"auto\",\"auto\"]}}}\n * @framerVariables {\"omsrs2OFq\":\"title\",\"DvORA_emD\":\"link\",\"UecgHxH1B\":\"newTab\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerphMbsGD6E=withCSS(Component,css,\"framer-0npgg\");export default FramerphMbsGD6E;FramerphMbsGD6E.displayName=\"CTA-hover\";FramerphMbsGD6E.defaultProps={height:49,width:234};addPropertyControls(FramerphMbsGD6E,{variant:{options:[\"p1s41gKd4\",\"iIkF02VrK\"],optionTitles:[\"Variant 1\",\"Mobile\"],title:\"Variant\",type:ControlType.Enum},omsrs2OFq:{defaultValue:\"Start building\",displayTextArea:false,title:\"Title\",type:ControlType.String},DvORA_emD:{title:\"Link\",type:ControlType.Link},UecgHxH1B:{defaultValue:false,title:\"New Tab\",type:ControlType.Boolean}});addFonts(FramerphMbsGD6E,[{explicitInter:true,fonts:[{family:\"Poppins\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/poppins/v22/pxiByp8kv8JHgFVrLDz8V15vFP-KUEg.woff2\",weight:\"300\"}]}],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerphMbsGD6E\",\"slots\":[],\"annotations\":{\"framerDisplayContentsDiv\":\"false\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"iIkF02VrK\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"A6XXAuLqo\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"axa3Ebfc0\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]}}}\",\"framerVariables\":\"{\\\"omsrs2OFq\\\":\\\"title\\\",\\\"DvORA_emD\\\":\\\"link\\\",\\\"UecgHxH1B\\\":\\\"newTab\\\"}\",\"framerImmutableVariables\":\"true\",\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicHeight\":\"49\",\"framerIntrinsicWidth\":\"234\",\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./phMbsGD6E.map", "// Generated by Framer (32e10d4)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,getFontsFromSharedStyle,Image,Link,RichText,SVG,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{Video}from\"https://framerusercontent.com/modules/lRDHiNWNVWmE0lqtoVHP/7qT0r3So12155VV5Jq5x/Video.js\";import*as sharedStyle from\"https://framerusercontent.com/modules/iE6Y7rQ1s86HJaCGxx1w/AZL8PsRwZWS6ljVHrRzv/CzO8GNTIG.js\";import*as sharedStyle1 from\"https://framerusercontent.com/modules/zOWizR96cTaP2NWLv7pA/turCoDFqaHpyBEAUoiZF/F_6TybYwg.js\";import CTAHover from\"https://framerusercontent.com/modules/9tBvH8cOjYLpgDYM81hq/zGAqUnAfuN6KjAcuuTpC/phMbsGD6E.js\";const VideoFonts=getFonts(Video);const CTAHoverFonts=getFonts(CTAHover);const cycleOrder=[\"zfFhNGFoG\",\"ciEDkkCVX\",\"FhPB2SsJN\"];const serializationHash=\"framer-UwQF3\";const variantClassNames={ciEDkkCVX:\"framer-v-1vuxtzx\",FhPB2SsJN:\"framer-v-16fr0ow\",zfFhNGFoG:\"framer-v-bzdzco\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={Desktop:\"zfFhNGFoG\",Phone:\"FhPB2SsJN\",Tablet:\"ciEDkkCVX\"};const getProps=({cTAText,height,id,link,newTab,text,title,width,...props})=>{return{...props,ecApQKZ2T:title??props.ecApQKZ2T??\"Shape the future with us\",mJpnZNp5n:text??props.mJpnZNp5n??\"Take the next step in your career.\",q7nSy8RdZ:cTAText??props.q7nSy8RdZ??\"View opportunities\",UcqHmEwUG:newTab??props.UcqHmEwUG,variant:humanReadableVariantMap[props.variant]??props.variant??\"zfFhNGFoG\",XPDVyUo_i:link??props.XPDVyUo_i};};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,ecApQKZ2T,mJpnZNp5n,q7nSy8RdZ,XPDVyUo_i,UcqHmEwUG,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"zfFhNGFoG\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const ref1=React.useRef(null);const isDisplayed=()=>{if([\"ciEDkkCVX\",\"FhPB2SsJN\"].includes(baseVariant))return true;return false;};const isDisplayed1=()=>{if([\"ciEDkkCVX\",\"FhPB2SsJN\"].includes(baseVariant))return false;return true;};const defaultLayoutId=React.useId();const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(Image,{...restProps,...gestureHandlers,background:{alt:\"\",fit:\"fill\"},className:cx(scopingClassNames,\"framer-bzdzco\",className,classNames),\"data-framer-name\":\"Desktop\",layoutDependency:layoutDependency,layoutId:\"zfFhNGFoG\",ref:ref??ref1,style:{...style},...addPropertyOverrides({ciEDkkCVX:{\"data-framer-name\":\"Tablet\"},FhPB2SsJN:{\"data-framer-name\":\"Phone\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1u0f2vp-container\",layoutDependency:layoutDependency,layoutId:\"l2hsdUptc-container\",children:/*#__PURE__*/_jsx(Video,{backgroundColor:\"rgba(0, 0, 0, 0)\",borderRadius:0,bottomLeftRadius:0,bottomRightRadius:0,controls:false,height:\"100%\",id:\"l2hsdUptc\",isMixedBorderRadius:false,layoutId:\"l2hsdUptc\",loop:true,muted:true,objectFit:\"cover\",playing:true,posterEnabled:true,srcFile:\"https://framerusercontent.com/assets/gnGJvUteDEd3coTA43qbKJaMIAk.mp4\",srcType:\"Upload\",srcUrl:\"https://assets.mixkit.co/videos/preview/mixkit-shining-sun-in-the-sky-surrounded-by-moving-clouds-31793-small.mp4\",startTime:0,style:{height:\"100%\",width:\"100%\"},topLeftRadius:0,topRightRadius:0,volume:25,width:\"100%\"})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-kk5g65\",\"data-framer-name\":\"Shadow top\",layoutDependency:layoutDependency,layoutId:\"zElzdnbKn\",style:{background:\"linear-gradient(-0.5714582302409497deg, rgba(0, 0, 0, 0) 35.499998927116394%, rgba(0, 0, 0, 1) 100%)\"}}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1frw92h\",layoutDependency:layoutDependency,layoutId:\"tdIgMc6bA\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-14qf4qs\",layoutDependency:layoutDependency,layoutId:\"CmHT49NGO\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-11qr3d4\",\"data-framer-name\":\"Stack\",layoutDependency:layoutDependency,layoutId:\"LGRai3Zis\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7UG9wcGlucy0zMDA=\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-size\":\"50px\",\"--framer-font-weight\":\"300\",\"--framer-line-height\":\"70px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"Shape the future with us\"})}),className:\"framer-r76aw5\",\"data-framer-name\":\"Shape the future with us\",fonts:[\"GF;Poppins-300\"],layoutDependency:layoutDependency,layoutId:\"ncymug8cv\",style:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\",\"--framer-paragraph-spacing\":\"0px\"},text:ecApQKZ2T,verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({ciEDkkCVX:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7UG9wcGlucy0zMDA=\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-size\":\"50px\",\"--framer-font-weight\":\"300\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"Shape the future with us\"})})},FhPB2SsJN:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7UG9wcGlucy0zMDA=\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-size\":\"40px\",\"--framer-font-weight\":\"300\",\"--framer-line-height\":\"50px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"Shape the future with us\"})})}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-font-size\":\"26px\",\"--framer-line-height\":\"35px\",\"--framer-text-alignment\":\"center\"},children:/*#__PURE__*/_jsx(motion.span,{style:{\"--font-selector\":\"R0Y7Um9ib3RvLTMwMA==\",\"--framer-font-family\":'\"Roboto\"',\"--framer-font-size\":\"26px\",\"--framer-font-weight\":\"300\",\"--framer-text-color\":\"var(--extracted-1w3ko1f, rgba(255, 255, 255, 0.699999988079071))\"},children:\"Take the next step in your career.\"})})}),className:\"framer-13fpyyp\",\"data-framer-name\":\"Take the next step in your career.\",fonts:[\"GF;Roboto-300\"],layoutDependency:layoutDependency,layoutId:\"lodqicS5N\",style:{\"--extracted-1w3ko1f\":\"rgba(255, 255, 255, 0.699999988079071)\",\"--framer-paragraph-spacing\":\"0px\"},text:mJpnZNp5n,variants:{ciEDkkCVX:{\"--extracted-r6o4lv\":\"rgba(255, 255, 255, 0.7)\"},FhPB2SsJN:{\"--extracted-r6o4lv\":\"rgba(255, 255, 255, 0.7)\"}},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({ciEDkkCVX:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7Um9ib3RvLTMwMA==\",\"--framer-font-family\":'\"Roboto\", \"Roboto Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-font-weight\":\"300\",\"--framer-line-height\":\"35px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgba(255, 255, 255, 0.7))\"},children:\"Take the next step in your career.\"})})},FhPB2SsJN:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7Um9ib3RvLTMwMA==\",\"--framer-font-family\":'\"Roboto\", \"Roboto Placeholder\", sans-serif',\"--framer-font-size\":\"22px\",\"--framer-font-weight\":\"300\",\"--framer-line-height\":\"30px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgba(255, 255, 255, 0.7))\"},children:\"Take the next step in your career.\"})})}},baseVariant,gestureVariant)})]}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:49,y:(componentViewport?.y||0)+0+(((componentViewport?.height||200)-0-1224)/2+0+0)+0+0+250+577,...addPropertyOverrides({ciEDkkCVX:{y:(componentViewport?.y||0)+0+(((componentViewport?.height||200)-0-1114)/2+0+0)+0+0+137+537},FhPB2SsJN:{y:(componentViewport?.y||0)+0+(((componentViewport?.height||200)-0-1013.073275862069)/2+0+0)+0+0+42+500}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1tkrm4o-container\",layoutDependency:layoutDependency,layoutId:\"RJ0apjklz-container\",children:/*#__PURE__*/_jsx(CTAHover,{DvORA_emD:XPDVyUo_i,height:\"100%\",id:\"RJ0apjklz\",layoutId:\"RJ0apjklz\",omsrs2OFq:q7nSy8RdZ,UecgHxH1B:UcqHmEwUG,variant:\"p1s41gKd4\",width:\"100%\"})})})]}),/*#__PURE__*/_jsx(SVG,{className:\"framer-2rkr3u\",\"data-framer-name\":\"separator\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:2,intrinsicWidth:1798,layoutDependency:layoutDependency,layoutId:\"PEFe_9PMw\",svg:'<svg width=\"1798\" height=\"2\" viewBox=\"0 0 1798 2\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M0.4375 0.878906H1797.94V1.87891H0.4375V0.878906Z\" fill=\"white\" fill-opacity=\"0.7\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-fkabvz\",layoutDependency:layoutDependency,layoutId:\"fLq4Vw8w6\",children:[isDisplayed()&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1w5ei0l\",\"data-framer-name\":\"Stack\",layoutDependency:layoutDependency,layoutId:\"IPXwPByc4\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7UG9wcGlucy1yZWd1bGFy\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"27px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgba(255, 255, 255, 0.7))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"qrJN2xA2b\"},nodeId:\"dg0VG5bcp\",openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1jlsu8h\",\"data-styles-preset\":\"CzO8GNTIG\",children:\"Platform\"})})})}),className:\"framer-m3ob4\",\"data-framer-name\":\"Platform\",fonts:[\"GF;Poppins-regular\"],layoutDependency:layoutDependency,layoutId:\"dg0VG5bcp\",style:{\"--extracted-r6o4lv\":\"rgba(255, 255, 255, 0.7)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({ciEDkkCVX:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7UG9wcGlucy1yZWd1bGFy\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"27px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgba(255, 255, 255, 0.7))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"qrJN2xA2b\"},nodeId:\"dg0VG5bcp\",openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1w9ymdf\",\"data-styles-preset\":\"F_6TybYwg\",children:\"Platform\"})})})})},FhPB2SsJN:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7UG9wcGlucy1yZWd1bGFy\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"27px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgba(255, 255, 255, 0.7))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"qrJN2xA2b\"},nodeId:\"dg0VG5bcp\",openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1w9ymdf\",\"data-styles-preset\":\"F_6TybYwg\",children:\"Platform\"})})})})}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7UG9wcGlucy1yZWd1bGFy\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"27px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgba(255, 255, 255, 0.7))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"UGFyzduu_\"},nodeId:\"wdFgVHfeQ\",openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1jlsu8h\",\"data-styles-preset\":\"CzO8GNTIG\",children:\"Customers\"})})})}),className:\"framer-1kegk2c\",\"data-framer-name\":\"Customers\",fonts:[\"GF;Poppins-regular\"],layoutDependency:layoutDependency,layoutId:\"wdFgVHfeQ\",style:{\"--extracted-r6o4lv\":\"rgba(255, 255, 255, 0.7)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({ciEDkkCVX:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7UG9wcGlucy1yZWd1bGFy\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"27px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgba(255, 255, 255, 0.7))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"UGFyzduu_\"},nodeId:\"wdFgVHfeQ\",openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1w9ymdf\",\"data-styles-preset\":\"F_6TybYwg\",children:\"Customers\"})})})})},FhPB2SsJN:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7UG9wcGlucy1yZWd1bGFy\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"27px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgba(255, 255, 255, 0.7))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"UGFyzduu_\"},nodeId:\"wdFgVHfeQ\",openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1w9ymdf\",\"data-styles-preset\":\"F_6TybYwg\",children:\"Customers\"})})})})}},baseVariant,gestureVariant)}),isDisplayed()&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7UG9wcGlucy1yZWd1bGFy\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"27px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgba(255, 255, 255, 0.7))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"UGFyzduu_\"},nodeId:\"SM0jib5c3\",openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1jlsu8h\",\"data-styles-preset\":\"CzO8GNTIG\",children:\"Partnerships\"})})})}),className:\"framer-fnun6k\",\"data-framer-name\":\"Partnerships\",fonts:[\"GF;Poppins-regular\"],layoutDependency:layoutDependency,layoutId:\"SM0jib5c3\",style:{\"--extracted-r6o4lv\":\"rgba(255, 255, 255, 0.7)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({ciEDkkCVX:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7UG9wcGlucy1yZWd1bGFy\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"27px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgba(255, 255, 255, 0.7))\"},children:/*#__PURE__*/_jsx(Link,{href:\"/partnerships \",nodeId:\"SM0jib5c3\",openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1w9ymdf\",\"data-styles-preset\":\"F_6TybYwg\",children:\"Partnerships\"})})})})},FhPB2SsJN:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7UG9wcGlucy1yZWd1bGFy\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"27px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgba(255, 255, 255, 0.7))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"zi4l_Qpp5\"},nodeId:\"SM0jib5c3\",openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1w9ymdf\",\"data-styles-preset\":\"F_6TybYwg\",children:\"Partnerships\"})})})})}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7UG9wcGlucy1yZWd1bGFy\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"27px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgba(255, 255, 255, 0.7))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"wQcQA9WSk\"},nodeId:\"CdWzwMyXf\",openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1jlsu8h\",\"data-styles-preset\":\"CzO8GNTIG\",children:\"Company\"})})})}),className:\"framer-4b0xw4\",\"data-framer-name\":\"Company\",fonts:[\"GF;Poppins-regular\"],layoutDependency:layoutDependency,layoutId:\"CdWzwMyXf\",style:{\"--extracted-r6o4lv\":\"rgba(255, 255, 255, 0.7)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({ciEDkkCVX:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7UG9wcGlucy1yZWd1bGFy\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"27px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgba(255, 255, 255, 0.7))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"wQcQA9WSk\"},nodeId:\"CdWzwMyXf\",openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1w9ymdf\",\"data-styles-preset\":\"F_6TybYwg\",children:\"Company\"})})})})},FhPB2SsJN:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7UG9wcGlucy1yZWd1bGFy\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"27px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgba(255, 255, 255, 0.7))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"wQcQA9WSk\"},nodeId:\"CdWzwMyXf\",openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1w9ymdf\",\"data-styles-preset\":\"F_6TybYwg\",children:\"Company\"})})})})}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7UG9wcGlucy1yZWd1bGFy\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"27px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgba(255, 255, 255, 0.7))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"OWEW87alh\"},nodeId:\"QCNLcJABo\",openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1jlsu8h\",\"data-styles-preset\":\"CzO8GNTIG\",children:\"Contact\"})})})}),className:\"framer-10j90se\",\"data-framer-name\":\"Contact\",fonts:[\"GF;Poppins-regular\"],layoutDependency:layoutDependency,layoutId:\"QCNLcJABo\",style:{\"--extracted-r6o4lv\":\"rgba(255, 255, 255, 0.7)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({ciEDkkCVX:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7UG9wcGlucy1yZWd1bGFy\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"27px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgba(255, 255, 255, 0.7))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"OWEW87alh\"},nodeId:\"QCNLcJABo\",openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1w9ymdf\",\"data-styles-preset\":\"F_6TybYwg\",children:\"Contact\"})})})})},FhPB2SsJN:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7UG9wcGlucy1yZWd1bGFy\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"27px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgba(255, 255, 255, 0.7))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"OWEW87alh\"},nodeId:\"QCNLcJABo\",openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1w9ymdf\",\"data-styles-preset\":\"F_6TybYwg\",children:\"Contact\"})})})})}},baseVariant,gestureVariant)})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1e7481l\",layoutDependency:layoutDependency,layoutId:\"oFX5hgBUk\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1k3dgsb\",layoutDependency:layoutDependency,layoutId:\"pCm1Jem1r\",children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"iSOSp2NWK\"},nodeId:\"wJC0j0Fi5\",children:/*#__PURE__*/_jsx(SVG,{as:\"a\",className:\"framer-1jua9bd framer-n73il8\",\"data-framer-name\":\"Centific_Logo_White 1\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:61,intrinsicWidth:232,layoutDependency:layoutDependency,layoutId:\"wJC0j0Fi5\",svg:'<svg width=\"232\" height=\"61\" viewBox=\"0 0 232 61\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M43.8801 4.45735C43.5372 3.87483 42.8515 3.70839 42.2515 3.95805L30.9372 8.78468C30.8515 8.78468 30.7658 8.78468 30.6801 8.78468L19.3658 3.95805C18.7658 3.70839 18.0801 3.95805 17.7372 4.45735C17.3944 5.03988 17.5658 5.70562 18.1658 6.03849L29.1372 12.6127C29.1372 12.6127 29.9944 13.112 30.7658 13.112C31.7087 13.112 32.4801 12.6127 32.4801 12.6127L43.4515 6.03849C43.9658 5.70562 44.1372 5.03988 43.8801 4.45735Z\" fill=\"#EF43B3\"/>\\n<path d=\"M13.7042 10.5328L28.7899 22.6826C28.7899 22.6826 29.7328 23.5147 30.7613 23.5147C31.7042 23.5147 32.7328 22.6826 32.7328 22.6826L47.8185 10.5328C48.4185 10.1167 48.6756 9.36772 48.2471 8.70198C47.9042 8.03624 47.0471 7.78659 46.3613 8.11946L32.1328 17.3566L30.8471 18.1056C30.7614 18.1056 30.5899 18.1056 30.4185 18.1056L29.1328 17.3566L14.9042 8.11946C14.2185 7.78659 13.4471 8.11946 13.0185 8.70198C12.6756 9.36772 12.8471 10.1167 13.4471 10.5328H13.7042Z\" fill=\"#EF43B3\"/>\\n<path d=\"M57.3362 42.8206C57.9362 42.4877 58.1076 41.822 57.8504 41.2395L52.879 30.2547C52.879 30.1715 52.879 30.0883 52.879 30.0051L57.8504 19.0203C58.1076 18.4378 57.8504 17.7721 57.3362 17.4392C56.7362 17.1063 56.0504 17.2727 55.7076 17.8553L48.9362 28.5071C48.9362 28.5071 48.4219 29.3393 48.4219 30.0883C48.4219 31.0037 48.9362 31.7526 48.9362 31.7526L55.7076 42.4045C56.0504 42.9038 56.7362 43.0703 57.3362 42.8206Z\" fill=\"#EF43B3\"/>\\n<path d=\"M51.0824 13.5288L38.5681 28.1751C38.5681 28.1751 37.7109 29.0905 37.7109 30.0891C37.7109 31.0045 38.5681 32.0031 38.5681 32.0031L51.0824 46.6494C51.5109 47.2319 52.2824 47.4816 52.9681 47.0655C53.6538 46.7326 53.9109 45.9005 53.5681 45.2347L44.0538 31.4206L43.2824 30.1723C43.2824 30.0891 43.2824 29.9227 43.2824 29.7562L44.0538 28.508L53.5681 14.6938C53.9109 14.0281 53.5681 13.2791 52.9681 12.863C52.2824 12.5301 51.5109 12.6966 51.0824 13.2791V13.5288Z\" fill=\"#EF43B3\"/>\\n<path d=\"M17.8213 55.8851C18.1641 56.4676 18.8498 56.6341 19.4498 56.3844L30.7641 51.5578C30.8498 51.5578 30.9355 51.5578 31.0213 51.5578L42.3355 56.3844C42.9355 56.6341 43.6213 56.3844 43.9641 55.8851C44.307 55.3026 44.1355 54.6368 43.5355 54.304L32.5641 47.7298C32.5641 47.7298 31.707 47.2305 30.9355 47.2305C29.9927 47.2305 29.2213 47.7298 29.2213 47.7298L18.2498 54.304C17.7356 54.6368 17.5641 55.3026 17.8213 55.8851Z\" fill=\"#EF43B3\"/>\\n<path d=\"M47.9901 49.8101L32.9043 37.6603C32.9043 37.6603 31.9615 36.8281 30.9329 36.8281C29.99 36.8281 28.9615 37.6603 28.9615 37.6603L13.8758 49.8101C13.2758 50.2262 13.0186 50.9751 13.4472 51.6409C13.79 52.3066 14.6472 52.5563 15.3329 52.2234L29.5615 42.9862L30.8472 42.2373C30.9329 42.2373 31.1043 42.2373 31.2758 42.2373L32.5615 42.9862L46.7901 52.2234C47.4758 52.5563 48.2472 52.2234 48.6758 51.6409C49.0186 50.9751 48.8472 50.2262 48.2472 49.8101H47.9901Z\" fill=\"#EF43B3\"/>\\n<path d=\"M4.36437 17.5229C3.76437 17.8558 3.59295 18.5215 3.85009 19.104L8.82152 30.0888C8.82152 30.172 8.82152 30.2552 8.82152 30.3384L3.85009 41.3232C3.59295 41.9057 3.85009 42.5714 4.36437 42.9043C4.96438 43.2372 5.65009 43.0708 5.99295 42.4882L12.7644 31.8364C12.7644 31.8364 13.2787 31.0042 13.2787 30.2552C13.2787 29.3398 12.7644 28.5909 12.7644 28.5909L5.99295 17.939C5.65009 17.4397 4.96438 17.2732 4.36437 17.5229Z\" fill=\"#EF43B3\"/>\\n<path d=\"M10.6213 46.8161L23.1356 32.1697C23.1356 32.1697 23.9927 31.2543 23.9927 30.2557C23.9927 29.3403 23.1356 28.3417 23.1356 28.3417L10.6213 13.529C10.1927 12.9464 9.42129 12.6968 8.73558 13.1129C8.04987 13.4457 7.79272 14.2779 8.13558 14.9437L17.6499 28.7578L18.4213 30.0061C18.4213 30.0893 18.4213 30.2557 18.4213 30.4222L17.6499 31.6704L8.13558 45.4846C7.79272 46.1503 8.13558 46.8993 8.73558 47.3154C9.42129 47.6482 10.1927 47.4818 10.6213 46.8993V46.8161Z\" fill=\"#EF43B3\"/>\\n<path d=\"M82.3663 21.8496C83.9092 21.8496 85.1092 22.1824 86.1377 22.8482C87.1663 23.5139 87.852 24.4293 88.2806 25.6776H93.852C93.1663 23.0978 91.7949 21.1006 89.8234 19.6859C87.852 18.2712 85.3663 17.6055 82.2806 17.6055C79.1949 17.6055 77.7377 18.1048 75.9377 19.1866C74.052 20.1852 72.6806 21.6831 71.5663 23.5971C70.5377 25.5112 70.0234 27.6748 70.0234 30.1714C70.0234 32.6679 70.5377 34.9148 71.5663 36.7456C72.5949 38.6596 74.052 40.1575 75.9377 41.1561C77.8234 42.2379 79.8806 42.7372 82.2806 42.7372C84.6806 42.7372 87.7663 41.9883 89.7377 40.5736C91.7092 39.0757 93.0806 37.1616 93.852 34.6651H88.2806C87.3377 37.2449 85.3663 38.4931 82.2806 38.4931C79.1949 38.4931 78.5092 37.7442 77.2234 36.2462C75.9377 34.7483 75.3377 32.7511 75.3377 30.0881C75.3377 27.4252 75.9377 25.4279 77.2234 24.0132C78.5092 22.5153 80.1377 21.8496 82.2806 21.8496H82.3663Z\" fill=\"white\"/>\\n<path d=\"M114.678 19.1034C112.792 18.1048 110.735 17.6055 108.335 17.6055C105.935 17.6055 103.706 18.1048 101.821 19.1866C99.9348 20.1852 98.4777 21.6831 97.4491 23.5971C96.4205 25.5112 95.9062 27.6748 95.9062 30.1714C95.9062 32.6679 96.4205 34.9148 97.5348 36.7456C98.6491 38.6596 100.106 40.1575 101.992 41.1561C103.878 42.2379 106.021 42.7372 108.421 42.7372C110.821 42.7372 113.821 41.9883 115.792 40.5736C117.763 39.1589 119.135 37.3281 119.906 35.0812H114.335C113.221 37.3281 111.249 38.4931 108.421 38.4931C105.592 38.4931 104.821 37.9106 103.535 36.7456C102.163 35.5805 101.478 33.9994 101.306 32.0854H120.421C120.506 31.3364 120.592 30.5042 120.592 29.5888C120.592 27.2587 120.078 25.1783 119.049 23.3475C118.021 21.5167 116.563 20.102 114.763 19.1034H114.678ZM101.221 28.0077C101.478 26.0937 102.249 24.5958 103.535 23.5139C104.821 22.4321 106.363 21.8496 108.163 21.8496C109.963 21.8496 111.763 22.4321 113.135 23.5139C114.506 24.5958 115.192 26.0937 115.192 28.0077H101.306H101.221Z\" fill=\"white\"/>\\n<path d=\"M142.024 18.7705C140.481 17.9383 138.681 17.6055 136.709 17.6055C134.738 17.6055 133.795 17.8551 132.509 18.4376C131.224 19.0202 130.109 19.7691 129.252 20.7677V18.0216H124.109V42.3211H129.252V28.7566C129.252 26.593 129.852 24.9286 130.967 23.7636C132.081 22.5985 133.624 22.016 135.595 22.016C137.567 22.016 139.024 22.5985 140.224 23.7636C141.338 24.9286 141.938 26.593 141.938 28.7566V42.3211H147.081V28.0077C147.081 25.7608 146.652 23.93 145.795 22.3489C144.938 20.7677 143.652 19.6027 142.109 18.8537L142.024 18.7705Z\" fill=\"white\"/>\\n<path d=\"M157.791 11.9473H152.563V18.0222H149.648V22.0998H152.563V35.5811C152.563 37.9944 153.163 39.6588 154.448 40.7406C155.648 41.8224 157.448 42.3217 159.848 42.3217H163.963V38.1609H160.791C159.763 38.1609 158.991 37.9944 158.563 37.5783C158.134 37.1622 157.877 36.4965 157.877 35.5811V22.0998H163.963V18.0222H157.877V11.9473H157.791Z\" fill=\"white\"/>\\n<path d=\"M171.249 8.28516C170.306 8.28516 169.535 8.61803 168.849 9.20055C168.249 9.78308 167.906 10.6153 167.906 11.5306C167.906 12.446 168.249 13.195 168.849 13.8607C169.449 14.5265 170.306 14.7761 171.249 14.7761C172.192 14.7761 172.963 14.4433 173.563 13.8607C174.163 13.2782 174.506 12.446 174.506 11.5306C174.506 10.6153 174.163 9.86629 173.563 9.20055C172.963 8.61803 172.192 8.28516 171.249 8.28516Z\" fill=\"white\"/>\\n<path d=\"M173.737 18.0215H168.594V42.3211H173.737V18.0215Z\" fill=\"white\"/>\\n<path d=\"M197.312 8.28516C196.369 8.28516 195.597 8.61803 194.912 9.20055C194.312 9.78308 193.969 10.6153 193.969 11.5306C193.969 12.446 194.312 13.195 194.912 13.8607C195.512 14.4433 196.369 14.7761 197.312 14.7761C198.254 14.7761 199.026 14.4433 199.626 13.8607C200.226 13.2782 200.569 12.446 200.569 11.5306C200.569 10.6153 200.226 9.86629 199.626 9.20055C199.026 8.61803 198.254 8.28516 197.312 8.28516Z\" fill=\"white\"/>\\n<path d=\"M216.851 38.4931C214.708 38.4931 213.079 37.7442 211.794 36.2462C210.508 34.7483 209.908 32.7511 209.908 30.0881C209.908 27.4252 210.508 25.4279 211.794 24.0132C213.079 22.5153 214.708 21.8496 216.851 21.8496C218.994 21.8496 219.594 22.1824 220.622 22.8482C221.651 23.5139 222.336 24.4293 222.765 25.6776H228.336C227.651 23.0978 226.279 21.1006 224.308 19.6859C222.336 18.2712 219.851 17.6055 216.765 17.6055C213.679 17.6055 212.222 18.1048 210.422 19.1866C208.536 20.1852 207.165 21.6831 206.051 23.5971C205.022 25.5112 204.508 27.6748 204.508 30.1714C204.508 32.6679 205.022 34.9148 206.051 36.7456C207.079 38.6596 208.536 40.1575 210.422 41.1561C212.308 42.2379 214.365 42.7372 216.765 42.7372C219.165 42.7372 222.251 41.9883 224.222 40.5736C226.194 39.0757 227.565 37.1616 228.336 34.6651H222.765C221.822 37.2449 219.851 38.4931 216.765 38.4931H216.851Z\" fill=\"white\"/>\\n<path d=\"M199.796 18.0216H186.768V16.2741C186.768 14.8594 187.111 13.8607 187.711 13.2782C188.311 12.7789 189.339 12.446 190.711 12.446V8.28516C187.625 8.28516 185.311 8.9509 183.854 10.1992C182.311 11.4474 181.539 13.5279 181.539 16.2741V18.0216H178.625V22.0993H181.539V42.3212H186.768V22.0993H194.654V42.3212H199.796V18.0216Z\" fill=\"white\"/>\\n</svg>\\n',withExternalLayout:true})})}),isDisplayed1()&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-jrsvgc\",\"data-framer-name\":\"Stack\",layoutDependency:layoutDependency,layoutId:\"lOANFFjIB\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7UG9wcGlucy1yZWd1bGFy\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"27px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgba(255, 255, 255, 0.7))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"qrJN2xA2b\"},nodeId:\"PuQCdCWVf\",openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1w9ymdf\",\"data-styles-preset\":\"F_6TybYwg\",children:\"Platform\"})})})}),className:\"framer-1fkoruy\",\"data-framer-name\":\"Platform\",fonts:[\"GF;Poppins-regular\"],layoutDependency:layoutDependency,layoutId:\"PuQCdCWVf\",style:{\"--extracted-r6o4lv\":\"rgba(255, 255, 255, 0.7)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7UG9wcGlucy1yZWd1bGFy\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"27px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgba(255, 255, 255, 0.7))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"UGFyzduu_\"},nodeId:\"wq__7KG0C\",openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1w9ymdf\",\"data-styles-preset\":\"F_6TybYwg\",children:\"Customers\"})})})}),className:\"framer-1b67vp9\",\"data-framer-name\":\"Customers\",fonts:[\"GF;Poppins-regular\"],layoutDependency:layoutDependency,layoutId:\"wq__7KG0C\",style:{\"--extracted-r6o4lv\":\"rgba(255, 255, 255, 0.7)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7UG9wcGlucy1yZWd1bGFy\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"27px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgba(255, 255, 255, 0.7))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"zi4l_Qpp5\"},nodeId:\"neMqRmq8e\",openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1w9ymdf\",\"data-styles-preset\":\"F_6TybYwg\",children:\"Partnerships\"})})})}),className:\"framer-1km599v\",\"data-framer-name\":\"Partnerships\",fonts:[\"GF;Poppins-regular\"],layoutDependency:layoutDependency,layoutId:\"neMqRmq8e\",style:{\"--extracted-r6o4lv\":\"rgba(255, 255, 255, 0.7)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7UG9wcGlucy1yZWd1bGFy\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"27px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgba(255, 255, 255, 0.7))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"wQcQA9WSk\"},nodeId:\"nkQx7tfzn\",openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1w9ymdf\",\"data-styles-preset\":\"F_6TybYwg\",children:\"Company\"})})})}),className:\"framer-gd2cec\",\"data-framer-name\":\"Company\",fonts:[\"GF;Poppins-regular\"],layoutDependency:layoutDependency,layoutId:\"nkQx7tfzn\",style:{\"--extracted-r6o4lv\":\"rgba(255, 255, 255, 0.7)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7UG9wcGlucy1yZWd1bGFy\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"27px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgba(255, 255, 255, 0.7))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"OWEW87alh\"},nodeId:\"ugyIbWj1E\",openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1w9ymdf\",\"data-styles-preset\":\"F_6TybYwg\",children:\"Contact\"})})})}),className:\"framer-c4ts54\",\"data-framer-name\":\"Contact\",fonts:[\"GF;Poppins-regular\"],layoutDependency:layoutDependency,layoutId:\"ugyIbWj1E\",style:{\"--extracted-r6o4lv\":\"rgba(255, 255, 255, 0.7)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-8955np\",layoutDependency:layoutDependency,layoutId:\"ljhgnPibv\",children:[/*#__PURE__*/_jsx(Link,{href:\"https://www.centific.com/linkedin\",nodeId:\"D9byDrvFK\",children:/*#__PURE__*/_jsx(SVG,{as:\"a\",className:\"framer-lxnph9 framer-n73il8\",\"data-framer-name\":\"Layer_1\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:25,intrinsicWidth:31,layoutDependency:layoutDependency,layoutId:\"D9byDrvFK\",svg:'<svg width=\"31\" height=\"25\" viewBox=\"0 0 31 25\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<g clip-path=\"url(#clip0_1459_2299)\">\\n<path d=\"M1.48399 8.19781H7.68292V24.2324H1.48399V8.19781ZM4.59271 0.232422C6.59117 0.232422 8.20104 1.5229 8.20104 3.12488C8.20104 4.72686 6.59117 6.01734 4.59271 6.01734C2.61275 6.01734 0.984375 4.72686 0.984375 3.12488C0.984375 1.5229 2.59425 0.232422 4.59271 0.232422Z\" fill=\"white\"/>\\n<path d=\"M11.5859 8.19813H17.5443V10.3934H17.6368C18.8581 8.73213 21.1156 7.73831 23.5212 7.81247C29.8126 7.81247 30.9599 11.1351 30.9599 15.4515V24.2476H24.761V16.4454C24.761 14.5912 24.724 12.1882 21.5412 12.1882C18.3585 12.1882 17.8219 14.2204 17.8219 16.3119V24.2476H11.6229V8.19813H11.5859Z\" fill=\"white\"/>\\n<path d=\"M24.7253 24.2333V16.4311C24.7253 14.577 24.6883 12.174 21.5056 12.174C18.3229 12.174 17.7862 14.2061 17.7862 16.2976V24.2333H11.5873V8.19873H17.5457V10.394H17.6382C18.841 8.73272 21.0985 7.72407 23.5041 7.79823C29.7955 7.79823 30.9428 11.1209 30.9428 15.4373V24.2333H24.7438H24.7253ZM1.48399 24.2333V8.19873H7.70142V24.2333H1.48399ZM0.984375 3.1258C0.984375 1.52382 2.61275 0.23334 4.59271 0.248173C6.57266 0.248173 8.18253 1.55349 8.18253 3.14063C8.18253 4.72778 6.57266 6.01826 4.59271 6.01826C2.59425 6.01826 0.984375 4.72778 0.984375 3.1258Z\" fill=\"white\"/>\\n</g>\\n<defs>\\n<clipPath id=\"clip0_1459_2299\">\\n<rect width=\"29.9584\" height=\"24\" fill=\"white\" transform=\"translate(0.984375 0.232422)\"/>\\n</clipPath>\\n</defs>\\n</svg>\\n',withExternalLayout:true})}),/*#__PURE__*/_jsx(Link,{href:\"https://www.centific.com/twitter\",nodeId:\"o8Now3btm\",children:/*#__PURE__*/_jsx(SVG,{as:\"a\",className:\"framer-sel8nh framer-n73il8\",\"data-framer-name\":\"Layer_2\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:23,intrinsicWidth:27,layoutDependency:layoutDependency,layoutId:\"o8Now3btm\",svg:'<svg width=\"27\" height=\"23\" viewBox=\"0 0 27 23\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<g clip-path=\"url(#clip0_1459_2297)\">\\n<path d=\"M16.1631 10.1924L25.9218 0.876953H23.6093L15.1359 8.96552L8.36825 0.876953H0.5625L10.7965 13.1082L0.5625 22.877H2.87519L11.8234 14.3352L18.9706 22.877H26.7763L16.1629 10.1924H16.1635H16.1631ZM12.9956 13.216L11.9586 11.9981L3.70835 2.30652H7.26029L13.9185 10.1278L14.9555 11.3457L23.6104 21.5121H20.0584L12.9958 13.2162V13.2157L12.9956 13.216Z\" fill=\"white\"/>\\n</g>\\n<defs>\\n<clipPath id=\"clip0_1459_2297\">\\n<rect width=\"26.2136\" height=\"22\" fill=\"white\" transform=\"translate(0.5625 0.876953)\"/>\\n</clipPath>\\n</defs>\\n</svg>\\n',withExternalLayout:true})})]})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-aa24vm\",layoutDependency:layoutDependency,layoutId:\"iGN0uz9yF\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7Um9ib3RvLTMwMA==\",\"--framer-font-family\":'\"Roboto\", \"Roboto Placeholder\", sans-serif',\"--framer-font-weight\":\"300\",\"--framer-line-height\":\"27px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgba(255, 255, 255, 0.7))\"},children:\"\\xa9 2025 Centific. All Rights Reserved.\"})}),className:\"framer-139v7kg\",\"data-framer-name\":\"\\xa9 2024 Centific. All Rights Reserved.\",fonts:[\"GF;Roboto-300\"],layoutDependency:layoutDependency,layoutId:\"SZg_NBUnD\",style:{\"--extracted-r6o4lv\":\"rgba(255, 255, 255, 0.7)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1v1yqla\",\"data-framer-name\":\"Stack\",layoutDependency:layoutDependency,layoutId:\"BdR0_e1tT\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7Um9ib3RvLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Roboto\", \"Roboto Placeholder\", sans-serif',\"--framer-line-height\":\"27px\",\"--framer-text-alignment\":\"right\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgba(255, 255, 255, 0.7))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"XK5fBvdk6\"},nodeId:\"T2F3VpZ7j\",openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1jlsu8h\",\"data-styles-preset\":\"CzO8GNTIG\",children:\"Terms of use\"})})})}),className:\"framer-1vv1zs9\",\"data-framer-name\":\"Terms and conditions\",fonts:[\"GF;Roboto-regular\"],layoutDependency:layoutDependency,layoutId:\"T2F3VpZ7j\",style:{\"--extracted-r6o4lv\":\"rgba(255, 255, 255, 0.7)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-hmszqf\",\"data-framer-name\":\"Rectangle 1\",layoutDependency:layoutDependency,layoutId:\"l2vZEJ3LQ\",style:{backgroundColor:\"rgba(255, 255, 255, 0.7)\"}}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7Um9ib3RvLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Roboto\", \"Roboto Placeholder\", sans-serif',\"--framer-line-height\":\"27px\",\"--framer-text-alignment\":\"right\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgba(255, 255, 255, 0.7))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"xuv99cPGm\"},nodeId:\"pmF16Fyly\",openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1jlsu8h\",\"data-styles-preset\":\"CzO8GNTIG\",children:\"Privacy policy\"})})})}),className:\"framer-1bfef53\",\"data-framer-name\":\"Privacy policy\",fonts:[\"GF;Roboto-regular\"],layoutDependency:layoutDependency,layoutId:\"pmF16Fyly\",style:{\"--extracted-r6o4lv\":\"rgba(255, 255, 255, 0.7)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1bhvqx2\",\"data-framer-name\":\"Rectangle 2\",layoutDependency:layoutDependency,layoutId:\"RtchnVzOz\",style:{backgroundColor:\"rgba(255, 255, 255, 0.7)\"}}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7Um9ib3RvLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Roboto\", \"Roboto Placeholder\", sans-serif',\"--framer-line-height\":\"27px\",\"--framer-text-alignment\":\"right\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgba(255, 255, 255, 0.7))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"HTSexoUYR\"},nodeId:\"PridXesf8\",openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1jlsu8h\",\"data-styles-preset\":\"CzO8GNTIG\",children:\"Cookie policy\"})})})}),className:\"framer-ug04p2\",\"data-framer-name\":\"Cookie policy\",fonts:[\"GF;Roboto-regular\"],layoutDependency:layoutDependency,layoutId:\"PridXesf8\",style:{\"--extracted-r6o4lv\":\"rgba(255, 255, 255, 0.7)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true})]})]})]})]}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1v9s6jl\",\"data-framer-name\":\"Shadow bottom\",layoutDependency:layoutDependency,layoutId:\"NQuCiAh23\",style:{background:\"linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 1) 100%)\"}})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-UwQF3.framer-n73il8, .framer-UwQF3 .framer-n73il8 { display: block; }\",\".framer-UwQF3.framer-bzdzco { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 1200px; }\",\".framer-UwQF3 .framer-1u0f2vp-container { flex: none; height: 100%; left: calc(50.00000000000002% - 100% / 2); position: absolute; top: 0px; width: 100%; z-index: 1; }\",\".framer-UwQF3 .framer-kk5g65 { flex: none; height: 255px; left: calc(50.00000000000002% - 100% / 2); position: absolute; top: 0px; width: 100%; z-index: 1; }\",\".framer-UwQF3 .framer-1frw92h { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; z-index: 10; }\",\".framer-UwQF3 .framer-14qf4qs { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; overflow: visible; padding: 250px 0px 188px 0px; position: relative; width: 100%; }\",\".framer-UwQF3 .framer-11qr3d4 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 32px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-UwQF3 .framer-r76aw5, .framer-UwQF3 .framer-13fpyyp { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 70%; word-break: break-word; word-wrap: break-word; }\",\".framer-UwQF3 .framer-1tkrm4o-container { flex: none; height: auto; position: relative; width: auto; }\",\".framer-UwQF3 .framer-2rkr3u { flex: none; height: 2px; position: relative; width: 90%; }\",\".framer-UwQF3 .framer-fkabvz { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 0px 0px 40px 0px; position: relative; width: 100%; }\",\".framer-UwQF3 .framer-1w5ei0l { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 61px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-UwQF3 .framer-m3ob4, .framer-UwQF3 .framer-1kegk2c, .framer-UwQF3 .framer-fnun6k, .framer-UwQF3 .framer-4b0xw4, .framer-UwQF3 .framer-10j90se, .framer-UwQF3 .framer-1fkoruy, .framer-UwQF3 .framer-1b67vp9, .framer-UwQF3 .framer-1km599v, .framer-UwQF3 .framer-gd2cec, .framer-UwQF3 .framer-c4ts54, .framer-UwQF3 .framer-139v7kg, .framer-UwQF3 .framer-1vv1zs9, .framer-UwQF3 .framer-1bfef53, .framer-UwQF3 .framer-ug04p2 { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-UwQF3 .framer-1e7481l { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; height: min-content; justify-content: space-between; overflow: visible; padding: 0px; position: relative; width: 90%; }\",\".framer-UwQF3 .framer-1k3dgsb { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-UwQF3 .framer-1jua9bd { flex: none; height: 61px; position: relative; text-decoration: none; width: 232px; }\",\".framer-UwQF3 .framer-jrsvgc { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 60px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-UwQF3 .framer-8955np { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: flex-end; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-UwQF3 .framer-lxnph9 { flex: none; height: 25px; position: relative; text-decoration: none; width: 31px; }\",\".framer-UwQF3 .framer-sel8nh { flex: none; height: 23px; position: relative; text-decoration: none; width: 27px; }\",\".framer-UwQF3 .framer-aa24vm { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 90%; }\",\".framer-UwQF3 .framer-1v1yqla { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 12px; height: min-content; justify-content: flex-end; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-UwQF3 .framer-hmszqf, .framer-UwQF3 .framer-1bhvqx2 { flex: none; height: 24px; position: relative; width: 1px; }\",\".framer-UwQF3 .framer-1v9s6jl { bottom: 0px; flex: none; height: 255px; left: calc(50.00000000000002% - 100% / 2); position: absolute; width: 100%; z-index: 1; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-UwQF3.framer-bzdzco, .framer-UwQF3 .framer-1frw92h, .framer-UwQF3 .framer-14qf4qs, .framer-UwQF3 .framer-11qr3d4, .framer-UwQF3 .framer-fkabvz, .framer-UwQF3 .framer-1w5ei0l, .framer-UwQF3 .framer-1k3dgsb, .framer-UwQF3 .framer-jrsvgc, .framer-UwQF3 .framer-8955np, .framer-UwQF3 .framer-aa24vm, .framer-UwQF3 .framer-1v1yqla { gap: 0px; } .framer-UwQF3.framer-bzdzco > *, .framer-UwQF3 .framer-1frw92h > *, .framer-UwQF3 .framer-fkabvz > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-UwQF3.framer-bzdzco > :first-child, .framer-UwQF3 .framer-1frw92h > :first-child, .framer-UwQF3 .framer-14qf4qs > :first-child, .framer-UwQF3 .framer-11qr3d4 > :first-child, .framer-UwQF3 .framer-fkabvz > :first-child { margin-top: 0px; } .framer-UwQF3.framer-bzdzco > :last-child, .framer-UwQF3 .framer-1frw92h > :last-child, .framer-UwQF3 .framer-14qf4qs > :last-child, .framer-UwQF3 .framer-11qr3d4 > :last-child, .framer-UwQF3 .framer-fkabvz > :last-child { margin-bottom: 0px; } .framer-UwQF3 .framer-14qf4qs > * { margin: 0px; margin-bottom: calc(20px / 2); margin-top: calc(20px / 2); } .framer-UwQF3 .framer-11qr3d4 > * { margin: 0px; margin-bottom: calc(32px / 2); margin-top: calc(32px / 2); } .framer-UwQF3 .framer-1w5ei0l > * { margin: 0px; margin-left: calc(61px / 2); margin-right: calc(61px / 2); } .framer-UwQF3 .framer-1w5ei0l > :first-child, .framer-UwQF3 .framer-1k3dgsb > :first-child, .framer-UwQF3 .framer-jrsvgc > :first-child, .framer-UwQF3 .framer-8955np > :first-child, .framer-UwQF3 .framer-aa24vm > :first-child, .framer-UwQF3 .framer-1v1yqla > :first-child { margin-left: 0px; } .framer-UwQF3 .framer-1w5ei0l > :last-child, .framer-UwQF3 .framer-1k3dgsb > :last-child, .framer-UwQF3 .framer-jrsvgc > :last-child, .framer-UwQF3 .framer-8955np > :last-child, .framer-UwQF3 .framer-aa24vm > :last-child, .framer-UwQF3 .framer-1v1yqla > :last-child { margin-right: 0px; } .framer-UwQF3 .framer-1k3dgsb > *, .framer-UwQF3 .framer-aa24vm > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-UwQF3 .framer-jrsvgc > * { margin: 0px; margin-left: calc(60px / 2); margin-right: calc(60px / 2); } .framer-UwQF3 .framer-8955np > * { margin: 0px; margin-left: calc(40px / 2); margin-right: calc(40px / 2); } .framer-UwQF3 .framer-1v1yqla > * { margin: 0px; margin-left: calc(12px / 2); margin-right: calc(12px / 2); } }\",\".framer-UwQF3.framer-v-1vuxtzx.framer-bzdzco { width: 600px; }\",\".framer-UwQF3.framer-v-1vuxtzx .framer-14qf4qs { gap: 30px; padding: 137px 0px 137px 0px; }\",\".framer-UwQF3.framer-v-1vuxtzx .framer-fkabvz { gap: 20px; }\",\".framer-UwQF3.framer-v-1vuxtzx .framer-1w5ei0l { gap: 30px; order: 1; }\",\".framer-UwQF3.framer-v-1vuxtzx .framer-1e7481l, .framer-UwQF3.framer-v-16fr0ow .framer-1e7481l { order: 0; }\",\".framer-UwQF3.framer-v-1vuxtzx .framer-aa24vm { flex-direction: column; justify-content: center; order: 2; }\",\".framer-UwQF3.framer-v-1vuxtzx .framer-1v1yqla, .framer-UwQF3.framer-v-16fr0ow .framer-1v1yqla { flex: none; justify-content: center; width: 100%; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-UwQF3.framer-v-1vuxtzx .framer-14qf4qs, .framer-UwQF3.framer-v-1vuxtzx .framer-fkabvz, .framer-UwQF3.framer-v-1vuxtzx .framer-1w5ei0l, .framer-UwQF3.framer-v-1vuxtzx .framer-aa24vm { gap: 0px; } .framer-UwQF3.framer-v-1vuxtzx .framer-14qf4qs > * { margin: 0px; margin-bottom: calc(30px / 2); margin-top: calc(30px / 2); } .framer-UwQF3.framer-v-1vuxtzx .framer-14qf4qs > :first-child, .framer-UwQF3.framer-v-1vuxtzx .framer-fkabvz > :first-child, .framer-UwQF3.framer-v-1vuxtzx .framer-aa24vm > :first-child { margin-top: 0px; } .framer-UwQF3.framer-v-1vuxtzx .framer-14qf4qs > :last-child, .framer-UwQF3.framer-v-1vuxtzx .framer-fkabvz > :last-child, .framer-UwQF3.framer-v-1vuxtzx .framer-aa24vm > :last-child { margin-bottom: 0px; } .framer-UwQF3.framer-v-1vuxtzx .framer-fkabvz > * { margin: 0px; margin-bottom: calc(20px / 2); margin-top: calc(20px / 2); } .framer-UwQF3.framer-v-1vuxtzx .framer-1w5ei0l > * { margin: 0px; margin-left: calc(30px / 2); margin-right: calc(30px / 2); } .framer-UwQF3.framer-v-1vuxtzx .framer-1w5ei0l > :first-child { margin-left: 0px; } .framer-UwQF3.framer-v-1vuxtzx .framer-1w5ei0l > :last-child { margin-right: 0px; } .framer-UwQF3.framer-v-1vuxtzx .framer-aa24vm > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } }\",\".framer-UwQF3.framer-v-16fr0ow.framer-bzdzco { width: 390px; }\",\".framer-UwQF3.framer-v-16fr0ow .framer-1u0f2vp-container { order: 3; z-index: unset; }\",\".framer-UwQF3.framer-v-16fr0ow .framer-kk5g65 { height: 100%; order: 1; }\",\".framer-UwQF3.framer-v-16fr0ow .framer-1frw92h { order: 0; z-index: 9; }\",\".framer-UwQF3.framer-v-16fr0ow .framer-14qf4qs { gap: 68px; order: 0; padding: 42px 0px 44px 0px; z-index: 9; }\",\".framer-UwQF3.framer-v-16fr0ow .framer-2rkr3u { order: 1; }\",\".framer-UwQF3.framer-v-16fr0ow .framer-fkabvz { gap: 20px; order: 2; }\",\".framer-UwQF3.framer-v-16fr0ow .framer-1w5ei0l { flex-direction: column; gap: 10px; order: 1; }\",\".framer-UwQF3.framer-v-16fr0ow .framer-1jua9bd { aspect-ratio: 3.80327868852459 / 1; height: var(--framer-aspect-ratio-supported, 37px); width: 141px; }\",\".framer-UwQF3.framer-v-16fr0ow .framer-lxnph9 { aspect-ratio: 1.24 / 1; height: var(--framer-aspect-ratio-supported, 21px); width: 26px; }\",\".framer-UwQF3.framer-v-16fr0ow .framer-sel8nh { aspect-ratio: 1.173913043478261 / 1; height: var(--framer-aspect-ratio-supported, 18px); width: 21px; }\",\".framer-UwQF3.framer-v-16fr0ow .framer-aa24vm { flex-direction: column; order: 2; }\",\".framer-UwQF3.framer-v-16fr0ow .framer-1v9s6jl { bottom: unset; height: 100%; order: 2; top: 0px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-UwQF3.framer-v-16fr0ow .framer-14qf4qs, .framer-UwQF3.framer-v-16fr0ow .framer-fkabvz, .framer-UwQF3.framer-v-16fr0ow .framer-1w5ei0l, .framer-UwQF3.framer-v-16fr0ow .framer-aa24vm { gap: 0px; } .framer-UwQF3.framer-v-16fr0ow .framer-14qf4qs > * { margin: 0px; margin-bottom: calc(68px / 2); margin-top: calc(68px / 2); } .framer-UwQF3.framer-v-16fr0ow .framer-14qf4qs > :first-child, .framer-UwQF3.framer-v-16fr0ow .framer-fkabvz > :first-child, .framer-UwQF3.framer-v-16fr0ow .framer-1w5ei0l > :first-child, .framer-UwQF3.framer-v-16fr0ow .framer-aa24vm > :first-child { margin-top: 0px; } .framer-UwQF3.framer-v-16fr0ow .framer-14qf4qs > :last-child, .framer-UwQF3.framer-v-16fr0ow .framer-fkabvz > :last-child, .framer-UwQF3.framer-v-16fr0ow .framer-1w5ei0l > :last-child, .framer-UwQF3.framer-v-16fr0ow .framer-aa24vm > :last-child { margin-bottom: 0px; } .framer-UwQF3.framer-v-16fr0ow .framer-fkabvz > * { margin: 0px; margin-bottom: calc(20px / 2); margin-top: calc(20px / 2); } .framer-UwQF3.framer-v-16fr0ow .framer-1w5ei0l > *, .framer-UwQF3.framer-v-16fr0ow .framer-aa24vm > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } }\",...sharedStyle.css,...sharedStyle1.css];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 805\n * @framerIntrinsicWidth 1200\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"ciEDkkCVX\":{\"layout\":[\"fixed\",\"auto\"]},\"FhPB2SsJN\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerVariables {\"ecApQKZ2T\":\"title\",\"mJpnZNp5n\":\"text\",\"q7nSy8RdZ\":\"cTAText\",\"XPDVyUo_i\":\"link\",\"UcqHmEwUG\":\"newTab\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerQtdgcA1EY=withCSS(Component,css,\"framer-UwQF3\");export default FramerQtdgcA1EY;FramerQtdgcA1EY.displayName=\"footer\";FramerQtdgcA1EY.defaultProps={height:805,width:1200};addPropertyControls(FramerQtdgcA1EY,{variant:{options:[\"zfFhNGFoG\",\"ciEDkkCVX\",\"FhPB2SsJN\"],optionTitles:[\"Desktop\",\"Tablet\",\"Phone\"],title:\"Variant\",type:ControlType.Enum},ecApQKZ2T:{defaultValue:\"Shape the future with us\",displayTextArea:false,title:\"Title\",type:ControlType.String},mJpnZNp5n:{defaultValue:\"Take the next step in your career.\",displayTextArea:false,title:\"Text\",type:ControlType.String},q7nSy8RdZ:{defaultValue:\"View opportunities\",displayTextArea:false,title:\"CTA Text\",type:ControlType.String},XPDVyUo_i:{description:\"\",title:\"Link\",type:ControlType.Link},UcqHmEwUG:{defaultValue:false,title:\"New Tab\",type:ControlType.Boolean}});addFonts(FramerQtdgcA1EY,[{explicitInter:true,fonts:[{family:\"Poppins\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/poppins/v22/pxiByp8kv8JHgFVrLDz8V15vFP-KUEg.woff2\",weight:\"300\"},{family:\"Roboto\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/roboto/v47/KFOMCnqEu92Fr1ME7kSn66aGLdTylUAMQXC89YmC2DPNWuaabWmWggvWl0Qn.woff2\",weight:\"300\"},{family:\"Poppins\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/poppins/v22/pxiEyp8kv8JHgFVrFJXUc1NECPY.woff2\",weight:\"400\"},{family:\"Roboto\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/roboto/v47/KFOMCnqEu92Fr1ME7kSn66aGLdTylUAMQXC89YmC2DPNWubEbWmWggvWl0Qn.woff2\",weight:\"400\"}]},...VideoFonts,...CTAHoverFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerQtdgcA1EY\",\"slots\":[],\"annotations\":{\"framerIntrinsicHeight\":\"805\",\"framerComponentViewportWidth\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"ciEDkkCVX\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"FhPB2SsJN\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerImmutableVariables\":\"true\",\"framerContractVersion\":\"1\",\"framerDisplayContentsDiv\":\"false\",\"framerIntrinsicWidth\":\"1200\",\"framerVariables\":\"{\\\"ecApQKZ2T\\\":\\\"title\\\",\\\"mJpnZNp5n\\\":\\\"text\\\",\\\"q7nSy8RdZ\\\":\\\"cTAText\\\",\\\"XPDVyUo_i\\\":\\\"link\\\",\\\"UcqHmEwUG\\\":\\\"newTab\\\"}\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./QtdgcA1EY.map", "import{jsx as _jsx}from\"react/jsx-runtime\";import{useEffect,useRef}from\"react\";export function withFullWidthFramerImage(Component){return props=>{const ref=useRef(null);useEffect(()=>{if(ref.current){const images=ref.current.querySelectorAll(\".framer-image\");images.forEach(img=>{img.style.display=\"block\";img.style.marginLeft=\"auto\";img.style.marginRight=\"auto\";img.style.width=\"100%\";img.style.height=\"auto\"// Maintains aspect ratio\n;});}},[]);return /*#__PURE__*/_jsx(Component,{...props,ref:ref});};}\nexport const __FramerMetadata__ = {\"exports\":{\"withFullWidthFramerImage\":{\"type\":\"reactHoc\",\"name\":\"withFullWidthFramerImage\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./CMS_Images.map"],
  "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", "fontStore", "fonts", "css", "className", "fontStore", "fonts", "css", "className", "enabledGestures", "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", "link", "newTab", "title", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "omsrs2OFq", "DvORA_emD", "UecgHxH1B", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "scopingClassNames", "cx", "ref1", "pe", "isDisplayed", "isDisplayed1", "defaultLayoutId", "ae", "componentViewport", "useComponentViewport", "LayoutGroup", "Link", "u", "RichText", "SVG", "css", "FramerphMbsGD6E", "withCSS", "phMbsGD6E_default", "addPropertyControls", "ControlType", "addFonts", "VideoFonts", "getFonts", "Video", "CTAHoverFonts", "phMbsGD6E_default", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "cTAText", "height", "id", "link", "newTab", "text", "title", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "ecApQKZ2T", "mJpnZNp5n", "q7nSy8RdZ", "XPDVyUo_i", "UcqHmEwUG", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "scopingClassNames", "cx", "ref1", "pe", "isDisplayed", "isDisplayed1", "defaultLayoutId", "ae", "componentViewport", "useComponentViewport", "LayoutGroup", "u", "Image2", "ComponentViewportProvider", "RichText", "SVG", "Link", "css", "FramerQtdgcA1EY", "withCSS", "QtdgcA1EY_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts", "withFullWidthFramerImage", "Component", "props", "ref", "pe", "ue", "img", "p"]
}
