{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/B2xAlJLcN0gOnt11mSPw/LHz3bw67SqHRmnCKTlE6/Ticker.js", "ssg:https://framerusercontent.com/modules/JxllzAVnpOTsg9laI0RN/wTOBYk8gi2I0cppxhp4e/DY1_eAqB8.js", "ssg:https://framerusercontent.com/modules/RmxzcxukCYqCcttRjgmN/ntlFNey5fzttA2S03ynl/fb2moCuGF.js", "ssg:https://framerusercontent.com/modules/2YSiKkgMpy7KrsgOA9pJ/niECgqMDucVQLiqGzCiJ/LNCdefxQH.js", "ssg:https://framerusercontent.com/modules/bnRXpfBmbdyG2PChpHQ1/0rI9JgLEXFbzK4l5mOU8/Myg2D10IU.js", "ssg:https://framerusercontent.com/modules/fVjyNNwrkOs5viojVAmJ/wHtE9Lucrbb4tlH8aq6b/vcWhJRANm.js", "ssg:https://framerusercontent.com/modules/UL6NdSvaV8Q1iFwF9aNj/auak83WsZ9WZynQYKHQJ/W7l1Uqv3H.js", "ssg:https://framerusercontent.com/modules/JVpVoMZ5BB9OqvVTS09t/RyQ6qNb5K6C92vmNTQDi/zXIyEGBrP.js", "ssg:https://framerusercontent.com/modules/3OLMPanKWMHGdlJyvy23/Poz9HSOQ9WJqkXKXBRsC/Line_3.js", "ssg:https://framerusercontent.com/modules/0d8OCWh8B4L9JytDwHww/LonRO4Dkr6RnLaeNGNlG/deNhHQehC.js", "ssg:https://framerusercontent.com/modules/Z6rgi6DNYLFkGD6f9YJd/5RDgsN6F78CgQ06vpi9B/vwd1WaVIb.js", "ssg:https://framerusercontent.com/modules/tvpKtzRKEKF2xcJ5hzn9/dgs9OEKIWL7kdQcQ9Seo/XioHVhkYD.js", "ssg:https://framerusercontent.com/modules/oRRz3nugbU6fhv8G990H/N4EqwwWuDXffA2vCV7vz/augiA20Il.js"],
  "sourcesContent": ["import{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{Children,useEffect,useState,useRef,useMemo,useCallback,cloneElement,startTransition}from\"react\";import{addPropertyControls,ControlType,RenderTarget}from\"framer\";import{useReducedMotion,LayoutGroup,useInView,useMotionValue,useTransform,motion,frame}from\"framer-motion\";import{resize}from\"@motionone/dom\";const MAX_DUPLICATED_ITEMS=100;const directionTransformers={left:offset=>`translateX(-${offset}px)`,right:offset=>`translateX(${offset}px)`,top:offset=>`translateY(-${offset}px)`,bottom:offset=>`translateY(${offset}px)`};/**\n *\n * @framerIntrinsicWidth 400\n * @framerIntrinsicHeight 200\n *\n * @framerDisableUnlink\n *\n * @framerSupportedLayoutWidth fixed\n * @framerSupportedLayoutHeight fixed\n */export default function Ticker(props){/* Props */let{slots=[],gap,padding,paddingPerSide,paddingTop,paddingRight,paddingBottom,paddingLeft,speed,hoverFactor,direction,alignment,sizingOptions,fadeOptions,style}=props;const{fadeContent,overflow,fadeWidth,fadeInset,fadeAlpha}=fadeOptions;const{widthType,heightType}=sizingOptions;const paddingValue=paddingPerSide?`${paddingTop}px ${paddingRight}px ${paddingBottom}px ${paddingLeft}px`:`${padding}px`;/* Checks */const currentTarget=RenderTarget.current();const isCanvas=currentTarget===RenderTarget.canvas||currentTarget===RenderTarget.export;// Remove empty slots (such as hidden layers)\nconst filteredSlots=slots.filter(Boolean);const numChildren=Children.count(filteredSlots);const hasChildren=numChildren>0;if(direction===true){direction=\"left\";}const isHorizontal=direction===\"left\"||direction===\"right\";const offset=useMotionValue(0);const transformer=directionTransformers[direction];const transform=useTransform(offset,transformer);/* Refs and State */const parentRef=useRef(null);const childrenRef=useMemo(()=>{return[{current:null},{current:null}];},[]);const[size,setSize]=useState({parent:null,children:null});/* Arrays */let clonedChildren=null;let dupedChildren=[];/* Duplicate value */let duplicateBy=0;let opacity=0;if(isCanvas){duplicateBy=numChildren?Math.floor(10/numChildren):0;opacity=1;}if(!isCanvas&&hasChildren&&size.parent){duplicateBy=Math.round(size.parent/size.children*2)+1;duplicateBy=Math.min(duplicateBy,MAX_DUPLICATED_ITEMS);opacity=1;}/* Measure parent and child */const measure=useCallback(()=>{if(hasChildren&&parentRef.current){const parentLength=isHorizontal?parentRef.current.offsetWidth:parentRef.current.offsetHeight;const start=childrenRef[0].current?isHorizontal?childrenRef[0].current.offsetLeft:childrenRef[0].current.offsetTop:0;const end=childrenRef[1].current?isHorizontal?childrenRef[1].current.offsetLeft+childrenRef[1].current.offsetWidth:childrenRef[1].current.offsetTop+childrenRef[1].current.offsetHeight:0;const childrenLength=end-start+gap;startTransition(()=>setSize({parent:parentLength,children:childrenLength}));}},[]);const childrenStyles=isCanvas?{contentVisibility:\"auto\"}:{};/* Add refs to first and last child */if(hasChildren){// TODO: These conditional hooks will be unsafe if hasChildren ever changes outside the canvas.\nif(!isCanvas){/**\n             * Track whether this is the initial resize event. By default this will fire on mount,\n             * which we do in the useEffect. We should only fire it on subsequent resizes.\n             */let initialResize=useRef(true);useEffect(()=>{frame.read(measure);return resize(parentRef.current,({contentSize})=>{if(!initialResize.current&&(contentSize.width||contentSize.height)){frame.read(measure);}initialResize.current=false;});},[]);}clonedChildren=Children.map(filteredSlots,(child,index)=>{let ref;if(index===0){ref=childrenRef[0];}if(index===filteredSlots.length-1){ref=childrenRef[1];}const size={width:widthType?child.props?.width:\"100%\",height:heightType?child.props?.height:\"100%\"};return /*#__PURE__*/_jsx(LayoutGroup,{inherit:\"id\",children:/*#__PURE__*/_jsx(\"li\",{ref:ref,style:size,children:/*#__PURE__*/cloneElement(child,{style:{...child.props?.style,...size,flexShrink:0,...childrenStyles},layoutId:child.props.layoutId?child.props.layoutId+\"-original-\"+index:undefined},child.props?.children)})});});}const isInView=isCanvas?true:useInView(parentRef);if(!isCanvas){for(let i=0;i<duplicateBy;i++){dupedChildren=dupedChildren.concat(Children.map(filteredSlots,(child,childIndex)=>{const size={width:widthType?child.props?.width:\"100%\",height:heightType?child.props?.height:\"100%\",willChange:!isInView?undefined:\"transform\"};return /*#__PURE__*/_jsx(LayoutGroup,{inherit:\"id\",children:/*#__PURE__*/_jsx(\"li\",{style:size,\"aria-hidden\":true,children:/*#__PURE__*/cloneElement(child,{key:i+\" \"+childIndex,style:{...child.props?.style,width:widthType?child.props?.width:\"100%\",height:heightType?child.props?.height:\"100%\",flexShrink:0,...childrenStyles},layoutId:child.props.layoutId?child.props.layoutId+\"-dupe-\"+i:undefined},child.props?.children)},i+\"li\"+childIndex)},i+\"lg\"+childIndex);}));}}const animateToValue=size.children+size.children*Math.round(size.parent/size.children);const initialTime=useRef(null);const prevTime=useRef(null);const xOrY=useRef(0);const isHover=useRef(false);const isReducedMotion=useReducedMotion();const listRef=useRef(null);const animationRef=useRef(null);/**\n     * Setup animations\n     */if(!isCanvas){useEffect(()=>{if(isReducedMotion||!animateToValue||!speed){return;}animationRef.current=listRef.current.animate({transform:[transformer(0),transformer(animateToValue)]},{duration:Math.abs(animateToValue)/speed*1e3,iterations:Infinity,easing:\"linear\"});return()=>animationRef.current.cancel();},[hoverFactor,animateToValue,speed]);const playOrPause=useCallback(()=>{if(!animationRef.current)return;const hidden=document.hidden;if(isInView&&!hidden&&animationRef.current.playState===\"paused\"){animationRef.current.play();}else if((!isInView||hidden)&&animationRef.current.playState===\"running\"){animationRef.current.pause();}},[isInView]);useEffect(()=>{playOrPause();},[isInView]);useEffect(()=>{document.addEventListener(\"visibilitychange\",playOrPause);return()=>{document.removeEventListener(\"visibilitychange\",playOrPause);};},[playOrPause]);}/* Fades */const fadeDirection=isHorizontal?\"to right\":\"to bottom\";const fadeWidthStart=fadeWidth/2;const fadeWidthEnd=100-fadeWidth/2;const fadeInsetStart=clamp(fadeInset,0,fadeWidthStart);const fadeInsetEnd=100-fadeInset;const fadeMask=`linear-gradient(${fadeDirection}, rgba(0, 0, 0, ${fadeAlpha}) ${fadeInsetStart}%, rgba(0, 0, 0, 1) ${fadeWidthStart}%, rgba(0, 0, 0, 1) ${fadeWidthEnd}%, rgba(0, 0, 0, ${fadeAlpha}) ${fadeInsetEnd}%)`;/* Empty state */if(!hasChildren){return /*#__PURE__*/_jsxs(\"section\",{style:placeholderStyles,children:[/*#__PURE__*/_jsx(\"div\",{style:emojiStyles,children:\"\u2728\"}),/*#__PURE__*/_jsx(\"p\",{style:titleStyles,children:\"Connect to Content\"}),/*#__PURE__*/_jsx(\"p\",{style:subtitleStyles,children:\"Add layers or components to infinitely loop on your page.\"})]});}return /*#__PURE__*/_jsx(\"section\",{style:{...containerStyle,opacity:opacity,WebkitMaskImage:fadeContent?fadeMask:undefined,maskImage:fadeContent?fadeMask:undefined,overflow:overflow?\"visible\":\"hidden\",padding:paddingValue},ref:parentRef,children:/*#__PURE__*/_jsxs(motion.ul,{ref:listRef,style:{...containerStyle,gap:gap,top:direction===\"bottom\"&&isValidNumber(animateToValue)?-animateToValue:undefined,left:direction===\"right\"&&isValidNumber(animateToValue)?-animateToValue:undefined,placeItems:alignment,position:\"relative\",flexDirection:isHorizontal?\"row\":\"column\",...style,willChange:isCanvas||!isInView?\"auto\":\"transform\",transform:transformer(0)},onMouseEnter:()=>{isHover.current=true;if(animationRef.current){// TODO Replace with updatePlaybackRate when Chrome bugs sorted\nanimationRef.current.playbackRate=hoverFactor;}},onMouseLeave:()=>{isHover.current=false;if(animationRef.current){// TODO Replace with updatePlaybackRate when Chrome bugs sorted\nanimationRef.current.playbackRate=1;}},children:[clonedChildren,dupedChildren]})});}/* Default Properties */Ticker.defaultProps={gap:10,padding:10,sizingOptions:{widthType:true,heightType:true},fadeOptions:{fadeContent:true,overflow:false,fadeWidth:25,fadeAlpha:0,fadeInset:0},direction:true};/* Property Controls */addPropertyControls(Ticker,{slots:{type:ControlType.Array,title:\"Children\",control:{type:ControlType.ComponentInstance}},speed:{type:ControlType.Number,title:\"Speed\",min:0,max:1e3,defaultValue:100,unit:\"%\",displayStepper:true,step:5},direction:{type:ControlType.Enum,title:\"Direction\",options:[\"left\",\"right\",\"top\",\"bottom\"],optionIcons:[\"direction-left\",\"direction-right\",\"direction-up\",\"direction-down\"],optionTitles:[\"Left\",\"Right\",\"Top\",\"Bottom\"],defaultValue:\"left\",displaySegmentedControl:true},alignment:{type:ControlType.Enum,title:\"Align\",options:[\"flex-start\",\"center\",\"flex-end\"],optionIcons:{direction:{right:[\"align-top\",\"align-middle\",\"align-bottom\"],left:[\"align-top\",\"align-middle\",\"align-bottom\"],top:[\"align-left\",\"align-center\",\"align-right\"],bottom:[\"align-left\",\"align-center\",\"align-right\"]}},defaultValue:\"center\",displaySegmentedControl:true},gap:{type:ControlType.Number,title:\"Gap\"},padding:{title:\"Padding\",type:ControlType.FusedNumber,toggleKey:\"paddingPerSide\",toggleTitles:[\"Padding\",\"Padding per side\"],valueKeys:[\"paddingTop\",\"paddingRight\",\"paddingBottom\",\"paddingLeft\"],valueLabels:[\"T\",\"R\",\"B\",\"L\"],min:0},sizingOptions:{type:ControlType.Object,title:\"Sizing\",controls:{widthType:{type:ControlType.Boolean,title:\"Width\",enabledTitle:\"Auto\",disabledTitle:\"Stretch\",defaultValue:true},heightType:{type:ControlType.Boolean,title:\"Height\",enabledTitle:\"Auto\",disabledTitle:\"Stretch\",defaultValue:true}}},fadeOptions:{type:ControlType.Object,title:\"Clipping\",controls:{fadeContent:{type:ControlType.Boolean,title:\"Fade\",defaultValue:true},overflow:{type:ControlType.Boolean,title:\"Overflow\",enabledTitle:\"Show\",disabledTitle:\"Hide\",defaultValue:false,hidden(props){return props.fadeContent===true;}},fadeWidth:{type:ControlType.Number,title:\"Width\",defaultValue:25,min:0,max:100,unit:\"%\",hidden(props){return props.fadeContent===false;}},fadeInset:{type:ControlType.Number,title:\"Inset\",defaultValue:0,min:0,max:100,unit:\"%\",hidden(props){return props.fadeContent===false;}},fadeAlpha:{type:ControlType.Number,title:\"Opacity\",defaultValue:0,min:0,max:1,step:.05,hidden(props){return props.fadeContent===false;}}}},hoverFactor:{type:ControlType.Number,title:\"Hover\",min:0,max:1,unit:\"x\",defaultValue:1,step:.1,displayStepper:true,description:\"Slows down the speed while you are hovering.\"}});/* Placeholder Styles */const containerStyle={display:\"flex\",width:\"100%\",height:\"100%\",maxWidth:\"100%\",maxHeight:\"100%\",placeItems:\"center\",margin:0,padding:0,listStyleType:\"none\",textIndent:\"none\"};/* Styles */const placeholderStyles={display:\"flex\",width:\"100%\",height:\"100%\",placeContent:\"center\",placeItems:\"center\",flexDirection:\"column\",color:\"#96F\",background:\"rgba(136, 85, 255, 0.1)\",fontSize:11,overflow:\"hidden\",padding:\"20px 20px 30px 20px\"};const emojiStyles={fontSize:32,marginBottom:10};const titleStyles={margin:0,marginBottom:10,fontWeight:600,textAlign:\"center\"};const subtitleStyles={margin:0,opacity:.7,maxWidth:150,lineHeight:1.5,textAlign:\"center\"};/* Clamp function, used for fadeInset */const clamp=(num,min,max)=>Math.min(Math.max(num,min),max);const isValidNumber=value=>typeof value===\"number\"&&!isNaN(value);\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"Ticker\",\"slots\":[],\"annotations\":{\"framerIntrinsicWidth\":\"400\",\"framerSupportedLayoutWidth\":\"fixed\",\"framerDisableUnlink\":\"*\",\"framerIntrinsicHeight\":\"200\",\"framerContractVersion\":\"1\",\"framerSupportedLayoutHeight\":\"fixed\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Ticker.map", "// Generated by Framer (0c5492c)\nimport{jsx as _jsx}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,SmartComponentScopedContainer,SVG,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import Animator from\"https://framerusercontent.com/modules/gh5xmpM9GHT9MXnnMpPc/yx3Yu3CvNlklDmNPtEF9/Animator.js\";const AnimatorFonts=getFonts(Animator);const cycleOrder=[\"wi77I3Hbc\",\"PVTd9tfHR\"];const serializationHash=\"framer-18VqU\";const variantClassNames={PVTd9tfHR:\"framer-v-ida7th\",wi77I3Hbc:\"framer-v-1jz0o61\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={Animate:\"PVTd9tfHR\",Default:\"wi77I3Hbc\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"wi77I3Hbc\"};};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,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"wi77I3Hbc\",ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const sharedStyleClassNames=[];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const isDisplayed=()=>{if(baseVariant===\"PVTd9tfHR\")return true;return false;};return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(motion.div,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-1jz0o61\",className,classNames),\"data-framer-name\":\"Default\",layoutDependency:layoutDependency,layoutId:\"wi77I3Hbc\",ref:refBinding,style:{...style},...addPropertyOverrides({PVTd9tfHR:{\"data-framer-name\":\"Animate\"}},baseVariant,gestureVariant),children:isDisplayed()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-la16lk-container\",isAuthoredByUser:true,isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"Sq_BA9wUk-container\",nodeId:\"Sq_BA9wUk\",rendersWithMotion:true,scopeId:\"DY1_eAqB8\",children:/*#__PURE__*/_jsx(Animator,{animate:true,endCircle:false,from:0,height:\"100%\",id:\"Sq_BA9wUk\",layoutId:\"Sq_BA9wUk\",loopOptions:\"reverse\",pathAnimation:{delay:0,duration:.9,ease:[.44,0,.56,1],type:\"tween\"},shouldLoop:false,slots:[/*#__PURE__*/_jsx(SVG,{className:\"framer-si9hr6\",\"data-framer-name\":\"graphic\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"aZkdt35AB\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 284 23\"><path d=\"M 3 3 L 280.663 3 C 269.449 3 258.349 3.9 247.279 4.764 C 221.349 6.787 195.529 8.92 169.786 11.556 C 151.278 13.451 132.755 15.328 114.19 17.061 C 113.357 17.139 90.773 19.35 90.951 19.635 C 91.634 20.727 116.442 19.025 118.838 18.968 C 135.096 18.578 151.406 18.638 167.64 18.014\" fill=\"transparent\" stroke-width=\"5\" stroke=\"rgb(0,0,0)\" stroke-linecap=\"round\" stroke-miterlimit=\"10\" stroke-dasharray=\"\"></path></svg>',svgContentId:9148932685,withExternalLayout:true})],style:{height:\"100%\",width:\"100%\"},to:100,width:\"100%\"})})})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-18VqU.framer-o428ga, .framer-18VqU .framer-o428ga { display: block; }\",\".framer-18VqU.framer-1jz0o61 { height: 23px; overflow: visible; position: relative; width: 284px; }\",\".framer-18VqU .framer-la16lk-container { bottom: 0px; flex: none; left: 0px; position: absolute; right: 0px; top: 0px; }\",\".framer-18VqU .framer-si9hr6 { height: 23px; position: relative; width: 284px; }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 23\n * @framerIntrinsicWidth 284\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]},\"PVTd9tfHR\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerAutoSizeImages true\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n */const FramerDY1_eAqB8=withCSS(Component,css,\"framer-18VqU\");export default FramerDY1_eAqB8;FramerDY1_eAqB8.displayName=\"Highlight 3\";FramerDY1_eAqB8.defaultProps={height:23,width:284};addPropertyControls(FramerDY1_eAqB8,{variant:{options:[\"wi77I3Hbc\",\"PVTd9tfHR\"],optionTitles:[\"Default\",\"Animate\"],title:\"Variant\",type:ControlType.Enum}});addFonts(FramerDY1_eAqB8,[{explicitInter:true,fonts:[]},...AnimatorFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerDY1_eAqB8\",\"slots\":[],\"annotations\":{\"framerDisplayContentsDiv\":\"false\",\"framerIntrinsicWidth\":\"284\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"PVTd9tfHR\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerContractVersion\":\"1\",\"framerIntrinsicHeight\":\"23\",\"framerComponentViewportWidth\":\"true\",\"framerAutoSizeImages\":\"true\",\"framerImmutableVariables\":\"true\",\"framerColorSyntax\":\"true\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./DY1_eAqB8.map", "// Generated by Framer (0c5492c)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,RichText,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useOnVariantChange,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";const cycleOrder=[\"L1a3e497p\",\"bJWVGm1e2\"];const serializationHash=\"framer-6H3lL\";const variantClassNames={bJWVGm1e2:\"framer-v-32fgws\",L1a3e497p:\"framer-v-jzva30\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={bounce:.2,delay:0,duration:.4,type:\"spring\"};const animation={opacity:.001,rotate:0,scale:1,skewX:0,skewY:0,x:0,y:10};const transition2={bounce:0,delay:.075,duration:.4,type:\"spring\"};const textEffect={effect:animation,startDelay:1,tokenization:\"line\",transition:transition2,trigger:\"onMount\",type:\"appear\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={\"Variant 1\":\"L1a3e497p\",\"Variant 2\":\"bJWVGm1e2\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"L1a3e497p\"};};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,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"L1a3e497p\",ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onAppearw0ensa=activeVariantCallback(async(...args)=>{setVariant(\"bJWVGm1e2\",true);});useOnVariantChange(baseVariant,{default:onAppearw0ensa});const sharedStyleClassNames=[];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(motion.div,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-jzva30\",className,classNames),\"data-framer-name\":\"Variant 1\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"L1a3e497p\",ref:refBinding,style:{...style},...addPropertyOverrides({bJWVGm1e2:{\"data-framer-name\":\"Variant 2\"}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7RE0gU2Fucy01MDA=\",\"--framer-font-family\":'\"DM Sans\", \"DM Sans Placeholder\", sans-serif',\"--framer-font-size\":\"25px\",\"--framer-font-weight\":\"500\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(23, 23, 23))\"},children:\"I\u2019m currently a 3rd year Honours Bachelors of Interaction Design Student at Sheridan College, driven by a passion of understanding how people interact with technology. As a student, I am still discovering which parts of design interest me the most - but so far, I have loved the challenge of intersecting aesthetics and functionality in my work! \"}),/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"X19TRi1VSS1UZXh0LVJlZ3VsYXJfXw==\",\"--framer-font-family\":'\".SFNSText\", \"SFProText-Regular\", \"SFUIText-Regular\", \".SFUIText\", \"-apple-system\", \"BlinkMacSystemFont\", sans-serif',\"--framer-font-size\":\"28px\"},children:/*#__PURE__*/_jsx(motion.br,{className:\"trailing-break\"})}),/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7RE0gU2Fucy01MDA=\",\"--framer-font-family\":'\"DM Sans\", \"DM Sans Placeholder\", sans-serif',\"--framer-font-size\":\"25px\",\"--framer-font-weight\":\"500\",\"--framer-text-color\":\"var(--extracted-1iakedh, rgb(23, 23, 23))\"},children:\"I hope you enjoy browsing my portfolio and discovering my journey.  Feel free to explore and learn more about the creative process behind each project!\"})]}),className:\"framer-1vls8cx\",effect:textEffect,fonts:[\"GF;DM Sans-500\",\"__SF-UI-Text-Regular__\"],layoutDependency:layoutDependency,layoutId:\"UCwuAImmF\",style:{\"--extracted-1iakedh\":\"rgb(23, 23, 23)\",\"--extracted-r6o4lv\":\"rgb(23, 23, 23)\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-6H3lL.framer-1jaed5y, .framer-6H3lL .framer-1jaed5y { display: block; }\",\".framer-6H3lL.framer-jzva30 { height: 482px; overflow: hidden; position: relative; width: 464px; }\",\".framer-6H3lL .framer-1vls8cx { bottom: 0px; flex: none; left: 0px; position: absolute; right: 0px; top: 0px; white-space: pre-wrap; word-break: break-word; word-wrap: break-word; }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 482\n * @framerIntrinsicWidth 464\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]},\"bJWVGm1e2\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerAutoSizeImages true\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n */const Framerfb2moCuGF=withCSS(Component,css,\"framer-6H3lL\");export default Framerfb2moCuGF;Framerfb2moCuGF.displayName=\"ABOUT ME TEXT TAB\";Framerfb2moCuGF.defaultProps={height:482,width:464};addPropertyControls(Framerfb2moCuGF,{variant:{options:[\"L1a3e497p\",\"bJWVGm1e2\"],optionTitles:[\"Variant 1\",\"Variant 2\"],title:\"Variant\",type:ControlType.Enum}});addFonts(Framerfb2moCuGF,[{explicitInter:true,fonts:[{family:\"DM Sans\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/dmsans/v15/rP2tp2ywxg089UriI5-g4vlH9VoD8CmcqZG40F9JadbnoEwAkJxhS2f3ZGMZpg.woff2\",weight:\"500\"}]}],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"Framerfb2moCuGF\",\"slots\":[],\"annotations\":{\"framerIntrinsicHeight\":\"482\",\"framerComponentViewportWidth\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"bJWVGm1e2\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerDisplayContentsDiv\":\"false\",\"framerContractVersion\":\"1\",\"framerImmutableVariables\":\"true\",\"framerColorSyntax\":\"true\",\"framerAutoSizeImages\":\"true\",\"framerIntrinsicWidth\":\"464\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./fb2moCuGF.map", "// Generated by Framer (2306ade)\nimport{jsx as _jsx}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,RichText,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";const cycleOrder=[\"rxQOAdm_v\",\"GyUEmd9gF\"];const serializationHash=\"framer-3aWfu\";const variantClassNames={GyUEmd9gF:\"framer-v-r9540s\",rxQOAdm_v:\"framer-v-odkj9k\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={bounce:.2,delay:0,duration:.4,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??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\":\"rxQOAdm_v\",\"Variant 2\":\"GyUEmd9gF\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"rxQOAdm_v\"};};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,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"rxQOAdm_v\",ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const sharedStyleClassNames=[];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(motion.div,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-odkj9k\",className,classNames),\"data-framer-name\":\"Variant 1\",layoutDependency:layoutDependency,layoutId:\"rxQOAdm_v\",ref:refBinding,style:{...style},...addPropertyOverrides({GyUEmd9gF:{\"data-framer-name\":\"Variant 2\"}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7RE0gTW9uby01MDA=\",\"--framer-font-family\":'\"DM Mono\", monospace',\"--framer-font-weight\":\"500\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(94, 94, 94))\"},children:\"DATA VISUALIZATION\"})}),className:\"framer-e20k77\",fonts:[\"GF;DM Mono-500\"],layoutDependency:layoutDependency,layoutId:\"EonlP5uS8\",style:{\"--extracted-r6o4lv\":\"rgb(94, 94, 94)\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},variants:{GyUEmd9gF:{\"--extracted-r6o4lv\":\"rgb(0, 186, 3)\"}},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({GyUEmd9gF:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7RE0gTW9uby01MDA=\",\"--framer-font-family\":'\"DM Mono\", monospace',\"--framer-font-weight\":\"500\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(0, 186, 3))\"},children:\"DATA VISUALIZATION\"})})}},baseVariant,gestureVariant)})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-3aWfu.framer-bm8g9a, .framer-3aWfu .framer-bm8g9a { display: block; }\",\".framer-3aWfu.framer-odkj9k { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: 19px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-3aWfu .framer-e20k77 { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 19\n * @framerIntrinsicWidth 173\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"auto\",\"fixed\"]},\"GyUEmd9gF\":{\"layout\":[\"auto\",\"fixed\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerAutoSizeImages true\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n */const FramerLNCdefxQH=withCSS(Component,css,\"framer-3aWfu\");export default FramerLNCdefxQH;FramerLNCdefxQH.displayName=\"TAG\";FramerLNCdefxQH.defaultProps={height:19,width:173};addPropertyControls(FramerLNCdefxQH,{variant:{options:[\"rxQOAdm_v\",\"GyUEmd9gF\"],optionTitles:[\"Variant 1\",\"Variant 2\"],title:\"Variant\",type:ControlType.Enum}});addFonts(FramerLNCdefxQH,[{explicitInter:true,fonts:[{family:\"DM Mono\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/dmmono/v14/aFTR7PB1QTsUX8KYvumzIYGnbKX9Rlk.woff2\",weight:\"500\"}]}],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerLNCdefxQH\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\",\"framerIntrinsicWidth\":\"173\",\"framerIntrinsicHeight\":\"19\",\"framerImmutableVariables\":\"true\",\"framerAutoSizeImages\":\"true\",\"framerComponentViewportWidth\":\"true\",\"framerColorSyntax\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"fixed\\\"]},\\\"GyUEmd9gF\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"fixed\\\"]}}}\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./LNCdefxQH.map", "// Generated by Framer (2306ade)\nimport{jsx as _jsx}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,RichText,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";const cycleOrder=[\"TfBsm4V7O\",\"kv9KKft09\"];const serializationHash=\"framer-OPisX\";const variantClassNames={kv9KKft09:\"framer-v-1x4pjq2\",TfBsm4V7O:\"framer-v-182hmsb\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={bounce:.2,delay:0,duration:.4,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??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\":\"TfBsm4V7O\",\"Variant 2\":\"kv9KKft09\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"TfBsm4V7O\"};};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,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"TfBsm4V7O\",ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const sharedStyleClassNames=[];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(motion.div,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-182hmsb\",className,classNames),\"data-framer-name\":\"Variant 1\",layoutDependency:layoutDependency,layoutId:\"TfBsm4V7O\",ref:refBinding,style:{...style},...addPropertyOverrides({kv9KKft09:{\"data-framer-name\":\"Variant 2\"}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7RE0gTW9uby01MDA=\",\"--framer-font-family\":'\"DM Mono\", monospace',\"--framer-font-weight\":\"500\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(94, 94, 94))\"},children:\"PROTOTYPE\"})}),className:\"framer-923mul\",fonts:[\"GF;DM Mono-500\"],layoutDependency:layoutDependency,layoutId:\"qnnwqTkgb\",style:{\"--extracted-r6o4lv\":\"rgb(94, 94, 94)\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},variants:{kv9KKft09:{\"--extracted-r6o4lv\":\"rgb(23, 196, 0)\"}},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({kv9KKft09:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7RE0gTW9uby01MDA=\",\"--framer-font-family\":'\"DM Mono\", monospace',\"--framer-font-weight\":\"500\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(23, 196, 0))\"},children:\"PROTOTYPE\"})})}},baseVariant,gestureVariant)})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-OPisX.framer-1b4li25, .framer-OPisX .framer-1b4li25 { display: block; }\",\".framer-OPisX.framer-182hmsb { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-OPisX .framer-923mul { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 19\n * @framerIntrinsicWidth 86.5\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"auto\",\"auto\"]},\"kv9KKft09\":{\"layout\":[\"auto\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerAutoSizeImages true\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n */const FramerMyg2D10IU=withCSS(Component,css,\"framer-OPisX\");export default FramerMyg2D10IU;FramerMyg2D10IU.displayName=\"tag\";FramerMyg2D10IU.defaultProps={height:19,width:86.5};addPropertyControls(FramerMyg2D10IU,{variant:{options:[\"TfBsm4V7O\",\"kv9KKft09\"],optionTitles:[\"Variant 1\",\"Variant 2\"],title:\"Variant\",type:ControlType.Enum}});addFonts(FramerMyg2D10IU,[{explicitInter:true,fonts:[{family:\"DM Mono\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/dmmono/v14/aFTR7PB1QTsUX8KYvumzIYGnbKX9Rlk.woff2\",weight:\"500\"}]}],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerMyg2D10IU\",\"slots\":[],\"annotations\":{\"framerColorSyntax\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerComponentViewportWidth\":\"true\",\"framerAutoSizeImages\":\"true\",\"framerContractVersion\":\"1\",\"framerImmutableVariables\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"kv9KKft09\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]}}}\",\"framerIntrinsicHeight\":\"19\",\"framerIntrinsicWidth\":\"86.5\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Myg2D10IU.map", "// Generated by Framer (ab692b1)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,SVG,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useOnVariantChange,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";const cycleOrder=[\"jpvBJhpfh\",\"BzbDfHX2d\"];const serializationHash=\"framer-wG6yz\";const variantClassNames={BzbDfHX2d:\"framer-v-4elhab\",jpvBJhpfh:\"framer-v-1u0y4gv\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={\"Variant 1\":\"jpvBJhpfh\",\"Variant 2\":\"BzbDfHX2d\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"jpvBJhpfh\"};};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,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"jpvBJhpfh\",ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onAppear1aur8yp=activeVariantCallback(async(...args)=>{await delay(()=>setVariant(\"BzbDfHX2d\"),200);});const onAppear1adafnj=activeVariantCallback(async(...args)=>{await delay(()=>setVariant(\"jpvBJhpfh\"),200);});useOnVariantChange(baseVariant,{BzbDfHX2d:onAppear1adafnj,default:onAppear1aur8yp});const sharedStyleClassNames=[];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const isDisplayed=()=>{if(baseVariant===\"BzbDfHX2d\")return true;return false;};const isDisplayed1=()=>{if(baseVariant===\"BzbDfHX2d\")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__*/_jsxs(motion.div,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-1u0y4gv\",className,classNames),\"data-framer-name\":\"Variant 1\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"jpvBJhpfh\",ref:refBinding,style:{...style},...addPropertyOverrides({BzbDfHX2d:{\"data-framer-name\":\"Variant 2\"}},baseVariant,gestureVariant),children:[isDisplayed()&&/*#__PURE__*/_jsx(SVG,{className:\"framer-antrpj\",\"data-framer-name\":\"graphic\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"IqaIEm0aP\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 220 233\"><path d=\"M 113.664 57.811 L 113.664 77.154 C 113.664 79.57 115.047 91.863 112.932 92.92 M 116.59 148.51 L 116.59 170.087 C 116.59 172.32 117.672 181.249 115.858 182.156 M 131.218 136.807 C 132.645 138.075 134.484 138.982 135.972 140.139 C 137.346 141.207 137.81 143.394 139.264 144.121 M 144.384 121.447 L 164.133 121.447 C 166.167 121.447 173.528 120.487 174.373 122.178 M 88.795 119.252 L 73.028 119.252 C 69.511 119.252 63.891 119.716 61 117.789 M 98.303 100.235 C 98.029 97.769 94.519 94.685 92.452 93.652 M 135.607 101.698 C 138.388 101.389 141.225 99.254 143.653 98.04 M 94.646 133.881 C 94.441 135.525 89.404 141.48 88.064 141.927 M 114.396 117.789 C 116.098 117.789 123.297 118.899 121.548 115.595 C 120.166 112.984 115.571 111.783 112.933 111.938 C 110.415 112.086 113.19 120.864 116.428 117.627 C 118.521 115.533 114.137 115.887 115.534 116.286 C 117.657 116.893 118.496 115.894 117.321 114.132 M 207.03 47.811 L 207 66.811 M 197 57.438 L 217.251 57.438 M 18.906 178.825 C 18.906 175.922 17 176.47 17 174.06 C 17 172.864 18.616 176.339 18.906 176.919 M 146.701 6.73 C 152.852 6.73 146.701 -0.987 146.701 5.778 M 25.134 21.811 L 25.134 74.032 M 10.263 26.999 C 10.981 27.159 11.796 28.489 12.299 28.959 C 16.027 32.435 19.351 36.309 22.617 40.217 C 27.604 46.187 32.195 52.421 36.815 58.662 C 38.67 61.167 40.184 63.986 42.08 66.424 C 42.481 66.94 44.14 69.494 43.809 68.499\" fill=\"transparent\" stroke-width=\"5\" stroke=\"rgb(0,0,0)\" stroke-linecap=\"round\" stroke-miterlimit=\"10\" stroke-dasharray=\"\"></path><path d=\"M 4.383 65.732 C 8.313 61.572 11.425 56.493 15.104 52.091 C 21.62 44.294 28.727 37.181 35.931 30.034 C 38.055 27.927 40.258 25.933 42.425 23.886 C 42.567 23.753 44.038 22.503 43.463 22.503\" fill=\"transparent\" stroke-width=\"5\" stroke=\"rgb(0,0,0)\" stroke-linecap=\"round\" stroke-miterlimit=\"10\" stroke-dasharray=\"\"></path><path d=\"M 3 43.599 L 47.69 43.599 C 48.784 43.599 48.787 43.049 49.342 42.215 M 185.6 186.615 L 185.6 216.818 C 185.6 217.957 186.417 224.422 185.254 225.003 M 169 205.636 L 207.388 205.636\" fill=\"transparent\" stroke-width=\"5\" stroke=\"rgb(0,0,0)\" stroke-linecap=\"round\" stroke-miterlimit=\"10\" stroke-dasharray=\"\"></path><path d=\"M 174.188 189.036 C 174.254 189.704 174.67 190.26 175.033 190.804 C 177.475 194.467 180.331 197.794 183.179 201.14 C 188.578 207.484 193.952 213.976 199.741 219.969 C 202.104 222.415 204.741 225.127 206.485 228.077 C 206.732 228.496 207.388 229.671 207.388 229.499\" fill=\"transparent\" stroke-width=\"5\" stroke=\"rgb(0,0,0)\" stroke-linecap=\"round\" stroke-miterlimit=\"10\" stroke-dasharray=\"\"></path><path d=\"M 170.037 223.62 C 170.093 223.01 170.35 222.517 170.69 222.006 C 172.298 219.595 174.168 217.341 175.82 214.955 C 181.106 207.319 186.097 199.323 192.209 192.302 C 194.491 189.681 196.669 186.959 199.126 184.502 C 199.483 184.144 200.955 182.811 200.817 182.811\" fill=\"transparent\" stroke-width=\"5\" stroke=\"rgb(0,0,0)\" stroke-linecap=\"round\" stroke-miterlimit=\"10\" stroke-dasharray=\"\"></path></svg>',svgContentId:10332268940,withExternalLayout:true,...addPropertyOverrides({BzbDfHX2d:{svgContentId:8912107266}},baseVariant,gestureVariant)}),isDisplayed1()&&/*#__PURE__*/_jsx(SVG,{className:\"framer-32fth8\",\"data-framer-name\":\"graphic\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"SmiEdixry\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 219 234\"><path d=\"M 26.4 23.162 L 26.4 40.52 C 26.4 46.008 27.2 52.206 26.366 57.631 C 25.472 63.441 25.136 69.071 25.136 75.024\" fill=\"transparent\" stroke-width=\"5\" stroke=\"rgb(0,0,0)\" stroke-linecap=\"round\" stroke-miterlimit=\"10\" stroke-dasharray=\"\"></path><path d=\"M 3 42.136 C 13.967 42.136 25.041 42.768 35.887 42.768 C 40.993 42.768 47.841 41.788 52.331 44.033\" fill=\"transparent\" stroke-width=\"5\" stroke=\"rgb(0,0,0)\" stroke-linecap=\"round\" stroke-miterlimit=\"10\" stroke-dasharray=\"\"></path><path d=\"M 13.12 25.692 C 13.365 28.15 17.559 32.178 19.127 34.23 C 21.896 37.85 24.805 41.355 27.525 45.017 C 29.03 47.043 31.145 49.331 32.128 51.622 C 32.811 53.216 34.413 56.534 35.888 57.455 C 37.128 58.23 37.426 60.345 38.136 61.46 C 39.179 63.1 40.567 64.426 41.439 66.168 C 42.039 67.368 47.652 73.38 45.374 69.963\" fill=\"transparent\" stroke-width=\"5\" stroke=\"rgb(0,0,0)\" stroke-linecap=\"round\" stroke-miterlimit=\"10\" stroke-dasharray=\"\"></path><path d=\"M 4.265 66.8 C 8.711 66.245 12.139 59.166 15.403 56.612 C 21.79 51.612 28.343 46.168 33.568 39.992 C 36.584 36.429 40.7 30.459 44.742 28.082 C 47.577 26.414 49.802 23.133 49.802 20 M 186.409 185.068 L 186.409 231.236 M 170.598 205.306 L 210.934 205.306 C 212.352 205.306 216.227 206.078 214.869 204.041\" fill=\"transparent\" stroke-width=\"5\" stroke=\"rgb(0,0,0)\" stroke-linecap=\"round\" stroke-miterlimit=\"10\" stroke-dasharray=\"\"></path><path d=\"M 171.863 189.495 C 174.046 189.768 177.284 195.187 178.503 197.084 C 180.568 200.295 184.46 202.509 187.323 204.99 C 190.544 207.782 193.513 210.68 196.528 213.528 C 199.657 216.483 202.597 219.597 205.699 222.698 C 206.817 223.817 207.913 225.879 209.177 226.669 C 210.227 227.325 211.707 230.788 211.707 228.707\" fill=\"transparent\" stroke-width=\"5\" stroke=\"rgb(0,0,0)\" stroke-linecap=\"round\" stroke-miterlimit=\"10\" stroke-dasharray=\"\"></path><path d=\"M 169.333 224.28 C 172.769 223.898 177.382 213.586 178.82 210.998 C 180.978 207.113 185.237 202.586 188.306 199.298 C 191.324 196.065 193.374 191.281 196.844 188.582 C 199.341 186.64 201.453 182.606 204.117 181.273 M 21.415 176.934 C 21.415 175.807 21.325 173.902 20.15 173.28 C 19.368 172.866 16.726 172.749 17.023 174.088 C 17.313 175.389 19.396 175.67 20.467 175.67 C 22.392 175.67 20.232 175.71 20.15 175.67 M 147.804 6.338 C 147.804 4.73 144.9 1.165 144.045 4.16 C 143.406 6.394 149.782 6.178 150.334 5.073 M 115.575 92.099 L 115.575 71.088 C 115.575 65.578 117.473 60.289 117.473 54.785 M 121.267 149.651 L 121.267 173.543 C 121.267 178.646 119.37 183.317 119.37 188.23 M 133.284 138.267 C 135.042 138.267 138.466 137.907 139.011 139.813 C 139.463 141.396 142.26 143.449 143.403 144.592 M 97.867 133.208 C 94.826 135.911 91.581 138.19 89.645 142.062 M 98.5 99.056 C 98.5 95.283 96.248 93.921 94.705 90.834 M 139.608 102.218 C 144.956 102.218 149.805 98.793 154.154 95.893 M 144.035 119.926 L 165.819 119.926 C 168.039 119.926 180.356 121.282 181.349 119.294 M 90.278 119.294 L 71.62 119.294 C 69.69 119.294 61.97 120.229 61.185 118.661 M 119.37 111.072 C 119.37 112.786 118.791 115.407 120.143 116.623 C 121.638 117.969 125.062 119.191 125.062 116.413 C 125.062 113.573 124.546 111.766 121.584 111.107 C 118.81 110.491 117.473 110.863 117.473 113.602 M 209.177 46.563 L 209.177 60.476 M 199.69 57.314 C 205.017 57.314 210.497 56.682 215.502 56.682\" fill=\"transparent\" stroke-width=\"5\" stroke=\"rgb(0,0,0)\" stroke-linecap=\"round\" stroke-miterlimit=\"10\" stroke-dasharray=\"\"></path></svg>',svgContentId:9441927460,withExternalLayout:true})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-wG6yz.framer-1gzn16u, .framer-wG6yz .framer-1gzn16u { display: block; }\",\".framer-wG6yz.framer-1u0y4gv { height: 233px; overflow: visible; position: relative; width: 220px; }\",\".framer-wG6yz .framer-antrpj { flex: none; height: 233px; left: 0px; position: absolute; top: 0px; width: 220px; }\",\".framer-wG6yz .framer-32fth8 { bottom: -2px; flex: none; height: 234px; left: -2px; position: absolute; width: 219px; }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 233\n * @framerIntrinsicWidth 220\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]},\"BzbDfHX2d\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramervcWhJRANm=withCSS(Component,css,\"framer-wG6yz\");export default FramervcWhJRANm;FramervcWhJRANm.displayName=\"Sparkles\";FramervcWhJRANm.defaultProps={height:233,width:220};addPropertyControls(FramervcWhJRANm,{variant:{options:[\"jpvBJhpfh\",\"BzbDfHX2d\"],optionTitles:[\"Variant 1\",\"Variant 2\"],title:\"Variant\",type:ControlType.Enum}});addFonts(FramervcWhJRANm,[{explicitInter:true,fonts:[]}],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramervcWhJRANm\",\"slots\":[],\"annotations\":{\"framerDisplayContentsDiv\":\"false\",\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicWidth\":\"220\",\"framerIntrinsicHeight\":\"233\",\"framerImmutableVariables\":\"true\",\"framerContractVersion\":\"1\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"BzbDfHX2d\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./vcWhJRANm.map", "// Generated by Framer (99f3353)\nimport{jsx as _jsx}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,RichText,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";const cycleOrder=[\"jcWb_gp7h\",\"i_ZRLEYMt\"];const serializationHash=\"framer-ZE094\";const variantClassNames={i_ZRLEYMt:\"framer-v-quechn\",jcWb_gp7h:\"framer-v-1f359zr\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={bounce:.2,delay:0,duration:.4,type:\"spring\"};const transformTemplate1=(_,t)=>`translateY(-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 humanReadableVariantMap={\"Variant 1\":\"jcWb_gp7h\",\"Variant 2\":\"i_ZRLEYMt\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"jcWb_gp7h\"};};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,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"jcWb_gp7h\",ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onMouseEntere92ipc=activeVariantCallback(async(...args)=>{setGestureState({isHovered:true});setVariant(\"i_ZRLEYMt\");});const onMouseLeave1sophbf=activeVariantCallback(async(...args)=>{setGestureState({isHovered:false});setVariant(\"jcWb_gp7h\");});const sharedStyleClassNames=[];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(motion.div,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-1f359zr\",className,classNames),\"data-framer-name\":\"Variant 1\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"jcWb_gp7h\",onMouseEnter:onMouseEntere92ipc,onMouseLeave:onMouseLeave1sophbf,ref:refBinding,style:{...style},...addPropertyOverrides({i_ZRLEYMt:{\"data-framer-name\":\"Variant 2\"}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7RE0gTW9uby01MDA=\",\"--framer-font-family\":'\"DM Mono\", monospace',\"--framer-font-weight\":\"500\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(94, 94, 94))\"},children:\"USER RESEARCH\"})}),className:\"framer-67j4st\",fonts:[\"GF;DM Mono-500\"],layoutDependency:layoutDependency,layoutId:\"VZiGQMoCv\",style:{\"--extracted-r6o4lv\":\"rgb(94, 94, 94)\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},transformTemplate:transformTemplate1,variants:{i_ZRLEYMt:{\"--extracted-r6o4lv\":\"var(--token-f27a349e-aa01-41cb-bc4e-c9cbb956b2da, rgb(0, 110, 207))\"}},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({i_ZRLEYMt:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7RE0gTW9uby01MDA=\",\"--framer-font-family\":'\"DM Mono\", monospace',\"--framer-font-weight\":\"500\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-f27a349e-aa01-41cb-bc4e-c9cbb956b2da, rgb(0, 110, 207)))\"},children:\"USER RESEARCH\"})})}},baseVariant,gestureVariant)})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-ZE094.framer-1xhbeid, .framer-ZE094 .framer-1xhbeid { display: block; }\",\".framer-ZE094.framer-1f359zr { height: 19px; overflow: hidden; position: relative; width: 125px; }\",\".framer-ZE094 .framer-67j4st { flex: none; height: auto; left: 0px; position: absolute; top: 47%; white-space: pre; width: auto; }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 19\n * @framerIntrinsicWidth 125\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]},\"i_ZRLEYMt\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerAutoSizeImages true\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n */const FramerW7l1Uqv3H=withCSS(Component,css,\"framer-ZE094\");export default FramerW7l1Uqv3H;FramerW7l1Uqv3H.displayName=\"highlight tags\";FramerW7l1Uqv3H.defaultProps={height:19,width:125};addPropertyControls(FramerW7l1Uqv3H,{variant:{options:[\"jcWb_gp7h\",\"i_ZRLEYMt\"],optionTitles:[\"Variant 1\",\"Variant 2\"],title:\"Variant\",type:ControlType.Enum}});addFonts(FramerW7l1Uqv3H,[{explicitInter:true,fonts:[{family:\"DM Mono\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/dmmono/v14/aFTR7PB1QTsUX8KYvumzIYGnbKX9Rlk.woff2\",weight:\"500\"}]}],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerW7l1Uqv3H\",\"slots\":[],\"annotations\":{\"framerImmutableVariables\":\"true\",\"framerAutoSizeImages\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerIntrinsicHeight\":\"19\",\"framerComponentViewportWidth\":\"true\",\"framerContractVersion\":\"1\",\"framerIntrinsicWidth\":\"125\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"i_ZRLEYMt\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerColorSyntax\":\"true\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./W7l1Uqv3H.map", "// Generated by Framer (99f3353)\nimport{jsx as _jsx}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,RichText,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";const cycleOrder=[\"MVAstTkOV\",\"T1PkkDA3m\"];const serializationHash=\"framer-QIsvd\";const variantClassNames={MVAstTkOV:\"framer-v-alu8gt\",T1PkkDA3m:\"framer-v-10m8ymz\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={bounce:.2,delay:0,duration:.4,type:\"spring\"};const transformTemplate1=(_,t)=>`translateY(-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 humanReadableVariantMap={\"Variant 1\":\"MVAstTkOV\",\"Variant 2\":\"T1PkkDA3m\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"MVAstTkOV\"};};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,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"MVAstTkOV\",ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onMouseEnter3gg823=activeVariantCallback(async(...args)=>{setGestureState({isHovered:true});setVariant(\"T1PkkDA3m\");});const onMouseLeavebesw1v=activeVariantCallback(async(...args)=>{setGestureState({isHovered:false});setVariant(\"MVAstTkOV\");});const sharedStyleClassNames=[];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(motion.div,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-alu8gt\",className,classNames),\"data-framer-name\":\"Variant 1\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"MVAstTkOV\",onMouseEnter:onMouseEnter3gg823,onMouseLeave:onMouseLeavebesw1v,ref:refBinding,style:{...style},...addPropertyOverrides({T1PkkDA3m:{\"data-framer-name\":\"Variant 2\"}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7RE0gTW9uby01MDA=\",\"--framer-font-family\":'\"DM Mono\", monospace',\"--framer-font-weight\":\"500\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(94, 94, 94))\"},children:\"PROTOTYPE\"})}),className:\"framer-zaxyad\",fonts:[\"GF;DM Mono-500\"],layoutDependency:layoutDependency,layoutId:\"PGWqKPvzS\",style:{\"--extracted-r6o4lv\":\"rgb(94, 94, 94)\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},transformTemplate:transformTemplate1,variants:{T1PkkDA3m:{\"--extracted-r6o4lv\":\"var(--token-f27a349e-aa01-41cb-bc4e-c9cbb956b2da, rgb(0, 110, 207))\"}},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({T1PkkDA3m:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7RE0gTW9uby01MDA=\",\"--framer-font-family\":'\"DM Mono\", monospace',\"--framer-font-weight\":\"500\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-f27a349e-aa01-41cb-bc4e-c9cbb956b2da, rgb(0, 110, 207)))\"},children:\"PROTOTYPE\"})})}},baseVariant,gestureVariant)})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-QIsvd.framer-1k0nhb7, .framer-QIsvd .framer-1k0nhb7 { display: block; }\",\".framer-QIsvd.framer-alu8gt { height: 19px; overflow: hidden; position: relative; width: 87px; }\",\".framer-QIsvd .framer-zaxyad { flex: none; height: auto; left: 0px; position: absolute; top: 47%; white-space: pre; width: auto; }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 19\n * @framerIntrinsicWidth 87\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]},\"T1PkkDA3m\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerAutoSizeImages true\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n */const FramerzXIyEGBrP=withCSS(Component,css,\"framer-QIsvd\");export default FramerzXIyEGBrP;FramerzXIyEGBrP.displayName=\"tag\";FramerzXIyEGBrP.defaultProps={height:19,width:87};addPropertyControls(FramerzXIyEGBrP,{variant:{options:[\"MVAstTkOV\",\"T1PkkDA3m\"],optionTitles:[\"Variant 1\",\"Variant 2\"],title:\"Variant\",type:ControlType.Enum}});addFonts(FramerzXIyEGBrP,[{explicitInter:true,fonts:[{family:\"DM Mono\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/dmmono/v14/aFTR7PB1QTsUX8KYvumzIYGnbKX9Rlk.woff2\",weight:\"500\"}]}],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerzXIyEGBrP\",\"slots\":[],\"annotations\":{\"framerAutoSizeImages\":\"true\",\"framerIntrinsicWidth\":\"87\",\"framerContractVersion\":\"1\",\"framerIntrinsicHeight\":\"19\",\"framerImmutableVariables\":\"true\",\"framerColorSyntax\":\"true\",\"framerComponentViewportWidth\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"T1PkkDA3m\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerDisplayContentsDiv\":\"false\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./zXIyEGBrP.map", "import{jsx as _jsx}from\"react/jsx-runtime\";import*as React from\"react\";import{motion,useAnimation,useInView}from\"framer-motion\";export function AnimatedLine(props){const ref=React.useRef(null);const controls=useAnimation();const inView=useInView(ref,{once:true});React.useEffect(()=>{if(inView){controls.start({width:\"100%\",transition:{duration:1,ease:\"easeOut\"}});}},[inView]);return /*#__PURE__*/_jsx(motion.div,{ref:ref,initial:{width:0},animate:controls,style:{height:4,background:\"black\",width:\"0%\",...props.style}});}\nexport const __FramerMetadata__ = {\"exports\":{\"AnimatedLine\":{\"type\":\"reactComponent\",\"name\":\"AnimatedLine\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Line_3.map", "// Generated by Framer (99f3353)\nimport{fontStore}from\"framer\";fontStore.loadFonts([]);export const fonts=[{explicitInter:true,fonts:[]}];export const css=[\".framer-rpsE9 .framer-styles-preset-hf08jf:not(.rich-text-wrapper), .framer-rpsE9 .framer-styles-preset-hf08jf.rich-text-wrapper a { --framer-link-current-text-color: #111111; --framer-link-current-text-decoration: none; --framer-link-hover-text-color: #0088ff; --framer-link-hover-text-decoration: underline; --framer-link-text-color: var(--token-89ae68e7-3871-4f62-9f08-6dc31426c705, #171717); --framer-link-text-decoration: none; }\"];export const className=\"framer-rpsE9\";\nexport const __FramerMetadata__ = {\"exports\":{\"className\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"fonts\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"css\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (3d3d426)\nimport{fontStore}from\"framer\";fontStore.loadFonts([]);export const fonts=[{explicitInter:true,fonts:[]}];export const css=[\".framer-5m9Yk .framer-styles-preset-ke0ckq:not(.rich-text-wrapper), .framer-5m9Yk .framer-styles-preset-ke0ckq.rich-text-wrapper a { --framer-link-current-text-color: #111111; --framer-link-current-text-decoration: underline; --framer-link-hover-text-color: var(--token-abcf37f8-7b28-482e-bc88-93355f94d6b1, #e55681); --framer-link-hover-text-decoration: underline; --framer-link-text-color: var(--token-89ae68e7-3871-4f62-9f08-6dc31426c705, #171717); --framer-link-text-decoration: none; }\"];export const className=\"framer-5m9Yk\";\nexport const __FramerMetadata__ = {\"exports\":{\"css\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"className\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"fonts\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (99f3353)\nimport{fontStore}from\"framer\";fontStore.loadFonts([]);export const fonts=[{explicitInter:true,fonts:[]}];export const css=[\".framer-B99NZ .framer-styles-preset-tx8ip8:not(.rich-text-wrapper), .framer-B99NZ .framer-styles-preset-tx8ip8.rich-text-wrapper a { --framer-link-current-text-color: var(--token-89ae68e7-3871-4f62-9f08-6dc31426c705, #171717); --framer-link-current-text-decoration: underline; --framer-link-hover-text-color: var(--token-8ded2f94-f12a-4fab-9633-5c4921f71c32, #e60000); --framer-link-hover-text-decoration: underline; --framer-link-text-color: var(--token-89ae68e7-3871-4f62-9f08-6dc31426c705, #171717); --framer-link-text-decoration: none; }\"];export const className=\"framer-B99NZ\";\nexport const __FramerMetadata__ = {\"exports\":{\"className\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"fonts\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"css\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (2306ade)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,ComponentViewportProvider,Container,cx,GeneratedComponentContext,getFonts,getFontsFromSharedStyle,getLoadingLazyAtYPosition,Image,Link,PropertyOverrides,RichText,SVG,useComponentViewport,useCustomCursors,useHydratedBreakpointVariants,useIsOnFramerCanvas,useLocaleInfo,useRouteElementId,withCSS,withFX,withVariantAppearEffect}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/LHz3bw67SqHRmnCKTlE6/Ticker.js\";import Bottom from\"#framer/local/canvasComponent/aaCnBMhHS/aaCnBMhHS.js\";import Highlight3 from\"#framer/local/canvasComponent/DY1_eAqB8/DY1_eAqB8.js\";import Tag5 from\"#framer/local/canvasComponent/etZUh67Ht/etZUh67Ht.js\";import Navigation from\"#framer/local/canvasComponent/F2oFcNQ_x/F2oFcNQ_x.js\";import ABOUTMETEXTTAB from\"#framer/local/canvasComponent/fb2moCuGF/fb2moCuGF.js\";import TAG from\"#framer/local/canvasComponent/LNCdefxQH/LNCdefxQH.js\";import Tag2 from\"#framer/local/canvasComponent/mUdNGsMgg/mUdNGsMgg.js\";import Tag6 from\"#framer/local/canvasComponent/Myg2D10IU/Myg2D10IU.js\";import Sparkles2 from\"#framer/local/canvasComponent/NpsV_Cycd/NpsV_Cycd.js\";import Tag1 from\"#framer/local/canvasComponent/RT5nUINO_/RT5nUINO_.js\";import Tag3 from\"#framer/local/canvasComponent/s3ZZdJKyd/s3ZZdJKyd.js\";import Tag4 from\"#framer/local/canvasComponent/vC8I8F1xc/vC8I8F1xc.js\";import Sparkles from\"#framer/local/canvasComponent/vcWhJRANm/vcWhJRANm.js\";import HighlightTags from\"#framer/local/canvasComponent/W7l1Uqv3H/W7l1Uqv3H.js\";import Logos from\"#framer/local/canvasComponent/YfBwVfT7Z/YfBwVfT7Z.js\";import Tag from\"#framer/local/canvasComponent/zXIyEGBrP/zXIyEGBrP.js\";import{AnimatedLine}from\"#framer/local/codeFile/kKJY0vK/Line_3.js\";import*as sharedStyle1 from\"#framer/local/css/deNhHQehC/deNhHQehC.js\";import*as sharedStyle from\"#framer/local/css/i_CVvNM64/i_CVvNM64.js\";import*as sharedStyle4 from\"#framer/local/css/JRSYUHtY_/JRSYUHtY_.js\";import*as sharedStyle3 from\"#framer/local/css/vwd1WaVIb/vwd1WaVIb.js\";import*as sharedStyle2 from\"#framer/local/css/XioHVhkYD/XioHVhkYD.js\";import metadataProvider from\"#framer/local/webPageMetadata/augiA20Il/augiA20Il.js\";const NavigationFonts=getFonts(Navigation);const Sparkles2Fonts=getFonts(Sparkles2);const ABOUTMETEXTTABFonts=getFonts(ABOUTMETEXTTAB);const SparklesFonts=getFonts(Sparkles);const Highlight3Fonts=getFonts(Highlight3);const Highlight3WithVariantAppearEffect=withVariantAppearEffect(Highlight3);const TickerFonts=getFonts(Ticker);const MotionDivWithFX=withFX(motion.div);const AnimatedLineFonts=getFonts(AnimatedLine);const Ticker1Fonts=getFonts(Ticker1);const HighlightTagsFonts=getFonts(HighlightTags);const TagFonts=getFonts(Tag);const MotionAWithFX=withFX(motion.a);const Tag1Fonts=getFonts(Tag1);const Tag2Fonts=getFonts(Tag2);const Tag3Fonts=getFonts(Tag3);const Tag4Fonts=getFonts(Tag4);const Tag5Fonts=getFonts(Tag5);const Tag6Fonts=getFonts(Tag6);const TAGFonts=getFonts(TAG);const LogosFonts=getFonts(Logos);const BottomFonts=getFonts(Bottom);const breakpoints={D0KjT8elo:\"(max-width: 809px)\",rG6xd9Kgi:\"(min-width: 810px) and (max-width: 1199px)\",WQLkyLRf1:\"(min-width: 1200px)\"};const isBrowser=()=>typeof document!==\"undefined\";const serializationHash=\"framer-oFTql\";const variantClassNames={D0KjT8elo:\"framer-v-10qk593\",rG6xd9Kgi:\"framer-v-na210q\",WQLkyLRf1:\"framer-v-72rtr7\"};const animation={opacity:.001,rotate:0,rotateX:0,rotateY:90,scale:1,skewX:0,skewY:0,x:0,y:0};const transition1={bounce:0,delay:.05,duration:.4,type:\"spring\"};const textEffect={effect:animation,tokenization:\"character\",transition:transition1,trigger:\"onMount\",type:\"appear\"};const animation1={opacity:.001,rotate:0,scale:1,skewX:0,skewY:0,x:0,y:10};const transition2={bounce:0,delay:.075,duration:.4,type:\"spring\"};const textEffect1={effect:animation1,tokenization:\"word\",transition:transition2,trigger:\"onMount\",type:\"appear\"};const transition3={bounce:.25,delay:0,duration:.45,type:\"spring\"};const animation2={boxShadow:\"0px 0.24145061431045178px 0.24145061431045178px -1.25px rgba(255, 255, 255, 0.13), 0px 2px 2px -2.5px rgba(255, 255, 255, 0.13)\",opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1.1,skewX:0,skewY:0,transition:transition3};const animation3={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0};const transition4={bounce:.2,delay:0,duration:.4,type:\"spring\"};const animation4={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition4,x:0,y:0};const textEffect2={effect:animation,startDelay:1,tokenization:\"line\",transition:transition1,trigger:\"onMount\",type:\"appear\"};const transformTemplate1=(_,t)=>`translateX(-50%) ${t}`;const transformTemplate2=(_,t)=>`translateY(-50%) ${t}`;const transformTemplate3=(_,t)=>`translate(-50%, -50%) ${t}`;const textEffect3={effect:animation,tokenization:\"character\",transition:transition1,trigger:\"onInView\",type:\"appear\"};const animation5={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:150};const animation6={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition4,x:0,y:150};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:\"D0KjT8elo\",Tablet:\"rG6xd9Kgi\"};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];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const elementId=useRouteElementId(\"pVb6xxYin\");const ref1=React.useRef(null);const isDisplayed=()=>{if(!isBrowser())return true;if([\"rG6xd9Kgi\",\"D0KjT8elo\"].includes(baseVariant))return false;return true;};const isDisplayed1=()=>{if(!isBrowser())return true;if([\"rG6xd9Kgi\",\"D0KjT8elo\"].includes(baseVariant))return true;return false;};const elementId1=useRouteElementId(\"nIoKdg9kl\");const ref2=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-e11d65ff-264b-4ee0-b1c0-883dfb23f7f4, rgb(245, 245, 245)); }\"}),/*#__PURE__*/_jsxs(motion.div,{...restProps,className:cx(scopingClassNames,\"framer-72rtr7\",className),ref:refBinding,style:{...style},children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:89,width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-tbyo3o-container\",nodeId:\"sJYrYz27q\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{D0KjT8elo:{variant:\"DEmtNnyCl\"}},children:/*#__PURE__*/_jsx(Navigation,{height:\"100%\",id:\"sJYrYz27q\",layoutId:\"sJYrYz27q\",style:{height:\"100%\",width:\"100%\"},variant:\"J6jwhpbcs\",width:\"100%\"})})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1h5ym87\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-128h91j\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-cn5cjr\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{D0KjT8elo:{y:undefined},rG6xd9Kgi:{y:(componentViewport?.y||0)+0+0+297.5779+0+15.6369+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:35,width:\"38px\",y:(componentViewport?.y||0)+0+0+327.9+0+0+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1emidkq-container\",nodeId:\"mVIE7I_9S\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Sparkles2,{height:\"100%\",id:\"mVIE7I_9S\",layoutId:\"mVIE7I_9S\",style:{height:\"100%\",width:\"100%\"},variant:\"GEEAfB7CH\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{D0KjT8elo:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7RE0gTW9uby1yZWd1bGFy\",\"--framer-font-family\":'\"DM Mono\", monospace',\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(245, 245, 245)\"},children:\"CURRENTLY BASED IN TORONTO, CANADA.\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7RE0gTW9uby1yZWd1bGFy\",\"--framer-font-family\":'\"DM Mono\", monospace',\"--framer-font-size\":\"20px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(245, 245, 245)\"},children:\"CURRENTLY BASED IN TORONTO, CANADA.\"})}),className:\"framer-1eryj1u\",effect:textEffect,fonts:[\"GF;DM Mono-regular\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{D0KjT8elo:{y:undefined},rG6xd9Kgi:{y:(componentViewport?.y||0)+0+0+297.5779+0+15.6369+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:35,width:\"38px\",y:(componentViewport?.y||0)+0+0+327.9+0+0+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1xc9frs-container\",nodeId:\"NZXw_nLez\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Sparkles2,{height:\"100%\",id:\"NZXw_nLez\",layoutId:\"NZXw_nLez\",style:{height:\"100%\",width:\"100%\"},variant:\"GEEAfB7CH\",width:\"100%\"})})})})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{D0KjT8elo:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7QmFsbGV0LXJlZ3VsYXI=\",\"--framer-font-family\":'\"Ballet\", sans-serif',\"--framer-font-size\":\"60px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(245, 245, 245)\"},children:\"Celestica Thoi \"})})},rG6xd9Kgi:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7QmFsbGV0LXJlZ3VsYXI=\",\"--framer-font-family\":'\"Ballet\", sans-serif',\"--framer-font-size\":\"120px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(245, 245, 245)\"},children:\"Celestica Thoi \"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7QmFsbGV0LXJlZ3VsYXI=\",\"--framer-font-family\":'\"Ballet\", sans-serif',\"--framer-font-size\":\"175px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(245, 245, 245)\"},children:\"Celestica Thoi \"})}),className:\"framer-1oem2r6\",fonts:[\"FS;Ballet-regular\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{D0KjT8elo:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7RE0gTW9uby1yZWd1bGFy\",\"--framer-font-family\":'\"DM Mono\", monospace',\"--framer-font-size\":\"14px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(245, 245, 245)\"},children:\"UX/UI & INTERACTION DESIGNER.\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7RE0gTW9uby1yZWd1bGFy\",\"--framer-font-family\":'\"DM Mono\", monospace',\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(245, 245, 245)\"},children:\"UX/UI & INTERACTION DESIGNER.\"})}),className:\"framer-ltad4s\",effect:textEffect1,fonts:[\"GF;DM Mono-regular\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-ak1qxq\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{D0KjT8elo:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7RE0gTW9uby1yZWd1bGFy\",\"--framer-font-family\":'\"DM Mono\", monospace',\"--framer-font-size\":\"14px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(245, 245, 245)\"},children:\"\u02D6 \u0741\uD81A\uDD54\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7RE0gTW9uby1yZWd1bGFy\",\"--framer-font-family\":'\"DM Mono\", monospace',\"--framer-font-size\":\"25px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(245, 245, 245)\"},children:\"\u02D6 \u0741\uD81A\uDD54\"})}),className:\"framer-1ez00zf\",effect:textEffect1,fonts:[\"GF;DM Mono-regular\"],verticalAlignment:\"top\",whileHover:animation2,withExternalLayout:true})})})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-m6m3rb\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7RE0gU2Fucy03MDA=\",\"--framer-font-family\":'\"DM Sans\", \"DM Sans Placeholder\", sans-serif',\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.03em\",\"--framer-text-alignment\":\"right\",\"--framer-text-color\":\"rgb(245, 245, 245)\"},children:\"Contact : \"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7RE0gU2Fucy01MDA=\",\"--framer-font-family\":'\"DM Sans\", \"DM Sans Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.03em\",\"--framer-text-alignment\":\"right\",\"--framer-text-color\":\"rgb(245, 245, 245)\"},children:\"celesticathoix@outlook.com\"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7RE0gU2Fucy01MDA=\",\"--framer-font-family\":'\"DM Sans\", \"DM Sans Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.03em\",\"--framer-text-alignment\":\"right\",\"--framer-text-color\":\"rgb(245, 245, 245)\"},children:/*#__PURE__*/_jsx(Link,{href:\"www.linkedin.com/in/celesticathoi\",motionChild:true,nodeId:\"Y9Az0NZ9m\",openInNewTab:true,scopeId:\"augiA20Il\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-bjsb93\",\"data-styles-preset\":\"i_CVvNM64\",children:\"www.linkedin.com/in/celesticathoi\"})})})]}),className:\"framer-co20wt\",\"data-framer-name\":\"Contact : celesticathoix@outlook.com www.linkedin.com/in/celesticathoi\",fonts:[\"GF;DM Sans-700\",\"GF;DM Sans-500\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition4},__framer__animateOnce:false,__framer__enter:animation3,__framer__exit:animation4,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1yk6si4\",id:elementId,ref:ref1,children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1vel1e6\",children:[isDisplayed()&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-bj9nnx hidden-na210q hidden-10qk593\",\"data-framer-name\":\"about me text\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"R0Y7RE0gU2Fucy01MDA=\",\"--framer-font-family\":'\"DM Sans\", \"DM Sans Placeholder\", sans-serif',\"--framer-font-size\":\"25px\",\"--framer-font-weight\":\"500\",\"--framer-text-color\":\"rgb(23, 23, 23)\"},children:[\"I\u2019m currently a 3rd year Honours Bachelors of Interaction Design Student at Sheridan College, driven by a \",/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"R0Y7RE0gU2Fucy03MDBpdGFsaWM=\",\"--framer-font-style\":\"italic\",\"--framer-font-weight\":\"700\"},children:\"passion of understanding how people interact with technology.\"}),\" As a student, I am still discovering which parts of design interest me the most - but so far, I have loved the challenge of intersecting aesthetics and functionality in my work! \"]}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"X19TRi1VSS1UZXh0LVJlZ3VsYXJfXw==\",\"--framer-font-family\":'\".SFNSText\", \"SFProText-Regular\", \"SFUIText-Regular\", \".SFUIText\", \"-apple-system\", \"BlinkMacSystemFont\", sans-serif',\"--framer-font-size\":\"28px\"},children:/*#__PURE__*/_jsx(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7RE0gU2Fucy01MDA=\",\"--framer-font-family\":'\"DM Sans\", \"DM Sans Placeholder\", sans-serif',\"--framer-font-size\":\"25px\",\"--framer-font-weight\":\"500\",\"--framer-text-color\":\"rgb(23, 23, 23)\"},children:\"I hope you enjoy browsing my portfolio and discovering my journey.  Feel free to explore and learn more about the creative process behind each project!\"})]}),className:\"framer-1l3vl05\",effect:textEffect2,fonts:[\"GF;DM Sans-500\",\"GF;DM Sans-700italic\",\"__SF-UI-Text-Regular__\"],verticalAlignment:\"top\",withExternalLayout:true})}),isDisplayed1()&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{D0KjT8elo:{height:688,width:`calc((${componentViewport?.width||\"100vw\"} - 100px) * 1.1276)`},rG6xd9Kgi:{height:450,width:\"464px\"}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-nj48qk-container hidden-72rtr7\",nodeId:\"ND4c50LFr\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(ABOUTMETEXTTAB,{height:\"100%\",id:\"ND4c50LFr\",layoutId:\"ND4c50LFr\",style:{height:\"100%\",width:\"100%\"},variant:\"L1a3e497p\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:233,width:\"220px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-1149vw-container\",nodeId:\"fpMBTnRz_\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Sparkles,{height:\"100%\",id:\"fpMBTnRz_\",layoutId:\"fpMBTnRz_\",style:{height:\"100%\",width:\"100%\"},variant:\"jpvBJhpfh\",width:\"100%\"})})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1lrshu4\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{D0KjT8elo:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7RE0gTW9uby1yZWd1bGFy\",\"--framer-font-family\":'\"DM Mono\", monospace',\"--framer-text-color\":\"var(--token-89ae68e7-3871-4f62-9f08-6dc31426c705, rgb(23, 23, 23))\"},children:\"Currently Seeking Internships :)\"})}),transformTemplate:undefined},rG6xd9Kgi:{transformTemplate:undefined}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7RE0gTW9uby1yZWd1bGFy\",\"--framer-font-family\":'\"DM Mono\", monospace',\"--framer-font-size\":\"20px\",\"--framer-text-color\":\"var(--token-89ae68e7-3871-4f62-9f08-6dc31426c705, rgb(23, 23, 23))\"},children:\"Currently Seeking Internships :)\"})}),className:\"framer-1u4w3zm\",fonts:[\"GF;DM Mono-regular\"],transformTemplate:transformTemplate1,verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{D0KjT8elo:{y:undefined},rG6xd9Kgi:{y:(componentViewport?.y||0)+0+904.6296+1127.8195-173+0+43.5}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:23,width:\"284px\",y:(componentViewport?.y||0)+0+1e3+1e3-154+67-23,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1rscedo-container\",nodeId:\"pl_8cQLKc\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Highlight3WithVariantAppearEffect,{__framer__animateOnce:false,__framer__obscuredVariantId:\"wi77I3Hbc\",__framer__threshold:0,__framer__variantAppearEffectEnabled:true,__framer__visibleVariantId:\"PVTd9tfHR\",height:\"100%\",id:\"pl_8cQLKc\",layoutId:\"pl_8cQLKc\",style:{height:\"100%\",width:\"100%\"},variant:\"wi77I3Hbc\",width:\"100%\"})})})})]}),isDisplayed()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-cts6ew-container hidden-na210q hidden-10qk593\",\"data-framer-name\":\"marquee\",isAuthoredByUser:true,isModuleExternal:true,name:\"marquee\",nodeId:\"jkN0wdk0h\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Ticker,{alignment:\"center\",direction:\"left\",fadeOptions:{fadeAlpha:0,fadeContent:true,fadeInset:0,fadeWidth:10,overflow:false},gap:0,height:\"100%\",hoverFactor:1,id:\"jkN0wdk0h\",layoutId:\"jkN0wdk0h\",name:\"marquee\",padding:10,paddingBottom:0,paddingLeft:10,paddingPerSide:true,paddingRight:10,paddingTop:0,sizingOptions:{heightType:true,widthType:true},slots:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-11jhybn\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7RE0gU2Fucy01MDA=\",\"--framer-font-family\":'\"DM Sans\", \"DM Sans Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-font-weight\":\"500\"},children:\"Adobe Creative Software\"})}),className:\"framer-187tqdb\",fonts:[\"GF;DM Sans-500\"],transformTemplate:transformTemplate2,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1c2fxpv\",\"data-framer-name\":\"Star\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 28 31\"><path d=\"M 11.416 2.056 C 11 2.162 11.257 4.336 11.257 4.595 L 11.257 28.959\" fill=\"transparent\" stroke-width=\"2.3\" stroke=\"rgb(0, 0, 0)\" stroke-linecap=\"round\" stroke-miterlimit=\"10\"></path><path d=\"M 1.574 12.59 C 4.433 12.59 7.316 12.455 10.154 12.87 C 14.065 13.44 17.778 14.61 21.628 15.418 C 23.388 15.787 25.019 16.156 26.814 16.156\" fill=\"transparent\" stroke-width=\"2.3\" stroke=\"rgb(0, 0, 0)\" stroke-linecap=\"round\" stroke-miterlimit=\"10\"></path><path d=\"M 4.749 3.19 C 4.828 3.924 5.601 4.724 5.965 5.315 C 7.635 8.026 9.368 10.694 11.098 13.364 C 13.219 16.637 14.832 20.088 16.743 23.467 C 17.446 24.712 17.958 26.175 18.718 27.339\" fill=\"transparent\" stroke-width=\"2.3\" stroke=\"rgb(0, 0, 0)\" stroke-linecap=\"round\" stroke-miterlimit=\"10\"></path><path d=\"M 3.32 22.639 C 3.497 21.43 4.903 20.111 5.578 19.163 C 8.17 15.52 10.784 11.728 13.867 8.493 C 15.511 6.769 17.194 4.856 19.035 3.353\" fill=\"transparent\" stroke-width=\"2.3\" stroke=\"rgb(0, 0, 0)\" stroke-linecap=\"round\" stroke-miterlimit=\"10\"></path></svg>',svgContentId:9436937856,withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7RE0gU2Fucy01MDA=\",\"--framer-font-family\":'\"DM Sans\", \"DM Sans Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-font-weight\":\"500\"},children:\"Figma\"})}),className:\"framer-8hv9k4\",fonts:[\"GF;DM Sans-500\"],transformTemplate:transformTemplate2,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-8u2omy\",\"data-framer-name\":\"Star\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 28 31\"><path d=\"M 11.416 2.056 C 11 2.162 11.257 4.336 11.257 4.595 L 11.257 28.959\" fill=\"transparent\" stroke-width=\"2.3\" stroke=\"rgb(0, 0, 0)\" stroke-linecap=\"round\" stroke-miterlimit=\"10\"></path><path d=\"M 1.574 12.59 C 4.433 12.59 7.316 12.455 10.154 12.87 C 14.065 13.44 17.778 14.61 21.628 15.418 C 23.388 15.787 25.019 16.156 26.814 16.156\" fill=\"transparent\" stroke-width=\"2.3\" stroke=\"rgb(0, 0, 0)\" stroke-linecap=\"round\" stroke-miterlimit=\"10\"></path><path d=\"M 4.749 3.19 C 4.828 3.924 5.601 4.724 5.965 5.315 C 7.635 8.026 9.368 10.694 11.098 13.364 C 13.219 16.637 14.832 20.088 16.743 23.467 C 17.446 24.712 17.958 26.175 18.718 27.339\" fill=\"transparent\" stroke-width=\"2.3\" stroke=\"rgb(0, 0, 0)\" stroke-linecap=\"round\" stroke-miterlimit=\"10\"></path><path d=\"M 3.32 22.639 C 3.497 21.43 4.903 20.111 5.578 19.163 C 8.17 15.52 10.784 11.728 13.867 8.493 C 15.511 6.769 17.194 4.856 19.035 3.353\" fill=\"transparent\" stroke-width=\"2.3\" stroke=\"rgb(0, 0, 0)\" stroke-linecap=\"round\" stroke-miterlimit=\"10\"></path></svg>',svgContentId:9436937856,withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7RE0gU2Fucy01MDA=\",\"--framer-font-family\":'\"DM Sans\", \"DM Sans Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-font-weight\":\"500\"},children:\"Wireframing\"})}),className:\"framer-ejjcqt\",fonts:[\"GF;DM Sans-500\"],transformTemplate:transformTemplate2,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-gfbch9\",\"data-framer-name\":\"Star\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 28 31\"><path d=\"M 11.416 2.056 C 11 2.162 11.257 4.336 11.257 4.595 L 11.257 28.959\" fill=\"transparent\" stroke-width=\"2.3\" stroke=\"rgb(0, 0, 0)\" stroke-linecap=\"round\" stroke-miterlimit=\"10\"></path><path d=\"M 1.574 12.59 C 4.433 12.59 7.316 12.455 10.154 12.87 C 14.065 13.44 17.778 14.61 21.628 15.418 C 23.388 15.787 25.019 16.156 26.814 16.156\" fill=\"transparent\" stroke-width=\"2.3\" stroke=\"rgb(0, 0, 0)\" stroke-linecap=\"round\" stroke-miterlimit=\"10\"></path><path d=\"M 4.749 3.19 C 4.828 3.924 5.601 4.724 5.965 5.315 C 7.635 8.026 9.368 10.694 11.098 13.364 C 13.219 16.637 14.832 20.088 16.743 23.467 C 17.446 24.712 17.958 26.175 18.718 27.339\" fill=\"transparent\" stroke-width=\"2.3\" stroke=\"rgb(0, 0, 0)\" stroke-linecap=\"round\" stroke-miterlimit=\"10\"></path><path d=\"M 3.32 22.639 C 3.497 21.43 4.903 20.111 5.578 19.163 C 8.17 15.52 10.784 11.728 13.867 8.493 C 15.511 6.769 17.194 4.856 19.035 3.353\" fill=\"transparent\" stroke-width=\"2.3\" stroke=\"rgb(0, 0, 0)\" stroke-linecap=\"round\" stroke-miterlimit=\"10\"></path></svg>',svgContentId:9436937856,withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7RE0gU2Fucy01MDA=\",\"--framer-font-family\":'\"DM Sans\", \"DM Sans Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-font-weight\":\"500\"},children:\"HTML, CS & JS\"})}),className:\"framer-cdbolr\",fonts:[\"GF;DM Sans-500\"],transformTemplate:transformTemplate2,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-19u1x6a\",\"data-framer-name\":\"Star\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 28 31\"><path d=\"M 11.416 2.056 C 11 2.162 11.257 4.336 11.257 4.595 L 11.257 28.959\" fill=\"transparent\" stroke-width=\"2.3\" stroke=\"rgb(0, 0, 0)\" stroke-linecap=\"round\" stroke-miterlimit=\"10\"></path><path d=\"M 1.574 12.59 C 4.433 12.59 7.316 12.455 10.154 12.87 C 14.065 13.44 17.778 14.61 21.628 15.418 C 23.388 15.787 25.019 16.156 26.814 16.156\" fill=\"transparent\" stroke-width=\"2.3\" stroke=\"rgb(0, 0, 0)\" stroke-linecap=\"round\" stroke-miterlimit=\"10\"></path><path d=\"M 4.749 3.19 C 4.828 3.924 5.601 4.724 5.965 5.315 C 7.635 8.026 9.368 10.694 11.098 13.364 C 13.219 16.637 14.832 20.088 16.743 23.467 C 17.446 24.712 17.958 26.175 18.718 27.339\" fill=\"transparent\" stroke-width=\"2.3\" stroke=\"rgb(0, 0, 0)\" stroke-linecap=\"round\" stroke-miterlimit=\"10\"></path><path d=\"M 3.32 22.639 C 3.497 21.43 4.903 20.111 5.578 19.163 C 8.17 15.52 10.784 11.728 13.867 8.493 C 15.511 6.769 17.194 4.856 19.035 3.353\" fill=\"transparent\" stroke-width=\"2.3\" stroke=\"rgb(0, 0, 0)\" stroke-linecap=\"round\" stroke-miterlimit=\"10\"></path></svg>',svgContentId:9436937856,withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7RE0gU2Fucy01MDA=\",\"--framer-font-family\":'\"DM Sans\", \"DM Sans Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-font-weight\":\"500\"},children:\"User Research\"})}),className:\"framer-cefz50\",fonts:[\"GF;DM Sans-500\"],transformTemplate:transformTemplate3,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1ip14xy\",\"data-framer-name\":\"Star\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 28 31\"><path d=\"M 11.416 2.056 C 11 2.162 11.257 4.336 11.257 4.595 L 11.257 28.959\" fill=\"transparent\" stroke-width=\"2.3\" stroke=\"rgb(0, 0, 0)\" stroke-linecap=\"round\" stroke-miterlimit=\"10\"></path><path d=\"M 1.574 12.59 C 4.433 12.59 7.316 12.455 10.154 12.87 C 14.065 13.44 17.778 14.61 21.628 15.418 C 23.388 15.787 25.019 16.156 26.814 16.156\" fill=\"transparent\" stroke-width=\"2.3\" stroke=\"rgb(0, 0, 0)\" stroke-linecap=\"round\" stroke-miterlimit=\"10\"></path><path d=\"M 4.749 3.19 C 4.828 3.924 5.601 4.724 5.965 5.315 C 7.635 8.026 9.368 10.694 11.098 13.364 C 13.219 16.637 14.832 20.088 16.743 23.467 C 17.446 24.712 17.958 26.175 18.718 27.339\" fill=\"transparent\" stroke-width=\"2.3\" stroke=\"rgb(0, 0, 0)\" stroke-linecap=\"round\" stroke-miterlimit=\"10\"></path><path d=\"M 3.32 22.639 C 3.497 21.43 4.903 20.111 5.578 19.163 C 8.17 15.52 10.784 11.728 13.867 8.493 C 15.511 6.769 17.194 4.856 19.035 3.353\" fill=\"transparent\" stroke-width=\"2.3\" stroke=\"rgb(0, 0, 0)\" stroke-linecap=\"round\" stroke-miterlimit=\"10\"></path></svg>',svgContentId:9436937856,withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7RE0gU2Fucy01MDA=\",\"--framer-font-family\":'\"DM Sans\", \"DM Sans Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-font-weight\":\"500\"},children:\"Web Design\"})}),className:\"framer-1lwwv45\",fonts:[\"GF;DM Sans-500\"],transformTemplate:transformTemplate2,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1eq5d5x\",\"data-framer-name\":\"Star\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 28 31\"><path d=\"M 11.416 2.056 C 11 2.162 11.257 4.336 11.257 4.595 L 11.257 28.959\" fill=\"transparent\" stroke-width=\"2.3\" stroke=\"rgb(0, 0, 0)\" stroke-linecap=\"round\" stroke-miterlimit=\"10\"></path><path d=\"M 1.574 12.59 C 4.433 12.59 7.316 12.455 10.154 12.87 C 14.065 13.44 17.778 14.61 21.628 15.418 C 23.388 15.787 25.019 16.156 26.814 16.156\" fill=\"transparent\" stroke-width=\"2.3\" stroke=\"rgb(0, 0, 0)\" stroke-linecap=\"round\" stroke-miterlimit=\"10\"></path><path d=\"M 4.749 3.19 C 4.828 3.924 5.601 4.724 5.965 5.315 C 7.635 8.026 9.368 10.694 11.098 13.364 C 13.219 16.637 14.832 20.088 16.743 23.467 C 17.446 24.712 17.958 26.175 18.718 27.339\" fill=\"transparent\" stroke-width=\"2.3\" stroke=\"rgb(0, 0, 0)\" stroke-linecap=\"round\" stroke-miterlimit=\"10\"></path><path d=\"M 3.32 22.639 C 3.497 21.43 4.903 20.111 5.578 19.163 C 8.17 15.52 10.784 11.728 13.867 8.493 C 15.511 6.769 17.194 4.856 19.035 3.353\" fill=\"transparent\" stroke-width=\"2.3\" stroke=\"rgb(0, 0, 0)\" stroke-linecap=\"round\" stroke-miterlimit=\"10\"></path></svg>',svgContentId:9436937856,withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7RE0gU2Fucy01MDA=\",\"--framer-font-family\":'\"DM Sans\", \"DM Sans Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-font-weight\":\"500\"},children:\"Prototyping\"})}),className:\"framer-142tmsg\",fonts:[\"GF;DM Sans-500\"],transformTemplate:transformTemplate2,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1ag90u\",\"data-framer-name\":\"Star\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 28 31\"><path d=\"M 11.416 2.056 C 11 2.162 11.257 4.336 11.257 4.595 L 11.257 28.959\" fill=\"transparent\" stroke-width=\"2.3\" stroke=\"rgb(0, 0, 0)\" stroke-linecap=\"round\" stroke-miterlimit=\"10\"></path><path d=\"M 1.574 12.59 C 4.433 12.59 7.316 12.455 10.154 12.87 C 14.065 13.44 17.778 14.61 21.628 15.418 C 23.388 15.787 25.019 16.156 26.814 16.156\" fill=\"transparent\" stroke-width=\"2.3\" stroke=\"rgb(0, 0, 0)\" stroke-linecap=\"round\" stroke-miterlimit=\"10\"></path><path d=\"M 4.749 3.19 C 4.828 3.924 5.601 4.724 5.965 5.315 C 7.635 8.026 9.368 10.694 11.098 13.364 C 13.219 16.637 14.832 20.088 16.743 23.467 C 17.446 24.712 17.958 26.175 18.718 27.339\" fill=\"transparent\" stroke-width=\"2.3\" stroke=\"rgb(0, 0, 0)\" stroke-linecap=\"round\" stroke-miterlimit=\"10\"></path><path d=\"M 3.32 22.639 C 3.497 21.43 4.903 20.111 5.578 19.163 C 8.17 15.52 10.784 11.728 13.867 8.493 C 15.511 6.769 17.194 4.856 19.035 3.353\" fill=\"transparent\" stroke-width=\"2.3\" stroke=\"rgb(0, 0, 0)\" stroke-linecap=\"round\" stroke-miterlimit=\"10\"></path></svg>',svgContentId:9436937856,withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7RE0gU2Fucy01MDA=\",\"--framer-font-family\":'\"DM Sans\", \"DM Sans Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-font-weight\":\"500\"},children:\"Spline, C4D\"})}),className:\"framer-8trtty\",fonts:[\"GF;DM Sans-500\"],transformTemplate:transformTemplate2,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-icrgyf\",\"data-framer-name\":\"Star\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 28 31\"><path d=\"M 11.416 2.056 C 11 2.162 11.257 4.336 11.257 4.595 L 11.257 28.959\" fill=\"transparent\" stroke-width=\"2.3\" stroke=\"rgb(0, 0, 0)\" stroke-linecap=\"round\" stroke-miterlimit=\"10\"></path><path d=\"M 1.574 12.59 C 4.433 12.59 7.316 12.455 10.154 12.87 C 14.065 13.44 17.778 14.61 21.628 15.418 C 23.388 15.787 25.019 16.156 26.814 16.156\" fill=\"transparent\" stroke-width=\"2.3\" stroke=\"rgb(0, 0, 0)\" stroke-linecap=\"round\" stroke-miterlimit=\"10\"></path><path d=\"M 4.749 3.19 C 4.828 3.924 5.601 4.724 5.965 5.315 C 7.635 8.026 9.368 10.694 11.098 13.364 C 13.219 16.637 14.832 20.088 16.743 23.467 C 17.446 24.712 17.958 26.175 18.718 27.339\" fill=\"transparent\" stroke-width=\"2.3\" stroke=\"rgb(0, 0, 0)\" stroke-linecap=\"round\" stroke-miterlimit=\"10\"></path><path d=\"M 3.32 22.639 C 3.497 21.43 4.903 20.111 5.578 19.163 C 8.17 15.52 10.784 11.728 13.867 8.493 C 15.511 6.769 17.194 4.856 19.035 3.353\" fill=\"transparent\" stroke-width=\"2.3\" stroke=\"rgb(0, 0, 0)\" stroke-linecap=\"round\" stroke-miterlimit=\"10\"></path></svg>',svgContentId:9436937856,withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7RE0gU2Fucy01MDA=\",\"--framer-font-family\":'\"DM Sans\", \"DM Sans Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-font-weight\":\"500\"},children:\"User Testing\"})}),className:\"framer-5fsln1\",fonts:[\"GF;DM Sans-500\"],transformTemplate:transformTemplate2,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-cj7jqq\",\"data-framer-name\":\"Star\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 28 31\"><path d=\"M 11.416 2.056 C 11 2.162 11.257 4.336 11.257 4.595 L 11.257 28.959\" fill=\"transparent\" stroke-width=\"2.3\" stroke=\"rgb(0, 0, 0)\" stroke-linecap=\"round\" stroke-miterlimit=\"10\"></path><path d=\"M 1.574 12.59 C 4.433 12.59 7.316 12.455 10.154 12.87 C 14.065 13.44 17.778 14.61 21.628 15.418 C 23.388 15.787 25.019 16.156 26.814 16.156\" fill=\"transparent\" stroke-width=\"2.3\" stroke=\"rgb(0, 0, 0)\" stroke-linecap=\"round\" stroke-miterlimit=\"10\"></path><path d=\"M 4.749 3.19 C 4.828 3.924 5.601 4.724 5.965 5.315 C 7.635 8.026 9.368 10.694 11.098 13.364 C 13.219 16.637 14.832 20.088 16.743 23.467 C 17.446 24.712 17.958 26.175 18.718 27.339\" fill=\"transparent\" stroke-width=\"2.3\" stroke=\"rgb(0, 0, 0)\" stroke-linecap=\"round\" stroke-miterlimit=\"10\"></path><path d=\"M 3.32 22.639 C 3.497 21.43 4.903 20.111 5.578 19.163 C 8.17 15.52 10.784 11.728 13.867 8.493 C 15.511 6.769 17.194 4.856 19.035 3.353\" fill=\"transparent\" stroke-width=\"2.3\" stroke=\"rgb(0, 0, 0)\" stroke-linecap=\"round\" stroke-miterlimit=\"10\"></path></svg>',svgContentId:9436937856,withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1vkbr84\",\"data-framer-name\":\"Star\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 28 31\"><path d=\"M 11.416 2.056 C 11 2.162 11.257 4.336 11.257 4.595 L 11.257 28.959\" fill=\"transparent\" stroke-width=\"2.3\" stroke=\"rgb(0, 0, 0)\" stroke-linecap=\"round\" stroke-miterlimit=\"10\"></path><path d=\"M 1.574 12.59 C 4.433 12.59 7.316 12.455 10.154 12.87 C 14.065 13.44 17.778 14.61 21.628 15.418 C 23.388 15.787 25.019 16.156 26.814 16.156\" fill=\"transparent\" stroke-width=\"2.3\" stroke=\"rgb(0, 0, 0)\" stroke-linecap=\"round\" stroke-miterlimit=\"10\"></path><path d=\"M 4.749 3.19 C 4.828 3.924 5.601 4.724 5.965 5.315 C 7.635 8.026 9.368 10.694 11.098 13.364 C 13.219 16.637 14.832 20.088 16.743 23.467 C 17.446 24.712 17.958 26.175 18.718 27.339\" fill=\"transparent\" stroke-width=\"2.3\" stroke=\"rgb(0, 0, 0)\" stroke-linecap=\"round\" stroke-miterlimit=\"10\"></path><path d=\"M 3.32 22.639 C 3.497 21.43 4.903 20.111 5.578 19.163 C 8.17 15.52 10.784 11.728 13.867 8.493 C 15.511 6.769 17.194 4.856 19.035 3.353\" fill=\"transparent\" stroke-width=\"2.3\" stroke=\"rgb(0, 0, 0)\" stroke-linecap=\"round\" stroke-miterlimit=\"10\"></path></svg>',svgContentId:9436937856,withExternalLayout:true})]})],speed:50,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),isDisplayed1()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-hwi3o0-container hidden-72rtr7\",\"data-framer-name\":\"marquee\",isAuthoredByUser:true,isModuleExternal:true,name:\"marquee\",nodeId:\"BUew0rrT4\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Ticker,{alignment:\"center\",direction:\"left\",fadeOptions:{fadeAlpha:0,fadeContent:true,fadeInset:0,fadeWidth:25,overflow:false},gap:0,height:\"100%\",hoverFactor:1,id:\"BUew0rrT4\",layoutId:\"BUew0rrT4\",name:\"marquee\",padding:10,paddingBottom:0,paddingLeft:10,paddingPerSide:true,paddingRight:10,paddingTop:0,sizingOptions:{heightType:true,widthType:true},slots:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-11jhybn\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7RE0gU2Fucy01MDA=\",\"--framer-font-family\":'\"DM Sans\", \"DM Sans Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-font-weight\":\"500\"},children:\"Adobe Creative Software\"})}),className:\"framer-187tqdb\",fonts:[\"GF;DM Sans-500\"],transformTemplate:transformTemplate2,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1c2fxpv\",\"data-framer-name\":\"Star\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 28 31\"><path d=\"M 11.416 2.056 C 11 2.162 11.257 4.336 11.257 4.595 L 11.257 28.959\" fill=\"transparent\" stroke-width=\"2.3\" stroke=\"rgb(0, 0, 0)\" stroke-linecap=\"round\" stroke-miterlimit=\"10\"></path><path d=\"M 1.574 12.59 C 4.433 12.59 7.316 12.455 10.154 12.87 C 14.065 13.44 17.778 14.61 21.628 15.418 C 23.388 15.787 25.019 16.156 26.814 16.156\" fill=\"transparent\" stroke-width=\"2.3\" stroke=\"rgb(0, 0, 0)\" stroke-linecap=\"round\" stroke-miterlimit=\"10\"></path><path d=\"M 4.749 3.19 C 4.828 3.924 5.601 4.724 5.965 5.315 C 7.635 8.026 9.368 10.694 11.098 13.364 C 13.219 16.637 14.832 20.088 16.743 23.467 C 17.446 24.712 17.958 26.175 18.718 27.339\" fill=\"transparent\" stroke-width=\"2.3\" stroke=\"rgb(0, 0, 0)\" stroke-linecap=\"round\" stroke-miterlimit=\"10\"></path><path d=\"M 3.32 22.639 C 3.497 21.43 4.903 20.111 5.578 19.163 C 8.17 15.52 10.784 11.728 13.867 8.493 C 15.511 6.769 17.194 4.856 19.035 3.353\" fill=\"transparent\" stroke-width=\"2.3\" stroke=\"rgb(0, 0, 0)\" stroke-linecap=\"round\" stroke-miterlimit=\"10\"></path></svg>',svgContentId:9436937856,withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7RE0gU2Fucy01MDA=\",\"--framer-font-family\":'\"DM Sans\", \"DM Sans Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-font-weight\":\"500\"},children:\"Figma\"})}),className:\"framer-8hv9k4\",fonts:[\"GF;DM Sans-500\"],transformTemplate:transformTemplate2,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-8u2omy\",\"data-framer-name\":\"Star\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 28 31\"><path d=\"M 11.416 2.056 C 11 2.162 11.257 4.336 11.257 4.595 L 11.257 28.959\" fill=\"transparent\" stroke-width=\"2.3\" stroke=\"rgb(0, 0, 0)\" stroke-linecap=\"round\" stroke-miterlimit=\"10\"></path><path d=\"M 1.574 12.59 C 4.433 12.59 7.316 12.455 10.154 12.87 C 14.065 13.44 17.778 14.61 21.628 15.418 C 23.388 15.787 25.019 16.156 26.814 16.156\" fill=\"transparent\" stroke-width=\"2.3\" stroke=\"rgb(0, 0, 0)\" stroke-linecap=\"round\" stroke-miterlimit=\"10\"></path><path d=\"M 4.749 3.19 C 4.828 3.924 5.601 4.724 5.965 5.315 C 7.635 8.026 9.368 10.694 11.098 13.364 C 13.219 16.637 14.832 20.088 16.743 23.467 C 17.446 24.712 17.958 26.175 18.718 27.339\" fill=\"transparent\" stroke-width=\"2.3\" stroke=\"rgb(0, 0, 0)\" stroke-linecap=\"round\" stroke-miterlimit=\"10\"></path><path d=\"M 3.32 22.639 C 3.497 21.43 4.903 20.111 5.578 19.163 C 8.17 15.52 10.784 11.728 13.867 8.493 C 15.511 6.769 17.194 4.856 19.035 3.353\" fill=\"transparent\" stroke-width=\"2.3\" stroke=\"rgb(0, 0, 0)\" stroke-linecap=\"round\" stroke-miterlimit=\"10\"></path></svg>',svgContentId:9436937856,withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7RE0gU2Fucy01MDA=\",\"--framer-font-family\":'\"DM Sans\", \"DM Sans Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-font-weight\":\"500\"},children:\"Wireframing\"})}),className:\"framer-ejjcqt\",fonts:[\"GF;DM Sans-500\"],transformTemplate:transformTemplate2,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-gfbch9\",\"data-framer-name\":\"Star\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 28 31\"><path d=\"M 11.416 2.056 C 11 2.162 11.257 4.336 11.257 4.595 L 11.257 28.959\" fill=\"transparent\" stroke-width=\"2.3\" stroke=\"rgb(0, 0, 0)\" stroke-linecap=\"round\" stroke-miterlimit=\"10\"></path><path d=\"M 1.574 12.59 C 4.433 12.59 7.316 12.455 10.154 12.87 C 14.065 13.44 17.778 14.61 21.628 15.418 C 23.388 15.787 25.019 16.156 26.814 16.156\" fill=\"transparent\" stroke-width=\"2.3\" stroke=\"rgb(0, 0, 0)\" stroke-linecap=\"round\" stroke-miterlimit=\"10\"></path><path d=\"M 4.749 3.19 C 4.828 3.924 5.601 4.724 5.965 5.315 C 7.635 8.026 9.368 10.694 11.098 13.364 C 13.219 16.637 14.832 20.088 16.743 23.467 C 17.446 24.712 17.958 26.175 18.718 27.339\" fill=\"transparent\" stroke-width=\"2.3\" stroke=\"rgb(0, 0, 0)\" stroke-linecap=\"round\" stroke-miterlimit=\"10\"></path><path d=\"M 3.32 22.639 C 3.497 21.43 4.903 20.111 5.578 19.163 C 8.17 15.52 10.784 11.728 13.867 8.493 C 15.511 6.769 17.194 4.856 19.035 3.353\" fill=\"transparent\" stroke-width=\"2.3\" stroke=\"rgb(0, 0, 0)\" stroke-linecap=\"round\" stroke-miterlimit=\"10\"></path></svg>',svgContentId:9436937856,withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7RE0gU2Fucy01MDA=\",\"--framer-font-family\":'\"DM Sans\", \"DM Sans Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-font-weight\":\"500\"},children:\"HTML, CS & JS\"})}),className:\"framer-cdbolr\",fonts:[\"GF;DM Sans-500\"],transformTemplate:transformTemplate2,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-19u1x6a\",\"data-framer-name\":\"Star\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 28 31\"><path d=\"M 11.416 2.056 C 11 2.162 11.257 4.336 11.257 4.595 L 11.257 28.959\" fill=\"transparent\" stroke-width=\"2.3\" stroke=\"rgb(0, 0, 0)\" stroke-linecap=\"round\" stroke-miterlimit=\"10\"></path><path d=\"M 1.574 12.59 C 4.433 12.59 7.316 12.455 10.154 12.87 C 14.065 13.44 17.778 14.61 21.628 15.418 C 23.388 15.787 25.019 16.156 26.814 16.156\" fill=\"transparent\" stroke-width=\"2.3\" stroke=\"rgb(0, 0, 0)\" stroke-linecap=\"round\" stroke-miterlimit=\"10\"></path><path d=\"M 4.749 3.19 C 4.828 3.924 5.601 4.724 5.965 5.315 C 7.635 8.026 9.368 10.694 11.098 13.364 C 13.219 16.637 14.832 20.088 16.743 23.467 C 17.446 24.712 17.958 26.175 18.718 27.339\" fill=\"transparent\" stroke-width=\"2.3\" stroke=\"rgb(0, 0, 0)\" stroke-linecap=\"round\" stroke-miterlimit=\"10\"></path><path d=\"M 3.32 22.639 C 3.497 21.43 4.903 20.111 5.578 19.163 C 8.17 15.52 10.784 11.728 13.867 8.493 C 15.511 6.769 17.194 4.856 19.035 3.353\" fill=\"transparent\" stroke-width=\"2.3\" stroke=\"rgb(0, 0, 0)\" stroke-linecap=\"round\" stroke-miterlimit=\"10\"></path></svg>',svgContentId:9436937856,withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7RE0gU2Fucy01MDA=\",\"--framer-font-family\":'\"DM Sans\", \"DM Sans Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-font-weight\":\"500\"},children:\"User Research\"})}),className:\"framer-cefz50\",fonts:[\"GF;DM Sans-500\"],transformTemplate:transformTemplate3,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1ip14xy\",\"data-framer-name\":\"Star\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 28 31\"><path d=\"M 11.416 2.056 C 11 2.162 11.257 4.336 11.257 4.595 L 11.257 28.959\" fill=\"transparent\" stroke-width=\"2.3\" stroke=\"rgb(0, 0, 0)\" stroke-linecap=\"round\" stroke-miterlimit=\"10\"></path><path d=\"M 1.574 12.59 C 4.433 12.59 7.316 12.455 10.154 12.87 C 14.065 13.44 17.778 14.61 21.628 15.418 C 23.388 15.787 25.019 16.156 26.814 16.156\" fill=\"transparent\" stroke-width=\"2.3\" stroke=\"rgb(0, 0, 0)\" stroke-linecap=\"round\" stroke-miterlimit=\"10\"></path><path d=\"M 4.749 3.19 C 4.828 3.924 5.601 4.724 5.965 5.315 C 7.635 8.026 9.368 10.694 11.098 13.364 C 13.219 16.637 14.832 20.088 16.743 23.467 C 17.446 24.712 17.958 26.175 18.718 27.339\" fill=\"transparent\" stroke-width=\"2.3\" stroke=\"rgb(0, 0, 0)\" stroke-linecap=\"round\" stroke-miterlimit=\"10\"></path><path d=\"M 3.32 22.639 C 3.497 21.43 4.903 20.111 5.578 19.163 C 8.17 15.52 10.784 11.728 13.867 8.493 C 15.511 6.769 17.194 4.856 19.035 3.353\" fill=\"transparent\" stroke-width=\"2.3\" stroke=\"rgb(0, 0, 0)\" stroke-linecap=\"round\" stroke-miterlimit=\"10\"></path></svg>',svgContentId:9436937856,withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7RE0gU2Fucy01MDA=\",\"--framer-font-family\":'\"DM Sans\", \"DM Sans Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-font-weight\":\"500\"},children:\"Web Design\"})}),className:\"framer-1lwwv45\",fonts:[\"GF;DM Sans-500\"],transformTemplate:transformTemplate2,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1eq5d5x\",\"data-framer-name\":\"Star\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 28 31\"><path d=\"M 11.416 2.056 C 11 2.162 11.257 4.336 11.257 4.595 L 11.257 28.959\" fill=\"transparent\" stroke-width=\"2.3\" stroke=\"rgb(0, 0, 0)\" stroke-linecap=\"round\" stroke-miterlimit=\"10\"></path><path d=\"M 1.574 12.59 C 4.433 12.59 7.316 12.455 10.154 12.87 C 14.065 13.44 17.778 14.61 21.628 15.418 C 23.388 15.787 25.019 16.156 26.814 16.156\" fill=\"transparent\" stroke-width=\"2.3\" stroke=\"rgb(0, 0, 0)\" stroke-linecap=\"round\" stroke-miterlimit=\"10\"></path><path d=\"M 4.749 3.19 C 4.828 3.924 5.601 4.724 5.965 5.315 C 7.635 8.026 9.368 10.694 11.098 13.364 C 13.219 16.637 14.832 20.088 16.743 23.467 C 17.446 24.712 17.958 26.175 18.718 27.339\" fill=\"transparent\" stroke-width=\"2.3\" stroke=\"rgb(0, 0, 0)\" stroke-linecap=\"round\" stroke-miterlimit=\"10\"></path><path d=\"M 3.32 22.639 C 3.497 21.43 4.903 20.111 5.578 19.163 C 8.17 15.52 10.784 11.728 13.867 8.493 C 15.511 6.769 17.194 4.856 19.035 3.353\" fill=\"transparent\" stroke-width=\"2.3\" stroke=\"rgb(0, 0, 0)\" stroke-linecap=\"round\" stroke-miterlimit=\"10\"></path></svg>',svgContentId:9436937856,withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7RE0gU2Fucy01MDA=\",\"--framer-font-family\":'\"DM Sans\", \"DM Sans Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-font-weight\":\"500\"},children:\"Prototyping\"})}),className:\"framer-142tmsg\",fonts:[\"GF;DM Sans-500\"],transformTemplate:transformTemplate2,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1ag90u\",\"data-framer-name\":\"Star\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 28 31\"><path d=\"M 11.416 2.056 C 11 2.162 11.257 4.336 11.257 4.595 L 11.257 28.959\" fill=\"transparent\" stroke-width=\"2.3\" stroke=\"rgb(0, 0, 0)\" stroke-linecap=\"round\" stroke-miterlimit=\"10\"></path><path d=\"M 1.574 12.59 C 4.433 12.59 7.316 12.455 10.154 12.87 C 14.065 13.44 17.778 14.61 21.628 15.418 C 23.388 15.787 25.019 16.156 26.814 16.156\" fill=\"transparent\" stroke-width=\"2.3\" stroke=\"rgb(0, 0, 0)\" stroke-linecap=\"round\" stroke-miterlimit=\"10\"></path><path d=\"M 4.749 3.19 C 4.828 3.924 5.601 4.724 5.965 5.315 C 7.635 8.026 9.368 10.694 11.098 13.364 C 13.219 16.637 14.832 20.088 16.743 23.467 C 17.446 24.712 17.958 26.175 18.718 27.339\" fill=\"transparent\" stroke-width=\"2.3\" stroke=\"rgb(0, 0, 0)\" stroke-linecap=\"round\" stroke-miterlimit=\"10\"></path><path d=\"M 3.32 22.639 C 3.497 21.43 4.903 20.111 5.578 19.163 C 8.17 15.52 10.784 11.728 13.867 8.493 C 15.511 6.769 17.194 4.856 19.035 3.353\" fill=\"transparent\" stroke-width=\"2.3\" stroke=\"rgb(0, 0, 0)\" stroke-linecap=\"round\" stroke-miterlimit=\"10\"></path></svg>',svgContentId:9436937856,withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7RE0gU2Fucy01MDA=\",\"--framer-font-family\":'\"DM Sans\", \"DM Sans Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-font-weight\":\"500\"},children:\"Spline, C4D\"})}),className:\"framer-8trtty\",fonts:[\"GF;DM Sans-500\"],transformTemplate:transformTemplate2,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-icrgyf\",\"data-framer-name\":\"Star\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 28 31\"><path d=\"M 11.416 2.056 C 11 2.162 11.257 4.336 11.257 4.595 L 11.257 28.959\" fill=\"transparent\" stroke-width=\"2.3\" stroke=\"rgb(0, 0, 0)\" stroke-linecap=\"round\" stroke-miterlimit=\"10\"></path><path d=\"M 1.574 12.59 C 4.433 12.59 7.316 12.455 10.154 12.87 C 14.065 13.44 17.778 14.61 21.628 15.418 C 23.388 15.787 25.019 16.156 26.814 16.156\" fill=\"transparent\" stroke-width=\"2.3\" stroke=\"rgb(0, 0, 0)\" stroke-linecap=\"round\" stroke-miterlimit=\"10\"></path><path d=\"M 4.749 3.19 C 4.828 3.924 5.601 4.724 5.965 5.315 C 7.635 8.026 9.368 10.694 11.098 13.364 C 13.219 16.637 14.832 20.088 16.743 23.467 C 17.446 24.712 17.958 26.175 18.718 27.339\" fill=\"transparent\" stroke-width=\"2.3\" stroke=\"rgb(0, 0, 0)\" stroke-linecap=\"round\" stroke-miterlimit=\"10\"></path><path d=\"M 3.32 22.639 C 3.497 21.43 4.903 20.111 5.578 19.163 C 8.17 15.52 10.784 11.728 13.867 8.493 C 15.511 6.769 17.194 4.856 19.035 3.353\" fill=\"transparent\" stroke-width=\"2.3\" stroke=\"rgb(0, 0, 0)\" stroke-linecap=\"round\" stroke-miterlimit=\"10\"></path></svg>',svgContentId:9436937856,withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7RE0gU2Fucy01MDA=\",\"--framer-font-family\":'\"DM Sans\", \"DM Sans Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-font-weight\":\"500\"},children:\"User Testing\"})}),className:\"framer-5fsln1\",fonts:[\"GF;DM Sans-500\"],transformTemplate:transformTemplate2,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-cj7jqq\",\"data-framer-name\":\"Star\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 28 31\"><path d=\"M 11.416 2.056 C 11 2.162 11.257 4.336 11.257 4.595 L 11.257 28.959\" fill=\"transparent\" stroke-width=\"2.3\" stroke=\"rgb(0, 0, 0)\" stroke-linecap=\"round\" stroke-miterlimit=\"10\"></path><path d=\"M 1.574 12.59 C 4.433 12.59 7.316 12.455 10.154 12.87 C 14.065 13.44 17.778 14.61 21.628 15.418 C 23.388 15.787 25.019 16.156 26.814 16.156\" fill=\"transparent\" stroke-width=\"2.3\" stroke=\"rgb(0, 0, 0)\" stroke-linecap=\"round\" stroke-miterlimit=\"10\"></path><path d=\"M 4.749 3.19 C 4.828 3.924 5.601 4.724 5.965 5.315 C 7.635 8.026 9.368 10.694 11.098 13.364 C 13.219 16.637 14.832 20.088 16.743 23.467 C 17.446 24.712 17.958 26.175 18.718 27.339\" fill=\"transparent\" stroke-width=\"2.3\" stroke=\"rgb(0, 0, 0)\" stroke-linecap=\"round\" stroke-miterlimit=\"10\"></path><path d=\"M 3.32 22.639 C 3.497 21.43 4.903 20.111 5.578 19.163 C 8.17 15.52 10.784 11.728 13.867 8.493 C 15.511 6.769 17.194 4.856 19.035 3.353\" fill=\"transparent\" stroke-width=\"2.3\" stroke=\"rgb(0, 0, 0)\" stroke-linecap=\"round\" stroke-miterlimit=\"10\"></path></svg>',svgContentId:9436937856,withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1vkbr84\",\"data-framer-name\":\"Star\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 28 31\"><path d=\"M 11.416 2.056 C 11 2.162 11.257 4.336 11.257 4.595 L 11.257 28.959\" fill=\"transparent\" stroke-width=\"2.3\" stroke=\"rgb(0, 0, 0)\" stroke-linecap=\"round\" stroke-miterlimit=\"10\"></path><path d=\"M 1.574 12.59 C 4.433 12.59 7.316 12.455 10.154 12.87 C 14.065 13.44 17.778 14.61 21.628 15.418 C 23.388 15.787 25.019 16.156 26.814 16.156\" fill=\"transparent\" stroke-width=\"2.3\" stroke=\"rgb(0, 0, 0)\" stroke-linecap=\"round\" stroke-miterlimit=\"10\"></path><path d=\"M 4.749 3.19 C 4.828 3.924 5.601 4.724 5.965 5.315 C 7.635 8.026 9.368 10.694 11.098 13.364 C 13.219 16.637 14.832 20.088 16.743 23.467 C 17.446 24.712 17.958 26.175 18.718 27.339\" fill=\"transparent\" stroke-width=\"2.3\" stroke=\"rgb(0, 0, 0)\" stroke-linecap=\"round\" stroke-miterlimit=\"10\"></path><path d=\"M 3.32 22.639 C 3.497 21.43 4.903 20.111 5.578 19.163 C 8.17 15.52 10.784 11.728 13.867 8.493 C 15.511 6.769 17.194 4.856 19.035 3.353\" fill=\"transparent\" stroke-width=\"2.3\" stroke=\"rgb(0, 0, 0)\" stroke-linecap=\"round\" stroke-miterlimit=\"10\"></path></svg>',svgContentId:9436937856,withExternalLayout:true})]})],speed:50,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})]}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-18o163p-container\",isAuthoredByUser:true,nodeId:\"s2bCGDiBO\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(AnimatedLine,{height:\"100%\",id:\"s2bCGDiBO\",layoutId:\"s2bCGDiBO\",width:\"100%\"})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1hkr6jm\",id:elementId1,ref:ref2,children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-r958kb\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-11a9pwu-container\",isModuleExternal:true,nodeId:\"Y4CpDoqfc\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Ticker1,{alignment:\"center\",direction:\"right\",fadeOptions:{fadeAlpha:0,fadeContent:true,fadeInset:0,fadeWidth:0,overflow:false},gap:0,height:\"100%\",hoverFactor:1,id:\"Y4CpDoqfc\",layoutId:\"Y4CpDoqfc\",padding:0,paddingBottom:0,paddingLeft:0,paddingPerSide:false,paddingRight:0,paddingTop:0,sizingOptions:{heightType:true,widthType:true},slots:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-ht57c5\",\"data-border\":true,children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7RE0gTW9uby0zMDA=\",\"--framer-font-family\":'\"DM Mono\", monospace',\"--framer-font-size\":\"12px\",\"--framer-font-weight\":\"300\",\"--framer-text-color\":\"var(--token-e11d65ff-264b-4ee0-b1c0-883dfb23f7f4, rgb(245, 245, 245))\"},children:\"CASE STUDIES\"})}),className:\"framer-1of6llv\",fonts:[\"GF;DM Mono-300\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7RE0gTW9uby0zMDA=\",\"--framer-font-family\":'\"DM Mono\", monospace',\"--framer-font-size\":\"12px\",\"--framer-font-weight\":\"300\",\"--framer-text-color\":\"var(--token-e11d65ff-264b-4ee0-b1c0-883dfb23f7f4, rgb(245, 245, 245))\"},children:\"\u2022\"})}),className:\"framer-1p7ddld\",fonts:[\"GF;DM Mono-300\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7RE0gTW9uby0zMDA=\",\"--framer-font-family\":'\"DM Mono\", monospace',\"--framer-font-size\":\"12px\",\"--framer-font-weight\":\"300\",\"--framer-text-color\":\"var(--token-e11d65ff-264b-4ee0-b1c0-883dfb23f7f4, rgb(245, 245, 245))\"},children:\"CASE STUDIES\"})}),className:\"framer-s4ztzp\",fonts:[\"GF;DM Mono-300\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7RE0gTW9uby0zMDA=\",\"--framer-font-family\":'\"DM Mono\", monospace',\"--framer-font-size\":\"12px\",\"--framer-font-weight\":\"300\",\"--framer-text-color\":\"var(--token-e11d65ff-264b-4ee0-b1c0-883dfb23f7f4, rgb(245, 245, 245))\"},children:\"\u2022\"})}),className:\"framer-1edjydv\",fonts:[\"GF;DM Mono-300\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7RE0gTW9uby0zMDA=\",\"--framer-font-family\":'\"DM Mono\", monospace',\"--framer-font-size\":\"12px\",\"--framer-font-weight\":\"300\",\"--framer-text-color\":\"var(--token-e11d65ff-264b-4ee0-b1c0-883dfb23f7f4, rgb(245, 245, 245))\"},children:\"CASE STUDIES\"})}),className:\"framer-1umvqw\",fonts:[\"GF;DM Mono-300\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7RE0gTW9uby0zMDA=\",\"--framer-font-family\":'\"DM Mono\", monospace',\"--framer-font-size\":\"12px\",\"--framer-font-weight\":\"300\",\"--framer-text-color\":\"var(--token-e11d65ff-264b-4ee0-b1c0-883dfb23f7f4, rgb(245, 245, 245))\"},children:\"\u2022\"})}),className:\"framer-1xze236\",fonts:[\"GF;DM Mono-300\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7RE0gTW9uby0zMDA=\",\"--framer-font-family\":'\"DM Mono\", monospace',\"--framer-font-size\":\"12px\",\"--framer-font-weight\":\"300\",\"--framer-text-color\":\"var(--token-e11d65ff-264b-4ee0-b1c0-883dfb23f7f4, rgb(245, 245, 245))\"},children:\"CASE STUDIES\"})}),className:\"framer-w3ywx6\",fonts:[\"GF;DM Mono-300\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7RE0gTW9uby0zMDA=\",\"--framer-font-family\":'\"DM Mono\", monospace',\"--framer-font-size\":\"12px\",\"--framer-font-weight\":\"300\",\"--framer-text-color\":\"var(--token-e11d65ff-264b-4ee0-b1c0-883dfb23f7f4, rgb(245, 245, 245))\"},children:\"\u2022\"})}),className:\"framer-17jwqmu\",fonts:[\"GF;DM Mono-300\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7RE0gTW9uby0zMDA=\",\"--framer-font-family\":'\"DM Mono\", monospace',\"--framer-font-size\":\"12px\",\"--framer-font-weight\":\"300\",\"--framer-text-color\":\"var(--token-e11d65ff-264b-4ee0-b1c0-883dfb23f7f4, rgb(245, 245, 245))\"},children:\"CASE STUDIES\"})}),className:\"framer-1s0sbwh\",fonts:[\"GF;DM Mono-300\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7RE0gTW9uby0zMDA=\",\"--framer-font-family\":'\"DM Mono\", monospace',\"--framer-font-size\":\"12px\",\"--framer-font-weight\":\"300\",\"--framer-text-color\":\"var(--token-e11d65ff-264b-4ee0-b1c0-883dfb23f7f4, rgb(245, 245, 245))\"},children:\"\u2022\"})}),className:\"framer-1hai0gr\",fonts:[\"GF;DM Mono-300\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7RE0gTW9uby0zMDA=\",\"--framer-font-family\":'\"DM Mono\", monospace',\"--framer-font-size\":\"12px\",\"--framer-font-weight\":\"300\",\"--framer-text-color\":\"var(--token-e11d65ff-264b-4ee0-b1c0-883dfb23f7f4, rgb(245, 245, 245))\"},children:\"CASE STUDIES\"})}),className:\"framer-1dpkk0c\",fonts:[\"GF;DM Mono-300\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7RE0gTW9uby0zMDA=\",\"--framer-font-family\":'\"DM Mono\", monospace',\"--framer-font-size\":\"12px\",\"--framer-font-weight\":\"300\",\"--framer-text-color\":\"var(--token-e11d65ff-264b-4ee0-b1c0-883dfb23f7f4, rgb(245, 245, 245))\"},children:\"\u2022\"})}),className:\"framer-1kaf203\",fonts:[\"GF;DM Mono-300\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7RE0gTW9uby0zMDA=\",\"--framer-font-family\":'\"DM Mono\", monospace',\"--framer-font-size\":\"12px\",\"--framer-font-weight\":\"300\",\"--framer-text-color\":\"var(--token-e11d65ff-264b-4ee0-b1c0-883dfb23f7f4, rgb(245, 245, 245))\"},children:\"CASE STUDIES\"})}),className:\"framer-1w4wth5\",fonts:[\"GF;DM Mono-300\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7RE0gTW9uby0zMDA=\",\"--framer-font-family\":'\"DM Mono\", monospace',\"--framer-font-size\":\"12px\",\"--framer-font-weight\":\"300\",\"--framer-text-color\":\"var(--token-e11d65ff-264b-4ee0-b1c0-883dfb23f7f4, rgb(245, 245, 245))\"},children:\"\u2022\"})}),className:\"framer-116td7k\",fonts:[\"GF;DM Mono-300\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7RE0gTW9uby0zMDA=\",\"--framer-font-family\":'\"DM Mono\", monospace',\"--framer-font-size\":\"12px\",\"--framer-font-weight\":\"300\",\"--framer-text-color\":\"var(--token-e11d65ff-264b-4ee0-b1c0-883dfb23f7f4, rgb(245, 245, 245))\"},children:\"CASE STUDIES\"})}),className:\"framer-1kx07p\",fonts:[\"GF;DM Mono-300\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7RE0gTW9uby0zMDA=\",\"--framer-font-family\":'\"DM Mono\", monospace',\"--framer-font-size\":\"12px\",\"--framer-font-weight\":\"300\",\"--framer-text-color\":\"var(--token-e11d65ff-264b-4ee0-b1c0-883dfb23f7f4, rgb(245, 245, 245))\"},children:\"\u2022\"})}),className:\"framer-1oorg55\",fonts:[\"GF;DM Mono-300\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7RE0gTW9uby0zMDA=\",\"--framer-font-family\":'\"DM Mono\", monospace',\"--framer-font-size\":\"12px\",\"--framer-font-weight\":\"300\",\"--framer-text-color\":\"var(--token-e11d65ff-264b-4ee0-b1c0-883dfb23f7f4, rgb(245, 245, 245))\"},children:\"CASE STUDIES\"})}),className:\"framer-uvt8ow\",fonts:[\"GF;DM Mono-300\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7RE0gTW9uby0zMDA=\",\"--framer-font-family\":'\"DM Mono\", monospace',\"--framer-font-size\":\"12px\",\"--framer-font-weight\":\"300\",\"--framer-text-color\":\"var(--token-e11d65ff-264b-4ee0-b1c0-883dfb23f7f4, rgb(245, 245, 245))\"},children:\"\u2022\"})}),className:\"framer-1ykfstu\",fonts:[\"GF;DM Mono-300\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7RE0gTW9uby0zMDA=\",\"--framer-font-family\":'\"DM Mono\", monospace',\"--framer-font-size\":\"12px\",\"--framer-font-weight\":\"300\",\"--framer-text-color\":\"var(--token-e11d65ff-264b-4ee0-b1c0-883dfb23f7f4, rgb(245, 245, 245))\"},children:\"CASE STUDIES\"})}),className:\"framer-13oivsa\",fonts:[\"GF;DM Mono-300\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7RE0gTW9uby0zMDA=\",\"--framer-font-family\":'\"DM Mono\", monospace',\"--framer-font-size\":\"12px\",\"--framer-font-weight\":\"300\",\"--framer-text-color\":\"var(--token-e11d65ff-264b-4ee0-b1c0-883dfb23f7f4, rgb(245, 245, 245))\"},children:\"\u2022\"})}),className:\"framer-fupt00\",fonts:[\"GF;DM Mono-300\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7RE0gTW9uby0zMDA=\",\"--framer-font-family\":'\"DM Mono\", monospace',\"--framer-font-size\":\"12px\",\"--framer-font-weight\":\"300\",\"--framer-text-color\":\"var(--token-e11d65ff-264b-4ee0-b1c0-883dfb23f7f4, rgb(245, 245, 245))\"},children:\"CASE STUDIES\"})}),className:\"framer-1ft2a2t\",fonts:[\"GF;DM Mono-300\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7RE0gTW9uby0zMDA=\",\"--framer-font-family\":'\"DM Mono\", monospace',\"--framer-font-size\":\"12px\",\"--framer-font-weight\":\"300\",\"--framer-text-color\":\"var(--token-e11d65ff-264b-4ee0-b1c0-883dfb23f7f4, rgb(245, 245, 245))\"},children:\"\u2022\"})}),className:\"framer-1b5tjex\",fonts:[\"GF;DM Mono-300\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7RE0gTW9uby0zMDA=\",\"--framer-font-family\":'\"DM Mono\", monospace',\"--framer-font-size\":\"12px\",\"--framer-font-weight\":\"300\",\"--framer-text-color\":\"var(--token-e11d65ff-264b-4ee0-b1c0-883dfb23f7f4, rgb(245, 245, 245))\"},children:\"CASE STUDIES\"})}),className:\"framer-16aon9r\",fonts:[\"GF;DM Mono-300\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7RE0gTW9uby0zMDA=\",\"--framer-font-family\":'\"DM Mono\", monospace',\"--framer-font-size\":\"12px\",\"--framer-font-weight\":\"300\",\"--framer-text-color\":\"var(--token-e11d65ff-264b-4ee0-b1c0-883dfb23f7f4, rgb(245, 245, 245))\"},children:\"\u2022\"})}),className:\"framer-1acf4a1\",fonts:[\"GF;DM Mono-300\"],verticalAlignment:\"top\",withExternalLayout:true})]})],speed:10,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1tyt0qp\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-13yapp8\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1m2gw3t\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1pogzgu\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-16cyzm3\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7RE0gU2Fucy02MDA=\",\"--framer-font-family\":'\"DM Sans\", \"DM Sans Placeholder\", sans-serif',\"--framer-font-size\":\"35px\",\"--framer-font-weight\":\"600\",\"--framer-text-color\":\"var(--token-89ae68e7-3871-4f62-9f08-6dc31426c705, rgb(23, 23, 23))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"fV1MO0afQ\"},motionChild:true,nodeId:\"rn88zhrMk\",openInNewTab:false,scopeId:\"augiA20Il\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-hf08jf\",\"data-styles-preset\":\"deNhHQehC\",children:\"Data Transparency.\"})})})}),className:\"framer-fke4co\",effect:textEffect3,fonts:[\"GF;DM Sans-600\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-vqhegg\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{D0KjT8elo:{y:undefined},rG6xd9Kgi:{y:(componentViewport?.y||0)+0+2232.4491+0+35+0+0+60+0+0+0+0+0+0+2}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:19,width:\"125px\",y:(componentViewport?.y||0)+0+2200+0+35+0+0+60+0+0+0+0+0+0+2,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1hfgt6c-container\",nodeId:\"kzFIjFSTO\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(HighlightTags,{height:\"100%\",id:\"kzFIjFSTO\",layoutId:\"kzFIjFSTO\",style:{height:\"100%\",width:\"100%\"},variant:\"jcWb_gp7h\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7RE0gTW9uby01MDA=\",\"--framer-font-family\":'\"DM Mono\", monospace',\"--framer-font-weight\":\"500\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(94, 94, 94)\"},children:\"|\"})}),className:\"framer-asuat\",fonts:[\"GF;DM Mono-500\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{D0KjT8elo:{y:undefined},rG6xd9Kgi:{y:(componentViewport?.y||0)+0+2232.4491+0+35+0+0+60+0+0+0+0+0+0+2}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:19,width:\"87px\",y:(componentViewport?.y||0)+0+2200+0+35+0+0+60+0+0+0+0+0+0+2,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1kv204p-container\",nodeId:\"AQuYjBwqu\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Tag,{height:\"100%\",id:\"AQuYjBwqu\",layoutId:\"AQuYjBwqu\",style:{height:\"100%\",width:\"100%\"},variant:\"MVAstTkOV\",width:\"100%\"})})})})]})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{D0KjT8elo:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7RE0gU2Fucy1yZWd1bGFy\",\"--framer-font-family\":'\"DM Sans\", \"DM Sans Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-89ae68e7-3871-4f62-9f08-6dc31426c705, rgb(23, 23, 23))\"},children:\"Transforming Apple's legal website to transfer power back to the user.\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7RE0gU2Fucy1yZWd1bGFy\",\"--framer-font-family\":'\"DM Sans\", \"DM Sans Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-89ae68e7-3871-4f62-9f08-6dc31426c705, rgb(23, 23, 23))\"},children:\"Transforming Apple's legal website to transfer power back to the user.\"})}),className:\"framer-1fivlt2\",fonts:[\"GF;DM Sans-regular\"],verticalAlignment:\"top\",withExternalLayout:true})})]})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1ctjkl3\",children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"fV1MO0afQ\"},motionChild:true,nodeId:\"F357MEiHg\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(MotionAWithFX,{__framer__animate:{transition:transition4},__framer__animateOnce:false,__framer__enter:animation5,__framer__exit:animation6,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1dlzxp3 framer-lux5qc\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{D0KjT8elo:{background:{alt:\"\",fit:\"fill\",pixelHeight:2070,pixelWidth:2761,positionX:\"center\",positionY:\"center\",sizes:`calc((${componentViewport?.width||\"100vw\"} - 40px) * 0.9989)`,src:\"https://framerusercontent.com/images/z7jZS22qQpJxd3DLU1b1UD8KOM.png\",srcSet:\"https://framerusercontent.com/images/z7jZS22qQpJxd3DLU1b1UD8KOM.png?scale-down-to=512 512w,https://framerusercontent.com/images/z7jZS22qQpJxd3DLU1b1UD8KOM.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/z7jZS22qQpJxd3DLU1b1UD8KOM.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/z7jZS22qQpJxd3DLU1b1UD8KOM.png 2761w\"}},rG6xd9Kgi:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+2232.4491+0+35+0+0+60+162+20+0),pixelHeight:2070,pixelWidth:2761,positionX:\"center\",positionY:\"center\",sizes:`calc((${componentViewport?.width||\"100vw\"} - 120px) * 0.9989)`,src:\"https://framerusercontent.com/images/z7jZS22qQpJxd3DLU1b1UD8KOM.png\",srcSet:\"https://framerusercontent.com/images/z7jZS22qQpJxd3DLU1b1UD8KOM.png?scale-down-to=512 512w,https://framerusercontent.com/images/z7jZS22qQpJxd3DLU1b1UD8KOM.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/z7jZS22qQpJxd3DLU1b1UD8KOM.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/z7jZS22qQpJxd3DLU1b1UD8KOM.png 2761w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+2200+0+35+0+0+60+177+20+0),pixelHeight:2070,pixelWidth:2761,positionX:\"center\",positionY:\"center\",sizes:`calc((${componentViewport?.width||\"100vw\"} - 300px) * 0.9989)`,src:\"https://framerusercontent.com/images/z7jZS22qQpJxd3DLU1b1UD8KOM.png\",srcSet:\"https://framerusercontent.com/images/z7jZS22qQpJxd3DLU1b1UD8KOM.png?scale-down-to=512 512w,https://framerusercontent.com/images/z7jZS22qQpJxd3DLU1b1UD8KOM.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/z7jZS22qQpJxd3DLU1b1UD8KOM.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/z7jZS22qQpJxd3DLU1b1UD8KOM.png 2761w\"},className:\"framer-zaqcpr\"})})})})})]})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-19yl6vp\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1vuvf4x\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1fqkzau\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-jpj1g6\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7RE0gU2Fucy02MDA=\",\"--framer-font-family\":'\"DM Sans\", \"DM Sans Placeholder\", sans-serif',\"--framer-font-size\":\"35px\",\"--framer-font-weight\":\"600\",\"--framer-text-color\":\"var(--token-89ae68e7-3871-4f62-9f08-6dc31426c705, rgb(23, 23, 23))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"bKUPfy0Eb\"},motionChild:true,nodeId:\"VLr2VwaeS\",openInNewTab:false,scopeId:\"augiA20Il\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-tx8ip8\",\"data-styles-preset\":\"XioHVhkYD\",children:\"Netflix Redesign\"})})})}),className:\"framer-uro7v3\",effect:textEffect3,fonts:[\"GF;DM Sans-600\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-lkdnmg\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{D0KjT8elo:{y:undefined},rG6xd9Kgi:{y:(componentViewport?.y||0)+0+2232.4491+0+814+0+0+60+0+0+0+9.5+2}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:19,width:\"77px\",y:(componentViewport?.y||0)+0+2200+0+829+0+0+60+0+0+0+9.5+2,children:/*#__PURE__*/_jsx(Container,{className:\"framer-mtn7ch-container\",nodeId:\"ZWgWf_prO\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Tag1,{height:\"100%\",id:\"ZWgWf_prO\",layoutId:\"ZWgWf_prO\",style:{height:\"100%\",width:\"100%\"},variant:\"tudS5Wpmz\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7RE0gTW9uby01MDA=\",\"--framer-font-family\":'\"DM Mono\", monospace',\"--framer-font-weight\":\"500\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(94, 94, 94)\"},children:\"|\"})}),className:\"framer-1jj45hm\",fonts:[\"GF;DM Mono-500\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{D0KjT8elo:{y:undefined},rG6xd9Kgi:{y:(componentViewport?.y||0)+0+2232.4491+0+814+0+0+60+0+0+0+9.5+2}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:19,width:\"86px\",y:(componentViewport?.y||0)+0+2200+0+829+0+0+60+0+0+0+9.5+2,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1kr05zp-container\",nodeId:\"vq12lZfRw\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Tag2,{height:\"100%\",id:\"vq12lZfRw\",layoutId:\"vq12lZfRw\",style:{height:\"100%\",width:\"100%\"},variant:\"Bq2egSFfL\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7RE0gTW9uby01MDA=\",\"--framer-font-family\":'\"DM Mono\", monospace',\"--framer-font-weight\":\"500\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(94, 94, 94)\"},children:\"|\"})}),className:\"framer-180hkxg\",fonts:[\"GF;DM Mono-500\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{D0KjT8elo:{y:undefined},rG6xd9Kgi:{y:(componentViewport?.y||0)+0+2232.4491+0+814+0+0+60+0+0+0+9.5+2}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:19,width:\"116px\",y:(componentViewport?.y||0)+0+2200+0+829+0+0+60+0+0+0+9.5+2,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1nfzxjl-container\",nodeId:\"qN2oI1H1n\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Tag3,{height:\"100%\",id:\"qN2oI1H1n\",layoutId:\"qN2oI1H1n\",style:{height:\"100%\",width:\"100%\"},variant:\"ekRpefcwo\",width:\"100%\"})})})})]})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{D0KjT8elo:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"R0Y7RE0gU2Fucy1yZWd1bGFy\",\"--framer-font-family\":'\"DM Sans\", \"DM Sans Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-89ae68e7-3871-4f62-9f08-6dc31426c705, rgb(23, 23, 23))\"},children:[\"Encouraging \",/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"R0Y7RE0gU2Fucy02MDA=\",\"--framer-font-weight\":\"600\"},children:\"mindfulness\"}),\" and \",/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"R0Y7RE0gU2Fucy02MDA=\",\"--framer-font-weight\":\"600\"},children:\"reflection\"}),\" in streaming services.\"]})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"R0Y7RE0gU2Fucy1yZWd1bGFy\",\"--framer-font-family\":'\"DM Sans\", \"DM Sans Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-89ae68e7-3871-4f62-9f08-6dc31426c705, rgb(23, 23, 23))\"},children:[\"Encouraging \",/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"R0Y7RE0gU2Fucy02MDA=\",\"--framer-font-weight\":\"600\"},children:\"mindfulness\"}),\" and \",/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"R0Y7RE0gU2Fucy02MDA=\",\"--framer-font-weight\":\"600\"},children:\"reflection\"}),\" in streaming services.\"]})}),className:\"framer-cdiuit\",fonts:[\"GF;DM Sans-regular\",\"GF;DM Sans-600\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-xo90bd\",children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"bKUPfy0Eb\"},motionChild:true,nodeId:\"jW1DNgQAk\",openInNewTab:false,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-ubygas framer-lux5qc\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{D0KjT8elo:{background:{alt:\"\",fit:\"fill\",pixelHeight:732,pixelWidth:1084,positionX:\"center\",positionY:\"center\",sizes:`calc((${componentViewport?.width||\"100vw\"} - 40px) * 0.9989)`,src:\"https://framerusercontent.com/images/ZjIpnvbWaEcCsMpBUgfE0RFX2kE.png\",srcSet:\"https://framerusercontent.com/images/ZjIpnvbWaEcCsMpBUgfE0RFX2kE.png?scale-down-to=512 512w,https://framerusercontent.com/images/ZjIpnvbWaEcCsMpBUgfE0RFX2kE.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/ZjIpnvbWaEcCsMpBUgfE0RFX2kE.png 1084w\"}},rG6xd9Kgi:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+2232.4491+0+814+0+0+60+187+20+0),pixelHeight:732,pixelWidth:1084,positionX:\"center\",positionY:\"center\",sizes:`calc((${componentViewport?.width||\"100vw\"} - 120px) * 0.9989)`,src:\"https://framerusercontent.com/images/ZjIpnvbWaEcCsMpBUgfE0RFX2kE.png\",srcSet:\"https://framerusercontent.com/images/ZjIpnvbWaEcCsMpBUgfE0RFX2kE.png?scale-down-to=512 512w,https://framerusercontent.com/images/ZjIpnvbWaEcCsMpBUgfE0RFX2kE.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/ZjIpnvbWaEcCsMpBUgfE0RFX2kE.png 1084w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+2200+0+829+0+0+60+187+20+0),pixelHeight:732,pixelWidth:1084,positionX:\"center\",positionY:\"center\",sizes:`calc((${componentViewport?.width||\"100vw\"} - 300px) * 0.9989)`,src:\"https://framerusercontent.com/images/ZjIpnvbWaEcCsMpBUgfE0RFX2kE.png\",srcSet:\"https://framerusercontent.com/images/ZjIpnvbWaEcCsMpBUgfE0RFX2kE.png?scale-down-to=512 512w,https://framerusercontent.com/images/ZjIpnvbWaEcCsMpBUgfE0RFX2kE.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/ZjIpnvbWaEcCsMpBUgfE0RFX2kE.png 1084w\"},className:\"framer-phmzx\"})})})})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-kg0pjt\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1jnh70x\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-cm0fwq\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7RE0gU2Fucy02MDA=\",\"--framer-font-family\":'\"DM Sans\", \"DM Sans Placeholder\", sans-serif',\"--framer-font-size\":\"35px\",\"--framer-font-weight\":\"600\",\"--framer-text-color\":\"var(--token-89ae68e7-3871-4f62-9f08-6dc31426c705, rgb(23, 23, 23))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"JtddLiOJ5\"},motionChild:true,nodeId:\"YAv5a26F_\",openInNewTab:false,scopeId:\"augiA20Il\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-ke0ckq\",\"data-styles-preset\":\"vwd1WaVIb\",children:\"ENVY\"})})})}),className:\"framer-3mzxkf\",effect:textEffect3,fonts:[\"GF;DM Sans-600\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-b5rwg7\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1joygoj\",\"data-framer-name\":\"tag\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{D0KjT8elo:{y:undefined},rG6xd9Kgi:{y:(componentViewport?.y||0)+0+2232.4491+0+814+0+814+60+0+0+0+9.5+2+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:19,width:\"154px\",y:(componentViewport?.y||0)+0+2200+0+829+0+814+60+0+0+0+9.5+2+0+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-utywv0-container\",nodeId:\"s4gmJltxF\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Tag4,{height:\"100%\",id:\"s4gmJltxF\",layoutId:\"s4gmJltxF\",style:{height:\"100%\",width:\"100%\"},variant:\"HM9xbFWyJ\",width:\"100%\"})})})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7RE0gTW9uby01MDA=\",\"--framer-font-family\":'\"DM Mono\", monospace',\"--framer-font-weight\":\"500\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(94, 94, 94)\"},children:\"|\"})}),className:\"framer-l8h8sa\",fonts:[\"GF;DM Mono-500\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-17m8cc7\",\"data-framer-name\":\"tag\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{D0KjT8elo:{y:undefined},rG6xd9Kgi:{y:(componentViewport?.y||0)+0+2232.4491+0+814+0+814+60+0+0+0+9.5+2+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:19,width:\"77px\",y:(componentViewport?.y||0)+0+2200+0+829+0+814+60+0+0+0+9.5+2+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1e4hrix-container\",nodeId:\"SdmKudJjI\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Tag5,{height:\"100%\",id:\"SdmKudJjI\",layoutId:\"SdmKudJjI\",style:{height:\"100%\",width:\"100%\"},variant:\"IV9nCOwco\",width:\"100%\"})})})})})]})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{D0KjT8elo:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"R0Y7RE0gU2Fucy1yZWd1bGFy\",\"--framer-font-family\":'\"DM Sans\", \"DM Sans Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-89ae68e7-3871-4f62-9f08-6dc31426c705, rgb(23, 23, 23))\"},children:[\"Creating a \",/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"R0Y7RE0gU2Fucy03MDA=\",\"--framer-font-weight\":\"700\"},children:\"dynamic visual identity\"}),\" from concepts.\"]})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"R0Y7RE0gU2Fucy1yZWd1bGFy\",\"--framer-font-family\":'\"DM Sans\", \"DM Sans Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-89ae68e7-3871-4f62-9f08-6dc31426c705, rgb(23, 23, 23))\"},children:[\"Creating a \",/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"R0Y7RE0gU2Fucy03MDA=\",\"--framer-font-weight\":\"700\"},children:\"dynamic visual identity\"}),\" from concepts.\"]})}),className:\"framer-1i9mtan\",fonts:[\"GF;DM Sans-regular\",\"GF;DM Sans-700\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1u137yw\",children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"JtddLiOJ5\"},motionChild:true,nodeId:\"M7eT5oadC\",openInNewTab:false,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-ps7y38 framer-lux5qc\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{D0KjT8elo:{background:{alt:\"\",fit:\"fill\",pixelHeight:1126,pixelWidth:1501,positionX:\"center\",positionY:\"center\",sizes:`calc((${componentViewport?.width||\"100vw\"} - 40px) * 0.9989)`,src:\"https://framerusercontent.com/images/pTs0dyW2t5iPgL86Nsq2SdIRw.png\",srcSet:\"https://framerusercontent.com/images/pTs0dyW2t5iPgL86Nsq2SdIRw.png?scale-down-to=512 512w,https://framerusercontent.com/images/pTs0dyW2t5iPgL86Nsq2SdIRw.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/pTs0dyW2t5iPgL86Nsq2SdIRw.png 1501w\"}},rG6xd9Kgi:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+2232.4491+0+814+0+814+60+187+20+0),pixelHeight:1126,pixelWidth:1501,positionX:\"center\",positionY:\"center\",sizes:`calc((${componentViewport?.width||\"100vw\"} - 120px) * 0.9989)`,src:\"https://framerusercontent.com/images/pTs0dyW2t5iPgL86Nsq2SdIRw.png\",srcSet:\"https://framerusercontent.com/images/pTs0dyW2t5iPgL86Nsq2SdIRw.png?scale-down-to=512 512w,https://framerusercontent.com/images/pTs0dyW2t5iPgL86Nsq2SdIRw.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/pTs0dyW2t5iPgL86Nsq2SdIRw.png 1501w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+2200+0+829+0+814+60+187+20+0),pixelHeight:1126,pixelWidth:1501,positionX:\"center\",positionY:\"center\",sizes:`calc((${componentViewport?.width||\"100vw\"} - 300px) * 0.9989)`,src:\"https://framerusercontent.com/images/pTs0dyW2t5iPgL86Nsq2SdIRw.png\",srcSet:\"https://framerusercontent.com/images/pTs0dyW2t5iPgL86Nsq2SdIRw.png?scale-down-to=512 512w,https://framerusercontent.com/images/pTs0dyW2t5iPgL86Nsq2SdIRw.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/pTs0dyW2t5iPgL86Nsq2SdIRw.png 1501w\"},className:\"framer-497jsi\"})})})})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1jcqczc\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1jwei3e\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-c5tei5\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7RE0gU2Fucy02MDA=\",\"--framer-font-family\":'\"DM Sans\", \"DM Sans Placeholder\", sans-serif',\"--framer-font-size\":\"35px\",\"--framer-font-weight\":\"600\",\"--framer-text-color\":\"var(--token-89ae68e7-3871-4f62-9f08-6dc31426c705, rgb(23, 23, 23))\"},children:\"Replate\"})}),className:\"framer-101dcwt\",effect:textEffect3,fonts:[\"GF;DM Sans-600\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-10rltdy\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-ba57kb\",\"data-framer-name\":\"tag\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-192s5uc\",\"data-framer-name\":\"tag\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{D0KjT8elo:{y:undefined},rG6xd9Kgi:{y:(componentViewport?.y||0)+0+2232.4491+0+814+0+1688+60+0+0+0+9.5+2+0+0+-.5}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:20,y:(componentViewport?.y||0)+0+2200+0+829+0+1688+60+0+0+0+9.5+2+0+0+-.5,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1vdiufo-container\",nodeId:\"gJkcgC6wt\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Tag6,{height:\"100%\",id:\"gJkcgC6wt\",layoutId:\"gJkcgC6wt\",style:{height:\"100%\"},variant:\"TfBsm4V7O\",width:\"100%\"})})})})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7RE0gTW9uby01MDA=\",\"--framer-font-family\":'\"DM Mono\", monospace',\"--framer-font-weight\":\"500\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(94, 94, 94)\"},children:\"|\"})}),className:\"framer-1b1ms0a\",fonts:[\"GF;DM Mono-500\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-19fvvha\",\"data-framer-name\":\"tag\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-xx3mto\",\"data-framer-name\":\"tag\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{D0KjT8elo:{y:undefined},rG6xd9Kgi:{y:(componentViewport?.y||0)+0+2232.4491+0+814+0+1688+60+0+0+0+9.5+2+0+0+-.5}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:20,y:(componentViewport?.y||0)+0+2200+0+829+0+1688+60+0+0+0+9.5+2+0+0+-.5,children:/*#__PURE__*/_jsx(Container,{className:\"framer-6vehf4-container\",nodeId:\"LxA09zlki\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(TAG,{height:\"100%\",id:\"LxA09zlki\",layoutId:\"LxA09zlki\",style:{height:\"100%\"},variant:\"rxQOAdm_v\",width:\"100%\"})})})})})})]})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{D0KjT8elo:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7RE0gU2Fucy1yZWd1bGFy\",\"--framer-font-family\":'\"DM Sans\", \"DM Sans Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-89ae68e7-3871-4f62-9f08-6dc31426c705, rgb(23, 23, 23))\"},children:\"Coming Soon!\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7RE0gU2Fucy1yZWd1bGFy\",\"--framer-font-family\":'\"DM Sans\", \"DM Sans Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-89ae68e7-3871-4f62-9f08-6dc31426c705, rgb(23, 23, 23))\"},children:\"Coming Soon!\"})}),className:\"framer-76zox6\",fonts:[\"GF;DM Sans-regular\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-af5m0c\",children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"JtddLiOJ5\"},motionChild:true,nodeId:\"wNZLIH7z6\",openInNewTab:false,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-8wkjr framer-lux5qc\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{D0KjT8elo:{background:{alt:\"\",fit:\"fill\",pixelHeight:2250,pixelWidth:3e3,sizes:`calc((${componentViewport?.width||\"100vw\"} - 40px) * 0.9989)`,src:\"https://framerusercontent.com/images/YfxNG0vsJyAtkwlecrbmanhfHU.png\",srcSet:\"https://framerusercontent.com/images/YfxNG0vsJyAtkwlecrbmanhfHU.png?scale-down-to=512 512w,https://framerusercontent.com/images/YfxNG0vsJyAtkwlecrbmanhfHU.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/YfxNG0vsJyAtkwlecrbmanhfHU.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/YfxNG0vsJyAtkwlecrbmanhfHU.png 3000w\"}},rG6xd9Kgi:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+2232.4491+0+814+0+1688+60+187+20+0),pixelHeight:2250,pixelWidth:3e3,sizes:`calc((${componentViewport?.width||\"100vw\"} - 120px) * 0.9989)`,src:\"https://framerusercontent.com/images/YfxNG0vsJyAtkwlecrbmanhfHU.png\",srcSet:\"https://framerusercontent.com/images/YfxNG0vsJyAtkwlecrbmanhfHU.png?scale-down-to=512 512w,https://framerusercontent.com/images/YfxNG0vsJyAtkwlecrbmanhfHU.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/YfxNG0vsJyAtkwlecrbmanhfHU.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/YfxNG0vsJyAtkwlecrbmanhfHU.png 3000w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+2200+0+829+0+1688+60+187+20+0),pixelHeight:2250,pixelWidth:3e3,sizes:`calc((${componentViewport?.width||\"100vw\"} - 300px) * 0.9989)`,src:\"https://framerusercontent.com/images/YfxNG0vsJyAtkwlecrbmanhfHU.png\",srcSet:\"https://framerusercontent.com/images/YfxNG0vsJyAtkwlecrbmanhfHU.png?scale-down-to=512 512w,https://framerusercontent.com/images/YfxNG0vsJyAtkwlecrbmanhfHU.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/YfxNG0vsJyAtkwlecrbmanhfHU.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/YfxNG0vsJyAtkwlecrbmanhfHU.png 3000w\"},className:\"framer-hjzine\",\"data-framer-name\":\"iPhone 16\"})})})})})]})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1icn82h\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-odlzxc-container\",isModuleExternal:true,nodeId:\"R3bxkMDop\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Ticker1,{alignment:\"center\",direction:\"left\",fadeOptions:{fadeAlpha:0,fadeContent:true,fadeInset:0,fadeWidth:0,overflow:false},gap:0,height:\"100%\",hoverFactor:1,id:\"R3bxkMDop\",layoutId:\"R3bxkMDop\",padding:0,paddingBottom:0,paddingLeft:0,paddingPerSide:false,paddingRight:0,paddingTop:0,sizingOptions:{heightType:true,widthType:true},slots:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1psqm2f\",\"data-border\":true,children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7RE0gTW9uby0zMDA=\",\"--framer-font-family\":'\"DM Mono\", monospace',\"--framer-font-size\":\"12px\",\"--framer-font-weight\":\"300\",\"--framer-text-color\":\"var(--token-e11d65ff-264b-4ee0-b1c0-883dfb23f7f4, rgb(245, 245, 245))\"},children:\"LOOKING FOR MORE?\"})}),className:\"framer-1uxg2jx\",fonts:[\"GF;DM Mono-300\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7RE0gTW9uby0zMDA=\",\"--framer-font-family\":'\"DM Mono\", monospace',\"--framer-font-size\":\"12px\",\"--framer-font-weight\":\"300\",\"--framer-text-color\":\"var(--token-e11d65ff-264b-4ee0-b1c0-883dfb23f7f4, rgb(245, 245, 245))\"},children:\"\u2022\"})}),className:\"framer-9ekt4w\",fonts:[\"GF;DM Mono-300\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"R0Y7RE0gTW9uby0zMDA=\",\"--framer-font-family\":'\"DM Mono\", monospace',\"--framer-font-size\":\"12px\",\"--framer-font-weight\":\"300\",\"--framer-text-color\":\"var(--token-e11d65ff-264b-4ee0-b1c0-883dfb23f7f4, rgb(245, 245, 245))\"},children:[\"EXPLORE SOME WORK FROM MY \",/*#__PURE__*/_jsx(Link,{href:{webPageId:\"j1fx9wvCE\"},motionChild:true,nodeId:\"k4IjiuGne\",openInNewTab:false,scopeId:\"augiA20Il\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-15glw1p\",\"data-styles-preset\":\"JRSYUHtY_\",children:\"PLAYGROUND\"})}),\"!\"]})}),className:\"framer-14n4l8k\",fonts:[\"GF;DM Mono-300\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7RE0gTW9uby0zMDA=\",\"--framer-font-family\":'\"DM Mono\", monospace',\"--framer-font-size\":\"12px\",\"--framer-font-weight\":\"300\",\"--framer-text-color\":\"var(--token-e11d65ff-264b-4ee0-b1c0-883dfb23f7f4, rgb(245, 245, 245))\"},children:\"\u2022\"})}),className:\"framer-14yvihm\",fonts:[\"GF;DM Mono-300\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7RE0gTW9uby0zMDA=\",\"--framer-font-family\":'\"DM Mono\", monospace',\"--framer-font-size\":\"12px\",\"--framer-font-weight\":\"300\",\"--framer-text-color\":\"var(--token-e11d65ff-264b-4ee0-b1c0-883dfb23f7f4, rgb(245, 245, 245))\"},children:\"LOOKING FOR MORE?\"})}),className:\"framer-1kqlafk\",fonts:[\"GF;DM Mono-300\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7RE0gTW9uby0zMDA=\",\"--framer-font-family\":'\"DM Mono\", monospace',\"--framer-font-size\":\"12px\",\"--framer-font-weight\":\"300\",\"--framer-text-color\":\"var(--token-e11d65ff-264b-4ee0-b1c0-883dfb23f7f4, rgb(245, 245, 245))\"},children:\"\u2022\"})}),className:\"framer-1bqtw73\",fonts:[\"GF;DM Mono-300\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"R0Y7RE0gTW9uby0zMDA=\",\"--framer-font-family\":'\"DM Mono\", monospace',\"--framer-font-size\":\"12px\",\"--framer-font-weight\":\"300\",\"--framer-text-color\":\"var(--token-e11d65ff-264b-4ee0-b1c0-883dfb23f7f4, rgb(245, 245, 245))\"},children:[\"EXPLORE SOME WORK FROM MY \",/*#__PURE__*/_jsx(Link,{href:{webPageId:\"j1fx9wvCE\"},motionChild:true,nodeId:\"P2LY0JxEN\",openInNewTab:false,scopeId:\"augiA20Il\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-15glw1p\",\"data-styles-preset\":\"JRSYUHtY_\",children:\"PLAYGROUND\"})}),\"!\"]})}),className:\"framer-i2lm1a\",fonts:[\"GF;DM Mono-300\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7RE0gTW9uby0zMDA=\",\"--framer-font-family\":'\"DM Mono\", monospace',\"--framer-font-size\":\"12px\",\"--framer-font-weight\":\"300\",\"--framer-text-color\":\"var(--token-e11d65ff-264b-4ee0-b1c0-883dfb23f7f4, rgb(245, 245, 245))\"},children:\"\u2022\"})}),className:\"framer-eqx2py\",fonts:[\"GF;DM Mono-300\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7RE0gTW9uby0zMDA=\",\"--framer-font-family\":'\"DM Mono\", monospace',\"--framer-font-size\":\"12px\",\"--framer-font-weight\":\"300\",\"--framer-text-color\":\"var(--token-e11d65ff-264b-4ee0-b1c0-883dfb23f7f4, rgb(245, 245, 245))\"},children:\"LOOKING FOR MORE?\"})}),className:\"framer-1o9400m\",fonts:[\"GF;DM Mono-300\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7RE0gTW9uby0zMDA=\",\"--framer-font-family\":'\"DM Mono\", monospace',\"--framer-font-size\":\"12px\",\"--framer-font-weight\":\"300\",\"--framer-text-color\":\"var(--token-e11d65ff-264b-4ee0-b1c0-883dfb23f7f4, rgb(245, 245, 245))\"},children:\"\u2022\"})}),className:\"framer-1sxdzj9\",fonts:[\"GF;DM Mono-300\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"R0Y7RE0gTW9uby0zMDA=\",\"--framer-font-family\":'\"DM Mono\", monospace',\"--framer-font-size\":\"12px\",\"--framer-font-weight\":\"300\",\"--framer-text-color\":\"var(--token-e11d65ff-264b-4ee0-b1c0-883dfb23f7f4, rgb(245, 245, 245))\"},children:[\"EXPLORE SOME WORK FROM MY \",/*#__PURE__*/_jsx(Link,{href:{webPageId:\"j1fx9wvCE\"},motionChild:true,nodeId:\"pPcTYmz9G\",openInNewTab:false,scopeId:\"augiA20Il\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-15glw1p\",\"data-styles-preset\":\"JRSYUHtY_\",children:\"PLAYGROUND\"})}),\"!\"]})}),className:\"framer-2t9y5\",fonts:[\"GF;DM Mono-300\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7RE0gTW9uby0zMDA=\",\"--framer-font-family\":'\"DM Mono\", monospace',\"--framer-font-size\":\"12px\",\"--framer-font-weight\":\"300\",\"--framer-text-color\":\"var(--token-e11d65ff-264b-4ee0-b1c0-883dfb23f7f4, rgb(245, 245, 245))\"},children:\"\u2022\"})}),className:\"framer-91kidt\",fonts:[\"GF;DM Mono-300\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7RE0gTW9uby0zMDA=\",\"--framer-font-family\":'\"DM Mono\", monospace',\"--framer-font-size\":\"12px\",\"--framer-font-weight\":\"300\",\"--framer-text-color\":\"var(--token-e11d65ff-264b-4ee0-b1c0-883dfb23f7f4, rgb(245, 245, 245))\"},children:\"LOOKING FOR MORE?\"})}),className:\"framer-1m9iv47\",fonts:[\"GF;DM Mono-300\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7RE0gTW9uby0zMDA=\",\"--framer-font-family\":'\"DM Mono\", monospace',\"--framer-font-size\":\"12px\",\"--framer-font-weight\":\"300\",\"--framer-text-color\":\"var(--token-e11d65ff-264b-4ee0-b1c0-883dfb23f7f4, rgb(245, 245, 245))\"},children:\"\u2022\"})}),className:\"framer-19xsctx\",fonts:[\"GF;DM Mono-300\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"R0Y7RE0gTW9uby0zMDA=\",\"--framer-font-family\":'\"DM Mono\", monospace',\"--framer-font-size\":\"12px\",\"--framer-font-weight\":\"300\",\"--framer-text-color\":\"var(--token-e11d65ff-264b-4ee0-b1c0-883dfb23f7f4, rgb(245, 245, 245))\"},children:[\"EXPLORE SOME WORK FROM MY \",/*#__PURE__*/_jsx(Link,{href:{webPageId:\"j1fx9wvCE\"},motionChild:true,nodeId:\"ZIrvpK3HN\",openInNewTab:false,scopeId:\"augiA20Il\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-15glw1p\",\"data-styles-preset\":\"JRSYUHtY_\",children:\"PLAYGROUND\"})}),\"!\"]})}),className:\"framer-1ll05fz\",fonts:[\"GF;DM Mono-300\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7RE0gTW9uby0zMDA=\",\"--framer-font-family\":'\"DM Mono\", monospace',\"--framer-font-size\":\"12px\",\"--framer-font-weight\":\"300\",\"--framer-text-color\":\"var(--token-e11d65ff-264b-4ee0-b1c0-883dfb23f7f4, rgb(245, 245, 245))\"},children:\"\u2022\"})}),className:\"framer-5i2sgy\",fonts:[\"GF;DM Mono-300\"],verticalAlignment:\"top\",withExternalLayout:true})]})],speed:10,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-2bdbwd-container\",isModuleExternal:true,nodeId:\"w3DOUTdRv\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{D0KjT8elo:{paddingBottom:10,paddingLeft:10,paddingRight:10},rG6xd9Kgi:{paddingBottom:10,paddingLeft:10,paddingRight:10}},children:/*#__PURE__*/_jsx(Ticker1,{alignment:\"center\",direction:\"left\",fadeOptions:{fadeAlpha:0,fadeContent:true,fadeInset:0,fadeWidth:25,overflow:false},gap:10,height:\"100%\",hoverFactor:1,id:\"w3DOUTdRv\",layoutId:\"w3DOUTdRv\",padding:10,paddingBottom:0,paddingLeft:150,paddingPerSide:true,paddingRight:150,paddingTop:10,sizingOptions:{heightType:true,widthType:true},slots:[/*#__PURE__*/_jsx(Link,{href:{webPageId:\"h53SzRUXa\"},motionChild:true,nodeId:\"bQQYB2lcZ\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsxs(motion.a,{className:\"framer-xz8h21 framer-lux5qc\",\"data-framer-name\":\"infographics\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:1342,pixelWidth:1377,sizes:\"500px\",src:\"https://framerusercontent.com/images/UquXrUPvcAYQzuWWC6QA1Gcy97Y.png\",srcSet:\"https://framerusercontent.com/images/UquXrUPvcAYQzuWWC6QA1Gcy97Y.png?scale-down-to=512 512w,https://framerusercontent.com/images/UquXrUPvcAYQzuWWC6QA1Gcy97Y.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/UquXrUPvcAYQzuWWC6QA1Gcy97Y.png 1377w\"},className:\"framer-nt8j43\"}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-15f8g5v\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7RE0gU2Fucy0yMDA=\",\"--framer-font-family\":'\"DM Sans\", sans-serif',\"--framer-font-size\":\"50px\",\"--framer-font-weight\":\"200\",\"--framer-text-color\":\"var(--token-e11d65ff-264b-4ee0-b1c0-883dfb23f7f4, rgb(245, 245, 245))\"},children:\"Infographics\"})}),className:\"framer-1wgidtj\",fonts:[\"GF;DM Sans-200\"],transformTemplate:transformTemplate3,verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:490,intrinsicWidth:490,pixelHeight:980,pixelWidth:980,sizes:\"163px\",src:\"https://framerusercontent.com/images/wizNXpm01ETq9qgGabvKdKWB7k4.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/wizNXpm01ETq9qgGabvKdKWB7k4.png?scale-down-to=512 512w,https://framerusercontent.com/images/wizNXpm01ETq9qgGabvKdKWB7k4.png 980w\"},className:\"framer-9xg6ft\",\"data-framer-name\":\"Image\",style:{rotate:140}}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:490,intrinsicWidth:490,pixelHeight:980,pixelWidth:980,sizes:\"163px\",src:\"https://framerusercontent.com/images/wizNXpm01ETq9qgGabvKdKWB7k4.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/wizNXpm01ETq9qgGabvKdKWB7k4.png?scale-down-to=512 512w,https://framerusercontent.com/images/wizNXpm01ETq9qgGabvKdKWB7k4.png 980w\"},className:\"framer-185p91x\",\"data-framer-name\":\"Image\",style:{rotate:140}})]})}),/*#__PURE__*/_jsx(Link,{href:{webPageId:\"wOGyAdS1M\"},motionChild:true,nodeId:\"hti9Ra0iw\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsxs(motion.a,{className:\"framer-lv85jh framer-lux5qc\",\"data-framer-name\":\"3d modelling\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:801,pixelWidth:801,sizes:\"500px\",src:\"https://framerusercontent.com/images/TPgSkfiDVPvn7cvahjoolqzu1U.png\",srcSet:\"https://framerusercontent.com/images/TPgSkfiDVPvn7cvahjoolqzu1U.png?scale-down-to=512 512w,https://framerusercontent.com/images/TPgSkfiDVPvn7cvahjoolqzu1U.png 801w\"},className:\"framer-138s3ch\"}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-spi488\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7RE0gU2Fucy0yMDA=\",\"--framer-font-family\":'\"DM Sans\", sans-serif',\"--framer-font-size\":\"50px\",\"--framer-font-weight\":\"200\",\"--framer-text-color\":\"var(--token-e11d65ff-264b-4ee0-b1c0-883dfb23f7f4, rgb(245, 245, 245))\"},children:\"3D Modelling\"})}),className:\"framer-1m7b3se\",fonts:[\"GF;DM Sans-200\"],transformTemplate:transformTemplate3,verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:490,intrinsicWidth:490,pixelHeight:980,pixelWidth:980,sizes:\"163px\",src:\"https://framerusercontent.com/images/wizNXpm01ETq9qgGabvKdKWB7k4.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/wizNXpm01ETq9qgGabvKdKWB7k4.png?scale-down-to=512 512w,https://framerusercontent.com/images/wizNXpm01ETq9qgGabvKdKWB7k4.png 980w\"},className:\"framer-qjmz0t\",\"data-framer-name\":\"Image\",style:{rotate:140}}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:490,intrinsicWidth:490,pixelHeight:980,pixelWidth:980,sizes:\"163px\",src:\"https://framerusercontent.com/images/wizNXpm01ETq9qgGabvKdKWB7k4.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/wizNXpm01ETq9qgGabvKdKWB7k4.png?scale-down-to=512 512w,https://framerusercontent.com/images/wizNXpm01ETq9qgGabvKdKWB7k4.png 980w\"},className:\"framer-86uqbe\",\"data-framer-name\":\"Image\",style:{rotate:140}})]})}),/*#__PURE__*/_jsx(Link,{href:{webPageId:\"zYRKUSa2S\"},motionChild:true,nodeId:\"MdIP_Joeh\",openInNewTab:false,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsxs(motion.a,{className:\"framer-1rywv67 framer-lux5qc\",\"data-framer-name\":\"logo development\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:500,width:\"500px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-9963bh-container\",inComponentSlot:true,nodeId:\"N_9EvKUY5\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Logos,{height:\"100%\",id:\"N_9EvKUY5\",layoutId:\"N_9EvKUY5\",style:{height:\"100%\",width:\"100%\"},variant:\"Crw5j_OTC\",width:\"100%\"})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1689n1s\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:490,intrinsicWidth:490,pixelHeight:980,pixelWidth:980,sizes:\"163px\",src:\"https://framerusercontent.com/images/wizNXpm01ETq9qgGabvKdKWB7k4.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/wizNXpm01ETq9qgGabvKdKWB7k4.png?scale-down-to=512 512w,https://framerusercontent.com/images/wizNXpm01ETq9qgGabvKdKWB7k4.png 980w\"},className:\"framer-khfn3i\",\"data-framer-name\":\"Image\",style:{rotate:140}}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:490,intrinsicWidth:490,pixelHeight:980,pixelWidth:980,sizes:\"163px\",src:\"https://framerusercontent.com/images/wizNXpm01ETq9qgGabvKdKWB7k4.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/wizNXpm01ETq9qgGabvKdKWB7k4.png?scale-down-to=512 512w,https://framerusercontent.com/images/wizNXpm01ETq9qgGabvKdKWB7k4.png 980w\"},className:\"framer-yokjgj\",\"data-framer-name\":\"Image\",style:{rotate:140}}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7RE0gU2Fucy0yMDA=\",\"--framer-font-family\":'\"DM Sans\", sans-serif',\"--framer-font-size\":\"50px\",\"--framer-font-weight\":\"200\",\"--framer-text-color\":\"var(--token-e11d65ff-264b-4ee0-b1c0-883dfb23f7f4, rgb(245, 245, 245))\"},children:\"Logo Development\"})}),className:\"framer-5k3nmd\",fonts:[\"GF;DM Sans-200\"],transformTemplate:transformTemplate3,verticalAlignment:\"top\",withExternalLayout:true})]})})],speed:40,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})})]}),isDisplayed()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{height:214,width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+6298,children:/*#__PURE__*/_jsx(Container,{className:\"framer-16125tb-container hidden-na210q hidden-10qk593\",nodeId:\"SzSzySkOl\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Bottom,{height:\"100%\",id:\"SzSzySkOl\",layoutId:\"SzSzySkOl\",style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),isDisplayed1()&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{D0KjT8elo:{height:214,width:componentViewport?.width||\"100vw\"},rG6xd9Kgi:{height:214,width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+6315.4491}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-8fl2fs-container hidden-72rtr7\",nodeId:\"OLaYX7NLg\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Bottom,{height:\"100%\",id:\"OLaYX7NLg\",layoutId:\"OLaYX7NLg\",style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})})]}),/*#__PURE__*/_jsx(\"div\",{id:\"overlay\"})]})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-oFTql.framer-lux5qc, .framer-oFTql .framer-lux5qc { display: block; }\",\".framer-oFTql.framer-72rtr7 { align-content: center; align-items: center; background-color: var(--token-e11d65ff-264b-4ee0-b1c0-883dfb23f7f4, #f5f5f5); 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-oFTql .framer-tbyo3o-container { flex: none; height: 89px; left: calc(50.00000000000002% - 100% / 2); position: absolute; top: 0px; width: 100%; z-index: 2; }\",\".framer-oFTql .framer-1h5ym87 { background-color: var(--token-89ae68e7-3871-4f62-9f08-6dc31426c705, #171717); flex: none; gap: 0px; height: 100vh; overflow: hidden; position: relative; width: 100%; }\",\".framer-oFTql .framer-128h91j { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; left: 50%; overflow: hidden; padding: 0px 80px 0px 80px; position: absolute; top: 50%; transform: translate(-50%, -50%); width: 100%; z-index: 1; }\",\".framer-oFTql .framer-cn5cjr { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: hidden; padding: 0px 0px 30px 0px; position: relative; width: 100%; }\",\".framer-oFTql .framer-1emidkq-container, .framer-oFTql .framer-1xc9frs-container { flex: none; height: 35px; position: relative; width: 38px; }\",\".framer-oFTql .framer-1eryj1u, .framer-oFTql .framer-1oem2r6, .framer-oFTql .framer-ltad4s, .framer-oFTql .framer-1of6llv, .framer-oFTql .framer-1p7ddld, .framer-oFTql .framer-s4ztzp, .framer-oFTql .framer-1edjydv, .framer-oFTql .framer-1umvqw, .framer-oFTql .framer-1xze236, .framer-oFTql .framer-w3ywx6, .framer-oFTql .framer-17jwqmu, .framer-oFTql .framer-1s0sbwh, .framer-oFTql .framer-1hai0gr, .framer-oFTql .framer-1dpkk0c, .framer-oFTql .framer-1kaf203, .framer-oFTql .framer-1w4wth5, .framer-oFTql .framer-116td7k, .framer-oFTql .framer-1kx07p, .framer-oFTql .framer-1oorg55, .framer-oFTql .framer-uvt8ow, .framer-oFTql .framer-1ykfstu, .framer-oFTql .framer-13oivsa, .framer-oFTql .framer-fupt00, .framer-oFTql .framer-1ft2a2t, .framer-oFTql .framer-1b5tjex, .framer-oFTql .framer-16aon9r, .framer-oFTql .framer-1acf4a1, .framer-oFTql .framer-1uxg2jx, .framer-oFTql .framer-9ekt4w, .framer-oFTql .framer-14yvihm, .framer-oFTql .framer-1kqlafk, .framer-oFTql .framer-1bqtw73, .framer-oFTql .framer-eqx2py, .framer-oFTql .framer-1o9400m, .framer-oFTql .framer-1sxdzj9, .framer-oFTql .framer-91kidt, .framer-oFTql .framer-1m9iv47, .framer-oFTql .framer-19xsctx, .framer-oFTql .framer-5i2sgy { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-oFTql .framer-ak1qxq { 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: 20px 0px 0px 0px; position: relative; width: 100%; }\",\".framer-oFTql .framer-1ez00zf { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; position: relative; white-space: pre; width: auto; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-oFTql .framer-m6m3rb { align-content: center; align-items: center; bottom: 0px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-end; left: 50%; overflow: hidden; padding: 0px 60px 60px 0px; position: absolute; transform: translateX(-50%); width: 100%; }\",\".framer-oFTql .framer-co20wt { --framer-custom-cursors: pointer; --framer-paragraph-spacing: 0px; flex: none; height: 79px; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; z-index: 1; }\",\".framer-oFTql .framer-1yk6si4 { background-color: var(--token-e11d65ff-264b-4ee0-b1c0-883dfb23f7f4, #f5f5f5); flex: none; height: 100vh; overflow: hidden; position: relative; width: 100%; }\",\".framer-oFTql .framer-1vel1e6 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: wrap; height: min-content; justify-content: space-around; left: 50%; overflow: hidden; padding: 60px; position: absolute; top: 46%; transform: translate(-50%, -50%); width: 100%; }\",\".framer-oFTql .framer-bj9nnx { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 431px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 659px; }\",\".framer-oFTql .framer-1l3vl05 { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 646px; word-break: break-word; word-wrap: break-word; }\",\".framer-oFTql .framer-nj48qk-container { flex: none; height: 450px; position: relative; width: 464px; }\",\".framer-oFTql .framer-1149vw-container { flex: none; height: 233px; position: relative; width: 220px; }\",\".framer-oFTql .framer-1lrshu4 { bottom: 87px; flex: none; height: 67px; left: calc(50.00000000000002% - 390px / 2); overflow: hidden; position: absolute; width: 390px; }\",\".framer-oFTql .framer-1u4w3zm { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; left: 50%; position: absolute; top: 1px; transform: translateX(-50%); white-space: pre; width: auto; }\",\".framer-oFTql .framer-1rscedo-container { bottom: 0px; flex: none; height: 23px; left: calc(50.00000000000002% - 284px / 2); position: absolute; width: 284px; z-index: 0; }\",\".framer-oFTql .framer-cts6ew-container { flex: none; height: 96px; left: 0px; position: absolute; right: 0px; top: 0px; }\",\".framer-oFTql .framer-11jhybn { height: 34px; overflow: hidden; position: relative; width: 1218px; }\",\".framer-oFTql .framer-187tqdb { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; left: 40px; position: absolute; top: 47%; transform: translateY(-50%); white-space: pre; width: auto; }\",\".framer-oFTql .framer-1c2fxpv, .framer-oFTql .framer-8u2omy { flex: none; height: 31px; left: 203px; position: absolute; top: calc(47.05882352941179% - 31px / 2); width: 28px; }\",\".framer-oFTql .framer-8hv9k4 { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; left: 244px; position: absolute; top: 47%; transform: translateY(-50%); white-space: pre; width: auto; }\",\".framer-oFTql .framer-ejjcqt { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; left: 339px; position: absolute; top: 47%; transform: translateY(-50%); white-space: pre; width: auto; }\",\".framer-oFTql .framer-gfbch9 { flex: none; height: 31px; left: 1086px; position: absolute; top: 0px; width: 28px; }\",\".framer-oFTql .framer-cdbolr { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; left: 460px; position: absolute; top: 47%; transform: translateY(-50%); white-space: pre; width: auto; }\",\".framer-oFTql .framer-19u1x6a { flex: none; height: 31px; left: 968px; position: absolute; top: calc(47.05882352941179% - 31px / 2); width: 28px; }\",\".framer-oFTql .framer-cefz50 { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; left: 53%; position: absolute; top: 47%; transform: translate(-50%, -50%); white-space: pre; width: auto; }\",\".framer-oFTql .framer-1ip14xy { flex: none; height: 31px; left: 840px; position: absolute; top: calc(50.00000000000002% - 31px / 2); width: 28px; }\",\".framer-oFTql .framer-1lwwv45 { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; left: 752px; position: absolute; top: 47%; transform: translateY(-50%); white-space: pre; width: auto; }\",\".framer-oFTql .framer-1eq5d5x { flex: none; height: 31px; left: 711px; position: absolute; top: calc(47.05882352941179% - 31px / 2); width: 28px; }\",\".framer-oFTql .framer-142tmsg { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; left: 881px; position: absolute; top: 47%; transform: translateY(-50%); white-space: pre; width: auto; }\",\".framer-oFTql .framer-1ag90u { flex: none; height: 31px; left: calc(48.44006568144501% - 28px / 2); position: absolute; top: calc(47.05882352941179% - 31px / 2); width: 28px; }\",\".framer-oFTql .framer-8trtty { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; left: 1009px; position: absolute; top: 47%; transform: translateY(-50%); white-space: pre; width: auto; }\",\".framer-oFTql .framer-icrgyf { flex: none; height: 31px; left: 421px; position: absolute; top: 0px; width: 28px; }\",\".framer-oFTql .framer-5fsln1 { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; left: 1127px; position: absolute; top: 50%; transform: translateY(-50%); white-space: pre; width: auto; }\",\".framer-oFTql .framer-cj7jqq { flex: none; height: 31px; left: 298px; position: absolute; top: calc(47.05882352941179% - 31px / 2); width: 28px; }\",\".framer-oFTql .framer-1vkbr84 { flex: none; height: 31px; left: 0px; position: absolute; top: 0px; width: 28px; }\",\".framer-oFTql .framer-hwi3o0-container { flex: none; height: 96px; left: calc(50.00000000000002% - 810px / 2); position: absolute; top: 0px; width: 810px; }\",\".framer-oFTql .framer-18o163p-container { flex: none; height: auto; position: relative; width: auto; }\",\".framer-oFTql .framer-1hkr6jm { 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-oFTql .framer-r958kb { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-oFTql .framer-11a9pwu-container, .framer-oFTql .framer-odlzxc-container { flex: none; height: 35px; position: relative; width: 100%; }\",\".framer-oFTql .framer-ht57c5, .framer-oFTql .framer-1psqm2f { --border-bottom-width: 3px; --border-color: var(--token-e11d65ff-264b-4ee0-b1c0-883dfb23f7f4, #f5f5f5); --border-left-width: 0px; --border-right-width: 0px; --border-style: dotted; --border-top-width: 3px; align-content: center; align-items: center; background-color: var(--token-89ae68e7-3871-4f62-9f08-6dc31426c705, #171717); display: flex; flex-direction: row; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; overflow: hidden; padding: 10px; position: relative; width: min-content; }\",\".framer-oFTql .framer-1tyt0qp { 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-oFTql .framer-13yapp8 { align-content: center; align-items: center; background-color: var(--token-e11d65ff-264b-4ee0-b1c0-883dfb23f7f4, #f5f5f5); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; height: min-content; justify-content: space-around; overflow: hidden; padding: 60px 150px 0px 150px; position: relative; width: 100%; }\",\".framer-oFTql .framer-1m2gw3t, .framer-oFTql .framer-1pogzgu { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; height: min-content; justify-content: space-around; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-oFTql .framer-16cyzm3 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; height: min-content; justify-content: space-between; overflow: hidden; padding: 0px 0px 15px 0px; position: relative; width: 100%; }\",\".framer-oFTql .framer-fke4co, .framer-oFTql .framer-uro7v3, .framer-oFTql .framer-3mzxkf { --framer-custom-cursors: pointer; flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-oFTql .framer-vqhegg { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 5px; height: 23px; justify-content: center; overflow: hidden; padding: 2px 0px 2px 0px; position: relative; width: 242px; }\",\".framer-oFTql .framer-1hfgt6c-container { cursor: default; flex: none; height: 19px; position: relative; width: 125px; }\",\".framer-oFTql .framer-asuat { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: 122%; position: relative; white-space: pre; width: auto; }\",\".framer-oFTql .framer-1kv204p-container { cursor: default; flex: none; height: 19px; position: relative; width: 87px; }\",\".framer-oFTql .framer-1fivlt2, .framer-oFTql .framer-cdiuit, .framer-oFTql .framer-1i9mtan, .framer-oFTql .framer-76zox6 { --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-oFTql .framer-1ctjkl3 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 20px 0px 20px 0px; position: relative; width: 100%; }\",\".framer-oFTql .framer-1dlzxp3, .framer-oFTql .framer-ps7y38, .framer-oFTql .framer-8wkjr { align-content: center; align-items: center; border-bottom-left-radius: 10px; border-bottom-right-radius: 10px; border-top-left-radius: 10px; border-top-right-radius: 10px; box-shadow: 0.3613123810646357px 0.6021873017743928px 0.702265037666635px -1.25px rgba(0, 0, 0, 0.72), 1.3731199819460742px 2.288533303243457px 2.6688655201928024px -2.5px rgba(0, 0, 0, 0.64), 6px 10px 11.661903789690601px -3.75px rgba(0, 0, 0, 0.25); cursor: pointer; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: 517px; justify-content: center; overflow: hidden; padding: 0px; position: relative; text-decoration: none; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-oFTql .framer-zaqcpr, .framer-oFTql .framer-phmzx, .framer-oFTql .framer-497jsi { box-shadow: 0px 0.6021873017743928px 0.6021873017743928px -1.25px rgba(0, 0, 0, 0.18), 0px 2.288533303243457px 2.288533303243457px -2.5px rgba(0, 0, 0, 0.16), 0px 10px 10px -3.75px rgba(0, 0, 0, 0.06); flex: none; gap: 10px; height: 100%; overflow: hidden; position: relative; width: 100%; }\",\".framer-oFTql .framer-19yl6vp { align-content: center; align-items: center; background-color: var(--token-e11d65ff-264b-4ee0-b1c0-883dfb23f7f4, #f5f5f5); 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-oFTql .framer-1vuvf4x { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; height: min-content; justify-content: space-around; overflow: hidden; padding: 60px 150px 0px 150px; position: relative; width: 100%; }\",\".framer-oFTql .framer-1fqkzau, .framer-oFTql .framer-1jnh70x, .framer-oFTql .framer-1jwei3e { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-oFTql .framer-jpj1g6, .framer-oFTql .framer-cm0fwq, .framer-oFTql .framer-c5tei5 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; height: min-content; justify-content: space-between; overflow: hidden; padding: 0px 0px 15px 0px; position: relative; width: 100%; }\",\".framer-oFTql .framer-lkdnmg, .framer-oFTql .framer-b5rwg7, .framer-oFTql .framer-10rltdy { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 5px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-oFTql .framer-mtn7ch-container, .framer-oFTql .framer-1e4hrix-container { cursor: default; flex: none; height: 19px; position: relative; width: 77px; }\",\".framer-oFTql .framer-1jj45hm, .framer-oFTql .framer-180hkxg, .framer-oFTql .framer-l8h8sa, .framer-oFTql .framer-1b1ms0a { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: 23px; position: relative; white-space: pre; width: auto; }\",\".framer-oFTql .framer-1kr05zp-container { cursor: default; flex: none; height: 19px; position: relative; width: 86px; }\",\".framer-oFTql .framer-1nfzxjl-container { cursor: default; flex: none; height: 19px; position: relative; width: 116px; }\",\".framer-oFTql .framer-xo90bd, .framer-oFTql .framer-1u137yw, .framer-oFTql .framer-af5m0c { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; height: min-content; justify-content: space-around; overflow: hidden; padding: 20px 0px 20px 0px; position: relative; width: 100%; }\",\".framer-oFTql .framer-ubygas { align-content: center; align-items: center; background-color: var(--token-f27a349e-aa01-41cb-bc4e-c9cbb956b2da, #0063ba); border-bottom-left-radius: 10px; border-bottom-right-radius: 10px; border-top-left-radius: 10px; border-top-right-radius: 10px; box-shadow: 0.3613123810646357px 0.6021873017743928px 0.702265037666635px -1.25px rgba(0, 0, 0, 0.72), 1.3731199819460742px 2.288533303243457px 2.6688655201928024px -2.5px rgba(0, 0, 0, 0.64), 6px 10px 11.661903789690601px -3.75px rgba(0, 0, 0, 0.25); cursor: pointer; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: 517px; justify-content: center; overflow: hidden; padding: 0px; position: relative; text-decoration: none; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-oFTql .framer-kg0pjt, .framer-oFTql .framer-1jcqczc { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; height: min-content; justify-content: space-around; overflow: hidden; padding: 60px 150px 60px 150px; position: relative; width: 100%; }\",\".framer-oFTql .framer-1joygoj, .framer-oFTql .framer-ba57kb { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: 19px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-oFTql .framer-utywv0-container { cursor: default; flex: none; height: 19px; position: relative; width: 154px; }\",\".framer-oFTql .framer-17m8cc7, .framer-oFTql .framer-19fvvha { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 19px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-oFTql .framer-101dcwt { cursor: pointer; flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-oFTql .framer-192s5uc { align-content: center; align-items: center; cursor: default; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 19px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-oFTql .framer-1vdiufo-container, .framer-oFTql .framer-6vehf4-container { flex: none; height: 20px; position: relative; width: auto; }\",\".framer-oFTql .framer-xx3mto { align-content: center; align-items: center; cursor: default; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: 19px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-oFTql .framer-hjzine { flex: none; height: 100%; position: relative; width: 100%; }\",\".framer-oFTql .framer-1icn82h { align-content: center; align-items: center; background-color: var(--token-89ae68e7-3871-4f62-9f08-6dc31426c705, #171717); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: hidden; padding: 0px 0px 40px 0px; position: relative; width: 100%; }\",\".framer-oFTql .framer-14n4l8k, .framer-oFTql .framer-i2lm1a, .framer-oFTql .framer-2t9y5, .framer-oFTql .framer-1ll05fz { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-oFTql .framer-2bdbwd-container { flex: none; height: 642px; position: relative; width: 100%; }\",\".framer-oFTql .framer-xz8h21, .framer-oFTql .framer-lv85jh, .framer-oFTql .framer-1rywv67 { height: 677px; overflow: hidden; position: relative; text-decoration: none; width: 674px; }\",\".framer-oFTql .framer-nt8j43, .framer-oFTql .framer-138s3ch { flex: none; height: 500px; left: calc(49.406528189911% - 500px / 2); overflow: hidden; position: absolute; top: calc(50.369276218611546% - 500px / 2); width: 500px; }\",\".framer-oFTql .framer-15f8g5v, .framer-oFTql .framer-spi488, .framer-oFTql .framer-1689n1s { background-color: rgba(23, 23, 23, 0.53); flex: none; height: 500px; left: calc(49.406528189911% - 500px / 2); overflow: hidden; position: absolute; top: calc(50.369276218611546% - 500px / 2); width: 500px; }\",\".framer-oFTql .framer-1wgidtj, .framer-oFTql .framer-1m7b3se { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; left: 50%; position: absolute; top: 50%; transform: translate(-50%, -50%); white-space: pre; width: auto; }\",\".framer-oFTql .framer-9xg6ft, .framer-oFTql .framer-qjmz0t, .framer-oFTql .framer-khfn3i { flex: none; height: 137px; left: 25px; overflow: visible; position: absolute; top: 37px; width: 163px; }\",\".framer-oFTql .framer-185p91x, .framer-oFTql .framer-86uqbe, .framer-oFTql .framer-yokjgj { bottom: 37px; flex: none; height: 137px; left: 486px; overflow: visible; position: absolute; width: 163px; }\",\".framer-oFTql .framer-9963bh-container { flex: none; height: 500px; left: calc(49.406528189911% - 500px / 2); position: absolute; top: calc(50.369276218611546% - 500px / 2); width: 500px; }\",\".framer-oFTql .framer-5k3nmd { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; left: 49%; position: absolute; top: 50%; transform: translate(-50%, -50%); white-space: pre; width: auto; }\",\".framer-oFTql .framer-16125tb-container, .framer-oFTql .framer-8fl2fs-container { flex: none; height: 214px; position: relative; width: 100%; }\",...sharedStyle.css,...sharedStyle1.css,...sharedStyle2.css,...sharedStyle3.css,...sharedStyle4.css,'.framer-oFTql[data-border=\"true\"]::after, .framer-oFTql [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; }',\"@media (min-width: 810px) and (max-width: 1199px) { .framer-oFTql.framer-72rtr7 { width: 810px; } .framer-oFTql .framer-tbyo3o-container, .framer-oFTql .framer-cn5cjr { order: 0; } .framer-oFTql .framer-1h5ym87 { height: 90.46296296296296vh; order: 1; } .framer-oFTql .framer-128h91j { height: 34%; left: calc(50.00000000000002% - 809px / 2); padding: 0px 60px 0px 60px; top: calc(50.00000000000002% - 34.21052631578947% / 2); transform: unset; width: 809px; } .framer-oFTql .framer-1oem2r6, .framer-oFTql .framer-nj48qk-container { order: 1; } .framer-oFTql .framer-ltad4s, .framer-oFTql .framer-1149vw-container { order: 2; } .framer-oFTql .framer-ak1qxq, .framer-oFTql .framer-18o163p-container { order: 3; } .framer-oFTql .framer-m6m3rb { padding: 0px 40px 60px 0px; } .framer-oFTql .framer-1yk6si4 { height: 112.78195488721805vh; order: 2; } .framer-oFTql .framer-1vel1e6 { padding: 60px 60px 60px 40px; top: 48%; } .framer-oFTql .framer-1lrshu4 { align-content: center; align-items: center; bottom: 106px; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 10px; justify-content: center; padding: 0px; } .framer-oFTql .framer-1u4w3zm { height: 33px; left: unset; position: relative; top: unset; transform: unset; } .framer-oFTql .framer-1rscedo-container { bottom: unset; left: unset; position: relative; } .framer-oFTql .framer-1hkr6jm { order: 4; } .framer-oFTql .framer-13yapp8 { padding: 60px 0px 0px 0px; } .framer-oFTql .framer-1m2gw3t { padding: 0px 60px 0px 60px; } .framer-oFTql .framer-16cyzm3 { padding: 0px; } .framer-oFTql .framer-1ctjkl3 { padding: 20px 60px 20px 60px; } .framer-oFTql .framer-1vuvf4x { padding: 60px 60px 0px 60px; } .framer-oFTql .framer-kg0pjt, .framer-oFTql .framer-1jcqczc { padding: 60px; } .framer-oFTql .framer-1icn82h { order: 5; } .framer-oFTql .framer-8fl2fs-container { order: 7; }}\",\"@media (max-width: 809px) { .framer-oFTql.framer-72rtr7 { width: 390px; } .framer-oFTql .framer-tbyo3o-container, .framer-oFTql .framer-cn5cjr { order: 0; } .framer-oFTql .framer-1h5ym87 { height: 90.46296296296296vh; order: 1; } .framer-oFTql .framer-128h91j { height: 34%; left: calc(50.00000000000002% - 100% / 2); padding: 0px 20px 0px 20px; top: calc(50.00000000000002% - 34.21052631578947% / 2); transform: unset; } .framer-oFTql .framer-1oem2r6 { order: 1; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; } .framer-oFTql .framer-ltad4s { order: 2; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; } .framer-oFTql .framer-ak1qxq, .framer-oFTql .framer-18o163p-container { order: 3; } .framer-oFTql .framer-1ez00zf { white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; } .framer-oFTql .framer-m6m3rb { padding: 0px 40px 60px 0px; } .framer-oFTql .framer-1yk6si4 { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; order: 2; padding: 0px; } .framer-oFTql .framer-1vel1e6 { left: unset; order: 1; padding: 60px 60px 60px 40px; position: relative; top: unset; transform: unset; } .framer-oFTql .framer-nj48qk-container { height: 688px; order: 1; width: 113%; } .framer-oFTql .framer-1149vw-container { order: 2; } .framer-oFTql .framer-1lrshu4 { align-content: center; align-items: center; bottom: unset; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 10px; justify-content: center; left: unset; order: 2; padding: 0px; position: relative; width: 100%; } .framer-oFTql .framer-1u4w3zm { height: 33px; left: unset; position: relative; top: unset; transform: unset; } .framer-oFTql .framer-1rscedo-container { bottom: unset; left: unset; position: relative; } .framer-oFTql .framer-hwi3o0-container { left: unset; order: 0; position: relative; top: unset; width: 100%; } .framer-oFTql .framer-1hkr6jm { order: 4; } .framer-oFTql .framer-13yapp8 { padding: 60px 0px 0px 0px; } .framer-oFTql .framer-1m2gw3t { padding: 0px 20px 0px 20px; } .framer-oFTql .framer-16cyzm3 { align-content: center; align-items: center; flex-direction: column; order: 0; } .framer-oFTql .framer-fke4co { height: 55px; } .framer-oFTql .framer-1fivlt2, .framer-oFTql .framer-cdiuit, .framer-oFTql .framer-1i9mtan, .framer-oFTql .framer-76zox6 { order: 1; } .framer-oFTql .framer-1ctjkl3, .framer-oFTql .framer-kg0pjt, .framer-oFTql .framer-1jcqczc { padding: 20px; } .framer-oFTql .framer-1vuvf4x { padding: 60px 20px 0px 20px; } .framer-oFTql .framer-1fqkzau, .framer-oFTql .framer-1jnh70x, .framer-oFTql .framer-1jwei3e { align-content: center; align-items: center; } .framer-oFTql .framer-jpj1g6, .framer-oFTql .framer-cm0fwq, .framer-oFTql .framer-c5tei5 { flex-direction: column; gap: 21px; justify-content: center; order: 0; } .framer-oFTql .framer-1icn82h { order: 5; } .framer-oFTql .framer-8fl2fs-container { order: 7; }}\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 5532\n * @framerIntrinsicWidth 1200\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"rG6xd9Kgi\":{\"layout\":[\"fixed\",\"auto\"]},\"D0KjT8elo\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerAutoSizeImages true\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n * @framerAcceptsLayoutTemplate true\n * @framerScrollSections {\"pVb6xxYin\":{\"pattern\":\":pVb6xxYin\",\"name\":\"about\"},\"nIoKdg9kl\":{\"pattern\":\":nIoKdg9kl\",\"name\":\"work\"}}\n * @framerResponsiveScreen\n */const FrameraugiA20Il=withCSS(Component,css,\"framer-oFTql\");export default FrameraugiA20Il;FrameraugiA20Il.displayName=\"Home\";FrameraugiA20Il.defaultProps={height:5532,width:1200};addFonts(FrameraugiA20Il,[{explicitInter:true,fonts:[{family:\"DM Mono\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/dmmono/v14/aFTU7PB1QTsUX8KYhhiaBYyMcKw.woff2\",weight:\"400\"},{family:\"Ballet\",source:\"fontshare\",style:\"normal\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/WGPT4KZPRZL7VEI5Z7QAARRIINILAPLJ/GP5IIEY4A5YTRB4ONKLM6M5GIU76HE53/LPNQFWIK46GIITWCQQEC2I3D5ZODDCV4.woff2\",weight:\"400\"},{family:\"DM Sans\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/dmsans/v15/rP2tp2ywxg089UriI5-g4vlH9VoD8CmcqZG40F9JadbnoEwARZthS2f3ZGMZpg.woff2\",weight:\"700\"},{family:\"DM Sans\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/dmsans/v15/rP2tp2ywxg089UriI5-g4vlH9VoD8CmcqZG40F9JadbnoEwAkJxhS2f3ZGMZpg.woff2\",weight:\"500\"},{family:\"DM Sans\",source:\"google\",style:\"italic\",url:\"https://fonts.gstatic.com/s/dmsans/v15/rP2rp2ywxg089UriCZaSExd86J3t9jz86Mvy4qCRAL19DksVat9uCm32RmYJpso5.woff2\",weight:\"700\"},{family:\"DM Mono\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/dmmono/v14/aFTR7PB1QTsUX8KYvrGyIYGnbKX9Rlk.woff2\",weight:\"300\"},{family:\"DM Sans\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/dmsans/v15/rP2tp2ywxg089UriI5-g4vlH9VoD8CmcqZG40F9JadbnoEwAfJthS2f3ZGMZpg.woff2\",weight:\"600\"},{family:\"DM Mono\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/dmmono/v14/aFTR7PB1QTsUX8KYvumzIYGnbKX9Rlk.woff2\",weight:\"500\"},{family:\"DM Sans\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/dmsans/v15/rP2tp2ywxg089UriI5-g4vlH9VoD8CmcqZG40F9JadbnoEwAopxhS2f3ZGMZpg.woff2\",weight:\"400\"},{family:\"DM Sans\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/dmsans/v15/rP2tp2ywxg089UriI5-g4vlH9VoD8CmcqZG40F9JadbnoEwAIpxhS2f3ZGMZpg.woff2\",weight:\"200\"}]},...NavigationFonts,...Sparkles2Fonts,...ABOUTMETEXTTABFonts,...SparklesFonts,...Highlight3Fonts,...TickerFonts,...AnimatedLineFonts,...Ticker1Fonts,...HighlightTagsFonts,...TagFonts,...Tag1Fonts,...Tag2Fonts,...Tag3Fonts,...Tag4Fonts,...Tag5Fonts,...Tag6Fonts,...TAGFonts,...LogosFonts,...BottomFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts),...getFontsFromSharedStyle(sharedStyle2.fonts),...getFontsFromSharedStyle(sharedStyle3.fonts),...getFontsFromSharedStyle(sharedStyle4.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FrameraugiA20Il\",\"slots\":[],\"annotations\":{\"framerComponentViewportWidth\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"rG6xd9Kgi\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"D0KjT8elo\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerContractVersion\":\"1\",\"framerAcceptsLayoutTemplate\":\"true\",\"framerColorSyntax\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerScrollSections\":\"{\\\"pVb6xxYin\\\":{\\\"pattern\\\":\\\":pVb6xxYin\\\",\\\"name\\\":\\\"about\\\"},\\\"nIoKdg9kl\\\":{\\\"pattern\\\":\\\":nIoKdg9kl\\\",\\\"name\\\":\\\"work\\\"}}\",\"framerResponsiveScreen\":\"\",\"framerIntrinsicWidth\":\"1200\",\"framerAutoSizeImages\":\"true\",\"framerImmutableVariables\":\"true\",\"framerIntrinsicHeight\":\"5532\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}"],
  "mappings": "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",
  "names": ["MAX_DUPLICATED_ITEMS", "directionTransformers", "offset", "Ticker", "props", "slots", "gap", "padding", "paddingPerSide", "paddingTop", "paddingRight", "paddingBottom", "paddingLeft", "speed", "hoverFactor", "direction", "alignment", "sizingOptions", "fadeOptions", "style", "fadeContent", "overflow", "fadeWidth", "fadeInset", "fadeAlpha", "widthType", "heightType", "paddingValue", "currentTarget", "RenderTarget", "isCanvas", "filteredSlots", "numChildren", "j", "hasChildren", "isHorizontal", "useMotionValue", "transformer", "transform", "useTransform", "parentRef", "pe", "childrenRef", "se", "size", "setSize", "ye", "clonedChildren", "dupedChildren", "duplicateBy", "opacity", "measure", "te", "parentLength", "start", "childrenLength", "Z", "childrenStyles", "initialResize", "ue", "frame", "resize", "contentSize", "child", "index", "ref", "p", "LayoutGroup", "q", "isInView", "useInView", "i", "childIndex", "animateToValue", "initialTime", "prevTime", "xOrY", "isHover", "isReducedMotion", "useReducedMotion", "listRef", "animationRef", "playOrPause", "hidden", "fadeDirection", "fadeWidthStart", "fadeWidthEnd", "fadeInsetStart", "clamp", "fadeInsetEnd", "fadeMask", "containerStyle", "u", "motion", "isValidNumber", "placeholderStyles", "emojiStyles", "titleStyles", "subtitleStyles", "addPropertyControls", "ControlType", "num", "min", "max", "value", "AnimatorFonts", "getFonts", "Animator", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "scopingClassNames", "cx", "isDisplayed", "LayoutGroup", "ComponentViewportProvider", "SmartComponentScopedContainer", "SVG", "css", "FramerDY1_eAqB8", "withCSS", "DY1_eAqB8_default", "addPropertyControls", "ControlType", "addFonts", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "animation", "transition2", "textEffect", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onAppearw0ensa", "args", "useOnVariantChange", "scopingClassNames", "cx", "LayoutGroup", "RichText2", "u", "css", "Framerfb2moCuGF", "withCSS", "fb2moCuGF_default", "addPropertyControls", "ControlType", "addFonts", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "scopingClassNames", "cx", "LayoutGroup", "RichText2", "css", "FramerLNCdefxQH", "withCSS", "LNCdefxQH_default", "addPropertyControls", "ControlType", "addFonts", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "scopingClassNames", "cx", "LayoutGroup", "RichText2", "css", "FramerMyg2D10IU", "withCSS", "Myg2D10IU_default", "addPropertyControls", "ControlType", "addFonts", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onAppear1aur8yp", "args", "onAppear1adafnj", "useOnVariantChange", "scopingClassNames", "cx", "isDisplayed", "isDisplayed1", "LayoutGroup", "u", "SVG", "css", "FramervcWhJRANm", "withCSS", "vcWhJRANm_default", "addPropertyControls", "ControlType", "addFonts", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "transformTemplate1", "_", "t", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onMouseEntere92ipc", "args", "onMouseLeave1sophbf", "scopingClassNames", "cx", "LayoutGroup", "RichText2", "css", "FramerW7l1Uqv3H", "withCSS", "W7l1Uqv3H_default", "addPropertyControls", "ControlType", "addFonts", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "transformTemplate1", "_", "t", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onMouseEnter3gg823", "args", "onMouseLeavebesw1v", "scopingClassNames", "cx", "LayoutGroup", "RichText2", "css", "FramerzXIyEGBrP", "withCSS", "zXIyEGBrP_default", "addPropertyControls", "ControlType", "addFonts", "AnimatedLine", "props", "ref", "pe", "controls", "useAnimation", "inView", "useInView", "ue", "p", "motion", "fontStore", "fonts", "css", "className", "fontStore", "fonts", "css", "className", "fontStore", "fonts", "css", "className", "NavigationFonts", "getFonts", "F2oFcNQ_x_default", "Sparkles2Fonts", "NpsV_Cycd_default", "ABOUTMETEXTTABFonts", "fb2moCuGF_default", "SparklesFonts", "vcWhJRANm_default", "Highlight3Fonts", "DY1_eAqB8_default", "Highlight3WithVariantAppearEffect", "withVariantAppearEffect", "TickerFonts", "Ticker", "MotionDivWithFX", "withFX", "motion", "AnimatedLineFonts", "AnimatedLine", "Ticker1Fonts", "HighlightTagsFonts", "W7l1Uqv3H_default", "TagFonts", "zXIyEGBrP_default", "MotionAWithFX", "Tag1Fonts", "RT5nUINO_default", "Tag2Fonts", "mUdNGsMgg_default", "Tag3Fonts", "s3ZZdJKyd_default", "Tag4Fonts", "vC8I8F1xc_default", "Tag5Fonts", "etZUh67Ht_default", "Tag6Fonts", "Myg2D10IU_default", "TAGFonts", "LNCdefxQH_default", "LogosFonts", "YfBwVfT7Z_default", "BottomFonts", "aaCnBMhHS_default", "breakpoints", "isBrowser", "serializationHash", "variantClassNames", "animation", "transition1", "textEffect", "animation1", "transition2", "textEffect1", "transition3", "animation2", "animation3", "transition4", "animation4", "textEffect2", "transformTemplate1", "_", "t", "transformTemplate2", "transformTemplate3", "textEffect3", "animation5", "animation6", "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", "gestureVariant", "scopingClassNames", "cx", "elementId", "useRouteElementId", "ref1", "isDisplayed", "isDisplayed1", "elementId1", "ref2", "useCustomCursors", "GeneratedComponentContext", "u", "LayoutGroup", "ComponentViewportProvider", "Container", "PropertyOverrides2", "x", "RichText2", "Link", "SVG", "getLoadingLazyAtYPosition", "Image2", "css", "FrameraugiA20Il", "withCSS", "augiA20Il_default", "addFonts", "getFontsFromSharedStyle", "fonts", "__FramerMetadata__"]
}
