{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/B2xAlJLcN0gOnt11mSPw/XVUmpmPn1EPL0dzocT35/Ticker.js", "ssg:https://framerusercontent.com/modules/jjswVb4TvOncv4YYd6QG/FMb1I8Kdr7Q9kOIGumiH/fU6PyBX2v.js", "ssg:https://framerusercontent.com/modules/f6Mu52wlv7gnV6eOePdW/uXnkxT5qPFrtBBfcxUWs/augiA20Il.js"],
  "sourcesContent": ["import{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{Children,useEffect,useState,useRef,useMemo,createRef,useCallback,cloneElement}from\"react\";import{addPropertyControls,ControlType,RenderTarget}from\"framer\";import{useAnimationFrame,useReducedMotion,LayoutGroup,useInView,useMotionValue,useTransform,motion,wrap,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)`};const supportsAcceleratedAnimations=typeof Animation!==\"undefined\"&&typeof Animation.prototype.updatePlaybackRate===\"function\";/**\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 isCanvas=RenderTarget.current()===RenderTarget.canvas;// 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[/*#__PURE__*/createRef(),/*#__PURE__*/createRef()];},[]);const[size,setSize]=useState({parent:null,children:null});/* Arrays */let clonedChildren=[];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;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)=>{var _child_props,_child_props1,_child_props2,_child_props3;let ref;if(index===0){ref=childrenRef[0];}if(index===filteredSlots.length-1){ref=childrenRef[1];}const size={width:widthType?(_child_props=child.props)===null||_child_props===void 0?void 0:_child_props.width:\"100%\",height:heightType?(_child_props1=child.props)===null||_child_props1===void 0?void 0:_child_props1.height:\"100%\"};return /*#__PURE__*/_jsx(LayoutGroup,{inherit:\"id\",children:/*#__PURE__*/_jsx(\"li\",{ref:ref,style:size,children:/*#__PURE__*/cloneElement(child,{style:{...(_child_props2=child.props)===null||_child_props2===void 0?void 0:_child_props2.style,...size,flexShrink:0,...childrenStyles},layoutId:child.props.layoutId?child.props.layoutId+\"-original-\"+index:undefined},(_child_props3=child.props)===null||_child_props3===void 0?void 0:_child_props3.children)})});});}if(!isCanvas){for(let i=0;i<duplicateBy;i++){dupedChildren=[...dupedChildren,...Children.map(filteredSlots,(child,childIndex)=>{var _child_props,_child_props1,_child_props2,_child_props3,_child_props4,_child_props5;const size={width:widthType?(_child_props=child.props)===null||_child_props===void 0?void 0:_child_props.width:\"100%\",height:heightType?(_child_props1=child.props)===null||_child_props1===void 0?void 0:_child_props1.height:\"100%\",willChange:\"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_props2=child.props)===null||_child_props2===void 0?void 0:_child_props2.style,width:widthType?(_child_props3=child.props)===null||_child_props3===void 0?void 0:_child_props3.width:\"100%\",height:heightType?(_child_props4=child.props)===null||_child_props4===void 0?void 0:_child_props4.height:\"100%\",flexShrink:0,...childrenStyles},layoutId:child.props.layoutId?child.props.layoutId+\"-dupe-\"+i:undefined},(_child_props5=child.props)===null||_child_props5===void 0?void 0:_child_props5.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){const isInView=useInView(parentRef);/**\n         * If this is an animation we can hardware accelerate, animate with WAAPI\n         */if(supportsAcceleratedAnimations){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]);// Pause the animation when it's out of view\nuseEffect(()=>{if(!animationRef.current)return;if(isInView&&animationRef.current.playState===\"paused\"){animationRef.current.play();}else if(!isInView&&animationRef.current.playState===\"running\"){animationRef.current.pause();}},[isInView]);}else{/**\n             * If we can't accelerate this animation because we have a hoverFactor defined\n             * animate with a rAF loop.\n             */useAnimationFrame(t=>{if(!animateToValue||isReducedMotion||supportsAcceleratedAnimations){return;}/**\n                 * In case this animation is delayed from starting because we're running a bunch\n                 * of other work, we want to set an initial time rather than counting from 0.\n                 * That ensures that if the animation is delayed, it starts from the first frame\n                 * rather than jumping.\n                 */if(initialTime.current===null){initialTime.current=t;}t=t-initialTime.current;const timeSince=prevTime.current===null?0:t-prevTime.current;let delta=timeSince*(speed/1e3);if(isHover.current){delta*=hoverFactor;}xOrY.current+=delta;xOrY.current=wrap(0,animateToValue,xOrY.current);prevTime.current=t;if(!isInView)return;offset.set(xOrY.current);});}}/* 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,MozMaskImage: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?\"auto\":\"transform\",transform:supportsAcceleratedAnimations?transformer(0):transform},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\":{\"framerDisableUnlink\":\"*\",\"framerIntrinsicWidth\":\"400\",\"framerContractVersion\":\"1\",\"framerSupportedLayoutWidth\":\"fixed\",\"framerIntrinsicHeight\":\"200\",\"framerSupportedLayoutHeight\":\"fixed\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Ticker.map", "// Generated by Framer (f318921)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,RichText,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useVariantState,withCSS,withFX,withOptimizedAppearEffect}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";const MotionDivWithFX=withFX(motion.div);const MotionDivWithFXWithOptimizedAppearEffect=withOptimizedAppearEffect(withFX(motion.div));const cycleOrder=[\"yakISainI\",\"pqXPxF6nv\",\"r_fQ8bZiJ\"];const serializationHash=\"framer-aTQA6\";const variantClassNames={pqXPxF6nv:\"framer-v-12w321p\",r_fQ8bZiJ:\"framer-v-179w5pf\",yakISainI:\"framer-v-18giqg\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={duration:0,type:\"tween\"};const transition2={delay:0,duration:.3,ease:[.44,0,.56,1],type:\"tween\"};const animation={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition2,x:0,y:0};const animation1={opacity:.001,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0};const transition3={delay:0,duration:1,ease:[0,0,1,1],type:\"tween\"};const animation2={opacity:1,rotate:360,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={Default:\"yakISainI\",Hidden:\"r_fQ8bZiJ\",Loading:\"pqXPxF6nv\"};const getProps=({click,height,id,width,...props})=>{var _humanReadableVariantMap_props_variant,_ref;return{...props,variant:(_ref=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref!==void 0?_ref:\"yakISainI\",Wld3NDzSj:click!==null&&click!==void 0?click:props.Wld3NDzSj};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,Wld3NDzSj,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"yakISainI\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onTapn9xadi=activeVariantCallback(async(...args)=>{setGestureState({isPressed:false});if(Wld3NDzSj){const res=await Wld3NDzSj(...args);if(res===false)return false;}});const isDisplayed=()=>{if(baseVariant===\"r_fQ8bZiJ\")return false;return true;};const ref1=React.useRef(null);const isDisplayed1=()=>{if(baseVariant===\"pqXPxF6nv\")return false;return true;};const isDisplayed2=()=>{if(baseVariant===\"pqXPxF6nv\")return true;return false;};const defaultLayoutId=React.useId();const sharedStyleClassNames=[];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:isDisplayed()&&/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(motion.div,{...restProps,...gestureHandlers,className:cx(serializationHash,...sharedStyleClassNames,\"framer-18giqg\",className,classNames),\"data-framer-name\":\"Default\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"yakISainI\",onTap:onTapn9xadi,ref:ref!==null&&ref!==void 0?ref:ref1,style:{backgroundColor:\"var(--token-5a9d1e35-d755-4e4a-ab24-b659538ac825, rgb(202, 247, 111))\",borderBottomLeftRadius:10,borderBottomRightRadius:10,borderTopLeftRadius:10,borderTopRightRadius:10,...style},variants:{pqXPxF6nv:{backgroundColor:\"var(--token-a4936b06-a905-4d58-9a40-7defb731a481, rgb(99, 122, 51))\"}},...addPropertyOverrides({pqXPxF6nv:{\"data-framer-name\":\"Loading\"}},baseVariant,gestureVariant),children:[isDisplayed1()&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1tZWRpdW0=\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"500\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-f69cd86c-24c7-494d-84d6-1463f28d9732, rgb(8, 8, 8)))\"},children:\"Load More\"})}),className:\"framer-18dh7kr\",fonts:[\"FS;Satoshi-medium\"],layoutDependency:layoutDependency,layoutId:\"VUeg_DyMs\",style:{\"--extracted-r6o4lv\":\"var(--token-f69cd86c-24c7-494d-84d6-1463f28d9732, rgb(8, 8, 8))\"},verticalAlignment:\"top\",withExternalLayout:true}),isDisplayed2()&&/*#__PURE__*/_jsx(MotionDivWithFXWithOptimizedAppearEffect,{__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,animate:animation,className:\"framer-13es1np\",\"data-framer-appear-id\":\"13es1np\",\"data-framer-name\":\"Spinner\",initial:animation1,layoutDependency:layoutDependency,layoutId:\"UhLkYqSIP\",optimized:true,style:{mask:\"url('https://framerusercontent.com/images/pGiXYozQ3mE4cilNOItfe2L2fUA.svg') alpha no-repeat center / cover add\",WebkitMask:\"url('https://framerusercontent.com/images/pGiXYozQ3mE4cilNOItfe2L2fUA.svg') alpha no-repeat center / cover add\"},children:/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__loop:animation2,__framer__loopEffectEnabled:true,__framer__loopRepeatDelay:0,__framer__loopRepeatType:\"loop\",__framer__loopTransition:transition3,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,className:\"framer-hi2xf8\",\"data-framer-name\":\"Conic\",layoutDependency:layoutDependency,layoutId:\"PFFidsNTw\",style:{background:\"conic-gradient(from 0deg at 50% 50%, rgba(255, 255, 255, 0) 0deg, rgb(255, 255, 255) 342deg)\"},children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1kekovr\",\"data-framer-name\":\"Round\",layoutDependency:layoutDependency,layoutId:\"VBrOaZOfR\",style:{backgroundColor:\"rgb(255, 255, 255)\",borderBottomLeftRadius:1,borderBottomRightRadius:1,borderTopLeftRadius:1,borderTopRightRadius:1}})})})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-aTQA6.framer-1hxdbrx, .framer-aTQA6 .framer-1hxdbrx { display: block; }\",\".framer-aTQA6.framer-18giqg { align-content: center; align-items: center; cursor: pointer; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 56px; justify-content: center; padding: 0px; position: relative; width: 240px; }\",\".framer-aTQA6 .framer-18dh7kr { -webkit-user-select: none; flex: none; height: auto; position: relative; user-select: none; white-space: pre; width: auto; }\",\".framer-aTQA6 .framer-13es1np { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 20px); overflow: visible; position: relative; width: 20px; }\",\".framer-aTQA6 .framer-hi2xf8 { bottom: 0px; flex: none; left: 0px; overflow: visible; position: absolute; right: 0px; top: 0px; }\",\".framer-aTQA6 .framer-1kekovr { flex: none; height: 2px; left: calc(50.00000000000002% - 2px / 2); overflow: visible; position: absolute; top: 0px; width: 2px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-aTQA6.framer-18giqg { gap: 0px; } .framer-aTQA6.framer-18giqg > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-aTQA6.framer-18giqg > :first-child { margin-left: 0px; } .framer-aTQA6.framer-18giqg > :last-child { margin-right: 0px; } }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 56\n * @framerIntrinsicWidth 240\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]},\"pqXPxF6nv\":{\"layout\":[\"fixed\",\"fixed\"]},\"r_fQ8bZiJ\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerVariables {\"Wld3NDzSj\":\"click\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerfU6PyBX2v=withCSS(Component,css,\"framer-aTQA6\");export default FramerfU6PyBX2v;FramerfU6PyBX2v.displayName=\"Load More\";FramerfU6PyBX2v.defaultProps={height:56,width:240};addPropertyControls(FramerfU6PyBX2v,{variant:{options:[\"yakISainI\",\"pqXPxF6nv\",\"r_fQ8bZiJ\"],optionTitles:[\"Default\",\"Loading\",\"Hidden\"],title:\"Variant\",type:ControlType.Enum},Wld3NDzSj:{title:\"Click\",type:ControlType.EventHandler}});addFonts(FramerfU6PyBX2v,[{explicitInter:true,fonts:[{family:\"Satoshi\",source:\"fontshare\",style:\"normal\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/P2LQKHE6KA6ZP4AAGN72KDWMHH6ZH3TA/ZC32TK2P7FPS5GFTL46EU6KQJA24ZYDB/7AHDUZ4A7LFLVFUIFSARGIWCRQJHISQP.woff2\",weight:\"500\"}]}],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerfU6PyBX2v\",\"slots\":[],\"annotations\":{\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"pqXPxF6nv\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"r_fQ8bZiJ\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerVariables\":\"{\\\"Wld3NDzSj\\\":\\\"click\\\"}\",\"framerIntrinsicWidth\":\"240\",\"framerComponentViewportWidth\":\"true\",\"framerImmutableVariables\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerContractVersion\":\"1\",\"framerIntrinsicHeight\":\"56\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./fU6PyBX2v.map", "// Generated by Framer (5bbf1f3)\nimport{jsx as _jsx,jsxs as _jsxs,Fragment as _Fragment}from\"react/jsx-runtime\";import{addFonts,ChildrenCanSuspend,ComponentViewportProvider,Container,cx,GeneratedComponentContext,getFonts,getFontsFromSharedStyle,getLoadingLazyAtYPosition,Image,PathVariablesContext,PropertyOverrides,ResolveLinks,RichText,useActiveVariantCallback,useCustomCursors,useHydratedBreakpointVariants,useLoadMorePaginatedQuery,useLocaleInfo,useQueryData,useRouteElementId,useRouter,withCSS,withFX,withOptimizedAppearEffect,withVariantAppearEffect}from\"framer\";import{LayoutGroup,motion}from\"framer-motion\";import*as React from\"react\";import Ticker from\"https://framerusercontent.com/modules/B2xAlJLcN0gOnt11mSPw/XVUmpmPn1EPL0dzocT35/Ticker.js\";import{Icon as Phosphor}from\"https://framerusercontent.com/modules/tYScH7LTqUtz5KUaUAYP/p8dptk4UIND8hbFWz9V7/Phosphor.js\";import Navbar from\"#framer/local/canvasComponent/ALEVNgcWM/ALEVNgcWM.js\";import LoadMore from\"#framer/local/canvasComponent/fU6PyBX2v/fU6PyBX2v.js\";import Spacer from\"#framer/local/canvasComponent/XawQ5rOKu/XawQ5rOKu.js\";import TextLink from\"#framer/local/canvasComponent/YIAu8ddt9/YIAu8ddt9.js\";import Footer from\"#framer/local/canvasComponent/zpQoUPJki/zpQoUPJki.js\";import ProjectCard from\"#framer/local/canvasComponent/zZmOyQiFC/zZmOyQiFC.js\";import Work from\"#framer/local/collection/X5LVUwGhC/X5LVUwGhC.js\";import*as sharedStyle1 from\"#framer/local/css/ar_BrOGl3/ar_BrOGl3.js\";import*as sharedStyle4 from\"#framer/local/css/DUDl1a9Di/DUDl1a9Di.js\";import*as sharedStyle from\"#framer/local/css/fpmYl3q2D/fpmYl3q2D.js\";import*as sharedStyle3 from\"#framer/local/css/jWwSpmBh0/jWwSpmBh0.js\";import*as sharedStyle2 from\"#framer/local/css/UNg0XYoAn/UNg0XYoAn.js\";import metadataProvider from\"#framer/local/webPageMetadata/augiA20Il/augiA20Il.js\";const NavbarFonts=getFonts(Navbar);const NavbarWithVariantAppearEffect=withVariantAppearEffect(Navbar);const MotionDivWithOptimizedAppearEffect=withOptimizedAppearEffect(motion.div);const RichTextWithOptimizedAppearEffect=withOptimizedAppearEffect(RichText);const TextLinkFonts=getFonts(TextLink);const MotionDivWithFX=withFX(motion.div);const PhosphorFonts=getFonts(Phosphor);const TickerFonts=getFonts(Ticker);const ProjectCardFonts=getFonts(ProjectCard);const LoadMoreFonts=getFonts(LoadMore);const SpacerFonts=getFonts(Spacer);const FooterFonts=getFonts(Footer);const breakpoints={jwjSGAMvD:\"(min-width: 810px) and (max-width: 1199px)\",T3oKhuvQg:\"(max-width: 809px)\",WQLkyLRf1:\"(min-width: 1200px)\"};const isBrowser=()=>typeof document!==\"undefined\";const serializationHash=\"framer-o8fPK\";const variantClassNames={jwjSGAMvD:\"framer-v-16hkixg\",T3oKhuvQg:\"framer-v-1wlu460\",WQLkyLRf1:\"framer-v-72rtr7\"};const transition1={delay:0,duration:.7,ease:[.44,0,.56,1],type:\"tween\"};const animation={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition1,x:0,y:0};const animation1={opacity:.001,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:50};const transition2={delay:.2,duration:.7,ease:[.44,0,.56,1],type:\"tween\"};const animation2={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition2,x:0,y:0};const transition3={delay:.4,duration:.7,ease:[.44,0,.56,1],type:\"tween\"};const animation3={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition3,x:0,y:0};const transition4={damping:30,delay:1,mass:1,stiffness:400,type:\"spring\"};const animation4={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition4,x:0,y:0};const animation5={opacity:.001,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0};const animation6={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:0,y:40};const transition5={delay:0,duration:1,ease:[.4,0,0,1],type:\"tween\"};const animation7={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition5,x:0,y:40};const transition6={delay:0,duration:1,ease:[0,0,1,1],type:\"tween\"};const animation8={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:20};const toResponsiveImage=value=>{if(typeof value===\"object\"&&value!==null&&typeof value.src===\"string\"){return value;}return typeof value===\"string\"?{src:value}:undefined;};const loaderVariants=(repeaterState,variants,currentVariant)=>{var _variants_disabled;if(repeaterState.currentPage>=repeaterState.totalPages)return(_variants_disabled=variants.disabled)!==null&&_variants_disabled!==void 0?_variants_disabled:currentVariant;var _variants_loading;if(repeaterState.isLoading)return(_variants_loading=variants.loading)!==null&&_variants_loading!==void 0?_variants_loading:currentVariant;return currentVariant;};const QueryData=({query,pageSize,children})=>{const{paginatedQuery,paginationInfo,loadMore}=useLoadMorePaginatedQuery(query,pageSize,\"UsH_7BJp4\");const data=useQueryData(paginatedQuery);return children(data,paginationInfo,loadMore);};const metadata=metadataProvider();const humanReadableVariantMap={Desktop:\"WQLkyLRf1\",Phone:\"T3oKhuvQg\",Tablet:\"jwjSGAMvD\"};const getProps=({height,id,width,...props})=>{var _humanReadableVariantMap_props_variant,_ref;return{...props,variant:(_ref=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref!==void 0?_ref:\"WQLkyLRf1\"};};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,w2tol5eyJUsH_7BJp4,h1IIjTFeqUsH_7BJp4,Rc2cSjBtrUsH_7BJp4,ItROvghFYUsH_7BJp4,UbbE3CQniUsH_7BJp4,idUsH_7BJp4,...restProps}=getProps(props);React.useEffect(()=>{const metadata1=metadataProvider(undefined,activeLocale);if(metadata1.robots){let robotsTag=document.querySelector('meta[name=\"robots\"]');if(robotsTag){robotsTag.setAttribute(\"content\",metadata1.robots);}else{robotsTag=document.createElement(\"meta\");robotsTag.setAttribute(\"name\",\"robots\");robotsTag.setAttribute(\"content\",metadata1.robots);document.head.appendChild(robotsTag);}}},[undefined,activeLocale]);React.useInsertionEffect(()=>{const metadata1=metadataProvider(undefined,activeLocale);document.title=metadata1.title||\"\";if(metadata1.viewport){var _document_querySelector;(_document_querySelector=document.querySelector('meta[name=\"viewport\"]'))===null||_document_querySelector===void 0?void 0:_document_querySelector.setAttribute(\"content\",metadata1.viewport);}const bodyCls=metadata1.bodyClassName;if(bodyCls){const body=document.body;body.classList.forEach(c=>c.startsWith(\"framer-body-\")&&body.classList.remove(c));body.classList.add(`${metadata1.bodyClassName}-framer-o8fPK`);}return()=>{if(bodyCls)document.body.classList.remove(`${metadata1.bodyClassName}-framer-o8fPK`);};},[undefined,activeLocale]);const[baseVariant,hydratedBaseVariant]=useHydratedBreakpointVariants(variant,breakpoints,false);const gestureVariant=undefined;const{activeVariantCallback,delay}=useActiveVariantCallback(undefined);const Wld3NDzSj1b86s49=({overlay,loadMore})=>activeVariantCallback(async(...args)=>{loadMore();});const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className,sharedStyle2.className,sharedStyle3.className,sharedStyle4.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const ref1=React.useRef(null);const ref2=React.useRef(null);const ref3=React.useRef(null);const elementId=useRouteElementId(\"XOoXiN5JX\");const ref4=React.useRef(null);const elementId1=useRouteElementId(\"NR6Y26yO4\");const router=useRouter();const elementId2=useRouteElementId(\"CFN9Rvv1Q\");const defaultLayoutId=React.useId();useCustomCursors({});return /*#__PURE__*/_jsx(GeneratedComponentContext.Provider,{value:{primaryVariantId:\"WQLkyLRf1\",variantClassNames},children:/*#__PURE__*/_jsxs(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:[/*#__PURE__*/_jsxs(motion.div,{...restProps,className:cx(scopingClassNames,\"framer-72rtr7\",className),ref:ref!==null&&ref!==void 0?ref:ref1,style:{...style},children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:112,width:\"100vw\",y:0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1x6so1i-container\",layoutScroll:true,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{jwjSGAMvD:{__framer__targets:[{ref:ref3,target:\"o2dWpdiZB\"}],variant:\"QnJb_UM4c\"},T3oKhuvQg:{__framer__targets:[{ref:ref3,target:\"nRtIGJzkW\"}],variant:\"eIBHrYYe5\"}},children:/*#__PURE__*/_jsx(NavbarWithVariantAppearEffect,{__framer__animateOnce:false,__framer__targets:[{ref:ref2,target:\"mhHvopoVb\"}],__framer__threshold:0,__framer__variantAppearEffectEnabled:true,height:\"100%\",id:\"svT0JBgRQ\",layoutId:\"svT0JBgRQ\",style:{width:\"100%\"},variant:\"EjIsgBDV_\",width:\"100%\"})})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-3p404a\",\"data-framer-name\":\"Top Sections\",name:\"Top Sections\",children:[/*#__PURE__*/_jsx(\"section\",{\"aria-label\":\"hero\",className:\"framer-1uc4d85\",\"data-framer-name\":\"Hero v3\",id:elementId,name:\"Hero v3\",ref:ref4,children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1n4zc8m\",\"data-framer-name\":\"container\",name:\"container\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-l1xgaj\",\"data-framer-name\":\"lockup\",name:\"lockup\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-5et7h2\",\"data-framer-name\":\"heading\",name:\"heading\",children:[/*#__PURE__*/_jsxs(MotionDivWithOptimizedAppearEffect,{animate:animation,className:\"framer-9brhyh\",\"data-framer-appear-id\":\"9brhyh\",\"data-framer-name\":\"1\",initial:animation1,name:\"1\",optimized:true,children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{jwjSGAMvD:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h1\",{style:{\"--font-selector\":\"Q1VTVE9NO01heml1cyBEaXNwbGF5IFJlZ3VsYXI=\",\"--framer-font-family\":'\"Mazius Display Regular\", \"Mazius Display Regular Placeholder\", sans-serif',\"--framer-font-size\":\"64px\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"1.15em\",\"--framer-text-alignment\":\"center\"},children:[\"I'm \",/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"Q1VTVE9NO01heml1cyBEaXNwbGF5IEV4dHJhIGl0YWxpYw==\",\"--framer-font-family\":'\"Mazius Display Extra italic\", \"Mazius Display Extra italic Placeholder\", sans-serif'},children:/*#__PURE__*/_jsx(\"em\",{children:\"Nura\"})})]})})},T3oKhuvQg:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h1\",{style:{\"--font-selector\":\"Q1VTVE9NO01heml1cyBEaXNwbGF5IFJlZ3VsYXI=\",\"--framer-font-family\":'\"Mazius Display Regular\", \"Mazius Display Regular Placeholder\", sans-serif',\"--framer-font-size\":\"36px\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"1.25em\",\"--framer-text-alignment\":\"center\"},children:[\"I'm \",/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"Q1VTVE9NO01heml1cyBEaXNwbGF5IEV4dHJhIGl0YWxpYw==\",\"--framer-font-family\":'\"Mazius Display Extra italic\", \"Mazius Display Extra italic Placeholder\", sans-serif'},children:/*#__PURE__*/_jsx(\"em\",{children:\"Nura\"})})]})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h1\",{style:{\"--font-selector\":\"Q1VTVE9NO01heml1cyBEaXNwbGF5IFJlZ3VsYXI=\",\"--framer-font-family\":'\"Mazius Display Regular\", \"Mazius Display Regular Placeholder\", sans-serif',\"--framer-font-size\":\"88px\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"1.15em\",\"--framer-text-alignment\":\"center\"},children:[\"I'm \",/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"Q1VTVE9NO01heml1cyBEaXNwbGF5IEV4dHJhIGl0YWxpYw==\",\"--framer-font-family\":'\"Mazius Display Extra italic\", \"Mazius Display Extra italic Placeholder\", sans-serif'},children:/*#__PURE__*/_jsx(\"em\",{children:\"Nura\"})})]})}),className:\"framer-zhbi8q\",fonts:[\"CUSTOM;Mazius Display Regular\",\"CUSTOM;Mazius Display Extra italic\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{jwjSGAMvD:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"Q1VTVE9NO01heml1cyBEaXNwbGF5IFJlZ3VsYXI=\",\"--framer-font-family\":'\"Mazius Display Regular\", \"Mazius Display Regular Placeholder\", sans-serif',\"--framer-font-size\":\"64px\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"1.15em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-00af65c3-92fd-4f69-9228-cfe71d95f29a, rgb(0, 0, 0))\"},children:\",\"})})},T3oKhuvQg:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"Q1VTVE9NO01heml1cyBEaXNwbGF5IFJlZ3VsYXI=\",\"--framer-font-family\":'\"Mazius Display Regular\", \"Mazius Display Regular Placeholder\", sans-serif',\"--framer-font-size\":\"44px\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"1.25em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-00af65c3-92fd-4f69-9228-cfe71d95f29a, rgb(0, 0, 0))\"},children:\",\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"Q1VTVE9NO01heml1cyBEaXNwbGF5IFJlZ3VsYXI=\",\"--framer-font-family\":'\"Mazius Display Regular\", \"Mazius Display Regular Placeholder\", sans-serif',\"--framer-font-size\":\"88px\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"1.15em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-00af65c3-92fd-4f69-9228-cfe71d95f29a, rgb(0, 0, 0))\"},children:\",\"})}),className:\"framer-1gsfqbl\",fonts:[\"CUSTOM;Mazius Display Regular\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsxs(MotionDivWithOptimizedAppearEffect,{animate:animation2,className:\"framer-1r9qv9a\",\"data-framer-appear-id\":\"1r9qv9a\",\"data-framer-name\":\"2\",initial:animation1,name:\"2\",optimized:true,children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{jwjSGAMvD:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"Q1VTVE9NO01heml1cyBEaXNwbGF5IFJlZ3VsYXI=\",\"--framer-font-family\":'\"Mazius Display Regular\", \"Mazius Display Regular Placeholder\", sans-serif',\"--framer-font-size\":\"64px\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"1.15em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-00af65c3-92fd-4f69-9228-cfe71d95f29a, rgb(0, 0, 0))\"},children:\"a Product\"})})},T3oKhuvQg:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"Q1VTVE9NO01heml1cyBEaXNwbGF5IFJlZ3VsYXI=\",\"--framer-font-family\":'\"Mazius Display Regular\", \"Mazius Display Regular Placeholder\", sans-serif',\"--framer-font-size\":\"36px\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"1.25em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-00af65c3-92fd-4f69-9228-cfe71d95f29a, rgb(0, 0, 0))\"},children:\"a Product\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"Q1VTVE9NO01heml1cyBEaXNwbGF5IFJlZ3VsYXI=\",\"--framer-font-family\":'\"Mazius Display Regular\", \"Mazius Display Regular Placeholder\", sans-serif',\"--framer-font-size\":\"88px\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"1.15em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-00af65c3-92fd-4f69-9228-cfe71d95f29a, rgb(0, 0, 0))\"},children:\"a Product\"})}),className:\"framer-ye9nxy\",fonts:[\"CUSTOM;Mazius Display Regular\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{jwjSGAMvD:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"Q1VTVE9NO01heml1cyBEaXNwbGF5IEV4dHJhIGl0YWxpYw==\",\"--framer-font-family\":'\"Mazius Display Extra italic\", \"Mazius Display Extra italic Placeholder\", sans-serif',\"--framer-font-size\":\"64px\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"1.15em\",\"--framer-text-alignment\":\"center\"},children:/*#__PURE__*/_jsx(\"em\",{children:\"Designer\"})})})},T3oKhuvQg:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"Q1VTVE9NO01heml1cyBEaXNwbGF5IEV4dHJhIGl0YWxpYw==\",\"--framer-font-family\":'\"Mazius Display Extra italic\", \"Mazius Display Extra italic Placeholder\", sans-serif',\"--framer-font-size\":\"36px\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"1.25em\",\"--framer-text-alignment\":\"center\"},children:/*#__PURE__*/_jsx(\"em\",{children:\"Designer\"})})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"Q1VTVE9NO01heml1cyBEaXNwbGF5IEV4dHJhIGl0YWxpYw==\",\"--framer-font-family\":'\"Mazius Display Extra italic\", \"Mazius Display Extra italic Placeholder\", sans-serif',\"--framer-font-size\":\"88px\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"1.15em\",\"--framer-text-alignment\":\"center\"},children:/*#__PURE__*/_jsx(\"em\",{children:\"Designer\"})})}),className:\"framer-zcs7ts\",fonts:[\"CUSTOM;Mazius Display Extra italic\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsx(MotionDivWithOptimizedAppearEffect,{animate:animation3,className:\"framer-idpptd\",\"data-framer-appear-id\":\"idpptd\",\"data-framer-name\":\"3\",initial:animation1,name:\"3\",optimized:true,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{jwjSGAMvD:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"Q1VTVE9NO01heml1cyBEaXNwbGF5IFJlZ3VsYXI=\",\"--framer-font-family\":'\"Mazius Display Regular\", \"Mazius Display Regular Placeholder\", sans-serif',\"--framer-font-size\":\"64px\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"1.15em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-00af65c3-92fd-4f69-9228-cfe71d95f29a, rgb(0, 0, 0))\"},children:\"based in Chicago\"})})},T3oKhuvQg:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"Q1VTVE9NO01heml1cyBEaXNwbGF5IFJlZ3VsYXI=\",\"--framer-font-family\":'\"Mazius Display Regular\", \"Mazius Display Regular Placeholder\", sans-serif',\"--framer-font-size\":\"36px\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"1.25em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-00af65c3-92fd-4f69-9228-cfe71d95f29a, rgb(0, 0, 0))\"},children:\"based in Chicago\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"Q1VTVE9NO01heml1cyBEaXNwbGF5IFJlZ3VsYXI=\",\"--framer-font-family\":'\"Mazius Display Regular\", \"Mazius Display Regular Placeholder\", sans-serif',\"--framer-font-size\":\"88px\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"1.15em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-00af65c3-92fd-4f69-9228-cfe71d95f29a, rgb(0, 0, 0))\"},children:\"based in Chicago\"})}),className:\"framer-1bylmch\",fonts:[\"CUSTOM;Mazius Display Regular\"],verticalAlignment:\"top\",withExternalLayout:true})})})]}),/*#__PURE__*/_jsx(RichTextWithOptimizedAppearEffect,{__fromCanvasComponent:true,animate:animation4,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-d7digj\",\"data-styles-preset\":\"fpmYl3q2D\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-f69cd86c-24c7-494d-84d6-1463f28d9732, rgb(8, 8, 8))\"},children:\"with a passion for creating experiences that uplift community, bring joy and tell great stories. I also love curly fries \uD83C\uDF5F, powerlifting \uD83C\uDFCB\uD83C\uDFFB\u200D\u2640\uFE0F and nature hikes \uD83E\uDD7E\"})}),className:\"framer-1asaugq\",\"data-framer-appear-id\":\"1asaugq\",\"data-framer-name\":\"subheading\",fonts:[\"Inter\"],initial:animation5,name:\"subheading\",optimized:true,verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1yshbvw\",\"data-framer-name\":\"Social Links\",name:\"Social Links\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1drl8s5-container\",children:/*#__PURE__*/_jsx(TextLink,{height:\"100%\",id:\"N1GwUpW4P\",layoutId:\"N1GwUpW4P\",link:\"https://www.linkedin.com/in/nurahusseini/\",newTab:true,textColor:\"var(--token-f69cd86c-24c7-494d-84d6-1463f28d9732, rgb(8, 8, 8))\",title:\"Let's Connect!\",variant:\"bAiGyyJVS\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-19v651z-container\",children:/*#__PURE__*/_jsx(TextLink,{height:\"100%\",id:\"lGUKFPTkS\",layoutId:\"lGUKFPTkS\",link:\"https://drive.google.com/file/d/1Zl8lNkf5UTnpfkZDggzNcSKUA1IE48ag/view?usp=sharing\",newTab:true,textColor:\"var(--token-f69cd86c-24c7-494d-84d6-1463f28d9732, rgb(8, 8, 8))\",title:\"View Resume\",variant:\"bAiGyyJVS\",width:\"100%\"})})})]}),/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition5},__framer__animateOnce:true,__framer__enter:animation6,__framer__exit:animation7,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-11q4xfy\",\"data-framer-name\":\"Scroll Down\",name:\"Scroll Down\",style:{transformPerspective:1200},children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-expajc\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1sc3myo\"}),/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__loop:animation8,__framer__loopEffectEnabled:true,__framer__loopRepeatDelay:0,__framer__loopRepeatType:\"mirror\",__framer__loopTransition:transition6,__perspectiveFX:false,__targetOpacity:1,className:\"framer-ddg3de\"})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-14rxr96\",\"data-styles-preset\":\"ar_BrOGl3\",style:{\"--framer-text-color\":\"var(--token-f9b2da3b-fb18-49a2-a537-293e0346191c, rgb(26, 26, 26))\"},children:\"SCROLL\"})}),className:\"framer-r2xb39\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})]})}),/*#__PURE__*/_jsxs(\"section\",{className:\"framer-no33f\",\"data-framer-name\":\"Work \",id:elementId1,name:\"Work \",ref:ref2,children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1d7px0\",\"data-framer-name\":\"Heading Wrapper\",name:\"Heading Wrapper\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1391a6x-container\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"var(--token-5a9d1e35-d755-4e4a-ab24-b659538ac825, rgb(203, 73, 32))\",height:\"100%\",iconSearch:\"House\",iconSelection:\"StarFour\",id:\"b5S1Jlxl6\",layoutId:\"b5S1Jlxl6\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"fill\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-xnc17q-container\",children:/*#__PURE__*/_jsx(Ticker,{alignment:\"center\",direction:\"left\",fadeOptions:{fadeAlpha:0,fadeContent:false,fadeInset:0,fadeWidth:0,overflow:true},gap:64,height:\"100%\",hoverFactor:1,id:\"zcVDvt8vD\",layoutId:\"zcVDvt8vD\",padding:0,paddingBottom:0,paddingLeft:0,paddingPerSide:false,paddingRight:0,paddingTop:0,sizingOptions:{heightType:true,widthType:true},slots:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-14ku3hs\",\"data-framer-name\":\"Ticker Heading\",name:\"Ticker Heading\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-sim9wk\",\"data-styles-preset\":\"UNg0XYoAn\",children:\"Featured Work\"})}),className:\"framer-z9zljl\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})],speed:50,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1uft2qd\",\"data-framer-name\":\"Work\",name:\"Work\",children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(QueryData,{pageSize:4,query:{from:{alias:\"UsH_7BJp4\",data:Work,type:\"Collection\"},select:[{collection:\"UsH_7BJp4\",name:\"w2tol5eyJ\",type:\"Identifier\"},{collection:\"UsH_7BJp4\",name:\"h1IIjTFeq\",type:\"Identifier\"},{collection:\"UsH_7BJp4\",name:\"Rc2cSjBtr\",type:\"Identifier\"},{collection:\"UsH_7BJp4\",name:\"ItROvghFY\",type:\"Identifier\"},{collection:\"UsH_7BJp4\",name:\"UbbE3CQni\",type:\"Identifier\"},{collection:\"UsH_7BJp4\",name:\"id\",type:\"Identifier\"}]},children:(collection,paginationInfo,loadMore)=>/*#__PURE__*/_jsxs(_Fragment,{children:[collection===null||collection===void 0?void 0:collection.map(({h1IIjTFeq:h1IIjTFeqUsH_7BJp4,id:idUsH_7BJp4,ItROvghFY:ItROvghFYUsH_7BJp4,Rc2cSjBtr:Rc2cSjBtrUsH_7BJp4,UbbE3CQni:UbbE3CQniUsH_7BJp4,w2tol5eyJ:w2tol5eyJUsH_7BJp4},index)=>{h1IIjTFeqUsH_7BJp4!==null&&h1IIjTFeqUsH_7BJp4!==void 0?h1IIjTFeqUsH_7BJp4:h1IIjTFeqUsH_7BJp4=\"\";Rc2cSjBtrUsH_7BJp4!==null&&Rc2cSjBtrUsH_7BJp4!==void 0?Rc2cSjBtrUsH_7BJp4:Rc2cSjBtrUsH_7BJp4=\"\";ItROvghFYUsH_7BJp4!==null&&ItROvghFYUsH_7BJp4!==void 0?ItROvghFYUsH_7BJp4:ItROvghFYUsH_7BJp4=\"\";UbbE3CQniUsH_7BJp4!==null&&UbbE3CQniUsH_7BJp4!==void 0?UbbE3CQniUsH_7BJp4:UbbE3CQniUsH_7BJp4=\"\";return /*#__PURE__*/_jsx(LayoutGroup,{id:`UsH_7BJp4-${idUsH_7BJp4}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{UbbE3CQni:UbbE3CQniUsH_7BJp4},children:/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{pathVariables:{UbbE3CQni:UbbE3CQniUsH_7BJp4},webPageId:\"owINTXCMJ\"},implicitPathVariables:undefined},{href:{pathVariables:{UbbE3CQni:UbbE3CQniUsH_7BJp4},webPageId:\"owINTXCMJ\"},implicitPathVariables:undefined},{href:{pathVariables:{UbbE3CQni:UbbE3CQniUsH_7BJp4},webPageId:\"owINTXCMJ\"},implicitPathVariables:undefined}],children:resolvedLinks=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{jwjSGAMvD:{height:400,width:\"max((min(100vw - 64px, 1850px) - 8px) / 2, 200px)\",y:1024.6},T3oKhuvQg:{height:500,width:\"max(min(100vw - 32px, 1850px), 200px)\",y:1028.8}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:700,width:\"max((min(100vw - 128px, 1850px) - 8px) / 2, 200px)\",y:1289,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1yq72nn-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{jwjSGAMvD:{jdR6Ecsqs:resolvedLinks[1],variant:\"SML2KbPrf\"},T3oKhuvQg:{jdR6Ecsqs:resolvedLinks[2],variant:\"SML2KbPrf\"}},children:/*#__PURE__*/_jsx(ProjectCard,{aZ1jsZy3r:ItROvghFYUsH_7BJp4,height:\"100%\",id:\"Gk_0Ce9H0\",jdR6Ecsqs:resolvedLinks[0],layoutId:\"Gk_0Ce9H0\",OlmZAy2zr:toResponsiveImage(w2tol5eyJUsH_7BJp4),RmIf_fed8:h1IIjTFeqUsH_7BJp4,style:{height:\"100%\",width:\"100%\"},variant:\"aT2B9OIHT\",width:\"100%\",Z5Ee92GQA:Rc2cSjBtrUsH_7BJp4})})})})})})})},idUsH_7BJp4);}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{jwjSGAMvD:{y:1872.6},T3oKhuvQg:{y:3092.8}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:56,y:2737,children:/*#__PURE__*/_jsx(Container,{className:\"framer-joelcf-container\",children:/*#__PURE__*/_jsx(LoadMore,{height:\"100%\",id:\"bvKSPDX96\",layoutId:\"bvKSPDX96\",variant:loaderVariants(paginationInfo,{disabled:\"r_fQ8bZiJ\",loading:\"pqXPxF6nv\"},\"yakISainI\"),width:\"100%\",Wld3NDzSj:Wld3NDzSj1b86s49({loadMore})})})})})]})})})})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-nm3ys2\",\"data-framer-name\":\"Bottom Sections\",name:\"Bottom Sections\",children:[/*#__PURE__*/_jsx(\"section\",{className:\"framer-14qiatx\",\"data-framer-name\":\"About \",id:elementId2,name:\"About \",ref:ref3,children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1ck4e8a\",\"data-framer-name\":\"About Grid\",name:\"About Grid\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-f9lto2\",\"data-border\":true,\"data-framer-name\":\"Introduction\",name:\"Introduction\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-d7digj\",\"data-styles-preset\":\"fpmYl3q2D\",children:\"I'm an eager designer and creative problem-solver driven by creating more thoughtful and delightful experiences for others. I design with community, culture and storytelling at the center of my work. I was led to human-centered design because I genuinely want to see the best of people, nurture the best in people and be the best for people. I also firmly believe in the importance of seizing the moment, and just as much in the power of iteration. \"})}),className:\"framer-434pf3\",\"data-framer-name\":\"Design, for me, goes beyond solving problems. It's about improving user experiences, striking the perfect balance between aesthetics and functionality, and even creating products that form emotional connections with users.\",fonts:[\"Inter\"],name:\"Design, for me, goes beyond solving problems. It's about improving user experiences, striking the perfect balance between aesthetics and functionality, and even creating products that form emotional connections with users.\",verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1p9xc8o-container\",children:/*#__PURE__*/_jsx(Spacer,{height:\"100%\",id:\"oYwXKPtpd\",layoutId:\"oYwXKPtpd\",style:{height:\"100%\",width:\"100%\"},variant:\"ixl4s9UZ5\",width:\"100%\"})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SG9tZW1hZGUgQXBwbGUtcmVndWxhcg==\",\"--framer-font-family\":'\"Homemade Apple\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-line-height\":\"130%\",\"--framer-text-color\":\"var(--token-0d77f7e2-7010-4b2e-8d4c-1b252f1aacc0, rgb(203, 203, 203))\"},children:\"Nura Husseini-Yoon\"})}),className:\"framer-ss2bdg\",\"data-framer-name\":\"Signature\",fonts:[\"GF;Homemade Apple-regular\"],name:\"Signature\",verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{jwjSGAMvD:{\"data-border\":true},T3oKhuvQg:{\"data-border\":true}},children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1h4jmbt\",\"data-framer-name\":\"Experience\",name:\"Experience\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-zdb9t7\",\"data-styles-preset\":\"jWwSpmBh0\",children:\"Experience\"})}),className:\"framer-jenofq\",\"data-framer-name\":\"Experience\",fonts:[\"Inter\"],name:\"Experience\",verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-2w5d2a\",\"data-framer-name\":\"Rows\",name:\"Rows\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-pnvg8k\",\"data-framer-name\":\"Experience Item\",name:\"Experience Item\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-d7digj\",\"data-styles-preset\":\"fpmYl3q2D\",children:\"FlashHoops\"})}),className:\"framer-12154hr\",\"data-framer-name\":\"Google\",fonts:[\"Inter\"],name:\"Google\",verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1e01lj5\",\"data-styles-preset\":\"DUDl1a9Di\",style:{\"--framer-text-alignment\":\"right\"},children:\"Founding Designer\"})}),className:\"framer-181xgik\",\"data-framer-name\":\"User Researcher\",fonts:[\"Inter\"],name:\"User Researcher\",verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1e01lj5\",\"data-styles-preset\":\"DUDl1a9Di\",style:{\"--framer-text-alignment\":\"right\"},children:\"2023 \u2013 Present\"})}),className:\"framer-1uy5uc4\",\"data-framer-name\":\"2013-2015\",fonts:[\"Inter\"],name:\"2013-2015\",verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-ytw2w9\",\"data-framer-name\":\"Experience Item\",name:\"Experience Item\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-d7digj\",\"data-styles-preset\":\"fpmYl3q2D\",children:\"ACGT, Inc.\"})}),className:\"framer-15wynq1\",\"data-framer-name\":\"Freelance\",fonts:[\"Inter\"],name:\"Freelance\",verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1e01lj5\",\"data-styles-preset\":\"DUDl1a9Di\",style:{\"--framer-text-alignment\":\"right\"},children:\"Product Designer\"})}),className:\"framer-1hex0ib\",\"data-framer-name\":\"Product Designer\",fonts:[\"Inter\"],name:\"Product Designer\",verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1e01lj5\",\"data-styles-preset\":\"DUDl1a9Di\",style:{\"--framer-text-alignment\":\"right\"},children:\"2023 \u2013 Present\"})}),className:\"framer-v98nmw\",\"data-framer-name\":\"Present\",fonts:[\"Inter\"],name:\"Present\",verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1c3cf12\",\"data-framer-name\":\"Experience Item\",name:\"Experience Item\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-d7digj\",\"data-styles-preset\":\"fpmYl3q2D\",children:\"Morningstar\"})}),className:\"framer-7vib9s\",\"data-framer-name\":\"Airbnb\",fonts:[\"Inter\"],name:\"Airbnb\",verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1e01lj5\",\"data-styles-preset\":\"DUDl1a9Di\",style:{\"--framer-text-alignment\":\"right\"},children:\"Senior UX Designer\"})}),className:\"framer-1g39lvg\",\"data-framer-name\":\"UX Designer\",fonts:[\"Inter\"],name:\"UX Designer\",verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1e01lj5\",\"data-styles-preset\":\"DUDl1a9Di\",style:{\"--framer-text-alignment\":\"right\"},children:\"2021 \u2013 2023\"})}),className:\"framer-158k39a\",\"data-framer-name\":\"2015-2017\",fonts:[\"Inter\"],name:\"2015-2017\",verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-h7bgxp\",\"data-framer-name\":\"Experience Item\",name:\"Experience Item\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-d7digj\",\"data-styles-preset\":\"fpmYl3q2D\",children:\"Intuit\"})}),className:\"framer-xayvxi\",\"data-framer-name\":\"Nike\",fonts:[\"Inter\"],name:\"Nike\",verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1e01lj5\",\"data-styles-preset\":\"DUDl1a9Di\",style:{\"--framer-text-alignment\":\"right\"},children:\"Digital Designer\"})}),className:\"framer-xqh8wk\",\"data-framer-name\":\"Product Designer\",fonts:[\"Inter\"],name:\"Product Designer\",verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1e01lj5\",\"data-styles-preset\":\"DUDl1a9Di\",style:{\"--framer-text-alignment\":\"right\"},children:\"2020 \u2013 2023\"})}),className:\"framer-yljahy\",\"data-framer-name\":\"2018-2019\",fonts:[\"Inter\"],name:\"2018-2019\",verticalAlignment:\"top\",withExternalLayout:true})]})]})]})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{jwjSGAMvD:{\"data-border\":true},T3oKhuvQg:{\"data-border\":true}},children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-zut0xr\",\"data-framer-name\":\"Tools\",name:\"Tools\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-zdb9t7\",\"data-styles-preset\":\"jWwSpmBh0\",children:\"Tools\"})}),className:\"framer-icyjvs\",\"data-framer-name\":\"Tools I specialize in\",fonts:[\"Inter\"],name:\"Tools I specialize in\",verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-lmjqmn\",\"data-framer-name\":\"Columns\",name:\"Columns\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-c3ur7b\",\"data-framer-name\":\"Rows\",name:\"Rows\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-w396h4\",\"data-framer-name\":\"Tool\",name:\"Tool\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{jwjSGAMvD:{background:{alt:\"Figma Logo\",fit:\"fill\",loading:getLoadingLazyAtYPosition(3311.7999999999997),src:\"https://framerusercontent.com/images/ehLP8mZkO2ftK4i3EqvjWRLRPQI.png?scale-down-to=512\"}},T3oKhuvQg:{background:{alt:\"Figma Logo\",fit:\"fill\",loading:getLoadingLazyAtYPosition(4436.000000000001),src:\"https://framerusercontent.com/images/ehLP8mZkO2ftK4i3EqvjWRLRPQI.png?scale-down-to=512\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"Figma Logo\",fit:\"fill\",loading:getLoadingLazyAtYPosition(3914.2),src:\"https://framerusercontent.com/images/ehLP8mZkO2ftK4i3EqvjWRLRPQI.png?scale-down-to=512\"},className:\"framer-snx4zq\",\"data-framer-name\":\"Logo\",name:\"Logo\"})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-d7digj\",\"data-styles-preset\":\"fpmYl3q2D\",children:\"Figma\"})}),className:\"framer-1xr98n7\",\"data-framer-name\":\"Figma\",fonts:[\"Inter\"],name:\"Figma\",verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-aogteg\",\"data-framer-name\":\"Tool\",name:\"Tool\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{jwjSGAMvD:{background:{alt:\"Photoshop Logo\",fit:\"fill\",loading:getLoadingLazyAtYPosition(3471.7999999999997),src:\"https://framerusercontent.com/images/hJOHiLkks19qoiWIahROzWcplvk.png?scale-down-to=512\"}},T3oKhuvQg:{background:{alt:\"Photoshop Logo\",fit:\"fill\",loading:getLoadingLazyAtYPosition(4596.000000000001),src:\"https://framerusercontent.com/images/hJOHiLkks19qoiWIahROzWcplvk.png?scale-down-to=512\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"Photoshop Logo\",fit:\"fill\",loading:getLoadingLazyAtYPosition(4074.2),src:\"https://framerusercontent.com/images/hJOHiLkks19qoiWIahROzWcplvk.png?scale-down-to=512\"},className:\"framer-1i372ut\",\"data-framer-name\":\"Logo\",name:\"Logo\"})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-d7digj\",\"data-styles-preset\":\"fpmYl3q2D\",children:\"Photoshop\"})}),className:\"framer-18zpytv\",\"data-framer-name\":\"Photoshop\",fonts:[\"Inter\"],name:\"Photoshop\",verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-kir1lg\",\"data-framer-name\":\"Tool\",name:\"Tool\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{jwjSGAMvD:{background:{alt:\"Notion Logo\",fit:\"stretch\",loading:getLoadingLazyAtYPosition(3631.7999999999997),positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/yfYHsFsBtUUcgeTdCWuTgm63U.png\"}},T3oKhuvQg:{background:{alt:\"Notion Logo\",fit:\"stretch\",loading:getLoadingLazyAtYPosition(4756.000000000001),positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/yfYHsFsBtUUcgeTdCWuTgm63U.png\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"Notion Logo\",fit:\"stretch\",loading:getLoadingLazyAtYPosition(4234.2),positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/yfYHsFsBtUUcgeTdCWuTgm63U.png\"},className:\"framer-1s95pwx\",\"data-framer-name\":\"Logo\",name:\"Logo\"})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-d7digj\",\"data-styles-preset\":\"fpmYl3q2D\",children:\"Notion\"})}),className:\"framer-100b6j2\",\"data-framer-name\":\"Notion\",fonts:[\"Inter\"],name:\"Notion\",verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-101szcu\",\"data-framer-name\":\"Rows\",name:\"Rows\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1nlfwl\",\"data-framer-name\":\"Tool\",name:\"Tool\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{jwjSGAMvD:{background:{alt:\"Framer Logo\",fit:\"fill\",loading:getLoadingLazyAtYPosition(3311.7999999999997),src:\"https://framerusercontent.com/images/hBVaEEI2ZL8BAPW9pPn6Mt36BU.png\"}},T3oKhuvQg:{background:{alt:\"Framer Logo\",fit:\"fill\",loading:getLoadingLazyAtYPosition(4436.000000000001),src:\"https://framerusercontent.com/images/hBVaEEI2ZL8BAPW9pPn6Mt36BU.png\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"Framer Logo\",fit:\"fill\",loading:getLoadingLazyAtYPosition(3914.2),src:\"https://framerusercontent.com/images/hBVaEEI2ZL8BAPW9pPn6Mt36BU.png\"},className:\"framer-p7knaz\",\"data-framer-name\":\"Logo\",name:\"Logo\"})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-d7digj\",\"data-styles-preset\":\"fpmYl3q2D\",children:\"Framer\"})}),className:\"framer-9naxu3\",\"data-framer-name\":\"Framer\",fonts:[\"Inter\"],name:\"Framer\",verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-cgg4lw\",\"data-framer-name\":\"Tool\",name:\"Tool\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{jwjSGAMvD:{background:{alt:\"Illustrator Logo\",fit:\"fill\",loading:getLoadingLazyAtYPosition(3471.7999999999997),src:\"https://framerusercontent.com/images/qezqFQ2rKEiDsA0HhFy2fhIY84.png?scale-down-to=512\"}},T3oKhuvQg:{background:{alt:\"Illustrator Logo\",fit:\"fill\",loading:getLoadingLazyAtYPosition(4596.000000000001),src:\"https://framerusercontent.com/images/qezqFQ2rKEiDsA0HhFy2fhIY84.png?scale-down-to=512\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"Illustrator Logo\",fit:\"fill\",loading:getLoadingLazyAtYPosition(4074.2),src:\"https://framerusercontent.com/images/qezqFQ2rKEiDsA0HhFy2fhIY84.png?scale-down-to=512\"},className:\"framer-1rp6ae1\",\"data-framer-name\":\"Logo\",name:\"Logo\"})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-d7digj\",\"data-styles-preset\":\"fpmYl3q2D\",children:\"Illustrator\"})}),className:\"framer-vjrr05\",\"data-framer-name\":\"Illustrator\",fonts:[\"Inter\"],name:\"Illustrator\",verticalAlignment:\"top\",withExternalLayout:true})]})]})]})]})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-vwyw0g\",\"data-border\":true,\"data-framer-name\":\"Expertise\",name:\"Expertise\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-zdb9t7\",\"data-styles-preset\":\"jWwSpmBh0\",children:\"Expertise\"})}),className:\"framer-1x25u75\",\"data-framer-name\":\"My Services\",fonts:[\"Inter\"],name:\"My Services\",verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1nbswn7\",\"data-framer-name\":\"Rows\",name:\"Rows\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-ah0ix1\",\"data-framer-name\":\"Service\",name:\"Service\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1raw5fx-container\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"var(--token-5a9d1e35-d755-4e4a-ab24-b659538ac825, rgb(203, 73, 32))\",height:\"100%\",iconSearch:\"House\",iconSelection:\"StarFour\",id:\"E1_avTs3q\",layoutId:\"E1_avTs3q\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"fill\",width:\"100%\"})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-d7digj\",\"data-styles-preset\":\"fpmYl3q2D\",children:\"Product Design\"})}),className:\"framer-1pcyfo9\",\"data-framer-name\":\"Product Design\",fonts:[\"Inter\"],name:\"Product Design\",verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-ylpsed\",\"data-framer-name\":\"Service\",name:\"Service\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-b18024-container\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"var(--token-5a9d1e35-d755-4e4a-ab24-b659538ac825, rgb(203, 73, 32))\",height:\"100%\",iconSearch:\"House\",iconSelection:\"StarFour\",id:\"SEckGIoOF\",layoutId:\"SEckGIoOF\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"fill\",width:\"100%\"})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-d7digj\",\"data-styles-preset\":\"fpmYl3q2D\",children:\"User Research\"})}),className:\"framer-rrpx2v\",\"data-framer-name\":\"User Research\",fonts:[\"Inter\"],name:\"User Research\",verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-14hroh3\",\"data-framer-name\":\"Service\",name:\"Service\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-95cpf1-container\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"var(--token-5a9d1e35-d755-4e4a-ab24-b659538ac825, rgb(203, 73, 32))\",height:\"100%\",iconSearch:\"House\",iconSelection:\"StarFour\",id:\"DHS67Zd1l\",layoutId:\"DHS67Zd1l\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"fill\",width:\"100%\"})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-d7digj\",\"data-styles-preset\":\"fpmYl3q2D\",children:\"Concept Development\"})}),className:\"framer-1pj3se2\",\"data-framer-name\":\"Concept Development\",fonts:[\"Inter\"],name:\"Concept Development\",verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-fa60j5\",\"data-framer-name\":\"Service\",name:\"Service\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-92ss46-container\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"var(--token-5a9d1e35-d755-4e4a-ab24-b659538ac825, rgb(203, 73, 32))\",height:\"100%\",iconSearch:\"House\",iconSelection:\"StarFour\",id:\"ajr5ipbSn\",layoutId:\"ajr5ipbSn\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"fill\",width:\"100%\"})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-d7digj\",\"data-styles-preset\":\"fpmYl3q2D\",children:\"User Experience Design\"})}),className:\"framer-1uby4rb\",\"data-framer-name\":\"User Experience Design\",fonts:[\"Inter\"],name:\"User Experience Design\",verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-i4i289\",\"data-framer-name\":\"Service\",name:\"Service\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1gb0kla-container\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"var(--token-5a9d1e35-d755-4e4a-ab24-b659538ac825, rgb(203, 73, 32))\",height:\"100%\",iconSearch:\"House\",iconSelection:\"StarFour\",id:\"knhuZ1Zst\",layoutId:\"knhuZ1Zst\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"fill\",width:\"100%\"})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-d7digj\",\"data-styles-preset\":\"fpmYl3q2D\",children:\"Design Strategy\"})}),className:\"framer-1k6a2bb\",\"data-framer-name\":\"User Experience Design\",fonts:[\"Inter\"],name:\"User Experience Design\",verticalAlignment:\"top\",withExternalLayout:true})]})]})]})]})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-16gijht\",\"data-framer-name\":\"Sticky Wrapper\",name:\"Sticky Wrapper\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{jwjSGAMvD:{y:4871.4},T3oKhuvQg:{y:5891.6}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:363,width:\"100vw\",y:4804.2,children:/*#__PURE__*/_jsx(Container,{className:\"framer-ti566d-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{jwjSGAMvD:{variant:\"KUoLrFf1u\"},T3oKhuvQg:{variant:\"GIXfsWPaD\"}},children:/*#__PURE__*/_jsx(Footer,{height:\"100%\",id:\"FSdKHiW3G\",layoutId:\"FSdKHiW3G\",style:{width:\"100%\"},variant:\"cHuZDlV5I\",width:\"100%\"})})})})})})]})]}),/*#__PURE__*/_jsx(\"div\",{id:\"overlay\"})]})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",`.${metadata.bodyClassName}-framer-o8fPK { background: var(--token-17677fcc-976a-469f-85e1-c12386a8752d, rgb(8, 8, 8)) /* {\"name\":\"BG Dark\"} */; }`,\".framer-o8fPK.framer-lux5qc, .framer-o8fPK .framer-lux5qc { display: block; }\",\".framer-o8fPK.framer-72rtr7 { align-content: center; align-items: center; background-color: var(--token-17677fcc-976a-469f-85e1-c12386a8752d, #080808); display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 1200px; }\",\".framer-o8fPK .framer-1x6so1i-container { flex: none; height: auto; left: 0px; position: fixed; top: 0px; width: 100%; z-index: 10; }\",\".framer-o8fPK .framer-3p404a, .framer-o8fPK .framer-nm3ys2 { align-content: center; align-items: center; background-color: var(--token-5a9d1e35-d755-4e4a-ab24-b659538ac825, #cb4920); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-o8fPK .framer-1uc4d85 { align-content: center; align-items: center; background-color: var(--token-5a9d1e35-d755-4e4a-ab24-b659538ac825, #caf76f); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 48px; height: 100vh; justify-content: center; overflow: visible; padding: 64px 64px 0px 64px; position: sticky; top: 0px; width: 100%; will-change: transform; z-index: 2; }\",\".framer-o8fPK .framer-1n4zc8m { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 48px; height: min-content; justify-content: center; max-width: 1440px; overflow: visible; padding: 40px 0px 40px 0px; position: relative; width: 100%; }\",\".framer-o8fPK .framer-l1xgaj { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-o8fPK .framer-5et7h2 { 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: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-o8fPK .framer-9brhyh, .framer-o8fPK .framer-idpptd { 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: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-o8fPK .framer-zhbi8q, .framer-o8fPK .framer-1gsfqbl, .framer-o8fPK .framer-ye9nxy, .framer-o8fPK .framer-zcs7ts, .framer-o8fPK .framer-1bylmch { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; max-width: 880px; position: relative; white-space: pre-wrap; width: auto; word-break: break-word; word-wrap: break-word; }\",\".framer-o8fPK .framer-1r9qv9a { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-o8fPK .framer-1asaugq { flex: none; height: auto; max-width: 550px; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-o8fPK .framer-1yshbvw { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 32px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; z-index: 1; }\",\".framer-o8fPK .framer-1drl8s5-container, .framer-o8fPK .framer-19v651z-container { flex: none; height: auto; position: relative; width: auto; }\",\".framer-o8fPK .framer-11q4xfy { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 12px; height: min-content; justify-content: flex-end; overflow: hidden; padding: 0px 0px 40px 0px; position: relative; width: min-content; z-index: 1; }\",\".framer-o8fPK .framer-expajc { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: 34px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 2px; }\",\".framer-o8fPK .framer-1sc3myo { background-color: var(--token-53bffd67-7f50-4dcf-acfc-b8c0ff38d33d, #303030); flex: none; height: 33px; left: calc(50.00000000000002% - 2px / 2); overflow: hidden; position: absolute; top: calc(50.00000000000002% - 33px / 2); width: 2px; z-index: 1; }\",\".framer-o8fPK .framer-ddg3de { background-color: var(--token-7b3bf30e-65f7-4cb4-ba22-c3ecbe3743d5, #c3db62); flex: none; height: 14px; left: 0px; overflow: hidden; position: absolute; right: 0px; top: 0px; z-index: 1; }\",\".framer-o8fPK .framer-r2xb39, .framer-o8fPK .framer-ss2bdg { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-o8fPK .framer-no33f { align-content: center; align-items: center; background-color: var(--token-17677fcc-976a-469f-85e1-c12386a8752d, #080808); border-top-left-radius: 20px; border-top-right-radius: 20px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 80px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 96px 64px 96px 64px; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); z-index: 2; }\",\".framer-o8fPK .framer-1d7px0 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 32px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-o8fPK .framer-1391a6x-container { flex: none; height: 24px; position: relative; width: 24px; }\",\".framer-o8fPK .framer-xnc17q-container { flex: none; height: 57px; position: relative; width: 100%; }\",\".framer-o8fPK .framer-14ku3hs { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-o8fPK .framer-z9zljl { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-o8fPK .framer-1uft2qd { display: grid; flex: none; gap: 8px; grid-auto-rows: min-content; grid-template-columns: repeat(2, minmax(200px, 1fr)); height: min-content; justify-content: center; max-width: 1850px; padding: 0px; position: relative; width: 100%; }\",\".framer-o8fPK .framer-1yq72nn-container { align-self: start; flex: none; height: 70vh; justify-self: start; position: relative; width: 100%; }\",\".framer-o8fPK .framer-joelcf-container { bottom: -96px; flex: none; height: auto; left: 50%; position: absolute; transform: translateX(-50%); width: auto; }\",\".framer-o8fPK .framer-14qiatx { align-content: center; align-items: center; background-color: var(--token-17677fcc-976a-469f-85e1-c12386a8752d, #080808); border-bottom-left-radius: 20px; border-bottom-right-radius: 20px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 96px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 96px 64px 96px 64px; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); z-index: 2; }\",\".framer-o8fPK .framer-1ck4e8a { display: grid; flex: none; gap: 0px; grid-auto-rows: min-content; grid-template-columns: repeat(2, minmax(50px, 1fr)); grid-template-rows: repeat(2, min-content); height: min-content; justify-content: center; max-width: 1850px; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-o8fPK .framer-f9lto2 { --border-bottom-width: 1px; --border-color: var(--token-f9b2da3b-fb18-49a2-a537-293e0346191c, #1a1a1a); --border-left-width: 0px; --border-right-width: 1px; --border-style: solid; --border-top-width: 0px; align-content: flex-start; align-items: flex-start; align-self: start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; height: 100%; justify-content: space-between; justify-self: start; overflow: visible; padding: 64px; position: relative; width: 100%; }\",\".framer-o8fPK .framer-434pf3, .framer-o8fPK .framer-icyjvs, .framer-o8fPK .framer-1x25u75 { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-o8fPK .framer-1p9xc8o-container { flex: none; height: 32px; position: relative; width: 32px; }\",\".framer-o8fPK .framer-1h4jmbt, .framer-o8fPK .framer-zut0xr { align-content: flex-start; align-items: flex-start; align-self: start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: 100%; justify-content: flex-start; justify-self: start; overflow: visible; padding: 64px; position: relative; width: 100%; }\",\".framer-o8fPK .framer-jenofq { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 408px; word-break: break-word; word-wrap: break-word; }\",\".framer-o8fPK .framer-2w5d2a, .framer-o8fPK .framer-1nbswn7 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-o8fPK .framer-pnvg8k, .framer-o8fPK .framer-ytw2w9, .framer-o8fPK .framer-1c3cf12, .framer-o8fPK .framer-h7bgxp { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; height: min-content; justify-content: space-between; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-o8fPK .framer-12154hr, .framer-o8fPK .framer-181xgik, .framer-o8fPK .framer-1uy5uc4, .framer-o8fPK .framer-15wynq1, .framer-o8fPK .framer-1hex0ib, .framer-o8fPK .framer-v98nmw, .framer-o8fPK .framer-7vib9s, .framer-o8fPK .framer-1g39lvg, .framer-o8fPK .framer-158k39a, .framer-o8fPK .framer-xayvxi, .framer-o8fPK .framer-xqh8wk, .framer-o8fPK .framer-yljahy, .framer-o8fPK .framer-1xr98n7, .framer-o8fPK .framer-18zpytv, .framer-o8fPK .framer-100b6j2, .framer-o8fPK .framer-9naxu3, .framer-o8fPK .framer-vjrr05, .framer-o8fPK .framer-1pcyfo9, .framer-o8fPK .framer-rrpx2v, .framer-o8fPK .framer-1pj3se2, .framer-o8fPK .framer-1uby4rb, .framer-o8fPK .framer-1k6a2bb { flex: 1 0 0px; height: auto; position: relative; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; }\",\".framer-o8fPK .framer-lmjqmn { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-o8fPK .framer-c3ur7b, .framer-o8fPK .framer-101szcu { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-o8fPK .framer-w396h4, .framer-o8fPK .framer-aogteg, .framer-o8fPK .framer-kir1lg { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 12px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-o8fPK .framer-snx4zq, .framer-o8fPK .framer-1i372ut, .framer-o8fPK .framer-1s95pwx, .framer-o8fPK .framer-p7knaz, .framer-o8fPK .framer-1rp6ae1 { border-bottom-left-radius: 8px; border-bottom-right-radius: 8px; border-top-left-radius: 8px; border-top-right-radius: 8px; flex: none; height: 40px; position: relative; width: 40px; }\",\".framer-o8fPK .framer-1nlfwl, .framer-o8fPK .framer-cgg4lw { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-o8fPK .framer-vwyw0g { --border-bottom-width: 0px; --border-color: var(--token-f9b2da3b-fb18-49a2-a537-293e0346191c, #1a1a1a); --border-left-width: 1px; --border-right-width: 0px; --border-style: solid; --border-top-width: 1px; align-content: flex-start; align-items: flex-start; align-self: start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: 100%; justify-content: flex-start; justify-self: start; overflow: visible; padding: 64px; position: relative; width: 100%; }\",\".framer-o8fPK .framer-ah0ix1, .framer-o8fPK .framer-ylpsed, .framer-o8fPK .framer-14hroh3, .framer-o8fPK .framer-fa60j5, .framer-o8fPK .framer-i4i289 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 12px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-o8fPK .framer-1raw5fx-container, .framer-o8fPK .framer-b18024-container, .framer-o8fPK .framer-95cpf1-container, .framer-o8fPK .framer-92ss46-container, .framer-o8fPK .framer-1gb0kla-container { flex: none; height: 16px; position: relative; width: 16px; }\",\".framer-o8fPK .framer-16gijht { 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: center; overflow: hidden; padding: 0px; position: sticky; width: 100%; will-change: transform; z-index: 1; }\",\".framer-o8fPK .framer-ti566d-container { flex: none; height: auto; position: relative; width: 100%; z-index: 1; }\",\"@supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-o8fPK.framer-72rtr7, .framer-o8fPK .framer-3p404a, .framer-o8fPK .framer-1uc4d85, .framer-o8fPK .framer-1n4zc8m, .framer-o8fPK .framer-l1xgaj, .framer-o8fPK .framer-5et7h2, .framer-o8fPK .framer-9brhyh, .framer-o8fPK .framer-1r9qv9a, .framer-o8fPK .framer-idpptd, .framer-o8fPK .framer-1yshbvw, .framer-o8fPK .framer-11q4xfy, .framer-o8fPK .framer-expajc, .framer-o8fPK .framer-no33f, .framer-o8fPK .framer-1d7px0, .framer-o8fPK .framer-14ku3hs, .framer-o8fPK .framer-nm3ys2, .framer-o8fPK .framer-14qiatx, .framer-o8fPK .framer-1h4jmbt, .framer-o8fPK .framer-2w5d2a, .framer-o8fPK .framer-zut0xr, .framer-o8fPK .framer-lmjqmn, .framer-o8fPK .framer-c3ur7b, .framer-o8fPK .framer-w396h4, .framer-o8fPK .framer-aogteg, .framer-o8fPK .framer-kir1lg, .framer-o8fPK .framer-101szcu, .framer-o8fPK .framer-1nlfwl, .framer-o8fPK .framer-cgg4lw, .framer-o8fPK .framer-vwyw0g, .framer-o8fPK .framer-1nbswn7, .framer-o8fPK .framer-ah0ix1, .framer-o8fPK .framer-ylpsed, .framer-o8fPK .framer-14hroh3, .framer-o8fPK .framer-fa60j5, .framer-o8fPK .framer-i4i289, .framer-o8fPK .framer-16gijht { gap: 0px; } .framer-o8fPK.framer-72rtr7 > *, .framer-o8fPK .framer-3p404a > *, .framer-o8fPK .framer-5et7h2 > *, .framer-o8fPK .framer-nm3ys2 > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-o8fPK.framer-72rtr7 > :first-child, .framer-o8fPK .framer-3p404a > :first-child, .framer-o8fPK .framer-1uc4d85 > :first-child, .framer-o8fPK .framer-1n4zc8m > :first-child, .framer-o8fPK .framer-l1xgaj > :first-child, .framer-o8fPK .framer-5et7h2 > :first-child, .framer-o8fPK .framer-11q4xfy > :first-child, .framer-o8fPK .framer-expajc > :first-child, .framer-o8fPK .framer-no33f > :first-child, .framer-o8fPK .framer-1d7px0 > :first-child, .framer-o8fPK .framer-nm3ys2 > :first-child, .framer-o8fPK .framer-14qiatx > :first-child, .framer-o8fPK .framer-1h4jmbt > :first-child, .framer-o8fPK .framer-2w5d2a > :first-child, .framer-o8fPK .framer-zut0xr > :first-child, .framer-o8fPK .framer-c3ur7b > :first-child, .framer-o8fPK .framer-101szcu > :first-child, .framer-o8fPK .framer-vwyw0g > :first-child, .framer-o8fPK .framer-1nbswn7 > :first-child, .framer-o8fPK .framer-16gijht > :first-child { margin-top: 0px; } .framer-o8fPK.framer-72rtr7 > :last-child, .framer-o8fPK .framer-3p404a > :last-child, .framer-o8fPK .framer-1uc4d85 > :last-child, .framer-o8fPK .framer-1n4zc8m > :last-child, .framer-o8fPK .framer-l1xgaj > :last-child, .framer-o8fPK .framer-5et7h2 > :last-child, .framer-o8fPK .framer-11q4xfy > :last-child, .framer-o8fPK .framer-expajc > :last-child, .framer-o8fPK .framer-no33f > :last-child, .framer-o8fPK .framer-1d7px0 > :last-child, .framer-o8fPK .framer-nm3ys2 > :last-child, .framer-o8fPK .framer-14qiatx > :last-child, .framer-o8fPK .framer-1h4jmbt > :last-child, .framer-o8fPK .framer-2w5d2a > :last-child, .framer-o8fPK .framer-zut0xr > :last-child, .framer-o8fPK .framer-c3ur7b > :last-child, .framer-o8fPK .framer-101szcu > :last-child, .framer-o8fPK .framer-vwyw0g > :last-child, .framer-o8fPK .framer-1nbswn7 > :last-child, .framer-o8fPK .framer-16gijht > :last-child { margin-bottom: 0px; } .framer-o8fPK .framer-1uc4d85 > *, .framer-o8fPK .framer-1n4zc8m > * { margin: 0px; margin-bottom: calc(48px / 2); margin-top: calc(48px / 2); } .framer-o8fPK .framer-l1xgaj > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } .framer-o8fPK .framer-9brhyh > *, .framer-o8fPK .framer-idpptd > *, .framer-o8fPK .framer-14ku3hs > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } .framer-o8fPK .framer-9brhyh > :first-child, .framer-o8fPK .framer-1r9qv9a > :first-child, .framer-o8fPK .framer-idpptd > :first-child, .framer-o8fPK .framer-1yshbvw > :first-child, .framer-o8fPK .framer-14ku3hs > :first-child, .framer-o8fPK .framer-lmjqmn > :first-child, .framer-o8fPK .framer-w396h4 > :first-child, .framer-o8fPK .framer-aogteg > :first-child, .framer-o8fPK .framer-kir1lg > :first-child, .framer-o8fPK .framer-1nlfwl > :first-child, .framer-o8fPK .framer-cgg4lw > :first-child, .framer-o8fPK .framer-ah0ix1 > :first-child, .framer-o8fPK .framer-ylpsed > :first-child, .framer-o8fPK .framer-14hroh3 > :first-child, .framer-o8fPK .framer-fa60j5 > :first-child, .framer-o8fPK .framer-i4i289 > :first-child { margin-left: 0px; } .framer-o8fPK .framer-9brhyh > :last-child, .framer-o8fPK .framer-1r9qv9a > :last-child, .framer-o8fPK .framer-idpptd > :last-child, .framer-o8fPK .framer-1yshbvw > :last-child, .framer-o8fPK .framer-14ku3hs > :last-child, .framer-o8fPK .framer-lmjqmn > :last-child, .framer-o8fPK .framer-w396h4 > :last-child, .framer-o8fPK .framer-aogteg > :last-child, .framer-o8fPK .framer-kir1lg > :last-child, .framer-o8fPK .framer-1nlfwl > :last-child, .framer-o8fPK .framer-cgg4lw > :last-child, .framer-o8fPK .framer-ah0ix1 > :last-child, .framer-o8fPK .framer-ylpsed > :last-child, .framer-o8fPK .framer-14hroh3 > :last-child, .framer-o8fPK .framer-fa60j5 > :last-child, .framer-o8fPK .framer-i4i289 > :last-child { margin-right: 0px; } .framer-o8fPK .framer-1r9qv9a > *, .framer-o8fPK .framer-1nlfwl > *, .framer-o8fPK .framer-cgg4lw > * { margin: 0px; margin-left: calc(20px / 2); margin-right: calc(20px / 2); } .framer-o8fPK .framer-1yshbvw > * { margin: 0px; margin-left: calc(32px / 2); margin-right: calc(32px / 2); } .framer-o8fPK .framer-11q4xfy > * { margin: 0px; margin-bottom: calc(12px / 2); margin-top: calc(12px / 2); } .framer-o8fPK .framer-expajc > *, .framer-o8fPK .framer-16gijht > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-o8fPK .framer-no33f > * { margin: 0px; margin-bottom: calc(80px / 2); margin-top: calc(80px / 2); } .framer-o8fPK .framer-1d7px0 > * { margin: 0px; margin-bottom: calc(32px / 2); margin-top: calc(32px / 2); } .framer-o8fPK .framer-14qiatx > * { margin: 0px; margin-bottom: calc(96px / 2); margin-top: calc(96px / 2); } .framer-o8fPK .framer-1h4jmbt > *, .framer-o8fPK .framer-zut0xr > *, .framer-o8fPK .framer-vwyw0g > * { margin: 0px; margin-bottom: calc(40px / 2); margin-top: calc(40px / 2); } .framer-o8fPK .framer-2w5d2a > *, .framer-o8fPK .framer-c3ur7b > *, .framer-o8fPK .framer-101szcu > *, .framer-o8fPK .framer-1nbswn7 > * { margin: 0px; margin-bottom: calc(20px / 2); margin-top: calc(20px / 2); } .framer-o8fPK .framer-lmjqmn > * { margin: 0px; margin-left: calc(40px / 2); margin-right: calc(40px / 2); } .framer-o8fPK .framer-w396h4 > *, .framer-o8fPK .framer-aogteg > *, .framer-o8fPK .framer-kir1lg > *, .framer-o8fPK .framer-ah0ix1 > *, .framer-o8fPK .framer-ylpsed > *, .framer-o8fPK .framer-14hroh3 > *, .framer-o8fPK .framer-fa60j5 > *, .framer-o8fPK .framer-i4i289 > * { margin: 0px; margin-left: calc(12px / 2); margin-right: calc(12px / 2); } }\",...sharedStyle.css,...sharedStyle1.css,...sharedStyle2.css,...sharedStyle3.css,...sharedStyle4.css,'.framer-o8fPK[data-border=\"true\"]::after, .framer-o8fPK [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) { .${metadata.bodyClassName}-framer-o8fPK { background: var(--token-17677fcc-976a-469f-85e1-c12386a8752d, rgb(8, 8, 8)) /* {\"name\":\"BG Dark\"} */; } .framer-o8fPK.framer-72rtr7 { width: 810px; } .framer-o8fPK .framer-1uc4d85 { height: min-content; padding: 64px 48px 0px 48px; } .framer-o8fPK .framer-1n4zc8m { gap: 28px; padding: 72px 0px 56px 0px; } .framer-o8fPK .framer-no33f { gap: 48px; padding: 96px 32px 96px 32px; } .framer-o8fPK .framer-1d7px0 { width: 109%; } .framer-o8fPK .framer-1391a6x-container { order: 0; } .framer-o8fPK .framer-xnc17q-container { order: 1; } .framer-o8fPK .framer-1yq72nn-container { height: 40vh; } .framer-o8fPK .framer-14qiatx { padding: 96px 32px 96px 32px; } .framer-o8fPK .framer-1ck4e8a { grid-template-columns: repeat(1, minmax(50px, 1fr)); overflow: visible; } .framer-o8fPK .framer-f9lto2 { --border-right-width: 0px; padding: 0px 0px 64px 0px; } .framer-o8fPK .framer-1h4jmbt, .framer-o8fPK .framer-zut0xr { --border-bottom-width: 1px; --border-color: var(--token-f9b2da3b-fb18-49a2-a537-293e0346191c, #1a1a1a); --border-left-width: 0px; --border-right-width: 0px; --border-style: solid; --border-top-width: 0px; padding: 64px 0px 64px 0px; } .framer-o8fPK .framer-vwyw0g { --border-bottom-width: unset; --border-left-width: unset; --border-right-width: unset; --border-top-width: unset; padding: 64px 0px 64px 0px; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-o8fPK .framer-1n4zc8m, .framer-o8fPK .framer-no33f { gap: 0px; } .framer-o8fPK .framer-1n4zc8m > * { margin: 0px; margin-bottom: calc(28px / 2); margin-top: calc(28px / 2); } .framer-o8fPK .framer-1n4zc8m > :first-child, .framer-o8fPK .framer-no33f > :first-child { margin-top: 0px; } .framer-o8fPK .framer-1n4zc8m > :last-child, .framer-o8fPK .framer-no33f > :last-child { margin-bottom: 0px; } .framer-o8fPK .framer-no33f > * { margin: 0px; margin-bottom: calc(48px / 2); margin-top: calc(48px / 2); } }}`,`@media (max-width: 809px) { .${metadata.bodyClassName}-framer-o8fPK { background: var(--token-17677fcc-976a-469f-85e1-c12386a8752d, rgb(8, 8, 8)) /* {\"name\":\"BG Dark\"} */; } .framer-o8fPK.framer-72rtr7 { width: 390px; } .framer-o8fPK .framer-3p404a { justify-content: flex-start; } .framer-o8fPK .framer-1uc4d85 { height: min-content; padding: 64px 24px 0px 24px; } .framer-o8fPK .framer-1n4zc8m { gap: 24px; padding: 120px 0px 40px 0px; } .framer-o8fPK .framer-1r9qv9a { gap: 8px; } .framer-o8fPK .framer-1yshbvw { padding: 0px 0px 40px 0px; } .framer-o8fPK .framer-no33f { gap: 64px; padding: 96px 16px 96px 16px; } .framer-o8fPK .framer-1d7px0 { width: 109%; } .framer-o8fPK .framer-1uft2qd { grid-template-columns: repeat(1, minmax(200px, 1fr)); } .framer-o8fPK .framer-1yq72nn-container { height: 50vh; } .framer-o8fPK .framer-14qiatx { gap: 64px; overflow: visible; padding: 96px 16px 64px 16px; } .framer-o8fPK .framer-1ck4e8a { grid-template-columns: repeat(1, minmax(50px, 1fr)); overflow: visible; } .framer-o8fPK .framer-f9lto2 { --border-right-width: 0px; padding: 0px 0px 40px 0px; } .framer-o8fPK .framer-1h4jmbt, .framer-o8fPK .framer-zut0xr { --border-bottom-width: 1px; --border-color: var(--token-f9b2da3b-fb18-49a2-a537-293e0346191c, #1a1a1a); --border-left-width: 0px; --border-right-width: 0px; --border-style: solid; --border-top-width: 0px; padding: 40px 0px 40px 0px; } .framer-o8fPK .framer-vwyw0g { --border-bottom-width: unset; --border-left-width: unset; --border-right-width: unset; --border-top-width: unset; padding: 40px 0px 40px 0px; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-o8fPK .framer-1n4zc8m, .framer-o8fPK .framer-1r9qv9a, .framer-o8fPK .framer-no33f, .framer-o8fPK .framer-14qiatx { gap: 0px; } .framer-o8fPK .framer-1n4zc8m > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } .framer-o8fPK .framer-1n4zc8m > :first-child, .framer-o8fPK .framer-no33f > :first-child, .framer-o8fPK .framer-14qiatx > :first-child { margin-top: 0px; } .framer-o8fPK .framer-1n4zc8m > :last-child, .framer-o8fPK .framer-no33f > :last-child, .framer-o8fPK .framer-14qiatx > :last-child { margin-bottom: 0px; } .framer-o8fPK .framer-1r9qv9a > * { margin: 0px; margin-left: calc(8px / 2); margin-right: calc(8px / 2); } .framer-o8fPK .framer-1r9qv9a > :first-child { margin-left: 0px; } .framer-o8fPK .framer-1r9qv9a > :last-child { margin-right: 0px; } .framer-o8fPK .framer-no33f > *, .framer-o8fPK .framer-14qiatx > * { margin: 0px; margin-bottom: calc(64px / 2); margin-top: calc(64px / 2); } }}`];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 3792\n * @framerIntrinsicWidth 1200\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"jwjSGAMvD\":{\"layout\":[\"fixed\",\"auto\"]},\"T3oKhuvQg\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n * @framerResponsiveScreen\n */const FrameraugiA20Il=withCSS(Component,css,\"framer-o8fPK\");export default FrameraugiA20Il;FrameraugiA20Il.displayName=\"Home\";FrameraugiA20Il.defaultProps={height:3792,width:1200};addFonts(FrameraugiA20Il,[{explicitInter:true,fonts:[{family:\"Mazius Display Regular\",source:\"custom\",url:\"https://framerusercontent.com/assets/knqLkpQ62GwTkkK8BX5VoiykqI.woff2\"},{family:\"Mazius Display Extra italic\",source:\"custom\",url:\"https://framerusercontent.com/assets/pCQESYopWTvtUubBZ8VeV5IKYQ.woff2\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/5vvr9Vy74if2I6bQbJvbw7SY1pQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/EOr0mi4hNtlgWNn9if640EZzXCo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Y9k9QrlZAqio88Klkmbd8VoMQc.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/OYrD2tBIBPvoJXiIHnLoOXnY9M.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/JeYwfuaPfZHQhEG8U5gtPDZ7WQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/vQyevYAyHtARFwPqUzQGpnDs.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/b6Y37FthZeALduNqHicBT6FutY.woff2\",weight:\"400\"},{family:\"Homemade Apple\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/homemadeapple/v22/Qw3EZQFXECDrI2q789EKQZJob3x4Vnksi4M7.woff2\",weight:\"400\"}]},...NavbarFonts,...TextLinkFonts,...PhosphorFonts,...TickerFonts,...ProjectCardFonts,...LoadMoreFonts,...SpacerFonts,...FooterFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts),...getFontsFromSharedStyle(sharedStyle2.fonts),...getFontsFromSharedStyle(sharedStyle3.fonts),...getFontsFromSharedStyle(sharedStyle4.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FrameraugiA20Il\",\"slots\":[],\"annotations\":{\"framerDisplayContentsDiv\":\"false\",\"framerComponentViewportWidth\":\"true\",\"framerResponsiveScreen\":\"\",\"framerIntrinsicWidth\":\"1200\",\"framerIntrinsicHeight\":\"3792\",\"framerImmutableVariables\":\"true\",\"framerContractVersion\":\"1\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"jwjSGAMvD\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"T3oKhuvQg\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}"],
  "mappings": "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",
  "names": ["MAX_DUPLICATED_ITEMS", "directionTransformers", "offset", "supportsAcceleratedAnimations", "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", "isCanvas", "RenderTarget", "filteredSlots", "numChildren", "j", "hasChildren", "isHorizontal", "useMotionValue", "transformer", "transform", "useTransform", "parentRef", "pe", "childrenRef", "se", "W", "size", "setSize", "ye", "clonedChildren", "dupedChildren", "duplicateBy", "opacity", "measure", "te", "parentLength", "start", "childrenLength", "childrenStyles", "initialResize", "ue", "frame", "resize", "contentSize", "child", "index", "_child_props", "_child_props1", "_child_props2", "_child_props3", "ref", "p", "LayoutGroup", "q", "i", "childIndex", "_child_props4", "_child_props5", "animateToValue", "initialTime", "prevTime", "xOrY", "isHover", "isReducedMotion", "useReducedMotion", "listRef", "animationRef", "isInView", "useInView", "useAnimationFrame", "t", "delta", "wrap", "fadeDirection", "fadeWidthStart", "fadeWidthEnd", "fadeInsetStart", "clamp", "fadeInsetEnd", "fadeMask", "containerStyle", "u", "motion", "isValidNumber", "placeholderStyles", "emojiStyles", "titleStyles", "subtitleStyles", "addPropertyControls", "ControlType", "num", "min", "max", "value", "MotionDivWithFX", "withFX", "motion", "MotionDivWithFXWithOptimizedAppearEffect", "withOptimizedAppearEffect", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "transition2", "animation", "animation1", "transition3", "animation2", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "x", "humanReadableVariantMap", "getProps", "click", "height", "id", "width", "props", "_humanReadableVariantMap_props_variant", "_ref", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "Wld3NDzSj", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onTapn9xadi", "args", "isDisplayed", "ref1", "pe", "isDisplayed1", "isDisplayed2", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "u", "cx", "RichText2", "css", "FramerfU6PyBX2v", "withCSS", "fU6PyBX2v_default", "addPropertyControls", "ControlType", "addFonts", "NavbarFonts", "getFonts", "ALEVNgcWM_default", "NavbarWithVariantAppearEffect", "withVariantAppearEffect", "MotionDivWithOptimizedAppearEffect", "withOptimizedAppearEffect", "motion", "RichTextWithOptimizedAppearEffect", "RichText2", "TextLinkFonts", "YIAu8ddt9_default", "MotionDivWithFX", "withFX", "PhosphorFonts", "Icon", "TickerFonts", "Ticker", "ProjectCardFonts", "zZmOyQiFC_default", "LoadMoreFonts", "fU6PyBX2v_default", "SpacerFonts", "XawQ5rOKu_default", "FooterFonts", "zpQoUPJki_default", "breakpoints", "serializationHash", "variantClassNames", "transition1", "animation", "animation1", "transition2", "animation2", "transition3", "animation3", "transition4", "animation4", "animation5", "animation6", "transition5", "animation7", "transition6", "animation8", "toResponsiveImage", "value", "loaderVariants", "repeaterState", "variants", "currentVariant", "_variants_disabled", "_variants_loading", "QueryData", "query", "pageSize", "children", "paginatedQuery", "paginationInfo", "loadMore", "useLoadMorePaginatedQuery", "data", "useQueryData", "metadata", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "_humanReadableVariantMap_props_variant", "_ref", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "variant", "w2tol5eyJUsH_7BJp4", "h1IIjTFeqUsH_7BJp4", "Rc2cSjBtrUsH_7BJp4", "ItROvghFYUsH_7BJp4", "UbbE3CQniUsH_7BJp4", "idUsH_7BJp4", "restProps", "ue", "metadata1", "robotsTag", "ie", "_document_querySelector", "bodyCls", "body", "c", "baseVariant", "hydratedBaseVariant", "useHydratedBreakpointVariants", "breakpoints", "gestureVariant", "activeVariantCallback", "delay", "useActiveVariantCallback", "Wld3NDzSj1b86s49", "overlay", "args", "scopingClassNames", "cx", "ref1", "pe", "ref2", "ref3", "elementId", "useRouteElementId", "ref4", "elementId1", "router", "useRouter", "elementId2", "defaultLayoutId", "ae", "useCustomCursors", "p", "GeneratedComponentContext", "u", "LayoutGroup", "motion", "ComponentViewportProvider", "Container", "PropertyOverrides2", "NavbarWithVariantAppearEffect", "MotionDivWithOptimizedAppearEffect", "x", "RichText2", "RichTextWithOptimizedAppearEffect", "YIAu8ddt9_default", "MotionDivWithFX", "Icon", "Ticker", "ChildrenCanSuspend", "X5LVUwGhC_default", "collection", "l", "index", "PathVariablesContext", "ResolveLinks", "resolvedLinks", "zZmOyQiFC_default", "fU6PyBX2v_default", "XawQ5rOKu_default", "getLoadingLazyAtYPosition", "Image2", "zpQoUPJki_default", "css", "FrameraugiA20Il", "withCSS", "augiA20Il_default", "addFonts", "NavbarFonts", "TextLinkFonts", "PhosphorFonts", "TickerFonts", "ProjectCardFonts", "LoadMoreFonts", "SpacerFonts", "FooterFonts", "getFontsFromSharedStyle", "fonts", "__FramerMetadata__"]
}
