{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/B2xAlJLcN0gOnt11mSPw/nFAy8p4fOASsyhPbo192/Ticker.js", "ssg:https://framerusercontent.com/modules/rzFGZnHZQJNiTurLPpoe/N9k6YtiODZgu0RSPAh9U/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;return /*#__PURE__*/ _jsx(LayoutGroup,{inherit:\"id\",children:/*#__PURE__*/ _jsx(\"li\",{style:{display:\"contents\"},\"aria-hidden\":true,children:/*#__PURE__*/ cloneElement(child,{key:i+\" \"+childIndex,style:{...(ref=child.props)===null||ref===void 0?void 0:ref.style,width:widthType?(ref1=child.props)===null||ref1===void 0?void 0:ref1.width:\"100%\",height:heightType?(ref2=child.props)===null||ref2===void 0?void 0:ref2.height:\"100%\",flexShrink:0,...childrenStyles},layoutId:child.props.layoutId?child.props.layoutId+\"-dupe-\"+i:undefined},(ref3=child.props)===null||ref3===void 0?void 0:ref3.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 isInView=useInView(parentRef);const isReducedMotion=useReducedMotion();const listRef=useRef(null);const animationRef=useRef(null);/**\n     * Setup animations\n     */ if(!isCanvas){/**\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:\"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\":{\"framerSupportedLayoutHeight\":\"fixed\",\"framerContractVersion\":\"1\",\"framerIntrinsicWidth\":\"400\",\"framerIntrinsicHeight\":\"200\",\"framerDisableUnlink\":\"*\",\"framerSupportedLayoutWidth\":\"fixed\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Ticker.map", "// Generated by Framer (915daba)\nimport{jsx as _jsx,jsxs as _jsxs,Fragment as _Fragment}from\"react/jsx-runtime\";import{addFonts,ChildrenCanSuspend,ComponentViewportProvider,Container,cx,GeneratedComponentContext,getFonts,getFontsFromSharedStyle,getLoadingLazyAtYPosition,Image,Link,PathVariablesContext,PropertyOverrides,RichText,useComponentViewport,useCustomCursors,useHydratedBreakpointVariants,useIsOnFramerCanvas,useLocaleCode,useLocaleInfo,useQueryData,withCSS,withFX,withOptimizedAppearEffect}from\"framer\";import{LayoutGroup,motion}from\"framer-motion\";import*as React from\"react\";import Ticker from\"https://framerusercontent.com/modules/B2xAlJLcN0gOnt11mSPw/nFAy8p4fOASsyhPbo192/Ticker.js\";import Embed from\"https://framerusercontent.com/modules/o1PI5S8YtkA5bP5g4dFz/Xr8CO3Ul8Gb7lVfgMKTh/Embed.js\";import Navigation from\"#framer/local/canvasComponent/c8D4rq2Dp/c8D4rq2Dp.js\";import Footer from\"#framer/local/canvasComponent/dPh5WQdJI/dPh5WQdJI.js\";import Tag from\"#framer/local/canvasComponent/KYlTZqS3G/KYlTZqS3G.js\";import Card from\"#framer/local/canvasComponent/W2ue_Vd6B/W2ue_Vd6B.js\";import Writings,{enumToDisplayNameFunctions}from\"#framer/local/collection/z4bJ5jmwC/z4bJ5jmwC.js\";import*as sharedStyle4 from\"#framer/local/css/B2blYzyDg/B2blYzyDg.js\";import*as sharedStyle3 from\"#framer/local/css/CdisBXYgZ/CdisBXYgZ.js\";import*as sharedStyle1 from\"#framer/local/css/dKmjN5x19/dKmjN5x19.js\";import*as sharedStyle6 from\"#framer/local/css/EGXY9wIfl/EGXY9wIfl.js\";import*as sharedStyle10 from\"#framer/local/css/h0Mj5rW10/h0Mj5rW10.js\";import*as sharedStyle7 from\"#framer/local/css/jDW9Hd_vp/jDW9Hd_vp.js\";import*as sharedStyle2 from\"#framer/local/css/lR7uwT_Qq/lR7uwT_Qq.js\";import*as sharedStyle5 from\"#framer/local/css/pSQIblWJz/pSQIblWJz.js\";import*as sharedStyle8 from\"#framer/local/css/qgIHCrfgM/qgIHCrfgM.js\";import*as sharedStyle9 from\"#framer/local/css/sMBg6f_RS/sMBg6f_RS.js\";import*as sharedStyle from\"#framer/local/css/YzOtZnc8S/YzOtZnc8S.js\";import metadataProvider from\"#framer/local/webPageMetadata/augiA20Il/augiA20Il.js\";const NavigationFonts=getFonts(Navigation);const ContainerWithOptimizedAppearEffect=withOptimizedAppearEffect(Container);const RichTextWithOptimizedAppearEffect=withOptimizedAppearEffect(RichText);const EmbedFonts=getFonts(Embed);const TickerFonts=getFonts(Ticker);const MotionDivWithOptimizedAppearEffect=withOptimizedAppearEffect(motion.div);const CardFonts=getFonts(Card);const RichTextWithFX=withFX(RichText);const MotionDivWithFX=withFX(motion.div);const TagFonts=getFonts(Tag);const FooterFonts=getFonts(Footer);const breakpoints={jSzOmigZ_:\"(min-width: 810px) and (max-width: 1199px)\",uB_s4ryfa:\"(max-width: 809px)\",WQLkyLRf1:\"(min-width: 1200px)\"};const isBrowser=()=>typeof document!==\"undefined\";const serializationHash=\"framer-x9grd\";const variantClassNames={jSzOmigZ_:\"framer-v-1dzd4zz\",uB_s4ryfa:\"framer-v-152jlf7\",WQLkyLRf1:\"framer-v-72rtr7\"};const transformTemplate1=(_,t)=>`translateX(-50%) ${t}`;const transition1={damping:90,delay:0,mass:1,stiffness:300,type:\"spring\"};const animation={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition1,x:0,y:0};const animation1={opacity:.001,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:-40};const transition2={damping:90,delay:0,mass:.25,stiffness:300,type:\"spring\"};const animation2={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition2,x:0,y:0};const animation3={opacity:.001,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:-40,y:0};const transition3={damping:90,delay:.3,mass:1,stiffness:300,type:\"spring\"};const animation4={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition3,x:0,y:0};const transition4={damping:90,delay:.5,mass:1,stiffness:300,type:\"spring\"};const animation5={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition4,x:0,y:0};const transition5={damping:90,delay:.7,mass:1,stiffness:300,type:\"spring\"};const animation6={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition5,x:0,y:0};const transition6={delay:.6,duration:1,ease:[.12,.23,0,1],type:\"tween\"};const animation7={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition6,x:0,y:0};const animation8={opacity:.001,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:0,y:50};const animation9={opacity:0,rotate:0,rotateX:20,rotateY:0,scale:.6,skewX:0,skewY:0,transformPerspective:1200,x:0,y:0};const transition7={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const animation10={opacity:0,rotate:0,rotateX:20,rotateY:0,scale:.6,skewX:0,skewY:0,transformPerspective:1200,transition:transition7,x:0,y:0};const animation11={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:20};const transition8={damping:40,delay:.2,mass:1,stiffness:400,type:\"spring\"};const animation12={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition8,x:0,y:20};const transition9={damping:40,delay:.3,mass:1,stiffness:400,type:\"spring\"};const animation13={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition9,x:0,y:20};const toResponsiveImage=value=>{if(typeof value===\"object\"&&value!==null&&typeof value.src===\"string\"){return value;}return typeof value===\"string\"?{src:value}:undefined;};const QueryData=({query,pageSize,children})=>{const data=useQueryData(query);return children(data);};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 HTMLStyle=({value})=>{const onCanvas=useIsOnFramerCanvas();if(onCanvas)return null;return /*#__PURE__*/_jsx(\"style\",{dangerouslySetInnerHTML:{__html:value},\"data-framer-html-style\":\"\"});};const humanReadableVariantMap={Desktop:\"WQLkyLRf1\",Phone:\"uB_s4ryfa\",Tablet:\"jSzOmigZ_\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"WQLkyLRf1\"};};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,ah_tv23Q6kz3L57p6I,WKNtUyquQkz3L57p6I,UxHF_cA6Ukz3L57p6I,B5A3earfSkz3L57p6I,idkz3L57p6I,ah_tv23Q6Hkb0XCy5a,QtAvmVvcqHkb0XCy5a,B5A3earfSHkb0XCy5a,idHkb0XCy5a,...restProps}=getProps(props);React.useEffect(()=>{const metadata=metadataProvider(undefined,activeLocale);if(metadata.robots){let robotsTag=document.querySelector('meta[name=\"robots\"]');if(robotsTag){robotsTag.setAttribute(\"content\",metadata.robots);}else{robotsTag=document.createElement(\"meta\");robotsTag.setAttribute(\"name\",\"robots\");robotsTag.setAttribute(\"content\",metadata.robots);document.head.appendChild(robotsTag);}}},[undefined,activeLocale]);React.useInsertionEffect(()=>{const metadata=metadataProvider(undefined,activeLocale);document.title=metadata.title||\"\";if(metadata.viewport){document.querySelector('meta[name=\"viewport\"]')?.setAttribute(\"content\",metadata.viewport);}},[undefined,activeLocale]);const[baseVariant,hydratedBaseVariant]=useHydratedBreakpointVariants(variant,breakpoints,false);const gestureVariant=undefined;const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className,sharedStyle2.className,sharedStyle3.className,sharedStyle4.className,sharedStyle5.className,sharedStyle6.className,sharedStyle7.className,sharedStyle8.className,sharedStyle9.className,sharedStyle10.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const ref1=React.useRef(null);const activeLocaleCode=useLocaleCode();const defaultLayoutId=React.useId();useCustomCursors({});const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(GeneratedComponentContext.Provider,{value:{primaryVariantId:\"WQLkyLRf1\",variantClassNames},children:/*#__PURE__*/_jsxs(LayoutGroup,{id:layoutId??defaultLayoutId,children:[/*#__PURE__*/_jsx(HTMLStyle,{value:\"html body { background: rgb(255, 255, 255); }\"}),/*#__PURE__*/_jsxs(motion.div,{...restProps,className:cx(scopingClassNames,\"framer-72rtr7\",className),ref:ref??ref1,style:{...style},children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{jSzOmigZ_:{width:\"min(80vw, 800px)\"},uB_s4ryfa:{width:\"min(90vw, 800px)\"}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:54,width:\"800px\",y:20,children:/*#__PURE__*/_jsx(ContainerWithOptimizedAppearEffect,{animate:animation,className:\"framer-3kofxm-container\",\"data-framer-appear-id\":\"3kofxm\",initial:animation1,layoutScroll:true,nodeId:\"J6CX97llg\",optimized:true,rendersWithMotion:true,scopeId:\"augiA20Il\",transformTemplate:transformTemplate1,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{uB_s4ryfa:{variant:\"zCvCr8OCE\"}},children:/*#__PURE__*/_jsx(Navigation,{height:\"100%\",id:\"J6CX97llg\",layoutId:\"J6CX97llg\",style:{maxWidth:\"100%\",width:\"100%\"},variant:\"Gmy2WCLAE\",width:\"100%\"})})})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-19rwjfp\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1hlvqt2\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-12iwew2\",children:[/*#__PURE__*/_jsx(RichTextWithOptimizedAppearEffect,{__fromCanvasComponent:true,animate:animation2,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{className:\"framer-styles-preset-1ucp7kh\",\"data-styles-preset\":\"YzOtZnc8S\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:/*#__PURE__*/_jsx(\"strong\",{children:\"Wayfinding the Digital Age for Communities Worldwide\"})})}),className:\"framer-5brtee\",\"data-framer-appear-id\":\"5brtee\",fonts:[\"Inter\",\"Inter-Bold\"],initial:animation3,optimized:true,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichTextWithOptimizedAppearEffect,{__fromCanvasComponent:true,animate:animation4,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{className:\"framer-styles-preset-jvokhl\",\"data-styles-preset\":\"dKmjN5x19\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(247, 247, 247)\"},children:[\"From AI tools to productivity hacks to building micro empires, I help you adapt, grow, and thrive in an ever-changing world. Sharing lessons while building digital ventures across \",/*#__PURE__*/_jsx(\"strong\",{children:\"community\"}),\", \",/*#__PURE__*/_jsx(\"strong\",{children:\"culture\"}),\", and emerging \",/*#__PURE__*/_jsx(\"strong\",{children:\"tech\"}),\".\"]})}),className:\"framer-add10j\",\"data-framer-appear-id\":\"add10j\",fonts:[\"Inter\",\"Inter-Bold\"],initial:animation3,optimized:true,verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-jni2ek\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-z1a74p\",\"data-framer-name\":\"Column\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(ContainerWithOptimizedAppearEffect,{animate:animation5,className:\"framer-md60p9-container\",\"data-framer-appear-id\":\"md60p9\",initial:animation3,isAuthoredByUser:true,isModuleExternal:true,nodeId:\"NCp1qLrUi\",optimized:true,rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{uB_s4ryfa:{html:'<iframe src=\"https://embeds.beehiiv.com/0fb9e188-1558-4959-a733-31e6999f3532?slim=true\" data-test-id=\"beehiiv-embed\" width=\"300\" height=\"52\" frameborder=\"0\" scrolling=\"no\" style=\"margin: 0; border-radius: 0px !important; background-color: transparent;\"></iframe>'}},children:/*#__PURE__*/_jsx(Embed,{height:\"100%\",html:'<iframe src=\"https://embeds.beehiiv.com/0fb9e188-1558-4959-a733-31e6999f3532?slim=true\" data-test-id=\"beehiiv-embed\" width=\"400\" height=\"52\" frameborder=\"0\" scrolling=\"no\" style=\"margin: 0; border-radius: 0px !important; background-color: transparent;\"></iframe>',id:\"NCp1qLrUi\",layoutId:\"NCp1qLrUi\",style:{height:\"100%\",width:\"100%\"},type:\"html\",url:\"\",width:\"100%\"})})})})}),/*#__PURE__*/_jsx(RichTextWithOptimizedAppearEffect,{__fromCanvasComponent:true,animate:animation6,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"12px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(184, 184, 184)\"},children:\"No spam. Just occasional insights and updates.\"})}),className:\"framer-1unemy7\",\"data-framer-appear-id\":\"1unemy7\",fonts:[\"Inter\"],initial:animation3,optimized:true,verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{uB_s4ryfa:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+-14),pixelHeight:1265,pixelWidth:2e3,positionX:\"66.4%\",positionY:\"19.8%\",sizes:`calc(${componentViewport?.width||\"100vw\"} + 21px)`,src:\"https://framerusercontent.com/images/7aRroLCxS35Ac7gguAQSTDk5BQ.jpg\",srcSet:\"https://framerusercontent.com/images/7aRroLCxS35Ac7gguAQSTDk5BQ.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/7aRroLCxS35Ac7gguAQSTDk5BQ.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/7aRroLCxS35Ac7gguAQSTDk5BQ.jpg 2000w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:1265,pixelWidth:2e3,positionX:\"66.4%\",positionY:\"19.8%\",sizes:`calc(${componentViewport?.width||\"100vw\"} + 21px)`,src:\"https://framerusercontent.com/images/7aRroLCxS35Ac7gguAQSTDk5BQ.jpg\",srcSet:\"https://framerusercontent.com/images/7aRroLCxS35Ac7gguAQSTDk5BQ.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/7aRroLCxS35Ac7gguAQSTDk5BQ.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/7aRroLCxS35Ac7gguAQSTDk5BQ.jpg 2000w\"},className:\"framer-1w2wzoi\"})})]}),/*#__PURE__*/_jsxs(MotionDivWithOptimizedAppearEffect,{animate:animation7,className:\"framer-1j21ph9\",\"data-framer-appear-id\":\"1j21ph9\",\"data-framer-name\":\"featured by\",initial:animation8,optimized:true,style:{transformPerspective:1200},children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW5zdHJ1bWVudCBTYW5zLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Instrument Sans\", \"Instrument Sans Placeholder\", sans-serif',\"--framer-line-height\":\"170%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-7da30547-4673-4b68-90cc-0020047cfc1f, rgb(185, 187, 193))\"},children:\"As seen on:\"})}),className:\"framer-10vuwph\",\"data-framer-name\":\"Title\",fonts:[\"GF;Instrument Sans-regular\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-ouizve-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"C3XPhF9MU\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Ticker,{alignment:\"center\",direction:\"left\",fadeOptions:{fadeAlpha:0,fadeContent:true,fadeInset:0,fadeWidth:25,overflow:false},gap:40,height:\"100%\",hoverFactor:.2,id:\"C3XPhF9MU\",layoutId:\"C3XPhF9MU\",padding:10,paddingBottom:10,paddingLeft:10,paddingPerSide:false,paddingRight:10,paddingTop:10,sizingOptions:{heightType:true,widthType:true},slots:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:50,intrinsicWidth:309.5,pixelHeight:100,pixelWidth:619,sizes:\"185.5px\",src:\"https://framerusercontent.com/images/ZDM7JP6rHmvnEfhI5BDs7P35I.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/ZDM7JP6rHmvnEfhI5BDs7P35I.png?scale-down-to=512 512w,https://framerusercontent.com/images/ZDM7JP6rHmvnEfhI5BDs7P35I.png 619w\"},className:\"framer-hmv36a\",\"data-framer-name\":\"Hackernoon\"}),/*#__PURE__*/_jsx(Link,{href:\"https://www.notion.com/templates/dream-journal-3\",motionChild:true,nodeId:\"UUWexsTWS\",children:/*#__PURE__*/_jsx(Image,{as:\"a\",background:{alt:\"\",fit:\"fill\",intrinsicHeight:95,intrinsicWidth:264,pixelHeight:190,pixelWidth:528,sizes:\"111px\",src:\"https://framerusercontent.com/images/1viCT9zoFKastTn0ETMqtCoCBIQ.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/1viCT9zoFKastTn0ETMqtCoCBIQ.png?scale-down-to=512 512w,https://framerusercontent.com/images/1viCT9zoFKastTn0ETMqtCoCBIQ.png 528w\"},className:\"framer-vsifa3 framer-lux5qc\",\"data-framer-name\":\"Notion\"})}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-yj0ano\",\"data-framer-name\":\"HBR\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:259.5,intrinsicWidth:317.5,pixelHeight:195,pixelWidth:424,positionX:\"left\",positionY:\"center\",src:\"https://framerusercontent.com/images/kpa04UjrMs6fXHhcm0W2UeOwnE.png\"},className:\"framer-1q1emrc\",\"data-framer-name\":\"Image\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",intrinsicHeight:259.5,intrinsicWidth:317.5,pixelHeight:69,pixelWidth:397,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/PM6ZATKe0XifMQw4Z5AkTbEEBaM.png\"},className:\"framer-1au19fk\",\"data-framer-name\":\"Image\"})]}),/*#__PURE__*/_jsx(Link,{href:\"https://www.discovermagazine.com/environment/can-the-blockchain-give-this-island-nation-threatened-by-climate-change-a\",motionChild:true,nodeId:\"VPgcP_lKD\",children:/*#__PURE__*/_jsx(Image,{as:\"a\",background:{alt:\"\",fit:\"fill\",intrinsicHeight:149,intrinsicWidth:455.5,pixelHeight:298,pixelWidth:911,sizes:\"122.5px\",src:\"https://framerusercontent.com/images/mSLE73CycNQLmjMTh099HyHYPjc.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/mSLE73CycNQLmjMTh099HyHYPjc.png?scale-down-to=512 512w,https://framerusercontent.com/images/mSLE73CycNQLmjMTh099HyHYPjc.png 911w\"},className:\"framer-5sr6zd framer-lux5qc\",\"data-framer-name\":\"Discover\"})}),/*#__PURE__*/_jsx(Link,{href:\"https://www.abc.net.au/news/2022-06-16/tuvalu-blockchain-pacific-island-george-siosi-samuels/101123844\",motionChild:true,nodeId:\"qWIiAkqN8\",children:/*#__PURE__*/_jsx(Image,{as:\"a\",background:{alt:\"\",fit:\"fill\",intrinsicHeight:101,intrinsicWidth:500,pixelHeight:202,pixelWidth:1e3,sizes:\"149px\",src:\"https://framerusercontent.com/images/Bjmap5K7lSQIxSLJVdxULmA0m7s.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/Bjmap5K7lSQIxSLJVdxULmA0m7s.png?scale-down-to=512 512w,https://framerusercontent.com/images/Bjmap5K7lSQIxSLJVdxULmA0m7s.png 1000w\"},className:\"framer-49b54v framer-lux5qc\",\"data-framer-name\":\"ABC\"})}),/*#__PURE__*/_jsx(Link,{href:\"https://restofworld.org/2020/the-domain-name-is-the-new-natural-resource/\",motionChild:true,nodeId:\"EywJG_WRQ\",children:/*#__PURE__*/_jsx(Image,{as:\"a\",background:{alt:\"\",fit:\"fill\",intrinsicHeight:250,intrinsicWidth:450,pixelHeight:184,pixelWidth:900,sizes:\"188px\",src:\"https://framerusercontent.com/images/E0b8o5m4o7lHNmj7rl8PvWyouU.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/E0b8o5m4o7lHNmj7rl8PvWyouU.png?scale-down-to=512 512w,https://framerusercontent.com/images/E0b8o5m4o7lHNmj7rl8PvWyouU.png 900w\"},className:\"framer-1yyvc24 framer-lux5qc\",\"data-framer-name\":\"Rest of World\"})}),/*#__PURE__*/_jsx(Link,{href:\"https://finance.yahoo.com/news/tuvalu-embarks-worlds-first-national-140000355.html\",motionChild:true,nodeId:\"cTV4MDu4y\",children:/*#__PURE__*/_jsx(Image,{as:\"a\",background:{alt:\"\",fit:\"fill\",intrinsicHeight:219.5,intrinsicWidth:600,pixelHeight:439,pixelWidth:1200,sizes:\"109.5px\",src:\"https://framerusercontent.com/images/nq2WgtISJh4Q5tSfjAM43As.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/nq2WgtISJh4Q5tSfjAM43As.png?scale-down-to=512 512w,https://framerusercontent.com/images/nq2WgtISJh4Q5tSfjAM43As.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/nq2WgtISJh4Q5tSfjAM43As.png 1200w\"},className:\"framer-feobln framer-lux5qc\",\"data-framer-name\":\"Yahoo\"})}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:131,intrinsicWidth:681,pixelHeight:262,pixelWidth:1362,sizes:\"156px\",src:\"https://framerusercontent.com/images/U0klBI8vrctDQ1cMHR2Jp9bK8yE.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/U0klBI8vrctDQ1cMHR2Jp9bK8yE.png?scale-down-to=512 512w,https://framerusercontent.com/images/U0klBI8vrctDQ1cMHR2Jp9bK8yE.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/U0klBI8vrctDQ1cMHR2Jp9bK8yE.png 1362w\"},className:\"framer-195t1zb\",\"data-framer-name\":\"Coingeek\"})],speed:18,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-ddwr66\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-17r30l9\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-7b2j38\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-658ies\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-1fusn3s\",\"data-styles-preset\":\"lR7uwT_Qq\",style:{\"--framer-text-alignment\":\"center\"},children:\"Who I am \"})}),className:\"framer-1ggg6a7\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{uB_s4ryfa:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{className:\"framer-styles-preset-1ld219a\",\"data-styles-preset\":\"pSQIblWJz\",children:[/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"rgb(138, 138, 138)\"},children:\"I'm George, your Digital Wayfinder. In a world overwhelmed by rapid technological change, especially now with AI, I\u2019m here to guide you through the vast digital ocean. \"}),/*#__PURE__*/_jsx(\"br\",{}),/*#__PURE__*/_jsx(\"br\",{}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"rgb(138, 138, 138)\"},children:\"As an entrepreneurial consultant, strategist, and micropreneur advocate, I\u2019ve spent years helping people and organizations navigate the intersection of community, culture, and technology. From getting \"}),/*#__PURE__*/_jsx(Link,{href:\"https://slack.com/\",motionChild:true,nodeId:\"PGydwQbDR\",openInNewTab:true,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-10nxeut\",\"data-styles-preset\":\"B2blYzyDg\",children:/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"rgb(138, 138, 138)\"},children:\"Slack\"})})}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"rgb(138, 138, 138)\"},children:\" its first enterprise customer in Asia-Pacific (now worth $26.5 billion), to introducing blockchain to the \"}),/*#__PURE__*/_jsx(Link,{href:\"https://www.discovermagazine.com/environment/can-the-blockchain-give-this-island-nation-threatened-by-climate-change-a\",motionChild:true,nodeId:\"PGydwQbDR\",openInNewTab:true,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-10nxeut\",\"data-styles-preset\":\"B2blYzyDg\",children:/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"rgb(138, 138, 138)\"},children:\"Government of Tuvalu\"})})}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"rgb(138, 138, 138)\"},children:\", to landing investment for my last Web3 startup from \"}),/*#__PURE__*/_jsx(Link,{href:\"https://coingeek.com/hona-secures-first-investment-from-silicon-valleys-draper-university-ventures/\",motionChild:true,nodeId:\"PGydwQbDR\",openInNewTab:true,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-10nxeut\",\"data-styles-preset\":\"B2blYzyDg\",children:/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"rgb(138, 138, 138)\"},children:\"billionaire Tim Draper\"})})}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"rgb(138, 138, 138)\"},children:\". I innovate while staying true to people's roots or values.\"}),/*#__PURE__*/_jsx(\"br\",{}),/*#__PURE__*/_jsx(\"br\",{}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"rgb(138, 138, 138)\"},children:\"Whether you\u2019re a solopreneur looking to \u2018get stuff done,\u2019 a small business owner building a micro empire, or an enterprise leader driving digital transformation \u2014 I\u2019ll show you how to leverage tools, trends, and strategies to achieve your goals. \"}),/*#__PURE__*/_jsx(\"br\",{}),/*#__PURE__*/_jsx(\"br\",{}),/*#__PURE__*/_jsx(Link,{href:{webPageId:\"HZ4kRhk_a\"},motionChild:true,nodeId:\"PGydwQbDR\",openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-10nxeut\",\"data-styles-preset\":\"B2blYzyDg\",children:/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"rgb(138, 138, 138)\"},children:\"Learn more\u2026\"})})})]})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h3\",{className:\"framer-styles-preset-1uq2rdh\",\"data-styles-preset\":\"CdisBXYgZ\",style:{\"--framer-text-color\":\"rgb(138, 138, 138)\"},children:[\"I'm George, your Digital Wayfinder. In a world overwhelmed by rapid technological change, especially now with AI, I\u2019m here to guide you through the vast digital ocean. \",/*#__PURE__*/_jsx(\"br\",{}),/*#__PURE__*/_jsx(\"br\",{}),\"As an entrepreneurial consultant, strategist, and micropreneur advocate, I\u2019ve spent years helping people and organizations navigate the intersection of community, culture, and technology. From getting \",/*#__PURE__*/_jsx(Link,{href:\"https://slack.com/\",motionChild:true,nodeId:\"PGydwQbDR\",openInNewTab:true,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-10nxeut\",\"data-styles-preset\":\"B2blYzyDg\",children:\"Slack\"})}),\" its first enterprise customer in Asia-Pacific (now worth $26.5 billion), to introducing blockchain to the \",/*#__PURE__*/_jsx(Link,{href:\"https://www.discovermagazine.com/environment/can-the-blockchain-give-this-island-nation-threatened-by-climate-change-a\",motionChild:true,nodeId:\"PGydwQbDR\",openInNewTab:true,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-10nxeut\",\"data-styles-preset\":\"B2blYzyDg\",children:\"Government of Tuvalu\"})}),\", to landing investment for my last Web3 startup from \",/*#__PURE__*/_jsx(Link,{href:\"https://coingeek.com/hona-secures-first-investment-from-silicon-valleys-draper-university-ventures/\",motionChild:true,nodeId:\"PGydwQbDR\",openInNewTab:true,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-10nxeut\",\"data-styles-preset\":\"B2blYzyDg\",children:\"billionaire Tim Draper\"})}),\". I innovate while staying true to people's roots or values.\",/*#__PURE__*/_jsx(\"br\",{}),/*#__PURE__*/_jsx(\"br\",{}),\"Whether you\u2019re a solopreneur looking to \u2018get stuff done,\u2019 a small business owner building a micro empire, or an enterprise leader driving digital transformation \u2014 I\u2019ll show you how to leverage tools, trends, and strategies to achieve your goals. \",/*#__PURE__*/_jsx(\"br\",{}),/*#__PURE__*/_jsx(\"br\",{}),/*#__PURE__*/_jsx(Link,{href:{webPageId:\"HZ4kRhk_a\"},motionChild:true,nodeId:\"PGydwQbDR\",openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-10nxeut\",\"data-styles-preset\":\"B2blYzyDg\",children:\"Learn more\u2026\"})})]})}),className:\"framer-dil7i6\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]})})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1mf3z19\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-4b3kd4\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1x348v6\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-1fusn3s\",\"data-styles-preset\":\"lR7uwT_Qq\",style:{\"--framer-text-alignment\":\"center\"},children:\"What I Do\"})}),className:\"framer-1j440ux\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-1q2d1kq\",\"data-styles-preset\":\"EGXY9wIfl\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(148, 148, 148)\"},children:\"Navigate, build, and guide digital ventures. All while keeping human roots and values aligned.\"})}),className:\"framer-1xl9cgc\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1rq959\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{jSzOmigZ_:{width:`max((min(${componentViewport?.width||\"100vw\"} - 160px, 800px) - 40px) / 2, 50px)`},uB_s4ryfa:{width:`min(${componentViewport?.width||\"100vw\"} - 80px, 800px)`,y:(componentViewport?.y||0)+0+1196.2+80+0+0+127+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:133,width:\"380px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-r9yswh-container\",nodeId:\"fL5c5x0y_\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Card,{AtJgM9mfy:\"https://gsdglobal.co\",bXBvvzwxA:\"gsdglobal.co\",CJWg1Ce9c:\"10px\",d_OFx6ACX:20,D1wNQqEjb:\"Through GSD Global, I provide systems and support to help solopreneurs (and digital nomads) stay focused and achieve wins daily, weekly, and monthly.\",F6NJWQD8d:\"rgb(240, 240, 240)\",height:\"100%\",id:\"fL5c5x0y_\",kh7ZbIHoJ:\"Productivity & Accountability\",layoutId:\"fL5c5x0y_\",N8raMheYQ:true,s01juPZxI:\"var(--token-bfbe4ed3-199e-4577-86a5-74b7c5fddae4, rgb(194, 194, 194))\",style:{width:\"100%\"},uJhIpRtZU:/*#__PURE__*/_jsx(React.Fragment,{}),VYSLhfgwD:\"rgb(0, 0, 0)\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{jSzOmigZ_:{width:`max((min(${componentViewport?.width||\"100vw\"} - 160px, 800px) - 40px) / 2, 50px)`},uB_s4ryfa:{width:`min(${componentViewport?.width||\"100vw\"} - 80px, 800px)`,y:(componentViewport?.y||0)+0+1196.2+80+0+0+127+0+173}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:133,width:\"380px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-13kcssu-container\",nodeId:\"HcOvWu2OL\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Card,{AtJgM9mfy:\"https://microempires.cc\",bXBvvzwxA:\"microempires.cc\",CJWg1Ce9c:\"10px\",d_OFx6ACX:20,D1wNQqEjb:\"Once you're ready to grow a team, I teach you how to build small, private, leveraged businesses that command higher profits in the AI era.\",F6NJWQD8d:\"rgb(240, 240, 240)\",height:\"100%\",id:\"HcOvWu2OL\",kh7ZbIHoJ:\"Business Growth & Alignment\",layoutId:\"HcOvWu2OL\",N8raMheYQ:true,s01juPZxI:\"var(--token-bfbe4ed3-199e-4577-86a5-74b7c5fddae4, rgb(194, 194, 194))\",style:{width:\"100%\"},uJhIpRtZU:/*#__PURE__*/_jsx(React.Fragment,{}),VYSLhfgwD:\"rgb(0, 0, 0)\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{jSzOmigZ_:{width:`max((min(${componentViewport?.width||\"100vw\"} - 160px, 800px) - 40px) / 2, 50px)`},uB_s4ryfa:{width:`min(${componentViewport?.width||\"100vw\"} - 80px, 800px)`,y:(componentViewport?.y||0)+0+1196.2+80+0+0+127+0+346}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:133,width:\"380px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-1crvuwg-container\",nodeId:\"ES8k3kY4I\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Card,{AtJgM9mfy:\"https://faiacorp.com\",bXBvvzwxA:\"faiacorp.com\",CJWg1Ce9c:\"10px\",d_OFx6ACX:20,D1wNQqEjb:\"If you have a growing community, I share coaching, advisory & fractional services to help guide your efforts. With over 10+ years experience building communities online & offline.\",F6NJWQD8d:\"rgb(240, 240, 240)\",height:\"100%\",id:\"ES8k3kY4I\",kh7ZbIHoJ:\"Community Strategy & Advisory\",layoutId:\"ES8k3kY4I\",N8raMheYQ:true,s01juPZxI:\"var(--token-bfbe4ed3-199e-4577-86a5-74b7c5fddae4, rgb(194, 194, 194))\",style:{width:\"100%\"},uJhIpRtZU:/*#__PURE__*/_jsx(React.Fragment,{}),VYSLhfgwD:\"rgb(0, 0, 0)\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{jSzOmigZ_:{width:`max((min(${componentViewport?.width||\"100vw\"} - 160px, 800px) - 40px) / 2, 50px)`},uB_s4ryfa:{width:`min(${componentViewport?.width||\"100vw\"} - 80px, 800px)`,y:(componentViewport?.y||0)+0+1196.2+80+0+0+127+0+519}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:133,width:\"380px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-23z94p-container\",nodeId:\"yqgP4MkHr\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Card,{AtJgM9mfy:\"https://cstack.ai\",bXBvvzwxA:\"cstack.ai\",CJWg1Ce9c:\"10px\",d_OFx6ACX:40,D1wNQqEjb:\"Through CSTACK, a proprietary platform, I help mid-to-large organizations align their tools, culture, and business for sustainable success.\",F6NJWQD8d:\"rgb(240, 240, 240)\",height:\"100%\",id:\"yqgP4MkHr\",kh7ZbIHoJ:\"Digital Transformation & Technology Integration\",layoutId:\"yqgP4MkHr\",N8raMheYQ:true,s01juPZxI:\"var(--token-bfbe4ed3-199e-4577-86a5-74b7c5fddae4, rgb(194, 194, 194))\",style:{width:\"100%\"},uJhIpRtZU:/*#__PURE__*/_jsx(React.Fragment,{}),VYSLhfgwD:\"rgb(0, 0, 0)\",width:\"100%\"})})})})]})]})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-c13wh5\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-lvdowb\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1exvkec\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-1fusn3s\",\"data-styles-preset\":\"lR7uwT_Qq\",style:{\"--framer-text-alignment\":\"center\"},children:\"Who & How I Help\"})}),className:\"framer-1crnhcw\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-1q2d1kq\",\"data-styles-preset\":\"EGXY9wIfl\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(148, 148, 148)\"},children:\"Bridge digital divides. Align human values.\"})}),className:\"framer-1n3vsk2\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1ig0ta5\",\"data-framer-name\":\"Cards\",children:[/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition7},__framer__animateOnce:true,__framer__enter:animation9,__framer__exit:animation10,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1kskrmh\",\"data-framer-name\":\"Card\",style:{transformPerspective:1200},children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{jSzOmigZ_:{background:{alt:\"profile image\",fit:\"fill\",intrinsicHeight:4082,intrinsicWidth:6016,pixelHeight:768,pixelWidth:1024,sizes:`max((min(${componentViewport?.width||\"100vw\"} - 100px, 800px) - 40px) / 2, 50px)`,src:\"https://framerusercontent.com/images/L0DWVlYaCH8RxobKhzp5JF9GT4.jpg\",srcSet:\"https://framerusercontent.com/images/L0DWVlYaCH8RxobKhzp5JF9GT4.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/L0DWVlYaCH8RxobKhzp5JF9GT4.jpg 1024w\"}},uB_s4ryfa:{background:{alt:\"profile image\",fit:\"fill\",intrinsicHeight:4082,intrinsicWidth:6016,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+2135.2+80+0+0+127+0+0+0+0),pixelHeight:768,pixelWidth:1024,sizes:`min(${componentViewport?.width||\"100vw\"} - 80px, 800px)`,src:\"https://framerusercontent.com/images/L0DWVlYaCH8RxobKhzp5JF9GT4.jpg\",srcSet:\"https://framerusercontent.com/images/L0DWVlYaCH8RxobKhzp5JF9GT4.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/L0DWVlYaCH8RxobKhzp5JF9GT4.jpg 1024w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"profile image\",fit:\"fill\",intrinsicHeight:4082,intrinsicWidth:6016,pixelHeight:768,pixelWidth:1024,sizes:`max((min(${componentViewport?.width||\"100vw\"}, 800px) - 40px) / 2, 50px)`,src:\"https://framerusercontent.com/images/L0DWVlYaCH8RxobKhzp5JF9GT4.jpg\",srcSet:\"https://framerusercontent.com/images/L0DWVlYaCH8RxobKhzp5JF9GT4.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/L0DWVlYaCH8RxobKhzp5JF9GT4.jpg 1024w\"},className:\"framer-3ql1am\",\"data-framer-name\":\"Image\"})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1sdberd\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1upuc93\",children:[/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition8},__framer__animateOnce:true,__framer__enter:animation11,__framer__exit:animation12,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{className:\"framer-styles-preset-p1tuf8\",\"data-styles-preset\":\"jDW9Hd_vp\",style:{\"--framer-text-alignment\":\"left\"},children:\"Solopreneurs\"})}),className:\"framer-1gkcff6\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition9},__framer__animateOnce:true,__framer__enter:animation11,__framer__exit:animation13,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{className:\"framer-styles-preset-jvokhl\",\"data-styles-preset\":\"dKmjN5x19\",children:[\"Accountability systems, productivity hacks, and guidance on leveraging AI tools to achieve personal and professional goals at \",/*#__PURE__*/_jsx(Link,{href:\"https://gsdglobal.co\",motionChild:true,nodeId:\"tvB0MS_s0\",openInNewTab:true,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-10nxeut\",\"data-styles-preset\":\"B2blYzyDg\",children:\"GSD Global\"})}),\".\"]})}),className:\"framer-v12sqw\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})})]}),/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition7},__framer__animateOnce:true,__framer__enter:animation9,__framer__exit:animation10,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1jjnu61\",\"data-framer-name\":\"Card\",style:{transformPerspective:1200},children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{jSzOmigZ_:{background:{alt:\"profile image\",fit:\"fill\",intrinsicHeight:4082,intrinsicWidth:6016,pixelHeight:1492,pixelWidth:2048,positionX:\"50.3%\",positionY:\"24.2%\",sizes:`max((min(${componentViewport?.width||\"100vw\"} - 100px, 800px) - 40px) / 2, 50px)`,src:\"https://framerusercontent.com/images/f9SyUCPTmXmjl4XFjqtQk5BHAQo.jpeg\",srcSet:\"https://framerusercontent.com/images/f9SyUCPTmXmjl4XFjqtQk5BHAQo.jpeg?scale-down-to=512 512w,https://framerusercontent.com/images/f9SyUCPTmXmjl4XFjqtQk5BHAQo.jpeg?scale-down-to=1024 1024w,https://framerusercontent.com/images/f9SyUCPTmXmjl4XFjqtQk5BHAQo.jpeg 2048w\"}},uB_s4ryfa:{background:{alt:\"profile image\",fit:\"fill\",intrinsicHeight:4082,intrinsicWidth:6016,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+2135.2+80+0+0+127+0+484.2+0+0),pixelHeight:1492,pixelWidth:2048,positionX:\"50.3%\",positionY:\"24.2%\",sizes:`min(${componentViewport?.width||\"100vw\"} - 80px, 800px)`,src:\"https://framerusercontent.com/images/f9SyUCPTmXmjl4XFjqtQk5BHAQo.jpeg\",srcSet:\"https://framerusercontent.com/images/f9SyUCPTmXmjl4XFjqtQk5BHAQo.jpeg?scale-down-to=512 512w,https://framerusercontent.com/images/f9SyUCPTmXmjl4XFjqtQk5BHAQo.jpeg?scale-down-to=1024 1024w,https://framerusercontent.com/images/f9SyUCPTmXmjl4XFjqtQk5BHAQo.jpeg 2048w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"profile image\",fit:\"fill\",intrinsicHeight:4082,intrinsicWidth:6016,pixelHeight:1492,pixelWidth:2048,positionX:\"50.3%\",positionY:\"24.2%\",sizes:`max((min(${componentViewport?.width||\"100vw\"}, 800px) - 40px) / 2, 50px)`,src:\"https://framerusercontent.com/images/f9SyUCPTmXmjl4XFjqtQk5BHAQo.jpeg\",srcSet:\"https://framerusercontent.com/images/f9SyUCPTmXmjl4XFjqtQk5BHAQo.jpeg?scale-down-to=512 512w,https://framerusercontent.com/images/f9SyUCPTmXmjl4XFjqtQk5BHAQo.jpeg?scale-down-to=1024 1024w,https://framerusercontent.com/images/f9SyUCPTmXmjl4XFjqtQk5BHAQo.jpeg 2048w\"},className:\"framer-od7nh0\",\"data-framer-name\":\"Image\"})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-hiwda9\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-v7vtcg\",children:[/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition8},__framer__animateOnce:true,__framer__enter:animation11,__framer__exit:animation12,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{className:\"framer-styles-preset-p1tuf8\",\"data-styles-preset\":\"jDW9Hd_vp\",style:{\"--framer-text-alignment\":\"left\"},children:\"Micropreneurs\"})}),className:\"framer-u4i9uf\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition9},__framer__animateOnce:true,__framer__enter:animation11,__framer__exit:animation13,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{className:\"framer-styles-preset-jvokhl\",\"data-styles-preset\":\"dKmjN5x19\",children:[\"I \",/*#__PURE__*/_jsx(\"strong\",{children:\"teach\"}),\" and \",/*#__PURE__*/_jsx(\"strong\",{children:\"guide\"}),\" \",/*#__PURE__*/_jsx(\"em\",{children:\"micropreneurs\"}),\" \u2014 leaders with small, agile teams \u2014 how to build \",/*#__PURE__*/_jsx(Link,{href:\"https://microempires.cc\",motionChild:true,nodeId:\"iHvRDj68E\",openInNewTab:true,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-10nxeut\",\"data-styles-preset\":\"B2blYzyDg\",children:\"Micro Empires\"})}),\" that command higher profits, using tech (like AI).\"]})}),className:\"framer-1qdn06n\",fonts:[\"Inter\",\"Inter-Bold\",\"Inter-BoldItalic\",\"Inter-Italic\"],verticalAlignment:\"top\",withExternalLayout:true})]})})]}),/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition7},__framer__animateOnce:true,__framer__enter:animation9,__framer__exit:animation10,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1lcbx9t\",\"data-framer-name\":\"Card\",style:{transformPerspective:1200},children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{jSzOmigZ_:{background:{alt:\"profile image\",fit:\"fill\",intrinsicHeight:4082,intrinsicWidth:6016,pixelHeight:738,pixelWidth:1920,sizes:`max((min(${componentViewport?.width||\"100vw\"} - 100px, 800px) - 40px) / 2, 50px)`,src:\"https://framerusercontent.com/images/2mnt932RJgepEyHp0PpbyJKUB4.jpg\",srcSet:\"https://framerusercontent.com/images/2mnt932RJgepEyHp0PpbyJKUB4.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/2mnt932RJgepEyHp0PpbyJKUB4.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/2mnt932RJgepEyHp0PpbyJKUB4.jpg 1920w\"}},uB_s4ryfa:{background:{alt:\"profile image\",fit:\"fill\",intrinsicHeight:4082,intrinsicWidth:6016,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+2135.2+80+0+0+127+0+968.4+0+0),pixelHeight:738,pixelWidth:1920,sizes:`min(${componentViewport?.width||\"100vw\"} - 80px, 800px)`,src:\"https://framerusercontent.com/images/2mnt932RJgepEyHp0PpbyJKUB4.jpg\",srcSet:\"https://framerusercontent.com/images/2mnt932RJgepEyHp0PpbyJKUB4.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/2mnt932RJgepEyHp0PpbyJKUB4.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/2mnt932RJgepEyHp0PpbyJKUB4.jpg 1920w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"profile image\",fit:\"fill\",intrinsicHeight:4082,intrinsicWidth:6016,pixelHeight:738,pixelWidth:1920,sizes:`max((min(${componentViewport?.width||\"100vw\"}, 800px) - 40px) / 2, 50px)`,src:\"https://framerusercontent.com/images/2mnt932RJgepEyHp0PpbyJKUB4.jpg\",srcSet:\"https://framerusercontent.com/images/2mnt932RJgepEyHp0PpbyJKUB4.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/2mnt932RJgepEyHp0PpbyJKUB4.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/2mnt932RJgepEyHp0PpbyJKUB4.jpg 1920w\"},className:\"framer-l09pgw\",\"data-framer-name\":\"Image\"})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-or1xvh\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-11ag5lx\",children:[/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition8},__framer__animateOnce:true,__framer__enter:animation11,__framer__exit:animation12,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{className:\"framer-styles-preset-p1tuf8\",\"data-styles-preset\":\"jDW9Hd_vp\",style:{\"--framer-text-alignment\":\"left\"},children:\"Community Leaders\"})}),className:\"framer-ithdvb\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition9},__framer__animateOnce:true,__framer__enter:animation11,__framer__exit:animation13,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{className:\"framer-styles-preset-jvokhl\",\"data-styles-preset\":\"dKmjN5x19\",children:[\"I help leaders with growing communities \u2014 through \",/*#__PURE__*/_jsx(\"strong\",{children:\"coaching\"}),\" or \",/*#__PURE__*/_jsx(\"strong\",{children:\"advisory\"}),\" services \u2014 integrate the latest tools and emerging technologies. \"]})}),className:\"framer-gnfjh6\",fonts:[\"Inter\",\"Inter-Bold\"],verticalAlignment:\"top\",withExternalLayout:true})]})})]}),/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition7},__framer__animateOnce:true,__framer__enter:animation9,__framer__exit:animation10,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1qoi38b\",\"data-framer-name\":\"Card\",style:{transformPerspective:1200},children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{jSzOmigZ_:{background:{alt:\"profile image\",fit:\"fill\",intrinsicHeight:4082,intrinsicWidth:6016,pixelHeight:360,pixelWidth:730,sizes:`max((min(${componentViewport?.width||\"100vw\"} - 100px, 800px) - 40px) / 2, 50px)`,src:\"https://framerusercontent.com/images/V5sIYnwiSCMBI1kDvyuAcisMu8.jpeg\",srcSet:\"https://framerusercontent.com/images/V5sIYnwiSCMBI1kDvyuAcisMu8.jpeg?scale-down-to=512 512w,https://framerusercontent.com/images/V5sIYnwiSCMBI1kDvyuAcisMu8.jpeg 730w\"}},uB_s4ryfa:{background:{alt:\"profile image\",fit:\"fill\",intrinsicHeight:4082,intrinsicWidth:6016,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+2135.2+80+0+0+127+0+1452.6+0+0),pixelHeight:360,pixelWidth:730,sizes:`min(${componentViewport?.width||\"100vw\"} - 80px, 800px)`,src:\"https://framerusercontent.com/images/V5sIYnwiSCMBI1kDvyuAcisMu8.jpeg\",srcSet:\"https://framerusercontent.com/images/V5sIYnwiSCMBI1kDvyuAcisMu8.jpeg?scale-down-to=512 512w,https://framerusercontent.com/images/V5sIYnwiSCMBI1kDvyuAcisMu8.jpeg 730w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"profile image\",fit:\"fill\",intrinsicHeight:4082,intrinsicWidth:6016,pixelHeight:360,pixelWidth:730,sizes:`max((min(${componentViewport?.width||\"100vw\"}, 800px) - 40px) / 2, 50px)`,src:\"https://framerusercontent.com/images/V5sIYnwiSCMBI1kDvyuAcisMu8.jpeg\",srcSet:\"https://framerusercontent.com/images/V5sIYnwiSCMBI1kDvyuAcisMu8.jpeg?scale-down-to=512 512w,https://framerusercontent.com/images/V5sIYnwiSCMBI1kDvyuAcisMu8.jpeg 730w\"},className:\"framer-1wp9wow\",\"data-framer-name\":\"Image\"})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1x9fspu\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-17ps1lg\",children:[/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition8},__framer__animateOnce:true,__framer__enter:animation11,__framer__exit:animation12,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{className:\"framer-styles-preset-p1tuf8\",\"data-styles-preset\":\"jDW9Hd_vp\",style:{\"--framer-text-alignment\":\"left\"},children:\"Corporate Leaders\"})}),className:\"framer-1kl4zbe\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition9},__framer__animateOnce:true,__framer__enter:animation11,__framer__exit:animation13,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{className:\"framer-styles-preset-jvokhl\",\"data-styles-preset\":\"dKmjN5x19\",children:[\"I offer \",/*#__PURE__*/_jsx(\"strong\",{children:\"consulting\"}),\" and \",/*#__PURE__*/_jsx(\"strong\",{children:\"fractional\"}),\" services for enterprises via my consultancy, \",/*#__PURE__*/_jsx(Link,{href:\"https://www.faiacorp.com\",motionChild:true,nodeId:\"NxYnpcqJL\",openInNewTab:true,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-10nxeut\",\"data-styles-preset\":\"B2blYzyDg\",children:\"Fai\u0101\"})}),\". I then align company tools & cultures using \",/*#__PURE__*/_jsx(Link,{href:\"https://cstack.ai\",motionChild:true,nodeId:\"NxYnpcqJL\",openInNewTab:true,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-10nxeut\",\"data-styles-preset\":\"B2blYzyDg\",children:\"CSTACK\"})}),\".\"]})}),className:\"framer-ftnw2m\",fonts:[\"Inter\",\"Inter-Bold\"],verticalAlignment:\"top\",withExternalLayout:true})]})})]})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-jvokhl\",\"data-styles-preset\":\"dKmjN5x19\",children:\"I'm often called upon: \"}),/*#__PURE__*/_jsxs(\"ul\",{className:\"framer-styles-preset-jvokhl\",\"data-styles-preset\":\"dKmjN5x19\",children:[/*#__PURE__*/_jsx(\"li\",{children:/*#__PURE__*/_jsx(\"p\",{children:\"When people feel overwhelmed by rapid technological shifts (e.g., AI adoption) or uncertain about their next steps.\"})}),/*#__PURE__*/_jsx(\"li\",{children:/*#__PURE__*/_jsx(\"p\",{children:\"During pivotal moments\u2014career transitions, business launches, or organizational transformations.\"})}),/*#__PURE__*/_jsx(\"li\",{children:/*#__PURE__*/_jsx(\"p\",{children:\"In critical times of disruption, such as economic shifts or industry-wide changes (e.g. AI).\"})})]}),/*#__PURE__*/_jsxs(\"p\",{className:\"framer-styles-preset-jvokhl\",\"data-styles-preset\":\"dKmjN5x19\",children:[\"So no matter where you are on your journey, \",/*#__PURE__*/_jsxs(\"span\",{style:{\"--framer-text-color\":\"rgb(148, 148, 148)\"},children:[\"if there's a need for \",/*#__PURE__*/_jsx(\"strong\",{children:\"clarity\"}),\", \",/*#__PURE__*/_jsx(\"strong\",{children:\"action\"}),\", or \",/*#__PURE__*/_jsx(\"strong\",{children:\"alignment\"}),\" in the face of change, \"]}),\"I offer tailored guidance to help you move forward confidently.\"]})]}),className:\"framer-ibmqju\",fonts:[\"Inter\",\"Inter-Bold\"],verticalAlignment:\"top\",withExternalLayout:true})]})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1pv2uc0\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-1dd91lc\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-qhjqwt\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-u11bcw\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-1fusn3s\",\"data-styles-preset\":\"lR7uwT_Qq\",style:{\"--framer-text-alignment\":\"center\"},children:\"Why Work With Me?\"})}),className:\"framer-18fpw3l\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h3\",{className:\"framer-styles-preset-1q2d1kq\",\"data-styles-preset\":\"EGXY9wIfl\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(148, 148, 148)\"},children:[\"What sets me apart isn\u2019t just what I do, but \",/*#__PURE__*/_jsx(\"em\",{children:\"how \"}),\"I do it:\"]})}),className:\"framer-c9n4kk\",fonts:[\"Inter\",\"Inter-Italic\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1jo5p4z\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{jSzOmigZ_:{width:`max((min(${componentViewport?.width||\"100vw\"} - 80px, 800px) - 40px) / 2, 50px)`},uB_s4ryfa:{width:`min(${componentViewport?.width||\"100vw\"} - 80px, 800px)`,y:(componentViewport?.y||0)+0+4999+80+0+0+0+0+117+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:133,width:`max((min(${componentViewport?.width||\"100vw\"}, 800px) - 20px) / 2, 50px)`,children:/*#__PURE__*/_jsx(Container,{className:\"framer-knr2lf-container\",nodeId:\"BcYIkDZXB\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Card,{bXBvvzwxA:\"gsdglobal.co\",CJWg1Ce9c:\"0px\",d_OFx6ACX:0,D1wNQqEjb:\"I bridge the gap between individual productivity and enterprise-level strategy, ensuring no part of your journey is left behind.\",F6NJWQD8d:\"rgb(240, 240, 240)\",height:\"100%\",id:\"BcYIkDZXB\",kh7ZbIHoJ:\"Holistic Perspective\",layoutId:\"BcYIkDZXB\",N8raMheYQ:false,s01juPZxI:\"var(--token-bfbe4ed3-199e-4577-86a5-74b7c5fddae4, rgb(194, 194, 194))\",style:{width:\"100%\"},uJhIpRtZU:/*#__PURE__*/_jsx(React.Fragment,{}),VYSLhfgwD:\"rgb(0, 0, 0)\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{jSzOmigZ_:{width:`max((min(${componentViewport?.width||\"100vw\"} - 80px, 800px) - 40px) / 2, 50px)`},uB_s4ryfa:{width:`min(${componentViewport?.width||\"100vw\"} - 80px, 800px)`,y:(componentViewport?.y||0)+0+4999+80+0+0+0+0+117+0+173}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:133,width:`max((min(${componentViewport?.width||\"100vw\"}, 800px) - 20px) / 2, 50px)`,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1ceez0v-container\",nodeId:\"Os9kfHmbx\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Card,{bXBvvzwxA:\"microempires.cc\",CJWg1Ce9c:\"0px\",d_OFx6ACX:0,D1wNQqEjb:'My approach is rooted in pragmatism. You won\u2019t just learn concepts\u2014you\u2019ll implement them immediately. My motto is \"learn to do by doing.\"',F6NJWQD8d:\"rgb(240, 240, 240)\",height:\"100%\",id:\"Os9kfHmbx\",kh7ZbIHoJ:\"Action-Oriented Frameworks\",layoutId:\"Os9kfHmbx\",N8raMheYQ:false,s01juPZxI:\"var(--token-bfbe4ed3-199e-4577-86a5-74b7c5fddae4, rgb(194, 194, 194))\",style:{width:\"100%\"},uJhIpRtZU:/*#__PURE__*/_jsx(React.Fragment,{}),VYSLhfgwD:\"rgb(0, 0, 0)\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{jSzOmigZ_:{width:`max((min(${componentViewport?.width||\"100vw\"} - 80px, 800px) - 40px) / 2, 50px)`},uB_s4ryfa:{width:`min(${componentViewport?.width||\"100vw\"} - 80px, 800px)`,y:(componentViewport?.y||0)+0+4999+80+0+0+0+0+117+0+346}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:133,width:`max((min(${componentViewport?.width||\"100vw\"}, 800px) - 20px) / 2, 50px)`,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1gjylwq-container\",nodeId:\"eGUQfFklG\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Card,{bXBvvzwxA:\"Book a call\",CJWg1Ce9c:\"0px\",d_OFx6ACX:0,D1wNQqEjb:\"I believe in the power of collaboration. Whether it\u2019s through GSD Global\u2019s accountability groups or Micro Empires\u2019 masterminds, you\u2019ll never walk this path alone.\",F6NJWQD8d:\"rgb(240, 240, 240)\",height:\"100%\",id:\"eGUQfFklG\",kh7ZbIHoJ:\"Community-Centric Approach\",layoutId:\"eGUQfFklG\",N8raMheYQ:false,s01juPZxI:\"var(--token-bfbe4ed3-199e-4577-86a5-74b7c5fddae4, rgb(194, 194, 194))\",style:{width:\"100%\"},uJhIpRtZU:/*#__PURE__*/_jsx(React.Fragment,{}),VYSLhfgwD:\"rgb(0, 0, 0)\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{jSzOmigZ_:{width:`max((min(${componentViewport?.width||\"100vw\"} - 80px, 800px) - 40px) / 2, 50px)`},uB_s4ryfa:{width:`min(${componentViewport?.width||\"100vw\"} - 80px, 800px)`,y:(componentViewport?.y||0)+0+4999+80+0+0+0+0+117+0+519}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:133,width:`max((min(${componentViewport?.width||\"100vw\"}, 800px) - 20px) / 2, 50px)`,children:/*#__PURE__*/_jsx(Container,{className:\"framer-c23vcm-container\",nodeId:\"leHT4lQnC\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Card,{bXBvvzwxA:\"Book a call\",CJWg1Ce9c:\"0px\",d_OFx6ACX:0,D1wNQqEjb:\"I specialize in helping smaller players harness AI tools to compete effectively, proving that size doesn\u2019t limit impact. From small things, big things grow, regardless of business stage.\",F6NJWQD8d:\"rgb(240, 240, 240)\",height:\"100%\",id:\"leHT4lQnC\",kh7ZbIHoJ:\"AI-Driven Insights\",layoutId:\"leHT4lQnC\",N8raMheYQ:false,s01juPZxI:\"var(--token-bfbe4ed3-199e-4577-86a5-74b7c5fddae4, rgb(194, 194, 194))\",style:{width:\"100%\"},uJhIpRtZU:/*#__PURE__*/_jsx(React.Fragment,{}),VYSLhfgwD:\"rgb(0, 0, 0)\",width:\"100%\"})})})})]})]})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-54ws11\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-c2jdws\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1955vxh\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-1fusn3s\",\"data-styles-preset\":\"lR7uwT_Qq\",style:{\"--framer-text-alignment\":\"center\"},children:\"Featured Posts\"})}),className:\"framer-ylvm1w\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-v7sz1f\",children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(QueryData,{query:{from:{alias:\"kz3L57p6I\",data:Writings,type:\"Collection\"},limit:{type:\"LiteralValue\",value:3},select:[{collection:\"kz3L57p6I\",name:\"ah_tv23Q6\",type:\"Identifier\"},{collection:\"kz3L57p6I\",name:\"WKNtUyquQ\",type:\"Identifier\"},{collection:\"kz3L57p6I\",name:\"UxHF_cA6U\",type:\"Identifier\"},{collection:\"kz3L57p6I\",name:\"B5A3earfS\",type:\"Identifier\"},{collection:\"kz3L57p6I\",name:\"id\",type:\"Identifier\"}],where:{collection:\"kz3L57p6I\",name:\"Q_MqM3qzp\",type:\"Identifier\"}},children:(collection,paginationInfo,loadMore)=>/*#__PURE__*/_jsx(_Fragment,{children:collection?.map(({ah_tv23Q6:ah_tv23Q6kz3L57p6I,B5A3earfS:B5A3earfSkz3L57p6I,id:idkz3L57p6I,UxHF_cA6U:UxHF_cA6Ukz3L57p6I,WKNtUyquQ:WKNtUyquQkz3L57p6I},index)=>{ah_tv23Q6kz3L57p6I??=\"\";B5A3earfSkz3L57p6I??=\"\";return /*#__PURE__*/_jsx(LayoutGroup,{id:`kz3L57p6I-${idkz3L57p6I}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{ah_tv23Q6:ah_tv23Q6kz3L57p6I},children:/*#__PURE__*/_jsx(Link,{href:{pathVariables:{ah_tv23Q6:ah_tv23Q6kz3L57p6I},webPageId:\"M8fQLIVRl\"},motionChild:true,nodeId:\"lyNWCXdcI\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-1u98xo6 framer-lux5qc\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-jj0htr\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{uB_s4ryfa:{y:(componentViewport?.y||0)+0+5928+80+0+0+80.6+0+0+0+20+160}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:32,width:\"360px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-yv40zc-container\",nodeId:\"mgjPI3zPK\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Tag,{BOt5xunoC:\"rgba(0, 149, 255, 0)\",DPoJh6N8P:\"rgb(0, 0, 0)\",eu3KxgPGk:\"10px\",height:\"100%\",id:\"mgjPI3zPK\",JWKvQVzpI:true,layoutId:\"mgjPI3zPK\",lKxv1Pt6E:14,mbIIU_u7b:{borderColor:\"rgba(0, 0, 0, 0.1)\",borderStyle:\"solid\",borderWidth:0},q0clq0NKC:enumToDisplayNameFunctions[\"WKNtUyquQ\"]?.(WKNtUyquQkz3L57p6I,activeLocale),style:{width:\"100%\"},TNLvoiFc_:\"rgb(0, 0, 0)\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{jSzOmigZ_:{background:{alt:\"\",fit:\"fill\",sizes:\"220px\",...toResponsiveImage(UxHF_cA6Ukz3L57p6I)}},uB_s4ryfa:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+5928+80+0+0+80.6+0+0+0+20+0),sizes:\"327px\",...toResponsiveImage(UxHF_cA6Ukz3L57p6I)}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",sizes:\"271px\",...toResponsiveImage(UxHF_cA6Ukz3L57p6I)},className:\"framer-1qv3a8z\"})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{className:\"framer-styles-preset-13ipzp4\",\"data-styles-preset\":\"qgIHCrfgM\",style:{\"--framer-text-alignment\":\"center\"},children:\"Introducing Emotelectric Theory\"})}),className:\"framer-zy37ft\",\"data-framer-name\":\"Name\",fonts:[\"Inter\"],text:B5A3earfSkz3L57p6I,verticalAlignment:\"top\",withExternalLayout:true})]})})})})},idkz3L57p6I);})})})})})]})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-6anvgd\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1oe6n8z\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-kb1ip6\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-wx62ii\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-1fusn3s\",\"data-styles-preset\":\"lR7uwT_Qq\",style:{\"--framer-text-alignment\":\"center\"},children:\"Explore My Writings\"})}),className:\"framer-103ynnr\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{className:\"framer-styles-preset-p1tuf8\",\"data-styles-preset\":\"jDW9Hd_vp\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(145, 145, 145)\"},children:\"Insights that bridge past wisdom with thoughtful foresight\"})}),className:\"framer-179m64y\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-yh8iy0\",children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(QueryData,{query:{from:{alias:\"Hkb0XCy5a\",data:Writings,type:\"Collection\"},limit:{type:\"LiteralValue\",value:10},select:[{collection:\"Hkb0XCy5a\",name:\"ah_tv23Q6\",type:\"Identifier\"},{collection:\"Hkb0XCy5a\",name:\"QtAvmVvcq\",type:\"Identifier\"},{collection:\"Hkb0XCy5a\",name:\"B5A3earfS\",type:\"Identifier\"},{collection:\"Hkb0XCy5a\",name:\"id\",type:\"Identifier\"}]},children:(collection1,paginationInfo1,loadMore1)=>/*#__PURE__*/_jsx(_Fragment,{children:collection1?.map(({ah_tv23Q6:ah_tv23Q6Hkb0XCy5a,B5A3earfS:B5A3earfSHkb0XCy5a,id:idHkb0XCy5a,QtAvmVvcq:QtAvmVvcqHkb0XCy5a},index1)=>{ah_tv23Q6Hkb0XCy5a??=\"\";B5A3earfSHkb0XCy5a??=\"\";const textContent=toDateString(QtAvmVvcqHkb0XCy5a,{dateStyle:\"medium\",locale:\"\"},activeLocaleCode);return /*#__PURE__*/_jsx(LayoutGroup,{id:`Hkb0XCy5a-${idHkb0XCy5a}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{ah_tv23Q6:ah_tv23Q6Hkb0XCy5a},children:/*#__PURE__*/_jsx(Link,{href:{pathVariables:{ah_tv23Q6:ah_tv23Q6Hkb0XCy5a},webPageId:\"M8fQLIVRl\"},motionChild:true,nodeId:\"vsQpH3DEi\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-1jdqd7o framer-lux5qc\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-1786bc0\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-yllrjb\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{uB_s4ryfa:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-12tpeyk\",\"data-styles-preset\":\"sMBg6f_RS\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-8f7cb5f4-d37d-4a58-abf0-237a8911d21c, rgb(224, 138, 9))\"},children:\"Dec 21, 2024\"})}),verticalAlignment:\"top\"}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-jvokhl\",\"data-styles-preset\":\"dKmjN5x19\",style:{\"--framer-text-color\":\"var(--token-8f7cb5f4-d37d-4a58-abf0-237a8911d21c, rgb(224, 138, 9))\"},children:\"Content\"})}),className:\"framer-hw7zjf\",fonts:[\"Inter\"],text:textContent,verticalAlignment:\"center\",withExternalLayout:true})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-jvokhl\",\"data-styles-preset\":\"dKmjN5x19\",children:\"Introducing Emotelectric Theory\"})}),className:\"framer-18whthi\",\"data-framer-name\":\"Name\",fonts:[\"Inter\"],text:B5A3earfSHkb0XCy5a,verticalAlignment:\"top\",withExternalLayout:true})]})})})})})},idHkb0XCy5a);})})})})})]})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-hwcdj5\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-2r4f80\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-xolq52\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-139lpor\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-1fusn3s\",\"data-styles-preset\":\"lR7uwT_Qq\",style:{\"--framer-text-alignment\":\"center\"},children:/*#__PURE__*/_jsx(\"strong\",{children:\"Ready to Navigate the Digital Frontier?\"})})}),className:\"framer-xu0r6o\",fonts:[\"Inter\",\"Inter-Bold\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h5\",{className:\"framer-styles-preset-17f4c5u\",\"data-styles-preset\":\"h0Mj5rW10\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(0, 0, 0)\"},children:\"Whether you\u2019re looking to boost your productivity, launch a micro empire, or transform your organization, I\u2019m here to guide you every step of the way.\"})}),className:\"framer-aoteew\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(Link,{href:\"https://cal.com/georgesiosi/30min\",motionChild:true,nodeId:\"mLmpdQmwv\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-ic96fa framer-lux5qc\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1ld219a\",\"data-styles-preset\":\"pSQIblWJz\",style:{\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Book A Call\"})}),className:\"framer-14x7wfo\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})})]})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{uB_s4ryfa:{y:(componentViewport?.y||0)+0+7189.6}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:415,width:componentViewport?.width||\"100vw\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-qgx5ak-container\",nodeId:\"kaqDaOQKz\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{uB_s4ryfa:{variant:\"S6GLCVvF_\"}},children:/*#__PURE__*/_jsx(Footer,{height:\"100%\",id:\"kaqDaOQKz\",layoutId:\"kaqDaOQKz\",style:{width:\"100%\"},variant:\"bRWrDpf99\",width:\"100%\"})})})})})]}),/*#__PURE__*/_jsx(\"div\",{id:\"overlay\"})]})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-x9grd.framer-lux5qc, .framer-x9grd .framer-lux5qc { display: block; }\",\".framer-x9grd.framer-72rtr7 { align-content: center; align-items: center; background-color: #ffffff; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 1200px; }\",\".framer-x9grd .framer-3kofxm-container { flex: none; height: auto; left: 50%; max-width: 800px; position: fixed; top: 20px; transform: translateX(-50%); width: 800px; z-index: 10; }\",\".framer-x9grd .framer-19rwjfp { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 160px 0px 120px 0px; position: relative; width: 100%; }\",\".framer-x9grd .framer-1hlvqt2 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; z-index: 1; }\",\".framer-x9grd .framer-12iwew2 { 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: 600px; overflow: hidden; padding: 0px; position: relative; width: 100%; z-index: 1; }\",\".framer-x9grd .framer-5brtee, .framer-x9grd .framer-10vuwph, .framer-x9grd .framer-1ggg6a7, .framer-x9grd .framer-1j440ux, .framer-x9grd .framer-1xl9cgc, .framer-x9grd .framer-1crnhcw, .framer-x9grd .framer-1n3vsk2, .framer-x9grd .framer-ibmqju, .framer-x9grd .framer-18fpw3l, .framer-x9grd .framer-c9n4kk, .framer-x9grd .framer-ylvm1w, .framer-x9grd .framer-103ynnr, .framer-x9grd .framer-179m64y, .framer-x9grd .framer-xu0r6o, .framer-x9grd .framer-aoteew { --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-x9grd .framer-add10j { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; max-width: 600px; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-x9grd .framer-jni2ek { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 400px; }\",\".framer-x9grd .framer-z1a74p { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-x9grd .framer-md60p9-container { flex: none; height: 66px; position: relative; width: 100%; }\",\".framer-x9grd .framer-1unemy7 { --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-x9grd .framer-1w2wzoi { -webkit-filter: brightness(0.5) hue-rotate(345deg) blur(5px); bottom: -12px; filter: brightness(0.5) hue-rotate(345deg) blur(5px); flex: none; left: -12px; position: absolute; right: -9px; top: -14px; z-index: 0; }\",\".framer-x9grd .framer-1j21ph9 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; max-width: 800px; overflow: hidden; padding: 40px 0px 40px 0px; position: relative; width: 100%; }\",\".framer-x9grd .framer-ouizve-container { flex: none; height: 40px; position: relative; width: 100%; }\",\".framer-x9grd .framer-hmv36a { aspect-ratio: 6.19 / 1; height: var(--framer-aspect-ratio-supported, 30px); overflow: visible; position: relative; width: 186px; }\",\".framer-x9grd .framer-vsifa3 { aspect-ratio: 2.778947368421053 / 1; height: var(--framer-aspect-ratio-supported, 40px); overflow: visible; position: relative; text-decoration: none; width: 111px; }\",\".framer-x9grd .framer-yj0ano { align-content: center; align-items: center; background-color: #ffffff; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: 41px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 234px; }\",\".framer-x9grd .framer-1q1emrc { aspect-ratio: 2.235294117647059 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 37px); overflow: visible; position: relative; width: 82px; }\",\".framer-x9grd .framer-1au19fk { aspect-ratio: 5.147058823529412 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 27px); overflow: visible; position: relative; width: 139px; }\",\".framer-x9grd .framer-5sr6zd { aspect-ratio: 3.057046979865772 / 1; height: var(--framer-aspect-ratio-supported, 40px); overflow: visible; position: relative; text-decoration: none; width: 122px; }\",\".framer-x9grd .framer-49b54v { aspect-ratio: 4.9504950495049505 / 1; height: var(--framer-aspect-ratio-supported, 30px); overflow: visible; position: relative; text-decoration: none; width: 149px; }\",\".framer-x9grd .framer-1yyvc24 { aspect-ratio: 4.692 / 1; height: var(--framer-aspect-ratio-supported, 40px); overflow: visible; position: relative; text-decoration: none; width: 188px; }\",\".framer-x9grd .framer-feobln { aspect-ratio: 2.733485193621868 / 1; height: var(--framer-aspect-ratio-supported, 40px); overflow: visible; position: relative; text-decoration: none; width: 109px; }\",\".framer-x9grd .framer-195t1zb { aspect-ratio: 5.198473282442748 / 1; height: var(--framer-aspect-ratio-supported, 30px); overflow: visible; position: relative; width: 156px; }\",\".framer-x9grd .framer-ddwr66, .framer-x9grd .framer-c13wh5, .framer-x9grd .framer-54ws11 { align-content: center; align-items: center; background-color: rgba(112, 72, 33, 0.05); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 80px; height: min-content; justify-content: center; overflow: hidden; padding: 80px 0px 80px 0px; position: relative; width: 100%; }\",\".framer-x9grd .framer-17r30l9, .framer-x9grd .framer-658ies, .framer-x9grd .framer-1955vxh { 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: 800px; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-x9grd .framer-7b2j38, .framer-x9grd .framer-qhjqwt, .framer-x9grd .framer-c2jdws, .framer-x9grd .framer-kb1ip6 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-x9grd .framer-dil7i6 { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-x9grd .framer-1mf3z19 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 80px; height: min-content; justify-content: center; overflow: hidden; padding: 80px 0px 80px 0px; position: relative; width: 1200px; }\",\".framer-x9grd .framer-4b3kd4, .framer-x9grd .framer-1dd91lc, .framer-x9grd .framer-1oe6n8z, .framer-x9grd .framer-2r4f80 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: center; max-width: 800px; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-x9grd .framer-1x348v6, .framer-x9grd .framer-139lpor { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-x9grd .framer-1rq959 { display: grid; flex: none; gap: 40px; grid-auto-rows: minmax(0, 1fr); grid-template-columns: repeat(2, minmax(50px, 1fr)); grid-template-rows: repeat(1, minmax(0, 1fr)); height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-x9grd .framer-r9yswh-container, .framer-x9grd .framer-13kcssu-container, .framer-x9grd .framer-1crvuwg-container, .framer-x9grd .framer-23z94p-container, .framer-x9grd .framer-knr2lf-container, .framer-x9grd .framer-1ceez0v-container, .framer-x9grd .framer-1gjylwq-container, .framer-x9grd .framer-c23vcm-container { align-self: start; flex: none; height: 100%; justify-self: start; position: relative; width: 100%; }\",\".framer-x9grd .framer-lvdowb { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: center; max-width: 800px; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-x9grd .framer-1exvkec { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; max-width: 800px; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-x9grd .framer-1ig0ta5 { display: grid; flex: none; gap: 40px; grid-auto-rows: minmax(0, 1fr); grid-template-columns: repeat(2, minmax(50px, 1fr)); grid-template-rows: repeat(2, minmax(0, 1fr)); height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-x9grd .framer-1kskrmh, .framer-x9grd .framer-1jjnu61, .framer-x9grd .framer-1lcbx9t, .framer-x9grd .framer-1qoi38b { align-content: center; align-items: center; align-self: start; background-color: #ffffff; border-bottom-left-radius: 12px; border-bottom-right-radius: 12px; border-top-left-radius: 12px; border-top-right-radius: 12px; box-shadow: 0px 0.8398022765904898px 1.1757231872266858px -0.125px rgba(0, 0, 0, 0.02), 0px 1.9904796838090988px 2.7866715573327383px -0.25px rgba(0, 0, 0, 0.02239), 0px 3.6308406896569063px 5.083176965519669px -0.375px rgba(0, 0, 0, 0.02436), 0px 6.036265357761295px 8.450771500865812px -0.5px rgba(0, 0, 0, 0.02724), 0px 9.748076360978303px 13.647306905369623px -0.625px rgba(0, 0, 0, 0.0317), 0px 15.956633803711155px 22.339287325195617px -0.75px rgba(0, 0, 0, 0.03915), 0px 27.476245881684008px 38.46674423435761px -0.875px rgba(0, 0, 0, 0.05297), 0px 50px 70px -1px rgba(0, 0, 0, 0.08); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; justify-self: start; max-height: 700px; max-width: 100%; overflow: hidden; padding: 0px; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-x9grd .framer-3ql1am, .framer-x9grd .framer-od7nh0, .framer-x9grd .framer-l09pgw, .framer-x9grd .framer-1wp9wow { border-top-left-radius: 11px; border-top-right-radius: 11px; flex: none; height: 180px; overflow: hidden; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-x9grd .framer-1sdberd, .framer-x9grd .framer-hiwda9, .framer-x9grd .framer-or1xvh, .framer-x9grd .framer-1x9fspu { align-content: flex-start; align-items: flex-start; background-color: rgba(255, 255, 255, 0.1); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 30px; height: min-content; justify-content: center; overflow: visible; padding: 40px; position: relative; width: 100%; }\",\".framer-x9grd .framer-1upuc93, .framer-x9grd .framer-v7vtcg, .framer-x9grd .framer-11ag5lx, .framer-x9grd .framer-17ps1lg { 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-x9grd .framer-1gkcff6, .framer-x9grd .framer-u4i9uf, .framer-x9grd .framer-ithdvb, .framer-x9grd .framer-1kl4zbe { --framer-link-text-decoration: underline; --framer-paragraph-spacing: 0px; flex: none; height: auto; overflow: hidden; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-x9grd .framer-v12sqw, .framer-x9grd .framer-1qdn06n, .framer-x9grd .framer-gnfjh6, .framer-x9grd .framer-ftnw2m { --framer-paragraph-spacing: 0px; flex: none; height: auto; overflow: hidden; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-x9grd .framer-1pv2uc0, .framer-x9grd .framer-6anvgd { 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: hidden; padding: 80px 0px 80px 0px; position: relative; width: 100%; }\",\".framer-x9grd .framer-u11bcw, .framer-x9grd .framer-wx62ii { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; max-width: 800px; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-x9grd .framer-1jo5p4z { display: grid; flex: none; gap: 20px; grid-auto-rows: minmax(0, 1fr); grid-template-columns: repeat(2, minmax(50px, 1fr)); grid-template-rows: repeat(2, minmax(0, 1fr)); height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-x9grd .framer-v7sz1f { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: wrap; gap: 20px; height: min-content; justify-content: center; max-width: 1000px; padding: 0px; position: relative; width: 100%; }\",\".framer-x9grd .framer-1u98xo6 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; padding: 0px; position: relative; text-decoration: none; width: min-content; }\",\".framer-x9grd .framer-jj0htr { align-content: center; align-items: center; border-bottom-left-radius: 10px; border-bottom-right-radius: 10px; border-top-left-radius: 10px; border-top-right-radius: 10px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; max-width: 400px; overflow: hidden; padding: 20px; position: relative; width: min-content; will-change: var(--framer-will-change-override, transform); }\",\".framer-x9grd .framer-yv40zc-container { align-self: stretch; flex: none; height: auto; opacity: 0.5; position: relative; width: auto; }\",\".framer-x9grd .framer-1qv3a8z { border-bottom-left-radius: 10px; border-bottom-right-radius: 10px; border-top-left-radius: 10px; border-top-right-radius: 10px; flex: none; height: 116px; position: relative; width: 271px; }\",\".framer-x9grd .framer-zy37ft { align-self: stretch; flex: none; height: auto; position: relative; white-space: pre-wrap; width: auto; word-break: break-word; word-wrap: break-word; }\",\".framer-x9grd .framer-yh8iy0 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; max-width: 800px; padding: 0px; position: relative; width: 100%; }\",\".framer-x9grd .framer-1jdqd7o { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; padding: 0px; position: relative; text-decoration: none; width: 100%; }\",\".framer-x9grd .framer-1786bc0 { align-content: center; align-items: center; border-bottom-left-radius: 10px; border-bottom-right-radius: 10px; border-top-left-radius: 10px; border-top-right-radius: 10px; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; overflow: hidden; padding: 10px 20px 10px 20px; position: relative; width: 1px; will-change: var(--framer-will-change-override, transform); }\",\".framer-x9grd .framer-yllrjb { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-x9grd .framer-hw7zjf { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; align-self: stretch; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 117px; word-break: break-word; word-wrap: break-word; }\",\".framer-x9grd .framer-18whthi { flex: 1 0 0px; height: auto; position: relative; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; }\",\".framer-x9grd .framer-hwcdj5 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 80px; height: min-content; justify-content: center; overflow: hidden; padding: 80px 0px 80px 0px; position: relative; width: 100%; }\",\".framer-x9grd .framer-xolq52 { align-content: center; align-items: center; background-color: var(--token-89a18439-63ca-4149-b8c3-ce5b192423e5, #5ce1e6); border-bottom-left-radius: 30px; border-bottom-right-radius: 30px; border-top-left-radius: 30px; border-top-right-radius: 30px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; max-width: 800px; overflow: hidden; padding: 40px; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-x9grd .framer-ic96fa { align-content: center; align-items: center; background-color: #000000; border-bottom-left-radius: 15px; border-bottom-right-radius: 15px; border-top-left-radius: 15px; border-top-right-radius: 15px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 10px 20px 10px 20px; position: relative; text-decoration: none; width: min-content; }\",\".framer-x9grd .framer-14x7wfo { --framer-paragraph-spacing: 0px; -webkit-user-select: none; flex: none; height: auto; position: relative; user-select: none; white-space: pre; width: auto; }\",\".framer-x9grd .framer-qgx5ak-container { flex: none; height: auto; position: relative; width: 100%; }\",\"@supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-x9grd.framer-72rtr7, .framer-x9grd .framer-19rwjfp, .framer-x9grd .framer-1hlvqt2, .framer-x9grd .framer-12iwew2, .framer-x9grd .framer-jni2ek, .framer-x9grd .framer-z1a74p, .framer-x9grd .framer-1j21ph9, .framer-x9grd .framer-yj0ano, .framer-x9grd .framer-ddwr66, .framer-x9grd .framer-17r30l9, .framer-x9grd .framer-7b2j38, .framer-x9grd .framer-658ies, .framer-x9grd .framer-1mf3z19, .framer-x9grd .framer-4b3kd4, .framer-x9grd .framer-1x348v6, .framer-x9grd .framer-c13wh5, .framer-x9grd .framer-lvdowb, .framer-x9grd .framer-1exvkec, .framer-x9grd .framer-1kskrmh, .framer-x9grd .framer-1sdberd, .framer-x9grd .framer-1upuc93, .framer-x9grd .framer-1jjnu61, .framer-x9grd .framer-hiwda9, .framer-x9grd .framer-v7vtcg, .framer-x9grd .framer-1lcbx9t, .framer-x9grd .framer-or1xvh, .framer-x9grd .framer-11ag5lx, .framer-x9grd .framer-1qoi38b, .framer-x9grd .framer-1x9fspu, .framer-x9grd .framer-17ps1lg, .framer-x9grd .framer-1pv2uc0, .framer-x9grd .framer-1dd91lc, .framer-x9grd .framer-qhjqwt, .framer-x9grd .framer-u11bcw, .framer-x9grd .framer-54ws11, .framer-x9grd .framer-c2jdws, .framer-x9grd .framer-1955vxh, .framer-x9grd .framer-v7sz1f, .framer-x9grd .framer-1u98xo6, .framer-x9grd .framer-jj0htr, .framer-x9grd .framer-6anvgd, .framer-x9grd .framer-1oe6n8z, .framer-x9grd .framer-kb1ip6, .framer-x9grd .framer-wx62ii, .framer-x9grd .framer-yh8iy0, .framer-x9grd .framer-1jdqd7o, .framer-x9grd .framer-1786bc0, .framer-x9grd .framer-yllrjb, .framer-x9grd .framer-hwcdj5, .framer-x9grd .framer-2r4f80, .framer-x9grd .framer-xolq52, .framer-x9grd .framer-139lpor, .framer-x9grd .framer-ic96fa { gap: 0px; } .framer-x9grd.framer-72rtr7 > *, .framer-x9grd .framer-jni2ek > *, .framer-x9grd .framer-z1a74p > *, .framer-x9grd .framer-1kskrmh > *, .framer-x9grd .framer-1jjnu61 > *, .framer-x9grd .framer-1lcbx9t > *, .framer-x9grd .framer-1qoi38b > *, .framer-x9grd .framer-u11bcw > *, .framer-x9grd .framer-wx62ii > *, .framer-x9grd .framer-yh8iy0 > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-x9grd.framer-72rtr7 > :first-child, .framer-x9grd .framer-19rwjfp > :first-child, .framer-x9grd .framer-1hlvqt2 > :first-child, .framer-x9grd .framer-12iwew2 > :first-child, .framer-x9grd .framer-jni2ek > :first-child, .framer-x9grd .framer-z1a74p > :first-child, .framer-x9grd .framer-1j21ph9 > :first-child, .framer-x9grd .framer-ddwr66 > :first-child, .framer-x9grd .framer-17r30l9 > :first-child, .framer-x9grd .framer-7b2j38 > :first-child, .framer-x9grd .framer-658ies > :first-child, .framer-x9grd .framer-1mf3z19 > :first-child, .framer-x9grd .framer-4b3kd4 > :first-child, .framer-x9grd .framer-1x348v6 > :first-child, .framer-x9grd .framer-c13wh5 > :first-child, .framer-x9grd .framer-lvdowb > :first-child, .framer-x9grd .framer-1exvkec > :first-child, .framer-x9grd .framer-1kskrmh > :first-child, .framer-x9grd .framer-1sdberd > :first-child, .framer-x9grd .framer-1upuc93 > :first-child, .framer-x9grd .framer-1jjnu61 > :first-child, .framer-x9grd .framer-hiwda9 > :first-child, .framer-x9grd .framer-v7vtcg > :first-child, .framer-x9grd .framer-1lcbx9t > :first-child, .framer-x9grd .framer-or1xvh > :first-child, .framer-x9grd .framer-11ag5lx > :first-child, .framer-x9grd .framer-1qoi38b > :first-child, .framer-x9grd .framer-1x9fspu > :first-child, .framer-x9grd .framer-17ps1lg > :first-child, .framer-x9grd .framer-1pv2uc0 > :first-child, .framer-x9grd .framer-1dd91lc > :first-child, .framer-x9grd .framer-qhjqwt > :first-child, .framer-x9grd .framer-u11bcw > :first-child, .framer-x9grd .framer-54ws11 > :first-child, .framer-x9grd .framer-c2jdws > :first-child, .framer-x9grd .framer-1955vxh > :first-child, .framer-x9grd .framer-jj0htr > :first-child, .framer-x9grd .framer-6anvgd > :first-child, .framer-x9grd .framer-1oe6n8z > :first-child, .framer-x9grd .framer-kb1ip6 > :first-child, .framer-x9grd .framer-wx62ii > :first-child, .framer-x9grd .framer-yh8iy0 > :first-child, .framer-x9grd .framer-1786bc0 > :first-child, .framer-x9grd .framer-hwcdj5 > :first-child, .framer-x9grd .framer-2r4f80 > :first-child, .framer-x9grd .framer-xolq52 > :first-child, .framer-x9grd .framer-139lpor > :first-child { margin-top: 0px; } .framer-x9grd.framer-72rtr7 > :last-child, .framer-x9grd .framer-19rwjfp > :last-child, .framer-x9grd .framer-1hlvqt2 > :last-child, .framer-x9grd .framer-12iwew2 > :last-child, .framer-x9grd .framer-jni2ek > :last-child, .framer-x9grd .framer-z1a74p > :last-child, .framer-x9grd .framer-1j21ph9 > :last-child, .framer-x9grd .framer-ddwr66 > :last-child, .framer-x9grd .framer-17r30l9 > :last-child, .framer-x9grd .framer-7b2j38 > :last-child, .framer-x9grd .framer-658ies > :last-child, .framer-x9grd .framer-1mf3z19 > :last-child, .framer-x9grd .framer-4b3kd4 > :last-child, .framer-x9grd .framer-1x348v6 > :last-child, .framer-x9grd .framer-c13wh5 > :last-child, .framer-x9grd .framer-lvdowb > :last-child, .framer-x9grd .framer-1exvkec > :last-child, .framer-x9grd .framer-1kskrmh > :last-child, .framer-x9grd .framer-1sdberd > :last-child, .framer-x9grd .framer-1upuc93 > :last-child, .framer-x9grd .framer-1jjnu61 > :last-child, .framer-x9grd .framer-hiwda9 > :last-child, .framer-x9grd .framer-v7vtcg > :last-child, .framer-x9grd .framer-1lcbx9t > :last-child, .framer-x9grd .framer-or1xvh > :last-child, .framer-x9grd .framer-11ag5lx > :last-child, .framer-x9grd .framer-1qoi38b > :last-child, .framer-x9grd .framer-1x9fspu > :last-child, .framer-x9grd .framer-17ps1lg > :last-child, .framer-x9grd .framer-1pv2uc0 > :last-child, .framer-x9grd .framer-1dd91lc > :last-child, .framer-x9grd .framer-qhjqwt > :last-child, .framer-x9grd .framer-u11bcw > :last-child, .framer-x9grd .framer-54ws11 > :last-child, .framer-x9grd .framer-c2jdws > :last-child, .framer-x9grd .framer-1955vxh > :last-child, .framer-x9grd .framer-jj0htr > :last-child, .framer-x9grd .framer-6anvgd > :last-child, .framer-x9grd .framer-1oe6n8z > :last-child, .framer-x9grd .framer-kb1ip6 > :last-child, .framer-x9grd .framer-wx62ii > :last-child, .framer-x9grd .framer-yh8iy0 > :last-child, .framer-x9grd .framer-1786bc0 > :last-child, .framer-x9grd .framer-hwcdj5 > :last-child, .framer-x9grd .framer-2r4f80 > :last-child, .framer-x9grd .framer-xolq52 > :last-child, .framer-x9grd .framer-139lpor > :last-child { margin-bottom: 0px; } .framer-x9grd .framer-19rwjfp > *, .framer-x9grd .framer-1j21ph9 > *, .framer-x9grd .framer-1x348v6 > *, .framer-x9grd .framer-1exvkec > *, .framer-x9grd .framer-139lpor > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-x9grd .framer-1hlvqt2 > *, .framer-x9grd .framer-7b2j38 > *, .framer-x9grd .framer-4b3kd4 > *, .framer-x9grd .framer-lvdowb > *, .framer-x9grd .framer-1dd91lc > *, .framer-x9grd .framer-qhjqwt > *, .framer-x9grd .framer-c2jdws > *, .framer-x9grd .framer-1oe6n8z > *, .framer-x9grd .framer-kb1ip6 > *, .framer-x9grd .framer-2r4f80 > * { margin: 0px; margin-bottom: calc(40px / 2); margin-top: calc(40px / 2); } .framer-x9grd .framer-12iwew2 > *, .framer-x9grd .framer-17r30l9 > *, .framer-x9grd .framer-658ies > *, .framer-x9grd .framer-1upuc93 > *, .framer-x9grd .framer-v7vtcg > *, .framer-x9grd .framer-11ag5lx > *, .framer-x9grd .framer-17ps1lg > *, .framer-x9grd .framer-1pv2uc0 > *, .framer-x9grd .framer-1955vxh > *, .framer-x9grd .framer-jj0htr > *, .framer-x9grd .framer-6anvgd > *, .framer-x9grd .framer-1786bc0 > *, .framer-x9grd .framer-xolq52 > * { margin: 0px; margin-bottom: calc(20px / 2); margin-top: calc(20px / 2); } .framer-x9grd .framer-yj0ano > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } .framer-x9grd .framer-yj0ano > :first-child, .framer-x9grd .framer-v7sz1f > :first-child, .framer-x9grd .framer-1u98xo6 > :first-child, .framer-x9grd .framer-1jdqd7o > :first-child, .framer-x9grd .framer-yllrjb > :first-child, .framer-x9grd .framer-ic96fa > :first-child { margin-left: 0px; } .framer-x9grd .framer-yj0ano > :last-child, .framer-x9grd .framer-v7sz1f > :last-child, .framer-x9grd .framer-1u98xo6 > :last-child, .framer-x9grd .framer-1jdqd7o > :last-child, .framer-x9grd .framer-yllrjb > :last-child, .framer-x9grd .framer-ic96fa > :last-child { margin-right: 0px; } .framer-x9grd .framer-ddwr66 > *, .framer-x9grd .framer-1mf3z19 > *, .framer-x9grd .framer-c13wh5 > *, .framer-x9grd .framer-54ws11 > *, .framer-x9grd .framer-hwcdj5 > * { margin: 0px; margin-bottom: calc(80px / 2); margin-top: calc(80px / 2); } .framer-x9grd .framer-1sdberd > *, .framer-x9grd .framer-hiwda9 > *, .framer-x9grd .framer-or1xvh > *, .framer-x9grd .framer-1x9fspu > * { margin: 0px; margin-bottom: calc(30px / 2); margin-top: calc(30px / 2); } .framer-x9grd .framer-v7sz1f > *, .framer-x9grd .framer-yllrjb > * { margin: 0px; margin-left: calc(20px / 2); margin-right: calc(20px / 2); } .framer-x9grd .framer-1u98xo6 > *, .framer-x9grd .framer-1jdqd7o > *, .framer-x9grd .framer-ic96fa > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } }\",...sharedStyle.css,...sharedStyle1.css,...sharedStyle2.css,...sharedStyle3.css,...sharedStyle4.css,...sharedStyle5.css,...sharedStyle6.css,...sharedStyle7.css,...sharedStyle8.css,...sharedStyle9.css,...sharedStyle10.css,\"@media (min-width: 810px) and (max-width: 1199px) { .framer-x9grd.framer-72rtr7 { width: 810px; } .framer-x9grd .framer-3kofxm-container { width: 80%; } .framer-x9grd .framer-ddwr66, .framer-x9grd .framer-c13wh5, .framer-x9grd .framer-54ws11, .framer-x9grd .framer-hwcdj5 { padding: 80px 20px 80px 80px; } .framer-x9grd .framer-1mf3z19 { padding: 80px; width: 100%; } .framer-x9grd .framer-1rq959 { grid-template-rows: repeat(2, minmax(0, 1fr)); } .framer-x9grd .framer-1sdberd, .framer-x9grd .framer-hiwda9, .framer-x9grd .framer-or1xvh, .framer-x9grd .framer-1x9fspu { padding: 20px; } .framer-x9grd .framer-1pv2uc0, .framer-x9grd .framer-6anvgd { padding: 80px 40px 80px 40px; } .framer-x9grd .framer-1jo5p4z { gap: 40px; } .framer-x9grd .framer-v7sz1f { gap: 0px; } .framer-x9grd .framer-1qv3a8z { width: 220px; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-x9grd .framer-1jo5p4z, .framer-x9grd .framer-v7sz1f { gap: 0px; } .framer-x9grd .framer-1jo5p4z > *, .framer-x9grd .framer-1jo5p4z > :first-child, .framer-x9grd .framer-1jo5p4z > :last-child { margin: 0px; } .framer-x9grd .framer-v7sz1f > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } .framer-x9grd .framer-v7sz1f > :first-child { margin-left: 0px; } .framer-x9grd .framer-v7sz1f > :last-child { margin-right: 0px; } }}\",\"@media (max-width: 809px) { .framer-x9grd.framer-72rtr7 { width: 390px; } .framer-x9grd .framer-3kofxm-container { width: 90%; } .framer-x9grd .framer-19rwjfp { padding: 140px 40px 80px 40px; } .framer-x9grd .framer-jni2ek { width: 300px; } .framer-x9grd .framer-ddwr66, .framer-x9grd .framer-c13wh5, .framer-x9grd .framer-1pv2uc0 { padding: 80px 40px 80px 40px; } .framer-x9grd .framer-1mf3z19 { padding: 80px 40px 80px 40px; width: 100%; } .framer-x9grd .framer-1rq959 { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; } .framer-x9grd .framer-r9yswh-container, .framer-x9grd .framer-13kcssu-container, .framer-x9grd .framer-1crvuwg-container, .framer-x9grd .framer-23z94p-container, .framer-x9grd .framer-knr2lf-container, .framer-x9grd .framer-1ceez0v-container, .framer-x9grd .framer-1gjylwq-container, .framer-x9grd .framer-c23vcm-container { align-self: unset; height: auto; } .framer-x9grd .framer-1ig0ta5 { align-content: flex-start; align-items: flex-start; display: flex; flex-direction: column; flex-wrap: nowrap; } .framer-x9grd .framer-1kskrmh, .framer-x9grd .framer-1jjnu61, .framer-x9grd .framer-1lcbx9t, .framer-x9grd .framer-1qoi38b { align-self: unset; border-bottom-left-radius: unset; border-bottom-right-radius: unset; border-top-left-radius: unset; border-top-right-radius: unset; justify-content: flex-start; max-height: unset; } .framer-x9grd .framer-3ql1am, .framer-x9grd .framer-od7nh0, .framer-x9grd .framer-l09pgw, .framer-x9grd .framer-1wp9wow { height: 200px; } .framer-x9grd .framer-1jo5p4z { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 40px; } .framer-x9grd .framer-54ws11, .framer-x9grd .framer-6anvgd, .framer-x9grd .framer-hwcdj5 { padding: 80px 20px 80px 20px; } .framer-x9grd .framer-v7sz1f { align-content: center; align-items: center; flex-direction: column; gap: 0px; } .framer-x9grd .framer-jj0htr { gap: 10px; } .framer-x9grd .framer-yv40zc-container { order: 2; } .framer-x9grd .framer-1qv3a8z { order: 0; width: 327px; } .framer-x9grd .framer-zy37ft { order: 1; } .framer-x9grd .framer-yllrjb { align-content: flex-start; align-items: flex-start; gap: 10px; } .framer-x9grd .framer-hw7zjf { width: 46px; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-x9grd .framer-1rq959, .framer-x9grd .framer-1ig0ta5, .framer-x9grd .framer-1jo5p4z, .framer-x9grd .framer-v7sz1f, .framer-x9grd .framer-jj0htr, .framer-x9grd .framer-yllrjb { gap: 0px; } .framer-x9grd .framer-1rq959 > *, .framer-x9grd .framer-1ig0ta5 > *, .framer-x9grd .framer-1jo5p4z > * { margin: 0px; margin-bottom: calc(40px / 2); margin-top: calc(40px / 2); } .framer-x9grd .framer-1rq959 > :first-child, .framer-x9grd .framer-1ig0ta5 > :first-child, .framer-x9grd .framer-1jo5p4z > :first-child, .framer-x9grd .framer-v7sz1f > :first-child, .framer-x9grd .framer-jj0htr > :first-child { margin-top: 0px; } .framer-x9grd .framer-1rq959 > :last-child, .framer-x9grd .framer-1ig0ta5 > :last-child, .framer-x9grd .framer-1jo5p4z > :last-child, .framer-x9grd .framer-v7sz1f > :last-child, .framer-x9grd .framer-jj0htr > :last-child { margin-bottom: 0px; } .framer-x9grd .framer-v7sz1f > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-x9grd .framer-jj0htr > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-x9grd .framer-yllrjb > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-x9grd .framer-yllrjb > :first-child { margin-left: 0px; } .framer-x9grd .framer-yllrjb > :last-child { margin-right: 0px; } }}\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 6836.5\n * @framerIntrinsicWidth 1200\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"jSzOmigZ_\":{\"layout\":[\"fixed\",\"auto\"]},\"uB_s4ryfa\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n * @framerAcceptsLayoutTemplate true\n * @framerScrollSections\n * @framerResponsiveScreen\n */const FrameraugiA20Il=withCSS(Component,css,\"framer-x9grd\");export default FrameraugiA20Il;FrameraugiA20Il.displayName=\"Home\";FrameraugiA20Il.defaultProps={height:6836.5,width:1200};addFonts(FrameraugiA20Il,[{explicitInter:true,fonts:[{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/5vvr9Vy74if2I6bQbJvbw7SY1pQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/EOr0mi4hNtlgWNn9if640EZzXCo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Y9k9QrlZAqio88Klkmbd8VoMQc.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/OYrD2tBIBPvoJXiIHnLoOXnY9M.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/JeYwfuaPfZHQhEG8U5gtPDZ7WQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/vQyevYAyHtARFwPqUzQGpnDs.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/b6Y37FthZeALduNqHicBT6FutY.woff2\",weight:\"400\"},{family:\"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/DpPBYI0sL4fYLgAkX8KXOPVt7c.woff2\",weight:\"700\"},{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/4RAEQdEOrcnDkhHiiCbJOw92Lk.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/1K3W8DizY3v4emK8Mb08YHxTbs.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/tUSCtfYVM1I1IchuyCwz9gDdQ.woff2\",weight:\"700\"},{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/VgYFWiwsAC5OYxAycRXXvhze58.woff2\",weight:\"700\"},{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/DXD0Q7LSl7HEvDzucnyLnGBHM.woff2\",weight:\"700\"},{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/GIryZETIX4IFypco5pYZONKhJIo.woff2\",weight:\"700\"},{family:\"Instrument Sans\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/instrumentsans/v1/pximypc9vsFDm051Uf6KVwgkfoSxQ0GsQv8ToedPibnr-yp2JGEJOH9npSTF-QfwmS0v3_7Y.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/H89BbHkbHDzlxZzxi8uPzTsp90.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/u6gJwDuwB143kpNK1T1MDKDWkMc.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/43sJ6MfOPh1LCJt46OvyDuSbA6o.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/wccHG0r4gBDAIRhfHiOlq6oEkqw.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",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/WZ367JPwf9bRW6LdTHN8rXgSjw.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",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/QxmhnWTzLtyjIiZcfaLIJ8EFBXU.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",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/2A4Xx7CngadFGlVV4xrO06OBHY.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/CfMzU8w2e7tHgF4T4rATMPuWosA.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/867QObYax8ANsfX4TGEVU9YiCM.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Oyn2ZbENFdnW7mt2Lzjk1h9Zb9k.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/cdAe8hgZ1cMyLu9g005pAW3xMo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"italic\",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/DOfvtmE1UplCq161m6Hj8CSQYg.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"italic\",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/vFzuJY0c65av44uhEKB6vyjFMg.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"italic\",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/tKtBcDnBMevsEEJKdNGhhkLzYo.woff2\",weight:\"400\"}]},...NavigationFonts,...EmbedFonts,...TickerFonts,...CardFonts,...TagFonts,...FooterFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts),...getFontsFromSharedStyle(sharedStyle2.fonts),...getFontsFromSharedStyle(sharedStyle3.fonts),...getFontsFromSharedStyle(sharedStyle4.fonts),...getFontsFromSharedStyle(sharedStyle5.fonts),...getFontsFromSharedStyle(sharedStyle6.fonts),...getFontsFromSharedStyle(sharedStyle7.fonts),...getFontsFromSharedStyle(sharedStyle8.fonts),...getFontsFromSharedStyle(sharedStyle9.fonts),...getFontsFromSharedStyle(sharedStyle10.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FrameraugiA20Il\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\",\"framerIntrinsicWidth\":\"1200\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"jSzOmigZ_\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"uB_s4ryfa\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerIntrinsicHeight\":\"6836.5\",\"framerDisplayContentsDiv\":\"false\",\"framerImmutableVariables\":\"true\",\"framerScrollSections\":\"* @framerResponsiveScreen\",\"framerAcceptsLayoutTemplate\":\"true\",\"framerComponentViewportWidth\":\"true\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__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", "animateToValue", "initialTime", "prevTime", "xOrY", "isHover", "isInView", "useInView", "isReducedMotion", "useReducedMotion", "listRef", "animationRef", "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", "NavigationFonts", "getFonts", "c8D4rq2Dp_default", "ContainerWithOptimizedAppearEffect", "withOptimizedAppearEffect", "Container", "RichTextWithOptimizedAppearEffect", "RichText2", "EmbedFonts", "Embed", "TickerFonts", "Ticker", "MotionDivWithOptimizedAppearEffect", "motion", "CardFonts", "W2ue_Vd6B_default", "RichTextWithFX", "withFX", "MotionDivWithFX", "TagFonts", "KYlTZqS3G_default", "FooterFonts", "dPh5WQdJI_default", "breakpoints", "serializationHash", "variantClassNames", "transformTemplate1", "_", "t", "transition1", "animation", "animation1", "transition2", "animation2", "animation3", "transition3", "animation4", "transition4", "animation5", "transition5", "animation6", "transition6", "animation7", "animation8", "animation9", "transition7", "animation10", "animation11", "transition8", "animation12", "transition9", "animation13", "toResponsiveImage", "value", "QueryData", "query", "pageSize", "children", "data", "useQueryData", "toDateString", "options", "activeLocale", "date", "display", "dateOptions", "fallbackLocale", "locale", "HTMLStyle", "useIsOnFramerCanvas", "p", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "Component", "Y", "ref", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "variant", "ah_tv23Q6kz3L57p6I", "WKNtUyquQkz3L57p6I", "UxHF_cA6Ukz3L57p6I", "B5A3earfSkz3L57p6I", "idkz3L57p6I", "ah_tv23Q6Hkb0XCy5a", "QtAvmVvcqHkb0XCy5a", "B5A3earfSHkb0XCy5a", "idHkb0XCy5a", "restProps", "ue", "metadata", "robotsTag", "ie", "baseVariant", "hydratedBaseVariant", "useHydratedBreakpointVariants", "breakpoints", "gestureVariant", "scopingClassNames", "cx", "ref1", "pe", "activeLocaleCode", "useLocaleCode", "defaultLayoutId", "ae", "useCustomCursors", "componentViewport", "useComponentViewport", "GeneratedComponentContext", "u", "LayoutGroup", "motion", "PropertyOverrides2", "ComponentViewportProvider", "ContainerWithOptimizedAppearEffect", "c8D4rq2Dp_default", "RichTextWithOptimizedAppearEffect", "x", "Embed", "getLoadingLazyAtYPosition", "Image2", "MotionDivWithOptimizedAppearEffect", "RichText2", "Container", "Ticker", "Link", "W2ue_Vd6B_default", "MotionDivWithFX", "RichTextWithFX", "ChildrenCanSuspend", "z4bJ5jmwC_default", "collection", "paginationInfo", "loadMore", "l", "index", "PathVariablesContext", "KYlTZqS3G_default", "enumToDisplayNameFunctions", "collection1", "paginationInfo1", "loadMore1", "index1", "textContent", "dPh5WQdJI_default", "css", "FrameraugiA20Il", "withCSS", "augiA20Il_default", "addFonts", "NavigationFonts", "EmbedFonts", "TickerFonts", "CardFonts", "TagFonts", "FooterFonts", "getFontsFromSharedStyle", "fonts", "__FramerMetadata__"]
}
