{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/lRDHiNWNVWmE0lqtoVHP/tbiAmyP8q4mMaXLQcmj3/Video.js", "ssg:https://framerusercontent.com/modules/qpjhCcDm4G1NbFAlpMKV/OnyZiTlIjOBuSKcKQWFv/AnimatedNumberCounter_Prod.js", "ssg:https://framerusercontent.com/modules/4x3oJZKD6C0yeXWT1zrz/gKWMfgfUDlbyV0fYWINn/qV8yIXMfJ.js", "ssg:https://framerusercontent.com/modules/lEy5isZ6mOnOahWKlQ9R/1YsxGOaMWRvWIW2COSV8/xxBb4cLiY.js", "ssg:https://framerusercontent.com/modules/y1g2dPvx18MEW3gO71gv/mnaLrwPCrlVD7qTHuNEo/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://framerusercontent.com/modules/G4IfyjvwmaeSBpdb4TWu/OIjZRBmWDcIE2B6qgG1j/index.js\";// https://framer.com/m/framer/default-utils.js@^0.45.0\nimport{memo,useCallback,useEffect,useMemo,useRef,useState}from\"react\";var ObjectFitType;(function(ObjectFitType){ObjectFitType[\"Fill\"]=\"fill\";ObjectFitType[\"Contain\"]=\"contain\";ObjectFitType[\"Cover\"]=\"cover\";ObjectFitType[\"None\"]=\"none\";ObjectFitType[\"ScaleDown\"]=\"scale-down\";})(ObjectFitType||(ObjectFitType={}));var SrcType;(function(SrcType){SrcType[\"Video\"]=\"Upload\";SrcType[\"Url\"]=\"URL\";})(SrcType||(SrcType={}));// Reduce renders\nfunction getProps(props){const{width,height,topLeft,topRight,bottomRight,bottomLeft,id,children,...rest}=props;return rest;}/**\n * VIDEO\n *\n * @framerIntrinsicWidth 200\n * @framerIntrinsicHeight 112\n *\n * @framerSupportedLayoutWidth fixed\n * @framerSupportedLayoutHeight any-prefer-fixed\n */export function Video(props){const newProps=getProps(props);return /*#__PURE__*/_jsx(VideoMemo,{...newProps});}function usePlaybackControls(videoRef){const isInCurrentNavigationTarget=useIsInCurrentNavigationTarget();const requestingPlay=useRef(false);const isPlayingRef=useRef(false);const setProgress=useCallback(rawProgress=>{if(!videoRef.current)return;const newProgress=(rawProgress===1?.999:rawProgress)*videoRef.current.duration;const isAlreadySet=Math.abs(videoRef.current.currentTime-newProgress)<.1;if(videoRef.current.duration>0&&!isAlreadySet){videoRef.current.currentTime=newProgress;}},[]);const play=useCallback(()=>{const video=videoRef.current;if(!video)return;video.preload=\"auto\"// makes sure browsers don't throttle: https://html.spec.whatwg.org/multipage/media.html#:~:text=When%20the%20media%20resource%20is%20playing%2C%20hints%20to%20the%20user%20agent%20that%20bandwidth%20is%20to%20be%20considered%20scarce%2C%20e.g.%20suggesting%20throttling%20the%20download%20so%20that%20the%20media%20data%20is%20obtained%20at%20the%20slowest%20possible%20rate%20that%20still%20maintains%20consistent%20playback.\n;const isPlaying=video.currentTime>0&&video.onplaying&&!video.paused&&!video.ended&&video.readyState>=video.HAVE_CURRENT_DATA;if(!isPlaying&&video&&!requestingPlay.current&&isInCurrentNavigationTarget){requestingPlay.current=true;isPlayingRef.current=true;video.play().catch(e=>{})// It's likely fine, swallow error\n.finally(()=>requestingPlay.current=false);}},[]);const pause=useCallback(()=>{if(!videoRef.current||requestingPlay.current)return;videoRef.current.pause();isPlayingRef.current=false;},[]);return{play,pause,setProgress,isPlaying:isPlayingRef};}function useAutoplayBehavior({playingProp,muted,loop,playsinline,controls}){const[initialPlayingProp]=useState(()=>playingProp);const[hasPlayingPropChanged,setHasPlayingPropChanged]=useState(false);if(playingProp!==initialPlayingProp&&!hasPlayingPropChanged){setHasPlayingPropChanged(true);}const behavesAsGif=// passing `playing === true` on mount indicates that the video should\n// autoplay, like a GIF\ninitialPlayingProp&&muted&&loop&&playsinline&&!controls&&// Some users of the <Video> component use it by wrapping it with\n// another smart component and adding their own controls on top. (The\n// controls use transitions to control the video: e.g., when clicking\n// the play button, the smart component will transition to a state with\n// <Video playing={true} />.) In this case, we don't want the video to\n// behave as a gif, as it will be weird if the video suddenly started\n// acting as such (and auto-pausing when leaving the viewport) as soon\n// as the site visitor mutes it and clicks \u201CPlay\u201D.\n!hasPlayingPropChanged;let autoplay;if(behavesAsGif)autoplay=\"on-viewport\";else if(initialPlayingProp)autoplay=\"on-mount\";else autoplay=\"no-autoplay\";return autoplay;}const VideoMemo=/*#__PURE__*/memo(function VideoInner(props){const{// default props\nsrcType=\"URL\",srcUrl,srcFile=\"\",posterEnabled=false,controls=false,playing=true,loop=true,muted=true,playsinline=true,restartOnEnter=false,objectFit=\"cover\",backgroundColor=\"rgba(0,0,0,0)\",radius=0,volume=25,startTime:startTimeProp=0,poster=\"https://framerusercontent.com/images/5ILRvlYXf72kHSVHqpa3snGzjU.jpg\",playing:playingProp,progress,onSeeked,onPause,onPlay,onEnd,onClick,onMouseEnter,onMouseLeave,onMouseDown,onMouseUp}=props;const videoRef=useRef();const isSafari=useIsBrowserSafari();const wasPausedOnLeave=useRef(null);const wasEndedOnLeave=useRef(null);const isOnCanvas=useIsOnCanvas();const 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,isPlaying}=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]);/**\n     * The Video component has some effects that sync the video element with props\n     * like `startTime`, `progress`, etc. React calls these effects whenever these\n     * props change. However, it also calls them on the first mount, and this is\n     * troublesome \u2013 if we\u2019re doing SSR, and the user changed the video state before\n     * the video was hydrated, the initial `useEffect` call will reset the video\n     * state. To avoid this, we use this flag.\n     */const isMountedAndReadyForProgressChanges=useRef(false);// Allow scrubbling via progress prop\n// 1) Handle cases when the progress prop itself changes\nuseEffect(()=>{if(!isMountedAndReadyForProgressChanges.current){isMountedAndReadyForProgressChanges.current=true;return;}const rawProgressValue=isMotionValue(progress)?progress.get():(progress!==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:isPlaying.current?\"auto\":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\";function capitalizeFirstLetter(value){return value.charAt(0).toUpperCase()+value.slice(1);}export function titleCase(value){const groups=value.match(/[A-Z]{2,}|[A-Z][a-z]+|[a-z]+|[A-Z]|\\d+/gu)||[];return groups.map(capitalizeFirstLetter).join(\" \");}const objectFitOptions=[\"cover\",\"fill\",\"contain\",\"scale-down\",\"none\"];addPropertyControls(Video,{srcType:{type:ControlType.Enum,displaySegmentedControl:true,title:\"Source\",options:[\"URL\",\"Upload\"]},srcUrl:{type:ControlType.String,title:\"URL\",defaultValue:\"https://framerusercontent.com/assets/MLWPbW1dUQawJLhhun3dBwpgJak.mp4\",hidden(props){return props.srcType===\"Upload\";}},srcFile:{type:ControlType.File,title:\"File\",allowedFileTypes:[\"mp4\",\"webm\"],hidden(props){return props.srcType===\"URL\";}},playing:{type:ControlType.Boolean,title:\"Playing\",enabledTitle:\"Yes\",disabledTitle:\"No\"},posterEnabled:{type:ControlType.Boolean,title:\"Poster\",enabledTitle:\"Yes\",disabledTitle:\"No\",description:\"We recommend adding a poster. [Learn more](https://www.framer.com/help/articles/how-are-videos-optimized-in-framer/).\"},poster:{type:ControlType.Image,title:\" \",hidden:({posterEnabled})=>!posterEnabled},backgroundColor:{type:ControlType.Color,title:\"Background\",defaultValue:\"rgba(0,0,0,0)\"},...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\",defaultValue:false},muted:{type:ControlType.Boolean,title:\"Muted\",enabledTitle:\"Yes\",disabledTitle:\"No\"},volume:{type:ControlType.Number,max:100,min:0,unit:\"%\",hidden:({muted})=>muted,defaultValue:25},onEnd:{type:ControlType.EventHandler},onSeeked:{type:ControlType.EventHandler},onPause:{type:ControlType.EventHandler},onPlay:{type:ControlType.EventHandler},...defaultEvents});\nexport const __FramerMetadata__ = {\"exports\":{\"VideoProps\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"Video\":{\"type\":\"reactComponent\",\"name\":\"Video\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\",\"framerIntrinsicHeight\":\"112\",\"framerIntrinsicWidth\":\"200\",\"framerSupportedLayoutWidth\":\"fixed\",\"framerSupportedLayoutHeight\":\"any-prefer-fixed\"}},\"titleCase\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Video.map", "import{jsxs as _jsxs,Fragment as _Fragment}from\"react/jsx-runtime\";import{addPropertyControls,ControlType,RenderTarget}from\"framer\";import{useEffect,useState,useRef}from\"react\";import{motion,useMotionValue,animate,useInView}from\"framer-motion\";/**\n * @framerSupportedLayoutWidth any\n * @framerSupportedLayoutHeight any\n *\n * @framerDisableUnlink\n */export default function AnimatedNumberCounter(props){const{mode,start,end,value,decimals,commas,color,animation}=props;const isCanvas=RenderTarget.current()===RenderTarget.canvas;const Tag=props.tag;const MotionTag=motion[props.tag];const isDefault=mode==\"default\";const initialValue=isDefault?start:value;const transition=isDefault?animation.transition:props.transition;const formatNumber=number=>{let numberString=number.toFixed(decimals);if(commas){numberString=numberString.replace(/\\B(?=(\\d{3})+(?!\\d))/g,\",\");}return numberString;};const[number,setNumber]=useState(initialValue);const[finalValue,setFinalValue]=useState(number);const[currentAnimation,setCurrentAnimation]=useState(null);const ref=useRef(null);const isInView=useInView(ref,{once:!props.animation.replay,amount:\"some\"});const motionValue=useMotionValue(value);const runAnimation=(from,to)=>{if(!isCanvas){if(currentAnimation){currentAnimation.stop();}setFinalValue(to);setCurrentAnimation(animate(from,to,{...transition,onUpdate:latest=>{setNumber(latest);}}));}};useEffect(()=>{if(isDefault&&animation.trigger==\"appear\"){runAnimation(start,end);}},[]);useEffect(()=>{if(isDefault&&animation.trigger==\"layerInView\"){if(isInView){runAnimation(start,end);}else{if(currentAnimation){currentAnimation.stop();}setNumber(start);}}},[isInView]);useEffect(()=>{if(!isDefault){runAnimation(number,value);}},[value]);return /*#__PURE__*/_jsxs(_Fragment,{children:[/*#__PURE__*/_jsxs(Tag,{style:{...props.style,margin:0,opacity:0,pointerEvents:\"none\",userSelect:\"none\",textWrap:props.balance?\"balance\":undefined,fontVariantNumeric:props.monospace?\"tabular-nums\":undefined,textAlign:\"center\",...props.font},children:[props.prefix,formatNumber(isCanvas?initialValue:finalValue),props.suffix]}),/*#__PURE__*/_jsxs(MotionTag,{ref:ref,style:{position:\"absolute\",inset:0,userSelect:props.userSelect?\"auto\":\"none\",fontVariantNumeric:props.monospace?\"tabular-nums\":undefined,margin:0,...color.mode==\"solid\"?{color:color.color}:{WebkitBackgroundClip:\"text\",WebkitTextFillColor:\"transparent\",backgroundImage:`linear-gradient(${color.angle}deg, ${color.startColor}, ${color.endColor})`},textDecoration:props.decoration,textWrap:props.balance?\"balance\":undefined,textAlign:\"center\",...props.font,...props.style},children:[props.prefix,formatNumber(isCanvas?initialValue:number),props.suffix]})]});}AnimatedNumberCounter.displayName=\"Animated Number Counter\";addPropertyControls(AnimatedNumberCounter,{mode:{type:ControlType.Enum,options:[\"default\",\"variants\"],optionTitles:[\"Default\",\"Variants\"],displaySegmentedControl:true},value:{type:ControlType.Number,defaultValue:0,hidden:props=>props.mode!==\"variants\"},start:{type:ControlType.Number,defaultValue:0,hidden:props=>props.mode!==\"default\"},end:{type:ControlType.Number,defaultValue:100,hidden:props=>props.mode!==\"default\"},animation:{type:ControlType.Object,icon:\"effect\",hidden:props=>props.mode!==\"default\",controls:{trigger:{type:ControlType.Enum,defaultValue:\"layerInView\",options:[\"appear\",\"layerInView\"],optionTitles:[\"Appear\",\"Layer in View\"],displaySegmentedControl:true,segmentedControlDirection:\"vertical\"},replay:{type:ControlType.Boolean,defaultValue:true,hidden(props){return props.trigger!==\"layerInView\";}},transition:{type:ControlType.Transition,defaultValue:{type:\"spring\",duration:1,bounce:0}}}},transition:{type:ControlType.Transition,defaultValue:{type:\"spring\",duration:1,bounce:0},hidden:props=>props.mode!==\"variants\"},decimals:{type:ControlType.Enum,defaultValue:0,options:[0,1,2,3],optionTitles:[\"Off\",\"1\",\"2\",\"3\"],displaySegmentedControl:true},commas:{type:ControlType.Boolean,defaultValue:true},font:{type:\"font\",controls:\"extended\",defaultFontType:\"sans-serif\",defaultValue:{fontSize:16,lineHeight:1}},color:{type:ControlType.Object,controls:{mode:{type:ControlType.Enum,defaultValue:\"solid\",options:[\"solid\",\"gradient\"],optionTitles:[\"Solid\",\"Gradient\"],displaySegmentedControl:true},color:{type:ControlType.Color,defaultValue:\"#000\",hidden:props=>props.mode!==\"solid\"},startColor:{type:ControlType.Color,defaultValue:\"#000\",hidden:props=>props.mode!==\"gradient\"},endColor:{type:ControlType.Color,defaultValue:\"#FFF\",hidden:props=>props.mode!==\"gradient\"},angle:{type:ControlType.Number,defaultValue:180,min:-360,max:360,unit:\"\\xb0\",hidden:props=>props.mode!==\"gradient\"}}},prefix:{type:ControlType.String,placeholder:\"Prefix\"},suffix:{type:ControlType.String,placeholder:\"Suffix\"},decoration:{type:ControlType.Enum,defaultValue:\"none\",options:[\"none\",\"underline\",\"line-through\"],optionTitles:[\"None\",\"Underline\",\"Strikethrough\"]},balance:{type:ControlType.Boolean,defaultValue:false},userSelect:{type:ControlType.Boolean,defaultValue:true},tag:{type:ControlType.Enum,defaultValue:\"p\",displaySegmentedControl:true,options:[\"h1\",\"h2\",\"h3\",\"p\"],optionTitles:[\"H1\",\"H2\",\"H3\",\"P\"]},monospace:{type:ControlType.Boolean,defaultValue:false,description:\"More components at [Framer University](https://frameruni.link/cc).\"}});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"AnimatedNumberCounter\",\"slots\":[],\"annotations\":{\"framerSupportedLayoutHeight\":\"any\",\"framerContractVersion\":\"1\",\"framerSupportedLayoutWidth\":\"any\",\"framerDisableUnlink\":\"\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./AnimatedNumberCounter_Prod.map", "// Generated by Framer (0c5492c)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,getFontsFromSharedStyle,Link,RichText,SVG,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import*as sharedStyle1 from\"https://framerusercontent.com/modules/ta5JxKsRLwL4blHcuPTr/49KEdl7z5zq1gPgKygiH/Weq2QQrYI.js\";import*as sharedStyle from\"https://framerusercontent.com/modules/uTuMa1C954mwzGNw8jJy/XRCAqKMA1pHImu15bPM7/XRvvb45hc.js\";const enabledGestures={Y18Q6oVin:{hover:true}};const serializationHash=\"framer-TvSIo\";const variantClassNames={Y18Q6oVin:\"framer-v-16kh6v5\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={delay:0,duration:.5,ease:[.25,0,.7,1],type:\"tween\"};const transformTemplate1=(_,t)=>`translate(-50%, -50%) ${t}`;const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const getProps=({description,height,id,link,showArrowRight,title,width,...props})=>{return{...props,D5QaJkq2w:description??props.D5QaJkq2w??\"Business design strategy, mentorship, \\ndesign system management, ...\",EZhZ7Dcmo:title??props.EZhZ7Dcmo??\"Design Leadership & Management\",szV1HetO_:link??props.szV1HetO_,uGsM5Z6po:showArrowRight??props.uGsM5Z6po??true};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const fallbackRef=useRef(null);const refBinding=ref??fallbackRef;const defaultLayoutId=React.useId();const{activeLocale,setLocale}=useLocaleInfo();const componentViewport=useComponentViewport();const{style,className,layoutId,variant,EZhZ7Dcmo,D5QaJkq2w,szV1HetO_,uGsM5Z6po,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({defaultVariant:\"Y18Q6oVin\",enabledGestures,ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const isDisplayed=()=>{if(gestureVariant===\"Y18Q6oVin-hover\")return false;return true;};return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(Link,{href:szV1HetO_,motionChild:true,nodeId:\"Y18Q6oVin\",scopeId:\"qV8yIXMfJ\",children:/*#__PURE__*/_jsxs(motion.a,{...restProps,...gestureHandlers,className:`${cx(scopingClassNames,\"framer-16kh6v5\",className,classNames)} framer-y7q4uf`,\"data-border\":true,\"data-framer-name\":\"Variant 1\",layoutDependency:layoutDependency,layoutId:\"Y18Q6oVin\",ref:refBinding,style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"var(--token-2d96556b-711a-4bac-852b-37eb94f99858, rgb(26, 26, 26))\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",...style},...addPropertyOverrides({\"Y18Q6oVin-hover\":{\"data-framer-name\":undefined}},baseVariant,gestureVariant),children:[isDisplayed()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-aq2gwa\",layoutDependency:layoutDependency,layoutId:\"CnJrQ0ZvI\",children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1vuefp3\",layoutDependency:layoutDependency,layoutId:\"Xo9Xph4AB\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h1,{className:\"framer-styles-preset-u82bdh\",\"data-styles-preset\":\"XRvvb45hc\",style:{\"--framer-text-color\":\"var(--extracted-gdpscs, var(--token-848b1674-1eb2-458a-918d-d1f6f0f57fc2, rgb(255, 255, 255)))\"},children:\"Design Leadership & Management\"})}),className:\"framer-7ek4ru\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"i4agGFXY3\",style:{\"--extracted-gdpscs\":\"var(--token-848b1674-1eb2-458a-918d-d1f6f0f57fc2, rgb(255, 255, 255))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},text:EZhZ7Dcmo,verticalAlignment:\"top\",withExternalLayout:true}),uGsM5Z6po&&/*#__PURE__*/_jsx(SVG,{className:\"framer-uqv7s6\",\"data-framer-name\":\"Icon\",fill:'var(--token-ba49841d-b68c-4bf1-a506-bf45a3778605, rgb(240, 146, 110)) /* {\"name\":\"Primary Light\"} */',intrinsicHeight:32,intrinsicWidth:32,layoutDependency:layoutDependency,layoutId:\"yYo_i5G5M\",svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"32\" height=\"32\" viewBox=\"0 0 256 256\"><path d=\"M128 24a104 104 0 1 0 104 104A104.11 104.11 0 0 0 128 24Zm0 192a88 88 0 1 1 88-88 88.1 88.1 0 0 1-88 88Zm29.66-93.66a8 8 0 0 1 0 11.32l-40 40a8 8 0 0 1-11.32-11.32L140.69 128l-34.35-34.34a8 8 0 0 1 11.32-11.32Z\"/></svg>',withExternalLayout:true})]})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-34ill2\",\"data-framer-name\":\"Hover\",layoutDependency:layoutDependency,layoutId:\"BB3XBIp1c\",style:{backgroundColor:\"var(--token-ba49841d-b68c-4bf1-a506-bf45a3778605, rgb(240, 146, 110))\",opacity:0},variants:{\"Y18Q6oVin-hover\":{opacity:1}},children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-dhqs76\",layoutDependency:layoutDependency,layoutId:\"XpPC_7B08\",transformTemplate:transformTemplate1,children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h1,{className:\"framer-styles-preset-u82bdh\",\"data-styles-preset\":\"XRvvb45hc\",style:{\"--framer-text-color\":\"var(--extracted-gdpscs, var(--token-cc751e12-c9ad-4350-808c-01e472480e15, rgb(3, 3, 3)))\"},children:\"Design Leadership & Management\"})}),className:\"framer-1sp0yln\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"wQehuQqBP\",style:{\"--extracted-gdpscs\":\"var(--token-cc751e12-c9ad-4350-808c-01e472480e15, rgb(3, 3, 3))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},text:EZhZ7Dcmo,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-75uwm8\",\"data-styles-preset\":\"Weq2QQrYI\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-cc751e12-c9ad-4350-808c-01e472480e15, rgb(3, 3, 3)))\"},children:\"Design Leadership\"})}),className:\"framer-bcrx8c\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"qnAGrx60u\",style:{\"--extracted-r6o4lv\":\"var(--token-cc751e12-c9ad-4350-808c-01e472480e15, rgb(3, 3, 3))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},text:D5QaJkq2w,verticalAlignment:\"top\",withExternalLayout:true})]})})]})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-TvSIo.framer-y7q4uf, .framer-TvSIo .framer-y7q4uf { display: block; }\",\".framer-TvSIo.framer-16kh6v5 { align-content: center; align-items: center; cursor: pointer; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: 117px; justify-content: center; padding: 0px; position: relative; text-decoration: none; width: 1446px; }\",\".framer-TvSIo .framer-aq2gwa { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 32px 24px 32px 24px; position: relative; width: 100%; }\",\".framer-TvSIo .framer-1vuefp3 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; height: min-content; justify-content: space-between; max-width: 1200px; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-TvSIo .framer-7ek4ru { flex: 1 0 0px; height: auto; position: relative; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; }\",\".framer-TvSIo .framer-uqv7s6 { aspect-ratio: 1 / 1; bottom: -4px; flex: none; position: absolute; right: 0px; top: -7px; width: var(--framer-aspect-ratio-supported, 64px); z-index: 1; }\",\".framer-TvSIo .framer-34ill2 { flex: none; height: 1%; left: calc(50.00000000000002% - 100% / 2); overflow: hidden; position: absolute; top: calc(49.7777777777778% - 1% / 2); width: 100%; z-index: 1; }\",\".framer-TvSIo .framer-dhqs76 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; height: min-content; justify-content: space-between; left: 50%; max-width: 1200px; overflow: visible; padding: 0px; position: absolute; top: 0%; width: 1200px; }\",\".framer-TvSIo .framer-1sp0yln { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-TvSIo .framer-bcrx8c { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 334px; word-break: break-word; word-wrap: break-word; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-TvSIo.framer-16kh6v5, .framer-TvSIo .framer-aq2gwa { gap: 0px; } .framer-TvSIo.framer-16kh6v5 > *, .framer-TvSIo .framer-aq2gwa > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-TvSIo.framer-16kh6v5 > :first-child, .framer-TvSIo .framer-aq2gwa > :first-child { margin-top: 0px; } .framer-TvSIo.framer-16kh6v5 > :last-child, .framer-TvSIo .framer-aq2gwa > :last-child { margin-bottom: 0px; } }\",\".framer-TvSIo.framer-v-16kh6v5.hover .framer-34ill2 { height: 100%; top: 0px; }\",\".framer-TvSIo.framer-v-16kh6v5.hover .framer-dhqs76 { top: 50%; }\",\".framer-TvSIo.framer-v-16kh6v5.hover .framer-1sp0yln { flex: 1 0 0px; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; }\",...sharedStyle.css,...sharedStyle1.css,'.framer-TvSIo[data-border=\"true\"]::after, .framer-TvSIo [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 117\n * @framerIntrinsicWidth 1446\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]},\"cad0to977\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerVariables {\"EZhZ7Dcmo\":\"title\",\"D5QaJkq2w\":\"description\",\"szV1HetO_\":\"link\",\"uGsM5Z6po\":\"showArrowRight\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerAutoSizeImages true\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n */const FramerqV8yIXMfJ=withCSS(Component,css,\"framer-TvSIo\");export default FramerqV8yIXMfJ;FramerqV8yIXMfJ.displayName=\"Categorie Homepage\";FramerqV8yIXMfJ.defaultProps={height:117,width:1446};addPropertyControls(FramerqV8yIXMfJ,{EZhZ7Dcmo:{defaultValue:\"Design Leadership & Management\",title:\"Title\",type:ControlType.String},D5QaJkq2w:{defaultValue:\"Business design strategy, mentorship, \\ndesign system management, ...\",description:\"\",displayTextArea:true,title:\"Description\",type:ControlType.String},szV1HetO_:{title:\"Link\",type:ControlType.Link},uGsM5Z6po:{defaultValue:true,title:\"Show Arrow Right\",type:ControlType.Boolean}});addFonts(FramerqV8yIXMfJ,[{explicitInter:true,fonts:[{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/5vvr9Vy74if2I6bQbJvbw7SY1pQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/EOr0mi4hNtlgWNn9if640EZzXCo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Y9k9QrlZAqio88Klkmbd8VoMQc.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/OYrD2tBIBPvoJXiIHnLoOXnY9M.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/JeYwfuaPfZHQhEG8U5gtPDZ7WQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/vQyevYAyHtARFwPqUzQGpnDs.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/b6Y37FthZeALduNqHicBT6FutY.woff2\",weight:\"400\"}]},...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerqV8yIXMfJ\",\"slots\":[],\"annotations\":{\"framerDisplayContentsDiv\":\"false\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"cad0to977\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerIntrinsicHeight\":\"117\",\"framerImmutableVariables\":\"true\",\"framerComponentViewportWidth\":\"true\",\"framerColorSyntax\":\"true\",\"framerAutoSizeImages\":\"true\",\"framerContractVersion\":\"1\",\"framerIntrinsicWidth\":\"1446\",\"framerVariables\":\"{\\\"EZhZ7Dcmo\\\":\\\"title\\\",\\\"D5QaJkq2w\\\":\\\"description\\\",\\\"szV1HetO_\\\":\\\"link\\\",\\\"uGsM5Z6po\\\":\\\"showArrowRight\\\"}\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./qV8yIXMfJ.map", "// Generated by Framer (af04cc1)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,CycleVariantState,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useOnVariantChange,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";const cycleOrder=[\"Ebj8oV9yR\",\"awz9F8rOz\"];const serializationHash=\"framer-Lof7s\";const variantClassNames={awz9F8rOz:\"framer-v-16pcmid\",Ebj8oV9yR:\"framer-v-k906zz\"};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={delay:0,duration:1.2,ease:[.87,0,.15,1.01],type:\"tween\"};const transition2={delay:0,duration:0,ease:[.65,0,.4,1.01],type:\"tween\"};const transformTemplate1=(_,t)=>`translate(-50%, -50%) ${t}`;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={\"Variant 1\":\"Ebj8oV9yR\",\"Variant 2\":\"awz9F8rOz\"};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:\"Ebj8oV9yR\"};};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:\"Ebj8oV9yR\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onAppearf382t5=activeVariantCallback(async(...args)=>{await delay(()=>setVariant(CycleVariantState),2e3);});useOnVariantChange(baseVariant,{default:onAppearf382t5});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,...addPropertyOverrides({awz9F8rOz:{value:transition2}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsxs(motion.div,{...restProps,...gestureHandlers,className:cx(serializationHash,...sharedStyleClassNames,\"framer-k906zz\",className,classNames),\"data-framer-name\":\"Variant 1\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"Ebj8oV9yR\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{...style},...addPropertyOverrides({awz9F8rOz:{\"data-framer-name\":\"Variant 2\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1jrrs82\",layoutDependency:layoutDependency,layoutId:\"dHfB5M_CD\",style:{backgroundColor:\"var(--token-ba49841d-b68c-4bf1-a506-bf45a3778605, rgb(240, 146, 110))\",borderBottomLeftRadius:999,borderBottomRightRadius:999,borderTopLeftRadius:999,borderTopRightRadius:999},transformTemplate:transformTemplate1}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1nbyx6p\",layoutDependency:layoutDependency,layoutId:\"webVVNvtz\",style:{backgroundColor:\"var(--token-ba49841d-b68c-4bf1-a506-bf45a3778605, rgb(240, 146, 110))\",borderBottomLeftRadius:999,borderBottomRightRadius:999,borderTopLeftRadius:999,borderTopRightRadius:999}})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-Lof7s.framer-qzx4oj, .framer-Lof7s .framer-qzx4oj { display: block; }\",\".framer-Lof7s.framer-k906zz { height: 16px; overflow: hidden; position: relative; width: 16px; }\",\".framer-Lof7s .framer-1jrrs82 { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 1px); left: 50%; overflow: hidden; position: absolute; top: 50%; width: 1px; will-change: var(--framer-will-change-override, transform); }\",\".framer-Lof7s .framer-1nbyx6p { flex: none; height: 6px; left: calc(50.00000000000002% - 6px / 2); overflow: hidden; position: absolute; top: calc(50.00000000000002% - 6px / 2); width: 6px; will-change: var(--framer-will-change-override, transform); }\",\".framer-Lof7s.framer-v-16pcmid .framer-1jrrs82 { height: var(--framer-aspect-ratio-supported, 16px); width: 16px; }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 16\n * @framerIntrinsicWidth 16\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]},\"awz9F8rOz\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerxxBb4cLiY=withCSS(Component,css,\"framer-Lof7s\");export default FramerxxBb4cLiY;FramerxxBb4cLiY.displayName=\"Pulse\";FramerxxBb4cLiY.defaultProps={height:16,width:16};addPropertyControls(FramerxxBb4cLiY,{variant:{options:[\"Ebj8oV9yR\",\"awz9F8rOz\"],optionTitles:[\"Variant 1\",\"Variant 2\"],title:\"Variant\",type:ControlType.Enum}});addFonts(FramerxxBb4cLiY,[{explicitInter:true,fonts:[]}],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerxxBb4cLiY\",\"slots\":[],\"annotations\":{\"framerComponentViewportWidth\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerContractVersion\":\"1\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"awz9F8rOz\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerIntrinsicWidth\":\"16\",\"framerImmutableVariables\":\"true\",\"framerIntrinsicHeight\":\"16\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./xxBb4cLiY.map", "// Generated by Framer (dc53115)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,ComponentViewportProvider,Container,cx,GeneratedComponentContext,getFonts,getFontsFromSharedStyle,getLoadingLazyAtYPosition,Image,PropertyOverrides,ResolveLinks,RichText,SVG,useComponentViewport,useCustomCursors,useHydratedBreakpointVariants,useIsOnFramerCanvas,useLocaleInfo,useRouteElementId,useRouter,withCSS,withFX}from\"framer\";import{LayoutGroup,motion}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import Ticker1 from\"https://framerusercontent.com/modules/B2xAlJLcN0gOnt11mSPw/jyRNgY7vYWXe6t31T0wo/Ticker.js\";import Ticker from\"https://framerusercontent.com/modules/B2xAlJLcN0gOnt11mSPw/XVUmpmPn1EPL0dzocT35/Ticker.js\";import{Video}from\"https://framerusercontent.com/modules/lRDHiNWNVWmE0lqtoVHP/tbiAmyP8q4mMaXLQcmj3/Video.js\";import AnimatedNumberCounter from\"https://framerusercontent.com/modules/qpjhCcDm4G1NbFAlpMKV/OnyZiTlIjOBuSKcKQWFv/AnimatedNumberCounter_Prod.js\";import{Icon as Phosphor}from\"https://framerusercontent.com/modules/tYScH7LTqUtz5KUaUAYP/CAjjxbTJBxHwH1MagCef/Phosphor.js\";import FooterName from\"#framer/local/canvasComponent/Charr_DBw/Charr_DBw.js\";import FooterLinks from\"#framer/local/canvasComponent/lGaKJs0Qn/lGaKJs0Qn.js\";import Navigation from\"#framer/local/canvasComponent/lzr8ycQIs/lzr8ycQIs.js\";import CategorieHomepage from\"#framer/local/canvasComponent/qV8yIXMfJ/qV8yIXMfJ.js\";import Subtitles from\"#framer/local/canvasComponent/WBtgaz88a/WBtgaz88a.js\";import Pulse from\"#framer/local/canvasComponent/xxBb4cLiY/xxBb4cLiY.js\";import*as sharedStyle2 from\"#framer/local/css/aMGPCbKlo/aMGPCbKlo.js\";import*as sharedStyle5 from\"#framer/local/css/b4AiUx4BN/b4AiUx4BN.js\";import*as sharedStyle1 from\"#framer/local/css/b4ipLjiib/b4ipLjiib.js\";import*as sharedStyle8 from\"#framer/local/css/c8r2ZHcvX/c8r2ZHcvX.js\";import*as sharedStyle from\"#framer/local/css/fw6mVOiU_/fw6mVOiU_.js\";import*as sharedStyle4 from\"#framer/local/css/qdfNQJViT/qdfNQJViT.js\";import*as sharedStyle3 from\"#framer/local/css/s15qehCkf/s15qehCkf.js\";import*as sharedStyle6 from\"#framer/local/css/Weq2QQrYI/Weq2QQrYI.js\";import*as sharedStyle7 from\"#framer/local/css/ZA62oFIO5/ZA62oFIO5.js\";import metadataProvider from\"#framer/local/webPageMetadata/augiA20Il/augiA20Il.js\";const NavigationFonts=getFonts(Navigation);const VideoFonts=getFonts(Video);const PulseFonts=getFonts(Pulse);const PhosphorFonts=getFonts(Phosphor);const MotionDivWithFX=withFX(motion.div);const TickerFonts=getFonts(Ticker);const SubtitlesFonts=getFonts(Subtitles);const AnimatedNumberCounterFonts=getFonts(AnimatedNumberCounter);const ImageWithFX=withFX(Image);const CategorieHomepageFonts=getFonts(CategorieHomepage);const Ticker1Fonts=getFonts(Ticker1);const FooterLinksFonts=getFonts(FooterLinks);const ContainerWithFX=withFX(Container);const FooterNameFonts=getFonts(FooterName);const breakpoints={vKO9iV1kM:\"(min-width: 810px) and (max-width: 1199px)\",WQLkyLRf1:\"(min-width: 1200px)\",zmyL5hzn0:\"(max-width: 809px)\"};const isBrowser=()=>typeof document!==\"undefined\";const serializationHash=\"framer-i3wyD\";const variantClassNames={vKO9iV1kM:\"framer-v-1rrk1j1\",WQLkyLRf1:\"framer-v-72rtr7\",zmyL5hzn0:\"framer-v-pe7x76\"};const transformTemplate1=(_,t)=>`translate(-50%, -50%) ${t}`;const HTMLStyle=({value})=>{const onCanvas=useIsOnFramerCanvas();if(onCanvas)return null;return /*#__PURE__*/_jsx(\"style\",{dangerouslySetInnerHTML:{__html:value},\"data-framer-html-style\":\"\"});};const humanReadableVariantMap={Desktop:\"WQLkyLRf1\",Phone:\"zmyL5hzn0\",Tablet:\"vKO9iV1kM\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"WQLkyLRf1\"};};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const fallbackRef=useRef(null);const refBinding=ref??fallbackRef;const defaultLayoutId=React.useId();const{activeLocale,setLocale}=useLocaleInfo();const componentViewport=useComponentViewport();const{style,className,layoutId,variant,...restProps}=getProps(props);React.useEffect(()=>{const metadata=metadataProvider(undefined,activeLocale);if(metadata.robots){let robotsTag=document.querySelector('meta[name=\"robots\"]');if(robotsTag){robotsTag.setAttribute(\"content\",metadata.robots);}else{robotsTag=document.createElement(\"meta\");robotsTag.setAttribute(\"name\",\"robots\");robotsTag.setAttribute(\"content\",metadata.robots);document.head.appendChild(robotsTag);}}},[undefined,activeLocale]);React.useInsertionEffect(()=>{const metadata=metadataProvider(undefined,activeLocale);document.title=metadata.title||\"\";if(metadata.viewport){document.querySelector('meta[name=\"viewport\"]')?.setAttribute(\"content\",metadata.viewport);}},[undefined,activeLocale]);const[baseVariant,hydratedBaseVariant]=useHydratedBreakpointVariants(variant,breakpoints,false);const gestureVariant=undefined;const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className,sharedStyle2.className,sharedStyle3.className,sharedStyle4.className,sharedStyle5.className,sharedStyle6.className,sharedStyle7.className,sharedStyle8.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const elementId=useRouteElementId(\"Dz21lgpbe\");const ref1=React.useRef(null);const elementId1=useRouteElementId(\"Y78NFEnJ3\");const ref2=React.useRef(null);const router=useRouter();const elementId2=useRouteElementId(\"siJ5eSOqE\");const ref3=React.useRef(null);const elementId3=useRouteElementId(\"uE7eZbU94\");const ref4=React.useRef(null);useCustomCursors({});return /*#__PURE__*/_jsx(GeneratedComponentContext.Provider,{value:{primaryVariantId:\"WQLkyLRf1\",variantClassNames},children:/*#__PURE__*/_jsxs(LayoutGroup,{id:layoutId??defaultLayoutId,children:[/*#__PURE__*/_jsx(HTMLStyle,{value:\"html body { background: var(--token-7144749d-22b1-40e0-b99d-19560f665c6d, rgb(9, 13, 15)); }\"}),/*#__PURE__*/_jsxs(motion.div,{...restProps,className:cx(scopingClassNames,\"framer-72rtr7\",className),ref:refBinding,style:{...style},children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-klzu4v\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:84,width:\"min(max(100vw - 32px, 1px), 1200px)\",y:24,children:/*#__PURE__*/_jsx(Container,{className:\"framer-f3knl4-container\",nodeId:\"Lyo1IEbGi\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{zmyL5hzn0:{variant:\"D_TmAJcWe\"}},children:/*#__PURE__*/_jsx(Navigation,{height:\"100%\",id:\"Lyo1IEbGi\",layoutId:\"Lyo1IEbGi\",style:{maxWidth:\"100%\",width:\"100%\"},variant:\"Y1N2cPSfd\",width:\"100%\"})})})})}),/*#__PURE__*/_jsx(\"header\",{className:\"framer-1on28qo\",\"data-framer-name\":\"Header\",id:elementId,ref:ref1,children:/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__styleTransformEffectEnabled:true,__framer__transformTargets:[{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0}},{ref:ref1,target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:.8,skewX:0,skewY:0,x:0,y:0}}],__framer__transformTrigger:\"onScrollTarget\",__framer__transformViewportThreshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1dq49jz\",\"data-framer-name\":\"Main\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-18fapew\",\"data-framer-name\":\"Video Section\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-j9bfz8-container\",isModuleExternal:true,nodeId:\"h0Mz4U4Dg\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Video,{backgroundColor:\"rgba(0, 0, 0, 0)\",borderRadius:16,bottomLeftRadius:16,bottomRightRadius:16,controls:false,height:\"100%\",id:\"h0Mz4U4Dg\",isMixedBorderRadius:false,layoutId:\"h0Mz4U4Dg\",loop:true,muted:true,objectFit:\"cover\",playing:true,poster:\"https://framerusercontent.com/images/h8kbJOjfEqVEQ7rBVthY77rxJas.jpg\",posterEnabled:true,srcFile:\"https://framerusercontent.com/assets/R8nZwIXKVwrQatsz2ZLQFODwbFg.webm\",srcType:\"Upload\",srcUrl:\"https://framerusercontent.com/assets/MLWPbW1dUQawJLhhun3dBwpgJak.mp4\",startTime:0,style:{height:\"100%\",width:\"100%\"},topLeftRadius:16,topRightRadius:16,volume:25,width:\"100%\"})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-14dw043\",\"data-framer-name\":\"Welcome Intro\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-qlybuj\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-clbi0y\",\"data-styles-preset\":\"fw6mVOiU_\",style:{\"--framer-text-color\":\"var(--token-848b1674-1eb2-458a-918d-d1f6f0f57fc2, rgb(255, 255, 255))\"},children:\"WELCOME & SERVUS\"})}),className:\"framer-1loios0\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1b57wg3\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{zmyL5hzn0:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h3\",{className:\"framer-styles-preset-sb3ds2\",\"data-styles-preset\":\"b4ipLjiib\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:[\"I'm Tony Andreas Rudolph  \u2014\",/*#__PURE__*/_jsx(\"br\",{}),\"a passionate\"]})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-sb3ds2\",\"data-styles-preset\":\"b4ipLjiib\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"I'm Tony Andreas Rudolph  \u2014 a passionate\"})}),className:\"framer-1qeuet\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{vKO9iV1kM:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h1\",{style:{\"--font-selector\":\"RlM7UG9wcGlucy1ib2xk\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-size\":\"32px\",\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"1.1em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-ba49841d-b68c-4bf1-a506-bf45a3778605, rgb(240, 146, 110))\"},children:[/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-font-size\":\"56px\"},children:\"PRODUCT DESIGN LEAD\"}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-font-size\":\"64px\"},children:/*#__PURE__*/_jsx(\"br\",{})}),/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"RlM7UG9wcGlucy1saWdodA==\",\"--framer-font-weight\":\"300\"},children:\"& VFX ARTIST\"})]})})},zmyL5hzn0:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h1\",{style:{\"--font-selector\":\"RlM7UG9wcGlucy1ib2xk\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-size\":\"32px\",\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"1.1em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-ba49841d-b68c-4bf1-a506-bf45a3778605, rgb(240, 146, 110))\"},children:[/*#__PURE__*/_jsxs(\"span\",{style:{\"--framer-font-size\":\"40px\"},children:[\"PRODUCT DESIGN LEAD\",/*#__PURE__*/_jsx(\"br\",{})]}),/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"RlM7UG9wcGlucy1saWdodA==\",\"--framer-font-weight\":\"300\"},children:\"& VFX ARTIST\"})]})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h1\",{style:{\"--font-selector\":\"RlM7UG9wcGlucy1ib2xk\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-size\":\"48px\",\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"1.1em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-ba49841d-b68c-4bf1-a506-bf45a3778605, rgb(240, 146, 110))\"},children:[/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-font-size\":\"64px\"},children:\"PRODUCT DESIGN LEAD\"}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-font-size\":\"80px\"},children:/*#__PURE__*/_jsx(\"br\",{})}),/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"RlM7UG9wcGlucy1saWdodA==\",\"--framer-font-weight\":\"300\"},children:\"& VFX ARTIST\"})]})}),className:\"framer-fwolxu\",fonts:[\"FS;Poppins-bold\",\"FS;Poppins-light\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h3\",{className:\"framer-styles-preset-sb3ds2\",\"data-styles-preset\":\"b4ipLjiib\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:[\"who loves to merge Business Strategy & design\",/*#__PURE__*/_jsx(\"br\",{}),\"with an impactful, joyful & simple user experience.\"]})}),className:\"framer-n2cdvx\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-3y96y6\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1y1g9xc\",\"data-framer-name\":\"ScrollDown\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{vKO9iV1kM:{y:(componentViewport?.y||0)+0+0+0+0+0+172.2222+0+622.4+0+0+.4},zmyL5hzn0:{y:(componentViewport?.y||0)+0+0+0+0+0+100+70+0+722.4+0+0+.4}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:16,width:\"16px\",y:(componentViewport?.y||0)+0+0+0+0+100+70+0+722.4+0+0+.4,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1cr9o5g-container\",nodeId:\"TvQF40OZx\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Pulse,{height:\"100%\",id:\"TvQF40OZx\",layoutId:\"TvQF40OZx\",style:{height:\"100%\",width:\"100%\"},variant:\"Ebj8oV9yR\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1knzs4a\",\"data-styles-preset\":\"aMGPCbKlo\",children:\"Available full-time & freelance\"})}),className:\"framer-1mln26x\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-16cvhib\",\"data-framer-name\":\"ScrollDown\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1kbanzu-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"MemANzZNs\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"var(--token-848b1674-1eb2-458a-918d-d1f6f0f57fc2, rgb(255, 255, 255))\",height:\"100%\",iconSearch:\"arrow down\",iconSelection:\"MapPin\",id:\"MemANzZNs\",layoutId:\"MemANzZNs\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"fill\",width:\"100%\"})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1knzs4a\",\"data-styles-preset\":\"aMGPCbKlo\",children:\"Located in Munich, Germany\"})}),className:\"framer-n9gr56\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})]})]})]})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1hjytob-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"vk9nb_n50\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{vKO9iV1kM:{fadeOptions:{fadeAlpha:0,fadeContent:true,fadeInset:0,fadeWidth:30,overflow:false}},zmyL5hzn0:{fadeOptions:{fadeAlpha:0,fadeContent:true,fadeInset:0,fadeWidth:28,overflow:false}}},children:/*#__PURE__*/_jsx(Ticker,{alignment:\"center\",direction:\"left\",fadeOptions:{fadeAlpha:0,fadeContent:true,fadeInset:0,fadeWidth:59,overflow:false},gap:80,height:\"100%\",hoverFactor:1,id:\"vk9nb_n50\",layoutId:\"vk9nb_n50\",padding:0,paddingBottom:0,paddingLeft:0,paddingPerSide:false,paddingRight:0,paddingTop:0,sizingOptions:{heightType:true,widthType:true},slots:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:466,intrinsicWidth:1280,pixelHeight:932,pixelWidth:2560,sizes:\"164.8069px\",src:\"https://framerusercontent.com/images/cjpiyV3Ut53XWL736KsPbat5o.png?scale-down-to=2048\",srcSet:\"https://framerusercontent.com/images/cjpiyV3Ut53XWL736KsPbat5o.png?scale-down-to=512 512w,https://framerusercontent.com/images/cjpiyV3Ut53XWL736KsPbat5o.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/cjpiyV3Ut53XWL736KsPbat5o.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/cjpiyV3Ut53XWL736KsPbat5o.png 2560w\"},className:\"framer-11pep1n\",\"data-framer-name\":\"Sony img\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:157.5,intrinsicWidth:640,pixelHeight:315,pixelWidth:1280,sizes:\"117.8413px\",src:\"https://framerusercontent.com/images/wTTLaQmQIENOzI7Nb8IFyFnRGQ.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/wTTLaQmQIENOzI7Nb8IFyFnRGQ.png?scale-down-to=512 512w,https://framerusercontent.com/images/wTTLaQmQIENOzI7Nb8IFyFnRGQ.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/wTTLaQmQIENOzI7Nb8IFyFnRGQ.png 1280w\"},className:\"framer-1qtx4pc\",\"data-framer-name\":\"Nintendo img\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:873.5,intrinsicWidth:1576,pixelHeight:1747,pixelWidth:3152,sizes:\"92.016px\",src:\"https://framerusercontent.com/images/2dovEKksl4snBdQ3MKzKBxjJCw.png?scale-down-to=2048\",srcSet:\"https://framerusercontent.com/images/2dovEKksl4snBdQ3MKzKBxjJCw.png?scale-down-to=512 512w,https://framerusercontent.com/images/2dovEKksl4snBdQ3MKzKBxjJCw.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/2dovEKksl4snBdQ3MKzKBxjJCw.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/2dovEKksl4snBdQ3MKzKBxjJCw.png 3152w\"},className:\"framer-1lrcegm\",\"data-framer-name\":\"Lukasfilm img\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:498,intrinsicWidth:600,pixelHeight:996,pixelWidth:1200,sizes:\"75.9036px\",src:\"https://framerusercontent.com/images/9FrzuZ5rTEWkyj1aD8CUrP3rZ3k.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/9FrzuZ5rTEWkyj1aD8CUrP3rZ3k.png?scale-down-to=512 512w,https://framerusercontent.com/images/9FrzuZ5rTEWkyj1aD8CUrP3rZ3k.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/9FrzuZ5rTEWkyj1aD8CUrP3rZ3k.png 1200w\"},className:\"framer-8pt006\",\"data-framer-name\":\"20th_Century_Studios img\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:512,intrinsicWidth:512,pixelHeight:1024,pixelWidth:1024,sizes:\"65px\",src:\"https://framerusercontent.com/images/sZkSfX9XEPwfZJX8NomqPnMzgw.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/sZkSfX9XEPwfZJX8NomqPnMzgw.png?scale-down-to=512 512w,https://framerusercontent.com/images/sZkSfX9XEPwfZJX8NomqPnMzgw.png 1024w\"},className:\"framer-7n4heg\",\"data-framer-name\":\"BMW img\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:256,intrinsicWidth:1801.5,pixelHeight:512,pixelWidth:3603,sizes:\"154.8164px\",src:\"https://framerusercontent.com/images/5FVHpODPE9cI3Kv0AmqX9Ud5Hw.png?scale-down-to=2048\",srcSet:\"https://framerusercontent.com/images/5FVHpODPE9cI3Kv0AmqX9Ud5Hw.png?scale-down-to=512 512w,https://framerusercontent.com/images/5FVHpODPE9cI3Kv0AmqX9Ud5Hw.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/5FVHpODPE9cI3Kv0AmqX9Ud5Hw.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/5FVHpODPE9cI3Kv0AmqX9Ud5Hw.png 3603w\"},className:\"framer-1wiccai\",\"data-framer-name\":\"VOLVO img\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:843,intrinsicWidth:1984,pixelHeight:1686,pixelWidth:3968,sizes:\"91.7865px\",src:\"https://framerusercontent.com/images/IbAPwgfhy6zH6TbEc9X4gX2rvtE.png?scale-down-to=2048\",srcSet:\"https://framerusercontent.com/images/IbAPwgfhy6zH6TbEc9X4gX2rvtE.png?scale-down-to=512 512w,https://framerusercontent.com/images/IbAPwgfhy6zH6TbEc9X4gX2rvtE.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/IbAPwgfhy6zH6TbEc9X4gX2rvtE.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/IbAPwgfhy6zH6TbEc9X4gX2rvtE.png 3968w\"},className:\"framer-1uomlx8\",\"data-framer-name\":\"Disney img\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:80.5,intrinsicWidth:156.5,pixelHeight:161,pixelWidth:313,src:\"https://framerusercontent.com/images/IEb05869d4zzLop0Yz2f94rrw.png\"},className:\"framer-yyz86m\",\"data-framer-name\":\"DCS_logo\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:225,intrinsicWidth:633.5,pixelHeight:450,pixelWidth:1267,sizes:\"135.1467px\",src:\"https://framerusercontent.com/images/V7nuG8ufXdEqKkyQjvGfWM3RhBI.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/V7nuG8ufXdEqKkyQjvGfWM3RhBI.png?scale-down-to=512 512w,https://framerusercontent.com/images/V7nuG8ufXdEqKkyQjvGfWM3RhBI.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/V7nuG8ufXdEqKkyQjvGfWM3RhBI.png 1267w\"},className:\"framer-50p2xi\",\"data-framer-name\":\"Amazon-logo\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:221.5,intrinsicWidth:1250,pixelHeight:443,pixelWidth:2500,sizes:\"180.5869px\",src:\"https://framerusercontent.com/images/Ti6X8XGWtedOddCKgi5asT82UYY.png?scale-down-to=2048\",srcSet:\"https://framerusercontent.com/images/Ti6X8XGWtedOddCKgi5asT82UYY.png?scale-down-to=512 512w,https://framerusercontent.com/images/Ti6X8XGWtedOddCKgi5asT82UYY.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/Ti6X8XGWtedOddCKgi5asT82UYY.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/Ti6X8XGWtedOddCKgi5asT82UYY.png 2500w\"},className:\"framer-atrtxm\",\"data-framer-name\":\"riseFX-logo\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:146,intrinsicWidth:868,pixelHeight:292,pixelWidth:1736,sizes:\"202.137px\",src:\"https://framerusercontent.com/images/X9kqw3bi1y03Zizv17GRTJafyyc.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/X9kqw3bi1y03Zizv17GRTJafyyc.png?scale-down-to=512 512w,https://framerusercontent.com/images/X9kqw3bi1y03Zizv17GRTJafyyc.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/X9kqw3bi1y03Zizv17GRTJafyyc.png 1736w\"},className:\"framer-1a93pte\",\"data-framer-name\":\"BCN-isuals-logo\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:53,intrinsicWidth:332.5,pixelHeight:106,pixelWidth:665,sizes:\"207.0283px\",src:\"https://framerusercontent.com/images/FFblZ4SEXbG9GIIjpXJnP9lLuA.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/FFblZ4SEXbG9GIIjpXJnP9lLuA.png?scale-down-to=512 512w,https://framerusercontent.com/images/FFblZ4SEXbG9GIIjpXJnP9lLuA.png 665w\"},className:\"framer-1w35va0\",\"data-framer-name\":\"parasol_island_share_image\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:65.5,intrinsicWidth:150,pixelHeight:131,pixelWidth:300,src:\"https://framerusercontent.com/images/tr3r6a9v9iy2GTfqBzsr28duMBU.png\"},className:\"framer-1wmzan\",\"data-framer-name\":\"Logo_psyop\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:166.5,intrinsicWidth:1179,pixelHeight:333,pixelWidth:2358,sizes:\"198.2703px\",src:\"https://framerusercontent.com/images/9I2GHOaw5LpOmAfxlRhtUeN78dM.png?scale-down-to=2048\",srcSet:\"https://framerusercontent.com/images/9I2GHOaw5LpOmAfxlRhtUeN78dM.png?scale-down-to=512 512w,https://framerusercontent.com/images/9I2GHOaw5LpOmAfxlRhtUeN78dM.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/9I2GHOaw5LpOmAfxlRhtUeN78dM.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/9I2GHOaw5LpOmAfxlRhtUeN78dM.png 2358w\"},className:\"framer-1k5wgf2\",\"data-framer-name\":\"ScanlineVFX-logo\"}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1hv4hd7\",\"data-framer-name\":\"MPC\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-eeee8o\",\"data-framer-name\":\"mpc_visual_effects_white_6a7095dcb4ffe1597c89\",fill:\"black\",intrinsicHeight:165,intrinsicWidth:369,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 369.38 165.15\" width=\"368.63\" height=\"165.15\"><defs><symbol id=\"a\" viewBox=\"0 0 492.5 141.81\"><path d=\"M443.94 45.48h48.56V0h-50.14c-40.14 0-72.68 31.75-72.68 70.9 0 39.16 32.54 70.9 72.68 70.9h50.14V96.32h-48.56c-14.04 0-25.42-11.38-25.42-25.42s11.38-25.42 25.42-25.42zM289.63 0h-71.04v141.81h45v-38h26.04c28.67 0 51.9-23.24 51.9-51.9S318.3 0 289.63 0zm-8.29 70.52h-17.75V35.51h17.75c9.67 0 17.51 7.84 17.51 17.51s-7.84 17.51-17.51 17.51zM111.62 0 83.39 65.4 55 0H0v141.45h45V55.09l21.81 48.36h.15l-.15.36h33l21.81-48.36v86.36h45V0h-55z\" fill=\"#fff\" stroke-width=\"0\"/></symbol><symbol id=\"b\" viewBox=\"0 0 369.38 165.15\"><use width=\"492.5\" height=\"141.81\" transform=\"scale(.75)\" xlink:href=\"#a\"/><path d=\"m21.14 146.15 4.09 13.28 4.09-13.28h4.3l-6.12 18.61h-4.67l-6.27-18.61h4.57zm28.3 0v18.61h-4.33v-18.61h4.33zm12.31 12.65h4.3c.13 1.81 1.42 2.78 3.57 2.78s3.23-1 3.23-2.2c0-.87-.66-1.63-2.2-1.84l-2.68-.34c-3.46-.45-5.83-2.18-5.83-5.51 0-3.15 2.89-5.93 7.4-5.93s7.27 2.49 7.45 5.96h-4.33c-.03-1.42-1.08-2.44-3.15-2.44s-3.12 1-3.12 2.1c0 1 .73 1.63 2.18 1.81l2.41.31c3.44.45 6.14 2.07 6.14 5.56 0 3.75-3.33 6.09-7.64 6.09s-7.64-2.57-7.74-6.35zm27.66-.61v-12.05h4.3v11.78c0 2.15 1.15 3.36 3.28 3.36s3.28-1.21 3.28-3.36v-11.78h4.3v12.05c0 4.12-2.68 6.93-7.58 6.93s-7.58-2.81-7.58-6.93zm32.45-12.04h5.28l6.54 18.61h-4.54l-1.21-3.75h-7.03l-1.21 3.75h-4.33l6.51-18.61zm4.93 11.29-2.39-7.48-2.39 7.48h4.78zm22.47-11.29v14.72h8.24v3.88h-12.55v-18.61h4.3zm47.96 0v3.81h-8.87v3.54h7.74v3.62h-7.74v3.83h8.87v3.81H184.1v-18.61h13.12zm25.67 0v3.7h-8.53v4.04h7.51v3.67h-7.51v7.19h-4.3v-18.61h12.83zm25.2 0v3.7h-8.53v4.04h7.51v3.67h-7.51v7.19h-4.3v-18.61h12.83zm25.49 0v3.81h-8.87v3.54h7.74v3.62h-7.74v3.83h8.87v3.81h-13.12v-18.61h13.12zm14.18 16.8c-1.94-1.97-2.6-4.51-2.6-7.48s.63-5.59 2.62-7.53c1.52-1.47 3.6-2.15 5.85-2.15 4.15 0 7.51 2.89 7.66 6.95h-4.3c-.08-1.81-1.31-3.12-3.44-3.12-1.15 0-2.02.37-2.62.97-1.15 1.15-1.44 2.73-1.44 4.88s.26 3.73 1.42 4.88c.63.63 1.55 1 2.78 1 2.34 0 3.23-1.6 3.31-3.18h4.28c-.37 4.25-3.41 6.95-7.64 6.95-2.23 0-4.38-.66-5.88-2.18zm23.99-12.97v-3.83h15.3v3.83h-5.49v14.78h-4.3v-14.78h-5.51zm25.67 8.82h4.3c.13 1.81 1.42 2.78 3.57 2.78s3.23-1 3.23-2.2c0-.87-.66-1.63-2.2-1.84l-2.68-.34c-3.46-.45-5.83-2.18-5.83-5.51 0-3.15 2.89-5.93 7.4-5.93s7.27 2.49 7.45 5.96h-4.33c-.03-1.42-1.08-2.44-3.15-2.44s-3.12 1-3.12 2.1c0 1 .73 1.63 2.18 1.81l2.41.31c3.44.45 6.14 2.07 6.14 5.56 0 3.75-3.33 6.09-7.64 6.09s-7.64-2.57-7.74-6.35z\" fill=\"#fff\" stroke-width=\"0\"/></symbol></defs><use width=\"369.38\" height=\"165.15\" xlink:href=\"#b\"/></svg>',withExternalLayout:true})})],speed:50,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-4kfa56\",\"data-framer-name\":\"Intro Text\",id:elementId1,ref:ref2,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{vKO9iV1kM:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"RlM7UG9wcGlucy1ib2xk\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-size\":\"33px\",\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"1.4em\",\"--framer-text-color\":\"var(--token-ba49841d-b68c-4bf1-a506-bf45a3778605, rgb(240, 146, 110))\"},children:'\"I excel at leading product design initiatives that fuel company growth, aligning user-centered innovation with business strategy to drive long-term success and profitability at scale.\"'})})},zmyL5hzn0:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"RlM7UG9wcGlucy1ib2xk\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-size\":\"23px\",\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"1.4em\",\"--framer-text-color\":\"var(--token-ba49841d-b68c-4bf1-a506-bf45a3778605, rgb(240, 146, 110))\"},children:'\"I excel at leading product design initiatives that fuel company growth, aligning user-centered innovation with business strategy to drive long-term success and profitability at scale.\"'})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"RlM7UG9wcGlucy1ib2xk\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-size\":\"48px\",\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"1.4em\",\"--framer-text-color\":\"var(--token-ba49841d-b68c-4bf1-a506-bf45a3778605, rgb(240, 146, 110))\"},children:'\"I excel at leading product design initiatives that fuel company growth, aligning user-centered innovation with business strategy to drive long-term success and profitability at scale.\"'})}),className:\"framer-12tto66\",fonts:[\"FS;Poppins-bold\"],verticalAlignment:\"top\",withExternalLayout:true})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1dua3ts\",\"data-framer-name\":\"Current Position\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-sabrvv\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-4f9shv\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{vKO9iV1kM:{width:`calc(min(max(${componentViewport?.width||\"100vw\"}, 1px), 1200px) - 80px)`,y:(componentViewport?.y||0)+0+1341.2+0+0+80+0},zmyL5hzn0:{y:(componentViewport?.y||0)+0+1327.2+40+0+100+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:14,width:`min(max(${componentViewport?.width||\"100vw\"}, 1px), 1200px)`,y:(componentViewport?.y||0)+0+1795+31+0+100+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-gc06kw-container\",nodeId:\"QSYg05b3p\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{zmyL5hzn0:{variant:\"KIl3x5F2L\"}},children:/*#__PURE__*/_jsx(Subtitles,{height:\"100%\",id:\"QSYg05b3p\",layoutId:\"QSYg05b3p\",qbC_ksiLG:\"DESIGN MEETS BUSINESSES\",style:{width:\"100%\"},variant:\"wzyVXEOJm\",width:\"100%\"})})})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-fi0zs2\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-cyovou\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-1ti60au\",\"data-styles-preset\":\"s15qehCkf\",style:{\"--framer-text-color\":\"var(--token-848b1674-1eb2-458a-918d-d1f6f0f57fc2, rgb(255, 255, 255))\"},children:\"I help companies grow through smart design and a design strategy\"})}),className:\"framer-20e6vo\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-14w7u9l\",\"data-styles-preset\":\"qdfNQJViT\",style:{\"--framer-text-color\":\"var(--token-848b1674-1eb2-458a-918d-d1f6f0f57fc2, rgb(255, 255, 255))\"},children:\"I use product design and design strategy to help businesses grow, cut costs, and build better products. By combining processes and methods of research, design systems, and brand thinking in alignment of user needs with business goals.\"})}),className:\"framer-fxkzbo\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-rp3jl2\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-7hm2c0\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-l75td0\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{vKO9iV1kM:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1knzs4a\",\"data-styles-preset\":\"aMGPCbKlo\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-848b1674-1eb2-458a-918d-d1f6f0f57fc2, rgb(255, 255, 255))\"},children:\"NPS increased by\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1knzs4a\",\"data-styles-preset\":\"aMGPCbKlo\",style:{\"--framer-text-alignment\":\"right\",\"--framer-text-color\":\"var(--token-848b1674-1eb2-458a-918d-d1f6f0f57fc2, rgb(255, 255, 255))\"},children:\"NPS increased by\"})}),className:\"framer-h1ooib\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-wd2n2w\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-8ahafg-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"iCowpZGTO\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(AnimatedNumberCounter,{animation:{replay:false,transition:{bounce:0,delay:0,duration:2,type:\"spring\"},trigger:\"layerInView\"},balance:false,color:{angle:180,color:\"var(--token-ba49841d-b68c-4bf1-a506-bf45a3778605, rgb(240, 146, 110))\",endColor:\"rgb(255, 255, 255)\",mode:\"solid\",startColor:\"rgb(0, 0, 0)\"},commas:true,decimals:0,decoration:\"none\",end:32,font:{fontFamily:'\"Poppins\", \"Poppins Placeholder\", sans-serif',fontFeatureSettings:\"'zero' on, 'tnum' on, 'cv06' on, 'cv13' on, 'cv07' on, 'cv05' on, 'cv10' on, 'cv12' on, 'cv08' on, 'cv11' on, 'cv04' on, 'cv03' on, 'cv02' on, 'cv09' on\",fontSize:\"46px\",fontStyle:\"normal\",fontWeight:600,letterSpacing:\"0px\",lineHeight:\"72px\"},height:\"100%\",id:\"iCowpZGTO\",layoutId:\"iCowpZGTO\",mode:\"default\",monospace:false,prefix:\"+\",start:0,style:{width:\"100%\"},suffix:\"\",tag:\"p\",transition:{bounce:0,delay:0,duration:1,type:\"spring\"},userSelect:true,value:90,width:\"100%\"})})})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-gcuinz\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{vKO9iV1kM:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1knzs4a\",\"data-styles-preset\":\"aMGPCbKlo\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-848b1674-1eb2-458a-918d-d1f6f0f57fc2, rgb(255, 255, 255))\"},children:\"Customer Service contacts\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1knzs4a\",\"data-styles-preset\":\"aMGPCbKlo\",style:{\"--framer-text-alignment\":\"right\",\"--framer-text-color\":\"var(--token-848b1674-1eb2-458a-918d-d1f6f0f57fc2, rgb(255, 255, 255))\"},children:\"Customer Service contacts\"})}),className:\"framer-fsfbqx\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-ikpbz6\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-17mqiyr-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"hTjiJ2BJR\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(AnimatedNumberCounter,{animation:{replay:false,transition:{bounce:0,delay:0,duration:2,type:\"spring\"},trigger:\"layerInView\"},balance:false,color:{angle:180,color:\"var(--token-ba49841d-b68c-4bf1-a506-bf45a3778605, rgb(240, 146, 110))\",endColor:\"rgb(255, 255, 255)\",mode:\"solid\",startColor:\"rgb(0, 0, 0)\"},commas:true,decimals:1,decoration:\"none\",end:4.3,font:{fontFamily:'\"Poppins\", \"Poppins Placeholder\", sans-serif',fontFeatureSettings:\"'zero' on, 'tnum' on, 'cv06' on, 'cv13' on, 'cv07' on, 'cv05' on, 'cv10' on, 'cv12' on, 'cv08' on, 'cv11' on, 'cv04' on, 'cv03' on, 'cv02' on, 'cv09' on\",fontSize:\"46px\",fontStyle:\"normal\",fontWeight:600,letterSpacing:\"0px\",lineHeight:\"72px\"},height:\"100%\",id:\"hTjiJ2BJR\",layoutId:\"hTjiJ2BJR\",mode:\"default\",monospace:false,prefix:\"-\",start:0,style:{width:\"100%\"},suffix:\"%\",tag:\"p\",transition:{bounce:0,delay:0,duration:1,type:\"spring\"},userSelect:true,value:90,width:\"100%\"})})})})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1mbr7ld\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-vmq8ga\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{vKO9iV1kM:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1knzs4a\",\"data-styles-preset\":\"aMGPCbKlo\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-848b1674-1eb2-458a-918d-d1f6f0f57fc2, rgb(255, 255, 255))\"},children:\"Opportunity costs savings\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1knzs4a\",\"data-styles-preset\":\"aMGPCbKlo\",style:{\"--framer-text-alignment\":\"right\",\"--framer-text-color\":\"var(--token-848b1674-1eb2-458a-918d-d1f6f0f57fc2, rgb(255, 255, 255))\"},children:\"Opportunity costs savings\"})}),className:\"framer-gxic9p\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1qvf8hr\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{className:\"framer-styles-preset-a6w0fc\",\"data-styles-preset\":\"b4AiUx4BN\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-ba49841d-b68c-4bf1-a506-bf45a3778605, rgb(240, 146, 110))\"},children:\"-1 Mill. \u20AC\"})}),className:\"framer-10eddkg\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-4qr3oh\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{vKO9iV1kM:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1knzs4a\",\"data-styles-preset\":\"aMGPCbKlo\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-848b1674-1eb2-458a-918d-d1f6f0f57fc2, rgb(255, 255, 255))\"},children:\"More efficient Development of\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1knzs4a\",\"data-styles-preset\":\"aMGPCbKlo\",style:{\"--framer-text-alignment\":\"right\",\"--framer-text-color\":\"var(--token-848b1674-1eb2-458a-918d-d1f6f0f57fc2, rgb(255, 255, 255))\"},children:\"More efficient Development of\"})}),className:\"framer-f98tjz\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1it5z7s\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-19shvl8-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"X4QP2DhaR\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(AnimatedNumberCounter,{animation:{replay:false,transition:{bounce:0,delay:0,duration:2,type:\"spring\"},trigger:\"layerInView\"},balance:false,color:{angle:180,color:\"var(--token-ba49841d-b68c-4bf1-a506-bf45a3778605, rgb(240, 146, 110))\",endColor:\"rgb(255, 255, 255)\",mode:\"solid\",startColor:\"rgb(0, 0, 0)\"},commas:true,decimals:0,decoration:\"none\",end:35,font:{fontFamily:'\"Poppins\", \"Poppins Placeholder\", sans-serif',fontFeatureSettings:\"'zero' on, 'tnum' on, 'cv06' on, 'cv13' on, 'cv07' on, 'cv05' on, 'cv10' on, 'cv12' on, 'cv08' on, 'cv11' on, 'cv04' on, 'cv03' on, 'cv02' on, 'cv09' on\",fontSize:\"46px\",fontStyle:\"normal\",fontWeight:600,letterSpacing:\"0px\",lineHeight:\"72px\"},height:\"100%\",id:\"X4QP2DhaR\",layoutId:\"X4QP2DhaR\",mode:\"default\",monospace:false,prefix:\"\",start:0,style:{width:\"100%\"},suffix:\"%\",tag:\"p\",transition:{bounce:0,delay:0,duration:1,type:\"spring\"},userSelect:true,value:90,width:\"100%\"})})})})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-12ihrvz\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-asytf5\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{vKO9iV1kM:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1knzs4a\",\"data-styles-preset\":\"aMGPCbKlo\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-848b1674-1eb2-458a-918d-d1f6f0f57fc2, rgb(255, 255, 255))\"},children:\"Design Systems managed\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1knzs4a\",\"data-styles-preset\":\"aMGPCbKlo\",style:{\"--framer-text-alignment\":\"right\",\"--framer-text-color\":\"var(--token-848b1674-1eb2-458a-918d-d1f6f0f57fc2, rgb(255, 255, 255))\"},children:\"Design Systems managed\"})}),className:\"framer-18tn41y\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-417swp\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-100xcnh-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"vSxxlLAWl\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(AnimatedNumberCounter,{animation:{replay:false,transition:{bounce:0,delay:0,duration:2,type:\"spring\"},trigger:\"layerInView\"},balance:false,color:{angle:180,color:\"var(--token-ba49841d-b68c-4bf1-a506-bf45a3778605, rgb(240, 146, 110))\",endColor:\"rgb(255, 255, 255)\",mode:\"solid\",startColor:\"rgb(0, 0, 0)\"},commas:true,decimals:0,decoration:\"none\",end:20,font:{fontFamily:'\"Poppins\", \"Poppins Placeholder\", sans-serif',fontFeatureSettings:\"'zero' on, 'tnum' on, 'cv06' on, 'cv13' on, 'cv07' on, 'cv05' on, 'cv10' on, 'cv12' on, 'cv08' on, 'cv11' on, 'cv04' on, 'cv03' on, 'cv02' on, 'cv09' on\",fontSize:\"46px\",fontStyle:\"normal\",fontWeight:600,letterSpacing:\"0px\",lineHeight:\"72px\"},height:\"100%\",id:\"vSxxlLAWl\",layoutId:\"vSxxlLAWl\",mode:\"default\",monospace:false,prefix:\"\",start:0,style:{width:\"100%\"},suffix:\"+\",tag:\"p\",transition:{bounce:0,delay:0,duration:1,type:\"spring\"},userSelect:true,value:90,width:\"100%\"})})})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-6f5jia\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{vKO9iV1kM:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1knzs4a\",\"data-styles-preset\":\"aMGPCbKlo\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-848b1674-1eb2-458a-918d-d1f6f0f57fc2, rgb(255, 255, 255))\"},children:\"Increased research activity by\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1knzs4a\",\"data-styles-preset\":\"aMGPCbKlo\",style:{\"--framer-text-alignment\":\"right\",\"--framer-text-color\":\"var(--token-848b1674-1eb2-458a-918d-d1f6f0f57fc2, rgb(255, 255, 255))\"},children:\"Increased research activity by\"})}),className:\"framer-28g1za\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-9i0cff\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-as88tu-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"GyTPji0lA\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(AnimatedNumberCounter,{animation:{replay:false,transition:{bounce:0,delay:0,duration:2,type:\"spring\"},trigger:\"layerInView\"},balance:false,color:{angle:180,color:\"var(--token-ba49841d-b68c-4bf1-a506-bf45a3778605, rgb(240, 146, 110))\",endColor:\"rgb(255, 255, 255)\",mode:\"solid\",startColor:\"rgb(0, 0, 0)\"},commas:true,decimals:0,decoration:\"none\",end:3,font:{fontFamily:'\"Poppins\", \"Poppins Placeholder\", sans-serif',fontFeatureSettings:\"'zero' on, 'tnum' on, 'cv06' on, 'cv13' on, 'cv07' on, 'cv05' on, 'cv10' on, 'cv12' on, 'cv08' on, 'cv11' on, 'cv04' on, 'cv03' on, 'cv02' on, 'cv09' on\",fontSize:\"46px\",fontStyle:\"normal\",fontWeight:600,letterSpacing:\"0px\",lineHeight:\"72px\"},height:\"100%\",id:\"GyTPji0lA\",layoutId:\"GyTPji0lA\",mode:\"default\",monospace:false,prefix:\"\",start:0,style:{width:\"100%\"},suffix:\"x\",tag:\"p\",transition:{bounce:0,delay:0,duration:1,type:\"spring\"},userSelect:true,value:90,width:\"100%\"})})})})]})]})]})]})]})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-15q40h6\",\"data-framer-name\":\"Current Position\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-11kl96b\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-fybfi9\",\"data-framer-name\":\"Main\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{vKO9iV1kM:{width:`calc(min(max(${componentViewport?.width||\"100vw\"} - 48px, 1px), 1200px) - 48px)`,y:(componentViewport?.y||0)+0+2264.4+24+0+24+374},zmyL5hzn0:{width:`calc(min(max(${componentViewport?.width||\"100vw\"} - 48px, 1px), 1200px) - 48px)`,y:(componentViewport?.y||0)+0+3992.4+24+0+40+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:14,width:`min(max(${componentViewport?.width||\"100vw\"} - 48px, 1px), 1200px)`,y:(componentViewport?.y||0)+0+2595+24+0+24+274,children:/*#__PURE__*/_jsx(Container,{className:\"framer-ryaxme-container\",nodeId:\"Yar_tbkBJ\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Subtitles,{height:\"100%\",id:\"Yar_tbkBJ\",layoutId:\"Yar_tbkBJ\",qbC_ksiLG:\"MY CURRENT MISSION\",style:{width:\"100%\"},variant:\"wzyVXEOJm\",width:\"100%\"})})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-78kc1q\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{vKO9iV1kM:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:80.5,intrinsicWidth:156.5,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+2264.4+24+0+24+420+0),pixelHeight:161,pixelWidth:313,src:\"https://framerusercontent.com/images/IEb05869d4zzLop0Yz2f94rrw.png\"}},zmyL5hzn0:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:80.5,intrinsicWidth:156.5,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+3992.4+24+0+40+46+0+0),pixelHeight:161,pixelWidth:313,src:\"https://framerusercontent.com/images/IEb05869d4zzLop0Yz2f94rrw.png\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:80.5,intrinsicWidth:156.5,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+2595+24+0+24+320+0),pixelHeight:161,pixelWidth:313,src:\"https://framerusercontent.com/images/IEb05869d4zzLop0Yz2f94rrw.png\"},className:\"framer-8njx7o\",\"data-framer-name\":\"DCS_logo\"})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{vKO9iV1kM:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-sb3ds2\",\"data-styles-preset\":\"b4ipLjiib\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-848b1674-1eb2-458a-918d-d1f6f0f57fc2, rgb(255, 255, 255))\"},children:\"As the first internal Product Designer at the Digital Charging Solution GmbH, I was in charge to fully internalise all UX & design processes, design strategy and solved charging problems for over 1 million drivers across 15+ well known car brands across Europe in B2B & B2C.\"})})},zmyL5hzn0:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-75uwm8\",\"data-styles-preset\":\"Weq2QQrYI\",style:{\"--framer-text-color\":\"var(--token-848b1674-1eb2-458a-918d-d1f6f0f57fc2, rgb(255, 255, 255))\"},children:\"As the first internal Product Designer at the Digital Charging Solution GmbH, I was in charge to fully internalise all UX & design processes, design strategy and solved charging problems for over 1 million drivers across 15+ well known car brands across Europe in B2B & B2C.\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-sb3ds2\",\"data-styles-preset\":\"b4ipLjiib\",style:{\"--framer-text-color\":\"var(--token-848b1674-1eb2-458a-918d-d1f6f0f57fc2, rgb(255, 255, 255))\"},children:\"As the first internal Product Designer at the Digital Charging Solution GmbH, I was in charge to fully internalise all UX & design processes, design strategy and solved charging problems for over 1 million drivers across 15+ well known car brands across Europe in B2B & B2C.\"})}),className:\"framer-13k9v7\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{vKO9iV1kM:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+2264.4+24+-11),pixelHeight:2160,pixelWidth:3840,sizes:`calc(max(${componentViewport?.width||\"100vw\"} - 48px, 1px) * 1.0417)`,src:\"https://framerusercontent.com/images/vHLwFtkpQTWB3Wv7MqF50QHj3gM.jpg\",srcSet:\"https://framerusercontent.com/images/vHLwFtkpQTWB3Wv7MqF50QHj3gM.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/vHLwFtkpQTWB3Wv7MqF50QHj3gM.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/vHLwFtkpQTWB3Wv7MqF50QHj3gM.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/vHLwFtkpQTWB3Wv7MqF50QHj3gM.jpg 3840w\"}},zmyL5hzn0:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+3992.4+24+-11),pixelHeight:2160,pixelWidth:3840,sizes:`calc(max(${componentViewport?.width||\"100vw\"} - 48px, 1px) * 1.0417)`,src:\"https://framerusercontent.com/images/vHLwFtkpQTWB3Wv7MqF50QHj3gM.jpg\",srcSet:\"https://framerusercontent.com/images/vHLwFtkpQTWB3Wv7MqF50QHj3gM.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/vHLwFtkpQTWB3Wv7MqF50QHj3gM.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/vHLwFtkpQTWB3Wv7MqF50QHj3gM.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/vHLwFtkpQTWB3Wv7MqF50QHj3gM.jpg 3840w\"}}},children:/*#__PURE__*/_jsx(ImageWithFX,{__framer__adjustPosition:false,__framer__offset:0,__framer__parallaxTransformEnabled:true,__framer__speed:120,__perspectiveFX:false,__targetOpacity:.3,background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+2595+24+-11),pixelHeight:2160,pixelWidth:3840,sizes:`calc(max(${componentViewport?.width||\"100vw\"} - 48px, 1px) * 1.0417)`,src:\"https://framerusercontent.com/images/vHLwFtkpQTWB3Wv7MqF50QHj3gM.jpg\",srcSet:\"https://framerusercontent.com/images/vHLwFtkpQTWB3Wv7MqF50QHj3gM.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/vHLwFtkpQTWB3Wv7MqF50QHj3gM.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/vHLwFtkpQTWB3Wv7MqF50QHj3gM.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/vHLwFtkpQTWB3Wv7MqF50QHj3gM.jpg 3840w\"},className:\"framer-18w8sq5\"})})]})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1gbausn\",\"data-framer-name\":\"Category Selection\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{vKO9iV1kM:{y:(componentViewport?.y||0)+0+3264.4+100+0},zmyL5hzn0:{y:(componentViewport?.y||0)+0+4460.4+40+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:14,width:`min(${componentViewport?.width||\"100vw\"}, 1200px)`,y:(componentViewport?.y||0)+0+3395+100+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1pgsfsy-container\",nodeId:\"mH_k7I2Li\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{zmyL5hzn0:{variant:\"KIl3x5F2L\"}},children:/*#__PURE__*/_jsx(Subtitles,{height:\"100%\",id:\"mH_k7I2Li\",layoutId:\"mH_k7I2Li\",qbC_ksiLG:\"WHAT I DO\",style:{maxWidth:\"100%\",width:\"100%\"},variant:\"wzyVXEOJm\",width:\"100%\"})})})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1bm7q46\",children:[/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"lJVgDCpdT\"},implicitPathVariables:undefined},{href:{webPageId:\"lJVgDCpdT\"},implicitPathVariables:undefined},{href:{webPageId:\"lJVgDCpdT\"},implicitPathVariables:undefined}],children:resolvedLinks=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{vKO9iV1kM:{y:(componentViewport?.y||0)+0+3264.4+100+46+0+0},zmyL5hzn0:{y:(componentViewport?.y||0)+0+4460.4+40+38+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:117,width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+3395+100+46+0+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-uept2b-container\",nodeId:\"j5aHwWKYr\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{vKO9iV1kM:{szV1HetO_:resolvedLinks[1]},zmyL5hzn0:{szV1HetO_:resolvedLinks[2],uGsM5Z6po:false}},children:/*#__PURE__*/_jsx(CategorieHomepage,{D5QaJkq2w:\"Company Design Strategy, Design Management, DesignOps\",EZhZ7Dcmo:\"DESIGN LEADERSHIP\",height:\"100%\",id:\"j5aHwWKYr\",layoutId:\"j5aHwWKYr\",style:{width:\"100%\"},szV1HetO_:resolvedLinks[0],uGsM5Z6po:true,width:\"100%\"})})})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"tlbPQYcDJ\"},implicitPathVariables:undefined},{href:{webPageId:\"tlbPQYcDJ\"},implicitPathVariables:undefined},{href:{webPageId:\"tlbPQYcDJ\"},implicitPathVariables:undefined}],children:resolvedLinks1=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{vKO9iV1kM:{y:(componentViewport?.y||0)+0+3264.4+100+46+0+117},zmyL5hzn0:{y:(componentViewport?.y||0)+0+4460.4+40+38+0+117}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:117,width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+3395+100+46+0+117,children:/*#__PURE__*/_jsx(Container,{className:\"framer-9umtl3-container\",nodeId:\"UgWLIpIOV\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{vKO9iV1kM:{szV1HetO_:resolvedLinks1[1]},zmyL5hzn0:{szV1HetO_:resolvedLinks1[2],uGsM5Z6po:false}},children:/*#__PURE__*/_jsx(CategorieHomepage,{D5QaJkq2w:\"UX, UI, User Research, Collaboration, Interviews\",EZhZ7Dcmo:\"PRODUCT DESIGN & RESEARCH\",height:\"100%\",id:\"UgWLIpIOV\",layoutId:\"UgWLIpIOV\",style:{width:\"100%\"},szV1HetO_:resolvedLinks1[0],uGsM5Z6po:true,width:\"100%\"})})})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"h0rg7cYxS\"},implicitPathVariables:undefined},{href:{webPageId:\"h0rg7cYxS\"},implicitPathVariables:undefined},{href:{webPageId:\"h0rg7cYxS\"},implicitPathVariables:undefined}],children:resolvedLinks2=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{vKO9iV1kM:{y:(componentViewport?.y||0)+0+3264.4+100+46+0+234},zmyL5hzn0:{y:(componentViewport?.y||0)+0+4460.4+40+38+0+234}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:117,width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+3395+100+46+0+234,children:/*#__PURE__*/_jsx(Container,{className:\"framer-p4dtyq-container\",nodeId:\"px7E_CciE\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{vKO9iV1kM:{szV1HetO_:resolvedLinks2[1]},zmyL5hzn0:{szV1HetO_:resolvedLinks2[2],uGsM5Z6po:false}},children:/*#__PURE__*/_jsx(CategorieHomepage,{D5QaJkq2w:\"Digital Matte Painting and the creation of worlds\",EZhZ7Dcmo:\"3D ENVIRONMENTS\",height:\"100%\",id:\"px7E_CciE\",layoutId:\"px7E_CciE\",style:{width:\"100%\"},szV1HetO_:resolvedLinks2[0],uGsM5Z6po:true,width:\"100%\"})})})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"KAdglgJUb\"},implicitPathVariables:undefined},{href:{webPageId:\"KAdglgJUb\"},implicitPathVariables:undefined},{href:{webPageId:\"KAdglgJUb\"},implicitPathVariables:undefined}],children:resolvedLinks3=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{vKO9iV1kM:{y:(componentViewport?.y||0)+0+3264.4+100+46+0+351},zmyL5hzn0:{y:(componentViewport?.y||0)+0+4460.4+40+38+0+351}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:117,width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+3395+100+46+0+351,children:/*#__PURE__*/_jsx(Container,{className:\"framer-18gt975-container\",nodeId:\"zDpco2JKo\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{vKO9iV1kM:{szV1HetO_:resolvedLinks3[1]},zmyL5hzn0:{szV1HetO_:resolvedLinks3[2],uGsM5Z6po:false}},children:/*#__PURE__*/_jsx(CategorieHomepage,{D5QaJkq2w:\"Illustrations, Environment concepts, FX & prop concepts\",EZhZ7Dcmo:\"CONCEPT ART\",height:\"100%\",id:\"zDpco2JKo\",layoutId:\"zDpco2JKo\",style:{width:\"100%\"},szV1HetO_:resolvedLinks3[0],uGsM5Z6po:true,width:\"100%\"})})})})})})]})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1l2jjle\",\"data-framer-name\":\"Current Position\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-esokff\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-a1ft7x\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{vKO9iV1kM:{width:`calc(min(max(${componentViewport?.width||\"100vw\"}, 1px), 1200px) - 80px)`,y:(componentViewport?.y||0)+0+3978.4+100+0+80+0},zmyL5hzn0:{y:(componentViewport?.y||0)+0+5046.4+40+0+24+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:14,width:`min(max(${componentViewport?.width||\"100vw\"}, 1px), 1200px)`,y:(componentViewport?.y||0)+0+4109+100+0+24+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-t0blog-container\",nodeId:\"eZakBJRdn\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{zmyL5hzn0:{variant:\"KIl3x5F2L\"}},children:/*#__PURE__*/_jsx(Subtitles,{height:\"100%\",id:\"eZakBJRdn\",layoutId:\"eZakBJRdn\",qbC_ksiLG:\"THE COMBINATION OF EXPERIENCES\",style:{width:\"100%\"},variant:\"wzyVXEOJm\",width:\"100%\"})})})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1w5buo2\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1mcu767\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-svob1f\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1vll0dy\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{vKO9iV1kM:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1knzs4a\",\"data-styles-preset\":\"aMGPCbKlo\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-848b1674-1eb2-458a-918d-d1f6f0f57fc2, rgb(255, 255, 255))\"},children:\"PRODUCT DESIGN EXPERIENCE\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1knzs4a\",\"data-styles-preset\":\"aMGPCbKlo\",style:{\"--framer-text-alignment\":\"right\",\"--framer-text-color\":\"var(--token-848b1674-1eb2-458a-918d-d1f6f0f57fc2, rgb(255, 255, 255))\"},children:\"PRODUCT DESIGN EXPERIENCE\"})}),className:\"framer-h9y5sh\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1qmkkdm\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1v9uw32-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"iHoXuPszj\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(AnimatedNumberCounter,{animation:{replay:false,transition:{bounce:0,delay:0,duration:2,type:\"spring\"},trigger:\"layerInView\"},balance:false,color:{angle:180,color:\"var(--token-ba49841d-b68c-4bf1-a506-bf45a3778605, rgb(240, 146, 110))\",endColor:\"rgb(255, 255, 255)\",mode:\"solid\",startColor:\"rgb(0, 0, 0)\"},commas:true,decimals:0,decoration:\"none\",end:15,font:{fontFamily:'\"Poppins\", \"Poppins Placeholder\", sans-serif',fontFeatureSettings:\"'zero' on, 'tnum' on, 'cv06' on, 'cv13' on, 'cv07' on, 'cv05' on, 'cv10' on, 'cv12' on, 'cv08' on, 'cv11' on, 'cv04' on, 'cv03' on, 'cv02' on, 'cv09' on\",fontSize:\"46px\",fontStyle:\"normal\",fontWeight:600,letterSpacing:\"0px\",lineHeight:\"72px\"},height:\"100%\",id:\"iHoXuPszj\",layoutId:\"iHoXuPszj\",mode:\"default\",monospace:false,prefix:\"\",start:0,style:{width:\"100%\"},suffix:\"+ years\",tag:\"p\",transition:{bounce:0,delay:0,duration:1,type:\"spring\"},userSelect:true,value:90,width:\"100%\"})})})})]})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-680x9h\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1l51crv\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{vKO9iV1kM:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1knzs4a\",\"data-styles-preset\":\"aMGPCbKlo\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-848b1674-1eb2-458a-918d-d1f6f0f57fc2, rgb(255, 255, 255))\"},children:\"MARKETING PROJECTS\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1knzs4a\",\"data-styles-preset\":\"aMGPCbKlo\",style:{\"--framer-text-alignment\":\"right\",\"--framer-text-color\":\"var(--token-848b1674-1eb2-458a-918d-d1f6f0f57fc2, rgb(255, 255, 255))\"},children:\"MARKETING PROJECTS\"})}),className:\"framer-iuylid\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-afa2f2\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-owmar9-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"qiLdOKwNL\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(AnimatedNumberCounter,{animation:{replay:false,transition:{bounce:0,delay:0,duration:2,type:\"spring\"},trigger:\"layerInView\"},balance:false,color:{angle:180,color:\"var(--token-ba49841d-b68c-4bf1-a506-bf45a3778605, rgb(240, 146, 110))\",endColor:\"rgb(255, 255, 255)\",mode:\"solid\",startColor:\"rgb(0, 0, 0)\"},commas:true,decimals:0,decoration:\"none\",end:50,font:{fontFamily:'\"Poppins\", \"Poppins Placeholder\", sans-serif',fontFeatureSettings:\"'zero' on, 'tnum' on, 'cv06' on, 'cv13' on, 'cv07' on, 'cv05' on, 'cv10' on, 'cv12' on, 'cv08' on, 'cv11' on, 'cv04' on, 'cv03' on, 'cv02' on, 'cv09' on\",fontSize:\"46px\",fontStyle:\"normal\",fontWeight:600,letterSpacing:\"0px\",lineHeight:\"72px\"},height:\"100%\",id:\"qiLdOKwNL\",layoutId:\"qiLdOKwNL\",mode:\"default\",monospace:false,prefix:\"\",start:0,style:{width:\"100%\"},suffix:\"+\",tag:\"p\",transition:{bounce:0,delay:0,duration:1,type:\"spring\"},userSelect:true,value:90,width:\"100%\"})})})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-ejzevc\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{vKO9iV1kM:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1knzs4a\",\"data-styles-preset\":\"aMGPCbKlo\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-848b1674-1eb2-458a-918d-d1f6f0f57fc2, rgb(255, 255, 255))\"},children:\"VFX PROJECTS\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1knzs4a\",\"data-styles-preset\":\"aMGPCbKlo\",style:{\"--framer-text-alignment\":\"right\",\"--framer-text-color\":\"var(--token-848b1674-1eb2-458a-918d-d1f6f0f57fc2, rgb(255, 255, 255))\"},children:\"VFX PROJECTS\"})}),className:\"framer-1d7dq0l\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1x17w0e\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-185smd4-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"RMnlxolg8\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(AnimatedNumberCounter,{animation:{replay:false,transition:{bounce:0,delay:0,duration:2,type:\"spring\"},trigger:\"layerInView\"},balance:false,color:{angle:180,color:\"var(--token-ba49841d-b68c-4bf1-a506-bf45a3778605, rgb(240, 146, 110))\",endColor:\"rgb(255, 255, 255)\",mode:\"solid\",startColor:\"rgb(0, 0, 0)\"},commas:true,decimals:0,decoration:\"none\",end:40,font:{fontFamily:'\"Poppins\", \"Poppins Placeholder\", sans-serif',fontFeatureSettings:\"'zero' on, 'tnum' on, 'cv06' on, 'cv13' on, 'cv07' on, 'cv05' on, 'cv10' on, 'cv12' on, 'cv08' on, 'cv11' on, 'cv04' on, 'cv03' on, 'cv02' on, 'cv09' on\",fontSize:\"46px\",fontStyle:\"normal\",fontWeight:600,letterSpacing:\"0px\",lineHeight:\"72px\"},height:\"100%\",id:\"RMnlxolg8\",layoutId:\"RMnlxolg8\",mode:\"default\",monospace:false,prefix:\"\",start:0,style:{width:\"100%\"},suffix:\"+\",tag:\"p\",transition:{bounce:0,delay:0,duration:1,type:\"spring\"},userSelect:true,value:90,width:\"100%\"})})})})]})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1q5frim\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-1ti60au\",\"data-styles-preset\":\"s15qehCkf\",style:{\"--framer-text-color\":\"var(--token-848b1674-1eb2-458a-918d-d1f6f0f57fc2, rgb(255, 255, 255))\"},children:\"I enjoy it to shape companies, teams and products through my brand-wide experience\"})}),className:\"framer-wb0n0n\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-14w7u9l\",\"data-styles-preset\":\"qdfNQJViT\",style:{\"--framer-text-color\":\"var(--token-848b1674-1eb2-458a-918d-d1f6f0f57fc2, rgb(255, 255, 255))\"},children:\"With 15+ years of experience across design, product, visual effects, and marketing, I help teams work better together\u2014from concept/discovery to launch. I bring empathy, collaboration, and a strong technical understanding to connect stakeholders & teams and guide successful outcomes.\"})}),className:\"framer-qrqa7i\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})]})]})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-j505dj\",\"data-framer-name\":\"Current Position\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{vKO9iV1kM:{y:(componentViewport?.y||0)+0+5037.6+97+0},zmyL5hzn0:{y:(componentViewport?.y||0)+0+6597.6+40+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:14,width:`min(${componentViewport?.width||\"100vw\"}, 1200px)`,y:(componentViewport?.y||0)+0+4784+97+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-8zmca6-container\",nodeId:\"oRR0wnagu\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{zmyL5hzn0:{variant:\"KIl3x5F2L\"}},children:/*#__PURE__*/_jsx(Subtitles,{height:\"100%\",id:\"oRR0wnagu\",layoutId:\"oRR0wnagu\",qbC_ksiLG:\"INDUSTRY EXPERIENCE\",style:{width:\"100%\"},variant:\"wzyVXEOJm\",width:\"100%\"})})})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-rjvqe5-container\",isModuleExternal:true,nodeId:\"F4nVmln0G\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Ticker1,{alignment:\"center\",direction:\"left\",fadeOptions:{fadeAlpha:0,fadeContent:true,fadeInset:0,fadeWidth:25,overflow:false},gap:16,height:\"100%\",hoverFactor:1,id:\"F4nVmln0G\",layoutId:\"F4nVmln0G\",padding:10,paddingBottom:10,paddingLeft:10,paddingPerSide:false,paddingRight:10,paddingTop:10,sizingOptions:{heightType:true,widthType:true},slots:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-p443o\",\"data-framer-name\":\"Card\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-1qdd7sq\",\"data-framer-name\":\"Icon\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 24 24\"><path d=\"M 12.621 11.579 C 12.76 11.785 12.789 12.047 12.697 12.278 L 11.197 16.028 C 11.042 16.413 10.605 16.6 10.22 16.445 C 9.835 16.291 9.649 15.853 9.803 15.469 L 10.892 12.75 L 9 12.75 C 8.75 12.75 8.517 12.627 8.377 12.42 C 8.237 12.213 8.21 11.95 8.303 11.719 L 9.803 7.969 C 9.959 7.584 10.397 7.398 10.781 7.553 C 11.166 7.709 11.352 8.147 11.197 8.531 L 10.108 11.25 L 12 11.25 C 12.249 11.25 12.481 11.373 12.621 11.579 Z M 23.25 8.122 L 23.25 15.75 C 23.25 16.993 22.243 18 21 18 C 19.757 18 18.75 16.993 18.75 15.75 L 18.75 12 C 18.75 11.586 18.414 11.25 18 11.25 L 16.5 11.25 L 16.5 19.5 L 18 19.5 C 18.414 19.5 18.75 19.836 18.75 20.25 C 18.75 20.664 18.414 21 18 21 L 3 21 C 2.586 21 2.25 20.664 2.25 20.25 C 2.25 19.836 2.586 19.5 3 19.5 L 4.5 19.5 L 4.5 5.25 C 4.5 4.007 5.507 3 6.75 3 L 14.25 3 C 15.493 3 16.5 4.007 16.5 5.25 L 16.5 9.75 L 18 9.75 C 19.243 9.75 20.25 10.757 20.25 12 L 20.25 15.75 C 20.25 16.164 20.586 16.5 21 16.5 C 21.414 16.5 21.75 16.164 21.75 15.75 L 21.75 8.122 C 21.749 7.924 21.671 7.734 21.531 7.594 L 19.719 5.781 C 19.426 5.488 19.426 5.012 19.719 4.719 C 20.012 4.426 20.488 4.426 20.781 4.719 L 22.594 6.531 C 23.016 6.952 23.252 7.525 23.25 8.122 Z M 15 19.5 L 15 5.25 C 15 4.836 14.664 4.5 14.25 4.5 L 6.75 4.5 C 6.336 4.5 6 4.836 6 5.25 L 6 19.5 Z\" fill=\"var(--token-848b1674-1eb2-458a-918d-d1f6f0f57fc2, rgb(255, 255, 255)) /* {&quot;name&quot;:&quot;White&quot;} */\"></path></svg>',svgContentId:10961986840,withExternalLayout:true}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-z7el7z\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1ox3u96\",\"data-styles-preset\":\"ZA62oFIO5\",style:{\"--framer-text-color\":\"var(--token-848b1674-1eb2-458a-918d-d1f6f0f57fc2, rgb(255, 255, 255))\"},children:\"Emobility\"})}),className:\"framer-1sag0vz\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-gfo03f\",\"data-styles-preset\":\"c8r2ZHcvX\",style:{\"--framer-text-color\":\"var(--token-848b1674-1eb2-458a-918d-d1f6f0f57fc2, rgb(255, 255, 255))\"},children:\"(B2C & B2B)\"})}),className:\"framer-9jsk52\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-134hb1s\",\"data-framer-name\":\"Card\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-k2o77f\",\"data-framer-name\":\"Icon\",fill:'var(--token-848b1674-1eb2-458a-918d-d1f6f0f57fc2, rgb(255, 255, 255)) /* {\"name\":\"White\"} */',intrinsicHeight:32,intrinsicWidth:32,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"32\" height=\"32\" viewBox=\"0 0 256 256\"><path d=\"M230.14 58.87A8 8 0 0 0 224 56H62.68L56.6 22.57A8 8 0 0 0 48.73 16H24a8 8 0 0 0 0 16h18l25.56 140.29a24 24 0 0 0 5.33 11.27 28 28 0 1 0 44.4 8.44h45.42a27.75 27.75 0 0 0-2.71 12 28 28 0 1 0 28-28H91.17a8 8 0 0 1-7.87-6.57L80.13 152h116a24 24 0 0 0 23.61-19.71l12.16-66.86a8 8 0 0 0-1.76-6.56ZM104 204a12 12 0 1 1-12-12 12 12 0 0 1 12 12Zm96 0a12 12 0 1 1-12-12 12 12 0 0 1 12 12Zm4-74.57a8 8 0 0 1-7.9 6.57H77.22L65.59 72h148.82Z\"/></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1ox3u96\",\"data-styles-preset\":\"ZA62oFIO5\",style:{\"--framer-text-color\":\"var(--token-848b1674-1eb2-458a-918d-d1f6f0f57fc2, rgb(255, 255, 255))\"},children:\"E-Commerce\"})}),className:\"framer-1o3pl3r\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-zy19rv\",\"data-framer-name\":\"Card\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-1y80ksj\",\"data-framer-name\":\"Icon\",fill:'var(--token-848b1674-1eb2-458a-918d-d1f6f0f57fc2, rgb(255, 255, 255)) /* {\"name\":\"White\"} */',intrinsicHeight:32,intrinsicWidth:32,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"32\" height=\"32\" viewBox=\"0 0 256 256\"><path d=\"M240 112h-28.69L168 68.69A15.86 15.86 0 0 0 156.69 64H44.28A16 16 0 0 0 31 71.12L1.34 115.56A8.07 8.07 0 0 0 0 120v48a16 16 0 0 0 16 16h17a32 32 0 0 0 62 0h66a32 32 0 0 0 62 0h17a16 16 0 0 0 16-16v-40a16 16 0 0 0-16-16ZM44.28 80h112.41l32 32H23ZM64 192a16 16 0 1 1 16-16 16 16 0 0 1-16 16Zm128 0a16 16 0 1 1 16-16 16 16 0 0 1-16 16Zm48-24h-17a32 32 0 0 0-62 0H95a32 32 0 0 0-62 0H16v-40h224Z\"/></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1ox3u96\",\"data-styles-preset\":\"ZA62oFIO5\",style:{\"--framer-text-color\":\"var(--token-848b1674-1eb2-458a-918d-d1f6f0f57fc2, rgb(255, 255, 255))\"},children:\"Automotive\"})}),className:\"framer-147ypm6\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-18nf6lj\",\"data-framer-name\":\"Card\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-yzy5em\",\"data-framer-name\":\"Icon\",fill:'var(--token-848b1674-1eb2-458a-918d-d1f6f0f57fc2, rgb(255, 255, 255)) /* {\"name\":\"White\"} */',intrinsicHeight:32,intrinsicWidth:32,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"32\" height=\"32\" viewBox=\"0 0 256 256\"><path d=\"M216 40H72a16 16 0 0 0-16 16v16H40a16 16 0 0 0-16 16v112a16 16 0 0 0 16 16h144a16 16 0 0 0 16-16v-16h16a16 16 0 0 0 16-16V56a16 16 0 0 0-16-16Zm-32 48v16H40V88Zm0 112H40v-80h144v80Zm32-32h-16V88a16 16 0 0 0-16-16H72V56h144Z\"/></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1ox3u96\",\"data-styles-preset\":\"ZA62oFIO5\",style:{\"--framer-text-color\":\"var(--token-848b1674-1eb2-458a-918d-d1f6f0f57fc2, rgb(255, 255, 255))\"},children:\"SaaS & ITSM\"})}),className:\"framer-ajzh1p\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-pdwp3s\",\"data-framer-name\":\"Card\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-1putpbg\",\"data-framer-name\":\"Icon\",fill:'var(--token-848b1674-1eb2-458a-918d-d1f6f0f57fc2, rgb(255, 255, 255)) /* {\"name\":\"White\"} */',intrinsicHeight:32,intrinsicWidth:32,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"32\" height=\"32\" viewBox=\"0 0 256 256\"><path d=\"M216 104H102.09L210 75.51a8 8 0 0 0 5.68-9.84l-8.16-30a15.93 15.93 0 0 0-19.42-11.13L35.81 64.74a15.75 15.75 0 0 0-9.7 7.4 15.51 15.51 0 0 0-1.55 12L32 111.56V200a16 16 0 0 0 16 16h160a16 16 0 0 0 16-16v-88a8 8 0 0 0-8-8Zm-23.84-64 6 22.07-22.62 6-28.12-16.24Zm-66.69 17.6 28.12 16.24-36.94 9.75-28.12-16.22Zm-79.4 44.62-6-22.08 26.5-7L94.69 89.4ZM208 200H48v-80h160v80Z\"/></svg>',withExternalLayout:true}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1cs2un6\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1ox3u96\",\"data-styles-preset\":\"ZA62oFIO5\",style:{\"--framer-text-color\":\"var(--token-848b1674-1eb2-458a-918d-d1f6f0f57fc2, rgb(255, 255, 255))\"},children:\"Entertainment\"})}),className:\"framer-1fwjg6i\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-gfo03f\",\"data-styles-preset\":\"c8r2ZHcvX\",style:{\"--framer-text-color\":\"var(--token-848b1674-1eb2-458a-918d-d1f6f0f57fc2, rgb(255, 255, 255))\"},children:\"(Feature Films, Commercials & TV Shows)\"})}),className:\"framer-rn4a8m\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1lkh4y0\",\"data-framer-name\":\"Card\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-xfum5c\",\"data-framer-name\":\"Icon\",fill:'var(--token-848b1674-1eb2-458a-918d-d1f6f0f57fc2, rgb(255, 255, 255)) /* {\"name\":\"White\"} */',intrinsicHeight:32,intrinsicWidth:32,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"32\" height=\"32\" viewBox=\"0 0 256 256\"><path d=\"M176 112h-24a8 8 0 0 1 0-16h24a8 8 0 0 1 0 16Zm-72-16h-8v-8a8 8 0 0 0-16 0v8h-8a8 8 0 0 0 0 16h8v8a8 8 0 0 0 16 0v-8h8a8 8 0 0 0 0-16Zm137.48 104.65a36 36 0 0 1-54.94 4.81c-.12-.12-.24-.24-.35-.37L146.48 160h-37l-39.67 45.09-.35.37A36.08 36.08 0 0 1 44 216a36 36 0 0 1-35.44-42.25.68.68 0 0 1 0-.14l16.37-84.09A59.88 59.88 0 0 1 83.89 40H172a60.08 60.08 0 0 1 59 49.25v.18l16.37 84.17a.68.68 0 0 1 0 .14 35.74 35.74 0 0 1-5.89 26.91ZM172 144a44 44 0 0 0 0-88H83.89a43.9 43.9 0 0 0-43.21 36.37v.13L24.3 176.59A20 20 0 0 0 58 194.3l41.92-47.59a8 8 0 0 1 6-2.71Zm59.7 32.59-8.74-45A60 60 0 0 1 172 160h-4.2l30.2 34.31a20.09 20.09 0 0 0 17.46 5.39 20 20 0 0 0 16.23-23.11Z\"/></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1ox3u96\",\"data-styles-preset\":\"ZA62oFIO5\",style:{\"--framer-text-color\":\"var(--token-848b1674-1eb2-458a-918d-d1f6f0f57fc2, rgb(255, 255, 255))\"},children:\"Games\"})}),className:\"framer-17pbpcz\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-ump8m7\",\"data-framer-name\":\"Card\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-19cmvqj\",\"data-framer-name\":\"Icon\",fill:'var(--token-848b1674-1eb2-458a-918d-d1f6f0f57fc2, rgb(255, 255, 255)) /* {\"name\":\"White\"} */',intrinsicHeight:32,intrinsicWidth:32,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"32\" height=\"32\" viewBox=\"0 0 256 256\"><path d=\"M208 56h-27.72l-13.63-20.44A8 8 0 0 0 160 32H96a8 8 0 0 0-6.65 3.56L75.71 56H48a24 24 0 0 0-24 24v112a24 24 0 0 0 24 24h160a24 24 0 0 0 24-24V80a24 24 0 0 0-24-24Zm8 136a8 8 0 0 1-8 8H48a8 8 0 0 1-8-8V80a8 8 0 0 1 8-8h32a8 8 0 0 0 6.66-3.56L100.28 48h55.43l13.63 20.44A8 8 0 0 0 176 72h32a8 8 0 0 1 8 8ZM128 88a44 44 0 1 0 44 44 44.05 44.05 0 0 0-44-44Zm0 72a28 28 0 1 1 28-28 28 28 0 0 1-28 28Z\"/></svg>',withExternalLayout:true}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1uxyxy1\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1ox3u96\",\"data-styles-preset\":\"ZA62oFIO5\",style:{\"--framer-text-color\":\"var(--token-848b1674-1eb2-458a-918d-d1f6f0f57fc2, rgb(255, 255, 255))\"},children:\"Photography\"})}),className:\"framer-qc6zzw\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-gfo03f\",\"data-styles-preset\":\"c8r2ZHcvX\",style:{\"--framer-text-color\":\"var(--token-848b1674-1eb2-458a-918d-d1f6f0f57fc2, rgb(255, 255, 255))\"},children:\"(Fashion, Lifestyle, Documentary)\"})}),className:\"framer-1s4gpm\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})]})],speed:65,style:{height:\"100%\",maxWidth:\"100%\",width:\"100%\"},width:\"100%\"})})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-a7w1ma\",\"data-framer-name\":\"Last\",id:elementId2,ref:ref3,children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1hydito\",\"data-framer-name\":\"Ticker\",id:elementId3,ref:ref4,children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{vKO9iV1kM:{y:(componentViewport?.y||0)+0+5360.6+0+0+100+0},zmyL5hzn0:{y:(componentViewport?.y||0)+0+6803.6+0+0+20+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:14,width:`min(${componentViewport?.width||\"100vw\"}, 1200px)`,y:(componentViewport?.y||0)+0+5107+0+0+100+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1rfi16d-container\",nodeId:\"StG29rulk\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{zmyL5hzn0:{variant:\"KIl3x5F2L\"}},children:/*#__PURE__*/_jsx(Subtitles,{height:\"100%\",id:\"StG29rulk\",layoutId:\"StG29rulk\",qbC_ksiLG:\"SOME SHOTS\",style:{maxWidth:\"100%\",width:\"100%\"},variant:\"wzyVXEOJm\",width:\"100%\"})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{zmyL5hzn0:{__framer__transformViewportThreshold:1}},children:/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__styleTransformEffectEnabled:true,__framer__transformTargets:[{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0}},{ref:ref3,target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:200,y:0}}],__framer__transformTrigger:\"onScrollTarget\",__framer__transformViewportThreshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-10jxpyk\",style:{transformPerspective:1200},children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-19lujay\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{vKO9iV1kM:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1144,intrinsicWidth:1728.8,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+5360.6+0+0+100+44+0+75.5),pixelHeight:1131,pixelWidth:1940,sizes:\"430.0203px\",src:\"https://framerusercontent.com/images/1HXuoecgn4eEdpOETIlAfg7CLA.png?lossless=1\",srcSet:\"https://framerusercontent.com/images/1HXuoecgn4eEdpOETIlAfg7CLA.png?scale-down-to=512&lossless=1 512w,https://framerusercontent.com/images/1HXuoecgn4eEdpOETIlAfg7CLA.png?scale-down-to=1024&lossless=1 1024w,https://framerusercontent.com/images/1HXuoecgn4eEdpOETIlAfg7CLA.png?lossless=1 1940w\"}},zmyL5hzn0:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1144,intrinsicWidth:1728.8,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+6803.6+0+0+20+34+0+-8.2739),pixelHeight:1131,pixelWidth:1940,sizes:\"225.3358px\",src:\"https://framerusercontent.com/images/1HXuoecgn4eEdpOETIlAfg7CLA.png?lossless=1\",srcSet:\"https://framerusercontent.com/images/1HXuoecgn4eEdpOETIlAfg7CLA.png?scale-down-to=512&lossless=1 512w,https://framerusercontent.com/images/1HXuoecgn4eEdpOETIlAfg7CLA.png?scale-down-to=1024&lossless=1 1024w,https://framerusercontent.com/images/1HXuoecgn4eEdpOETIlAfg7CLA.png?lossless=1 1940w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1144,intrinsicWidth:1728.8,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+5107+0+0+100+44+0+75.5),pixelHeight:1131,pixelWidth:1940,sizes:\"430.0203px\",src:\"https://framerusercontent.com/images/1HXuoecgn4eEdpOETIlAfg7CLA.png?lossless=1\",srcSet:\"https://framerusercontent.com/images/1HXuoecgn4eEdpOETIlAfg7CLA.png?scale-down-to=512&lossless=1 512w,https://framerusercontent.com/images/1HXuoecgn4eEdpOETIlAfg7CLA.png?scale-down-to=1024&lossless=1 1024w,https://framerusercontent.com/images/1HXuoecgn4eEdpOETIlAfg7CLA.png?lossless=1 1940w\"},className:\"framer-7g0czb\",\"data-framer-name\":\"NMMA_cover\",transformTemplate:transformTemplate1})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-171yyil\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{vKO9iV1kM:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1685.6,intrinsicWidth:2389.6,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+5360.6+0+0+100+44+0+111.4461),pixelHeight:681,pixelWidth:977,sizes:\"377.6247px\",src:\"https://framerusercontent.com/images/JFGCyUf7QKPecKpyU3VTqEfE08.png?lossless=1\",srcSet:\"https://framerusercontent.com/images/JFGCyUf7QKPecKpyU3VTqEfE08.png?scale-down-to=512&lossless=1 512w,https://framerusercontent.com/images/JFGCyUf7QKPecKpyU3VTqEfE08.png?lossless=1 977w\"}},zmyL5hzn0:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1685.6,intrinsicWidth:2389.6,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+6803.6+0+0+20+34+0+-25.0525),pixelHeight:681,pixelWidth:977,sizes:\"185.1769px\",src:\"https://framerusercontent.com/images/JFGCyUf7QKPecKpyU3VTqEfE08.png?lossless=1\",srcSet:\"https://framerusercontent.com/images/JFGCyUf7QKPecKpyU3VTqEfE08.png?scale-down-to=512&lossless=1 512w,https://framerusercontent.com/images/JFGCyUf7QKPecKpyU3VTqEfE08.png?lossless=1 977w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1685.6,intrinsicWidth:2389.6,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+5107+0+0+100+44+0+58.4683),pixelHeight:681,pixelWidth:977,sizes:\"353.3831px\",src:\"https://framerusercontent.com/images/JFGCyUf7QKPecKpyU3VTqEfE08.png?lossless=1\",srcSet:\"https://framerusercontent.com/images/JFGCyUf7QKPecKpyU3VTqEfE08.png?scale-down-to=512&lossless=1 512w,https://framerusercontent.com/images/JFGCyUf7QKPecKpyU3VTqEfE08.png?lossless=1 977w\"},className:\"framer-f5raga\",\"data-framer-name\":\"Home_Garden_lp\",transformTemplate:transformTemplate1})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-qxe284\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{vKO9iV1kM:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:2109,intrinsicWidth:2975,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+5360.6+0+0+100+44+0+66.0806),pixelHeight:1179,pixelWidth:1842,sizes:\"438.5356px\",src:\"https://framerusercontent.com/images/f1ZR9TjQGp9IC0EbtXMa0Q5eR4.png?lossless=1\",srcSet:\"https://framerusercontent.com/images/f1ZR9TjQGp9IC0EbtXMa0Q5eR4.png?scale-down-to=512&lossless=1 512w,https://framerusercontent.com/images/f1ZR9TjQGp9IC0EbtXMa0Q5eR4.png?scale-down-to=1024&lossless=1 1024w,https://framerusercontent.com/images/f1ZR9TjQGp9IC0EbtXMa0Q5eR4.png?lossless=1 1842w\"}},zmyL5hzn0:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:2109,intrinsicWidth:2975,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+6803.6+0+0+20+34+0+-17.0177),pixelHeight:1179,pixelWidth:1842,sizes:\"229.7979px\",src:\"https://framerusercontent.com/images/f1ZR9TjQGp9IC0EbtXMa0Q5eR4.png?lossless=1\",srcSet:\"https://framerusercontent.com/images/f1ZR9TjQGp9IC0EbtXMa0Q5eR4.png?scale-down-to=512&lossless=1 512w,https://framerusercontent.com/images/f1ZR9TjQGp9IC0EbtXMa0Q5eR4.png?scale-down-to=1024&lossless=1 1024w,https://framerusercontent.com/images/f1ZR9TjQGp9IC0EbtXMa0Q5eR4.png?lossless=1 1842w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:2109,intrinsicWidth:2975,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+5107+0+0+100+44+0+66.0806),pixelHeight:1179,pixelWidth:1842,sizes:\"438.5356px\",src:\"https://framerusercontent.com/images/f1ZR9TjQGp9IC0EbtXMa0Q5eR4.png?lossless=1\",srcSet:\"https://framerusercontent.com/images/f1ZR9TjQGp9IC0EbtXMa0Q5eR4.png?scale-down-to=512&lossless=1 512w,https://framerusercontent.com/images/f1ZR9TjQGp9IC0EbtXMa0Q5eR4.png?scale-down-to=1024&lossless=1 1024w,https://framerusercontent.com/images/f1ZR9TjQGp9IC0EbtXMa0Q5eR4.png?lossless=1 1842w\"},className:\"framer-36iufm\",\"data-framer-name\":\"Home_Garden_lp\",transformTemplate:transformTemplate1})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1333lzc\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-1o0tt3j\",\"data-framer-name\":\"Image\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{vKO9iV1kM:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1311.2,intrinsicWidth:1728,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+5360.6+0+0+100+44+0+59.5+63.322),pixelHeight:2158,pixelWidth:3456,sizes:\"373.4267px\",src:\"https://framerusercontent.com/images/PfJwb4Pl2tUuuUVPeoIsJPdIE.png?scale-down-to=2048&lossless=1\",srcSet:\"https://framerusercontent.com/images/PfJwb4Pl2tUuuUVPeoIsJPdIE.png?scale-down-to=512&lossless=1 512w,https://framerusercontent.com/images/PfJwb4Pl2tUuuUVPeoIsJPdIE.png?scale-down-to=1024&lossless=1 1024w,https://framerusercontent.com/images/PfJwb4Pl2tUuuUVPeoIsJPdIE.png?scale-down-to=2048&lossless=1 2048w,https://framerusercontent.com/images/PfJwb4Pl2tUuuUVPeoIsJPdIE.png?lossless=1 3456w\"}},zmyL5hzn0:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1311.2,intrinsicWidth:1728,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+6803.6+0+0+20+34+0+-24.2739+29.6657),pixelHeight:2158,pixelWidth:3456,sizes:\"198.7472px\",src:\"https://framerusercontent.com/images/PfJwb4Pl2tUuuUVPeoIsJPdIE.png?scale-down-to=2048&lossless=1\",srcSet:\"https://framerusercontent.com/images/PfJwb4Pl2tUuuUVPeoIsJPdIE.png?scale-down-to=512&lossless=1 512w,https://framerusercontent.com/images/PfJwb4Pl2tUuuUVPeoIsJPdIE.png?scale-down-to=1024&lossless=1 1024w,https://framerusercontent.com/images/PfJwb4Pl2tUuuUVPeoIsJPdIE.png?scale-down-to=2048&lossless=1 2048w,https://framerusercontent.com/images/PfJwb4Pl2tUuuUVPeoIsJPdIE.png?lossless=1 3456w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1311.2,intrinsicWidth:1728,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+5107+0+0+100+44+0+59.5+29.6657),pixelHeight:2158,pixelWidth:3456,sizes:\"379.2799px\",src:\"https://framerusercontent.com/images/PfJwb4Pl2tUuuUVPeoIsJPdIE.png?scale-down-to=2048&lossless=1\",srcSet:\"https://framerusercontent.com/images/PfJwb4Pl2tUuuUVPeoIsJPdIE.png?scale-down-to=512&lossless=1 512w,https://framerusercontent.com/images/PfJwb4Pl2tUuuUVPeoIsJPdIE.png?scale-down-to=1024&lossless=1 1024w,https://framerusercontent.com/images/PfJwb4Pl2tUuuUVPeoIsJPdIE.png?scale-down-to=2048&lossless=1 2048w,https://framerusercontent.com/images/PfJwb4Pl2tUuuUVPeoIsJPdIE.png?lossless=1 3456w\"},className:\"framer-1jm9kax\",\"data-framer-name\":\"NMMA_calendar\",transformTemplate:transformTemplate1})})})})]})})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{zmyL5hzn0:{__framer__transformTargets:[{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:-300}},{ref:ref3,target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0}}]}},children:/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__styleTransformEffectEnabled:true,__framer__transformTargets:[{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:-700}},{ref:ref3,target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0}}],__framer__transformTrigger:\"onScrollTarget\",__framer__transformViewportThreshold:1,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1v8abzx\",\"data-framer-name\":\"Footer\",style:{transformPerspective:1200},children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{vKO9iV1kM:{width:`min(${componentViewport?.width||\"100vw\"} - 80px, 1200px)`,y:(componentViewport?.y||0)+0+5360.6+0+596+60+0},zmyL5hzn0:{y:(componentViewport?.y||0)+0+6803.6+0+298.4522+20+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:186,width:`min(${componentViewport?.width||\"100vw\"} - 48px, 1200px)`,y:(componentViewport?.y||0)+0+5107+0+596+60+0,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{zmyL5hzn0:{__framer__styleTransformEffectEnabled:undefined,style:{}}},children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__styleTransformEffectEnabled:true,__framer__transformTargets:[{target:{opacity:.4,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:-90}},{ref:ref3,target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0}}],__framer__transformTrigger:\"onScrollTarget\",__framer__transformViewportThreshold:1,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1g3g64w-container\",nodeId:\"fmvg38U6C\",rendersWithMotion:true,scopeId:\"augiA20Il\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{vKO9iV1kM:{variant:\"WWkDvPouE\"},zmyL5hzn0:{variant:\"ry2jAaIpo\"}},children:/*#__PURE__*/_jsx(FooterLinks,{height:\"100%\",id:\"fmvg38U6C\",layoutId:\"fmvg38U6C\",style:{maxWidth:\"100%\",width:\"100%\"},variant:\"y4qPoRzEJ\",width:\"100%\"})})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{zmyL5hzn0:{__framer__styleTransformEffectEnabled:undefined,style:{}}},children:/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__styleTransformEffectEnabled:true,__framer__transformTargets:[{target:{opacity:.2,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:-200}},{ref:ref3,target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0}}],__framer__transformTrigger:\"onScrollTarget\",__framer__transformViewportThreshold:1,__perspectiveFX:false,__targetOpacity:1,className:\"framer-5nxuxu\",\"data-framer-name\":\"Footer Name\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{vKO9iV1kM:{width:`min(${componentViewport?.width||\"100vw\"} - 80px, 1200px)`,y:(componentViewport?.y||0)+0+5360.6+0+596+60+186+24+0},zmyL5hzn0:{height:107,y:(componentViewport?.y||0)+0+6803.6+0+298.4522+20+186+24+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:280,width:`min(${componentViewport?.width||\"100vw\"} - 48px, 1200px)`,y:(componentViewport?.y||0)+0+5107+0+596+60+186+24+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-rkyl9g-container\",nodeId:\"o6hrcXDlA\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{zmyL5hzn0:{style:{maxWidth:\"100%\",width:\"100%\"},variant:\"dBMcJy5Hc\"}},children:/*#__PURE__*/_jsx(FooterName,{height:\"100%\",id:\"o6hrcXDlA\",layoutId:\"o6hrcXDlA\",style:{height:\"100%\",maxWidth:\"100%\",width:\"100%\"},variant:\"MLYnH8rJZ\",width:\"100%\"})})})})})})})]})})]})]}),/*#__PURE__*/_jsx(\"div\",{id:\"overlay\"})]})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-i3wyD.framer-lux5qc, .framer-i3wyD .framer-lux5qc { display: block; }\",\".framer-i3wyD.framer-72rtr7 { align-content: center; align-items: center; background-color: var(--token-7144749d-22b1-40e0-b99d-19560f665c6d, #090d0f); display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 1200px; }\",\".framer-i3wyD .framer-klzu4v { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; left: 50%; overflow: visible; padding: 24px 16px 0px 16px; position: fixed; top: 0px; transform: translateX(-50%); width: 100%; z-index: 6; }\",\".framer-i3wyD .framer-f3knl4-container { flex: 1 0 0px; height: auto; max-width: 1200px; position: relative; width: 1px; z-index: 8; }\",\".framer-i3wyD .framer-1on28qo { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 20px; height: 100vh; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-i3wyD .framer-1dq49jz { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: 100%; justify-content: flex-end; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-i3wyD .framer-18fapew { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 90%; justify-content: center; overflow: hidden; padding: 16px; position: relative; width: 100%; }\",\".framer-i3wyD .framer-j9bfz8-container { flex: 1 0 0px; height: 100%; opacity: 0.4; position: relative; width: 1px; }\",\".framer-i3wyD .framer-14dw043 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 32px; height: 80vh; justify-content: center; left: calc(49.08333333333336% - min(1200px, 80%) / 2); max-width: 1200px; overflow: hidden; padding: 0px; position: absolute; top: calc(52.22222222222225% - 80vh / 2); width: 80%; z-index: 0; }\",\".framer-i3wyD .framer-qlybuj { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: 1px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-i3wyD .framer-1loios0 { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; max-width: 100%; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-i3wyD .framer-1b57wg3 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-i3wyD .framer-1qeuet, .framer-i3wyD .framer-fwolxu, .framer-i3wyD .framer-n2cdvx { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; max-width: 100%; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; z-index: 0; }\",\".framer-i3wyD .framer-3y96y6 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 4px; height: min-content; justify-content: center; overflow: hidden; padding: 0px 0px 40px 0px; position: relative; width: min-content; z-index: 0; }\",\".framer-i3wyD .framer-1y1g9xc { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: min-content; z-index: 1; }\",\".framer-i3wyD .framer-1cr9o5g-container { flex: none; height: 16px; position: relative; width: 16px; }\",\".framer-i3wyD .framer-1mln26x, .framer-i3wyD .framer-n9gr56, .framer-i3wyD .framer-1sag0vz, .framer-i3wyD .framer-1o3pl3r, .framer-i3wyD .framer-147ypm6, .framer-i3wyD .framer-ajzh1p, .framer-i3wyD .framer-1fwjg6i, .framer-i3wyD .framer-rn4a8m, .framer-i3wyD .framer-17pbpcz, .framer-i3wyD .framer-qc6zzw, .framer-i3wyD .framer-1s4gpm { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-i3wyD .framer-16cvhib { 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: min-content; z-index: 1; }\",\".framer-i3wyD .framer-1kbanzu-container { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 19px); position: relative; width: 16px; }\",\".framer-i3wyD .framer-1hjytob-container { flex: none; height: 95px; opacity: 0.5; position: relative; width: 100%; }\",\".framer-i3wyD .framer-11pep1n { aspect-ratio: 2.7467811158798283 / 1; height: var(--framer-aspect-ratio-supported, 60px); overflow: visible; position: relative; width: 165px; }\",\".framer-i3wyD .framer-1qtx4pc { aspect-ratio: 4.063492063492063 / 1; height: var(--framer-aspect-ratio-supported, 29px); overflow: visible; position: relative; width: 118px; }\",\".framer-i3wyD .framer-1lrcegm { aspect-ratio: 1.804235832856325 / 1; height: var(--framer-aspect-ratio-supported, 51px); overflow: visible; position: relative; width: 92px; }\",\".framer-i3wyD .framer-8pt006 { aspect-ratio: 1.2048192771084338 / 1; height: var(--framer-aspect-ratio-supported, 63px); overflow: visible; position: relative; width: 76px; }\",\".framer-i3wyD .framer-7n4heg { aspect-ratio: 1 / 1; height: var(--framer-aspect-ratio-supported, 65px); overflow: visible; position: relative; width: 65px; }\",\".framer-i3wyD .framer-1wiccai { aspect-ratio: 7.037109375 / 1; height: var(--framer-aspect-ratio-supported, 22px); overflow: visible; position: relative; width: 155px; }\",\".framer-i3wyD .framer-1uomlx8 { aspect-ratio: 2.3534994068801898 / 1; height: var(--framer-aspect-ratio-supported, 39px); overflow: visible; position: relative; width: 92px; }\",\".framer-i3wyD .framer-yyz86m { aspect-ratio: 1.9440993788819876 / 1; height: var(--framer-aspect-ratio-supported, 62px); overflow: visible; position: relative; width: 121px; z-index: 0; }\",\".framer-i3wyD .framer-50p2xi { aspect-ratio: 2.8155555555555556 / 1; height: var(--framer-aspect-ratio-supported, 48px); overflow: visible; position: relative; width: 135px; }\",\".framer-i3wyD .framer-atrtxm { aspect-ratio: 5.643340857787811 / 1; height: var(--framer-aspect-ratio-supported, 32px); overflow: visible; position: relative; width: 181px; }\",\".framer-i3wyD .framer-1a93pte { aspect-ratio: 5.945205479452055 / 1; height: var(--framer-aspect-ratio-supported, 34px); overflow: visible; position: relative; width: 202px; }\",\".framer-i3wyD .framer-1w35va0 { aspect-ratio: 6.273584905660377 / 1; height: var(--framer-aspect-ratio-supported, 33px); overflow: visible; position: relative; width: 207px; }\",\".framer-i3wyD .framer-1wmzan { aspect-ratio: 2.2900763358778624 / 1; height: var(--framer-aspect-ratio-supported, 66px); overflow: visible; position: relative; width: 151px; }\",\".framer-i3wyD .framer-1k5wgf2 { aspect-ratio: 7.081081081081081 / 1; height: var(--framer-aspect-ratio-supported, 28px); overflow: visible; position: relative; width: 198px; }\",\".framer-i3wyD .framer-1hv4hd7 { height: 55px; overflow: hidden; position: relative; width: 123px; }\",\".framer-i3wyD .framer-eeee8o { aspect-ratio: 2.2363636363636363 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 55px); left: 0px; position: absolute; right: 0px; top: 0px; }\",\".framer-i3wyD .framer-4kfa56 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 70vh; justify-content: flex-end; max-width: 1200px; overflow: hidden; padding: 100px 40px 100px 40px; position: relative; width: 100%; z-index: 4; }\",\".framer-i3wyD .framer-12tto66 { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 66%; word-break: break-word; word-wrap: break-word; }\",\".framer-i3wyD .framer-1dua3ts { align-content: center; align-items: center; border-top-left-radius: 48px; border-top-right-radius: 48px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 48px; height: 80vh; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-i3wyD .framer-sabrvv, .framer-i3wyD .framer-esokff { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-i3wyD .framer-4f9shv { align-content: center; align-items: center; border-bottom-left-radius: 16px; border-bottom-right-radius: 16px; border-top-left-radius: 16px; border-top-right-radius: 16px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 32px; height: min-content; justify-content: center; max-width: 1200px; overflow: visible; padding: 100px 0px 100px 0px; position: relative; width: 100%; }\",\".framer-i3wyD .framer-gc06kw-container, .framer-i3wyD .framer-8ahafg-container, .framer-i3wyD .framer-17mqiyr-container, .framer-i3wyD .framer-19shvl8-container, .framer-i3wyD .framer-100xcnh-container, .framer-i3wyD .framer-as88tu-container, .framer-i3wyD .framer-ryaxme-container, .framer-i3wyD .framer-uept2b-container, .framer-i3wyD .framer-9umtl3-container, .framer-i3wyD .framer-p4dtyq-container, .framer-i3wyD .framer-18gt975-container, .framer-i3wyD .framer-t0blog-container, .framer-i3wyD .framer-1v9uw32-container, .framer-i3wyD .framer-owmar9-container, .framer-i3wyD .framer-185smd4-container, .framer-i3wyD .framer-8zmca6-container { flex: none; height: auto; position: relative; width: 100%; }\",\".framer-i3wyD .framer-fi0zs2, .framer-i3wyD .framer-1w5buo2 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 80px; height: min-content; justify-content: center; max-width: 1200px; overflow: visible; padding: 0px 24px 0px 24px; position: relative; width: 100%; }\",\".framer-i3wyD .framer-cyovou, .framer-i3wyD .framer-1q5frim { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: sticky; top: 0px; width: 1px; z-index: 1; }\",\".framer-i3wyD .framer-20e6vo, .framer-i3wyD .framer-fxkzbo, .framer-i3wyD .framer-wb0n0n, .framer-i3wyD .framer-qrqa7i { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; max-width: 1200px; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-i3wyD .framer-rp3jl2, .framer-i3wyD .framer-1mcu767 { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-i3wyD .framer-7hm2c0, .framer-i3wyD .framer-1mbr7ld, .framer-i3wyD .framer-12ihrvz, .framer-i3wyD .framer-svob1f, .framer-i3wyD .framer-680x9h { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-i3wyD .framer-l75td0, .framer-i3wyD .framer-gcuinz, .framer-i3wyD .framer-vmq8ga, .framer-i3wyD .framer-asytf5, .framer-i3wyD .framer-6f5jia { align-content: center; align-items: center; background-color: var(--token-46bde0e1-d849-40d5-8381-cc3928f9c23c, rgba(33, 37, 40, 0.2)); border-bottom-left-radius: 8px; border-bottom-right-radius: 8px; border-top-left-radius: 8px; border-top-right-radius: 8px; box-shadow: inset 0px 2px 0px 0px var(--token-44d67f91-d5a6-45a7-bc0d-da91111478e5, rgba(71, 71, 71, 0.4)); display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; height: 148px; justify-content: space-between; overflow: hidden; padding: 24px; position: relative; width: 1px; will-change: var(--framer-will-change-override, transform); }\",\".framer-i3wyD .framer-h1ooib, .framer-i3wyD .framer-fsfbqx, .framer-i3wyD .framer-gxic9p, .framer-i3wyD .framer-f98tjz, .framer-i3wyD .framer-18tn41y, .framer-i3wyD .framer-28g1za, .framer-i3wyD .framer-h9y5sh, .framer-i3wyD .framer-iuylid, .framer-i3wyD .framer-1d7dq0l { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; opacity: 0.6; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-i3wyD .framer-wd2n2w, .framer-i3wyD .framer-1bm7q46, .framer-i3wyD .framer-a7w1ma { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-i3wyD .framer-ikpbz6, .framer-i3wyD .framer-1it5z7s, .framer-i3wyD .framer-417swp, .framer-i3wyD .framer-9i0cff { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-i3wyD .framer-1qvf8hr, .framer-i3wyD .framer-1qmkkdm, .framer-i3wyD .framer-afa2f2, .framer-i3wyD .framer-1x17w0e { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: 1px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-i3wyD .framer-10eddkg { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-i3wyD .framer-4qr3oh { align-content: center; align-items: center; background-color: var(--token-46bde0e1-d849-40d5-8381-cc3928f9c23c, rgba(33, 37, 40, 0.35)); border-bottom-left-radius: 8px; border-bottom-right-radius: 8px; border-top-left-radius: 8px; border-top-right-radius: 8px; box-shadow: inset 0px 2px 0px 0px var(--token-44d67f91-d5a6-45a7-bc0d-da91111478e5, rgba(71, 71, 71, 0.4)); display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; height: 148px; justify-content: space-between; overflow: hidden; padding: 24px; position: relative; width: 1px; will-change: var(--framer-will-change-override, transform); }\",\".framer-i3wyD .framer-15q40h6 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 48px; height: 80vh; justify-content: center; overflow: hidden; padding: 24px; position: relative; width: 100%; z-index: 0; }\",\".framer-i3wyD .framer-11kl96b { align-content: center; align-items: center; border-bottom-left-radius: 16px; border-bottom-right-radius: 16px; border-top-left-radius: 16px; border-top-right-radius: 16px; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: 100%; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1px; will-change: var(--framer-will-change-override, transform); }\",\".framer-i3wyD .framer-fybfi9 { align-content: center; align-items: center; border-bottom-left-radius: 16px; border-bottom-right-radius: 16px; border-top-left-radius: 16px; border-top-right-radius: 16px; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 32px; height: 100%; justify-content: center; max-width: 1200px; overflow: hidden; padding: 24px 0px 24px 0px; position: relative; width: 1px; will-change: var(--framer-will-change-override, transform); z-index: 1; }\",\".framer-i3wyD .framer-78kc1q { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 48px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-i3wyD .framer-8njx7o { aspect-ratio: 1.9440993788819876 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 110px); overflow: visible; position: relative; width: 214px; z-index: 0; }\",\".framer-i3wyD .framer-13k9v7 { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: 1 0 0px; height: auto; max-width: 1200px; position: relative; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; }\",\".framer-i3wyD .framer-18w8sq5 { bottom: -520px; flex: none; left: calc(50.00000000000002% - 104.16666666666667% / 2); opacity: 0.3; position: absolute; top: -11px; width: 104%; z-index: 0; }\",\".framer-i3wyD .framer-1gbausn { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 32px; height: min-content; justify-content: center; overflow: hidden; padding: 100px 0px 100px 0px; position: relative; width: 100%; }\",\".framer-i3wyD .framer-1pgsfsy-container, .framer-i3wyD .framer-1rfi16d-container, .framer-i3wyD .framer-1g3g64w-container { flex: none; height: auto; max-width: 1200px; position: relative; width: 100%; }\",\".framer-i3wyD .framer-1l2jjle { align-content: center; align-items: center; border-top-left-radius: 48px; border-top-right-radius: 48px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 48px; height: min-content; justify-content: center; overflow: visible; padding: 100px 0px 100px 0px; position: relative; width: 100%; }\",\".framer-i3wyD .framer-a1ft7x { align-content: center; align-items: center; border-bottom-left-radius: 16px; border-bottom-right-radius: 16px; border-top-left-radius: 16px; border-top-right-radius: 16px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 32px; height: min-content; justify-content: center; max-width: 1200px; overflow: visible; padding: 24px 0px 24px 0px; position: relative; width: 100%; }\",\".framer-i3wyD .framer-1vll0dy { align-content: center; align-items: center; background-color: var(--token-46bde0e1-d849-40d5-8381-cc3928f9c23c, rgba(33, 37, 40, 0.2)); border-bottom-left-radius: 8px; border-bottom-right-radius: 8px; border-top-left-radius: 8px; border-top-right-radius: 8px; box-shadow: inset 0px 2px 0px 0px var(--token-44d67f91-d5a6-45a7-bc0d-da91111478e5, rgba(71, 71, 71, 0.4)); display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; height: 190px; justify-content: space-between; overflow: hidden; padding: 24px; position: relative; width: 1px; will-change: var(--framer-will-change-override, transform); }\",\".framer-i3wyD .framer-1l51crv { align-content: center; align-items: center; background-color: var(--token-46bde0e1-d849-40d5-8381-cc3928f9c23c, rgba(33, 37, 40, 0.2)); border-bottom-left-radius: 8px; border-bottom-right-radius: 8px; border-top-left-radius: 8px; border-top-right-radius: 8px; box-shadow: inset 0px 2px 0px 0px var(--token-44d67f91-d5a6-45a7-bc0d-da91111478e5, rgba(71, 71, 71, 0.4)); display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; height: 167px; justify-content: space-between; overflow: hidden; padding: 24px; position: relative; width: 1px; will-change: var(--framer-will-change-override, transform); }\",\".framer-i3wyD .framer-ejzevc { align-content: center; align-items: center; background-color: var(--token-46bde0e1-d849-40d5-8381-cc3928f9c23c, rgba(33, 37, 40, 0.35)); border-bottom-left-radius: 8px; border-bottom-right-radius: 8px; border-top-left-radius: 8px; border-top-right-radius: 8px; box-shadow: inset 0px 2px 0px 0px var(--token-44d67f91-d5a6-45a7-bc0d-da91111478e5, rgba(71, 71, 71, 0.4)); display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; height: 167px; justify-content: space-between; overflow: hidden; padding: 24px; position: relative; width: 1px; will-change: var(--framer-will-change-override, transform); }\",\".framer-i3wyD .framer-j505dj { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 48px; height: min-content; justify-content: center; max-width: 1200px; overflow: visible; padding: 97px 0px 100px 0px; position: relative; width: 100%; z-index: 0; }\",\".framer-i3wyD .framer-rjvqe5-container { flex: none; height: 64px; max-width: 1200px; position: relative; width: 100%; }\",\".framer-i3wyD .framer-p443o { align-content: center; align-items: center; background: linear-gradient(180deg, var(--token-23a912d6-2639-4fee-9021-12e3104e5a14, #17181a) 0%, var(--token-61eb6483-a415-48ae-9433-44a712e44cc0, rgb(36, 38, 41)) 100%); border-bottom-left-radius: 99px; border-bottom-right-radius: 99px; border-top-left-radius: 99px; border-top-right-radius: 99px; box-shadow: inset 0px 2px 0px 0px #2a2a2c; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 16px; height: 62px; justify-content: flex-start; padding: 8px 24px 8px 24px; position: relative; width: min-content; }\",\".framer-i3wyD .framer-1qdd7sq { flex: none; height: 24px; position: relative; width: 24px; }\",\".framer-i3wyD .framer-z7el7z, .framer-i3wyD .framer-1cs2un6, .framer-i3wyD .framer-1uxyxy1 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-i3wyD .framer-9jsk52 { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; opacity: 0.61; position: relative; white-space: pre; width: auto; }\",\".framer-i3wyD .framer-134hb1s, .framer-i3wyD .framer-zy19rv, .framer-i3wyD .framer-18nf6lj, .framer-i3wyD .framer-pdwp3s, .framer-i3wyD .framer-1lkh4y0, .framer-i3wyD .framer-ump8m7 { align-content: center; align-items: center; background: linear-gradient(180deg, var(--token-23a912d6-2639-4fee-9021-12e3104e5a14, #17181a) 0%, var(--token-61eb6483-a415-48ae-9433-44a712e44cc0, rgb(36, 38, 41)) 100%); border-bottom-left-radius: 999px; border-bottom-right-radius: 999px; border-top-left-radius: 999px; border-top-right-radius: 999px; box-shadow: inset 0px 2px 0px 0px #2a2a2c; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 16px; height: 62px; justify-content: flex-start; padding: 8px 24px 8px 24px; position: relative; width: min-content; }\",\".framer-i3wyD .framer-k2o77f, .framer-i3wyD .framer-1y80ksj, .framer-i3wyD .framer-yzy5em, .framer-i3wyD .framer-1putpbg, .framer-i3wyD .framer-xfum5c, .framer-i3wyD .framer-19cmvqj { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 24px); position: relative; width: 24px; }\",\".framer-i3wyD .framer-1hydito { align-content: center; align-items: center; background-color: var(--token-7144749d-22b1-40e0-b99d-19560f665c6d, #090d0f); box-shadow: 0px 34px 70px 0px rgba(0, 0, 0, 0.7); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 30px; height: min-content; justify-content: center; overflow: hidden; padding: 100px 0px 100px 0px; position: relative; width: 100%; z-index: 1; }\",\".framer-i3wyD .framer-10jxpyk { align-content: center; align-items: center; aspect-ratio: 7.1647727272727275 / 1; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 30px; height: var(--framer-aspect-ratio-supported, 248px); justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 148%; }\",\".framer-i3wyD .framer-19lujay, .framer-i3wyD .framer-171yyil, .framer-i3wyD .framer-qxe284, .framer-i3wyD .framer-1333lzc { aspect-ratio: 1.3305084745762712 / 1; background-color: var(--token-46bde0e1-d849-40d5-8381-cc3928f9c23c, #17181a); border-bottom-left-radius: 8px; border-bottom-right-radius: 8px; border-top-left-radius: 8px; border-top-right-radius: 8px; box-shadow: inset 0px 2px 0px 0px var(--token-44d67f91-d5a6-45a7-bc0d-da91111478e5, rgba(71, 71, 71, 0.4)); flex: none; height: 100%; overflow: hidden; position: relative; width: var(--framer-aspect-ratio-supported, 330px); will-change: var(--framer-will-change-override, transform); }\",\".framer-i3wyD .framer-7g0czb { aspect-ratio: 1.5111888111888112 / 1; border-bottom-left-radius: 4px; border-bottom-right-radius: 4px; border-top-left-radius: 4px; border-top-right-radius: 4px; box-shadow: 0px 1px 22px 0px rgba(0, 0, 0, 0.25); flex: none; height: var(--framer-aspect-ratio-supported, 201px); left: 50%; overflow: visible; position: absolute; top: 50%; transform: translate(-50%, -50%); width: 92%; }\",\".framer-i3wyD .framer-f5raga { aspect-ratio: 1.41765543426673 / 1; border-bottom-left-radius: 4px; border-bottom-right-radius: 4px; border-top-left-radius: 4px; border-top-right-radius: 4px; box-shadow: 0px 1px 12px 0px rgba(0, 0, 0, 0.25); flex: none; height: var(--framer-aspect-ratio-supported, 176px); left: 50%; overflow: visible; position: absolute; top: 50%; transform: translate(-50%, -50%); width: 75%; }\",\".framer-i3wyD .framer-36iufm { aspect-ratio: 1.41765543426673 / 1; border-bottom-left-radius: 4px; border-bottom-right-radius: 4px; border-top-left-radius: 4px; border-top-right-radius: 4px; flex: none; height: var(--framer-aspect-ratio-supported, 218px); left: 50%; overflow: visible; position: absolute; top: 50%; transform: translate(-50%, -50%); width: 94%; }\",\".framer-i3wyD .framer-1o0tt3j { aspect-ratio: 1.5111888111888112 / 1; border-bottom-left-radius: 4px; border-bottom-right-radius: 4px; border-top-left-radius: 4px; border-top-right-radius: 4px; box-shadow: 0px 1px 22px 0px rgba(0, 0, 0, 0.25); flex: none; height: var(--framer-aspect-ratio-supported, 175px); left: 50%; overflow: hidden; position: absolute; top: 50%; transform: translate(-50%, -50%); width: 80%; will-change: var(--framer-will-change-override, transform); }\",\".framer-i3wyD .framer-1jm9kax { aspect-ratio: 1.5314285714285714 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 175px); left: 50%; overflow: visible; position: absolute; top: 50%; transform: translate(-50%, -50%); width: 101%; }\",\".framer-i3wyD .framer-1v8abzx { align-content: center; align-items: center; background-color: var(--token-05945ba1-7356-4a93-a2a4-bf039908d093, #212528); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 60px 24px 0px 24px; position: relative; width: 100%; }\",\".framer-i3wyD .framer-5nxuxu { align-content: center; align-items: center; aspect-ratio: 5.714285714285714 / 1; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: var(--framer-aspect-ratio-supported, 202px); justify-content: flex-start; overflow: hidden; padding: 24px 0px 0px 0px; position: relative; width: 100%; }\",\".framer-i3wyD .framer-rkyl9g-container { aspect-ratio: 5.714285714285714 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 202px); max-width: 1200px; position: relative; width: 100%; }\",...sharedStyle.css,...sharedStyle1.css,...sharedStyle2.css,...sharedStyle3.css,...sharedStyle4.css,...sharedStyle5.css,...sharedStyle6.css,...sharedStyle7.css,...sharedStyle8.css,\"@media (min-width: 810px) and (max-width: 1199px) { .framer-i3wyD.framer-72rtr7 { width: 810px; } .framer-i3wyD .framer-18fapew, .framer-i3wyD .framer-15q40h6 { height: 100vh; } .framer-i3wyD .framer-j9bfz8-container { height: 80%; } .framer-i3wyD .framer-14dw043 { height: 70%; left: calc(49.08333333333336% - min(1200px, 90%) / 2); top: calc(52.22222222222225% - 70% / 2); width: 90%; } .framer-i3wyD .framer-4kfa56 { height: min-content; justify-content: flex-start; } .framer-i3wyD .framer-12tto66 { width: 100%; } .framer-i3wyD .framer-1dua3ts { height: min-content; } .framer-i3wyD .framer-4f9shv, .framer-i3wyD .framer-a1ft7x { padding: 80px 40px 80px 40px; } .framer-i3wyD .framer-fi0zs2, .framer-i3wyD .framer-1w5buo2 { flex-direction: column; } .framer-i3wyD .framer-cyovou, .framer-i3wyD .framer-rp3jl2, .framer-i3wyD .framer-1mcu767, .framer-i3wyD .framer-1q5frim { flex: none; width: 100%; } .framer-i3wyD .framer-l75td0, .framer-i3wyD .framer-gcuinz, .framer-i3wyD .framer-vmq8ga, .framer-i3wyD .framer-4qr3oh, .framer-i3wyD .framer-asytf5, .framer-i3wyD .framer-6f5jia { height: 128px; } .framer-i3wyD .framer-fybfi9 { padding: 24px; } .framer-i3wyD .framer-78kc1q { align-content: flex-start; align-items: flex-start; padding: 0px 24px 0px 24px; } .framer-i3wyD .framer-1vll0dy, .framer-i3wyD .framer-1l51crv, .framer-i3wyD .framer-ejzevc { height: 172px; } .framer-i3wyD .framer-10jxpyk { height: var(--framer-aspect-ratio-supported, 168px); } .framer-i3wyD .framer-19lujay, .framer-i3wyD .framer-171yyil, .framer-i3wyD .framer-qxe284, .framer-i3wyD .framer-1333lzc { width: var(--framer-aspect-ratio-supported, 223px); } .framer-i3wyD .framer-7g0czb { height: var(--framer-aspect-ratio-supported, 136px); } .framer-i3wyD .framer-f5raga { height: var(--framer-aspect-ratio-supported, 127px); top: 50%; width: 81%; } .framer-i3wyD .framer-36iufm { height: var(--framer-aspect-ratio-supported, 147px); } .framer-i3wyD .framer-1o0tt3j { height: var(--framer-aspect-ratio-supported, 119px); } .framer-i3wyD .framer-1jm9kax { height: var(--framer-aspect-ratio-supported, 116px); left: 50%; top: 56%; width: 99%; } .framer-i3wyD .framer-1v8abzx { padding: 60px 40px 0px 40px; } .framer-i3wyD .framer-5nxuxu, .framer-i3wyD .framer-rkyl9g-container { height: var(--framer-aspect-ratio-supported, 128px); }}\",\"@media (max-width: 809px) { .framer-i3wyD.framer-72rtr7 { width: 390px; } .framer-i3wyD .framer-1on28qo { align-content: flex-end; align-items: flex-end; } .framer-i3wyD .framer-4kfa56 { height: min-content; justify-content: flex-start; padding: 100px 20px 100px 20px; } .framer-i3wyD .framer-12tto66 { width: 100%; } .framer-i3wyD .framer-1dua3ts { height: min-content; justify-content: flex-start; padding: 40px 0px 40px 0px; } .framer-i3wyD .framer-sabrvv, .framer-i3wyD .framer-esokff { justify-content: flex-start; } .framer-i3wyD .framer-fi0zs2, .framer-i3wyD .framer-7hm2c0, .framer-i3wyD .framer-1mbr7ld, .framer-i3wyD .framer-12ihrvz, .framer-i3wyD .framer-1w5buo2, .framer-i3wyD .framer-svob1f, .framer-i3wyD .framer-680x9h { flex-direction: column; } .framer-i3wyD .framer-cyovou, .framer-i3wyD .framer-rp3jl2, .framer-i3wyD .framer-13k9v7, .framer-i3wyD .framer-1mcu767, .framer-i3wyD .framer-1q5frim { flex: none; width: 100%; } .framer-i3wyD .framer-l75td0, .framer-i3wyD .framer-gcuinz, .framer-i3wyD .framer-vmq8ga, .framer-i3wyD .framer-4qr3oh, .framer-i3wyD .framer-asytf5, .framer-i3wyD .framer-6f5jia, .framer-i3wyD .framer-1vll0dy, .framer-i3wyD .framer-1l51crv, .framer-i3wyD .framer-ejzevc { flex: none; gap: 16px; height: min-content; justify-content: center; width: 100%; } .framer-i3wyD .framer-ikpbz6, .framer-i3wyD .framer-9i0cff { overflow: visible; } .framer-i3wyD .framer-1qvf8hr, .framer-i3wyD .framer-1qmkkdm, .framer-i3wyD .framer-afa2f2, .framer-i3wyD .framer-1x17w0e { flex: none; height: min-content; } .framer-i3wyD .framer-15q40h6, .framer-i3wyD .framer-11kl96b { height: min-content; } .framer-i3wyD .framer-fybfi9 { height: min-content; padding: 40px 24px 40px 24px; } .framer-i3wyD .framer-78kc1q { flex-direction: column; gap: 24px; } .framer-i3wyD .framer-1gbausn { gap: 24px; padding: 40px 0px 40px 0px; } .framer-i3wyD .framer-1l2jjle, .framer-i3wyD .framer-j505dj { justify-content: flex-start; padding: 40px 0px 40px 0px; } .framer-i3wyD .framer-a7w1ma { background-color: var(--token-da69e992-9a14-4606-a3ad-cd61c5973123, #1b1c1f); } .framer-i3wyD .framer-1hydito { gap: 20px; padding: 20px 0px 60px 0px; } .framer-i3wyD .framer-10jxpyk { gap: 10px; height: var(--framer-aspect-ratio-supported, 185px); width: 340%; } .framer-i3wyD .framer-19lujay, .framer-i3wyD .framer-1333lzc { width: var(--framer-aspect-ratio-supported, 247px); } .framer-i3wyD .framer-7g0czb { height: var(--framer-aspect-ratio-supported, 150px); } .framer-i3wyD .framer-171yyil, .framer-i3wyD .framer-qxe284 { width: var(--framer-aspect-ratio-supported, 246px); } .framer-i3wyD .framer-f5raga, .framer-i3wyD .framer-1o0tt3j, .framer-i3wyD .framer-1jm9kax { height: var(--framer-aspect-ratio-supported, 131px); } .framer-i3wyD .framer-36iufm { height: var(--framer-aspect-ratio-supported, 163px); } .framer-i3wyD .framer-1v8abzx { padding: 20px 24px 0px 24px; } .framer-i3wyD .framer-5nxuxu { height: var(--framer-aspect-ratio-supported, 60px); } .framer-i3wyD .framer-rkyl9g-container { aspect-ratio: unset; height: auto; }}\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 5387\n * @framerIntrinsicWidth 1200\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"vKO9iV1kM\":{\"layout\":[\"fixed\",\"auto\"]},\"zmyL5hzn0\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerAutoSizeImages true\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n * @framerAcceptsLayoutTemplate true\n * @framerScrollSections {\"Dz21lgpbe\":{\"pattern\":\":Dz21lgpbe\",\"name\":\"header\"},\"Y78NFEnJ3\":{\"pattern\":\":Y78NFEnJ3\",\"name\":\"scroll-text\"},\"siJ5eSOqE\":{\"pattern\":\":siJ5eSOqE\",\"name\":\"last\"},\"uE7eZbU94\":{\"pattern\":\":uE7eZbU94\",\"name\":\"ticker\"}}\n * @framerResponsiveScreen\n */const FrameraugiA20Il=withCSS(Component,css,\"framer-i3wyD\");export default FrameraugiA20Il;FrameraugiA20Il.displayName=\"Home\";FrameraugiA20Il.defaultProps={height:5387,width:1200};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/5vvr9Vy74if2I6bQbJvbw7SY1pQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/EOr0mi4hNtlgWNn9if640EZzXCo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Y9k9QrlZAqio88Klkmbd8VoMQc.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/OYrD2tBIBPvoJXiIHnLoOXnY9M.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/JeYwfuaPfZHQhEG8U5gtPDZ7WQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/vQyevYAyHtARFwPqUzQGpnDs.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/b6Y37FthZeALduNqHicBT6FutY.woff2\",weight:\"400\"},{family:\"Poppins\",source:\"fontshare\",style:\"normal\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/EOHGWBZYYKO6R4PWP4S2B3FFWHHBEZN6/UWQLMF4AFWLXCJQCFV3WRVYC77KZXPRB/FYG6OCH7XOLUUSZTIZE65ATBZWF623O4.woff2\",weight:\"700\"},{family:\"Poppins\",source:\"fontshare\",style:\"normal\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/SC7QJW6HNT3W42YFCVAWB3GI66BMNCKY/Q4ANQB6YZL7K35IAB3IPAE75W7PRJSDF/3HCNXVAKPOHOEI7LK7TGC54FOZT77SNM.woff2\",weight:\"300\"},{family:\"Poppins\",source:\"fontshare\",style:\"normal\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/E6J4GS76KHNRRUWODFCFOX2JRKNRSFVY/3GYVT5S4AH7VMPASDDKOTIPV6P3WJXGI/24R4YOH3G2SFDSTCNHOVGYEX3DMRC3CE.woff2\",weight:\"600\"}]},...NavigationFonts,...VideoFonts,...PulseFonts,...PhosphorFonts,...TickerFonts,...SubtitlesFonts,...AnimatedNumberCounterFonts,...CategorieHomepageFonts,...Ticker1Fonts,...FooterLinksFonts,...FooterNameFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts),...getFontsFromSharedStyle(sharedStyle2.fonts),...getFontsFromSharedStyle(sharedStyle3.fonts),...getFontsFromSharedStyle(sharedStyle4.fonts),...getFontsFromSharedStyle(sharedStyle5.fonts),...getFontsFromSharedStyle(sharedStyle6.fonts),...getFontsFromSharedStyle(sharedStyle7.fonts),...getFontsFromSharedStyle(sharedStyle8.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FrameraugiA20Il\",\"slots\":[],\"annotations\":{\"framerScrollSections\":\"{\\\"Dz21lgpbe\\\":{\\\"pattern\\\":\\\":Dz21lgpbe\\\",\\\"name\\\":\\\"header\\\"},\\\"Y78NFEnJ3\\\":{\\\"pattern\\\":\\\":Y78NFEnJ3\\\",\\\"name\\\":\\\"scroll-text\\\"},\\\"siJ5eSOqE\\\":{\\\"pattern\\\":\\\":siJ5eSOqE\\\",\\\"name\\\":\\\"last\\\"},\\\"uE7eZbU94\\\":{\\\"pattern\\\":\\\":uE7eZbU94\\\",\\\"name\\\":\\\"ticker\\\"}}\",\"framerIntrinsicHeight\":\"5387\",\"framerComponentViewportWidth\":\"true\",\"framerImmutableVariables\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerColorSyntax\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"vKO9iV1kM\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"zmyL5hzn0\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerIntrinsicWidth\":\"1200\",\"framerAcceptsLayoutTemplate\":\"true\",\"framerContractVersion\":\"1\",\"framerResponsiveScreen\":\"\",\"framerAutoSizeImages\":\"true\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}"],
  "mappings": "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",
  "names": ["ObjectFitType", "SrcType", "getProps", "props", "width", "height", "topLeft", "topRight", "bottomRight", "bottomLeft", "id", "children", "rest", "Video", "newProps", "p", "VideoMemo", "usePlaybackControls", "videoRef", "isInCurrentNavigationTarget", "useIsInCurrentNavigationTarget", "requestingPlay", "pe", "isPlayingRef", "setProgress", "te", "rawProgress", "newProgress", "isAlreadySet", "play", "video", "e", "pause", "useAutoplayBehavior", "playingProp", "muted", "loop", "playsinline", "controls", "initialPlayingProp", "ye", "hasPlayingPropChanged", "setHasPlayingPropChanged", "behavesAsGif", "autoplay", "X", "srcType", "srcUrl", "srcFile", "posterEnabled", "playing", "restartOnEnter", "objectFit", "backgroundColor", "radius", "volume", "startTimeProp", "poster", "progress", "onSeeked", "onPause", "onPlay", "onEnd", "onClick", "onMouseEnter", "onMouseLeave", "onMouseDown", "onMouseUp", "isSafari", "useIsBrowserSafari", "wasPausedOnLeave", "wasEndedOnLeave", "isOnCanvas", "useIsOnCanvas", "borderRadius", "useRadius", "autoplayBehavior", "isInViewport", "useInView", "isCloseToViewport", "startTime", "isPlaying", "ue", "isMountedAndReadyForProgressChanges", "rawProgressValue", "isMotionValue", "value", "useOnEnter", "useOnExit", "src", "se", "fragment", "handleReady", "capitalizeFirstLetter", "titleCase", "objectFitOptions", "addPropertyControls", "ControlType", "borderRadiusControl", "defaultEvents", "AnimatedNumberCounter", "props", "mode", "start", "end", "value", "decimals", "commas", "color", "animation", "isCanvas", "RenderTarget", "Tag", "MotionTag", "motion", "isDefault", "initialValue", "transition", "formatNumber", "number", "numberString", "setNumber", "ye", "finalValue", "setFinalValue", "currentAnimation", "setCurrentAnimation", "ref", "pe", "isInView", "useInView", "motionValue", "useMotionValue", "runAnimation", "from", "to", "animate", "latest", "ue", "u", "l", "addPropertyControls", "ControlType", "enabledGestures", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "transformTemplate1", "_", "t", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "getProps", "description", "height", "id", "link", "showArrowRight", "title", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "EZhZ7Dcmo", "D5QaJkq2w", "szV1HetO_", "uGsM5Z6po", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "scopingClassNames", "cx", "isDisplayed", "LayoutGroup", "Link", "u", "RichText2", "SVG", "css", "FramerqV8yIXMfJ", "withCSS", "qV8yIXMfJ_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "transition2", "transformTemplate1", "_", "t", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "_humanReadableVariantMap_props_variant", "_ref", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onAppearf382t5", "args", "CycleVariantState", "useOnVariantChange", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "u", "cx", "css", "FramerxxBb4cLiY", "withCSS", "xxBb4cLiY_default", "addPropertyControls", "ControlType", "addFonts", "NavigationFonts", "getFonts", "lzr8ycQIs_default", "VideoFonts", "Video", "PulseFonts", "xxBb4cLiY_default", "PhosphorFonts", "Icon", "MotionDivWithFX", "withFX", "motion", "TickerFonts", "Ticker", "SubtitlesFonts", "WBtgaz88a_default", "AnimatedNumberCounterFonts", "AnimatedNumberCounter", "ImageWithFX", "Image2", "CategorieHomepageFonts", "qV8yIXMfJ_default", "Ticker1Fonts", "FooterLinksFonts", "lGaKJs0Qn_default", "ContainerWithFX", "Container", "FooterNameFonts", "Charr_DBw_default", "breakpoints", "serializationHash", "variantClassNames", "transformTemplate1", "_", "t", "HTMLStyle", "value", "useIsOnFramerCanvas", "p", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "variant", "restProps", "ue", "metadata", "robotsTag", "ie", "baseVariant", "hydratedBaseVariant", "useHydratedBreakpointVariants", "breakpoints", "gestureVariant", "scopingClassNames", "cx", "elementId", "useRouteElementId", "ref1", "elementId1", "ref2", "router", "useRouter", "elementId2", "ref3", "elementId3", "ref4", "useCustomCursors", "GeneratedComponentContext", "u", "LayoutGroup", "motion", "ComponentViewportProvider", "Container", "PropertyOverrides2", "lzr8ycQIs_default", "MotionDivWithFX", "Video", "RichText2", "x", "xxBb4cLiY_default", "Icon", "Ticker", "Image2", "SVG", "WBtgaz88a_default", "AnimatedNumberCounter", "getLoadingLazyAtYPosition", "ImageWithFX", "ResolveLinks", "resolvedLinks", "qV8yIXMfJ_default", "resolvedLinks1", "resolvedLinks2", "resolvedLinks3", "ContainerWithFX", "lGaKJs0Qn_default", "Charr_DBw_default", "css", "FrameraugiA20Il", "withCSS", "augiA20Il_default", "addFonts", "NavigationFonts", "VideoFonts", "PulseFonts", "PhosphorFonts", "TickerFonts", "SubtitlesFonts", "AnimatedNumberCounterFonts", "CategorieHomepageFonts", "Ticker1Fonts", "FooterLinksFonts", "FooterNameFonts", "getFontsFromSharedStyle", "fonts", "__FramerMetadata__"]
}
