{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/B2xAlJLcN0gOnt11mSPw/XVUmpmPn1EPL0dzocT35/Ticker.js", "ssg:https://framerusercontent.com/modules/8rkJRY1CLtxan3ug5no1/s9QIPufAbbin1Tr7gLrQ/D7jkOKHn6.js", "ssg:https://framerusercontent.com/modules/yHtSA2SBTDhc7XSo4VIN/HYNiqYqfl8wDUoTVDdc3/augiA20Il.js"],
  "sourcesContent": ["import{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{Children,useEffect,useState,useRef,useMemo,createRef,useCallback,cloneElement}from\"react\";import{addPropertyControls,ControlType,RenderTarget}from\"framer\";import{useAnimationFrame,useReducedMotion,LayoutGroup,useInView,useMotionValue,useTransform,motion,wrap,frame}from\"framer-motion\";import{resize}from\"@motionone/dom\";const MAX_DUPLICATED_ITEMS=100;const directionTransformers={left:offset=>`translateX(-${offset}px)`,right:offset=>`translateX(${offset}px)`,top:offset=>`translateY(-${offset}px)`,bottom:offset=>`translateY(${offset}px)`};const supportsAcceleratedAnimations=typeof Animation!==\"undefined\"&&typeof Animation.prototype.updatePlaybackRate===\"function\";/**\n *\n * @framerIntrinsicWidth 400\n * @framerIntrinsicHeight 200\n *\n * @framerDisableUnlink\n *\n * @framerSupportedLayoutWidth fixed\n * @framerSupportedLayoutHeight fixed\n */export default function Ticker(props){/* Props */let{slots,gap,padding,paddingPerSide,paddingTop,paddingRight,paddingBottom,paddingLeft,speed,hoverFactor,direction,alignment,sizingOptions,fadeOptions,style}=props;const{fadeContent,overflow,fadeWidth,fadeInset,fadeAlpha}=fadeOptions;const{widthType,heightType}=sizingOptions;const paddingValue=paddingPerSide?`${paddingTop}px ${paddingRight}px ${paddingBottom}px ${paddingLeft}px`:`${padding}px`;/* Checks */const isCanvas=RenderTarget.current()===RenderTarget.canvas;// Remove empty slots (such as hidden layers)\nconst filteredSlots=slots.filter(Boolean);const numChildren=Children.count(filteredSlots);const hasChildren=numChildren>0;if(direction===true){direction=\"left\";}const isHorizontal=direction===\"left\"||direction===\"right\";const offset=useMotionValue(0);const transformer=directionTransformers[direction];const transform=useTransform(offset,transformer);/* Refs and State */const parentRef=useRef(null);const childrenRef=useMemo(()=>{return[/*#__PURE__*/createRef(),/*#__PURE__*/createRef()];},[]);const[size,setSize]=useState({parent:null,children:null});/* Arrays */let clonedChildren=[];let dupedChildren=[];/* Duplicate value */let duplicateBy=0;let opacity=0;if(isCanvas){duplicateBy=numChildren?Math.floor(10/numChildren):0;opacity=1;}if(!isCanvas&&hasChildren&&size.parent){duplicateBy=Math.round(size.parent/size.children*2)+1;duplicateBy=Math.min(duplicateBy,MAX_DUPLICATED_ITEMS);opacity=1;}/* Measure parent and child */const measure=useCallback(()=>{if(hasChildren&&parentRef.current){const parentLength=isHorizontal?parentRef.current.offsetWidth:parentRef.current.offsetHeight;const start=childrenRef[0].current?isHorizontal?childrenRef[0].current.offsetLeft:childrenRef[0].current.offsetTop:0;const end=childrenRef[1].current?isHorizontal?childrenRef[1].current.offsetLeft+childrenRef[1].current.offsetWidth:childrenRef[1].current.offsetTop+childrenRef[1].current.offsetHeight:0;const childrenLength=end-start+gap;setSize({parent:parentLength,children:childrenLength});}},[]);const childrenStyles=isCanvas?{contentVisibility:\"auto\"}:{};/* Add refs to first and last child */if(hasChildren){// TODO: These conditional hooks will be unsafe if hasChildren ever changes outside the canvas.\nif(!isCanvas){/**\n             * Track whether this is the initial resize event. By default this will fire on mount,\n             * which we do in the useEffect. We should only fire it on subsequent resizes.\n             */let initialResize=useRef(true);useEffect(()=>{frame.read(measure);return resize(parentRef.current,({contentSize})=>{if(!initialResize.current&&(contentSize.width||contentSize.height)){frame.read(measure);}initialResize.current=false;});},[]);}clonedChildren=Children.map(filteredSlots,(child,index)=>{var _child_props,_child_props1,_child_props2,_child_props3;let ref;if(index===0){ref=childrenRef[0];}if(index===filteredSlots.length-1){ref=childrenRef[1];}const size={width:widthType?(_child_props=child.props)===null||_child_props===void 0?void 0:_child_props.width:\"100%\",height:heightType?(_child_props1=child.props)===null||_child_props1===void 0?void 0:_child_props1.height:\"100%\"};return /*#__PURE__*/_jsx(LayoutGroup,{inherit:\"id\",children:/*#__PURE__*/_jsx(\"li\",{ref:ref,style:size,children:/*#__PURE__*/cloneElement(child,{style:{...(_child_props2=child.props)===null||_child_props2===void 0?void 0:_child_props2.style,...size,flexShrink:0,...childrenStyles},layoutId:child.props.layoutId?child.props.layoutId+\"-original-\"+index:undefined},(_child_props3=child.props)===null||_child_props3===void 0?void 0:_child_props3.children)})});});}if(!isCanvas){for(let i=0;i<duplicateBy;i++){dupedChildren=[...dupedChildren,...Children.map(filteredSlots,(child,childIndex)=>{var _child_props,_child_props1,_child_props2,_child_props3,_child_props4,_child_props5;const size={width:widthType?(_child_props=child.props)===null||_child_props===void 0?void 0:_child_props.width:\"100%\",height:heightType?(_child_props1=child.props)===null||_child_props1===void 0?void 0:_child_props1.height:\"100%\",willChange:\"transform\"};return /*#__PURE__*/_jsx(LayoutGroup,{inherit:\"id\",children:/*#__PURE__*/_jsx(\"li\",{style:size,\"aria-hidden\":true,children:/*#__PURE__*/cloneElement(child,{key:i+\" \"+childIndex,style:{...(_child_props2=child.props)===null||_child_props2===void 0?void 0:_child_props2.style,width:widthType?(_child_props3=child.props)===null||_child_props3===void 0?void 0:_child_props3.width:\"100%\",height:heightType?(_child_props4=child.props)===null||_child_props4===void 0?void 0:_child_props4.height:\"100%\",flexShrink:0,...childrenStyles},layoutId:child.props.layoutId?child.props.layoutId+\"-dupe-\"+i:undefined},(_child_props5=child.props)===null||_child_props5===void 0?void 0:_child_props5.children)},i+\"li\"+childIndex)},i+\"lg\"+childIndex);})];}}const animateToValue=size.children+size.children*Math.round(size.parent/size.children);const initialTime=useRef(null);const prevTime=useRef(null);const xOrY=useRef(0);const isHover=useRef(false);const isReducedMotion=useReducedMotion();const listRef=useRef(null);const animationRef=useRef(null);/**\n     * Setup animations\n     */if(!isCanvas){const isInView=useInView(parentRef);/**\n         * If this is an animation we can hardware accelerate, animate with WAAPI\n         */if(supportsAcceleratedAnimations){useEffect(()=>{if(isReducedMotion||!animateToValue||!speed){return;}animationRef.current=listRef.current.animate({transform:[transformer(0),transformer(animateToValue)]},{duration:Math.abs(animateToValue)/speed*1e3,iterations:Infinity,easing:\"linear\"});return()=>animationRef.current.cancel();},[hoverFactor,animateToValue,speed]);// Pause the animation when it's out of view\nuseEffect(()=>{if(!animationRef.current)return;if(isInView&&animationRef.current.playState===\"paused\"){animationRef.current.play();}else if(!isInView&&animationRef.current.playState===\"running\"){animationRef.current.pause();}},[isInView]);}else{/**\n             * If we can't accelerate this animation because we have a hoverFactor defined\n             * animate with a rAF loop.\n             */useAnimationFrame(t=>{if(!animateToValue||isReducedMotion||supportsAcceleratedAnimations){return;}/**\n                 * In case this animation is delayed from starting because we're running a bunch\n                 * of other work, we want to set an initial time rather than counting from 0.\n                 * That ensures that if the animation is delayed, it starts from the first frame\n                 * rather than jumping.\n                 */if(initialTime.current===null){initialTime.current=t;}t=t-initialTime.current;const timeSince=prevTime.current===null?0:t-prevTime.current;let delta=timeSince*(speed/1e3);if(isHover.current){delta*=hoverFactor;}xOrY.current+=delta;xOrY.current=wrap(0,animateToValue,xOrY.current);prevTime.current=t;if(!isInView)return;offset.set(xOrY.current);});}}/* Fades */const fadeDirection=isHorizontal?\"to right\":\"to bottom\";const fadeWidthStart=fadeWidth/2;const fadeWidthEnd=100-fadeWidth/2;const fadeInsetStart=clamp(fadeInset,0,fadeWidthStart);const fadeInsetEnd=100-fadeInset;const fadeMask=`linear-gradient(${fadeDirection}, rgba(0, 0, 0, ${fadeAlpha}) ${fadeInsetStart}%, rgba(0, 0, 0, 1) ${fadeWidthStart}%, rgba(0, 0, 0, 1) ${fadeWidthEnd}%, rgba(0, 0, 0, ${fadeAlpha}) ${fadeInsetEnd}%)`;/* Empty state */if(!hasChildren){return /*#__PURE__*/_jsxs(\"section\",{style:placeholderStyles,children:[/*#__PURE__*/_jsx(\"div\",{style:emojiStyles,children:\"\u2728\"}),/*#__PURE__*/_jsx(\"p\",{style:titleStyles,children:\"Connect to Content\"}),/*#__PURE__*/_jsx(\"p\",{style:subtitleStyles,children:\"Add layers or components to infinitely loop on your page.\"})]});}return /*#__PURE__*/_jsx(\"section\",{style:{...containerStyle,opacity:opacity,WebkitMaskImage:fadeContent?fadeMask:undefined,MozMaskImage:fadeContent?fadeMask:undefined,maskImage:fadeContent?fadeMask:undefined,overflow:overflow?\"visible\":\"hidden\",padding:paddingValue},ref:parentRef,children:/*#__PURE__*/_jsxs(motion.ul,{ref:listRef,style:{...containerStyle,gap:gap,top:direction===\"bottom\"&&isValidNumber(animateToValue)?-animateToValue:undefined,left:direction===\"right\"&&isValidNumber(animateToValue)?-animateToValue:undefined,placeItems:alignment,position:\"relative\",flexDirection:isHorizontal?\"row\":\"column\",...style,willChange:isCanvas?\"auto\":\"transform\",transform:supportsAcceleratedAnimations?transformer(0):transform},onMouseEnter:()=>{isHover.current=true;if(animationRef.current){// TODO Replace with updatePlaybackRate when Chrome bugs sorted\nanimationRef.current.playbackRate=hoverFactor;}},onMouseLeave:()=>{isHover.current=false;if(animationRef.current){// TODO Replace with updatePlaybackRate when Chrome bugs sorted\nanimationRef.current.playbackRate=1;}},children:[clonedChildren,dupedChildren]})});}/* Default Properties */Ticker.defaultProps={gap:10,padding:10,sizingOptions:{widthType:true,heightType:true},fadeOptions:{fadeContent:true,overflow:false,fadeWidth:25,fadeAlpha:0,fadeInset:0},direction:true};/* Property Controls */addPropertyControls(Ticker,{slots:{type:ControlType.Array,title:\"Children\",control:{type:ControlType.ComponentInstance}},speed:{type:ControlType.Number,title:\"Speed\",min:0,max:1e3,defaultValue:100,unit:\"%\",displayStepper:true,step:5},direction:{type:ControlType.Enum,title:\"Direction\",options:[\"left\",\"right\",\"top\",\"bottom\"],optionIcons:[\"direction-left\",\"direction-right\",\"direction-up\",\"direction-down\"],optionTitles:[\"Left\",\"Right\",\"Top\",\"Bottom\"],defaultValue:\"left\",displaySegmentedControl:true},alignment:{type:ControlType.Enum,title:\"Align\",options:[\"flex-start\",\"center\",\"flex-end\"],optionIcons:{direction:{right:[\"align-top\",\"align-middle\",\"align-bottom\"],left:[\"align-top\",\"align-middle\",\"align-bottom\"],top:[\"align-left\",\"align-center\",\"align-right\"],bottom:[\"align-left\",\"align-center\",\"align-right\"]}},defaultValue:\"center\",displaySegmentedControl:true},gap:{type:ControlType.Number,title:\"Gap\"},padding:{title:\"Padding\",type:ControlType.FusedNumber,toggleKey:\"paddingPerSide\",toggleTitles:[\"Padding\",\"Padding per side\"],valueKeys:[\"paddingTop\",\"paddingRight\",\"paddingBottom\",\"paddingLeft\"],valueLabels:[\"T\",\"R\",\"B\",\"L\"],min:0},sizingOptions:{type:ControlType.Object,title:\"Sizing\",controls:{widthType:{type:ControlType.Boolean,title:\"Width\",enabledTitle:\"Auto\",disabledTitle:\"Stretch\",defaultValue:true},heightType:{type:ControlType.Boolean,title:\"Height\",enabledTitle:\"Auto\",disabledTitle:\"Stretch\",defaultValue:true}}},fadeOptions:{type:ControlType.Object,title:\"Clipping\",controls:{fadeContent:{type:ControlType.Boolean,title:\"Fade\",defaultValue:true},overflow:{type:ControlType.Boolean,title:\"Overflow\",enabledTitle:\"Show\",disabledTitle:\"Hide\",defaultValue:false,hidden(props){return props.fadeContent===true;}},fadeWidth:{type:ControlType.Number,title:\"Width\",defaultValue:25,min:0,max:100,unit:\"%\",hidden(props){return props.fadeContent===false;}},fadeInset:{type:ControlType.Number,title:\"Inset\",defaultValue:0,min:0,max:100,unit:\"%\",hidden(props){return props.fadeContent===false;}},fadeAlpha:{type:ControlType.Number,title:\"Opacity\",defaultValue:0,min:0,max:1,step:.05,hidden(props){return props.fadeContent===false;}}}},hoverFactor:{type:ControlType.Number,title:\"Hover\",min:0,max:1,unit:\"x\",defaultValue:1,step:.1,displayStepper:true,description:\"Slows down the speed while you are hovering.\"}});/* Placeholder Styles */const containerStyle={display:\"flex\",width:\"100%\",height:\"100%\",maxWidth:\"100%\",maxHeight:\"100%\",placeItems:\"center\",margin:0,padding:0,listStyleType:\"none\",textIndent:\"none\"};/* Styles */const placeholderStyles={display:\"flex\",width:\"100%\",height:\"100%\",placeContent:\"center\",placeItems:\"center\",flexDirection:\"column\",color:\"#96F\",background:\"rgba(136, 85, 255, 0.1)\",fontSize:11,overflow:\"hidden\",padding:\"20px 20px 30px 20px\"};const emojiStyles={fontSize:32,marginBottom:10};const titleStyles={margin:0,marginBottom:10,fontWeight:600,textAlign:\"center\"};const subtitleStyles={margin:0,opacity:.7,maxWidth:150,lineHeight:1.5,textAlign:\"center\"};/* Clamp function, used for fadeInset */const clamp=(num,min,max)=>Math.min(Math.max(num,min),max);const isValidNumber=value=>typeof value===\"number\"&&!isNaN(value);\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"Ticker\",\"slots\":[],\"annotations\":{\"framerDisableUnlink\":\"*\",\"framerIntrinsicWidth\":\"400\",\"framerContractVersion\":\"1\",\"framerSupportedLayoutWidth\":\"fixed\",\"framerIntrinsicHeight\":\"200\",\"framerSupportedLayoutHeight\":\"fixed\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Ticker.map", "// Generated by Framer (139b156)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,getFontsFromSharedStyle,getLoadingLazyAtYPosition,Image,Link,RichText,useComponentViewport,useLocaleInfo,useVariantState,withCSS,withFX}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{Icon as Hero}from\"https://framerusercontent.com/modules/hKjtTuWGYB451ckw6eTN/bbq95ZQZ142lE2fXscHd/Hero.js\";import*as sharedStyle1 from\"https://framerusercontent.com/modules/cAUJhFNAKCUEW9R5Rii9/uzmrNyEJ386CtpgZTfFN/Hvp8Hk0or.js\";import*as sharedStyle from\"https://framerusercontent.com/modules/5ov2PmLNNzYwHoXHOVCS/GbL9sfn95DClMzktjQwP/lRoEGS0dQ.js\";const RichTextWithFX=withFX(RichText);const HeroFonts=getFonts(Hero);const enabledGestures={CDI526hJ4:{hover:true},r1N4H43Ve:{hover:true}};const cycleOrder=[\"CDI526hJ4\",\"r1N4H43Ve\",\"ezKDocxsA\"];const serializationHash=\"framer-Rk6YS\";const variantClassNames={CDI526hJ4:\"framer-v-1grzeet\",ezKDocxsA:\"framer-v-1b7ns0d\",r1N4H43Ve:\"framer-v-pnn98x\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const animation={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:0,y:10};const transition2={damping:80,delay:0,mass:1,stiffness:400,type:\"spring\"};const animation1={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition2,x:0,y:10};const transition3={damping:80,delay:.1,mass:1,stiffness:400,type:\"spring\"};const animation2={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition3,x:0,y:10};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={Desktop:\"CDI526hJ4\",Phone:\"ezKDocxsA\",Tablet:\"r1N4H43Ve\"};const getProps=({height,id,width,...props})=>{var _humanReadableVariantMap_props_variant,_ref;return{...props,variant:(_ref=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref!==void 0?_ref:\"CDI526hJ4\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"CDI526hJ4\",enabledGestures,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const ref1=React.useRef(null);const defaultLayoutId=React.useId();const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"eIFCmBmPX\"},nodeId:\"CDI526hJ4\",openInNewTab:false,children:/*#__PURE__*/_jsxs(motion.a,{...restProps,...gestureHandlers,className:`${cx(serializationHash,...sharedStyleClassNames,\"framer-1grzeet\",className,classNames)} framer-rp7xt0`,\"data-framer-name\":\"Desktop\",layoutDependency:layoutDependency,layoutId:\"CDI526hJ4\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{backgroundColor:\"rgb(255, 255, 255)\",...style},...addPropertyOverrides({\"CDI526hJ4-hover\":{\"data-framer-name\":undefined},\"r1N4H43Ve-hover\":{\"data-framer-name\":undefined},ezKDocxsA:{\"data-framer-name\":\"Phone\"},r1N4H43Ve:{\"data-framer-name\":\"Tablet\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-ej08u0\",\"data-framer-name\":\"Content\",layoutDependency:layoutDependency,layoutId:\"fSpeZJdq5\",style:{backgroundColor:\"var(--token-3ef014c9-ad51-4ceb-b698-92ed0047912a, rgb(255, 255, 255))\"},children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1ia93tv\",\"data-framer-name\":\"Content\",layoutDependency:layoutDependency,layoutId:\"Y1tlKoQjG\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-45pfxf\",\"data-framer-name\":\"Text\",layoutDependency:layoutDependency,layoutId:\"r61HK5cOH\",children:[/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation,__framer__exit:animation1,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__fromCanvasComponent:true,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h2,{className:\"framer-styles-preset-wydogt\",\"data-styles-preset\":\"lRoEGS0dQ\",style:{\"--framer-text-color\":\"var(--extracted-1of0zx5, var(--token-580a2b62-0f95-4863-bdb1-defd32dc6413, rgb(60, 120, 216)))\"},children:\"Writing Samples\"})}),className:\"framer-12q7va7\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"vrFQ7Z3qb\",style:{\"--extracted-1of0zx5\":\"var(--token-580a2b62-0f95-4863-bdb1-defd32dc6413, rgb(60, 120, 216))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\",\"--framer-paragraph-spacing\":\"0px\",transformPerspective:1200},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition3},__framer__animateOnce:true,__framer__enter:animation,__framer__exit:animation2,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__fromCanvasComponent:true,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1y1gyft\",\"data-styles-preset\":\"Hvp8Hk0or\",children:\"Content is more than just words on a page\u2014it\u2019s the bridge between a brand and its customers.\"})}),className:\"framer-18ebaa0\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"NNdyHJmQI\",style:{\"--framer-paragraph-spacing\":\"0px\",transformPerspective:1200},verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-w6nfas\",\"data-framer-name\":\"Button\",layoutDependency:layoutDependency,layoutId:\"H4O7ijYmc\",style:{backdropFilter:\"blur(50px)\",borderBottomLeftRadius:20,borderBottomRightRadius:20,borderTopLeftRadius:20,borderTopRightRadius:20,opacity:0,WebkitBackdropFilter:\"blur(50px)\"},variants:{\"CDI526hJ4-hover\":{opacity:1},\"r1N4H43Ve-hover\":{opacity:1},ezKDocxsA:{opacity:1}},children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7SUJNIFBsZXggU2Fucy01MDA=\",\"--framer-font-family\":'\"IBM Plex Sans\", \"IBM Plex Sans Placeholder\", sans-serif',\"--framer-font-size\":\"15px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"1.5em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-6404906a-a8f6-4a20-b609-163acb7b17d6, rgb(243, 243, 242)))\"},children:\"Take a look\"})}),className:\"framer-zsehlt\",fonts:[\"GF;IBM Plex Sans-500\"],layoutDependency:layoutDependency,layoutId:\"n81D5ssua\",style:{\"--extracted-r6o4lv\":\"var(--token-6404906a-a8f6-4a20-b609-163acb7b17d6, rgb(243, 243, 242))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},variants:{\"CDI526hJ4-hover\":{\"--extracted-r6o4lv\":\"var(--token-580a2b62-0f95-4863-bdb1-defd32dc6413, rgb(60, 120, 216))\"}},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({\"CDI526hJ4-hover\":{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7SUJNIFBsZXggU2Fucy01MDA=\",\"--framer-font-family\":'\"IBM Plex Sans\", \"IBM Plex Sans Placeholder\", sans-serif',\"--framer-font-size\":\"15px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"1.5em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-580a2b62-0f95-4863-bdb1-defd32dc6413, rgb(60, 120, 216)))\"},children:\"Take a look\"})})}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1mxg1pn-container\",layoutDependency:layoutDependency,layoutId:\"l1r4UfYCR-container\",children:/*#__PURE__*/_jsx(Hero,{color:\"var(--token-3ef014c9-ad51-4ceb-b698-92ed0047912a, rgb(255, 255, 255))\",height:\"100%\",iconSearch:\"Home\",iconSelection:\"ArrowRight\",id:\"l1r4UfYCR\",layoutId:\"l1r4UfYCR\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},width:\"100%\",...addPropertyOverrides({\"CDI526hJ4-hover\":{color:\"var(--token-580a2b62-0f95-4863-bdb1-defd32dc6413, rgb(60, 120, 216))\"}},baseVariant,gestureVariant)})})})]})]})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1gc1tjb\",\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"ldyxk5L7p\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1spjsmp\",\"data-framer-name\":\"Container\",layoutDependency:layoutDependency,layoutId:\"zGYix6_EN\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"Stata whitepaper mockup\",fit:\"fill\",loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+(0+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||600)-100-500)/2)+0+11368683772161603e-29),pixelHeight:1600,pixelWidth:2134,sizes:`max(${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} / 2, 1px)`,src:\"https://framerusercontent.com/images/NiBAK94mK9eiksDtcpUvGhOndbc.jpg\",srcSet:\"https://framerusercontent.com/images/NiBAK94mK9eiksDtcpUvGhOndbc.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/NiBAK94mK9eiksDtcpUvGhOndbc.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/NiBAK94mK9eiksDtcpUvGhOndbc.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/NiBAK94mK9eiksDtcpUvGhOndbc.jpg 2134w\"},className:\"framer-1f1uay7\",\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"U33ZL4osu\",style:{borderBottomLeftRadius:16,borderBottomRightRadius:16,borderTopLeftRadius:16,borderTopRightRadius:16},...addPropertyOverrides({\"CDI526hJ4-hover\":{background:{alt:\"Stata whitepaper mockup\",fit:\"fill\",loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+(0+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||600)-100-500)/2)+0+-24.999999999999886),pixelHeight:1600,pixelWidth:2134,sizes:`calc(max(${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} / 2, 1px) * 1.1)`,src:\"https://framerusercontent.com/images/NiBAK94mK9eiksDtcpUvGhOndbc.jpg\",srcSet:\"https://framerusercontent.com/images/NiBAK94mK9eiksDtcpUvGhOndbc.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/NiBAK94mK9eiksDtcpUvGhOndbc.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/NiBAK94mK9eiksDtcpUvGhOndbc.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/NiBAK94mK9eiksDtcpUvGhOndbc.jpg 2134w\"}},\"r1N4H43Ve-hover\":{background:{alt:\"Stata whitepaper mockup\",fit:\"fill\",loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+(0+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||580)-80-500)/2)+0+-24.999999999999886),pixelHeight:1600,pixelWidth:2134,sizes:`calc(max(${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} / 2, 1px) * 1.1)`,src:\"https://framerusercontent.com/images/NiBAK94mK9eiksDtcpUvGhOndbc.jpg\",srcSet:\"https://framerusercontent.com/images/NiBAK94mK9eiksDtcpUvGhOndbc.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/NiBAK94mK9eiksDtcpUvGhOndbc.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/NiBAK94mK9eiksDtcpUvGhOndbc.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/NiBAK94mK9eiksDtcpUvGhOndbc.jpg 2134w\"}},ezKDocxsA:{background:{alt:\"Stata whitepaper mockup\",fit:\"fill\",loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||885)-24-858.5)/2+0+0)+0+11368683772161603e-29),pixelHeight:1600,pixelWidth:2134,sizes:`max(${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"}, 1px)`,src:\"https://framerusercontent.com/images/NiBAK94mK9eiksDtcpUvGhOndbc.jpg\",srcSet:\"https://framerusercontent.com/images/NiBAK94mK9eiksDtcpUvGhOndbc.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/NiBAK94mK9eiksDtcpUvGhOndbc.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/NiBAK94mK9eiksDtcpUvGhOndbc.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/NiBAK94mK9eiksDtcpUvGhOndbc.jpg 2134w\"}},r1N4H43Ve:{background:{alt:\"Stata whitepaper mockup\",fit:\"fill\",loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+(0+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||580)-80-500)/2)+0+11368683772161603e-29),pixelHeight:1600,pixelWidth:2134,sizes:`max(${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} / 2, 1px)`,src:\"https://framerusercontent.com/images/NiBAK94mK9eiksDtcpUvGhOndbc.jpg\",srcSet:\"https://framerusercontent.com/images/NiBAK94mK9eiksDtcpUvGhOndbc.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/NiBAK94mK9eiksDtcpUvGhOndbc.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/NiBAK94mK9eiksDtcpUvGhOndbc.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/NiBAK94mK9eiksDtcpUvGhOndbc.jpg 2134w\"}}},baseVariant,gestureVariant)})})})]})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-Rk6YS.framer-rp7xt0, .framer-Rk6YS .framer-rp7xt0 { display: block; }\",\".framer-Rk6YS.framer-1grzeet { align-content: center; align-items: center; cursor: pointer; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: hidden; padding: 0px 0px 100px 0px; position: relative; text-decoration: none; width: 1200px; }\",\".framer-Rk6YS .framer-ej08u0 { align-content: center; align-items: center; align-self: stretch; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: auto; justify-content: flex-end; max-width: 50%; overflow: hidden; padding: 0px 100px 0px 100px; position: relative; width: 1px; }\",\".framer-Rk6YS .framer-1ia93tv { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: flex-start; max-width: 700px; padding: 0px; position: relative; width: 1px; }\",\".framer-Rk6YS .framer-45pfxf { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: center; padding: 0px; position: relative; width: 100%; }\",\".framer-Rk6YS .framer-12q7va7 { flex: none; height: auto; overflow: visible; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-Rk6YS .framer-18ebaa0 { flex: none; height: auto; max-width: 750px; overflow: visible; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-Rk6YS .framer-w6nfas { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 5px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: min-content; will-change: var(--framer-will-change-override, transform); }\",\".framer-Rk6YS .framer-zsehlt { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-Rk6YS .framer-1mxg1pn-container { flex: none; height: 16px; position: relative; width: 16px; }\",\".framer-Rk6YS .framer-1gc1tjb { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 500px; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-Rk6YS .framer-1spjsmp { flex: 1 0 0px; height: 500px; overflow: hidden; position: relative; width: 1px; }\",\".framer-Rk6YS .framer-1f1uay7 { flex: none; height: 500px; left: calc(50.00000000000002% - 100% / 2); overflow: visible; position: absolute; top: calc(50.00000000000002% - 500px / 2); width: 100%; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-Rk6YS.framer-1grzeet, .framer-Rk6YS .framer-ej08u0, .framer-Rk6YS .framer-1ia93tv, .framer-Rk6YS .framer-45pfxf, .framer-Rk6YS .framer-w6nfas, .framer-Rk6YS .framer-1gc1tjb { gap: 0px; } .framer-Rk6YS.framer-1grzeet > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } .framer-Rk6YS.framer-1grzeet > :first-child, .framer-Rk6YS .framer-ej08u0 > :first-child, .framer-Rk6YS .framer-w6nfas > :first-child, .framer-Rk6YS .framer-1gc1tjb > :first-child { margin-left: 0px; } .framer-Rk6YS.framer-1grzeet > :last-child, .framer-Rk6YS .framer-ej08u0 > :last-child, .framer-Rk6YS .framer-w6nfas > :last-child, .framer-Rk6YS .framer-1gc1tjb > :last-child { margin-right: 0px; } .framer-Rk6YS .framer-ej08u0 > *, .framer-Rk6YS .framer-1gc1tjb > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-Rk6YS .framer-1ia93tv > *, .framer-Rk6YS .framer-45pfxf > * { margin: 0px; margin-bottom: calc(16px / 2); margin-top: calc(16px / 2); } .framer-Rk6YS .framer-1ia93tv > :first-child, .framer-Rk6YS .framer-45pfxf > :first-child { margin-top: 0px; } .framer-Rk6YS .framer-1ia93tv > :last-child, .framer-Rk6YS .framer-45pfxf > :last-child { margin-bottom: 0px; } .framer-Rk6YS .framer-w6nfas > * { margin: 0px; margin-left: calc(5px / 2); margin-right: calc(5px / 2); } }\",\".framer-Rk6YS.framer-v-pnn98x.framer-1grzeet { padding: 0px 0px 80px 0px; width: 810px; }\",\".framer-Rk6YS.framer-v-pnn98x .framer-ej08u0 { padding: 0px 40px 0px 40px; }\",\".framer-Rk6YS.framer-v-pnn98x .framer-1ia93tv { gap: 0px; }\",\".framer-Rk6YS.framer-v-pnn98x .framer-1f1uay7, .framer-Rk6YS.framer-v-1b7ns0d .framer-1f1uay7 { height: 100%; top: calc(50.00000000000002% - 100% / 2); }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-Rk6YS.framer-v-pnn98x .framer-1ia93tv { gap: 0px; } .framer-Rk6YS.framer-v-pnn98x .framer-1ia93tv > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-Rk6YS.framer-v-pnn98x .framer-1ia93tv > :first-child { margin-top: 0px; } .framer-Rk6YS.framer-v-pnn98x .framer-1ia93tv > :last-child { margin-bottom: 0px; } }\",\".framer-Rk6YS.framer-v-1b7ns0d.framer-1grzeet { cursor: unset; flex-direction: column; padding: 0px 0px 24px 0px; width: 390px; }\",\".framer-Rk6YS.framer-v-1b7ns0d .framer-ej08u0 { align-self: unset; flex: none; height: min-content; max-width: unset; order: 1; padding: 50px 20px 50px 20px; width: 100%; }\",\".framer-Rk6YS.framer-v-1b7ns0d .framer-1gc1tjb { flex: none; order: 0; width: 100%; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-Rk6YS.framer-v-1b7ns0d.framer-1grzeet { gap: 0px; } .framer-Rk6YS.framer-v-1b7ns0d.framer-1grzeet > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-Rk6YS.framer-v-1b7ns0d.framer-1grzeet > :first-child { margin-top: 0px; } .framer-Rk6YS.framer-v-1b7ns0d.framer-1grzeet > :last-child { margin-bottom: 0px; } }\",\".framer-Rk6YS.framer-v-1grzeet.hover .framer-w6nfas { gap: 10px; }\",\".framer-Rk6YS.framer-v-1grzeet.hover .framer-1f1uay7, .framer-Rk6YS.framer-v-pnn98x.hover .framer-1f1uay7 { height: 110%; left: calc(50.00000000000002% - 110.00000000000001% / 2); top: calc(50.00000000000002% - 110.00000000000001% / 2); width: 110%; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-Rk6YS.framer-v-1grzeet.hover .framer-w6nfas { gap: 0px; } .framer-Rk6YS.framer-v-1grzeet.hover .framer-w6nfas > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-Rk6YS.framer-v-1grzeet.hover .framer-w6nfas > :first-child { margin-left: 0px; } .framer-Rk6YS.framer-v-1grzeet.hover .framer-w6nfas > :last-child { margin-right: 0px; } }\",...sharedStyle.css,...sharedStyle1.css];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 600\n * @framerIntrinsicWidth 1200\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"r1N4H43Ve\":{\"layout\":[\"fixed\",\"auto\"]},\"ezKDocxsA\":{\"layout\":[\"fixed\",\"auto\"]},\"W40hss6uP\":{\"layout\":[\"fixed\",\"auto\"]},\"hjK4nN32J\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerD7jkOKHn6=withCSS(Component,css,\"framer-Rk6YS\");export default FramerD7jkOKHn6;FramerD7jkOKHn6.displayName=\"Main project\";FramerD7jkOKHn6.defaultProps={height:600,width:1200};addPropertyControls(FramerD7jkOKHn6,{variant:{options:[\"CDI526hJ4\",\"r1N4H43Ve\",\"ezKDocxsA\"],optionTitles:[\"Desktop\",\"Tablet\",\"Phone\"],title:\"Variant\",type:ControlType.Enum}});addFonts(FramerD7jkOKHn6,[{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:\"IBM Plex Sans\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/ibmplexsans/v19/zYX9KVElMYYaJe8bpLHnCwDKjSL9MINmdd_qFmo.woff2\",weight:\"500\"}]},...HeroFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerD7jkOKHn6\",\"slots\":[],\"annotations\":{\"framerImmutableVariables\":\"true\",\"framerContractVersion\":\"1\",\"framerDisplayContentsDiv\":\"false\",\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicHeight\":\"600\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"r1N4H43Ve\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"ezKDocxsA\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"W40hss6uP\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"hjK4nN32J\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerIntrinsicWidth\":\"1200\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./D7jkOKHn6.map", "// Generated by Framer (139b156)\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,ResolveLinks,RichText,useCustomCursors,useHydratedBreakpointVariants,useLocaleInfo,useQueryData,useRouteElementId,useRouter,withCSS,withFX,withOptimizedAppearEffect}from\"framer\";import{LayoutGroup,motion}from\"framer-motion\";import*as React from\"react\";import Ticker from\"https://framerusercontent.com/modules/B2xAlJLcN0gOnt11mSPw/XVUmpmPn1EPL0dzocT35/Ticker.js\";import{Icon as Hero}from\"https://framerusercontent.com/modules/hKjtTuWGYB451ckw6eTN/bbq95ZQZ142lE2fXscHd/Hero.js\";import MainProject from\"#framer/local/canvasComponent/D7jkOKHn6/D7jkOKHn6.js\";import Contact from\"#framer/local/canvasComponent/mAIFyqmvW/mAIFyqmvW.js\";import Navigation from\"#framer/local/canvasComponent/opNEmQQBt/opNEmQQBt.js\";import SocialIcons from\"#framer/local/canvasComponent/RGEIT9T2c/RGEIT9T2c.js\";import ProjectCard from\"#framer/local/canvasComponent/sQRfhlrQn/sQRfhlrQn.js\";import Footer from\"#framer/local/canvasComponent/yXSMORzYa/yXSMORzYa.js\";import Projects from\"#framer/local/collection/pCGWi4Dqj/pCGWi4Dqj.js\";import*as sharedStyle3 from\"#framer/local/css/Hvp8Hk0or/Hvp8Hk0or.js\";import*as sharedStyle1 from\"#framer/local/css/lRoEGS0dQ/lRoEGS0dQ.js\";import*as sharedStyle2 from\"#framer/local/css/xAzHwdCxe/xAzHwdCxe.js\";import*as sharedStyle from\"#framer/local/css/ZqkVjMRU8/ZqkVjMRU8.js\";import metadataProvider from\"#framer/local/webPageMetadata/augiA20Il/augiA20Il.js\";const NavigationFonts=getFonts(Navigation);const ContainerWithFX=withFX(Container);const RichTextWithFX=withFX(RichText);const SocialIconsFonts=getFonts(SocialIcons);const ContainerWithOptimizedAppearEffect=withOptimizedAppearEffect(Container);const TickerFonts=getFonts(Ticker);const HeroFonts=getFonts(Hero);const ProjectCardFonts=getFonts(ProjectCard);const MainProjectFonts=getFonts(MainProject);const ContactFonts=getFonts(Contact);const FooterFonts=getFonts(Footer);const breakpoints={cMzN1zdB_:\"(max-width: 809px)\",kGxUs7ac4:\"(min-width: 810px) and (max-width: 1199px)\",WQLkyLRf1:\"(min-width: 1200px)\"};const isBrowser=()=>typeof document!==\"undefined\";const serializationHash=\"framer-tbhdf\";const variantClassNames={cMzN1zdB_:\"framer-v-1rhqx1k\",kGxUs7ac4:\"framer-v-yct7vb\",WQLkyLRf1:\"framer-v-72rtr7\"};const transition1={damping:35,delay:0,mass:1,stiffness:400,type:\"spring\"};const animation={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:0,y:-90};const transformTemplate1=(_,t)=>`translateX(-50%) ${t}`;const animation1={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:0,y:10};const transition2={damping:80,delay:0,mass:1,stiffness:400,type:\"spring\"};const animation2={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition2,x:0,y:10};const transition3={damping:80,delay:.1,mass:1,stiffness:400,type:\"spring\"};const animation3={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition3,x:0,y:10};const transition4={damping:60,delay:.4,mass:.9,stiffness:380,type:\"spring\"};const animation4={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition4,x:0,y:0};const animation5={opacity:.001,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:0,y:10};const transition5={damping:60,delay:.6,mass:.9,stiffness:320,type:\"spring\"};const animation6={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition5,x:0,y:0};const transition6={damping:60,delay:.3,mass:.9,stiffness:400,type:\"spring\"};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:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:0,y:30};const transition7={delay:0,duration:1.5,ease:[.35,0,0,1],type:\"tween\"};const animation9={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition7,x:0,y:30};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 metadata=metadataProvider();const humanReadableVariantMap={Desktop:\"WQLkyLRf1\",Phone:\"cMzN1zdB_\",Tablet:\"kGxUs7ac4\"};const getProps=({height,id,width,...props})=>{var _humanReadableVariantMap_props_variant,_ref;return{...props,variant:(_ref=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref!==void 0?_ref:\"WQLkyLRf1\"};};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,g42toHGimhujl9gxSo,QMxABXKW8hujl9gxSo,vRLoTOkA0hujl9gxSo,tP7bgIgu1hujl9gxSo,idhujl9gxSo,...restProps}=getProps(props);React.useEffect(()=>{const metadata1=metadataProvider(undefined,activeLocale);if(metadata1.robots){let robotsTag=document.querySelector('meta[name=\"robots\"]');if(robotsTag){robotsTag.setAttribute(\"content\",metadata1.robots);}else{robotsTag=document.createElement(\"meta\");robotsTag.setAttribute(\"name\",\"robots\");robotsTag.setAttribute(\"content\",metadata1.robots);document.head.appendChild(robotsTag);}}},[undefined,activeLocale]);React.useInsertionEffect(()=>{const metadata1=metadataProvider(undefined,activeLocale);document.title=metadata1.title||\"\";if(metadata1.viewport){var _document_querySelector;(_document_querySelector=document.querySelector('meta[name=\"viewport\"]'))===null||_document_querySelector===void 0?void 0:_document_querySelector.setAttribute(\"content\",metadata1.viewport);}const bodyCls=metadata1.bodyClassName;if(bodyCls){const body=document.body;body.classList.forEach(c=>c.startsWith(\"framer-body-\")&&body.classList.remove(c));body.classList.add(`${metadata1.bodyClassName}-framer-tbhdf`);}return()=>{if(bodyCls)document.body.classList.remove(`${metadata1.bodyClassName}-framer-tbhdf`);};},[undefined,activeLocale]);const[baseVariant,hydratedBaseVariant]=useHydratedBreakpointVariants(variant,breakpoints,false);const gestureVariant=undefined;const ref1=React.useRef(null);const router=useRouter();const elementId=useRouteElementId(\"DAXd8hBnD\");const ref2=React.useRef(null);const defaultLayoutId=React.useId();const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className,sharedStyle2.className,sharedStyle3.className];useCustomCursors({});return /*#__PURE__*/_jsx(GeneratedComponentContext.Provider,{value:{primaryVariantId:\"WQLkyLRf1\",variantClassNames},children:/*#__PURE__*/_jsxs(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:[/*#__PURE__*/_jsxs(motion.div,{...restProps,className:cx(serializationHash,...sharedStyleClassNames,\"framer-72rtr7\",className),ref:ref!==null&&ref!==void 0?ref:ref1,style:{...style},children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:90,width:\"100vw\",y:0,children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:false,__framer__scrollDirection:{direction:\"down\",target:animation},__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-17x9xak-container\",layoutScroll:true,style:{transformPerspective:1200},transformTemplate:transformTemplate1,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{cMzN1zdB_:{variant:\"cQoiYfDH2\"},kGxUs7ac4:{variant:\"Ux7fstYkb\"}},children:/*#__PURE__*/_jsx(Navigation,{eKmzOkyhq:\"Ea2sRRY7d\",height:\"100%\",id:\"kbqu6Ai5J\",layoutId:\"kbqu6Ai5J\",style:{width:\"100%\"},variant:\"mgenRua7t\",width:\"100%\"})})})}),/*#__PURE__*/_jsxs(\"section\",{className:\"framer-ufjqu5\",\"data-framer-name\":\"Hero Section\",name:\"Hero Section\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1aqy3o0\",\"data-framer-name\":\"Content\",name:\"Content\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1f19x5n\",\"data-framer-name\":\"Texts\",name:\"Texts\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{cMzN1zdB_:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:252,intrinsicWidth:252,pixelHeight:1924,pixelWidth:1800,sizes:\"100px\",src:\"https://framerusercontent.com/images/IZp6Za8UWi2Msnpzv0uaT4VU0.jpg?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/IZp6Za8UWi2Msnpzv0uaT4VU0.jpg?scale-down-to=1024 958w,https://framerusercontent.com/images/IZp6Za8UWi2Msnpzv0uaT4VU0.jpg 1800w\"}},kGxUs7ac4:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:252,intrinsicWidth:252,loading:getLoadingLazyAtYPosition(155),pixelHeight:1924,pixelWidth:1800,sizes:\"100px\",src:\"https://framerusercontent.com/images/IZp6Za8UWi2Msnpzv0uaT4VU0.jpg?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/IZp6Za8UWi2Msnpzv0uaT4VU0.jpg?scale-down-to=1024 958w,https://framerusercontent.com/images/IZp6Za8UWi2Msnpzv0uaT4VU0.jpg 1800w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:252,intrinsicWidth:252,loading:getLoadingLazyAtYPosition(135),pixelHeight:1924,pixelWidth:1800,sizes:\"100px\",src:\"https://framerusercontent.com/images/IZp6Za8UWi2Msnpzv0uaT4VU0.jpg?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/IZp6Za8UWi2Msnpzv0uaT4VU0.jpg?scale-down-to=1024 958w,https://framerusercontent.com/images/IZp6Za8UWi2Msnpzv0uaT4VU0.jpg 1800w\"},className:\"framer-1o0hhtc\",\"data-framer-name\":\"Picture\",name:\"Picture\"})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{cMzN1zdB_:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-wydogt\",\"data-styles-preset\":\"lRoEGS0dQ\",children:\"Hey there \uD83D\uDC4B, I'm Eric\u2014strategic content marketing leader with 13+ years of experience crafting data-driven strategies that enhance brand awareness and drive revenue growth.\"})})}},children:/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation1,__framer__exit:animation2,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{className:\"framer-styles-preset-13c3248\",\"data-styles-preset\":\"ZqkVjMRU8\",children:\"Hey there \uD83D\uDC4B, I'm Eric\u2014strategic content marketing leader with 13+ years of experience crafting data-driven strategies that enhance brand awareness and drive revenue growth.\"})}),className:\"framer-wibons\",\"data-framer-name\":\"Title\",fonts:[\"Inter\"],name:\"Title\",style:{transformPerspective:1200},verticalAlignment:\"center\",withExternalLayout:true})}),/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition3},__framer__animateOnce:true,__framer__enter:animation1,__framer__exit:animation3,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h5\",{className:\"framer-styles-preset-2pqig1\",\"data-styles-preset\":\"xAzHwdCxe\",children:\"Skilled at transforming complex concepts into customer-centric messaging and scaling campaigns to reach millions. Known for aligning content initiatives with business objectives to optimize ROI and build customer loyalty. Strong communicator who forges impactful relationships across diverse teams to ensure cohesive messaging and successful execution.\"})}),className:\"framer-103jjez\",\"data-framer-name\":\"Description\",fonts:[\"Inter\"],name:\"Description\",style:{transformPerspective:1200},verticalAlignment:\"center\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-s3ermw\",\"data-framer-name\":\"Social buttons\",name:\"Social buttons\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{cMzN1zdB_:{y:undefined},kGxUs7ac4:{y:473}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:42,y:453,children:/*#__PURE__*/_jsx(ContainerWithOptimizedAppearEffect,{animate:animation4,className:\"framer-lvjcih-container\",\"data-framer-appear-id\":\"lvjcih\",initial:animation5,optimized:true,style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(SocialIcons,{height:\"100%\",id:\"wvfUrJtCq\",layoutId:\"wvfUrJtCq\",variant:\"If66jku3Y\",width:\"100%\",y0HF6pBFa:\"https://www.linkedin.com/in/ephubbard/\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{cMzN1zdB_:{y:undefined},kGxUs7ac4:{y:473}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:42,y:453,children:/*#__PURE__*/_jsx(ContainerWithOptimizedAppearEffect,{animate:animation6,className:\"framer-1nk988s-container\",\"data-framer-appear-id\":\"1nk988s\",initial:animation5,optimized:true,style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(SocialIcons,{height:\"100%\",id:\"g4ZN7Zfif\",layoutId:\"g4ZN7Zfif\",variant:\"z8YgNXx7V\",width:\"100%\",y0HF6pBFa:\"https://x.com/ephubbard\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{cMzN1zdB_:{y:undefined},kGxUs7ac4:{y:473}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:42,y:453,children:/*#__PURE__*/_jsx(ContainerWithOptimizedAppearEffect,{animate:animation7,className:\"framer-1glftke-container\",\"data-framer-appear-id\":\"1glftke\",initial:animation5,optimized:true,style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(SocialIcons,{height:\"100%\",id:\"Berb1BOJL\",layoutId:\"Berb1BOJL\",variant:\"EhLmdXEzY\",width:\"100%\",y0HF6pBFa:\"https://dribbble.com/ephubbard\"})})})})]})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-8vydiv\",\"data-framer-name\":\"Gallery\",name:\"Gallery\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-17zd6od-container\",children:/*#__PURE__*/_jsx(Ticker,{alignment:\"center\",direction:\"left\",fadeOptions:{fadeAlpha:0,fadeContent:false,fadeInset:0,fadeWidth:25,overflow:true},gap:10,height:\"100%\",hoverFactor:.5,id:\"QgdDUfsuT\",layoutId:\"QgdDUfsuT\",padding:0,paddingBottom:0,paddingLeft:0,paddingPerSide:false,paddingRight:0,paddingTop:0,sizingOptions:{heightType:true,widthType:true},slots:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1500,intrinsicWidth:2e3,pixelHeight:1600,pixelWidth:2133,sizes:\"367px\",src:\"https://framerusercontent.com/images/ERp9FN9j3nYxCtFklTY8Bqs4PY.jpg?scale-down-to=2048\",srcSet:\"https://framerusercontent.com/images/ERp9FN9j3nYxCtFklTY8Bqs4PY.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/ERp9FN9j3nYxCtFklTY8Bqs4PY.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/ERp9FN9j3nYxCtFklTY8Bqs4PY.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/ERp9FN9j3nYxCtFklTY8Bqs4PY.jpg 2133w\"},className:\"framer-5zist6\",\"data-framer-name\":\"1\",name:\"1\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1500,intrinsicWidth:2e3,pixelHeight:3200,pixelWidth:4267,sizes:\"367px\",src:\"https://framerusercontent.com/images/DjpWfFwpS8G4lSCTDtmhTicY3Co.jpg?scale-down-to=2048\",srcSet:\"https://framerusercontent.com/images/DjpWfFwpS8G4lSCTDtmhTicY3Co.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/DjpWfFwpS8G4lSCTDtmhTicY3Co.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/DjpWfFwpS8G4lSCTDtmhTicY3Co.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/DjpWfFwpS8G4lSCTDtmhTicY3Co.jpg?scale-down-to=4096 4096w,https://framerusercontent.com/images/DjpWfFwpS8G4lSCTDtmhTicY3Co.jpg 4267w\"},className:\"framer-mmzwx\",\"data-framer-name\":\"2\",name:\"2\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1500,intrinsicWidth:2e3,pixelHeight:1600,pixelWidth:2133,sizes:\"367px\",src:\"https://framerusercontent.com/images/vQ8GDBeltgEZwgt3LIV96dwk.jpg?scale-down-to=2048\",srcSet:\"https://framerusercontent.com/images/vQ8GDBeltgEZwgt3LIV96dwk.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/vQ8GDBeltgEZwgt3LIV96dwk.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/vQ8GDBeltgEZwgt3LIV96dwk.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/vQ8GDBeltgEZwgt3LIV96dwk.jpg 2133w\"},className:\"framer-1hh24ds\",\"data-framer-name\":\"3\",name:\"3\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1500,intrinsicWidth:2e3,pixelHeight:1329,pixelWidth:2e3,sizes:\"367px\",src:\"https://framerusercontent.com/images/GJqe6Zx66J4UpfEBwJ3m7coFB4A.jpg\",srcSet:\"https://framerusercontent.com/images/GJqe6Zx66J4UpfEBwJ3m7coFB4A.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/GJqe6Zx66J4UpfEBwJ3m7coFB4A.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/GJqe6Zx66J4UpfEBwJ3m7coFB4A.jpg 2000w\"},className:\"framer-13mn8th\",\"data-framer-name\":\"4\",name:\"4\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1500,intrinsicWidth:2e3,pixelHeight:1600,pixelWidth:2133,sizes:\"367px\",src:\"https://framerusercontent.com/images/cP5iERLvJDuQDIVD0GO8yEyEgkU.jpg?scale-down-to=2048\",srcSet:\"https://framerusercontent.com/images/cP5iERLvJDuQDIVD0GO8yEyEgkU.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/cP5iERLvJDuQDIVD0GO8yEyEgkU.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/cP5iERLvJDuQDIVD0GO8yEyEgkU.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/cP5iERLvJDuQDIVD0GO8yEyEgkU.jpg 2133w\"},className:\"framer-17qe16d\",\"data-framer-name\":\"5\",name:\"5\"})],speed:60,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1x331vj\",\"data-framer-name\":\"Selected works\",name:\"Selected works\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-fwi00r\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-7kps5\",\"data-framer-name\":\"Content\",name:\"Content\",children:[/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation1,__framer__exit:animation2,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-wydogt\",\"data-styles-preset\":\"lRoEGS0dQ\",children:\"Latest Work\"})}),className:\"framer-14acqjk\",fonts:[\"Inter\"],style:{transformPerspective:1200},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition3},__framer__animateOnce:true,__framer__enter:animation1,__framer__exit:animation3,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1y1gyft\",\"data-styles-preset\":\"Hvp8Hk0or\",children:\"Case studies showcasing thoughtful, impactful content and branding strategies.\"})}),className:\"framer-puiveo\",fonts:[\"Inter\"],style:{transformPerspective:1200},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(Link,{href:{webPageId:\"XBE6N7Tqr\"},nodeId:\"vI1SJabVw\",children:/*#__PURE__*/_jsxs(\"a\",{className:\"framer-13mwx5h framer-lux5qc\",\"data-framer-name\":\"Button\",name:\"Button\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SUJNIFBsZXggU2Fucy01MDA=\",\"--framer-font-family\":'\"IBM Plex Sans\", \"IBM Plex Sans Placeholder\", sans-serif',\"--framer-font-size\":\"15px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"1.5em\",\"--framer-text-color\":\"var(--token-580a2b62-0f95-4863-bdb1-defd32dc6413, rgb(60, 120, 216))\"},children:\"See more projects\"})}),className:\"framer-1iqt793\",fonts:[\"GF;IBM Plex Sans-500\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-h0xijt-container\",children:/*#__PURE__*/_jsx(Hero,{color:\"var(--token-580a2b62-0f95-4863-bdb1-defd32dc6413, rgb(60, 120, 216))\",height:\"100%\",iconSearch:\"Home\",iconSelection:\"ArrowRight\",id:\"VhZNhktUa\",layoutId:\"VhZNhktUa\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})]})})]})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-xyw8mp\",children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(QueryData,{query:{from:{alias:\"hujl9gxSo\",data:Projects,type:\"Collection\"},select:[{collection:\"hujl9gxSo\",name:\"g42toHGim\",type:\"Identifier\"},{collection:\"hujl9gxSo\",name:\"QMxABXKW8\",type:\"Identifier\"},{collection:\"hujl9gxSo\",name:\"vRLoTOkA0\",type:\"Identifier\"},{collection:\"hujl9gxSo\",name:\"tP7bgIgu1\",type:\"Identifier\"},{collection:\"hujl9gxSo\",name:\"id\",type:\"Identifier\"}],where:{collection:\"hujl9gxSo\",name:\"H1hjWH27F\",type:\"Identifier\"}},children:(collection,paginationInfo,loadMore)=>/*#__PURE__*/_jsx(_Fragment,{children:collection.map(({g42toHGim:g42toHGimhujl9gxSo,id:idhujl9gxSo,QMxABXKW8:QMxABXKW8hujl9gxSo,tP7bgIgu1:tP7bgIgu1hujl9gxSo,vRLoTOkA0:vRLoTOkA0hujl9gxSo},i)=>{QMxABXKW8hujl9gxSo!==null&&QMxABXKW8hujl9gxSo!==void 0?QMxABXKW8hujl9gxSo:QMxABXKW8hujl9gxSo=\"\";vRLoTOkA0hujl9gxSo!==null&&vRLoTOkA0hujl9gxSo!==void 0?vRLoTOkA0hujl9gxSo:vRLoTOkA0hujl9gxSo=\"\";tP7bgIgu1hujl9gxSo!==null&&tP7bgIgu1hujl9gxSo!==void 0?tP7bgIgu1hujl9gxSo:tP7bgIgu1hujl9gxSo=\"\";return /*#__PURE__*/_jsx(LayoutGroup,{id:`hujl9gxSo-${idhujl9gxSo}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{tP7bgIgu1:tP7bgIgu1hujl9gxSo},children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-fm2n4o\",children:/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{pathVariables:{tP7bgIgu1:tP7bgIgu1hujl9gxSo},webPageId:\"wb6JC1Hqk\"},implicitPathVariables:undefined},{href:{pathVariables:{tP7bgIgu1:tP7bgIgu1hujl9gxSo},webPageId:\"wb6JC1Hqk\"},implicitPathVariables:undefined},{href:{pathVariables:{tP7bgIgu1:tP7bgIgu1hujl9gxSo},webPageId:\"wb6JC1Hqk\"},implicitPathVariables:undefined}],children:resolvedLinks=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{cMzN1zdB_:{width:\"max(min(100vw - 40px, 1800px), 1px)\",y:undefined},kGxUs7ac4:{width:\"max(min(100vw - 80px, 1800px), 1px)\",y:1291.5}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:588,width:\"max(min(100vw - 200px, 1800px), 1px)\",y:1357.5,children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition7},__framer__animateOnce:true,__framer__enter:animation8,__framer__exit:animation9,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-nrfe7g-container\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{cMzN1zdB_:{variant:\"KB1gMF1ij\",vY1STL7f7:resolvedLinks[2]},kGxUs7ac4:{vY1STL7f7:resolvedLinks[1]}},children:/*#__PURE__*/_jsx(ProjectCard,{avA3QS9Mr:vRLoTOkA0hujl9gxSo,DnEbmSPPQ:QMxABXKW8hujl9gxSo,height:\"100%\",id:\"R4k1A907N\",layoutId:\"R4k1A907N\",style:{width:\"100%\"},variant:\"JWmVJmje5\",vY1STL7f7:resolvedLinks[0],VzGJl9qpl:toResponsiveImage(g42toHGimhujl9gxSo),width:\"100%\"})})})})})})})})},idhujl9gxSo);})})})})})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1log0ny\",\"data-framer-name\":\"Main Project\",name:\"Main Project\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-1fnnftm\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{cMzN1zdB_:{y:undefined},kGxUs7ac4:{y:1959.5}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:600,width:\"100vw\",y:2041.5,children:/*#__PURE__*/_jsx(Container,{className:\"framer-5r9h0u-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{cMzN1zdB_:{variant:\"ezKDocxsA\"},kGxUs7ac4:{variant:\"r1N4H43Ve\"}},children:/*#__PURE__*/_jsx(MainProject,{height:\"100%\",id:\"o5ngCAcwF\",layoutId:\"o5ngCAcwF\",style:{width:\"100%\"},variant:\"CDI526hJ4\",width:\"100%\"})})})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{cMzN1zdB_:{y:undefined},kGxUs7ac4:{y:2559.5}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:368,width:\"100vw\",y:2641.5,children:/*#__PURE__*/_jsx(Container,{className:\"framer-ldqlhj-container\",id:elementId,ref:ref2,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{cMzN1zdB_:{variant:\"irbR3RFFu\"},kGxUs7ac4:{variant:\"kw5I7yEre\"}},children:/*#__PURE__*/_jsx(Contact,{height:\"100%\",id:\"DAXd8hBnD\",layoutId:\"DAXd8hBnD\",style:{width:\"100%\"},variant:\"B6vFvi3sl\",width:\"100%\"})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{cMzN1zdB_:{y:undefined},kGxUs7ac4:{y:2927.5}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:274,width:\"100vw\",y:3009.5,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1rn83ik-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{cMzN1zdB_:{style:{width:\"100%\"},variant:\"wggnzv838\"},kGxUs7ac4:{variant:\"pXfs3nebY\"}},children:/*#__PURE__*/_jsx(Footer,{height:\"100%\",id:\"MXZhJKbYJ\",layoutId:\"MXZhJKbYJ\",style:{height:\"100%\",width:\"100%\"},variant:\"ALgxxvXY4\",width:\"100%\"})})})})})]}),/*#__PURE__*/_jsx(\"div\",{className:cx(serializationHash,...sharedStyleClassNames),id:\"overlay\"})]})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",`.${metadata.bodyClassName}-framer-tbhdf { background: var(--token-3ef014c9-ad51-4ceb-b698-92ed0047912a, rgb(255, 255, 255)) /* {\"name\":\"White\"} */; }`,\".framer-tbhdf.framer-lux5qc, .framer-tbhdf .framer-lux5qc { display: block; }\",\".framer-tbhdf.framer-72rtr7 { align-content: center; align-items: center; background-color: var(--token-3ef014c9-ad51-4ceb-b698-92ed0047912a, #ffffff); display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1200px; }\",\".framer-tbhdf .framer-17x9xak-container { flex: none; height: auto; left: 50%; position: fixed; top: 0px; transform: translateX(-50%); width: 100%; z-index: 1; }\",\".framer-tbhdf .framer-ufjqu5 { align-content: center; align-items: center; background-color: var(--token-6404906a-a8f6-4a20-b609-163acb7b17d6, #f9f9f9); border-bottom-left-radius: 60px; border-bottom-right-radius: 60px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 60px; height: min-content; justify-content: center; overflow: visible; padding: 130px 100px 150px 100px; position: relative; width: 100%; }\",\".framer-tbhdf .framer-1aqy3o0 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: center; max-width: 1800px; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-tbhdf .framer-1f19x5n { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: flex-start; max-width: 100%; overflow: visible; padding: 5px 0px 0px 0px; position: relative; width: 100%; }\",\".framer-tbhdf .framer-1o0hhtc { border-bottom-left-radius: 100px; border-bottom-right-radius: 100px; border-top-left-radius: 100px; border-top-right-radius: 100px; flex: none; height: 100px; position: relative; width: 100px; }\",\".framer-tbhdf .framer-wibons, .framer-tbhdf .framer-103jjez { flex: none; height: auto; max-width: 1200px; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-tbhdf .framer-s3ermw { 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: min-content; }\",\".framer-tbhdf .framer-lvjcih-container, .framer-tbhdf .framer-1nk988s-container, .framer-tbhdf .framer-1glftke-container { flex: none; height: auto; position: relative; width: auto; }\",\".framer-tbhdf .framer-8vydiv { 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; max-width: 1800px; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-tbhdf .framer-17zd6od-container { flex: none; height: 240px; position: relative; width: 993px; }\",\".framer-tbhdf .framer-5zist6, .framer-tbhdf .framer-mmzwx, .framer-tbhdf .framer-1hh24ds, .framer-tbhdf .framer-13mn8th, .framer-tbhdf .framer-17qe16d { aspect-ratio: 1.528957528957529 / 1; border-bottom-left-radius: 13px; border-bottom-right-radius: 13px; border-top-left-radius: 13px; border-top-right-radius: 13px; height: var(--framer-aspect-ratio-supported, 240px); overflow: hidden; position: relative; width: 367px; will-change: var(--framer-will-change-override, transform); }\",\".framer-tbhdf .framer-1x331vj { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 50px; height: min-content; justify-content: center; overflow: hidden; padding: 96px 100px 96px 100px; position: relative; width: 100%; }\",\".framer-tbhdf .framer-fwi00r { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 30px; height: min-content; justify-content: center; max-width: 1800px; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-tbhdf .framer-7kps5 { 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: center; max-width: 1800px; padding: 0px; position: relative; width: 100%; }\",\".framer-tbhdf .framer-14acqjk { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; overflow: visible; position: relative; white-space: pre; width: auto; }\",\".framer-tbhdf .framer-puiveo { flex: none; height: auto; overflow: visible; position: relative; white-space: pre-wrap; width: 550px; word-break: break-word; word-wrap: break-word; }\",\".framer-tbhdf .framer-13mwx5h { -webkit-backdrop-filter: blur(50px); align-content: center; align-items: center; backdrop-filter: blur(50px); border-bottom-left-radius: 20px; border-bottom-right-radius: 20px; border-top-left-radius: 20px; border-top-right-radius: 20px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; text-decoration: none; width: min-content; will-change: var(--framer-will-change-override, transform); }\",\".framer-tbhdf .framer-1iqt793 { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-tbhdf .framer-h0xijt-container { flex: none; height: 16px; position: relative; width: 16px; }\",\".framer-tbhdf .framer-xyw8mp { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: flex-start; max-width: 1800px; padding: 0px; position: relative; width: 100%; }\",\".framer-tbhdf .framer-fm2n4o { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: flex-start; padding: 0px; position: relative; width: 1px; }\",\".framer-tbhdf .framer-nrfe7g-container { flex: 1 0 0px; height: auto; position: relative; width: 1px; }\",\".framer-tbhdf .framer-1log0ny, .framer-tbhdf .framer-1fnnftm { align-content: center; align-items: center; background-color: var(--token-266c8d71-9990-411c-9a11-ecf80446ea66, #2a2a28); 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-tbhdf .framer-5r9h0u-container, .framer-tbhdf .framer-ldqlhj-container { flex: none; height: auto; position: relative; width: 100%; }\",\".framer-tbhdf .framer-1rn83ik-container { flex: none; height: 274px; position: relative; width: 100%; }\",\"@supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-tbhdf.framer-72rtr7, .framer-tbhdf .framer-ufjqu5, .framer-tbhdf .framer-1aqy3o0, .framer-tbhdf .framer-1f19x5n, .framer-tbhdf .framer-s3ermw, .framer-tbhdf .framer-8vydiv, .framer-tbhdf .framer-1x331vj, .framer-tbhdf .framer-fwi00r, .framer-tbhdf .framer-7kps5, .framer-tbhdf .framer-13mwx5h, .framer-tbhdf .framer-xyw8mp, .framer-tbhdf .framer-fm2n4o, .framer-tbhdf .framer-1log0ny, .framer-tbhdf .framer-1fnnftm { gap: 0px; } .framer-tbhdf.framer-72rtr7 > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-tbhdf.framer-72rtr7 > :first-child, .framer-tbhdf .framer-ufjqu5 > :first-child, .framer-tbhdf .framer-1aqy3o0 > :first-child, .framer-tbhdf .framer-1f19x5n > :first-child, .framer-tbhdf .framer-1x331vj > :first-child, .framer-tbhdf .framer-fwi00r > :first-child, .framer-tbhdf .framer-7kps5 > :first-child, .framer-tbhdf .framer-1log0ny > :first-child, .framer-tbhdf .framer-1fnnftm > :first-child { margin-top: 0px; } .framer-tbhdf.framer-72rtr7 > :last-child, .framer-tbhdf .framer-ufjqu5 > :last-child, .framer-tbhdf .framer-1aqy3o0 > :last-child, .framer-tbhdf .framer-1f19x5n > :last-child, .framer-tbhdf .framer-1x331vj > :last-child, .framer-tbhdf .framer-fwi00r > :last-child, .framer-tbhdf .framer-7kps5 > :last-child, .framer-tbhdf .framer-1log0ny > :last-child, .framer-tbhdf .framer-1fnnftm > :last-child { margin-bottom: 0px; } .framer-tbhdf .framer-ufjqu5 > * { margin: 0px; margin-bottom: calc(60px / 2); margin-top: calc(60px / 2); } .framer-tbhdf .framer-1aqy3o0 > *, .framer-tbhdf .framer-1f19x5n > * { margin: 0px; margin-bottom: calc(40px / 2); margin-top: calc(40px / 2); } .framer-tbhdf .framer-s3ermw > * { margin: 0px; margin-left: calc(20px / 2); margin-right: calc(20px / 2); } .framer-tbhdf .framer-s3ermw > :first-child, .framer-tbhdf .framer-8vydiv > :first-child, .framer-tbhdf .framer-13mwx5h > :first-child, .framer-tbhdf .framer-xyw8mp > :first-child, .framer-tbhdf .framer-fm2n4o > :first-child { margin-left: 0px; } .framer-tbhdf .framer-s3ermw > :last-child, .framer-tbhdf .framer-8vydiv > :last-child, .framer-tbhdf .framer-13mwx5h > :last-child, .framer-tbhdf .framer-xyw8mp > :last-child, .framer-tbhdf .framer-fm2n4o > :last-child { margin-right: 0px; } .framer-tbhdf .framer-8vydiv > *, .framer-tbhdf .framer-13mwx5h > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-tbhdf .framer-1x331vj > * { margin: 0px; margin-bottom: calc(50px / 2); margin-top: calc(50px / 2); } .framer-tbhdf .framer-fwi00r > * { margin: 0px; margin-bottom: calc(30px / 2); margin-top: calc(30px / 2); } .framer-tbhdf .framer-7kps5 > * { margin: 0px; margin-bottom: calc(20px / 2); margin-top: calc(20px / 2); } .framer-tbhdf .framer-xyw8mp > *, .framer-tbhdf .framer-fm2n4o > * { margin: 0px; margin-left: calc(40px / 2); margin-right: calc(40px / 2); } .framer-tbhdf .framer-1log0ny > *, .framer-tbhdf .framer-1fnnftm > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } }\",...sharedStyle.css,...sharedStyle1.css,...sharedStyle2.css,...sharedStyle3.css,`@media (min-width: 810px) and (max-width: 1199px) { .${metadata.bodyClassName}-framer-tbhdf { background: var(--token-3ef014c9-ad51-4ceb-b698-92ed0047912a, rgb(255, 255, 255)) /* {\"name\":\"White\"} */; } .framer-tbhdf.framer-72rtr7 { width: 810px; } .framer-tbhdf .framer-ufjqu5 { border-bottom-left-radius: 50px; border-bottom-right-radius: 50px; padding: 150px 40px 80px 40px; } .framer-tbhdf .framer-1aqy3o0 { justify-content: flex-start; max-width: 100%; } .framer-tbhdf .framer-wibons, .framer-tbhdf .framer-103jjez { max-width: 100%; } .framer-tbhdf .framer-1x331vj { padding: 80px 40px 80px 40px; } .framer-tbhdf .framer-puiveo { width: 100%; } .framer-tbhdf .framer-xyw8mp { flex-direction: column; } .framer-tbhdf .framer-fm2n4o { flex: none; width: 100%; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-tbhdf .framer-xyw8mp { gap: 0px; } .framer-tbhdf .framer-xyw8mp > * { margin: 0px; margin-bottom: calc(40px / 2); margin-top: calc(40px / 2); } .framer-tbhdf .framer-xyw8mp > :first-child { margin-top: 0px; } .framer-tbhdf .framer-xyw8mp > :last-child { margin-bottom: 0px; } }}`,`@media (max-width: 809px) { .${metadata.bodyClassName}-framer-tbhdf { background: var(--token-3ef014c9-ad51-4ceb-b698-92ed0047912a, rgb(255, 255, 255)) /* {\"name\":\"White\"} */; } .framer-tbhdf.framer-72rtr7 { width: 390px; } .framer-tbhdf .framer-ufjqu5 { border-bottom-left-radius: 20px; border-bottom-right-radius: 20px; padding: 50px 0px 100px 0px; } .framer-tbhdf .framer-1aqy3o0 { align-content: center; align-items: center; gap: 56px; max-width: 100%; order: 0; padding: 60px 20px 0px 20px; } .framer-tbhdf .framer-1f19x5n { gap: 30px; } .framer-tbhdf .framer-wibons, .framer-tbhdf .framer-103jjez { max-width: 100%; } .framer-tbhdf .framer-s3ermw { flex-wrap: wrap; gap: unset; justify-content: space-evenly; max-width: 390px; width: 100%; } .framer-tbhdf .framer-8vydiv { order: 1; } .framer-tbhdf .framer-1x331vj { gap: 70px; padding: 60px 20px 100px 20px; } .framer-tbhdf .framer-14acqjk { white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; } .framer-tbhdf .framer-puiveo { width: 100%; } .framer-tbhdf .framer-xyw8mp { flex-direction: column; } .framer-tbhdf .framer-fm2n4o { flex: none; width: 100%; } .framer-tbhdf .framer-1rn83ik-container { height: auto; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-tbhdf .framer-1aqy3o0, .framer-tbhdf .framer-1f19x5n, .framer-tbhdf .framer-s3ermw, .framer-tbhdf .framer-1x331vj, .framer-tbhdf .framer-xyw8mp { gap: 0px; } .framer-tbhdf .framer-1aqy3o0 > * { margin: 0px; margin-bottom: calc(56px / 2); margin-top: calc(56px / 2); } .framer-tbhdf .framer-1aqy3o0 > :first-child, .framer-tbhdf .framer-1f19x5n > :first-child, .framer-tbhdf .framer-1x331vj > :first-child, .framer-tbhdf .framer-xyw8mp > :first-child { margin-top: 0px; } .framer-tbhdf .framer-1aqy3o0 > :last-child, .framer-tbhdf .framer-1f19x5n > :last-child, .framer-tbhdf .framer-1x331vj > :last-child, .framer-tbhdf .framer-xyw8mp > :last-child { margin-bottom: 0px; } .framer-tbhdf .framer-1f19x5n > * { margin: 0px; margin-bottom: calc(30px / 2); margin-top: calc(30px / 2); } .framer-tbhdf .framer-s3ermw > *, .framer-tbhdf .framer-s3ermw > :first-child, .framer-tbhdf .framer-s3ermw > :last-child { margin: 0px; } .framer-tbhdf .framer-1x331vj > * { margin: 0px; margin-bottom: calc(70px / 2); margin-top: calc(70px / 2); } .framer-tbhdf .framer-xyw8mp > * { margin: 0px; margin-bottom: calc(40px / 2); margin-top: calc(40px / 2); } }}`];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 3606\n * @framerIntrinsicWidth 1200\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"kGxUs7ac4\":{\"layout\":[\"fixed\",\"auto\"]},\"cMzN1zdB_\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n * @framerResponsiveScreen\n */const FrameraugiA20Il=withCSS(Component,css,\"framer-tbhdf\");export default FrameraugiA20Il;FrameraugiA20Il.displayName=\"Home\";FrameraugiA20Il.defaultProps={height:3606,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:\"IBM Plex Sans\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/ibmplexsans/v19/zYX9KVElMYYaJe8bpLHnCwDKjSL9MINmdd_qFmo.woff2\",weight:\"500\"}]},...NavigationFonts,...SocialIconsFonts,...TickerFonts,...HeroFonts,...ProjectCardFonts,...MainProjectFonts,...ContactFonts,...FooterFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts),...getFontsFromSharedStyle(sharedStyle2.fonts),...getFontsFromSharedStyle(sharedStyle3.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FrameraugiA20Il\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\",\"framerComponentViewportWidth\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"kGxUs7ac4\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"cMzN1zdB_\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerResponsiveScreen\":\"\",\"framerDisplayContentsDiv\":\"false\",\"framerIntrinsicWidth\":\"1200\",\"framerIntrinsicHeight\":\"3606\",\"framerImmutableVariables\":\"true\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}"],
  "mappings": "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",
  "names": ["MAX_DUPLICATED_ITEMS", "directionTransformers", "offset", "supportsAcceleratedAnimations", "Ticker", "props", "slots", "gap", "padding", "paddingPerSide", "paddingTop", "paddingRight", "paddingBottom", "paddingLeft", "speed", "hoverFactor", "direction", "alignment", "sizingOptions", "fadeOptions", "style", "fadeContent", "overflow", "fadeWidth", "fadeInset", "fadeAlpha", "widthType", "heightType", "paddingValue", "isCanvas", "RenderTarget", "filteredSlots", "numChildren", "j", "hasChildren", "isHorizontal", "useMotionValue", "transformer", "transform", "useTransform", "parentRef", "pe", "childrenRef", "se", "W", "size", "setSize", "ye", "clonedChildren", "dupedChildren", "duplicateBy", "opacity", "measure", "te", "parentLength", "start", "childrenLength", "childrenStyles", "initialResize", "ue", "frame", "resize", "contentSize", "child", "index", "_child_props", "_child_props1", "_child_props2", "_child_props3", "ref", "p", "LayoutGroup", "q", "i", "childIndex", "_child_props4", "_child_props5", "animateToValue", "initialTime", "prevTime", "xOrY", "isHover", "isReducedMotion", "useReducedMotion", "listRef", "animationRef", "isInView", "useInView", "useAnimationFrame", "t", "delta", "wrap", "fadeDirection", "fadeWidthStart", "fadeWidthEnd", "fadeInsetStart", "clamp", "fadeInsetEnd", "fadeMask", "containerStyle", "u", "motion", "isValidNumber", "placeholderStyles", "emojiStyles", "titleStyles", "subtitleStyles", "addPropertyControls", "ControlType", "num", "min", "max", "value", "RichTextWithFX", "withFX", "RichText2", "HeroFonts", "getFonts", "Icon", "enabledGestures", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "animation", "transition2", "animation1", "transition3", "animation2", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "_humanReadableVariantMap_props_variant", "_ref", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "Link", "u", "cx", "ComponentViewportProvider", "Image2", "getLoadingLazyAtYPosition", "css", "FramerD7jkOKHn6", "withCSS", "D7jkOKHn6_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts", "NavigationFonts", "getFonts", "opNEmQQBt_default", "ContainerWithFX", "withFX", "Container", "RichTextWithFX", "RichText2", "SocialIconsFonts", "RGEIT9T2c_default", "ContainerWithOptimizedAppearEffect", "withOptimizedAppearEffect", "TickerFonts", "Ticker", "HeroFonts", "Icon", "ProjectCardFonts", "sQRfhlrQn_default", "MainProjectFonts", "D7jkOKHn6_default", "ContactFonts", "mAIFyqmvW_default", "FooterFonts", "yXSMORzYa_default", "breakpoints", "serializationHash", "variantClassNames", "transition1", "animation", "transformTemplate1", "_", "t", "animation1", "transition2", "animation2", "transition3", "animation3", "transition4", "animation4", "animation5", "transition5", "animation6", "transition6", "animation7", "animation8", "transition7", "animation9", "toResponsiveImage", "value", "QueryData", "query", "pageSize", "children", "data", "useQueryData", "metadata", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "_humanReadableVariantMap_props_variant", "_ref", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "variant", "g42toHGimhujl9gxSo", "QMxABXKW8hujl9gxSo", "vRLoTOkA0hujl9gxSo", "tP7bgIgu1hujl9gxSo", "idhujl9gxSo", "restProps", "ue", "metadata1", "robotsTag", "ie", "_document_querySelector", "bodyCls", "body", "c", "baseVariant", "hydratedBaseVariant", "useHydratedBreakpointVariants", "breakpoints", "gestureVariant", "ref1", "pe", "router", "useRouter", "elementId", "useRouteElementId", "ref2", "defaultLayoutId", "ae", "sharedStyleClassNames", "useCustomCursors", "p", "GeneratedComponentContext", "u", "LayoutGroup", "motion", "cx", "ComponentViewportProvider", "ContainerWithFX", "PropertyOverrides2", "opNEmQQBt_default", "getLoadingLazyAtYPosition", "Image2", "x", "RichTextWithFX", "ContainerWithOptimizedAppearEffect", "RGEIT9T2c_default", "Container", "Ticker", "Link", "RichText2", "Icon", "ChildrenCanSuspend", "pCGWi4Dqj_default", "collection", "paginationInfo", "loadMore", "l", "i", "PathVariablesContext", "ResolveLinks", "resolvedLinks", "sQRfhlrQn_default", "D7jkOKHn6_default", "mAIFyqmvW_default", "yXSMORzYa_default", "css", "FrameraugiA20Il", "withCSS", "augiA20Il_default", "addFonts", "NavigationFonts", "SocialIconsFonts", "TickerFonts", "HeroFonts", "ProjectCardFonts", "MainProjectFonts", "ContactFonts", "FooterFonts", "getFontsFromSharedStyle", "fonts", "__FramerMetadata__"]
}
