{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/B2xAlJLcN0gOnt11mSPw/DAWxXDGdC5RJUOPfOsh5/Ticker.js", "ssg:https://framerusercontent.com/modules/B2xAlJLcN0gOnt11mSPw/XVUmpmPn1EPL0dzocT35/Ticker.js", "ssg:https://framerusercontent.com/modules/r5MKcRan4ofuY8Iw2tmN/76CR52ZCjVJ5YQ2RGCyn/s4crczTTv.js", "ssg:https://framerusercontent.com/modules/lt4o6zEtdz5mWgRdivIL/e6YTj5yHyUnE8KrNaBLS/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}from\"framer-motion\";import{resize}from\"@motionone/dom\";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;const numChildren=Children.count(slots);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 = 10\nduplicateBy=numChildren?Math.floor(10/numChildren):0;opacity=1;}if(!isCanvas&&hasChildren&&size.parent){duplicateBy=Math.round(size.parent/size.children*2)+1;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(()=>{measure();return resize(parentRef.current,({contentSize})=>{if(!initialResize.current&&(contentSize.width||contentSize.height)){measure();}initialResize.current=false;});},[]);}clonedChildren=Children.map(slots,(child,index)=>{var ref,ref1,ref2,ref3;let ref4;if(index===0){ref4=childrenRef[0];}if(index===slots.length-1){ref4=childrenRef[1];}const size={width:widthType?(ref=child.props)===null||ref===void 0?void 0:ref.width:\"100%\",height:heightType?(ref1=child.props)===null||ref1===void 0?void 0:ref1.height:\"100%\"};return /*#__PURE__*/ _jsx(LayoutGroup,{inherit:\"id\",children:/*#__PURE__*/ _jsx(\"li\",{ref:ref4,style:size,children:/*#__PURE__*/ cloneElement(child,{style:{...(ref2=child.props)===null||ref2===void 0?void 0:ref2.style,...size,flexShrink:0,...childrenStyles},layoutId:child.props.layoutId?child.props.layoutId+\"-original-\"+index:undefined},(ref3=child.props)===null||ref3===void 0?void 0:ref3.children)})});});}if(!isCanvas){for(let i=0;i<duplicateBy;i++){dupedChildren=[...dupedChildren,...Children.map(slots,(child,childIndex)=>{var ref,ref1,ref2,ref3,ref4,ref5;const size={width:widthType?(ref=child.props)===null||ref===void 0?void 0:ref.width:\"100%\",height:heightType?(ref1=child.props)===null||ref1===void 0?void 0:ref1.height:\"100%\"};return /*#__PURE__*/ _jsx(LayoutGroup,{inherit:\"id\",children:/*#__PURE__*/ _jsx(\"li\",{style:size,\"aria-hidden\":true,children:/*#__PURE__*/ cloneElement(child,{key:i+\" \"+childIndex,style:{...(ref2=child.props)===null||ref2===void 0?void 0:ref2.style,width:widthType?(ref3=child.props)===null||ref3===void 0?void 0:ref3.width:\"100%\",height:heightType?(ref4=child.props)===null||ref4===void 0?void 0:ref4.height:\"100%\",flexShrink:0,...childrenStyles},layoutId:child.props.layoutId?child.props.layoutId+\"-dupe-\"+i:undefined},(ref5=child.props)===null||ref5===void 0?void 0:ref5.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]);}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,transform:supportsAcceleratedAnimations?undefined:transform,willChange:isCanvas?\"auto\":\"transform\"},onMouseEnter:()=>{isHover.current=true;if(animationRef.current){animationRef.current.updatePlaybackRate(hoverFactor);}},onMouseLeave:()=>{isHover.current=false;if(animationRef.current){animationRef.current.updatePlaybackRate(1);}},children:[clonedChildren,dupedChildren]})});};/* Default Properties */ Ticker.defaultProps={gap:10,padding:10,sizingOptions:{widthType:true,heightType:true},fadeOptions:{fadeContent:true,overflow:false,fadeWidth:25,fadeAlpha:0,fadeInset:0},direction:true};/* Property Controls */ addPropertyControls(Ticker,{slots:{type:ControlType.Array,title:\"Children\",control:{type:ControlType.ComponentInstance}},speed:{type:ControlType.Number,title:\"Speed\",min:0,max:1e3,defaultValue:100,unit:\"%\",displayStepper:true,step:5},direction:{type:ControlType.Enum,title:\"Direction\",options:[\"left\",\"right\",\"top\",\"bottom\"],optionIcons:[\"direction-left\",\"direction-right\",\"direction-up\",\"direction-down\",],optionTitles:[\"Left\",\"Right\",\"Top\",\"Bottom\"],defaultValue:\"left\",displaySegmentedControl:true},alignment:{type:ControlType.Enum,title:\"Align\",options:[\"flex-start\",\"center\",\"flex-end\"],optionIcons:{direction:{right:[\"align-top\",\"align-middle\",\"align-bottom\"],left:[\"align-top\",\"align-middle\",\"align-bottom\"],top:[\"align-left\",\"align-center\",\"align-right\"],bottom:[\"align-left\",\"align-center\",\"align-right\"]}},defaultValue:\"center\",displaySegmentedControl:true},gap:{type:ControlType.Number,title:\"Gap\"},padding:{title:\"Padding\",type:ControlType.FusedNumber,toggleKey:\"paddingPerSide\",toggleTitles:[\"Padding\",\"Padding per side\"],valueKeys:[\"paddingTop\",\"paddingRight\",\"paddingBottom\",\"paddingLeft\",],valueLabels:[\"T\",\"R\",\"B\",\"L\"],min:0},sizingOptions:{type:ControlType.Object,title:\"Sizing\",controls:{widthType:{type:ControlType.Boolean,title:\"Width\",enabledTitle:\"Auto\",disabledTitle:\"Stretch\",defaultValue:true},heightType:{type:ControlType.Boolean,title:\"Height\",enabledTitle:\"Auto\",disabledTitle:\"Stretch\",defaultValue:true}}},fadeOptions:{type:ControlType.Object,title:\"Clipping\",controls:{fadeContent:{type:ControlType.Boolean,title:\"Fade\",defaultValue:true},overflow:{type:ControlType.Boolean,title:\"Overflow\",enabledTitle:\"Show\",disabledTitle:\"Hide\",defaultValue:false,hidden(props){return props.fadeContent===true;}},fadeWidth:{type:ControlType.Number,title:\"Width\",defaultValue:25,min:0,max:100,unit:\"%\",hidden(props){return props.fadeContent===false;}},fadeInset:{type:ControlType.Number,title:\"Inset\",defaultValue:0,min:0,max:100,unit:\"%\",hidden(props){return props.fadeContent===false;}},fadeAlpha:{type:ControlType.Number,title:\"Opacity\",defaultValue:0,min:0,max:1,step:.05,hidden(props){return props.fadeContent===false;}}}},hoverFactor:{type:ControlType.Number,title:\"Hover\",min:0,max:1,unit:\"x\",defaultValue:1,step:.1,displayStepper:true,description:\"Slows down the speed while you are hovering.\"}});/* Placeholder Styles */ const containerStyle={display:\"flex\",width:\"100%\",height:\"100%\",maxWidth:\"100%\",maxHeight:\"100%\",placeItems:\"center\",margin:0,padding:0,listStyleType:\"none\",textIndent:\"none\"};/* Styles */ const placeholderStyles={display:\"flex\",width:\"100%\",height:\"100%\",placeContent:\"center\",placeItems:\"center\",flexDirection:\"column\",color:\"#96F\",background:\"rgba(136, 85, 255, 0.1)\",fontSize:11,overflow:\"hidden\",padding:\"20px 20px 30px 20px\"};const emojiStyles={fontSize:32,marginBottom:10};const titleStyles={margin:0,marginBottom:10,fontWeight:600,textAlign:\"center\"};const subtitleStyles={margin:0,opacity:.7,maxWidth:150,lineHeight:1.5,textAlign:\"center\"};/* Clamp function, used for fadeInset */ const clamp=(num,min,max)=>Math.min(Math.max(num,min),max);const isValidNumber=value=>typeof value===\"number\"&&!isNaN(value);\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"Ticker\",\"slots\":[],\"annotations\":{\"framerIntrinsicWidth\":\"400\",\"framerSupportedLayoutHeight\":\"fixed\",\"framerIntrinsicHeight\":\"200\",\"framerSupportedLayoutWidth\":\"fixed\",\"framerDisableUnlink\":\"*\",\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Ticker.map", "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 (38f2e7f)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,getFontsFromSharedStyle,getLoadingLazyAtYPosition,Image,Link,RichText,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import*as sharedStyle1 from\"https://framerusercontent.com/modules/bI0aTUAz6srOK89eq4dC/mvuHzJu0Z41l6JfSFG3O/HMPZmk2XT.js\";import*as sharedStyle from\"https://framerusercontent.com/modules/ZlMoxHnoh4IV34083xBp/ShuNBTuGAM2zwdL0g9FZ/QlmQJT0Th.js\";const enabledGestures={ALh4eQfgH:{hover:true,pressed:true},VcCneQVlN:{pressed:true}};const cycleOrder=[\"ALh4eQfgH\",\"VcCneQVlN\"];const serializationHash=\"framer-2jbaR\";const variantClassNames={ALh4eQfgH:\"framer-v-1noqhew\",VcCneQVlN:\"framer-v-11g98so\"};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 humanReadableVariantMap={Desktop:\"ALh4eQfgH\",Mobile:\"VcCneQVlN\"};const getProps=({height,id,link,price,projectPreviewImage,shortDescription,title,width,...props})=>{var _ref,_ref1,_ref2,_humanReadableVariantMap_props_variant,_ref3;return{...props,bj0wg6YGv:projectPreviewImage!==null&&projectPreviewImage!==void 0?projectPreviewImage:props.bj0wg6YGv,EiE1yD_Wl:link!==null&&link!==void 0?link:props.EiE1yD_Wl,jcCjsQeJ7:(_ref=title!==null&&title!==void 0?title:props.jcCjsQeJ7)!==null&&_ref!==void 0?_ref:\"Rahul Singh\",qLelBQi8a:(_ref1=price!==null&&price!==void 0?price:props.qLelBQi8a)!==null&&_ref1!==void 0?_ref1:\"price\",T0HtJ5NW2:(_ref2=shortDescription!==null&&shortDescription!==void 0?shortDescription:props.T0HtJ5NW2)!==null&&_ref2!==void 0?_ref2:\"My personal portfolio website.\",variant:(_ref3=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref3!==void 0?_ref3:\"ALh4eQfgH\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,bj0wg6YGv,jcCjsQeJ7,T0HtJ5NW2,EiE1yD_Wl,qLelBQi8a,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"ALh4eQfgH\",enabledGestures,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const ref1=React.useRef(null);const defaultLayoutId=React.useId();const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.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:EiE1yD_Wl,openInNewTab:false,children:/*#__PURE__*/_jsxs(motion.a,{...restProps,...gestureHandlers,className:`${cx(serializationHash,...sharedStyleClassNames,\"framer-1noqhew\",className,classNames)} framer-ezmgn5`,\"data-border\":true,\"data-framer-name\":\"Desktop\",layoutDependency:layoutDependency,layoutId:\"ALh4eQfgH\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{\"--border-bottom-width\":\"2px\",\"--border-color\":\"var(--token-1e4b35c8-3df2-4b64-ae09-ade7c2f99c12, rgb(255, 255, 255))\",\"--border-left-width\":\"2px\",\"--border-right-width\":\"2px\",\"--border-style\":\"solid\",\"--border-top-width\":\"2px\",backgroundColor:\"var(--token-f30d6f7f-2379-46c5-97bb-1f410779487a, rgba(0, 0, 0, 0.04))\",opacity:1,...style},variants:{\"VcCneQVlN-pressed\":{opacity:.64}},...addPropertyOverrides({\"ALh4eQfgH-hover\":{\"data-framer-name\":undefined},\"ALh4eQfgH-pressed\":{\"data-framer-name\":undefined},\"VcCneQVlN-pressed\":{\"data-framer-name\":undefined},VcCneQVlN:{\"data-framer-name\":\"Mobile\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-n5tz6p\",layoutDependency:layoutDependency,layoutId:\"clhYNaecq\",style:{backgroundColor:\"var(--token-2a6b4d49-3c37-4fb6-bf0b-df696c9e415f, rgba(0, 0, 0, 0.04))\",opacity:0},variants:{\"ALh4eQfgH-hover\":{opacity:1},\"ALh4eQfgH-pressed\":{opacity:1}}}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+(8+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||202)-16-186)/2)),sizes:\"248px\",...toResponsiveImage(bj0wg6YGv)},className:\"framer-fw8lr0\",\"data-framer-name\":\"Project Preview Image\",layoutDependency:layoutDependency,layoutId:\"WEY4iUM5B\",...addPropertyOverrides({VcCneQVlN:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+16+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||263.5)-32-315.4)/2+0+0)),sizes:`calc(${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} - 32px)`,...toResponsiveImage(bj0wg6YGv)}}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-nxt4z6\",\"data-framer-name\":\"Post\",layoutDependency:layoutDependency,layoutId:\"K6xnuOBcq\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-mideme\",\"data-framer-name\":\"Title Wrapper\",layoutDependency:layoutDependency,layoutId:\"PXyRJKTNK\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h3,{className:\"framer-styles-preset-1ar20st\",\"data-styles-preset\":\"QlmQJT0Th\",children:\"Rahul Singh\"})}),className:\"framer-laplqn\",\"data-framer-name\":\"Title\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"e2q3VC6Tc\",text:jcCjsQeJ7,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h3,{className:\"framer-styles-preset-1ar20st\",\"data-styles-preset\":\"QlmQJT0Th\",children:\"price\"})}),className:\"framer-z9x5be\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"kwrwfBScm\",style:{\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},text:qLelBQi8a,verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-14m57q1\",\"data-styles-preset\":\"HMPZmk2XT\",children:\"My personal portfolio website.\"})}),className:\"framer-tct61s\",\"data-framer-name\":\"Short Description\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"DIEAZzpCU\",text:T0HtJ5NW2,verticalAlignment:\"top\",withExternalLayout:true})]})]})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-2jbaR.framer-ezmgn5, .framer-2jbaR .framer-ezmgn5 { display: block; }\",\".framer-2jbaR.framer-1noqhew { align-content: center; align-items: center; cursor: pointer; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; padding: 8px; position: relative; text-decoration: none; width: 648px; }\",\".framer-2jbaR .framer-n5tz6p { bottom: 0px; flex: none; left: 0px; overflow: visible; position: absolute; top: 0px; width: 2px; z-index: 1; }\",\".framer-2jbaR .framer-fw8lr0 { flex: none; height: 186px; overflow: hidden; position: relative; width: 248px; }\",\".framer-2jbaR .framer-nxt4z6 { align-content: flex-start; align-items: flex-start; align-self: stretch; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: auto; justify-content: flex-start; padding: 24px 32px 24px 32px; position: relative; width: 1px; }\",\".framer-2jbaR .framer-mideme { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; height: min-content; justify-content: space-around; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-2jbaR .framer-laplqn { flex: 1 0 0px; height: auto; overflow: hidden; position: relative; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; }\",\".framer-2jbaR .framer-z9x5be { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-2jbaR .framer-tct61s { flex: none; height: auto; overflow: hidden; position: relative; white-space: pre-wrap; width: 320px; word-break: break-word; word-wrap: break-word; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-2jbaR.framer-1noqhew, .framer-2jbaR .framer-nxt4z6 { gap: 0px; } .framer-2jbaR.framer-1noqhew > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } .framer-2jbaR.framer-1noqhew > :first-child { margin-left: 0px; } .framer-2jbaR.framer-1noqhew > :last-child { margin-right: 0px; } .framer-2jbaR .framer-nxt4z6 > * { margin: 0px; margin-bottom: calc(16px / 2); margin-top: calc(16px / 2); } .framer-2jbaR .framer-nxt4z6 > :first-child { margin-top: 0px; } .framer-2jbaR .framer-nxt4z6 > :last-child { margin-bottom: 0px; } }\",\".framer-2jbaR.framer-v-11g98so.framer-1noqhew { flex-direction: column; gap: 16px; padding: 16px; width: 288px; }\",\".framer-2jbaR.framer-v-11g98so .framer-n5tz6p { bottom: 271px; width: 288px; }\",\".framer-2jbaR.framer-v-11g98so .framer-fw8lr0 { height: 160px; width: 100%; }\",\".framer-2jbaR.framer-v-11g98so .framer-nxt4z6 { align-self: unset; flex: none; gap: 12px; height: min-content; padding: 0px; width: 100%; }\",\".framer-2jbaR.framer-v-11g98so .framer-tct61s { width: 100%; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-2jbaR.framer-v-11g98so.framer-1noqhew, .framer-2jbaR.framer-v-11g98so .framer-nxt4z6 { gap: 0px; } .framer-2jbaR.framer-v-11g98so.framer-1noqhew > * { margin: 0px; margin-bottom: calc(16px / 2); margin-top: calc(16px / 2); } .framer-2jbaR.framer-v-11g98so.framer-1noqhew > :first-child, .framer-2jbaR.framer-v-11g98so .framer-nxt4z6 > :first-child { margin-top: 0px; } .framer-2jbaR.framer-v-11g98so.framer-1noqhew > :last-child, .framer-2jbaR.framer-v-11g98so .framer-nxt4z6 > :last-child { margin-bottom: 0px; } .framer-2jbaR.framer-v-11g98so .framer-nxt4z6 > * { margin: 0px; margin-bottom: calc(12px / 2); margin-top: calc(12px / 2); } }\",\".framer-2jbaR.framer-v-1noqhew.hover .framer-n5tz6p, .framer-2jbaR.framer-v-1noqhew.pressed .framer-n5tz6p { right: 0px; width: unset; }\",\".framer-2jbaR.framer-v-11g98so.pressed .framer-n5tz6p { bottom: 0px; }\",\".framer-2jbaR.framer-v-11g98so.pressed .framer-nxt4z6 { align-self: unset; }\",...sharedStyle.css,...sharedStyle1.css,'.framer-2jbaR[data-border=\"true\"]::after, .framer-2jbaR [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 202\n * @framerIntrinsicWidth 648\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"VcCneQVlN\":{\"layout\":[\"fixed\",\"auto\"]},\"r8ycCvX1w\":{\"layout\":[\"fixed\",\"auto\"]},\"Ii6pVDfD7\":{\"layout\":[\"fixed\",\"auto\"]},\"aRH4t7rzQ\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerVariables {\"bj0wg6YGv\":\"projectPreviewImage\",\"jcCjsQeJ7\":\"title\",\"T0HtJ5NW2\":\"shortDescription\",\"EiE1yD_Wl\":\"link\",\"qLelBQi8a\":\"price\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const Framers4crczTTv=withCSS(Component,css,\"framer-2jbaR\");export default Framers4crczTTv;Framers4crczTTv.displayName=\"Services-card\";Framers4crczTTv.defaultProps={height:202,width:648};addPropertyControls(Framers4crczTTv,{variant:{options:[\"ALh4eQfgH\",\"VcCneQVlN\"],optionTitles:[\"Desktop\",\"Mobile\"],title:\"Variant\",type:ControlType.Enum},bj0wg6YGv:{title:\"Project Preview Image\",type:ControlType.ResponsiveImage},jcCjsQeJ7:{defaultValue:\"Rahul Singh\",title:\"Title\",type:ControlType.String},T0HtJ5NW2:{defaultValue:\"My personal portfolio website.\",title:\"Short Description\",type:ControlType.String},EiE1yD_Wl:{title:\"Link\",type:ControlType.Link},qLelBQi8a:{defaultValue:\"price\",displayTextArea:false,title:\"Price\",type:ControlType.String}});addFonts(Framers4crczTTv,[{explicitInter:true,fonts:[{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/5vvr9Vy74if2I6bQbJvbw7SY1pQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/EOr0mi4hNtlgWNn9if640EZzXCo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Y9k9QrlZAqio88Klkmbd8VoMQc.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/OYrD2tBIBPvoJXiIHnLoOXnY9M.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/JeYwfuaPfZHQhEG8U5gtPDZ7WQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/vQyevYAyHtARFwPqUzQGpnDs.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/b6Y37FthZeALduNqHicBT6FutY.woff2\",weight:\"400\"}]},...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"Framers4crczTTv\",\"slots\":[],\"annotations\":{\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"VcCneQVlN\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"r8ycCvX1w\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"Ii6pVDfD7\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"aRH4t7rzQ\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerIntrinsicHeight\":\"202\",\"framerImmutableVariables\":\"true\",\"framerVariables\":\"{\\\"bj0wg6YGv\\\":\\\"projectPreviewImage\\\",\\\"jcCjsQeJ7\\\":\\\"title\\\",\\\"T0HtJ5NW2\\\":\\\"shortDescription\\\",\\\"EiE1yD_Wl\\\":\\\"link\\\",\\\"qLelBQi8a\\\":\\\"price\\\"}\",\"framerComponentViewportWidth\":\"true\",\"framerContractVersion\":\"1\",\"framerDisplayContentsDiv\":\"false\",\"framerIntrinsicWidth\":\"648\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (03f754e)\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,SVG,useCustomCursors,useHydratedBreakpointVariants,useLocaleCode,useLocaleInfo,useQueryData,useRouter,withCSS,withFX}from\"framer\";import{LayoutGroup,motion}from\"framer-motion\";import*as React from\"react\";import Ticker1 from\"https://framerusercontent.com/modules/B2xAlJLcN0gOnt11mSPw/DAWxXDGdC5RJUOPfOsh5/Ticker.js\";import Ticker2 from\"https://framerusercontent.com/modules/B2xAlJLcN0gOnt11mSPw/nFAy8p4fOASsyhPbo192/Ticker.js\";import Ticker from\"https://framerusercontent.com/modules/B2xAlJLcN0gOnt11mSPw/XVUmpmPn1EPL0dzocT35/Ticker.js\";import Footer from\"#framer/local/canvasComponent/A3yVEqQSs/A3yVEqQSs.js\";import Sidebar from\"#framer/local/canvasComponent/l7oCs5ans/l7oCs5ans.js\";import CardH from\"#framer/local/canvasComponent/m8Yaz1hmt/m8Yaz1hmt.js\";import Button from\"#framer/local/canvasComponent/RvhUZisE6/RvhUZisE6.js\";import ServicesCard from\"#framer/local/canvasComponent/s4crczTTv/s4crczTTv.js\";import CustomCursor from\"#framer/local/canvasComponent/UVdzljFWb/UVdzljFWb.js\";import StackWrapper from\"#framer/local/canvasComponent/wWl_ma3ns/wWl_ma3ns.js\";import Thoughts from\"#framer/local/collection/eWPftKzYq/eWPftKzYq.js\";import Work from\"#framer/local/collection/GYj1WJbhc/GYj1WJbhc.js\";import*as sharedStyle from\"#framer/local/css/B9c7rYT59/B9c7rYT59.js\";import*as sharedStyle2 from\"#framer/local/css/EpkzZxZuD/EpkzZxZuD.js\";import*as sharedStyle3 from\"#framer/local/css/HMPZmk2XT/HMPZmk2XT.js\";import*as sharedStyle1 from\"#framer/local/css/jW9uD36Q5/jW9uD36Q5.js\";import*as sharedStyle4 from\"#framer/local/css/QlmQJT0Th/QlmQJT0Th.js\";import*as sharedStyle5 from\"#framer/local/css/v_YMdc8mT/v_YMdc8mT.js\";import metadataProvider from\"#framer/local/webPageMetadata/augiA20Il/augiA20Il.js\";const SidebarFonts=getFonts(Sidebar);const ButtonFonts=getFonts(Button);const TickerFonts=getFonts(Ticker);const CardHFonts=getFonts(CardH);const ServicesCardFonts=getFonts(ServicesCard);const StackWrapperFonts=getFonts(StackWrapper);const Ticker1Fonts=getFonts(Ticker1);const MotionDivWithFX=withFX(motion.div);const Ticker2Fonts=getFonts(Ticker2);const ContainerWithFX=withFX(Container);const FooterFonts=getFonts(Footer);const CustomCursorFonts=getFonts(CustomCursor);const breakpoints={ktG0_V6dQ:\"(max-width: 809px)\",tz_z8IfXN:\"(min-width: 1920px)\",WQLkyLRf1:\"(min-width: 1280px) and (max-width: 1919px)\",Wvytas2Bl:\"(min-width: 810px) and (max-width: 1279px)\"};const isBrowser=()=>typeof document!==\"undefined\";const serializationHash=\"framer-r9IQX\";const variantClassNames={ktG0_V6dQ:\"framer-v-1gqqxeh\",tz_z8IfXN:\"framer-v-1qg8say\",WQLkyLRf1:\"framer-v-72rtr7\",Wvytas2Bl:\"framer-v-ya25v0\"};const transition1={bounce:.2,delay:0,duration:.3,type:\"spring\"};const transition2={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const animation={opacity:1,rotate:0,rotateX:10,rotateY:10,scale:.9,skewX:0,skewY:0,transition:transition2};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,pageSize,children})=>{const data=useQueryData(query);return children(data);};const addImageAlt=(image,alt)=>{if(!image||typeof image!==\"object\"){return;}return{...image,alt};};const toDateString=(value,options={},activeLocale)=>{if(typeof value!==\"string\")return\"\";const date=new Date(value);if(isNaN(date.getTime()))return\"\";const display=options.display?options.display:\"date\";const dateOptions={dateStyle:display!==\"time\"?options.dateStyle:undefined,timeStyle:display===\"date\"?undefined:\"short\",timeZone:\"UTC\"};const fallbackLocale=\"en-US\";const locale=options.locale||activeLocale||fallbackLocale;// We add a try block because an invalid language code results in a crash\ntry{return date.toLocaleString(locale,dateOptions);}catch{return date.toLocaleString(fallbackLocale,dateOptions);}};const animation1={opacity:0,rotate:10,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:2700,x:0,y:40};const transition3={damping:40,delay:.2,mass:5,stiffness:100,type:\"spring\"};const animation2={opacity:0,rotate:10,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:2700,transition:transition3,x:0,y:40};const animation3={opacity:0,rotate:0,rotateX:20,rotateY:20,scale:.9,skewX:0,skewY:0,transformPerspective:1200,x:0,y:80};const transition4={delay:.3,duration:1.6,ease:[.16,1,.3,1],type:\"tween\"};const metadata=metadataProvider();const humanReadableVariantMap={Desktop:\"WQLkyLRf1\",Large:\"tz_z8IfXN\",Phone:\"ktG0_V6dQ\",Tablet:\"Wvytas2Bl\"};const getProps=({height,id,width,...props})=>{var _humanReadableVariantMap_props_variant,_ref;return{...props,variant:(_ref=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref!==void 0?_ref:\"WQLkyLRf1\"};};const cursor={component:CustomCursor,transition:transition1,variant:\"HMnIuvQun\"};const cursor1={component:CustomCursor,transition:transition2,variant:\"X4UUkROpz\"};const cursor2={component:CustomCursor,variant:\"X4UUkROpz\"};const cursor3={component:CustomCursor,transition:transition1,variant:\"X4UUkROpz\"};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,cht8PRz9imhf9XmSZf,WwaxenelQmhf9XmSZf,gqM1hfUuwmhf9XmSZf,FNS_zRx83mhf9XmSZf,idmhf9XmSZf,fdG4GYDIjvKaM0CT5s,IHMueYSV3vKaM0CT5s,MwPMDz_IxvKaM0CT5s,CaopO2qKzvKaM0CT5s,idvKaM0CT5s,...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-r9IQX`);}return()=>{if(bodyCls)document.body.classList.remove(`${metadata1.bodyClassName}-framer-r9IQX`);};},[undefined,activeLocale]);const[baseVariant,hydratedBaseVariant]=useHydratedBreakpointVariants(variant,breakpoints,false);const gestureVariant=undefined;const ref1=React.useRef(null);const router=useRouter();const activeLocaleCode=useLocaleCode();const defaultLayoutId=React.useId();const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className,sharedStyle2.className,sharedStyle3.className,sharedStyle4.className,sharedStyle5.className];useCustomCursors({\"16h8hmo\":cursor3,\"1cffxv8\":cursor1,lg4vri:cursor,twuhva:cursor2});return /*#__PURE__*/_jsx(GeneratedComponentContext.Provider,{value:{primaryVariantId:\"WQLkyLRf1\",variantClassNames},children:/*#__PURE__*/_jsxs(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:[/*#__PURE__*/_jsxs(motion.div,{...restProps,className:cx(serializationHash,...sharedStyleClassNames,\"framer-72rtr7\",className),\"data-framer-cursor\":\"lg4vri\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{...style},children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ktG0_V6dQ:{width:\"100vw\"}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:800,width:\"300px\",y:0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1y0flf7-container\",layoutScroll:true,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ktG0_V6dQ:{qF02_pyoN:undefined,style:{width:\"100%\"},variant:\"y34RTZOEA\"}},children:/*#__PURE__*/_jsx(Sidebar,{height:\"100%\",id:\"FPwbnO1bA\",layoutId:\"FPwbnO1bA\",qF02_pyoN:\"1cffxv8\",style:{height:\"100%\",width:\"100%\"},variant:\"K6chWOE4A\",width:\"100%\"})})})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-5hqyv0\",\"data-framer-name\":\"Container\",name:\"Container\",children:[/*#__PURE__*/_jsxs(\"header\",{className:\"framer-1gubvdq\",\"data-framer-name\":\"Header\",name:\"Header\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{className:\"framer-styles-preset-1nu80iw\",\"data-styles-preset\":\"B9c7rYT59\",children:\"Hello, I'm Phil\"})}),className:\"framer-zw86nc\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-113y0sj\",\"data-styles-preset\":\"jW9uD36Q5\",children:\"\uD83D\uDC4B An imaginative spirit not versed in technology, but proficient in digital marketing. I trust in the potency of innovation to drive progress.\"})}),className:\"framer-j4azli\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"bnY5Mf4dE\"},implicitPathVariables:undefined},{href:{webPageId:\"bnY5Mf4dE\"},implicitPathVariables:undefined},{href:{webPageId:\"bnY5Mf4dE\"},implicitPathVariables:undefined},{href:{webPageId:\"bnY5Mf4dE\"},implicitPathVariables:undefined}],children:resolvedLinks=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ktG0_V6dQ:{y:370.3}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:55,y:310.3,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1v29506-container\",\"data-framer-cursor\":\"twuhva\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ktG0_V6dQ:{lDJcfhbvx:resolvedLinks[1]},tz_z8IfXN:{lDJcfhbvx:resolvedLinks[3]},Wvytas2Bl:{lDJcfhbvx:resolvedLinks[2]}},children:/*#__PURE__*/_jsx(Button,{gmFFlfi2n:\"Contact me\",height:\"100%\",id:\"U3rU3gtr_\",layoutId:\"U3rU3gtr_\",lDJcfhbvx:resolvedLinks[0],v_4LdZj1L:false,variant:\"djE6vJFuF\",width:\"100%\"})})})})})})]}),/*#__PURE__*/_jsxs(\"header\",{className:\"framer-xuyiv6\",\"data-framer-name\":\"Expertise\",name:\"Expertise\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-13ctzj0\",\"data-styles-preset\":\"EpkzZxZuD\",children:\"Expertise\"})}),className:\"framer-6nywt9\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-113y0sj\",\"data-styles-preset\":\"jW9uD36Q5\",children:\"I genuinely delight in my profession and can guarantee that you can depend on my proficiency. Whatever I vow, I will accomplish with extreme devotion and pledge. What's holding you back? Got a project idea. Simply send an email!\"})}),className:\"framer-1xuh1fa\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-of5mif\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1f78zsg-container\",children:/*#__PURE__*/_jsx(Ticker,{alignment:\"center\",direction:\"left\",fadeOptions:{fadeAlpha:0,fadeContent:true,fadeInset:0,fadeWidth:25,overflow:false},gap:10,height:\"100%\",hoverFactor:.08,id:\"TNhNv6Thg\",layoutId:\"TNhNv6Thg\",padding:10,paddingBottom:10,paddingLeft:10,paddingPerSide:false,paddingRight:10,paddingTop:10,sizingOptions:{heightType:true,widthType:true},slots:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1qclv10\",\"data-framer-name\":\"Web design\",name:\"Web design\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-1qfanar\",\"data-framer-name\":\"graphic\",layout:\"position\",name:\"graphic\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 20 20\"><path d=\"M 4.167 17.5 C 3.708 17.5 3.316 17.337 2.99 17.01 C 2.663 16.684 2.5 16.292 2.5 15.833 L 2.5 4.167 C 2.5 3.708 2.663 3.316 2.99 2.99 C 3.316 2.663 3.708 2.5 4.167 2.5 L 15.833 2.5 C 16.292 2.5 16.684 2.663 17.01 2.99 C 17.337 3.316 17.5 3.708 17.5 4.167 L 17.5 15.833 C 17.5 16.292 17.337 16.684 17.01 17.01 C 16.684 17.337 16.292 17.5 15.833 17.5 Z M 10 15.833 L 15.833 15.833 L 15.833 4.167 L 10 4.167 Z\" fill=\"var(--token-dd4eaff8-62bd-41a8-b689-24e33e08207a, rgba(255, 255, 255, 0.6)) /* {&quot;name&quot;:&quot;Paragraph&quot;} */\"></path></svg>',svgContentId:10660080362,withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-14m57q1\",\"data-styles-preset\":\"HMPZmk2XT\",children:\"Web design\"})}),className:\"framer-4k2b7a\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-text-color\":\"var(--token-dd4eaff8-62bd-41a8-b689-24e33e08207a, rgba(255, 255, 255, 0.6))\"},children:\"|\"})}),className:\"framer-skdymy\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1stg6aa\",\"data-framer-name\":\"Marketing\",name:\"Marketing\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-1jk1yi5\",\"data-framer-name\":\"graphic\",layout:\"position\",name:\"graphic\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 20 20\"><path d=\"M 15 10.833 L 15 9.167 L 18.333 9.167 L 18.333 10.833 Z M 16 16.667 L 13.333 14.667 L 14.333 13.333 L 17 15.333 Z M 14.333 6.667 L 13.333 5.333 L 16 3.333 L 17 4.667 Z M 4.167 15.833 L 4.167 12.5 L 3.333 12.5 C 2.875 12.5 2.483 12.337 2.156 12.01 C 1.83 11.684 1.667 11.292 1.667 10.833 L 1.667 9.167 C 1.667 8.708 1.83 8.316 2.156 7.99 C 2.483 7.663 2.875 7.5 3.333 7.5 L 6.667 7.5 L 10.833 5 L 10.833 15 L 6.667 12.5 L 5.833 12.5 L 5.833 15.833 Z M 9.167 12.042 L 9.167 7.958 L 7.125 9.167 L 3.333 9.167 L 3.333 10.833 L 7.125 10.833 Z M 11.667 12.792 L 11.667 7.208 C 12.042 7.542 12.344 7.948 12.573 8.427 C 12.802 8.906 12.917 9.431 12.917 10 C 12.917 10.569 12.802 11.094 12.573 11.573 C 12.344 12.052 12.042 12.458 11.667 12.792 Z M 6.25 10\" fill=\"var(--token-dd4eaff8-62bd-41a8-b689-24e33e08207a, rgba(255, 255, 255, 0.6)) /* {&quot;name&quot;:&quot;Paragraph&quot;} */\"></path></svg>',svgContentId:11282823636,withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-14m57q1\",\"data-styles-preset\":\"HMPZmk2XT\",children:\"Marketing\"})}),className:\"framer-1nugiom\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-text-color\":\"var(--token-dd4eaff8-62bd-41a8-b689-24e33e08207a, rgba(255, 255, 255, 0.6))\"},children:\"|\"})}),className:\"framer-vtk2pg\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-xvhmvb\",\"data-framer-name\":\"Consulting\",name:\"Consulting\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-zra1wf\",\"data-framer-name\":\"graphic\",layout:\"position\",name:\"graphic\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 20 20\"><path d=\"M 9.896 16.667 C 9.951 16.667 10.007 16.653 10.062 16.625 C 10.118 16.597 10.16 16.569 10.187 16.542 L 17.021 9.708 C 17.187 9.542 17.309 9.354 17.385 9.146 C 17.462 8.937 17.5 8.729 17.5 8.521 C 17.5 8.299 17.462 8.087 17.385 7.885 C 17.309 7.684 17.187 7.507 17.021 7.354 L 13.479 3.812 C 13.326 3.646 13.149 3.524 12.948 3.448 C 12.747 3.372 12.535 3.333 12.312 3.333 C 12.104 3.333 11.896 3.372 11.687 3.448 C 11.479 3.524 11.292 3.646 11.125 3.812 L 10.896 4.042 L 12.437 5.604 C 12.646 5.799 12.799 6.021 12.896 6.271 C 12.993 6.521 13.042 6.785 13.042 7.062 C 13.042 7.646 12.844 8.135 12.448 8.531 C 12.052 8.927 11.562 9.125 10.979 9.125 C 10.701 9.125 10.434 9.076 10.177 8.979 C 9.92 8.882 9.694 8.736 9.5 8.542 L 7.937 7 L 4.292 10.646 C 4.25 10.687 4.219 10.733 4.198 10.781 C 4.177 10.83 4.167 10.882 4.167 10.937 C 4.167 11.049 4.208 11.149 4.292 11.24 C 4.375 11.33 4.472 11.375 4.583 11.375 C 4.639 11.375 4.694 11.361 4.75 11.333 C 4.806 11.306 4.847 11.278 4.875 11.25 L 7.708 8.417 L 8.875 9.583 L 6.062 12.417 C 6.021 12.458 5.99 12.503 5.969 12.552 C 5.948 12.601 5.937 12.653 5.937 12.708 C 5.937 12.819 5.979 12.917 6.062 13 C 6.146 13.083 6.243 13.125 6.354 13.125 C 6.41 13.125 6.465 13.111 6.521 13.083 C 6.576 13.056 6.618 13.028 6.646 13 L 9.479 10.187 L 10.646 11.354 L 7.833 14.187 C 7.792 14.215 7.76 14.257 7.74 14.312 C 7.719 14.368 7.708 14.424 7.708 14.479 C 7.708 14.59 7.75 14.687 7.833 14.771 C 7.917 14.854 8.014 14.896 8.125 14.896 C 8.181 14.896 8.233 14.885 8.281 14.865 C 8.33 14.844 8.375 14.812 8.417 14.771 L 11.25 11.958 L 12.417 13.125 L 9.583 15.958 C 9.542 16 9.51 16.045 9.49 16.094 C 9.469 16.142 9.458 16.194 9.458 16.25 C 9.458 16.361 9.503 16.458 9.594 16.542 C 9.684 16.625 9.785 16.667 9.896 16.667 Z M 9.875 18.333 C 9.361 18.333 8.906 18.163 8.51 17.823 C 8.115 17.483 7.882 17.056 7.812 16.542 C 7.34 16.472 6.944 16.278 6.625 15.958 C 6.306 15.639 6.111 15.243 6.042 14.771 C 5.569 14.701 5.177 14.503 4.865 14.177 C 4.552 13.851 4.361 13.458 4.292 13 C 3.764 12.931 3.333 12.701 3 12.313 C 2.667 11.924 2.5 11.465 2.5 10.938 C 2.5 10.66 2.552 10.392 2.656 10.135 C 2.76 9.878 2.91 9.653 3.104 9.458 L 7.937 4.646 L 10.667 7.375 C 10.694 7.417 10.736 7.448 10.792 7.469 C 10.847 7.49 10.903 7.5 10.958 7.5 C 11.083 7.5 11.187 7.462 11.271 7.385 C 11.354 7.309 11.396 7.208 11.396 7.083 C 11.396 7.028 11.385 6.972 11.365 6.917 C 11.344 6.861 11.312 6.819 11.271 6.792 L 8.292 3.813 C 8.139 3.646 7.962 3.524 7.76 3.448 C 7.559 3.372 7.347 3.333 7.125 3.333 C 6.917 3.333 6.708 3.372 6.5 3.448 C 6.292 3.524 6.104 3.646 5.937 3.813 L 3 6.771 C 2.875 6.896 2.771 7.042 2.687 7.208 C 2.604 7.375 2.549 7.542 2.521 7.708 C 2.493 7.875 2.493 8.045 2.521 8.219 C 2.549 8.392 2.604 8.556 2.687 8.708 L 1.479 9.917 C 1.243 9.597 1.069 9.247 0.958 8.865 C 0.847 8.483 0.806 8.097 0.833 7.708 C 0.861 7.319 0.958 6.941 1.125 6.573 C 1.292 6.205 1.521 5.875 1.812 5.583 L 4.75 2.646 C 5.083 2.326 5.455 2.083 5.865 1.917 C 6.274 1.75 6.694 1.667 7.125 1.667 C 7.556 1.667 7.976 1.75 8.385 1.917 C 8.795 2.083 9.16 2.326 9.479 2.646 L 9.708 2.875 L 9.937 2.646 C 10.271 2.326 10.642 2.083 11.052 1.917 C 11.462 1.75 11.882 1.667 12.312 1.667 C 12.743 1.667 13.163 1.75 13.573 1.917 C 13.983 2.083 14.347 2.326 14.667 2.646 L 18.187 6.167 C 18.507 6.486 18.75 6.854 18.917 7.271 C 19.083 7.688 19.167 8.111 19.167 8.542 C 19.167 8.972 19.083 9.392 18.917 9.802 C 18.75 10.212 18.507 10.576 18.187 10.896 L 11.354 17.708 C 11.16 17.903 10.934 18.056 10.677 18.167 C 10.42 18.278 10.153 18.333 9.875 18.333 Z M 7.813 6.667 Z\" fill=\"var(--token-dd4eaff8-62bd-41a8-b689-24e33e08207a, rgba(255, 255, 255, 0.6)) /* {&quot;name&quot;:&quot;Paragraph&quot;} */\"></path></svg>',svgContentId:11661562726,withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-14m57q1\",\"data-styles-preset\":\"HMPZmk2XT\",children:\"Consulting\"})}),className:\"framer-if0rt2\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-text-color\":\"var(--token-dd4eaff8-62bd-41a8-b689-24e33e08207a, rgba(255, 255, 255, 0.6))\"},children:\"|\"})}),className:\"framer-12tyq8t\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})],speed:25,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1b85jzj\",\"data-framer-name\":\"Work\",name:\"Work\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-13ctzj0\",\"data-styles-preset\":\"EpkzZxZuD\",children:\"Work\"})}),className:\"framer-wguzp8\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-113y0sj\",\"data-styles-preset\":\"jW9uD36Q5\",children:\"Just finished projects for clients and several side tasks.\"})}),className:\"framer-fvuobg\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1gay180\",\"data-framer-name\":\"Work List\",name:\"Work List\",children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(QueryData,{query:{from:{alias:\"mhf9XmSZf\",data:Work,type:\"Collection\"},limit:{type:\"LiteralValue\",value:3},select:[{collection:\"mhf9XmSZf\",name:\"cht8PRz9i\",type:\"Identifier\"},{collection:\"mhf9XmSZf\",name:\"WwaxenelQ\",type:\"Identifier\"},{collection:\"mhf9XmSZf\",name:\"gqM1hfUuw\",type:\"Identifier\"},{collection:\"mhf9XmSZf\",name:\"FNS_zRx83\",type:\"Identifier\"},{collection:\"mhf9XmSZf\",name:\"id\",type:\"Identifier\"}]},children:(collection,paginationInfo,loadMore)=>/*#__PURE__*/_jsx(_Fragment,{children:collection.map(({\"cht8PRz9i\":cht8PRz9imhf9XmSZf,\"WwaxenelQ\":WwaxenelQmhf9XmSZf,\"gqM1hfUuw\":gqM1hfUuwmhf9XmSZf,\"FNS_zRx83\":FNS_zRx83mhf9XmSZf,\"id\":idmhf9XmSZf},i)=>{WwaxenelQmhf9XmSZf!==null&&WwaxenelQmhf9XmSZf!==void 0?WwaxenelQmhf9XmSZf:WwaxenelQmhf9XmSZf=\"\";gqM1hfUuwmhf9XmSZf!==null&&gqM1hfUuwmhf9XmSZf!==void 0?gqM1hfUuwmhf9XmSZf:gqM1hfUuwmhf9XmSZf=\"\";FNS_zRx83mhf9XmSZf!==null&&FNS_zRx83mhf9XmSZf!==void 0?FNS_zRx83mhf9XmSZf:FNS_zRx83mhf9XmSZf=\"\";return /*#__PURE__*/_jsx(LayoutGroup,{id:`mhf9XmSZf-${idmhf9XmSZf}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{FNS_zRx83:FNS_zRx83mhf9XmSZf},children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-ueihjw\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-1p5b5q1\",\"data-framer-name\":\"Work container\",name:\"Work container\",children:/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{pathVariables:{FNS_zRx83:FNS_zRx83mhf9XmSZf},webPageId:\"LGLXcPKTP\"},implicitPathVariables:undefined},{href:{pathVariables:{FNS_zRx83:FNS_zRx83mhf9XmSZf},webPageId:\"LGLXcPKTP\"},implicitPathVariables:undefined},{href:{pathVariables:{FNS_zRx83:FNS_zRx83mhf9XmSZf},webPageId:\"LGLXcPKTP\"},implicitPathVariables:undefined},{href:{pathVariables:{FNS_zRx83:FNS_zRx83mhf9XmSZf},webPageId:\"LGLXcPKTP\"},implicitPathVariables:undefined}],children:resolvedLinks1=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ktG0_V6dQ:{width:\"max(min(680px, 100vw), 1px)\",y:2099.8},Wvytas2Bl:{width:\"max(min(680px, min(100vw - 360px, 100vw)) - 40px, 1px)\"}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:202,width:\"max(min(680px, min(100vw - 400px, 100vw)) - 40px, 1px)\",y:1576.3,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1lx2uzc-container\",\"data-framer-cursor\":\"16h8hmo\",whileTap:animation,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ktG0_V6dQ:{EiE1yD_Wl:resolvedLinks1[1],variant:\"vG06NdEH3\"},tz_z8IfXN:{EiE1yD_Wl:resolvedLinks1[3]},Wvytas2Bl:{EiE1yD_Wl:resolvedLinks1[2],variant:\"vG06NdEH3\"}},children:/*#__PURE__*/_jsx(CardH,{bj0wg6YGv:toResponsiveImage(cht8PRz9imhf9XmSZf),EiE1yD_Wl:resolvedLinks1[0],height:\"100%\",id:\"pVuzXcK3S\",jcCjsQeJ7:WwaxenelQmhf9XmSZf,layoutId:\"pVuzXcK3S\",style:{width:\"100%\"},T0HtJ5NW2:gqM1hfUuwmhf9XmSZf,variant:\"UfinGAp5O\",width:\"100%\"})})})})})})})})})},idmhf9XmSZf);})})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"RRSHmnWXr\"},implicitPathVariables:undefined},{href:{webPageId:\"RRSHmnWXr\"},implicitPathVariables:undefined},{href:{webPageId:\"RRSHmnWXr\"},implicitPathVariables:undefined},{href:{webPageId:\"RRSHmnWXr\"},implicitPathVariables:undefined}],children:resolvedLinks2=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ktG0_V6dQ:{y:2321.8}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:55,y:1798.3,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1xopu3q-container\",\"data-framer-cursor\":\"16h8hmo\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ktG0_V6dQ:{lDJcfhbvx:resolvedLinks2[1]},tz_z8IfXN:{lDJcfhbvx:resolvedLinks2[3]},Wvytas2Bl:{lDJcfhbvx:resolvedLinks2[2]}},children:/*#__PURE__*/_jsx(Button,{gmFFlfi2n:\"Go to all work\",height:\"100%\",id:\"wTd_XBBr6\",layoutId:\"wTd_XBBr6\",lDJcfhbvx:resolvedLinks2[0],v_4LdZj1L:false,variant:\"djE6vJFuF\",width:\"100%\"})})})})})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1pd5sqe\",\"data-framer-name\":\"Services\",name:\"Services\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-13ctzj0\",\"data-styles-preset\":\"EpkzZxZuD\",children:\"Services.\"})}),className:\"framer-y3gfk2\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-113y0sj\",\"data-styles-preset\":\"jW9uD36Q5\",children:\"By keeping customer's identity in mind I offer best possible solution for your business. My design and marketing services plan are tailor made thats suits your need when you're on tight budget.\"})}),className:\"framer-9ff3mp\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{hash:\":SsJlayFsD\",webPageId:\"PSxJkCN94\"},implicitPathVariables:undefined},{href:{hash:\":SsJlayFsD\",webPageId:\"PSxJkCN94\"},implicitPathVariables:undefined},{href:{hash:\":SsJlayFsD\",webPageId:\"PSxJkCN94\"},implicitPathVariables:undefined},{href:{hash:\":SsJlayFsD\",webPageId:\"PSxJkCN94\"},implicitPathVariables:undefined}],children:resolvedLinks3=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ktG0_V6dQ:{width:\"min(648px, min(680px, 100vw))\",y:2670.3},Wvytas2Bl:{width:\"min(648px, min(680px, min(100vw - 360px, 100vw)))\"}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:202,width:\"min(648px, min(680px, min(100vw - 400px, 100vw)))\",y:2186.8,children:/*#__PURE__*/_jsx(Container,{className:\"framer-ztjitg-container\",\"data-framer-cursor\":\"16h8hmo\",whileTap:animation,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ktG0_V6dQ:{EiE1yD_Wl:resolvedLinks3[1],variant:\"VcCneQVlN\"},tz_z8IfXN:{EiE1yD_Wl:resolvedLinks3[3]},Wvytas2Bl:{EiE1yD_Wl:resolvedLinks3[2]}},children:/*#__PURE__*/_jsx(ServicesCard,{bj0wg6YGv:addImageAlt({src:\"https://framerusercontent.com/images/EBjOwxe6fhxAceEwmxqaGolByw.jpg\",srcSet:\"https://framerusercontent.com/images/EBjOwxe6fhxAceEwmxqaGolByw.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/EBjOwxe6fhxAceEwmxqaGolByw.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/EBjOwxe6fhxAceEwmxqaGolByw.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/EBjOwxe6fhxAceEwmxqaGolByw.jpg?scale-down-to=4096 4096w,https://framerusercontent.com/images/EBjOwxe6fhxAceEwmxqaGolByw.jpg 6016w\"},\"\"),EiE1yD_Wl:resolvedLinks3[0],height:\"100%\",id:\"PktBb6abq\",jcCjsQeJ7:\"Web design\",layoutId:\"PktBb6abq\",qLelBQi8a:\"$35/ hr\",style:{maxWidth:\"100%\",width:\"100%\"},T0HtJ5NW2:\"Completely custom and modern web design solution\",variant:\"ALh4eQfgH\",width:\"100%\"})})})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{hash:\":iANyGESIo\",webPageId:\"PSxJkCN94\"},implicitPathVariables:undefined},{href:{hash:\":iANyGESIo\",webPageId:\"PSxJkCN94\"},implicitPathVariables:undefined},{href:{hash:\":iANyGESIo\",webPageId:\"PSxJkCN94\"},implicitPathVariables:undefined},{href:{hash:\":iANyGESIo\",webPageId:\"PSxJkCN94\"},implicitPathVariables:undefined}],children:resolvedLinks4=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ktG0_V6dQ:{width:\"min(648px, min(680px, 100vw))\",y:2892.3},Wvytas2Bl:{width:\"min(648px, min(680px, min(100vw - 360px, 100vw)))\"}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:202,width:\"min(648px, min(680px, min(100vw - 400px, 100vw)))\",y:2408.8,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1u4d9ks-container\",\"data-framer-cursor\":\"16h8hmo\",whileTap:animation,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ktG0_V6dQ:{EiE1yD_Wl:resolvedLinks4[1],variant:\"VcCneQVlN\"},tz_z8IfXN:{EiE1yD_Wl:resolvedLinks4[3]},Wvytas2Bl:{EiE1yD_Wl:resolvedLinks4[2]}},children:/*#__PURE__*/_jsx(ServicesCard,{bj0wg6YGv:addImageAlt({src:\"https://framerusercontent.com/images/XHPz0EGyDHGrkXluB5Ry0Qp96U.jpg\",srcSet:\"https://framerusercontent.com/images/XHPz0EGyDHGrkXluB5Ry0Qp96U.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/XHPz0EGyDHGrkXluB5Ry0Qp96U.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/XHPz0EGyDHGrkXluB5Ry0Qp96U.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/XHPz0EGyDHGrkXluB5Ry0Qp96U.jpg?scale-down-to=4096 4096w,https://framerusercontent.com/images/XHPz0EGyDHGrkXluB5Ry0Qp96U.jpg 5472w\"},\"\"),EiE1yD_Wl:resolvedLinks4[0],height:\"100%\",id:\"ia6jJV7PR\",jcCjsQeJ7:\"Digital marketing\",layoutId:\"ia6jJV7PR\",qLelBQi8a:\"$50/ hr\",style:{maxWidth:\"100%\",width:\"100%\"},T0HtJ5NW2:\"AI powered digital marketing services for your business.\",variant:\"ALh4eQfgH\",width:\"100%\"})})})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{hash:\":k0iFgI2of\",webPageId:\"PSxJkCN94\"},implicitPathVariables:undefined},{href:{hash:\":k0iFgI2of\",webPageId:\"PSxJkCN94\"},implicitPathVariables:undefined},{href:{hash:\":k0iFgI2of\",webPageId:\"PSxJkCN94\"},implicitPathVariables:undefined},{href:{hash:\":k0iFgI2of\",webPageId:\"PSxJkCN94\"},implicitPathVariables:undefined}],children:resolvedLinks5=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ktG0_V6dQ:{width:\"min(648px, min(680px, 100vw))\",y:3114.3},Wvytas2Bl:{width:\"min(648px, min(680px, min(100vw - 360px, 100vw)))\"}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:202,width:\"min(648px, min(680px, min(100vw - 400px, 100vw)))\",y:2630.8,children:/*#__PURE__*/_jsx(Container,{className:\"framer-vggc7j-container\",\"data-framer-cursor\":\"16h8hmo\",whileTap:animation,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ktG0_V6dQ:{EiE1yD_Wl:resolvedLinks5[1],variant:\"VcCneQVlN\"},tz_z8IfXN:{EiE1yD_Wl:resolvedLinks5[3]},Wvytas2Bl:{EiE1yD_Wl:resolvedLinks5[2]}},children:/*#__PURE__*/_jsx(ServicesCard,{bj0wg6YGv:addImageAlt({src:\"https://framerusercontent.com/images/XHPz0EGyDHGrkXluB5Ry0Qp96U.jpg\",srcSet:\"https://framerusercontent.com/images/XHPz0EGyDHGrkXluB5Ry0Qp96U.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/XHPz0EGyDHGrkXluB5Ry0Qp96U.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/XHPz0EGyDHGrkXluB5Ry0Qp96U.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/XHPz0EGyDHGrkXluB5Ry0Qp96U.jpg?scale-down-to=4096 4096w,https://framerusercontent.com/images/XHPz0EGyDHGrkXluB5Ry0Qp96U.jpg 5472w\"},\"\"),EiE1yD_Wl:resolvedLinks5[0],height:\"100%\",id:\"CSh4mSaa3\",jcCjsQeJ7:\"Consulting\",layoutId:\"CSh4mSaa3\",qLelBQi8a:\"$25/ hr\",style:{maxWidth:\"100%\",width:\"100%\"},T0HtJ5NW2:\"Start-ups and small businesses can consult me for elevating their business.\",variant:\"ALh4eQfgH\",width:\"100%\"})})})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"RRSHmnWXr\"},implicitPathVariables:undefined},{href:{webPageId:\"RRSHmnWXr\"},implicitPathVariables:undefined},{href:{webPageId:\"RRSHmnWXr\"},implicitPathVariables:undefined},{href:{webPageId:\"RRSHmnWXr\"},implicitPathVariables:undefined}],children:resolvedLinks6=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ktG0_V6dQ:{y:3336.3}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:55,y:2852.8,children:/*#__PURE__*/_jsx(Container,{className:\"framer-b3ctf-container\",\"data-framer-cursor\":\"16h8hmo\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ktG0_V6dQ:{lDJcfhbvx:resolvedLinks6[1]},tz_z8IfXN:{lDJcfhbvx:resolvedLinks6[3]},Wvytas2Bl:{lDJcfhbvx:resolvedLinks6[2]}},children:/*#__PURE__*/_jsx(Button,{gmFFlfi2n:\"Go to all services\",height:\"100%\",id:\"WA69wAwJC\",layoutId:\"WA69wAwJC\",lDJcfhbvx:resolvedLinks6[0],v_4LdZj1L:false,variant:\"djE6vJFuF\",width:\"100%\"})})})})})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-c1aevy\",\"data-framer-name\":\"Blog\",name:\"Blog\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-13ctzj0\",\"data-styles-preset\":\"EpkzZxZuD\",children:\"Blog\"})}),className:\"framer-13717bl\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-113y0sj\",\"data-styles-preset\":\"jW9uD36Q5\",children:\"Find something interesting to read.\"})}),className:\"framer-1ly7ste\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1mwkrzm\",children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(QueryData,{query:{from:{alias:\"vKaM0CT5s\",data:Thoughts,type:\"Collection\"},select:[{collection:\"vKaM0CT5s\",name:\"fdG4GYDIj\",type:\"Identifier\"},{collection:\"vKaM0CT5s\",name:\"IHMueYSV3\",type:\"Identifier\"},{collection:\"vKaM0CT5s\",name:\"MwPMDz_Ix\",type:\"Identifier\"},{collection:\"vKaM0CT5s\",name:\"CaopO2qKz\",type:\"Identifier\"},{collection:\"vKaM0CT5s\",name:\"id\",type:\"Identifier\"}]},children:(collection1,paginationInfo1,loadMore1)=>/*#__PURE__*/_jsx(_Fragment,{children:collection1.map(({\"fdG4GYDIj\":fdG4GYDIjvKaM0CT5s,\"IHMueYSV3\":IHMueYSV3vKaM0CT5s,\"MwPMDz_Ix\":MwPMDz_IxvKaM0CT5s,\"CaopO2qKz\":CaopO2qKzvKaM0CT5s,\"id\":idvKaM0CT5s},i)=>{IHMueYSV3vKaM0CT5s!==null&&IHMueYSV3vKaM0CT5s!==void 0?IHMueYSV3vKaM0CT5s:IHMueYSV3vKaM0CT5s=\"\";CaopO2qKzvKaM0CT5s!==null&&CaopO2qKzvKaM0CT5s!==void 0?CaopO2qKzvKaM0CT5s:CaopO2qKzvKaM0CT5s=\"\";return /*#__PURE__*/_jsx(LayoutGroup,{id:`vKaM0CT5s-${idvKaM0CT5s}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{CaopO2qKz:CaopO2qKzvKaM0CT5s},children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-gjpbhy\",\"data-framer-name\":\"Blog Container\",name:\"Blog Container\",children:/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{pathVariables:{CaopO2qKz:CaopO2qKzvKaM0CT5s},webPageId:\"BHxyDFk5e\"},implicitPathVariables:undefined},{href:{pathVariables:{CaopO2qKz:CaopO2qKzvKaM0CT5s},webPageId:\"BHxyDFk5e\"},implicitPathVariables:undefined},{href:{pathVariables:{CaopO2qKz:CaopO2qKzvKaM0CT5s},webPageId:\"BHxyDFk5e\"},implicitPathVariables:undefined},{href:{pathVariables:{CaopO2qKz:CaopO2qKzvKaM0CT5s},webPageId:\"BHxyDFk5e\"},implicitPathVariables:undefined}],children:resolvedLinks7=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ktG0_V6dQ:{width:\"min(680px, 100vw)\",y:3926.8},Wvytas2Bl:{width:\"calc(min(680px, min(100vw - 360px, 100vw)) - 40px)\"}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:202,width:\"calc(min(680px, min(100vw - 400px, 100vw)) - 40px)\",y:3483.3,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1lecls2-container\",\"data-framer-cursor\":\"16h8hmo\",whileTap:animation,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ktG0_V6dQ:{EiE1yD_Wl:resolvedLinks7[1],variant:\"vG06NdEH3\"},tz_z8IfXN:{EiE1yD_Wl:resolvedLinks7[3]},Wvytas2Bl:{EiE1yD_Wl:resolvedLinks7[2],variant:\"vG06NdEH3\"}},children:/*#__PURE__*/_jsx(CardH,{bj0wg6YGv:toResponsiveImage(fdG4GYDIjvKaM0CT5s),EiE1yD_Wl:resolvedLinks7[0],height:\"100%\",id:\"Z4bn1Bjjf\",jcCjsQeJ7:IHMueYSV3vKaM0CT5s,layoutId:\"Z4bn1Bjjf\",style:{width:\"100%\"},T0HtJ5NW2:toDateString(MwPMDz_IxvKaM0CT5s,{dateStyle:\"medium\",locale:\"\"},activeLocaleCode),variant:\"UfinGAp5O\",width:\"100%\"})})})})})})})})},idvKaM0CT5s);})})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"LyGiRKSv4\"},implicitPathVariables:undefined},{href:{webPageId:\"LyGiRKSv4\"},implicitPathVariables:undefined},{href:{webPageId:\"LyGiRKSv4\"},implicitPathVariables:undefined},{href:{webPageId:\"LyGiRKSv4\"},implicitPathVariables:undefined}],children:resolvedLinks8=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ktG0_V6dQ:{y:4148.8}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:55,y:3705.3,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1qswe05-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ktG0_V6dQ:{lDJcfhbvx:resolvedLinks8[1]},tz_z8IfXN:{lDJcfhbvx:resolvedLinks8[3]},Wvytas2Bl:{lDJcfhbvx:resolvedLinks8[2]}},children:/*#__PURE__*/_jsx(Button,{gmFFlfi2n:\"Go to all blogs\",height:\"100%\",id:\"Bsbk7qwHB\",layoutId:\"Bsbk7qwHB\",lDJcfhbvx:resolvedLinks8[0],v_4LdZj1L:false,variant:\"djE6vJFuF\",width:\"100%\"})})})})})})]}),/*#__PURE__*/_jsxs(\"header\",{className:\"framer-1cbb1m5\",\"data-framer-name\":\"Stacks\",name:\"Stacks\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-13ctzj0\",\"data-styles-preset\":\"EpkzZxZuD\",children:\"Stacks\"})}),className:\"framer-azvmrm\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-113y0sj\",\"data-styles-preset\":\"jW9uD36Q5\",children:\"These are some of my favourite stacks that I frequently use to complete client projects.\"})}),className:\"framer-np35i4\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-w80kmn\",\"data-framer-name\":\"Stack Container\",name:\"Stack Container\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ktG0_V6dQ:{width:\"min(680px, 100vw)\",y:4497.3},Wvytas2Bl:{width:\"calc(min(680px, min(100vw - 360px, 100vw)) - 40px)\"}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:93,width:\"max((min(680px, min(100vw - 400px, 100vw)) - 60px) / 2, 1px)\",y:4093.8,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1sx6elj-container\",\"data-framer-cursor\":\"16h8hmo\",whileTap:animation,children:/*#__PURE__*/_jsx(StackWrapper,{bg85qKzvf:\"Framer\",EVOMlZ5gd:\"Framer\",height:\"100%\",id:\"RJxPj46cS\",ixoIhvM8_:\"https://www.framer.com/\",layoutId:\"RJxPj46cS\",p882IzVf9:\"Website builder\",style:{width:\"100%\"},width:\"100%\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ktG0_V6dQ:{width:\"min(680px, 100vw)\",y:4610.3},Wvytas2Bl:{width:\"calc(min(680px, min(100vw - 360px, 100vw)) - 40px)\",y:4206.8}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:93,width:\"max((min(680px, min(100vw - 400px, 100vw)) - 60px) / 2, 1px)\",y:4093.8,children:/*#__PURE__*/_jsx(Container,{className:\"framer-11wr1v-container\",\"data-framer-cursor\":\"16h8hmo\",whileTap:animation,children:/*#__PURE__*/_jsx(StackWrapper,{bg85qKzvf:\"Webflow\",EVOMlZ5gd:\"Webflow\",height:\"100%\",id:\"AdJdeG0uY\",ixoIhvM8_:\"https://webflow.com/\",layoutId:\"AdJdeG0uY\",p882IzVf9:\"Website builder\",style:{width:\"100%\"},width:\"100%\"})})})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1woc8no\",\"data-framer-name\":\"Stack Container\",name:\"Stack Container\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ktG0_V6dQ:{width:\"min(680px, 100vw)\",y:4723.3},Wvytas2Bl:{width:\"calc(min(680px, min(100vw - 360px, 100vw)) - 40px)\",y:4319.8}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:93,width:\"max((min(680px, min(100vw - 400px, 100vw)) - 60px) / 2, 1px)\",y:4206.8,children:/*#__PURE__*/_jsx(Container,{className:\"framer-bll94g-container\",\"data-framer-cursor\":\"16h8hmo\",whileTap:animation,children:/*#__PURE__*/_jsx(StackWrapper,{bg85qKzvf:\"Shopify\",EVOMlZ5gd:\"Shopify\",height:\"100%\",id:\"Cvg2Yls_i\",ixoIhvM8_:\"https://www.shopify.com/\",layoutId:\"Cvg2Yls_i\",p882IzVf9:\"Ecommerce platform\",style:{width:\"100%\"},width:\"100%\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ktG0_V6dQ:{width:\"min(680px, 100vw)\",y:4836.3},Wvytas2Bl:{width:\"calc(min(680px, min(100vw - 360px, 100vw)) - 40px)\",y:4432.8}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:93,width:\"max((min(680px, min(100vw - 400px, 100vw)) - 60px) / 2, 1px)\",y:4206.8,children:/*#__PURE__*/_jsx(Container,{className:\"framer-16y257o-container\",\"data-framer-cursor\":\"16h8hmo\",whileTap:animation,children:/*#__PURE__*/_jsx(StackWrapper,{bg85qKzvf:\"Wix\",EVOMlZ5gd:\"Wix\",height:\"100%\",id:\"Bwzqixecg\",ixoIhvM8_:\"https://www.wix.com/\",layoutId:\"Bwzqixecg\",p882IzVf9:\"Website builder\",style:{width:\"100%\"},width:\"100%\"})})})})]}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"De6T3o81E\"},implicitPathVariables:undefined},{href:{webPageId:\"De6T3o81E\"},implicitPathVariables:undefined},{href:{webPageId:\"De6T3o81E\"},implicitPathVariables:undefined},{href:{webPageId:\"De6T3o81E\"},implicitPathVariables:undefined}],children:resolvedLinks9=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ktG0_V6dQ:{y:4949.3},Wvytas2Bl:{y:4545.8}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:55,y:4319.8,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1qipn82-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ktG0_V6dQ:{lDJcfhbvx:resolvedLinks9[1]},tz_z8IfXN:{lDJcfhbvx:resolvedLinks9[3]},Wvytas2Bl:{lDJcfhbvx:resolvedLinks9[2]}},children:/*#__PURE__*/_jsx(Button,{gmFFlfi2n:\"Go to all stacks\",height:\"100%\",id:\"U71Rjxk0_\",layoutId:\"U71Rjxk0_\",lDJcfhbvx:resolvedLinks9[0],v_4LdZj1L:false,variant:\"djE6vJFuF\",width:\"100%\"})})})})})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-uf8dlb\",\"data-framer-name\":\"Reviews\",name:\"Reviews\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-13ctzj0\",\"data-styles-preset\":\"EpkzZxZuD\",children:\"Reviews.\"})}),className:\"framer-13j9prw\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-113y0sj\",\"data-styles-preset\":\"jW9uD36Q5\",children:\"Customer who loves to share their reviews.\"})}),className:\"framer-1ohw9wf\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition3},__framer__animateOnce:true,__framer__enter:animation1,__framer__exit:animation2,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1koqt0b\",\"data-framer-name\":\"Ticker Container\",name:\"Ticker Container\",style:{transformPerspective:2700},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-5hjxku-container\",children:/*#__PURE__*/_jsx(Ticker1,{alignment:\"center\",direction:\"left\",fadeOptions:{fadeAlpha:0,fadeContent:true,fadeInset:0,fadeWidth:10,overflow:false},gap:10,height:\"100%\",hoverFactor:0,id:\"mBxl7tzQV\",layoutId:\"mBxl7tzQV\",padding:10,paddingBottom:10,paddingLeft:10,paddingPerSide:false,paddingRight:10,paddingTop:10,sizingOptions:{heightType:false,widthType:true},slots:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-ew8p6g\",\"data-border\":true,\"data-framer-name\":\"Testimonials1\",name:\"Testimonials1\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-1ar20st\",\"data-styles-preset\":\"QlmQJT0Th\",children:\"Amazing\"})}),className:\"framer-1aswdjz\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-i7sehm\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-14m57q1\",\"data-styles-preset\":\"HMPZmk2XT\",children:\"Phil has good eye for design. He is always available for help whenever I am in need.\"})}),className:\"framer-i4gyeb\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1wsp3u1\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"Dgtalmate founder\",fit:\"fill\",intrinsicHeight:640,intrinsicWidth:640,pixelHeight:640,pixelWidth:640,sizes:\"50px\",src:\"https://framerusercontent.com/images/cti8rfoQLaozbvHRd2xSk6tIrI.png\",srcSet:\"https://framerusercontent.com/images/cti8rfoQLaozbvHRd2xSk6tIrI.png?scale-down-to=512 512w,https://framerusercontent.com/images/cti8rfoQLaozbvHRd2xSk6tIrI.png 640w\"},className:\"framer-15do9zg\",\"data-framer-name\":\"Avatar\",name:\"Avatar\"}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-3fj9h4\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-1ar20st\",\"data-styles-preset\":\"QlmQJT0Th\",children:\"Alex\"})}),className:\"framer-jfj9bp\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-15x89yp\",\"data-styles-preset\":\"v_YMdc8mT\",children:\"Founder, Textex\"})}),className:\"framer-ttqa7g\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})]})]})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-16g56q6\",\"data-border\":true,\"data-framer-name\":\"Testimonials2\",name:\"Testimonials2\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-1ar20st\",\"data-styles-preset\":\"QlmQJT0Th\",children:\"Superb\"})}),className:\"framer-1e6n9ze\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1wapkxl\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-14m57q1\",\"data-styles-preset\":\"HMPZmk2XT\",children:\"He is superb at whatever he does. In future I will again hire him for my next project.\"})}),className:\"framer-1wypv5o\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1s436pg\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"Sanjeewan vidyalaya admin\",fit:\"fill\",intrinsicHeight:527,intrinsicWidth:640,pixelHeight:527,pixelWidth:640,sizes:\"50px\",src:\"https://framerusercontent.com/images/bIqbmJMLGrESypLQEiZg35wOqM4.png\",srcSet:\"https://framerusercontent.com/images/bIqbmJMLGrESypLQEiZg35wOqM4.png?scale-down-to=512 512w,https://framerusercontent.com/images/bIqbmJMLGrESypLQEiZg35wOqM4.png 640w\"},className:\"framer-1jcfq7d\",\"data-framer-name\":\"Avatar\",name:\"Avatar\"}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-z285r1\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-1ar20st\",\"data-styles-preset\":\"QlmQJT0Th\",children:\"Marco\"})}),className:\"framer-21703b\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-15x89yp\",\"data-styles-preset\":\"v_YMdc8mT\",children:\"Admin, Clearer\"})}),className:\"framer-1lmtbh5\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})]})]})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-a0r3r6\",\"data-border\":true,\"data-framer-name\":\"Testimonials3\",name:\"Testimonials3\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-1ar20st\",\"data-styles-preset\":\"QlmQJT0Th\",children:\"Exquisite\"})}),className:\"framer-1lu5ozo\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1hwvpq2\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-14m57q1\",\"data-styles-preset\":\"HMPZmk2XT\",children:\"No words to describe his design taste. He is absolute gem. Highly recommend him.\"})}),className:\"framer-61ita9\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-133puz3\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"Metamorfosi founder\",fit:\"fill\",intrinsicHeight:413,intrinsicWidth:640,pixelHeight:413,pixelWidth:640,sizes:\"50px\",src:\"https://framerusercontent.com/images/44oDqZl10LLKB4puCvvEcVjxQx8.png\",srcSet:\"https://framerusercontent.com/images/44oDqZl10LLKB4puCvvEcVjxQx8.png?scale-down-to=512 512w,https://framerusercontent.com/images/44oDqZl10LLKB4puCvvEcVjxQx8.png 640w\"},className:\"framer-1gx3nzg\",\"data-framer-name\":\"Avatar\",name:\"Avatar\"}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-pr899l\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-1ar20st\",\"data-styles-preset\":\"QlmQJT0Th\",children:\"Nancy\"})}),className:\"framer-17v2ad6\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-15x89yp\",\"data-styles-preset\":\"v_YMdc8mT\",children:\"Founder, Morfosi\"})}),className:\"framer-19ogebn\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})]})]})]})],speed:45,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1m5boms\",\"data-framer-name\":\"Call to action\",name:\"Call to action\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-13ctzj0\",\"data-styles-preset\":\"EpkzZxZuD\",children:\"Your search ends here.\"})}),className:\"framer-5nu8aa\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-113y0sj\",\"data-styles-preset\":\"jW9uD36Q5\",children:\"Kudos! You've navigated to the page's end. Still uncertain? Require support or interested in gaining more knowledge about me or what I offer? Simply drop me a line via email. I'll return to you promptly.\"})}),className:\"framer-1uq2l67\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1o8ojvn\",\"data-framer-name\":\"Ticker container\",name:\"Ticker container\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition4},__framer__animateOnce:true,__framer__enter:animation3,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1fl3z7h-container\",\"data-framer-cursor\":\"1cffxv8\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(Ticker2,{alignment:\"center\",direction:\"left\",fadeOptions:{fadeAlpha:0,fadeContent:true,fadeInset:0,fadeWidth:25,overflow:false},gap:10,height:\"100%\",hoverFactor:0,id:\"RdvXt8VBD\",layoutId:\"RdvXt8VBD\",padding:10,paddingBottom:10,paddingLeft:10,paddingPerSide:false,paddingRight:10,paddingTop:10,sizingOptions:{heightType:true,widthType:true},slots:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1s2bebu\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-14m57q1\",\"data-styles-preset\":\"HMPZmk2XT\",children:\"hello@phil.com\"})}),className:\"framer-1ki9kx6\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})],speed:35,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ktG0_V6dQ:{y:788.8},Wvytas2Bl:{y:5637.8}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:55,y:5411.8,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1s0qede-container\",\"data-framer-cursor\":\"16h8hmo\",children:/*#__PURE__*/_jsx(Button,{gmFFlfi2n:\"Email me\",height:\"100%\",id:\"VuaI19anf\",layoutId:\"VuaI19anf\",lDJcfhbvx:\"mailto:hello@srahul.com\",v_4LdZj1L:false,variant:\"djE6vJFuF\",width:\"100%\"})})})})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ktG0_V6dQ:{width:\"calc(100vw - 40px)\",y:883.8},Wvytas2Bl:{width:\"calc(min(100vw - 360px, 100vw) - 40px)\",y:5752.8}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:85,width:\"calc(min(100vw - 400px, 100vw) - 40px)\",y:5526.8,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1vn5s7b-container\",children:/*#__PURE__*/_jsx(Footer,{height:\"100%\",id:\"sye6RKB9G\",layoutId:\"sye6RKB9G\",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-r9IQX { background: var(--token-fd7fa1e7-1525-4a1b-b33b-91d3ae20b70c, rgb(36, 38, 41)) /* {\"name\":\"BG Color\"} */; }`,\".framer-r9IQX.framer-lux5qc, .framer-r9IQX .framer-lux5qc { display: block; }\",\".framer-r9IQX.framer-72rtr7 { align-content: center; align-items: center; background-color: var(--token-fd7fa1e7-1525-4a1b-b33b-91d3ae20b70c, #242629); display: flex; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; min-height: 8395px; overflow: visible; padding: 0px; position: relative; width: 1280px; }\",\".framer-r9IQX .framer-1y0flf7-container { flex: none; height: 800px; left: 0px; position: fixed; top: 0px; width: 300px; z-index: 1; }\",\".framer-r9IQX .framer-5hqyv0 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: center; left: 300px; max-width: 100%; overflow: visible; padding: 20px; position: absolute; right: 100px; top: 0px; z-index: 1; }\",\".framer-r9IQX .framer-1gubvdq, .framer-r9IQX .framer-xuyiv6, .framer-r9IQX .framer-1cbb1m5 { 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: 100%; overflow: visible; padding: 40px 20px 20px 20px; position: relative; width: 680px; }\",\".framer-r9IQX .framer-zw86nc, .framer-r9IQX .framer-6nywt9, .framer-r9IQX .framer-4k2b7a, .framer-r9IQX .framer-skdymy, .framer-r9IQX .framer-1nugiom, .framer-r9IQX .framer-vtk2pg, .framer-r9IQX .framer-if0rt2, .framer-r9IQX .framer-12tyq8t, .framer-r9IQX .framer-wguzp8, .framer-r9IQX .framer-y3gfk2, .framer-r9IQX .framer-13717bl, .framer-r9IQX .framer-13j9prw, .framer-r9IQX .framer-5nu8aa, .framer-r9IQX .framer-1ki9kx6 { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-r9IQX .framer-j4azli, .framer-r9IQX .framer-1xuh1fa, .framer-r9IQX .framer-np35i4, .framer-r9IQX .framer-i4gyeb, .framer-r9IQX .framer-1wypv5o, .framer-r9IQX .framer-61ita9 { flex: none; height: auto; max-width: 100%; overflow: visible; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-r9IQX .framer-1v29506-container, .framer-r9IQX .framer-1xopu3q-container, .framer-r9IQX .framer-b3ctf-container, .framer-r9IQX .framer-1qswe05-container, .framer-r9IQX .framer-1qipn82-container, .framer-r9IQX .framer-1s0qede-container { flex: none; height: auto; position: relative; width: auto; }\",\".framer-r9IQX .framer-of5mif { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 60px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-r9IQX .framer-1f78zsg-container { flex: 1 0 0px; height: 100%; position: relative; width: 1px; }\",\".framer-r9IQX .framer-1qclv10, .framer-r9IQX .framer-1stg6aa { 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: 10px 15px 10px 15px; position: relative; width: min-content; }\",\".framer-r9IQX .framer-1qfanar { background-color: rgba(0, 0, 0, 0); flex: none; height: 20px; position: relative; width: 20px; }\",\".framer-r9IQX .framer-1jk1yi5, .framer-r9IQX .framer-zra1wf { flex: none; height: 20px; position: relative; width: 20px; }\",\".framer-r9IQX .framer-xvhmvb { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 41px; justify-content: center; overflow: hidden; padding: 10px 15px 10px 15px; position: relative; width: 126px; }\",\".framer-r9IQX .framer-1b85jzj, .framer-r9IQX .framer-1pd5sqe, .framer-r9IQX .framer-c1aevy { 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: 100%; overflow: hidden; padding: 40px 20px 20px 20px; position: relative; width: 680px; }\",\".framer-r9IQX .framer-fvuobg, .framer-r9IQX .framer-9ff3mp, .framer-r9IQX .framer-1ly7ste, .framer-r9IQX .framer-1ohw9wf, .framer-r9IQX .framer-1uq2l67 { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-r9IQX .framer-1gay180, .framer-r9IQX .framer-1mwkrzm { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: flex-start; padding: 0px; position: relative; width: 100%; }\",\".framer-r9IQX .framer-ueihjw { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: flex-start; padding: 0px; position: relative; width: 100%; }\",\".framer-r9IQX .framer-1p5b5q1 { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-r9IQX .framer-1lx2uzc-container, .framer-r9IQX .framer-1lecls2-container, .framer-r9IQX .framer-1vn5s7b-container { flex: none; height: auto; position: relative; width: 100%; }\",\".framer-r9IQX .framer-ztjitg-container, .framer-r9IQX .framer-1u4d9ks-container, .framer-r9IQX .framer-vggc7j-container { flex: none; height: auto; max-width: 100%; position: relative; width: 648px; }\",\".framer-r9IQX .framer-gjpbhy { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-r9IQX .framer-azvmrm { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; max-width: 100%; position: relative; white-space: pre-wrap; width: auto; word-break: break-word; word-wrap: break-word; }\",\".framer-r9IQX .framer-w80kmn, .framer-r9IQX .framer-1woc8no { 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-r9IQX .framer-1sx6elj-container, .framer-r9IQX .framer-11wr1v-container, .framer-r9IQX .framer-bll94g-container, .framer-r9IQX .framer-16y257o-container { flex: 1 0 0px; height: auto; position: relative; width: 1px; }\",\".framer-r9IQX .framer-uf8dlb { 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: 100%; overflow: hidden; padding: 40px 20px 20px 20px; position: relative; width: 660px; }\",\".framer-r9IQX .framer-1koqt0b { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-r9IQX .framer-5hjxku-container { flex: none; height: 300px; position: relative; width: 100%; }\",\".framer-r9IQX .framer-ew8p6g, .framer-r9IQX .framer-16g56q6, .framer-r9IQX .framer-a0r3r6 { --border-bottom-width: 1px; --border-color: var(--token-67ca2adb-c349-45be-9a31-4b25959089cc, rgba(23, 23, 23, 0.04)); --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-f30d6f7f-2379-46c5-97bb-1f410779487a, rgba(255, 255, 255, 0.04)); display: flex; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; overflow: hidden; padding: 40px; position: relative; width: min-content; }\",\".framer-r9IQX .framer-1aswdjz, .framer-r9IQX .framer-jfj9bp, .framer-r9IQX .framer-ttqa7g, .framer-r9IQX .framer-1e6n9ze, .framer-r9IQX .framer-21703b, .framer-r9IQX .framer-1lu5ozo, .framer-r9IQX .framer-17v2ad6, .framer-r9IQX .framer-19ogebn { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; overflow: visible; position: relative; white-space: pre; width: auto; }\",\".framer-r9IQX .framer-i7sehm, .framer-r9IQX .framer-1wapkxl, .framer-r9IQX .framer-1hwvpq2 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: center; max-width: 100%; overflow: visible; padding: 0px; position: relative; width: 310px; }\",\".framer-r9IQX .framer-1wsp3u1, .framer-r9IQX .framer-1s436pg, .framer-r9IQX .framer-133puz3 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 15px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-r9IQX .framer-15do9zg, .framer-r9IQX .framer-1jcfq7d, .framer-r9IQX .framer-1gx3nzg { aspect-ratio: 1 / 1; border-bottom-left-radius: 50%; border-bottom-right-radius: 50%; border-top-left-radius: 50%; border-top-right-radius: 50%; flex: none; height: var(--framer-aspect-ratio-supported, 50px); overflow: hidden; position: relative; width: 50px; will-change: var(--framer-will-change-override, transform); }\",\".framer-r9IQX .framer-3fj9h4, .framer-r9IQX .framer-z285r1, .framer-r9IQX .framer-pr899l { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-r9IQX .framer-1lmtbh5 { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; overflow: visible; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-r9IQX .framer-1m5boms { align-content: flex-start; align-items: flex-start; border-bottom-left-radius: 12px; border-bottom-right-radius: 12px; border-top-left-radius: 12px; border-top-right-radius: 12px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: flex-start; max-width: 100%; overflow: hidden; padding: 40px 20px 20px 20px; position: relative; width: 660px; will-change: var(--framer-will-change-override, transform); }\",\".framer-r9IQX .framer-1o8ojvn { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; max-width: 100%; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-r9IQX .framer-1fl3z7h-container { flex: none; height: 50px; position: relative; width: 100%; }\",\".framer-r9IQX .framer-1s2bebu { align-content: center; align-items: center; border-bottom-left-radius: 12px; border-bottom-right-radius: 12px; border-top-left-radius: 12px; border-top-right-radius: 12px; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 100px; justify-content: center; overflow: hidden; padding: 20px; position: relative; width: min-content; will-change: var(--framer-will-change-override, transform); }\",\"@supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-r9IQX.framer-72rtr7, .framer-r9IQX .framer-5hqyv0, .framer-r9IQX .framer-1gubvdq, .framer-r9IQX .framer-xuyiv6, .framer-r9IQX .framer-of5mif, .framer-r9IQX .framer-1qclv10, .framer-r9IQX .framer-1stg6aa, .framer-r9IQX .framer-xvhmvb, .framer-r9IQX .framer-1b85jzj, .framer-r9IQX .framer-1gay180, .framer-r9IQX .framer-ueihjw, .framer-r9IQX .framer-1p5b5q1, .framer-r9IQX .framer-1pd5sqe, .framer-r9IQX .framer-c1aevy, .framer-r9IQX .framer-1mwkrzm, .framer-r9IQX .framer-gjpbhy, .framer-r9IQX .framer-1cbb1m5, .framer-r9IQX .framer-w80kmn, .framer-r9IQX .framer-1woc8no, .framer-r9IQX .framer-uf8dlb, .framer-r9IQX .framer-1koqt0b, .framer-r9IQX .framer-ew8p6g, .framer-r9IQX .framer-i7sehm, .framer-r9IQX .framer-1wsp3u1, .framer-r9IQX .framer-3fj9h4, .framer-r9IQX .framer-16g56q6, .framer-r9IQX .framer-1wapkxl, .framer-r9IQX .framer-1s436pg, .framer-r9IQX .framer-z285r1, .framer-r9IQX .framer-a0r3r6, .framer-r9IQX .framer-1hwvpq2, .framer-r9IQX .framer-133puz3, .framer-r9IQX .framer-pr899l, .framer-r9IQX .framer-1m5boms, .framer-r9IQX .framer-1o8ojvn, .framer-r9IQX .framer-1s2bebu { gap: 0px; } .framer-r9IQX.framer-72rtr7 > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-r9IQX.framer-72rtr7 > :first-child, .framer-r9IQX .framer-5hqyv0 > :first-child, .framer-r9IQX .framer-1gubvdq > :first-child, .framer-r9IQX .framer-xuyiv6 > :first-child, .framer-r9IQX .framer-1b85jzj > :first-child, .framer-r9IQX .framer-1gay180 > :first-child, .framer-r9IQX .framer-1p5b5q1 > :first-child, .framer-r9IQX .framer-1pd5sqe > :first-child, .framer-r9IQX .framer-c1aevy > :first-child, .framer-r9IQX .framer-1mwkrzm > :first-child, .framer-r9IQX .framer-gjpbhy > :first-child, .framer-r9IQX .framer-1cbb1m5 > :first-child, .framer-r9IQX .framer-uf8dlb > :first-child, .framer-r9IQX .framer-1koqt0b > :first-child, .framer-r9IQX .framer-ew8p6g > :first-child, .framer-r9IQX .framer-i7sehm > :first-child, .framer-r9IQX .framer-3fj9h4 > :first-child, .framer-r9IQX .framer-16g56q6 > :first-child, .framer-r9IQX .framer-1wapkxl > :first-child, .framer-r9IQX .framer-z285r1 > :first-child, .framer-r9IQX .framer-a0r3r6 > :first-child, .framer-r9IQX .framer-1hwvpq2 > :first-child, .framer-r9IQX .framer-pr899l > :first-child, .framer-r9IQX .framer-1m5boms > :first-child, .framer-r9IQX .framer-1o8ojvn > :first-child { margin-top: 0px; } .framer-r9IQX.framer-72rtr7 > :last-child, .framer-r9IQX .framer-5hqyv0 > :last-child, .framer-r9IQX .framer-1gubvdq > :last-child, .framer-r9IQX .framer-xuyiv6 > :last-child, .framer-r9IQX .framer-1b85jzj > :last-child, .framer-r9IQX .framer-1gay180 > :last-child, .framer-r9IQX .framer-1p5b5q1 > :last-child, .framer-r9IQX .framer-1pd5sqe > :last-child, .framer-r9IQX .framer-c1aevy > :last-child, .framer-r9IQX .framer-1mwkrzm > :last-child, .framer-r9IQX .framer-gjpbhy > :last-child, .framer-r9IQX .framer-1cbb1m5 > :last-child, .framer-r9IQX .framer-uf8dlb > :last-child, .framer-r9IQX .framer-1koqt0b > :last-child, .framer-r9IQX .framer-ew8p6g > :last-child, .framer-r9IQX .framer-i7sehm > :last-child, .framer-r9IQX .framer-3fj9h4 > :last-child, .framer-r9IQX .framer-16g56q6 > :last-child, .framer-r9IQX .framer-1wapkxl > :last-child, .framer-r9IQX .framer-z285r1 > :last-child, .framer-r9IQX .framer-a0r3r6 > :last-child, .framer-r9IQX .framer-1hwvpq2 > :last-child, .framer-r9IQX .framer-pr899l > :last-child, .framer-r9IQX .framer-1m5boms > :last-child, .framer-r9IQX .framer-1o8ojvn > :last-child { margin-bottom: 0px; } .framer-r9IQX .framer-5hqyv0 > *, .framer-r9IQX .framer-1gay180 > *, .framer-r9IQX .framer-1mwkrzm > *, .framer-r9IQX .framer-i7sehm > *, .framer-r9IQX .framer-1wapkxl > *, .framer-r9IQX .framer-1hwvpq2 > * { margin: 0px; margin-bottom: calc(40px / 2); margin-top: calc(40px / 2); } .framer-r9IQX .framer-1gubvdq > *, .framer-r9IQX .framer-xuyiv6 > *, .framer-r9IQX .framer-1b85jzj > *, .framer-r9IQX .framer-1p5b5q1 > *, .framer-r9IQX .framer-1pd5sqe > *, .framer-r9IQX .framer-c1aevy > *, .framer-r9IQX .framer-gjpbhy > *, .framer-r9IQX .framer-1cbb1m5 > *, .framer-r9IQX .framer-uf8dlb > *, .framer-r9IQX .framer-1koqt0b > *, .framer-r9IQX .framer-ew8p6g > *, .framer-r9IQX .framer-16g56q6 > *, .framer-r9IQX .framer-a0r3r6 > *, .framer-r9IQX .framer-1m5boms > *, .framer-r9IQX .framer-1o8ojvn > * { margin: 0px; margin-bottom: calc(20px / 2); margin-top: calc(20px / 2); } .framer-r9IQX .framer-of5mif > *, .framer-r9IQX .framer-1qclv10 > *, .framer-r9IQX .framer-1stg6aa > *, .framer-r9IQX .framer-xvhmvb > *, .framer-r9IQX .framer-1s2bebu > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-r9IQX .framer-of5mif > :first-child, .framer-r9IQX .framer-1qclv10 > :first-child, .framer-r9IQX .framer-1stg6aa > :first-child, .framer-r9IQX .framer-xvhmvb > :first-child, .framer-r9IQX .framer-ueihjw > :first-child, .framer-r9IQX .framer-w80kmn > :first-child, .framer-r9IQX .framer-1woc8no > :first-child, .framer-r9IQX .framer-1wsp3u1 > :first-child, .framer-r9IQX .framer-1s436pg > :first-child, .framer-r9IQX .framer-133puz3 > :first-child, .framer-r9IQX .framer-1s2bebu > :first-child { margin-left: 0px; } .framer-r9IQX .framer-of5mif > :last-child, .framer-r9IQX .framer-1qclv10 > :last-child, .framer-r9IQX .framer-1stg6aa > :last-child, .framer-r9IQX .framer-xvhmvb > :last-child, .framer-r9IQX .framer-ueihjw > :last-child, .framer-r9IQX .framer-w80kmn > :last-child, .framer-r9IQX .framer-1woc8no > :last-child, .framer-r9IQX .framer-1wsp3u1 > :last-child, .framer-r9IQX .framer-1s436pg > :last-child, .framer-r9IQX .framer-133puz3 > :last-child, .framer-r9IQX .framer-1s2bebu > :last-child { margin-right: 0px; } .framer-r9IQX .framer-ueihjw > * { margin: 0px; margin-left: calc(40px / 2); margin-right: calc(40px / 2); } .framer-r9IQX .framer-w80kmn > *, .framer-r9IQX .framer-1woc8no > * { margin: 0px; margin-left: calc(20px / 2); margin-right: calc(20px / 2); } .framer-r9IQX .framer-1wsp3u1 > *, .framer-r9IQX .framer-1s436pg > *, .framer-r9IQX .framer-133puz3 > * { margin: 0px; margin-left: calc(15px / 2); margin-right: calc(15px / 2); } .framer-r9IQX .framer-3fj9h4 > *, .framer-r9IQX .framer-z285r1 > *, .framer-r9IQX .framer-pr899l > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } }\",`@media (max-width: 809px) { .${metadata.bodyClassName}-framer-r9IQX { background: var(--token-fd7fa1e7-1525-4a1b-b33b-91d3ae20b70c, rgb(36, 38, 41)) /* {\"name\":\"BG Color\"} */; } .framer-r9IQX.framer-72rtr7 { min-height: 13573px; width: 390px; } .framer-r9IQX .framer-1y0flf7-container { height: auto; right: 0px; width: unset; } .framer-r9IQX .framer-5hqyv0 { left: 0px; right: 0px; top: 80px; z-index: 0; } .framer-r9IQX .framer-1gubvdq { order: 0; padding: 20px 0px 0px 0px; } .framer-r9IQX .framer-xuyiv6 { order: 3; padding: 20px 0px 0px 0px; } .framer-r9IQX .framer-1b85jzj { order: 4; padding: 20px 0px 0px 0px; } .framer-r9IQX .framer-1pd5sqe { order: 5; padding: 20px 0px 0px 0px; } .framer-r9IQX .framer-c1aevy { order: 6; padding: 20px 0px 0px 0px; } .framer-r9IQX .framer-1cbb1m5 { order: 7; padding: 20px 0px 0px 0px; } .framer-r9IQX .framer-w80kmn, .framer-r9IQX .framer-1woc8no { flex-direction: column; } .framer-r9IQX .framer-1sx6elj-container, .framer-r9IQX .framer-11wr1v-container, .framer-r9IQX .framer-bll94g-container, .framer-r9IQX .framer-16y257o-container { flex: none; width: 100%; } .framer-r9IQX .framer-uf8dlb { order: 8; padding: 40px 0px 0px 0px; } .framer-r9IQX .framer-1m5boms { order: 1; padding: 20px 0px 0px 0px; } .framer-r9IQX .framer-1vn5s7b-container { order: 2; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-r9IQX .framer-w80kmn, .framer-r9IQX .framer-1woc8no { gap: 0px; } .framer-r9IQX .framer-w80kmn > *, .framer-r9IQX .framer-1woc8no > * { margin: 0px; margin-bottom: calc(20px / 2); margin-top: calc(20px / 2); } .framer-r9IQX .framer-w80kmn > :first-child, .framer-r9IQX .framer-1woc8no > :first-child { margin-top: 0px; } .framer-r9IQX .framer-w80kmn > :last-child, .framer-r9IQX .framer-1woc8no > :last-child { margin-bottom: 0px; } }}`,`@media (min-width: 810px) and (max-width: 1279px) { .${metadata.bodyClassName}-framer-r9IQX { background: var(--token-fd7fa1e7-1525-4a1b-b33b-91d3ae20b70c, rgb(36, 38, 41)) /* {\"name\":\"BG Color\"} */; } .framer-r9IQX.framer-72rtr7 { min-height: 10313px; width: 810px; } .framer-r9IQX .framer-5hqyv0 { left: 330px; right: 30px; } .framer-r9IQX .framer-w80kmn, .framer-r9IQX .framer-1woc8no { flex-direction: column; } .framer-r9IQX .framer-1sx6elj-container, .framer-r9IQX .framer-11wr1v-container, .framer-r9IQX .framer-bll94g-container, .framer-r9IQX .framer-16y257o-container { flex: none; width: 100%; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-r9IQX .framer-w80kmn, .framer-r9IQX .framer-1woc8no { gap: 0px; } .framer-r9IQX .framer-w80kmn > *, .framer-r9IQX .framer-1woc8no > * { margin: 0px; margin-bottom: calc(20px / 2); margin-top: calc(20px / 2); } .framer-r9IQX .framer-w80kmn > :first-child, .framer-r9IQX .framer-1woc8no > :first-child { margin-top: 0px; } .framer-r9IQX .framer-w80kmn > :last-child, .framer-r9IQX .framer-1woc8no > :last-child { margin-bottom: 0px; } }}`,`@media (min-width: 1920px) { .${metadata.bodyClassName}-framer-r9IQX { background: var(--token-fd7fa1e7-1525-4a1b-b33b-91d3ae20b70c, rgb(36, 38, 41)) /* {\"name\":\"BG Color\"} */; } .framer-r9IQX.framer-72rtr7 { min-height: 8425px; width: 1920px; }}`,...sharedStyle.css,...sharedStyle1.css,...sharedStyle2.css,...sharedStyle3.css,...sharedStyle4.css,...sharedStyle5.css,'.framer-r9IQX[data-border=\"true\"]::after, .framer-r9IQX [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 8394.5\n * @framerIntrinsicWidth 1280\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"ktG0_V6dQ\":{\"layout\":[\"fixed\",\"auto\"]},\"Wvytas2Bl\":{\"layout\":[\"fixed\",\"auto\"]},\"tz_z8IfXN\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n * @framerResponsiveScreen\n */const FrameraugiA20Il=withCSS(Component,css,\"framer-r9IQX\");export default FrameraugiA20Il;FrameraugiA20Il.displayName=\"Home\";FrameraugiA20Il.defaultProps={height:8394.5,width:1280};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\"}]},...SidebarFonts,...ButtonFonts,...TickerFonts,...CardHFonts,...ServicesCardFonts,...StackWrapperFonts,...Ticker1Fonts,...Ticker2Fonts,...FooterFonts,...CustomCursorFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts),...getFontsFromSharedStyle(sharedStyle2.fonts),...getFontsFromSharedStyle(sharedStyle3.fonts),...getFontsFromSharedStyle(sharedStyle4.fonts),...getFontsFromSharedStyle(sharedStyle5.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FrameraugiA20Il\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\",\"framerResponsiveScreen\":\"\",\"framerIntrinsicHeight\":\"8394.5\",\"framerIntrinsicWidth\":\"1280\",\"framerDisplayContentsDiv\":\"false\",\"framerComponentViewportWidth\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"ktG0_V6dQ\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"Wvytas2Bl\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"tz_z8IfXN\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerImmutableVariables\":\"true\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}"],
  "mappings": "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",
  "names": ["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", "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", "resize", "contentSize", "child", "index", "ref", "ref1", "ref2", "ref3", "ref4", "p", "LayoutGroup", "q", "i", "childIndex", "ref5", "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", "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", "enabledGestures", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "toResponsiveImage", "value", "Transition", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "height", "id", "link", "price", "projectPreviewImage", "shortDescription", "title", "width", "props", "_ref", "_ref1", "_ref2", "_humanReadableVariantMap_props_variant", "_ref3", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "bj0wg6YGv", "jcCjsQeJ7", "T0HtJ5NW2", "EiE1yD_Wl", "qLelBQi8a", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "Link", "u", "cx", "Image2", "getLoadingLazyAtYPosition", "RichText2", "css", "Framers4crczTTv", "withCSS", "s4crczTTv_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts", "SidebarFonts", "getFonts", "l7oCs5ans_default", "ButtonFonts", "RvhUZisE6_default", "TickerFonts", "Ticker", "CardHFonts", "m8Yaz1hmt_default", "ServicesCardFonts", "s4crczTTv_default", "StackWrapperFonts", "wWl_ma3ns_default", "Ticker1Fonts", "MotionDivWithFX", "withFX", "motion", "Ticker2Fonts", "ContainerWithFX", "Container", "FooterFonts", "A3yVEqQSs_default", "CustomCursorFonts", "UVdzljFWb_default", "breakpoints", "serializationHash", "variantClassNames", "transition1", "transition2", "animation", "toResponsiveImage", "value", "QueryData", "query", "pageSize", "children", "data", "useQueryData", "addImageAlt", "image", "alt", "toDateString", "options", "activeLocale", "date", "display", "dateOptions", "fallbackLocale", "locale", "animation1", "transition3", "animation2", "animation3", "transition4", "metadata", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "_humanReadableVariantMap_props_variant", "_ref", "cursor", "UVdzljFWb_default", "cursor1", "cursor2", "cursor3", "Component", "Y", "ref", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "variant", "cht8PRz9imhf9XmSZf", "WwaxenelQmhf9XmSZf", "gqM1hfUuwmhf9XmSZf", "FNS_zRx83mhf9XmSZf", "idmhf9XmSZf", "fdG4GYDIjvKaM0CT5s", "IHMueYSV3vKaM0CT5s", "MwPMDz_IxvKaM0CT5s", "CaopO2qKzvKaM0CT5s", "idvKaM0CT5s", "restProps", "ue", "metadata1", "robotsTag", "ie", "_document_querySelector", "bodyCls", "body", "c", "baseVariant", "hydratedBaseVariant", "useHydratedBreakpointVariants", "breakpoints", "gestureVariant", "ref1", "pe", "router", "useRouter", "activeLocaleCode", "useLocaleCode", "defaultLayoutId", "ae", "sharedStyleClassNames", "useCustomCursors", "p", "GeneratedComponentContext", "u", "LayoutGroup", "motion", "cx", "PropertyOverrides2", "ComponentViewportProvider", "Container", "l7oCs5ans_default", "RichText2", "x", "ResolveLinks", "resolvedLinks", "RvhUZisE6_default", "Ticker", "SVG", "ChildrenCanSuspend", "GYj1WJbhc_default", "collection", "paginationInfo", "loadMore", "l", "i", "PathVariablesContext", "resolvedLinks1", "m8Yaz1hmt_default", "resolvedLinks2", "resolvedLinks3", "s4crczTTv_default", "resolvedLinks4", "resolvedLinks5", "resolvedLinks6", "eWPftKzYq_default", "collection1", "paginationInfo1", "loadMore1", "resolvedLinks7", "resolvedLinks8", "wWl_ma3ns_default", "resolvedLinks9", "MotionDivWithFX", "Image2", "ContainerWithFX", "A3yVEqQSs_default", "css", "FrameraugiA20Il", "withCSS", "augiA20Il_default", "addFonts", "SidebarFonts", "ButtonFonts", "TickerFonts", "CardHFonts", "ServicesCardFonts", "StackWrapperFonts", "Ticker1Fonts", "Ticker2Fonts", "FooterFonts", "CustomCursorFonts", "getFontsFromSharedStyle", "fonts", "__FramerMetadata__"]
}
