{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/lRDHiNWNVWmE0lqtoVHP/K0mI40rrezffFjPjHAZX/Video.js", "ssg:https://framerusercontent.com/modules/KaC5IzKjBou3SkQz1gkO/aKlYR1gwmOIuwEi3eac2/ap7WC59fJ.js", "ssg:https://framerusercontent.com/modules/qRJMnXw6AW1Q3wTb1TCn/OPmbHJ4CyI71FSjXd6mQ/CI0wsA34w.js", "ssg:https://framerusercontent.com/modules/8Xk9Qpq3uLu8yJ90geo2/PqU2ncIOX1zBuSgx4QbB/J0vUilMxF.js", "ssg:https://framerusercontent.com/modules/mbGXLLhnU7VmyY1RLK9D/TKERP6uEzjV83KkZukDK/Lvif4xF6N.js", "ssg:https://framerusercontent.com/modules/hL6EdkJDp72vrxHEvtQw/M6af4CuLbp10Wb3MpFNG/pDzvYq1b6.js", "ssg:https://framerusercontent.com/modules/qLvEMJxlaACwjYXF79OU/3rncTGMGR3VrdkgYZjbR/rHCokXwPn.js", "ssg:https://framerusercontent.com/modules/4lAiZLbs3nnRkxf8NxZG/JIjEZbvbXskX1ZiWbqqt/augiA20Il.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 video=videoRef.current;if(!video)return;video.preload=\"auto\"// makes sure browsers don't throttle: https://html.spec.whatwg.org/multipage/media.html#:~:text=When%20the%20media%20resource%20is%20playing%2C%20hints%20to%20the%20user%20agent%20that%20bandwidth%20is%20to%20be%20considered%20scarce%2C%20e.g.%20suggesting%20throttling%20the%20download%20so%20that%20the%20media%20data%20is%20obtained%20at%20the%20slowest%20possible%20rate%20that%20still%20maintains%20consistent%20playback.\n;const isPlaying=video.currentTime>0&&video.onplaying&&!video.paused&&!video.ended&&video.readyState>video.HAVE_CURRENT_DATA;if(!isPlaying&&video&&!requestingPlay.current&&isInCurrentNavigationTarget){requestingPlay.current=true;video.play().catch(e=>{})// It's likely fine, swallow error\n.finally(()=>requestingPlay.current=false);}},[]);const pause=useCallback(()=>{if(!videoRef.current||requestingPlay.current)return;videoRef.current.pause();},[]);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);const isCloseToViewport=isOnCanvas?false:useInView(videoRef,{margin:\"100px\",once:true});// 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=()=>{const video=videoRef.current;if(!video)return;if(video.currentTime<.3&&startTime>0)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&&!isCloseToViewport?\"none\":// `autoplay` overrides this too\n\"metadata\",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\":{\"framerSupportedLayoutWidth\":\"fixed\",\"framerIntrinsicWidth\":\"200\",\"framerContractVersion\":\"1\",\"framerSupportedLayoutHeight\":\"any-prefer-fixed\",\"framerIntrinsicHeight\":\"112\"}},\"VideoProps\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"titleCase\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Video.map", "// Generated by Framer (0b8b5e5)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,ComponentViewportProvider,cx,getFonts,Link,RichText,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{Icon as Feather}from\"https://framerusercontent.com/modules/f0DboytQenYh21kfme7W/zb1zVBMZJKgPMiedOi0y/Feather.js\";const FeatherFonts=getFonts(Feather);const enabledGestures={atPXv005A:{hover:true,pressed:true}};const serializationHash=\"framer-7YcrQ\";const variantClassNames={atPXv005A:\"framer-v-gal98s\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={bounce:.2,delay:0,duration:.4,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion(React.Fragment);const getProps=({height,id,width,...props})=>{return{...props};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({defaultVariant:\"atPXv005A\",enabledGestures,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const ref1=React.useRef(null);const isDisplayed=()=>{if(gestureVariant===\"atPXv005A-pressed\")return true;return false;};const isDisplayed1=()=>{if(gestureVariant===\"atPXv005A-hover\")return true;return false;};const defaultLayoutId=React.useId();const sharedStyleClassNames=[];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(Link,{...addPropertyOverrides({\"atPXv005A-pressed\":{href:\"mailto:will.dbriggs@gmail.com\"}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsxs(motion.a,{...restProps,...gestureHandlers,className:`${cx(serializationHash,...sharedStyleClassNames,\"framer-gal98s\",className,classNames)} framer-1tm31ul`,\"data-border\":true,\"data-framer-name\":\"Variant 1\",layoutDependency:layoutDependency,layoutId:\"atPXv005A\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"rgb(34, 34, 34)\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",backgroundColor:\"var(--token-e157f143-b996-488f-87ac-b1e88d47e04f, rgb(255, 255, 255))\",borderBottomLeftRadius:0,borderBottomRightRadius:0,borderTopLeftRadius:0,borderTopRightRadius:0,...style},variants:{\"atPXv005A-hover\":{\"--border-color\":\"var(--token-c9dfd335-2d51-4c47-a580-3b49ab4cfd39, rgb(119, 41, 255))\",borderBottomLeftRadius:50,borderBottomRightRadius:50,borderTopLeftRadius:50,borderTopRightRadius:50},\"atPXv005A-pressed\":{\"--border-color\":\"var(--token-c9dfd335-2d51-4c47-a580-3b49ab4cfd39, rgb(119, 41, 255))\",borderBottomLeftRadius:50,borderBottomRightRadius:50,borderTopLeftRadius:50,borderTopRightRadius:50}},...addPropertyOverrides({\"atPXv005A-hover\":{\"data-framer-name\":undefined},\"atPXv005A-pressed\":{\"data-framer-name\":undefined}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"500\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-4b0feec4-9db6-4101-afda-88b05cd1c55e, rgb(222, 222, 222)))\"},children:\"will.dbriggs@gmail.com\"})}),className:\"framer-1mw3o75\",fonts:[\"Inter-Medium\"],layoutDependency:layoutDependency,layoutId:\"ik_jBbGI8\",style:{\"--extracted-r6o4lv\":\"var(--token-4b0feec4-9db6-4101-afda-88b05cd1c55e, rgb(222, 222, 222))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},variants:{\"atPXv005A-hover\":{\"--extracted-r6o4lv\":\"var(--token-c7a77078-b20d-4adb-8b16-60347ac9a0ed, rgb(0, 0, 0))\"},\"atPXv005A-pressed\":{\"--extracted-r6o4lv\":\"var(--token-c7a77078-b20d-4adb-8b16-60347ac9a0ed, rgb(0, 0, 0))\"}},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({\"atPXv005A-hover\":{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"500\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-c7a77078-b20d-4adb-8b16-60347ac9a0ed, rgb(0, 0, 0)))\"},children:\"will.dbriggs@gmail.com\"})})},\"atPXv005A-pressed\":{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"500\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-c7a77078-b20d-4adb-8b16-60347ac9a0ed, rgb(0, 0, 0)))\"},children:\"will.dbriggs@gmail.com\"})})}},baseVariant,gestureVariant)}),isDisplayed()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-4dg2yi-container\",layoutDependency:layoutDependency,layoutId:\"VQbixAMT8-container\",children:/*#__PURE__*/_jsx(Feather,{color:\"var(--token-c7a77078-b20d-4adb-8b16-60347ac9a0ed, rgb(0, 0, 0))\",height:\"100%\",iconSearch:\"Home\",iconSelection:\"arrow-right\",id:\"VQbixAMT8\",layoutId:\"VQbixAMT8\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),isDisplayed1()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1sd07u4-container\",layoutDependency:layoutDependency,layoutId:\"heYrNu0Fr-container\",children:/*#__PURE__*/_jsx(Feather,{color:\"var(--token-c7a77078-b20d-4adb-8b16-60347ac9a0ed, rgb(0, 0, 0))\",height:\"100%\",iconSearch:\"Home\",iconSelection:\"arrow-right\",id:\"heYrNu0Fr\",layoutId:\"heYrNu0Fr\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})]})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-7YcrQ.framer-1tm31ul, .framer-7YcrQ .framer-1tm31ul { display: block; }\",\".framer-7YcrQ.framer-gal98s { align-content: center; align-items: center; cursor: pointer; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: 56px; justify-content: center; overflow: hidden; padding: 20px; position: relative; width: 201px; }\",\".framer-7YcrQ .framer-1mw3o75 { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-7YcrQ .framer-4dg2yi-container, .framer-7YcrQ .framer-1sd07u4-container { flex: none; height: 20px; position: relative; width: 20px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-7YcrQ.framer-gal98s { gap: 0px; } .framer-7YcrQ.framer-gal98s > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } .framer-7YcrQ.framer-gal98s > :first-child { margin-left: 0px; } .framer-7YcrQ.framer-gal98s > :last-child { margin-right: 0px; } }\",\".framer-7YcrQ.framer-v-gal98s.hover.framer-gal98s { gap: 6px; width: 212px; will-change: var(--framer-will-change-override, transform); }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-7YcrQ.framer-v-gal98s.hover.framer-gal98s { gap: 0px; } .framer-7YcrQ.framer-v-gal98s.hover.framer-gal98s > * { margin: 0px; margin-left: calc(6px / 2); margin-right: calc(6px / 2); } .framer-7YcrQ.framer-v-gal98s.hover.framer-gal98s > :first-child { margin-left: 0px; } .framer-7YcrQ.framer-v-gal98s.hover.framer-gal98s > :last-child { margin-right: 0px; } }\",\".framer-7YcrQ.framer-v-gal98s.pressed.framer-gal98s { gap: 6px; text-decoration: none; width: 212px; will-change: var(--framer-will-change-override, transform); }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-7YcrQ.framer-v-gal98s.pressed.framer-gal98s { gap: 0px; } .framer-7YcrQ.framer-v-gal98s.pressed.framer-gal98s > * { margin: 0px; margin-left: calc(6px / 2); margin-right: calc(6px / 2); } .framer-7YcrQ.framer-v-gal98s.pressed.framer-gal98s > :first-child { margin-left: 0px; } .framer-7YcrQ.framer-v-gal98s.pressed.framer-gal98s > :last-child { margin-right: 0px; } }\",'.framer-7YcrQ[data-border=\"true\"]::after, .framer-7YcrQ [data-border=\"true\"]::after { content: \"\"; border-width: var(--border-top-width, 0) var(--border-right-width, 0) var(--border-bottom-width, 0) var(--border-left-width, 0); border-color: var(--border-color, none); border-style: var(--border-style, none); width: 100%; height: 100%; position: absolute; box-sizing: border-box; left: 0; top: 0; border-radius: inherit; pointer-events: none; }'];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 56\n * @framerIntrinsicWidth 201\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]},\"tt5h8Pqnx\":{\"layout\":[\"fixed\",\"fixed\"]},\"TDLhdhvtw\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const Framerap7WC59fJ=withCSS(Component,css,\"framer-7YcrQ\");export default Framerap7WC59fJ;Framerap7WC59fJ.displayName=\"contact\";Framerap7WC59fJ.defaultProps={height:56,width:201};addFonts(Framerap7WC59fJ,[{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/5A3Ce6C9YYmCjpQx9M4inSaKU.woff2\",weight:\"500\"},{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/Qx95Xyt0Ka3SGhinnbXIGpEIyP4.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/6mJuEAguuIuMog10gGvH5d3cl8.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/xYYWaj7wCU5zSQH0eXvSaS19wo.woff2\",weight:\"500\"},{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/otTaNuNpVK4RbdlT7zDDdKvQBA.woff2\",weight:\"500\"},{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/d3tHnaQIAeqiE5hGcRw4mmgWYU.woff2\",weight:\"500\"},{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/DolVirEGb34pEXEp8t8FQBSK4.woff2\",weight:\"500\"}]},...FeatherFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"Framerap7WC59fJ\",\"slots\":[],\"annotations\":{\"framerImmutableVariables\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"tt5h8Pqnx\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"TDLhdhvtw\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerComponentViewportWidth\":\"true\",\"framerContractVersion\":\"1\",\"framerDisplayContentsDiv\":\"false\",\"framerIntrinsicHeight\":\"56\",\"framerIntrinsicWidth\":\"201\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./ap7WC59fJ.map", "// Generated by Framer (64bc75b)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,Link,RichText,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{Icon as Feather}from\"https://framerusercontent.com/modules/f0DboytQenYh21kfme7W/zb1zVBMZJKgPMiedOi0y/Feather.js\";const FeatherFonts=getFonts(Feather);const enabledGestures={OEu3bMGlV:{hover:true}};const serializationHash=\"framer-ChqYF\";const variantClassNames={OEu3bMGlV:\"framer-v-1s8b4z8\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={bounce:.2,delay:0,duration:.4,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const getProps=({height,hover,id,width,...props})=>{return{...props,Nm_Pp7eir:hover!==null&&hover!==void 0?hover:props.Nm_Pp7eir};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,Nm_Pp7eir,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({defaultVariant:\"OEu3bMGlV\",enabledGestures,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onMouseEnterh3iwof=activeVariantCallback(async(...args)=>{setGestureState({isHovered:true});if(Nm_Pp7eir){const res=await Nm_Pp7eir(...args);if(res===false)return false;}});const ref1=React.useRef(null);const isDisplayed=()=>{if(gestureVariant===\"OEu3bMGlV-hover\")return true;return false;};const defaultLayoutId=React.useId();const sharedStyleClassNames=[];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"fT5tX98hQ\"},openInNewTab:false,children:/*#__PURE__*/_jsxs(motion.a,{...restProps,...gestureHandlers,className:`${cx(serializationHash,...sharedStyleClassNames,\"framer-1s8b4z8\",className,classNames)} framer-1ubg8qp`,\"data-border\":true,\"data-framer-name\":\"Variant 1\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"OEu3bMGlV\",onMouseEnter:onMouseEnterh3iwof,ref:ref!==null&&ref!==void 0?ref:ref1,style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"rgb(156, 156, 156)\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",backgroundColor:\"rgb(255, 255, 255)\",borderBottomLeftRadius:0,borderBottomRightRadius:0,borderTopLeftRadius:0,borderTopRightRadius:0,boxShadow:\"0px 2px 4px 0px rgba(0, 0, 0, 0.15)\",...style},variants:{\"OEu3bMGlV-hover\":{borderBottomLeftRadius:50,borderBottomRightRadius:50,borderTopLeftRadius:50,borderTopRightRadius:50}},...addPropertyOverrides({\"OEu3bMGlV-hover\":{\"data-framer-name\":undefined}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"500\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-4b0feec4-9db6-4101-afda-88b05cd1c55e, rgb(222, 222, 222)))\"},children:\"Read process\"})}),className:\"framer-13t5bkk\",\"data-framer-name\":\"Leave\",fonts:[\"Inter-Medium\"],layoutDependency:layoutDependency,layoutId:\"EPvj8z3j6\",style:{\"--extracted-r6o4lv\":\"var(--token-4b0feec4-9db6-4101-afda-88b05cd1c55e, rgb(222, 222, 222))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},variants:{\"OEu3bMGlV-hover\":{\"--extracted-r6o4lv\":\"var(--token-c7a77078-b20d-4adb-8b16-60347ac9a0ed, rgb(0, 0, 0))\"}},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({\"OEu3bMGlV-hover\":{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"500\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-c7a77078-b20d-4adb-8b16-60347ac9a0ed, rgb(0, 0, 0)))\"},children:\"Read process\"})})}},baseVariant,gestureVariant)}),isDisplayed()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-3pba49-container\",layoutDependency:layoutDependency,layoutId:\"GeRH5BEfu-container\",style:{rotate:180},children:/*#__PURE__*/_jsx(Feather,{color:\"rgb(0, 0, 0)\",height:\"100%\",iconSearch:\"Home\",iconSelection:\"arrow-left\",id:\"GeRH5BEfu\",layoutId:\"GeRH5BEfu\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})]})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-ChqYF.framer-1ubg8qp, .framer-ChqYF .framer-1ubg8qp { display: block; }\",\".framer-ChqYF.framer-1s8b4z8 { align-content: center; align-items: center; cursor: pointer; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 55px; justify-content: center; overflow: hidden; padding: 18px 22px 18px 22px; position: relative; text-decoration: none; width: min-content; }\",\".framer-ChqYF .framer-13t5bkk { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-ChqYF .framer-3pba49-container { flex: none; height: 22px; position: relative; width: 22px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-ChqYF.framer-1s8b4z8 { gap: 0px; } .framer-ChqYF.framer-1s8b4z8 > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-ChqYF.framer-1s8b4z8 > :first-child { margin-left: 0px; } .framer-ChqYF.framer-1s8b4z8 > :last-child { margin-right: 0px; } }\",\".framer-ChqYF.framer-v-1s8b4z8.hover.framer-1s8b4z8 { will-change: var(--framer-will-change-override, transform); }\",\".framer-ChqYF.framer-v-1s8b4z8.hover .framer-13t5bkk { order: 0; }\",\".framer-ChqYF.framer-v-1s8b4z8.hover .framer-3pba49-container { order: 1; }\",'.framer-ChqYF[data-border=\"true\"]::after, .framer-ChqYF [data-border=\"true\"]::after { content: \"\"; border-width: var(--border-top-width, 0) var(--border-right-width, 0) var(--border-bottom-width, 0) var(--border-left-width, 0); border-color: var(--border-color, none); border-style: var(--border-style, none); width: 100%; height: 100%; position: absolute; box-sizing: border-box; left: 0; top: 0; border-radius: inherit; pointer-events: none; }'];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 55\n * @framerIntrinsicWidth 135\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"auto\",\"fixed\"]},\"Hh98Wk8Bk\":{\"layout\":[\"auto\",\"fixed\"]}}}\n * @framerVariables {\"Nm_Pp7eir\":\"hover\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerCI0wsA34w=withCSS(Component,css,\"framer-ChqYF\");export default FramerCI0wsA34w;FramerCI0wsA34w.displayName=\"Button_Process_Kasama\";FramerCI0wsA34w.defaultProps={height:55,width:135};addPropertyControls(FramerCI0wsA34w,{Nm_Pp7eir:{title:\"Hover\",type:ControlType.EventHandler}});addFonts(FramerCI0wsA34w,[{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/5A3Ce6C9YYmCjpQx9M4inSaKU.woff2\",weight:\"500\"},{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/Qx95Xyt0Ka3SGhinnbXIGpEIyP4.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/6mJuEAguuIuMog10gGvH5d3cl8.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/xYYWaj7wCU5zSQH0eXvSaS19wo.woff2\",weight:\"500\"},{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/otTaNuNpVK4RbdlT7zDDdKvQBA.woff2\",weight:\"500\"},{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/d3tHnaQIAeqiE5hGcRw4mmgWYU.woff2\",weight:\"500\"},{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/DolVirEGb34pEXEp8t8FQBSK4.woff2\",weight:\"500\"}]},...FeatherFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerCI0wsA34w\",\"slots\":[],\"annotations\":{\"framerDisplayContentsDiv\":\"false\",\"framerContractVersion\":\"1\",\"framerVariables\":\"{\\\"Nm_Pp7eir\\\":\\\"hover\\\"}\",\"framerImmutableVariables\":\"true\",\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicWidth\":\"135\",\"framerIntrinsicHeight\":\"55\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"fixed\\\"]},\\\"Hh98Wk8Bk\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"fixed\\\"]}}}\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./CI0wsA34w.map", "// Generated by Framer (0b8b5e5)\nimport{jsx as _jsx}from\"react/jsx-runtime\";import{addFonts,cx,SVG,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";const serializationHash=\"framer-MWi9K\";const variantClassNames={ZtJr2MIeC:\"framer-v-1teias0\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={bounce:.2,delay:0,duration:.4,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion(React.Fragment);const getProps=({height,id,width,...props})=>{return{...props};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({defaultVariant:\"ZtJr2MIeC\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const ref1=React.useRef(null);const defaultLayoutId=React.useId();const sharedStyleClassNames=[];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(motion.div,{...restProps,...gestureHandlers,className:cx(serializationHash,...sharedStyleClassNames,\"framer-1teias0\",className,classNames),\"data-framer-name\":\"Variant 1\",layoutDependency:layoutDependency,layoutId:\"ZtJr2MIeC\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{rotate:14,...style},children:/*#__PURE__*/_jsx(SVG,{className:\"framer-r4humu\",\"data-framer-name\":\"Vector 1581\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:73,intrinsicWidth:28,layoutDependency:layoutDependency,layoutId:\"l26umGgt4\",svg:'<svg width=\"28\" height=\"73\" viewBox=\"-1 -1 28 73\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M26 0H4.8L1 34H7.2L0 70.6L23 28.4H14.4L26 0Z\" fill=\"white\" stroke=\"black\" stroke-width=\"1.2\"/>\\n</svg>\\n',withExternalLayout:true})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-MWi9K.framer-v4uv18, .framer-MWi9K .framer-v4uv18 { display: block; }\",\".framer-MWi9K.framer-1teias0 { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-MWi9K .framer-r4humu { aspect-ratio: 0.3835616438356164 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 63px); position: relative; width: 24px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-MWi9K.framer-1teias0 { gap: 0px; } .framer-MWi9K.framer-1teias0 > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-MWi9K.framer-1teias0 > :first-child { margin-left: 0px; } .framer-MWi9K.framer-1teias0 > :last-child { margin-right: 0px; } }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 62.5\n * @framerIntrinsicWidth 24\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"auto\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerJ0vUilMxF=withCSS(Component,css,\"framer-MWi9K\");export default FramerJ0vUilMxF;FramerJ0vUilMxF.displayName=\"Bolt 2.0\";FramerJ0vUilMxF.defaultProps={height:62.5,width:24};addFonts(FramerJ0vUilMxF,[{explicitInter:true,fonts:[]}],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerJ0vUilMxF\",\"slots\":[],\"annotations\":{\"framerComponentViewportWidth\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]}}}\",\"framerContractVersion\":\"1\",\"framerImmutableVariables\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerIntrinsicWidth\":\"24\",\"framerIntrinsicHeight\":\"62.5\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./J0vUilMxF.map", "// Generated by Framer (0b8b5e5)\nimport{jsx as _jsx}from\"react/jsx-runtime\";import{addFonts,cx,RichText,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";const enabledGestures={kBZNjCjQG:{hover:true}};const serializationHash=\"framer-mXWVa\";const variantClassNames={kBZNjCjQG:\"framer-v-u8276u\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={bounce:.2,delay:0,duration:.4,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion(React.Fragment);const getProps=({height,id,width,...props})=>{return{...props};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({defaultVariant:\"kBZNjCjQG\",enabledGestures,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const ref1=React.useRef(null);const defaultLayoutId=React.useId();const sharedStyleClassNames=[];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(motion.div,{...restProps,...gestureHandlers,className:cx(serializationHash,...sharedStyleClassNames,\"framer-u8276u\",className,classNames),\"data-framer-name\":\"Variant 1\",layoutDependency:layoutDependency,layoutId:\"kBZNjCjQG\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{backgroundColor:\"var(--token-c9dfd335-2d51-4c47-a580-3b49ab4cfd39, rgb(119, 41, 255))\",borderBottomLeftRadius:0,borderBottomRightRadius:0,borderTopLeftRadius:0,borderTopRightRadius:0,...style},variants:{\"kBZNjCjQG-hover\":{backgroundColor:\"var(--token-afc6b3f2-13fc-4301-bb6e-994382f5de91, rgb(140, 74, 255))\",borderBottomLeftRadius:50,borderBottomRightRadius:50,borderTopLeftRadius:50,borderTopRightRadius:50}},...addPropertyOverrides({\"kBZNjCjQG-hover\":{\"data-framer-name\":undefined}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7SW50ZXItNTAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-e157f143-b996-488f-87ac-b1e88d47e04f, rgb(255, 255, 255)))\"},children:\"Unlocking soon \"})}),className:\"framer-1f6u7d3\",fonts:[\"GF;Inter-500\"],layoutDependency:layoutDependency,layoutId:\"zZXXMfvBC\",style:{\"--extracted-r6o4lv\":\"var(--token-e157f143-b996-488f-87ac-b1e88d47e04f, rgb(255, 255, 255))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-mXWVa.framer-1gsb0gb, .framer-mXWVa .framer-1gsb0gb { display: block; }\",\".framer-mXWVa.framer-u8276u { align-content: center; align-items: center; cursor: pointer; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 12px 22px 12px 22px; position: relative; width: min-content; }\",\".framer-mXWVa .framer-1f6u7d3 { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-mXWVa.framer-u8276u { gap: 0px; } .framer-mXWVa.framer-u8276u > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-mXWVa.framer-u8276u > :first-child { margin-left: 0px; } .framer-mXWVa.framer-u8276u > :last-child { margin-right: 0px; } }\",\".framer-mXWVa.framer-v-u8276u.hover.framer-u8276u { will-change: var(--framer-will-change-override, transform); }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 43\n * @framerIntrinsicWidth 151.5\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"auto\",\"auto\"]},\"EIHgS3gnm\":{\"layout\":[\"auto\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerLvif4xF6N=withCSS(Component,css,\"framer-mXWVa\");export default FramerLvif4xF6N;FramerLvif4xF6N.displayName=\"Button Secondary\";FramerLvif4xF6N.defaultProps={height:43,width:151.5};addFonts(FramerLvif4xF6N,[{explicitInter:true,fonts:[{family:\"Inter\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/inter/v18/UcCO3FwrK3iLTeHuS_nVMrMxCp50SjIw2boKoduKmMEVuI6fMZ1rib2Bg-4.woff2\",weight:\"500\"}]}],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerLvif4xF6N\",\"slots\":[],\"annotations\":{\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"EIHgS3gnm\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]}}}\",\"framerIntrinsicWidth\":\"151.5\",\"framerImmutableVariables\":\"true\",\"framerIntrinsicHeight\":\"43\",\"framerContractVersion\":\"1\",\"framerComponentViewportWidth\":\"true\",\"framerDisplayContentsDiv\":\"false\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Lvif4xF6N.map", "// Generated by Framer (0b8b5e5)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,Link,RichText,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{Icon as Feather}from\"https://framerusercontent.com/modules/f0DboytQenYh21kfme7W/zb1zVBMZJKgPMiedOi0y/Feather.js\";const FeatherFonts=getFonts(Feather);const cycleOrder=[\"d1KgWyuOU\",\"HEPc2qf0G\",\"XHevlFk3H\"];const serializationHash=\"framer-oxRPs\";const variantClassNames={d1KgWyuOU:\"framer-v-1vmxg1r\",HEPc2qf0G:\"framer-v-1vhndrk\",XHevlFk3H:\"framer-v-1jkbbii\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={bounce:.2,delay:0,duration:.4,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion(React.Fragment);const humanReadableVariantMap={\"Variant 1\":\"d1KgWyuOU\",Hover:\"HEPc2qf0G\",Leave:\"XHevlFk3H\"};const getProps=({height,hover,id,width,...props})=>{var _humanReadableVariantMap_props_variant,_ref;return{...props,fU7vlJOJd:hover!==null&&hover!==void 0?hover:props.fU7vlJOJd,variant:(_ref=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref!==void 0?_ref:\"d1KgWyuOU\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,fU7vlJOJd,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"d1KgWyuOU\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onMouseEnter3tvj6p=activeVariantCallback(async(...args)=>{setGestureState({isHovered:true});if(fU7vlJOJd){const res=await fU7vlJOJd(...args);if(res===false)return false;}setVariant(\"HEPc2qf0G\");});const onMouseLeave1s4ixof=activeVariantCallback(async(...args)=>{setGestureState({isHovered:false});setVariant(\"XHevlFk3H\");});const ref1=React.useRef(null);const isDisplayed=()=>{if(baseVariant===\"HEPc2qf0G\")return true;return false;};const defaultLayoutId=React.useId();const sharedStyleClassNames=[];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"kR32SpW8T\"},openInNewTab:false,children:/*#__PURE__*/_jsxs(motion.a,{...restProps,...gestureHandlers,className:`${cx(serializationHash,...sharedStyleClassNames,\"framer-1vmxg1r\",className,classNames)} framer-19iazem`,\"data-border\":true,\"data-framer-name\":\"Variant 1\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"d1KgWyuOU\",onMouseEnter:onMouseEnter3tvj6p,ref:ref!==null&&ref!==void 0?ref:ref1,style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"rgb(156, 156, 156)\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",backgroundColor:\"rgb(255, 255, 255)\",borderBottomLeftRadius:0,borderBottomRightRadius:0,borderTopLeftRadius:0,borderTopRightRadius:0,boxShadow:\"0px 2px 4px 0px rgba(0, 0, 0, 0.15)\",...style},variants:{HEPc2qf0G:{borderBottomLeftRadius:50,borderBottomRightRadius:50,borderTopLeftRadius:50,borderTopRightRadius:50}},...addPropertyOverrides({HEPc2qf0G:{\"data-framer-name\":\"Hover\",onMouseLeave:onMouseLeave1s4ixof},XHevlFk3H:{\"data-framer-name\":\"Leave\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"500\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-4b0feec4-9db6-4101-afda-88b05cd1c55e, rgb(222, 222, 222)))\"},children:\"Read process \"})}),className:\"framer-i7xg9h\",fonts:[\"Inter-Medium\"],layoutDependency:layoutDependency,layoutId:\"JdCPxaBqn\",style:{\"--extracted-r6o4lv\":\"var(--token-4b0feec4-9db6-4101-afda-88b05cd1c55e, rgb(222, 222, 222))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},variants:{HEPc2qf0G:{\"--extracted-r6o4lv\":\"var(--token-c7a77078-b20d-4adb-8b16-60347ac9a0ed, rgb(0, 0, 0))\"}},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({HEPc2qf0G:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"500\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-c7a77078-b20d-4adb-8b16-60347ac9a0ed, rgb(0, 0, 0)))\"},children:\"Read process \"})})}},baseVariant,gestureVariant)}),isDisplayed()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-16zpx5c-container\",layoutDependency:layoutDependency,layoutId:\"PUeDuA_YR-container\",children:/*#__PURE__*/_jsx(Feather,{color:\"var(--token-c7a77078-b20d-4adb-8b16-60347ac9a0ed, rgb(0, 0, 0))\",height:\"100%\",iconSearch:\"Home\",iconSelection:\"arrow-right\",id:\"PUeDuA_YR\",layoutId:\"PUeDuA_YR\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})]})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-oxRPs.framer-19iazem, .framer-oxRPs .framer-19iazem { display: block; }\",\".framer-oxRPs.framer-1vmxg1r { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 52px; justify-content: center; overflow: hidden; padding: 18px 22px 18px 22px; position: relative; text-decoration: none; width: min-content; }\",\".framer-oxRPs .framer-i7xg9h { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-oxRPs .framer-16zpx5c-container { flex: none; height: 20px; position: relative; width: 20px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-oxRPs.framer-1vmxg1r { gap: 0px; } .framer-oxRPs.framer-1vmxg1r > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-oxRPs.framer-1vmxg1r > :first-child { margin-left: 0px; } .framer-oxRPs.framer-1vmxg1r > :last-child { margin-right: 0px; } }\",\".framer-oxRPs.framer-v-1vhndrk.framer-1vmxg1r { will-change: var(--framer-will-change-override, transform); }\",'.framer-oxRPs[data-border=\"true\"]::after, .framer-oxRPs [data-border=\"true\"]::after { content: \"\"; border-width: var(--border-top-width, 0) var(--border-right-width, 0) var(--border-bottom-width, 0) var(--border-left-width, 0); border-color: var(--border-color, none); border-style: var(--border-style, none); width: 100%; height: 100%; position: absolute; box-sizing: border-box; left: 0; top: 0; border-radius: inherit; pointer-events: none; }'];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 52\n * @framerIntrinsicWidth 139\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"auto\",\"fixed\"]},\"HEPc2qf0G\":{\"layout\":[\"auto\",\"fixed\"]},\"XHevlFk3H\":{\"layout\":[\"auto\",\"fixed\"]}}}\n * @framerVariables {\"fU7vlJOJd\":\"hover\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerpDzvYq1b6=withCSS(Component,css,\"framer-oxRPs\");export default FramerpDzvYq1b6;FramerpDzvYq1b6.displayName=\"Button Process MotionLoop\";FramerpDzvYq1b6.defaultProps={height:52,width:139};addPropertyControls(FramerpDzvYq1b6,{variant:{options:[\"d1KgWyuOU\",\"HEPc2qf0G\",\"XHevlFk3H\"],optionTitles:[\"Variant 1\",\"Hover\",\"Leave\"],title:\"Variant\",type:ControlType.Enum},fU7vlJOJd:{title:\"Hover\",type:ControlType.EventHandler}});addFonts(FramerpDzvYq1b6,[{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/5A3Ce6C9YYmCjpQx9M4inSaKU.woff2\",weight:\"500\"},{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/Qx95Xyt0Ka3SGhinnbXIGpEIyP4.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/6mJuEAguuIuMog10gGvH5d3cl8.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/xYYWaj7wCU5zSQH0eXvSaS19wo.woff2\",weight:\"500\"},{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/otTaNuNpVK4RbdlT7zDDdKvQBA.woff2\",weight:\"500\"},{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/d3tHnaQIAeqiE5hGcRw4mmgWYU.woff2\",weight:\"500\"},{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/DolVirEGb34pEXEp8t8FQBSK4.woff2\",weight:\"500\"}]},...FeatherFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerpDzvYq1b6\",\"slots\":[],\"annotations\":{\"framerDisplayContentsDiv\":\"false\",\"framerImmutableVariables\":\"true\",\"framerIntrinsicHeight\":\"52\",\"framerIntrinsicWidth\":\"139\",\"framerVariables\":\"{\\\"fU7vlJOJd\\\":\\\"hover\\\"}\",\"framerComponentViewportWidth\":\"true\",\"framerContractVersion\":\"1\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"fixed\\\"]},\\\"HEPc2qf0G\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"fixed\\\"]},\\\"XHevlFk3H\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"fixed\\\"]}}}\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./pDzvYq1b6.map", "// Generated by Framer (63f9d4a)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,Link,RichText,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useVariantState,withCSS,withFX}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{Icon as Feather}from\"https://framerusercontent.com/modules/f0DboytQenYh21kfme7W/zb1zVBMZJKgPMiedOi0y/Feather.js\";const FeatherFonts=getFonts(Feather);const MotionAWithFX=withFX(motion.a);const cycleOrder=[\"UyuZcVuOj\",\"Q7BBs3fTo\",\"oPIeCmAmC\"];const serializationHash=\"framer-TfHvp\";const variantClassNames={oPIeCmAmC:\"framer-v-js842\",Q7BBs3fTo:\"framer-v-1yue3a4\",UyuZcVuOj:\"framer-v-bx3x1y\"};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 animation={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0};const transition1={bounce:.2,delay:0,duration:.4,type:\"spring\"};const animation1={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition1,x:0,y:0};const transition2={damping:30,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 Variants=motion.create(React.Fragment);const humanReadableVariantMap={\"Mouse leave\":\"oPIeCmAmC\",\"Variant 1\":\"UyuZcVuOj\",Hover:\"Q7BBs3fTo\"};const getProps=({height,id,width,...props})=>{var _humanReadableVariantMap_props_variant,_ref;return{...props,variant:(_ref=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref!==void 0?_ref:\"UyuZcVuOj\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"UyuZcVuOj\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onMouseEnter1fbou0m=activeVariantCallback(async(...args)=>{setGestureState({isHovered:true});setVariant(\"Q7BBs3fTo\");});const onMouseLeave1754jwx=activeVariantCallback(async(...args)=>{setGestureState({isHovered:false});setVariant(\"oPIeCmAmC\");});const ref1=React.useRef(null);const isDisplayed=()=>{if(baseVariant===\"Q7BBs3fTo\")return true;return false;};const defaultLayoutId=React.useId();const sharedStyleClassNames=[];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition2,children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"n0fUKkduB\"},openInNewTab:false,children:/*#__PURE__*/_jsxs(MotionAWithFX,{...restProps,...gestureHandlers,__framer__animate:{transition:transition1},__framer__animateOnce:false,__framer__enter:animation,__framer__exit:animation1,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,className:`${cx(serializationHash,...sharedStyleClassNames,\"framer-bx3x1y\",className,classNames)} framer-hj2984`,\"data-border\":true,\"data-framer-name\":\"Variant 1\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"UyuZcVuOj\",onMouseEnter:onMouseEnter1fbou0m,ref:ref!==null&&ref!==void 0?ref:ref1,style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"rgb(156, 156, 156)\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",backgroundColor:\"rgb(255, 255, 255)\",borderBottomLeftRadius:0,borderBottomRightRadius:0,borderTopLeftRadius:0,borderTopRightRadius:0,boxShadow:\"0px 2px 4px 0px rgba(0, 0, 0, 0.15)\",...style},variants:{Q7BBs3fTo:{\"--border-color\":\"var(--token-4b0feec4-9db6-4101-afda-88b05cd1c55e, rgb(163, 163, 163))\",borderBottomLeftRadius:50,borderBottomRightRadius:50,borderTopLeftRadius:50,borderTopRightRadius:50}},...addPropertyOverrides({oPIeCmAmC:{\"data-framer-name\":\"Mouse leave\"},Q7BBs3fTo:{\"data-framer-name\":\"Hover\",onMouseLeave:onMouseLeave1754jwx}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"500\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-4b0feec4-9db6-4101-afda-88b05cd1c55e, rgb(222, 222, 222)))\"},children:\"Read process \"})}),className:\"framer-1bh434c\",fonts:[\"Inter-Medium\"],layoutDependency:layoutDependency,layoutId:\"dvJ7npu2z\",style:{\"--extracted-r6o4lv\":\"var(--token-4b0feec4-9db6-4101-afda-88b05cd1c55e, rgb(222, 222, 222))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},variants:{oPIeCmAmC:{\"--extracted-r6o4lv\":\"var(--token-4b0feec4-9db6-4101-afda-88b05cd1c55e, rgb(194, 194, 194))\"}},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({oPIeCmAmC:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"500\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-4b0feec4-9db6-4101-afda-88b05cd1c55e, rgb(194, 194, 194)))\"},children:\"Read process \"})})},Q7BBs3fTo:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"500\"},children:\"Read process \"})})}},baseVariant,gestureVariant)}),isDisplayed()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-gsqkst-container\",layoutDependency:layoutDependency,layoutId:\"RIbdGB5Km-container\",style:{rotate:180},children:/*#__PURE__*/_jsx(Feather,{color:\"rgb(0, 0, 0)\",height:\"100%\",iconSearch:\"Home\",iconSelection:\"arrow-left\",id:\"RIbdGB5Km\",layoutId:\"RIbdGB5Km\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})]})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-TfHvp.framer-hj2984, .framer-TfHvp .framer-hj2984 { display: block; }\",\".framer-TfHvp.framer-bx3x1y { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 52px; justify-content: center; overflow: hidden; padding: 18px 22px 18px 22px; position: relative; text-decoration: none; width: min-content; }\",\".framer-TfHvp .framer-1bh434c { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-TfHvp .framer-gsqkst-container { flex: none; height: 22px; position: relative; width: 22px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-TfHvp.framer-bx3x1y { gap: 0px; } .framer-TfHvp.framer-bx3x1y > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-TfHvp.framer-bx3x1y > :first-child { margin-left: 0px; } .framer-TfHvp.framer-bx3x1y > :last-child { margin-right: 0px; } }\",\".framer-TfHvp.framer-v-1yue3a4.framer-bx3x1y { will-change: var(--framer-will-change-override, transform); }\",'.framer-TfHvp[data-border=\"true\"]::after, .framer-TfHvp [data-border=\"true\"]::after { content: \"\"; border-width: var(--border-top-width, 0) var(--border-right-width, 0) var(--border-bottom-width, 0) var(--border-left-width, 0); border-color: var(--border-color, none); border-style: var(--border-style, none); width: 100%; height: 100%; position: absolute; box-sizing: border-box; left: 0; top: 0; border-radius: inherit; pointer-events: none; }'];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 52\n * @framerIntrinsicWidth 139\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"auto\",\"fixed\"]},\"Q7BBs3fTo\":{\"layout\":[\"auto\",\"fixed\"]},\"oPIeCmAmC\":{\"layout\":[\"auto\",\"fixed\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerrHCokXwPn=withCSS(Component,css,\"framer-TfHvp\");export default FramerrHCokXwPn;FramerrHCokXwPn.displayName=\"Button Process Breakfree\";FramerrHCokXwPn.defaultProps={height:52,width:139};addPropertyControls(FramerrHCokXwPn,{variant:{options:[\"UyuZcVuOj\",\"Q7BBs3fTo\",\"oPIeCmAmC\"],optionTitles:[\"Variant 1\",\"Hover\",\"Mouse leave\"],title:\"Variant\",type:ControlType.Enum}});addFonts(FramerrHCokXwPn,[{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/5A3Ce6C9YYmCjpQx9M4inSaKU.woff2\",weight:\"500\"},{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/Qx95Xyt0Ka3SGhinnbXIGpEIyP4.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/6mJuEAguuIuMog10gGvH5d3cl8.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/xYYWaj7wCU5zSQH0eXvSaS19wo.woff2\",weight:\"500\"},{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/otTaNuNpVK4RbdlT7zDDdKvQBA.woff2\",weight:\"500\"},{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/d3tHnaQIAeqiE5hGcRw4mmgWYU.woff2\",weight:\"500\"},{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/DolVirEGb34pEXEp8t8FQBSK4.woff2\",weight:\"500\"}]},...FeatherFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerrHCokXwPn\",\"slots\":[],\"annotations\":{\"framerComponentViewportWidth\":\"true\",\"framerContractVersion\":\"1\",\"framerImmutableVariables\":\"true\",\"framerIntrinsicWidth\":\"139\",\"framerDisplayContentsDiv\":\"false\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"fixed\\\"]},\\\"Q7BBs3fTo\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"fixed\\\"]},\\\"oPIeCmAmC\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"fixed\\\"]}}}\",\"framerIntrinsicHeight\":\"52\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./rHCokXwPn.map", "// Generated by Framer (64bc75b)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,ComponentViewportProvider,Container,cx,GeneratedComponentContext,getFonts,Image,PropertyOverrides,RichText,useCustomCursors,useHydratedBreakpointVariants,useLocaleInfo,useRouteElementId,withCSS,withFX,withOptimizedAppearEffect}from\"framer\";import{LayoutGroup,motion}from\"framer-motion\";import*as React from\"react\";import{Icon as Feather}from\"https://framerusercontent.com/modules/f0DboytQenYh21kfme7W/zb1zVBMZJKgPMiedOi0y/Feather.js\";import{Video}from\"https://framerusercontent.com/modules/lRDHiNWNVWmE0lqtoVHP/K0mI40rrezffFjPjHAZX/Video.js\";import Contact from\"#framer/local/canvasComponent/ap7WC59fJ/ap7WC59fJ.js\";import Button_Process_Kasama from\"#framer/local/canvasComponent/CI0wsA34w/CI0wsA34w.js\";import Heart from\"#framer/local/canvasComponent/egLNTQHUG/egLNTQHUG.js\";import Bolt20 from\"#framer/local/canvasComponent/J0vUilMxF/J0vUilMxF.js\";import Film from\"#framer/local/canvasComponent/jXQzX0HE3/jXQzX0HE3.js\";import ButtonSecondary from\"#framer/local/canvasComponent/Lvif4xF6N/Lvif4xF6N.js\";import ButtonProcessMotionLoop from\"#framer/local/canvasComponent/pDzvYq1b6/pDzvYq1b6.js\";import ButtonProcessBreakfree from\"#framer/local/canvasComponent/rHCokXwPn/rHCokXwPn.js\";import Chocolate_bar from\"#framer/local/canvasComponent/wiAOVvmMq/wiAOVvmMq.js\";import Navigation from\"#framer/local/canvasComponent/Y5tH1hOin/Y5tH1hOin.js\";import Linkedin from\"#framer/local/canvasComponent/yyWk4OrSA/yyWk4OrSA.js\";import metadataProvider from\"#framer/local/webPageMetadata/augiA20Il/augiA20Il.js\";const NavigationFonts=getFonts(Navigation);const RichTextWithOptimizedAppearEffect=withOptimizedAppearEffect(RichText);const RichTextWithFX=withFX(RichText);const ButtonProcessBreakfreeFonts=getFonts(ButtonProcessBreakfree);const ContainerWithFX=withFX(Container);const ImageWithFX=withFX(Image);const ButtonProcessMotionLoopFonts=getFonts(ButtonProcessMotionLoop);const MotionDivWithFX=withFX(motion.div);const Button_Process_KasamaFonts=getFonts(Button_Process_Kasama);const VideoFonts=getFonts(Video);const ButtonSecondaryFonts=getFonts(ButtonSecondary);const FeatherFonts=getFonts(Feather);const ContactFonts=getFonts(Contact);const LinkedinFonts=getFonts(Linkedin);const Bolt20Fonts=getFonts(Bolt20);const HeartFonts=getFonts(Heart);const FilmFonts=getFonts(Film);const Chocolate_barFonts=getFonts(Chocolate_bar);const breakpoints={a82JIQMCt:\"(min-width: 810px) and (max-width: 1439px)\",vwQqX5ugU:\"(max-width: 809px)\",WQLkyLRf1:\"(min-width: 1440px)\"};const isBrowser=()=>typeof document!==\"undefined\";const serializationHash=\"framer-8EEMm\";const variantClassNames={a82JIQMCt:\"framer-v-1vehec8\",vwQqX5ugU:\"framer-v-leufzm\",WQLkyLRf1:\"framer-v-72rtr7\"};const transition1={bounce:.2,delay:0,duration:.3,type:\"spring\"};const transition2={damping:30,delay:.2,mass:1,stiffness:80,type:\"spring\"};const animation={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition2,x:0,y:0};const animation1={opacity:.001,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:150};const animation2={opacity:.001,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:120};const animation3={opacity:.001,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:100};const transition3={damping:30,delay:.4,mass:1,stiffness:80,type:\"spring\"};const animation4={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition3,x:0,y:0};const transition4={damping:30,delay:.3,mass:1,stiffness:80,type:\"spring\"};const animation5={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition4,x:0,y:0};const animation6={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:150};const transition5={damping:30,delay:.1,mass:1,stiffness:80,type:\"spring\"};const animation7={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition5,x:0,y:150};const animation8={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:120};const animation9={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition5,x:0,y:120};const animation10={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:100};const animation11={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition2,x:0,y:100};const animation12={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition2,x:0,y:150};const animation13={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition2,x:0,y:120};const animation14={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition4,x:0,y:100};const animation15={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition4,x:0,y:150};const animation16={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:60};const animation17={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition3,x:0,y:60};const animation18={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:48,y:0};const transition6={damping:30,delay:.5,mass:1,stiffness:80,type:\"spring\"};const animation19={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition6,x:48,y:0};const animation20={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition3,x:0,y:150};const animation21={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition4,x:0,y:120};const animation22={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition5,x:0,y:100};const transition7={damping:30,delay:.6,mass:1,stiffness:80,type:\"spring\"};const animation23={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition7,x:48,y:0};const animation24={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition6,x:0,y:150};const animation25={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:120,y:0};const transition8={damping:30,delay:0,mass:1,stiffness:80,type:\"spring\"};const animation26={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition8,x:120,y:0};const animation27={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:100,y:0};const animation28={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition8,x:100,y:0};const animation29={opacity:.001,rotate:45,scale:1,skewX:0,skewY:0,x:0,y:0};const transition9={bounce:.25,delay:.1,duration:.45,type:\"spring\"};const textEffect={effect:animation29,startDelay:.2,tokenization:\"character\",transition:transition9,trigger:\"onInView\",type:\"appear\"};const animation30={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition2,x:120,y:0};const animation31={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition2,x:100,y:0};const animation32={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition4,x:120,y:0};const animation33={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:48};const animation34={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition3,x:0,y:48};const animation35={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:-120,y:0};const animation36={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition8,x:-120,y:0};const animation37={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:-100,y:0};const animation38={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition8,x:-100,y:0};const animation39={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition2,x:-120,y:0};const metadata=metadataProvider();const humanReadableVariantMap={Desktop:\"WQLkyLRf1\",Phone:\"vwQqX5ugU\",Tablet:\"a82JIQMCt\"};const getProps=({height,id,width,...props})=>{var _humanReadableVariantMap_props_variant,_ref;return{...props,variant:(_ref=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref!==void 0?_ref:\"WQLkyLRf1\"};};const cursor={alignment:\"center\",component:Bolt20,offset:{x:20,y:20},placement:\"bottom\",transition:transition1,variant:\"ZtJr2MIeC\"};const cursor1={component:Heart,variant:\"Qwv8wadQc\"};const cursor2={component:Film,variant:\"HFd0H4SsC\"};const cursor3={component:Chocolate_bar,variant:\"sQTdcR7d2\"};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,...restProps}=getProps(props);React.useEffect(()=>{const metadata1=metadataProvider(undefined,activeLocale);if(metadata1.robots){let robotsTag=document.querySelector('meta[name=\"robots\"]');if(robotsTag){robotsTag.setAttribute(\"content\",metadata1.robots);}else{robotsTag=document.createElement(\"meta\");robotsTag.setAttribute(\"name\",\"robots\");robotsTag.setAttribute(\"content\",metadata1.robots);document.head.appendChild(robotsTag);}}},[undefined,activeLocale]);React.useInsertionEffect(()=>{const metadata1=metadataProvider(undefined,activeLocale);document.title=metadata1.title||\"\";if(metadata1.viewport){var _document_querySelector;(_document_querySelector=document.querySelector('meta[name=\"viewport\"]'))===null||_document_querySelector===void 0?void 0:_document_querySelector.setAttribute(\"content\",metadata1.viewport);}const bodyCls=metadata1.bodyClassName;if(bodyCls){const body=document.body;body.classList.forEach(c=>c.startsWith(\"framer-body-\")&&body.classList.remove(c));body.classList.add(`${metadata1.bodyClassName}-framer-8EEMm`);}return()=>{if(bodyCls)document.body.classList.remove(`${metadata1.bodyClassName}-framer-8EEMm`);};},[undefined,activeLocale]);const[baseVariant,hydratedBaseVariant]=useHydratedBreakpointVariants(variant,breakpoints,false);const gestureVariant=undefined;const ref1=React.useRef(null);const elementId=useRouteElementId(\"VlnGrZWyL\");const ref2=React.useRef(null);const elementId1=useRouteElementId(\"dyT_zAcrI\");const ref3=React.useRef(null);const elementId2=useRouteElementId(\"Ap8llzF74\");const ref4=React.useRef(null);const elementId3=useRouteElementId(\"HOnILHsS6\");const ref5=React.useRef(null);const defaultLayoutId=React.useId();const sharedStyleClassNames=[];useCustomCursors({\"13unqm0\":cursor2,\"18g5bi7\":cursor1,iir7om:cursor,q0cw0g:cursor3});return /*#__PURE__*/_jsx(GeneratedComponentContext.Provider,{value:{primaryVariantId:\"WQLkyLRf1\",variantClassNames},children:/*#__PURE__*/_jsxs(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:[/*#__PURE__*/_jsxs(motion.div,{...restProps,className:cx(serializationHash,...sharedStyleClassNames,\"framer-72rtr7\",className),\"data-framer-cursor\":\"iir7om\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{...style},children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-fntdjf\",\"data-framer-name\":\"Navigation\",name:\"Navigation\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:79,width:\"max(100vw, 1px)\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-tu4qkf-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{a82JIQMCt:{variant:\"uLxDgf9Eb\"},vwQqX5ugU:{variant:\"eensMNLJE\"}},children:/*#__PURE__*/_jsx(Navigation,{height:\"100%\",id:\"L19i4LIAW\",layoutId:\"L19i4LIAW\",style:{width:\"100%\"},variant:\"QSC1Fsmmr\",width:\"100%\"})})})})}),/*#__PURE__*/_jsxs(\"header\",{className:\"framer-14gxxm6\",\"data-framer-name\":\"Header\",name:\"Header\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{a82JIQMCt:{initial:animation2},vwQqX5ugU:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"SW50ZXItRXh0cmFCb2xk\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"44px\",\"--framer-font-weight\":\"800\",\"--framer-letter-spacing\":\"0px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(51, 51, 51)\"},children:\"UX/UI Designer\"})}),initial:animation3}},children:/*#__PURE__*/_jsx(RichTextWithOptimizedAppearEffect,{__fromCanvasComponent:true,animate:animation,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"SW50ZXItRXh0cmFCb2xk\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"82px\",\"--framer-font-weight\":\"800\",\"--framer-letter-spacing\":\"0px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(51, 51, 51)\"},children:\"UX/UI Designer\"})}),className:\"framer-1o8a0e\",\"data-framer-appear-id\":\"1o8a0e\",fonts:[\"Inter-ExtraBold\"],initial:animation1,optimized:true,verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{a82JIQMCt:{initial:animation2},vwQqX5ugU:{animate:animation5,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNTAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(136, 136, 136)\"},children:\"I\u2019m a Vancouver-based UX/UI designer who turns bold ideas into captivating experiences. With a passion for building micro-interactions and intuitive nudges, I craft user-centric solutions from research to stunning designs.\"})}),initial:animation3}},children:/*#__PURE__*/_jsx(RichTextWithOptimizedAppearEffect,{__fromCanvasComponent:true,animate:animation4,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNTAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(136, 136, 136)\"},children:\"I\u2019m a Vancouver-based UX/UI designer who turns bold ideas into captivating experiences. With a passion for building micro-interactions and intuitive nudges, I craft user-centric solutions from research to stunning designs.\"})}),className:\"framer-9lgc2k\",\"data-framer-appear-id\":\"9lgc2k\",fonts:[\"GF;Inter-500\"],initial:animation1,optimized:true,verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-33ubix\",\"data-framer-cursor\":\"18g5bi7\",\"data-framer-name\":\"Breakfree parent cont.\",id:elementId,name:\"Breakfree parent cont.\",ref:ref2,children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-roo8g0\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-bdjmvs\",\"data-framer-name\":\"Content\",name:\"Content\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{a82JIQMCt:{__framer__enter:animation8,__framer__exit:animation9,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNzAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"40px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-2px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(51, 51, 51)\"},children:\"Breakfree\"})})},vwQqX5ugU:{__framer__animate:{transition:transition2},__framer__enter:animation10,__framer__exit:animation11,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNzAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"30px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-2px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(51, 51, 51)\"},children:\"Breakfree\"})})}},children:/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition5},__framer__animateOnce:true,__framer__enter:animation6,__framer__exit:animation7,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNzAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"50px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-2px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(51, 51, 51)\"},children:\"Breakfree\"})}),className:\"framer-1i6sx32\",fonts:[\"GF;Inter-700\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{a82JIQMCt:{__framer__enter:animation8,__framer__exit:animation13},vwQqX5ugU:{__framer__animate:{transition:transition4},__framer__enter:animation10,__framer__exit:animation14,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNTAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(136, 136, 136)\"},children:\"Tackling separation challenges with a positive and humorous approach, this program provides a bright and soothing environment to handle breakup hurdles, offering innovative methods and pertinent content to aid persons in moving forward happily.\"})})}},children:/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation6,__framer__exit:animation12,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNTAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(136, 136, 136)\"},children:\"Tackling separation challenges with a positive and humorous approach, this program provides a bright and soothing environment to handle breakup hurdles, offering innovative methods and pertinent content to aid persons in moving forward happily.\"})}),className:\"framer-o72500\",fonts:[\"GF;Inter-500\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:52,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{a82JIQMCt:{__framer__animate:{transition:transition3},__framer__enter:animation16,__framer__exit:animation17},vwQqX5ugU:{__framer__animate:{transition:transition6},__framer__enter:animation18,__framer__exit:animation19,__framer__threshold:.5}},children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition4},__framer__animateOnce:true,__framer__enter:animation6,__framer__exit:animation15,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1t6s5vj-container\",children:/*#__PURE__*/_jsx(ButtonProcessBreakfree,{height:\"100%\",id:\"acOvEnn2k\",layoutId:\"acOvEnn2k\",variant:\"UyuZcVuOj\",width:\"100%\"})})})})]})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{a82JIQMCt:{__framer__animate:{transition:transition4},__framer__enter:animation8,__framer__exit:animation21},vwQqX5ugU:{__framer__animate:{transition:transition5},__framer__enter:animation10,__framer__exit:animation22,background:{alt:\"\",fit:\"fit\",intrinsicHeight:720,intrinsicWidth:960,pixelHeight:2344,pixelWidth:2906,positionX:\"center\",positionY:\"center\",sizes:\"min(100vw - 72px, 700px)\",src:\"https://framerusercontent.com/images/OQYOBRRram5WeWKUiDJc1YECY.jpg?scale-down-to=1024&lossless=1\",srcSet:\"https://framerusercontent.com/images/OQYOBRRram5WeWKUiDJc1YECY.jpg?scale-down-to=512&lossless=1 512w,https://framerusercontent.com/images/OQYOBRRram5WeWKUiDJc1YECY.jpg?scale-down-to=1024&lossless=1 1024w,https://framerusercontent.com/images/OQYOBRRram5WeWKUiDJc1YECY.jpg?scale-down-to=2048&lossless=1 2048w,https://framerusercontent.com/images/OQYOBRRram5WeWKUiDJc1YECY.jpg?lossless=1 2906w\"}}},children:/*#__PURE__*/_jsx(ImageWithFX,{__framer__animate:{transition:transition3},__framer__animateOnce:true,__framer__enter:animation6,__framer__exit:animation20,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,background:{alt:\"\",fit:\"fit\",intrinsicHeight:720,intrinsicWidth:960,pixelHeight:2344,pixelWidth:2906,positionX:\"center\",positionY:\"center\",sizes:\"min(max((100vw - 80px) / 2, 1px), 700px)\",src:\"https://framerusercontent.com/images/OQYOBRRram5WeWKUiDJc1YECY.jpg?scale-down-to=1024&lossless=1\",srcSet:\"https://framerusercontent.com/images/OQYOBRRram5WeWKUiDJc1YECY.jpg?scale-down-to=512&lossless=1 512w,https://framerusercontent.com/images/OQYOBRRram5WeWKUiDJc1YECY.jpg?scale-down-to=1024&lossless=1 1024w,https://framerusercontent.com/images/OQYOBRRram5WeWKUiDJc1YECY.jpg?scale-down-to=2048&lossless=1 2048w,https://framerusercontent.com/images/OQYOBRRram5WeWKUiDJc1YECY.jpg?lossless=1 2906w\"},className:\"framer-4yh75n\",\"data-framer-name\":\"Image\",name:\"Image\",style:{scale:1.1}})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-g7mbi3\",\"data-framer-cursor\":\"13unqm0\",\"data-framer-name\":\"MotionLoop parent cont.\",name:\"MotionLoop parent cont.\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1bemcv3\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-t6gm2q\",\"data-framer-name\":\"Content\",name:\"Content\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{a82JIQMCt:{__framer__enter:animation8,__framer__exit:animation9,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNzAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"40px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-1.8px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(51, 51, 51)\"},children:\"MotionLoop Studio\"})})},vwQqX5ugU:{__framer__animate:{transition:transition2},__framer__enter:animation10,__framer__exit:animation11,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNzAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"30px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-1.2px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(51, 51, 51)\"},children:\"MotionLoop Studio\"})})}},children:/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition5},__framer__animateOnce:true,__framer__enter:animation6,__framer__exit:animation7,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNzAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"50px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-2px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(51, 51, 51)\"},children:\"MotionLoop Studio\"})}),className:\"framer-192isep\",fonts:[\"GF;Inter-700\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{a82JIQMCt:{__framer__enter:animation8,__framer__exit:animation13},vwQqX5ugU:{__framer__animate:{transition:transition4},__framer__enter:animation10,__framer__exit:animation14,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h2\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNTAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(136, 136, 136)\"},children:[\"Co-designed a platform for a circular economy in the film industry, including visual design, logo, layout, and a physical mock-up. Applied user research, wireframing, prototyping, and usability testing for a seamless experience.\",/*#__PURE__*/_jsx(\"br\",{}),/*#__PURE__*/_jsx(\"br\",{}),/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNTAwaXRhbGlj\",\"--framer-font-style\":\"italic\",\"--framer-text-color\":\"var(--token-4c5190af-143e-46e4-881a-422677648564, rgb(64, 64, 64))\"},children:\"*2023 Nomination for UX Design Awards.\"})]})})}},children:/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation6,__framer__exit:animation12,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h2\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNTAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(136, 136, 136)\"},children:[\"Co-designed a platform for a circular economy in the film industry, including visual design, logo, layout, and a physical mock-up. Applied user research, wireframing, prototyping, and usability testing for a seamless experience.\",/*#__PURE__*/_jsx(\"br\",{}),/*#__PURE__*/_jsx(\"br\",{}),/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNTAwaXRhbGlj\",\"--framer-font-style\":\"italic\",\"--framer-text-color\":\"var(--token-4c5190af-143e-46e4-881a-422677648564, rgb(64, 64, 64))\"},children:\"*2023 Nomination for UX Design Awards.\"})]})}),className:\"framer-2c8ed1\",fonts:[\"GF;Inter-500\",\"GF;Inter-500italic\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:52,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{a82JIQMCt:{__framer__animate:{transition:transition3},__framer__enter:animation16,__framer__exit:animation17},vwQqX5ugU:{__framer__animate:{transition:transition6},__framer__enter:animation18,__framer__exit:animation19,__framer__threshold:.5}},children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition4},__framer__animateOnce:true,__framer__enter:animation6,__framer__exit:animation15,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1iwquqp-container\",children:/*#__PURE__*/_jsx(ButtonProcessMotionLoop,{height:\"100%\",id:\"ZL1q7vtLc\",layoutId:\"ZL1q7vtLc\",style:{height:\"100%\"},variant:\"d1KgWyuOU\",width:\"100%\"})})})})]})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{a82JIQMCt:{__framer__animate:{transition:transition4},__framer__enter:animation8,__framer__exit:animation21,background:{alt:\"\",fit:\"fit\",intrinsicHeight:720,intrinsicWidth:960,pixelHeight:1786,pixelWidth:3338,positionX:\"center\",positionY:\"center\",sizes:\"max((100vw - 80px) / 2, 1px)\",src:\"https://framerusercontent.com/images/Uy0GOqUmuQMaNBmiZAwtKQWgUM.jpg?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/Uy0GOqUmuQMaNBmiZAwtKQWgUM.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/Uy0GOqUmuQMaNBmiZAwtKQWgUM.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/Uy0GOqUmuQMaNBmiZAwtKQWgUM.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/Uy0GOqUmuQMaNBmiZAwtKQWgUM.jpg 3338w\"}},vwQqX5ugU:{__framer__animate:{transition:transition5},__framer__enter:animation10,__framer__exit:animation22,background:{alt:\"\",fit:\"fit\",intrinsicHeight:720,intrinsicWidth:960,pixelHeight:1786,pixelWidth:3338,positionX:\"center\",positionY:\"center\",sizes:\"min(100vw - 72px, 700px)\",src:\"https://framerusercontent.com/images/Uy0GOqUmuQMaNBmiZAwtKQWgUM.jpg?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/Uy0GOqUmuQMaNBmiZAwtKQWgUM.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/Uy0GOqUmuQMaNBmiZAwtKQWgUM.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/Uy0GOqUmuQMaNBmiZAwtKQWgUM.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/Uy0GOqUmuQMaNBmiZAwtKQWgUM.jpg 3338w\"}}},children:/*#__PURE__*/_jsx(ImageWithFX,{__framer__animate:{transition:transition3},__framer__animateOnce:true,__framer__enter:animation6,__framer__exit:animation20,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,background:{alt:\"\",fit:\"fit\",intrinsicHeight:720,intrinsicWidth:960,pixelHeight:1786,pixelWidth:3338,positionX:\"center\",positionY:\"center\",sizes:\"min(max((100vw - 80px) / 2, 1px), 700px)\",src:\"https://framerusercontent.com/images/Uy0GOqUmuQMaNBmiZAwtKQWgUM.jpg?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/Uy0GOqUmuQMaNBmiZAwtKQWgUM.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/Uy0GOqUmuQMaNBmiZAwtKQWgUM.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/Uy0GOqUmuQMaNBmiZAwtKQWgUM.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/Uy0GOqUmuQMaNBmiZAwtKQWgUM.jpg 3338w\"},className:\"framer-bu73m9\",\"data-framer-name\":\"Image\",name:\"Image\"})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-u1lwtb\",\"data-framer-name\":\"DoorDash parent cont.\",name:\"DoorDash parent cont.\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1abefmf\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1lu6k8w\",\"data-framer-name\":\"Content\",name:\"Content\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{a82JIQMCt:{__framer__enter:animation8,__framer__exit:animation9,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNzAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"40px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-2px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(51, 51, 51)\"},children:\"DoorDash\"})})},vwQqX5ugU:{__framer__animate:{transition:transition2},__framer__enter:animation10,__framer__exit:animation11,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNzAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"30px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-2px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(51, 51, 51)\"},children:\"DoorDash\"})})}},children:/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition5},__framer__animateOnce:true,__framer__enter:animation6,__framer__exit:animation7,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNzAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"50px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-2px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(51, 51, 51)\"},children:\"DoorDash\"})}),className:\"framer-n2emc4\",fonts:[\"GF;Inter-700\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{a82JIQMCt:{__framer__enter:animation8,__framer__exit:animation13},vwQqX5ugU:{__framer__animate:{transition:transition4},__framer__enter:animation10,__framer__exit:animation14,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNTAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(136, 136, 136)\"},children:\"Revamped the DoorDash app with streamlined navigation and enhanced visual design. Applied user research, wireframing, and prototyping to improve the food delivery experience.\"})})}},children:/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation6,__framer__exit:animation12,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNTAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(136, 136, 136)\"},children:\"Revamped the DoorDash app with streamlined navigation and enhanced visual design. Applied user research, wireframing, and prototyping to improve the food delivery experience.\"})}),className:\"framer-1312qef\",fonts:[\"GF;Inter-500\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{a82JIQMCt:{__framer__animate:{transition:transition3},__framer__enter:animation16,__framer__exit:animation17},vwQqX5ugU:{__framer__animate:{transition:transition7},__framer__enter:animation18,__framer__exit:animation23,__framer__threshold:.5}},children:/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition4},__framer__animateOnce:true,__framer__enter:animation6,__framer__exit:animation15,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-hmrgmb\",\"data-border\":true,\"data-framer-name\":\"Button Process Breakfree\",name:\"Button Process Breakfree\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"500\",\"--framer-text-color\":\"var(--token-4b0feec4-9db6-4101-afda-88b05cd1c55e, rgb(222, 222, 222))\"},children:\"Coming soon\"})}),className:\"framer-17ie0hk\",fonts:[\"Inter-Medium\"],verticalAlignment:\"top\",withExternalLayout:true})})})]})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{a82JIQMCt:{__framer__animate:{transition:transition4},__framer__exit:animation15},vwQqX5ugU:{__framer__animate:{transition:transition5},__framer__enter:animation10,__framer__exit:animation22,background:{alt:\"\",fit:\"fit\",intrinsicHeight:720,intrinsicWidth:960,pixelHeight:1997,pixelWidth:2100,positionX:\"center\",positionY:\"center\",sizes:\"min(100vw - 72px, 700px)\",src:\"https://framerusercontent.com/images/JlaDZ5UbX49rPQ2yP9rWdwhDsjk.jpg?scale-down-to=1024&lossless=1\",srcSet:\"https://framerusercontent.com/images/JlaDZ5UbX49rPQ2yP9rWdwhDsjk.jpg?scale-down-to=512&lossless=1 512w,https://framerusercontent.com/images/JlaDZ5UbX49rPQ2yP9rWdwhDsjk.jpg?scale-down-to=1024&lossless=1 1024w,https://framerusercontent.com/images/JlaDZ5UbX49rPQ2yP9rWdwhDsjk.jpg?scale-down-to=2048&lossless=1 2048w,https://framerusercontent.com/images/JlaDZ5UbX49rPQ2yP9rWdwhDsjk.jpg?lossless=1 2100w\"}}},children:/*#__PURE__*/_jsx(ImageWithFX,{__framer__animate:{transition:transition3},__framer__animateOnce:true,__framer__enter:animation6,__framer__exit:animation20,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,background:{alt:\"\",fit:\"fit\",intrinsicHeight:720,intrinsicWidth:960,pixelHeight:1997,pixelWidth:2100,positionX:\"center\",positionY:\"center\",sizes:\"min(max((100vw - 80px) / 2, 1px), 700px)\",src:\"https://framerusercontent.com/images/JlaDZ5UbX49rPQ2yP9rWdwhDsjk.jpg?scale-down-to=1024&lossless=1\",srcSet:\"https://framerusercontent.com/images/JlaDZ5UbX49rPQ2yP9rWdwhDsjk.jpg?scale-down-to=512&lossless=1 512w,https://framerusercontent.com/images/JlaDZ5UbX49rPQ2yP9rWdwhDsjk.jpg?scale-down-to=1024&lossless=1 1024w,https://framerusercontent.com/images/JlaDZ5UbX49rPQ2yP9rWdwhDsjk.jpg?scale-down-to=2048&lossless=1 2048w,https://framerusercontent.com/images/JlaDZ5UbX49rPQ2yP9rWdwhDsjk.jpg?lossless=1 2100w\"},className:\"framer-2vso8a\",\"data-framer-name\":\"Image\",name:\"Image\",style:{scale:.8}})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-m1xpof\",\"data-framer-cursor\":\"q0cw0g\",\"data-framer-name\":\"Kasama parent cont.\",name:\"Kasama parent cont.\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-cfh772\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-10rvjii\",\"data-framer-name\":\"Content\",name:\"Content\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{a82JIQMCt:{__framer__enter:animation8,__framer__exit:animation9,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNzAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"40px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-2px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(51, 51, 51)\"},children:\"Kasama Chocolate\"})})},vwQqX5ugU:{__framer__animate:{transition:transition2},__framer__exit:animation12,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNzAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"30px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-2px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(51, 51, 51)\"},children:\"Kasama Chocolate\"})})}},children:/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition5},__framer__animateOnce:true,__framer__enter:animation6,__framer__exit:animation7,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNzAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"50px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-2px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(51, 51, 51)\"},children:\"Kasama Chocolate\"})}),className:\"framer-1jwanoi\",fonts:[\"GF;Inter-700\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{a82JIQMCt:{__framer__enter:animation8,__framer__exit:animation13},vwQqX5ugU:{__framer__animate:{transition:transition4},__framer__enter:animation10,__framer__exit:animation14,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNTAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(136, 136, 136)\"},children:\"Collaborated to optimize the delivery process of Kasama Chocolate, focusing on elevating packaging standards, transit protocols, and customer engagements, assuring an effortless and enjoyable all-inclusive experience.\"})})}},children:/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation6,__framer__exit:animation12,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNTAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(136, 136, 136)\"},children:\"Collaborated to optimize the delivery process of Kasama Chocolate, focusing on elevating packaging standards, transit protocols, and customer engagements, assuring an effortless and enjoyable all-inclusive experience.\"})}),className:\"framer-184ziwz\",fonts:[\"GF;Inter-500\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:55,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{a82JIQMCt:{__framer__animate:{transition:transition3},__framer__enter:animation16,__framer__exit:animation17},vwQqX5ugU:{__framer__enter:animation18,__framer__exit:animation19,__framer__threshold:.5}},children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition6},__framer__animateOnce:true,__framer__enter:animation6,__framer__exit:animation24,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1jp41pf-container\",children:/*#__PURE__*/_jsx(Button_Process_Kasama,{height:\"100%\",id:\"B_SWHUuQf\",layoutId:\"B_SWHUuQf\",style:{height:\"100%\"},width:\"100%\"})})})})]})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{a82JIQMCt:{__framer__animate:{transition:transition4},__framer__enter:animation8,__framer__exit:animation21},vwQqX5ugU:{__framer__animate:{transition:transition5},__framer__enter:animation10,__framer__exit:animation22,background:{alt:\"\",fit:\"fit\",intrinsicHeight:720,intrinsicWidth:960,pixelHeight:1931,pixelWidth:2897,positionX:\"center\",positionY:\"center\",sizes:\"min(100vw - 72px, 700px)\",src:\"https://framerusercontent.com/images/h8YWGOCdwonfXMV1LUwzWO2jnf0.jpg?scale-down-to=1024&lossless=1\",srcSet:\"https://framerusercontent.com/images/h8YWGOCdwonfXMV1LUwzWO2jnf0.jpg?scale-down-to=512&lossless=1 512w,https://framerusercontent.com/images/h8YWGOCdwonfXMV1LUwzWO2jnf0.jpg?scale-down-to=1024&lossless=1 1024w,https://framerusercontent.com/images/h8YWGOCdwonfXMV1LUwzWO2jnf0.jpg?scale-down-to=2048&lossless=1 2048w,https://framerusercontent.com/images/h8YWGOCdwonfXMV1LUwzWO2jnf0.jpg?lossless=1 2897w\"}}},children:/*#__PURE__*/_jsx(ImageWithFX,{__framer__animate:{transition:transition3},__framer__animateOnce:true,__framer__enter:animation6,__framer__exit:animation20,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,background:{alt:\"\",fit:\"fit\",intrinsicHeight:720,intrinsicWidth:960,pixelHeight:1931,pixelWidth:2897,positionX:\"center\",positionY:\"center\",sizes:\"min(max((100vw - 80px) / 2, 1px), 700px)\",src:\"https://framerusercontent.com/images/h8YWGOCdwonfXMV1LUwzWO2jnf0.jpg?scale-down-to=1024&lossless=1\",srcSet:\"https://framerusercontent.com/images/h8YWGOCdwonfXMV1LUwzWO2jnf0.jpg?scale-down-to=512&lossless=1 512w,https://framerusercontent.com/images/h8YWGOCdwonfXMV1LUwzWO2jnf0.jpg?scale-down-to=1024&lossless=1 1024w,https://framerusercontent.com/images/h8YWGOCdwonfXMV1LUwzWO2jnf0.jpg?scale-down-to=2048&lossless=1 2048w,https://framerusercontent.com/images/h8YWGOCdwonfXMV1LUwzWO2jnf0.jpg?lossless=1 2897w\"},className:\"framer-wnkscd\",\"data-framer-name\":\"Image\",name:\"Image\",style:{scale:.9}})})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-12b3f7q\",\"data-framer-name\":\"Little touches\",id:elementId1,name:\"Little touches\",ref:ref3,children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-1olt68u\",\"data-framer-name\":\"Features\",name:\"Features\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-186z2si\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-zzio1h-container\",children:/*#__PURE__*/_jsx(Video,{backgroundColor:\"rgba(0, 0, 0, 0)\",borderRadius:20,bottomLeftRadius:20,bottomRightRadius:20,controls:false,height:\"100%\",id:\"HBCE7nvPP\",isMixedBorderRadius:false,layoutId:\"HBCE7nvPP\",loop:true,muted:true,objectFit:\"cover\",playing:true,posterEnabled:false,srcFile:\"https://framerusercontent.com/assets/7H5UoVJ97je6XqSleX7Pt07uDks.mp4\",srcType:\"Upload\",srcUrl:\"https://assets.mixkit.co/videos/preview/mixkit-shining-sun-in-the-sky-surrounded-by-moving-clouds-31793-small.mp4\",startTime:0,style:{height:\"100%\",width:\"100%\"},topLeftRadius:20,topRightRadius:20,volume:25,width:\"100%\"})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-19eh7a8\",\"data-framer-name\":\"Content\",name:\"Content\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{a82JIQMCt:{__framer__enter:animation27,__framer__exit:animation28,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNzAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"40px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-2px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-e157f143-b996-488f-87ac-b1e88d47e04f, rgb(255, 255, 255))\"},children:\"Little Touches, Major Wow.\"})})},vwQqX5ugU:{__framer__styleAppearEffectEnabled:undefined,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNzAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"34px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-2px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-e157f143-b996-488f-87ac-b1e88d47e04f, rgb(255, 255, 255))\"},children:\"Little Touches, Major Wow.\"})}),effect:textEffect}},children:/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition8},__framer__animateOnce:true,__framer__enter:animation25,__framer__exit:animation26,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNzAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"44px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-2px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-e157f143-b996-488f-87ac-b1e88d47e04f, rgb(255, 255, 255))\"},children:\"Little Touches, Major Wow.\"})}),className:\"framer-jj83pm\",fonts:[\"GF;Inter-700\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{a82JIQMCt:{__framer__enter:animation27,__framer__exit:animation31},vwQqX5ugU:{__framer__animate:{transition:transition4},__framer__enter:animation10,__framer__exit:animation14,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNTAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(136, 136, 136)\"},children:\"I love micro-interactions for their endless creativity and innovation. Always exploring new design approaches, I see these subtle details as a playground for experimentation. They enhance usability, add charm, and turn routine actions into engaging, memorable moments, giving each design a personal, dynamic touch.\"})})}},children:/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation25,__framer__exit:animation30,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNTAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(136, 136, 136)\"},children:\"I love micro-interactions for their endless creativity and innovation. Always exploring new design approaches, I see these subtle details as a playground for experimentation. They enhance usability, add charm, and turn routine actions into engaging, memorable moments, giving each design a personal, dynamic touch.\"})}),className:\"framer-gij8rv\",fonts:[\"GF;Inter-500\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:43,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{vwQqX5ugU:{__framer__animate:{transition:transition3},__framer__enter:animation33,__framer__exit:animation34}},children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition4},__framer__animateOnce:true,__framer__enter:animation25,__framer__exit:animation32,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-ont9qc-container\",children:/*#__PURE__*/_jsx(ButtonSecondary,{height:\"100%\",id:\"rq4lQIUwv\",layoutId:\"rq4lQIUwv\",width:\"100%\"})})})})]})]})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-ss55zs\",\"data-framer-name\":\"Deep think\",id:elementId2,name:\"Deep think\",ref:ref4,children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-1r94kyn\",\"data-framer-name\":\"Features\",name:\"Features\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-o14byw\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-ly7zc4\",\"data-framer-name\":\"Content\",name:\"Content\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{a82JIQMCt:{__framer__enter:animation37,__framer__exit:animation38,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNzAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"52px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-2px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-e157f143-b996-488f-87ac-b1e88d47e04f, rgb(255, 255, 255))\"},children:\"Deep thinker. Shaping the unseen.\"})})},vwQqX5ugU:{__framer__styleAppearEffectEnabled:undefined,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNzAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"40px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-2px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-e157f143-b996-488f-87ac-b1e88d47e04f, rgb(255, 255, 255))\"},children:\"Deep thinker. Shaping the unseen.\"})}),effect:textEffect}},children:/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition8},__framer__animateOnce:true,__framer__enter:animation35,__framer__exit:animation36,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNzAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"58px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-2px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-e157f143-b996-488f-87ac-b1e88d47e04f, rgb(255, 255, 255))\"},children:\"Deep thinker. Shaping the unseen.\"})}),className:\"framer-o5zt14\",fonts:[\"GF;Inter-700\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{vwQqX5ugU:{__framer__animate:{transition:transition4},__framer__enter:animation10,__framer__exit:animation14,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNTAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(136, 136, 136)\"},children:\"I'm an interaction designer fueled by a lifelong passion for creating thoughtful, engaging experiences. From early sketching to solving complex design challenges, I blend creativity with a deep understanding of human behavior, honed through my work in fashion and real estate. Known for my energy and attention to detail, I turn ideas into functional, delightful interactions. Constantly evolving and pushing boundaries, I\u2019m driven by a love for design and a desire to craft experiences that leave a lasting impact.\"})})}},children:/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation35,__framer__exit:animation39,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNTAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(136, 136, 136)\"},children:\"I'm an interaction designer fueled by a lifelong passion for creating thoughtful, engaging experiences. From early sketching to solving complex design challenges, I blend creativity with a deep understanding of human behavior, honed through my work in fashion and real estate. Known for my energy and attention to detail, I turn ideas into functional, delightful interactions. Constantly evolving and pushing boundaries, I\u2019m driven by a love for design and a desire to craft experiences that leave a lasting impact.\"})}),className:\"framer-c0qec\",fonts:[\"GF;Inter-500\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{vwQqX5ugU:{background:{alt:\"\",fit:\"fill\",pixelHeight:1334,pixelWidth:750,positionX:\"54.4%\",positionY:\"66.4%\",sizes:\"min(max(100vw - 72px, 1px), 1000px)\",src:\"https://framerusercontent.com/images/T8pWVtAH1q2KOlA0fZpzZw2pcY.jpeg\",srcSet:\"https://framerusercontent.com/images/T8pWVtAH1q2KOlA0fZpzZw2pcY.jpeg?scale-down-to=1024 575w,https://framerusercontent.com/images/T8pWVtAH1q2KOlA0fZpzZw2pcY.jpeg 750w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:1334,pixelWidth:750,positionX:\"54.4%\",positionY:\"66.4%\",sizes:\"min(max(100vw - 80px, 1px), 1000px)\",src:\"https://framerusercontent.com/images/T8pWVtAH1q2KOlA0fZpzZw2pcY.jpeg\",srcSet:\"https://framerusercontent.com/images/T8pWVtAH1q2KOlA0fZpzZw2pcY.jpeg?scale-down-to=1024 575w,https://framerusercontent.com/images/T8pWVtAH1q2KOlA0fZpzZw2pcY.jpeg 750w\"},className:\"framer-siubxh\"})})]})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1okb8x5\",\"data-framer-name\":\"Lets grab coffee\",id:elementId3,name:\"Lets grab coffee\",ref:ref5,children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1jzgzr8\",\"data-framer-name\":\"Wrapper\",name:\"Wrapper\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1fddziw\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{vwQqX5ugU:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNzAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"30px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-2.1px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-b9c3c957-2c66-49c4-9732-fa196fddac20, rgb(0, 17, 34))\"},children:\"Let's grab a coffee! \"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNzAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"40px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-2.1px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-b9c3c957-2c66-49c4-9732-fa196fddac20, rgb(0, 17, 34))\"},children:\"Let's grab a coffee! \"})}),className:\"framer-1asw4bf\",fonts:[\"GF;Inter-700\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1njfr7a-container\",children:/*#__PURE__*/_jsx(Feather,{color:\"var(--token-c7a77078-b20d-4adb-8b16-60347ac9a0ed, rgb(0, 0, 0))\",height:\"100%\",iconSearch:\"Home\",iconSelection:\"coffee\",id:\"GHSdoxVmA\",layoutId:\"GHSdoxVmA\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1xa6v7r\",\"data-framer-name\":\"Contact\",name:\"Contact\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:56,children:/*#__PURE__*/_jsx(Container,{className:\"framer-41bchs-container\",children:/*#__PURE__*/_jsx(Contact,{height:\"100%\",id:\"P4LmwXOPA\",layoutId:\"P4LmwXOPA\",width:\"100%\"})})})})]})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-i0afxn\",\"data-border\":true,\"data-framer-name\":\"Footer\",name:\"Footer\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1jt5vyv\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:27,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1mip8ne-container\",children:/*#__PURE__*/_jsx(Linkedin,{height:\"100%\",id:\"gzlZLP12y\",layoutId:\"gzlZLP12y\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-15lxnqe\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"RlM7T3N3YWxkLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Oswald\", \"Oswald Placeholder\", sans-serif',\"--framer-font-size\":\"11px\",\"--framer-letter-spacing\":\"0.5px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-b9c3c957-2c66-49c4-9732-fa196fddac20, rgb(0, 17, 34))\"},children:\"\\xa92024 William Briggs. All Rights Reserved.\"})}),className:\"framer-147phwh\",fonts:[\"FS;Oswald-regular\"],verticalAlignment:\"top\",withExternalLayout:true})})]})]}),/*#__PURE__*/_jsx(\"div\",{className:cx(serializationHash,...sharedStyleClassNames),id:\"overlay\"})]})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",`.${metadata.bodyClassName}-framer-8EEMm { background: white; }`,\".framer-8EEMm.framer-lux5qc, .framer-8EEMm .framer-lux5qc { display: block; }\",\".framer-8EEMm.framer-72rtr7 { 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; position: relative; width: 1440px; }\",\".framer-8EEMm .framer-fntdjf { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: sticky; top: 0px; width: 100%; will-change: transform; z-index: 1; }\",\".framer-8EEMm .framer-tu4qkf-container { flex: 1 0 0px; height: auto; position: sticky; top: 0px; width: 1px; will-change: transform; z-index: 1; }\",\".framer-8EEMm .framer-14gxxm6 { align-content: flex-start; align-items: flex-start; background-color: #ffffff; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; overflow: hidden; padding: 148px 40px 240px 40px; position: relative; width: 100%; }\",\".framer-8EEMm .framer-1o8a0e { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; --framer-paragraph-spacing: 0px; flex: none; height: auto; max-width: 100%; position: relative; white-space: pre-wrap; width: 377px; word-break: break-word; word-wrap: break-word; }\",\".framer-8EEMm .framer-9lgc2k { --framer-paragraph-spacing: 0px; flex: none; height: auto; max-width: 600px; overflow: visible; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-8EEMm .framer-33ubix { align-content: flex-start; align-items: flex-start; background-color: #ffffff; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: visible; padding: 60px 40px 120px 40px; position: relative; scroll-margin-top: 80px; width: 100%; }\",\".framer-8EEMm .framer-roo8g0, .framer-8EEMm .framer-1bemcv3, .framer-8EEMm .framer-1abefmf, .framer-8EEMm .framer-cfh772 { align-content: flex-start; align-items: flex-start; align-self: stretch; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: auto; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-8EEMm .framer-bdjmvs, .framer-8EEMm .framer-t6gm2q, .framer-8EEMm .framer-1lu6k8w, .framer-8EEMm .framer-10rvjii { 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: 2018px; padding: 0px; position: relative; width: 400px; }\",\".framer-8EEMm .framer-1i6sx32, .framer-8EEMm .framer-192isep, .framer-8EEMm .framer-n2emc4, .framer-8EEMm .framer-1jwanoi { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; --framer-paragraph-spacing: 0px; flex: none; height: auto; overflow: visible; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-8EEMm .framer-o72500, .framer-8EEMm .framer-2c8ed1, .framer-8EEMm .framer-1312qef, .framer-8EEMm .framer-184ziwz, .framer-8EEMm .framer-gij8rv { --framer-paragraph-spacing: 0px; flex: none; height: auto; overflow: visible; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-8EEMm .framer-1t6s5vj-container, .framer-8EEMm .framer-ont9qc-container, .framer-8EEMm .framer-41bchs-container, .framer-8EEMm .framer-1mip8ne-container { flex: none; height: auto; position: relative; width: auto; }\",\".framer-8EEMm .framer-4yh75n { align-content: center; align-items: center; aspect-ratio: 1.1333333333333333 / 1; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: var(--framer-aspect-ratio-supported, 600px); justify-content: flex-start; max-width: 700px; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-8EEMm .framer-g7mbi3, .framer-8EEMm .framer-u1lwtb, .framer-8EEMm .framer-m1xpof { align-content: flex-start; align-items: flex-start; background-color: #ffffff; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 60px 40px 120px 40px; position: relative; width: 100%; }\",\".framer-8EEMm .framer-1iwquqp-container { flex: none; height: 52px; position: relative; width: auto; }\",\".framer-8EEMm .framer-bu73m9, .framer-8EEMm .framer-2vso8a, .framer-8EEMm .framer-wnkscd { align-content: center; align-items: center; aspect-ratio: 1.1333333333333333 / 1; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: var(--framer-aspect-ratio-supported, 600px); justify-content: center; max-width: 700px; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-8EEMm .framer-hmrgmb { --border-bottom-width: 1px; --border-color: #9c9c9c; --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; align-content: center; align-items: center; background-color: #ffffff; box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.15); display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 55px; justify-content: center; overflow: hidden; padding: 18px 22px 18px 22px; position: relative; width: min-content; }\",\".framer-8EEMm .framer-17ie0hk { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-8EEMm .framer-1jp41pf-container { flex: none; height: 55px; position: relative; width: auto; }\",\".framer-8EEMm .framer-12b3f7q { align-content: center; align-items: center; background-color: var(--token-c7a77078-b20d-4adb-8b16-60347ac9a0ed, #000000); display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 60px 40px 120px 40px; position: relative; scroll-margin-top: 80px; width: 100%; }\",\".framer-8EEMm .framer-1olt68u, .framer-8EEMm .framer-1r94kyn { align-content: center; align-items: center; background-color: var(--token-c7a77078-b20d-4adb-8b16-60347ac9a0ed, #000000); display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 100px; height: min-content; justify-content: center; max-width: 1000px; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-8EEMm .framer-186z2si, .framer-8EEMm .framer-o14byw { align-content: center; align-items: center; background-color: var(--token-c7a77078-b20d-4adb-8b16-60347ac9a0ed, #000000); display: flex; flex: none; flex-direction: row; flex-wrap: wrap; gap: 80px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-8EEMm .framer-zzio1h-container { aspect-ratio: 1.2 / 1; flex: 1 0 0px; height: var(--framer-aspect-ratio-supported, 384px); position: relative; width: 1px; }\",\".framer-8EEMm .framer-19eh7a8, .framer-8EEMm .framer-ly7zc4 { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; padding: 0px; position: relative; width: 1px; }\",\".framer-8EEMm .framer-jj83pm, .framer-8EEMm .framer-o5zt14 { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; --framer-paragraph-spacing: 0px; flex: none; height: auto; overflow: visible; position: relative; white-space: pre-wrap; width: 370px; word-break: break-word; word-wrap: break-word; }\",\".framer-8EEMm .framer-ss55zs { align-content: center; align-items: center; background-color: var(--token-c7a77078-b20d-4adb-8b16-60347ac9a0ed, #000000); display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 60px 40px 120px 40px; position: relative; scroll-margin-top: 100px; width: 100%; }\",\".framer-8EEMm .framer-c0qec { --framer-paragraph-spacing: 0px; flex: none; height: auto; overflow: visible; position: relative; white-space: pre-wrap; width: 460px; word-break: break-word; word-wrap: break-word; }\",\".framer-8EEMm .framer-siubxh { aspect-ratio: 1.0443864229765014 / 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, 441px); position: relative; width: 1px; }\",\".framer-8EEMm .framer-1okb8x5 { align-content: flex-start; align-items: flex-start; background-color: #ffffff; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: visible; padding: 100px 40px 142px 40px; position: relative; scroll-margin-top: 80px; width: 100%; }\",\".framer-8EEMm .framer-1jzgzr8 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 28px; height: min-content; justify-content: flex-start; max-width: 100%; overflow: visible; padding: 0px; position: relative; width: 1000px; }\",\".framer-8EEMm .framer-1fddziw { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 4px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-8EEMm .framer-1asw4bf { --framer-paragraph-spacing: 0px; flex: none; height: auto; overflow: visible; position: relative; white-space: pre; width: auto; }\",\".framer-8EEMm .framer-1njfr7a-container { flex: none; height: 40px; position: relative; width: 40px; }\",\".framer-8EEMm .framer-1xa6v7r { 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: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-8EEMm .framer-i0afxn { --border-bottom-width: 0px; --border-color: #dedede; --border-left-width: 0px; --border-right-width: 0px; --border-style: solid; --border-top-width: 1px; align-content: center; align-items: center; background-color: var(--token-e157f143-b996-488f-87ac-b1e88d47e04f, #ffffff); box-shadow: 0px 4px 16px 0px rgba(0, 0, 0, 0.05); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: hidden; padding: 32px 0px 0px 0px; position: relative; width: 100%; }\",\".framer-8EEMm .framer-1jt5vyv { align-content: flex-start; align-items: flex-start; background-color: var(--token-e157f143-b996-488f-87ac-b1e88d47e04f, #ffffff); display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px 40px 20px 40px; position: relative; width: 100%; }\",\".framer-8EEMm .framer-15lxnqe { align-content: center; align-items: center; background-color: var(--token-e157f143-b996-488f-87ac-b1e88d47e04f, #ffffff); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; padding: 40px 0px 80px 0px; position: relative; width: 100%; }\",\".framer-8EEMm .framer-147phwh { --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; }\",\"@supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-8EEMm.framer-72rtr7, .framer-8EEMm .framer-fntdjf, .framer-8EEMm .framer-14gxxm6, .framer-8EEMm .framer-33ubix, .framer-8EEMm .framer-roo8g0, .framer-8EEMm .framer-bdjmvs, .framer-8EEMm .framer-4yh75n, .framer-8EEMm .framer-g7mbi3, .framer-8EEMm .framer-1bemcv3, .framer-8EEMm .framer-t6gm2q, .framer-8EEMm .framer-bu73m9, .framer-8EEMm .framer-u1lwtb, .framer-8EEMm .framer-1abefmf, .framer-8EEMm .framer-1lu6k8w, .framer-8EEMm .framer-hmrgmb, .framer-8EEMm .framer-2vso8a, .framer-8EEMm .framer-m1xpof, .framer-8EEMm .framer-cfh772, .framer-8EEMm .framer-10rvjii, .framer-8EEMm .framer-wnkscd, .framer-8EEMm .framer-12b3f7q, .framer-8EEMm .framer-1olt68u, .framer-8EEMm .framer-186z2si, .framer-8EEMm .framer-19eh7a8, .framer-8EEMm .framer-ss55zs, .framer-8EEMm .framer-1r94kyn, .framer-8EEMm .framer-o14byw, .framer-8EEMm .framer-ly7zc4, .framer-8EEMm .framer-1okb8x5, .framer-8EEMm .framer-1jzgzr8, .framer-8EEMm .framer-1fddziw, .framer-8EEMm .framer-1xa6v7r, .framer-8EEMm .framer-i0afxn, .framer-8EEMm .framer-1jt5vyv, .framer-8EEMm .framer-15lxnqe { gap: 0px; } .framer-8EEMm.framer-72rtr7 > *, .framer-8EEMm .framer-i0afxn > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-8EEMm.framer-72rtr7 > :first-child, .framer-8EEMm .framer-14gxxm6 > :first-child, .framer-8EEMm .framer-bdjmvs > :first-child, .framer-8EEMm .framer-4yh75n > :first-child, .framer-8EEMm .framer-t6gm2q > :first-child, .framer-8EEMm .framer-bu73m9 > :first-child, .framer-8EEMm .framer-1lu6k8w > :first-child, .framer-8EEMm .framer-2vso8a > :first-child, .framer-8EEMm .framer-10rvjii > :first-child, .framer-8EEMm .framer-wnkscd > :first-child, .framer-8EEMm .framer-1olt68u > :first-child, .framer-8EEMm .framer-19eh7a8 > :first-child, .framer-8EEMm .framer-1r94kyn > :first-child, .framer-8EEMm .framer-ly7zc4 > :first-child, .framer-8EEMm .framer-1jzgzr8 > :first-child, .framer-8EEMm .framer-i0afxn > :first-child, .framer-8EEMm .framer-15lxnqe > :first-child { margin-top: 0px; } .framer-8EEMm.framer-72rtr7 > :last-child, .framer-8EEMm .framer-14gxxm6 > :last-child, .framer-8EEMm .framer-bdjmvs > :last-child, .framer-8EEMm .framer-4yh75n > :last-child, .framer-8EEMm .framer-t6gm2q > :last-child, .framer-8EEMm .framer-bu73m9 > :last-child, .framer-8EEMm .framer-1lu6k8w > :last-child, .framer-8EEMm .framer-2vso8a > :last-child, .framer-8EEMm .framer-10rvjii > :last-child, .framer-8EEMm .framer-wnkscd > :last-child, .framer-8EEMm .framer-1olt68u > :last-child, .framer-8EEMm .framer-19eh7a8 > :last-child, .framer-8EEMm .framer-1r94kyn > :last-child, .framer-8EEMm .framer-ly7zc4 > :last-child, .framer-8EEMm .framer-1jzgzr8 > :last-child, .framer-8EEMm .framer-i0afxn > :last-child, .framer-8EEMm .framer-15lxnqe > :last-child { margin-bottom: 0px; } .framer-8EEMm .framer-fntdjf > *, .framer-8EEMm .framer-roo8g0 > *, .framer-8EEMm .framer-1bemcv3 > *, .framer-8EEMm .framer-1abefmf > *, .framer-8EEMm .framer-hmrgmb > *, .framer-8EEMm .framer-cfh772 > *, .framer-8EEMm .framer-12b3f7q > *, .framer-8EEMm .framer-ss55zs > *, .framer-8EEMm .framer-1xa6v7r > *, .framer-8EEMm .framer-1jt5vyv > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-8EEMm .framer-fntdjf > :first-child, .framer-8EEMm .framer-33ubix > :first-child, .framer-8EEMm .framer-roo8g0 > :first-child, .framer-8EEMm .framer-g7mbi3 > :first-child, .framer-8EEMm .framer-1bemcv3 > :first-child, .framer-8EEMm .framer-u1lwtb > :first-child, .framer-8EEMm .framer-1abefmf > :first-child, .framer-8EEMm .framer-hmrgmb > :first-child, .framer-8EEMm .framer-m1xpof > :first-child, .framer-8EEMm .framer-cfh772 > :first-child, .framer-8EEMm .framer-12b3f7q > :first-child, .framer-8EEMm .framer-186z2si > :first-child, .framer-8EEMm .framer-ss55zs > :first-child, .framer-8EEMm .framer-o14byw > :first-child, .framer-8EEMm .framer-1okb8x5 > :first-child, .framer-8EEMm .framer-1fddziw > :first-child, .framer-8EEMm .framer-1xa6v7r > :first-child, .framer-8EEMm .framer-1jt5vyv > :first-child { margin-left: 0px; } .framer-8EEMm .framer-fntdjf > :last-child, .framer-8EEMm .framer-33ubix > :last-child, .framer-8EEMm .framer-roo8g0 > :last-child, .framer-8EEMm .framer-g7mbi3 > :last-child, .framer-8EEMm .framer-1bemcv3 > :last-child, .framer-8EEMm .framer-u1lwtb > :last-child, .framer-8EEMm .framer-1abefmf > :last-child, .framer-8EEMm .framer-hmrgmb > :last-child, .framer-8EEMm .framer-m1xpof > :last-child, .framer-8EEMm .framer-cfh772 > :last-child, .framer-8EEMm .framer-12b3f7q > :last-child, .framer-8EEMm .framer-186z2si > :last-child, .framer-8EEMm .framer-ss55zs > :last-child, .framer-8EEMm .framer-o14byw > :last-child, .framer-8EEMm .framer-1okb8x5 > :last-child, .framer-8EEMm .framer-1fddziw > :last-child, .framer-8EEMm .framer-1xa6v7r > :last-child, .framer-8EEMm .framer-1jt5vyv > :last-child { margin-right: 0px; } .framer-8EEMm .framer-14gxxm6 > *, .framer-8EEMm .framer-bdjmvs > *, .framer-8EEMm .framer-4yh75n > *, .framer-8EEMm .framer-t6gm2q > *, .framer-8EEMm .framer-bu73m9 > *, .framer-8EEMm .framer-1lu6k8w > *, .framer-8EEMm .framer-2vso8a > *, .framer-8EEMm .framer-10rvjii > *, .framer-8EEMm .framer-wnkscd > *, .framer-8EEMm .framer-19eh7a8 > *, .framer-8EEMm .framer-ly7zc4 > * { margin: 0px; margin-bottom: calc(20px / 2); margin-top: calc(20px / 2); } .framer-8EEMm .framer-33ubix > *, .framer-8EEMm .framer-g7mbi3 > *, .framer-8EEMm .framer-u1lwtb > *, .framer-8EEMm .framer-m1xpof > *, .framer-8EEMm .framer-1okb8x5 > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } .framer-8EEMm .framer-1olt68u > *, .framer-8EEMm .framer-1r94kyn > * { margin: 0px; margin-bottom: calc(100px / 2); margin-top: calc(100px / 2); } .framer-8EEMm .framer-186z2si > *, .framer-8EEMm .framer-o14byw > * { margin: 0px; margin-left: calc(80px / 2); margin-right: calc(80px / 2); } .framer-8EEMm .framer-1jzgzr8 > * { margin: 0px; margin-bottom: calc(28px / 2); margin-top: calc(28px / 2); } .framer-8EEMm .framer-1fddziw > * { margin: 0px; margin-left: calc(4px / 2); margin-right: calc(4px / 2); } .framer-8EEMm .framer-15lxnqe > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } }\",`@media (min-width: 810px) and (max-width: 1439px) { .${metadata.bodyClassName}-framer-8EEMm { background: white; } .framer-8EEMm.framer-72rtr7 { width: 810px; } .framer-8EEMm .framer-14gxxm6 { height: 600px; } .framer-8EEMm .framer-33ubix { padding: 80px 40px 120px 40px; } .framer-8EEMm .framer-bdjmvs, .framer-8EEMm .framer-t6gm2q, .framer-8EEMm .framer-1lu6k8w, .framer-8EEMm .framer-10rvjii { flex: 1 0 0px; padding: 0px 40px 0px 0px; width: 1px; } .framer-8EEMm .framer-4yh75n, .framer-8EEMm .framer-2vso8a, .framer-8EEMm .framer-wnkscd { height: var(--framer-aspect-ratio-supported, 322px); } .framer-8EEMm .framer-bu73m9 { height: var(--framer-aspect-ratio-supported, 322px); max-width: unset; } .framer-8EEMm .framer-hmrgmb { height: 52px; } .framer-8EEMm .framer-12b3f7q, .framer-8EEMm .framer-ss55zs { padding: 60px 40px 60px 40px; } .framer-8EEMm .framer-zzio1h-container { height: var(--framer-aspect-ratio-supported, 271px); } .framer-8EEMm .framer-jj83pm, .framer-8EEMm .framer-o5zt14, .framer-8EEMm .framer-c0qec { width: 100%; } .framer-8EEMm .framer-siubxh { height: var(--framer-aspect-ratio-supported, 311px); } .framer-8EEMm .framer-1okb8x5 { padding: 80px 40px 100px 40px; } .framer-8EEMm .framer-1fddziw { gap: 0px; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-8EEMm .framer-1fddziw { gap: 0px; } .framer-8EEMm .framer-1fddziw > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } .framer-8EEMm .framer-1fddziw > :first-child { margin-left: 0px; } .framer-8EEMm .framer-1fddziw > :last-child { margin-right: 0px; } }}`,`@media (max-width: 809px) { .${metadata.bodyClassName}-framer-8EEMm { background: white; } .framer-8EEMm.framer-72rtr7 { width: 390px; } .framer-8EEMm .framer-fntdjf { order: 0; } .framer-8EEMm .framer-14gxxm6 { height: 300px; min-width: 330px; order: 1; padding: 100px 36px 60px 36px; } .framer-8EEMm .framer-1o8a0e { min-width: 100px; width: auto; } .framer-8EEMm .framer-9lgc2k { min-width: 200px; } .framer-8EEMm .framer-33ubix { flex-direction: column; order: 2; padding: 20px 36px 30px 36px; } .framer-8EEMm .framer-roo8g0, .framer-8EEMm .framer-1bemcv3, .framer-8EEMm .framer-1abefmf, .framer-8EEMm .framer-cfh772 { align-self: unset; flex: none; height: min-content; order: 1; width: 100%; } .framer-8EEMm .framer-bdjmvs, .framer-8EEMm .framer-t6gm2q, .framer-8EEMm .framer-1lu6k8w, .framer-8EEMm .framer-10rvjii { flex: 1 0 0px; padding: 20px 40px 10px 0px; width: 1px; } .framer-8EEMm .framer-o72500, .framer-8EEMm .framer-2c8ed1, .framer-8EEMm .framer-1312qef, .framer-8EEMm .framer-184ziwz { max-width: 600px; min-width: 220px; } .framer-8EEMm .framer-4yh75n { flex: none; height: var(--framer-aspect-ratio-supported, 281px); order: 0; width: 100%; } .framer-8EEMm .framer-g7mbi3 { flex-direction: column; order: 3; padding: 20px 36px 20px 36px; } .framer-8EEMm .framer-bu73m9 { align-content: flex-start; align-items: flex-start; flex: none; height: var(--framer-aspect-ratio-supported, 281px); order: 0; width: 100%; } .framer-8EEMm .framer-u1lwtb { flex-direction: column; order: 4; padding: 20px 36px 20px 36px; } .framer-8EEMm .framer-hmrgmb { height: 52px; } .framer-8EEMm .framer-2vso8a, .framer-8EEMm .framer-wnkscd { flex: none; height: var(--framer-aspect-ratio-supported, 281px); justify-content: flex-start; order: 0; width: 100%; } .framer-8EEMm .framer-m1xpof { flex-direction: column; order: 5; padding: 20px 36px 40px 36px; } .framer-8EEMm .framer-12b3f7q { gap: 20px; order: 6; padding: 60px 36px 20px 36px; } .framer-8EEMm .framer-1olt68u, .framer-8EEMm .framer-1r94kyn { gap: 60px; } .framer-8EEMm .framer-186z2si, .framer-8EEMm .framer-o14byw { flex-direction: column; justify-content: flex-start; } .framer-8EEMm .framer-zzio1h-container { flex: none; height: var(--framer-aspect-ratio-supported, 265px); width: 100%; } .framer-8EEMm .framer-19eh7a8, .framer-8EEMm .framer-ly7zc4 { flex: none; width: 100%; } .framer-8EEMm .framer-jj83pm, .framer-8EEMm .framer-o5zt14, .framer-8EEMm .framer-c0qec { width: 100%; } .framer-8EEMm .framer-ss55zs { gap: 20px; order: 7; padding: 60px 36px 40px 36px; } .framer-8EEMm .framer-siubxh { flex: none; height: var(--framer-aspect-ratio-supported, 305px); width: 100%; } .framer-8EEMm .framer-1okb8x5 { flex-direction: column; order: 8; padding: 80px 36px 72px 36px; } .framer-8EEMm .framer-1jzgzr8 { gap: 26px; padding: 0px 20px 0px 0px; width: 318px; } .framer-8EEMm .framer-1fddziw { align-content: flex-start; align-items: flex-start; flex-wrap: wrap; gap: 6px; } .framer-8EEMm .framer-1njfr7a-container { height: 30px; width: 30px; } .framer-8EEMm .framer-1xa6v7r { align-content: flex-start; align-items: flex-start; gap: 0px; width: min-content; } .framer-8EEMm .framer-i0afxn { order: 9; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-8EEMm .framer-33ubix, .framer-8EEMm .framer-g7mbi3, .framer-8EEMm .framer-u1lwtb, .framer-8EEMm .framer-m1xpof, .framer-8EEMm .framer-12b3f7q, .framer-8EEMm .framer-1olt68u, .framer-8EEMm .framer-186z2si, .framer-8EEMm .framer-ss55zs, .framer-8EEMm .framer-1r94kyn, .framer-8EEMm .framer-o14byw, .framer-8EEMm .framer-1okb8x5, .framer-8EEMm .framer-1jzgzr8, .framer-8EEMm .framer-1fddziw, .framer-8EEMm .framer-1xa6v7r { gap: 0px; } .framer-8EEMm .framer-33ubix > *, .framer-8EEMm .framer-g7mbi3 > *, .framer-8EEMm .framer-u1lwtb > *, .framer-8EEMm .framer-m1xpof > *, .framer-8EEMm .framer-1okb8x5 > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-8EEMm .framer-33ubix > :first-child, .framer-8EEMm .framer-g7mbi3 > :first-child, .framer-8EEMm .framer-u1lwtb > :first-child, .framer-8EEMm .framer-m1xpof > :first-child, .framer-8EEMm .framer-1olt68u > :first-child, .framer-8EEMm .framer-186z2si > :first-child, .framer-8EEMm .framer-1r94kyn > :first-child, .framer-8EEMm .framer-o14byw > :first-child, .framer-8EEMm .framer-1okb8x5 > :first-child, .framer-8EEMm .framer-1jzgzr8 > :first-child { margin-top: 0px; } .framer-8EEMm .framer-33ubix > :last-child, .framer-8EEMm .framer-g7mbi3 > :last-child, .framer-8EEMm .framer-u1lwtb > :last-child, .framer-8EEMm .framer-m1xpof > :last-child, .framer-8EEMm .framer-1olt68u > :last-child, .framer-8EEMm .framer-186z2si > :last-child, .framer-8EEMm .framer-1r94kyn > :last-child, .framer-8EEMm .framer-o14byw > :last-child, .framer-8EEMm .framer-1okb8x5 > :last-child, .framer-8EEMm .framer-1jzgzr8 > :last-child { margin-bottom: 0px; } .framer-8EEMm .framer-12b3f7q > *, .framer-8EEMm .framer-ss55zs > * { margin: 0px; margin-left: calc(20px / 2); margin-right: calc(20px / 2); } .framer-8EEMm .framer-12b3f7q > :first-child, .framer-8EEMm .framer-ss55zs > :first-child, .framer-8EEMm .framer-1fddziw > :first-child, .framer-8EEMm .framer-1xa6v7r > :first-child { margin-left: 0px; } .framer-8EEMm .framer-12b3f7q > :last-child, .framer-8EEMm .framer-ss55zs > :last-child, .framer-8EEMm .framer-1fddziw > :last-child, .framer-8EEMm .framer-1xa6v7r > :last-child { margin-right: 0px; } .framer-8EEMm .framer-1olt68u > *, .framer-8EEMm .framer-1r94kyn > * { margin: 0px; margin-bottom: calc(60px / 2); margin-top: calc(60px / 2); } .framer-8EEMm .framer-186z2si > *, .framer-8EEMm .framer-o14byw > * { margin: 0px; margin-bottom: calc(80px / 2); margin-top: calc(80px / 2); } .framer-8EEMm .framer-1jzgzr8 > * { margin: 0px; margin-bottom: calc(26px / 2); margin-top: calc(26px / 2); } .framer-8EEMm .framer-1fddziw > * { margin: 0px; margin-left: calc(6px / 2); margin-right: calc(6px / 2); } .framer-8EEMm .framer-1xa6v7r > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } }}`,'.framer-8EEMm[data-border=\"true\"]::after, .framer-8EEMm [data-border=\"true\"]::after { content: \"\"; border-width: var(--border-top-width, 0) var(--border-right-width, 0) var(--border-bottom-width, 0) var(--border-left-width, 0); border-color: var(--border-color, none); border-style: var(--border-style, none); width: 100%; height: 100%; position: absolute; box-sizing: border-box; left: 0; top: 0; border-radius: inherit; pointer-events: none; }'];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 5639\n * @framerIntrinsicWidth 1440\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"a82JIQMCt\":{\"layout\":[\"fixed\",\"auto\"]},\"vwQqX5ugU\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n * @framerResponsiveScreen\n */const FrameraugiA20Il=withCSS(Component,css,\"framer-8EEMm\");export default FrameraugiA20Il;FrameraugiA20Il.displayName=\"Home\";FrameraugiA20Il.defaultProps={height:5639,width:1440};addFonts(FrameraugiA20Il,[{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/PONfPc6h4EPYwJliXQBmjVx7QxI.woff2\",weight:\"800\"},{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/zsnJN7Z1wdzUvepJniD3rbvJIyU.woff2\",weight:\"800\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/UrzZBOy7RyJEWAZGduzOeHiHuY.woff2\",weight:\"800\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/996sR9SfSDuYELz8oHhDOcErkY.woff2\",weight:\"800\"},{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/ftN1HpyPVJEoEb4q36SOrNdLXU.woff2\",weight:\"800\"},{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/jN39PDxZWEwjG7Csryx3JN2r2Y.woff2\",weight:\"800\"},{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/JAur4lGGSGRGyrFi59JSIKqVgU.woff2\",weight:\"800\"},{family:\"Inter\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/inter/v18/UcCO3FwrK3iLTeHuS_nVMrMxCp50SjIw2boKoduKmMEVuI6fMZ1rib2Bg-4.woff2\",weight:\"500\"},{family:\"Inter\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/inter/v18/UcCO3FwrK3iLTeHuS_nVMrMxCp50SjIw2boKoduKmMEVuFuYMZ1rib2Bg-4.woff2\",weight:\"700\"},{family:\"Inter\",source:\"google\",style:\"italic\",url:\"https://fonts.gstatic.com/s/inter/v18/UcCM3FwrK3iLTcvneQg7Ca725JhhKnNqk4j1ebLhAm8SrXTc69thiJ-Ek-7MeA.woff2\",weight:\"500\"},{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/5A3Ce6C9YYmCjpQx9M4inSaKU.woff2\",weight:\"500\"},{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/Qx95Xyt0Ka3SGhinnbXIGpEIyP4.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/6mJuEAguuIuMog10gGvH5d3cl8.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/xYYWaj7wCU5zSQH0eXvSaS19wo.woff2\",weight:\"500\"},{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/otTaNuNpVK4RbdlT7zDDdKvQBA.woff2\",weight:\"500\"},{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/d3tHnaQIAeqiE5hGcRw4mmgWYU.woff2\",weight:\"500\"},{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/DolVirEGb34pEXEp8t8FQBSK4.woff2\",weight:\"500\"},{family:\"Oswald\",source:\"fontshare\",style:\"normal\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/PYCLPQS6HZBLJGMCPKBPEXQKWPKQ7OHE/TPDXSFLT6F2DLRHVAQNPEX367ZCFB6CP/OF7M536OVLRNXVSLVYIW3HQVUIUZ56CU.woff2\",weight:\"400\"}]},...NavigationFonts,...ButtonProcessBreakfreeFonts,...ButtonProcessMotionLoopFonts,...Button_Process_KasamaFonts,...VideoFonts,...ButtonSecondaryFonts,...FeatherFonts,...ContactFonts,...LinkedinFonts,...Bolt20Fonts,...HeartFonts,...FilmFonts,...Chocolate_barFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FrameraugiA20Il\",\"slots\":[],\"annotations\":{\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"a82JIQMCt\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"vwQqX5ugU\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerContractVersion\":\"1\",\"framerComponentViewportWidth\":\"true\",\"framerImmutableVariables\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerResponsiveScreen\":\"\",\"framerIntrinsicWidth\":\"1440\",\"framerIntrinsicHeight\":\"5639\"}},\"__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", "video", "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", "isCloseToViewport", "startTime", "ue", "rawProgressValue", "isMotionValue", "value", "useOnEnter", "useOnExit", "src", "se", "fragment", "groupsRegex", "capitalizeFirstLetter", "titleCase", "objectFitOptions", "addPropertyControls", "ControlType", "borderRadiusControl", "defaultEvents", "FeatherFonts", "getFonts", "Icon", "enabledGestures", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "getProps", "height", "id", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "ref1", "pe", "isDisplayed", "isDisplayed1", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "Link", "u", "cx", "RichText2", "ComponentViewportProvider", "css", "Framerap7WC59fJ", "withCSS", "ap7WC59fJ_default", "addFonts", "FeatherFonts", "getFonts", "Icon", "enabledGestures", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "getProps", "height", "hover", "id", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "Nm_Pp7eir", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onMouseEnterh3iwof", "args", "ref1", "pe", "isDisplayed", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "Link", "u", "cx", "RichText2", "ComponentViewportProvider", "css", "FramerCI0wsA34w", "withCSS", "CI0wsA34w_default", "addPropertyControls", "ControlType", "addFonts", "serializationHash", "variantClassNames", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "getProps", "height", "id", "width", "props", "createLayoutDependency", "variants", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "variant", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "variantClassNames", "layoutDependency", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "cx", "serializationHash", "SVG", "css", "FramerJ0vUilMxF", "withCSS", "J0vUilMxF_default", "addFonts", "enabledGestures", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "getProps", "height", "id", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "cx", "RichText2", "css", "FramerLvif4xF6N", "withCSS", "Lvif4xF6N_default", "addFonts", "FeatherFonts", "getFonts", "Icon", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "height", "hover", "id", "width", "props", "_humanReadableVariantMap_props_variant", "_ref", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "fU7vlJOJd", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onMouseEnter3tvj6p", "args", "onMouseLeave1s4ixof", "ref1", "pe", "isDisplayed", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "Link", "u", "cx", "RichText2", "ComponentViewportProvider", "css", "FramerpDzvYq1b6", "withCSS", "pDzvYq1b6_default", "addPropertyControls", "ControlType", "addFonts", "FeatherFonts", "getFonts", "Icon", "MotionAWithFX", "withFX", "motion", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "animation", "transition1", "animation1", "transition2", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "x", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "_humanReadableVariantMap_props_variant", "_ref", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onMouseEnter1fbou0m", "args", "onMouseLeave1754jwx", "ref1", "pe", "isDisplayed", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "Link", "u", "cx", "RichText2", "ComponentViewportProvider", "css", "FramerrHCokXwPn", "withCSS", "rHCokXwPn_default", "addPropertyControls", "ControlType", "addFonts", "NavigationFonts", "getFonts", "Y5tH1hOin_default", "RichTextWithOptimizedAppearEffect", "withOptimizedAppearEffect", "RichText2", "RichTextWithFX", "withFX", "ButtonProcessBreakfreeFonts", "rHCokXwPn_default", "ContainerWithFX", "Container", "ImageWithFX", "Image2", "ButtonProcessMotionLoopFonts", "pDzvYq1b6_default", "MotionDivWithFX", "motion", "Button_Process_KasamaFonts", "CI0wsA34w_default", "VideoFonts", "Video", "ButtonSecondaryFonts", "Lvif4xF6N_default", "FeatherFonts", "Icon", "ContactFonts", "ap7WC59fJ_default", "LinkedinFonts", "yyWk4OrSA_default", "Bolt20Fonts", "J0vUilMxF_default", "HeartFonts", "egLNTQHUG_default", "FilmFonts", "jXQzX0HE3_default", "Chocolate_barFonts", "wiAOVvmMq_default", "breakpoints", "serializationHash", "variantClassNames", "transition1", "transition2", "animation", "animation1", "animation2", "animation3", "transition3", "animation4", "transition4", "animation5", "animation6", "transition5", "animation7", "animation8", "animation9", "animation10", "animation11", "animation12", "animation13", "animation14", "animation15", "animation16", "animation17", "animation18", "transition6", "animation19", "animation20", "animation21", "animation22", "transition7", "animation23", "animation24", "animation25", "transition8", "animation26", "animation27", "animation28", "animation29", "transition9", "textEffect", "animation30", "animation31", "animation32", "animation33", "animation34", "animation35", "animation36", "animation37", "animation38", "animation39", "metadata", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "_humanReadableVariantMap_props_variant", "_ref", "cursor", "J0vUilMxF_default", "cursor1", "egLNTQHUG_default", "cursor2", "jXQzX0HE3_default", "cursor3", "wiAOVvmMq_default", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "variant", "restProps", "ue", "metadata1", "robotsTag", "ie", "_document_querySelector", "bodyCls", "body", "c", "baseVariant", "hydratedBaseVariant", "useHydratedBreakpointVariants", "breakpoints", "gestureVariant", "ref1", "pe", "elementId", "useRouteElementId", "ref2", "elementId1", "ref3", "elementId2", "ref4", "elementId3", "ref5", "defaultLayoutId", "ae", "sharedStyleClassNames", "useCustomCursors", "p", "GeneratedComponentContext", "u", "LayoutGroup", "motion", "cx", "ComponentViewportProvider", "Container", "PropertyOverrides2", "Y5tH1hOin_default", "x", "RichTextWithOptimizedAppearEffect", "RichTextWithFX", "ContainerWithFX", "rHCokXwPn_default", "ImageWithFX", "pDzvYq1b6_default", "MotionDivWithFX", "RichText2", "CI0wsA34w_default", "Video", "Lvif4xF6N_default", "Image2", "Icon", "ap7WC59fJ_default", "yyWk4OrSA_default", "css", "FrameraugiA20Il", "withCSS", "augiA20Il_default", "addFonts", "NavigationFonts", "ButtonProcessBreakfreeFonts", "ButtonProcessMotionLoopFonts", "Button_Process_KasamaFonts", "VideoFonts", "ButtonSecondaryFonts", "FeatherFonts", "ContactFonts", "LinkedinFonts", "Bolt20Fonts", "HeartFonts", "FilmFonts", "Chocolate_barFonts", "__FramerMetadata__"]
}
