{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/B2xAlJLcN0gOnt11mSPw/XVUmpmPn1EPL0dzocT35/Ticker.js", "ssg:https://framerusercontent.com/modules/q1EI1hzNUhYqHnrBjrON/FBxtQ8hLklmlUPvy58Hg/PyxcdEffO.js", "ssg:https://framerusercontent.com/modules/lnMki62F94ZPQqsHVuRX/Ij4WXeJVP0hd4fi0R4Bm/UBdWynPOw.js", "ssg:https://framerusercontent.com/modules/l3OGdbsDAY8DwI4RkHE2/sWcVmxSO6KFAqt2MKZMt/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 (a387266)\nimport{jsx as _jsx}from\"react/jsx-runtime\";import{addFonts,ComponentViewportProvider,cx,getFonts,getFontsFromSharedStyle,RichText,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}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*as sharedStyle from\"https://framerusercontent.com/modules/6ByAZMir61DzTOAMjHDf/mKc3kpsVMQUgsDfWLIn0/mySIWcMnW.js\";const PhosphorFonts=getFonts(Phosphor);const TickerFonts=getFonts(Ticker);const cycleOrder=[\"yi3cUiSP7\"];const serializationHash=\"framer-5wOb8\";const variantClassNames={yi3cUiSP7:\"framer-v-1tn7xuv\"};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={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion(React.Fragment);const getProps=({height,id,width,...props})=>{return{...props};};const createLayoutDependency=(props,variants)=>variants.join(\"-\")+props.layoutDependency;const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,...restProps}=getProps(props);const{baseVariant,classNames,gestureVariant,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"yi3cUiSP7\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const ref1=React.useRef(null);const defaultLayoutId=React.useId();const sharedStyleClassNames=[sharedStyle.className];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(motion.div,{...restProps,className:cx(serializationHash,...sharedStyleClassNames,\"framer-1tn7xuv\",className,classNames),\"data-framer-name\":\"Variant 1\",layoutDependency:layoutDependency,layoutId:\"yi3cUiSP7\",onHoverEnd:()=>setGestureState({isHovered:false}),onHoverStart:()=>setGestureState({isHovered:true}),onTap:()=>setGestureState({isPressed:false}),onTapCancel:()=>setGestureState({isPressed:false}),onTapStart:()=>setGestureState({isPressed:true}),ref:ref!==null&&ref!==void 0?ref:ref1,style:{...style},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1pwk7t4-container\",layoutDependency:layoutDependency,layoutId:\"tUn97fRj4-container\",children:/*#__PURE__*/_jsx(Ticker,{alignment:\"center\",direction:\"left\",fadeOptions:{fadeAlpha:0,fadeContent:true,fadeInset:0,fadeWidth:25,overflow:false},gap:0,height:\"100%\",hoverFactor:1,id:\"tUn97fRj4\",layoutId:\"tUn97fRj4\",padding:10,paddingBottom:10,paddingLeft:10,paddingPerSide:false,paddingRight:10,paddingTop:10,sizingOptions:{heightType:true,widthType:true},slots:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1xcemaj\",layoutDependency:layoutDependency,layoutId:\"NcyOR6T2g\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h4,{className:\"framer-styles-preset-1glww8l\",\"data-styles-preset\":\"mySIWcMnW\",style:{\"--framer-text-color\":\"var(--extracted-1eung3n, var(--token-93788bdc-a1c2-45cb-9b46-529f72ea7a9f, rgba(250, 250, 250, 0.9)))\"},children:\"User interface\"})}),className:\"framer-fta7h\",\"data-framer-name\":\"User interface\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"ULO4_9qJJ\",style:{\"--extracted-1eung3n\":\"var(--token-93788bdc-a1c2-45cb-9b46-529f72ea7a9f, rgba(250, 250, 250, 0.9))\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1fl7ct-container\",layoutDependency:layoutDependency,layoutId:\"uN1zPFdQQ-container\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"var(--token-b4685333-142d-4518-8e99-a39f4d38d944, rgba(250, 250, 250, 0.1))\",height:\"100%\",iconSearch:\"House\",iconSelection:\"DotOutline\",id:\"uN1zPFdQQ\",layoutId:\"uN1zPFdQQ\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"thin\",width:\"100%\"})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-yzhaqi\",layoutDependency:layoutDependency,layoutId:\"XxOdnI7dF\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h4,{className:\"framer-styles-preset-1glww8l\",\"data-styles-preset\":\"mySIWcMnW\",style:{\"--framer-text-color\":\"var(--extracted-1eung3n, var(--token-4d8e3909-16ee-44b4-a372-5d2367442a20, rgb(255, 136, 51)))\"},children:\"Technical Arts\"})}),className:\"framer-v57mgm\",\"data-framer-name\":\"Technical Arts\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"b0EIlSI95\",style:{\"--extracted-1eung3n\":\"var(--token-4d8e3909-16ee-44b4-a372-5d2367442a20, rgb(255, 136, 51))\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1fl7ct-container\",layoutDependency:layoutDependency,layoutId:\"uN1zPFdQQ-container\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"var(--token-b4685333-142d-4518-8e99-a39f4d38d944, rgba(250, 250, 250, 0.1))\",height:\"100%\",iconSearch:\"House\",iconSelection:\"DotOutline\",id:\"uN1zPFdQQ\",layoutId:\"uN1zPFdQQ\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"thin\",width:\"100%\"})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-52ouua\",layoutDependency:layoutDependency,layoutId:\"RVxEb6X1U\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h4,{className:\"framer-styles-preset-1glww8l\",\"data-styles-preset\":\"mySIWcMnW\",style:{\"--framer-text-color\":\"var(--extracted-1eung3n, var(--token-93788bdc-a1c2-45cb-9b46-529f72ea7a9f, rgba(250, 250, 250, 0.9)))\"},children:\"Vector Illustrations\"})}),className:\"framer-mt31br\",\"data-framer-name\":\"Vector Illustrations\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"oP00vTTBy\",style:{\"--extracted-1eung3n\":\"var(--token-93788bdc-a1c2-45cb-9b46-529f72ea7a9f, rgba(250, 250, 250, 0.9))\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1fl7ct-container\",layoutDependency:layoutDependency,layoutId:\"uN1zPFdQQ-container\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"var(--token-b4685333-142d-4518-8e99-a39f4d38d944, rgba(250, 250, 250, 0.1))\",height:\"100%\",iconSearch:\"House\",iconSelection:\"DotOutline\",id:\"uN1zPFdQQ\",layoutId:\"uN1zPFdQQ\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"thin\",width:\"100%\"})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-g1gf0f\",layoutDependency:layoutDependency,layoutId:\"w9WBTMKpr\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h4,{className:\"framer-styles-preset-1glww8l\",\"data-styles-preset\":\"mySIWcMnW\",style:{\"--framer-text-color\":\"var(--extracted-1eung3n, var(--token-4d8e3909-16ee-44b4-a372-5d2367442a20, rgb(255, 136, 51)))\"},children:\"Naming\"})}),className:\"framer-1xt0mz6\",\"data-framer-name\":\"Naming\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"iS_QgmpWy\",style:{\"--extracted-1eung3n\":\"var(--token-4d8e3909-16ee-44b4-a372-5d2367442a20, rgb(255, 136, 51))\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1fl7ct-container\",layoutDependency:layoutDependency,layoutId:\"uN1zPFdQQ-container\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"var(--token-b4685333-142d-4518-8e99-a39f4d38d944, rgba(250, 250, 250, 0.1))\",height:\"100%\",iconSearch:\"House\",iconSelection:\"DotOutline\",id:\"uN1zPFdQQ\",layoutId:\"uN1zPFdQQ\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"thin\",width:\"100%\"})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-5gyvjz\",layoutDependency:layoutDependency,layoutId:\"J4NB_l4YY\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h4,{className:\"framer-styles-preset-1glww8l\",\"data-styles-preset\":\"mySIWcMnW\",style:{\"--framer-text-color\":\"var(--extracted-1eung3n, var(--token-93788bdc-a1c2-45cb-9b46-529f72ea7a9f, rgba(250, 250, 250, 0.9)))\"},children:\"Brand Potitioning\"})}),className:\"framer-kt15a4\",\"data-framer-name\":\"Brend Potisioning\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"W_9YeIwWT\",style:{\"--extracted-1eung3n\":\"var(--token-93788bdc-a1c2-45cb-9b46-529f72ea7a9f, rgba(250, 250, 250, 0.9))\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1fl7ct-container\",layoutDependency:layoutDependency,layoutId:\"uN1zPFdQQ-container\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"var(--token-b4685333-142d-4518-8e99-a39f4d38d944, rgba(250, 250, 250, 0.1))\",height:\"100%\",iconSearch:\"House\",iconSelection:\"DotOutline\",id:\"uN1zPFdQQ\",layoutId:\"uN1zPFdQQ\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"thin\",width:\"100%\"})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1uv3f8l\",layoutDependency:layoutDependency,layoutId:\"gp5XqA9l6\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h4,{className:\"framer-styles-preset-1glww8l\",\"data-styles-preset\":\"mySIWcMnW\",style:{\"--framer-text-color\":\"var(--extracted-1eung3n, var(--token-4d8e3909-16ee-44b4-a372-5d2367442a20, rgb(255, 136, 51)))\"},children:\"Art Directions\"})}),className:\"framer-yx10c8\",\"data-framer-name\":\"Art Directions\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"x5cX8VDRT\",style:{\"--extracted-1eung3n\":\"var(--token-4d8e3909-16ee-44b4-a372-5d2367442a20, rgb(255, 136, 51))\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1fl7ct-container\",layoutDependency:layoutDependency,layoutId:\"uN1zPFdQQ-container\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"var(--token-b4685333-142d-4518-8e99-a39f4d38d944, rgba(250, 250, 250, 0.1))\",height:\"100%\",iconSearch:\"House\",iconSelection:\"DotOutline\",id:\"uN1zPFdQQ\",layoutId:\"uN1zPFdQQ\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"thin\",width:\"100%\"})})})],speed:30,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-5wOb8.framer-1k5zj8w, .framer-5wOb8 .framer-1k5zj8w { display: block; }\",\".framer-5wOb8.framer-1tn7xuv { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 20px; height: 47px; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 510px; }\",\".framer-5wOb8 .framer-1pwk7t4-container { flex: 1 0 0px; height: 100%; position: relative; width: 1px; }\",\".framer-5wOb8 .framer-1xcemaj, .framer-5wOb8 .framer-yzhaqi, .framer-5wOb8 .framer-52ouua, .framer-5wOb8 .framer-g1gf0f, .framer-5wOb8 .framer-5gyvjz, .framer-5wOb8 .framer-1uv3f8l { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-5wOb8 .framer-fta7h, .framer-5wOb8 .framer-v57mgm, .framer-5wOb8 .framer-mt31br, .framer-5wOb8 .framer-1xt0mz6, .framer-5wOb8 .framer-kt15a4, .framer-5wOb8 .framer-yx10c8 { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-5wOb8 .framer-1fl7ct-container { height: 75px; position: relative; width: 75px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-5wOb8.framer-1tn7xuv, .framer-5wOb8 .framer-1xcemaj, .framer-5wOb8 .framer-yzhaqi, .framer-5wOb8 .framer-52ouua, .framer-5wOb8 .framer-g1gf0f, .framer-5wOb8 .framer-5gyvjz, .framer-5wOb8 .framer-1uv3f8l { gap: 0px; } .framer-5wOb8.framer-1tn7xuv > * { margin: 0px; margin-left: calc(20px / 2); margin-right: calc(20px / 2); } .framer-5wOb8.framer-1tn7xuv > :first-child, .framer-5wOb8 .framer-1xcemaj > :first-child, .framer-5wOb8 .framer-yzhaqi > :first-child, .framer-5wOb8 .framer-52ouua > :first-child, .framer-5wOb8 .framer-g1gf0f > :first-child, .framer-5wOb8 .framer-5gyvjz > :first-child, .framer-5wOb8 .framer-1uv3f8l > :first-child { margin-left: 0px; } .framer-5wOb8.framer-1tn7xuv > :last-child, .framer-5wOb8 .framer-1xcemaj > :last-child, .framer-5wOb8 .framer-yzhaqi > :last-child, .framer-5wOb8 .framer-52ouua > :last-child, .framer-5wOb8 .framer-g1gf0f > :last-child, .framer-5wOb8 .framer-5gyvjz > :last-child, .framer-5wOb8 .framer-1uv3f8l > :last-child { margin-right: 0px; } .framer-5wOb8 .framer-1xcemaj > *, .framer-5wOb8 .framer-yzhaqi > *, .framer-5wOb8 .framer-52ouua > *, .framer-5wOb8 .framer-g1gf0f > *, .framer-5wOb8 .framer-5gyvjz > *, .framer-5wOb8 .framer-1uv3f8l > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } }\",...sharedStyle.css];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 47\n * @framerIntrinsicWidth 510\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerPyxcdEffO=withCSS(Component,css,\"framer-5wOb8\");export default FramerPyxcdEffO;FramerPyxcdEffO.displayName=\"Section/Text Ticker\";FramerPyxcdEffO.defaultProps={height:47,width:510};addFonts(FramerPyxcdEffO,[{explicitInter:true,fonts:[{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://app.framerstatic.com/Inter-Regular.cyrillic-ext-CFTLRB35.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://app.framerstatic.com/Inter-Regular.cyrillic-KKLZBALH.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://app.framerstatic.com/Inter-Regular.greek-ext-ULEBLIFV.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://app.framerstatic.com/Inter-Regular.greek-IRHSNFQB.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://app.framerstatic.com/Inter-Regular.latin-ext-VZDUGU3Q.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://app.framerstatic.com/Inter-Regular.latin-JLQMKCHE.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://app.framerstatic.com/Inter-Regular.vietnamese-QK7VSWXK.woff2\",weight:\"400\"}]},...PhosphorFonts,...TickerFonts,...getFontsFromSharedStyle(sharedStyle.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerPyxcdEffO\",\"slots\":[],\"annotations\":{\"framerIntrinsicHeight\":\"47\",\"framerIntrinsicWidth\":\"510\",\"framerDisplayContentsDiv\":\"false\",\"framerContractVersion\":\"1\",\"framerImmutableVariables\":\"true\",\"framerComponentViewportWidth\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./PyxcdEffO.map", "// Generated by Framer (a387266)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,getFontsFromSharedStyle,Image,Link,RichText,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import*as sharedStyle from\"https://framerusercontent.com/modules/etcpvLjc8gpvgjiqZm1F/QzUXwsVwDSf0w2NHQx5J/iHk2Cj2tM.js\";const enabledGestures={mnHE0zGyN:{hover:true}};const cycleOrder=[\"mnHE0zGyN\"];const serializationHash=\"framer-esT7a\";const variantClassNames={mnHE0zGyN:\"framer-v-1afuiuv\"};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={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const toResponsiveImage=value=>{if(typeof value===\"object\"&&value!==null&&typeof value.src===\"string\"){return value;}return typeof value===\"string\"?{src:value}:undefined;};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion(React.Fragment);const getProps=({height,id,image,link,title,width,...props})=>{var _ref;return{...props,jxPVYP0ws:image!==null&&image!==void 0?image:props.jxPVYP0ws,vc4j1__b3:(_ref=title!==null&&title!==void 0?title:props.vc4j1__b3)!==null&&_ref!==void 0?_ref:\"Figma\",XCI4fIs41:link!==null&&link!==void 0?link:props.XCI4fIs41};};const createLayoutDependency=(props,variants)=>variants.join(\"-\")+props.layoutDependency;const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,vc4j1__b3,jxPVYP0ws,XCI4fIs41,...restProps}=getProps(props);const{baseVariant,classNames,gestureVariant,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"mnHE0zGyN\",enabledGestures,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const ref1=React.useRef(null);const defaultLayoutId=React.useId();const sharedStyleClassNames=[sharedStyle.className];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(Link,{href:XCI4fIs41,children:/*#__PURE__*/_jsxs(motion.a,{...restProps,className:`${cx(serializationHash,...sharedStyleClassNames,\"framer-1afuiuv\",className,classNames)} framer-1fmimes`,\"data-border\":true,\"data-framer-name\":\"Variant 1\",layoutDependency:layoutDependency,layoutId:\"mnHE0zGyN\",onHoverEnd:()=>setGestureState({isHovered:false}),onHoverStart:()=>setGestureState({isHovered:true}),onTap:()=>setGestureState({isPressed:false}),onTapCancel:()=>setGestureState({isPressed:false}),onTapStart:()=>setGestureState({isPressed:true}),ref:ref!==null&&ref!==void 0?ref:ref1,style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"var(--token-ca4b29e9-f6bc-4926-9cc2-4367402ad198, rgba(250, 250, 250, 0.05))\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",backgroundColor:\"var(--token-f9c79822-dd63-49a1-9880-4ca3be27fd0a, rgba(250, 250, 250, 0.03))\",borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8,boxShadow:\"none\",...style},variants:{\"mnHE0zGyN-hover\":{boxShadow:'4px 4px 10px 4px var(--token-8ea2e448-116a-4233-9b7d-782e51048be5, rgba(255, 136, 51, 0.05)) /* {\"name\":\"Accent 5\"} */'}},...addPropertyOverrides({\"mnHE0zGyN-hover\":{\"data-framer-name\":undefined}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",sizes:\"30px\",...toResponsiveImage(jxPVYP0ws),...{positionX:\"center\",positionY:\"center\"}},className:\"framer-tsnh1p\",\"data-framer-name\":\"Logo\",layoutDependency:layoutDependency,layoutId:\"bpYe4VM1p\",style:{filter:\"grayscale(1)\",WebkitFilter:\"grayscale(1)\"},variants:{\"mnHE0zGyN-hover\":{filter:\"grayscale(0)\",WebkitFilter:\"grayscale(0)\"}}}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h6,{className:\"framer-styles-preset-1uovr8j\",\"data-styles-preset\":\"iHk2Cj2tM\",style:{\"--framer-text-alignment\":\"center\"},children:\"Figma\"})}),className:\"framer-bv2xq6\",\"data-framer-name\":\"Figma\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"anDJPn6TE\",style:{\"--framer-paragraph-spacing\":\"0px\"},text:vc4j1__b3,verticalAlignment:\"top\",withExternalLayout:true})]})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-esT7a.framer-1fmimes, .framer-esT7a .framer-1fmimes { display: block; }\",\".framer-esT7a.framer-1afuiuv { align-content: center; align-items: center; cursor: pointer; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 15px; height: min-content; justify-content: center; overflow: visible; padding: 20px 15px 20px 15px; position: relative; text-decoration: none; width: 150px; }\",\".framer-esT7a .framer-tsnh1p { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 30px); overflow: hidden; position: relative; width: 30px; }\",\".framer-esT7a .framer-bv2xq6 { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-esT7a.framer-1afuiuv { gap: 0px; } .framer-esT7a.framer-1afuiuv > * { margin: 0px; margin-bottom: calc(15px / 2); margin-top: calc(15px / 2); } .framer-esT7a.framer-1afuiuv > :first-child { margin-top: 0px; } .framer-esT7a.framer-1afuiuv > :last-child { margin-bottom: 0px; } }\",...sharedStyle.css,'.framer-esT7a[data-border=\"true\"]::after, .framer-esT7a [data-border=\"true\"]::after { content: \"\"; border-width: var(--border-top-width, 0) var(--border-right-width, 0) var(--border-bottom-width, 0) var(--border-left-width, 0); border-color: var(--border-color, none); border-style: var(--border-style, none); width: 100%; height: 100%; position: absolute; box-sizing: border-box; left: 0; top: 0; border-radius: inherit; pointer-events: none; }'];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 107\n * @framerIntrinsicWidth 150\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"GysVdqakz\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerVariables {\"vc4j1__b3\":\"title\",\"jxPVYP0ws\":\"image\",\"XCI4fIs41\":\"link\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerUBdWynPOw=withCSS(Component,css,\"framer-esT7a\");export default FramerUBdWynPOw;FramerUBdWynPOw.displayName=\"Card/Skill\";FramerUBdWynPOw.defaultProps={height:107,width:150};addPropertyControls(FramerUBdWynPOw,{vc4j1__b3:{defaultValue:\"Figma\",displayTextArea:false,title:\"Title\",type:ControlType.String},jxPVYP0ws:{title:\"Image\",type:ControlType.ResponsiveImage},XCI4fIs41:{title:\"Link\",type:ControlType.Link}});addFonts(FramerUBdWynPOw,[{explicitInter:true,fonts:[{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://app.framerstatic.com/Inter-Regular.cyrillic-ext-CFTLRB35.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://app.framerstatic.com/Inter-Regular.cyrillic-KKLZBALH.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://app.framerstatic.com/Inter-Regular.greek-ext-ULEBLIFV.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://app.framerstatic.com/Inter-Regular.greek-IRHSNFQB.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://app.framerstatic.com/Inter-Regular.latin-ext-VZDUGU3Q.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://app.framerstatic.com/Inter-Regular.latin-JLQMKCHE.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://app.framerstatic.com/Inter-Regular.vietnamese-QK7VSWXK.woff2\",weight:\"400\"}]},...getFontsFromSharedStyle(sharedStyle.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerUBdWynPOw\",\"slots\":[],\"annotations\":{\"framerIntrinsicWidth\":\"150\",\"framerVariables\":\"{\\\"vc4j1__b3\\\":\\\"title\\\",\\\"jxPVYP0ws\\\":\\\"image\\\",\\\"XCI4fIs41\\\":\\\"link\\\"}\",\"framerComponentViewportWidth\":\"true\",\"framerContractVersion\":\"1\",\"framerIntrinsicHeight\":\"107\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"GysVdqakz\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerDisplayContentsDiv\":\"false\",\"framerImmutableVariables\":\"true\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./UBdWynPOw.map", "// Generated by Framer (1d71865)\nimport{jsx as _jsx,jsxs as _jsxs,Fragment as _Fragment}from\"react/jsx-runtime\";import{addFonts,ChildrenCanSuspend,ComponentViewportProvider,Container,cx,GeneratedComponentContext,getFonts,getFontsFromSharedStyle,Image,PathVariablesContext,PropertyOverrides,ResolveLinks,RichText,useCustomCursors,useHydratedBreakpointVariants,useLocaleInfo,useQueryData,useRouteElementId,useRouter,withCSS,withVariantAppearEffect}from\"framer\";import{LayoutGroup,motion}from\"framer-motion\";import*as React from\"react\";import MoreTemplate from\"https://framerusercontent.com/modules/97RSakWpFqj9IO0VXGEw/EKzfGQBa29dA3a8Do7Zs/qwHmfHT0c.js\";import SectionTestimonial from\"#framer/local/canvasComponent/EZHgvgfA8/EZHgvgfA8.js\";import CardProject from\"#framer/local/canvasComponent/HkaDaqfYX/HkaDaqfYX.js\";import SectionFooter from\"#framer/local/canvasComponent/jHn_ViYLF/jHn_ViYLF.js\";import SectionSocial from\"#framer/local/canvasComponent/pfAmLmNqv/pfAmLmNqv.js\";import SectionTextTicker from\"#framer/local/canvasComponent/PyxcdEffO/PyxcdEffO.js\";import MiscButton from\"#framer/local/canvasComponent/SkMJ19mDX/SkMJ19mDX.js\";import CardSkill from\"#framer/local/canvasComponent/UBdWynPOw/UBdWynPOw.js\";import SectionHeader from\"#framer/local/canvasComponent/waDOyZpCN/waDOyZpCN.js\";import SectionCTA from\"#framer/local/canvasComponent/xCt9C3wmQ/xCt9C3wmQ.js\";import Project,{enumToDisplayNameFunctions}from\"#framer/local/collection/zYY5mSICl/zYY5mSICl.js\";import*as sharedStyle1 from\"#framer/local/css/FBxYlY3in/FBxYlY3in.js\";import*as sharedStyle2 from\"#framer/local/css/j6udS52EK/j6udS52EK.js\";import*as sharedStyle from\"#framer/local/css/tAVQAUGLZ/tAVQAUGLZ.js\";import metadataProvider from\"#framer/local/webPageMetadata/augiA20Il/augiA20Il.js\";const SectionHeaderFonts=getFonts(SectionHeader);const SectionHeaderWithVariantAppearEffect=withVariantAppearEffect(SectionHeader);const MiscButtonFonts=getFonts(MiscButton);const CardSkillFonts=getFonts(CardSkill);const SectionTextTickerFonts=getFonts(SectionTextTicker);const CardProjectFonts=getFonts(CardProject);const SectionTestimonialFonts=getFonts(SectionTestimonial);const SectionCTAFonts=getFonts(SectionCTA);const SectionSocialFonts=getFonts(SectionSocial);const SectionFooterFonts=getFonts(SectionFooter);const MoreTemplateFonts=getFonts(MoreTemplate);const cycleOrder=[\"WQLkyLRf1\",\"FVNltlxDJ\",\"Ahbyc5oWi\"];const breakpoints={Ahbyc5oWi:\"(max-width: 809px)\",FVNltlxDJ:\"(min-width: 810px) and (max-width: 1199px)\",WQLkyLRf1:\"(min-width: 1200px)\"};const isBrowser=()=>typeof document!==\"undefined\";const serializationHash=\"framer-ooxS0\";const variantClassNames={Ahbyc5oWi:\"framer-v-16j1jrn\",FVNltlxDJ:\"framer-v-1e86kv\",WQLkyLRf1:\"framer-v-72rtr7\"};const transformTemplate1=(_,t)=>`translateX(-50%) ${t}`;const addImageAlt=(image,alt)=>{if(!image||typeof image!==\"object\"){return;}return{...image,alt};};const toResponsiveImage=value=>{if(typeof value===\"object\"&&value!==null&&typeof value.src===\"string\"){return value;}return typeof value===\"string\"?{src:value}:undefined;};const QueryData=({query,children})=>{const data=useQueryData(query);return children(data);};const metadata=metadataProvider();const humanReadableVariantMap={Desktop:\"WQLkyLRf1\",Phone:\"Ahbyc5oWi\",Tablet:\"FVNltlxDJ\"};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,PfhegkmWTln9lvFgif,yBdDp1zhUln9lvFgif,Po1x2MIKPln9lvFgif,NFE_J89BXln9lvFgif,idln9lvFgif,PfhegkmWTfbi05LnMP,yBdDp1zhUfbi05LnMP,Po1x2MIKPfbi05LnMP,NFE_J89BXfbi05LnMP,idfbi05LnMP,...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-ooxS0`);}return()=>{if(bodyCls)document.body.classList.remove(`${metadata1.bodyClassName}-framer-ooxS0`);};},[undefined,activeLocale]);const[baseVariant,hydratedBaseVariant]=useHydratedBreakpointVariants(variant,breakpoints,false);const gestureVariant=undefined;const ref1=React.useRef(null);const ref2=React.useRef(null);const id=useRouteElementId(\"LlNHP4ADk\");const ref3=React.useRef(null);const router=useRouter();const id1=useRouteElementId(\"ZdN4BMTCW\");const defaultLayoutId=React.useId();const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className,sharedStyle2.className];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(serializationHash,...sharedStyleClassNames,\"framer-72rtr7\",className),ref:ref!==null&&ref!==void 0?ref:ref1,style:{...style},children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{width:\"100vw\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-arwghw-container\",layoutScroll:true,transformTemplate:transformTemplate1,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Ahbyc5oWi:{__framer__variantAppearEffectEnabled:undefined,variant:\"kyCjz8mZn\"},FVNltlxDJ:{__framer__targets:undefined,variant:\"xf4snkTPw\"}},children:/*#__PURE__*/_jsx(SectionHeaderWithVariantAppearEffect,{__framer__animateOnce:false,__framer__targets:[{ref:ref2,target:\"wtFLir70A\"}],__framer__threshold:.5,__framer__variantAppearEffectEnabled:true,Hc2uGHIdI:\"fGimt7bj2\",height:\"100%\",id:\"kzVZtq5TT\",JHYYttGrs:\"fGimt7bj2\",k2nfrbE9E:\"fGimt7bj2\",KF7L5dAtj:\"cm3tmVDY1\",layoutId:\"kzVZtq5TT\",mhL_yzDhi:\"fGimt7bj2\",style:{width:\"100%\"},sU9ovauZ6:\"fGimt7bj2\",variant:\"WWQG5bwuG\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1g741wz\",\"data-framer-name\":\"Spacer\",name:\"Spacer\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-we395p\",\"data-framer-name\":\"Hero\",id:id,name:\"Hero\",ref:ref3,children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-oo5vvs\",\"data-framer-name\":\"Inner\",name:\"Inner\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-jl5wos\",\"data-border\":true,\"data-framer-name\":\"Profile\",name:\"Profile\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Ahbyc5oWi:{background:{alt:\"\",fit:\"fill\",positionX:\"center\",positionY:\"top\",sizes:\"calc(min(100vw - 30px, 1000px) - 40px)\",src:\"https://framerusercontent.com/images/mHXB7he1hyPll8HuHhOV1B0iaJ4.jpg\",srcSet:\"https://framerusercontent.com/images/mHXB7he1hyPll8HuHhOV1B0iaJ4.jpg?scale-down-to=1024 682w,https://framerusercontent.com/images/mHXB7he1hyPll8HuHhOV1B0iaJ4.jpg?scale-down-to=2048 1365w,https://framerusercontent.com/images/mHXB7he1hyPll8HuHhOV1B0iaJ4.jpg 2400w\"}},FVNltlxDJ:{background:{alt:\"\",fit:\"fill\",positionX:\"center\",positionY:\"top\",sizes:\"calc(max((min(100vw - 60px, 1000px) - 20px) / 2, 1px) - 40px)\",src:\"https://framerusercontent.com/images/mHXB7he1hyPll8HuHhOV1B0iaJ4.jpg\",srcSet:\"https://framerusercontent.com/images/mHXB7he1hyPll8HuHhOV1B0iaJ4.jpg?scale-down-to=1024 682w,https://framerusercontent.com/images/mHXB7he1hyPll8HuHhOV1B0iaJ4.jpg?scale-down-to=2048 1365w,https://framerusercontent.com/images/mHXB7he1hyPll8HuHhOV1B0iaJ4.jpg 2400w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",positionX:\"center\",positionY:\"top\",sizes:\"calc(min(100vw - 200px, 1000px) * 0.35 - 40px)\",src:\"https://framerusercontent.com/images/mHXB7he1hyPll8HuHhOV1B0iaJ4.jpg\",srcSet:\"https://framerusercontent.com/images/mHXB7he1hyPll8HuHhOV1B0iaJ4.jpg?scale-down-to=1024 682w,https://framerusercontent.com/images/mHXB7he1hyPll8HuHhOV1B0iaJ4.jpg?scale-down-to=2048 1365w,https://framerusercontent.com/images/mHXB7he1hyPll8HuHhOV1B0iaJ4.jpg 2400w\"},className:\"framer-16dyhem\",\"data-framer-name\":\"Placeholder\",name:\"Placeholder\"})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-17xgmq1\",\"data-framer-name\":\"Title\",name:\"Title\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{className:\"framer-styles-preset-108hb61\",\"data-styles-preset\":\"tAVQAUGLZ\",style:{\"--framer-text-color\":\"var(--token-bcf08d3c-0b37-4f1f-85b9-3fda887fd2d0, rgb(250, 250, 250))\"},children:\"Cris Rayaan\"})}),className:\"framer-16i6lyy\",\"data-framer-name\":\"Cris Rayaan\",fonts:[\"Inter\"],name:\"Cris Rayaan\",verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1naxnon\",\"data-styles-preset\":\"FBxYlY3in\",style:{\"--framer-text-color\":\"var(--token-d3c4e5d6-b80a-46b5-9cad-d6680b84c7d0, rgba(250, 250, 250, 0.7))\"},children:\"A Passionate\\xa0Full Stack Developer &\\xa0Product Designer\\xa0having\\xa012 years\\xa0of Experiences over 24+ Country Worldwide.\"})}),className:\"framer-qusl5m\",\"data-framer-name\":\"A Passionate\\xa0Full Stack Developer &\\xa0Product Designer\\xa0having\\xa012 years\\xa0of Experiences over 24+ Country Worldwide.\",fonts:[\"Inter\"],name:\"A Passionate\\xa0Full Stack Developer &\\xa0Product Designer\\xa0having\\xa012 years\\xa0of Experiences over 24+ Country Worldwide.\",verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-81apx4\",\"data-framer-name\":\"Action\",name:\"Action\",children:[/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"DCj1AYyS_\"},implicitPathVariables:undefined},{href:{webPageId:\"DCj1AYyS_\"},implicitPathVariables:undefined},{href:{webPageId:\"DCj1AYyS_\"},implicitPathVariables:undefined}],children:resolvedLinks=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Ahbyc5oWi:{width:\"calc(min(100vw - 30px, 1000px) - 40px)\"},FVNltlxDJ:{width:\"calc(max((min(100vw - 60px, 1000px) - 20px) / 2, 1px) - 40px)\"}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{width:\"max((min(100vw - 200px, 1000px) * 0.35 - 60px) / 2, 1px)\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-16vkskc-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Ahbyc5oWi:{sGI3O5Osg:resolvedLinks[2]},FVNltlxDJ:{sGI3O5Osg:resolvedLinks[1]}},children:/*#__PURE__*/_jsx(MiscButton,{bCYVBVcK1:\"book a call\",bj7vR4Tb4:\"Phone\",height:\"100%\",id:\"pW5jUz2g4\",layoutId:\"pW5jUz2g4\",sGI3O5Osg:resolvedLinks[0],style:{width:\"100%\"},variant:\"cfBU18JNz\",width:\"100%\",z99IR6NNH:true})})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Ahbyc5oWi:{width:\"calc(min(100vw - 30px, 1000px) - 40px)\"},FVNltlxDJ:{width:\"calc(max((min(100vw - 60px, 1000px) - 20px) / 2, 1px) - 40px)\"}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{width:\"max((min(100vw - 200px, 1000px) * 0.35 - 60px) / 2, 1px)\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-1khwo9x-container\",children:/*#__PURE__*/_jsx(MiscButton,{bCYVBVcK1:\"Get in touch\",bj7vR4Tb4:\"Phone\",height:\"100%\",id:\"VTknTu2mZ\",layoutId:\"VTknTu2mZ\",sGI3O5Osg:\"https://calendly.com/\",style:{width:\"100%\"},variant:\"xxz8QhgXR\",width:\"100%\",z99IR6NNH:false})})})})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1xcbnkc\",\"data-framer-name\":\"Container\",name:\"Container\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-c4uwvb\",\"data-border\":true,\"data-framer-name\":\"Skill\",name:\"Skill\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{className:\"framer-styles-preset-108hb61\",\"data-styles-preset\":\"tAVQAUGLZ\",children:\"My Expert area\"})}),className:\"framer-ycls8l\",\"data-framer-name\":\"My Expert area\",fonts:[\"Inter\"],name:\"My Expert area\",verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-i13ct0\",\"data-framer-name\":\"Card\",name:\"Card\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Ahbyc5oWi:{width:\"max((min(100vw - 30px, 1000px) - 50px) / 2, 1px)\"},FVNltlxDJ:{width:\"max((max((min(100vw - 60px, 1000px) - 20px) / 2, 1px) - 50px) / 2, 1px)\"}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{width:\"max((max(min(100vw - 200px, 1000px) * 0.65 - 20px, 1px) - 60px) / 3, 1px)\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-1qmci5n-container\",children:/*#__PURE__*/_jsx(CardSkill,{height:\"100%\",id:\"di6oTTRUe\",jxPVYP0ws:addImageAlt({src:\"https://framerusercontent.com/images/P2xz36ihRHutPZXwUQcLuL7Egpk.png\"},\"\"),layoutId:\"di6oTTRUe\",style:{width:\"100%\"},vc4j1__b3:\"Figma\",width:\"100%\",XCI4fIs41:\"https://www.figma.com/\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Ahbyc5oWi:{width:\"max((min(100vw - 30px, 1000px) - 50px) / 2, 1px)\"},FVNltlxDJ:{width:\"max((max((min(100vw - 60px, 1000px) - 20px) / 2, 1px) - 50px) / 2, 1px)\"}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{width:\"max((max(min(100vw - 200px, 1000px) * 0.65 - 20px, 1px) - 60px) / 3, 1px)\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-lnbxxs-container\",children:/*#__PURE__*/_jsx(CardSkill,{height:\"100%\",id:\"vpi7Xrxc7\",jxPVYP0ws:addImageAlt({src:\"https://framerusercontent.com/images/ywtpT4NB7jjIOgC17g6nPT3MA.png\"},\"\"),layoutId:\"vpi7Xrxc7\",style:{width:\"100%\"},vc4j1__b3:\"Framer\",width:\"100%\",XCI4fIs41:\"https://framer.com/\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Ahbyc5oWi:{width:\"max((min(100vw - 30px, 1000px) - 50px) / 2, 1px)\"},FVNltlxDJ:{width:\"max((max((min(100vw - 60px, 1000px) - 20px) / 2, 1px) - 50px) / 2, 1px)\"}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{width:\"max((max(min(100vw - 200px, 1000px) * 0.65 - 20px, 1px) - 60px) / 3, 1px)\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-1x6t7du-container\",children:/*#__PURE__*/_jsx(CardSkill,{height:\"100%\",id:\"axuKny9jM\",jxPVYP0ws:addImageAlt({src:\"https://framerusercontent.com/images/D8KUjnmxIiB28D8Lo8qR3Da9pw.png\"},\"\"),layoutId:\"axuKny9jM\",style:{width:\"100%\"},vc4j1__b3:\"Behance\",width:\"100%\",XCI4fIs41:\"https://www.behance.net/\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Ahbyc5oWi:{width:\"max((min(100vw - 30px, 1000px) - 50px) / 2, 1px)\"},FVNltlxDJ:{width:\"max((max((min(100vw - 60px, 1000px) - 20px) / 2, 1px) - 50px) / 2, 1px)\"}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{width:\"max((max(min(100vw - 200px, 1000px) * 0.65 - 20px, 1px) - 60px) / 3, 1px)\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-13pjpi2-container\",children:/*#__PURE__*/_jsx(CardSkill,{height:\"100%\",id:\"qersRNykK\",jxPVYP0ws:addImageAlt({src:\"https://framerusercontent.com/images/qEpVrgAGbXqq3VNOJgt90vWf8.png\"},\"\"),layoutId:\"qersRNykK\",style:{width:\"100%\"},vc4j1__b3:\"Dribbble\",width:\"100%\",XCI4fIs41:\"https://dribbble.com/\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Ahbyc5oWi:{width:\"max((min(100vw - 30px, 1000px) - 50px) / 2, 1px)\"},FVNltlxDJ:{width:\"max((max((min(100vw - 60px, 1000px) - 20px) / 2, 1px) - 50px) / 2, 1px)\"}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{width:\"max((max(min(100vw - 200px, 1000px) * 0.65 - 20px, 1px) - 60px) / 3, 1px)\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-h1k0bm-container\",children:/*#__PURE__*/_jsx(CardSkill,{height:\"100%\",id:\"RSvn9ciE7\",jxPVYP0ws:addImageAlt({src:\"https://framerusercontent.com/images/AF21ganosjpwrtQFJ7FRuCrPW0.png\"},\"\"),layoutId:\"RSvn9ciE7\",style:{width:\"100%\"},vc4j1__b3:\"Sketch\",width:\"100%\",XCI4fIs41:\"https://www.sketch.com/\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Ahbyc5oWi:{width:\"max((min(100vw - 30px, 1000px) - 50px) / 2, 1px)\"},FVNltlxDJ:{width:\"max((max((min(100vw - 60px, 1000px) - 20px) / 2, 1px) - 50px) / 2, 1px)\"}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{width:\"max((max(min(100vw - 200px, 1000px) * 0.65 - 20px, 1px) - 60px) / 3, 1px)\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-17jkupi-container\",children:/*#__PURE__*/_jsx(CardSkill,{height:\"100%\",id:\"PeMTXjLdj\",jxPVYP0ws:addImageAlt({src:\"https://framerusercontent.com/images/cfG7feUjzMaWok8xRr81Ql2WBgc.png\"},\"\"),layoutId:\"PeMTXjLdj\",style:{width:\"100%\"},vc4j1__b3:\"Adobe XD\",width:\"100%\",XCI4fIs41:\"https://adobexdplatform.com/\"})})})})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-ggcq9r\",\"data-border\":true,\"data-framer-name\":\"Content\",name:\"Content\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-xkd6bs\",\"data-styles-preset\":\"j6udS52EK\",style:{\"--framer-text-color\":\"var(--token-64b59df6-8b50-496a-8307-8ab00dd6d5a0, rgba(250, 250, 250, 0.5))\"},children:\"As a product designer, I specialize in creating magical visual identities for digital products.\\xa0I believe that a stunning design starts with common values, open communication, and respect for your audience.\"})}),className:\"framer-1tc0w8g\",\"data-framer-name\":\"As a product designer, I specialize in creating magical visual identities for digital products.\\xa0I believe that a stunning design starts with common values, open communication, and respect for your audience.\",fonts:[\"Inter\"],name:\"As a product designer, I specialize in creating magical visual identities for digital products.\\xa0I believe that a stunning design starts with common values, open communication, and respect for your audience.\",verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Ahbyc5oWi:{width:\"calc(min(100vw - 30px, 1000px) - 40px)\"},FVNltlxDJ:{width:\"calc(max((min(100vw - 60px, 1000px) - 20px) / 2, 1px) - 40px)\"}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{width:\"calc(max(min(100vw - 200px, 1000px) * 0.65 - 20px, 1px) - 40px)\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-vxkndw-container\",children:/*#__PURE__*/_jsx(SectionTextTicker,{height:\"100%\",id:\"JPcLuc9wX\",layoutId:\"JPcLuc9wX\",style:{width:\"100%\"},width:\"100%\"})})})})]})]})]})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1zuyt7\",\"data-framer-name\":\"Project\",name:\"Project\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1gegb1b\",\"data-framer-name\":\"Inner\",id:id1,name:\"Inner\",ref:ref2,children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-bgqo1c\",children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(QueryData,{query:{from:{alias:\"default\",data:Project,type:\"Collection\"},limit:{type:\"LiteralValue\",value:2},select:[{collection:\"default\",name:\"PfhegkmWT\",type:\"Identifier\"},{collection:\"default\",name:\"yBdDp1zhU\",type:\"Identifier\"},{collection:\"default\",name:\"Po1x2MIKP\",type:\"Identifier\"},{collection:\"default\",name:\"NFE_J89BX\",type:\"Identifier\"},{collection:\"default\",name:\"id\",type:\"Identifier\"}]},children:(collection,paginationInfo,loadMore)=>/*#__PURE__*/_jsx(_Fragment,{children:collection.map(({\"PfhegkmWT\":PfhegkmWTln9lvFgif,\"yBdDp1zhU\":yBdDp1zhUln9lvFgif,\"Po1x2MIKP\":Po1x2MIKPln9lvFgif,\"NFE_J89BX\":NFE_J89BXln9lvFgif,\"id\":idln9lvFgif},i)=>{return /*#__PURE__*/_jsx(LayoutGroup,{id:`ln9lvFgif-${idln9lvFgif}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{NFE_J89BX:NFE_J89BXln9lvFgif},children:/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{pathVariables:{NFE_J89BX:NFE_J89BXln9lvFgif},webPageId:\"JyoOsvCF0\"},implicitPathVariables:undefined},{href:{pathVariables:{NFE_J89BX:NFE_J89BXln9lvFgif},webPageId:\"JyoOsvCF0\"},implicitPathVariables:undefined},{href:{pathVariables:{NFE_J89BX:NFE_J89BXln9lvFgif},webPageId:\"JyoOsvCF0\"},implicitPathVariables:undefined}],children:resolvedLinks1=>{var _enumToDisplayNameFunctions_yBdDp1zhU;return /*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Ahbyc5oWi:{width:\"min(100vw - 30px, 1000px)\"},FVNltlxDJ:{width:\"max(min(100vw - 100px, 1000px), 1px)\"}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{width:\"max(min(100vw - 200px, 1000px), 1px)\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-13x18aq-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Ahbyc5oWi:{NAv0tyaXn:resolvedLinks1[2],style:{height:\"100%\",width:\"100%\"},variant:\"cQy8r9NbO\"},FVNltlxDJ:{NAv0tyaXn:resolvedLinks1[1],style:{height:\"100%\",width:\"100%\"},variant:\"cQy8r9NbO\"}},children:/*#__PURE__*/_jsx(CardProject,{CyaJ9QeQ1:(_enumToDisplayNameFunctions_yBdDp1zhU=enumToDisplayNameFunctions[\"yBdDp1zhU\"])===null||_enumToDisplayNameFunctions_yBdDp1zhU===void 0?void 0:_enumToDisplayNameFunctions_yBdDp1zhU.call(enumToDisplayNameFunctions,yBdDp1zhUln9lvFgif,activeLocale),FkOPWGzdc:toResponsiveImage(Po1x2MIKPln9lvFgif),height:\"100%\",id:\"EGxvAv1fH\",IXrBuHrrM:PfhegkmWTln9lvFgif,layoutId:\"EGxvAv1fH\",NAv0tyaXn:resolvedLinks1[0],style:{width:\"100%\"},variant:\"Yf581ercP\",width:\"100%\"})})})})});}})})},idln9lvFgif);})})})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-gjye2x\",children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(QueryData,{query:{from:{alias:\"default\",data:Project,type:\"Collection\"},limit:{type:\"LiteralValue\",value:3},orderBy:[{direction:\"desc\",name:\"index\",type:\"Identifier\"}],select:[{collection:\"default\",name:\"PfhegkmWT\",type:\"Identifier\"},{collection:\"default\",name:\"yBdDp1zhU\",type:\"Identifier\"},{collection:\"default\",name:\"Po1x2MIKP\",type:\"Identifier\"},{collection:\"default\",name:\"NFE_J89BX\",type:\"Identifier\"},{collection:\"default\",name:\"id\",type:\"Identifier\"}]},children:(collection1,paginationInfo1,loadMore1)=>/*#__PURE__*/_jsx(_Fragment,{children:collection1.map(({\"PfhegkmWT\":PfhegkmWTfbi05LnMP,\"yBdDp1zhU\":yBdDp1zhUfbi05LnMP,\"Po1x2MIKP\":Po1x2MIKPfbi05LnMP,\"NFE_J89BX\":NFE_J89BXfbi05LnMP,\"id\":idfbi05LnMP},i)=>{return /*#__PURE__*/_jsx(LayoutGroup,{id:`fbi05LnMP-${idfbi05LnMP}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{NFE_J89BX:NFE_J89BXfbi05LnMP},children:/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{pathVariables:{NFE_J89BX:NFE_J89BXfbi05LnMP},webPageId:\"JyoOsvCF0\"},implicitPathVariables:undefined},{href:{pathVariables:{NFE_J89BX:NFE_J89BXfbi05LnMP},webPageId:\"JyoOsvCF0\"},implicitPathVariables:undefined},{href:{pathVariables:{NFE_J89BX:NFE_J89BXfbi05LnMP},webPageId:\"JyoOsvCF0\"},implicitPathVariables:undefined}],children:resolvedLinks2=>{var _enumToDisplayNameFunctions_yBdDp1zhU;return /*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Ahbyc5oWi:{width:\"min(100vw - 30px, 1000px)\"},FVNltlxDJ:{width:\"max(min(100vw - 100px, 1000px), 1px)\"}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{width:\"max(min(100vw - 200px, 1000px), 1px)\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-q0arh5-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Ahbyc5oWi:{NAv0tyaXn:resolvedLinks2[2],style:{height:\"100%\",width:\"100%\"},variant:\"ehJFRqVga\"},FVNltlxDJ:{NAv0tyaXn:resolvedLinks2[1],style:{height:\"100%\",width:\"100%\"},variant:\"ehJFRqVga\"}},children:/*#__PURE__*/_jsx(CardProject,{CyaJ9QeQ1:(_enumToDisplayNameFunctions_yBdDp1zhU=enumToDisplayNameFunctions[\"yBdDp1zhU\"])===null||_enumToDisplayNameFunctions_yBdDp1zhU===void 0?void 0:_enumToDisplayNameFunctions_yBdDp1zhU.call(enumToDisplayNameFunctions,yBdDp1zhUfbi05LnMP,activeLocale),FkOPWGzdc:toResponsiveImage(Po1x2MIKPfbi05LnMP),height:\"100%\",id:\"yZfRYRkkM\",IXrBuHrrM:PfhegkmWTfbi05LnMP,layoutId:\"yZfRYRkkM\",NAv0tyaXn:resolvedLinks2[0],style:{width:\"100%\"},variant:\"cQy8r9NbO\",width:\"100%\"})})})})});}})})},idfbi05LnMP);})})})})})]})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1ngg5lj\",\"data-framer-name\":\"Testimonial\",name:\"Testimonial\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1i2ons3\",\"data-framer-name\":\"Inner\",name:\"Inner\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Ahbyc5oWi:{width:\"min(100vw - 30px, 1000px)\"},FVNltlxDJ:{width:\"min(100vw - 100px, 1000px)\"}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1qnscpq-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Ahbyc5oWi:{variant:\"VMlwy4ieq\"},FVNltlxDJ:{variant:\"CyXLHDTJE\"}},children:/*#__PURE__*/_jsx(SectionTestimonial,{height:\"100%\",id:\"ZHYYabTLY\",layoutId:\"ZHYYabTLY\",style:{width:\"100%\"},variant:\"YaUrsa_mS\",width:\"100%\"})})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"DCj1AYyS_\"},implicitPathVariables:undefined},{href:{webPageId:\"DCj1AYyS_\"},implicitPathVariables:undefined},{href:{webPageId:\"DCj1AYyS_\"},implicitPathVariables:undefined}],children:resolvedLinks3=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Ahbyc5oWi:{width:\"min(100vw - 30px, 1000px)\"},FVNltlxDJ:{width:\"min(100vw - 100px, 1000px)\"}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1hfcw8h-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Ahbyc5oWi:{style:{width:\"100%\"},variant:\"Sse0YmkQj\",zQMSTxc7B:resolvedLinks3[2]},FVNltlxDJ:{style:{width:\"100%\"},variant:\"Sse0YmkQj\",zQMSTxc7B:resolvedLinks3[1]}},children:/*#__PURE__*/_jsx(SectionCTA,{height:\"100%\",id:\"tTItmCHiY\",layoutId:\"tTItmCHiY\",style:{height:\"100%\"},variant:\"C5m782BNT\",width:\"100%\",zQMSTxc7B:resolvedLinks3[0]})})})})})})]})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{width:\"100vw\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-1s7tp0o-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Ahbyc5oWi:{variant:\"oRoj2xrSI\"},FVNltlxDJ:{variant:\"NFnJbOSKC\"}},children:/*#__PURE__*/_jsx(SectionSocial,{height:\"100%\",id:\"rIRTprgyP\",layoutId:\"rIRTprgyP\",style:{width:\"100%\"},variant:\"Imlystisn\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{width:\"100vw\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-1mgvalg-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Ahbyc5oWi:{variant:\"hvf9P_Y4w\"},FVNltlxDJ:{variant:\"E8JOnvpoc\"}},children:/*#__PURE__*/_jsx(SectionFooter,{height:\"100%\",id:\"uEWkcfHpk\",layoutId:\"uEWkcfHpk\",style:{width:\"100%\"},variant:\"f4qz49Zgi\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{width:\"100vw\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-he2e8c-container\",layoutScroll:true,children:/*#__PURE__*/_jsx(MoreTemplate,{height:\"100%\",id:\"HK_MHqo6q\",layoutId:\"HK_MHqo6q\",style:{width:\"100%\"},width:\"100%\"})})})]}),/*#__PURE__*/_jsx(\"div\",{className:cx(serializationHash,...sharedStyleClassNames),id:\"overlay\"})]})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",`.${metadata.bodyClassName}-framer-ooxS0 { background: var(--token-4b9d1dd9-6f09-4889-a6f3-b8c466101028, rgb(0, 0, 0)) /* {\"name\":\"Black\"} */; }`,\".framer-ooxS0.framer-lux5qc, .framer-ooxS0 .framer-lux5qc { display: block; }\",\".framer-ooxS0.framer-72rtr7 { align-content: center; align-items: center; background-color: var(--token-4b9d1dd9-6f09-4889-a6f3-b8c466101028, #000000); display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 1200px; }\",\".framer-ooxS0 .framer-arwghw-container { flex: none; height: auto; left: 50%; position: fixed; top: 0px; transform: translateX(-50%); width: 100%; z-index: 10; }\",\".framer-ooxS0 .framer-1g741wz { flex: none; height: 108px; overflow: hidden; position: relative; width: 100%; }\",\".framer-ooxS0 .framer-we395p, .framer-ooxS0 .framer-1zuyt7 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 20px 100px 20px 100px; position: relative; width: 100%; }\",\".framer-ooxS0 .framer-oo5vvs, .framer-ooxS0 .framer-1i2ons3 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: flex-start; max-width: 1000px; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-ooxS0 .framer-jl5wos { --border-bottom-width: 1px; --border-color: var(--token-ca4b29e9-f6bc-4926-9cc2-4367402ad198, rgba(250, 250, 250, 0.05)); --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; align-content: center; align-items: center; background-color: var(--token-f9c79822-dd63-49a1-9880-4ca3be27fd0a, rgba(250, 250, 250, 0.03)); border-bottom-left-radius: 8px; border-bottom-right-radius: 8px; border-top-left-radius: 8px; border-top-right-radius: 8px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; overflow: visible; padding: 20px; position: relative; width: 35%; }\",\".framer-ooxS0 .framer-16dyhem { aspect-ratio: 0.775 / 1; border-bottom-left-radius: 8px; border-bottom-right-radius: 8px; border-top-left-radius: 8px; border-top-right-radius: 8px; flex: none; height: var(--framer-aspect-ratio-supported, 400px); overflow: hidden; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-ooxS0 .framer-17xgmq1 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-ooxS0 .framer-16i6lyy, .framer-ooxS0 .framer-qusl5m, .framer-ooxS0 .framer-ycls8l, .framer-ooxS0 .framer-1tc0w8g { --framer-paragraph-spacing: 0px; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-ooxS0 .framer-81apx4 { 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-ooxS0 .framer-16vkskc-container, .framer-ooxS0 .framer-1khwo9x-container, .framer-ooxS0 .framer-13x18aq-container, .framer-ooxS0 .framer-q0arh5-container, .framer-ooxS0 .framer-1qnscpq-container { flex: 1 0 0px; height: auto; position: relative; width: 1px; }\",\".framer-ooxS0 .framer-1xcbnkc { align-content: flex-start; align-items: flex-start; align-self: stretch; border-bottom-left-radius: 20px; border-bottom-right-radius: 20px; border-top-left-radius: 20px; border-top-right-radius: 20px; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: auto; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-ooxS0 .framer-c4uwvb { --border-bottom-width: 1px; --border-color: var(--token-ca4b29e9-f6bc-4926-9cc2-4367402ad198, rgba(250, 250, 250, 0.05)); --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; align-content: flex-start; align-items: flex-start; background-color: var(--token-f9c79822-dd63-49a1-9880-4ca3be27fd0a, rgba(250, 250, 250, 0.03)); border-bottom-left-radius: 8px; border-bottom-right-radius: 8px; border-top-left-radius: 8px; border-top-right-radius: 8px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: flex-start; overflow: visible; padding: 20px; position: relative; width: 100%; }\",\".framer-ooxS0 .framer-i13ct0 { display: grid; flex: none; gap: 10px; grid-auto-rows: minmax(0, 1fr); grid-template-columns: repeat(3, minmax(1px, 1fr)); grid-template-rows: repeat(2, minmax(0, 1fr)); height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-ooxS0 .framer-1qmci5n-container, .framer-ooxS0 .framer-lnbxxs-container, .framer-ooxS0 .framer-1x6t7du-container, .framer-ooxS0 .framer-13pjpi2-container, .framer-ooxS0 .framer-h1k0bm-container, .framer-ooxS0 .framer-17jkupi-container { align-self: start; flex: none; height: 100%; justify-self: start; position: relative; width: 100%; }\",\".framer-ooxS0 .framer-ggcq9r { --border-bottom-width: 1px; --border-color: var(--token-ca4b29e9-f6bc-4926-9cc2-4367402ad198, rgba(250, 250, 250, 0.05)); --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; align-content: flex-end; align-items: flex-end; background-color: var(--token-f9c79822-dd63-49a1-9880-4ca3be27fd0a, rgba(250, 250, 250, 0.03)); border-bottom-left-radius: 8px; border-bottom-right-radius: 8px; border-top-left-radius: 8px; border-top-right-radius: 8px; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; height: 1px; justify-content: space-between; overflow: visible; padding: 20px; position: relative; width: 100%; }\",\".framer-ooxS0 .framer-vxkndw-container, .framer-ooxS0 .framer-1s7tp0o-container, .framer-ooxS0 .framer-1mgvalg-container { flex: none; height: auto; position: relative; width: 100%; }\",\".framer-ooxS0 .framer-1gegb1b { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: flex-start; max-width: 1000px; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-ooxS0 .framer-bgqo1c, .framer-ooxS0 .framer-gjye2x { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: flex-start; padding: 0px; position: relative; width: 100%; }\",\".framer-ooxS0 .framer-1ngg5lj { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 30px 100px 30px 100px; position: relative; width: 100%; }\",\".framer-ooxS0 .framer-1hfcw8h-container { align-self: stretch; flex: none; height: auto; position: relative; width: auto; }\",\".framer-ooxS0 .framer-he2e8c-container { bottom: 0px; flex: none; height: auto; position: fixed; right: 0px; width: 100%; z-index: 5; }\",\"@supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-ooxS0.framer-72rtr7, .framer-ooxS0 .framer-we395p, .framer-ooxS0 .framer-oo5vvs, .framer-ooxS0 .framer-jl5wos, .framer-ooxS0 .framer-17xgmq1, .framer-ooxS0 .framer-81apx4, .framer-ooxS0 .framer-1xcbnkc, .framer-ooxS0 .framer-c4uwvb, .framer-ooxS0 .framer-1zuyt7, .framer-ooxS0 .framer-1gegb1b, .framer-ooxS0 .framer-bgqo1c, .framer-ooxS0 .framer-gjye2x, .framer-ooxS0 .framer-1ngg5lj, .framer-ooxS0 .framer-1i2ons3 { gap: 0px; } .framer-ooxS0.framer-72rtr7 > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-ooxS0.framer-72rtr7 > :first-child, .framer-ooxS0 .framer-we395p > :first-child, .framer-ooxS0 .framer-jl5wos > :first-child, .framer-ooxS0 .framer-17xgmq1 > :first-child, .framer-ooxS0 .framer-1xcbnkc > :first-child, .framer-ooxS0 .framer-c4uwvb > :first-child, .framer-ooxS0 .framer-1zuyt7 > :first-child, .framer-ooxS0 .framer-1gegb1b > :first-child, .framer-ooxS0 .framer-1ngg5lj > :first-child { margin-top: 0px; } .framer-ooxS0.framer-72rtr7 > :last-child, .framer-ooxS0 .framer-we395p > :last-child, .framer-ooxS0 .framer-jl5wos > :last-child, .framer-ooxS0 .framer-17xgmq1 > :last-child, .framer-ooxS0 .framer-1xcbnkc > :last-child, .framer-ooxS0 .framer-c4uwvb > :last-child, .framer-ooxS0 .framer-1zuyt7 > :last-child, .framer-ooxS0 .framer-1gegb1b > :last-child, .framer-ooxS0 .framer-1ngg5lj > :last-child { margin-bottom: 0px; } .framer-ooxS0 .framer-we395p > *, .framer-ooxS0 .framer-17xgmq1 > *, .framer-ooxS0 .framer-1zuyt7 > *, .framer-ooxS0 .framer-1ngg5lj > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-ooxS0 .framer-oo5vvs > *, .framer-ooxS0 .framer-81apx4 > *, .framer-ooxS0 .framer-bgqo1c > *, .framer-ooxS0 .framer-gjye2x > *, .framer-ooxS0 .framer-1i2ons3 > * { margin: 0px; margin-left: calc(20px / 2); margin-right: calc(20px / 2); } .framer-ooxS0 .framer-oo5vvs > :first-child, .framer-ooxS0 .framer-81apx4 > :first-child, .framer-ooxS0 .framer-bgqo1c > :first-child, .framer-ooxS0 .framer-gjye2x > :first-child, .framer-ooxS0 .framer-1i2ons3 > :first-child { margin-left: 0px; } .framer-ooxS0 .framer-oo5vvs > :last-child, .framer-ooxS0 .framer-81apx4 > :last-child, .framer-ooxS0 .framer-bgqo1c > :last-child, .framer-ooxS0 .framer-gjye2x > :last-child, .framer-ooxS0 .framer-1i2ons3 > :last-child { margin-right: 0px; } .framer-ooxS0 .framer-jl5wos > *, .framer-ooxS0 .framer-1xcbnkc > *, .framer-ooxS0 .framer-c4uwvb > *, .framer-ooxS0 .framer-1gegb1b > * { margin: 0px; margin-bottom: calc(20px / 2); margin-top: calc(20px / 2); } }\",\"@media (min-width: 1200px) { .framer-ooxS0 .hidden-72rtr7 { display: none !important; } }\",`@media (min-width: 810px) and (max-width: 1199px) { .framer-ooxS0 .hidden-1e86kv { display: none !important; } .${metadata.bodyClassName}-framer-ooxS0 { background: var(--token-4b9d1dd9-6f09-4889-a6f3-b8c466101028, rgb(0, 0, 0)) /* {\"name\":\"Black\"} */; } .framer-ooxS0.framer-72rtr7 { width: 810px; } .framer-ooxS0 .framer-1g741wz { height: 95px; } .framer-ooxS0 .framer-we395p { padding: 20px 30px 20px 30px; } .framer-ooxS0 .framer-jl5wos { align-self: stretch; flex: 1 0 0px; height: auto; width: 1px; } .framer-ooxS0 .framer-16dyhem { border-bottom-left-radius: 15px; border-bottom-right-radius: 15px; border-top-left-radius: 15px; border-top-right-radius: 15px; height: var(--framer-aspect-ratio-supported, 445px); } .framer-ooxS0 .framer-81apx4 { flex-direction: column; gap: 10px; } .framer-ooxS0 .framer-16vkskc-container, .framer-ooxS0 .framer-1khwo9x-container, .framer-ooxS0 .framer-1qnscpq-container { flex: none; width: 100%; } .framer-ooxS0 .framer-1xcbnkc { align-self: unset; height: min-content; } .framer-ooxS0 .framer-i13ct0 { grid-template-columns: repeat(2, minmax(1px, 1fr)); } .framer-ooxS0 .framer-ggcq9r { flex: none; gap: 30px; height: min-content; justify-content: center; } .framer-ooxS0 .framer-1zuyt7 { padding: 20px 50px 20px 50px; } .framer-ooxS0 .framer-13x18aq-container { height: 400px; } .framer-ooxS0 .framer-q0arh5-container { height: 286px; } .framer-ooxS0 .framer-1ngg5lj { padding: 30px 50px 30px 50px; } .framer-ooxS0 .framer-1i2ons3 { flex-direction: column; } .framer-ooxS0 .framer-1hfcw8h-container { align-self: unset; width: 100%; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-ooxS0 .framer-81apx4, .framer-ooxS0 .framer-ggcq9r, .framer-ooxS0 .framer-1i2ons3 { gap: 0px; } .framer-ooxS0 .framer-81apx4 > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-ooxS0 .framer-81apx4 > :first-child, .framer-ooxS0 .framer-ggcq9r > :first-child, .framer-ooxS0 .framer-1i2ons3 > :first-child { margin-top: 0px; } .framer-ooxS0 .framer-81apx4 > :last-child, .framer-ooxS0 .framer-ggcq9r > :last-child, .framer-ooxS0 .framer-1i2ons3 > :last-child { margin-bottom: 0px; } .framer-ooxS0 .framer-ggcq9r > * { margin: 0px; margin-bottom: calc(30px / 2); margin-top: calc(30px / 2); } .framer-ooxS0 .framer-1i2ons3 > * { margin: 0px; margin-bottom: calc(20px / 2); margin-top: calc(20px / 2); } }}`,`@media (max-width: 809px) { .framer-ooxS0 .hidden-16j1jrn { display: none !important; } .${metadata.bodyClassName}-framer-ooxS0 { background: var(--token-4b9d1dd9-6f09-4889-a6f3-b8c466101028, rgb(0, 0, 0)) /* {\"name\":\"Black\"} */; } .framer-ooxS0.framer-72rtr7 { width: 390px; } .framer-ooxS0 .framer-1g741wz { height: 80px; } .framer-ooxS0 .framer-we395p, .framer-ooxS0 .framer-1zuyt7 { padding: 20px 15px 20px 15px; } .framer-ooxS0 .framer-oo5vvs, .framer-ooxS0 .framer-1i2ons3 { flex-direction: column; } .framer-ooxS0 .framer-jl5wos { width: 100%; } .framer-ooxS0 .framer-16dyhem { aspect-ratio: 0.7441860465116279 / 1; height: var(--framer-aspect-ratio-supported, 269px); } .framer-ooxS0 .framer-81apx4 { flex-direction: column; gap: 10px; } .framer-ooxS0 .framer-16vkskc-container, .framer-ooxS0 .framer-1khwo9x-container, .framer-ooxS0 .framer-1qnscpq-container { flex: none; width: 100%; } .framer-ooxS0 .framer-1xcbnkc { align-self: unset; flex: none; height: min-content; width: 100%; } .framer-ooxS0 .framer-i13ct0 { grid-template-columns: repeat(2, minmax(1px, 1fr)); } .framer-ooxS0 .framer-ggcq9r { flex: none; gap: 20px; height: min-content; justify-content: center; } .framer-ooxS0 .framer-bgqo1c { flex-direction: column; order: 0; } .framer-ooxS0 .framer-13x18aq-container { flex: none; height: 415px; width: 100%; } .framer-ooxS0 .framer-gjye2x { flex-direction: column; order: 1; } .framer-ooxS0 .framer-q0arh5-container { flex: none; height: 390px; width: 100%; } .framer-ooxS0 .framer-1ngg5lj { padding: 30px 15px 30px 15px; } .framer-ooxS0 .framer-1hfcw8h-container { align-self: unset; width: 100%; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-ooxS0 .framer-oo5vvs, .framer-ooxS0 .framer-81apx4, .framer-ooxS0 .framer-ggcq9r, .framer-ooxS0 .framer-bgqo1c, .framer-ooxS0 .framer-gjye2x, .framer-ooxS0 .framer-1i2ons3 { gap: 0px; } .framer-ooxS0 .framer-oo5vvs > *, .framer-ooxS0 .framer-ggcq9r > *, .framer-ooxS0 .framer-bgqo1c > *, .framer-ooxS0 .framer-gjye2x > *, .framer-ooxS0 .framer-1i2ons3 > * { margin: 0px; margin-bottom: calc(20px / 2); margin-top: calc(20px / 2); } .framer-ooxS0 .framer-oo5vvs > :first-child, .framer-ooxS0 .framer-81apx4 > :first-child, .framer-ooxS0 .framer-ggcq9r > :first-child, .framer-ooxS0 .framer-bgqo1c > :first-child, .framer-ooxS0 .framer-gjye2x > :first-child, .framer-ooxS0 .framer-1i2ons3 > :first-child { margin-top: 0px; } .framer-ooxS0 .framer-oo5vvs > :last-child, .framer-ooxS0 .framer-81apx4 > :last-child, .framer-ooxS0 .framer-ggcq9r > :last-child, .framer-ooxS0 .framer-bgqo1c > :last-child, .framer-ooxS0 .framer-gjye2x > :last-child, .framer-ooxS0 .framer-1i2ons3 > :last-child { margin-bottom: 0px; } .framer-ooxS0 .framer-81apx4 > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } }}`,...sharedStyle.css,...sharedStyle1.css,...sharedStyle2.css,'.framer-ooxS0[data-border=\"true\"]::after, .framer-ooxS0 [data-border=\"true\"]::after { content: \"\"; border-width: var(--border-top-width, 0) var(--border-right-width, 0) var(--border-bottom-width, 0) var(--border-left-width, 0); border-color: var(--border-color, none); border-style: var(--border-style, none); width: 100%; height: 100%; position: absolute; box-sizing: border-box; left: 0; top: 0; border-radius: inherit; pointer-events: none; }'];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 2395\n * @framerIntrinsicWidth 1200\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"FVNltlxDJ\":{\"layout\":[\"fixed\",\"auto\"]},\"Ahbyc5oWi\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n * @framerResponsiveScreen\n */const FrameraugiA20Il=withCSS(Component,css,\"framer-ooxS0\");export default FrameraugiA20Il;FrameraugiA20Il.displayName=\"Home\";FrameraugiA20Il.defaultProps={height:2395,width:1200};addFonts(FrameraugiA20Il,[{explicitInter:true,fonts:[{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/5vvr9Vy74if2I6bQbJvbw7SY1pQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/EOr0mi4hNtlgWNn9if640EZzXCo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Y9k9QrlZAqio88Klkmbd8VoMQc.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/OYrD2tBIBPvoJXiIHnLoOXnY9M.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/JeYwfuaPfZHQhEG8U5gtPDZ7WQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/vQyevYAyHtARFwPqUzQGpnDs.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/b6Y37FthZeALduNqHicBT6FutY.woff2\",weight:\"400\"}]},...SectionHeaderFonts,...MiscButtonFonts,...CardSkillFonts,...SectionTextTickerFonts,...CardProjectFonts,...SectionTestimonialFonts,...SectionCTAFonts,...SectionSocialFonts,...SectionFooterFonts,...MoreTemplateFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts),...getFontsFromSharedStyle(sharedStyle2.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FrameraugiA20Il\",\"slots\":[],\"annotations\":{\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"FVNltlxDJ\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"Ahbyc5oWi\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerDisplayContentsDiv\":\"false\",\"framerIntrinsicWidth\":\"1200\",\"framerIntrinsicHeight\":\"2395\",\"framerResponsiveScreen\":\"\",\"framerComponentViewportWidth\":\"true\",\"framerImmutableVariables\":\"true\",\"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", "PhosphorFonts", "getFonts", "Icon", "TickerFonts", "Ticker", "cycleOrder", "serializationHash", "variantClassNames", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "getProps", "height", "id", "width", "props", "createLayoutDependency", "variants", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "variant", "restProps", "baseVariant", "classNames", "gestureVariant", "setGestureState", "setVariant", "useVariantState", "cycleOrder", "variantClassNames", "layoutDependency", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "cx", "serializationHash", "ComponentViewportProvider", "Ticker", "RichText2", "Icon", "css", "FramerPyxcdEffO", "withCSS", "PyxcdEffO_default", "addFonts", "PhosphorFonts", "TickerFonts", "getFontsFromSharedStyle", "fonts", "enabledGestures", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "toResponsiveImage", "value", "Transition", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "getProps", "height", "id", "image", "link", "title", "width", "props", "_ref", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "vc4j1__b3", "jxPVYP0ws", "XCI4fIs41", "restProps", "baseVariant", "classNames", "gestureVariant", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "Link", "u", "cx", "Image2", "RichText2", "css", "FramerUBdWynPOw", "withCSS", "UBdWynPOw_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts", "SectionHeaderFonts", "getFonts", "waDOyZpCN_default", "SectionHeaderWithVariantAppearEffect", "withVariantAppearEffect", "MiscButtonFonts", "SkMJ19mDX_default", "CardSkillFonts", "UBdWynPOw_default", "SectionTextTickerFonts", "PyxcdEffO_default", "CardProjectFonts", "HkaDaqfYX_default", "SectionTestimonialFonts", "EZHgvgfA8_default", "SectionCTAFonts", "xCt9C3wmQ_default", "SectionSocialFonts", "pfAmLmNqv_default", "SectionFooterFonts", "jHn_ViYLF_default", "MoreTemplateFonts", "qwHmfHT0c_default", "breakpoints", "serializationHash", "variantClassNames", "transformTemplate1", "_", "addImageAlt", "image", "alt", "toResponsiveImage", "value", "QueryData", "query", "children", "data", "useQueryData", "metadata", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "_humanReadableVariantMap_props_variant", "_ref", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "variant", "PfhegkmWTln9lvFgif", "yBdDp1zhUln9lvFgif", "Po1x2MIKPln9lvFgif", "NFE_J89BXln9lvFgif", "idln9lvFgif", "PfhegkmWTfbi05LnMP", "yBdDp1zhUfbi05LnMP", "Po1x2MIKPfbi05LnMP", "NFE_J89BXfbi05LnMP", "idfbi05LnMP", "restProps", "ue", "metadata1", "robotsTag", "ie", "_document_querySelector", "bodyCls", "body", "c", "baseVariant", "hydratedBaseVariant", "useHydratedBreakpointVariants", "breakpoints", "gestureVariant", "ref1", "pe", "ref2", "useRouteElementId", "ref3", "router", "useRouter", "id1", "defaultLayoutId", "ae", "sharedStyleClassNames", "useCustomCursors", "p", "GeneratedComponentContext", "u", "LayoutGroup", "motion", "cx", "ComponentViewportProvider", "Container", "PropertyOverrides2", "SectionHeaderWithVariantAppearEffect", "Image2", "RichText2", "x", "ResolveLinks", "resolvedLinks", "SkMJ19mDX_default", "UBdWynPOw_default", "PyxcdEffO_default", "ChildrenCanSuspend", "zYY5mSICl_default", "collection", "paginationInfo", "loadMore", "l", "i", "PathVariablesContext", "resolvedLinks1", "_enumToDisplayNameFunctions_yBdDp1zhU", "HkaDaqfYX_default", "enumToDisplayNameFunctions", "collection1", "paginationInfo1", "loadMore1", "resolvedLinks2", "EZHgvgfA8_default", "resolvedLinks3", "xCt9C3wmQ_default", "pfAmLmNqv_default", "jHn_ViYLF_default", "qwHmfHT0c_default", "css", "FrameraugiA20Il", "withCSS", "augiA20Il_default", "addFonts", "SectionHeaderFonts", "MiscButtonFonts", "CardSkillFonts", "SectionTextTickerFonts", "CardProjectFonts", "SectionTestimonialFonts", "SectionCTAFonts", "SectionSocialFonts", "SectionFooterFonts", "MoreTemplateFonts", "getFontsFromSharedStyle", "fonts", "__FramerMetadata__"]
}
