{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/lRDHiNWNVWmE0lqtoVHP/qXQVWG1AZxpdrbBmhE1U/Video.js", "ssg:https://framerusercontent.com/modules/gXLqZRouQRW71SDuoa24/MnmwQDGnKPWhJljHqokA/QQ7zlK4im.js", "ssg:https://framerusercontent.com/modules/qyAgW3H7jxMwa6QNn03b/pm3HQgjK5XVlPkxhAgmz/UC2nwIhUB.js", "ssg:https://framerusercontent.com/modules/Um8I3kHRI8Udm7NqFgpw/BdEjUsACzDxnWm5GYBxF/rYRjV94pE.js"],
  "sourcesContent": ["import{jsx as _jsx}from\"react/jsx-runtime\";import{addPropertyControls,ControlType,useIsInCurrentNavigationTarget}from\"framer\";import{isMotionValue,useInView}from\"framer-motion\";import{borderRadiusControl,defaultEvents,useIsBrowserSafari,useIsOnCanvas,useOnEnter,useOnExit,useRadius}from\"https://framer.com/m/framer/default-utils.js@^0.45.0\";import{memo,useCallback,useEffect,useMemo,useRef,useState}from\"react\";var ObjectFitType;(function(ObjectFitType){ObjectFitType[\"Fill\"]=\"fill\";ObjectFitType[\"Contain\"]=\"contain\";ObjectFitType[\"Cover\"]=\"cover\";ObjectFitType[\"None\"]=\"none\";ObjectFitType[\"ScaleDown\"]=\"scale-down\";})(ObjectFitType||(ObjectFitType={}));var SrcType;(function(SrcType){SrcType[\"Video\"]=\"Upload\";SrcType[\"Url\"]=\"URL\";})(SrcType||(SrcType={}));// Reduce renders\nfunction getProps(props){const{width,height,topLeft,topRight,bottomRight,bottomLeft,id,children,...rest}=props;return rest;}/**\n * VIDEO\n *\n * @framerIntrinsicWidth 200\n * @framerIntrinsicHeight 112\n *\n * @framerSupportedLayoutWidth fixed\n * @framerSupportedLayoutHeight any-prefer-fixed\n */ export function Video(props){const newProps=getProps(props);return /*#__PURE__*/ _jsx(VideoMemo,{...newProps});}function usePlaybackControls(videoRef){const isInCurrentNavigationTarget=useIsInCurrentNavigationTarget();const requestingPlay=useRef(false);const setProgress=useCallback(rawProgress=>{if(!videoRef.current)return;const newProgress=(rawProgress===1?.999:rawProgress)*videoRef.current.duration;const isAlreadySet=Math.abs(videoRef.current.currentTime-newProgress)<.1;if(videoRef.current.duration>0&&!isAlreadySet){videoRef.current.currentTime=newProgress;}},[]);const play=useCallback(()=>{const isPlaying=videoRef.current.currentTime>0&&videoRef.current.onplaying&&!videoRef.current.paused&&!videoRef.current.ended&&videoRef.current.readyState>videoRef.current.HAVE_CURRENT_DATA;if(!isPlaying&&videoRef.current&&!requestingPlay.current&&isInCurrentNavigationTarget){requestingPlay.current=true;videoRef.current.play().catch(e=>{}) // It's likely fine, swallow error\n.finally(()=>requestingPlay.current=false);}},[]);const pause=useCallback(()=>{if(!videoRef.current||requestingPlay.current)return;videoRef.current.pause();},[]);return{play,pause,setProgress};}function useAutoplayBehavior({playingProp,muted,loop,playsinline,controls}){const[initialPlayingProp]=useState(()=>playingProp);const[hasPlayingPropChanged,setHasPlayingPropChanged]=useState(false);if(playingProp!==initialPlayingProp&&!hasPlayingPropChanged){setHasPlayingPropChanged(true);}const behavesAsGif=// passing `playing === true` on mount indicates that the video should\n// autoplay, like a GIF\ninitialPlayingProp&&muted&&loop&&playsinline&&!controls&&// Some users of the <Video> component use it by wrapping it with\n// another smart component and adding their own controls on top. (The\n// controls use transitions to control the video: e.g., when clicking\n// the play button, the smart component will transition to a state with\n// <Video playing={true} />.) In this case, we don't want the video to\n// behave as a gif, as it will be weird if the video suddenly started\n// acting as such (and auto-pausing when leaving the viewport) as soon\n// as the site visitor mutes it and clicks \u201CPlay\u201D.\n!hasPlayingPropChanged;let autoplay;if(behavesAsGif)autoplay=\"on-viewport\";else if(initialPlayingProp)autoplay=\"on-mount\";else autoplay=\"no-autoplay\";return autoplay;}/**\n * The Video component has some effects that sync the video element with props\n * like `startTime`, `progress`, etc. React calls these effects whenever these\n * props change. However, it also calls them on the first mount, and this is\n * troublesome \u2013 if we\u2019re doing SSR, and the user changed the video state before\n * the video was hydrated, the initial `useEffect` call will reset the video\n * state. To avoid this, we use this flag.\n */ let isMountedAndReadyForProgressChanges=false;const VideoMemo=/*#__PURE__*/ memo(function VideoInner(props){const{srcType,srcFile,srcUrl,playing:playingProp,muted,playsinline,controls,progress,objectFit,backgroundColor,onSeeked,onPause,onPlay,onEnd,onClick,onMouseEnter,onMouseLeave,onMouseDown,onMouseUp,poster,posterEnabled,startTime:startTimeProp,volume,loop}=props;const videoRef=useRef();const isSafari=useIsBrowserSafari();const wasPausedOnLeave=useRef(null);const wasEndedOnLeave=useRef(null);const isOnCanvas=useIsOnCanvas();const borderRadius=useRadius(props);// Hard-coding `autoplayBehavior` and `isInViewport` when on canvas as a\n// tiny perf optimization. isOnCanvas won\u2019t change through the lifecycle of\n// the component, so using these hooks conditionally should be safe\nconst autoplayBehavior=isOnCanvas?\"no-autoplay\":useAutoplayBehavior({playingProp,muted,loop,playsinline,controls});const isInViewport=isOnCanvas?true:useInView(videoRef);// Video elements behave oddly at 100% duration\nconst startTime=startTimeProp===100?99.9:startTimeProp;const{play,pause,setProgress}=usePlaybackControls(videoRef);// Pause/play via props\nuseEffect(()=>{if(isOnCanvas)return;if(playingProp)play();else pause();},[playingProp]);// Pause/play via viewport\nuseEffect(()=>{if(isOnCanvas)return;if(autoplayBehavior!==\"on-viewport\")return;if(isInViewport)play();else pause();},[autoplayBehavior,isInViewport]);// Allow scrubbling via progress prop\n// 1) Handle cases when the progress prop itself changes\nuseEffect(()=>{if(!isMountedAndReadyForProgressChanges){isMountedAndReadyForProgressChanges=true;return;}const rawProgressValue=isMotionValue(progress)?progress.get():(progress!==null&&progress!==void 0?progress:0)*.01;setProgress(// When the progress value exists (e.g. <Video startTime={10}\n// progress={50} />), we respect the `progress` value over\n// `startTime`, even if `startTime` changes. That\u2019s because\n// `startTime` == start == changing it shouldn\u2019t affect the current\n// progress\n(rawProgressValue!==null&&rawProgressValue!==void 0?rawProgressValue:0)||// Then why fall back to `startTime` when `progress` doesn\u2019t exist,\n// you might ask? Now, that\u2019s for\n// - canvas UX: we want the video progress to change when the user\n//   is scrobbling the \u201CStart Time\u201D in component settings.\n// - backwards compatibility: maybe some users *are* scrobbling\n//   using `startTime` instead of `progress`? We don\u2019t know, and it\n//   always supported it, so let\u2019s not break it\n(startTime!==null&&startTime!==void 0?startTime:0)/100);},[startTime,srcFile,srcUrl,progress]);// 2) Handle cases when the motion value inside the progress prop changes\nuseEffect(()=>{if(!isMotionValue(progress))return;return progress.on(\"change\",value=>setProgress(value));},[progress]);// (Prototyping) Checking if we need to play on navigation enter\nuseOnEnter(()=>{if(wasPausedOnLeave.current===null)return;if(videoRef.current){// if (restartOnEnter) setProgress(0)\nif(!wasEndedOnLeave&&loop||!wasPausedOnLeave.current)play();}});// (Prototyping) Pausing & saving playing state on navigation exit\nuseOnExit(()=>{if(videoRef.current){wasEndedOnLeave.current=videoRef.current.ended;wasPausedOnLeave.current=videoRef.current.paused;pause();}});const src=useMemo(()=>{let fragment=\"\";// if (\n//     startTime > 0 &&\n//     videoRef.current &&\n//     !isNaN(videoRef.current.duration) &&\n//     !isOnCanvas\n// ) {\n//     console.log(startTime, videoRef.current.duration)\n//     fragment = `#t=${startTime * videoRef.current.duration}`\n// }\nif(srcType===SrcType.Url)return srcUrl+fragment;if(srcType===SrcType.Video)return srcFile+fragment;},[srcType,srcFile,srcUrl,startTime]);// Autoplay via JS to work in Safari\nuseEffect(()=>{if(isSafari&&videoRef.current&&autoplayBehavior===\"on-mount\"){setTimeout(()=>play(),50);}},[]);// Volume Control\nuseEffect(()=>{if(videoRef.current&&!muted)videoRef.current.volume=(volume!==null&&volume!==void 0?volume:0)/100;},[volume]);// When video is ready, set start-time, then autoplay if needed\nconst handleReady=()=>{if(!videoRef.current)return;if(videoRef.current.currentTime<.3)setProgress((startTime!==null&&startTime!==void 0?startTime:0)*.01);if(autoplayBehavior===\"on-mount\")play();};return /*#__PURE__*/ _jsx(\"video\",{onClick,onMouseEnter,onMouseLeave,onMouseDown,onMouseUp,src:src,loop:loop,ref:videoRef,onSeeked:e=>{return onSeeked===null||onSeeked===void 0?void 0:onSeeked(e);},onPause:e=>{return onPause===null||onPause===void 0?void 0:onPause(e);},onPlay:e=>{return onPlay===null||onPlay===void 0?void 0:onPlay(e);},onEnded:e=>{return onEnd===null||onEnd===void 0?void 0:onEnd(e);},autoPlay:autoplayBehavior===\"on-mount\",poster:posterEnabled?poster:undefined,onLoadedData:handleReady,controls:controls,muted:isOnCanvas?true:muted,playsInline:playsinline,style:{cursor:!!onClick?\"pointer\":\"auto\",width:\"100%\",height:\"100%\",borderRadius,display:\"block\",objectFit:objectFit,backgroundColor:backgroundColor,objectPosition:\"50% 50%\"}});});Video.displayName=\"Video\";Video.defaultProps={srcType:SrcType.Url,srcUrl:\"https://assets.mixkit.co/videos/preview/mixkit-ice-cream-glass-of-red-soda-5094-small.mp4\",srcFile:\"\",posterEnabled:false,controls:false,playing:true,loop:true,muted:true,playsinline:true,restartOnEnter:false,objectFit:ObjectFitType.Cover,backgroundColor:\"rgba(0,0,0,0)\",radius:0,volume:25,startTime:0};const groupsRegex=/[A-Z]{2,}|[A-Z][a-z]+|[a-z]+|[A-Z]|\\d+/gu;function capitalizeFirstLetter(value){return value.charAt(0).toUpperCase()+value.slice(1);}export function titleCase(value){const groups=value.match(groupsRegex)||[];return groups.map(capitalizeFirstLetter).join(\" \");}const objectFitOptions=[ObjectFitType.Cover,ObjectFitType.Fill,ObjectFitType.Contain,ObjectFitType.ScaleDown,ObjectFitType.None,];addPropertyControls(Video,{srcType:{type:ControlType.Enum,displaySegmentedControl:true,title:\"Source\",options:[SrcType.Url,SrcType.Video]},srcUrl:{type:ControlType.String,title:\" \",placeholder:\"../example.mp4\",hidden(props){return props.srcType===SrcType.Video;},description:\"Hosted video file URL. For YouTube, use the YouTube component.\"},srcFile:{type:ControlType.File,title:\" \",allowedFileTypes:[\"mp4\"],hidden(props){return props.srcType===SrcType.Url;}},playing:{type:ControlType.Boolean,title:\"Playing\",enabledTitle:\"Yes\",disabledTitle:\"No\"},posterEnabled:{type:ControlType.Boolean,title:\"Poster\",enabledTitle:\"Yes\",disabledTitle:\"No\"},poster:{type:ControlType.Image,title:\" \",hidden:({posterEnabled})=>!posterEnabled},backgroundColor:{type:ControlType.Color,title:\"Background\"},...borderRadiusControl,startTime:{title:\"Start Time\",type:ControlType.Number,min:0,max:100,step:.1,unit:\"%\"},loop:{type:ControlType.Boolean,title:\"Loop\",enabledTitle:\"Yes\",disabledTitle:\"No\"},objectFit:{type:ControlType.Enum,title:\"Fit\",options:objectFitOptions,optionTitles:objectFitOptions.map(titleCase)},// restartOnEnter: {\n//     type: ControlType.Boolean,\n//     title: \"On ReEnter\",\n//     enabledTitle: \"Restart\",\n//     disabledTitle: \"Resume\",\n// },\ncontrols:{type:ControlType.Boolean,title:\"Controls\",enabledTitle:\"Show\",disabledTitle:\"Hide\"},muted:{type:ControlType.Boolean,title:\"Muted\",enabledTitle:\"Yes\",disabledTitle:\"No\"},volume:{type:ControlType.Number,max:100,min:0,unit:\"%\",hidden:({muted})=>muted},onEnd:{type:ControlType.EventHandler},onSeeked:{type:ControlType.EventHandler},onPause:{type:ControlType.EventHandler},onPlay:{type:ControlType.EventHandler},...defaultEvents});\nexport const __FramerMetadata__ = {\"exports\":{\"VideoProps\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"titleCase\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"Video\":{\"type\":\"reactComponent\",\"name\":\"Video\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\",\"framerIntrinsicWidth\":\"200\",\"framerSupportedLayoutHeight\":\"any-prefer-fixed\",\"framerSupportedLayoutWidth\":\"fixed\",\"framerIntrinsicHeight\":\"112\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Video.map", "// Generated by Framer (7aa721f)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,RichText,useActiveVariantCallback,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";const cycleOrder=[\"UbTGVOlpL\",\"VUsFUkeb0\"];const variantClassNames={UbTGVOlpL:\"framer-v-kp0uae\",VUsFUkeb0:\"framer-v-1b6c6mu\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transitions={default:{damping:40,delay:0,mass:1,stiffness:400,type:\"spring\"}};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/ _jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const humanReadableVariantMap={Closed:\"UbTGVOlpL\",Open:\"VUsFUkeb0\"};const getProps=({answer,height,id,question,width,...props})=>{var ref,_variant,ref1,ref2;return{...props,T8rQFvSBR:(ref=answer!==null&&answer!==void 0?answer:props.T8rQFvSBR)!==null&&ref!==void 0?ref:\"Framer is a web builder for creative pros. Be sure to check out framer.com to learn more.\",variant:(ref1=(_variant=humanReadableVariantMap[props.variant])!==null&&_variant!==void 0?_variant:props.variant)!==null&&ref1!==void 0?ref1:\"UbTGVOlpL\",W88zB8mIG:(ref2=question!==null&&question!==void 0?question:props.W88zB8mIG)!==null&&ref2!==void 0?ref2:\"What is Framer?\"};};const createLayoutDependency=(props,variants)=>variants.join(\"-\")+props.layoutDependency;const Component=/*#__PURE__*/ React.forwardRef(function(props,ref){const{activeLocale}=useLocaleInfo();const{style,className,layoutId,variant,W88zB8mIG,T8rQFvSBR,...restProps}=getProps(props);const{baseVariant,classNames,gestureVariant,setGestureState,setVariant,transition,variants}=useVariantState({cycleOrder,defaultVariant:\"UbTGVOlpL\",transitions,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onTap6y2a9i=activeVariantCallback(async(...args)=>{setVariant(\"VUsFUkeb0\");});const onTap1sr594e=activeVariantCallback(async(...args)=>{setVariant(\"UbTGVOlpL\");});const defaultLayoutId=React.useId();return /*#__PURE__*/ _jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/ _jsx(motion.div,{initial:variant,animate:variants,onHoverStart:()=>setGestureState({isHovered:true}),onHoverEnd:()=>setGestureState({isHovered:false}),onTapStart:()=>setGestureState({isPressed:true}),onTap:()=>setGestureState({isPressed:false}),onTapCancel:()=>setGestureState({isPressed:false}),className:cx(\"framer-oiq0P\",classNames),style:{display:\"contents\"},children:/*#__PURE__*/ _jsx(Transition,{value:transition,children:/*#__PURE__*/ _jsxs(motion.div,{...restProps,className:cx(\"framer-kp0uae\",className),\"data-framer-name\":\"Closed\",layoutDependency:layoutDependency,layoutId:\"UbTGVOlpL\",ref:ref,style:{...style},...addPropertyOverrides({VUsFUkeb0:{\"data-framer-name\":\"Open\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/ _jsxs(motion.div,{className:\"framer-dyha43\",\"data-framer-name\":\"Question\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"IF3u_Bm5p\",onTap:onTap6y2a9i,...addPropertyOverrides({VUsFUkeb0:{onTap:onTap1sr594e}},baseVariant,gestureVariant),children:[/*#__PURE__*/ _jsxs(motion.div,{className:\"framer-8nmyxl\",\"data-framer-name\":\"Plus\",layoutDependency:layoutDependency,layoutId:\"UDSosAi3P\",style:{opacity:.3,rotate:0},variants:{VUsFUkeb0:{rotate:45}},children:[/*#__PURE__*/ _jsx(motion.div,{className:\"framer-wdth82\",layoutDependency:layoutDependency,layoutId:\"aAf62JWxp\",style:{backgroundColor:\"rgb(0, 0, 0)\",borderBottomLeftRadius:10,borderBottomRightRadius:10,borderTopLeftRadius:10,borderTopRightRadius:10}}),/*#__PURE__*/ _jsx(motion.div,{className:\"framer-tdt2ht\",layoutDependency:layoutDependency,layoutId:\"D_ZOVfnCC\",style:{backgroundColor:\"rgb(0, 0, 0)\",borderBottomLeftRadius:10,borderBottomRightRadius:10,borderTopLeftRadius:10,borderTopRightRadius:10}})]}),/*#__PURE__*/ _jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/ _jsx(React.Fragment,{children:/*#__PURE__*/ _jsx(motion.h3,{style:{\"--font-selector\":\"R0Y7SW50ZXItNjAw\",\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-0.5px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-a0htzi)\"},children:\"What is Framer?\"})}),className:\"framer-s0qn2s\",fonts:[\"GF;Inter-600\"],layoutDependency:layoutDependency,layoutId:\"IsastNVXc\",style:{\"--extracted-a0htzi\":\"rgb(43, 60, 77)\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\",\"--framer-paragraph-spacing\":\"0px\"},text:W88zB8mIG,verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/ _jsx(motion.div,{className:\"framer-zylubf\",\"data-framer-name\":\"Answer\",layoutDependency:layoutDependency,layoutId:\"EwxSOZjjs\",style:{opacity:0},variants:{VUsFUkeb0:{opacity:1}},children:/*#__PURE__*/ _jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/ _jsx(React.Fragment,{children:/*#__PURE__*/ _jsx(motion.p,{style:{\"--font-selector\":\"R0Y7TWFucm9wZS02MDA=\",\"--framer-font-family\":'\"Manrope\", sans-serif',\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv)\"},children:\"Framer is a web builder for creative pros. Be sure to check out framer.com to learn more.\"})}),className:\"framer-m6mxa5\",fonts:[\"GF;Manrope-600\"],layoutDependency:layoutDependency,layoutId:\"Gz3GGlib1\",style:{\"--extracted-r6o4lv\":\"rgb(102, 102, 102)\",\"--framer-paragraph-spacing\":\"0px\",opacity:.6},text:T8rQFvSBR,variants:{VUsFUkeb0:{opacity:1}},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({VUsFUkeb0:{children:/*#__PURE__*/ _jsx(React.Fragment,{children:/*#__PURE__*/ _jsx(motion.p,{style:{\"--font-selector\":\"R0Y7SW50ZXItNTAw\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"1.6em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv)\"},children:\"Framer is a web builder for creative pros. Be sure to check out framer.com to learn more.\"})}),fonts:[\"GF;Inter-500\"]}},baseVariant,gestureVariant)})})]})})})});});const css=['.framer-oiq0P [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; }',\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-oiq0P .framer-1pu7dtc { display: block; }\",\".framer-oiq0P .framer-kp0uae { align-content: flex-start; align-items: flex-start; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: 64px; justify-content: flex-start; overflow: hidden; padding: 0px 0px 0px 0px; position: relative; width: 400px; }\",\".framer-oiq0P .framer-dyha43 { -webkit-user-select: none; align-content: center; align-items: center; cursor: pointer; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: flex-start; overflow: visible; padding: 20px 0px 20px 0px; position: relative; user-select: none; width: 100%; }\",\".framer-oiq0P .framer-8nmyxl { flex: none; height: 16px; overflow: hidden; position: relative; width: 16px; }\",\".framer-oiq0P .framer-wdth82 { flex: none; height: 2px; left: calc(50.00000000000002% - 16px / 2); overflow: visible; position: absolute; top: calc(50.00000000000002% - 2px / 2); width: 16px; }\",\".framer-oiq0P .framer-tdt2ht { flex: none; height: 16px; left: calc(50.00000000000002% - 2px / 2); overflow: visible; position: absolute; top: calc(50.00000000000002% - 16px / 2); width: 2px; }\",\".framer-oiq0P .framer-s0qn2s { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-oiq0P .framer-zylubf { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px 20px 20px 40px; position: relative; width: 100%; }\",\".framer-oiq0P .framer-m6mxa5 { -webkit-user-select: none; flex: none; height: auto; position: relative; user-select: none; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-oiq0P .framer-kp0uae, .framer-oiq0P .framer-dyha43, .framer-oiq0P .framer-zylubf { gap: 0px; } .framer-oiq0P .framer-kp0uae > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-oiq0P .framer-kp0uae > :first-child, .framer-oiq0P .framer-zylubf > :first-child { margin-top: 0px; } .framer-oiq0P .framer-kp0uae > :last-child, .framer-oiq0P .framer-zylubf > :last-child { margin-bottom: 0px; } .framer-oiq0P .framer-dyha43 > * { margin: 0px; margin-left: calc(24px / 2); margin-right: calc(24px / 2); } .framer-oiq0P .framer-dyha43 > :first-child { margin-left: 0px; } .framer-oiq0P .framer-dyha43 > :last-child { margin-right: 0px; } .framer-oiq0P .framer-zylubf > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } }\",\".framer-oiq0P.framer-v-1b6c6mu .framer-kp0uae { height: min-content; }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 64\n * @framerIntrinsicWidth 400\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]},\"VUsFUkeb0\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerVariables {\"W88zB8mIG\":\"question\",\"T8rQFvSBR\":\"answer\"}\n */ const FramerQQ7zlK4im=withCSS(Component,css,\"framer-oiq0P\");export default FramerQQ7zlK4im;FramerQQ7zlK4im.displayName=\"Row\";FramerQQ7zlK4im.defaultProps={height:64,width:400};addPropertyControls(FramerQQ7zlK4im,{variant:{options:[\"UbTGVOlpL\",\"VUsFUkeb0\"],optionTitles:[\"Closed\",\"Open\"],title:\"Variant\",type:ControlType.Enum},W88zB8mIG:{defaultValue:\"What is Framer?\",displayTextArea:true,title:\"Question\",type:ControlType.String},T8rQFvSBR:{defaultValue:\"Framer is a web builder for creative pros. Be sure to check out framer.com to learn more.\",displayTextArea:true,title:\"Answer\",type:ControlType.String}});addFonts(FramerQQ7zlK4im,[{family:\"Inter\",moduleAsset:{localModuleIdentifier:\"local-module:canvasComponent/QQ7zlK4im:default\",url:\"https://fonts.gstatic.com/s/inter/v12/UcCO3FwrK3iLTeHuS_fvQtMwCp50KnMw2boKoduKmMEVuGKYMZhrib2Bg-4.ttf\"},style:\"normal\",url:\"https://fonts.gstatic.com/s/inter/v12/UcCO3FwrK3iLTeHuS_fvQtMwCp50KnMw2boKoduKmMEVuGKYMZhrib2Bg-4.ttf\",weight:\"600\"},{family:\"Manrope\",moduleAsset:{localModuleIdentifier:\"local-module:canvasComponent/QQ7zlK4im:default\",url:\"https://fonts.gstatic.com/s/manrope/v14/xn7_YHE41ni1AdIRqAuZuw1Bx9mbZk4jE-_F87jxeN7B.ttf\"},style:\"normal\",url:\"https://fonts.gstatic.com/s/manrope/v14/xn7_YHE41ni1AdIRqAuZuw1Bx9mbZk4jE-_F87jxeN7B.ttf\",weight:\"600\"},{family:\"Inter\",moduleAsset:{localModuleIdentifier:\"local-module:canvasComponent/QQ7zlK4im:default\",url:\"https://fonts.gstatic.com/s/inter/v12/UcCO3FwrK3iLTeHuS_fvQtMwCp50KnMw2boKoduKmMEVuI6fMZhrib2Bg-4.ttf\"},style:\"normal\",url:\"https://fonts.gstatic.com/s/inter/v12/UcCO3FwrK3iLTeHuS_fvQtMwCp50KnMw2boKoduKmMEVuI6fMZhrib2Bg-4.ttf\",weight:\"500\"}]);\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerQQ7zlK4im\",\"slots\":[],\"annotations\":{\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"VUsFUkeb0\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerContractVersion\":\"1\",\"framerIntrinsicWidth\":\"400\",\"framerIntrinsicHeight\":\"64\",\"framerVariables\":\"{\\\"W88zB8mIG\\\":\\\"question\\\",\\\"T8rQFvSBR\\\":\\\"answer\\\"}\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./QQ7zlK4im.map", "// Generated by Framer (b12dec4)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,cx,getFonts,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import Row from\"https://framerusercontent.com/modules/gXLqZRouQRW71SDuoa24/MnmwQDGnKPWhJljHqokA/QQ7zlK4im.js\";const RowFonts=getFonts(Row);const cycleOrder=[\"KTwteHzv6\"];const variantClassNames={KTwteHzv6:\"framer-v-ght1is\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transitions={default:{damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"}};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/ _jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const getProps=({height,id,width,...props})=>{return{...props};};const createLayoutDependency=(props,variants)=>variants.join(\"-\")+props.layoutDependency;const Component=/*#__PURE__*/ React.forwardRef(function(props,ref){const{activeLocale}=useLocaleInfo();const{style,className,layoutId,variant,...restProps}=getProps(props);const{baseVariant,classNames,gestureVariant,setGestureState,setVariant,transition,variants}=useVariantState({cycleOrder,defaultVariant:\"KTwteHzv6\",transitions,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const defaultLayoutId=React.useId();return /*#__PURE__*/ _jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/ _jsx(motion.div,{initial:variant,animate:variants,onHoverStart:()=>setGestureState({isHovered:true}),onHoverEnd:()=>setGestureState({isHovered:false}),onTapStart:()=>setGestureState({isPressed:true}),onTap:()=>setGestureState({isPressed:false}),onTapCancel:()=>setGestureState({isPressed:false}),className:cx(\"framer-XGtVx\",classNames),style:{display:\"contents\"},children:/*#__PURE__*/ _jsx(Transition,{value:transition,children:/*#__PURE__*/ _jsxs(motion.div,{...restProps,className:cx(\"framer-ght1is\",className),\"data-framer-name\":\"Default\",layoutDependency:layoutDependency,layoutId:\"KTwteHzv6\",ref:ref,style:{backgroundColor:\"var(--token-a2c1de50-3936-46f1-ac5b-fc1faabf1f99, rgb(247, 247, 247))\",borderBottomLeftRadius:20,borderBottomRightRadius:20,borderTopLeftRadius:20,borderTopRightRadius:20,...style},children:[/*#__PURE__*/ _jsx(motion.div,{className:\"framer-1jo852t-container\",layoutDependency:layoutDependency,layoutId:\"A9T61mMPU-container\",children:/*#__PURE__*/ _jsx(Row,{answer:\"\\xc9 a solu\\xe7\\xe3o ideal para empresas que buscam estruturar o seu financeiro. Contando com profissionais experientes e ferramentas tecnol\\xf3gicas, apoiamos as startups na organiza\\xe7\\xe3o e estrutura\\xe7\\xe3o das \\xe1reas cont\\xe1bil e financeira da empresa, visando a otimiza\\xe7\\xe3o de recursos, o apoio \\xe0s decis\\xf5es estrat\\xe9gicas e o crescimento do neg\\xf3cio.\",height:\"100%\",id:\"A9T61mMPU\",layoutId:\"A9T61mMPU\",question:\"O que \\xe9 um CFO as a Service?\",style:{width:\"100%\"},variant:\"UbTGVOlpL\",width:\"100%\"})}),/*#__PURE__*/ _jsx(motion.div,{className:\"framer-i29an9\",\"data-framer-name\":\"Line\",layoutDependency:layoutDependency,layoutId:\"t4bUzcYYd\",style:{backgroundColor:\"rgba(0, 0, 0, 0.05)\"}}),/*#__PURE__*/ _jsx(motion.div,{className:\"framer-1qj4t4l-container\",layoutDependency:layoutDependency,layoutId:\"FPR7jYBXP-container\",children:/*#__PURE__*/ _jsx(Row,{answer:\"Uma solu\\xe7\\xe3o de CFO as a Service custa, em m\\xe9dia, 70% a menos do que um time financeiro com as compet\\xeancias necess\\xe1rias para realizar as mesmas entregas.\",height:\"100%\",id:\"FPR7jYBXP\",layoutId:\"FPR7jYBXP\",question:\"Um CFO as a Service \\xe9 caro?\",style:{width:\"100%\"},variant:\"UbTGVOlpL\",width:\"100%\"})}),/*#__PURE__*/ _jsx(motion.div,{className:\"framer-1a1g9pd\",\"data-framer-name\":\"Line\",layoutDependency:layoutDependency,layoutId:\"oFdQ4E6PY\",style:{backgroundColor:\"rgba(0, 0, 0, 0.05)\"}}),/*#__PURE__*/ _jsx(motion.div,{className:\"framer-6h0b48-container\",layoutDependency:layoutDependency,layoutId:\"aCw1tO4hU-container\",children:/*#__PURE__*/ _jsx(Row,{answer:\"Diferente de uma consultoria, em que os projetos possuem um horizonte de tempo definido, o CFO as a Service \\xe9 um trabalho recorrente de evolu\\xe7\\xe3o do seu financeiro. Ainda assim, dado o ritmo de crescimento dos nossos clientes, e a estrutura\\xe7\\xe3o completa que realizamos em seu financeiro, em m\\xe9dia, ap\\xf3s 2 anos de trabalho, esses clientes est\\xe3o prontos para trazer um CFO full-time. \\xc9 neste momento que realizamos a transi\\xe7\\xe3o e sa\\xedmos de cena.\",height:\"100%\",id:\"aCw1tO4hU\",layoutId:\"aCw1tO4hU\",question:\"Quanto tempo dura o trabalho de CFO as a Service?\",style:{width:\"100%\"},variant:\"UbTGVOlpL\",width:\"100%\"})})]})})})});});const css=['.framer-XGtVx [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; }',\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-XGtVx .framer-4xzy46 { display: block; }\",\".framer-XGtVx .framer-ght1is { align-content: flex-start; align-items: flex-start; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px 20px 0px 20px; position: relative; width: 1000px; will-change: var(--framer-will-change-override, transform); }\",\".framer-XGtVx .framer-1jo852t-container, .framer-XGtVx .framer-1qj4t4l-container, .framer-XGtVx .framer-6h0b48-container { flex: none; height: auto; position: relative; width: 100%; }\",\".framer-XGtVx .framer-i29an9, .framer-XGtVx .framer-1a1g9pd { flex: none; height: 1px; overflow: hidden; position: relative; width: 100%; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-XGtVx .framer-ght1is { gap: 0px; } .framer-XGtVx .framer-ght1is > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-XGtVx .framer-ght1is > :first-child { margin-top: 0px; } .framer-XGtVx .framer-ght1is > :last-child { margin-bottom: 0px; } }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 194\n * @framerIntrinsicWidth 1000\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables false\n */ const FramerUC2nwIhUB=withCSS(Component,css,\"framer-XGtVx\");export default FramerUC2nwIhUB;FramerUC2nwIhUB.displayName=\"Accordion Copy\";FramerUC2nwIhUB.defaultProps={height:194,width:1e3};addFonts(FramerUC2nwIhUB,[...RowFonts]);\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerUC2nwIhUB\",\"slots\":[],\"annotations\":{\"framerIntrinsicWidth\":\"1000\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerImmutableVariables\":\"false\",\"framerIntrinsicHeight\":\"194\",\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./UC2nwIhUB.map", "// Generated by Framer (b12dec4)\nimport{jsx as _jsx,jsxs as _jsxs,Fragment as _Fragment}from\"react/jsx-runtime\";import{addFonts,Container,cx,GeneratedComponentContext,getFonts,Image,Link,optimizeAppear,optimizeAppearTransformTemplate,PropertyOverrides,removeHiddenBreakpointLayers,RichText,useActiveVariantCallback,useHydratedBreakpointVariants,useLocaleInfo,useOverlayState,withCSS,withFX}from\"framer\";import{AnimatePresence,LayoutGroup,motion}from\"framer-motion\";import*as React from\"react\";import*as ReactDOM from\"react-dom\";import Ticker from\"https://framerusercontent.com/modules/B2xAlJLcN0gOnt11mSPw/DAWxXDGdC5RJUOPfOsh5/Ticker.js\";import{Video}from\"https://framerusercontent.com/modules/lRDHiNWNVWmE0lqtoVHP/qXQVWG1AZxpdrbBmhE1U/Video.js\";import NavbarLogoLightCopy from\"https://framerusercontent.com/modules/WJPRF5MDGWLbvLqBjo3L/WLn9p8ulJvzgburi3caT/kSpRP5C6Q.js\";import FooterDark from\"https://framerusercontent.com/modules/URH9cstJRo8JcCYWfuCb/FvoZWX2HaKj6IVz8h9yB/S8Auv9Pv5.js\";import AccordionCopy from\"https://framerusercontent.com/modules/qyAgW3H7jxMwa6QNn03b/pm3HQgjK5XVlPkxhAgmz/UC2nwIhUB.js\";import metadataProvider from\"https://framerusercontent.com/modules/zPi9IWYw45d89NXMPmiQ/wL8yXiiwBkCj6eNZslFR/rYRjV94pE.js\";const NavbarLogoLightCopyFonts=getFonts(NavbarLogoLightCopy);const VideoFonts=getFonts(Video);const TickerFonts=getFonts(Ticker);const MotionDivWithFX=withFX(motion.div);const RichTextWithFX=withFX(RichText);const AccordionCopyFonts=getFonts(AccordionCopy);const ContainerWithFX=withFX(Container);const FooterDarkFonts=getFonts(FooterDark);const cycleOrder=[\"M2IWXsj1e\",\"l3h4drrNx\",\"pMXk9bHeP\"];const breakpoints={l3h4drrNx:\"(min-width: 810px) and (max-width: 1199px)\",M2IWXsj1e:\"(min-width: 1200px)\",pMXk9bHeP:\"(max-width: 809px)\"};const isBrowser=()=>typeof document!==\"undefined\";const variantClassNames={l3h4drrNx:\"framer-v-foo019\",M2IWXsj1e:\"framer-v-u8orky\",pMXk9bHeP:\"framer-v-uiyjoi\"};if(isBrowser()){removeHiddenBreakpointLayers(\"M2IWXsj1e\",breakpoints,variantClassNames);}const transitions={default:{duration:0}};function Overlay({children,blockDocumentScrolling}){const[visible,setVisible]=useOverlayState({blockDocumentScrolling});return children({hide:()=>setVisible(false),show:()=>setVisible(true),toggle:()=>setVisible(!visible),visible});}const transition1={damping:30,delay:0,mass:1,stiffness:100,type:\"spring\"};const animation={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,transition:transition1,x:0,y:100};const transformTemplate=(_,t)=>`perspective(1200px) ${t}`;const animation1={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,transition:transition1,x:0,y:0};const animation2={opacity:.001,rotate:0,rotateX:0,rotateY:0,scale:1,x:0,y:100};const transition2={damping:30,delay:.2,mass:1,stiffness:100,type:\"spring\"};const animation3={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,transition:transition2,x:0,y:100};const animation4={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,transition:transition2,x:0,y:0};const animation5={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,x:0,y:100};const transition3={damping:80,delay:.1,mass:1,stiffness:400,type:\"spring\"};const animation6={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,transition:transition3,x:0,y:100};const transition4={damping:80,delay:.15,mass:1,stiffness:400,type:\"spring\"};const animation7={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,transition:transition4,x:0,y:100};const metadata=metadataProvider();const humanReadableVariantMap={Desktop:\"M2IWXsj1e\",Phone:\"pMXk9bHeP\",Tablet:\"l3h4drrNx\"};const getProps=({height,id,width,...props})=>{var _variant,ref;return{...props,variant:(ref=(_variant=humanReadableVariantMap[props.variant])!==null&&_variant!==void 0?_variant:props.variant)!==null&&ref!==void 0?ref:\"M2IWXsj1e\"};};const Component=/*#__PURE__*/ React.forwardRef(function(props,ref){const{activeLocale}=useLocaleInfo();const{style,className,layoutId,variant,...restProps}=getProps(props);React.useLayoutEffect(()=>{const metadata1=metadataProvider(undefined,activeLocale);document.title=metadata1.title||\"\";if(metadata1.viewport){var ref;(ref=document.querySelector('meta[name=\"viewport\"]'))===null||ref===void 0?void 0:ref.setAttribute(\"content\",metadata1.viewport);}if(metadata1.bodyClassName){Array.from(document.body.classList).filter(c=>c.startsWith(\"framer-body-\")).map(c=>document.body.classList.remove(c));document.body.classList.add(metadata1.bodyClassName);}},[undefined,activeLocale]);const[baseVariant,hydratedBaseVariant]=useHydratedBreakpointVariants(variant,breakpoints,false);const gestureVariant=undefined;const transition=transitions.default;const{activeVariantCallback,delay}=useActiveVariantCallback(undefined);const onTap42m929=overlay=>activeVariantCallback(async(...args)=>{overlay.toggle();});const isDisplayed=()=>{if(baseVariant===\"pMXk9bHeP\")return!isBrowser();return true;};const defaultLayoutId=React.useId();return /*#__PURE__*/ _jsx(GeneratedComponentContext.Provider,{value:{primaryVariantId:\"M2IWXsj1e\",variantClassNames},children:/*#__PURE__*/ _jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/ _jsxs(motion.div,{className:cx(\"framer-3V1si\"),style:{display:\"contents\"},children:[/*#__PURE__*/ _jsxs(motion.div,{...restProps,className:cx(\"framer-u8orky\",className),ref:ref,style:{...style},children:[/*#__PURE__*/ _jsx(Container,{className:\"framer-18ysv9d-container\",children:/*#__PURE__*/ _jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{l3h4drrNx:{variant:\"ZuKube1LF\"},pMXk9bHeP:{variant:\"ZuKube1LF\"}},children:/*#__PURE__*/ _jsx(NavbarLogoLightCopy,{height:\"100%\",id:\"StnHRaTHC\",layoutId:\"StnHRaTHC\",style:{width:\"100%\"},variant:\"kJeY_JLEY\",width:\"100%\"})})}),/*#__PURE__*/ _jsxs(\"div\",{className:\"framer-1o2163a\",\"data-framer-name\":\"Header\",name:\"Header\",children:[/*#__PURE__*/ _jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{l3h4drrNx:{\"data-framer-appear-id\":\"imussx\",animate:optimizeAppear(\"animate\",\"imussx\",animation1,\"foo019\"),initial:optimizeAppear(\"initial\",\"imussx\",animation2,\"foo019\"),transformTemplate:optimizeAppearTransformTemplate(\"imussx\",transformTemplate)},pMXk9bHeP:{\"data-framer-appear-id\":\"uotbyn\",animate:optimizeAppear(\"animate\",\"uotbyn\",animation1,\"uiyjoi\"),children:/*#__PURE__*/ _jsx(React.Fragment,{children:/*#__PURE__*/ _jsxs(\"h1\",{style:{\"--font-selector\":\"R0Y7U291cmNlIFNhbnMgMy03MDA=\",\"--framer-font-family\":'\"Source Sans 3\", \"Source Sans 3 Placeholder\", sans-serif',\"--framer-font-size\":\"50px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-3.8px\",\"--framer-line-height\":\"1em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(43, 60, 77)\"},children:[\"Evolua o financeiro\",/*#__PURE__*/ _jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-b9c3c957-2c66-49c4-9732-fa196fddac20, rgb(0, 17, 34))\"},children:/*#__PURE__*/ _jsx(\"br\",{})}),\"da sua startup\"]})}),initial:optimizeAppear(\"initial\",\"uotbyn\",animation2,\"uiyjoi\"),transformTemplate:optimizeAppearTransformTemplate(\"uotbyn\",transformTemplate)}},children:/*#__PURE__*/ _jsx(RichText,{__fromCanvasComponent:true,animate:optimizeAppear(\"animate\",\"uqskqs\",animation1,\"u8orky\"),children:/*#__PURE__*/ _jsx(React.Fragment,{children:/*#__PURE__*/ _jsxs(\"h1\",{style:{\"--font-selector\":\"R0Y7U291cmNlIFNhbnMgMy03MDA=\",\"--framer-font-family\":'\"Source Sans 3\", \"Source Sans 3 Placeholder\", sans-serif',\"--framer-font-size\":\"1px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-3.8px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(43, 60, 77)\"},children:[/*#__PURE__*/ _jsx(\"span\",{style:{\"--framer-font-size\":\"72px\"},children:\"Evolua o financeiro\"}),/*#__PURE__*/ _jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-b9c3c957-2c66-49c4-9732-fa196fddac20, rgb(0, 17, 34))\"},children:/*#__PURE__*/ _jsx(\"br\",{})}),/*#__PURE__*/ _jsx(\"span\",{style:{\"--framer-font-size\":\"72px\"},children:\"da sua startup\"}),/*#__PURE__*/ _jsx(\"span\",{style:{\"--framer-font-size\":\"72px\"},children:/*#__PURE__*/ _jsx(\"br\",{})}),/*#__PURE__*/ _jsx(\"span\",{style:{\"--framer-font-size\":\"20px\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\".\"})]})}),className:\"framer-uqskqs\",\"data-framer-appear-id\":\"uqskqs\",exit:animation,fonts:[\"GF;Source Sans 3-700\"],initial:optimizeAppear(\"initial\",\"uqskqs\",animation2,\"u8orky\"),transformTemplate:optimizeAppearTransformTemplate(\"uqskqs\",transformTemplate),verticalAlignment:\"top\",withExternalLayout:true})}),isDisplayed()&&/*#__PURE__*/ _jsx(Overlay,{children:overlay1u3q65p=>/*#__PURE__*/ _jsx(_Fragment,{children:/*#__PURE__*/ _jsxs(motion.div,{className:\"framer-zthrby hidden-uiyjoi\",\"data-border\":true,onTap:onTap42m929(overlay1u3q65p),children:[/*#__PURE__*/ _jsx(AnimatePresence,{children:overlay1u3q65p.visible&&/*#__PURE__*/ _jsx(_Fragment,{children:/*#__PURE__*/ ReactDOM.createPortal(/*#__PURE__*/ _jsx(React.Fragment,{children:/*#__PURE__*/ _jsx(motion.div,{animate:{opacity:1,transition:{delay:0,duration:0,ease:[.5,0,.88,.77],type:\"tween\"}},className:\"framer-1u3q65p\",exit:{opacity:0,transition:{delay:0,duration:0,ease:[.12,.23,.5,1],type:\"tween\"}},initial:{opacity:0},onTap:()=>overlay1u3q65p.hide()},\"jRTyBn9wb\")}),document.querySelector(\"#overlay\"))})}),/*#__PURE__*/ _jsx(Container,{className:\"framer-dvjb5k-container\",children:/*#__PURE__*/ _jsx(Video,{backgroundColor:\"rgba(0, 0, 0, 0)\",borderRadius:0,bottomLeftRadius:0,bottomRightRadius:0,controls:false,height:\"100%\",id:\"hq7nUtwYp\",isMixedBorderRadius:false,layoutId:\"hq7nUtwYp\",loop:true,muted:true,objectFit:\"contain\",playing:true,posterEnabled:false,srcFile:new URL(\"assets/NO6gAAiiPvMvNKV31UbdmPJAZs.mp4\",\"https://framerusercontent.com/modules/Um8I3kHRI8Udm7NqFgpw/BdEjUsACzDxnWm5GYBxF/rYRjV94pE.js\").href,srcType:\"Upload\",srcUrl:\"https://assets.mixkit.co/videos/preview/mixkit-ice-cream-glass-of-red-soda-5094-small.mp4\",startTime:0,style:{height:\"100%\",width:\"100%\"},topLeftRadius:0,topRightRadius:0,volume:25,width:\"100%\"})})]})})}),/*#__PURE__*/ _jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{l3h4drrNx:{\"data-framer-appear-id\":\"18128s6\",animate:optimizeAppear(\"animate\",\"18128s6\",animation4,\"foo019\"),initial:optimizeAppear(\"initial\",\"18128s6\",animation2,\"foo019\"),transformTemplate:optimizeAppearTransformTemplate(\"18128s6\",transformTemplate)},pMXk9bHeP:{\"data-framer-appear-id\":\"1o8s6jv\",animate:optimizeAppear(\"animate\",\"1o8s6jv\",animation4,\"uiyjoi\"),initial:optimizeAppear(\"initial\",\"1o8s6jv\",animation2,\"uiyjoi\"),transformTemplate:optimizeAppearTransformTemplate(\"1o8s6jv\",transformTemplate)}},children:/*#__PURE__*/ _jsxs(motion.div,{animate:optimizeAppear(\"animate\",\"htvrs0\",animation4,\"u8orky\"),className:\"framer-htvrs0\",\"data-framer-appear-id\":\"htvrs0\",exit:animation3,initial:optimizeAppear(\"initial\",\"htvrs0\",animation2,\"u8orky\"),transformTemplate:optimizeAppearTransformTemplate(\"htvrs0\",transformTemplate),children:[/*#__PURE__*/ _jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{l3h4drrNx:{children:/*#__PURE__*/ _jsx(React.Fragment,{children:/*#__PURE__*/ _jsx(\"h2\",{style:{\"--font-selector\":\"R0Y7U291cmNlIFNhbnMgMy01MDA=\",\"--framer-font-family\":'\"Source Sans 3\", sans-serif',\"--framer-font-size\":\"22px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.7px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(43, 60, 77)\"},children:\"Tome decis\\xf5es mais inteligentes, com informa\\xe7\\xf5es confi\\xe1veis e o apoio de especialistas.\"})})},pMXk9bHeP:{children:/*#__PURE__*/ _jsx(React.Fragment,{children:/*#__PURE__*/ _jsx(\"h2\",{style:{\"--font-selector\":\"R0Y7U291cmNlIFNhbnMgMy01MDA=\",\"--framer-font-family\":'\"Source Sans 3\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.7px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(43, 60, 77)\"},children:\"Tome decis\\xf5es mais inteligentes, com informa\\xe7\\xf5es confi\\xe1veis e o apoio de especialistas.\"})})}},children:/*#__PURE__*/ _jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/ _jsx(React.Fragment,{children:/*#__PURE__*/ _jsx(\"h2\",{style:{\"--font-selector\":\"R0Y7U291cmNlIFNhbnMgMy01MDA=\",\"--framer-font-family\":'\"Source Sans 3\", sans-serif',\"--framer-font-size\":\"26px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.7px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(43, 60, 77)\"},children:\"Tome decis\\xf5es mais inteligentes, com informa\\xe7\\xf5es confi\\xe1veis e o apoio de especialistas.\"})}),className:\"framer-1jcksgm\",fonts:[\"GF;Source Sans 3-500\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/ _jsx(Link,{href:{webPageId:\"zeBgcl3LE\"},children:/*#__PURE__*/ _jsx(\"a\",{className:\"framer-pqpcoi framer-ants2n\",\"data-framer-name\":\"Button\",name:\"Button\",children:/*#__PURE__*/ _jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{pMXk9bHeP:{children:/*#__PURE__*/ _jsx(React.Fragment,{children:/*#__PURE__*/ _jsx(\"p\",{style:{\"--font-selector\":\"R0Y7U291cmNlIFNhbnMgMy02MDA=\",\"--framer-font-family\":'\"Source Sans 3\", sans-serif',\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"0px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Entre em contato\"})})}},children:/*#__PURE__*/ _jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/ _jsx(React.Fragment,{children:/*#__PURE__*/ _jsx(\"p\",{style:{\"--font-selector\":\"R0Y7U291cmNlIFNhbnMgMy02MDA=\",\"--framer-font-family\":'\"Source Sans 3\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"0px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Entre em contato\"})}),className:\"framer-14vpw9s\",fonts:[\"GF;Source Sans 3-600\"],verticalAlignment:\"top\",withExternalLayout:true})})})})]})})]}),/*#__PURE__*/ _jsxs(\"div\",{className:\"framer-1ugelk9\",\"data-framer-name\":\"Logos\",name:\"Logos\",children:[/*#__PURE__*/ _jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{pMXk9bHeP:{children:/*#__PURE__*/ _jsxs(React.Fragment,{children:[/*#__PURE__*/ _jsx(\"p\",{style:{\"--font-selector\":\"R0Y7U291cmNlIFNhbnMgMy01MDA=\",\"--framer-font-family\":'\"Source Sans 3\", sans-serif',\"--framer-font-size\":\"36px\",\"--framer-font-weight\":\"500\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(43, 60, 77)\"},children:/*#__PURE__*/ _jsx(\"strong\",{children:\"Alguns dos clientes \"})}),/*#__PURE__*/ _jsx(\"p\",{style:{\"--font-selector\":\"R0Y7U291cmNlIFNhbnMgMy01MDA=\",\"--framer-font-family\":'\"Source Sans 3\", sans-serif',\"--framer-font-size\":\"36px\",\"--framer-font-weight\":\"500\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(43, 60, 77)\"},children:/*#__PURE__*/ _jsx(\"strong\",{children:\"que confiam na Wink:\"})})]})}},children:/*#__PURE__*/ _jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/ _jsx(React.Fragment,{children:/*#__PURE__*/ _jsx(\"p\",{style:{\"--font-selector\":\"R0Y7U291cmNlIFNhbnMgMy01MDA=\",\"--framer-font-family\":'\"Source Sans 3\", sans-serif',\"--framer-font-size\":\"36px\",\"--framer-font-weight\":\"500\",\"--framer-text-color\":\"rgb(43, 60, 77)\"},children:/*#__PURE__*/ _jsx(\"strong\",{children:\"Alguns dos clientes que confiam na Wink:\"})})}),className:\"framer-ppwqww\",fonts:[\"GF;Source Sans 3-500\",\"GF;Source Sans 3-700\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/ _jsx(Container,{className:\"framer-1vtypr9-container\",children:/*#__PURE__*/ _jsx(Ticker,{alignment:\"center\",direction:\"left\",fadeOptions:{fadeAlpha:0,fadeContent:true,fadeInset:0,fadeWidth:25,overflow:false},gap:10,height:\"100%\",hoverFactor:1,id:\"PhxF1TfzJ\",layoutId:\"PhxF1TfzJ\",padding:10,paddingBottom:10,paddingLeft:10,paddingPerSide:false,paddingRight:10,paddingTop:10,sizingOptions:{heightType:true,widthType:true},slots:[/*#__PURE__*/ _jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:90,intrinsicWidth:148,pixelHeight:180,pixelWidth:296,src:new URL(\"assets/MR99fNfbjUV7JQHA9Z1H4mpXVU0.png\",\"https://framerusercontent.com/modules/Um8I3kHRI8Udm7NqFgpw/BdEjUsACzDxnWm5GYBxF/rYRjV94pE.js\").href},className:\"framer-1ga6tu7\",\"data-framer-name\":\"Captura_de_Tela_2023_09_13_a\\xcc_s_17_13_16\",name:\"Captura_de_Tela_2023_09_13_a\\xcc_s_17_13_16\"}),/*#__PURE__*/ _jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:90,intrinsicWidth:148,pixelHeight:180,pixelWidth:296,src:new URL(\"assets/n3zZ0bWoTR3rzjXTGY0cwKxtypE.png\",\"https://framerusercontent.com/modules/Um8I3kHRI8Udm7NqFgpw/BdEjUsACzDxnWm5GYBxF/rYRjV94pE.js\").href},className:\"framer-16npyvx\",\"data-framer-name\":\"Captura_de_Tela_2023_09_13_a\\xcc_s_17_13_46\",name:\"Captura_de_Tela_2023_09_13_a\\xcc_s_17_13_46\"}),/*#__PURE__*/ _jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:90,intrinsicWidth:148,pixelHeight:180,pixelWidth:296,src:new URL(\"assets/wwFHIMWrEgbFouTZX0uYRQuNwk.png\",\"https://framerusercontent.com/modules/Um8I3kHRI8Udm7NqFgpw/BdEjUsACzDxnWm5GYBxF/rYRjV94pE.js\").href},className:\"framer-1tnfb40\",\"data-framer-name\":\"Captura_de_Tela_2023_09_13_a\\xcc_s_17_14_13\",name:\"Captura_de_Tela_2023_09_13_a\\xcc_s_17_14_13\"}),/*#__PURE__*/ _jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:90,intrinsicWidth:148,pixelHeight:180,pixelWidth:296,src:new URL(\"assets/QmnongiW0ilYX8lPbVnuNejHvVk.png\",\"https://framerusercontent.com/modules/Um8I3kHRI8Udm7NqFgpw/BdEjUsACzDxnWm5GYBxF/rYRjV94pE.js\").href},className:\"framer-13ooiyn\",\"data-framer-name\":\"Captura_de_Tela_2023_09_13_a\\xcc_s_17_14_46\",name:\"Captura_de_Tela_2023_09_13_a\\xcc_s_17_14_46\"}),/*#__PURE__*/ _jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:90,intrinsicWidth:148,pixelHeight:180,pixelWidth:296,src:new URL(\"assets/D1vz5eWFEvtRm3bsAGwvMdtiok.png\",\"https://framerusercontent.com/modules/Um8I3kHRI8Udm7NqFgpw/BdEjUsACzDxnWm5GYBxF/rYRjV94pE.js\").href},className:\"framer-14ebzs1\",\"data-framer-name\":\"Captura_de_Tela_2023_09_13_a\\xcc_s_17_15_55\",name:\"Captura_de_Tela_2023_09_13_a\\xcc_s_17_15_55\"}),/*#__PURE__*/ _jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:90,intrinsicWidth:148,pixelHeight:180,pixelWidth:296,src:new URL(\"assets/XEztYfeQWwJikLeOCt4ujhAW4SM.png\",\"https://framerusercontent.com/modules/Um8I3kHRI8Udm7NqFgpw/BdEjUsACzDxnWm5GYBxF/rYRjV94pE.js\").href},className:\"framer-1ovi17z\",\"data-framer-name\":\"Captura_de_Tela_2023_09_13_a\\xcc_s_17_16_54\",name:\"Captura_de_Tela_2023_09_13_a\\xcc_s_17_16_54\"}),/*#__PURE__*/ _jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:90,intrinsicWidth:148,pixelHeight:180,pixelWidth:296,src:new URL(\"assets/IKBEaH7HwLOirRMctmJF62UXEc.png\",\"https://framerusercontent.com/modules/Um8I3kHRI8Udm7NqFgpw/BdEjUsACzDxnWm5GYBxF/rYRjV94pE.js\").href},className:\"framer-1vukcmf\",\"data-framer-name\":\"netlex\",name:\"netlex\"}),/*#__PURE__*/ _jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:89,intrinsicWidth:148,pixelHeight:178,pixelWidth:296,src:new URL(\"assets/NB4HizcHbjsR725Ycnc0BdEmzw.png\",\"https://framerusercontent.com/modules/Um8I3kHRI8Udm7NqFgpw/BdEjUsACzDxnWm5GYBxF/rYRjV94pE.js\").href},className:\"framer-19oelaa\",\"data-framer-name\":\"suri\",name:\"suri\"}),/*#__PURE__*/ _jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:90,intrinsicWidth:148,pixelHeight:180,pixelWidth:296,src:new URL(\"assets/ECbYpz9gLNcusl6MtxTtjraHuY0.png\",\"https://framerusercontent.com/modules/Um8I3kHRI8Udm7NqFgpw/BdEjUsACzDxnWm5GYBxF/rYRjV94pE.js\").href},className:\"framer-13sktop\",\"data-framer-name\":\"minds\",name:\"minds\"}),/*#__PURE__*/ _jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:90,intrinsicWidth:148,pixelHeight:180,pixelWidth:296,src:new URL(\"assets/UkHQuVMjooDLoy2g8I6LQrEjQ.png\",\"https://framerusercontent.com/modules/Um8I3kHRI8Udm7NqFgpw/BdEjUsACzDxnWm5GYBxF/rYRjV94pE.js\").href},className:\"framer-m4alaw\",\"data-framer-name\":\"Captura_de_Tela_2023_09_13_a\\xcc_s_17_18_51\",name:\"Captura_de_Tela_2023_09_13_a\\xcc_s_17_18_51\"})],speed:50,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})]}),/*#__PURE__*/ _jsx(\"div\",{className:\"framer-y0p3q4\",\"data-framer-name\":\"Features\",name:\"Features\",children:/*#__PURE__*/ _jsxs(\"div\",{className:\"framer-ipsej5\",\"data-framer-name\":\"Features\",name:\"Features\",children:[/*#__PURE__*/ _jsxs(MotionDivWithFX,{__framer__animate:{transition:transition3},__framer__animateOnce:true,__framer__enter:animation5,__framer__exit:animation6,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-ioctme\",transformTemplate:transformTemplate,children:[/*#__PURE__*/ _jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{pMXk9bHeP:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:3648,intrinsicWidth:5472,pixelHeight:3648,pixelWidth:5472,sizes:\"1000px\",src:new URL(\"assets/ZeI5QgTLTLqMi9qqoJExOxGV0c.jpg\",\"https://framerusercontent.com/modules/Um8I3kHRI8Udm7NqFgpw/BdEjUsACzDxnWm5GYBxF/rYRjV94pE.js\").href,srcSet:`${new URL(\"assets/512/ZeI5QgTLTLqMi9qqoJExOxGV0c.jpg\",\"https://framerusercontent.com/modules/Um8I3kHRI8Udm7NqFgpw/BdEjUsACzDxnWm5GYBxF/rYRjV94pE.js\").href} 512w, ${new URL(\"assets/1024/ZeI5QgTLTLqMi9qqoJExOxGV0c.jpg\",\"https://framerusercontent.com/modules/Um8I3kHRI8Udm7NqFgpw/BdEjUsACzDxnWm5GYBxF/rYRjV94pE.js\").href} 1024w, ${new URL(\"assets/2048/ZeI5QgTLTLqMi9qqoJExOxGV0c.jpg\",\"https://framerusercontent.com/modules/Um8I3kHRI8Udm7NqFgpw/BdEjUsACzDxnWm5GYBxF/rYRjV94pE.js\").href} 2048w, ${new URL(\"assets/4096/ZeI5QgTLTLqMi9qqoJExOxGV0c.jpg\",\"https://framerusercontent.com/modules/Um8I3kHRI8Udm7NqFgpw/BdEjUsACzDxnWm5GYBxF/rYRjV94pE.js\").href} 4096w, ${new URL(\"assets/ZeI5QgTLTLqMi9qqoJExOxGV0c.jpg\",\"https://framerusercontent.com/modules/Um8I3kHRI8Udm7NqFgpw/BdEjUsACzDxnWm5GYBxF/rYRjV94pE.js\").href} 5472w`}}},children:/*#__PURE__*/ _jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:3648,intrinsicWidth:5472,loading:\"lazy\",pixelHeight:3648,pixelWidth:5472,sizes:\"475px\",src:new URL(\"assets/ZeI5QgTLTLqMi9qqoJExOxGV0c.jpg\",\"https://framerusercontent.com/modules/Um8I3kHRI8Udm7NqFgpw/BdEjUsACzDxnWm5GYBxF/rYRjV94pE.js\").href,srcSet:`${new URL(\"assets/512/ZeI5QgTLTLqMi9qqoJExOxGV0c.jpg\",\"https://framerusercontent.com/modules/Um8I3kHRI8Udm7NqFgpw/BdEjUsACzDxnWm5GYBxF/rYRjV94pE.js\").href} 512w, ${new URL(\"assets/1024/ZeI5QgTLTLqMi9qqoJExOxGV0c.jpg\",\"https://framerusercontent.com/modules/Um8I3kHRI8Udm7NqFgpw/BdEjUsACzDxnWm5GYBxF/rYRjV94pE.js\").href} 1024w, ${new URL(\"assets/2048/ZeI5QgTLTLqMi9qqoJExOxGV0c.jpg\",\"https://framerusercontent.com/modules/Um8I3kHRI8Udm7NqFgpw/BdEjUsACzDxnWm5GYBxF/rYRjV94pE.js\").href} 2048w, ${new URL(\"assets/4096/ZeI5QgTLTLqMi9qqoJExOxGV0c.jpg\",\"https://framerusercontent.com/modules/Um8I3kHRI8Udm7NqFgpw/BdEjUsACzDxnWm5GYBxF/rYRjV94pE.js\").href} 4096w, ${new URL(\"assets/ZeI5QgTLTLqMi9qqoJExOxGV0c.jpg\",\"https://framerusercontent.com/modules/Um8I3kHRI8Udm7NqFgpw/BdEjUsACzDxnWm5GYBxF/rYRjV94pE.js\").href} 5472w`},className:\"framer-1j4kyz6\",\"data-framer-name\":\"Image\",name:\"Image\"})}),/*#__PURE__*/ _jsxs(\"div\",{className:\"framer-bhfbca\",\"data-framer-name\":\"Content\",name:\"Content\",children:[/*#__PURE__*/ _jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{l3h4drrNx:{children:/*#__PURE__*/ _jsx(React.Fragment,{children:/*#__PURE__*/ _jsx(\"h2\",{style:{\"--font-selector\":\"R0Y7U291cmNlIFNhbnMgMy03MDA=\",\"--framer-font-family\":'\"Source Sans 3\", \"Source Sans 3 Placeholder\", sans-serif',\"--framer-font-size\":\"40px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-2.1px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(43, 60, 77)\"},children:\"CFO as a Service\"})})},pMXk9bHeP:{children:/*#__PURE__*/ _jsx(React.Fragment,{children:/*#__PURE__*/ _jsx(\"h2\",{style:{\"--font-selector\":\"R0Y7U291cmNlIFNhbnMgMy03MDA=\",\"--framer-font-family\":'\"Source Sans 3\", \"Source Sans 3 Placeholder\", sans-serif',\"--framer-font-size\":\"32px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-2.1px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(43, 60, 77)\"},children:\"CFO as a Service\"})})}},children:/*#__PURE__*/ _jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/ _jsx(React.Fragment,{children:/*#__PURE__*/ _jsx(\"h2\",{style:{\"--font-selector\":\"R0Y7U291cmNlIFNhbnMgMy03MDA=\",\"--framer-font-family\":'\"Source Sans 3\", \"Source Sans 3 Placeholder\", sans-serif',\"--framer-font-size\":\"50px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-2.1px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(43, 60, 77)\"},children:\"CFO as a Service\"})}),className:\"framer-1bod61f\",fonts:[\"GF;Source Sans 3-700\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/ _jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{l3h4drrNx:{children:/*#__PURE__*/ _jsx(React.Fragment,{children:/*#__PURE__*/ _jsx(\"h2\",{style:{\"--font-selector\":\"R0Y7U291cmNlIFNhbnMgMy01MDA=\",\"--framer-font-family\":'\"Source Sans 3\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.7px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-1021654d-251a-4750-952b-de3f7005260e, rgb(136, 136, 136))\"},children:\"Experi\\xeancia, Tecnologia e Time Qualificado, para evoluir a gest\\xe3o financeira da sua empresa\"})})},pMXk9bHeP:{children:/*#__PURE__*/ _jsx(React.Fragment,{children:/*#__PURE__*/ _jsx(\"h2\",{style:{\"--font-selector\":\"R0Y7U291cmNlIFNhbnMgMy01MDA=\",\"--framer-font-family\":'\"Source Sans 3\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.7px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-1021654d-251a-4750-952b-de3f7005260e, rgb(136, 136, 136))\"},children:\"Experi\\xeancia, Tecnologia e Time Qualificado, para evoluir a gest\\xe3o financeira da sua empresa\"})})}},children:/*#__PURE__*/ _jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/ _jsx(React.Fragment,{children:/*#__PURE__*/ _jsx(\"h2\",{style:{\"--font-selector\":\"R0Y7U291cmNlIFNhbnMgMy01MDA=\",\"--framer-font-family\":'\"Source Sans 3\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.7px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-1021654d-251a-4750-952b-de3f7005260e, rgb(136, 136, 136))\"},children:\"Experi\\xeancia, Tecnologia e Time Qualificado, para evoluir a gest\\xe3o financeira da sua empresa\"})}),className:\"framer-143sitw\",fonts:[\"GF;Source Sans 3-500\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/ _jsx(Link,{href:{webPageId:\"IWFrI0v6Z\"},openInNewTab:true,children:/*#__PURE__*/ _jsx(\"a\",{className:\"framer-iprgde framer-ants2n\",\"data-framer-name\":\"Button\",\"data-reset\":\"button\",name:\"Button\",children:/*#__PURE__*/ _jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/ _jsx(React.Fragment,{children:/*#__PURE__*/ _jsx(\"p\",{style:{\"--font-selector\":\"R0Y7U291cmNlIFNhbnMgMy02MDA=\",\"--framer-font-family\":'\"Source Sans 3\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"0px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Saiba Mais\"})}),className:\"framer-1c6k3mt\",fonts:[\"GF;Source Sans 3-600\"],verticalAlignment:\"top\",withExternalLayout:true})})})]})]}),/*#__PURE__*/ _jsxs(MotionDivWithFX,{__framer__animate:{transition:transition3},__framer__animateOnce:true,__framer__enter:animation5,__framer__exit:animation6,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-pd7sfg\",transformTemplate:transformTemplate,children:[/*#__PURE__*/ _jsxs(\"div\",{className:\"framer-18vzux\",\"data-framer-name\":\"Content\",name:\"Content\",children:[/*#__PURE__*/ _jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{l3h4drrNx:{children:/*#__PURE__*/ _jsx(React.Fragment,{children:/*#__PURE__*/ _jsx(\"h2\",{style:{\"--font-selector\":\"R0Y7U291cmNlIFNhbnMgMy03MDA=\",\"--framer-font-family\":'\"Source Sans 3\", \"Source Sans 3 Placeholder\", sans-serif',\"--framer-font-size\":\"40px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-2.1px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(43, 60, 77)\"},children:\"Advisory\"})})},pMXk9bHeP:{children:/*#__PURE__*/ _jsx(React.Fragment,{children:/*#__PURE__*/ _jsx(\"h2\",{style:{\"--font-selector\":\"R0Y7U291cmNlIFNhbnMgMy03MDA=\",\"--framer-font-family\":'\"Source Sans 3\", \"Source Sans 3 Placeholder\", sans-serif',\"--framer-font-size\":\"32px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-2.1px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(43, 60, 77)\"},children:\"Advisory\"})})}},children:/*#__PURE__*/ _jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/ _jsx(React.Fragment,{children:/*#__PURE__*/ _jsx(\"h2\",{style:{\"--font-selector\":\"R0Y7U291cmNlIFNhbnMgMy03MDA=\",\"--framer-font-family\":'\"Source Sans 3\", \"Source Sans 3 Placeholder\", sans-serif',\"--framer-font-size\":\"50px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-2.1px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(43, 60, 77)\"},children:\"Advisory\"})}),className:\"framer-q9le21\",fonts:[\"GF;Source Sans 3-700\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/ _jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{pMXk9bHeP:{children:/*#__PURE__*/ _jsx(React.Fragment,{children:/*#__PURE__*/ _jsx(\"h2\",{style:{\"--font-selector\":\"R0Y7U291cmNlIFNhbnMgMy01MDA=\",\"--framer-font-family\":'\"Source Sans 3\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.7px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-1021654d-251a-4750-952b-de3f7005260e, rgb(136, 136, 136))\"},children:\"Assessoria financeira para rodadas de Fundraising e transa\\xe7\\xf5es de M&A\"})})}},children:/*#__PURE__*/ _jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/ _jsx(React.Fragment,{children:/*#__PURE__*/ _jsx(\"h2\",{style:{\"--font-selector\":\"R0Y7U291cmNlIFNhbnMgMy01MDA=\",\"--framer-font-family\":'\"Source Sans 3\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.7px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-1021654d-251a-4750-952b-de3f7005260e, rgb(136, 136, 136))\"},children:\"Assessoria financeira para rodadas de Fundraising e transa\\xe7\\xf5es de M&A\"})}),className:\"framer-1mw0b0c\",fonts:[\"GF;Source Sans 3-500\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/ _jsx(Link,{href:{webPageId:\"Vd4cllV4w\"},openInNewTab:true,children:/*#__PURE__*/ _jsx(\"a\",{className:\"framer-c8a9x7 framer-ants2n\",\"data-framer-name\":\"Button\",\"data-reset\":\"button\",name:\"Button\",children:/*#__PURE__*/ _jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/ _jsx(React.Fragment,{children:/*#__PURE__*/ _jsx(\"p\",{style:{\"--font-selector\":\"R0Y7U291cmNlIFNhbnMgMy02MDA=\",\"--framer-font-family\":'\"Source Sans 3\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"0px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Saiba Mais\"})}),className:\"framer-17pp7od\",fonts:[\"GF;Source Sans 3-600\"],verticalAlignment:\"top\",withExternalLayout:true})})})]}),/*#__PURE__*/ _jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{pMXk9bHeP:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:4e3,intrinsicWidth:6e3,loading:\"lazy\",pixelHeight:4e3,pixelWidth:6e3,sizes:\"1000px\",src:new URL(\"assets/pVd3JlT7Om45e966vxAfAPjItI4.jpg\",\"https://framerusercontent.com/modules/Um8I3kHRI8Udm7NqFgpw/BdEjUsACzDxnWm5GYBxF/rYRjV94pE.js\").href,srcSet:`${new URL(\"assets/512/pVd3JlT7Om45e966vxAfAPjItI4.jpg\",\"https://framerusercontent.com/modules/Um8I3kHRI8Udm7NqFgpw/BdEjUsACzDxnWm5GYBxF/rYRjV94pE.js\").href} 512w, ${new URL(\"assets/1024/pVd3JlT7Om45e966vxAfAPjItI4.jpg\",\"https://framerusercontent.com/modules/Um8I3kHRI8Udm7NqFgpw/BdEjUsACzDxnWm5GYBxF/rYRjV94pE.js\").href} 1024w, ${new URL(\"assets/2048/pVd3JlT7Om45e966vxAfAPjItI4.jpg\",\"https://framerusercontent.com/modules/Um8I3kHRI8Udm7NqFgpw/BdEjUsACzDxnWm5GYBxF/rYRjV94pE.js\").href} 2048w, ${new URL(\"assets/4096/pVd3JlT7Om45e966vxAfAPjItI4.jpg\",\"https://framerusercontent.com/modules/Um8I3kHRI8Udm7NqFgpw/BdEjUsACzDxnWm5GYBxF/rYRjV94pE.js\").href} 4096w, ${new URL(\"assets/pVd3JlT7Om45e966vxAfAPjItI4.jpg\",\"https://framerusercontent.com/modules/Um8I3kHRI8Udm7NqFgpw/BdEjUsACzDxnWm5GYBxF/rYRjV94pE.js\").href} 6000w`}}},children:/*#__PURE__*/ _jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:4e3,intrinsicWidth:6e3,loading:\"lazy\",pixelHeight:4e3,pixelWidth:6e3,sizes:\"475px\",src:new URL(\"assets/pVd3JlT7Om45e966vxAfAPjItI4.jpg\",\"https://framerusercontent.com/modules/Um8I3kHRI8Udm7NqFgpw/BdEjUsACzDxnWm5GYBxF/rYRjV94pE.js\").href,srcSet:`${new URL(\"assets/512/pVd3JlT7Om45e966vxAfAPjItI4.jpg\",\"https://framerusercontent.com/modules/Um8I3kHRI8Udm7NqFgpw/BdEjUsACzDxnWm5GYBxF/rYRjV94pE.js\").href} 512w, ${new URL(\"assets/1024/pVd3JlT7Om45e966vxAfAPjItI4.jpg\",\"https://framerusercontent.com/modules/Um8I3kHRI8Udm7NqFgpw/BdEjUsACzDxnWm5GYBxF/rYRjV94pE.js\").href} 1024w, ${new URL(\"assets/2048/pVd3JlT7Om45e966vxAfAPjItI4.jpg\",\"https://framerusercontent.com/modules/Um8I3kHRI8Udm7NqFgpw/BdEjUsACzDxnWm5GYBxF/rYRjV94pE.js\").href} 2048w, ${new URL(\"assets/4096/pVd3JlT7Om45e966vxAfAPjItI4.jpg\",\"https://framerusercontent.com/modules/Um8I3kHRI8Udm7NqFgpw/BdEjUsACzDxnWm5GYBxF/rYRjV94pE.js\").href} 4096w, ${new URL(\"assets/pVd3JlT7Om45e966vxAfAPjItI4.jpg\",\"https://framerusercontent.com/modules/Um8I3kHRI8Udm7NqFgpw/BdEjUsACzDxnWm5GYBxF/rYRjV94pE.js\").href} 6000w`},className:\"framer-123u191\",\"data-framer-name\":\"Image\",name:\"Image\"})})]})]})}),/*#__PURE__*/ _jsxs(\"div\",{className:\"framer-5r8ow0\",\"data-framer-name\":\"FAQ\",name:\"FAQ\",children:[/*#__PURE__*/ _jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{l3h4drrNx:{children:/*#__PURE__*/ _jsx(React.Fragment,{children:/*#__PURE__*/ _jsx(\"h2\",{style:{\"--font-selector\":\"R0Y7U291cmNlIFNhbnMgMy03MDA=\",\"--framer-font-family\":'\"Source Sans 3\", \"Source Sans 3 Placeholder\", sans-serif',\"--framer-font-size\":\"40px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-2.1px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(43, 60, 77)\"},children:\"Perguntas Frequentes (FAQ)\"})})},pMXk9bHeP:{children:/*#__PURE__*/ _jsx(React.Fragment,{children:/*#__PURE__*/ _jsx(\"h2\",{style:{\"--font-selector\":\"R0Y7U291cmNlIFNhbnMgMy03MDA=\",\"--framer-font-family\":'\"Source Sans 3\", \"Source Sans 3 Placeholder\", sans-serif',\"--framer-font-size\":\"32px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-2.1px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(43, 60, 77)\"},children:\"Perguntas Frequentes (FAQ)\"})})}},children:/*#__PURE__*/ _jsx(RichTextWithFX,{__framer__animate:{transition:transition3},__framer__animateOnce:true,__framer__enter:animation5,__framer__exit:animation6,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/ _jsx(React.Fragment,{children:/*#__PURE__*/ _jsx(\"h2\",{style:{\"--font-selector\":\"R0Y7U291cmNlIFNhbnMgMy03MDA=\",\"--framer-font-family\":'\"Source Sans 3\", \"Source Sans 3 Placeholder\", sans-serif',\"--framer-font-size\":\"50px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-2.1px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(43, 60, 77)\"},children:\"Perguntas Frequentes (FAQ)\"})}),className:\"framer-1v4ipun\",fonts:[\"GF;Source Sans 3-700\"],transformTemplate:transformTemplate,verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/ _jsx(\"div\",{className:\"framer-2lvy33\",\"data-framer-name\":\"Column\",name:\"Column\",children:/*#__PURE__*/ _jsx(ContainerWithFX,{__framer__animate:{transition:transition4},__framer__animateOnce:true,__framer__enter:animation5,__framer__exit:animation7,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-s4fw9k-container\",transformTemplate:transformTemplate,children:/*#__PURE__*/ _jsx(AccordionCopy,{height:\"100%\",id:\"dZ9OXSNyQ\",layoutId:\"dZ9OXSNyQ\",style:{width:\"100%\"},width:\"100%\"})})})]}),/*#__PURE__*/ _jsx(\"div\",{className:\"framer-q1z8g6\",\"data-framer-name\":\"Pivot\",name:\"Pivot\",children:/*#__PURE__*/ _jsxs(\"div\",{className:\"framer-1d87jf6\",\"data-framer-name\":\"Wrapper\",name:\"Wrapper\",children:[/*#__PURE__*/ _jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{l3h4drrNx:{children:/*#__PURE__*/ _jsx(React.Fragment,{children:/*#__PURE__*/ _jsx(\"h2\",{style:{\"--font-selector\":\"R0Y7U291cmNlIFNhbnMgMy03MDA=\",\"--framer-font-family\":'\"Source Sans 3\", \"Source Sans 3 Placeholder\", sans-serif',\"--framer-font-size\":\"40px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-2.1px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(43, 60, 77)\"},children:\"Tudo pronto para evoluir o seu financeiro?\"})})},pMXk9bHeP:{children:/*#__PURE__*/ _jsx(React.Fragment,{children:/*#__PURE__*/ _jsx(\"h2\",{style:{\"--font-selector\":\"R0Y7U291cmNlIFNhbnMgMy03MDA=\",\"--framer-font-family\":'\"Source Sans 3\", \"Source Sans 3 Placeholder\", sans-serif',\"--framer-font-size\":\"32px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-2.1px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(43, 60, 77)\"},children:\"Tudo pronto para evoluir o seu financeiro?\"})})}},children:/*#__PURE__*/ _jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/ _jsx(React.Fragment,{children:/*#__PURE__*/ _jsx(\"h2\",{style:{\"--font-selector\":\"R0Y7U291cmNlIFNhbnMgMy03MDA=\",\"--framer-font-family\":'\"Source Sans 3\", \"Source Sans 3 Placeholder\", sans-serif',\"--framer-font-size\":\"50px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-2.1px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(43, 60, 77)\"},children:\"Tudo pronto para evoluir o seu financeiro?\"})}),className:\"framer-4inxn7\",fonts:[\"GF;Source Sans 3-700\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/ _jsx(\"div\",{className:\"framer-12bbshq\",\"data-framer-name\":\"Buttons\",name:\"Buttons\",children:/*#__PURE__*/ _jsx(Link,{href:{webPageId:\"zeBgcl3LE\"},children:/*#__PURE__*/ _jsx(\"a\",{className:\"framer-1qfc6bp framer-ants2n\",\"data-framer-name\":\"Button\",\"data-reset\":\"button\",name:\"Button\",children:/*#__PURE__*/ _jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/ _jsx(React.Fragment,{children:/*#__PURE__*/ _jsx(\"p\",{style:{\"--font-selector\":\"R0Y7U291cmNlIFNhbnMgMy02MDA=\",\"--framer-font-family\":'\"Source Sans 3\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"600\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Entre em contato\"})}),className:\"framer-uz4mty\",fonts:[\"GF;Source Sans 3-600\"],verticalAlignment:\"top\",withExternalLayout:true})})})})]})}),/*#__PURE__*/ _jsx(Container,{className:\"framer-13ayygy-container\",children:/*#__PURE__*/ _jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{l3h4drrNx:{variant:\"PBbFqmVz1\"},pMXk9bHeP:{variant:\"EWTOdEBuL\"}},children:/*#__PURE__*/ _jsx(FooterDark,{height:\"100%\",id:\"ilTVo0GJ5\",layoutId:\"ilTVo0GJ5\",style:{width:\"100%\"},variant:\"TTtY9H1NM\",width:\"100%\"})})})]}),/*#__PURE__*/ _jsx(\"div\",{id:\"overlay\"})]})})});});const css=['.framer-3V1si [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; }',\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",`.${metadata.bodyClassName} { background: white; }`,\".framer-3V1si .framer-ants2n { display: block; }\",\".framer-3V1si .framer-u8orky { align-content: center; align-items: center; background-color: #ffffff; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px 0px 0px 0px; position: relative; width: 1200px; }\",\".framer-3V1si .framer-18ysv9d-container, .framer-3V1si .framer-13ayygy-container { flex: none; height: auto; position: relative; width: 100%; }\",\".framer-3V1si .framer-1o2163a { align-content: center; align-items: center; background-color: #ffffff; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 27px 50px 27px 50px; position: relative; width: 1200px; }\",\".framer-3V1si .framer-uqskqs { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; --framer-paragraph-spacing: 0px; flex: none; height: auto; max-width: 100%; position: relative; transform: perspective(1200px); white-space: pre-wrap; width: auto; word-break: break-word; word-wrap: break-word; }\",\".framer-3V1si .framer-zthrby { --border-bottom-width: 1px; --border-color: #222222; --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; align-content: center; align-items: center; background-color: #314356; border-bottom-left-radius: 50px; border-bottom-right-radius: 50px; border-top-left-radius: 50px; border-top-right-radius: 50px; cursor: pointer; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: 425px; justify-content: center; overflow: hidden; padding: 0px 0px 0px 0px; position: relative; width: 770px; will-change: var(--framer-will-change-override, transform); }\",\".framer-3V1si .framer-1u3q65p { background-color: rgba(0, 0, 0, 0.8); inset: 0px; position: fixed; user-select: none; }\",\".framer-3V1si .framer-dvjb5k-container { flex: none; height: 411px; position: relative; width: 100%; }\",\".framer-3V1si .framer-htvrs0 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; min-height: 134px; overflow: visible; padding: 0px 0px 0px 0px; position: relative; transform: perspective(1200px); width: 582px; }\",\".framer-3V1si .framer-1jcksgm { --framer-paragraph-spacing: 0px; flex: none; height: auto; left: 0px; max-width: 100%; overflow: visible; position: absolute; right: 0px; top: 12px; white-space: pre-wrap; word-break: break-word; word-wrap: break-word; z-index: 1; }\",\".framer-3V1si .framer-pqpcoi { align-content: center; align-items: center; background-color: #c30073; border-bottom-left-radius: 8px; border-bottom-right-radius: 8px; border-top-left-radius: 8px; border-top-right-radius: 8px; bottom: 0px; box-shadow: 0px 0.7065919983928324px 0.7065919983928324px -0.625px rgba(0, 0, 0, 0.15), 0px 1.8065619053231785px 1.8065619053231785px -1.25px rgba(0, 0, 0, 0.14398), 0px 3.6217592146567767px 3.6217592146567767px -1.875px rgba(0, 0, 0, 0.13793), 0px 6.8655999097303715px 6.8655999097303715px -2.5px rgba(0, 0, 0, 0.12711), 0px 13.646761411524492px 13.646761411524492px -3.125px rgba(0, 0, 0, 0.10451), 0px 30px 30px -3.75px rgba(0, 0, 0, 0.05); display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 36px; justify-content: center; left: 50%; overflow: visible; padding: 15px 15px 15px 15px; position: absolute; text-decoration: none; transform: translateX(-50%); width: min-content; z-index: 1; }\",\".framer-3V1si .framer-14vpw9s { --framer-paragraph-spacing: 0px; flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-3V1si .framer-1ugelk9 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 60px; height: min-content; justify-content: center; overflow: hidden; padding: 32px 40px 100px 40px; position: relative; width: 100%; }\",\".framer-3V1si .framer-ppwqww { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; --framer-paragraph-spacing: 0px; flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-3V1si .framer-1vtypr9-container { flex: none; height: 129px; position: relative; width: 1190px; }\",\".framer-3V1si .framer-1ga6tu7, .framer-3V1si .framer-16npyvx, .framer-3V1si .framer-1tnfb40, .framer-3V1si .framer-13ooiyn, .framer-3V1si .framer-14ebzs1, .framer-3V1si .framer-1ovi17z, .framer-3V1si .framer-1vukcmf, .framer-3V1si .framer-13sktop, .framer-3V1si .framer-m4alaw { aspect-ratio: 1.6444444444444444 / 1; height: var(--framer-aspect-ratio-supported, 90px); overflow: visible; position: relative; width: 148px; }\",\".framer-3V1si .framer-19oelaa { aspect-ratio: 1.6629213483146068 / 1; height: var(--framer-aspect-ratio-supported, 89px); overflow: visible; position: relative; width: 148px; }\",\".framer-3V1si .framer-y0p3q4 { align-content: center; align-items: center; background-color: var(--token-a2c1de50-3936-46f1-ac5b-fc1faabf1f99, #f7f7f7); display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 5px; height: min-content; justify-content: center; overflow: hidden; padding: 100px 0px 100px 0px; position: relative; width: 100%; }\",\".framer-3V1si .framer-ipsej5 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: center; max-width: 100%; overflow: visible; padding: 0px 0px 0px 0px; position: relative; width: 1000px; }\",\".framer-3V1si .framer-ioctme, .framer-3V1si .framer-pd7sfg { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 50px; height: min-content; justify-content: center; overflow: visible; padding: 0px 0px 0px 0px; position: relative; transform: perspective(1200px); width: 100%; }\",\".framer-3V1si .framer-1j4kyz6 { aspect-ratio: 1.3333333333333333 / 1; border-bottom-left-radius: 20px; border-bottom-right-radius: 20px; border-top-left-radius: 20px; border-top-right-radius: 20px; flex: 1 0 0px; height: var(--framer-aspect-ratio-supported, 356px); overflow: hidden; position: relative; width: 1px; will-change: var(--framer-will-change-override, transform); }\",\".framer-3V1si .framer-bhfbca, .framer-3V1si .framer-18vzux { align-content: flex-start; align-items: flex-start; align-self: stretch; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: auto; justify-content: center; padding: 0px 0px 0px 0px; position: relative; width: 1px; }\",\".framer-3V1si .framer-1bod61f, .framer-3V1si .framer-q9le21, .framer-3V1si .framer-uz4mty { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; --framer-paragraph-spacing: 0px; flex: none; height: auto; overflow: visible; position: relative; white-space: pre; width: auto; }\",\".framer-3V1si .framer-143sitw, .framer-3V1si .framer-1mw0b0c { --framer-paragraph-spacing: 0px; flex: none; height: auto; overflow: visible; position: relative; white-space: pre-wrap; width: 335px; word-break: break-word; word-wrap: break-word; }\",\".framer-3V1si .framer-iprgde, .framer-3V1si .framer-c8a9x7 { align-content: center; align-items: center; background-color: #c30073; border-bottom-left-radius: 8px; border-bottom-right-radius: 8px; border-top-left-radius: 8px; border-top-right-radius: 8px; box-shadow: 0px 0.7065919983928324px 0.7065919983928324px -0.625px rgba(0, 0, 0, 0.18), 0px 1.8065619053231785px 1.8065619053231785px -1.25px rgba(0, 0, 0, 0.17997), 0px 3.6217592146567767px 3.6217592146567767px -1.875px rgba(0, 0, 0, 0.17241), 0px 6.8655999097303715px 6.8655999097303715px -2.5px rgba(0, 0, 0, 0.15889), 0px 13.646761411524492px 13.646761411524492px -3.125px rgba(0, 0, 0, 0.13064), 0px 30px 30px -3.75px rgba(0, 0, 0, 0.0625); display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 40px; justify-content: center; overflow: visible; padding: 15px 15px 15px 15px; position: relative; text-decoration: none; width: min-content; }\",\".framer-3V1si .framer-1c6k3mt, .framer-3V1si .framer-17pp7od { --framer-paragraph-spacing: 0px; flex: none; height: auto; overflow: visible; position: relative; white-space: pre; width: auto; }\",\".framer-3V1si .framer-123u191 { aspect-ratio: 1.3333333333333333 / 1; border-bottom-left-radius: 20px; border-bottom-right-radius: 20px; border-top-left-radius: 20px; border-top-right-radius: 20px; flex: 1 0 0px; height: var(--framer-aspect-ratio-supported, 357px); overflow: hidden; position: relative; width: 1px; will-change: var(--framer-will-change-override, transform); }\",\".framer-3V1si .framer-5r8ow0 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 60px; height: min-content; justify-content: center; overflow: hidden; padding: 100px 40px 100px 40px; position: relative; width: 100%; }\",\".framer-3V1si .framer-1v4ipun { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; --framer-paragraph-spacing: 0px; flex: none; height: auto; overflow: visible; position: relative; transform: perspective(1200px); white-space: pre; width: auto; }\",\".framer-3V1si .framer-2lvy33 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; max-width: 100%; overflow: visible; padding: 0px 0px 0px 0px; position: relative; width: 1000px; }\",\".framer-3V1si .framer-s4fw9k-container { flex: 1 0 0px; height: auto; position: relative; transform: perspective(1200px); width: 1px; }\",\".framer-3V1si .framer-q1z8g6 { align-content: center; align-items: center; background-color: var(--token-a2c1de50-3936-46f1-ac5b-fc1faabf1f99, #f8f8f8); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: visible; padding: 100px 40px 100px 40px; position: relative; width: 100%; }\",\".framer-3V1si .framer-1d87jf6 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 30px; height: min-content; justify-content: center; max-width: 100%; overflow: visible; padding: 0px 0px 0px 0px; position: relative; width: 1000px; }\",\".framer-3V1si .framer-4inxn7 { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; --framer-paragraph-spacing: 0px; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-3V1si .framer-12bbshq { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; overflow: visible; padding: 0px 0px 0px 0px; position: relative; width: min-content; }\",\".framer-3V1si .framer-1qfc6bp { align-content: center; align-items: center; background-color: #c30073; border-bottom-left-radius: 8px; border-bottom-right-radius: 8px; border-top-left-radius: 8px; border-top-right-radius: 8px; box-shadow: 0px 0.7065919983928324px 0.7065919983928324px -0.625px rgba(0, 0, 0, 0.15), 0px 1.8065619053231785px 1.8065619053231785px -1.25px rgba(0, 0, 0, 0.14398), 0px 3.6217592146567767px 3.6217592146567767px -1.875px rgba(0, 0, 0, 0.13793), 0px 6.8655999097303715px 6.8655999097303715px -2.5px rgba(0, 0, 0, 0.12711), 0px 13.646761411524492px 13.646761411524492px -3.125px rgba(0, 0, 0, 0.10451), 0px 30px 30px -3.75px rgba(0, 0, 0, 0.05); display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 40px; justify-content: center; overflow: visible; padding: 15px 15px 15px 15px; position: relative; text-decoration: none; width: min-content; }\",\"@supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-3V1si .framer-u8orky, .framer-3V1si .framer-1o2163a, .framer-3V1si .framer-zthrby, .framer-3V1si .framer-htvrs0, .framer-3V1si .framer-pqpcoi, .framer-3V1si .framer-1ugelk9, .framer-3V1si .framer-y0p3q4, .framer-3V1si .framer-ipsej5, .framer-3V1si .framer-ioctme, .framer-3V1si .framer-bhfbca, .framer-3V1si .framer-iprgde, .framer-3V1si .framer-pd7sfg, .framer-3V1si .framer-18vzux, .framer-3V1si .framer-c8a9x7, .framer-3V1si .framer-5r8ow0, .framer-3V1si .framer-2lvy33, .framer-3V1si .framer-q1z8g6, .framer-3V1si .framer-1d87jf6, .framer-3V1si .framer-12bbshq, .framer-3V1si .framer-1qfc6bp { gap: 0px; } .framer-3V1si .framer-u8orky > *, .framer-3V1si .framer-1o2163a > *, .framer-3V1si .framer-q1z8g6 > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-3V1si .framer-u8orky > :first-child, .framer-3V1si .framer-1o2163a > :first-child, .framer-3V1si .framer-zthrby > :first-child, .framer-3V1si .framer-htvrs0 > :first-child, .framer-3V1si .framer-1ugelk9 > :first-child, .framer-3V1si .framer-ipsej5 > :first-child, .framer-3V1si .framer-bhfbca > :first-child, .framer-3V1si .framer-18vzux > :first-child, .framer-3V1si .framer-5r8ow0 > :first-child, .framer-3V1si .framer-q1z8g6 > :first-child, .framer-3V1si .framer-1d87jf6 > :first-child { margin-top: 0px; } .framer-3V1si .framer-u8orky > :last-child, .framer-3V1si .framer-1o2163a > :last-child, .framer-3V1si .framer-zthrby > :last-child, .framer-3V1si .framer-htvrs0 > :last-child, .framer-3V1si .framer-1ugelk9 > :last-child, .framer-3V1si .framer-ipsej5 > :last-child, .framer-3V1si .framer-bhfbca > :last-child, .framer-3V1si .framer-18vzux > :last-child, .framer-3V1si .framer-5r8ow0 > :last-child, .framer-3V1si .framer-q1z8g6 > :last-child, .framer-3V1si .framer-1d87jf6 > :last-child { margin-bottom: 0px; } .framer-3V1si .framer-zthrby > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-3V1si .framer-htvrs0 > *, .framer-3V1si .framer-bhfbca > *, .framer-3V1si .framer-18vzux > * { margin: 0px; margin-bottom: calc(20px / 2); margin-top: calc(20px / 2); } .framer-3V1si .framer-pqpcoi > *, .framer-3V1si .framer-iprgde > *, .framer-3V1si .framer-c8a9x7 > *, .framer-3V1si .framer-2lvy33 > *, .framer-3V1si .framer-1qfc6bp > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-3V1si .framer-pqpcoi > :first-child, .framer-3V1si .framer-y0p3q4 > :first-child, .framer-3V1si .framer-ioctme > :first-child, .framer-3V1si .framer-iprgde > :first-child, .framer-3V1si .framer-pd7sfg > :first-child, .framer-3V1si .framer-c8a9x7 > :first-child, .framer-3V1si .framer-2lvy33 > :first-child, .framer-3V1si .framer-12bbshq > :first-child, .framer-3V1si .framer-1qfc6bp > :first-child { margin-left: 0px; } .framer-3V1si .framer-pqpcoi > :last-child, .framer-3V1si .framer-y0p3q4 > :last-child, .framer-3V1si .framer-ioctme > :last-child, .framer-3V1si .framer-iprgde > :last-child, .framer-3V1si .framer-pd7sfg > :last-child, .framer-3V1si .framer-c8a9x7 > :last-child, .framer-3V1si .framer-2lvy33 > :last-child, .framer-3V1si .framer-12bbshq > :last-child, .framer-3V1si .framer-1qfc6bp > :last-child { margin-right: 0px; } .framer-3V1si .framer-1ugelk9 > *, .framer-3V1si .framer-5r8ow0 > * { margin: 0px; margin-bottom: calc(60px / 2); margin-top: calc(60px / 2); } .framer-3V1si .framer-y0p3q4 > * { margin: 0px; margin-left: calc(5px / 2); margin-right: calc(5px / 2); } .framer-3V1si .framer-ipsej5 > * { margin: 0px; margin-bottom: calc(40px / 2); margin-top: calc(40px / 2); } .framer-3V1si .framer-ioctme > *, .framer-3V1si .framer-pd7sfg > * { margin: 0px; margin-left: calc(50px / 2); margin-right: calc(50px / 2); } .framer-3V1si .framer-1d87jf6 > * { margin: 0px; margin-bottom: calc(30px / 2); margin-top: calc(30px / 2); } .framer-3V1si .framer-12bbshq > * { margin: 0px; margin-left: calc(20px / 2); margin-right: calc(20px / 2); } }\",\"@media (min-width: 1200px) { .framer-3V1si .hidden-u8orky { display: none !important; } }\",`@media (min-width: 810px) and (max-width: 1199px) { .framer-3V1si .hidden-foo019 { display: none !important; } .${metadata.bodyClassName} { background: white; } .framer-3V1si .framer-u8orky { width: 810px; } .framer-3V1si .framer-1o2163a { width: min-content; } .framer-3V1si .framer-htvrs0 { width: 342px; } .framer-3V1si .framer-pqpcoi { bottom: -18px; left: 47%; } .framer-3V1si .framer-1ugelk9, .framer-3V1si .framer-5r8ow0 { padding: 80px 40px 80px 40px; } .framer-3V1si .framer-y0p3q4 { padding: 100px 50px 100px 50px; } .framer-3V1si .framer-1j4kyz6, .framer-3V1si .framer-123u191 { height: var(--framer-aspect-ratio-supported, 248px); }}`,`@media (max-width: 809px) { .framer-3V1si .hidden-uiyjoi { display: none !important; } .${metadata.bodyClassName} { background: white; } .framer-3V1si .framer-u8orky { width: 390px; } .framer-3V1si .framer-1o2163a { width: min-content; } .framer-3V1si .framer-htvrs0 { width: 298px; } .framer-3V1si .framer-1jcksgm { order: 0; } .framer-3V1si .framer-pqpcoi { bottom: -12px; order: 1; } .framer-3V1si .framer-1ugelk9, .framer-3V1si .framer-5r8ow0 { padding: 60px 20px 60px 20px; } .framer-3V1si .framer-1vtypr9-container { width: 393px; } .framer-3V1si .framer-y0p3q4 { flex-direction: column; padding: 60px 30px 60px 30px; } .framer-3V1si .framer-ioctme, .framer-3V1si .framer-pd7sfg { flex-direction: column; } .framer-3V1si .framer-1j4kyz6 { flex: none; height: var(--framer-aspect-ratio-supported, 248px); width: 100%; } .framer-3V1si .framer-bhfbca { align-self: unset; flex: none; height: 173px; width: 100%; } .framer-3V1si .framer-18vzux { align-self: unset; flex: none; height: 173px; order: 1; width: 100%; } .framer-3V1si .framer-123u191 { flex: none; height: var(--framer-aspect-ratio-supported, 248px); order: 0; width: 100%; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-3V1si .framer-y0p3q4, .framer-3V1si .framer-ioctme, .framer-3V1si .framer-pd7sfg { gap: 0px; } .framer-3V1si .framer-y0p3q4 > * { margin: 0px; margin-bottom: calc(5px / 2); margin-top: calc(5px / 2); } .framer-3V1si .framer-y0p3q4 > :first-child, .framer-3V1si .framer-ioctme > :first-child, .framer-3V1si .framer-pd7sfg > :first-child { margin-top: 0px; } .framer-3V1si .framer-y0p3q4 > :last-child, .framer-3V1si .framer-ioctme > :last-child, .framer-3V1si .framer-pd7sfg > :last-child { margin-bottom: 0px; } .framer-3V1si .framer-ioctme > *, .framer-3V1si .framer-pd7sfg > * { margin: 0px; margin-bottom: calc(50px / 2); margin-top: calc(50px / 2); } }}`];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 3418\n * @framerIntrinsicWidth 1200\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"l3h4drrNx\":{\"layout\":[\"fixed\",\"auto\"]},\"pMXk9bHeP\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables false\n * @framerResponsiveScreen\n */ const FramerrYRjV94pE=withCSS(Component,css,\"framer-3V1si\");export default FramerrYRjV94pE;FramerrYRjV94pE.displayName=\"Home\";FramerrYRjV94pE.defaultProps={height:3418,width:1200};addFonts(FramerrYRjV94pE,[{family:\"Source Sans 3\",moduleAsset:{localModuleIdentifier:\"local-module:screen/rYRjV94pE:default\",url:\"https://fonts.gstatic.com/s/sourcesans3/v10/nwpBtKy2OAdR1K-IwhWudF-R9QMylBJAV3Bo8Kxf7FEN_io6npfB.ttf\"},style:\"normal\",url:\"https://fonts.gstatic.com/s/sourcesans3/v10/nwpBtKy2OAdR1K-IwhWudF-R9QMylBJAV3Bo8Kxf7FEN_io6npfB.ttf\",weight:\"700\"},{family:\"Source Sans 3\",moduleAsset:{localModuleIdentifier:\"local-module:screen/rYRjV94pE:default\",url:\"https://fonts.gstatic.com/s/sourcesans3/v10/nwpBtKy2OAdR1K-IwhWudF-R9QMylBJAV3Bo8KyK61EN_io6npfB.ttf\"},style:\"normal\",url:\"https://fonts.gstatic.com/s/sourcesans3/v10/nwpBtKy2OAdR1K-IwhWudF-R9QMylBJAV3Bo8KyK61EN_io6npfB.ttf\",weight:\"500\"},{family:\"Source Sans 3\",moduleAsset:{localModuleIdentifier:\"local-module:screen/rYRjV94pE:default\",url:\"https://fonts.gstatic.com/s/sourcesans3/v10/nwpBtKy2OAdR1K-IwhWudF-R9QMylBJAV3Bo8Kxm7FEN_io6npfB.ttf\"},style:\"normal\",url:\"https://fonts.gstatic.com/s/sourcesans3/v10/nwpBtKy2OAdR1K-IwhWudF-R9QMylBJAV3Bo8Kxm7FEN_io6npfB.ttf\",weight:\"600\"},...NavbarLogoLightCopyFonts,...VideoFonts,...TickerFonts,...AccordionCopyFonts,...FooterDarkFonts]);\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerrYRjV94pE\",\"slots\":[],\"annotations\":{\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"l3h4drrNx\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"pMXk9bHeP\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerIntrinsicHeight\":\"3418\",\"framerContractVersion\":\"1\",\"framerIntrinsicWidth\":\"1200\",\"framerImmutableVariables\":\"false\",\"framerResponsiveScreen\":\"\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}"],
  "mappings": "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",
  "names": ["ObjectFitType", "SrcType", "getProps", "props", "width", "height", "topLeft", "topRight", "bottomRight", "bottomLeft", "id", "children", "rest", "Video", "newProps", "p", "VideoMemo", "usePlaybackControls", "videoRef", "isInCurrentNavigationTarget", "useIsInCurrentNavigationTarget", "requestingPlay", "pe", "setProgress", "te", "rawProgress", "newProgress", "isAlreadySet", "play", "e", "pause", "useAutoplayBehavior", "playingProp", "muted", "loop", "playsinline", "controls", "initialPlayingProp", "ye", "hasPlayingPropChanged", "setHasPlayingPropChanged", "behavesAsGif", "autoplay", "isMountedAndReadyForProgressChanges", "X", "srcType", "srcFile", "srcUrl", "progress", "objectFit", "backgroundColor", "onSeeked", "onPause", "onPlay", "onEnd", "onClick", "onMouseEnter", "onMouseLeave", "onMouseDown", "onMouseUp", "poster", "posterEnabled", "startTimeProp", "volume", "isSafari", "useIsBrowserSafari", "wasPausedOnLeave", "wasEndedOnLeave", "isOnCanvas", "useIsOnCanvas", "borderRadius", "useRadius", "autoplayBehavior", "isInViewport", "useInView", "startTime", "ue", "rawProgressValue", "isMotionValue", "value", "useOnEnter", "useOnExit", "src", "se", "fragment", "groupsRegex", "capitalizeFirstLetter", "titleCase", "objectFitOptions", "addPropertyControls", "ControlType", "borderRadiusControl", "defaultEvents", "cycleOrder", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transitions", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "humanReadableVariantMap", "getProps", "answer", "height", "id", "question", "width", "props", "ref", "_variant", "ref1", "ref2", "createLayoutDependency", "Component", "Y", "activeLocale", "useLocaleInfo", "style", "className", "layoutId", "W88zB8mIG", "T8rQFvSBR", "restProps", "baseVariant", "classNames", "gestureVariant", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onTap6y2a9i", "args", "onTap1sr594e", "defaultLayoutId", "ae", "LayoutGroup", "motion", "cx", "u", "RichText2", "x", "css", "FramerQQ7zlK4im", "withCSS", "QQ7zlK4im_default", "addPropertyControls", "ControlType", "addFonts", "RowFonts", "getFonts", "QQ7zlK4im_default", "cycleOrder", "variantClassNames", "transitions", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "getProps", "height", "id", "width", "props", "createLayoutDependency", "variants", "Component", "Y", "ref", "activeLocale", "useLocaleInfo", "style", "className", "layoutId", "variant", "restProps", "baseVariant", "classNames", "gestureVariant", "setGestureState", "setVariant", "useVariantState", "cycleOrder", "variantClassNames", "layoutDependency", "defaultLayoutId", "ae", "LayoutGroup", "motion", "cx", "u", "QQ7zlK4im_default", "css", "FramerUC2nwIhUB", "withCSS", "UC2nwIhUB_default", "addFonts", "RowFonts", "NavbarLogoLightCopyFonts", "getFonts", "kSpRP5C6Q_default", "VideoFonts", "Video", "TickerFonts", "Ticker", "MotionDivWithFX", "withFX", "motion", "RichTextWithFX", "RichText2", "AccordionCopyFonts", "UC2nwIhUB_default", "ContainerWithFX", "Container", "FooterDarkFonts", "S8Auv9Pv5_default", "breakpoints", "isBrowser", "variantClassNames", "transitions", "Overlay", "children", "blockDocumentScrolling", "visible", "setVisible", "useOverlayState", "transition1", "animation", "transformTemplate", "_", "t", "animation1", "animation2", "transition2", "animation3", "animation4", "animation5", "transition3", "animation6", "transition4", "animation7", "metadata", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "_variant", "ref", "Component", "Y", "activeLocale", "useLocaleInfo", "style", "className", "layoutId", "variant", "restProps", "fe", "metadata1", "c", "baseVariant", "hydratedBaseVariant", "useHydratedBreakpointVariants", "gestureVariant", "transition", "activeVariantCallback", "delay", "useActiveVariantCallback", "onTap42m929", "overlay", "args", "isDisplayed", "defaultLayoutId", "ae", "p", "GeneratedComponentContext", "LayoutGroup", "u", "motion", "cx", "Container", "PropertyOverrides2", "kSpRP5C6Q_default", "optimizeAppear", "optimizeAppearTransformTemplate", "x", "RichText2", "overlay1u3q65p", "l", "AnimatePresence", "Ga", "Video", "Link", "Ticker", "Image2", "MotionDivWithFX", "RichTextWithFX", "ContainerWithFX", "UC2nwIhUB_default", "S8Auv9Pv5_default", "css", "FramerrYRjV94pE", "withCSS", "rYRjV94pE_default", "addFonts", "NavbarLogoLightCopyFonts", "VideoFonts", "TickerFonts", "AccordionCopyFonts", "FooterDarkFonts", "__FramerMetadata__"]
}
