{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/B2xAlJLcN0gOnt11mSPw/jyRNgY7vYWXe6t31T0wo/Ticker.js", "ssg:https://ga.jspm.io/npm:@emotion/hash@0.9.1/dist/emotion-hash.esm.js", "ssg:https://framerusercontent.com/modules/dZ9c6z10n71dmz3JQVi4/0dSuyhnHD9HrUa3w2XFr/Arc.js", "ssg:https://framerusercontent.com/modules/jHuZVgZGQrSonVNekDKG/z4WpAuyqsjnrD3UouvUw/EuHmyuAUH.js", "ssg:https://framerusercontent.com/modules/8Khyi94uOY9XB2YbgCK2/EQwylQggZ6hduK71W42F/J7C35MAVB.js", "ssg:https://framerusercontent.com/modules/sSr263HXL511i6WhzTb5/Hakdss8OD6CYN8LUQvMS/uG5kreN6V.js", "ssg:https://framerusercontent.com/modules/y9PFvvc6p8O08CFhTYin/cI4cFK0jXfSFxVRGSgrg/augiA20Il.js"],
  "sourcesContent": ["import{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{Children,useLayoutEffect,useEffect,useState,useRef,useMemo,useCallback,cloneElement}from\"react\";import{addPropertyControls,ControlType,RenderTarget}from\"framer\";import{useReducedMotion,LayoutGroup,useInView,useMotionValue,useTransform,motion,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)`};/**\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 currentTarget=RenderTarget.current();const isCanvas=currentTarget===RenderTarget.canvas||currentTarget===RenderTarget.export;// 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[{current:null},{current:null}];},[]);const[size,setSize]=useState({parent:null,children:null});/* Arrays */let clonedChildren=null;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);useLayoutEffect(()=>{frame.read(measure,false,true);return resize(parentRef.current,({contentSize})=>{if(!initialResize.current&&(contentSize.width||contentSize.height)){frame.read(measure,false,true);}initialResize.current=false;});},[]);}clonedChildren=Children.map(filteredSlots,(child,index)=>{let ref;if(index===0){ref=childrenRef[0];}if(index===filteredSlots.length-1){ref=childrenRef[1];}const size={width:widthType?child.props?.width:\"100%\",height:heightType?child.props?.height:\"100%\"};return /*#__PURE__*/_jsx(LayoutGroup,{inherit:\"id\",children:/*#__PURE__*/_jsx(\"li\",{ref:ref,style:size,children:/*#__PURE__*/cloneElement(child,{style:{...child.props?.style,...size,flexShrink:0,...childrenStyles},layoutId:child.props.layoutId?child.props.layoutId+\"-original-\"+index:undefined},child.props?.children)})});});}const isInView=isCanvas?true:useInView(parentRef);if(!isCanvas){for(let i=0;i<duplicateBy;i++){dupedChildren=dupedChildren.concat(Children.map(filteredSlots,(child,childIndex)=>{const size={width:widthType?child.props?.width:\"100%\",height:heightType?child.props?.height:\"100%\",willChange:!isInView?undefined:\"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.props?.style,width:widthType?child.props?.width:\"100%\",height:heightType?child.props?.height:\"100%\",flexShrink:0,...childrenStyles},layoutId:child.props.layoutId?child.props.layoutId+\"-dupe-\"+i:undefined},child.props?.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){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]);const playOrPause=useCallback(()=>{if(!animationRef.current)return;const hidden=document.hidden;if(isInView&&!hidden&&animationRef.current.playState===\"paused\"){animationRef.current.play();}else if((!isInView||hidden)&&animationRef.current.playState===\"running\"){animationRef.current.pause();}},[isInView]);useEffect(()=>{playOrPause();},[isInView,hoverFactor,animateToValue,speed]);useEffect(()=>{document.addEventListener(\"visibilitychange\",playOrPause);return()=>{document.removeEventListener(\"visibilitychange\",playOrPause);};},[playOrPause]);}/* 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,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||!isInView?\"auto\":\"transform\",transform:transformer(0)},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\":{\"framerIntrinsicWidth\":\"400\",\"framerSupportedLayoutHeight\":\"fixed\",\"framerDisableUnlink\":\"*\",\"framerSupportedLayoutWidth\":\"fixed\",\"framerIntrinsicHeight\":\"200\",\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Ticker.map", "function murmur2(r){var t=0;var a,e=0,c=r.length;for(;c>=4;++e,c-=4){a=255&r.charCodeAt(e)|(255&r.charCodeAt(++e))<<8|(255&r.charCodeAt(++e))<<16|(255&r.charCodeAt(++e))<<24;a=1540483477*(65535&a)+(59797*(a>>>16)<<16);a^=a>>>24;t=1540483477*(65535&a)+(59797*(a>>>16)<<16)^1540483477*(65535&t)+(59797*(t>>>16)<<16)}switch(c){case 3:t^=(255&r.charCodeAt(e+2))<<16;case 2:t^=(255&r.charCodeAt(e+1))<<8;case 1:t^=255&r.charCodeAt(e);t=1540483477*(65535&t)+(59797*(t>>>16)<<16)}t^=t>>>13;t=1540483477*(65535&t)+(59797*(t>>>16)<<16);return((t^t>>>15)>>>0).toString(36)}export{murmur2 as default};\n\n//# sourceMappingURL=emotion-hash.esm.js.map", "import{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addPropertyControls,ControlType,RenderTarget,withCSS}from\"framer\";import hash from\"@emotion/hash\";function getAlignmentIcon(alignmentBaseline){switch(alignmentBaseline){case\"top\":return\"Text Top\";case\"center\":return\"Central\";case\"bottom\":return\"Hanging\";}}/**\n * ARC TEXT FOR INSERT\n * By Adam and Benjamin\n *\n * @framerIntrinsicWidth 150\n * @framerIntrinsicHeight 150\n * @framerDisableUnlink\n *\n * @framerSupportedLayoutWidth fixed\n * @framerSupportedLayoutHeight fixed\n */const Arc=withCSS(function Arc(props){// Checks\nconst isCanvas=RenderTarget.current()===RenderTarget.canvas;// For Ellipse\nconst isEllipse=!props.type;const cylinder=isEllipse?props.cylinderHeight/2:0;// Base arc path\nconst path=createPath(props.flip,cylinder);// Unique IDs to avoid multiple instances on the canvas sharing a single path\nconst id=`curve-${hash(path)}`;// Alignment icon conversion\nconst alignmentValue=getAlignmentIcon(props.alignmentBaseline);return /*#__PURE__*/_jsxs(\"svg\",{className:\"transform-origin-center-center\",style:{width:\"100%\",height:\"100%\",transformOrigin:\"center\"},viewBox:`0 0 100 100`,overflow:\"visible\",children:[/*#__PURE__*/_jsx(\"path\",{id:id,d:path,strokeWidth:\"none\",fill:\"transparent\"}),/*#__PURE__*/_jsx(\"text\",{children:/*#__PURE__*/_jsx(\"textPath\",{href:`#${id}`,startOffset:props.startOffset,dominantBaseline:alignmentValue,style:{letterSpacing:props.font.letterSpacing?props.font.letterSpacing:1.85,...props.font,fill:props.color},children:props.text})})]});},// Work around a bug with framer-motion that calculates a px origin when animating SVG elements.\n[\".transform-origin-center-center { transform-origin: center center !important; }\"]);export default Arc;Arc.defaultProps={height:50,width:50};addPropertyControls(Arc,{text:{title:\"Content\",type:ControlType.String,defaultValue:\"DESIGN SITES LIKE A PRO WITH FRAMER\",displayTextArea:true},type:{title:\"Type\",type:ControlType.Boolean,enabledTitle:\"Circle\",disabledTitle:\"Ellipse\",defaultValue:true},cylinderHeight:{title:\"Height\",type:ControlType.Number,min:0,max:1e3,displayStepper:true,hidden:props=>props.type},alignmentBaseline:{title:\"Align\",type:ControlType.Enum,options:[\"top\",\"center\",\"bottom\"],optionIcons:[\"align-top\",\"align-middle\",\"align-bottom\"],defaultValue:\"bottom\",displaySegmentedControl:true},flip:{type:ControlType.Boolean,defaultValue:false,title:\"Direction\",enabledTitle:\"CW\",disabledTitle:\"CCW\"},startOffset:{title:\"Offset\",type:ControlType.Number,defaultValue:0,max:360,unit:\"\\xb0\",step:.5},font:{type:ControlType.Font,title:\"Font\",controls:\"extended\",displayTextAlignment:false},color:{title:\"Color\",type:ControlType.Color,defaultValue:\"#999\"}});/* Path creation method */const createPath=(flip,cylinder)=>{const cylinderTop=50-cylinder;const cylinderBottom=50+cylinder;return!flip?`M 0 50 L 0 ${cylinderTop} A 1 1 0 0 1 100 ${cylinderTop} L 100 50 L 100 ${cylinderBottom} A 1 1 0 0 1 0 ${cylinderBottom} L 0 ${cylinderTop}`:`M 0 50 L 0 ${cylinderBottom} A 1 1 0 1 0 100 ${cylinderBottom} L 100 ${cylinderTop} A 1 1 0 1 0 0 ${cylinderTop} L 0 50`;};\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"Arc\",\"slots\":[],\"annotations\":{\"framerDisableUnlink\":\"*\",\"framerIntrinsicHeight\":\"150\",\"framerSupportedLayoutHeight\":\"fixed\",\"framerSupportedLayoutWidth\":\"fixed\",\"framerIntrinsicWidth\":\"150\",\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Arc.map", "// Generated by Framer (e22b717)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,Image,RichText,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";const cycleOrder=[\"oq_KsqUyR\",\"Fe_rpihxV\"];const serializationHash=\"framer-0mwk9\";const variantClassNames={Fe_rpihxV:\"framer-v-ssss15\",oq_KsqUyR:\"framer-v-bqfzcu\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={duration:0,type:\"tween\"};const numberToPixelString=value=>{if(typeof value!==\"number\")return value;if(!Number.isFinite(value))return undefined;return Math.max(0,value)+\"px\";};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=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={\"Variant 1\":\"oq_KsqUyR\",\"Variant 2\":\"Fe_rpihxV\"};const getProps=({designation1,designation2,gap,gap2,height,id,padding,quote1,quote2,title,title2,width,...props})=>{return{...props,An0XExKoG:title??props.An0XExKoG??\"Chetna\",C0ikD8uZN:quote1??props.C0ikD8uZN??\"He's committed, self-driven, and follows through on what he starts.\",fAAJEgU1a:designation1??props.fAAJEgU1a??\"Self-Employed Educator\",j56fahQnV:gap2??props.j56fahQnV??15,JmRnfGBZO:designation2??props.JmRnfGBZO??\"Self-Employed Educator\",KZjEnqAZi:quote2??props.KZjEnqAZi??\"He's committed, self-driven, and follows through on what he starts.\",pD3RIa8Jz:gap??props.pD3RIa8Jz??15,TNrp46lvk:padding??props.TNrp46lvk??\"36px 100px 36px 250px\",variant:humanReadableVariantMap[props.variant]??props.variant??\"oq_KsqUyR\",Zq66giCQt:title2??props.Zq66giCQt??\"Chetna\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const fallbackRef=useRef(null);const refBinding=ref??fallbackRef;const defaultLayoutId=React.useId();const{activeLocale,setLocale}=useLocaleInfo();const componentViewport=useComponentViewport();const{style,className,layoutId,variant,C0ikD8uZN,KZjEnqAZi,fAAJEgU1a,JmRnfGBZO,An0XExKoG,Zq66giCQt,TNrp46lvk,pD3RIa8Jz,j56fahQnV,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"oq_KsqUyR\",ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onTap7hwgun=activeVariantCallback(async(...args)=>{setGestureState({isPressed:false});setVariant(\"Fe_rpihxV\");});const onMouseEnter1v2c6z4=activeVariantCallback(async(...args)=>{setGestureState({isHovered:true});setVariant(\"Fe_rpihxV\");});const onMouseLeavebk44ok=activeVariantCallback(async(...args)=>{setGestureState({isHovered:false});setVariant(\"oq_KsqUyR\");});const sharedStyleClassNames=[];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(motion.div,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-bqfzcu\",className,classNames),\"data-framer-name\":\"Variant 1\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"oq_KsqUyR\",onMouseEnter:onMouseEnter1v2c6z4,onTap:onTap7hwgun,ref:refBinding,style:{backgroundColor:\"rgba(217, 102, 104, 0)\",...style},variants:{Fe_rpihxV:{backgroundColor:\"rgb(217, 102, 104)\"}},...addPropertyOverrides({Fe_rpihxV:{\"data-framer-name\":\"Variant 2\",onMouseLeave:onMouseLeavebk44ok}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1vnl0gd\",layoutDependency:layoutDependency,layoutId:\"RkVDW3h58\",style:{\"--1kfw01a\":numberToPixelString(TNrp46lvk),opacity:0},variants:{Fe_rpihxV:{opacity:1}},children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",pixelHeight:80,pixelWidth:54,positionX:\"center\",positionY:\"top\",src:\"https://framerusercontent.com/images/fYyfb7LsmqFbPaS78seXEMF8TXI.png\"},className:\"framer-v1rssv\",layoutDependency:layoutDependency,layoutId:\"V_WBtWF0P\"}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-12x65uh\",layoutDependency:layoutDependency,layoutId:\"o3MGer4xa\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlM7TW9udHNlcnJhdC1yZWd1bGFy\",\"--framer-font-family\":'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"36.1px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"He's committed, self-driven, and follows through on what he starts.\"})}),className:\"framer-134olbr\",fonts:[\"FS;Montserrat-regular\"],layoutDependency:layoutDependency,layoutId:\"PoJ8k0doA\",style:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},text:KZjEnqAZi,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-14oan6a\",layoutDependency:layoutDependency,layoutId:\"ZQoMqGpan\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlM7TW9udHNlcnJhdC1ib2xk\",\"--framer-font-family\":'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"48px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"Chetna\"})}),className:\"framer-1c38h00\",fonts:[\"FS;Montserrat-bold\"],layoutDependency:layoutDependency,layoutId:\"UYiUfmyCH\",style:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},text:Zq66giCQt,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlM7TW9udHNlcnJhdC1ib2xk\",\"--framer-font-family\":'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"0.1px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"Self-Employed Educator\"})}),className:\"framer-wwd8xi\",fonts:[\"FS;Montserrat-bold\"],layoutDependency:layoutDependency,layoutId:\"GSfEA0sVO\",style:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},text:JmRnfGBZO,verticalAlignment:\"top\",withExternalLayout:true})]})]})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-iyk9b7\",layoutDependency:layoutDependency,layoutId:\"iFtXkoB_j\",style:{\"--1kfw01a\":numberToPixelString(TNrp46lvk),opacity:1},variants:{Fe_rpihxV:{opacity:0}},children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",pixelHeight:80,pixelWidth:54,positionX:\"center\",positionY:\"top\",src:\"https://framerusercontent.com/images/cLOd6OKNGt1kHE7VVJOEBWcEe4.png\"},className:\"framer-127jqyw\",layoutDependency:layoutDependency,layoutId:\"TJyrLBrvH\"}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1sb71m9\",layoutDependency:layoutDependency,layoutId:\"dngm0jLir\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlM7TW9udHNlcnJhdC1yZWd1bGFy\",\"--framer-font-family\":'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"36.1px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(54, 54, 54))\"},children:\"He's committed, self-driven, and follows through on what he starts.\"})}),className:\"framer-1hx2h4x\",fonts:[\"FS;Montserrat-regular\"],layoutDependency:layoutDependency,layoutId:\"s485TWbhG\",style:{\"--extracted-r6o4lv\":\"rgb(54, 54, 54)\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},text:C0ikD8uZN,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-ti44qb\",layoutDependency:layoutDependency,layoutId:\"QqFjgSs3M\",style:{\"--11pkk6i\":pD3RIa8Jz,\"--81tosh\":j56fahQnV},children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlM7TW9udHNlcnJhdC1ib2xk\",\"--framer-font-family\":'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"48px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(217, 102, 104))\"},children:\"Chetna\"})}),className:\"framer-1n8fyvk\",fonts:[\"FS;Montserrat-bold\"],layoutDependency:layoutDependency,layoutId:\"HUpEdKDoQ\",style:{\"--extracted-r6o4lv\":\"rgb(217, 102, 104)\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},text:An0XExKoG,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlM7TW9udHNlcnJhdC1ib2xk\",\"--framer-font-family\":'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"120%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(217, 102, 104))\"},children:\"Self-Employed Educator\"})}),className:\"framer-1swss52\",fonts:[\"FS;Montserrat-bold\"],layoutDependency:layoutDependency,layoutId:\"jjXl8aLGU\",style:{\"--extracted-r6o4lv\":\"rgb(217, 102, 104)\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},text:fAAJEgU1a,verticalAlignment:\"top\",withExternalLayout:true})]})]})]})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-0mwk9.framer-1x2p56r, .framer-0mwk9 .framer-1x2p56r { display: block; }\",\".framer-0mwk9.framer-bqfzcu { cursor: pointer; height: 220px; overflow: hidden; position: relative; width: 1400px; }\",\".framer-0mwk9 .framer-1vnl0gd, .framer-0mwk9 .framer-iyk9b7 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 14px; height: min-content; justify-content: flex-start; left: 0px; overflow: hidden; padding: var(--1kfw01a); position: absolute; top: 0px; width: 100%; }\",\".framer-0mwk9 .framer-v1rssv { flex: none; height: 171px; overflow: hidden; position: relative; width: 4%; }\",\".framer-0mwk9 .framer-12x65uh, .framer-0mwk9 .framer-1sb71m9 { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-0mwk9 .framer-134olbr, .framer-0mwk9 .framer-wwd8xi, .framer-0mwk9 .framer-1hx2h4x, .framer-0mwk9 .framer-1swss52 { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-0mwk9 .framer-14oan6a { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: 96px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-0mwk9 .framer-1c38h00, .framer-0mwk9 .framer-1n8fyvk { flex: none; height: 30%; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-0mwk9 .framer-127jqyw { flex: none; height: 136px; overflow: hidden; position: relative; width: 4%; }\",\".framer-0mwk9 .framer-ti44qb { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: calc(max(0, var(--11pkk6i)) * 1px); height: 96px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-0mwk9 .framer-1vnl0gd, .framer-0mwk9 .framer-12x65uh, .framer-0mwk9 .framer-14oan6a, .framer-0mwk9 .framer-iyk9b7, .framer-0mwk9 .framer-1sb71m9, .framer-0mwk9 .framer-ti44qb { gap: 0px; } .framer-0mwk9 .framer-1vnl0gd > *, .framer-0mwk9 .framer-iyk9b7 > * { margin: 0px; margin-left: calc(14px / 2); margin-right: calc(14px / 2); } .framer-0mwk9 .framer-1vnl0gd > :first-child, .framer-0mwk9 .framer-iyk9b7 > :first-child { margin-left: 0px; } .framer-0mwk9 .framer-1vnl0gd > :last-child, .framer-0mwk9 .framer-iyk9b7 > :last-child { margin-right: 0px; } .framer-0mwk9 .framer-12x65uh > *, .framer-0mwk9 .framer-1sb71m9 > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-0mwk9 .framer-12x65uh > :first-child, .framer-0mwk9 .framer-14oan6a > :first-child, .framer-0mwk9 .framer-1sb71m9 > :first-child, .framer-0mwk9 .framer-ti44qb > :first-child { margin-top: 0px; } .framer-0mwk9 .framer-12x65uh > :last-child, .framer-0mwk9 .framer-14oan6a > :last-child, .framer-0mwk9 .framer-1sb71m9 > :last-child, .framer-0mwk9 .framer-ti44qb > :last-child { margin-bottom: 0px; } .framer-0mwk9 .framer-14oan6a > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } .framer-0mwk9 .framer-ti44qb > * { margin: 0px; margin-bottom: calc(calc(max(0, var(--11pkk6i)) * 1px) / 2); margin-top: calc(calc(max(0, var(--11pkk6i)) * 1px) / 2); } }\",\".framer-0mwk9.framer-v-ssss15 .framer-ti44qb { gap: calc(max(0, var(--81tosh)) * 1px); }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-0mwk9.framer-v-ssss15 .framer-ti44qb { gap: 0px; } .framer-0mwk9.framer-v-ssss15 .framer-ti44qb > * { margin: 0px; margin-bottom: calc(calc(max(0, var(--81tosh)) * 1px) / 2); margin-top: calc(calc(max(0, var(--81tosh)) * 1px) / 2); } .framer-0mwk9.framer-v-ssss15 .framer-ti44qb > :first-child { margin-top: 0px; } .framer-0mwk9.framer-v-ssss15 .framer-ti44qb > :last-child { margin-bottom: 0px; } }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 220\n * @framerIntrinsicWidth 1400\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]},\"Fe_rpihxV\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerVariables {\"C0ikD8uZN\":\"quote1\",\"KZjEnqAZi\":\"quote2\",\"fAAJEgU1a\":\"designation1\",\"JmRnfGBZO\":\"designation2\",\"An0XExKoG\":\"title\",\"Zq66giCQt\":\"title2\",\"TNrp46lvk\":\"padding\",\"pD3RIa8Jz\":\"gap\",\"j56fahQnV\":\"gap2\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerEuHmyuAUH=withCSS(Component,css,\"framer-0mwk9\");export default FramerEuHmyuAUH;FramerEuHmyuAUH.displayName=\"Testimonials\";FramerEuHmyuAUH.defaultProps={height:220,width:1400};addPropertyControls(FramerEuHmyuAUH,{variant:{options:[\"oq_KsqUyR\",\"Fe_rpihxV\"],optionTitles:[\"Variant 1\",\"Variant 2\"],title:\"Variant\",type:ControlType.Enum},C0ikD8uZN:{defaultValue:\"He's committed, self-driven, and follows through on what he starts.\",displayTextArea:false,title:\"Quote 1\",type:ControlType.String},KZjEnqAZi:{defaultValue:\"He's committed, self-driven, and follows through on what he starts.\",displayTextArea:false,title:\"Quote 2\",type:ControlType.String},fAAJEgU1a:{defaultValue:\"Self-Employed Educator\",displayTextArea:false,title:\"Designation 1\",type:ControlType.String},JmRnfGBZO:{defaultValue:\"Self-Employed Educator\",displayTextArea:false,title:\"Designation 2\",type:ControlType.String},An0XExKoG:{defaultValue:\"Chetna\",displayTextArea:false,title:\"Title\",type:ControlType.String},Zq66giCQt:{defaultValue:\"Chetna\",displayTextArea:false,title:\"Title 2\",type:ControlType.String},TNrp46lvk:{defaultValue:\"36px 100px 36px 250px\",title:\"Padding\",type:ControlType.Padding},pD3RIa8Jz:{defaultValue:15,min:0,title:\"Gap\",type:ControlType.Number},j56fahQnV:{defaultValue:15,min:0,title:\"Gap 2\",type:ControlType.Number}});addFonts(FramerEuHmyuAUH,[{explicitInter:true,fonts:[{family:\"Montserrat\",source:\"fontshare\",style:\"normal\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/NZ67QOF3FXYLOR27ABJOZVKKBKNRMKMF/EHBFE55HTLOOJHTZSLD54GSL3EBTAFNQ/DI2GHUWG3WKRXISSCTNDMTWKWZC25UIW.woff2\",weight:\"400\"},{family:\"Montserrat\",source:\"fontshare\",style:\"normal\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/KDZE2GHZ4MXZP7RVHASNN75AFABT2ZB2/G33WYZOWF5RLCYVGCMU5BFGBXH4DMKUK/SHZ3SDA4YUDBQPNRSIGO7XNSCQQUBDYR.woff2\",weight:\"700\"}]}],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerEuHmyuAUH\",\"slots\":[],\"annotations\":{\"framerComponentViewportWidth\":\"true\",\"framerVariables\":\"{\\\"C0ikD8uZN\\\":\\\"quote1\\\",\\\"KZjEnqAZi\\\":\\\"quote2\\\",\\\"fAAJEgU1a\\\":\\\"designation1\\\",\\\"JmRnfGBZO\\\":\\\"designation2\\\",\\\"An0XExKoG\\\":\\\"title\\\",\\\"Zq66giCQt\\\":\\\"title2\\\",\\\"TNrp46lvk\\\":\\\"padding\\\",\\\"pD3RIa8Jz\\\":\\\"gap\\\",\\\"j56fahQnV\\\":\\\"gap2\\\"}\",\"framerIntrinsicHeight\":\"220\",\"framerContractVersion\":\"1\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"Fe_rpihxV\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerDisplayContentsDiv\":\"false\",\"framerIntrinsicWidth\":\"1400\",\"framerImmutableVariables\":\"true\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./EuHmyuAUH.map", "// Generated by Framer (47ebf4a)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,Image,RichText,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";const cycleOrder=[\"WFgOdQycR\",\"QDP4rnwzw\"];const serializationHash=\"framer-D1o8j\";const variantClassNames={QDP4rnwzw:\"framer-v-10fnstm\",WFgOdQycR:\"framer-v-b4t0xx\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const numberToPixelString=value=>{if(typeof value!==\"number\")return value;if(!Number.isFinite(value))return undefined;return Math.max(0,value)+\"px\";};const transition1={duration:0,type:\"tween\"};const toResponsiveImage=value=>{if(typeof value===\"object\"&&value!==null&&typeof value.src===\"string\"){return value;}return typeof value===\"string\"?{src:value}:undefined;};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??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={\"Variant 1\":\"WFgOdQycR\",\"Variant 2\":\"QDP4rnwzw\"};const getProps=({background,description,fontSize,height,id,image,padding,title,titleColor,visible,width,...props})=>{return{...props,dMPNrN4Dj:background??props.dMPNrN4Dj??\"rgb(216, 101, 103)\",EOsm5FJDN:image??props.EOsm5FJDN,HvMW1xQSS:title??props.HvMW1xQSS??\"Title here\",Jr5uV78kY:visible??props.Jr5uV78kY??true,LJ8Y2NW03:fontSize??props.LJ8Y2NW03??50,pXyiecaUX:padding??props.pXyiecaUX??\"20px 0px 20px 0px\",variant:humanReadableVariantMap[props.variant]??props.variant??\"WFgOdQycR\",vzQ6ca0Zb:description??props.vzQ6ca0Zb??\"Text here\",ZMMIFMqsB:titleColor??props.ZMMIFMqsB??\"rgb(239, 239, 239)\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const fallbackRef=useRef(null);const refBinding=ref??fallbackRef;const defaultLayoutId=React.useId();const{activeLocale,setLocale}=useLocaleInfo();const componentViewport=useComponentViewport();const{style,className,layoutId,variant,HvMW1xQSS,vzQ6ca0Zb,EOsm5FJDN,LJ8Y2NW03,pXyiecaUX,Jr5uV78kY,dMPNrN4Dj,ZMMIFMqsB,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"WFgOdQycR\",ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onMouseEnter1m2e6gv=activeVariantCallback(async(...args)=>{setGestureState({isHovered:true});setVariant(\"QDP4rnwzw\");});const onMouseLeaveh3rpdm=activeVariantCallback(async(...args)=>{setGestureState({isHovered:false});setVariant(\"WFgOdQycR\");});const sharedStyleClassNames=[];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(motion.div,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-b4t0xx\",className,classNames),\"data-framer-name\":\"Variant 1\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"WFgOdQycR\",onMouseEnter:onMouseEnter1m2e6gv,ref:refBinding,style:{\"--14ydago\":numberToPixelString(pXyiecaUX),backgroundColor:\"rgba(0, 0, 0, 0)\",...style},variants:{QDP4rnwzw:{backgroundColor:dMPNrN4Dj}},...addPropertyOverrides({QDP4rnwzw:{\"data-framer-name\":\"Variant 2\",onMouseLeave:onMouseLeaveh3rpdm}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1bw6d2l\",layoutDependency:layoutDependency,layoutId:\"F_23Xs8t7\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7Um9ib3RvLTcwMA==\",\"--framer-font-family\":'\"Roboto\", \"Roboto Placeholder\", sans-serif',\"--framer-font-open-type-features\":\"'smcp' on, 'c2sc' on\",\"--framer-font-size\":\"calc(var(--variable-reference-LJ8Y2NW03-J7C35MAVB) * 1px)\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"2px\",\"--framer-line-height\":\"33px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(54, 54, 54))\"},children:\"Title here\"})}),className:\"framer-3z8p8s\",fonts:[\"GF;Roboto-700\"],layoutDependency:layoutDependency,layoutId:\"V5m8w7jNT\",style:{\"--extracted-r6o4lv\":\"rgb(54, 54, 54)\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\",\"--variable-reference-LJ8Y2NW03-J7C35MAVB\":LJ8Y2NW03,\"--variable-reference-ZMMIFMqsB-J7C35MAVB\":ZMMIFMqsB},text:HvMW1xQSS,variants:{QDP4rnwzw:{\"--extracted-r6o4lv\":\"var(--variable-reference-ZMMIFMqsB-J7C35MAVB)\",\"--variable-reference-ZMMIFMqsB-J7C35MAVB\":ZMMIFMqsB}},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({QDP4rnwzw:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7Um9ib3RvLTcwMA==\",\"--framer-font-family\":'\"Roboto\", \"Roboto Placeholder\", sans-serif',\"--framer-font-open-type-features\":\"'smcp' on, 'c2sc' on\",\"--framer-font-size\":\"calc(var(--variable-reference-LJ8Y2NW03-J7C35MAVB) * 1px)\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"2px\",\"--framer-line-height\":\"33px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--variable-reference-ZMMIFMqsB-J7C35MAVB))\"},children:\"Title here\"})})}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1x8dufk\",layoutDependency:layoutDependency,layoutId:\"lObQGD4YW\",style:{backgroundColor:\"rgb(54, 54, 54)\",opacity:1},variants:{QDP4rnwzw:{opacity:0}}}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-font-size\":\"18px\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"1.6em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(102, 102, 102))\"},children:\"Logos, visual systems, packaging and the stuff that makes people recognize you.\"})}),className:\"framer-jnbti2\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"v5XTRrrb4\",style:{\"--extracted-r6o4lv\":\"rgb(102, 102, 102)\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},text:vzQ6ca0Zb,variants:{QDP4rnwzw:{\"--extracted-r6o4lv\":\"rgb(54, 54, 54)\"}},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({QDP4rnwzw:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-font-size\":\"18px\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"1.6em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(54, 54, 54))\"},children:\"Logos, visual systems, packaging and the stuff that makes people recognize you.\"})})}},baseVariant,gestureVariant)})]}),Jr5uV78kY&&/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:174,pixelWidth:452,sizes:`calc((${componentViewport?.width||\"100vw\"} - ${pXyiecaUX*2}px) * 0.4)`,...toResponsiveImage(EOsm5FJDN),...{positionX:\"center\",positionY:\"center\"}},className:\"framer-wnbugo\",layoutDependency:layoutDependency,layoutId:\"pjiGlTcnz\",style:{opacity:0},variants:{QDP4rnwzw:{opacity:1}},...addPropertyOverrides({QDP4rnwzw:{background:{alt:\"\",fit:\"fit\",pixelHeight:174,pixelWidth:452,sizes:`calc((${componentViewport?.width||\"100vw\"} - ${pXyiecaUX*2}px) * 0.4)`,...toResponsiveImage(EOsm5FJDN),...{positionX:\"center\",positionY:\"center\"}}}},baseVariant,gestureVariant)})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-D1o8j.framer-tf1gwx, .framer-D1o8j .framer-tf1gwx { display: block; }\",\".framer-D1o8j.framer-b4t0xx { align-content: flex-start; align-items: flex-start; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 71px; justify-content: flex-start; overflow: hidden; padding: var(--14ydago); position: relative; width: 900px; }\",\".framer-D1o8j .framer-1bw6d2l { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-D1o8j .framer-3z8p8s, .framer-D1o8j .framer-jnbti2 { --framer-text-wrap: balance; flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-D1o8j .framer-1x8dufk { flex: none; height: 2px; overflow: visible; position: relative; width: 100%; }\",\".framer-D1o8j .framer-wnbugo { flex: none; height: 100%; overflow: hidden; position: relative; width: 40%; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-D1o8j.framer-b4t0xx, .framer-D1o8j .framer-1bw6d2l { gap: 0px; } .framer-D1o8j.framer-b4t0xx > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-D1o8j.framer-b4t0xx > :first-child { margin-left: 0px; } .framer-D1o8j.framer-b4t0xx > :last-child { margin-right: 0px; } .framer-D1o8j .framer-1bw6d2l > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-D1o8j .framer-1bw6d2l > :first-child { margin-top: 0px; } .framer-D1o8j .framer-1bw6d2l > :last-child { margin-bottom: 0px; } }\",\".framer-D1o8j.framer-v-10fnstm.framer-b4t0xx { height: 200px; }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 71\n * @framerIntrinsicWidth 900\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]},\"QDP4rnwzw\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerVariables {\"HvMW1xQSS\":\"title\",\"vzQ6ca0Zb\":\"description\",\"EOsm5FJDN\":\"image\",\"LJ8Y2NW03\":\"fontSize\",\"pXyiecaUX\":\"padding\",\"Jr5uV78kY\":\"visible\",\"dMPNrN4Dj\":\"background\",\"ZMMIFMqsB\":\"titleColor\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerJ7C35MAVB=withCSS(Component,css,\"framer-D1o8j\");export default FramerJ7C35MAVB;FramerJ7C35MAVB.displayName=\"What I do\";FramerJ7C35MAVB.defaultProps={height:71,width:900};addPropertyControls(FramerJ7C35MAVB,{variant:{options:[\"WFgOdQycR\",\"QDP4rnwzw\"],optionTitles:[\"Variant 1\",\"Variant 2\"],title:\"Variant\",type:ControlType.Enum},HvMW1xQSS:{defaultValue:\"Title here\",displayTextArea:false,title:\"Title\",type:ControlType.String},vzQ6ca0Zb:{defaultValue:\"Text here\",displayTextArea:false,title:\"Description\",type:ControlType.String},EOsm5FJDN:{title:\"Image\",type:ControlType.ResponsiveImage},LJ8Y2NW03:{defaultValue:50,title:\"Font Size\",type:ControlType.Number},pXyiecaUX:{defaultValue:\"20px 0px 20px 0px\",title:\"Padding\",type:ControlType.Padding},Jr5uV78kY:{defaultValue:true,title:\"Visible\",type:ControlType.Boolean},dMPNrN4Dj:{defaultValue:\"rgb(216, 101, 103)\",title:\"Background\",type:ControlType.Color},ZMMIFMqsB:{defaultValue:\"rgb(239, 239, 239)\",title:\"Title Color\",type:ControlType.Color}});addFonts(FramerJ7C35MAVB,[{explicitInter:true,fonts:[{family:\"Roboto\",openType:true,source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/roboto/v47/KFOMCnqEu92Fr1ME7kSn66aGLdTylUAMQXC89YmC2DPNWuYjammWggvWl0Qn.woff2\",weight:\"700\"},{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\"}]}],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerJ7C35MAVB\",\"slots\":[],\"annotations\":{\"framerIntrinsicWidth\":\"900\",\"framerDisplayContentsDiv\":\"false\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"QDP4rnwzw\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerVariables\":\"{\\\"HvMW1xQSS\\\":\\\"title\\\",\\\"vzQ6ca0Zb\\\":\\\"description\\\",\\\"EOsm5FJDN\\\":\\\"image\\\",\\\"LJ8Y2NW03\\\":\\\"fontSize\\\",\\\"pXyiecaUX\\\":\\\"padding\\\",\\\"Jr5uV78kY\\\":\\\"visible\\\",\\\"dMPNrN4Dj\\\":\\\"background\\\",\\\"ZMMIFMqsB\\\":\\\"titleColor\\\"}\",\"framerIntrinsicHeight\":\"71\",\"framerImmutableVariables\":\"true\",\"framerContractVersion\":\"1\",\"framerComponentViewportWidth\":\"true\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./J7C35MAVB.map", "// Generated by Framer (4d21961)\nimport{fontStore}from\"framer\";fontStore.loadFonts([\"FS;Montserrat-regular\",\"FS;Montserrat-bold\",\"FS;Montserrat-bold italic\",\"FS;Montserrat-italic\"]);export const fonts=[{explicitInter:true,fonts:[{family:\"Montserrat\",source:\"fontshare\",style:\"normal\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/NZ67QOF3FXYLOR27ABJOZVKKBKNRMKMF/EHBFE55HTLOOJHTZSLD54GSL3EBTAFNQ/DI2GHUWG3WKRXISSCTNDMTWKWZC25UIW.woff2\",weight:\"400\"},{family:\"Montserrat\",source:\"fontshare\",style:\"normal\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/KDZE2GHZ4MXZP7RVHASNN75AFABT2ZB2/G33WYZOWF5RLCYVGCMU5BFGBXH4DMKUK/SHZ3SDA4YUDBQPNRSIGO7XNSCQQUBDYR.woff2\",weight:\"700\"},{family:\"Montserrat\",source:\"fontshare\",style:\"italic\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/WVRVHC26IF7VQKSULH6U5DSAGCYOIAQ7/CPARYH2DVA55XB4ZSTA7WTMPVZAVMNA5/BOBO2BRVXZQHPXSPDS5WN3IZQ5SL56OZ.woff2\",weight:\"700\"},{family:\"Montserrat\",source:\"fontshare\",style:\"italic\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/CC6FT7O535LIU5P34T6V2W7R57LGKSDT/KUZZS4REMM64PV6S4GGM77HZQUVJPYU2/3ZPIFBJ6EZFOZSYT4ISIO7DHQQODA5IR.woff2\",weight:\"400\"}]}];export const css=['.framer-CiHjD .framer-styles-preset-9pbuw0:not(.rich-text-wrapper), .framer-CiHjD .framer-styles-preset-9pbuw0.rich-text-wrapper h3 { --framer-font-family: \"Montserrat\", \"Montserrat Placeholder\", sans-serif; --framer-font-family-bold: \"Montserrat\", \"Montserrat Placeholder\", sans-serif; --framer-font-family-bold-italic: \"Montserrat\", \"Montserrat Placeholder\", sans-serif; --framer-font-family-italic: \"Montserrat\", \"Montserrat Placeholder\", sans-serif; --framer-font-open-type-features: \\'blwf\\' on, \\'cv09\\' on, \\'cv03\\' on, \\'cv04\\' on, \\'cv11\\' on; --framer-font-size: 23px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-style-bold-italic: italic; --framer-font-style-italic: italic; --framer-font-variation-axes: normal; --framer-font-weight: 400; --framer-font-weight-bold: 700; --framer-font-weight-bold-italic: 700; --framer-font-weight-italic: 400; --framer-letter-spacing: 1px; --framer-line-height: 0.1px; --framer-paragraph-spacing: 40px; --framer-text-alignment: start; --framer-text-color: #000000; --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; }'];export const className=\"framer-CiHjD\";\nexport const __FramerMetadata__ = {\"exports\":{\"css\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"fonts\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"className\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (d0dedfe)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,ComponentViewportProvider,Container,cx,GeneratedComponentContext,getFonts,getFontsFromSharedStyle,getLoadingLazyAtYPosition,Image,Link,PropertyOverrides,ResolveLinks,RichText,useComponentViewport,useCustomCursors,useHydratedBreakpointVariants,useIsOnFramerCanvas,useLocaleInfo,useRouteElementId,useRouter,withCSS,withFX}from\"framer\";import{LayoutGroup,motion}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import Ticker from\"https://framerusercontent.com/modules/B2xAlJLcN0gOnt11mSPw/jyRNgY7vYWXe6t31T0wo/Ticker.js\";import Arc from\"https://framerusercontent.com/modules/dZ9c6z10n71dmz3JQVi4/0dSuyhnHD9HrUa3w2XFr/Arc.js\";import PrettyPartButton from\"#framer/local/canvasComponent/B0MoBlpha/B0MoBlpha.js\";import Testimonials from\"#framer/local/canvasComponent/EuHmyuAUH/EuHmyuAUH.js\";import WhatIDo from\"#framer/local/canvasComponent/J7C35MAVB/J7C35MAVB.js\";import Menu from\"#framer/local/canvasComponent/ncGdKahFA/ncGdKahFA.js\";import Footer from\"#framer/local/canvasComponent/wnEI2ciZO/wnEI2ciZO.js\";import*as sharedStyle from\"#framer/local/css/uG5kreN6V/uG5kreN6V.js\";import metadataProvider from\"#framer/local/webPageMetadata/augiA20Il/augiA20Il.js\";const MenuFonts=getFonts(Menu);const ArcFonts=getFonts(Arc);const ContainerWithFX=withFX(Container);const RichTextWithFX=withFX(RichText);const MotionDivWithFX=withFX(motion.div);const WhatIDoFonts=getFonts(WhatIDo);const TickerFonts=getFonts(Ticker);const PrettyPartButtonFonts=getFonts(PrettyPartButton);const TestimonialsFonts=getFonts(Testimonials);const FooterFonts=getFonts(Footer);const breakpoints={AaTPgFONR:\"(max-width: 699px)\",GlxRvl27n:\"(min-width: 1300px) and (max-width: 1399px)\",k2c7xQ8Z8:\"(min-width: 700px) and (max-width: 1024px)\",WQLkyLRf1:\"(min-width: 1400px)\",yhzC2LD4B:\"(min-width: 1025px) and (max-width: 1299px)\"};const isBrowser=()=>typeof document!==\"undefined\";const serializationHash=\"framer-vhuuM\";const variantClassNames={AaTPgFONR:\"framer-v-1a6tbd9\",GlxRvl27n:\"framer-v-1tx7as6\",k2c7xQ8Z8:\"framer-v-5h7kkp\",WQLkyLRf1:\"framer-v-72rtr7\",yhzC2LD4B:\"framer-v-1n2uk4t\"};const transition1={delay:0,duration:10,ease:[0,0,1,1],type:\"tween\"};const animation={opacity:1,rotate:360,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0};const addImageAlt=(image,alt)=>{if(!image||typeof image!==\"object\"){return;}return{...image,alt};};const HTMLStyle=({value})=>{const onCanvas=useIsOnFramerCanvas();if(onCanvas)return null;return /*#__PURE__*/_jsx(\"style\",{dangerouslySetInnerHTML:{__html:value},\"data-framer-html-style\":\"\"});};const humanReadableVariantMap={\"mini tab\":\"yhzC2LD4B\",Desktop:\"WQLkyLRf1\",ipad:\"k2c7xQ8Z8\",Phone:\"AaTPgFONR\",Small:\"GlxRvl27n\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"WQLkyLRf1\"};};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const fallbackRef=useRef(null);const refBinding=ref??fallbackRef;const defaultLayoutId=React.useId();const{activeLocale,setLocale}=useLocaleInfo();const componentViewport=useComponentViewport();const{style,className,layoutId,variant,...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];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const elementId=useRouteElementId(\"hwzb6em0T\");const ref1=React.useRef(null);const isDisplayed=()=>{if(!isBrowser())return true;if([\"k2c7xQ8Z8\",\"AaTPgFONR\"].includes(baseVariant))return false;return true;};const elementId1=useRouteElementId(\"kMTSSHGLJ\");const ref2=React.useRef(null);const elementId2=useRouteElementId(\"KGXnMGwH9\");const ref3=React.useRef(null);const router=useRouter();const elementId3=useRouteElementId(\"oQBtjC1e1\");const ref4=React.useRef(null);const isDisplayed1=()=>{if(!isBrowser())return true;if(baseVariant===\"AaTPgFONR\")return true;return false;};const elementId4=useRouteElementId(\"zL_LkITrp\");const ref5=React.useRef(null);useCustomCursors({});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(239, 239, 239); }\"}),/*#__PURE__*/_jsxs(motion.div,{...restProps,className:cx(scopingClassNames,\"framer-72rtr7\",className),ref:refBinding,style:{...style},children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{AaTPgFONR:{width:\"100vw\"},k2c7xQ8Z8:{width:\"100vw\"}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:1e3,width:\"120px\",y:0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1uuw3s8-container\",layoutScroll:true,nodeId:\"hE2oW015C\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{AaTPgFONR:{HZfe18KIL:false,L8pesqvZ7:false,style:{width:\"100%\"},variant:\"fu1xKCDqw\"},GlxRvl27n:{variant:\"p7igaPAxF\"},k2c7xQ8Z8:{HZfe18KIL:false,L8pesqvZ7:false,style:{width:\"100%\"},variant:\"ZIwyxn41j\"},yhzC2LD4B:{variant:\"a6bXzUbP9\"}},children:/*#__PURE__*/_jsx(Menu,{C2jAqeOPX:\"mCrWKJ435\",height:\"100%\",HZfe18KIL:true,id:\"hE2oW015C\",L8pesqvZ7:true,layoutId:\"hE2oW015C\",style:{height:\"100%\",width:\"100%\"},SVhArd0MP:\"ym6KCZ8br\",variant:\"cQA2uU8nG\",width:\"100%\",xHJKUnw3f:\"ym6KCZ8br\"})})})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-oo8svf\",\"data-framer-name\":\"Hero Section - tRY\",id:elementId,ref:ref1,children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-zj5t7p\",\"data-framer-name\":\"Hero\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{AaTPgFONR:{__framer__transformTargets:[{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0}},{ref:ref1,target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:450,y:0}}]},k2c7xQ8Z8:{__framer__transformTargets:[{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0}},{ref:ref1,target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:900,y:0}}]},yhzC2LD4B:{__framer__transformTargets:[{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0}},{ref:ref1,target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:1400,y:0}}]}},children:/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__styleTransformEffectEnabled:true,__framer__transformTargets:[{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0}},{ref:ref1,target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:2400,y:0}}],__framer__transformTrigger:\"onScrollTarget\",__framer__transformViewportThreshold:1,__perspectiveFX:false,__targetOpacity:1,className:\"framer-7izkvr\",\"data-framer-name\":\"Image - Mask\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{AaTPgFONR:{background:undefined},k2c7xQ8Z8:{background:undefined},yhzC2LD4B:{background:{alt:\"Image of Parth with focus on his eyes and a few UI elements inside of the eye\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+0+0+0),pixelHeight:770,pixelWidth:1407,positionX:\"56.7%\",positionY:\"44%\",sizes:componentViewport?.width||\"100vw\",src:\"https://framerusercontent.com/images/aOFVdZ0wVj18PJUwLCcqY9z1X0s.svg\",srcSet:\"https://framerusercontent.com/images/aOFVdZ0wVj18PJUwLCcqY9z1X0s.svg?scale-down-to=512 512w,https://framerusercontent.com/images/aOFVdZ0wVj18PJUwLCcqY9z1X0s.svg?scale-down-to=1024 1024w,https://framerusercontent.com/images/aOFVdZ0wVj18PJUwLCcqY9z1X0s.svg 1407w\"}}},children:/*#__PURE__*/_jsxs(Image,{background:{alt:\"Image of Parth with focus on his eyes and a few UI elements inside of the eye\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+0+0+0),pixelHeight:770,pixelWidth:1407,sizes:componentViewport?.width||\"100vw\",src:\"https://framerusercontent.com/images/aOFVdZ0wVj18PJUwLCcqY9z1X0s.svg\",srcSet:\"https://framerusercontent.com/images/aOFVdZ0wVj18PJUwLCcqY9z1X0s.svg?scale-down-to=512 512w,https://framerusercontent.com/images/aOFVdZ0wVj18PJUwLCcqY9z1X0s.svg?scale-down-to=1024 1024w,https://framerusercontent.com/images/aOFVdZ0wVj18PJUwLCcqY9z1X0s.svg 1407w\"},className:\"framer-1xzz43h\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{AaTPgFONR:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+0+0+0+0),pixelHeight:788,pixelWidth:1440,positionX:\"23.7%\",positionY:\"41.8%\",sizes:`calc(${componentViewport?.width||\"100vw\"} * 2.5)`,src:\"https://framerusercontent.com/images/MjDRwWd5cmP1Qj8XWG1Q5YVkwA.png\",srcSet:\"https://framerusercontent.com/images/MjDRwWd5cmP1Qj8XWG1Q5YVkwA.png?scale-down-to=512 512w,https://framerusercontent.com/images/MjDRwWd5cmP1Qj8XWG1Q5YVkwA.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/MjDRwWd5cmP1Qj8XWG1Q5YVkwA.png 1440w\"}},k2c7xQ8Z8:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+0+0+0+0),pixelHeight:788,pixelWidth:1440,positionX:\"23.7%\",positionY:\"41.8%\",sizes:`calc(${componentViewport?.width||\"100vw\"} * 2.5)`,src:\"https://framerusercontent.com/images/MjDRwWd5cmP1Qj8XWG1Q5YVkwA.png\",srcSet:\"https://framerusercontent.com/images/MjDRwWd5cmP1Qj8XWG1Q5YVkwA.png?scale-down-to=512 512w,https://framerusercontent.com/images/MjDRwWd5cmP1Qj8XWG1Q5YVkwA.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/MjDRwWd5cmP1Qj8XWG1Q5YVkwA.png 1440w\"}}},children:/*#__PURE__*/_jsx(Image,{className:\"framer-1uj114p\"})}),isDisplayed()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__loop:animation,__framer__loopEffectEnabled:true,__framer__loopPauseOffscreen:true,__framer__loopRepeatDelay:0,__framer__loopRepeatType:\"loop\",__framer__loopTransition:transition1,__framer__styleTransformEffectEnabled:true,__framer__transformTargets:[{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0}},{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:-3400,y:0}}],__framer__transformTrigger:\"onScroll\",__perspectiveFX:false,__targetOpacity:1,className:\"framer-112we0n-container hidden-5h7kkp hidden-1a6tbd9\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"seCM5j69g\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Arc,{alignmentBaseline:\"bottom\",color:\"rgb(153, 153, 153)\",cylinderHeight:0,flip:false,font:{},height:\"100%\",id:\"seCM5j69g\",layoutId:\"seCM5j69g\",startOffset:0,style:{height:\"100%\",width:\"100%\"},text:\"SCROLL SLOWLY. I MADE THIS FOR YOU\",type:true,width:\"100%\"})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-e41ttx\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{AaTPgFONR:{__framer__transformTargets:[{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0}},{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:-1e3,y:0}}],children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"RlM7TW9udHNlcnJhdC1yZWd1bGFy\",\"--framer-font-family\":'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-letter-spacing\":\"1px\"},children:\"PARTH DAMANI\"})}),fonts:[\"FS;Montserrat-regular\"]},k2c7xQ8Z8:{__framer__transformTargets:[{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0}},{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:-1800,y:0}}]},yhzC2LD4B:{__framer__transformTargets:[{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0}},{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:-3e3,y:0}}],children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"RlM7TW9udHNlcnJhdC1yZWd1bGFy\",\"--framer-font-family\":'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',\"--framer-font-size\":\"21px\",\"--framer-letter-spacing\":\"1px\",\"--framer-line-height\":\"140%\"},children:\"PARTH DAMANI\"})}),fonts:[\"FS;Montserrat-regular\"]}},children:/*#__PURE__*/_jsx(RichTextWithFX,{__framer__styleTransformEffectEnabled:true,__framer__transformTargets:[{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0}},{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:-5e3,y:0}}],__framer__transformTrigger:\"onScroll\",__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{className:\"framer-styles-preset-9pbuw0\",\"data-styles-preset\":\"uG5kreN6V\",children:\"PARTH DAMANI\"})}),className:\"framer-10bn8ss\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{AaTPgFONR:{__framer__transformTargets:[{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0}},{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:-1e3,y:0}}],children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"R0Y7U3luY29wYXRlLTcwMA==\",\"--framer-font-family\":'\"Syncopate\", \"Syncopate Placeholder\", sans-serif',\"--framer-font-size\":\"36px\",\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"1em\",\"--framer-text-color\":\"rgb(54, 54, 54)\"},children:\"SEEING\"}),/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"R0Y7U3luY29wYXRlLTcwMA==\",\"--framer-font-family\":'\"Syncopate\", \"Syncopate Placeholder\", sans-serif',\"--framer-font-size\":\"36px\",\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"1em\",\"--framer-text-color\":\"rgb(216, 101, 103)\"},children:\"BEYOND\"}),/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"R0Y7U3luY29wYXRlLTcwMA==\",\"--framer-font-family\":'\"Syncopate\", \"Syncopate Placeholder\", sans-serif',\"--framer-font-size\":\"36px\",\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"1em\",\"--framer-text-color\":\"rgb(216, 101, 103)\"},children:\"PIXELS\"})]})},GlxRvl27n:{children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"R0Y7U3luY29wYXRlLTcwMA==\",\"--framer-font-family\":'\"Syncopate\", \"Syncopate Placeholder\", sans-serif',\"--framer-font-size\":\"57px\",\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"1em\",\"--framer-text-color\":\"rgb(54, 54, 54)\"},children:\"SEEING\"}),/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"R0Y7U3luY29wYXRlLTcwMA==\",\"--framer-font-family\":'\"Syncopate\", \"Syncopate Placeholder\", sans-serif',\"--framer-font-size\":\"57px\",\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"1em\",\"--framer-text-color\":\"rgb(216, 101, 103)\"},children:\"BEYOND\"}),/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"R0Y7U3luY29wYXRlLTcwMA==\",\"--framer-font-family\":'\"Syncopate\", \"Syncopate Placeholder\", sans-serif',\"--framer-font-size\":\"57px\",\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"1em\",\"--framer-text-color\":\"rgb(216, 101, 103)\"},children:\"PIXELS\"})]})},k2c7xQ8Z8:{__framer__transformTargets:[{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0}},{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:-1800,y:0}}],children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"R0Y7U3luY29wYXRlLTcwMA==\",\"--framer-font-family\":'\"Syncopate\", \"Syncopate Placeholder\", sans-serif',\"--framer-font-size\":\"67px\",\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"1em\",\"--framer-text-color\":\"rgb(54, 54, 54)\"},children:\"SEEING\"}),/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"R0Y7U3luY29wYXRlLTcwMA==\",\"--framer-font-family\":'\"Syncopate\", \"Syncopate Placeholder\", sans-serif',\"--framer-font-size\":\"67px\",\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"1em\",\"--framer-text-color\":\"rgb(216, 101, 103)\"},children:\"BEYOND\"}),/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"R0Y7U3luY29wYXRlLTcwMA==\",\"--framer-font-family\":'\"Syncopate\", \"Syncopate Placeholder\", sans-serif',\"--framer-font-size\":\"67px\",\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"1em\",\"--framer-text-color\":\"rgb(216, 101, 103)\"},children:\"PIXELS\"})]})},yhzC2LD4B:{__framer__transformTargets:[{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0}},{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:-3e3,y:0}}],children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"R0Y7U3luY29wYXRlLTcwMA==\",\"--framer-font-family\":'\"Syncopate\", \"Syncopate Placeholder\", sans-serif',\"--framer-font-size\":\"57px\",\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"1em\",\"--framer-text-color\":\"rgb(54, 54, 54)\"},children:\"SEEING\"}),/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"R0Y7U3luY29wYXRlLTcwMA==\",\"--framer-font-family\":'\"Syncopate\", \"Syncopate Placeholder\", sans-serif',\"--framer-font-size\":\"57px\",\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"1em\",\"--framer-text-color\":\"rgb(216, 101, 103)\"},children:\"BEYOND\"}),/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"R0Y7U3luY29wYXRlLTcwMA==\",\"--framer-font-family\":'\"Syncopate\", \"Syncopate Placeholder\", sans-serif',\"--framer-font-size\":\"57px\",\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"1em\",\"--framer-text-color\":\"rgb(216, 101, 103)\"},children:\"PIXELS\"})]})}},children:/*#__PURE__*/_jsx(RichTextWithFX,{__framer__styleTransformEffectEnabled:true,__framer__transformTargets:[{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0}},{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:-5e3,y:0}}],__framer__transformTrigger:\"onScroll\",__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"R0Y7U3luY29wYXRlLTcwMA==\",\"--framer-font-family\":'\"Syncopate\", \"Syncopate Placeholder\", sans-serif',\"--framer-font-size\":\"60px\",\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"1em\",\"--framer-text-color\":\"rgb(54, 54, 54)\"},children:\"SEEING\"}),/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"R0Y7U3luY29wYXRlLTcwMA==\",\"--framer-font-family\":'\"Syncopate\", \"Syncopate Placeholder\", sans-serif',\"--framer-font-size\":\"60px\",\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"1em\",\"--framer-text-color\":\"rgb(216, 101, 103)\"},children:\"BEYOND\"}),/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"R0Y7U3luY29wYXRlLTcwMA==\",\"--framer-font-family\":'\"Syncopate\", \"Syncopate Placeholder\", sans-serif',\"--framer-font-size\":\"60px\",\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"1em\",\"--framer-text-color\":\"rgb(216, 101, 103)\"},children:\"PIXELS\"})]}),className:\"framer-15jgrb8\",fonts:[\"GF;Syncopate-700\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{AaTPgFONR:{__framer__transformTargets:[{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0}},{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:-1e3,y:0}}],children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"RlM7TW9udHNlcnJhdC1yZWd1bGFy\",\"--framer-font-family\":'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-letter-spacing\":\"1px\"},children:\"DESIGN IS NOT JUST WHAT YOU SEE,\"}),/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"RlM7TW9udHNlcnJhdC1yZWd1bGFy\",\"--framer-font-family\":'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-letter-spacing\":\"1px\"},children:\"BUT HOW YOU LOOK AT IT\"})]}),fonts:[\"FS;Montserrat-regular\"]},k2c7xQ8Z8:{__framer__transformTargets:[{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0}},{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:-1800,y:0}}]},yhzC2LD4B:{__framer__transformTargets:[{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0}},{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:-3e3,y:0}}],children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"RlM7TW9udHNlcnJhdC1yZWd1bGFy\",\"--framer-font-family\":'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',\"--framer-font-size\":\"21px\",\"--framer-letter-spacing\":\"1px\",\"--framer-line-height\":\"140%\"},children:\"DESIGN IS NOT JUST WHAT YOU SEE,\"}),/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"RlM7TW9udHNlcnJhdC1yZWd1bGFy\",\"--framer-font-family\":'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',\"--framer-font-size\":\"21px\",\"--framer-letter-spacing\":\"1px\",\"--framer-line-height\":\"140%\"},children:\"BUT HOW YOU LOOK AT IT\"})]}),fonts:[\"FS;Montserrat-regular\"]}},children:/*#__PURE__*/_jsx(RichTextWithFX,{__framer__styleTransformEffectEnabled:true,__framer__transformTargets:[{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0}},{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:-5e3,y:0}}],__framer__transformTrigger:\"onScroll\",__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"h1\",{className:\"framer-styles-preset-9pbuw0\",\"data-styles-preset\":\"uG5kreN6V\",children:\"DESIGN IS NOT JUST WHAT YOU SEE,\"}),/*#__PURE__*/_jsx(\"h1\",{className:\"framer-styles-preset-9pbuw0\",\"data-styles-preset\":\"uG5kreN6V\",children:\"BUT HOW YOU LOOK AT IT\"})]}),className:\"framer-8dmp3u\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]})]})})})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-181cdhi\",\"data-framer-name\":\"BG Text\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1crc0l5\",\"data-framer-name\":\"Image - Mask\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1fukjc6\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-k41okp\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{AaTPgFONR:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{style:{\"--font-selector\":\"RlM7TW9udHNlcnJhdC1yZWd1bGFy\",\"--framer-font-family\":'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',\"--framer-font-size\":\"21px\",\"--framer-letter-spacing\":\"1px\"},children:\"BASED IN MUMBAI\"})}),fonts:[\"FS;Montserrat-regular\"]},yhzC2LD4B:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{style:{\"--font-selector\":\"RlM7TW9udHNlcnJhdC1yZWd1bGFy\",\"--framer-font-family\":'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',\"--framer-font-size\":\"21px\",\"--framer-letter-spacing\":\"1px\",\"--framer-line-height\":\"140%\"},children:\"BASED IN MUMBAI\"})}),fonts:[\"FS;Montserrat-regular\"]}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-9pbuw0\",\"data-styles-preset\":\"uG5kreN6V\",children:\"BASED IN MUMBAI\"})}),className:\"framer-g3d2ka\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{AaTPgFONR:{children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7U3luY29wYXRlLTcwMA==\",\"--framer-font-family\":'\"Syncopate\", \"Syncopate Placeholder\", sans-serif',\"--framer-font-size\":\"36px\",\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"1em\",\"--framer-text-color\":\"rgb(54, 54, 54)\"},children:\"DESIGNING\"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7U3luY29wYXRlLTcwMA==\",\"--framer-font-family\":'\"Syncopate\", \"Syncopate Placeholder\", sans-serif',\"--framer-font-size\":\"36px\",\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"1em\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"BEYOND\"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7U3luY29wYXRlLTcwMA==\",\"--framer-font-family\":'\"Syncopate\", \"Syncopate Placeholder\", sans-serif',\"--framer-font-size\":\"36px\",\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"1em\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"PIXELS\"})]})},GlxRvl27n:{children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7U3luY29wYXRlLTcwMA==\",\"--framer-font-family\":'\"Syncopate\", \"Syncopate Placeholder\", sans-serif',\"--framer-font-size\":\"57px\",\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"1em\",\"--framer-text-color\":\"rgb(54, 54, 54)\"},children:\"DESIGNING\"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7U3luY29wYXRlLTcwMA==\",\"--framer-font-family\":'\"Syncopate\", \"Syncopate Placeholder\", sans-serif',\"--framer-font-size\":\"57px\",\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"1em\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"BEYOND\"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7U3luY29wYXRlLTcwMA==\",\"--framer-font-family\":'\"Syncopate\", \"Syncopate Placeholder\", sans-serif',\"--framer-font-size\":\"57px\",\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"1em\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"PIXELS\"})]})},k2c7xQ8Z8:{children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7U3luY29wYXRlLTcwMA==\",\"--framer-font-family\":'\"Syncopate\", \"Syncopate Placeholder\", sans-serif',\"--framer-font-size\":\"67px\",\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"1em\",\"--framer-text-color\":\"rgb(54, 54, 54)\"},children:\"DESIGNING\"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7U3luY29wYXRlLTcwMA==\",\"--framer-font-family\":'\"Syncopate\", \"Syncopate Placeholder\", sans-serif',\"--framer-font-size\":\"67px\",\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"1em\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"BEYOND\"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7U3luY29wYXRlLTcwMA==\",\"--framer-font-family\":'\"Syncopate\", \"Syncopate Placeholder\", sans-serif',\"--framer-font-size\":\"67px\",\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"1em\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"PIXELS\"})]})},yhzC2LD4B:{children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7U3luY29wYXRlLTcwMA==\",\"--framer-font-family\":'\"Syncopate\", \"Syncopate Placeholder\", sans-serif',\"--framer-font-size\":\"57px\",\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"1em\",\"--framer-text-color\":\"rgb(54, 54, 54)\"},children:\"DESIGNING\"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7U3luY29wYXRlLTcwMA==\",\"--framer-font-family\":'\"Syncopate\", \"Syncopate Placeholder\", sans-serif',\"--framer-font-size\":\"57px\",\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"1em\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"BEYOND\"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7U3luY29wYXRlLTcwMA==\",\"--framer-font-family\":'\"Syncopate\", \"Syncopate Placeholder\", sans-serif',\"--framer-font-size\":\"57px\",\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"1em\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"PIXELS\"})]})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7U3luY29wYXRlLTcwMA==\",\"--framer-font-family\":'\"Syncopate\", \"Syncopate Placeholder\", sans-serif',\"--framer-font-size\":\"60px\",\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"1em\",\"--framer-text-color\":\"rgb(54, 54, 54)\"},children:\"DESIGNING\"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7U3luY29wYXRlLTcwMA==\",\"--framer-font-family\":'\"Syncopate\", \"Syncopate Placeholder\", sans-serif',\"--framer-font-size\":\"60px\",\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"1em\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"BEYOND\"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7U3luY29wYXRlLTcwMA==\",\"--framer-font-family\":'\"Syncopate\", \"Syncopate Placeholder\", sans-serif',\"--framer-font-size\":\"60px\",\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"1em\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"PIXELS\"})]}),className:\"framer-qosyfo\",fonts:[\"GF;Syncopate-700\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{AaTPgFONR:{children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"h3\",{style:{\"--font-selector\":\"RlM7TW9udHNlcnJhdC1yZWd1bGFy\",\"--framer-font-family\":'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',\"--framer-font-size\":\"21px\",\"--framer-letter-spacing\":\"1px\"},children:\"EMOTIONS, INTERACTION, INTENTION\"}),/*#__PURE__*/_jsx(\"h3\",{style:{\"--font-selector\":\"RlM7TW9udHNlcnJhdC1yZWd1bGFy\",\"--framer-font-family\":'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',\"--framer-font-size\":\"21px\",\"--framer-letter-spacing\":\"1px\"},children:\"- NOT JUST VISUALS\"})]}),fonts:[\"FS;Montserrat-regular\"]},yhzC2LD4B:{children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"h3\",{style:{\"--font-selector\":\"RlM7TW9udHNlcnJhdC1yZWd1bGFy\",\"--framer-font-family\":'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',\"--framer-font-size\":\"21px\",\"--framer-letter-spacing\":\"1px\",\"--framer-line-height\":\"140%\"},children:\"EMOTIONS, INTERACTION, INTENTION\"}),/*#__PURE__*/_jsx(\"h3\",{style:{\"--font-selector\":\"RlM7TW9udHNlcnJhdC1yZWd1bGFy\",\"--framer-font-family\":'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',\"--framer-font-size\":\"21px\",\"--framer-letter-spacing\":\"1px\",\"--framer-line-height\":\"140%\"},children:\"- NOT JUST VISUALS\"})]}),fonts:[\"FS;Montserrat-regular\"]}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-9pbuw0\",\"data-styles-preset\":\"uG5kreN6V\",children:\"EMOTIONS, INTERACTION, INTENTION\"}),/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-9pbuw0\",\"data-styles-preset\":\"uG5kreN6V\",children:\"- NOT JUST VISUALS\"})]}),className:\"framer-sgios3\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{AaTPgFONR:{__framer__styleTransformEffectEnabled:undefined},k2c7xQ8Z8:{__framer__styleTransformEffectEnabled:undefined}},children:/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__styleTransformEffectEnabled:true,__framer__transformTargets:[{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0}},{ref:ref1,target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0}}],__framer__transformTrigger:\"onScrollTarget\",__framer__transformViewportThreshold:1,__perspectiveFX:false,__targetOpacity:1,className:\"framer-vxe676\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{AaTPgFONR:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+0+0+0+50),pixelHeight:974,pixelWidth:889,sizes:`max(${componentViewport?.width||\"100vw\"}, 1px)`,src:\"https://framerusercontent.com/images/8Z4dpADXCnBEHf0sgqJLcYuP3WA.png\",srcSet:\"https://framerusercontent.com/images/8Z4dpADXCnBEHf0sgqJLcYuP3WA.png 889w\"}},GlxRvl27n:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+0+0+0+125),pixelHeight:974,pixelWidth:889,sizes:`calc(${componentViewport?.width||\"100vw\"} * 0.4 - 100px)`,src:\"https://framerusercontent.com/images/8Z4dpADXCnBEHf0sgqJLcYuP3WA.png\",srcSet:\"https://framerusercontent.com/images/8Z4dpADXCnBEHf0sgqJLcYuP3WA.png 889w\"}},k2c7xQ8Z8:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+0+0+0+100),pixelHeight:489,pixelWidth:773,sizes:componentViewport?.width||\"100vw\",src:\"https://framerusercontent.com/images/FZJUpsNT82cqcqakjNDTaTEJ4Q.png\",srcSet:\"https://framerusercontent.com/images/FZJUpsNT82cqcqakjNDTaTEJ4Q.png?scale-down-to=512 512w,https://framerusercontent.com/images/FZJUpsNT82cqcqakjNDTaTEJ4Q.png 773w\"}},yhzC2LD4B:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+0+0+125+93.75),pixelHeight:974,pixelWidth:889,sizes:`calc(${componentViewport?.width||\"100vw\"} * 0.4 - 50px)`,src:\"https://framerusercontent.com/images/8Z4dpADXCnBEHf0sgqJLcYuP3WA.png\",srcSet:\"https://framerusercontent.com/images/8Z4dpADXCnBEHf0sgqJLcYuP3WA.png 889w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+0+0+0+125),pixelHeight:974,pixelWidth:889,sizes:`calc(${componentViewport?.width||\"100vw\"} / 2 - 75px)`,src:\"https://framerusercontent.com/images/8Z4dpADXCnBEHf0sgqJLcYuP3WA.png\",srcSet:\"https://framerusercontent.com/images/8Z4dpADXCnBEHf0sgqJLcYuP3WA.png 889w\"},className:\"framer-x7zdok\"})})})})]})})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1p8evhi\",\"data-framer-name\":\"What do i do\",id:elementId1,ref:ref2,children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1z0v4pg\",\"data-framer-name\":\"What I do - box\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-17lgkgj\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{AaTPgFONR:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"RlM7TW9udHNlcnJhdC1tZWRpdW0=\",\"--framer-font-family\":'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',\"--framer-font-open-type-features\":\"'smcp' on, 'c2sc' on\",\"--framer-font-size\":\"24px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"2px\",\"--framer-line-height\":\"36px\",\"--framer-text-color\":\"rgb(54, 54, 54)\"},children:\"WHAT I DO (AND LOVE DOING)\"})})},k2c7xQ8Z8:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"RlM7TW9udHNlcnJhdC1tZWRpdW0=\",\"--framer-font-family\":'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',\"--framer-font-open-type-features\":\"'smcp' on, 'c2sc' on\",\"--framer-font-size\":\"24px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"2px\",\"--framer-line-height\":\"36px\",\"--framer-text-color\":\"rgb(239, 239, 239)\"},children:\"WHAT I DO (AND LOVE DOING)\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"RlM7TW9udHNlcnJhdC1tZWRpdW0=\",\"--framer-font-family\":'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',\"--framer-font-open-type-features\":\"'smcp' on, 'c2sc' on\",\"--framer-font-size\":\"24px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"2px\",\"--framer-line-height\":\"36px\",\"--framer-text-color\":\"rgb(216, 101, 103)\"},children:\"WHAT I DO (AND LOVE DOING)\"})}),className:\"framer-wkrm6q\",fonts:[\"FS;Montserrat-medium\"],verticalAlignment:\"top\",withExternalLayout:true})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-evet19\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{AaTPgFONR:{y:(componentViewport?.y||0)+0+3500+0+0+100+63+0+0},k2c7xQ8Z8:{y:(componentViewport?.y||0)+0+3500+0+0+100+63+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:71,width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+3500+0+0+200+63+0+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-18v8lu1-container\",\"data-framer-name\":\"Branding\",name:\"Branding\",nodeId:\"aagu1hSDE\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{AaTPgFONR:{dMPNrN4Dj:\"rgb(255, 255, 255)\",Jr5uV78kY:false,LJ8Y2NW03:28,pXyiecaUX:\"20px 50px 20px 50px\",variant:\"QDP4rnwzw\",ZMMIFMqsB:\"rgb(216, 101, 103)\"},k2c7xQ8Z8:{LJ8Y2NW03:28,pXyiecaUX:\"20px 50px 20px 50px\",variant:\"QDP4rnwzw\"},yhzC2LD4B:{LJ8Y2NW03:36,pXyiecaUX:\"20px 0px 20px 200px\"}},children:/*#__PURE__*/_jsx(WhatIDo,{dMPNrN4Dj:\"rgb(216, 101, 103)\",EOsm5FJDN:addImageAlt({src:\"https://framerusercontent.com/images/SrX4okVfcKkv4Pqz0d6C8QoySHU.png\"},\"icons made to resemble logos to suggest Branding and Identity\"),height:\"100%\",HvMW1xQSS:\"Branding & Identity\",id:\"aagu1hSDE\",Jr5uV78kY:true,layoutId:\"aagu1hSDE\",LJ8Y2NW03:50,name:\"Branding\",pXyiecaUX:\"20px 0px 20px 250px\",style:{width:\"100%\"},variant:\"WFgOdQycR\",vzQ6ca0Zb:\"Logos, visual systems, packaging and the stuff that makes people recognize you.\",width:\"100%\",ZMMIFMqsB:\"rgb(239, 239, 239)\"})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{AaTPgFONR:{y:(componentViewport?.y||0)+0+3500+0+0+100+63+0+71},k2c7xQ8Z8:{y:(componentViewport?.y||0)+0+3500+0+0+100+63+0+71},yhzC2LD4B:{y:(componentViewport?.y||0)+0+3500+0+0+200+63+0+71}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:71,width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+3500+0+0+200+63+0+85,children:/*#__PURE__*/_jsx(Container,{className:\"framer-b4gdxn-container\",\"data-framer-name\":\"Website\",name:\"Website\",nodeId:\"I57ApiEiG\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{AaTPgFONR:{dMPNrN4Dj:\"rgb(255, 255, 255)\",Jr5uV78kY:false,LJ8Y2NW03:28,pXyiecaUX:\"20px 50px 20px 50px\",variant:\"QDP4rnwzw\",ZMMIFMqsB:\"rgb(216, 101, 103)\"},k2c7xQ8Z8:{LJ8Y2NW03:28,pXyiecaUX:\"20px 50px 20px 50px\",variant:\"QDP4rnwzw\"},yhzC2LD4B:{LJ8Y2NW03:36,pXyiecaUX:\"20px 0px 20px 200px\"}},children:/*#__PURE__*/_jsx(WhatIDo,{dMPNrN4Dj:\"rgb(216, 101, 103)\",EOsm5FJDN:addImageAlt({src:\"https://framerusercontent.com/images/1d4GdVmiSxFPbmUD3J0N67RNpQc.png\"},\"icons made to resemble website to suggest website and digital design\"),height:\"100%\",HvMW1xQSS:\"Website & Digital Design\",id:\"I57ApiEiG\",Jr5uV78kY:true,layoutId:\"I57ApiEiG\",LJ8Y2NW03:50,name:\"Website\",pXyiecaUX:\"20px 0px 20px 250px\",style:{width:\"100%\"},variant:\"WFgOdQycR\",vzQ6ca0Zb:\"Websites, social media, content and the scroll-stoppers in between\",width:\"100%\",ZMMIFMqsB:\"rgb(239, 239, 239)\"})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{AaTPgFONR:{y:(componentViewport?.y||0)+0+3500+0+0+100+63+0+142},k2c7xQ8Z8:{y:(componentViewport?.y||0)+0+3500+0+0+100+63+0+142},yhzC2LD4B:{y:(componentViewport?.y||0)+0+3500+0+0+200+63+0+142}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:71,width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+3500+0+0+200+63+0+170,children:/*#__PURE__*/_jsx(Container,{className:\"framer-135180q-container\",\"data-framer-name\":\"Print\",name:\"Print\",nodeId:\"Cxcwb5erp\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{AaTPgFONR:{dMPNrN4Dj:\"rgb(255, 255, 255)\",Jr5uV78kY:false,LJ8Y2NW03:28,pXyiecaUX:\"20px 50px 20px 50px\",variant:\"QDP4rnwzw\",ZMMIFMqsB:\"rgb(216, 101, 103)\"},k2c7xQ8Z8:{LJ8Y2NW03:28,pXyiecaUX:\"20px 50px 20px 50px\",variant:\"QDP4rnwzw\"},yhzC2LD4B:{LJ8Y2NW03:36,pXyiecaUX:\"20px 0px 20px 200px\"}},children:/*#__PURE__*/_jsx(WhatIDo,{dMPNrN4Dj:\"rgb(216, 101, 103)\",EOsm5FJDN:addImageAlt({src:\"https://framerusercontent.com/images/uJPHX5W6fJyG2NJM5x3wGzxEYss.png\"},\"icons made to resemble newspaper and cards to suggest print and collateral design\"),height:\"100%\",HvMW1xQSS:\"Print & Collateral\",id:\"Cxcwb5erp\",Jr5uV78kY:true,layoutId:\"Cxcwb5erp\",LJ8Y2NW03:50,name:\"Print\",pXyiecaUX:\"20px 0px 20px 250px\",style:{width:\"100%\"},variant:\"WFgOdQycR\",vzQ6ca0Zb:\"Everything from brochures and posters to the random things people actually keep.\",width:\"100%\",ZMMIFMqsB:\"rgb(239, 239, 239)\"})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{AaTPgFONR:{y:(componentViewport?.y||0)+0+3500+0+0+100+63+0+213},k2c7xQ8Z8:{y:(componentViewport?.y||0)+0+3500+0+0+100+63+0+213},yhzC2LD4B:{y:(componentViewport?.y||0)+0+3500+0+0+200+63+0+213}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:71,width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+3500+0+0+200+63+0+255,children:/*#__PURE__*/_jsx(Container,{className:\"framer-tcgl9n-container\",\"data-framer-name\":\"UI/ UX\",name:\"UI/ UX\",nodeId:\"puYZPXG82\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{AaTPgFONR:{dMPNrN4Dj:\"rgb(255, 255, 255)\",Jr5uV78kY:false,LJ8Y2NW03:28,pXyiecaUX:\"20px 50px 20px 50px\",variant:\"QDP4rnwzw\",ZMMIFMqsB:\"rgb(216, 101, 103)\"},k2c7xQ8Z8:{LJ8Y2NW03:28,pXyiecaUX:\"20px 50px 20px 50px\",variant:\"QDP4rnwzw\"},yhzC2LD4B:{LJ8Y2NW03:36,pXyiecaUX:\"20px 0px 20px 200px\"}},children:/*#__PURE__*/_jsx(WhatIDo,{dMPNrN4Dj:\"rgb(216, 101, 103)\",EOsm5FJDN:addImageAlt({src:\"https://framerusercontent.com/images/iPvb8HbAeHJAkfgWrnKSrTyYe8.png\"},\"icons made to resemble interaction to suggest UI/UX\"),height:\"100%\",HvMW1xQSS:\"UI/UX \",id:\"puYZPXG82\",Jr5uV78kY:true,layoutId:\"puYZPXG82\",LJ8Y2NW03:50,name:\"UI/ UX\",pXyiecaUX:\"20px 0px 20px 250px\",style:{width:\"100%\"},variant:\"WFgOdQycR\",vzQ6ca0Zb:\"Diving into interfaces and flows\u2014less pretty screens, more thoughtful clicks.\",width:\"100%\",ZMMIFMqsB:\"rgb(239, 239, 239)\"})})})})})]})]})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-z98kx3\",\"data-framer-name\":\"Work\",id:elementId2,ref:ref3,children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1o2mc8g-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"NJb29ccuT\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Ticker,{alignment:\"flex-start\",direction:\"right\",fadeOptions:{fadeAlpha:0,fadeContent:true,fadeInset:0,fadeWidth:0,overflow:false},gap:19,height:\"100%\",hoverFactor:.5,id:\"NJb29ccuT\",layoutId:\"NJb29ccuT\",padding:0,paddingBottom:0,paddingLeft:0,paddingPerSide:false,paddingRight:0,paddingTop:0,sizingOptions:{heightType:true,widthType:true},slots:[/*#__PURE__*/_jsx(Link,{href:{webPageId:\"tuilmkEGa\"},motionChild:true,nodeId:\"G8Ye0HOJc\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Image,{as:\"a\",background:{alt:\"Refillable pouch design for floor cleaner\",fit:\"fill\",intrinsicHeight:278,intrinsicWidth:494,pixelHeight:807,pixelWidth:1559,sizes:\"494px\",src:\"https://framerusercontent.com/images/tvpj3UmwZd0NfLno0KE7AgBlz2w.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/tvpj3UmwZd0NfLno0KE7AgBlz2w.png?scale-down-to=512 512w,https://framerusercontent.com/images/tvpj3UmwZd0NfLno0KE7AgBlz2w.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/tvpj3UmwZd0NfLno0KE7AgBlz2w.png 1559w\"},className:\"framer-1ruu7vt framer-lux5qc\",\"data-framer-name\":\"Refillable - 2\"})}),/*#__PURE__*/_jsx(Link,{href:{webPageId:\"CitSqoawx\"},motionChild:true,nodeId:\"cHDbTlbtb\",openInNewTab:false,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Image,{as:\"a\",background:{alt:\"Refillable truck design\",fit:\"fill\",intrinsicHeight:278,intrinsicWidth:494,pixelHeight:537,pixelWidth:537,sizes:\"494px\",src:\"https://framerusercontent.com/images/tXurpXgUYv21AdHPDHKprawtPkc.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/tXurpXgUYv21AdHPDHKprawtPkc.png?scale-down-to=512 512w,https://framerusercontent.com/images/tXurpXgUYv21AdHPDHKprawtPkc.png 537w\"},className:\"framer-1ft4ig9 framer-lux5qc\",\"data-framer-name\":\"Vividhata - 2\"})}),/*#__PURE__*/_jsx(Link,{href:{webPageId:\"kRGbqzdbI\"},motionChild:true,nodeId:\"p2LNmijI3\",openInNewTab:false,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Image,{as:\"a\",background:{alt:\"Hridaan tea packaging\",fit:\"fill\",intrinsicHeight:278,intrinsicWidth:494,pixelHeight:553,pixelWidth:1069,sizes:\"494px\",src:\"https://framerusercontent.com/images/Ixka3CFA2ZfHmOp0BARFVIzOc.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/Ixka3CFA2ZfHmOp0BARFVIzOc.png?scale-down-to=512 512w,https://framerusercontent.com/images/Ixka3CFA2ZfHmOp0BARFVIzOc.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/Ixka3CFA2ZfHmOp0BARFVIzOc.png 1069w\"},className:\"framer-3do3q5 framer-lux5qc\",\"data-framer-name\":\"Hridaan 2\"})}),/*#__PURE__*/_jsx(Link,{href:{webPageId:\"aUHfESVLm\"},motionChild:true,nodeId:\"JTiROqWAt\",openInNewTab:false,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Image,{as:\"a\",background:{alt:\"Waffle company post\",fit:\"fill\",intrinsicHeight:278,intrinsicWidth:494,pixelHeight:1500,pixelWidth:1500,positionX:\"center\",positionY:\"center\",sizes:\"494px\",src:\"https://framerusercontent.com/images/jsiCGu3dUljhFKtcAjq4LzNa9kI.jpg?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/jsiCGu3dUljhFKtcAjq4LzNa9kI.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/jsiCGu3dUljhFKtcAjq4LzNa9kI.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/jsiCGu3dUljhFKtcAjq4LzNa9kI.jpg 1500w\"},className:\"framer-m17wu1 framer-lux5qc\",\"data-framer-name\":\"Refillable\"})}),/*#__PURE__*/_jsx(Link,{href:{webPageId:\"uNa8f4hBF\"},motionChild:true,nodeId:\"fRnlGysEy\",openInNewTab:false,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Image,{as:\"a\",background:{alt:\"Cupable party cups\",fit:\"fill\",intrinsicHeight:278,intrinsicWidth:494,pixelHeight:1024,pixelWidth:1685,sizes:\"494px\",src:\"https://framerusercontent.com/images/vNxd1jlFVQStzala10r2id1Itz0.jpg?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/vNxd1jlFVQStzala10r2id1Itz0.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/vNxd1jlFVQStzala10r2id1Itz0.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/vNxd1jlFVQStzala10r2id1Itz0.jpg 1685w\"},className:\"framer-h3ksua framer-lux5qc\",\"data-framer-name\":\"Refillable\"})})],speed:100,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-11wsz7y\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{AaTPgFONR:{children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"RlM7TW9udHNlcnJhdC1ib2xk\",\"--framer-font-family\":'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',\"--framer-font-open-type-features\":\"'c2sc' on, 'smcp' on\",\"--framer-font-size\":\"28px\",\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"1.1em\",\"--framer-text-alignment\":\"center\"},children:\"Yes, I know you\u2019re here\"}),/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"RlM7TW9udHNlcnJhdC1ib2xk\",\"--framer-font-family\":'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',\"--framer-font-open-type-features\":\"'c2sc' on, 'smcp' on\",\"--framer-font-size\":\"28px\",\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"1.1em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(216, 101, 103)\"},children:\"just for the visuals\"})]})},k2c7xQ8Z8:{children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"RlM7TW9udHNlcnJhdC1ib2xk\",\"--framer-font-family\":'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',\"--framer-font-open-type-features\":\"'c2sc' on, 'smcp' on\",\"--framer-font-size\":\"28px\",\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"1.1em\",\"--framer-text-alignment\":\"center\"},children:\"Yes, I know you\u2019re here\"}),/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"RlM7TW9udHNlcnJhdC1ib2xk\",\"--framer-font-family\":'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',\"--framer-font-open-type-features\":\"'c2sc' on, 'smcp' on\",\"--framer-font-size\":\"28px\",\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"1.1em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(216, 101, 103)\"},children:\"just for the visuals\"})]})},yhzC2LD4B:{children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"RlM7TW9udHNlcnJhdC1ib2xk\",\"--framer-font-family\":'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',\"--framer-font-open-type-features\":\"'c2sc' on, 'smcp' on\",\"--framer-font-size\":\"40px\",\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"1.1em\",\"--framer-text-alignment\":\"center\"},children:\"Yes, I know you\u2019re here\"}),/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"RlM7TW9udHNlcnJhdC1ib2xk\",\"--framer-font-family\":'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',\"--framer-font-open-type-features\":\"'c2sc' on, 'smcp' on\",\"--framer-font-size\":\"40px\",\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"1.1em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(216, 101, 103)\"},children:\"just for the visuals\"})]})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"RlM7TW9udHNlcnJhdC1ib2xk\",\"--framer-font-family\":'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',\"--framer-font-open-type-features\":\"'c2sc' on, 'smcp' on\",\"--framer-font-size\":\"50px\",\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"1.1em\",\"--framer-text-alignment\":\"center\"},children:\"Yes, I know you\u2019re here\"}),/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"RlM7TW9udHNlcnJhdC1ib2xk\",\"--framer-font-family\":'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',\"--framer-font-open-type-features\":\"'c2sc' on, 'smcp' on\",\"--framer-font-size\":\"50px\",\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"1.1em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(216, 101, 103)\"},children:\"just for the visuals\"})]}),className:\"framer-f6ugak\",fonts:[\"FS;Montserrat-bold\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"ly9JeYEjt\"},implicitPathVariables:undefined},{href:{webPageId:\"ly9JeYEjt\"},implicitPathVariables:undefined},{href:{webPageId:\"ly9JeYEjt\"},implicitPathVariables:undefined},{href:{webPageId:\"ly9JeYEjt\"},implicitPathVariables:undefined},{href:{webPageId:\"ly9JeYEjt\"},implicitPathVariables:undefined}],children:resolvedLinks=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{AaTPgFONR:{width:undefined,y:(componentViewport?.y||0)+0+4047+0+437.2+0+85.6},k2c7xQ8Z8:{y:(componentViewport?.y||0)+0+4047+0+437.2+0+85.6},yhzC2LD4B:{y:(componentViewport?.y||0)+0+4600+50+275+0+236}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:40,width:\"274px\",y:(componentViewport?.y||0)+0+4600+0+413+0+134,children:/*#__PURE__*/_jsx(Container,{className:\"framer-19onj8p-container\",nodeId:\"AHqA6920q\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{AaTPgFONR:{style:{height:\"100%\"},x_qKcK33l:resolvedLinks[4]},GlxRvl27n:{x_qKcK33l:resolvedLinks[1]},k2c7xQ8Z8:{x_qKcK33l:resolvedLinks[2]},yhzC2LD4B:{x_qKcK33l:resolvedLinks[3]}},children:/*#__PURE__*/_jsx(PrettyPartButton,{height:\"100%\",id:\"AHqA6920q\",layoutId:\"AHqA6920q\",qjuoN5U8T:\"See what's up\",style:{height:\"100%\",width:\"100%\"},uRB4OU9Nz:\"For now\",variant:\"hPM3hmbpR\",width:\"100%\",x_qKcK33l:resolvedLinks[0]})})})})})})]}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1wo94v7-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"l3mA_r71d\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Ticker,{alignment:\"flex-end\",direction:\"left\",fadeOptions:{fadeAlpha:0,fadeContent:true,fadeInset:0,fadeWidth:0,overflow:false},gap:19,height:\"100%\",hoverFactor:.5,id:\"l3mA_r71d\",layoutId:\"l3mA_r71d\",padding:0,paddingBottom:0,paddingLeft:0,paddingPerSide:false,paddingRight:0,paddingTop:0,sizingOptions:{heightType:true,widthType:true},slots:[/*#__PURE__*/_jsx(Link,{href:{webPageId:\"aUHfESVLm\"},motionChild:true,nodeId:\"OutFeMugh\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Image,{as:\"a\",background:{alt:\"XO Waffle social media post\",fit:\"fill\",intrinsicHeight:278,intrinsicWidth:494,pixelHeight:417,pixelWidth:741,sizes:\"494px\",src:\"https://framerusercontent.com/images/UJLTpSxFykP4RDn1TbbP0fw3yI.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/UJLTpSxFykP4RDn1TbbP0fw3yI.png?scale-down-to=512 512w,https://framerusercontent.com/images/UJLTpSxFykP4RDn1TbbP0fw3yI.png 741w\"},className:\"framer-13x8ki5 framer-lux5qc\",\"data-framer-name\":\"XO Waffles\"})}),/*#__PURE__*/_jsx(Link,{href:{webPageId:\"CitSqoawx\"},motionChild:true,nodeId:\"pgB6An_H9\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Image,{as:\"a\",background:{alt:\"Vividhata visiting cards with braille\",fit:\"fill\",intrinsicHeight:278,intrinsicWidth:494,pixelHeight:417,pixelWidth:741,sizes:\"494px\",src:\"https://framerusercontent.com/images/UfzClEcHum6PX6WXP1IKPb5uj8.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/UfzClEcHum6PX6WXP1IKPb5uj8.png?scale-down-to=512 512w,https://framerusercontent.com/images/UfzClEcHum6PX6WXP1IKPb5uj8.png 741w\"},className:\"framer-d3a9ct framer-lux5qc\",\"data-framer-name\":\"Vividhata\"})}),/*#__PURE__*/_jsx(Image,{background:{alt:\"Serene beauty socila media post\",fit:\"fill\",intrinsicHeight:278,intrinsicWidth:494,pixelHeight:417,pixelWidth:741,sizes:\"494px\",src:\"https://framerusercontent.com/images/2hhzgDh2ExnzGwd2Vr3gmFywgJY.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/2hhzgDh2ExnzGwd2Vr3gmFywgJY.png?scale-down-to=512 512w,https://framerusercontent.com/images/2hhzgDh2ExnzGwd2Vr3gmFywgJY.png 741w\"},className:\"framer-1pict8e\",\"data-framer-name\":\"Serene Beauty\"}),/*#__PURE__*/_jsx(Link,{href:{webPageId:\"kRGbqzdbI\"},motionChild:true,nodeId:\"cffavrsLb\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Image,{as:\"a\",background:{alt:\"Hridaan Tea Packaging \",fit:\"fill\",intrinsicHeight:278,intrinsicWidth:494,pixelHeight:417,pixelWidth:741,sizes:\"494px\",src:\"https://framerusercontent.com/images/1Cb0fhDfJicVu7j9QOzv1DYKCDU.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/1Cb0fhDfJicVu7j9QOzv1DYKCDU.png?scale-down-to=512 512w,https://framerusercontent.com/images/1Cb0fhDfJicVu7j9QOzv1DYKCDU.png 741w\"},className:\"framer-y4l3ni framer-lux5qc\",\"data-framer-name\":\"Hridaan\"})}),/*#__PURE__*/_jsx(Link,{href:{webPageId:\"tuilmkEGa\"},motionChild:true,nodeId:\"VW4OiTcUc\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Image,{as:\"a\",background:{alt:\"Refillable truck design\",fit:\"fill\",intrinsicHeight:278,intrinsicWidth:494,pixelHeight:1024,pixelWidth:2260,sizes:\"494px\",src:\"https://framerusercontent.com/images/baIUD6oHGnkzrW3xXCRWxFSYDc.jpg?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/baIUD6oHGnkzrW3xXCRWxFSYDc.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/baIUD6oHGnkzrW3xXCRWxFSYDc.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/baIUD6oHGnkzrW3xXCRWxFSYDc.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/baIUD6oHGnkzrW3xXCRWxFSYDc.jpg 2260w\"},className:\"framer-1jls9o9 framer-lux5qc\",\"data-framer-name\":\"Refillable\"})})],speed:100,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-sipg1p\",\"data-framer-name\":\"Testimonials\",id:elementId3,ref:ref4,children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-vs384h\",\"data-framer-name\":\"What I do - box\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1p7un9w\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"RlM7TW9udHNlcnJhdC1tZWRpdW0=\",\"--framer-font-family\":'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',\"--framer-font-open-type-features\":\"'smcp' on, 'c2sc' on\",\"--framer-font-size\":\"24px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"2px\",\"--framer-line-height\":\"36px\",\"--framer-text-color\":\"rgb(216, 101, 103)\"},children:\"They Said What They Had To Say\"})}),className:\"framer-1b35h7z\",fonts:[\"FS;Montserrat-medium\"],verticalAlignment:\"top\",withExternalLayout:true}),isDisplayed1()&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7TW9udHNlcnJhdC1tZWRpdW0=\",\"--framer-font-family\":'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"0.7px\",\"--framer-line-height\":\"35px\",\"--framer-text-color\":\"rgb(29, 29, 29)\"},children:\"(Tap to reveal the truth)\"})}),className:\"framer-xf4zt2 hidden-72rtr7 hidden-1tx7as6 hidden-5h7kkp hidden-1n2uk4t\",fonts:[\"FS;Montserrat-medium\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-12sv4yy\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{AaTPgFONR:{height:300,y:(componentViewport?.y||0)+0+5047+0+0+95+233+0+0},k2c7xQ8Z8:{height:220,y:(componentViewport?.y||0)+0+5047+0+0+82+66+0+0},yhzC2LD4B:{y:(componentViewport?.y||0)+0+5600+0+0+124+66+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:200,width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+5600+0+0+149+66+0+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1xhjwxq-container\",nodeId:\"Usfe4KoNP\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{AaTPgFONR:{TNrp46lvk:\"36px 30px 36px 30px\"},k2c7xQ8Z8:{style:{width:\"100%\"},TNrp46lvk:\"36px 50px 36px 50px\"},yhzC2LD4B:{TNrp46lvk:\"36px 100px 36px 200px\"}},children:/*#__PURE__*/_jsx(Testimonials,{An0XExKoG:\"Chetna\",C0ikD8uZN:\"He's committed, self-driven, and follows through on what he starts.\",fAAJEgU1a:\"Self-Employed Educator\",height:\"100%\",id:\"Usfe4KoNP\",j56fahQnV:15,JmRnfGBZO:\"Mother\",KZjEnqAZi:\"Had time all day. Did it at 3AM. Said it was part of the process :)\",layoutId:\"Usfe4KoNP\",pD3RIa8Jz:15,style:{height:\"100%\",width:\"100%\"},TNrp46lvk:\"36px 100px 36px 250px\",variant:\"oq_KsqUyR\",width:\"100%\",Zq66giCQt:\"Chetna\"})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{AaTPgFONR:{height:300,y:(componentViewport?.y||0)+0+5047+0+0+95+233+0+300},k2c7xQ8Z8:{height:220,y:(componentViewport?.y||0)+0+5047+0+0+82+66+0+220},yhzC2LD4B:{y:(componentViewport?.y||0)+0+5600+0+0+124+66+0+200}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:200,width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+5600+0+0+149+66+0+200,children:/*#__PURE__*/_jsx(Container,{className:\"framer-5m73dm-container\",nodeId:\"GRp7ct8yL\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{AaTPgFONR:{TNrp46lvk:\"36px 30px 36px 30px\"},k2c7xQ8Z8:{style:{width:\"100%\"},TNrp46lvk:\"36px 50px 36px 50px\"},yhzC2LD4B:{TNrp46lvk:\"36px 100px 36px 200px\"}},children:/*#__PURE__*/_jsx(Testimonials,{An0XExKoG:\"Dishit\",C0ikD8uZN:\"He has a strong eye for detail - he is focused and precise\",fAAJEgU1a:\"Investment principal, Capitar Ventures\",height:\"100%\",id:\"GRp7ct8yL\",j56fahQnV:15,JmRnfGBZO:\"School Friend\",KZjEnqAZi:\"He once took 40 minutes to order food. Said he was \u2018just thinking'\",layoutId:\"GRp7ct8yL\",pD3RIa8Jz:15,style:{height:\"100%\",width:\"100%\"},TNrp46lvk:\"36px 100px 36px 250px\",variant:\"oq_KsqUyR\",width:\"100%\",Zq66giCQt:\"Dishit\"})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{AaTPgFONR:{height:300,y:(componentViewport?.y||0)+0+5047+0+0+95+233+0+600},k2c7xQ8Z8:{height:240,y:(componentViewport?.y||0)+0+5047+0+0+82+66+0+440},yhzC2LD4B:{y:(componentViewport?.y||0)+0+5600+0+0+124+66+0+400}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:200,width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+5600+0+0+149+66+0+400,children:/*#__PURE__*/_jsx(Container,{className:\"framer-42kfoh-container\",nodeId:\"bhU1x_WNC\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{AaTPgFONR:{TNrp46lvk:\"36px 30px 36px 30px\"},k2c7xQ8Z8:{TNrp46lvk:\"36px 50px 36px 50px\"},yhzC2LD4B:{TNrp46lvk:\"36px 100px 36px 200px\"}},children:/*#__PURE__*/_jsx(Testimonials,{An0XExKoG:\"Adi\",C0ikD8uZN:\"He values collaboration and always seeks diverse perspectives before making a decision.\",fAAJEgU1a:\"Deputy Manager, ICICI\",height:\"100%\",id:\"bhU1x_WNC\",j56fahQnV:15,JmRnfGBZO:\"Best Friend\",KZjEnqAZi:\"He has already decided. He just wants you to agree.\",layoutId:\"bhU1x_WNC\",pD3RIa8Jz:15,style:{height:\"100%\",width:\"100%\"},TNrp46lvk:\"36px 100px 36px 250px\",variant:\"oq_KsqUyR\",width:\"100%\",Zq66giCQt:\"Adi\"})})})})})]})]})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{AaTPgFONR:{y:(componentViewport?.y||0)+0+6370},k2c7xQ8Z8:{y:(componentViewport?.y||0)+0+5957},yhzC2LD4B:{y:(componentViewport?.y||0)+0+6514}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:400,width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+6564,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1lbvo9t-container\",id:elementId4,nodeId:\"zL_LkITrp\",ref:ref5,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{AaTPgFONR:{variant:\"baUwnQTjb\"},GlxRvl27n:{variant:\"XTTE4EOg5\"},k2c7xQ8Z8:{variant:\"o0de327OV\"},yhzC2LD4B:{variant:\"Xd4cArRa7\"}},children:/*#__PURE__*/_jsx(Footer,{height:\"100%\",id:\"zL_LkITrp\",layoutId:\"zL_LkITrp\",style:{width:\"100%\"},variant:\"lH9AC6cHw\",width:\"100%\"})})})})})]}),/*#__PURE__*/_jsx(\"div\",{id:\"overlay\"})]})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-vhuuM.framer-lux5qc, .framer-vhuuM .framer-lux5qc { display: block; }\",\".framer-vhuuM.framer-72rtr7 { align-content: center; align-items: center; background-color: #efefef; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 1400px; }\",\".framer-vhuuM .framer-1uuw3s8-container { bottom: 0px; flex: none; left: 50px; mix-blend-mode: multiply; position: fixed; top: 0px; width: 120px; z-index: 3; }\",\".framer-vhuuM .framer-oo8svf { align-content: center; align-items: center; background-color: #ffffff; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: 3500px; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; z-index: 1; }\",\".framer-vhuuM .framer-zj5t7p { flex: none; height: 100vh; overflow: hidden; position: sticky; top: 0px; width: 100%; z-index: 1; }\",\".framer-vhuuM .framer-7izkvr { bottom: 0px; flex: none; left: 0px; overflow: hidden; position: absolute; right: 0px; top: 0px; }\",\".framer-vhuuM .framer-1xzz43h { bottom: 0px; flex: none; left: 0px; position: absolute; right: 0px; top: 0px; }\",\".framer-vhuuM .framer-1uj114p { background-color: #d86567; flex: none; height: 100vh; left: 0px; overflow: hidden; position: absolute; top: calc(50.00000000000002% - 100vh / 2); width: 1%; }\",\".framer-vhuuM .framer-112we0n-container { bottom: 50px; flex: none; height: 150px; left: 200px; position: absolute; width: 150px; }\",\".framer-vhuuM .framer-e41ttx, .framer-vhuuM .framer-k41okp { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 28px; height: 100vh; justify-content: center; left: 0px; overflow: hidden; padding: 0px 0px 0px 200px; position: absolute; top: calc(50.00000000000002% - 100vh / 2); width: 50%; }\",\".framer-vhuuM .framer-10bn8ss, .framer-vhuuM .framer-8dmp3u, .framer-vhuuM .framer-g3d2ka, .framer-vhuuM .framer-sgios3 { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; --framer-text-wrap-override: balance; flex: none; height: auto; position: relative; width: auto; }\",\".framer-vhuuM .framer-15jgrb8, .framer-vhuuM .framer-qosyfo { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; --framer-text-wrap: balance; flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-vhuuM .framer-181cdhi { align-content: center; align-items: center; background-color: #efefef; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: 3500px; justify-content: flex-start; left: 0px; overflow: visible; padding: 0px; position: absolute; right: 0px; top: 0px; }\",\".framer-vhuuM .framer-1crc0l5 { align-content: center; align-items: center; background-color: #ffffff; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: 100vh; justify-content: center; overflow: hidden; padding: 0px; position: sticky; top: 0px; width: 100%; }\",\".framer-vhuuM .framer-1fukjc6 { background-color: #d86567; bottom: 0px; flex: none; left: 0px; overflow: hidden; position: absolute; right: 0px; top: 0px; }\",\".framer-vhuuM .framer-vxe676 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 100vh; justify-content: flex-end; overflow: hidden; padding: 0px 75px 0px 0px; position: absolute; right: 0px; top: calc(50.00000000000002% - 100vh / 2); width: 50%; }\",\".framer-vhuuM .framer-x7zdok { flex: none; height: 75%; position: relative; width: 100%; z-index: 1; }\",\".framer-vhuuM .framer-1p8evhi, .framer-vhuuM .framer-sipg1p { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; z-index: 1; }\",\".framer-vhuuM .framer-1z0v4pg { align-content: flex-start; align-items: flex-start; background-color: #efefef; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 27px; height: 110.00000000000001vh; justify-content: flex-start; overflow: visible; padding: 200px 0px 0px 0px; position: relative; width: 100%; }\",\".framer-vhuuM .framer-17lgkgj, .framer-vhuuM .framer-1p7un9w { 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; overflow: hidden; padding: 0px 0px 0px 250px; position: relative; width: 100%; }\",\".framer-vhuuM .framer-wkrm6q, .framer-vhuuM .framer-1b35h7z { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; position: relative; white-space: pre; width: auto; z-index: 1; }\",\".framer-vhuuM .framer-evet19 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 14px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-vhuuM .framer-18v8lu1-container, .framer-vhuuM .framer-b4gdxn-container, .framer-vhuuM .framer-135180q-container, .framer-vhuuM .framer-tcgl9n-container { flex: none; height: auto; position: relative; width: 100%; }\",\".framer-vhuuM .framer-z98kx3 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; height: 100vh; justify-content: space-between; overflow: visible; padding: 0px; position: relative; width: 100%; z-index: 1; }\",\".framer-vhuuM .framer-1o2mc8g-container, .framer-vhuuM .framer-1wo94v7-container { flex: none; height: 40vh; position: relative; width: 100%; }\",\".framer-vhuuM .framer-1ruu7vt, .framer-vhuuM .framer-1ft4ig9, .framer-vhuuM .framer-3do3q5, .framer-vhuuM .framer-m17wu1, .framer-vhuuM .framer-h3ksua, .framer-vhuuM .framer-13x8ki5, .framer-vhuuM .framer-d3a9ct, .framer-vhuuM .framer-y4l3ni, .framer-vhuuM .framer-1jls9o9 { aspect-ratio: 1.776978417266187 / 1; height: var(--framer-aspect-ratio-supported, 278px); overflow: visible; position: relative; text-decoration: none; width: 494px; }\",\".framer-vhuuM .framer-11wsz7y { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 50%; }\",\".framer-vhuuM .framer-f6ugak { --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-vhuuM .framer-19onj8p-container { flex: none; height: 40px; position: relative; width: 274px; }\",\".framer-vhuuM .framer-1pict8e { aspect-ratio: 1.776978417266187 / 1; height: var(--framer-aspect-ratio-supported, 278px); overflow: visible; position: relative; width: 494px; }\",\".framer-vhuuM .framer-vs384h { align-content: flex-start; align-items: flex-start; background-color: #efefef; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 30px; height: min-content; justify-content: flex-start; overflow: visible; padding: 149px 0px 149px 0px; position: relative; width: 100%; z-index: 1; }\",\".framer-vhuuM .framer-xf4zt2 { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: 1 0 0px; height: auto; position: relative; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; z-index: 1; }\",\".framer-vhuuM .framer-12sv4yy { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-vhuuM .framer-1xhjwxq-container, .framer-vhuuM .framer-5m73dm-container, .framer-vhuuM .framer-42kfoh-container { flex: none; height: 200px; position: relative; width: 100%; }\",\".framer-vhuuM .framer-1lbvo9t-container { flex: none; height: auto; position: relative; width: 100%; z-index: 1; }\",\"@supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-vhuuM.framer-72rtr7, .framer-vhuuM .framer-oo8svf, .framer-vhuuM .framer-e41ttx, .framer-vhuuM .framer-181cdhi, .framer-vhuuM .framer-1crc0l5, .framer-vhuuM .framer-k41okp, .framer-vhuuM .framer-vxe676, .framer-vhuuM .framer-1p8evhi, .framer-vhuuM .framer-1z0v4pg, .framer-vhuuM .framer-17lgkgj, .framer-vhuuM .framer-evet19, .framer-vhuuM .framer-11wsz7y, .framer-vhuuM .framer-sipg1p, .framer-vhuuM .framer-vs384h, .framer-vhuuM .framer-1p7un9w, .framer-vhuuM .framer-12sv4yy { gap: 0px; } .framer-vhuuM.framer-72rtr7 > *, .framer-vhuuM .framer-oo8svf > *, .framer-vhuuM .framer-181cdhi > *, .framer-vhuuM .framer-1p8evhi > *, .framer-vhuuM .framer-sipg1p > *, .framer-vhuuM .framer-12sv4yy > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-vhuuM.framer-72rtr7 > :first-child, .framer-vhuuM .framer-oo8svf > :first-child, .framer-vhuuM .framer-e41ttx > :first-child, .framer-vhuuM .framer-181cdhi > :first-child, .framer-vhuuM .framer-k41okp > :first-child, .framer-vhuuM .framer-1p8evhi > :first-child, .framer-vhuuM .framer-1z0v4pg > :first-child, .framer-vhuuM .framer-evet19 > :first-child, .framer-vhuuM .framer-11wsz7y > :first-child, .framer-vhuuM .framer-sipg1p > :first-child, .framer-vhuuM .framer-vs384h > :first-child, .framer-vhuuM .framer-12sv4yy > :first-child { margin-top: 0px; } .framer-vhuuM.framer-72rtr7 > :last-child, .framer-vhuuM .framer-oo8svf > :last-child, .framer-vhuuM .framer-e41ttx > :last-child, .framer-vhuuM .framer-181cdhi > :last-child, .framer-vhuuM .framer-k41okp > :last-child, .framer-vhuuM .framer-1p8evhi > :last-child, .framer-vhuuM .framer-1z0v4pg > :last-child, .framer-vhuuM .framer-evet19 > :last-child, .framer-vhuuM .framer-11wsz7y > :last-child, .framer-vhuuM .framer-sipg1p > :last-child, .framer-vhuuM .framer-vs384h > :last-child, .framer-vhuuM .framer-12sv4yy > :last-child { margin-bottom: 0px; } .framer-vhuuM .framer-e41ttx > *, .framer-vhuuM .framer-k41okp > * { margin: 0px; margin-bottom: calc(28px / 2); margin-top: calc(28px / 2); } .framer-vhuuM .framer-1crc0l5 > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } .framer-vhuuM .framer-1crc0l5 > :first-child, .framer-vhuuM .framer-vxe676 > :first-child, .framer-vhuuM .framer-17lgkgj > :first-child, .framer-vhuuM .framer-1p7un9w > :first-child { margin-left: 0px; } .framer-vhuuM .framer-1crc0l5 > :last-child, .framer-vhuuM .framer-vxe676 > :last-child, .framer-vhuuM .framer-17lgkgj > :last-child, .framer-vhuuM .framer-1p7un9w > :last-child { margin-right: 0px; } .framer-vhuuM .framer-vxe676 > *, .framer-vhuuM .framer-17lgkgj > *, .framer-vhuuM .framer-1p7un9w > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-vhuuM .framer-1z0v4pg > * { margin: 0px; margin-bottom: calc(27px / 2); margin-top: calc(27px / 2); } .framer-vhuuM .framer-evet19 > * { margin: 0px; margin-bottom: calc(14px / 2); margin-top: calc(14px / 2); } .framer-vhuuM .framer-11wsz7y > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } .framer-vhuuM .framer-vs384h > * { margin: 0px; margin-bottom: calc(30px / 2); margin-top: calc(30px / 2); } }\",...sharedStyle.css,\"@media (min-width: 1300px) and (max-width: 1399px) { .framer-vhuuM.framer-72rtr7 { width: 1300px; } .framer-vhuuM .framer-e41ttx, .framer-vhuuM .framer-k41okp { width: 60%; } .framer-vhuuM .framer-vxe676 { justify-content: center; padding: 0px 100px 0px 0px; width: 40%; } .framer-vhuuM .framer-x7zdok { order: 0; }}\",\"@media (min-width: 700px) and (max-width: 1024px) { .framer-vhuuM.framer-72rtr7 { width: 700px; } .framer-vhuuM .framer-1uuw3s8-container { bottom: unset; height: 110px; left: 0px; mix-blend-mode: unset; order: 8; width: 100%; } .framer-vhuuM .framer-oo8svf { order: 1; } .framer-vhuuM .framer-1xzz43h { background-color: #ffffff; bottom: unset; height: 100vh; } .framer-vhuuM .framer-1uj114p { align-content: center; align-items: center; background-color: unset; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 40vh; justify-content: center; padding: 0px; top: 0px; width: 250%; } .framer-vhuuM .framer-e41ttx, .framer-vhuuM .framer-k41okp { bottom: 0px; height: 50%; justify-content: flex-start; padding: 50px 0px 0px 30px; top: unset; width: 100%; } .framer-vhuuM .framer-vxe676 { height: 50%; justify-content: center; padding: 100px 0px 0px 0px; top: 0px; width: 100%; } .framer-vhuuM .framer-x7zdok { height: 100%; order: 0; z-index: unset; } .framer-vhuuM .framer-1p8evhi { order: 4; } .framer-vhuuM .framer-1z0v4pg { background-color: #d86567; height: min-content; padding: 100px 0px 100px 0px; } .framer-vhuuM .framer-17lgkgj, .framer-vhuuM .framer-1p7un9w { padding: 0px 0px 0px 50px; } .framer-vhuuM .framer-evet19 { gap: 0px; } .framer-vhuuM .framer-z98kx3 { order: 5; } .framer-vhuuM .framer-sipg1p { order: 6; } .framer-vhuuM .framer-vs384h { padding: 82px 0px 82px 0px; } .framer-vhuuM .framer-1xhjwxq-container, .framer-vhuuM .framer-5m73dm-container { height: auto; } .framer-vhuuM .framer-42kfoh-container { height: 240px; } .framer-vhuuM .framer-1lbvo9t-container { order: 7; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-vhuuM .framer-1uj114p, .framer-vhuuM .framer-evet19 { gap: 0px; } .framer-vhuuM .framer-1uj114p > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-vhuuM .framer-1uj114p > :first-child { margin-left: 0px; } .framer-vhuuM .framer-1uj114p > :last-child { margin-right: 0px; } .framer-vhuuM .framer-evet19 > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-vhuuM .framer-evet19 > :first-child { margin-top: 0px; } .framer-vhuuM .framer-evet19 > :last-child { margin-bottom: 0px; } }}\",\"@media (min-width: 1025px) and (max-width: 1299px) { .framer-vhuuM.framer-72rtr7 { width: 1025px; } .framer-vhuuM .framer-112we0n-container { bottom: 40px; height: 15%; width: 12%; } .framer-vhuuM .framer-e41ttx { width: 100%; } .framer-vhuuM .framer-10bn8ss, .framer-vhuuM .framer-8dmp3u, .framer-vhuuM .framer-g3d2ka, .framer-vhuuM .framer-sgios3 { --framer-text-wrap: balance; white-space: pre; } .framer-vhuuM .framer-k41okp { width: 65%; } .framer-vhuuM .framer-vxe676 { height: 75%; justify-content: center; padding: 0px 50px 0px 0px; top: calc(50.00000000000002% - 75% / 2); width: 40%; } .framer-vhuuM .framer-x7zdok { order: 0; } .framer-vhuuM .framer-17lgkgj, .framer-vhuuM .framer-1p7un9w { padding: 0px 0px 0px 200px; } .framer-vhuuM .framer-evet19 { gap: 0px; } .framer-vhuuM .framer-z98kx3 { padding: 50px 0px 0px 0px; } .framer-vhuuM .framer-1o2mc8g-container, .framer-vhuuM .framer-1wo94v7-container { height: 30vh; } .framer-vhuuM .framer-11wsz7y { height: 40vh; } .framer-vhuuM .framer-vs384h { padding: 124px 0px 124px 0px; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-vhuuM .framer-evet19 { gap: 0px; } .framer-vhuuM .framer-evet19 > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-vhuuM .framer-evet19 > :first-child { margin-top: 0px; } .framer-vhuuM .framer-evet19 > :last-child { margin-bottom: 0px; } }}\",\"@media (max-width: 699px) { .framer-vhuuM.framer-72rtr7 { width: 390px; } .framer-vhuuM .framer-1uuw3s8-container { bottom: unset; height: 110px; left: 0px; mix-blend-mode: unset; order: 7; width: 100%; } .framer-vhuuM .framer-oo8svf { order: 1; z-index: unset; } .framer-vhuuM .framer-zj5t7p { z-index: 2; } .framer-vhuuM .framer-1xzz43h { background-color: #ffffff; bottom: unset; height: 100vh; } .framer-vhuuM .framer-1uj114p { align-content: center; align-items: center; background-color: unset; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 40vh; justify-content: center; padding: 0px; top: 0px; width: 250%; } .framer-vhuuM .framer-e41ttx, .framer-vhuuM .framer-k41okp { bottom: 0px; gap: 10px; height: 60%; justify-content: flex-start; padding: 100px 0px 0px 30px; top: unset; width: 100%; } .framer-vhuuM .framer-10bn8ss, .framer-vhuuM .framer-8dmp3u, .framer-vhuuM .framer-g3d2ka, .framer-vhuuM .framer-sgios3 { --framer-text-wrap: balance; white-space: pre; } .framer-vhuuM .framer-181cdhi { z-index: 1; } .framer-vhuuM .framer-vxe676 { height: 50%; justify-content: center; padding: 50px 0px 0px 0px; top: 0px; width: 100%; } .framer-vhuuM .framer-x7zdok { flex: 1 0 0px; height: 100%; order: 0; width: 1px; } .framer-vhuuM .framer-1p8evhi { order: 3; } .framer-vhuuM .framer-1z0v4pg { background-color: #ffffff; height: min-content; padding: 100px 0px 100px 0px; } .framer-vhuuM .framer-17lgkgj { padding: 0px 0px 0px 50px; } .framer-vhuuM .framer-wkrm6q { flex: 1 0 0px; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; } .framer-vhuuM .framer-evet19 { gap: 0px; } .framer-vhuuM .framer-z98kx3 { order: 4; } .framer-vhuuM .framer-11wsz7y { width: min-content; } .framer-vhuuM .framer-f6ugak { width: 195px; } .framer-vhuuM .framer-19onj8p-container { width: auto; } .framer-vhuuM .framer-sipg1p { order: 5; } .framer-vhuuM .framer-vs384h { gap: 12px; order: 0; padding: 95px 0px 95px 0px; } .framer-vhuuM .framer-1p7un9w { flex-direction: column; padding: 0px 30px 0px 30px; } .framer-vhuuM .framer-1b35h7z { white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; } .framer-vhuuM .framer-xf4zt2 { flex: none; width: 100%; } .framer-vhuuM .framer-1xhjwxq-container, .framer-vhuuM .framer-5m73dm-container, .framer-vhuuM .framer-42kfoh-container { height: 300px; } .framer-vhuuM .framer-1lbvo9t-container { order: 6; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-vhuuM .framer-1uj114p, .framer-vhuuM .framer-e41ttx, .framer-vhuuM .framer-k41okp, .framer-vhuuM .framer-evet19, .framer-vhuuM .framer-vs384h, .framer-vhuuM .framer-1p7un9w { gap: 0px; } .framer-vhuuM .framer-1uj114p > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-vhuuM .framer-1uj114p > :first-child { margin-left: 0px; } .framer-vhuuM .framer-1uj114p > :last-child { margin-right: 0px; } .framer-vhuuM .framer-e41ttx > *, .framer-vhuuM .framer-k41okp > *, .framer-vhuuM .framer-1p7un9w > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-vhuuM .framer-e41ttx > :first-child, .framer-vhuuM .framer-k41okp > :first-child, .framer-vhuuM .framer-evet19 > :first-child, .framer-vhuuM .framer-vs384h > :first-child, .framer-vhuuM .framer-1p7un9w > :first-child { margin-top: 0px; } .framer-vhuuM .framer-e41ttx > :last-child, .framer-vhuuM .framer-k41okp > :last-child, .framer-vhuuM .framer-evet19 > :last-child, .framer-vhuuM .framer-vs384h > :last-child, .framer-vhuuM .framer-1p7un9w > :last-child { margin-bottom: 0px; } .framer-vhuuM .framer-evet19 > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-vhuuM .framer-vs384h > * { margin: 0px; margin-bottom: calc(12px / 2); margin-top: calc(12px / 2); } }}\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 6544\n * @framerIntrinsicWidth 1400\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"GlxRvl27n\":{\"layout\":[\"fixed\",\"auto\"]},\"k2c7xQ8Z8\":{\"layout\":[\"fixed\",\"auto\"]},\"yhzC2LD4B\":{\"layout\":[\"fixed\",\"auto\"]},\"AaTPgFONR\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n * @framerAcceptsLayoutTemplate true\n * @framerScrollSections {\"hwzb6em0T\":{\"pattern\":\":hwzb6em0T\",\"name\":\"hero\"},\"kMTSSHGLJ\":{\"pattern\":\":kMTSSHGLJ\",\"name\":\"about\"},\"KGXnMGwH9\":{\"pattern\":\":KGXnMGwH9\",\"name\":\"about\"},\"oQBtjC1e1\":{\"pattern\":\":oQBtjC1e1\",\"name\":\"about\"},\"zL_LkITrp\":{\"pattern\":\":zL_LkITrp\",\"name\":\"about\"}}\n * @framerResponsiveScreen\n */const FrameraugiA20Il=withCSS(Component,css,\"framer-vhuuM\");export default FrameraugiA20Il;FrameraugiA20Il.displayName=\"Home\";FrameraugiA20Il.defaultProps={height:6544,width:1400};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:\"Montserrat\",source:\"fontshare\",style:\"normal\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/NZ67QOF3FXYLOR27ABJOZVKKBKNRMKMF/EHBFE55HTLOOJHTZSLD54GSL3EBTAFNQ/DI2GHUWG3WKRXISSCTNDMTWKWZC25UIW.woff2\",weight:\"400\"},{family:\"Syncopate\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/syncopate/v22/pe0pMIuPIYBCpEV5eFdKvtKaBvRue1UwVg.woff2\",weight:\"700\"},{family:\"Montserrat\",source:\"fontshare\",style:\"normal\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/G3U4AIP7I5YYMBY4PZ5BNYEWWVH7G7QB/WED2HATCWTE6B4XVIFFTI3EALCE4D6PD/GDZ4LVIJF6WODYKVZK6E2737DCDQPEMZ.woff2\",weight:\"500\"},{family:\"Montserrat\",source:\"fontshare\",style:\"normal\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/KDZE2GHZ4MXZP7RVHASNN75AFABT2ZB2/G33WYZOWF5RLCYVGCMU5BFGBXH4DMKUK/SHZ3SDA4YUDBQPNRSIGO7XNSCQQUBDYR.woff2\",weight:\"700\"}]},...MenuFonts,...ArcFonts,...WhatIDoFonts,...TickerFonts,...PrettyPartButtonFonts,...TestimonialsFonts,...FooterFonts,...getFontsFromSharedStyle(sharedStyle.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FrameraugiA20Il\",\"slots\":[],\"annotations\":{\"framerColorSyntax\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerIntrinsicHeight\":\"6544\",\"framerComponentViewportWidth\":\"true\",\"framerResponsiveScreen\":\"\",\"framerScrollSections\":\"{\\\"hwzb6em0T\\\":{\\\"pattern\\\":\\\":hwzb6em0T\\\",\\\"name\\\":\\\"hero\\\"},\\\"kMTSSHGLJ\\\":{\\\"pattern\\\":\\\":kMTSSHGLJ\\\",\\\"name\\\":\\\"about\\\"},\\\"KGXnMGwH9\\\":{\\\"pattern\\\":\\\":KGXnMGwH9\\\",\\\"name\\\":\\\"about\\\"},\\\"oQBtjC1e1\\\":{\\\"pattern\\\":\\\":oQBtjC1e1\\\",\\\"name\\\":\\\"about\\\"},\\\"zL_LkITrp\\\":{\\\"pattern\\\":\\\":zL_LkITrp\\\",\\\"name\\\":\\\"about\\\"}}\",\"framerImmutableVariables\":\"true\",\"framerContractVersion\":\"1\",\"framerAcceptsLayoutTemplate\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"GlxRvl27n\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"k2c7xQ8Z8\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"yhzC2LD4B\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"AaTPgFONR\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerIntrinsicWidth\":\"1400\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}"],
  "mappings": "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",
  "names": ["MAX_DUPLICATED_ITEMS", "directionTransformers", "offset", "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", "currentTarget", "RenderTarget", "isCanvas", "filteredSlots", "numChildren", "j", "hasChildren", "isHorizontal", "useMotionValue", "transformer", "transform", "useTransform", "parentRef", "pe", "childrenRef", "se", "size", "setSize", "ye", "clonedChildren", "dupedChildren", "duplicateBy", "opacity", "measure", "te", "parentLength", "start", "childrenLength", "childrenStyles", "initialResize", "fe", "frame", "resize", "contentSize", "child", "index", "ref", "p", "LayoutGroup", "q", "isInView", "useInView", "i", "childIndex", "animateToValue", "initialTime", "prevTime", "xOrY", "isHover", "isReducedMotion", "useReducedMotion", "listRef", "animationRef", "ue", "playOrPause", "hidden", "fadeDirection", "fadeWidthStart", "fadeWidthEnd", "fadeInsetStart", "clamp", "fadeInsetEnd", "fadeMask", "containerStyle", "u", "motion", "isValidNumber", "placeholderStyles", "emojiStyles", "titleStyles", "subtitleStyles", "addPropertyControls", "ControlType", "num", "min", "max", "value", "murmur2", "t", "a", "e", "c", "getAlignmentIcon", "alignmentBaseline", "Arc", "withCSS", "props", "isCanvas", "RenderTarget", "cylinder", "path", "createPath", "id", "murmur2", "alignmentValue", "u", "p", "Arc_default", "addPropertyControls", "ControlType", "flip", "cylinderTop", "cylinderBottom", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "numberToPixelString", "value", "Transition", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "designation1", "designation2", "gap", "gap2", "height", "id", "padding", "quote1", "quote2", "title", "title2", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "C0ikD8uZN", "KZjEnqAZi", "fAAJEgU1a", "JmRnfGBZO", "An0XExKoG", "Zq66giCQt", "TNrp46lvk", "pD3RIa8Jz", "j56fahQnV", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onTap7hwgun", "args", "onMouseEnter1v2c6z4", "onMouseLeavebk44ok", "scopingClassNames", "cx", "LayoutGroup", "u", "Image2", "RichText2", "css", "FramerEuHmyuAUH", "withCSS", "EuHmyuAUH_default", "addPropertyControls", "ControlType", "addFonts", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "numberToPixelString", "value", "transition1", "toResponsiveImage", "Transition", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "background", "description", "fontSize", "height", "id", "image", "padding", "title", "titleColor", "visible", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "HvMW1xQSS", "vzQ6ca0Zb", "EOsm5FJDN", "LJ8Y2NW03", "pXyiecaUX", "Jr5uV78kY", "dMPNrN4Dj", "ZMMIFMqsB", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onMouseEnter1m2e6gv", "args", "onMouseLeaveh3rpdm", "scopingClassNames", "cx", "LayoutGroup", "u", "RichText2", "Image2", "css", "FramerJ7C35MAVB", "withCSS", "J7C35MAVB_default", "addPropertyControls", "ControlType", "addFonts", "fontStore", "fonts", "css", "className", "MenuFonts", "getFonts", "ncGdKahFA_default", "ArcFonts", "Arc_default", "ContainerWithFX", "withFX", "Container", "RichTextWithFX", "RichText2", "MotionDivWithFX", "motion", "WhatIDoFonts", "J7C35MAVB_default", "TickerFonts", "Ticker", "PrettyPartButtonFonts", "B0MoBlpha_default", "TestimonialsFonts", "EuHmyuAUH_default", "FooterFonts", "wnEI2ciZO_default", "breakpoints", "isBrowser", "serializationHash", "variantClassNames", "transition1", "animation", "addImageAlt", "image", "alt", "HTMLStyle", "value", "useIsOnFramerCanvas", "p", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "variant", "restProps", "ue", "metadata", "robotsTag", "ie", "baseVariant", "hydratedBaseVariant", "useHydratedBreakpointVariants", "gestureVariant", "scopingClassNames", "cx", "elementId", "useRouteElementId", "ref1", "isDisplayed", "elementId1", "ref2", "elementId2", "ref3", "router", "useRouter", "elementId3", "ref4", "isDisplayed1", "elementId4", "ref5", "useCustomCursors", "GeneratedComponentContext", "u", "LayoutGroup", "PropertyOverrides2", "ComponentViewportProvider", "getLoadingLazyAtYPosition", "Image2", "x", "Link", "ResolveLinks", "resolvedLinks", "css", "FrameraugiA20Il", "withCSS", "augiA20Il_default", "addFonts", "getFontsFromSharedStyle", "fonts", "__FramerMetadata__"]
}
