{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/B2xAlJLcN0gOnt11mSPw/XVUmpmPn1EPL0dzocT35/Ticker.js", "ssg:https://framerusercontent.com/modules/hlrjHa2HWpcMDFnIbp4K/EUG4OJzxh01siNJuICOI/ujCXJ18XM.js", "ssg:https://framerusercontent.com/modules/TJqOOTfIJKJgYNCsGBaY/bG5XeRkIANdgfIqqfKgF/gl_MEdXSR.js"],
  "sourcesContent": ["import{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{Children,useEffect,useState,useRef,useMemo,createRef,useCallback,cloneElement}from\"react\";import{addPropertyControls,ControlType,RenderTarget}from\"framer\";import{useAnimationFrame,useReducedMotion,LayoutGroup,useInView,useMotionValue,useTransform,motion,wrap,frame}from\"framer-motion\";import{resize}from\"@motionone/dom\";const MAX_DUPLICATED_ITEMS=100;const directionTransformers={left:offset=>`translateX(-${offset}px)`,right:offset=>`translateX(${offset}px)`,top:offset=>`translateY(-${offset}px)`,bottom:offset=>`translateY(${offset}px)`};const supportsAcceleratedAnimations=typeof Animation!==\"undefined\"&&typeof Animation.prototype.updatePlaybackRate===\"function\";/**\n *\n * @framerIntrinsicWidth 400\n * @framerIntrinsicHeight 200\n *\n * @framerDisableUnlink\n *\n * @framerSupportedLayoutWidth fixed\n * @framerSupportedLayoutHeight fixed\n */export default function Ticker(props){/* Props */let{slots,gap,padding,paddingPerSide,paddingTop,paddingRight,paddingBottom,paddingLeft,speed,hoverFactor,direction,alignment,sizingOptions,fadeOptions,style}=props;const{fadeContent,overflow,fadeWidth,fadeInset,fadeAlpha}=fadeOptions;const{widthType,heightType}=sizingOptions;const paddingValue=paddingPerSide?`${paddingTop}px ${paddingRight}px ${paddingBottom}px ${paddingLeft}px`:`${padding}px`;/* Checks */const isCanvas=RenderTarget.current()===RenderTarget.canvas;// Remove empty slots (such as hidden layers)\nconst filteredSlots=slots.filter(Boolean);const numChildren=Children.count(filteredSlots);const hasChildren=numChildren>0;if(direction===true){direction=\"left\";}const isHorizontal=direction===\"left\"||direction===\"right\";const offset=useMotionValue(0);const transformer=directionTransformers[direction];const transform=useTransform(offset,transformer);/* Refs and State */const parentRef=useRef(null);const childrenRef=useMemo(()=>{return[/*#__PURE__*/createRef(),/*#__PURE__*/createRef()];},[]);const[size,setSize]=useState({parent:null,children:null});/* Arrays */let clonedChildren=[];let dupedChildren=[];/* Duplicate value */let duplicateBy=0;let opacity=0;if(isCanvas){duplicateBy=numChildren?Math.floor(10/numChildren):0;opacity=1;}if(!isCanvas&&hasChildren&&size.parent){duplicateBy=Math.round(size.parent/size.children*2)+1;duplicateBy=Math.min(duplicateBy,MAX_DUPLICATED_ITEMS);opacity=1;}/* Measure parent and child */const measure=useCallback(()=>{if(hasChildren&&parentRef.current){const parentLength=isHorizontal?parentRef.current.offsetWidth:parentRef.current.offsetHeight;const start=childrenRef[0].current?isHorizontal?childrenRef[0].current.offsetLeft:childrenRef[0].current.offsetTop:0;const end=childrenRef[1].current?isHorizontal?childrenRef[1].current.offsetLeft+childrenRef[1].current.offsetWidth:childrenRef[1].current.offsetTop+childrenRef[1].current.offsetHeight:0;const childrenLength=end-start+gap;setSize({parent:parentLength,children:childrenLength});}},[]);const childrenStyles=isCanvas?{contentVisibility:\"auto\"}:{};/* Add refs to first and last child */if(hasChildren){// TODO: These conditional hooks will be unsafe if hasChildren ever changes outside the canvas.\nif(!isCanvas){/**\n             * Track whether this is the initial resize event. By default this will fire on mount,\n             * which we do in the useEffect. We should only fire it on subsequent resizes.\n             */let initialResize=useRef(true);useEffect(()=>{frame.read(measure);return resize(parentRef.current,({contentSize})=>{if(!initialResize.current&&(contentSize.width||contentSize.height)){frame.read(measure);}initialResize.current=false;});},[]);}clonedChildren=Children.map(filteredSlots,(child,index)=>{var _child_props,_child_props1,_child_props2,_child_props3;let ref;if(index===0){ref=childrenRef[0];}if(index===filteredSlots.length-1){ref=childrenRef[1];}const size={width:widthType?(_child_props=child.props)===null||_child_props===void 0?void 0:_child_props.width:\"100%\",height:heightType?(_child_props1=child.props)===null||_child_props1===void 0?void 0:_child_props1.height:\"100%\"};return /*#__PURE__*/_jsx(LayoutGroup,{inherit:\"id\",children:/*#__PURE__*/_jsx(\"li\",{ref:ref,style:size,children:/*#__PURE__*/cloneElement(child,{style:{...(_child_props2=child.props)===null||_child_props2===void 0?void 0:_child_props2.style,...size,flexShrink:0,...childrenStyles},layoutId:child.props.layoutId?child.props.layoutId+\"-original-\"+index:undefined},(_child_props3=child.props)===null||_child_props3===void 0?void 0:_child_props3.children)})});});}if(!isCanvas){for(let i=0;i<duplicateBy;i++){dupedChildren=[...dupedChildren,...Children.map(filteredSlots,(child,childIndex)=>{var _child_props,_child_props1,_child_props2,_child_props3,_child_props4,_child_props5;const size={width:widthType?(_child_props=child.props)===null||_child_props===void 0?void 0:_child_props.width:\"100%\",height:heightType?(_child_props1=child.props)===null||_child_props1===void 0?void 0:_child_props1.height:\"100%\",willChange:\"transform\"};return /*#__PURE__*/_jsx(LayoutGroup,{inherit:\"id\",children:/*#__PURE__*/_jsx(\"li\",{style:size,\"aria-hidden\":true,children:/*#__PURE__*/cloneElement(child,{key:i+\" \"+childIndex,style:{...(_child_props2=child.props)===null||_child_props2===void 0?void 0:_child_props2.style,width:widthType?(_child_props3=child.props)===null||_child_props3===void 0?void 0:_child_props3.width:\"100%\",height:heightType?(_child_props4=child.props)===null||_child_props4===void 0?void 0:_child_props4.height:\"100%\",flexShrink:0,...childrenStyles},layoutId:child.props.layoutId?child.props.layoutId+\"-dupe-\"+i:undefined},(_child_props5=child.props)===null||_child_props5===void 0?void 0:_child_props5.children)},i+\"li\"+childIndex)},i+\"lg\"+childIndex);})];}}const animateToValue=size.children+size.children*Math.round(size.parent/size.children);const initialTime=useRef(null);const prevTime=useRef(null);const xOrY=useRef(0);const isHover=useRef(false);const isReducedMotion=useReducedMotion();const listRef=useRef(null);const animationRef=useRef(null);/**\n     * Setup animations\n     */if(!isCanvas){const isInView=useInView(parentRef);/**\n         * If this is an animation we can hardware accelerate, animate with WAAPI\n         */if(supportsAcceleratedAnimations){useEffect(()=>{if(isReducedMotion||!animateToValue||!speed){return;}animationRef.current=listRef.current.animate({transform:[transformer(0),transformer(animateToValue)]},{duration:Math.abs(animateToValue)/speed*1e3,iterations:Infinity,easing:\"linear\"});return()=>animationRef.current.cancel();},[hoverFactor,animateToValue,speed]);// Pause the animation when it's out of view\nuseEffect(()=>{if(!animationRef.current)return;if(isInView&&animationRef.current.playState===\"paused\"){animationRef.current.play();}else if(!isInView&&animationRef.current.playState===\"running\"){animationRef.current.pause();}},[isInView]);}else{/**\n             * If we can't accelerate this animation because we have a hoverFactor defined\n             * animate with a rAF loop.\n             */useAnimationFrame(t=>{if(!animateToValue||isReducedMotion||supportsAcceleratedAnimations){return;}/**\n                 * In case this animation is delayed from starting because we're running a bunch\n                 * of other work, we want to set an initial time rather than counting from 0.\n                 * That ensures that if the animation is delayed, it starts from the first frame\n                 * rather than jumping.\n                 */if(initialTime.current===null){initialTime.current=t;}t=t-initialTime.current;const timeSince=prevTime.current===null?0:t-prevTime.current;let delta=timeSince*(speed/1e3);if(isHover.current){delta*=hoverFactor;}xOrY.current+=delta;xOrY.current=wrap(0,animateToValue,xOrY.current);prevTime.current=t;if(!isInView)return;offset.set(xOrY.current);});}}/* Fades */const fadeDirection=isHorizontal?\"to right\":\"to bottom\";const fadeWidthStart=fadeWidth/2;const fadeWidthEnd=100-fadeWidth/2;const fadeInsetStart=clamp(fadeInset,0,fadeWidthStart);const fadeInsetEnd=100-fadeInset;const fadeMask=`linear-gradient(${fadeDirection}, rgba(0, 0, 0, ${fadeAlpha}) ${fadeInsetStart}%, rgba(0, 0, 0, 1) ${fadeWidthStart}%, rgba(0, 0, 0, 1) ${fadeWidthEnd}%, rgba(0, 0, 0, ${fadeAlpha}) ${fadeInsetEnd}%)`;/* Empty state */if(!hasChildren){return /*#__PURE__*/_jsxs(\"section\",{style:placeholderStyles,children:[/*#__PURE__*/_jsx(\"div\",{style:emojiStyles,children:\"\u2728\"}),/*#__PURE__*/_jsx(\"p\",{style:titleStyles,children:\"Connect to Content\"}),/*#__PURE__*/_jsx(\"p\",{style:subtitleStyles,children:\"Add layers or components to infinitely loop on your page.\"})]});}return /*#__PURE__*/_jsx(\"section\",{style:{...containerStyle,opacity:opacity,WebkitMaskImage:fadeContent?fadeMask:undefined,MozMaskImage:fadeContent?fadeMask:undefined,maskImage:fadeContent?fadeMask:undefined,overflow:overflow?\"visible\":\"hidden\",padding:paddingValue},ref:parentRef,children:/*#__PURE__*/_jsxs(motion.ul,{ref:listRef,style:{...containerStyle,gap:gap,top:direction===\"bottom\"&&isValidNumber(animateToValue)?-animateToValue:undefined,left:direction===\"right\"&&isValidNumber(animateToValue)?-animateToValue:undefined,placeItems:alignment,position:\"relative\",flexDirection:isHorizontal?\"row\":\"column\",...style,willChange:isCanvas?\"auto\":\"transform\",transform:supportsAcceleratedAnimations?transformer(0):transform},onMouseEnter:()=>{isHover.current=true;if(animationRef.current){// TODO Replace with updatePlaybackRate when Chrome bugs sorted\nanimationRef.current.playbackRate=hoverFactor;}},onMouseLeave:()=>{isHover.current=false;if(animationRef.current){// TODO Replace with updatePlaybackRate when Chrome bugs sorted\nanimationRef.current.playbackRate=1;}},children:[clonedChildren,dupedChildren]})});}/* Default Properties */Ticker.defaultProps={gap:10,padding:10,sizingOptions:{widthType:true,heightType:true},fadeOptions:{fadeContent:true,overflow:false,fadeWidth:25,fadeAlpha:0,fadeInset:0},direction:true};/* Property Controls */addPropertyControls(Ticker,{slots:{type:ControlType.Array,title:\"Children\",control:{type:ControlType.ComponentInstance}},speed:{type:ControlType.Number,title:\"Speed\",min:0,max:1e3,defaultValue:100,unit:\"%\",displayStepper:true,step:5},direction:{type:ControlType.Enum,title:\"Direction\",options:[\"left\",\"right\",\"top\",\"bottom\"],optionIcons:[\"direction-left\",\"direction-right\",\"direction-up\",\"direction-down\"],optionTitles:[\"Left\",\"Right\",\"Top\",\"Bottom\"],defaultValue:\"left\",displaySegmentedControl:true},alignment:{type:ControlType.Enum,title:\"Align\",options:[\"flex-start\",\"center\",\"flex-end\"],optionIcons:{direction:{right:[\"align-top\",\"align-middle\",\"align-bottom\"],left:[\"align-top\",\"align-middle\",\"align-bottom\"],top:[\"align-left\",\"align-center\",\"align-right\"],bottom:[\"align-left\",\"align-center\",\"align-right\"]}},defaultValue:\"center\",displaySegmentedControl:true},gap:{type:ControlType.Number,title:\"Gap\"},padding:{title:\"Padding\",type:ControlType.FusedNumber,toggleKey:\"paddingPerSide\",toggleTitles:[\"Padding\",\"Padding per side\"],valueKeys:[\"paddingTop\",\"paddingRight\",\"paddingBottom\",\"paddingLeft\"],valueLabels:[\"T\",\"R\",\"B\",\"L\"],min:0},sizingOptions:{type:ControlType.Object,title:\"Sizing\",controls:{widthType:{type:ControlType.Boolean,title:\"Width\",enabledTitle:\"Auto\",disabledTitle:\"Stretch\",defaultValue:true},heightType:{type:ControlType.Boolean,title:\"Height\",enabledTitle:\"Auto\",disabledTitle:\"Stretch\",defaultValue:true}}},fadeOptions:{type:ControlType.Object,title:\"Clipping\",controls:{fadeContent:{type:ControlType.Boolean,title:\"Fade\",defaultValue:true},overflow:{type:ControlType.Boolean,title:\"Overflow\",enabledTitle:\"Show\",disabledTitle:\"Hide\",defaultValue:false,hidden(props){return props.fadeContent===true;}},fadeWidth:{type:ControlType.Number,title:\"Width\",defaultValue:25,min:0,max:100,unit:\"%\",hidden(props){return props.fadeContent===false;}},fadeInset:{type:ControlType.Number,title:\"Inset\",defaultValue:0,min:0,max:100,unit:\"%\",hidden(props){return props.fadeContent===false;}},fadeAlpha:{type:ControlType.Number,title:\"Opacity\",defaultValue:0,min:0,max:1,step:.05,hidden(props){return props.fadeContent===false;}}}},hoverFactor:{type:ControlType.Number,title:\"Hover\",min:0,max:1,unit:\"x\",defaultValue:1,step:.1,displayStepper:true,description:\"Slows down the speed while you are hovering.\"}});/* Placeholder Styles */const containerStyle={display:\"flex\",width:\"100%\",height:\"100%\",maxWidth:\"100%\",maxHeight:\"100%\",placeItems:\"center\",margin:0,padding:0,listStyleType:\"none\",textIndent:\"none\"};/* Styles */const placeholderStyles={display:\"flex\",width:\"100%\",height:\"100%\",placeContent:\"center\",placeItems:\"center\",flexDirection:\"column\",color:\"#96F\",background:\"rgba(136, 85, 255, 0.1)\",fontSize:11,overflow:\"hidden\",padding:\"20px 20px 30px 20px\"};const emojiStyles={fontSize:32,marginBottom:10};const titleStyles={margin:0,marginBottom:10,fontWeight:600,textAlign:\"center\"};const subtitleStyles={margin:0,opacity:.7,maxWidth:150,lineHeight:1.5,textAlign:\"center\"};/* Clamp function, used for fadeInset */const clamp=(num,min,max)=>Math.min(Math.max(num,min),max);const isValidNumber=value=>typeof value===\"number\"&&!isNaN(value);\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"Ticker\",\"slots\":[],\"annotations\":{\"framerDisableUnlink\":\"*\",\"framerIntrinsicWidth\":\"400\",\"framerContractVersion\":\"1\",\"framerSupportedLayoutWidth\":\"fixed\",\"framerIntrinsicHeight\":\"200\",\"framerSupportedLayoutHeight\":\"fixed\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Ticker.map", "// Generated by Framer (abcfa95)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,RichText,useComponentViewport,useLocaleInfo,useVariantState,withCSS,withFX}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";const MotionDivWithFX=withFX(motion.div);const enabledGestures={yrKmqFX4X:{hover:true,pressed:true}};const cycleOrder=[\"yrKmqFX4X\",\"e5uGPMCIQ\",\"nctpPEqJV\",\"Wn9vSg0qj\",\"ZlH5MqgUb\"];const serializationHash=\"framer-IjI0j\";const variantClassNames={e5uGPMCIQ:\"framer-v-1pbdwwc\",nctpPEqJV:\"framer-v-ywx120\",Wn9vSg0qj:\"framer-v-1w27inm\",yrKmqFX4X:\"framer-v-1qxgu59\",ZlH5MqgUb:\"framer-v-d5a05n\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={delay:0,duration:.2,ease:[.44,0,.56,1],type:\"tween\"};const transition2={delay:0,duration:1,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 transformTemplate1=(_,t)=>`translateX(-50%) ${t}`;const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion(React.Fragment);const humanReadableVariantMap={Default:\"yrKmqFX4X\",Disabled:\"nctpPEqJV\",Error:\"ZlH5MqgUb\",Loading:\"e5uGPMCIQ\",Success:\"Wn9vSg0qj\"};const getProps=({height,id,width,...props})=>{var _humanReadableVariantMap_props_variant,_ref;return{...props,variant:(_ref=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref!==void 0?_ref:\"yrKmqFX4X\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"yrKmqFX4X\",enabledGestures,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const ref1=React.useRef(null);const isDisplayed=()=>{if(baseVariant===\"e5uGPMCIQ\")return false;return true;};const isDisplayed1=()=>{if(baseVariant===\"e5uGPMCIQ\")return true;return false;};const defaultLayoutId=React.useId();const sharedStyleClassNames=[];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(motion.button,{...restProps,...gestureHandlers,className:cx(serializationHash,...sharedStyleClassNames,\"framer-1qxgu59\",className,classNames),\"data-framer-name\":\"Default\",\"data-reset\":\"button\",layoutDependency:layoutDependency,layoutId:\"yrKmqFX4X\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{backgroundColor:\"rgb(51, 51, 51)\",borderBottomLeftRadius:10,borderBottomRightRadius:10,borderTopLeftRadius:10,borderTopRightRadius:10,opacity:1,...style},variants:{\"yrKmqFX4X-hover\":{backgroundColor:\"rgba(51, 51, 51, 0.85)\"},nctpPEqJV:{opacity:.5},ZlH5MqgUb:{backgroundColor:\"rgba(255, 34, 68, 0.15)\"}},...addPropertyOverrides({\"yrKmqFX4X-hover\":{\"data-framer-name\":undefined},\"yrKmqFX4X-pressed\":{\"data-framer-name\":undefined},e5uGPMCIQ:{\"data-framer-name\":\"Loading\"},nctpPEqJV:{\"data-framer-name\":\"Disabled\"},Wn9vSg0qj:{\"data-framer-name\":\"Success\"},ZlH5MqgUb:{\"data-framer-name\":\"Error\"}},baseVariant,gestureVariant),children:[isDisplayed()&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"600\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"Send Me It!\"})}),className:\"framer-czr8ph\",fonts:[\"Inter-SemiBold\"],layoutDependency:layoutDependency,layoutId:\"UAbnA6ao0\",style:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},variants:{ZlH5MqgUb:{\"--extracted-r6o4lv\":\"rgb(255, 34, 68)\"}},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({Wn9vSg0qj:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"600\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"Thank you\"})})},ZlH5MqgUb:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"600\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 34, 68))\"},children:\"Something went wrong\"})})}},baseVariant,gestureVariant)}),isDisplayed1()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-zou0qs\",\"data-framer-name\":\"Spinner\",layoutDependency:layoutDependency,layoutId:\"dD0ezKumV\",style:{mask:\"url('https://framerusercontent.com/images/pGiXYozQ3mE4cilNOItfe2L2fUA.svg') alpha no-repeat center / cover add\",WebkitMask:\"url('https://framerusercontent.com/images/pGiXYozQ3mE4cilNOItfe2L2fUA.svg') alpha no-repeat center / cover add\"},children:/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__loop:animation,__framer__loopEffectEnabled:true,__framer__loopRepeatDelay:0,__framer__loopRepeatType:\"loop\",__framer__loopTransition:transition2,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,className:\"framer-1x39usw\",\"data-framer-name\":\"Conic\",layoutDependency:layoutDependency,layoutId:\"aRrVDtNy6\",style:{background:\"conic-gradient(from 180deg at 50% 50%, #4cf 0deg, #4cf 360deg)\",backgroundColor:\"rgb(68, 204, 255)\",mask:\"none\",WebkitMask:\"none\"},variants:{e5uGPMCIQ:{background:\"conic-gradient(from 0deg at 50% 50%, rgba(255, 255, 255, 0) 7.208614864864882deg, rgb(255, 255, 255) 342deg)\",backgroundColor:\"rgba(0, 0, 0, 0)\",mask:\"url('https://framerusercontent.com/images/pGiXYozQ3mE4cilNOItfe2L2fUA.svg') alpha no-repeat center / cover add\",WebkitMask:\"url('https://framerusercontent.com/images/pGiXYozQ3mE4cilNOItfe2L2fUA.svg') alpha no-repeat center / cover add\"}},children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1j6vlfz\",\"data-framer-name\":\"Rounding\",layoutDependency:layoutDependency,layoutId:\"HrOR02rnQ\",style:{backgroundColor:\"rgb(255, 255, 255)\",borderBottomLeftRadius:1,borderBottomRightRadius:1,borderTopLeftRadius:1,borderTopRightRadius:1},transformTemplate:transformTemplate1})})})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-IjI0j.framer-1ohxzd2, .framer-IjI0j .framer-1ohxzd2 { display: block; }\",\".framer-IjI0j.framer-1qxgu59 { align-content: center; align-items: center; cursor: pointer; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: 40px; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 240px; }\",\".framer-IjI0j .framer-czr8ph { -webkit-user-select: none; flex: none; height: auto; position: relative; user-select: none; white-space: pre; width: auto; }\",\".framer-IjI0j .framer-zou0qs { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 20px); overflow: hidden; position: relative; width: 20px; }\",\".framer-IjI0j .framer-1x39usw { bottom: 0px; flex: none; left: 0px; overflow: visible; position: absolute; right: 0px; top: 0px; }\",\".framer-IjI0j .framer-1j6vlfz { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 2px); left: 50%; overflow: visible; position: absolute; top: 0px; width: 2px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-IjI0j.framer-1qxgu59 { gap: 0px; } .framer-IjI0j.framer-1qxgu59 > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } .framer-IjI0j.framer-1qxgu59 > :first-child { margin-left: 0px; } .framer-IjI0j.framer-1qxgu59 > :last-child { margin-right: 0px; } }\",\".framer-IjI0j.framer-v-1pbdwwc.framer-1qxgu59, .framer-IjI0j.framer-v-ywx120.framer-1qxgu59, .framer-IjI0j.framer-v-1w27inm.framer-1qxgu59, .framer-IjI0j.framer-v-d5a05n.framer-1qxgu59 { cursor: unset; }\",\".framer-IjI0j.framer-v-1pbdwwc .framer-1x39usw { overflow: hidden; }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 40\n * @framerIntrinsicWidth 240\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]},\"e5uGPMCIQ\":{\"layout\":[\"fixed\",\"fixed\"]},\"nctpPEqJV\":{\"layout\":[\"fixed\",\"fixed\"]},\"Wn9vSg0qj\":{\"layout\":[\"fixed\",\"fixed\"]},\"ZlH5MqgUb\":{\"layout\":[\"fixed\",\"fixed\"]},\"I9CVWH2Br\":{\"layout\":[\"fixed\",\"fixed\"]},\"FZOppKxCT\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerujCXJ18XM=withCSS(Component,css,\"framer-IjI0j\");export default FramerujCXJ18XM;FramerujCXJ18XM.displayName=\"Button\";FramerujCXJ18XM.defaultProps={height:40,width:240};addPropertyControls(FramerujCXJ18XM,{variant:{options:[\"yrKmqFX4X\",\"e5uGPMCIQ\",\"nctpPEqJV\",\"Wn9vSg0qj\",\"ZlH5MqgUb\"],optionTitles:[\"Default\",\"Loading\",\"Disabled\",\"Success\",\"Error\"],title:\"Variant\",type:ControlType.Enum}});addFonts(FramerujCXJ18XM,[{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/hyOgCu0Xnghbimh0pE8QTvtt2AU.woff2\",weight:\"600\"},{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/NeGmSOXrPBfEFIy5YZeHq17LEDA.woff2\",weight:\"600\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/oYaAX5himiTPYuN8vLWnqBbfD2s.woff2\",weight:\"600\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/lEJLP4R0yuCaMCjSXYHtJw72M.woff2\",weight:\"600\"},{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/cRJyLNuTJR5jbyKzGi33wU9cqIQ.woff2\",weight:\"600\"},{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/1ZFS7N918ojhhd0nQWdj3jz4w.woff2\",weight:\"600\"},{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/A0Wcc7NgXMjUuFdquHDrIZpzZw0.woff2\",weight:\"600\"}]}],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerujCXJ18XM\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\",\"framerIntrinsicHeight\":\"40\",\"framerImmutableVariables\":\"true\",\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicWidth\":\"240\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"e5uGPMCIQ\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"nctpPEqJV\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"Wn9vSg0qj\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"ZlH5MqgUb\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"I9CVWH2Br\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"FZOppKxCT\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerDisplayContentsDiv\":\"false\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./ujCXJ18XM.map", "// Generated by Framer (38f2e7f)\nimport{jsx as _jsx,jsxs as _jsxs,Fragment as _Fragment}from\"react/jsx-runtime\";import{addFonts,ComponentViewportProvider,Container,cx,FormContainer,FormPlainTextInput,GeneratedComponentContext,getFonts,getFontsFromSharedStyle,getLoadingLazyAtYPosition,Image,Link,PropertyOverrides,RichText,useCustomCursors,useHydratedBreakpointVariants,useLocaleInfo,useRouteElementId,withCSS,withFX,withOptimizedAppearEffect}from\"framer\";import{LayoutGroup,motion}from\"framer-motion\";import*as React from\"react\";import Ticker from\"https://framerusercontent.com/modules/B2xAlJLcN0gOnt11mSPw/XVUmpmPn1EPL0dzocT35/Ticker.js\";import{Youtube as YouTube}from\"https://framerusercontent.com/modules/NEd4VmDdsxM3StIUbddO/bZxrMUxBPAhoXlARkK9C/YouTube.js\";import{Icon as Iconoir}from\"https://framerusercontent.com/modules/zL9598C4KbEbqUGvSR14/rI8sPHpnG9XGcCPc0vU4/Iconoir.js\";import CalendlyPanel from\"#framer/local/canvasComponent/Fjx9tIbfY/Fjx9tIbfY.js\";import GlobalFooter from\"#framer/local/canvasComponent/gNLnzMjVf/gNLnzMjVf.js\";import NavbarLogoDark from\"#framer/local/canvasComponent/nq2WHBAnF/nq2WHBAnF.js\";import Button from\"#framer/local/canvasComponent/ujCXJ18XM/ujCXJ18XM.js\";import*as sharedStyle5 from\"#framer/local/css/bkiSbPBO3/bkiSbPBO3.js\";import*as sharedStyle from\"#framer/local/css/M9AvGgMX2/M9AvGgMX2.js\";import*as sharedStyle3 from\"#framer/local/css/UyqvUHH7i/UyqvUHH7i.js\";import*as sharedStyle1 from\"#framer/local/css/YAOxsr7A7/YAOxsr7A7.js\";import*as sharedStyle2 from\"#framer/local/css/YrNxkH0xL/YrNxkH0xL.js\";import*as sharedStyle4 from\"#framer/local/css/ysX3jk8rR/ysX3jk8rR.js\";import*as sharedStyle6 from\"#framer/local/css/Z9f0hBdSU/Z9f0hBdSU.js\";import metadataProvider from\"#framer/local/webPageMetadata/gl_MEdXSR/gl_MEdXSR.js\";const NavbarLogoDarkFonts=getFonts(NavbarLogoDark);const RichTextWithOptimizedAppearEffect=withOptimizedAppearEffect(RichText);const YouTubeFonts=getFonts(YouTube);const ImageWithOptimizedAppearEffect=withOptimizedAppearEffect(Image);const MotionDivWithOptimizedAppearEffect=withOptimizedAppearEffect(motion.div);const RichTextWithFX=withFX(RichText);const MotionDivWithFX=withFX(motion.div);const IconoirFonts=getFonts(Iconoir);const TickerFonts=getFonts(Ticker);const CalendlyPanelFonts=getFonts(CalendlyPanel);const ButtonFonts=getFonts(Button);const GlobalFooterFonts=getFonts(GlobalFooter);const breakpoints={AMSVeVGk9:\"(min-width: 810px) and (max-width: 1199px)\",noFSBU22B:\"(min-width: 1200px)\",QvWdiI_4X:\"(max-width: 809px)\"};const isBrowser=()=>typeof document!==\"undefined\";const serializationHash=\"framer-AkSps\";const variantClassNames={AMSVeVGk9:\"framer-v-873zg4\",noFSBU22B:\"framer-v-mh5p2l\",QvWdiI_4X:\"framer-v-14k275\"};const transition1={damping:40,delay:.2,mass:1,stiffness:200,type:\"spring\"};const animation={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition1,x:0,y:0};const animation1={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:0,y:160};const transition2={damping:30,delay:.2,mass:1,stiffness:100,type:\"spring\"};const animation2={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition2,x:0,y:0};const animation3={opacity:.001,rotate:0,rotateX:40,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:0,y:0};const animation4={opacity:.001,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:0,y:100};const animation5={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:0,y:100};const transition3={damping:80,delay:.1,mass:1,stiffness:400,type:\"spring\"};const animation6={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition3,x:0,y:100};const animation7={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:0,y:80};const transition4={damping:40,delay:0,mass:1,stiffness:200,type:\"spring\"};const animation8={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition4,x:0,y:80};const transformTemplate1=(_,t)=>`translate(-50%, -50%) ${t}`;const formVariants=(form,variants,currentVariant)=>{switch(form.state){case\"success\":var _variants_success;return(_variants_success=variants.success)!==null&&_variants_success!==void 0?_variants_success:currentVariant;case\"pending\":var _variants_pending;return(_variants_pending=variants.pending)!==null&&_variants_pending!==void 0?_variants_pending:currentVariant;case\"error\":var _variants_error;return(_variants_error=variants.error)!==null&&_variants_error!==void 0?_variants_error:currentVariant;case\"incomplete\":var _variants_incomplete;return(_variants_incomplete=variants.incomplete)!==null&&_variants_incomplete!==void 0?_variants_incomplete:currentVariant;}};const metadata=metadataProvider();const humanReadableVariantMap={Desktop:\"noFSBU22B\",Phone:\"QvWdiI_4X\",Tablet:\"AMSVeVGk9\"};const getProps=({height,id,width,...props})=>{var _humanReadableVariantMap_props_variant,_ref;return{...props,variant:(_ref=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref!==void 0?_ref:\"noFSBU22B\"};};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,...restProps}=getProps(props);React.useEffect(()=>{const metadata1=metadataProvider(undefined,activeLocale);if(metadata1.robots){let robotsTag=document.querySelector('meta[name=\"robots\"]');if(robotsTag){robotsTag.setAttribute(\"content\",metadata1.robots);}else{robotsTag=document.createElement(\"meta\");robotsTag.setAttribute(\"name\",\"robots\");robotsTag.setAttribute(\"content\",metadata1.robots);document.head.appendChild(robotsTag);}}},[undefined,activeLocale]);React.useInsertionEffect(()=>{const metadata1=metadataProvider(undefined,activeLocale);document.title=metadata1.title||\"\";if(metadata1.viewport){var _document_querySelector;(_document_querySelector=document.querySelector('meta[name=\"viewport\"]'))===null||_document_querySelector===void 0?void 0:_document_querySelector.setAttribute(\"content\",metadata1.viewport);}const bodyCls=metadata1.bodyClassName;if(bodyCls){const body=document.body;body.classList.forEach(c=>c.startsWith(\"framer-body-\")&&body.classList.remove(c));body.classList.add(`${metadata1.bodyClassName}-framer-AkSps`);}return()=>{if(bodyCls)document.body.classList.remove(`${metadata1.bodyClassName}-framer-AkSps`);};},[undefined,activeLocale]);const[baseVariant,hydratedBaseVariant]=useHydratedBreakpointVariants(variant,breakpoints,false);const gestureVariant=undefined;const ref1=React.useRef(null);const id=useRouteElementId(\"thPFeRZ9c\");const ref2=React.useRef(null);const id1=useRouteElementId(\"qheS4SG0W\");const ref3=React.useRef(null);const defaultLayoutId=React.useId();const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className,sharedStyle2.className,sharedStyle3.className,sharedStyle4.className,sharedStyle5.className,sharedStyle6.className];useCustomCursors({});return /*#__PURE__*/_jsx(GeneratedComponentContext.Provider,{value:{primaryVariantId:\"noFSBU22B\",variantClassNames},children:/*#__PURE__*/_jsxs(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:[/*#__PURE__*/_jsxs(motion.div,{...restProps,className:cx(serializationHash,...sharedStyleClassNames,\"framer-mh5p2l\",className),ref:ref!==null&&ref!==void 0?ref:ref1,style:{...style},children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{AMSVeVGk9:{y:0},QvWdiI_4X:{y:0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:80,width:\"100vw\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-d721y-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{AMSVeVGk9:{variant:\"DxLxkf91x\"},QvWdiI_4X:{variant:\"TkMS2EVS0\"}},children:/*#__PURE__*/_jsx(NavbarLogoDark,{height:\"100%\",id:\"uBH1qZmNx\",layoutId:\"uBH1qZmNx\",style:{width:\"100%\"},variant:\"P5rtPxF8V\",width:\"100%\"})})})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1ictinb\",\"data-framer-name\":\"Hero\",name:\"Hero\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-lwlkr5\",\"data-framer-name\":\"Hero\",name:\"Hero\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-ojoshh\",\"data-framer-name\":\"Top\",name:\"Top\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1ne18jd\",\"data-framer-name\":\"Text\",name:\"Text\",children:[/*#__PURE__*/_jsx(RichTextWithOptimizedAppearEffect,{__fromCanvasComponent:true,animate:animation,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{className:\"framer-styles-preset-6a45jm\",\"data-styles-preset\":\"M9AvGgMX2\",children:\"lean category design\"})}),className:\"framer-r8p1d1\",\"data-framer-appear-id\":\"r8p1d1\",\"data-framer-name\":\"Title\",fonts:[\"Inter\"],initial:animation1,name:\"Title\",optimized:true,style:{transformPerspective:1200},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichTextWithOptimizedAppearEffect,{__fromCanvasComponent:true,animate:animation,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-qrwt8\",\"data-styles-preset\":\"YAOxsr7A7\",children:\"rapid resolution for category design dilemmas\"})}),className:\"framer-rb39mh\",\"data-framer-appear-id\":\"rb39mh\",\"data-framer-name\":\"Sub heading\",fonts:[\"Inter\"],initial:animation1,name:\"Sub heading\",optimized:true,style:{transformPerspective:1200},verticalAlignment:\"top\",withExternalLayout:true})]})})}),/*#__PURE__*/_jsx(ImageWithOptimizedAppearEffect,{animate:animation2,background:{alt:\"\",fit:\"fill\",intrinsicHeight:720,intrinsicWidth:1280},className:\"framer-pwv9pv\",\"data-framer-appear-id\":\"pwv9pv\",\"data-framer-name\":\"Video\",initial:animation3,name:\"Video\",optimized:true,style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-33wmrg-container\",children:/*#__PURE__*/_jsx(YouTube,{borderRadius:0,bottomLeftRadius:0,bottomRightRadius:0,height:\"100%\",id:\"UwRUYr798\",isMixedBorderRadius:false,isRed:true,layoutId:\"UwRUYr798\",play:\"Off\",shouldMute:true,style:{height:\"100%\",width:\"100%\"},thumbnail:\"Medium Quality\",topLeftRadius:0,topRightRadius:0,url:\"https://youtu.be/vpsCtas-X1U\",width:\"100%\"})})})}),/*#__PURE__*/_jsxs(MotionDivWithOptimizedAppearEffect,{animate:animation2,className:\"framer-nkvfnk\",\"data-framer-appear-id\":\"nkvfnk\",initial:animation4,optimized:true,style:{transformPerspective:1200},children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{className:\"framer-styles-preset-7uj90a\",\"data-styles-preset\":\"YrNxkH0xL\",style:{\"--framer-text-alignment\":\"center\"},children:\"Get started today\"})}),className:\"framer-qukhkl\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-yuweq6\",children:[/*#__PURE__*/_jsx(Link,{href:{hash:\":thPFeRZ9c\",webPageId:\"gl_MEdXSR\"},openInNewTab:false,smoothScroll:true,children:/*#__PURE__*/_jsx(\"a\",{className:\"framer-1hg1a4w framer-19cgo92\",\"data-border\":true,\"data-framer-name\":\"Book Button\",name:\"Book Button\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNjAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"0px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-967e661a-1124-44da-a257-eba042cc6cc4, rgb(255, 255, 255))\"},children:\"Book a Chat\"})}),className:\"framer-q8bg5l\",fonts:[\"GF;Inter-600\"],verticalAlignment:\"top\",withExternalLayout:true})})}),/*#__PURE__*/_jsx(Link,{href:{hash:\":qheS4SG0W\",webPageId:\"gl_MEdXSR\"},openInNewTab:false,smoothScroll:true,children:/*#__PURE__*/_jsx(\"a\",{className:\"framer-1mpv08n framer-19cgo92\",\"data-framer-name\":\"Email Course Button\",name:\"Email Course Button\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNzAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"700\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-3a75a011-ab94-4242-9a2e-6326b82ad1f2, rgb(246, 253, 170))\"},children:\"Free Email Course\"})}),className:\"framer-ymjo7f\",fonts:[\"GF;Inter-700\"],verticalAlignment:\"top\",withExternalLayout:true})})})]})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1j53vem\",\"data-framer-name\":\"The Problem\",name:\"The Problem\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-11it4s1\",\"data-framer-name\":\"Left\",name:\"Left\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-162qtoj\",\"data-framer-name\":\"Title\",name:\"Title\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{QvWdiI_4X:{__framer__spring:{damping:90,delay:0,duration:.3,ease:[.44,0,.56,1],mass:1,stiffness:500,type:\"spring\"},__framer__styleTransformEffectEnabled:true,__framer__transformTargets:[{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:40}},{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0}}],__framer__transformTrigger:\"onInView\",__perspectiveFX:false,__targetOpacity:1,style:{transformPerspective:1200}}},children:/*#__PURE__*/_jsx(RichTextWithFX,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-tn7ewk\",\"data-styles-preset\":\"UyqvUHH7i\",style:{\"--framer-text-color\":\"var(--token-967e661a-1124-44da-a257-eba042cc6cc4, rgb(255, 255, 255))\"},children:\"why Lean?\"})}),className:\"framer-u8dman\",\"data-framer-name\":\"Text\",fonts:[\"Inter\"],name:\"Text\",verticalAlignment:\"top\",withExternalLayout:true})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{QvWdiI_4X:{__framer__transformTargets:[{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:10}},{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0}}]}},children:/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__spring:{damping:60,delay:0,duration:.3,ease:[.44,0,.56,1],mass:1,stiffness:300,type:\"spring\"},__framer__styleTransformEffectEnabled:true,__framer__transformTargets:[{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:50}},{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0}}],__framer__transformTrigger:\"onInView\",__perspectiveFX:false,__targetOpacity:1,className:\"framer-1lhlpgq\",\"data-framer-name\":\"Right\",name:\"Right\",style:{transformPerspective:1200},children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-ocgz3a\",\"data-styles-preset\":\"ysX3jk8rR\",children:\"You want to be categorically different, escape price competition, and change how the market thinks.\"})}),className:\"framer-bry7t\",\"data-framer-name\":\"Line 1\",fonts:[\"Inter\"],name:\"Line 1\",verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{AMSVeVGk9:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-ocgz3a\",\"data-styles-preset\":\"ysX3jk8rR\",children:\"But Category Design is hard to solve on your own, and most consultancies take months and charge $100k or more.\"})}),fonts:[\"Inter\"]},QvWdiI_4X:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-ocgz3a\",\"data-styles-preset\":\"ysX3jk8rR\",children:\"But Category Design is hard to solve on your own, and most consultancies take months and charge $100k or more.\"})}),fonts:[\"Inter\"]}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW5zdHJ1bWVudCBTYW5zLTUwMA==\",\"--framer-font-family\":'\"Instrument Sans\", \"Instrument Sans Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"0.4px\",\"--framer-line-height\":\"34px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-967e661a-1124-44da-a257-eba042cc6cc4, rgb(255, 255, 255))\"},children:\"But Category Design is hard to solve on your own, and most consultancies take months and charge $100k or more.\"})}),className:\"framer-1vo02nn\",\"data-framer-name\":\"Line 2\",fonts:[\"GF;Instrument Sans-500\"],name:\"Line 2\",verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{AMSVeVGk9:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-ocgz3a\",\"data-styles-preset\":\"ysX3jk8rR\",children:\"You need a Category Design process that's rapid, efficient, and testable.\"})}),fonts:[\"Inter\"]},QvWdiI_4X:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-ocgz3a\",\"data-styles-preset\":\"ysX3jk8rR\",children:\"You need a Category Design process that's rapid, efficient, and testable.\"})}),fonts:[\"Inter\"]}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW5zdHJ1bWVudCBTYW5zLTUwMA==\",\"--framer-font-family\":'\"Instrument Sans\", \"Instrument Sans Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"0.4px\",\"--framer-line-height\":\"34px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-967e661a-1124-44da-a257-eba042cc6cc4, rgb(255, 255, 255))\"},children:\"You need a Category Design process that's rapid, efficient, and testable.\"})}),className:\"framer-oxk1ts\",\"data-framer-name\":\"Line 2\",fonts:[\"GF;Instrument Sans-500\"],name:\"Line 2\",verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{QvWdiI_4X:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"R0Y7SW5zdHJ1bWVudCBTYW5zLTcwMA==\",\"--framer-font-family\":'\"Instrument Sans\", \"Instrument Sans Placeholder\", sans-serif',\"--framer-font-size\":\"28px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"0.4px\",\"--framer-line-height\":\"32px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-967e661a-1124-44da-a257-eba042cc6cc4, rgb(255, 255, 255))\"},children:[/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"R0Y7SW5zdHJ1bWVudCBTYW5zLXJlZ3VsYXI=\",\"--framer-font-weight\":\"400\"},children:\"Welcome to  \"}),/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"R0Y7SW5zdHJ1bWVudCBTYW5zLTcwMGl0YWxpYw==\",\"--framer-font-style\":\"italic\",\"--framer-text-color\":\"var(--token-3a75a011-ab94-4242-9a2e-6326b82ad1f2, rgb(246, 253, 170))\"},children:\"LEAN\"}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-3a75a011-ab94-4242-9a2e-6326b82ad1f2, rgb(246, 253, 170))\"},children:\" \"}),\"Category Design\"]})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"R0Y7SW5zdHJ1bWVudCBTYW5zLTcwMA==\",\"--framer-font-family\":'\"Instrument Sans\", \"Instrument Sans Placeholder\", sans-serif',\"--framer-font-size\":\"28px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"0.4px\",\"--framer-line-height\":\"34px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-967e661a-1124-44da-a257-eba042cc6cc4, rgb(255, 255, 255))\"},children:[/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"R0Y7SW5zdHJ1bWVudCBTYW5zLXJlZ3VsYXI=\",\"--framer-font-weight\":\"400\"},children:\"Welcome to  \"}),/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"R0Y7SW5zdHJ1bWVudCBTYW5zLTcwMGl0YWxpYw==\",\"--framer-font-style\":\"italic\",\"--framer-text-color\":\"var(--token-3a75a011-ab94-4242-9a2e-6326b82ad1f2, rgb(246, 253, 170))\"},children:\"LEAN\"}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-3a75a011-ab94-4242-9a2e-6326b82ad1f2, rgb(246, 253, 170))\"},children:\" \"}),\"Category Design\"]})}),className:\"framer-um7jq8\",\"data-framer-name\":\"Line 2\",fonts:[\"GF;Instrument Sans-700\",\"GF;Instrument Sans-regular\",\"GF;Instrument Sans-700italic\"],name:\"Line 2\",verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(Link,{href:\"https://open.substack.com/pub/tractiondesign/p/introducing-lean-category-design?r=g8kns&utm_campaign=post&utm_medium=web&showWelcomeOnShare=true\",openInNewTab:true,children:/*#__PURE__*/_jsx(\"a\",{className:\"framer-zbolhu framer-19cgo92\",\"data-framer-name\":\"Button\",name:\"Button\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNzAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"700\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-82de99b0-128a-4553-b348-bf7c3ce89910, rgb(0, 0, 0))\"},children:\"Read more\"})}),className:\"framer-1pjb1j3\",fonts:[\"GF;Inter-700\"],verticalAlignment:\"top\",withExternalLayout:true})})})]})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-ynsfjh\",\"data-framer-name\":\"Superpower\",name:\"Superpower\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-83fica\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-129n9sy\",\"data-framer-name\":\"Content\",name:\"Content\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-tn7ewk\",\"data-styles-preset\":\"UyqvUHH7i\",children:\"CRACK YOUR CATEGORY In 2-3 Weeks\"})}),className:\"framer-xbmnh2\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{className:\"framer-styles-preset-ocgz3a\",\"data-styles-preset\":\"ysX3jk8rR\",style:{\"--framer-text-color\":\"var(--token-914a93db-2efb-455a-b85b-0dd3322c9700, rgb(97, 93, 90))\"},children:[\"This unique method applies the 80-20 rule to create a \",/*#__PURE__*/_jsx(\"strong\",{children:\"testable category prototype\"}),\", in just \",/*#__PURE__*/_jsx(\"strong\",{children:\"a few sessions\"}),\", for just \",/*#__PURE__*/_jsx(\"strong\",{children:\"a few grand\"}),\".\"]})}),className:\"framer-zk3fmf\",fonts:[\"Inter\",\"Inter-Bold\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-2g9cs1\",children:/*#__PURE__*/_jsx(Link,{href:{hash:\":thPFeRZ9c\",webPageId:\"gl_MEdXSR\"},openInNewTab:false,children:/*#__PURE__*/_jsx(\"a\",{className:\"framer-1iq1y22 framer-19cgo92\",\"data-framer-name\":\"Button\",name:\"Button\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNzAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"700\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Book a chat to learn more\"})}),className:\"framer-err381\",fonts:[\"GF;Inter-700\"],verticalAlignment:\"top\",withExternalLayout:true})})})})]})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{AMSVeVGk9:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:720,intrinsicWidth:960,loading:getLoadingLazyAtYPosition(2184.8),pixelHeight:1e3,pixelWidth:1e3,sizes:\"max(50vw, 1px)\",src:\"https://framerusercontent.com/images/33gwSO0eVnArg7JCL85g3XlByPA.png\",srcSet:\"https://framerusercontent.com/images/33gwSO0eVnArg7JCL85g3XlByPA.png?scale-down-to=512 512w,https://framerusercontent.com/images/33gwSO0eVnArg7JCL85g3XlByPA.png 1000w\"}},QvWdiI_4X:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:720,intrinsicWidth:960,loading:getLoadingLazyAtYPosition(1996),pixelHeight:1e3,pixelWidth:1e3,sizes:\"100vw\",src:\"https://framerusercontent.com/images/33gwSO0eVnArg7JCL85g3XlByPA.png\",srcSet:\"https://framerusercontent.com/images/33gwSO0eVnArg7JCL85g3XlByPA.png?scale-down-to=512 512w,https://framerusercontent.com/images/33gwSO0eVnArg7JCL85g3XlByPA.png 1000w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:720,intrinsicWidth:960,pixelHeight:1e3,pixelWidth:1e3,sizes:\"max(50vw, 1px)\",src:\"https://framerusercontent.com/images/33gwSO0eVnArg7JCL85g3XlByPA.png\",srcSet:\"https://framerusercontent.com/images/33gwSO0eVnArg7JCL85g3XlByPA.png?scale-down-to=512 512w,https://framerusercontent.com/images/33gwSO0eVnArg7JCL85g3XlByPA.png 1000w\"},className:\"framer-pu99er\",\"data-framer-name\":\"Image\",name:\"Image\"})})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1rszne8\",\"data-framer-name\":\"How it works\",name:\"How it works\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-rx20vu\",\"data-framer-name\":\"Heading\",name:\"Heading\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1f5l6ep\",\"data-framer-name\":\"Line 1\",name:\"Line 1\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{QvWdiI_4X:{__framer__spring:{damping:90,delay:0,duration:.3,ease:[.44,0,.56,1],mass:1,stiffness:500,type:\"spring\"},__framer__transformTargets:[{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:40}},{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0}}],children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"R0Y7SW5zdHJ1bWVudCBTYW5zLTcwMA==\",\"--framer-font-family\":'\"Instrument Sans\", \"Instrument Sans Placeholder\", sans-serif',\"--framer-font-size\":\"40px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-1.3px\",\"--framer-line-height\":\"30px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(29, 29, 31)\",\"--framer-text-transform\":\"uppercase\"},children:\"HOW IT WORKS\"})})}},children:/*#__PURE__*/_jsx(RichTextWithFX,{__framer__spring:{damping:60,delay:0,duration:.3,ease:[.44,0,.56,1],mass:1.5,stiffness:300,type:\"spring\"},__framer__styleTransformEffectEnabled:true,__framer__transformTargets:[{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:100}},{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0}}],__framer__transformTrigger:\"onInView\",__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"R0Y7SW5zdHJ1bWVudCBTYW5zLTcwMA==\",\"--framer-font-family\":'\"Instrument Sans\", \"Instrument Sans Placeholder\", sans-serif',\"--framer-font-size\":\"90px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-2.3px\",\"--framer-line-height\":\"80px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(29, 29, 31)\",\"--framer-text-transform\":\"uppercase\"},children:\"HOW IT WORKS\"})}),className:\"framer-143eg3z\",\"data-framer-name\":\"Text\",fonts:[\"GF;Instrument Sans-700\"],name:\"Text\",style:{transformPerspective:1200},verticalAlignment:\"top\",withExternalLayout:true})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-voblb1\",\"data-framer-name\":\"Line 2\",name:\"Line 2\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{QvWdiI_4X:{__framer__spring:{damping:90,delay:0,duration:.3,ease:[.44,0,.56,1],mass:1,stiffness:500,type:\"spring\"},__framer__transformTargets:[{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:40}},{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0}}]}},children:/*#__PURE__*/_jsx(RichTextWithFX,{__framer__spring:{damping:60,delay:0,duration:.3,ease:[.44,0,.56,1],mass:1.5,stiffness:300,type:\"spring\"},__framer__styleTransformEffectEnabled:true,__framer__transformTargets:[{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:100}},{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0}}],__framer__transformTrigger:\"onInView\",__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-qrwt8\",\"data-styles-preset\":\"YAOxsr7A7\",style:{\"--framer-text-alignment\":\"left\"},children:\"The category prototype METHOD\"})}),className:\"framer-rih03x\",\"data-framer-name\":\"Text\",fonts:[\"Inter\"],name:\"Text\",style:{transformPerspective:1200},verticalAlignment:\"top\",withExternalLayout:true})})})]})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-obzs2q\",\"data-framer-name\":\"Features\",name:\"Features\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-ooo3vq\",\"data-framer-name\":\"Features\",name:\"Features\",children:/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition3},__framer__animateOnce:true,__framer__enter:animation5,__framer__exit:animation6,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-19xqbvh\",style:{transformPerspective:1200},children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-8p00k\",\"data-framer-name\":\"Content\",name:\"Content\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-qrwt8\",\"data-styles-preset\":\"YAOxsr7A7\",children:\"A proven process\"})}),className:\"framer-1demh37\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-14fmqzq\",\"data-styles-preset\":\"bkiSbPBO3\",style:{\"--framer-text-color\":\"var(--token-914a93db-2efb-455a-b85b-0dd3322c9700, rgb(97, 93, 90))\"},children:\"Most category design efforts fail because they jump straight to choosing a category name. \"}),/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-14fmqzq\",\"data-styles-preset\":\"bkiSbPBO3\",children:\"But that's just the tip of the iceberg.\"}),/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-14fmqzq\",\"data-styles-preset\":\"bkiSbPBO3\",children:\"Over 8 years of practice, I've learned that the category name is an expression of your unique insights and point of view.\"}),/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-14fmqzq\",\"data-styles-preset\":\"bkiSbPBO3\",children:\"Together we work through why you do what you do and why you are different, then the category names itself.\"}),/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-14fmqzq\",\"data-styles-preset\":\"bkiSbPBO3\",children:\"We output a messaging grid that resolves how to language your category, which product superpowers to feature, and crucially, what not to say.\"})]}),className:\"framer-sjv8r6\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{AMSVeVGk9:{background:{alt:\"Iceberg visual of Lean Category Design process. Adapted from https://www.freepik.com/free-vector/iceberg-illustration-infographic-template_8536174.htm\",fit:\"fill\",intrinsicHeight:720,intrinsicWidth:960,loading:getLoadingLazyAtYPosition(3184.3),pixelHeight:500,pixelWidth:500,src:\"https://framerusercontent.com/images/OWqOS6pvfGbGMJL7Th3Tm8ixoQ.png\"}},QvWdiI_4X:{background:{alt:\"Iceberg visual of Lean Category Design process. Adapted from https://www.freepik.com/free-vector/iceberg-illustration-infographic-template_8536174.htm\",fit:\"fill\",intrinsicHeight:720,intrinsicWidth:960,loading:getLoadingLazyAtYPosition(3809),pixelHeight:500,pixelWidth:500,src:\"https://framerusercontent.com/images/OWqOS6pvfGbGMJL7Th3Tm8ixoQ.png\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"Iceberg visual of Lean Category Design process. Adapted from https://www.freepik.com/free-vector/iceberg-illustration-infographic-template_8536174.htm\",fit:\"fill\",intrinsicHeight:720,intrinsicWidth:960,pixelHeight:500,pixelWidth:500,src:\"https://framerusercontent.com/images/OWqOS6pvfGbGMJL7Th3Tm8ixoQ.png\"},className:\"framer-1uubtyp\",\"data-framer-name\":\"Image\",name:\"Image\"})})]})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-11t43ly\",\"data-framer-name\":\"How it works\",name:\"How it works\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-t0m58f\",\"data-framer-name\":\"Cards\",name:\"Cards\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{AMSVeVGk9:{__framer__styleAppearEffectEnabled:undefined,style:{}},QvWdiI_4X:{__framer__styleAppearEffectEnabled:undefined,style:{}}},children:/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition4},__framer__animateOnce:true,__framer__enter:animation7,__framer__exit:animation8,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1g8ao0t\",\"data-framer-name\":\"1, 2 & 3\",name:\"1, 2 & 3\",style:{transformPerspective:1200},children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{QvWdiI_4X:{__framer__spring:{damping:60,delay:0,duration:.3,ease:[.44,0,.56,1],mass:1,stiffness:300,type:\"spring\"},__framer__styleTransformEffectEnabled:true,__framer__transformTargets:[{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:50}},{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0}}],__framer__transformTrigger:\"onInView\",__perspectiveFX:false,__targetOpacity:1,style:{transformPerspective:1200}}},children:/*#__PURE__*/_jsxs(MotionDivWithFX,{className:\"framer-e1gw2t\",\"data-border\":true,\"data-framer-name\":\"1\",name:\"1\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-2mmgl0\",\"data-framer-name\":\"Text\",name:\"Text\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1h5w21o\",\"data-framer-name\":\"Top\",name:\"Top\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW5zdHJ1bWVudCBTYW5zLTcwMA==\",\"--framer-font-family\":'\"Instrument Sans\", \"Instrument Sans Placeholder\", sans-serif',\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"2.4px\",\"--framer-line-height\":\"16px\",\"--framer-text-color\":\"rgb(29, 29, 31)\",\"--framer-text-transform\":\"uppercase\"},children:\"(1)\"})}),className:\"framer-1wrew30\",\"data-framer-name\":\"Line 1\",fonts:[\"GF;Instrument Sans-700\"],name:\"Line 1\",verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW5zdHJ1bWVudCBTYW5zLTcwMA==\",\"--framer-font-family\":'\"Instrument Sans\", \"Instrument Sans Placeholder\", sans-serif',\"--framer-font-size\":\"30px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.2px\",\"--framer-line-height\":\"26px\",\"--framer-text-color\":\"rgb(29, 29, 31)\",\"--framer-text-transform\":\"uppercase\"},children:\"PURPOSE\"})}),className:\"framer-nwcylz\",\"data-framer-name\":\"Line 2\",fonts:[\"GF;Instrument Sans-700\"],name:\"Line 2\",verticalAlignment:\"top\",withExternalLayout:true})]})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{QvWdiI_4X:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXIgVGlnaHQtNTAw\",\"--framer-font-family\":'\"Inter Tight\", \"Inter Tight Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"0.5px\",\"--framer-line-height\":\"31px\",\"--framer-text-color\":\"rgba(29, 29, 31, 0.7)\"},children:\"Craft intuitive navigation that makes features accessible. Choose layouts and graphics that fit your personality.\"})}),fonts:[\"GF;Inter Tight-500\"]}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-g7z6st\",\"data-styles-preset\":\"Z9f0hBdSU\",children:\"We discover and synthesize your vision, mission, founding anecdote, and founding insights - problem, customer, and technological.\"})}),className:\"framer-1fdjroa\",\"data-framer-name\":\"Body Text\",fonts:[\"Inter\"],name:\"Body Text\",verticalAlignment:\"top\",withExternalLayout:true})})]})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{QvWdiI_4X:{__framer__spring:{damping:60,delay:0,duration:.3,ease:[.44,0,.56,1],mass:1,stiffness:300,type:\"spring\"},__framer__styleTransformEffectEnabled:true,__framer__transformTargets:[{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:50}},{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0}}],__framer__transformTrigger:\"onInView\",__perspectiveFX:false,__targetOpacity:1,style:{transformPerspective:1200}}},children:/*#__PURE__*/_jsxs(MotionDivWithFX,{className:\"framer-1hllesi\",\"data-border\":true,\"data-framer-name\":\"2\",name:\"2\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-ea06rr\",\"data-framer-name\":\"Text\",name:\"Text\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1tw193j\",\"data-framer-name\":\"Top\",name:\"Top\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW5zdHJ1bWVudCBTYW5zLTcwMA==\",\"--framer-font-family\":'\"Instrument Sans\", \"Instrument Sans Placeholder\", sans-serif',\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"2.4px\",\"--framer-line-height\":\"16px\",\"--framer-text-color\":\"rgb(29, 29, 31)\",\"--framer-text-transform\":\"uppercase\"},children:\"(2)\"})}),className:\"framer-sser7h\",\"data-framer-name\":\"Line 1\",fonts:[\"GF;Instrument Sans-700\"],name:\"Line 1\",verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW5zdHJ1bWVudCBTYW5zLTcwMA==\",\"--framer-font-family\":'\"Instrument Sans\", \"Instrument Sans Placeholder\", sans-serif',\"--framer-font-size\":\"30px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.2px\",\"--framer-line-height\":\"26px\",\"--framer-text-color\":\"rgb(29, 29, 31)\",\"--framer-text-transform\":\"uppercase\"},children:\"3P ANALYSIS\"})}),className:\"framer-1f1rjcj\",\"data-framer-name\":\"Line 2\",fonts:[\"GF;Instrument Sans-700\"],name:\"Line 2\",verticalAlignment:\"top\",withExternalLayout:true})]})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{className:\"framer-styles-preset-g7z6st\",\"data-styles-preset\":\"Z9f0hBdSU\",children:[\"We dive deeper into your \",/*#__PURE__*/_jsx(\"strong\",{children:\"problem\"}),\", \",/*#__PURE__*/_jsx(\"strong\",{children:\"persona\"}),\", and \",/*#__PURE__*/_jsx(\"strong\",{children:\"product\"}),\" insights. We extract first-principle insights and technical truths.\"]})}),className:\"framer-12mjxa2\",\"data-framer-name\":\"Body Text\",fonts:[\"Inter\",\"Inter-Bold\"],name:\"Body Text\",verticalAlignment:\"top\",withExternalLayout:true})]})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{QvWdiI_4X:{__framer__spring:{damping:60,delay:0,duration:.3,ease:[.44,0,.56,1],mass:1,stiffness:300,type:\"spring\"},__framer__styleTransformEffectEnabled:true,__framer__transformTargets:[{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:50}},{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0}}],__framer__transformTrigger:\"onInView\",__perspectiveFX:false,__targetOpacity:1,style:{transformPerspective:1200}}},children:/*#__PURE__*/_jsxs(MotionDivWithFX,{className:\"framer-z8srw5\",\"data-border\":true,\"data-framer-name\":\"3\",name:\"3\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1lisoij\",\"data-framer-name\":\"Text\",name:\"Text\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1rs7acz\",\"data-framer-name\":\"Top\",name:\"Top\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW5zdHJ1bWVudCBTYW5zLTcwMA==\",\"--framer-font-family\":'\"Instrument Sans\", \"Instrument Sans Placeholder\", sans-serif',\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"2.4px\",\"--framer-line-height\":\"16px\",\"--framer-text-color\":\"rgb(29, 29, 31)\",\"--framer-text-transform\":\"uppercase\"},children:\"(3)\"})}),className:\"framer-f6xq2c\",\"data-framer-name\":\"Line 1\",fonts:[\"GF;Instrument Sans-700\"],name:\"Line 1\",verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW5zdHJ1bWVudCBTYW5zLTcwMA==\",\"--framer-font-family\":'\"Instrument Sans\", \"Instrument Sans Placeholder\", sans-serif',\"--framer-font-size\":\"30px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.2px\",\"--framer-line-height\":\"26px\",\"--framer-text-color\":\"rgb(29, 29, 31)\",\"--framer-text-transform\":\"uppercase\"},children:\"POint of View\"})}),className:\"framer-jytvva\",\"data-framer-name\":\"Line 2\",fonts:[\"GF;Instrument Sans-700\"],name:\"Line 2\",verticalAlignment:\"top\",withExternalLayout:true})]})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{QvWdiI_4X:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXIgVGlnaHQtNTAw\",\"--framer-font-family\":'\"Inter Tight\", \"Inter Tight Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"0.5px\",\"--framer-line-height\":\"31px\",\"--framer-text-color\":\"rgba(29, 29, 31, 0.7)\"},children:[\"The most important part - we distill everything into a \",/*#__PURE__*/_jsx(\"strong\",{children:\"single contrarian POV\"}),\" and accompanying \",/*#__PURE__*/_jsx(\"strong\",{children:\"narrative\"}),\" that underpins differentiation.\"]})}),fonts:[\"GF;Inter Tight-500\",\"GF;Inter Tight-700\"]}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{className:\"framer-styles-preset-g7z6st\",\"data-styles-preset\":\"Z9f0hBdSU\",children:[\"The most important part - we distill everything into a \",/*#__PURE__*/_jsx(\"strong\",{children:\"single contrarian POV\"}),\" and accompanying \",/*#__PURE__*/_jsx(\"strong\",{children:\"narrative\"}),\" that underpins differentiation.\"]})}),className:\"framer-1d2zobr\",\"data-framer-name\":\"Body Text\",fonts:[\"Inter\",\"Inter-Bold\"],name:\"Body Text\",verticalAlignment:\"top\",withExternalLayout:true})})]})})]})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{AMSVeVGk9:{__framer__styleAppearEffectEnabled:undefined,style:{}},QvWdiI_4X:{__framer__styleAppearEffectEnabled:undefined,style:{}}},children:/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition4},__framer__animateOnce:true,__framer__enter:animation7,__framer__exit:animation8,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-2gem37\",\"data-framer-name\":\"4 & 5\",name:\"4 & 5\",style:{transformPerspective:1200},children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{QvWdiI_4X:{__framer__spring:{damping:60,delay:0,duration:.3,ease:[.44,0,.56,1],mass:1,stiffness:300,type:\"spring\"},__framer__styleTransformEffectEnabled:true,__framer__transformTargets:[{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:50}},{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0}}],__framer__transformTrigger:\"onInView\",__perspectiveFX:false,__targetOpacity:1,style:{transformPerspective:1200}}},children:/*#__PURE__*/_jsxs(MotionDivWithFX,{className:\"framer-fhx33x\",\"data-border\":true,\"data-framer-name\":\"4\",name:\"4\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-36h0rd\",\"data-framer-name\":\"Text\",name:\"Text\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1gbd5lg\",\"data-framer-name\":\"Top\",name:\"Top\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW5zdHJ1bWVudCBTYW5zLTcwMA==\",\"--framer-font-family\":'\"Instrument Sans\", \"Instrument Sans Placeholder\", sans-serif',\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"2.4px\",\"--framer-line-height\":\"16px\",\"--framer-text-color\":\"rgb(29, 29, 31)\",\"--framer-text-transform\":\"uppercase\"},children:\"(4)\"})}),className:\"framer-306wnw\",\"data-framer-name\":\"Top\",fonts:[\"GF;Instrument Sans-700\"],name:\"Top\",verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1ejvjit\",\"data-framer-name\":\"Bottom\",name:\"Bottom\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{QvWdiI_4X:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"R0Y7SW5zdHJ1bWVudCBTYW5zLTcwMA==\",\"--framer-font-family\":'\"Instrument Sans\", \"Instrument Sans Placeholder\", sans-serif',\"--framer-font-size\":\"30px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.2px\",\"--framer-line-height\":\"26px\",\"--framer-text-color\":\"rgb(29, 29, 31)\",\"--framer-text-transform\":\"uppercase\"},children:[\"CATEGORY \",/*#__PURE__*/_jsx(\"br\",{}),\"BISECTION\"]})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW5zdHJ1bWVudCBTYW5zLTcwMA==\",\"--framer-font-family\":'\"Instrument Sans\", \"Instrument Sans Placeholder\", sans-serif',\"--framer-font-size\":\"30px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.2px\",\"--framer-line-height\":\"26px\",\"--framer-text-color\":\"rgb(29, 29, 31)\",\"--framer-text-transform\":\"uppercase\"},children:\"CATEGORY BISECTION\"})}),className:\"framer-1j1n4g5\",\"data-framer-name\":\"Line 1\",fonts:[\"GF;Instrument Sans-700\"],name:\"Line 1\",verticalAlignment:\"top\",withExternalLayout:true})})})]})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{className:\"framer-styles-preset-g7z6st\",\"data-styles-preset\":\"Z9f0hBdSU\",children:[\"The POV bisects the entire market into just 2 categories of solution: Those that prove they agree with your POV (\",/*#__PURE__*/_jsx(\"strong\",{children:\"your category\"}),\") and those that prove they don't. (Anti-Category)\"]})}),className:\"framer-c3ucn1\",\"data-framer-name\":\"Body Text\",fonts:[\"Inter\",\"Inter-Bold\"],name:\"Body Text\",verticalAlignment:\"top\",withExternalLayout:true})]})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{QvWdiI_4X:{__framer__spring:{damping:60,delay:0,duration:.3,ease:[.44,0,.56,1],mass:1,stiffness:300,type:\"spring\"},__framer__styleTransformEffectEnabled:true,__framer__transformTargets:[{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:50}},{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0}}],__framer__transformTrigger:\"onInView\",__perspectiveFX:false,__targetOpacity:1,style:{transformPerspective:1200}}},children:/*#__PURE__*/_jsxs(MotionDivWithFX,{className:\"framer-105ffjr\",\"data-border\":true,\"data-framer-name\":\"5\",name:\"5\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-g6shb\",\"data-framer-name\":\"Top\",name:\"Top\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-4f0e50\",\"data-framer-name\":\"Text\",name:\"Text\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW5zdHJ1bWVudCBTYW5zLTcwMA==\",\"--framer-font-family\":'\"Instrument Sans\", \"Instrument Sans Placeholder\", sans-serif',\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"2.4px\",\"--framer-line-height\":\"16px\",\"--framer-text-color\":\"rgb(29, 29, 31)\",\"--framer-text-transform\":\"uppercase\"},children:\"(5)\"})}),className:\"framer-w9nz68\",\"data-framer-name\":\"Line 1\",fonts:[\"GF;Instrument Sans-700\"],name:\"Line 1\",verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{QvWdiI_4X:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"R0Y7SW5zdHJ1bWVudCBTYW5zLTcwMA==\",\"--framer-font-family\":'\"Instrument Sans\", \"Instrument Sans Placeholder\", sans-serif',\"--framer-font-size\":\"30px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.2px\",\"--framer-line-height\":\"26px\",\"--framer-text-color\":\"rgb(29, 29, 31)\",\"--framer-text-transform\":\"uppercase\"},children:[\"MESSAGING \",/*#__PURE__*/_jsx(\"br\",{}),\"HIERARCHY\"]})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW5zdHJ1bWVudCBTYW5zLTcwMA==\",\"--framer-font-family\":'\"Instrument Sans\", \"Instrument Sans Placeholder\", sans-serif',\"--framer-font-size\":\"30px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.2px\",\"--framer-line-height\":\"26px\",\"--framer-text-color\":\"rgb(29, 29, 31)\",\"--framer-text-transform\":\"uppercase\"},children:\"MESSAGING HIERARCHY\"})}),className:\"framer-178qf6m\",\"data-framer-name\":\"Line 2\",fonts:[\"GF;Instrument Sans-700\"],name:\"Line 2\",verticalAlignment:\"top\",withExternalLayout:true})})]})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-g7z6st\",\"data-styles-preset\":\"Z9f0hBdSU\",children:\"We transpose all decisions, languaging, and narratives into a messaging grid that ties everything together. We decide what we don't say, as well as what we do.\"})}),className:\"framer-vz3vw\",\"data-framer-name\":\"Body Text\",fonts:[\"Inter\"],name:\"Body Text\",verticalAlignment:\"top\",withExternalLayout:true})]})})]})})]})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-tksml3\",\"data-framer-name\":\"Modules\",name:\"Modules\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-51ccj1\",\"data-framer-name\":\"Left\",name:\"Left\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1ecawx8\",\"data-framer-name\":\"Title\",name:\"Title\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{AMSVeVGk9:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"R0Y7SW5zdHJ1bWVudCBTYW5zLTcwMA==\",\"--framer-font-family\":'\"Instrument Sans\", \"Instrument Sans Placeholder\", sans-serif',\"--framer-font-size\":\"50px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"49px\",\"--framer-text-color\":\"rgb(29, 29, 31)\",\"--framer-text-transform\":\"uppercase\"},children:\"CHOOSE YOUR ADVENTURE\"})})},QvWdiI_4X:{__framer__spring:{damping:90,delay:0,duration:.3,ease:[.44,0,.56,1],mass:1,stiffness:500,type:\"spring\"},__framer__styleTransformEffectEnabled:true,__framer__transformTargets:[{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:40}},{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0}}],__framer__transformTrigger:\"onInView\",__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"R0Y7SW5zdHJ1bWVudCBTYW5zLTcwMA==\",\"--framer-font-family\":'\"Instrument Sans\", \"Instrument Sans Placeholder\", sans-serif',\"--framer-font-size\":\"50px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.8px\",\"--framer-line-height\":\"40px\",\"--framer-text-color\":\"rgb(29, 29, 31)\",\"--framer-text-transform\":\"uppercase\"},children:\"CHOOSE YOUR ADVENTURE\"})}),style:{transformPerspective:1200}}},children:/*#__PURE__*/_jsx(RichTextWithFX,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"R0Y7SW5zdHJ1bWVudCBTYW5zLTcwMA==\",\"--framer-font-family\":'\"Instrument Sans\", \"Instrument Sans Placeholder\", sans-serif',\"--framer-font-size\":\"50px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.8px\",\"--framer-line-height\":\"58px\",\"--framer-text-color\":\"rgb(29, 29, 31)\",\"--framer-text-transform\":\"uppercase\"},children:\"CHOOSE YOUR ADVENTURE\"})}),className:\"framer-xlf8t8\",\"data-framer-name\":\"Text\",fonts:[\"GF;Instrument Sans-700\"],name:\"Text\",verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{QvWdiI_4X:{__framer__spring:{damping:90,delay:0,duration:.3,ease:[.44,0,.56,1],mass:1,stiffness:500,type:\"spring\"},__framer__styleTransformEffectEnabled:true,__framer__transformTargets:[{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:40}},{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0}}],__framer__transformTrigger:\"onInView\",__perspectiveFX:false,__targetOpacity:1,style:{transformPerspective:1200}}},children:/*#__PURE__*/_jsx(RichTextWithFX,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-ocgz3a\",\"data-styles-preset\":\"ysX3jk8rR\",style:{\"--framer-text-color\":\"var(--token-914a93db-2efb-455a-b85b-0dd3322c9700, rgb(97, 93, 90))\"},children:\"Fixed-price modules allow you to go further and apply your category strategy to key deliverables, test, iterate and launch.\"})}),className:\"framer-152067n\",\"data-framer-name\":\"Text\",fonts:[\"Inter\"],name:\"Text\",verticalAlignment:\"top\",withExternalLayout:true})})]})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-5h7fbt\",\"data-framer-name\":\"Right\",name:\"Right\",children:[/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__spring:{damping:60,delay:0,duration:.3,ease:[.44,0,.56,1],mass:1,stiffness:300,type:\"spring\"},__framer__styleTransformEffectEnabled:true,__framer__transformTargets:[{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:50}},{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0}}],__framer__transformTrigger:\"onInView\",__perspectiveFX:false,__targetOpacity:1,className:\"framer-7wmn2t\",\"data-framer-name\":\"1\",name:\"1\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-11er2li\",\"data-border\":true,\"data-framer-name\":\"Card\",name:\"Card\",children:[/*#__PURE__*/_jsx(Link,{href:\"https://www.framer.com/\",children:/*#__PURE__*/_jsx(\"a\",{className:\"framer-19ols4i framer-19cgo92\",\"data-border\":true,\"data-framer-name\":\"Left\",name:\"Left\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-guqqfb-container\",children:/*#__PURE__*/_jsx(Iconoir,{color:\"var(--token-1cadc386-9d3c-4578-a80d-0ca88054dd03, rgb(0, 191, 214))\",height:\"100%\",iconSearch:\"Home\",iconSelection:\"FrameTool\",id:\"bp0LS7axN\",layoutId:\"bp0LS7axN\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-164nvwz\",\"data-border\":true,\"data-framer-name\":\"Right\",name:\"Right\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-qid5z6\",\"data-framer-name\":\"Top\",name:\"Top\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW5zdHJ1bWVudCBTYW5zLTcwMA==\",\"--framer-font-family\":'\"Instrument Sans\", \"Instrument Sans Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"24px\",\"--framer-text-color\":\"rgb(29, 29, 31)\",\"--framer-text-transform\":\"uppercase\"},children:\"CATEGORY PROTOTYPE \"})}),className:\"framer-1kfu9yk\",\"data-framer-name\":\"Text\",fonts:[\"GF;Instrument Sans-700\"],name:\"Text\",verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-11n8df2\",\"data-framer-name\":\"Bottom\",name:\"Bottom\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-v2cqgg\",\"data-framer-name\":\"Text\",name:\"Text\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-155wdo6\",\"data-framer-name\":\"Platform & Level\",name:\"Platform & Level\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{AMSVeVGk9:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW5zdHJ1bWVudCBTYW5zLTcwMA==\",\"--framer-font-family\":'\"Instrument Sans\", \"Instrument Sans Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"0.2px\",\"--framer-line-height\":\"20px\",\"--framer-text-color\":\"rgb(29, 29, 31)\",\"--framer-text-transform\":\"uppercase\"},children:\"As above\"})})},QvWdiI_4X:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW5zdHJ1bWVudCBTYW5zLTcwMA==\",\"--framer-font-family\":'\"Instrument Sans\", \"Instrument Sans Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"0.2px\",\"--framer-line-height\":\"20px\",\"--framer-text-color\":\"rgb(29, 29, 31)\",\"--framer-text-transform\":\"uppercase\"},children:\"As above\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW5zdHJ1bWVudCBTYW5zLTcwMA==\",\"--framer-font-family\":'\"Instrument Sans\", \"Instrument Sans Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"0.2px\",\"--framer-line-height\":\"20px\",\"--framer-text-color\":\"rgb(29, 29, 31)\",\"--framer-text-transform\":\"uppercase\"},children:\"as described above\"})}),className:\"framer-h2aqun\",\"data-framer-name\":\"Platform\",fonts:[\"GF;Instrument Sans-700\"],name:\"Platform\",verticalAlignment:\"top\",withExternalLayout:true})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-wfpiuk\",\"data-framer-name\":\"Body Text\",name:\"Body Text\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXIgVGlnaHQtNTAw\",\"--framer-font-family\":'\"Inter Tight\", \"Inter Tight Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"0.5px\",\"--framer-line-height\":\"31px\",\"--framer-text-color\":\"rgba(29, 29, 31, 0.7)\"},children:\"A rapid, non-consensus pass-through category design to discover your category with about 80% accuracy.\"})}),className:\"framer-1rodpf2\",\"data-framer-name\":\"Body Text\",fonts:[\"GF;Inter Tight-500\"],name:\"Body Text\",verticalAlignment:\"top\",withExternalLayout:true})})]})})]})]})}),/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__spring:{damping:60,delay:0,duration:.3,ease:[.44,0,.56,1],mass:1,stiffness:300,type:\"spring\"},__framer__styleTransformEffectEnabled:true,__framer__transformTargets:[{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:50}},{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0}}],__framer__transformTrigger:\"onInView\",__perspectiveFX:false,__targetOpacity:1,className:\"framer-1ic0byz\",\"data-framer-name\":\"2\",name:\"2\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-mr3a8g\",\"data-border\":true,\"data-framer-name\":\"Card\",name:\"Card\",children:[/*#__PURE__*/_jsx(Link,{href:\"https://www.figma.com/\",children:/*#__PURE__*/_jsx(\"a\",{className:\"framer-1q94x6m framer-19cgo92\",\"data-border\":true,\"data-framer-name\":\"Left\",name:\"Left\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-3865os-container\",children:/*#__PURE__*/_jsx(Iconoir,{color:\"var(--token-1cadc386-9d3c-4578-a80d-0ca88054dd03, rgb(0, 191, 214))\",height:\"100%\",iconSearch:\"user\",iconSelection:\"WebWindowClose\",id:\"a5plG5cp8\",layoutId:\"a5plG5cp8\",mirrored:false,selectByList:false,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-18m4vuh\",\"data-border\":true,\"data-framer-name\":\"Right\",name:\"Right\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-bqlh5a\",\"data-framer-name\":\"Top\",name:\"Top\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW5zdHJ1bWVudCBTYW5zLTcwMA==\",\"--framer-font-family\":'\"Instrument Sans\", \"Instrument Sans Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"24px\",\"--framer-text-color\":\"rgb(29, 29, 31)\",\"--framer-text-transform\":\"uppercase\"},children:\"CUSTOMER PROTOTYPE\"})}),className:\"framer-gf6ozt\",\"data-framer-name\":\"Text\",fonts:[\"GF;Instrument Sans-700\"],name:\"Text\",verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-4selj8\",\"data-framer-name\":\"Bottom\",name:\"Bottom\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-lwc6zw\",\"data-framer-name\":\"Text\",name:\"Text\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-6h3y9v\",\"data-framer-name\":\"Platform & Level\",name:\"Platform & Level\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW5zdHJ1bWVudCBTYW5zLTcwMA==\",\"--framer-font-family\":'\"Instrument Sans\", \"Instrument Sans Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"0.2px\",\"--framer-line-height\":\"20px\",\"--framer-text-color\":\"rgb(29, 29, 31)\",\"--framer-text-transform\":\"uppercase\"},children:\"Web landing page, PH tagline, PR Blurb\"})}),className:\"framer-1mmpz25\",\"data-framer-name\":\"Platform\",fonts:[\"GF;Instrument Sans-700\"],name:\"Platform\",verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1hag0gc\",\"data-framer-name\":\"Body Text\",name:\"Body Text\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXIgVGlnaHQtNTAw\",\"--framer-font-family\":'\"Inter Tight\", \"Inter Tight Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"0.5px\",\"--framer-line-height\":\"31px\",\"--framer-text-color\":\"rgba(29, 29, 31, 0.7)\"},children:\"Applies your category strategy to example customer-facing touchpoints to help you experience it as a customer would\"})}),className:\"framer-k01kl8\",\"data-framer-name\":\"Body Text\",fonts:[\"GF;Inter Tight-500\"],name:\"Body Text\",verticalAlignment:\"top\",withExternalLayout:true})})]})})]})]})}),/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__spring:{damping:60,delay:0,duration:.3,ease:[.44,0,.56,1],mass:1,stiffness:300,type:\"spring\"},__framer__styleTransformEffectEnabled:true,__framer__transformTargets:[{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:50}},{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0}}],__framer__transformTrigger:\"onInView\",__perspectiveFX:false,__targetOpacity:1,className:\"framer-weos81\",\"data-framer-name\":\"3\",name:\"3\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-jxpwry\",\"data-border\":true,\"data-framer-name\":\"Card\",name:\"Card\",children:[/*#__PURE__*/_jsx(Link,{href:\"https://www.javascript.com/\",children:/*#__PURE__*/_jsx(\"a\",{className:\"framer-oz1b5f framer-19cgo92\",\"data-border\":true,\"data-framer-name\":\"Left\",name:\"Left\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-u62uqw-container\",children:/*#__PURE__*/_jsx(Iconoir,{color:\"var(--token-1cadc386-9d3c-4578-a80d-0ca88054dd03, rgb(0, 191, 214))\",height:\"100%\",iconSearch:\"money\",iconSelection:\"Home\",id:\"Qwh1AXO72\",layoutId:\"Qwh1AXO72\",mirrored:false,selectByList:false,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-enhq41\",\"data-border\":true,\"data-framer-name\":\"Right\",name:\"Right\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1gxn9c8\",\"data-framer-name\":\"Top\",name:\"Top\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW5zdHJ1bWVudCBTYW5zLTcwMA==\",\"--framer-font-family\":'\"Instrument Sans\", \"Instrument Sans Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"24px\",\"--framer-text-color\":\"rgb(29, 29, 31)\",\"--framer-text-transform\":\"uppercase\"},children:\"investor prototype \"})}),className:\"framer-18t4k47\",\"data-framer-name\":\"Text\",fonts:[\"GF;Instrument Sans-700\"],name:\"Text\",verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1b51gzp\",\"data-framer-name\":\"Bottom\",name:\"Bottom\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-5ed0pi\",\"data-framer-name\":\"Text\",name:\"Text\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-74uju5\",\"data-framer-name\":\"Platform & Level\",name:\"Platform & Level\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW5zdHJ1bWVudCBTYW5zLTcwMA==\",\"--framer-font-family\":'\"Instrument Sans\", \"Instrument Sans Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"0.2px\",\"--framer-line-height\":\"20px\",\"--framer-text-color\":\"rgb(29, 29, 31)\",\"--framer-text-transform\":\"uppercase\"},children:\"Pitch deck slides, cover email\"})}),className:\"framer-12ndfx4\",\"data-framer-name\":\"Platform\",fonts:[\"GF;Instrument Sans-700\"],name:\"Platform\",verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1q3jrv\",\"data-framer-name\":\"Body Text\",name:\"Body Text\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXIgVGlnaHQtNTAw\",\"--framer-font-family\":'\"Inter Tight\", \"Inter Tight Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"0.5px\",\"--framer-line-height\":\"31px\",\"--framer-text-color\":\"rgba(29, 29, 31, 0.7)\"},children:\"Executes category strategy as investor-facing deliverables to uplift fundraising storytelling\"})}),className:\"framer-1j6r71s\",\"data-framer-name\":\"Body Text\",fonts:[\"GF;Inter Tight-500\"],name:\"Body Text\",verticalAlignment:\"top\",withExternalLayout:true})})]})})]})]})}),/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__spring:{damping:60,delay:0,duration:.3,ease:[.44,0,.56,1],mass:1,stiffness:300,type:\"spring\"},__framer__styleTransformEffectEnabled:true,__framer__transformTargets:[{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:50}},{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0}}],__framer__transformTrigger:\"onInView\",__perspectiveFX:false,__targetOpacity:1,className:\"framer-10vmpja\",\"data-framer-name\":\"4\",name:\"4\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1ychmeo\",\"data-border\":true,\"data-framer-name\":\"Card\",name:\"Card\",children:[/*#__PURE__*/_jsx(Link,{href:\"https://www.apple.com/\",children:/*#__PURE__*/_jsx(\"a\",{className:\"framer-1lgguz4 framer-19cgo92\",\"data-border\":true,\"data-framer-name\":\"Left\",name:\"Left\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1c3m9kz-container\",children:/*#__PURE__*/_jsx(Iconoir,{color:\"var(--token-1cadc386-9d3c-4578-a80d-0ca88054dd03, rgb(0, 191, 214))\",height:\"100%\",iconSearch:\"arrows\",iconSelection:\"Check\",id:\"WtnI9Tiqf\",layoutId:\"WtnI9Tiqf\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-12abgfb\",\"data-border\":true,\"data-framer-name\":\"Right\",name:\"Right\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-j99giz\",\"data-framer-name\":\"Top\",name:\"Top\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW5zdHJ1bWVudCBTYW5zLTcwMA==\",\"--framer-font-family\":'\"Instrument Sans\", \"Instrument Sans Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"24px\",\"--framer-text-color\":\"rgb(29, 29, 31)\",\"--framer-text-transform\":\"uppercase\"},children:\"testing & validation\"})}),className:\"framer-m1qcun\",\"data-framer-name\":\"Text\",fonts:[\"GF;Instrument Sans-700\"],name:\"Text\",verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-grtp77\",\"data-framer-name\":\"Bottom\",name:\"Bottom\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1y9vqe9\",\"data-framer-name\":\"Platform & Level\",name:\"Platform & Level\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1wiltik\",\"data-framer-name\":\"Text\",name:\"Text\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW5zdHJ1bWVudCBTYW5zLTcwMA==\",\"--framer-font-family\":'\"Instrument Sans\", \"Instrument Sans Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"0.2px\",\"--framer-line-height\":\"20px\",\"--framer-text-color\":\"rgb(29, 29, 31)\",\"--framer-text-transform\":\"uppercase\"},children:\"Guidance in quant / qual testing\"})}),className:\"framer-dkw4dc\",\"data-framer-name\":\"Platform\",fonts:[\"GF;Instrument Sans-700\"],name:\"Platform\",verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-iezuew\",\"data-framer-name\":\"Body Text\",name:\"Body Text\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXIgVGlnaHQtNTAw\",\"--framer-font-family\":'\"Inter Tight\", \"Inter Tight Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"0.5px\",\"--framer-line-height\":\"31px\",\"--framer-text-color\":\"rgba(29, 29, 31, 0.7)\"},children:\"Deconstructs category strategy into underlying assumptions, provides strategy to validate hypotheses & prototypes\"})}),className:\"framer-gsmq3v\",\"data-framer-name\":\"Body Text\",fonts:[\"GF;Inter Tight-500\"],name:\"Body Text\",verticalAlignment:\"top\",withExternalLayout:true})})]})})]})]})}),/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__spring:{damping:60,delay:0,duration:.3,ease:[.44,0,.56,1],mass:1,stiffness:300,type:\"spring\"},__framer__styleTransformEffectEnabled:true,__framer__transformTargets:[{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:50}},{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0}}],__framer__transformTrigger:\"onInView\",__perspectiveFX:false,__targetOpacity:1,className:\"framer-tav31i\",\"data-framer-name\":\"5\",name:\"5\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-96n0iv\",\"data-border\":true,\"data-framer-name\":\"Card\",name:\"Card\",children:[/*#__PURE__*/_jsx(Link,{href:\"https://www.playstation.com/\",children:/*#__PURE__*/_jsx(\"a\",{className:\"framer-ztfhfo framer-19cgo92\",\"data-border\":true,\"data-framer-name\":\"Left\",name:\"Left\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-121hexp-container\",children:/*#__PURE__*/_jsx(Iconoir,{color:\"var(--token-1cadc386-9d3c-4578-a80d-0ca88054dd03, rgb(0, 191, 214))\",height:\"100%\",iconSearch:\"Home\",iconSelection:\"Flash\",id:\"Gkf3EuCkO\",layoutId:\"Gkf3EuCkO\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-nviezq\",\"data-border\":true,\"data-framer-name\":\"Right\",name:\"Right\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-lj3ama\",\"data-framer-name\":\"Top\",name:\"Top\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW5zdHJ1bWVudCBTYW5zLTcwMA==\",\"--framer-font-family\":'\"Instrument Sans\", \"Instrument Sans Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.6px\",\"--framer-line-height\":\"24px\",\"--framer-text-color\":\"rgb(29, 29, 31)\",\"--framer-text-transform\":\"uppercase\"},children:\"lightning strike launch\"})}),className:\"framer-16ly2cs\",\"data-framer-name\":\"Text\",fonts:[\"GF;Instrument Sans-700\"],name:\"Text\",verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-owz3y3\",\"data-framer-name\":\"Bottom\",name:\"Bottom\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1q0ks1l\",\"data-framer-name\":\"Platform & Level\",name:\"Platform & Level\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1l66nsr\",\"data-framer-name\":\"Text\",name:\"Text\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW5zdHJ1bWVudCBTYW5zLTcwMA==\",\"--framer-font-family\":'\"Instrument Sans\", \"Instrument Sans Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"0.2px\",\"--framer-line-height\":\"20px\",\"--framer-text-color\":\"rgb(29, 29, 31)\",\"--framer-text-transform\":\"uppercase\"},children:\"launch campaign strategy\"})}),className:\"framer-d7ybfx\",\"data-framer-name\":\"Platform\",fonts:[\"GF;Instrument Sans-700\"],name:\"Platform\",verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1hkc3x5\",\"data-framer-name\":\"Body Text\",name:\"Body Text\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXIgVGlnaHQtNTAw\",\"--framer-font-family\":'\"Inter Tight\", \"Inter Tight Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"0.5px\",\"--framer-line-height\":\"31px\",\"--framer-text-color\":\"rgba(29, 29, 31, 0.7)\"},children:\"Plan how to launch the category POV at the scale you need and start bending the market to your vision\"})}),className:\"framer-13o18ry\",\"data-framer-name\":\"Body Text\",fonts:[\"GF;Inter Tight-500\"],name:\"Body Text\",verticalAlignment:\"top\",withExternalLayout:true})})]})})]})]})})]})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1v5ddd\",\"data-framer-name\":\"Client Logos - Old\",name:\"Client Logos - Old\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-tn7ewk\",\"data-styles-preset\":\"UyqvUHH7i\",style:{\"--framer-text-alignment\":\"center\"},children:\"8 years category design experience\"})}),className:\"framer-mzpzy\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1n3z1t\",\"data-framer-name\":\"Clients - Fancy\",name:\"Clients - Fancy\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-isnu0k-container\",children:/*#__PURE__*/_jsx(Ticker,{alignment:\"center\",direction:\"left\",fadeOptions:{fadeAlpha:0,fadeContent:true,fadeInset:0,fadeWidth:20,overflow:false},gap:50,height:\"100%\",hoverFactor:.6,id:\"OmMeQKthG\",layoutId:\"OmMeQKthG\",padding:10,paddingBottom:10,paddingLeft:10,paddingPerSide:false,paddingRight:10,paddingTop:10,sizingOptions:{heightType:true,widthType:true},slots:[/*#__PURE__*/_jsx(Link,{href:\"https://www.framer.com?via=westhill97\",openInNewTab:true,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-pj71au framer-19cgo92\",\"data-border\":true,\"data-framer-name\":\"Bryte\",name:\"Bryte\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"Bryte Logo\",fit:\"fit\",pixelHeight:150,pixelWidth:300,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/9k7OuPsqgQqqZqBrShqeUf5OlkM.svg\"},className:\"framer-40058e\"})})}),/*#__PURE__*/_jsx(Link,{openInNewTab:true,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-1c14jv8 framer-19cgo92\",\"data-border\":true,\"data-framer-name\":\"Topology\",name:\"Topology\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:300,pixelWidth:600,sizes:\"210px\",src:\"https://framerusercontent.com/images/vtmoC2pejFHAPctuuz9puXIk.png\",srcSet:\"https://framerusercontent.com/images/vtmoC2pejFHAPctuuz9puXIk.png?scale-down-to=512 512w,https://framerusercontent.com/images/vtmoC2pejFHAPctuuz9puXIk.png 600w\"},className:\"framer-1li1lgo\"})})}),/*#__PURE__*/_jsx(Link,{href:\"https://www.framer.com?via=westhill97\",openInNewTab:true,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-1fujdcz framer-19cgo92\",\"data-border\":true,\"data-framer-name\":\"Narrative\",name:\"Narrative\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:140,pixelWidth:300,src:\"https://framerusercontent.com/images/D0XmNd6RgUf7Iac27LrCTQYKVKQ.png\"},className:\"framer-1mczhm5\"})})}),/*#__PURE__*/_jsx(Link,{href:\"https://www.framer.com?via=westhill97\",openInNewTab:true,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-13052yj framer-19cgo92\",\"data-border\":true,\"data-framer-name\":\"Techstars\",name:\"Techstars\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"Bryte Logo\",fit:\"fit\",pixelHeight:140,pixelWidth:300,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/yjCxr5UKq9DrElIN6hJhXmTTgg.png\"},className:\"framer-64r4m8\"})})}),/*#__PURE__*/_jsx(Link,{href:\"https://www.framer.com?via=westhill97\",openInNewTab:true,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-1j4ujk framer-19cgo92\",\"data-border\":true,\"data-framer-name\":\"High Camp\",name:\"High Camp\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:140,pixelWidth:300,src:\"https://framerusercontent.com/images/IXpTrQTz1Z8LJ7ipTGYcyrNukEk.png\"},className:\"framer-vxxidn\"})})}),/*#__PURE__*/_jsx(Link,{href:\"https://www.framer.com?via=westhill97\",openInNewTab:true,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-tyxvdv framer-19cgo92\",\"data-border\":true,\"data-framer-name\":\"Kimba\",name:\"Kimba\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:140,pixelWidth:300,src:\"https://framerusercontent.com/images/VSPp87M5iCxoiHaLQcOWwSndg.png\"},className:\"framer-fxfzcf\"})})}),/*#__PURE__*/_jsx(Link,{href:\"https://www.framer.com?via=westhill97\",openInNewTab:true,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-36vn62 framer-19cgo92\",\"data-border\":true,\"data-framer-name\":\"Soilflo\",name:\"Soilflo\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:165,pixelWidth:357,src:\"https://framerusercontent.com/images/mYvs8WkxCcbaRPFkc9JL5rVBw0.png\"},className:\"framer-19t9g6g\",transformTemplate:transformTemplate1})})})],speed:100,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-pzuioc\",\"data-framer-name\":\"Testimonials\",name:\"Testimonials\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1wcj1jl\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-uypo1f\",\"data-framer-name\":\"Card\",name:\"Card\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1yn7vy1\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{AMSVeVGk9:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:100,intrinsicWidth:100,loading:getLoadingLazyAtYPosition(9602.8),pixelHeight:500,pixelWidth:500,src:\"https://framerusercontent.com/images/mTJBSAP1yvzS50lFIN5tYwidto.png\"}},QvWdiI_4X:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:100,intrinsicWidth:100,loading:getLoadingLazyAtYPosition(9729),pixelHeight:500,pixelWidth:500,src:\"https://framerusercontent.com/images/mTJBSAP1yvzS50lFIN5tYwidto.png\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:100,intrinsicWidth:100,pixelHeight:500,pixelWidth:500,src:\"https://framerusercontent.com/images/mTJBSAP1yvzS50lFIN5tYwidto.png\"},className:\"framer-p84kl3\"})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-ynxdxm\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNjAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-0.5px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-b9c3c957-2c66-49c4-9732-fa196fddac20, rgb(0, 17, 34))\"},children:\"Sam Hatoum\"})}),className:\"framer-13l24lf\",fonts:[\"GF;Inter-600\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNTAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-fb4b67b5-91ba-4b73-b4a6-f55417ea1c0c, rgb(102, 102, 102))\"},children:\"Founder & CEO, Narrative\"})}),className:\"framer-fd93h6\",fonts:[\"GF;Inter-500\"],verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNTAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"1.6em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(102, 102, 102)\"},children:/*#__PURE__*/_jsx(\"em\",{children:'\"Chris was able to help create structure around something that is otherwise elusive and amorphous. As a founder navigating uncharted terrain, the Lean Category Design method is a solid process and lead us to a great outcome.\"'})})}),className:\"framer-m2o4z8\",fonts:[\"GF;Inter-500\",\"GF;Inter-500italic\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1t0t99t\",\"data-framer-name\":\"Card\",name:\"Card\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1r5c19p\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{AMSVeVGk9:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:100,intrinsicWidth:100,loading:getLoadingLazyAtYPosition(9890.8),pixelHeight:500,pixelWidth:500,src:\"https://framerusercontent.com/images/tfo7vPSMZglA9K7kG9ykeRyB8.png\"}},QvWdiI_4X:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:100,intrinsicWidth:100,loading:getLoadingLazyAtYPosition(10017),pixelHeight:500,pixelWidth:500,src:\"https://framerusercontent.com/images/tfo7vPSMZglA9K7kG9ykeRyB8.png\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:100,intrinsicWidth:100,pixelHeight:500,pixelWidth:500,src:\"https://framerusercontent.com/images/tfo7vPSMZglA9K7kG9ykeRyB8.png\"},className:\"framer-302pdz\"})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1vtv2n7\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNjAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-0.5px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-b9c3c957-2c66-49c4-9732-fa196fddac20, rgb(0, 17, 34))\"},children:\"Mehul Patel\"})}),className:\"framer-p2ysrw\",fonts:[\"GF;Inter-600\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNTAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-fb4b67b5-91ba-4b73-b4a6-f55417ea1c0c, rgb(102, 102, 102))\"},children:\"Co-Founder, Clairify AI\"})}),className:\"framer-mx5pjy\",fonts:[\"GF;Inter-500\"],verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNTAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"1.6em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(102, 102, 102)\"},children:/*#__PURE__*/_jsx(\"em\",{children:'\"This is exactly the outcome we wanted.\"'})}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNTAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"1.6em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(102, 102, 102)\"},children:/*#__PURE__*/_jsx(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNTAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"1.6em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(102, 102, 102)\"},children:/*#__PURE__*/_jsx(\"em\",{children:'\"Before, everything was so jumbled in our minds. We couldn\\'t even say what Clairify was, so now, yeah, I would recommend, 100%\"'})})]}),className:\"framer-p5xiqm\",fonts:[\"GF;Inter-500\",\"GF;Inter-500italic\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1pkbatl\",\"data-framer-name\":\"Card\",name:\"Card\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-q685jn\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{AMSVeVGk9:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:100,intrinsicWidth:100,loading:getLoadingLazyAtYPosition(10424.8),pixelHeight:500,pixelWidth:500,src:\"https://framerusercontent.com/images/UuTL6dQeWFUZMfbEupLyMolEpGo.png\"}},QvWdiI_4X:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:100,intrinsicWidth:100,loading:getLoadingLazyAtYPosition(10551),pixelHeight:500,pixelWidth:500,src:\"https://framerusercontent.com/images/UuTL6dQeWFUZMfbEupLyMolEpGo.png\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:100,intrinsicWidth:100,pixelHeight:500,pixelWidth:500,src:\"https://framerusercontent.com/images/UuTL6dQeWFUZMfbEupLyMolEpGo.png\"},className:\"framer-1riel1y\"})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-p6qkt3\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNjAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-0.5px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-b9c3c957-2c66-49c4-9732-fa196fddac20, rgb(0, 17, 34))\"},children:\"Adam Matyja\"})}),className:\"framer-srbzwg\",fonts:[\"GF;Inter-600\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNTAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-fb4b67b5-91ba-4b73-b4a6-f55417ea1c0c, rgb(102, 102, 102))\"},children:\"Founder, SoilFlo\"})}),className:\"framer-539q7w\",fonts:[\"GF;Inter-500\"],verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNTAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"1.6em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(102, 102, 102)\"},children:/*#__PURE__*/_jsx(\"em\",{children:'\"Thank you again for all of your help in working with us. We are extremely happy with the results thus far on our category design journey!\"'})})}),className:\"framer-18nkc01\",fonts:[\"GF;Inter-500\",\"GF;Inter-500italic\"],verticalAlignment:\"top\",withExternalLayout:true})]})]})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{AMSVeVGk9:{y:10732.8},QvWdiI_4X:{y:10879}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:1224,width:\"100vw\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-mcz05j-container\",id:id,ref:ref2,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{AMSVeVGk9:{variant:\"X_zYRLiJ7\"},QvWdiI_4X:{variant:\"CX7b4N8R3\"}},children:/*#__PURE__*/_jsx(CalendlyPanel,{height:\"100%\",id:\"thPFeRZ9c\",layoutId:\"thPFeRZ9c\",style:{width:\"100%\"},variant:\"oyWLWJELP\",width:\"100%\"})})})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-4x0px4\",\"data-framer-name\":\"LCD email course\",id:id1,name:\"LCD email course\",ref:ref3,children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-2i1rrk\",\"data-framer-name\":\"Left\",name:\"Left\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-16m8d4d\",\"data-framer-name\":\"Title\",name:\"Title\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{AMSVeVGk9:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"R0Y7SW5zdHJ1bWVudCBTYW5zLTcwMA==\",\"--framer-font-family\":'\"Instrument Sans\", \"Instrument Sans Placeholder\", sans-serif',\"--framer-font-size\":\"50px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"49px\",\"--framer-text-color\":\"rgb(29, 29, 31)\",\"--framer-text-transform\":\"uppercase\"},children:\"DIY lean category design \"})})},QvWdiI_4X:{__framer__spring:{damping:90,delay:0,duration:.3,ease:[.44,0,.56,1],mass:1,stiffness:500,type:\"spring\"},__framer__styleTransformEffectEnabled:true,__framer__transformTargets:[{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:40}},{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0}}],__framer__transformTrigger:\"onInView\",__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"R0Y7SW5zdHJ1bWVudCBTYW5zLTcwMA==\",\"--framer-font-family\":'\"Instrument Sans\", \"Instrument Sans Placeholder\", sans-serif',\"--framer-font-size\":\"50px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.8px\",\"--framer-line-height\":\"40px\",\"--framer-text-color\":\"rgb(29, 29, 31)\",\"--framer-text-transform\":\"uppercase\"},children:\"DIY lean category design \"})}),style:{transformPerspective:1200}}},children:/*#__PURE__*/_jsx(RichTextWithFX,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"R0Y7SW5zdHJ1bWVudCBTYW5zLTcwMA==\",\"--framer-font-family\":'\"Instrument Sans\", \"Instrument Sans Placeholder\", sans-serif',\"--framer-font-size\":\"50px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.8px\",\"--framer-line-height\":\"58px\",\"--framer-text-color\":\"rgb(29, 29, 31)\",\"--framer-text-transform\":\"uppercase\"},children:\"DIY lean category design \"})}),className:\"framer-lxezey\",\"data-framer-name\":\"Text\",fonts:[\"GF;Instrument Sans-700\"],name:\"Text\",verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{QvWdiI_4X:{__framer__spring:{damping:90,delay:0,duration:.3,ease:[.44,0,.56,1],mass:1,stiffness:500,type:\"spring\"},__framer__styleTransformEffectEnabled:true,__framer__transformTargets:[{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:40}},{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0}}],__framer__transformTrigger:\"onInView\",__perspectiveFX:false,__targetOpacity:1,style:{transformPerspective:1200}}},children:/*#__PURE__*/_jsx(RichTextWithFX,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-ocgz3a\",\"data-styles-preset\":\"ysX3jk8rR\",style:{\"--framer-text-color\":\"var(--token-914a93db-2efb-455a-b85b-0dd3322c9700, rgb(97, 93, 90))\"},children:\"Lead your own Lean Category Design Prototype project with this free email course\"})}),className:\"framer-16rt40n\",\"data-framer-name\":\"Text\",fonts:[\"Inter\"],name:\"Text\",verticalAlignment:\"top\",withExternalLayout:true})})]})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-g1raiq\",\"data-framer-name\":\"Right\",name:\"Right\",children:/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__spring:{damping:60,delay:0,duration:.3,ease:[.44,0,.56,1],mass:1,stiffness:300,type:\"spring\"},__framer__styleTransformEffectEnabled:true,__framer__transformTargets:[{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:50}},{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0}}],__framer__transformTrigger:\"onInView\",__perspectiveFX:false,__targetOpacity:1,className:\"framer-blv1q7\",\"data-framer-name\":\"1\",name:\"1\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-19555oh\",\"data-border\":true,\"data-framer-name\":\"Card\",name:\"Card\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-d8pr2a\",\"data-border\":true,\"data-framer-name\":\"Right\",name:\"Right\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1twshih\",\"data-framer-name\":\"Top\",name:\"Top\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW5zdHJ1bWVudCBTYW5zLTcwMA==\",\"--framer-font-family\":'\"Instrument Sans\", \"Instrument Sans Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"24px\",\"--framer-text-color\":\"rgb(29, 29, 31)\",\"--framer-text-transform\":\"uppercase\"},children:\"FREE LEAN CATEGORY DESIGN EMAIL COURSE\"})}),className:\"framer-a3ype7\",\"data-framer-name\":\"Text\",fonts:[\"GF;Instrument Sans-700\"],name:\"Text\",verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-173fzc1\",\"data-framer-name\":\"Bottom\",name:\"Bottom\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-qi12mw\",\"data-framer-name\":\"Text\",name:\"Text\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1844hz3\",\"data-framer-name\":\"Platform & Level\",name:\"Platform & Level\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{AMSVeVGk9:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW5zdHJ1bWVudCBTYW5zLTcwMA==\",\"--framer-font-family\":'\"Instrument Sans\", \"Instrument Sans Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"0.2px\",\"--framer-line-height\":\"20px\",\"--framer-text-color\":\"rgb(29, 29, 31)\",\"--framer-text-transform\":\"uppercase\"},children:\"As above\"})})},QvWdiI_4X:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW5zdHJ1bWVudCBTYW5zLTcwMA==\",\"--framer-font-family\":'\"Instrument Sans\", \"Instrument Sans Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"0.2px\",\"--framer-line-height\":\"20px\",\"--framer-text-color\":\"rgb(29, 29, 31)\",\"--framer-text-transform\":\"uppercase\"},children:\"As above\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW5zdHJ1bWVudCBTYW5zLTcwMA==\",\"--framer-font-family\":'\"Instrument Sans\", \"Instrument Sans Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"0.2px\",\"--framer-line-height\":\"20px\",\"--framer-text-color\":\"var(--token-914a93db-2efb-455a-b85b-0dd3322c9700, rgb(97, 93, 90))\",\"--framer-text-transform\":\"capitalize\"},children:\"Coming Soon\"})}),className:\"framer-wh66vg\",\"data-framer-name\":\"Platform\",fonts:[\"GF;Instrument Sans-700\"],name:\"Platform\",verticalAlignment:\"top\",withExternalLayout:true})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1fqtr70\",\"data-framer-name\":\"Body Text\",name:\"Body Text\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXIgVGlnaHQtNTAw\",\"--framer-font-family\":'\"Inter Tight\", \"Inter Tight Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"0.5px\",\"--framer-line-height\":\"31px\",\"--framer-text-color\":\"rgba(29, 29, 31, 0.7)\"},children:\"Drop your name and email address here to receive a free Lean Category Design course by email as soon as it is available\"})}),className:\"framer-1kww0cr\",\"data-framer-name\":\"Body Text\",fonts:[\"GF;Inter Tight-500\"],name:\"Body Text\",verticalAlignment:\"top\",withExternalLayout:true})})]})}),/*#__PURE__*/_jsx(FormContainer,{action:\"https://api.framer.com/forms/v1/forms/e3b7475a-1516-42d2-9048-2eb232fd8680/submit\",className:\"framer-hflaci\",children:formState=>/*#__PURE__*/_jsxs(_Fragment,{children:[/*#__PURE__*/_jsxs(\"label\",{className:\"framer-1ce77zb\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"500\",\"--framer-text-color\":\"var(--token-914a93db-2efb-455a-b85b-0dd3322c9700, rgb(97, 93, 90))\"},children:\"Your Name\"})}),className:\"framer-1572dtm\",fonts:[\"Inter-Medium\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(FormPlainTextInput,{className:\"framer-rtwans\",inputName:\"Name\",placeholder:\"Jane Smith\",type:\"text\"})]}),/*#__PURE__*/_jsxs(\"label\",{className:\"framer-1dwz0ri\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"500\",\"--framer-text-color\":\"var(--token-914a93db-2efb-455a-b85b-0dd3322c9700, rgb(97, 93, 90))\"},children:\"Email\"})}),className:\"framer-h79d52\",fonts:[\"Inter-Medium\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(FormPlainTextInput,{className:\"framer-1jxtv1d\",inputName:\"Email\",placeholder:\"jane@framer.com\",type:\"email\"})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{AMSVeVGk9:{y:13032.4},QvWdiI_4X:{y:13116.6}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:40,width:\"240px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-12xa3ju-container\",children:/*#__PURE__*/_jsx(Button,{height:\"100%\",id:\"DenNnlR7N\",layoutId:\"DenNnlR7N\",style:{height:\"100%\",width:\"100%\"},type:\"submit\",variant:formVariants(formState,{pending:\"e5uGPMCIQ\",success:\"Wn9vSg0qj\"},\"yrKmqFX4X\"),width:\"100%\"})})})})]})})]})})})})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{AMSVeVGk9:{y:13236.4},QvWdiI_4X:{y:13301.6}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:535,width:\"100vw\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-ejg5s3-container\",children:/*#__PURE__*/_jsx(GlobalFooter,{height:\"100%\",id:\"VsiLa4H3_\",layoutId:\"VsiLa4H3_\",style:{width:\"100%\"},width:\"100%\"})})})})]}),/*#__PURE__*/_jsx(\"div\",{className:cx(serializationHash,...sharedStyleClassNames),id:\"overlay\"})]})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",`.${metadata.bodyClassName}-framer-AkSps { background: #FFFFFF; }`,\".framer-AkSps.framer-19cgo92, .framer-AkSps .framer-19cgo92 { display: block; }\",\".framer-AkSps.framer-mh5p2l { align-content: center; align-items: center; background-color: #ffffff; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 1200px; }\",\".framer-AkSps .framer-d721y-container, .framer-AkSps .framer-mcz05j-container, .framer-AkSps .framer-ejg5s3-container { flex: none; height: auto; position: relative; width: 100%; }\",\".framer-AkSps .framer-1ictinb { align-content: center; align-items: center; background-color: var(--token-5ccb4610-cddb-4747-9993-659f7acc7039, #faf7f2); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: hidden; padding: 4px 4px 40px 4px; position: relative; width: 100%; z-index: 1; }\",\".framer-AkSps .framer-lwlkr5 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 44px; height: min-content; justify-content: center; overflow: hidden; padding: 104px 0px 46px 0px; position: relative; width: 100%; z-index: 1; }\",\".framer-AkSps .framer-ojoshh { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 30px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-AkSps .framer-1ne18jd { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 36px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-AkSps .framer-r8p1d1, .framer-AkSps .framer-rb39mh, .framer-AkSps .framer-1fdjroa, .framer-AkSps .framer-12mjxa2, .framer-AkSps .framer-1d2zobr, .framer-AkSps .framer-c3ucn1, .framer-AkSps .framer-vz3vw { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-AkSps .framer-pwv9pv { aspect-ratio: 1.7777777777777777 / 1; border-bottom-left-radius: 20px; border-bottom-right-radius: 20px; border-top-left-radius: 20px; border-top-right-radius: 20px; flex: none; height: var(--framer-aspect-ratio-supported, 398px); overflow: hidden; position: relative; width: 59%; will-change: var(--framer-will-change-override, transform); }\",\".framer-AkSps .framer-33wmrg-container { flex: none; height: 100%; left: calc(50.00000000000002% - 100% / 2); position: absolute; top: 0px; width: 100%; }\",\".framer-AkSps .framer-nkvfnk { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 380px; }\",\".framer-AkSps .framer-qukhkl { flex: none; height: auto; max-width: 100%; overflow: visible; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-AkSps .framer-yuweq6 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 15px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: min-content; z-index: 1; }\",\".framer-AkSps .framer-1hg1a4w { --border-bottom-width: 1px; --border-color: #222222; --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; align-content: center; align-items: center; background-color: var(--token-82de99b0-128a-4553-b348-bf7c3ce89910, #000000); border-bottom-left-radius: 8px; border-bottom-right-radius: 8px; border-top-left-radius: 8px; border-top-right-radius: 8px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 40px; justify-content: center; overflow: visible; padding: 15px; position: relative; text-decoration: none; width: 150px; }\",\".framer-AkSps .framer-q8bg5l, .framer-AkSps .framer-ymjo7f, .framer-AkSps .framer-u8dman, .framer-AkSps .framer-1pjb1j3, .framer-AkSps .framer-err381 { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-AkSps .framer-1mpv08n { align-content: center; align-items: center; background-color: var(--token-29e67be5-a1ef-487a-84c6-77c571390ed3, #b0a698); border-bottom-left-radius: 8px; border-bottom-right-radius: 8px; border-top-left-radius: 8px; border-top-right-radius: 8px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 40px; justify-content: center; overflow: visible; padding: 15px; position: relative; text-decoration: none; width: min-content; }\",\".framer-AkSps .framer-1j53vem { align-content: flex-start; align-items: flex-start; background-color: var(--token-82de99b0-128a-4553-b348-bf7c3ce89910, #000000); display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; height: min-content; justify-content: space-between; overflow: visible; padding: 201px 40px 201px 40px; position: relative; width: 100%; z-index: 1; }\",\".framer-AkSps .framer-11it4s1 { align-content: flex-start; align-items: flex-start; 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: min-content; z-index: 1; }\",\".framer-AkSps .framer-162qtoj { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-AkSps .framer-1lhlpgq { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 60px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: min-content; z-index: 1; }\",\".framer-AkSps .framer-bry7t, .framer-AkSps .framer-1vo02nn, .framer-AkSps .framer-oxk1ts, .framer-AkSps .framer-um7jq8 { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 700px; word-break: break-word; word-wrap: break-word; }\",\".framer-AkSps .framer-zbolhu { align-content: center; align-items: center; background-color: var(--token-3a75a011-ab94-4242-9a2e-6326b82ad1f2, #f6fdaa); border-bottom-left-radius: 8px; border-bottom-right-radius: 8px; border-top-left-radius: 8px; border-top-right-radius: 8px; box-shadow: 0px 0.7065919983928324px 0.7065919983928324px -0.625px rgba(0, 0, 0, 0.15), 0px 1.8065619053231785px 1.8065619053231785px -1.25px rgba(0, 0, 0, 0.14398), 0px 3.6217592146567767px 3.6217592146567767px -1.875px rgba(0, 0, 0, 0.13793), 0px 6.8655999097303715px 6.8655999097303715px -2.5px rgba(0, 0, 0, 0.12711), 0px 13.646761411524492px 13.646761411524492px -3.125px rgba(0, 0, 0, 0.10451), 0px 30px 30px -3.75px rgba(0, 0, 0, 0.05); display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 40px; justify-content: center; overflow: visible; padding: 15px; position: relative; text-decoration: none; width: min-content; }\",\".framer-AkSps .framer-ynsfjh { align-content: center; align-items: center; background-color: #ffffff; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-AkSps .framer-83fica { align-content: center; align-items: center; align-self: stretch; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: auto; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-AkSps .framer-129n9sy { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; max-width: 2018px; padding: 0px; position: relative; width: 497px; }\",\".framer-AkSps .framer-xbmnh2, .framer-AkSps .framer-mzpzy { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; overflow: visible; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-AkSps .framer-zk3fmf, .framer-AkSps .framer-sjv8r6 { flex: none; height: auto; overflow: visible; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-AkSps .framer-2g9cs1 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 15px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-AkSps .framer-1iq1y22 { align-content: center; align-items: center; background-color: #222222; border-bottom-left-radius: 8px; border-bottom-right-radius: 8px; border-top-left-radius: 8px; border-top-right-radius: 8px; box-shadow: 0px 0.7065919983928324px 0.7065919983928324px -0.625px rgba(0, 0, 0, 0.15), 0px 1.8065619053231785px 1.8065619053231785px -1.25px rgba(0, 0, 0, 0.14398), 0px 3.6217592146567767px 3.6217592146567767px -1.875px rgba(0, 0, 0, 0.13793), 0px 6.8655999097303715px 6.8655999097303715px -2.5px rgba(0, 0, 0, 0.12711), 0px 13.646761411524492px 13.646761411524492px -3.125px rgba(0, 0, 0, 0.10451), 0px 30px 30px -3.75px rgba(0, 0, 0, 0.05); display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 40px; justify-content: center; overflow: visible; padding: 15px; position: relative; text-decoration: none; width: min-content; }\",\".framer-AkSps .framer-pu99er { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: 600px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-AkSps .framer-1rszne8, .framer-AkSps .framer-11t43ly { align-content: flex-start; align-items: flex-start; background-color: #dad9d6; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 80px; height: min-content; justify-content: center; overflow: visible; padding: 30px 40px 40px 40px; position: relative; width: 100%; }\",\".framer-AkSps .framer-rx20vu { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-AkSps .framer-1f5l6ep, .framer-AkSps .framer-voblb1 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-AkSps .framer-143eg3z, .framer-AkSps .framer-rih03x { --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; }\",\".framer-AkSps .framer-obzs2q { align-content: center; align-items: center; background-color: #dad9d6; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 40px; position: relative; width: 100%; }\",\".framer-AkSps .framer-ooo3vq { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: center; max-width: 100%; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-AkSps .framer-19xqbvh { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 50px; height: 500px; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-AkSps .framer-8p00k { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: 100%; justify-content: center; padding: 0px; position: relative; width: 1px; }\",\".framer-AkSps .framer-1demh37 { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; overflow: visible; position: relative; white-space: pre; width: auto; }\",\".framer-AkSps .framer-1uubtyp { aspect-ratio: 1 / 1; border-bottom-left-radius: 20px; border-bottom-right-radius: 20px; border-top-left-radius: 20px; border-top-right-radius: 20px; flex: 1 0 0px; height: var(--framer-aspect-ratio-supported, 535px); overflow: hidden; position: relative; width: 1px; will-change: var(--framer-will-change-override, transform); }\",\".framer-AkSps .framer-t0m58f { 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: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-AkSps .framer-1g8ao0t, .framer-AkSps .framer-2gem37 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-AkSps .framer-e1gw2t, .framer-AkSps .framer-1hllesi { --border-bottom-width: 1px; --border-color: rgba(0, 0, 0, 0.04); --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; align-content: flex-start; align-items: flex-start; background-color: #f5f5f7; border-bottom-left-radius: 10px; border-bottom-right-radius: 10px; border-top-left-radius: 10px; border-top-right-radius: 10px; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: 262px; justify-content: flex-end; overflow: hidden; padding: 30px 30px 40px 30px; position: relative; width: 1px; will-change: var(--framer-will-change-override, transform); }\",\".framer-AkSps .framer-2mmgl0, .framer-AkSps .framer-ea06rr, .framer-AkSps .framer-1lisoij, .framer-AkSps .framer-36h0rd, .framer-AkSps .framer-g6shb { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-AkSps .framer-1h5w21o, .framer-AkSps .framer-1tw193j, .framer-AkSps .framer-1rs7acz, .framer-AkSps .framer-4f0e50 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 18px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-AkSps .framer-1wrew30, .framer-AkSps .framer-nwcylz, .framer-AkSps .framer-sser7h, .framer-AkSps .framer-1f1rjcj, .framer-AkSps .framer-f6xq2c, .framer-AkSps .framer-jytvva, .framer-AkSps .framer-306wnw, .framer-AkSps .framer-1j1n4g5, .framer-AkSps .framer-w9nz68, .framer-AkSps .framer-178qf6m, .framer-AkSps .framer-h2aqun, .framer-AkSps .framer-1mmpz25, .framer-AkSps .framer-12ndfx4, .framer-AkSps .framer-dkw4dc, .framer-AkSps .framer-d7ybfx, .framer-AkSps .framer-wh66vg, .framer-AkSps .framer-1572dtm, .framer-AkSps .framer-h79d52 { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-AkSps .framer-z8srw5 { --border-bottom-width: 1px; --border-color: rgba(0, 0, 0, 0.04); --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; align-content: flex-start; align-items: flex-start; background-color: rgba(246, 253, 170, 0.8); border-bottom-left-radius: 10px; border-bottom-right-radius: 10px; border-top-left-radius: 10px; border-top-right-radius: 10px; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: 262px; justify-content: flex-end; overflow: hidden; padding: 30px 30px 40px 30px; position: relative; width: 1px; will-change: var(--framer-will-change-override, transform); }\",\".framer-AkSps .framer-fhx33x, .framer-AkSps .framer-105ffjr { --border-bottom-width: 1px; --border-color: rgba(0, 0, 0, 0.04); --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; align-content: flex-start; align-items: flex-start; background-color: #f5f5f7; border-bottom-left-radius: 10px; border-bottom-right-radius: 10px; border-top-left-radius: 10px; border-top-right-radius: 10px; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: 235px; justify-content: flex-end; overflow: hidden; padding: 30px 30px 40px 30px; position: relative; width: 1px; will-change: var(--framer-will-change-override, transform); }\",\".framer-AkSps .framer-1gbd5lg { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 18px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-AkSps .framer-1ejvjit { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 26px; justify-content: center; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-AkSps .framer-tksml3, .framer-AkSps .framer-4x0px4 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; height: min-content; justify-content: space-between; overflow: visible; padding: 110px 40px 80px 40px; position: relative; width: 100%; z-index: 1; }\",\".framer-AkSps .framer-51ccj1, .framer-AkSps .framer-2i1rrk { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: center; overflow: hidden; padding: 5px; position: sticky; top: 100px; width: min-content; will-change: transform; z-index: 1; }\",\".framer-AkSps .framer-1ecawx8, .framer-AkSps .framer-16m8d4d { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 6px; position: relative; width: 325px; }\",\".framer-AkSps .framer-xlf8t8, .framer-AkSps .framer-152067n, .framer-AkSps .framer-lxezey, .framer-AkSps .framer-16rt40n { --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-AkSps .framer-5h7fbt { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 846px; z-index: 1; }\",\".framer-AkSps .framer-7wmn2t, .framer-AkSps .framer-1ic0byz, .framer-AkSps .framer-weos81, .framer-AkSps .framer-10vmpja, .framer-AkSps .framer-tav31i, .framer-AkSps .framer-blv1q7 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 29px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-AkSps .framer-11er2li, .framer-AkSps .framer-mr3a8g, .framer-AkSps .framer-jxpwry, .framer-AkSps .framer-1ychmeo, .framer-AkSps .framer-96n0iv { --border-bottom-width: 1px; --border-color: rgba(0, 0, 0, 0.04); --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; align-content: flex-start; align-items: flex-start; background-color: #f5f5f7; border-bottom-left-radius: 10px; border-bottom-right-radius: 10px; border-top-left-radius: 10px; border-top-right-radius: 10px; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 30px; position: relative; width: 1px; will-change: var(--framer-will-change-override, transform); }\",\".framer-AkSps .framer-19ols4i { --border-bottom-width: 1px; --border-color: rgba(0, 0, 0, 0.08); --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; align-content: center; align-items: center; background-color: #fafafa; border-bottom-left-radius: 10px; border-bottom-right-radius: 10px; border-top-left-radius: 10px; border-top-right-radius: 10px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 84px; justify-content: center; overflow: hidden; padding: 0px; position: relative; text-decoration: none; width: 84px; will-change: var(--framer-will-change-override, transform); }\",\".framer-AkSps .framer-guqqfb-container { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 59px); position: relative; width: 56px; }\",\".framer-AkSps .framer-164nvwz, .framer-AkSps .framer-18m4vuh, .framer-AkSps .framer-enhq41, .framer-AkSps .framer-12abgfb, .framer-AkSps .framer-nviezq, .framer-AkSps .framer-d8pr2a { --border-bottom-width: 1px; --border-color: rgba(0, 0, 0, 0.08); --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; align-content: flex-start; align-items: flex-start; background-color: #fafafa; border-bottom-left-radius: 10px; border-bottom-right-radius: 10px; border-top-left-radius: 10px; border-top-right-radius: 10px; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: flex-start; overflow: visible; padding: 34px 42px 34px 42px; position: relative; width: 1px; }\",\".framer-AkSps .framer-qid5z6, .framer-AkSps .framer-bqlh5a, .framer-AkSps .framer-1gxn9c8, .framer-AkSps .framer-j99giz, .framer-AkSps .framer-lj3ama, .framer-AkSps .framer-1twshih { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-AkSps .framer-1kfu9yk, .framer-AkSps .framer-gf6ozt, .framer-AkSps .framer-18t4k47, .framer-AkSps .framer-m1qcun, .framer-AkSps .framer-16ly2cs, .framer-AkSps .framer-a3ype7 { flex: 1 0 0px; height: auto; position: relative; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; }\",\".framer-AkSps .framer-11n8df2, .framer-AkSps .framer-4selj8, .framer-AkSps .framer-1b51gzp, .framer-AkSps .framer-grtp77, .framer-AkSps .framer-owz3y3, .framer-AkSps .framer-173fzc1 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 60px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-AkSps .framer-v2cqgg, .framer-AkSps .framer-lwc6zw, .framer-AkSps .framer-5ed0pi, .framer-AkSps .framer-1y9vqe9, .framer-AkSps .framer-1q0ks1l, .framer-AkSps .framer-qi12mw { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-AkSps .framer-155wdo6, .framer-AkSps .framer-6h3y9v, .framer-AkSps .framer-74uju5, .framer-AkSps .framer-1wiltik, .framer-AkSps .framer-1l66nsr, .framer-AkSps .framer-1844hz3 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; height: min-content; justify-content: space-between; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-AkSps .framer-wfpiuk, .framer-AkSps .framer-1hag0gc, .framer-AkSps .framer-1q3jrv, .framer-AkSps .framer-iezuew, .framer-AkSps .framer-1hkc3x5, .framer-AkSps .framer-1fqtr70 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-AkSps .framer-1rodpf2, .framer-AkSps .framer-k01kl8, .framer-AkSps .framer-1j6r71s, .framer-AkSps .framer-gsmq3v, .framer-AkSps .framer-13o18ry, .framer-AkSps .framer-1kww0cr { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 594px; word-break: break-word; word-wrap: break-word; }\",\".framer-AkSps .framer-1q94x6m, .framer-AkSps .framer-oz1b5f { --border-bottom-width: 1px; --border-color: rgba(0, 0, 0, 0.08); --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; align-content: center; align-items: center; aspect-ratio: 1 / 1; background-color: #fafafa; border-bottom-left-radius: 10px; border-bottom-right-radius: 10px; border-top-left-radius: 10px; border-top-right-radius: 10px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: var(--framer-aspect-ratio-supported, 84px); justify-content: center; overflow: hidden; padding: 0px; position: relative; text-decoration: none; width: 84px; will-change: var(--framer-will-change-override, transform); }\",\".framer-AkSps .framer-3865os-container { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 49px); position: relative; width: 46px; }\",\".framer-AkSps .framer-u62uqw-container, .framer-AkSps .framer-1c3m9kz-container, .framer-AkSps .framer-121hexp-container { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 37px); position: relative; width: 34px; }\",\".framer-AkSps .framer-1lgguz4 { --border-bottom-width: 1px; --border-color: rgba(0, 0, 0, 0.08); --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; align-content: center; align-items: center; aspect-ratio: 1 / 1; background-color: #fafafa; border-bottom-left-radius: 10px; border-bottom-right-radius: 10px; border-top-left-radius: 10px; border-top-right-radius: 10px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: var(--framer-aspect-ratio-supported, 84px); justify-content: center; overflow: hidden; padding: 0px 0px 6px 0px; position: relative; text-decoration: none; width: 84px; will-change: var(--framer-will-change-override, transform); }\",\".framer-AkSps .framer-ztfhfo { --border-bottom-width: 1px; --border-color: rgba(0, 0, 0, 0.08); --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; align-content: center; align-items: center; aspect-ratio: 1 / 1; background-color: #fafafa; border-bottom-left-radius: 10px; border-bottom-right-radius: 10px; border-top-left-radius: 10px; border-top-right-radius: 10px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: var(--framer-aspect-ratio-supported, 84px); justify-content: center; overflow: hidden; padding: 0px 0px 4px 0px; position: relative; text-decoration: none; width: 84px; will-change: var(--framer-will-change-override, transform); }\",\".framer-AkSps .framer-1v5ddd { align-content: center; align-items: center; background-color: var(--token-5ccb4610-cddb-4747-9993-659f7acc7039, #faf7f2); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 60px; height: min-content; justify-content: center; overflow: hidden; padding: 61px 40px 20px 40px; position: relative; width: 100%; }\",\".framer-AkSps .framer-1n3z1t { align-content: center; align-items: center; background-color: var(--token-5ccb4610-cddb-4747-9993-659f7acc7039, #faf7f2); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 80px; height: min-content; justify-content: center; overflow: hidden; padding: 0px 0px 60px 0px; position: relative; width: 100%; }\",\".framer-AkSps .framer-isnu0k-container { flex: none; height: 304px; position: relative; width: 100%; }\",\".framer-AkSps .framer-pj71au, .framer-AkSps .framer-1fujdcz, .framer-AkSps .framer-13052yj, .framer-AkSps .framer-1j4ujk, .framer-AkSps .framer-tyxvdv, .framer-AkSps .framer-36vn62 { --border-bottom-width: 1px; --border-color: rgba(0, 0, 0, 0.04); --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; aspect-ratio: 1 / 1; background-color: var(--token-967e661a-1124-44da-a257-eba042cc6cc4, #ffffff); border-bottom-left-radius: 10px; border-bottom-right-radius: 10px; border-top-left-radius: 10px; border-top-right-radius: 10px; height: var(--framer-aspect-ratio-supported, 230px); overflow: hidden; position: relative; text-decoration: none; width: 230px; will-change: var(--framer-will-change-override, transform); }\",\".framer-AkSps .framer-40058e, .framer-AkSps .framer-64r4m8 { bottom: 0px; flex: none; left: 0px; position: absolute; right: 0px; top: 0px; }\",\".framer-AkSps .framer-1c14jv8 { --border-bottom-width: 1px; --border-color: rgba(0, 0, 0, 0.04); --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; align-content: center; align-items: center; aspect-ratio: 1 / 1; background-color: var(--token-967e661a-1124-44da-a257-eba042cc6cc4, #ffffff); border-bottom-left-radius: 10px; border-bottom-right-radius: 10px; border-top-left-radius: 10px; border-top-right-radius: 10px; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: var(--framer-aspect-ratio-supported, 230px); justify-content: center; overflow: hidden; padding: 0px; position: relative; text-decoration: none; width: 230px; will-change: var(--framer-will-change-override, transform); }\",\".framer-AkSps .framer-1li1lgo { aspect-ratio: 2.1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 100px); left: 10px; position: absolute; right: 10px; top: 65px; z-index: 1; }\",\".framer-AkSps .framer-1mczhm5 { flex: none; height: 90px; left: calc(50.00000000000002% - 220px / 2); overflow: hidden; position: absolute; top: calc(49.56521739130437% - 90px / 2); width: 220px; }\",\".framer-AkSps .framer-vxxidn { flex: none; height: 100px; left: calc(50.00000000000002% - 220px / 2); overflow: hidden; position: absolute; top: calc(50.00000000000002% - 100px / 2); width: 220px; }\",\".framer-AkSps .framer-fxfzcf { bottom: 65px; flex: none; left: 5px; overflow: hidden; position: absolute; right: 5px; top: 65px; }\",\".framer-AkSps .framer-19t9g6g { aspect-ratio: 2.2222222222222223 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 90px); left: 50%; overflow: hidden; position: absolute; top: 50%; transform: translate(-50%, -50%); width: 200px; }\",\".framer-AkSps .framer-pzuioc { align-content: center; align-items: center; background-color: #ffffff; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 60px; height: min-content; justify-content: center; overflow: hidden; padding: 100px 40px 100px 40px; position: relative; width: 100%; }\",\".framer-AkSps .framer-1wcj1jl { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: wrap; gap: 20px; height: min-content; justify-content: center; max-width: 100%; overflow: visible; padding: 0px; position: relative; width: 1000px; }\",\".framer-AkSps .framer-uypo1f { align-content: center; align-items: center; background-color: #ffffff; border-bottom-left-radius: 20px; border-bottom-right-radius: 20px; border-top-left-radius: 20px; border-top-right-radius: 20px; box-shadow: 0px 0.7961918735236395px 2.3885756205709185px -0.625px rgba(0, 0, 0, 0.05), 0px 2.414506143104518px 7.2435184293135535px -1.25px rgba(0, 0, 0, 0.05), 0px 6.382653521484461px 19.147960564453385px -1.875px rgba(0, 0, 0, 0.05), 0px 20px 60px -2.5px rgba(0, 0, 0, 0.05); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 30px; height: 360px; justify-content: flex-start; padding: 30px; position: relative; width: 320px; }\",\".framer-AkSps .framer-1yn7vy1, .framer-AkSps .framer-1r5c19p, .framer-AkSps .framer-q685jn { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 15px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-AkSps .framer-p84kl3, .framer-AkSps .framer-302pdz, .framer-AkSps .framer-1riel1y { aspect-ratio: 1 / 1; border-bottom-left-radius: 50%; border-bottom-right-radius: 50%; border-top-left-radius: 50%; border-top-right-radius: 50%; flex: none; height: var(--framer-aspect-ratio-supported, 50px); overflow: hidden; position: relative; width: 50px; will-change: var(--framer-will-change-override, transform); }\",\".framer-AkSps .framer-ynxdxm, .framer-AkSps .framer-1vtv2n7, .framer-AkSps .framer-p6qkt3 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 200px; }\",\".framer-AkSps .framer-13l24lf, .framer-AkSps .framer-fd93h6, .framer-AkSps .framer-p2ysrw, .framer-AkSps .framer-mx5pjy, .framer-AkSps .framer-srbzwg, .framer-AkSps .framer-539q7w { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; --framer-paragraph-spacing: 0px; flex: none; height: auto; overflow: visible; position: relative; white-space: pre; width: auto; }\",\".framer-AkSps .framer-m2o4z8, .framer-AkSps .framer-p5xiqm, .framer-AkSps .framer-18nkc01 { --framer-paragraph-spacing: 0px; flex: none; height: auto; overflow: visible; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-AkSps .framer-1t0t99t, .framer-AkSps .framer-1pkbatl { align-content: center; align-items: center; background-color: #ffffff; border-bottom-left-radius: 20px; border-bottom-right-radius: 20px; border-top-left-radius: 20px; border-top-right-radius: 20px; box-shadow: 0px 0.7961918735236395px 2.3885756205709185px -0.625px rgba(0, 0, 0, 0.05), 0px 2.414506143104518px 7.2435184293135535px -1.25px rgba(0, 0, 0, 0.05), 0px 6.382653521484461px 19.147960564453385px -1.875px rgba(0, 0, 0, 0.05), 0px 20px 60px -2.5px rgba(0, 0, 0, 0.05); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: 360px; justify-content: flex-start; padding: 30px; position: relative; width: 320px; }\",\".framer-AkSps .framer-g1raiq { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 1px; z-index: 1; }\",\".framer-AkSps .framer-19555oh { --border-bottom-width: 1px; --border-color: rgba(0, 0, 0, 0.04); --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; align-content: flex-start; align-items: flex-start; background-color: rgba(246, 253, 170, 0.4); border-bottom-left-radius: 10px; border-bottom-right-radius: 10px; border-top-left-radius: 10px; border-top-right-radius: 10px; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 30px; position: relative; width: 1px; will-change: var(--framer-will-change-override, transform); }\",\".framer-AkSps .framer-hflaci { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 20px; position: relative; width: 280px; }\",\".framer-AkSps .framer-1ce77zb, .framer-AkSps .framer-1dwz0ri { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; padding: 0px; position: relative; width: 100%; }\",'.framer-AkSps .framer-rtwans, .framer-AkSps .framer-1jxtv1d { --framer-input-background: rgba(187, 187, 187, 0.15); --framer-input-border-bottom-width: 1px; --framer-input-border-color: rgba(136, 136, 136, 0.1); --framer-input-border-left-width: 1px; --framer-input-border-radius-bottom-left: 10px; --framer-input-border-radius-bottom-right: 10px; --framer-input-border-radius-top-left: 10px; --framer-input-border-radius-top-right: 10px; --framer-input-border-right-width: 1px; --framer-input-border-style: solid; --framer-input-border-top-width: 1px; --framer-input-focused-border-color: #0099ff; --framer-input-focused-border-style: solid; --framer-input-focused-border-width: 1px; --framer-input-font-color: #999999; --framer-input-font-family: \"Inter\"; --framer-input-font-letter-spacing: 0em; --framer-input-font-line-height: 1.2em; --framer-input-font-size: 14px; --framer-input-font-weight: 400; --framer-input-icon-color: #999999; --framer-input-padding: 12px; --framer-input-placeholder-color: #999999; flex: none; height: 40px; position: relative; width: 100%; }',\".framer-AkSps .framer-12xa3ju-container { flex: none; height: 40px; position: relative; width: 100%; }\",\"@supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-AkSps.framer-mh5p2l, .framer-AkSps .framer-1ictinb, .framer-AkSps .framer-lwlkr5, .framer-AkSps .framer-ojoshh, .framer-AkSps .framer-1ne18jd, .framer-AkSps .framer-nkvfnk, .framer-AkSps .framer-yuweq6, .framer-AkSps .framer-1hg1a4w, .framer-AkSps .framer-1mpv08n, .framer-AkSps .framer-11it4s1, .framer-AkSps .framer-162qtoj, .framer-AkSps .framer-1lhlpgq, .framer-AkSps .framer-zbolhu, .framer-AkSps .framer-ynsfjh, .framer-AkSps .framer-83fica, .framer-AkSps .framer-129n9sy, .framer-AkSps .framer-2g9cs1, .framer-AkSps .framer-1iq1y22, .framer-AkSps .framer-pu99er, .framer-AkSps .framer-1rszne8, .framer-AkSps .framer-rx20vu, .framer-AkSps .framer-1f5l6ep, .framer-AkSps .framer-voblb1, .framer-AkSps .framer-obzs2q, .framer-AkSps .framer-ooo3vq, .framer-AkSps .framer-19xqbvh, .framer-AkSps .framer-8p00k, .framer-AkSps .framer-11t43ly, .framer-AkSps .framer-t0m58f, .framer-AkSps .framer-1g8ao0t, .framer-AkSps .framer-e1gw2t, .framer-AkSps .framer-2mmgl0, .framer-AkSps .framer-1h5w21o, .framer-AkSps .framer-1hllesi, .framer-AkSps .framer-ea06rr, .framer-AkSps .framer-1tw193j, .framer-AkSps .framer-z8srw5, .framer-AkSps .framer-1lisoij, .framer-AkSps .framer-1rs7acz, .framer-AkSps .framer-2gem37, .framer-AkSps .framer-fhx33x, .framer-AkSps .framer-36h0rd, .framer-AkSps .framer-1gbd5lg, .framer-AkSps .framer-1ejvjit, .framer-AkSps .framer-105ffjr, .framer-AkSps .framer-g6shb, .framer-AkSps .framer-4f0e50, .framer-AkSps .framer-51ccj1, .framer-AkSps .framer-1ecawx8, .framer-AkSps .framer-5h7fbt, .framer-AkSps .framer-7wmn2t, .framer-AkSps .framer-11er2li, .framer-AkSps .framer-19ols4i, .framer-AkSps .framer-164nvwz, .framer-AkSps .framer-qid5z6, .framer-AkSps .framer-11n8df2, .framer-AkSps .framer-v2cqgg, .framer-AkSps .framer-wfpiuk, .framer-AkSps .framer-1ic0byz, .framer-AkSps .framer-mr3a8g, .framer-AkSps .framer-1q94x6m, .framer-AkSps .framer-18m4vuh, .framer-AkSps .framer-bqlh5a, .framer-AkSps .framer-4selj8, .framer-AkSps .framer-lwc6zw, .framer-AkSps .framer-1hag0gc, .framer-AkSps .framer-weos81, .framer-AkSps .framer-jxpwry, .framer-AkSps .framer-oz1b5f, .framer-AkSps .framer-enhq41, .framer-AkSps .framer-1gxn9c8, .framer-AkSps .framer-1b51gzp, .framer-AkSps .framer-5ed0pi, .framer-AkSps .framer-1q3jrv, .framer-AkSps .framer-10vmpja, .framer-AkSps .framer-1ychmeo, .framer-AkSps .framer-1lgguz4, .framer-AkSps .framer-12abgfb, .framer-AkSps .framer-j99giz, .framer-AkSps .framer-grtp77, .framer-AkSps .framer-1y9vqe9, .framer-AkSps .framer-iezuew, .framer-AkSps .framer-tav31i, .framer-AkSps .framer-96n0iv, .framer-AkSps .framer-ztfhfo, .framer-AkSps .framer-nviezq, .framer-AkSps .framer-lj3ama, .framer-AkSps .framer-owz3y3, .framer-AkSps .framer-1q0ks1l, .framer-AkSps .framer-1hkc3x5, .framer-AkSps .framer-1v5ddd, .framer-AkSps .framer-1n3z1t, .framer-AkSps .framer-1c14jv8, .framer-AkSps .framer-pzuioc, .framer-AkSps .framer-1wcj1jl, .framer-AkSps .framer-uypo1f, .framer-AkSps .framer-1yn7vy1, .framer-AkSps .framer-ynxdxm, .framer-AkSps .framer-1t0t99t, .framer-AkSps .framer-1r5c19p, .framer-AkSps .framer-1vtv2n7, .framer-AkSps .framer-1pkbatl, .framer-AkSps .framer-q685jn, .framer-AkSps .framer-p6qkt3, .framer-AkSps .framer-2i1rrk, .framer-AkSps .framer-16m8d4d, .framer-AkSps .framer-g1raiq, .framer-AkSps .framer-blv1q7, .framer-AkSps .framer-19555oh, .framer-AkSps .framer-d8pr2a, .framer-AkSps .framer-1twshih, .framer-AkSps .framer-173fzc1, .framer-AkSps .framer-qi12mw, .framer-AkSps .framer-1fqtr70, .framer-AkSps .framer-hflaci, .framer-AkSps .framer-1ce77zb, .framer-AkSps .framer-1dwz0ri { gap: 0px; } .framer-AkSps.framer-mh5p2l > *, .framer-AkSps .framer-1ictinb > *, .framer-AkSps .framer-ynxdxm > *, .framer-AkSps .framer-1vtv2n7 > *, .framer-AkSps .framer-p6qkt3 > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-AkSps.framer-mh5p2l > :first-child, .framer-AkSps .framer-1ictinb > :first-child, .framer-AkSps .framer-lwlkr5 > :first-child, .framer-AkSps .framer-ojoshh > :first-child, .framer-AkSps .framer-1ne18jd > :first-child, .framer-AkSps .framer-nkvfnk > :first-child, .framer-AkSps .framer-11it4s1 > :first-child, .framer-AkSps .framer-1lhlpgq > :first-child, .framer-AkSps .framer-129n9sy > :first-child, .framer-AkSps .framer-pu99er > :first-child, .framer-AkSps .framer-1rszne8 > :first-child, .framer-AkSps .framer-rx20vu > :first-child, .framer-AkSps .framer-ooo3vq > :first-child, .framer-AkSps .framer-8p00k > :first-child, .framer-AkSps .framer-11t43ly > :first-child, .framer-AkSps .framer-t0m58f > :first-child, .framer-AkSps .framer-e1gw2t > :first-child, .framer-AkSps .framer-2mmgl0 > :first-child, .framer-AkSps .framer-1h5w21o > :first-child, .framer-AkSps .framer-1hllesi > :first-child, .framer-AkSps .framer-ea06rr > :first-child, .framer-AkSps .framer-1tw193j > :first-child, .framer-AkSps .framer-z8srw5 > :first-child, .framer-AkSps .framer-1lisoij > :first-child, .framer-AkSps .framer-1rs7acz > :first-child, .framer-AkSps .framer-fhx33x > :first-child, .framer-AkSps .framer-36h0rd > :first-child, .framer-AkSps .framer-1gbd5lg > :first-child, .framer-AkSps .framer-105ffjr > :first-child, .framer-AkSps .framer-g6shb > :first-child, .framer-AkSps .framer-4f0e50 > :first-child, .framer-AkSps .framer-51ccj1 > :first-child, .framer-AkSps .framer-1ecawx8 > :first-child, .framer-AkSps .framer-5h7fbt > :first-child, .framer-AkSps .framer-164nvwz > :first-child, .framer-AkSps .framer-11n8df2 > :first-child, .framer-AkSps .framer-v2cqgg > :first-child, .framer-AkSps .framer-18m4vuh > :first-child, .framer-AkSps .framer-4selj8 > :first-child, .framer-AkSps .framer-lwc6zw > :first-child, .framer-AkSps .framer-enhq41 > :first-child, .framer-AkSps .framer-1b51gzp > :first-child, .framer-AkSps .framer-5ed0pi > :first-child, .framer-AkSps .framer-12abgfb > :first-child, .framer-AkSps .framer-grtp77 > :first-child, .framer-AkSps .framer-1y9vqe9 > :first-child, .framer-AkSps .framer-nviezq > :first-child, .framer-AkSps .framer-owz3y3 > :first-child, .framer-AkSps .framer-1q0ks1l > :first-child, .framer-AkSps .framer-1v5ddd > :first-child, .framer-AkSps .framer-1n3z1t > :first-child, .framer-AkSps .framer-pzuioc > :first-child, .framer-AkSps .framer-uypo1f > :first-child, .framer-AkSps .framer-ynxdxm > :first-child, .framer-AkSps .framer-1t0t99t > :first-child, .framer-AkSps .framer-1vtv2n7 > :first-child, .framer-AkSps .framer-1pkbatl > :first-child, .framer-AkSps .framer-p6qkt3 > :first-child, .framer-AkSps .framer-2i1rrk > :first-child, .framer-AkSps .framer-16m8d4d > :first-child, .framer-AkSps .framer-g1raiq > :first-child, .framer-AkSps .framer-d8pr2a > :first-child, .framer-AkSps .framer-173fzc1 > :first-child, .framer-AkSps .framer-qi12mw > :first-child, .framer-AkSps .framer-hflaci > :first-child, .framer-AkSps .framer-1ce77zb > :first-child, .framer-AkSps .framer-1dwz0ri > :first-child { margin-top: 0px; } .framer-AkSps.framer-mh5p2l > :last-child, .framer-AkSps .framer-1ictinb > :last-child, .framer-AkSps .framer-lwlkr5 > :last-child, .framer-AkSps .framer-ojoshh > :last-child, .framer-AkSps .framer-1ne18jd > :last-child, .framer-AkSps .framer-nkvfnk > :last-child, .framer-AkSps .framer-11it4s1 > :last-child, .framer-AkSps .framer-1lhlpgq > :last-child, .framer-AkSps .framer-129n9sy > :last-child, .framer-AkSps .framer-pu99er > :last-child, .framer-AkSps .framer-1rszne8 > :last-child, .framer-AkSps .framer-rx20vu > :last-child, .framer-AkSps .framer-ooo3vq > :last-child, .framer-AkSps .framer-8p00k > :last-child, .framer-AkSps .framer-11t43ly > :last-child, .framer-AkSps .framer-t0m58f > :last-child, .framer-AkSps .framer-e1gw2t > :last-child, .framer-AkSps .framer-2mmgl0 > :last-child, .framer-AkSps .framer-1h5w21o > :last-child, .framer-AkSps .framer-1hllesi > :last-child, .framer-AkSps .framer-ea06rr > :last-child, .framer-AkSps .framer-1tw193j > :last-child, .framer-AkSps .framer-z8srw5 > :last-child, .framer-AkSps .framer-1lisoij > :last-child, .framer-AkSps .framer-1rs7acz > :last-child, .framer-AkSps .framer-fhx33x > :last-child, .framer-AkSps .framer-36h0rd > :last-child, .framer-AkSps .framer-1gbd5lg > :last-child, .framer-AkSps .framer-105ffjr > :last-child, .framer-AkSps .framer-g6shb > :last-child, .framer-AkSps .framer-4f0e50 > :last-child, .framer-AkSps .framer-51ccj1 > :last-child, .framer-AkSps .framer-1ecawx8 > :last-child, .framer-AkSps .framer-5h7fbt > :last-child, .framer-AkSps .framer-164nvwz > :last-child, .framer-AkSps .framer-11n8df2 > :last-child, .framer-AkSps .framer-v2cqgg > :last-child, .framer-AkSps .framer-18m4vuh > :last-child, .framer-AkSps .framer-4selj8 > :last-child, .framer-AkSps .framer-lwc6zw > :last-child, .framer-AkSps .framer-enhq41 > :last-child, .framer-AkSps .framer-1b51gzp > :last-child, .framer-AkSps .framer-5ed0pi > :last-child, .framer-AkSps .framer-12abgfb > :last-child, .framer-AkSps .framer-grtp77 > :last-child, .framer-AkSps .framer-1y9vqe9 > :last-child, .framer-AkSps .framer-nviezq > :last-child, .framer-AkSps .framer-owz3y3 > :last-child, .framer-AkSps .framer-1q0ks1l > :last-child, .framer-AkSps .framer-1v5ddd > :last-child, .framer-AkSps .framer-1n3z1t > :last-child, .framer-AkSps .framer-pzuioc > :last-child, .framer-AkSps .framer-uypo1f > :last-child, .framer-AkSps .framer-ynxdxm > :last-child, .framer-AkSps .framer-1t0t99t > :last-child, .framer-AkSps .framer-1vtv2n7 > :last-child, .framer-AkSps .framer-1pkbatl > :last-child, .framer-AkSps .framer-p6qkt3 > :last-child, .framer-AkSps .framer-2i1rrk > :last-child, .framer-AkSps .framer-16m8d4d > :last-child, .framer-AkSps .framer-g1raiq > :last-child, .framer-AkSps .framer-d8pr2a > :last-child, .framer-AkSps .framer-173fzc1 > :last-child, .framer-AkSps .framer-qi12mw > :last-child, .framer-AkSps .framer-hflaci > :last-child, .framer-AkSps .framer-1ce77zb > :last-child, .framer-AkSps .framer-1dwz0ri > :last-child { margin-bottom: 0px; } .framer-AkSps .framer-lwlkr5 > * { margin: 0px; margin-bottom: calc(44px / 2); margin-top: calc(44px / 2); } .framer-AkSps .framer-ojoshh > *, .framer-AkSps .framer-uypo1f > * { margin: 0px; margin-bottom: calc(30px / 2); margin-top: calc(30px / 2); } .framer-AkSps .framer-1ne18jd > * { margin: 0px; margin-bottom: calc(36px / 2); margin-top: calc(36px / 2); } .framer-AkSps .framer-nkvfnk > *, .framer-AkSps .framer-129n9sy > *, .framer-AkSps .framer-pu99er > *, .framer-AkSps .framer-8p00k > *, .framer-AkSps .framer-v2cqgg > *, .framer-AkSps .framer-lwc6zw > *, .framer-AkSps .framer-5ed0pi > *, .framer-AkSps .framer-1y9vqe9 > *, .framer-AkSps .framer-1q0ks1l > *, .framer-AkSps .framer-1t0t99t > *, .framer-AkSps .framer-1pkbatl > *, .framer-AkSps .framer-qi12mw > *, .framer-AkSps .framer-hflaci > * { margin: 0px; margin-bottom: calc(20px / 2); margin-top: calc(20px / 2); } .framer-AkSps .framer-yuweq6 > *, .framer-AkSps .framer-2g9cs1 > *, .framer-AkSps .framer-1yn7vy1 > *, .framer-AkSps .framer-1r5c19p > *, .framer-AkSps .framer-q685jn > * { margin: 0px; margin-left: calc(15px / 2); margin-right: calc(15px / 2); } .framer-AkSps .framer-yuweq6 > :first-child, .framer-AkSps .framer-1hg1a4w > :first-child, .framer-AkSps .framer-1mpv08n > :first-child, .framer-AkSps .framer-162qtoj > :first-child, .framer-AkSps .framer-zbolhu > :first-child, .framer-AkSps .framer-ynsfjh > :first-child, .framer-AkSps .framer-83fica > :first-child, .framer-AkSps .framer-2g9cs1 > :first-child, .framer-AkSps .framer-1iq1y22 > :first-child, .framer-AkSps .framer-1f5l6ep > :first-child, .framer-AkSps .framer-voblb1 > :first-child, .framer-AkSps .framer-obzs2q > :first-child, .framer-AkSps .framer-19xqbvh > :first-child, .framer-AkSps .framer-1g8ao0t > :first-child, .framer-AkSps .framer-2gem37 > :first-child, .framer-AkSps .framer-1ejvjit > :first-child, .framer-AkSps .framer-7wmn2t > :first-child, .framer-AkSps .framer-11er2li > :first-child, .framer-AkSps .framer-19ols4i > :first-child, .framer-AkSps .framer-qid5z6 > :first-child, .framer-AkSps .framer-wfpiuk > :first-child, .framer-AkSps .framer-1ic0byz > :first-child, .framer-AkSps .framer-mr3a8g > :first-child, .framer-AkSps .framer-1q94x6m > :first-child, .framer-AkSps .framer-bqlh5a > :first-child, .framer-AkSps .framer-1hag0gc > :first-child, .framer-AkSps .framer-weos81 > :first-child, .framer-AkSps .framer-jxpwry > :first-child, .framer-AkSps .framer-oz1b5f > :first-child, .framer-AkSps .framer-1gxn9c8 > :first-child, .framer-AkSps .framer-1q3jrv > :first-child, .framer-AkSps .framer-10vmpja > :first-child, .framer-AkSps .framer-1ychmeo > :first-child, .framer-AkSps .framer-1lgguz4 > :first-child, .framer-AkSps .framer-j99giz > :first-child, .framer-AkSps .framer-iezuew > :first-child, .framer-AkSps .framer-tav31i > :first-child, .framer-AkSps .framer-96n0iv > :first-child, .framer-AkSps .framer-ztfhfo > :first-child, .framer-AkSps .framer-lj3ama > :first-child, .framer-AkSps .framer-1hkc3x5 > :first-child, .framer-AkSps .framer-1c14jv8 > :first-child, .framer-AkSps .framer-1wcj1jl > :first-child, .framer-AkSps .framer-1yn7vy1 > :first-child, .framer-AkSps .framer-1r5c19p > :first-child, .framer-AkSps .framer-q685jn > :first-child, .framer-AkSps .framer-blv1q7 > :first-child, .framer-AkSps .framer-19555oh > :first-child, .framer-AkSps .framer-1twshih > :first-child, .framer-AkSps .framer-1fqtr70 > :first-child { margin-left: 0px; } .framer-AkSps .framer-yuweq6 > :last-child, .framer-AkSps .framer-1hg1a4w > :last-child, .framer-AkSps .framer-1mpv08n > :last-child, .framer-AkSps .framer-162qtoj > :last-child, .framer-AkSps .framer-zbolhu > :last-child, .framer-AkSps .framer-ynsfjh > :last-child, .framer-AkSps .framer-83fica > :last-child, .framer-AkSps .framer-2g9cs1 > :last-child, .framer-AkSps .framer-1iq1y22 > :last-child, .framer-AkSps .framer-1f5l6ep > :last-child, .framer-AkSps .framer-voblb1 > :last-child, .framer-AkSps .framer-obzs2q > :last-child, .framer-AkSps .framer-19xqbvh > :last-child, .framer-AkSps .framer-1g8ao0t > :last-child, .framer-AkSps .framer-2gem37 > :last-child, .framer-AkSps .framer-1ejvjit > :last-child, .framer-AkSps .framer-7wmn2t > :last-child, .framer-AkSps .framer-11er2li > :last-child, .framer-AkSps .framer-19ols4i > :last-child, .framer-AkSps .framer-qid5z6 > :last-child, .framer-AkSps .framer-wfpiuk > :last-child, .framer-AkSps .framer-1ic0byz > :last-child, .framer-AkSps .framer-mr3a8g > :last-child, .framer-AkSps .framer-1q94x6m > :last-child, .framer-AkSps .framer-bqlh5a > :last-child, .framer-AkSps .framer-1hag0gc > :last-child, .framer-AkSps .framer-weos81 > :last-child, .framer-AkSps .framer-jxpwry > :last-child, .framer-AkSps .framer-oz1b5f > :last-child, .framer-AkSps .framer-1gxn9c8 > :last-child, .framer-AkSps .framer-1q3jrv > :last-child, .framer-AkSps .framer-10vmpja > :last-child, .framer-AkSps .framer-1ychmeo > :last-child, .framer-AkSps .framer-1lgguz4 > :last-child, .framer-AkSps .framer-j99giz > :last-child, .framer-AkSps .framer-iezuew > :last-child, .framer-AkSps .framer-tav31i > :last-child, .framer-AkSps .framer-96n0iv > :last-child, .framer-AkSps .framer-ztfhfo > :last-child, .framer-AkSps .framer-lj3ama > :last-child, .framer-AkSps .framer-1hkc3x5 > :last-child, .framer-AkSps .framer-1c14jv8 > :last-child, .framer-AkSps .framer-1wcj1jl > :last-child, .framer-AkSps .framer-1yn7vy1 > :last-child, .framer-AkSps .framer-1r5c19p > :last-child, .framer-AkSps .framer-q685jn > :last-child, .framer-AkSps .framer-blv1q7 > :last-child, .framer-AkSps .framer-19555oh > :last-child, .framer-AkSps .framer-1twshih > :last-child, .framer-AkSps .framer-1fqtr70 > :last-child { margin-right: 0px; } .framer-AkSps .framer-1hg1a4w > *, .framer-AkSps .framer-1mpv08n > *, .framer-AkSps .framer-162qtoj > *, .framer-AkSps .framer-zbolhu > *, .framer-AkSps .framer-83fica > *, .framer-AkSps .framer-1iq1y22 > *, .framer-AkSps .framer-obzs2q > *, .framer-AkSps .framer-1ejvjit > *, .framer-AkSps .framer-19ols4i > *, .framer-AkSps .framer-qid5z6 > *, .framer-AkSps .framer-wfpiuk > *, .framer-AkSps .framer-1q94x6m > *, .framer-AkSps .framer-bqlh5a > *, .framer-AkSps .framer-1hag0gc > *, .framer-AkSps .framer-oz1b5f > *, .framer-AkSps .framer-1gxn9c8 > *, .framer-AkSps .framer-1q3jrv > *, .framer-AkSps .framer-1lgguz4 > *, .framer-AkSps .framer-j99giz > *, .framer-AkSps .framer-iezuew > *, .framer-AkSps .framer-ztfhfo > *, .framer-AkSps .framer-lj3ama > *, .framer-AkSps .framer-1hkc3x5 > *, .framer-AkSps .framer-1c14jv8 > *, .framer-AkSps .framer-1twshih > *, .framer-AkSps .framer-1fqtr70 > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-AkSps .framer-11it4s1 > *, .framer-AkSps .framer-t0m58f > *, .framer-AkSps .framer-e1gw2t > *, .framer-AkSps .framer-1hllesi > *, .framer-AkSps .framer-z8srw5 > *, .framer-AkSps .framer-fhx33x > *, .framer-AkSps .framer-105ffjr > *, .framer-AkSps .framer-51ccj1 > *, .framer-AkSps .framer-5h7fbt > *, .framer-AkSps .framer-164nvwz > *, .framer-AkSps .framer-18m4vuh > *, .framer-AkSps .framer-enhq41 > *, .framer-AkSps .framer-12abgfb > *, .framer-AkSps .framer-nviezq > *, .framer-AkSps .framer-2i1rrk > *, .framer-AkSps .framer-g1raiq > *, .framer-AkSps .framer-d8pr2a > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } .framer-AkSps .framer-1lhlpgq > *, .framer-AkSps .framer-11n8df2 > *, .framer-AkSps .framer-4selj8 > *, .framer-AkSps .framer-1b51gzp > *, .framer-AkSps .framer-grtp77 > *, .framer-AkSps .framer-owz3y3 > *, .framer-AkSps .framer-1v5ddd > *, .framer-AkSps .framer-pzuioc > *, .framer-AkSps .framer-173fzc1 > * { margin: 0px; margin-bottom: calc(60px / 2); margin-top: calc(60px / 2); } .framer-AkSps .framer-ynsfjh > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } .framer-AkSps .framer-1rszne8 > *, .framer-AkSps .framer-11t43ly > *, .framer-AkSps .framer-1n3z1t > * { margin: 0px; margin-bottom: calc(80px / 2); margin-top: calc(80px / 2); } .framer-AkSps .framer-rx20vu > *, .framer-AkSps .framer-2mmgl0 > *, .framer-AkSps .framer-ea06rr > *, .framer-AkSps .framer-1lisoij > *, .framer-AkSps .framer-36h0rd > *, .framer-AkSps .framer-g6shb > *, .framer-AkSps .framer-1ecawx8 > *, .framer-AkSps .framer-16m8d4d > *, .framer-AkSps .framer-1ce77zb > *, .framer-AkSps .framer-1dwz0ri > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-AkSps .framer-1f5l6ep > *, .framer-AkSps .framer-voblb1 > *, .framer-AkSps .framer-1wcj1jl > * { margin: 0px; margin-left: calc(20px / 2); margin-right: calc(20px / 2); } .framer-AkSps .framer-ooo3vq > * { margin: 0px; margin-bottom: calc(40px / 2); margin-top: calc(40px / 2); } .framer-AkSps .framer-19xqbvh > * { margin: 0px; margin-left: calc(50px / 2); margin-right: calc(50px / 2); } .framer-AkSps .framer-1g8ao0t > *, .framer-AkSps .framer-2gem37 > *, .framer-AkSps .framer-11er2li > *, .framer-AkSps .framer-mr3a8g > *, .framer-AkSps .framer-jxpwry > *, .framer-AkSps .framer-1ychmeo > *, .framer-AkSps .framer-96n0iv > *, .framer-AkSps .framer-19555oh > * { margin: 0px; margin-left: calc(24px / 2); margin-right: calc(24px / 2); } .framer-AkSps .framer-1h5w21o > *, .framer-AkSps .framer-1tw193j > *, .framer-AkSps .framer-1rs7acz > *, .framer-AkSps .framer-1gbd5lg > *, .framer-AkSps .framer-4f0e50 > * { margin: 0px; margin-bottom: calc(18px / 2); margin-top: calc(18px / 2); } .framer-AkSps .framer-7wmn2t > *, .framer-AkSps .framer-1ic0byz > *, .framer-AkSps .framer-weos81 > *, .framer-AkSps .framer-10vmpja > *, .framer-AkSps .framer-tav31i > *, .framer-AkSps .framer-blv1q7 > * { margin: 0px; margin-left: calc(29px / 2); margin-right: calc(29px / 2); } }\",\"@media (min-width: 1200px) { .framer-AkSps .hidden-mh5p2l { display: none !important; } }\",`@media (min-width: 810px) and (max-width: 1199px) { .framer-AkSps .hidden-873zg4 { display: none !important; } .${metadata.bodyClassName}-framer-AkSps { background: #FFFFFF; } .framer-AkSps.framer-mh5p2l { width: 810px; } .framer-AkSps .framer-r8p1d1, .framer-AkSps .framer-rb39mh { overflow: hidden; text-shadow: 0px 1px 2px rgba(0, 0, 0, 0.25); } .framer-AkSps .framer-pwv9pv { height: var(--framer-aspect-ratio-supported, 406px); width: 90%; } .framer-AkSps .framer-nkvfnk { width: 342px; } .framer-AkSps .framer-1j53vem { gap: 74px; justify-content: flex-start; padding: 146px 40px 201px 40px; } .framer-AkSps .framer-1lhlpgq, .framer-AkSps .framer-1rodpf2, .framer-AkSps .framer-k01kl8, .framer-AkSps .framer-1j6r71s, .framer-AkSps .framer-gsmq3v, .framer-AkSps .framer-13o18ry, .framer-AkSps .framer-1kww0cr { flex: 1 0 0px; width: 1px; } .framer-AkSps .framer-bry7t, .framer-AkSps .framer-1vo02nn, .framer-AkSps .framer-oxk1ts, .framer-AkSps .framer-um7jq8, .framer-AkSps .framer-5h7fbt, .framer-AkSps .framer-19ols4i, .framer-AkSps .framer-wfpiuk, .framer-AkSps .framer-1hag0gc, .framer-AkSps .framer-1q3jrv, .framer-AkSps .framer-iezuew, .framer-AkSps .framer-1hkc3x5, .framer-AkSps .framer-1fqtr70 { width: 100%; } .framer-AkSps .framer-129n9sy { flex: 1 0 0px; padding: 40px; width: 1px; } .framer-AkSps .framer-pu99er { height: 500px; } .framer-AkSps .framer-1uubtyp { height: var(--framer-aspect-ratio-supported, 340px); } .framer-AkSps .framer-1g8ao0t, .framer-AkSps .framer-2gem37, .framer-AkSps .framer-11er2li, .framer-AkSps .framer-mr3a8g, .framer-AkSps .framer-jxpwry, .framer-AkSps .framer-1ychmeo, .framer-AkSps .framer-96n0iv, .framer-AkSps .framer-1wcj1jl, .framer-AkSps .framer-19555oh { flex-direction: column; } .framer-AkSps .framer-e1gw2t, .framer-AkSps .framer-1hllesi, .framer-AkSps .framer-z8srw5, .framer-AkSps .framer-fhx33x, .framer-AkSps .framer-105ffjr { flex: none; height: min-content; width: 100%; } .framer-AkSps .framer-tksml3, .framer-AkSps .framer-4x0px4 { flex-direction: column; gap: 74px; justify-content: flex-start; padding: 80px 40px 80px 40px; } .framer-AkSps .framer-164nvwz, .framer-AkSps .framer-18m4vuh, .framer-AkSps .framer-enhq41, .framer-AkSps .framer-12abgfb, .framer-AkSps .framer-nviezq, .framer-AkSps .framer-g1raiq, .framer-AkSps .framer-d8pr2a { flex: none; width: 100%; } .framer-AkSps .framer-155wdo6, .framer-AkSps .framer-6h3y9v, .framer-AkSps .framer-74uju5, .framer-AkSps .framer-1wiltik, .framer-AkSps .framer-1l66nsr, .framer-AkSps .framer-1844hz3 { gap: 40px; justify-content: flex-start; } .framer-AkSps .framer-h2aqun, .framer-AkSps .framer-1mmpz25, .framer-AkSps .framer-12ndfx4, .framer-AkSps .framer-dkw4dc, .framer-AkSps .framer-d7ybfx, .framer-AkSps .framer-wh66vg { flex: 1 0 0px; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; } .framer-AkSps .framer-1q94x6m, .framer-AkSps .framer-oz1b5f, .framer-AkSps .framer-1lgguz4, .framer-AkSps .framer-ztfhfo { aspect-ratio: unset; height: 84px; width: 100%; } .framer-AkSps .framer-1v5ddd, .framer-AkSps .framer-pzuioc { padding: 80px 40px 80px 40px; } .framer-AkSps .framer-uypo1f, .framer-AkSps .framer-1t0t99t, .framer-AkSps .framer-1pkbatl { height: min-content; width: 100%; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-AkSps .framer-1j53vem, .framer-AkSps .framer-1g8ao0t, .framer-AkSps .framer-2gem37, .framer-AkSps .framer-tksml3, .framer-AkSps .framer-11er2li, .framer-AkSps .framer-155wdo6, .framer-AkSps .framer-mr3a8g, .framer-AkSps .framer-6h3y9v, .framer-AkSps .framer-jxpwry, .framer-AkSps .framer-74uju5, .framer-AkSps .framer-1ychmeo, .framer-AkSps .framer-1wiltik, .framer-AkSps .framer-96n0iv, .framer-AkSps .framer-1l66nsr, .framer-AkSps .framer-1wcj1jl, .framer-AkSps .framer-4x0px4, .framer-AkSps .framer-19555oh, .framer-AkSps .framer-1844hz3 { gap: 0px; } .framer-AkSps .framer-1j53vem > * { margin: 0px; margin-left: calc(74px / 2); margin-right: calc(74px / 2); } .framer-AkSps .framer-1j53vem > :first-child, .framer-AkSps .framer-155wdo6 > :first-child, .framer-AkSps .framer-6h3y9v > :first-child, .framer-AkSps .framer-74uju5 > :first-child, .framer-AkSps .framer-1wiltik > :first-child, .framer-AkSps .framer-1l66nsr > :first-child, .framer-AkSps .framer-1844hz3 > :first-child { margin-left: 0px; } .framer-AkSps .framer-1j53vem > :last-child, .framer-AkSps .framer-155wdo6 > :last-child, .framer-AkSps .framer-6h3y9v > :last-child, .framer-AkSps .framer-74uju5 > :last-child, .framer-AkSps .framer-1wiltik > :last-child, .framer-AkSps .framer-1l66nsr > :last-child, .framer-AkSps .framer-1844hz3 > :last-child { margin-right: 0px; } .framer-AkSps .framer-1g8ao0t > *, .framer-AkSps .framer-2gem37 > *, .framer-AkSps .framer-11er2li > *, .framer-AkSps .framer-mr3a8g > *, .framer-AkSps .framer-jxpwry > *, .framer-AkSps .framer-1ychmeo > *, .framer-AkSps .framer-96n0iv > *, .framer-AkSps .framer-19555oh > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } .framer-AkSps .framer-1g8ao0t > :first-child, .framer-AkSps .framer-2gem37 > :first-child, .framer-AkSps .framer-tksml3 > :first-child, .framer-AkSps .framer-11er2li > :first-child, .framer-AkSps .framer-mr3a8g > :first-child, .framer-AkSps .framer-jxpwry > :first-child, .framer-AkSps .framer-1ychmeo > :first-child, .framer-AkSps .framer-96n0iv > :first-child, .framer-AkSps .framer-1wcj1jl > :first-child, .framer-AkSps .framer-4x0px4 > :first-child, .framer-AkSps .framer-19555oh > :first-child { margin-top: 0px; } .framer-AkSps .framer-1g8ao0t > :last-child, .framer-AkSps .framer-2gem37 > :last-child, .framer-AkSps .framer-tksml3 > :last-child, .framer-AkSps .framer-11er2li > :last-child, .framer-AkSps .framer-mr3a8g > :last-child, .framer-AkSps .framer-jxpwry > :last-child, .framer-AkSps .framer-1ychmeo > :last-child, .framer-AkSps .framer-96n0iv > :last-child, .framer-AkSps .framer-1wcj1jl > :last-child, .framer-AkSps .framer-4x0px4 > :last-child, .framer-AkSps .framer-19555oh > :last-child { margin-bottom: 0px; } .framer-AkSps .framer-tksml3 > *, .framer-AkSps .framer-4x0px4 > * { margin: 0px; margin-bottom: calc(74px / 2); margin-top: calc(74px / 2); } .framer-AkSps .framer-155wdo6 > *, .framer-AkSps .framer-6h3y9v > *, .framer-AkSps .framer-74uju5 > *, .framer-AkSps .framer-1wiltik > *, .framer-AkSps .framer-1l66nsr > *, .framer-AkSps .framer-1844hz3 > * { margin: 0px; margin-left: calc(40px / 2); margin-right: calc(40px / 2); } .framer-AkSps .framer-1wcj1jl > * { margin: 0px; margin-bottom: calc(20px / 2); margin-top: calc(20px / 2); } }}`,`@media (max-width: 809px) { .framer-AkSps .hidden-14k275 { display: none !important; } .${metadata.bodyClassName}-framer-AkSps { background: #FFFFFF; } .framer-AkSps.framer-mh5p2l { width: 390px; } .framer-AkSps .framer-1ictinb { gap: 17px; height: 748px; justify-content: flex-start; } .framer-AkSps .framer-lwlkr5 { padding: 15px 0px 15px 0px; } .framer-AkSps .framer-ojoshh { gap: 16px; } .framer-AkSps .framer-pwv9pv { height: var(--framer-aspect-ratio-supported, 215px); width: 100%; } .framer-AkSps .framer-nkvfnk { width: 298px; } .framer-AkSps .framer-qukhkl { order: 0; } .framer-AkSps .framer-yuweq6 { order: 1; } .framer-AkSps .framer-1j53vem { flex-direction: column; gap: 50px; justify-content: flex-start; padding: 80px 30px 201px 30px; } .framer-AkSps .framer-11it4s1, .framer-AkSps .framer-bry7t, .framer-AkSps .framer-1vo02nn, .framer-AkSps .framer-oxk1ts, .framer-AkSps .framer-um7jq8, .framer-AkSps .framer-5h7fbt, .framer-AkSps .framer-19ols4i, .framer-AkSps .framer-wfpiuk, .framer-AkSps .framer-1hag0gc, .framer-AkSps .framer-1q3jrv, .framer-AkSps .framer-iezuew, .framer-AkSps .framer-1hkc3x5, .framer-AkSps .framer-1fqtr70 { width: 100%; } .framer-AkSps .framer-162qtoj { overflow: hidden; width: 100%; } .framer-AkSps .framer-u8dman { flex: 1 0 0px; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; } .framer-AkSps .framer-1lhlpgq { gap: 40px; width: 100%; } .framer-AkSps .framer-ynsfjh, .framer-AkSps .framer-obzs2q, .framer-AkSps .framer-1wcj1jl { flex-direction: column; } .framer-AkSps .framer-83fica { align-self: unset; flex: none; height: min-content; order: 1; width: 100%; } .framer-AkSps .framer-129n9sy { flex: 1 0 0px; padding: 20px; width: 1px; } .framer-AkSps .framer-pu99er { flex: none; height: 400px; order: 0; width: 100%; } .framer-AkSps .framer-1rszne8, .framer-AkSps .framer-11t43ly { gap: 50px; padding: 30px 20px 40px 20px; } .framer-AkSps .framer-rx20vu { align-content: center; align-items: center; gap: 6px; } .framer-AkSps .framer-ooo3vq, .framer-AkSps .framer-g1raiq { flex: none; width: 100%; } .framer-AkSps .framer-19xqbvh { flex-direction: column; height: min-content; } .framer-AkSps .framer-8p00k { flex: none; height: min-content; order: 0; width: 100%; } .framer-AkSps .framer-1uubtyp { flex: none; height: var(--framer-aspect-ratio-supported, 310px); order: 1; width: 100%; } .framer-AkSps .framer-t0m58f { gap: 20px; } .framer-AkSps .framer-1g8ao0t, .framer-AkSps .framer-2gem37 { flex-direction: column; gap: 20px; } .framer-AkSps .framer-e1gw2t, .framer-AkSps .framer-1hllesi, .framer-AkSps .framer-z8srw5, .framer-AkSps .framer-fhx33x, .framer-AkSps .framer-105ffjr { flex: none; height: min-content; width: 100%; } .framer-AkSps .framer-1h5w21o, .framer-AkSps .framer-1tw193j, .framer-AkSps .framer-1rs7acz, .framer-AkSps .framer-1gbd5lg, .framer-AkSps .framer-4f0e50 { gap: 22px; } .framer-AkSps .framer-1ejvjit { width: 327px; } .framer-AkSps .framer-1j1n4g5, .framer-AkSps .framer-h2aqun, .framer-AkSps .framer-1mmpz25, .framer-AkSps .framer-12ndfx4, .framer-AkSps .framer-dkw4dc, .framer-AkSps .framer-d7ybfx, .framer-AkSps .framer-wh66vg { white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; } .framer-AkSps .framer-tksml3, .framer-AkSps .framer-4x0px4 { flex-direction: column; gap: 50px; justify-content: flex-start; padding: 70px 20px 80px 20px; } .framer-AkSps .framer-51ccj1, .framer-AkSps .framer-2i1rrk { padding: 5px 5px 5px 10px; position: relative; top: unset; } .framer-AkSps .framer-1ecawx8, .framer-AkSps .framer-16m8d4d { overflow: hidden; } .framer-AkSps .framer-11er2li, .framer-AkSps .framer-mr3a8g, .framer-AkSps .framer-jxpwry, .framer-AkSps .framer-1ychmeo, .framer-AkSps .framer-96n0iv, .framer-AkSps .framer-19555oh { flex-direction: column; gap: 20px; padding: 20px; } .framer-AkSps .framer-164nvwz, .framer-AkSps .framer-18m4vuh, .framer-AkSps .framer-enhq41, .framer-AkSps .framer-12abgfb, .framer-AkSps .framer-nviezq, .framer-AkSps .framer-d8pr2a { flex: none; padding: 25px; width: 100%; } .framer-AkSps .framer-155wdo6, .framer-AkSps .framer-6h3y9v, .framer-AkSps .framer-74uju5, .framer-AkSps .framer-1wiltik, .framer-AkSps .framer-1l66nsr, .framer-AkSps .framer-1844hz3 { flex-direction: column; gap: 20px; justify-content: flex-start; } .framer-AkSps .framer-1rodpf2, .framer-AkSps .framer-k01kl8, .framer-AkSps .framer-1j6r71s, .framer-AkSps .framer-gsmq3v, .framer-AkSps .framer-13o18ry, .framer-AkSps .framer-1kww0cr { flex: 1 0 0px; width: 1px; } .framer-AkSps .framer-1q94x6m, .framer-AkSps .framer-oz1b5f, .framer-AkSps .framer-1lgguz4, .framer-AkSps .framer-ztfhfo { aspect-ratio: unset; height: 84px; width: 100%; } .framer-AkSps .framer-1v5ddd { padding: 60px 20px 60px 20px; } .framer-AkSps .framer-1n3z1t { padding: 0px 0px 40px 0px; } .framer-AkSps .framer-pzuioc { padding: 100px 20px 100px 20px; } .framer-AkSps .framer-uypo1f, .framer-AkSps .framer-1t0t99t, .framer-AkSps .framer-1pkbatl { height: min-content; width: 100%; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-AkSps .framer-1ictinb, .framer-AkSps .framer-ojoshh, .framer-AkSps .framer-1j53vem, .framer-AkSps .framer-1lhlpgq, .framer-AkSps .framer-ynsfjh, .framer-AkSps .framer-1rszne8, .framer-AkSps .framer-rx20vu, .framer-AkSps .framer-obzs2q, .framer-AkSps .framer-19xqbvh, .framer-AkSps .framer-11t43ly, .framer-AkSps .framer-t0m58f, .framer-AkSps .framer-1g8ao0t, .framer-AkSps .framer-1h5w21o, .framer-AkSps .framer-1tw193j, .framer-AkSps .framer-1rs7acz, .framer-AkSps .framer-2gem37, .framer-AkSps .framer-1gbd5lg, .framer-AkSps .framer-4f0e50, .framer-AkSps .framer-tksml3, .framer-AkSps .framer-11er2li, .framer-AkSps .framer-155wdo6, .framer-AkSps .framer-mr3a8g, .framer-AkSps .framer-6h3y9v, .framer-AkSps .framer-jxpwry, .framer-AkSps .framer-74uju5, .framer-AkSps .framer-1ychmeo, .framer-AkSps .framer-1wiltik, .framer-AkSps .framer-96n0iv, .framer-AkSps .framer-1l66nsr, .framer-AkSps .framer-1wcj1jl, .framer-AkSps .framer-4x0px4, .framer-AkSps .framer-19555oh, .framer-AkSps .framer-1844hz3 { gap: 0px; } .framer-AkSps .framer-1ictinb > * { margin: 0px; margin-bottom: calc(17px / 2); margin-top: calc(17px / 2); } .framer-AkSps .framer-1ictinb > :first-child, .framer-AkSps .framer-ojoshh > :first-child, .framer-AkSps .framer-1j53vem > :first-child, .framer-AkSps .framer-1lhlpgq > :first-child, .framer-AkSps .framer-ynsfjh > :first-child, .framer-AkSps .framer-1rszne8 > :first-child, .framer-AkSps .framer-rx20vu > :first-child, .framer-AkSps .framer-obzs2q > :first-child, .framer-AkSps .framer-19xqbvh > :first-child, .framer-AkSps .framer-11t43ly > :first-child, .framer-AkSps .framer-t0m58f > :first-child, .framer-AkSps .framer-1g8ao0t > :first-child, .framer-AkSps .framer-1h5w21o > :first-child, .framer-AkSps .framer-1tw193j > :first-child, .framer-AkSps .framer-1rs7acz > :first-child, .framer-AkSps .framer-2gem37 > :first-child, .framer-AkSps .framer-1gbd5lg > :first-child, .framer-AkSps .framer-4f0e50 > :first-child, .framer-AkSps .framer-tksml3 > :first-child, .framer-AkSps .framer-11er2li > :first-child, .framer-AkSps .framer-155wdo6 > :first-child, .framer-AkSps .framer-mr3a8g > :first-child, .framer-AkSps .framer-6h3y9v > :first-child, .framer-AkSps .framer-jxpwry > :first-child, .framer-AkSps .framer-74uju5 > :first-child, .framer-AkSps .framer-1ychmeo > :first-child, .framer-AkSps .framer-1wiltik > :first-child, .framer-AkSps .framer-96n0iv > :first-child, .framer-AkSps .framer-1l66nsr > :first-child, .framer-AkSps .framer-1wcj1jl > :first-child, .framer-AkSps .framer-4x0px4 > :first-child, .framer-AkSps .framer-19555oh > :first-child, .framer-AkSps .framer-1844hz3 > :first-child { margin-top: 0px; } .framer-AkSps .framer-1ictinb > :last-child, .framer-AkSps .framer-ojoshh > :last-child, .framer-AkSps .framer-1j53vem > :last-child, .framer-AkSps .framer-1lhlpgq > :last-child, .framer-AkSps .framer-ynsfjh > :last-child, .framer-AkSps .framer-1rszne8 > :last-child, .framer-AkSps .framer-rx20vu > :last-child, .framer-AkSps .framer-obzs2q > :last-child, .framer-AkSps .framer-19xqbvh > :last-child, .framer-AkSps .framer-11t43ly > :last-child, .framer-AkSps .framer-t0m58f > :last-child, .framer-AkSps .framer-1g8ao0t > :last-child, .framer-AkSps .framer-1h5w21o > :last-child, .framer-AkSps .framer-1tw193j > :last-child, .framer-AkSps .framer-1rs7acz > :last-child, .framer-AkSps .framer-2gem37 > :last-child, .framer-AkSps .framer-1gbd5lg > :last-child, .framer-AkSps .framer-4f0e50 > :last-child, .framer-AkSps .framer-tksml3 > :last-child, .framer-AkSps .framer-11er2li > :last-child, .framer-AkSps .framer-155wdo6 > :last-child, .framer-AkSps .framer-mr3a8g > :last-child, .framer-AkSps .framer-6h3y9v > :last-child, .framer-AkSps .framer-jxpwry > :last-child, .framer-AkSps .framer-74uju5 > :last-child, .framer-AkSps .framer-1ychmeo > :last-child, .framer-AkSps .framer-1wiltik > :last-child, .framer-AkSps .framer-96n0iv > :last-child, .framer-AkSps .framer-1l66nsr > :last-child, .framer-AkSps .framer-1wcj1jl > :last-child, .framer-AkSps .framer-4x0px4 > :last-child, .framer-AkSps .framer-19555oh > :last-child, .framer-AkSps .framer-1844hz3 > :last-child { margin-bottom: 0px; } .framer-AkSps .framer-ojoshh > * { margin: 0px; margin-bottom: calc(16px / 2); margin-top: calc(16px / 2); } .framer-AkSps .framer-1j53vem > *, .framer-AkSps .framer-1rszne8 > *, .framer-AkSps .framer-19xqbvh > *, .framer-AkSps .framer-11t43ly > *, .framer-AkSps .framer-tksml3 > *, .framer-AkSps .framer-4x0px4 > * { margin: 0px; margin-bottom: calc(50px / 2); margin-top: calc(50px / 2); } .framer-AkSps .framer-1lhlpgq > * { margin: 0px; margin-bottom: calc(40px / 2); margin-top: calc(40px / 2); } .framer-AkSps .framer-ynsfjh > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-AkSps .framer-rx20vu > * { margin: 0px; margin-bottom: calc(6px / 2); margin-top: calc(6px / 2); } .framer-AkSps .framer-obzs2q > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-AkSps .framer-t0m58f > *, .framer-AkSps .framer-1g8ao0t > *, .framer-AkSps .framer-2gem37 > *, .framer-AkSps .framer-11er2li > *, .framer-AkSps .framer-155wdo6 > *, .framer-AkSps .framer-mr3a8g > *, .framer-AkSps .framer-6h3y9v > *, .framer-AkSps .framer-jxpwry > *, .framer-AkSps .framer-74uju5 > *, .framer-AkSps .framer-1ychmeo > *, .framer-AkSps .framer-1wiltik > *, .framer-AkSps .framer-96n0iv > *, .framer-AkSps .framer-1l66nsr > *, .framer-AkSps .framer-1wcj1jl > *, .framer-AkSps .framer-19555oh > *, .framer-AkSps .framer-1844hz3 > * { margin: 0px; margin-bottom: calc(20px / 2); margin-top: calc(20px / 2); } .framer-AkSps .framer-1h5w21o > *, .framer-AkSps .framer-1tw193j > *, .framer-AkSps .framer-1rs7acz > *, .framer-AkSps .framer-1gbd5lg > *, .framer-AkSps .framer-4f0e50 > * { margin: 0px; margin-bottom: calc(22px / 2); margin-top: calc(22px / 2); } }}`,...sharedStyle.css,...sharedStyle1.css,...sharedStyle2.css,...sharedStyle3.css,...sharedStyle4.css,...sharedStyle5.css,...sharedStyle6.css,'.framer-AkSps[data-border=\"true\"]::after, .framer-AkSps [data-border=\"true\"]::after { content: \"\"; border-width: var(--border-top-width, 0) var(--border-right-width, 0) var(--border-bottom-width, 0) var(--border-left-width, 0); border-color: var(--border-color, none); border-style: var(--border-style, none); width: 100%; height: 100%; position: absolute; box-sizing: border-box; left: 0; top: 0; border-radius: inherit; pointer-events: none; }'];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 9213.5\n * @framerIntrinsicWidth 1200\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"AMSVeVGk9\":{\"layout\":[\"fixed\",\"auto\"]},\"QvWdiI_4X\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n * @framerResponsiveScreen\n */const Framergl_MEdXSR=withCSS(Component,css,\"framer-AkSps\");export default Framergl_MEdXSR;Framergl_MEdXSR.displayName=\"Home\";Framergl_MEdXSR.defaultProps={height:9213.5,width:1200};addFonts(Framergl_MEdXSR,[{explicitInter:true,fonts:[{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/5vvr9Vy74if2I6bQbJvbw7SY1pQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/EOr0mi4hNtlgWNn9if640EZzXCo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Y9k9QrlZAqio88Klkmbd8VoMQc.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/OYrD2tBIBPvoJXiIHnLoOXnY9M.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/JeYwfuaPfZHQhEG8U5gtPDZ7WQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/vQyevYAyHtARFwPqUzQGpnDs.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/b6Y37FthZeALduNqHicBT6FutY.woff2\",weight:\"400\"},{family:\"Inter\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/inter/v18/UcCO3FwrK3iLTeHuS_nVMrMxCp50SjIw2boKoduKmMEVuGKYMZ1rib2Bg-4.woff2\",weight:\"600\"},{family:\"Inter\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/inter/v18/UcCO3FwrK3iLTeHuS_nVMrMxCp50SjIw2boKoduKmMEVuFuYMZ1rib2Bg-4.woff2\",weight:\"700\"},{family:\"Instrument Sans\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/instrumentsans/v1/pximypc9vsFDm051Uf6KVwgkfoSxQ0GsQv8ToedPibnr-yp2JGEJOH9npST3-QfwmS0v3_7Y.woff2\",weight:\"500\"},{family:\"Instrument Sans\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/instrumentsans/v1/pximypc9vsFDm051Uf6KVwgkfoSxQ0GsQv8ToedPibnr-yp2JGEJOH9npSQi_gfwmS0v3_7Y.woff2\",weight:\"700\"},{family:\"Instrument Sans\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/instrumentsans/v1/pximypc9vsFDm051Uf6KVwgkfoSxQ0GsQv8ToedPibnr-yp2JGEJOH9npSTF-QfwmS0v3_7Y.woff2\",weight:\"400\"},{family:\"Instrument Sans\",source:\"google\",style:\"italic\",url:\"https://fonts.gstatic.com/s/instrumentsans/v1/pxigypc9vsFDm051Uf6KVwgkfoSbSnNPooZAN0lInHGpCWNE27lgU-XJojENugixkywN2u7YUwU.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/DpPBYI0sL4fYLgAkX8KXOPVt7c.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/4RAEQdEOrcnDkhHiiCbJOw92Lk.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/1K3W8DizY3v4emK8Mb08YHxTbs.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/tUSCtfYVM1I1IchuyCwz9gDdQ.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/VgYFWiwsAC5OYxAycRXXvhze58.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/DXD0Q7LSl7HEvDzucnyLnGBHM.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/GIryZETIX4IFypco5pYZONKhJIo.woff2\",weight:\"700\"},{family:\"Inter Tight\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/intertight/v7/NGSnv5HMAFg6IuGlBNMjxJEL2VmU3NS7Z2mjPQ-qWSRToK8EPg.woff2\",weight:\"500\"},{family:\"Inter Tight\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/intertight/v7/NGSnv5HMAFg6IuGlBNMjxJEL2VmU3NS7Z2mj6AiqWSRToK8EPg.woff2\",weight:\"700\"},{family:\"Inter\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/inter/v18/UcCO3FwrK3iLTeHuS_nVMrMxCp50SjIw2boKoduKmMEVuI6fMZ1rib2Bg-4.woff2\",weight:\"500\"},{family:\"Inter\",source:\"google\",style:\"italic\",url:\"https://fonts.gstatic.com/s/inter/v18/UcCM3FwrK3iLTcvneQg7Ca725JhhKnNqk4j1ebLhAm8SrXTc69thiJ-Ek-7MeA.woff2\",weight:\"500\"},{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/5A3Ce6C9YYmCjpQx9M4inSaKU.woff2\",weight:\"500\"},{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/Qx95Xyt0Ka3SGhinnbXIGpEIyP4.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/6mJuEAguuIuMog10gGvH5d3cl8.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/xYYWaj7wCU5zSQH0eXvSaS19wo.woff2\",weight:\"500\"},{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/otTaNuNpVK4RbdlT7zDDdKvQBA.woff2\",weight:\"500\"},{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/d3tHnaQIAeqiE5hGcRw4mmgWYU.woff2\",weight:\"500\"},{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/DolVirEGb34pEXEp8t8FQBSK4.woff2\",weight:\"500\"},{family:\"Inter\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/inter/v18/UcCO3FwrK3iLTeHuS_nVMrMxCp50SjIw2boKoduKmMEVuLyfMZ1rib2Bg-4.woff2\",weight:\"400\"}]},...NavbarLogoDarkFonts,...YouTubeFonts,...IconoirFonts,...TickerFonts,...CalendlyPanelFonts,...ButtonFonts,...GlobalFooterFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts),...getFontsFromSharedStyle(sharedStyle2.fonts),...getFontsFromSharedStyle(sharedStyle3.fonts),...getFontsFromSharedStyle(sharedStyle4.fonts),...getFontsFromSharedStyle(sharedStyle5.fonts),...getFontsFromSharedStyle(sharedStyle6.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"Framergl_MEdXSR\",\"slots\":[],\"annotations\":{\"framerDisplayContentsDiv\":\"false\",\"framerResponsiveScreen\":\"\",\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicWidth\":\"1200\",\"framerIntrinsicHeight\":\"9213.5\",\"framerImmutableVariables\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"AMSVeVGk9\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"QvWdiI_4X\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerContractVersion\":\"1\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}"],
  "mappings": "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",
  "names": ["MAX_DUPLICATED_ITEMS", "directionTransformers", "offset", "supportsAcceleratedAnimations", "Ticker", "props", "slots", "gap", "padding", "paddingPerSide", "paddingTop", "paddingRight", "paddingBottom", "paddingLeft", "speed", "hoverFactor", "direction", "alignment", "sizingOptions", "fadeOptions", "style", "fadeContent", "overflow", "fadeWidth", "fadeInset", "fadeAlpha", "widthType", "heightType", "paddingValue", "isCanvas", "RenderTarget", "filteredSlots", "numChildren", "j", "hasChildren", "isHorizontal", "useMotionValue", "transformer", "transform", "useTransform", "parentRef", "pe", "childrenRef", "se", "W", "size", "setSize", "ye", "clonedChildren", "dupedChildren", "duplicateBy", "opacity", "measure", "te", "parentLength", "start", "childrenLength", "childrenStyles", "initialResize", "ue", "frame", "resize", "contentSize", "child", "index", "_child_props", "_child_props1", "_child_props2", "_child_props3", "ref", "p", "LayoutGroup", "q", "i", "childIndex", "_child_props4", "_child_props5", "animateToValue", "initialTime", "prevTime", "xOrY", "isHover", "isReducedMotion", "useReducedMotion", "listRef", "animationRef", "isInView", "useInView", "useAnimationFrame", "t", "delta", "wrap", "fadeDirection", "fadeWidthStart", "fadeWidthEnd", "fadeInsetStart", "clamp", "fadeInsetEnd", "fadeMask", "containerStyle", "u", "motion", "isValidNumber", "placeholderStyles", "emojiStyles", "titleStyles", "subtitleStyles", "addPropertyControls", "ControlType", "num", "min", "max", "value", "MotionDivWithFX", "withFX", "motion", "enabledGestures", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "transition2", "animation", "transformTemplate1", "_", "t", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "x", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "_humanReadableVariantMap_props_variant", "_ref", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "ref1", "pe", "isDisplayed", "isDisplayed1", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "u", "cx", "RichText2", "css", "FramerujCXJ18XM", "withCSS", "ujCXJ18XM_default", "addPropertyControls", "ControlType", "addFonts", "NavbarLogoDarkFonts", "getFonts", "nq2WHBAnF_default", "RichTextWithOptimizedAppearEffect", "withOptimizedAppearEffect", "RichText2", "YouTubeFonts", "Youtube", "ImageWithOptimizedAppearEffect", "Image2", "MotionDivWithOptimizedAppearEffect", "motion", "RichTextWithFX", "withFX", "MotionDivWithFX", "IconoirFonts", "Icon", "TickerFonts", "Ticker", "CalendlyPanelFonts", "Fjx9tIbfY_default", "ButtonFonts", "ujCXJ18XM_default", "GlobalFooterFonts", "gNLnzMjVf_default", "breakpoints", "serializationHash", "variantClassNames", "transition1", "animation", "animation1", "transition2", "animation2", "animation3", "animation4", "animation5", "transition3", "animation6", "animation7", "transition4", "animation8", "transformTemplate1", "_", "t", "formVariants", "form", "variants", "currentVariant", "_variants_success", "_variants_pending", "_variants_error", "_variants_incomplete", "metadata", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "_humanReadableVariantMap_props_variant", "_ref", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "variant", "restProps", "ue", "metadata1", "robotsTag", "ie", "_document_querySelector", "bodyCls", "body", "c", "baseVariant", "hydratedBaseVariant", "useHydratedBreakpointVariants", "breakpoints", "gestureVariant", "ref1", "pe", "useRouteElementId", "ref2", "id1", "ref3", "defaultLayoutId", "ae", "sharedStyleClassNames", "useCustomCursors", "p", "GeneratedComponentContext", "u", "LayoutGroup", "motion", "cx", "PropertyOverrides2", "ComponentViewportProvider", "Container", "nq2WHBAnF_default", "RichTextWithOptimizedAppearEffect", "x", "ImageWithOptimizedAppearEffect", "Youtube", "MotionDivWithOptimizedAppearEffect", "RichText2", "Link", "RichTextWithFX", "MotionDivWithFX", "getLoadingLazyAtYPosition", "Image2", "Icon", "Ticker", "Fjx9tIbfY_default", "FormContainer", "formState", "l", "FormPlainTextInput2", "ujCXJ18XM_default", "gNLnzMjVf_default", "css", "Framergl_MEdXSR", "withCSS", "gl_MEdXSR_default", "addFonts", "NavbarLogoDarkFonts", "YouTubeFonts", "IconoirFonts", "TickerFonts", "CalendlyPanelFonts", "ButtonFonts", "GlobalFooterFonts", "getFontsFromSharedStyle", "fonts", "__FramerMetadata__"]
}
