{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/lRDHiNWNVWmE0lqtoVHP/Z4QJ2YpzpVnWRfR6Ccgg/Video.js", "ssg:https://framerusercontent.com/modules/n9tiuyrNHtJUPB82VpiT/LCsT7A3V5TlqlrO5hjBp/TBSVif928.js"],
  "sourcesContent": ["import{jsx as _jsx}from\"react/jsx-runtime\";import{addPropertyControls,ControlType,useIsInCurrentNavigationTarget}from\"framer\";import{isMotionValue,useInView}from\"framer-motion\";import{borderRadiusControl,defaultEvents,useIsBrowserSafari,useIsOnCanvas,useOnEnter,useOnExit,useRadius}from\"https://framer.com/m/framer/default-utils.js@^0.45.0\";import{memo,useCallback,useEffect,useMemo,useRef,useState}from\"react\";var ObjectFitType;(function(ObjectFitType){ObjectFitType[\"Fill\"]=\"fill\";ObjectFitType[\"Contain\"]=\"contain\";ObjectFitType[\"Cover\"]=\"cover\";ObjectFitType[\"None\"]=\"none\";ObjectFitType[\"ScaleDown\"]=\"scale-down\";})(ObjectFitType||(ObjectFitType={}));var SrcType;(function(SrcType){SrcType[\"Video\"]=\"Upload\";SrcType[\"Url\"]=\"URL\";})(SrcType||(SrcType={}));// Reduce renders\nfunction getProps(props){const{width,height,topLeft,topRight,bottomRight,bottomLeft,id,children,...rest}=props;return rest;}/**\n * VIDEO\n *\n * @framerIntrinsicWidth 200\n * @framerIntrinsicHeight 112\n *\n * @framerSupportedLayoutWidth fixed\n * @framerSupportedLayoutHeight any-prefer-fixed\n */export function Video(props){const newProps=getProps(props);return /*#__PURE__*/_jsx(VideoMemo,{...newProps});}function usePlaybackControls(videoRef){const isInCurrentNavigationTarget=useIsInCurrentNavigationTarget();const requestingPlay=useRef(false);const setProgress=useCallback(rawProgress=>{if(!videoRef.current)return;const newProgress=(rawProgress===1?.999:rawProgress)*videoRef.current.duration;const isAlreadySet=Math.abs(videoRef.current.currentTime-newProgress)<.1;if(videoRef.current.duration>0&&!isAlreadySet){videoRef.current.currentTime=newProgress;}},[]);const play=useCallback(()=>{const isPlaying=videoRef.current.currentTime>0&&videoRef.current.onplaying&&!videoRef.current.paused&&!videoRef.current.ended&&videoRef.current.readyState>videoRef.current.HAVE_CURRENT_DATA;if(!isPlaying&&videoRef.current&&!requestingPlay.current&&isInCurrentNavigationTarget){requestingPlay.current=true;videoRef.current.play().catch(e=>{})// It's likely fine, swallow error\n.finally(()=>requestingPlay.current=false);}},[]);const pause=useCallback(()=>{if(!videoRef.current||requestingPlay.current)return;videoRef.current.pause();},[]);return{play,pause,setProgress};}function useAutoplayBehavior({playingProp,muted,loop,playsinline,controls}){const[initialPlayingProp]=useState(()=>playingProp);const[hasPlayingPropChanged,setHasPlayingPropChanged]=useState(false);if(playingProp!==initialPlayingProp&&!hasPlayingPropChanged){setHasPlayingPropChanged(true);}const behavesAsGif=// passing `playing === true` on mount indicates that the video should\n// autoplay, like a GIF\ninitialPlayingProp&&muted&&loop&&playsinline&&!controls&&// Some users of the <Video> component use it by wrapping it with\n// another smart component and adding their own controls on top. (The\n// controls use transitions to control the video: e.g., when clicking\n// the play button, the smart component will transition to a state with\n// <Video playing={true} />.) In this case, we don't want the video to\n// behave as a gif, as it will be weird if the video suddenly started\n// acting as such (and auto-pausing when leaving the viewport) as soon\n// as the site visitor mutes it and clicks \u201CPlay\u201D.\n!hasPlayingPropChanged;let autoplay;if(behavesAsGif)autoplay=\"on-viewport\";else if(initialPlayingProp)autoplay=\"on-mount\";else autoplay=\"no-autoplay\";return autoplay;}/**\n * The Video component has some effects that sync the video element with props\n * like `startTime`, `progress`, etc. React calls these effects whenever these\n * props change. However, it also calls them on the first mount, and this is\n * troublesome \u2013 if we\u2019re doing SSR, and the user changed the video state before\n * the video was hydrated, the initial `useEffect` call will reset the video\n * state. To avoid this, we use this flag.\n */let isMountedAndReadyForProgressChanges=false;const VideoMemo=/*#__PURE__*/memo(function VideoInner(props){const{srcType,srcFile,srcUrl,playing:playingProp,muted,playsinline,controls,progress,objectFit,backgroundColor,onSeeked,onPause,onPlay,onEnd,onClick,onMouseEnter,onMouseLeave,onMouseDown,onMouseUp,poster,posterEnabled,startTime:startTimeProp,volume,loop}=props;const videoRef=useRef();const isSafari=useIsBrowserSafari();const wasPausedOnLeave=useRef(null);const wasEndedOnLeave=useRef(null);const isOnCanvas=useIsOnCanvas();const borderRadius=useRadius(props);// Hard-coding `autoplayBehavior` and `isInViewport` when on canvas as a\n// tiny perf optimization. isOnCanvas won\u2019t change through the lifecycle of\n// the component, so using these hooks conditionally should be safe\nconst autoplayBehavior=isOnCanvas?\"no-autoplay\":useAutoplayBehavior({playingProp,muted,loop,playsinline,controls});const isInViewport=isOnCanvas?true:useInView(videoRef);// Video elements behave oddly at 100% duration\nconst startTime=startTimeProp===100?99.9:startTimeProp;const{play,pause,setProgress}=usePlaybackControls(videoRef);// Pause/play via props\nuseEffect(()=>{if(isOnCanvas)return;if(playingProp)play();else pause();},[playingProp]);// Pause/play via viewport\nuseEffect(()=>{if(isOnCanvas)return;if(autoplayBehavior!==\"on-viewport\")return;if(isInViewport)play();else pause();},[autoplayBehavior,isInViewport]);// Allow scrubbling via progress prop\n// 1) Handle cases when the progress prop itself changes\nuseEffect(()=>{if(!isMountedAndReadyForProgressChanges){isMountedAndReadyForProgressChanges=true;return;}const rawProgressValue=isMotionValue(progress)?progress.get():(progress!==null&&progress!==void 0?progress:0)*.01;setProgress(// When the progress value exists (e.g. <Video startTime={10}\n// progress={50} />), we respect the `progress` value over\n// `startTime`, even if `startTime` changes. That\u2019s because\n// `startTime` == start == changing it shouldn\u2019t affect the current\n// progress\n(rawProgressValue!==null&&rawProgressValue!==void 0?rawProgressValue:0)||// Then why fall back to `startTime` when `progress` doesn\u2019t exist,\n// you might ask? Now, that\u2019s for\n// - canvas UX: we want the video progress to change when the user\n//   is scrobbling the \u201CStart Time\u201D in component settings.\n// - backwards compatibility: maybe some users *are* scrobbling\n//   using `startTime` instead of `progress`? We don\u2019t know, and it\n//   always supported it, so let\u2019s not break it\n(startTime!==null&&startTime!==void 0?startTime:0)/100);},[startTime,srcFile,srcUrl,progress]);// 2) Handle cases when the motion value inside the progress prop changes\nuseEffect(()=>{if(!isMotionValue(progress))return;return progress.on(\"change\",value=>setProgress(value));},[progress]);// (Prototyping) Checking if we need to play on navigation enter\nuseOnEnter(()=>{if(wasPausedOnLeave.current===null)return;if(videoRef.current){// if (restartOnEnter) setProgress(0)\nif(!wasEndedOnLeave&&loop||!wasPausedOnLeave.current)play();}});// (Prototyping) Pausing & saving playing state on navigation exit\nuseOnExit(()=>{if(videoRef.current){wasEndedOnLeave.current=videoRef.current.ended;wasPausedOnLeave.current=videoRef.current.paused;pause();}});const src=useMemo(()=>{let fragment=\"\";// if (\n//     startTime > 0 &&\n//     videoRef.current &&\n//     !isNaN(videoRef.current.duration) &&\n//     !isOnCanvas\n// ) {\n//     console.log(startTime, videoRef.current.duration)\n//     fragment = `#t=${startTime * videoRef.current.duration}`\n// }\nif(srcType===\"URL\")return srcUrl+fragment;if(srcType===\"Upload\")return srcFile+fragment;},[srcType,srcFile,srcUrl,startTime]);// Autoplay via JS to work in Safari\nuseEffect(()=>{if(isSafari&&videoRef.current&&autoplayBehavior===\"on-mount\"){setTimeout(()=>play(),50);}},[]);// Volume Control\nuseEffect(()=>{if(videoRef.current&&!muted)videoRef.current.volume=(volume!==null&&volume!==void 0?volume:0)/100;},[volume]);// When video is ready, set start-time, then autoplay if needed\nconst handleReady=()=>{if(!videoRef.current)return;if(videoRef.current.currentTime<.3)setProgress((startTime!==null&&startTime!==void 0?startTime:0)*.01);if(autoplayBehavior===\"on-mount\")play();};return /*#__PURE__*/_jsx(\"video\",{onClick,onMouseEnter,onMouseLeave,onMouseDown,onMouseUp,src:src,loop:loop,ref:videoRef,onSeeked:e=>onSeeked===null||onSeeked===void 0?void 0:onSeeked(e),onPause:e=>onPause===null||onPause===void 0?void 0:onPause(e),onPlay:e=>onPlay===null||onPlay===void 0?void 0:onPlay(e),onEnded:e=>onEnd===null||onEnd===void 0?void 0:onEnd(e),autoPlay:autoplayBehavior===\"on-mount\",preload:autoplayBehavior!==\"on-mount\"&&posterEnabled?\"metadata\":\"auto\",poster:posterEnabled?poster:undefined,onLoadedData:handleReady,controls:controls,muted:isOnCanvas?true:muted,playsInline:playsinline,style:{cursor:!!onClick?\"pointer\":\"auto\",width:\"100%\",height:\"100%\",borderRadius,display:\"block\",objectFit:objectFit,backgroundColor:backgroundColor,objectPosition:\"50% 50%\"}});});Video.displayName=\"Video\";Video.defaultProps={srcType:\"URL\",srcUrl:\"https://assets.mixkit.co/videos/preview/mixkit-shining-sun-in-the-sky-surrounded-by-moving-clouds-31793-small.mp4\",srcFile:\"\",posterEnabled:false,controls:false,playing:true,loop:true,muted:true,playsinline:true,restartOnEnter:false,objectFit:\"cover\",backgroundColor:\"rgba(0,0,0,0)\",radius:0,volume:25,startTime:0};const groupsRegex=/[A-Z]{2,}|[A-Z][a-z]+|[a-z]+|[A-Z]|\\d+/gu;function capitalizeFirstLetter(value){return value.charAt(0).toUpperCase()+value.slice(1);}export function titleCase(value){const groups=value.match(groupsRegex)||[];return groups.map(capitalizeFirstLetter).join(\" \");}const objectFitOptions=[\"cover\",\"fill\",\"contain\",\"scale-down\",\"none\"];addPropertyControls(Video,{srcType:{type:ControlType.Enum,displaySegmentedControl:true,title:\"Source\",options:[\"URL\",\"Upload\"]},srcUrl:{type:ControlType.String,title:\"URL\",placeholder:\"../example.mp4\",hidden(props){return props.srcType===\"Upload\";},description:\"Hosted video file URL. For YouTube, use the YouTube component.\"},srcFile:{type:ControlType.File,title:\"File\",allowedFileTypes:[\"mp4\",\"webm\"],hidden(props){return props.srcType===\"URL\";}},playing:{type:ControlType.Boolean,title:\"Playing\",enabledTitle:\"Yes\",disabledTitle:\"No\"},posterEnabled:{type:ControlType.Boolean,title:\"Poster\",enabledTitle:\"Yes\",disabledTitle:\"No\"},poster:{type:ControlType.Image,title:\" \",hidden:({posterEnabled})=>!posterEnabled},backgroundColor:{type:ControlType.Color,title:\"Background\"},...borderRadiusControl,startTime:{title:\"Start Time\",type:ControlType.Number,min:0,max:100,step:.1,unit:\"%\"},loop:{type:ControlType.Boolean,title:\"Loop\",enabledTitle:\"Yes\",disabledTitle:\"No\"},objectFit:{type:ControlType.Enum,title:\"Fit\",options:objectFitOptions,optionTitles:objectFitOptions.map(titleCase)},// restartOnEnter: {\n//     type: ControlType.Boolean,\n//     title: \"On ReEnter\",\n//     enabledTitle: \"Restart\",\n//     disabledTitle: \"Resume\",\n// },\ncontrols:{type:ControlType.Boolean,title:\"Controls\",enabledTitle:\"Show\",disabledTitle:\"Hide\"},muted:{type:ControlType.Boolean,title:\"Muted\",enabledTitle:\"Yes\",disabledTitle:\"No\"},volume:{type:ControlType.Number,max:100,min:0,unit:\"%\",hidden:({muted})=>muted},onEnd:{type:ControlType.EventHandler},onSeeked:{type:ControlType.EventHandler},onPause:{type:ControlType.EventHandler},onPlay:{type:ControlType.EventHandler},...defaultEvents});\nexport const __FramerMetadata__ = {\"exports\":{\"Video\":{\"type\":\"reactComponent\",\"name\":\"Video\",\"slots\":[],\"annotations\":{\"framerSupportedLayoutHeight\":\"any-prefer-fixed\",\"framerIntrinsicHeight\":\"112\",\"framerSupportedLayoutWidth\":\"fixed\",\"framerContractVersion\":\"1\",\"framerIntrinsicWidth\":\"200\"}},\"VideoProps\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"titleCase\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Video.map", "// Generated by Framer (f030ee3)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,ComponentViewportProvider,Container,cx,GeneratedComponentContext,getFonts,getFontsFromSharedStyle,PropertyOverrides,RichText,useComponentViewport,useCustomCursors,useHydratedBreakpointVariants,useIsOnFramerCanvas,useLocaleInfo,useRouteElementId,withCSS,withOptimizedAppearEffect}from\"framer\";import{LayoutGroup,motion}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import{Icon as Feather}from\"https://framerusercontent.com/modules/f0DboytQenYh21kfme7W/zb1zVBMZJKgPMiedOi0y/Feather.js\";import{Video}from\"https://framerusercontent.com/modules/lRDHiNWNVWmE0lqtoVHP/Z4QJ2YpzpVnWRfR6Ccgg/Video.js\";import TagCase from\"#framer/local/canvasComponent/ac3z3p8yA/ac3z3p8yA.js\";import ButtonPrimary from\"#framer/local/canvasComponent/cqXXMGqP4/cqXXMGqP4.js\";import Footer from\"#framer/local/canvasComponent/ZbPGwiPUR/ZbPGwiPUR.js\";import*as sharedStyle4 from\"#framer/local/css/ID0R3F0UG/ID0R3F0UG.js\";import*as sharedStyle from\"#framer/local/css/jjA7lSTp9/jjA7lSTp9.js\";import*as sharedStyle5 from\"#framer/local/css/LVyoHfmH3/LVyoHfmH3.js\";import*as sharedStyle1 from\"#framer/local/css/P3lB1A334/P3lB1A334.js\";import*as sharedStyle3 from\"#framer/local/css/pQhG1A9Rq/pQhG1A9Rq.js\";import*as sharedStyle2 from\"#framer/local/css/puH8CLAiQ/puH8CLAiQ.js\";import metadataProvider from\"#framer/local/webPageMetadata/TBSVif928/TBSVif928.js\";const ButtonPrimaryFonts=getFonts(ButtonPrimary);const TagCaseFonts=getFonts(TagCase);const MotionDivWithOptimizedAppearEffect=withOptimizedAppearEffect(motion.div);const VideoFonts=getFonts(Video);const FeatherFonts=getFonts(Feather);const FooterFonts=getFonts(Footer);const breakpoints={gWRtpaFPo:\"(max-width: 809px)\",jQYf65Sf_:\"(min-width: 1920px)\",QiNXzyF3w:\"(min-width: 1200px) and (max-width: 1919px)\",Vs4jtUj2j:\"(min-width: 810px) and (max-width: 1199px)\"};const isBrowser=()=>typeof document!==\"undefined\";const serializationHash=\"framer-WlZ9Q\";const variantClassNames={gWRtpaFPo:\"framer-v-yeih83\",jQYf65Sf_:\"framer-v-tiq3ou\",QiNXzyF3w:\"framer-v-1xah5g\",Vs4jtUj2j:\"framer-v-1mghw18\"};const transition1={damping:67,delay:.3,mass:1,stiffness:424,type:\"spring\"};const animation={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition1,x:0,y:0};const animation1={opacity:.001,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:0,y:20};const transition2={damping:67,delay:.7,mass:1,stiffness:424,type:\"spring\"};const animation2={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition2,x:0,y:0};const HTMLStyle=({value})=>{const onCanvas=useIsOnFramerCanvas();if(onCanvas)return null;return /*#__PURE__*/_jsx(\"style\",{dangerouslySetInnerHTML:{__html:value},\"data-framer-html-style\":\"\"});};const humanReadableVariantMap={Desktop:\"QiNXzyF3w\",Large:\"jQYf65Sf_\",Phone:\"gWRtpaFPo\",Tablet:\"Vs4jtUj2j\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"QiNXzyF3w\"};};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const fallbackRef=useRef(null);const refBinding=ref??fallbackRef;const defaultLayoutId=React.useId();const{activeLocale,setLocale}=useLocaleInfo();const componentViewport=useComponentViewport();const{style,className,layoutId,variant,...restProps}=getProps(props);React.useEffect(()=>{const metadata=metadataProvider(undefined,activeLocale);if(metadata.robots){let robotsTag=document.querySelector('meta[name=\"robots\"]');if(robotsTag){robotsTag.setAttribute(\"content\",metadata.robots);}else{robotsTag=document.createElement(\"meta\");robotsTag.setAttribute(\"name\",\"robots\");robotsTag.setAttribute(\"content\",metadata.robots);document.head.appendChild(robotsTag);}}},[undefined,activeLocale]);React.useInsertionEffect(()=>{const metadata=metadataProvider(undefined,activeLocale);document.title=metadata.title||\"\";if(metadata.viewport){document.querySelector('meta[name=\"viewport\"]')?.setAttribute(\"content\",metadata.viewport);}},[undefined,activeLocale]);const[baseVariant,hydratedBaseVariant]=useHydratedBreakpointVariants(variant,breakpoints,false);const gestureVariant=undefined;const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className,sharedStyle2.className,sharedStyle3.className,sharedStyle4.className,sharedStyle5.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const elementId=useRouteElementId(\"QdCzuHeuL\");const ref1=React.useRef(null);const elementId1=useRouteElementId(\"AE4lTcdgO\");const ref2=React.useRef(null);const elementId2=useRouteElementId(\"KBtpWBZfP\");const ref3=React.useRef(null);useCustomCursors({});return /*#__PURE__*/_jsx(GeneratedComponentContext.Provider,{value:{primaryVariantId:\"QiNXzyF3w\",variantClassNames},children:/*#__PURE__*/_jsxs(LayoutGroup,{id:layoutId??defaultLayoutId,children:[/*#__PURE__*/_jsx(HTMLStyle,{value:\"html body { background: rgb(255, 255, 255); }\"}),/*#__PURE__*/_jsxs(motion.div,{...restProps,className:cx(scopingClassNames,\"framer-1xah5g\",className),ref:refBinding,style:{...style},children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-ibvanf\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-b27lct\",\"data-framer-name\":\"header\",id:elementId,ref:ref1,children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-x2d31y\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:40,children:/*#__PURE__*/_jsx(Container,{className:\"framer-d5gvnk-container\",nodeId:\"LLxMqcm3N\",scopeId:\"TBSVif928\",children:/*#__PURE__*/_jsx(ButtonPrimary,{height:\"100%\",id:\"LLxMqcm3N\",layoutId:\"LLxMqcm3N\",variant:\"kKTlEMACS\",width:\"100%\"})})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-mfgpg3\",children:[/*#__PURE__*/_jsxs(MotionDivWithOptimizedAppearEffect,{animate:animation,className:\"framer-1sl0me0\",\"data-framer-appear-id\":\"1sl0me0\",initial:animation1,optimized:true,style:{transformPerspective:1200},children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1uqcj5o\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:26,children:/*#__PURE__*/_jsx(Container,{className:\"framer-14hkouy-container\",nodeId:\"rDdYk5_cI\",scopeId:\"TBSVif928\",children:/*#__PURE__*/_jsx(TagCase,{height:\"100%\",id:\"rDdYk5_cI\",layoutId:\"rDdYk5_cI\",variant:\"sY8hmzj7g\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:26,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1cisbaw-container\",nodeId:\"oEmFOeOdo\",scopeId:\"TBSVif928\",children:/*#__PURE__*/_jsx(TagCase,{height:\"100%\",id:\"oEmFOeOdo\",layoutId:\"oEmFOeOdo\",variant:\"sQBcuNLWU\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:26,children:/*#__PURE__*/_jsx(Container,{className:\"framer-16hwnnu-container\",nodeId:\"BpcImhvzg\",scopeId:\"TBSVif928\",children:/*#__PURE__*/_jsx(TagCase,{height:\"100%\",id:\"BpcImhvzg\",layoutId:\"BpcImhvzg\",variant:\"xJJjrDwG0\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:26,children:/*#__PURE__*/_jsx(Container,{className:\"framer-736owb-container\",nodeId:\"zxmQ5CRro\",scopeId:\"TBSVif928\",children:/*#__PURE__*/_jsx(TagCase,{height:\"100%\",id:\"zxmQ5CRro\",layoutId:\"zxmQ5CRro\",variant:\"G05n2GxjM\",width:\"100%\"})})})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{className:\"framer-styles-preset-1ypau2n\",\"data-styles-preset\":\"jjA7lSTp9\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-11dd6420-645b-422a-97ab-1b4e8e73497c, rgb(255, 255, 255))\"},children:\"Achieving 50%+ of annual revenue goal with design\"})}),className:\"framer-io11rr\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(MotionDivWithOptimizedAppearEffect,{animate:animation2,className:\"framer-wnway8\",\"data-framer-appear-id\":\"wnway8\",\"data-framer-name\":\"achievements\",initial:animation1,optimized:true,style:{transformPerspective:1200},children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-rm2ed0\",\"data-styles-preset\":\"P3lB1A334\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-11dd6420-645b-422a-97ab-1b4e8e73497c, rgb(255, 255, 255))\"},children:\"Project results\"})}),className:\"framer-voah6g\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1rh9q0a\",\"data-framer-name\":\"div\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-uq2nnj\",\"data-framer-name\":\"1\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-5da477\",\"data-framer-name\":\"body\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1qj0nka\",\"data-styles-preset\":\"puH8CLAiQ\",style:{\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Annual Revenue Goal\"})}),className:\"framer-1m88f8e\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{className:\"framer-styles-preset-z5gy0a\",\"data-styles-preset\":\"pQhG1A9Rq\",style:{\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"+50%\"})}),className:\"framer-h821sg\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1r5bqdk\",\"data-framer-name\":\"2\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-6t67kc\",\"data-framer-name\":\"body\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1qj0nka\",\"data-styles-preset\":\"puH8CLAiQ\",style:{\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"New Clients\"})}),className:\"framer-1fffi7j\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{className:\"framer-styles-preset-z5gy0a\",\"data-styles-preset\":\"pQhG1A9Rq\",style:{\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"2\"})}),className:\"framer-1h7w4d2\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})})]})]})]})]})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-vvc2ia\",\"data-framer-name\":\"context\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-hohn2s\",\"data-framer-name\":\"Context\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-k1caw1\",\"data-styles-preset\":\"ID0R3F0UG\",style:{\"--framer-text-color\":\"var(--token-a55f684c-21b1-43a5-a2ab-5f8d2cedc288, rgb(17, 21, 31))\"},children:\"Context\"})}),className:\"framer-1pzkv93\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1qj0nka\",\"data-styles-preset\":\"puH8CLAiQ\",style:{\"--framer-text-color\":\"var(--token-1030ce83-ab3b-46f6-ad5b-79601aaa5616, rgba(17, 21, 31, 0.65))\"},children:\"At the beginning of 2023, I was working at a Brazilian startup operating as a software house. The company had some fixed clients that covered part of the operations, ensuring revenue for some teams, including mine. \"}),/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1qj0nka\",\"data-styles-preset\":\"puH8CLAiQ\",style:{\"--framer-text-color\":\"var(--token-1030ce83-ab3b-46f6-ad5b-79601aaa5616, rgba(17, 21, 31, 0.65))\"},children:\"However, some contracts ended, negatively impacting the startup's financial health. With costs exceeding revenue, the need for new clients became urgent.\"})]}),className:\"framer-pt1a61\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1mrswji\",\"data-framer-name\":\"traycorp\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h4\",{className:\"framer-styles-preset-z5gy0a\",\"data-styles-preset\":\"pQhG1A9Rq\",style:{\"--framer-text-color\":\"var(--token-a55f684c-21b1-43a5-a2ab-5f8d2cedc288, rgb(0, 0, 0))\"},children:[\"The situation worsened due to a client's default, further compromising the company's financial health and \",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"rgb(240, 84, 84)\"},children:\"resulting in the layoff of 11 employees\"}),\". This was an extremely difficult time, highlighting the urgency of acquiring new clients.\"]})}),className:\"framer-g1wovf\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1m30mj4\",\"data-framer-name\":\"Context\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1qj0nka\",\"data-styles-preset\":\"puH8CLAiQ\",style:{\"--framer-text-color\":\"var(--token-1030ce83-ab3b-46f6-ad5b-79601aaa5616, rgba(17, 21, 31, 0.65))\"},children:\"To address this, I worked closely with the Product Owner and the Sales Manager to secure new contracts.\"})}),className:\"framer-fx430e\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1gr943x\",\"data-framer-name\":\"divider\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-1v25t94\"})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-vwv0p2\",\"data-framer-name\":\"first client\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-oalz7j\",\"data-framer-name\":\"First client\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-k1caw1\",\"data-styles-preset\":\"ID0R3F0UG\",style:{\"--framer-text-color\":\"var(--token-a55f684c-21b1-43a5-a2ab-5f8d2cedc288, rgb(17, 21, 31))\"},children:\"First client\"})}),className:\"framer-1d8bc7h\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1qj0nka\",\"data-styles-preset\":\"puH8CLAiQ\",style:{\"--framer-text-color\":\"var(--token-1030ce83-ab3b-46f6-ad5b-79601aaa5616, rgba(17, 21, 31, 0.65))\"},children:\"In February 2023, we secured a client from the agribusiness sector. We developed a sales simulator prototype for fertilizers and seeds, illustrating the planting process and the products needed for each stage. This prototype was designed to be displayed on televisions within the stores.\"})}),className:\"framer-qjrq75\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-er2o5\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-aym1c6-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"IH8tgxqqm\",scopeId:\"TBSVif928\",children:/*#__PURE__*/_jsx(Video,{backgroundColor:\"rgba(0, 0, 0, 0)\",borderRadius:0,bottomLeftRadius:0,bottomRightRadius:0,controls:false,height:\"100%\",id:\"IH8tgxqqm\",isMixedBorderRadius:false,layoutId:\"IH8tgxqqm\",loop:true,muted:true,objectFit:\"cover\",playing:true,posterEnabled:false,srcFile:\"https://framerusercontent.com/assets/NgCu8ig88X8NL4ynHpDqy8QOA.mp4\",srcType:\"Upload\",srcUrl:\"https://assets.mixkit.co/videos/preview/mixkit-shining-sun-in-the-sky-surrounded-by-moving-clouds-31793-small.mp4\",startTime:0,style:{height:\"100%\",maxWidth:\"100%\",width:\"100%\"},topLeftRadius:0,topRightRadius:0,volume:25,width:\"100%\"})})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1azck6f\",\"data-framer-name\":\"solo\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{className:\"framer-styles-preset-1qj0nka\",\"data-styles-preset\":\"puH8CLAiQ\",style:{\"--framer-text-color\":\"rgb(14, 173, 83)\"},children:[/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-1030ce83-ab3b-46f6-ad5b-79601aaa5616, rgba(17, 21, 31, 0.65))\"},children:\"After our presentation, the client chose to close the contract with us, \"}),\"restoring the startup's financial health and allowing us to rehire some of the previously laid-off employees\",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-1030ce83-ab3b-46f6-ad5b-79601aaa5616, rgba(17, 21, 31, 0.65))\"},children:\".\"})]})}),className:\"framer-3ocxhm\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(MotionDivWithOptimizedAppearEffect,{animate:animation2,className:\"framer-1g4xq9o\",\"data-framer-appear-id\":\"1g4xq9o\",\"data-framer-name\":\"achievements\",initial:animation1,optimized:true,style:{transformPerspective:1200},children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-12dkras\",\"data-framer-name\":\"div\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1tqhm1f\",\"data-framer-name\":\"1\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-e2tlk4\",\"data-framer-name\":\"body\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1qj0nka\",\"data-styles-preset\":\"puH8CLAiQ\",style:{\"--framer-text-color\":\"rgb(14, 173, 83)\"},children:\"New Client\"})}),className:\"framer-s89u88\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{className:\"framer-styles-preset-z5gy0a\",\"data-styles-preset\":\"pQhG1A9Rq\",style:{\"--framer-text-color\":\"rgb(14, 173, 83)\"},children:\"1\"})}),className:\"framer-4cicxf\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1vgk1ix\",\"data-framer-name\":\"2\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-16iesxq\",\"data-framer-name\":\"body\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1qj0nka\",\"data-styles-preset\":\"puH8CLAiQ\",style:{\"--framer-text-color\":\"rgb(14, 173, 83)\"},children:\"Rehired employees\"})}),className:\"framer-kb5ttv\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{className:\"framer-styles-preset-z5gy0a\",\"data-styles-preset\":\"pQhG1A9Rq\",style:{\"--framer-text-color\":\"rgb(14, 173, 83)\"},children:\"2\"})}),className:\"framer-h5mp50\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})})]})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-m405aw\",\"data-framer-name\":\"figma\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1fl51g0-container\",isModuleExternal:true,nodeId:\"EgF_mNiZ7\",scopeId:\"TBSVif928\",children:/*#__PURE__*/_jsx(Feather,{color:\"rgb(14, 173, 83)\",height:\"100%\",iconSearch:\"Home\",iconSelection:\"play\",id:\"EgF_mNiZ7\",layoutId:\"EgF_mNiZ7\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1lqcggi\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-umt88n\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1qj0nka\",\"data-styles-preset\":\"puH8CLAiQ\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(14, 173, 83)\"},children:\"Figma\"})}),className:\"framer-teb6qs\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-wyn8n\",\"data-styles-preset\":\"LVyoHfmH3\",style:{\"--framer-text-color\":\"var(--token-a55f684c-21b1-43a5-a2ab-5f8d2cedc288, rgb(0, 0, 0))\"},children:\"You can navigate the prototype\"})}),className:\"framer-zgpo9r\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:40,children:/*#__PURE__*/_jsx(Container,{className:\"framer-fekhrd-container\",nodeId:\"I94y6kCEX\",scopeId:\"TBSVif928\",children:/*#__PURE__*/_jsx(ButtonPrimary,{height:\"100%\",id:\"I94y6kCEX\",layoutId:\"I94y6kCEX\",variant:\"pa8axtrLj\",width:\"100%\"})})})]})]})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1qz6i9z\",\"data-framer-name\":\"divider\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-1ozrvqy\"})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-10ywmyf\",\"data-framer-name\":\"second client\",id:elementId1,ref:ref2,children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-jviku9\",\"data-framer-name\":\"Second client\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-k1caw1\",\"data-styles-preset\":\"ID0R3F0UG\",style:{\"--framer-text-color\":\"var(--token-a55f684c-21b1-43a5-a2ab-5f8d2cedc288, rgb(17, 21, 31))\"},children:\"Second client\"})}),className:\"framer-1v3fg17\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1qj0nka\",\"data-styles-preset\":\"puH8CLAiQ\",style:{\"--framer-text-color\":\"var(--token-1030ce83-ab3b-46f6-ad5b-79601aaa5616, rgba(17, 21, 31, 0.65))\"},children:\"In August 2023, I was tasked with creating a new prototype for a potential client, this time for a school. The app would enable teachers to manage various student-related activities, including parent communication and meeting scheduling. The proposal was approved, further strengthening the startup's financial health.\"})}),className:\"framer-nluk36\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1kk52w3\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-14r3c3-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"uCMyTyw4m\",scopeId:\"TBSVif928\",children:/*#__PURE__*/_jsx(Video,{backgroundColor:\"rgba(0, 0, 0, 0)\",borderRadius:0,bottomLeftRadius:0,bottomRightRadius:0,controls:false,height:\"100%\",id:\"uCMyTyw4m\",isMixedBorderRadius:false,layoutId:\"uCMyTyw4m\",loop:true,muted:true,objectFit:\"cover\",playing:true,posterEnabled:false,srcFile:\"https://framerusercontent.com/assets/HwgmhVCtuRLYSrANNtxBzl7wc.mp4\",srcType:\"Upload\",srcUrl:\"https://assets.mixkit.co/videos/preview/mixkit-shining-sun-in-the-sky-surrounded-by-moving-clouds-31793-small.mp4\",startTime:0,style:{height:\"100%\",maxWidth:\"100%\",width:\"100%\"},topLeftRadius:0,topRightRadius:0,volume:25,width:\"100%\"})})})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1b56cao\",\"data-framer-name\":\"second client\",id:elementId2,ref:ref3,children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1rs6dq2\",\"data-framer-name\":\"figma\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1dn6y4o-container\",isModuleExternal:true,nodeId:\"kldvTsVor\",scopeId:\"TBSVif928\",children:/*#__PURE__*/_jsx(Feather,{color:\"rgb(14, 173, 83)\",height:\"100%\",iconSearch:\"Home\",iconSelection:\"play\",id:\"kldvTsVor\",layoutId:\"kldvTsVor\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-bxmphy\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1trzez7\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1qj0nka\",\"data-styles-preset\":\"puH8CLAiQ\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(14, 173, 83)\"},children:\"Figma\"})}),className:\"framer-1t1todm\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-wyn8n\",\"data-styles-preset\":\"LVyoHfmH3\",style:{\"--framer-text-color\":\"var(--token-a55f684c-21b1-43a5-a2ab-5f8d2cedc288, rgb(0, 0, 0))\"},children:\"You can navigate the prototype\"})}),className:\"framer-qmrnpt\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:40,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1bp4tjg-container\",nodeId:\"i6KnNTLeL\",scopeId:\"TBSVif928\",children:/*#__PURE__*/_jsx(ButtonPrimary,{height:\"100%\",id:\"i6KnNTLeL\",layoutId:\"i6KnNTLeL\",variant:\"nN4FTIhlx\",width:\"100%\"})})})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-r8q0s2\",\"data-framer-name\":\"Results\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-k1caw1\",\"data-styles-preset\":\"ID0R3F0UG\",style:{\"--framer-text-color\":\"var(--token-a55f684c-21b1-43a5-a2ab-5f8d2cedc288, rgb(17, 21, 31))\"},children:\"Results\"})}),className:\"framer-brfa4g\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1qj0nka\",\"data-styles-preset\":\"puH8CLAiQ\",style:{\"--framer-text-color\":\"var(--token-1030ce83-ab3b-46f6-ad5b-79601aaa5616, rgba(17, 21, 31, 0.65))\"},children:\"Our revenue target for 2023 was 10 Bitcoins (this is just a representative value, as the actual amount is confidential). With the acquisition of these new clients and their substantial projects, we surpassed the 5 Bitcoin mark, achieving more than 50% of the annual revenue target. \"})}),className:\"framer-3lg000\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1qj0nka\",\"data-styles-preset\":\"puH8CLAiQ\",style:{\"--framer-text-color\":\"var(--token-1030ce83-ab3b-46f6-ad5b-79601aaa5616, rgba(17, 21, 31, 0.65))\"},children:\"This was made possible by well-executed prototypes presenting significant value propositions, outcompeting our rivals, and earning client loyalty.\"})}),className:\"framer-5hqd3h\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(MotionDivWithOptimizedAppearEffect,{animate:animation2,className:\"framer-6n834t\",\"data-framer-appear-id\":\"6n834t\",\"data-framer-name\":\"achievements\",initial:animation1,optimized:true,style:{transformPerspective:1200},children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1t6n800\",\"data-framer-name\":\"div\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-4d9ryi\",\"data-framer-name\":\"1\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-syc0di\",\"data-framer-name\":\"body\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1qj0nka\",\"data-styles-preset\":\"puH8CLAiQ\",style:{\"--framer-text-color\":\"rgb(14, 173, 83)\"},children:\"Annual Revenue Goal\"})}),className:\"framer-1trh107\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{className:\"framer-styles-preset-z5gy0a\",\"data-styles-preset\":\"pQhG1A9Rq\",style:{\"--framer-text-color\":\"rgb(14, 173, 83)\"},children:\"+50%\"})}),className:\"framer-yhsj0d\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1l686ny\",\"data-framer-name\":\"2\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1whog3l\",\"data-framer-name\":\"body\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1qj0nka\",\"data-styles-preset\":\"puH8CLAiQ\",style:{\"--framer-text-color\":\"rgb(14, 173, 83)\"},children:\"New Client\"})}),className:\"framer-1cxn60w\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{className:\"framer-styles-preset-z5gy0a\",\"data-styles-preset\":\"pQhG1A9Rq\",style:{\"--framer-text-color\":\"rgb(14, 173, 83)\"},children:\"2\"})}),className:\"framer-19hez7y\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})})]})})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-kn08lm\",\"data-framer-name\":\"solo\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:40,children:/*#__PURE__*/_jsx(Container,{className:\"framer-p2ptgx-container\",nodeId:\"D0l_qFZ5W\",scopeId:\"TBSVif928\",children:/*#__PURE__*/_jsx(ButtonPrimary,{height:\"100%\",id:\"D0l_qFZ5W\",layoutId:\"D0l_qFZ5W\",variant:\"LHZQYiA30\",width:\"100%\"})})})})]}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:324,width:componentViewport?.width||\"100vw\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-12yvvy8-container\",nodeId:\"x6g577s0J\",scopeId:\"TBSVif928\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{gWRtpaFPo:{variant:\"wXntdzapA\"},jQYf65Sf_:{variant:\"S7IMeO6Gp\"},Vs4jtUj2j:{variant:\"y4JA200iV\"}},children:/*#__PURE__*/_jsx(Footer,{height:\"100%\",id:\"x6g577s0J\",layoutId:\"x6g577s0J\",style:{width:\"100%\"},variant:\"ptdNrL1Kh\",width:\"100%\"})})})})]}),/*#__PURE__*/_jsx(\"div\",{id:\"overlay\"})]})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-WlZ9Q.framer-1dvlorb, .framer-WlZ9Q .framer-1dvlorb { display: block; }\",\".framer-WlZ9Q.framer-1xah5g { 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: hidden; padding: 0px; position: relative; width: 1200px; }\",\".framer-WlZ9Q .framer-ibvanf { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 8px; position: relative; width: 100%; }\",\".framer-WlZ9Q .framer-b27lct { align-content: center; align-items: center; background-color: #0ead53; border-bottom-left-radius: 12px; border-bottom-right-radius: 12px; border-top-left-radius: 12px; border-top-right-radius: 12px; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 72px; height: min-content; justify-content: center; max-width: 1184px; overflow: hidden; padding: 40px 100px 80px 100px; position: relative; width: 1px; will-change: var(--framer-will-change-override, transform); }\",\".framer-WlZ9Q .framer-x2d31y { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; z-index: 1; }\",\".framer-WlZ9Q .framer-d5gvnk-container, .framer-WlZ9Q .framer-fekhrd-container, .framer-WlZ9Q .framer-1bp4tjg-container, .framer-WlZ9Q .framer-p2ptgx-container { flex: none; height: auto; opacity: 0.99; position: relative; width: auto; }\",\".framer-WlZ9Q .framer-mfgpg3 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 56px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; z-index: 1; }\",\".framer-WlZ9Q .framer-1sl0me0 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-WlZ9Q .framer-1uqcj5o { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: wrap; gap: 8px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-WlZ9Q .framer-14hkouy-container, .framer-WlZ9Q .framer-1cisbaw-container, .framer-WlZ9Q .framer-16hwnnu-container, .framer-WlZ9Q .framer-736owb-container { flex: none; height: auto; position: relative; width: auto; }\",\".framer-WlZ9Q .framer-io11rr, .framer-WlZ9Q .framer-voah6g, .framer-WlZ9Q .framer-1m88f8e, .framer-WlZ9Q .framer-h821sg, .framer-WlZ9Q .framer-1fffi7j, .framer-WlZ9Q .framer-1h7w4d2, .framer-WlZ9Q .framer-1pzkv93, .framer-WlZ9Q .framer-pt1a61, .framer-WlZ9Q .framer-g1wovf, .framer-WlZ9Q .framer-fx430e, .framer-WlZ9Q .framer-1d8bc7h, .framer-WlZ9Q .framer-qjrq75, .framer-WlZ9Q .framer-3ocxhm, .framer-WlZ9Q .framer-s89u88, .framer-WlZ9Q .framer-4cicxf, .framer-WlZ9Q .framer-kb5ttv, .framer-WlZ9Q .framer-h5mp50, .framer-WlZ9Q .framer-zgpo9r, .framer-WlZ9Q .framer-1v3fg17, .framer-WlZ9Q .framer-nluk36, .framer-WlZ9Q .framer-qmrnpt, .framer-WlZ9Q .framer-brfa4g, .framer-WlZ9Q .framer-3lg000, .framer-WlZ9Q .framer-5hqd3h, .framer-WlZ9Q .framer-1trh107, .framer-WlZ9Q .framer-yhsj0d, .framer-WlZ9Q .framer-1cxn60w, .framer-WlZ9Q .framer-19hez7y { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-WlZ9Q .framer-wnway8 { align-content: center; align-items: center; background-color: rgba(255, 255, 255, 0.07); border-bottom-left-radius: 8px; border-bottom-right-radius: 8px; border-top-left-radius: 8px; border-top-right-radius: 8px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: center; overflow: hidden; padding: 16px; position: relative; width: 100%; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-WlZ9Q .framer-1rh9q0a, .framer-WlZ9Q .framer-12dkras, .framer-WlZ9Q .framer-1t6n800 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 32px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-WlZ9Q .framer-uq2nnj, .framer-WlZ9Q .framer-1r5bqdk, .framer-WlZ9Q .framer-1tqhm1f, .framer-WlZ9Q .framer-1vgk1ix, .framer-WlZ9Q .framer-4d9ryi, .framer-WlZ9Q .framer-1l686ny { align-content: center; align-items: center; border-bottom-left-radius: 8px; border-bottom-right-radius: 8px; border-top-left-radius: 8px; border-top-right-radius: 8px; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1px; will-change: var(--framer-will-change-override, transform); }\",\".framer-WlZ9Q .framer-5da477, .framer-WlZ9Q .framer-6t67kc, .framer-WlZ9Q .framer-e2tlk4, .framer-WlZ9Q .framer-16iesxq, .framer-WlZ9Q .framer-syc0di, .framer-WlZ9Q .framer-1whog3l { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-WlZ9Q .framer-vvc2ia, .framer-WlZ9Q .framer-vwv0p2 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 72px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 100px 0px 100px 0px; position: relative; width: 100%; }\",\".framer-WlZ9Q .framer-hohn2s, .framer-WlZ9Q .framer-1m30mj4, .framer-WlZ9Q .framer-oalz7j, .framer-WlZ9Q .framer-1azck6f, .framer-WlZ9Q .framer-jviku9, .framer-WlZ9Q .framer-r8q0s2 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: flex-start; max-width: 1000px; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-WlZ9Q .framer-1mrswji { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: flex-start; max-width: 1000px; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-WlZ9Q .framer-1gr943x, .framer-WlZ9Q .framer-1qz6i9z { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-WlZ9Q .framer-1v25t94, .framer-WlZ9Q .framer-1ozrvqy { background-color: var(--token-8caf7a43-038b-4368-bbbb-4d7f903c9b33, #171d29); border-bottom-left-radius: 21px; border-bottom-right-radius: 21px; border-top-left-radius: 21px; border-top-right-radius: 21px; flex: none; height: 4px; overflow: hidden; position: relative; width: 180px; will-change: var(--framer-will-change-override, transform); }\",\".framer-WlZ9Q .framer-er2o5 { align-content: center; align-items: center; background-color: #24a849; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 100px 0px 100px 0px; position: relative; width: 100%; }\",\".framer-WlZ9Q .framer-aym1c6-container { flex: none; height: 561px; max-width: 1200px; position: relative; width: 80%; }\",\".framer-WlZ9Q .framer-1g4xq9o, .framer-WlZ9Q .framer-6n834t { align-content: center; align-items: center; background-color: rgba(14, 173, 83, 0.05); border-bottom-left-radius: 8px; border-bottom-right-radius: 8px; border-top-left-radius: 8px; border-top-right-radius: 8px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; overflow: hidden; padding: 40px; position: relative; width: 100%; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-WlZ9Q .framer-m405aw, .framer-WlZ9Q .framer-1rs6dq2 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; max-width: 1000px; overflow: visible; padding: 0px 0px 0px 10px; position: relative; width: 100%; }\",\".framer-WlZ9Q .framer-1fl51g0-container, .framer-WlZ9Q .framer-1dn6y4o-container { flex: none; height: 24px; position: relative; width: 24px; }\",\".framer-WlZ9Q .framer-1lqcggi, .framer-WlZ9Q .framer-bxmphy { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-WlZ9Q .framer-umt88n, .framer-WlZ9Q .framer-1trzez7 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 100%; z-index: 1; }\",\".framer-WlZ9Q .framer-teb6qs, .framer-WlZ9Q .framer-1t1todm { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: 1 0 0px; height: auto; position: relative; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; }\",\".framer-WlZ9Q .framer-10ywmyf { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 72px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 100px 0px 0px 0px; position: relative; width: 100%; }\",\".framer-WlZ9Q .framer-1kk52w3 { align-content: center; align-items: center; background-color: #24a849; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 50px 0px 50px 0px; position: relative; width: 100%; }\",\".framer-WlZ9Q .framer-14r3c3-container { flex: none; height: 890px; max-width: 480px; position: relative; width: 40%; }\",\".framer-WlZ9Q .framer-1b56cao { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 72px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 80px 0px 40px 0px; position: relative; width: 100%; }\",\".framer-WlZ9Q .framer-kn08lm { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: flex-start; max-width: 1000px; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-WlZ9Q .framer-12yvvy8-container { flex: none; height: auto; position: relative; width: 100%; }\",\"@supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-WlZ9Q.framer-1xah5g, .framer-WlZ9Q .framer-ibvanf, .framer-WlZ9Q .framer-b27lct, .framer-WlZ9Q .framer-x2d31y, .framer-WlZ9Q .framer-mfgpg3, .framer-WlZ9Q .framer-1sl0me0, .framer-WlZ9Q .framer-1uqcj5o, .framer-WlZ9Q .framer-wnway8, .framer-WlZ9Q .framer-1rh9q0a, .framer-WlZ9Q .framer-uq2nnj, .framer-WlZ9Q .framer-5da477, .framer-WlZ9Q .framer-1r5bqdk, .framer-WlZ9Q .framer-6t67kc, .framer-WlZ9Q .framer-vvc2ia, .framer-WlZ9Q .framer-hohn2s, .framer-WlZ9Q .framer-1mrswji, .framer-WlZ9Q .framer-1m30mj4, .framer-WlZ9Q .framer-1gr943x, .framer-WlZ9Q .framer-vwv0p2, .framer-WlZ9Q .framer-oalz7j, .framer-WlZ9Q .framer-er2o5, .framer-WlZ9Q .framer-1azck6f, .framer-WlZ9Q .framer-1g4xq9o, .framer-WlZ9Q .framer-12dkras, .framer-WlZ9Q .framer-1tqhm1f, .framer-WlZ9Q .framer-e2tlk4, .framer-WlZ9Q .framer-1vgk1ix, .framer-WlZ9Q .framer-16iesxq, .framer-WlZ9Q .framer-m405aw, .framer-WlZ9Q .framer-1lqcggi, .framer-WlZ9Q .framer-umt88n, .framer-WlZ9Q .framer-1qz6i9z, .framer-WlZ9Q .framer-10ywmyf, .framer-WlZ9Q .framer-jviku9, .framer-WlZ9Q .framer-1kk52w3, .framer-WlZ9Q .framer-1b56cao, .framer-WlZ9Q .framer-1rs6dq2, .framer-WlZ9Q .framer-bxmphy, .framer-WlZ9Q .framer-1trzez7, .framer-WlZ9Q .framer-r8q0s2, .framer-WlZ9Q .framer-6n834t, .framer-WlZ9Q .framer-1t6n800, .framer-WlZ9Q .framer-4d9ryi, .framer-WlZ9Q .framer-syc0di, .framer-WlZ9Q .framer-1l686ny, .framer-WlZ9Q .framer-1whog3l, .framer-WlZ9Q .framer-kn08lm { gap: 0px; } .framer-WlZ9Q.framer-1xah5g > *, .framer-WlZ9Q .framer-5da477 > *, .framer-WlZ9Q .framer-6t67kc > *, .framer-WlZ9Q .framer-1gr943x > *, .framer-WlZ9Q .framer-e2tlk4 > *, .framer-WlZ9Q .framer-16iesxq > *, .framer-WlZ9Q .framer-1qz6i9z > *, .framer-WlZ9Q .framer-syc0di > *, .framer-WlZ9Q .framer-1whog3l > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-WlZ9Q.framer-1xah5g > :first-child, .framer-WlZ9Q .framer-b27lct > :first-child, .framer-WlZ9Q .framer-mfgpg3 > :first-child, .framer-WlZ9Q .framer-1sl0me0 > :first-child, .framer-WlZ9Q .framer-wnway8 > :first-child, .framer-WlZ9Q .framer-5da477 > :first-child, .framer-WlZ9Q .framer-6t67kc > :first-child, .framer-WlZ9Q .framer-vvc2ia > :first-child, .framer-WlZ9Q .framer-hohn2s > :first-child, .framer-WlZ9Q .framer-1mrswji > :first-child, .framer-WlZ9Q .framer-1m30mj4 > :first-child, .framer-WlZ9Q .framer-1gr943x > :first-child, .framer-WlZ9Q .framer-vwv0p2 > :first-child, .framer-WlZ9Q .framer-oalz7j > :first-child, .framer-WlZ9Q .framer-er2o5 > :first-child, .framer-WlZ9Q .framer-1azck6f > :first-child, .framer-WlZ9Q .framer-1g4xq9o > :first-child, .framer-WlZ9Q .framer-e2tlk4 > :first-child, .framer-WlZ9Q .framer-16iesxq > :first-child, .framer-WlZ9Q .framer-1lqcggi > :first-child, .framer-WlZ9Q .framer-1qz6i9z > :first-child, .framer-WlZ9Q .framer-10ywmyf > :first-child, .framer-WlZ9Q .framer-jviku9 > :first-child, .framer-WlZ9Q .framer-1kk52w3 > :first-child, .framer-WlZ9Q .framer-1b56cao > :first-child, .framer-WlZ9Q .framer-bxmphy > :first-child, .framer-WlZ9Q .framer-r8q0s2 > :first-child, .framer-WlZ9Q .framer-6n834t > :first-child, .framer-WlZ9Q .framer-syc0di > :first-child, .framer-WlZ9Q .framer-1whog3l > :first-child, .framer-WlZ9Q .framer-kn08lm > :first-child { margin-top: 0px; } .framer-WlZ9Q.framer-1xah5g > :last-child, .framer-WlZ9Q .framer-b27lct > :last-child, .framer-WlZ9Q .framer-mfgpg3 > :last-child, .framer-WlZ9Q .framer-1sl0me0 > :last-child, .framer-WlZ9Q .framer-wnway8 > :last-child, .framer-WlZ9Q .framer-5da477 > :last-child, .framer-WlZ9Q .framer-6t67kc > :last-child, .framer-WlZ9Q .framer-vvc2ia > :last-child, .framer-WlZ9Q .framer-hohn2s > :last-child, .framer-WlZ9Q .framer-1mrswji > :last-child, .framer-WlZ9Q .framer-1m30mj4 > :last-child, .framer-WlZ9Q .framer-1gr943x > :last-child, .framer-WlZ9Q .framer-vwv0p2 > :last-child, .framer-WlZ9Q .framer-oalz7j > :last-child, .framer-WlZ9Q .framer-er2o5 > :last-child, .framer-WlZ9Q .framer-1azck6f > :last-child, .framer-WlZ9Q .framer-1g4xq9o > :last-child, .framer-WlZ9Q .framer-e2tlk4 > :last-child, .framer-WlZ9Q .framer-16iesxq > :last-child, .framer-WlZ9Q .framer-1lqcggi > :last-child, .framer-WlZ9Q .framer-1qz6i9z > :last-child, .framer-WlZ9Q .framer-10ywmyf > :last-child, .framer-WlZ9Q .framer-jviku9 > :last-child, .framer-WlZ9Q .framer-1kk52w3 > :last-child, .framer-WlZ9Q .framer-1b56cao > :last-child, .framer-WlZ9Q .framer-bxmphy > :last-child, .framer-WlZ9Q .framer-r8q0s2 > :last-child, .framer-WlZ9Q .framer-6n834t > :last-child, .framer-WlZ9Q .framer-syc0di > :last-child, .framer-WlZ9Q .framer-1whog3l > :last-child, .framer-WlZ9Q .framer-kn08lm > :last-child { margin-bottom: 0px; } .framer-WlZ9Q .framer-ibvanf > *, .framer-WlZ9Q .framer-x2d31y > *, .framer-WlZ9Q .framer-m405aw > *, .framer-WlZ9Q .framer-1rs6dq2 > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-WlZ9Q .framer-ibvanf > :first-child, .framer-WlZ9Q .framer-x2d31y > :first-child, .framer-WlZ9Q .framer-1uqcj5o > :first-child, .framer-WlZ9Q .framer-1rh9q0a > :first-child, .framer-WlZ9Q .framer-uq2nnj > :first-child, .framer-WlZ9Q .framer-1r5bqdk > :first-child, .framer-WlZ9Q .framer-12dkras > :first-child, .framer-WlZ9Q .framer-1tqhm1f > :first-child, .framer-WlZ9Q .framer-1vgk1ix > :first-child, .framer-WlZ9Q .framer-m405aw > :first-child, .framer-WlZ9Q .framer-umt88n > :first-child, .framer-WlZ9Q .framer-1rs6dq2 > :first-child, .framer-WlZ9Q .framer-1trzez7 > :first-child, .framer-WlZ9Q .framer-1t6n800 > :first-child, .framer-WlZ9Q .framer-4d9ryi > :first-child, .framer-WlZ9Q .framer-1l686ny > :first-child { margin-left: 0px; } .framer-WlZ9Q .framer-ibvanf > :last-child, .framer-WlZ9Q .framer-x2d31y > :last-child, .framer-WlZ9Q .framer-1uqcj5o > :last-child, .framer-WlZ9Q .framer-1rh9q0a > :last-child, .framer-WlZ9Q .framer-uq2nnj > :last-child, .framer-WlZ9Q .framer-1r5bqdk > :last-child, .framer-WlZ9Q .framer-12dkras > :last-child, .framer-WlZ9Q .framer-1tqhm1f > :last-child, .framer-WlZ9Q .framer-1vgk1ix > :last-child, .framer-WlZ9Q .framer-m405aw > :last-child, .framer-WlZ9Q .framer-umt88n > :last-child, .framer-WlZ9Q .framer-1rs6dq2 > :last-child, .framer-WlZ9Q .framer-1trzez7 > :last-child, .framer-WlZ9Q .framer-1t6n800 > :last-child, .framer-WlZ9Q .framer-4d9ryi > :last-child, .framer-WlZ9Q .framer-1l686ny > :last-child { margin-right: 0px; } .framer-WlZ9Q .framer-b27lct > *, .framer-WlZ9Q .framer-vvc2ia > *, .framer-WlZ9Q .framer-vwv0p2 > *, .framer-WlZ9Q .framer-10ywmyf > *, .framer-WlZ9Q .framer-1b56cao > * { margin: 0px; margin-bottom: calc(72px / 2); margin-top: calc(72px / 2); } .framer-WlZ9Q .framer-mfgpg3 > * { margin: 0px; margin-bottom: calc(56px / 2); margin-top: calc(56px / 2); } .framer-WlZ9Q .framer-1sl0me0 > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } .framer-WlZ9Q .framer-1uqcj5o > *, .framer-WlZ9Q .framer-umt88n > *, .framer-WlZ9Q .framer-1trzez7 > * { margin: 0px; margin-left: calc(8px / 2); margin-right: calc(8px / 2); } .framer-WlZ9Q .framer-wnway8 > * { margin: 0px; margin-bottom: calc(16px / 2); margin-top: calc(16px / 2); } .framer-WlZ9Q .framer-1rh9q0a > *, .framer-WlZ9Q .framer-12dkras > *, .framer-WlZ9Q .framer-1t6n800 > * { margin: 0px; margin-left: calc(32px / 2); margin-right: calc(32px / 2); } .framer-WlZ9Q .framer-uq2nnj > *, .framer-WlZ9Q .framer-1r5bqdk > *, .framer-WlZ9Q .framer-1tqhm1f > *, .framer-WlZ9Q .framer-1vgk1ix > *, .framer-WlZ9Q .framer-4d9ryi > *, .framer-WlZ9Q .framer-1l686ny > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } .framer-WlZ9Q .framer-hohn2s > *, .framer-WlZ9Q .framer-1mrswji > *, .framer-WlZ9Q .framer-1m30mj4 > *, .framer-WlZ9Q .framer-oalz7j > *, .framer-WlZ9Q .framer-1azck6f > *, .framer-WlZ9Q .framer-1g4xq9o > *, .framer-WlZ9Q .framer-jviku9 > *, .framer-WlZ9Q .framer-r8q0s2 > *, .framer-WlZ9Q .framer-6n834t > *, .framer-WlZ9Q .framer-kn08lm > * { margin: 0px; margin-bottom: calc(20px / 2); margin-top: calc(20px / 2); } .framer-WlZ9Q .framer-er2o5 > *, .framer-WlZ9Q .framer-1lqcggi > *, .framer-WlZ9Q .framer-1kk52w3 > *, .framer-WlZ9Q .framer-bxmphy > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } }\",...sharedStyle.css,...sharedStyle1.css,...sharedStyle2.css,...sharedStyle3.css,...sharedStyle4.css,...sharedStyle5.css,\"@media (min-width: 1920px) { .framer-WlZ9Q.framer-1xah5g { width: 1920px; } .framer-WlZ9Q .framer-aym1c6-container { height: 709px; width: 63%; }}\",\"@media (max-width: 809px) { .framer-WlZ9Q.framer-1xah5g { width: 390px; } .framer-WlZ9Q .framer-b27lct { gap: 40px; padding: 20px; } .framer-WlZ9Q .framer-1rh9q0a { flex-direction: column; gap: 20px; } .framer-WlZ9Q .framer-uq2nnj, .framer-WlZ9Q .framer-1r5bqdk, .framer-WlZ9Q .framer-1tqhm1f, .framer-WlZ9Q .framer-1vgk1ix, .framer-WlZ9Q .framer-1lqcggi, .framer-WlZ9Q .framer-bxmphy, .framer-WlZ9Q .framer-4d9ryi, .framer-WlZ9Q .framer-1l686ny { flex: none; width: 100%; } .framer-WlZ9Q .framer-hohn2s, .framer-WlZ9Q .framer-1mrswji, .framer-WlZ9Q .framer-1m30mj4, .framer-WlZ9Q .framer-oalz7j, .framer-WlZ9Q .framer-1azck6f, .framer-WlZ9Q .framer-jviku9, .framer-WlZ9Q .framer-r8q0s2, .framer-WlZ9Q .framer-kn08lm { width: 90%; } .framer-WlZ9Q .framer-aym1c6-container { height: 203px; width: 90%; } .framer-WlZ9Q .framer-1g4xq9o, .framer-WlZ9Q .framer-6n834t { padding: 20px; } .framer-WlZ9Q .framer-12dkras, .framer-WlZ9Q .framer-1t6n800 { flex-direction: column; gap: 12px; } .framer-WlZ9Q .framer-m405aw, .framer-WlZ9Q .framer-1rs6dq2 { flex-direction: column; padding: 0px; width: 90%; } .framer-WlZ9Q .framer-14r3c3-container { height: 599px; width: 81%; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-WlZ9Q .framer-b27lct, .framer-WlZ9Q .framer-1rh9q0a, .framer-WlZ9Q .framer-12dkras, .framer-WlZ9Q .framer-m405aw, .framer-WlZ9Q .framer-1rs6dq2, .framer-WlZ9Q .framer-1t6n800 { gap: 0px; } .framer-WlZ9Q .framer-b27lct > * { margin: 0px; margin-bottom: calc(40px / 2); margin-top: calc(40px / 2); } .framer-WlZ9Q .framer-b27lct > :first-child, .framer-WlZ9Q .framer-1rh9q0a > :first-child, .framer-WlZ9Q .framer-12dkras > :first-child, .framer-WlZ9Q .framer-m405aw > :first-child, .framer-WlZ9Q .framer-1rs6dq2 > :first-child, .framer-WlZ9Q .framer-1t6n800 > :first-child { margin-top: 0px; } .framer-WlZ9Q .framer-b27lct > :last-child, .framer-WlZ9Q .framer-1rh9q0a > :last-child, .framer-WlZ9Q .framer-12dkras > :last-child, .framer-WlZ9Q .framer-m405aw > :last-child, .framer-WlZ9Q .framer-1rs6dq2 > :last-child, .framer-WlZ9Q .framer-1t6n800 > :last-child { margin-bottom: 0px; } .framer-WlZ9Q .framer-1rh9q0a > * { margin: 0px; margin-bottom: calc(20px / 2); margin-top: calc(20px / 2); } .framer-WlZ9Q .framer-12dkras > *, .framer-WlZ9Q .framer-1t6n800 > * { margin: 0px; margin-bottom: calc(12px / 2); margin-top: calc(12px / 2); } .framer-WlZ9Q .framer-m405aw > *, .framer-WlZ9Q .framer-1rs6dq2 > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } }}\",\"@media (min-width: 810px) and (max-width: 1199px) { .framer-WlZ9Q.framer-1xah5g { width: 810px; } .framer-WlZ9Q .framer-b27lct { padding: 40px; } .framer-WlZ9Q .framer-1rh9q0a { flex-direction: column; gap: 30px; } .framer-WlZ9Q .framer-uq2nnj, .framer-WlZ9Q .framer-1r5bqdk, .framer-WlZ9Q .framer-1tqhm1f, .framer-WlZ9Q .framer-1vgk1ix, .framer-WlZ9Q .framer-4d9ryi, .framer-WlZ9Q .framer-1l686ny { flex: none; width: 100%; } .framer-WlZ9Q .framer-hohn2s, .framer-WlZ9Q .framer-1mrswji, .framer-WlZ9Q .framer-1m30mj4, .framer-WlZ9Q .framer-oalz7j, .framer-WlZ9Q .framer-1azck6f, .framer-WlZ9Q .framer-m405aw, .framer-WlZ9Q .framer-jviku9, .framer-WlZ9Q .framer-1rs6dq2, .framer-WlZ9Q .framer-r8q0s2, .framer-WlZ9Q .framer-kn08lm { width: 90%; } .framer-WlZ9Q .framer-aym1c6-container { height: 430px; width: 90%; } .framer-WlZ9Q .framer-12dkras, .framer-WlZ9Q .framer-1t6n800 { flex-direction: column; gap: 16px; } .framer-WlZ9Q .framer-14r3c3-container { width: 60%; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-WlZ9Q .framer-1rh9q0a, .framer-WlZ9Q .framer-12dkras, .framer-WlZ9Q .framer-1t6n800 { gap: 0px; } .framer-WlZ9Q .framer-1rh9q0a > * { margin: 0px; margin-bottom: calc(30px / 2); margin-top: calc(30px / 2); } .framer-WlZ9Q .framer-1rh9q0a > :first-child, .framer-WlZ9Q .framer-12dkras > :first-child, .framer-WlZ9Q .framer-1t6n800 > :first-child { margin-top: 0px; } .framer-WlZ9Q .framer-1rh9q0a > :last-child, .framer-WlZ9Q .framer-12dkras > :last-child, .framer-WlZ9Q .framer-1t6n800 > :last-child { margin-bottom: 0px; } .framer-WlZ9Q .framer-12dkras > *, .framer-WlZ9Q .framer-1t6n800 > * { margin: 0px; margin-bottom: calc(16px / 2); margin-top: calc(16px / 2); } }}\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 5335\n * @framerIntrinsicWidth 1200\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"jQYf65Sf_\":{\"layout\":[\"fixed\",\"auto\"]},\"gWRtpaFPo\":{\"layout\":[\"fixed\",\"auto\"]},\"Vs4jtUj2j\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n * @framerAcceptsLayoutTemplate true\n * @framerScrollSections {\"QdCzuHeuL\":{\"pattern\":\":QdCzuHeuL\",\"name\":\"header\"},\"AE4lTcdgO\":{\"pattern\":\":AE4lTcdgO\",\"name\":\"project\"},\"KBtpWBZfP\":{\"pattern\":\":KBtpWBZfP\",\"name\":\"project\"}}\n * @framerResponsiveScreen\n */const FramerTBSVif928=withCSS(Component,css,\"framer-WlZ9Q\");export default FramerTBSVif928;FramerTBSVif928.displayName=\"Page\";FramerTBSVif928.defaultProps={height:5335,width:1200};addFonts(FramerTBSVif928,[{explicitInter:true,fonts:[{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/5vvr9Vy74if2I6bQbJvbw7SY1pQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/EOr0mi4hNtlgWNn9if640EZzXCo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Y9k9QrlZAqio88Klkmbd8VoMQc.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/OYrD2tBIBPvoJXiIHnLoOXnY9M.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/JeYwfuaPfZHQhEG8U5gtPDZ7WQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/vQyevYAyHtARFwPqUzQGpnDs.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/b6Y37FthZeALduNqHicBT6FutY.woff2\",weight:\"400\"}]},...ButtonPrimaryFonts,...TagCaseFonts,...VideoFonts,...FeatherFonts,...FooterFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts),...getFontsFromSharedStyle(sharedStyle2.fonts),...getFontsFromSharedStyle(sharedStyle3.fonts),...getFontsFromSharedStyle(sharedStyle4.fonts),...getFontsFromSharedStyle(sharedStyle5.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerTBSVif928\",\"slots\":[],\"annotations\":{\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicHeight\":\"5335\",\"framerContractVersion\":\"1\",\"framerScrollSections\":\"{\\\"QdCzuHeuL\\\":{\\\"pattern\\\":\\\":QdCzuHeuL\\\",\\\"name\\\":\\\"header\\\"},\\\"AE4lTcdgO\\\":{\\\"pattern\\\":\\\":AE4lTcdgO\\\",\\\"name\\\":\\\"project\\\"},\\\"KBtpWBZfP\\\":{\\\"pattern\\\":\\\":KBtpWBZfP\\\",\\\"name\\\":\\\"project\\\"}}\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"jQYf65Sf_\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"gWRtpaFPo\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"Vs4jtUj2j\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerImmutableVariables\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerResponsiveScreen\":\"\",\"framerAcceptsLayoutTemplate\":\"true\",\"framerIntrinsicWidth\":\"1200\"}},\"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", "ButtonPrimaryFonts", "getFonts", "cqXXMGqP4_default", "TagCaseFonts", "ac3z3p8yA_default", "MotionDivWithOptimizedAppearEffect", "withOptimizedAppearEffect", "motion", "VideoFonts", "Video", "FeatherFonts", "Icon", "FooterFonts", "ZbPGwiPUR_default", "breakpoints", "serializationHash", "variantClassNames", "transition1", "animation", "animation1", "transition2", "animation2", "HTMLStyle", "value", "useIsOnFramerCanvas", "p", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "variant", "restProps", "ue", "metadata", "robotsTag", "ie", "baseVariant", "hydratedBaseVariant", "useHydratedBreakpointVariants", "breakpoints", "gestureVariant", "scopingClassNames", "cx", "elementId", "useRouteElementId", "ref1", "elementId1", "ref2", "elementId2", "ref3", "useCustomCursors", "GeneratedComponentContext", "u", "LayoutGroup", "motion", "ComponentViewportProvider", "Container", "cqXXMGqP4_default", "MotionDivWithOptimizedAppearEffect", "ac3z3p8yA_default", "RichText2", "x", "Video", "Icon", "PropertyOverrides2", "ZbPGwiPUR_default", "css", "FramerTBSVif928", "withCSS", "TBSVif928_default", "addFonts", "ButtonPrimaryFonts", "TagCaseFonts", "VideoFonts", "FeatherFonts", "FooterFonts", "getFontsFromSharedStyle", "fonts", "__FramerMetadata__"]
}
