{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/B2xAlJLcN0gOnt11mSPw/LHz3bw67SqHRmnCKTlE6/Ticker.js", "ssg:https://framerusercontent.com/modules/67l1nqQNQ06Vc7jHx4cp/7XRb373kCBbDYVM06q80/jaFc83PwF.js"],
  "sourcesContent": ["import{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{Children,useEffect,useState,useRef,useMemo,useCallback,cloneElement,startTransition}from\"react\";import{addPropertyControls,ControlType,RenderTarget}from\"framer\";import{useReducedMotion,LayoutGroup,useInView,useMotionValue,useTransform,motion,frame}from\"framer-motion\";import{resize}from\"@motionone/dom\";const MAX_DUPLICATED_ITEMS=100;const directionTransformers={left:offset=>`translateX(-${offset}px)`,right:offset=>`translateX(${offset}px)`,top:offset=>`translateY(-${offset}px)`,bottom:offset=>`translateY(${offset}px)`};/**\n *\n * @framerIntrinsicWidth 400\n * @framerIntrinsicHeight 200\n *\n * @framerDisableUnlink\n *\n * @framerSupportedLayoutWidth fixed\n * @framerSupportedLayoutHeight fixed\n */export default function Ticker(props){/* Props */let{slots=[],gap,padding,paddingPerSide,paddingTop,paddingRight,paddingBottom,paddingLeft,speed,hoverFactor,direction,alignment,sizingOptions,fadeOptions,style}=props;const{fadeContent,overflow,fadeWidth,fadeInset,fadeAlpha}=fadeOptions;const{widthType,heightType}=sizingOptions;const paddingValue=paddingPerSide?`${paddingTop}px ${paddingRight}px ${paddingBottom}px ${paddingLeft}px`:`${padding}px`;/* Checks */const currentTarget=RenderTarget.current();const isCanvas=currentTarget===RenderTarget.canvas||currentTarget===RenderTarget.export;// Remove empty slots (such as hidden layers)\nconst filteredSlots=slots.filter(Boolean);const numChildren=Children.count(filteredSlots);const hasChildren=numChildren>0;if(direction===true){direction=\"left\";}const isHorizontal=direction===\"left\"||direction===\"right\";const offset=useMotionValue(0);const transformer=directionTransformers[direction];const transform=useTransform(offset,transformer);/* Refs and State */const parentRef=useRef(null);const childrenRef=useMemo(()=>{return[{current:null},{current:null}];},[]);const[size,setSize]=useState({parent:null,children:null});/* Arrays */let clonedChildren=null;let dupedChildren=[];/* Duplicate value */let duplicateBy=0;let opacity=0;if(isCanvas){duplicateBy=numChildren?Math.floor(10/numChildren):0;opacity=1;}if(!isCanvas&&hasChildren&&size.parent){duplicateBy=Math.round(size.parent/size.children*2)+1;duplicateBy=Math.min(duplicateBy,MAX_DUPLICATED_ITEMS);opacity=1;}/* Measure parent and child */const measure=useCallback(()=>{if(hasChildren&&parentRef.current){const parentLength=isHorizontal?parentRef.current.offsetWidth:parentRef.current.offsetHeight;const start=childrenRef[0].current?isHorizontal?childrenRef[0].current.offsetLeft:childrenRef[0].current.offsetTop:0;const end=childrenRef[1].current?isHorizontal?childrenRef[1].current.offsetLeft+childrenRef[1].current.offsetWidth:childrenRef[1].current.offsetTop+childrenRef[1].current.offsetHeight:0;const childrenLength=end-start+gap;startTransition(()=>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)=>{let ref;if(index===0){ref=childrenRef[0];}if(index===filteredSlots.length-1){ref=childrenRef[1];}const size={width:widthType?child.props?.width:\"100%\",height:heightType?child.props?.height:\"100%\"};return /*#__PURE__*/_jsx(LayoutGroup,{inherit:\"id\",children:/*#__PURE__*/_jsx(\"li\",{ref:ref,style:size,children:/*#__PURE__*/cloneElement(child,{style:{...child.props?.style,...size,flexShrink:0,...childrenStyles},layoutId:child.props.layoutId?child.props.layoutId+\"-original-\"+index:undefined},child.props?.children)})});});}const isInView=isCanvas?true:useInView(parentRef);if(!isCanvas){for(let i=0;i<duplicateBy;i++){dupedChildren=dupedChildren.concat(Children.map(filteredSlots,(child,childIndex)=>{const size={width:widthType?child.props?.width:\"100%\",height:heightType?child.props?.height:\"100%\",willChange:!isInView?undefined:\"transform\"};return /*#__PURE__*/_jsx(LayoutGroup,{inherit:\"id\",children:/*#__PURE__*/_jsx(\"li\",{style:size,\"aria-hidden\":true,children:/*#__PURE__*/cloneElement(child,{key:i+\" \"+childIndex,style:{...child.props?.style,width:widthType?child.props?.width:\"100%\",height:heightType?child.props?.height:\"100%\",flexShrink:0,...childrenStyles},layoutId:child.props.layoutId?child.props.layoutId+\"-dupe-\"+i:undefined},child.props?.children)},i+\"li\"+childIndex)},i+\"lg\"+childIndex);}));}}const animateToValue=size.children+size.children*Math.round(size.parent/size.children);const initialTime=useRef(null);const prevTime=useRef(null);const xOrY=useRef(0);const isHover=useRef(false);const isReducedMotion=useReducedMotion();const listRef=useRef(null);const animationRef=useRef(null);/**\n     * Setup animations\n     */if(!isCanvas){useEffect(()=>{if(isReducedMotion||!animateToValue||!speed){return;}animationRef.current=listRef.current.animate({transform:[transformer(0),transformer(animateToValue)]},{duration:Math.abs(animateToValue)/speed*1e3,iterations:Infinity,easing:\"linear\"});return()=>animationRef.current.cancel();},[hoverFactor,animateToValue,speed]);const playOrPause=useCallback(()=>{if(!animationRef.current)return;const hidden=document.hidden;if(isInView&&!hidden&&animationRef.current.playState===\"paused\"){animationRef.current.play();}else if((!isInView||hidden)&&animationRef.current.playState===\"running\"){animationRef.current.pause();}},[isInView]);useEffect(()=>{playOrPause();},[isInView]);useEffect(()=>{document.addEventListener(\"visibilitychange\",playOrPause);return()=>{document.removeEventListener(\"visibilitychange\",playOrPause);};},[playOrPause]);}/* Fades */const fadeDirection=isHorizontal?\"to right\":\"to bottom\";const fadeWidthStart=fadeWidth/2;const fadeWidthEnd=100-fadeWidth/2;const fadeInsetStart=clamp(fadeInset,0,fadeWidthStart);const fadeInsetEnd=100-fadeInset;const fadeMask=`linear-gradient(${fadeDirection}, rgba(0, 0, 0, ${fadeAlpha}) ${fadeInsetStart}%, rgba(0, 0, 0, 1) ${fadeWidthStart}%, rgba(0, 0, 0, 1) ${fadeWidthEnd}%, rgba(0, 0, 0, ${fadeAlpha}) ${fadeInsetEnd}%)`;/* Empty state */if(!hasChildren){return /*#__PURE__*/_jsxs(\"section\",{style:placeholderStyles,children:[/*#__PURE__*/_jsx(\"div\",{style:emojiStyles,children:\"\u2728\"}),/*#__PURE__*/_jsx(\"p\",{style:titleStyles,children:\"Connect to Content\"}),/*#__PURE__*/_jsx(\"p\",{style:subtitleStyles,children:\"Add layers or components to infinitely loop on your page.\"})]});}return /*#__PURE__*/_jsx(\"section\",{style:{...containerStyle,opacity:opacity,WebkitMaskImage:fadeContent?fadeMask:undefined,maskImage:fadeContent?fadeMask:undefined,overflow:overflow?\"visible\":\"hidden\",padding:paddingValue},ref:parentRef,children:/*#__PURE__*/_jsxs(motion.ul,{ref:listRef,style:{...containerStyle,gap:gap,top:direction===\"bottom\"&&isValidNumber(animateToValue)?-animateToValue:undefined,left:direction===\"right\"&&isValidNumber(animateToValue)?-animateToValue:undefined,placeItems:alignment,position:\"relative\",flexDirection:isHorizontal?\"row\":\"column\",...style,willChange:isCanvas||!isInView?\"auto\":\"transform\",transform:transformer(0)},onMouseEnter:()=>{isHover.current=true;if(animationRef.current){// TODO Replace with updatePlaybackRate when Chrome bugs sorted\nanimationRef.current.playbackRate=hoverFactor;}},onMouseLeave:()=>{isHover.current=false;if(animationRef.current){// TODO Replace with updatePlaybackRate when Chrome bugs sorted\nanimationRef.current.playbackRate=1;}},children:[clonedChildren,dupedChildren]})});}/* Default Properties */Ticker.defaultProps={gap:10,padding:10,sizingOptions:{widthType:true,heightType:true},fadeOptions:{fadeContent:true,overflow:false,fadeWidth:25,fadeAlpha:0,fadeInset:0},direction:true};/* Property Controls */addPropertyControls(Ticker,{slots:{type:ControlType.Array,title:\"Children\",control:{type:ControlType.ComponentInstance}},speed:{type:ControlType.Number,title:\"Speed\",min:0,max:1e3,defaultValue:100,unit:\"%\",displayStepper:true,step:5},direction:{type:ControlType.Enum,title:\"Direction\",options:[\"left\",\"right\",\"top\",\"bottom\"],optionIcons:[\"direction-left\",\"direction-right\",\"direction-up\",\"direction-down\"],optionTitles:[\"Left\",\"Right\",\"Top\",\"Bottom\"],defaultValue:\"left\",displaySegmentedControl:true},alignment:{type:ControlType.Enum,title:\"Align\",options:[\"flex-start\",\"center\",\"flex-end\"],optionIcons:{direction:{right:[\"align-top\",\"align-middle\",\"align-bottom\"],left:[\"align-top\",\"align-middle\",\"align-bottom\"],top:[\"align-left\",\"align-center\",\"align-right\"],bottom:[\"align-left\",\"align-center\",\"align-right\"]}},defaultValue:\"center\",displaySegmentedControl:true},gap:{type:ControlType.Number,title:\"Gap\"},padding:{title:\"Padding\",type:ControlType.FusedNumber,toggleKey:\"paddingPerSide\",toggleTitles:[\"Padding\",\"Padding per side\"],valueKeys:[\"paddingTop\",\"paddingRight\",\"paddingBottom\",\"paddingLeft\"],valueLabels:[\"T\",\"R\",\"B\",\"L\"],min:0},sizingOptions:{type:ControlType.Object,title:\"Sizing\",controls:{widthType:{type:ControlType.Boolean,title:\"Width\",enabledTitle:\"Auto\",disabledTitle:\"Stretch\",defaultValue:true},heightType:{type:ControlType.Boolean,title:\"Height\",enabledTitle:\"Auto\",disabledTitle:\"Stretch\",defaultValue:true}}},fadeOptions:{type:ControlType.Object,title:\"Clipping\",controls:{fadeContent:{type:ControlType.Boolean,title:\"Fade\",defaultValue:true},overflow:{type:ControlType.Boolean,title:\"Overflow\",enabledTitle:\"Show\",disabledTitle:\"Hide\",defaultValue:false,hidden(props){return props.fadeContent===true;}},fadeWidth:{type:ControlType.Number,title:\"Width\",defaultValue:25,min:0,max:100,unit:\"%\",hidden(props){return props.fadeContent===false;}},fadeInset:{type:ControlType.Number,title:\"Inset\",defaultValue:0,min:0,max:100,unit:\"%\",hidden(props){return props.fadeContent===false;}},fadeAlpha:{type:ControlType.Number,title:\"Opacity\",defaultValue:0,min:0,max:1,step:.05,hidden(props){return props.fadeContent===false;}}}},hoverFactor:{type:ControlType.Number,title:\"Hover\",min:0,max:1,unit:\"x\",defaultValue:1,step:.1,displayStepper:true,description:\"Slows down the speed while you are hovering.\"}});/* Placeholder Styles */const containerStyle={display:\"flex\",width:\"100%\",height:\"100%\",maxWidth:\"100%\",maxHeight:\"100%\",placeItems:\"center\",margin:0,padding:0,listStyleType:\"none\",textIndent:\"none\"};/* Styles */const placeholderStyles={display:\"flex\",width:\"100%\",height:\"100%\",placeContent:\"center\",placeItems:\"center\",flexDirection:\"column\",color:\"#96F\",background:\"rgba(136, 85, 255, 0.1)\",fontSize:11,overflow:\"hidden\",padding:\"20px 20px 30px 20px\"};const emojiStyles={fontSize:32,marginBottom:10};const titleStyles={margin:0,marginBottom:10,fontWeight:600,textAlign:\"center\"};const subtitleStyles={margin:0,opacity:.7,maxWidth:150,lineHeight:1.5,textAlign:\"center\"};/* Clamp function, used for fadeInset */const clamp=(num,min,max)=>Math.min(Math.max(num,min),max);const isValidNumber=value=>typeof value===\"number\"&&!isNaN(value);\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"Ticker\",\"slots\":[],\"annotations\":{\"framerIntrinsicWidth\":\"400\",\"framerSupportedLayoutWidth\":\"fixed\",\"framerDisableUnlink\":\"*\",\"framerIntrinsicHeight\":\"200\",\"framerContractVersion\":\"1\",\"framerSupportedLayoutHeight\":\"fixed\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Ticker.map", "// Generated by Framer (ab692b1)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,ComponentViewportProvider,Container,cx,GeneratedComponentContext,getFonts,getFontsFromSharedStyle,getLoadingLazyAtYPosition,Image,Link,PropertyOverrides,ResolveLinks,RichText,SVG,useComponentViewport,useCustomCursors,useHydratedBreakpointVariants,useIsOnFramerCanvas,useLocaleInfo,useRouteElementId,useRouter,withCodeBoundaryForOverrides,withCSS,withFX,withOptimizedAppearEffect}from\"framer\";import{LayoutGroup,motion}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import Ticker1 from\"https://framerusercontent.com/modules/B2xAlJLcN0gOnt11mSPw/LHz3bw67SqHRmnCKTlE6/Ticker.js\";import Ticker from\"https://framerusercontent.com/modules/B2xAlJLcN0gOnt11mSPw/RLUeKLNmERbgkhrJQwKX/Ticker.js\";import Review from\"#framer/local/canvasComponent/f7vEVQgDx/f7vEVQgDx.js\";import Footer from\"#framer/local/canvasComponent/i5rPRTdxN/i5rPRTdxN.js\";import CTAButtonOld from\"#framer/local/canvasComponent/IRm4q5HRg/IRm4q5HRg.js\";import TopMenu from\"#framer/local/canvasComponent/TY1QOUEWM/TY1QOUEWM.js\";import Review_2 from\"#framer/local/canvasComponent/YeB8I31zk/YeB8I31zk.js\";import{withHighlightColor1}from\"#framer/local/codeFile/heafph0/Highlighted.js\";import*as sharedStyle1 from\"#framer/local/css/EsFVOJYdO/EsFVOJYdO.js\";import*as sharedStyle from\"#framer/local/css/ip3PG18zd/ip3PG18zd.js\";import metadataProvider from\"#framer/local/webPageMetadata/jaFc83PwF/jaFc83PwF.js\";const TopMenuFonts=getFonts(TopMenu);const RichTextWithHighlightColor11lf2uawWithOptimizedAppearEffect=withOptimizedAppearEffect(withCodeBoundaryForOverrides(RichText,{nodeId:\"cellkuaQX\",override:withHighlightColor1,scopeId:\"jaFc83PwF\"}));const TickerFonts=getFonts(Ticker);const RichTextWithHighlightColor1k4mnom=withCodeBoundaryForOverrides(RichText,{nodeId:\"o2FIb5YW6\",override:withHighlightColor1,scopeId:\"jaFc83PwF\"});const CTAButtonOldFonts=getFonts(CTAButtonOld);const ImageWithFX=withFX(Image);const RichTextWithHighlightColor17rass8=withCodeBoundaryForOverrides(RichText,{nodeId:\"iuahILKHI\",override:withHighlightColor1,scopeId:\"jaFc83PwF\"});const RichTextWithHighlightColor11totb6h=withCodeBoundaryForOverrides(RichText,{nodeId:\"YqnrqtsO3\",override:withHighlightColor1,scopeId:\"jaFc83PwF\"});const Review_2Fonts=getFonts(Review_2);const Ticker1Fonts=getFonts(Ticker1);const ReviewFonts=getFonts(Review);const ContainerWithFX=withFX(Container);const RichTextWithHighlightColor1zmge2g=withCodeBoundaryForOverrides(RichText,{nodeId:\"dzm8MeENd\",override:withHighlightColor1,scopeId:\"jaFc83PwF\"});const FooterFonts=getFonts(Footer);const breakpoints={KWwo_uUcs:\"(min-width: 1200px)\",R2pczdSMX:\"(min-width: 810px) and (max-width: 1199px)\",vvuqj7Rlm:\"(max-width: 809px)\"};const isBrowser=()=>typeof document!==\"undefined\";const serializationHash=\"framer-Q41kF\";const variantClassNames={KWwo_uUcs:\"framer-v-1rypi7h\",R2pczdSMX:\"framer-v-18shuhr\",vvuqj7Rlm:\"framer-v-et0iqu\"};const transition1={bounce:.2,delay:0,duration:.4,type:\"spring\"};const animation={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition1,x:0,y:0};const animation1={opacity:.001,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0};const transition2={bounce:.25,delay:0,duration:.45,type:\"spring\"};const animation2={backgroundColor:\"rgb(255, 255, 255)\",opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition2};const addImageAlt=(image,alt)=>{if(!image||typeof image!==\"object\"){return;}return{...image,alt};};const animation3={opacity:.5,rotate:0,rotateX:0,rotateY:0,scale:.9,skewX:0,skewY:0,x:0,y:50};const animation4={opacity:.5,rotate:0,rotateX:0,rotateY:0,scale:.9,skewX:0,skewY:0,transition:transition1,x:0,y:50};const animation5={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:150};const transition3={bounce:.2,delay:0,duration:1,type:\"spring\"};const animation6={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition3,x:0,y:150};const HTMLStyle=({value})=>{const onCanvas=useIsOnFramerCanvas();if(onCanvas)return null;return /*#__PURE__*/_jsx(\"style\",{dangerouslySetInnerHTML:{__html:value},\"data-framer-html-style\":\"\"});};const humanReadableVariantMap={Desktop:\"KWwo_uUcs\",Phone:\"vvuqj7Rlm\",Tablet:\"R2pczdSMX\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"KWwo_uUcs\"};};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const fallbackRef=useRef(null);const refBinding=ref??fallbackRef;const defaultLayoutId=React.useId();const{activeLocale,setLocale}=useLocaleInfo();const componentViewport=useComponentViewport();const{style,className,layoutId,variant,...restProps}=getProps(props);React.useEffect(()=>{const metadata=metadataProvider(undefined,activeLocale);if(metadata.robots){let robotsTag=document.querySelector('meta[name=\"robots\"]');if(robotsTag){robotsTag.setAttribute(\"content\",metadata.robots);}else{robotsTag=document.createElement(\"meta\");robotsTag.setAttribute(\"name\",\"robots\");robotsTag.setAttribute(\"content\",metadata.robots);document.head.appendChild(robotsTag);}}},[undefined,activeLocale]);React.useInsertionEffect(()=>{const metadata=metadataProvider(undefined,activeLocale);document.title=metadata.title||\"\";if(metadata.viewport){document.querySelector('meta[name=\"viewport\"]')?.setAttribute(\"content\",metadata.viewport);}},[undefined,activeLocale]);const[baseVariant,hydratedBaseVariant]=useHydratedBreakpointVariants(variant,breakpoints,false);const gestureVariant=undefined;const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const elementId=useRouteElementId(\"FU0UxZwnD\");const ref1=React.useRef(null);const isDisplayed=()=>{if(!isBrowser())return true;if(baseVariant===\"vvuqj7Rlm\")return true;return false;};const router=useRouter();const isDisplayed1=()=>{if(!isBrowser())return true;if(baseVariant===\"vvuqj7Rlm\")return false;return true;};const elementId1=useRouteElementId(\"Y_PifSpYm\");const ref2=React.useRef(null);const elementId2=useRouteElementId(\"FYxVeMXga\");const ref3=React.useRef(null);const elementId3=useRouteElementId(\"gNM0jf4Ce\");const ref4=React.useRef(null);const elementId4=useRouteElementId(\"aETlEDUjn\");const ref5=React.useRef(null);useCustomCursors({});return /*#__PURE__*/_jsx(GeneratedComponentContext.Provider,{value:{primaryVariantId:\"KWwo_uUcs\",variantClassNames},children:/*#__PURE__*/_jsxs(LayoutGroup,{id:layoutId??defaultLayoutId,children:[/*#__PURE__*/_jsx(HTMLStyle,{value:\"html body { background: var(--token-ae756d7a-c4ff-4a5e-a170-543733a03a99, rgb(239, 239, 239)); }\"}),/*#__PURE__*/_jsxs(motion.div,{...restProps,className:cx(scopingClassNames,\"framer-1rypi7h\",className),ref:refBinding,style:{...style},children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:64,width:\"100vw\",y:0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-xg6xlb-container\",layoutScroll:true,nodeId:\"tQe4Uge8A\",scopeId:\"jaFc83PwF\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{R2pczdSMX:{variant:\"YZCvj4jtE\"},vvuqj7Rlm:{style:{width:\"100%\"},variant:\"vdipcUOFq\"}},children:/*#__PURE__*/_jsx(TopMenu,{height:\"100%\",id:\"tQe4Uge8A\",layoutId:\"tQe4Uge8A\",style:{height:\"100%\",width:\"100%\"},variant:\"tgtE_EnEv\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{vvuqj7Rlm:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0),pixelHeight:1041,pixelWidth:1467,sizes:componentViewport?.width||\"100vw\",src:\"https://framerusercontent.com/images/coK6hTh8ivThW3iNMmOB8bIgIw.jpg\",srcSet:\"https://framerusercontent.com/images/coK6hTh8ivThW3iNMmOB8bIgIw.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/coK6hTh8ivThW3iNMmOB8bIgIw.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/coK6hTh8ivThW3iNMmOB8bIgIw.jpg 1467w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:1041,pixelWidth:1467,sizes:componentViewport?.width||\"100vw\",src:\"https://framerusercontent.com/images/coK6hTh8ivThW3iNMmOB8bIgIw.jpg\",srcSet:\"https://framerusercontent.com/images/coK6hTh8ivThW3iNMmOB8bIgIw.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/coK6hTh8ivThW3iNMmOB8bIgIw.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/coK6hTh8ivThW3iNMmOB8bIgIw.jpg 1467w\"},className:\"framer-581bs3\",\"data-framer-name\":\"Hero\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1vfse2b\",\"data-framer-name\":\"Text and Image\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-6fx4ul\",\"data-framer-name\":\"Text\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{R2pczdSMX:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h1\",{style:{\"--font-selector\":\"R0Y7Q2hha3JhIFBldGNoLTcwMA==\",\"--framer-font-family\":'\"Chakra Petch\", \"Chakra Petch Placeholder\", sans-serif',\"--framer-font-size\":\"38px\",\"--framer-font-weight\":\"700\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-da1cd2cf-9eb2-4ef2-8e8d-18620cf1b102, rgb(250, 250, 250))\"},children:[/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-font-size\":\"42px\"},children:\"GTM Strategist:\"}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-decoration\":\"underline\"},children:/*#__PURE__*/_jsx(\"br\",{})}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-font-size\":\"42px\",\"--framer-text-decoration\":\"underline\"},children:\"Win the Market\"}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-font-size\":\"42px\"},children:\" in the Age of AI\"})]})})},vvuqj7Rlm:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h1\",{style:{\"--font-selector\":\"R0Y7Q2hha3JhIFBldGNoLTcwMA==\",\"--framer-font-family\":'\"Chakra Petch\", \"Chakra Petch Placeholder\", sans-serif',\"--framer-font-size\":\"36px\",\"--framer-font-weight\":\"700\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-da1cd2cf-9eb2-4ef2-8e8d-18620cf1b102, rgb(250, 250, 250))\"},children:[\"GTM Strategist:\",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-decoration\":\"underline\"},children:/*#__PURE__*/_jsx(\"br\",{})}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-decoration\":\"underline\"},children:\"Win the Market\"}),\" in the Age of AI\"]})})}},children:/*#__PURE__*/_jsx(RichTextWithHighlightColor11lf2uawWithOptimizedAppearEffect,{__fromCanvasComponent:true,animate:animation,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h1\",{style:{\"--font-selector\":\"R0Y7Q2hha3JhIFBldGNoLTcwMA==\",\"--framer-font-family\":'\"Chakra Petch\", \"Chakra Petch Placeholder\", sans-serif',\"--framer-font-size\":\"42px\",\"--framer-font-weight\":\"700\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-da1cd2cf-9eb2-4ef2-8e8d-18620cf1b102, rgb(250, 250, 250))\"},children:[\"GTM Strategist:\",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-decoration\":\"underline\"},children:/*#__PURE__*/_jsx(\"br\",{})}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-decoration\":\"underline\"},children:\"Win the Market\"}),\" in the Age of AI\"]})}),className:\"framer-1lf2uaw\",\"data-framer-appear-id\":\"1lf2uaw\",fonts:[\"GF;Chakra Petch-700\"],initial:animation1,optimized:true,verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"R0Y7Um9ib3RvLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Roboto\", \"Roboto Placeholder\", sans-serif',\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-da1cd2cf-9eb2-4ef2-8e8d-18620cf1b102, rgb(250, 250, 250))\"},children:[\"GTM Strategist is the new go-to-market methodology, trusted by 8000 companies across the globe. It is up-to-date, supremely actionable, stage-appropriate and pragmatic. \",/*#__PURE__*/_jsx(\"br\",{}),/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"R0Y7Um9ib3RvLWl0YWxpYw==\",\"--framer-font-style\":\"italic\"},children:\"Focus: Work with what you have and get the best out of it.\"})]})}),className:\"framer-1owqgii\",fonts:[\"GF;Roboto-regular\",\"GF;Roboto-italic\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{R2pczdSMX:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:522,intrinsicWidth:957,pixelHeight:1146,pixelWidth:1934,positionX:\"center\",positionY:\"center\",sizes:`max(min(${componentViewport?.width||\"100vw\"} - 40px, 1300px) * 0.78, min(${componentViewport?.width||\"100vw\"} - 40px, 1300px) / 2)`,src:\"https://framerusercontent.com/images/oflOPNF8InPfo0djcMQWdMV9roM.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/oflOPNF8InPfo0djcMQWdMV9roM.png?scale-down-to=512 512w,https://framerusercontent.com/images/oflOPNF8InPfo0djcMQWdMV9roM.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/oflOPNF8InPfo0djcMQWdMV9roM.png 1934w\"}},vvuqj7Rlm:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:522,intrinsicWidth:957,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+71+0+10+201.2),pixelHeight:1146,pixelWidth:1934,positionX:\"center\",positionY:\"center\",sizes:`max(min(${componentViewport?.width||\"100vw\"} - 40px, 1300px) * 1.1257, min(${componentViewport?.width||\"100vw\"} - 40px, 1300px) / 2)`,src:\"https://framerusercontent.com/images/oflOPNF8InPfo0djcMQWdMV9roM.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/oflOPNF8InPfo0djcMQWdMV9roM.png?scale-down-to=512 512w,https://framerusercontent.com/images/oflOPNF8InPfo0djcMQWdMV9roM.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/oflOPNF8InPfo0djcMQWdMV9roM.png 1934w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",intrinsicHeight:522,intrinsicWidth:957,pixelHeight:1146,pixelWidth:1934,positionX:\"center\",positionY:\"center\",sizes:`max(min(${componentViewport?.width||\"100vw\"} - 40px, 1300px) * 0.6, min(${componentViewport?.width||\"100vw\"} - 40px, 1300px) / 2)`,src:\"https://framerusercontent.com/images/oflOPNF8InPfo0djcMQWdMV9roM.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/oflOPNF8InPfo0djcMQWdMV9roM.png?scale-down-to=512 512w,https://framerusercontent.com/images/oflOPNF8InPfo0djcMQWdMV9roM.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/oflOPNF8InPfo0djcMQWdMV9roM.png 1934w\"},className:\"framer-14vrjgi\",\"data-framer-name\":\"Frame 1484578899 _3\"})})]})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1uksap2\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{vvuqj7Rlm:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{style:{\"--font-selector\":\"R0Y7Um9ib3RvLTcwMA==\",\"--framer-font-family\":'\"Roboto\", \"Roboto Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"700\",\"--framer-text-color\":\"var(--token-aeced44f-af67-42d0-b786-4444e9debda7, rgb(26, 26, 26))\"},children:\"Battle-tested strategies on companies like:\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{style:{\"--font-selector\":\"R0Y7Um9ib3RvLTcwMA==\",\"--framer-font-family\":'\"Roboto\", \"Roboto Placeholder\", sans-serif',\"--framer-font-weight\":\"700\",\"--framer-text-color\":\"var(--token-aeced44f-af67-42d0-b786-4444e9debda7, rgb(26, 26, 26))\"},children:\"Battle-tested strategies on companies like:\"})}),className:\"framer-1ogi498\",fonts:[\"GF;Roboto-700\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-f6a43c-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"ecFnPDsBt\",scopeId:\"jaFc83PwF\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{vvuqj7Rlm:{sizingOptions:{heightType:false,widthType:true}}},children:/*#__PURE__*/_jsx(Ticker,{alignment:\"center\",direction:\"left\",fadeOptions:{fadeAlpha:0,fadeContent:true,fadeInset:0,fadeWidth:25,overflow:false},gap:10,height:\"100%\",hoverFactor:1,id:\"ecFnPDsBt\",layoutId:\"ecFnPDsBt\",padding:0,paddingBottom:0,paddingLeft:0,paddingPerSide:false,paddingRight:0,paddingTop:0,sizingOptions:{heightType:true,widthType:true},slots:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:50.5,intrinsicWidth:2277,pixelHeight:101,pixelWidth:4648,sizes:\"2371px\",src:\"https://framerusercontent.com/images/wCrUOd3zuFqETFkdC6R5k1GYFbg.png?scale-down-to=4096\",srcSet:\"https://framerusercontent.com/images/wCrUOd3zuFqETFkdC6R5k1GYFbg.png?scale-down-to=512 512w,https://framerusercontent.com/images/wCrUOd3zuFqETFkdC6R5k1GYFbg.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/wCrUOd3zuFqETFkdC6R5k1GYFbg.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/wCrUOd3zuFqETFkdC6R5k1GYFbg.png?scale-down-to=4096 4096w,https://framerusercontent.com/images/wCrUOd3zuFqETFkdC6R5k1GYFbg.png 4648w\"},className:\"framer-tyhe3y\",\"data-framer-name\":\"Frame 42\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",intrinsicHeight:50,intrinsicWidth:2055.5,pixelHeight:150,pixelWidth:5112,positionX:\"center\",positionY:\"center\",sizes:\"1640px\",src:\"https://framerusercontent.com/images/rBZxcy3gEeMQLgOsXDVsQIXpwo.png?scale-down-to=4096\",srcSet:\"https://framerusercontent.com/images/rBZxcy3gEeMQLgOsXDVsQIXpwo.png?scale-down-to=512 512w,https://framerusercontent.com/images/rBZxcy3gEeMQLgOsXDVsQIXpwo.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/rBZxcy3gEeMQLgOsXDVsQIXpwo.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/rBZxcy3gEeMQLgOsXDVsQIXpwo.png?scale-down-to=4096 4096w,https://framerusercontent.com/images/rBZxcy3gEeMQLgOsXDVsQIXpwo.png 5112w\"},className:\"framer-kk285t\",\"data-framer-name\":\"Frame 43\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",intrinsicHeight:50,intrinsicWidth:2055.5,pixelHeight:100,pixelWidth:3843,positionX:\"center\",positionY:\"center\",sizes:\"1842px\",src:\"https://framerusercontent.com/images/Z3JpU95TmgHdfVeknqsPACjqxQ.png\",srcSet:\"https://framerusercontent.com/images/Z3JpU95TmgHdfVeknqsPACjqxQ.png?scale-down-to=512 512w,https://framerusercontent.com/images/Z3JpU95TmgHdfVeknqsPACjqxQ.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/Z3JpU95TmgHdfVeknqsPACjqxQ.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/Z3JpU95TmgHdfVeknqsPACjqxQ.png 3843w\"},className:\"framer-1ktsmk8\",\"data-framer-name\":\"Frame 41\"})],speed:50,style:{height:\"100%\",maxWidth:\"100%\",width:\"100%\"},width:\"100%\"})})})})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-m2tdek\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-94h0fx\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{vvuqj7Rlm:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h2\",{style:{\"--font-selector\":\"R0Y7Q2hha3JhIFBldGNoLTcwMA==\",\"--framer-font-family\":'\"Chakra Petch\", \"Chakra Petch Placeholder\", sans-serif',\"--framer-font-size\":\"28px\",\"--framer-font-weight\":\"700\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-aeced44f-af67-42d0-b786-4444e9debda7, rgb(26, 26, 26))\"},children:[/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-decoration\":\"underline\"},children:\"Each stage\"}),\" of your go-to-market journey \",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-decoration\":\"underline\"},children:\"requires different playbooks\"})]})})}},children:/*#__PURE__*/_jsx(RichTextWithHighlightColor1k4mnom,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h2\",{style:{\"--font-selector\":\"R0Y7Q2hha3JhIFBldGNoLTcwMA==\",\"--framer-font-family\":'\"Chakra Petch\", \"Chakra Petch Placeholder\", sans-serif',\"--framer-font-size\":\"32px\",\"--framer-font-weight\":\"700\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-aeced44f-af67-42d0-b786-4444e9debda7, rgb(26, 26, 26))\"},children:[/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-decoration\":\"underline\"},children:\"Each stage\"}),\" of your go-to-market journey \",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-decoration\":\"underline\"},children:\"requires different playbooks\"})]})}),className:\"framer-k4mnom\",fonts:[\"GF;Chakra Petch-700\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{vvuqj7Rlm:{children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7Um9ib3RvLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Roboto\", \"Roboto Placeholder\", sans-serif',\"--framer-line-height\":\"120%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-aeced44f-af67-42d0-b786-4444e9debda7, rgb(26, 26, 26))\"},children:\"Define your ICP, find product-market fit, implement growth loops, and find out which of the GTM motions work for you.\"}),/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"R0Y7Um9ib3RvLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Roboto\", \"Roboto Placeholder\", sans-serif',\"--framer-line-height\":\"120%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-aeced44f-af67-42d0-b786-4444e9debda7, rgb(26, 26, 26))\"},children:[/*#__PURE__*/_jsx(\"br\",{}),\"You are a hero of your story. You have the domain knowledge and expertise to conquer the market. We are here to support you with the tools that you need to make it happen: frameworks, checklists, and customized programs designed to support B2B SaaS founders on all stages of your go-to-market strategy.\"]})]})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7Um9ib3RvLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Roboto\", \"Roboto Placeholder\", sans-serif',\"--framer-line-height\":\"120%\",\"--framer-text-alignment\":\"justify\",\"--framer-text-color\":\"var(--token-aeced44f-af67-42d0-b786-4444e9debda7, rgb(26, 26, 26))\"},children:\"Define your ICP, find product-market fit, implement growth loops, and find out which of the GTM motions work for you.\"}),/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"R0Y7Um9ib3RvLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Roboto\", \"Roboto Placeholder\", sans-serif',\"--framer-line-height\":\"120%\",\"--framer-text-alignment\":\"justify\",\"--framer-text-color\":\"var(--token-aeced44f-af67-42d0-b786-4444e9debda7, rgb(26, 26, 26))\"},children:[/*#__PURE__*/_jsx(\"br\",{}),\"You are a hero of your story. You have the domain knowledge and expertise to conquer the market. We are here to support you with the tools that you need to make it happen: frameworks, checklists, and customized programs designed to support B2B SaaS founders on all stages of your go-to-market strategy.\"]})]}),className:\"framer-1jvyzh3\",fonts:[\"GF;Roboto-regular\"],verticalAlignment:\"top\",withExternalLayout:true})})]})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1tclc37\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{vvuqj7Rlm:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+933.6+10+0),pixelHeight:1041,pixelWidth:1467,sizes:`min(${componentViewport?.width||\"100vw\"} - 20px, 1200px)`,src:\"https://framerusercontent.com/images/Fkqa5RRAMsR3nW3u6aTMGgxYns.jpg\",srcSet:\"https://framerusercontent.com/images/Fkqa5RRAMsR3nW3u6aTMGgxYns.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/Fkqa5RRAMsR3nW3u6aTMGgxYns.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/Fkqa5RRAMsR3nW3u6aTMGgxYns.jpg 1467w\"}}},children:/*#__PURE__*/_jsxs(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:1041,pixelWidth:1467,sizes:`min(${componentViewport?.width||\"100vw\"} - 20px, 1200px)`,src:\"https://framerusercontent.com/images/Fkqa5RRAMsR3nW3u6aTMGgxYns.jpg\",srcSet:\"https://framerusercontent.com/images/Fkqa5RRAMsR3nW3u6aTMGgxYns.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/Fkqa5RRAMsR3nW3u6aTMGgxYns.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/Fkqa5RRAMsR3nW3u6aTMGgxYns.jpg 1467w\"},className:\"framer-1ye3vic\",\"data-border\":true,\"data-framer-name\":\"Ultimate Blueprint Section\",id:elementId,ref:ref1,children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1di09jm\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1gp4bd6\",\"data-framer-name\":\"CardContainer\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-17kcco6\",\"data-framer-name\":\"Text and Image\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-11sl2wp\",\"data-framer-name\":\"Text\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1qwl1a1\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-11g91uj\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-opejc1\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{vvuqj7Rlm:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"R0Y7Um9ib3RvLTUwMA==\",\"--framer-font-family\":'\"Roboto\", \"Roboto Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-aeced44f-af67-42d0-b786-4444e9debda7, rgb(26, 26, 26))\"},children:\"Learn GTM\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"R0Y7Um9ib3RvLTUwMA==\",\"--framer-font-family\":'\"Roboto\", \"Roboto Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-aeced44f-af67-42d0-b786-4444e9debda7, rgb(26, 26, 26))\"},children:\"Learn GTM\"})}),className:\"framer-9ydz9s\",fonts:[\"GF;Roboto-500\"],verticalAlignment:\"top\",withExternalLayout:true})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{vvuqj7Rlm:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"R0Y7Q2hha3JhIFBldGNoLTcwMA==\",\"--framer-font-family\":'\"Chakra Petch\", \"Chakra Petch Placeholder\", sans-serif',\"--framer-font-size\":\"28px\",\"--framer-font-weight\":\"700\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-aeced44f-af67-42d0-b786-4444e9debda7, rgb(26, 26, 26))\"},children:\"Go-To-Market Strategist - Your Guide to Product-Market Fit\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h2\",{style:{\"--font-selector\":\"R0Y7Q2hha3JhIFBldGNoLTcwMA==\",\"--framer-font-family\":'\"Chakra Petch\", \"Chakra Petch Placeholder\", sans-serif',\"--framer-font-size\":\"32px\",\"--framer-font-weight\":\"700\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-aeced44f-af67-42d0-b786-4444e9debda7, rgb(26, 26, 26))\"},children:[\"Go-To-Market Strategist: \",/*#__PURE__*/_jsx(\"br\",{}),\"Your Guide to Product-Market Fit\"]})}),className:\"framer-n6tbkz\",fonts:[\"GF;Chakra Petch-700\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{vvuqj7Rlm:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{className:\"framer-styles-preset-yfkllb\",\"data-styles-preset\":\"ip3PG18zd\",style:{\"--framer-text-alignment\":\"center\"},children:[\"The best-selling book that will \",/*#__PURE__*/_jsx(\"strong\",{children:\"equip you with an actionable step-by-step strategy.\"}),\" Includes proven fill-in templates and examples that will speed up reaching your product-market fit and enable profitable traction.\"]})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{className:\"framer-styles-preset-yfkllb\",\"data-styles-preset\":\"ip3PG18zd\",children:[\"The best-selling book that will \",/*#__PURE__*/_jsx(\"strong\",{children:\"equip you with an actionable step-by-step strategy.\"}),\" Includes proven fill-in templates and examples that will speed up reaching your product-market fit and enable profitable traction.\"]})}),className:\"framer-1jhem0t\",fonts:[\"Inter\",\"Inter-Bold\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),isDisplayed()&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{vvuqj7Rlm:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+933.6+10+0+20+0+0+0+0+0+257.8- -21),pixelHeight:800,pixelWidth:581,positionX:\"center\",positionY:\"center\",sizes:`min(min(${componentViewport?.width||\"100vw\"} - 20px, 1200px) - 20px, 1000px)`,src:\"https://framerusercontent.com/images/nc037xsS60OFCRouIsQTRKgnK6g.png\",srcSet:\"https://framerusercontent.com/images/nc037xsS60OFCRouIsQTRKgnK6g.png 581w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",pixelHeight:800,pixelWidth:581,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/nc037xsS60OFCRouIsQTRKgnK6g.png\",srcSet:\"https://framerusercontent.com/images/nc037xsS60OFCRouIsQTRKgnK6g.png 581w\"},className:\"framer-v7igmv hidden-1rypi7h hidden-18shuhr\",\"data-framer-name\":\"Book Image - mobile\",style:{rotate:7}})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"ni6OajCOR\"},implicitPathVariables:undefined},{href:{webPageId:\"ni6OajCOR\"},implicitPathVariables:undefined},{href:{webPageId:\"ni6OajCOR\"},implicitPathVariables:undefined}],children:resolvedLinks=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{vvuqj7Rlm:{y:(componentViewport?.y||0)+0+933.6+10+0+20+0+0+0+0+0+0+212.8}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:45,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1pphvyc-container\",nodeId:\"FL5_2VeZi\",scopeId:\"jaFc83PwF\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{R2pczdSMX:{xlu1VlVra:resolvedLinks[1]},vvuqj7Rlm:{xlu1VlVra:resolvedLinks[2]}},children:/*#__PURE__*/_jsx(CTAButtonOld,{An0B1FOIT:\"Read the book\",height:\"100%\",id:\"FL5_2VeZi\",iUfuvn8a9:false,layoutId:\"FL5_2VeZi\",variant:\"eDGnwMIIb\",width:\"100%\",xlu1VlVra:resolvedLinks[0]})})})})})})]}),isDisplayed1()&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{R2pczdSMX:{background:{alt:\"\",fit:\"fit\",pixelHeight:996,pixelWidth:755,positionX:\"center\",positionY:\"center\",sizes:`calc(min(min(${componentViewport?.width||\"100vw\"} - 20px, 1200px) - 40px, 1000px) * 0.4649)`,src:\"https://framerusercontent.com/images/GNrw5VdSDbS21ZflJuMxa6ZfFm8.png\",srcSet:\"https://framerusercontent.com/images/GNrw5VdSDbS21ZflJuMxa6ZfFm8.png 755w\"}}},children:/*#__PURE__*/_jsx(ImageWithFX,{__framer__styleTransformEffectEnabled:true,__framer__transformTargets:[{target:{opacity:.5,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:150}},{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,background:{alt:\"\",fit:\"fit\",pixelHeight:996,pixelWidth:755,positionX:\"center\",positionY:\"center\",sizes:`calc(min(min(${componentViewport?.width||\"100vw\"} - 20px, 1200px) - 40px, 1000px) * 0.476)`,src:\"https://framerusercontent.com/images/GNrw5VdSDbS21ZflJuMxa6ZfFm8.png\",srcSet:\"https://framerusercontent.com/images/GNrw5VdSDbS21ZflJuMxa6ZfFm8.png 755w\"},className:\"framer-1it87j1 hidden-et0iqu\",\"data-framer-name\":\"Book Image\"})})]})})]})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{vvuqj7Rlm:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+933.6+10+597.8),pixelHeight:1041,pixelWidth:1467,sizes:`min(${componentViewport?.width||\"100vw\"} - 20px, 1200px)`,src:\"https://framerusercontent.com/images/coK6hTh8ivThW3iNMmOB8bIgIw.jpg\",srcSet:\"https://framerusercontent.com/images/coK6hTh8ivThW3iNMmOB8bIgIw.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/coK6hTh8ivThW3iNMmOB8bIgIw.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/coK6hTh8ivThW3iNMmOB8bIgIw.jpg 1467w\"}}},children:/*#__PURE__*/_jsxs(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:1041,pixelWidth:1467,sizes:`min(${componentViewport?.width||\"100vw\"} - 20px, 1200px)`,src:\"https://framerusercontent.com/images/coK6hTh8ivThW3iNMmOB8bIgIw.jpg\",srcSet:\"https://framerusercontent.com/images/coK6hTh8ivThW3iNMmOB8bIgIw.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/coK6hTh8ivThW3iNMmOB8bIgIw.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/coK6hTh8ivThW3iNMmOB8bIgIw.jpg 1467w\"},className:\"framer-sdquk8\",\"data-border\":true,\"data-framer-name\":\"Ultimate Blueprint Section\",id:elementId1,ref:ref2,children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1aq4rfy\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1a2bqno\",\"data-framer-name\":\"CardContainer\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1d4w73c\",\"data-framer-name\":\"Text and Image\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-123xxdn\",\"data-framer-name\":\"Text\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1o4oxax\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1f8kk4h\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1rgwq8w\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{vvuqj7Rlm:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"R0Y7Um9ib3RvLTUwMA==\",\"--framer-font-family\":'\"Roboto\", \"Roboto Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-aeced44f-af67-42d0-b786-4444e9debda7, rgb(26, 26, 26))\"},children:\"Implement GTM\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"R0Y7Um9ib3RvLTUwMA==\",\"--framer-font-family\":'\"Roboto\", \"Roboto Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-aeced44f-af67-42d0-b786-4444e9debda7, rgb(26, 26, 26))\"},children:\"Implement GTM\"})}),className:\"framer-t2nnyv\",fonts:[\"GF;Roboto-500\"],verticalAlignment:\"top\",withExternalLayout:true})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{vvuqj7Rlm:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h2\",{style:{\"--font-selector\":\"R0Y7Q2hha3JhIFBldGNoLTcwMA==\",\"--framer-font-family\":'\"Chakra Petch\", \"Chakra Petch Placeholder\", sans-serif',\"--framer-font-size\":\"28px\",\"--framer-font-weight\":\"700\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:[\"Go-To-Market Checklist \",/*#__PURE__*/_jsx(\"br\",{}),\"with AI Prompts\"]})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h2\",{style:{\"--font-selector\":\"R0Y7Q2hha3JhIFBldGNoLTcwMA==\",\"--framer-font-family\":'\"Chakra Petch\", \"Chakra Petch Placeholder\", sans-serif',\"--framer-font-size\":\"32px\",\"--framer-font-weight\":\"700\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:[\"Go-To-Market Checklist \",/*#__PURE__*/_jsx(\"br\",{}),\"with AI Prompts\"]})}),className:\"framer-1kmlo6l\",fonts:[\"GF;Chakra Petch-700\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{vvuqj7Rlm:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{className:\"framer-styles-preset-yfkllb\",\"data-styles-preset\":\"ip3PG18zd\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:[\"Follow along step-by-step with templates, frameworks, and AI prompts that \",/*#__PURE__*/_jsx(\"strong\",{children:\"will help you get new customers for tech products in <14 days.\"}),\" Includes 100+ checkpoints from pre-launch to scaling phase, 84 AI prompts, 20+ workshops, 30+ templates, and much more.\"]})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{className:\"framer-styles-preset-yfkllb\",\"data-styles-preset\":\"ip3PG18zd\",style:{\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:[\"Follow along step-by-step with templates, frameworks, and AI prompts that \",/*#__PURE__*/_jsx(\"strong\",{children:\"will help you get new customers for tech products in <14 days.\"}),\" Includes 100+ checkpoints from pre-launch to scaling phase, 84 AI prompts, 20+ workshops, 30+ templates, and much more.\"]})}),className:\"framer-38ohdo\",fonts:[\"Inter\",\"Inter-Bold\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"XsJU4mSB8\"},implicitPathVariables:undefined},{href:{webPageId:\"XsJU4mSB8\"},implicitPathVariables:undefined},{href:{webPageId:\"XsJU4mSB8\"},implicitPathVariables:undefined}],children:resolvedLinks1=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{vvuqj7Rlm:{y:(componentViewport?.y||0)+0+933.6+10+597.8+20+0+0+0+0+0+0+0+0+200.8}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:45,width:\"171px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-hjaqpb-container\",nodeId:\"AciH84wcR\",scopeId:\"jaFc83PwF\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{R2pczdSMX:{xlu1VlVra:resolvedLinks1[1]},vvuqj7Rlm:{xlu1VlVra:resolvedLinks1[2]}},children:/*#__PURE__*/_jsx(CTAButtonOld,{An0B1FOIT:\"Get the checklist\",height:\"100%\",id:\"AciH84wcR\",iUfuvn8a9:false,layoutId:\"AciH84wcR\",style:{width:\"100%\"},variant:\"eDGnwMIIb\",width:\"100%\",xlu1VlVra:resolvedLinks1[0]})})})})})})]}),isDisplayed()&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{vvuqj7Rlm:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+933.6+10+597.8+20+0+0+0+0+0+218.7918),pixelHeight:1845,pixelWidth:2768,positionX:\"center\",positionY:\"center\",sizes:\"473px\",src:\"https://framerusercontent.com/images/o3T4aidr88OjZ6PJlYNkbU1wYd0.png\",srcSet:\"https://framerusercontent.com/images/o3T4aidr88OjZ6PJlYNkbU1wYd0.png?scale-down-to=512 512w,https://framerusercontent.com/images/o3T4aidr88OjZ6PJlYNkbU1wYd0.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/o3T4aidr88OjZ6PJlYNkbU1wYd0.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/o3T4aidr88OjZ6PJlYNkbU1wYd0.png 2768w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",pixelHeight:1845,pixelWidth:2768,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/o3T4aidr88OjZ6PJlYNkbU1wYd0.png\",srcSet:\"https://framerusercontent.com/images/o3T4aidr88OjZ6PJlYNkbU1wYd0.png?scale-down-to=512 512w,https://framerusercontent.com/images/o3T4aidr88OjZ6PJlYNkbU1wYd0.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/o3T4aidr88OjZ6PJlYNkbU1wYd0.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/o3T4aidr88OjZ6PJlYNkbU1wYd0.png 2768w\"},className:\"framer-1oerhoz hidden-1rypi7h hidden-18shuhr\",\"data-framer-name\":\"Book Image - mobile\"})})]}),isDisplayed1()&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{R2pczdSMX:{background:{alt:\"\",fit:\"fit\",pixelHeight:1845,pixelWidth:2768,positionX:\"left\",positionY:\"center\",sizes:\"1103px\",src:\"https://framerusercontent.com/images/o3T4aidr88OjZ6PJlYNkbU1wYd0.png\",srcSet:\"https://framerusercontent.com/images/o3T4aidr88OjZ6PJlYNkbU1wYd0.png?scale-down-to=512 512w,https://framerusercontent.com/images/o3T4aidr88OjZ6PJlYNkbU1wYd0.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/o3T4aidr88OjZ6PJlYNkbU1wYd0.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/o3T4aidr88OjZ6PJlYNkbU1wYd0.png 2768w\"}}},children:/*#__PURE__*/_jsx(ImageWithFX,{__framer__styleTransformEffectEnabled:true,__framer__transformTargets:[{target:{opacity:.5,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:150}},{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,background:{alt:\"\",fit:\"fit\",pixelHeight:1845,pixelWidth:2768,positionX:\"center\",positionY:\"center\",sizes:`calc(min(min(${componentViewport?.width||\"100vw\"} - 20px, 1200px) - 40px, 1000px) * 0.619)`,src:\"https://framerusercontent.com/images/o3T4aidr88OjZ6PJlYNkbU1wYd0.png\",srcSet:\"https://framerusercontent.com/images/o3T4aidr88OjZ6PJlYNkbU1wYd0.png?scale-down-to=512 512w,https://framerusercontent.com/images/o3T4aidr88OjZ6PJlYNkbU1wYd0.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/o3T4aidr88OjZ6PJlYNkbU1wYd0.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/o3T4aidr88OjZ6PJlYNkbU1wYd0.png 2768w\"},className:\"framer-1on2zts hidden-et0iqu\",\"data-framer-name\":\"Book Image\"})})]})})]})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{vvuqj7Rlm:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+933.6+10+1123.6),pixelHeight:1041,pixelWidth:1467,sizes:`min(${componentViewport?.width||\"100vw\"} - 20px, 1200px)`,src:\"https://framerusercontent.com/images/coK6hTh8ivThW3iNMmOB8bIgIw.jpg\",srcSet:\"https://framerusercontent.com/images/coK6hTh8ivThW3iNMmOB8bIgIw.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/coK6hTh8ivThW3iNMmOB8bIgIw.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/coK6hTh8ivThW3iNMmOB8bIgIw.jpg 1467w\"}}},children:/*#__PURE__*/_jsxs(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:1041,pixelWidth:1467,sizes:`min(${componentViewport?.width||\"100vw\"} - 20px, 1200px)`,src:\"https://framerusercontent.com/images/coK6hTh8ivThW3iNMmOB8bIgIw.jpg\",srcSet:\"https://framerusercontent.com/images/coK6hTh8ivThW3iNMmOB8bIgIw.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/coK6hTh8ivThW3iNMmOB8bIgIw.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/coK6hTh8ivThW3iNMmOB8bIgIw.jpg 1467w\"},className:\"framer-ttixy8\",\"data-border\":true,\"data-framer-name\":\"Ultimate Blueprint Section\",id:elementId2,ref:ref3,children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-9m4e4x\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1547c8i\",\"data-framer-name\":\"CardContainer\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-10185qq\",\"data-framer-name\":\"Text and Image\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-cvtck3\",\"data-framer-name\":\"Text\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-ey1os5\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-woponp\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1v5eft7\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{vvuqj7Rlm:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"R0Y7Um9ib3RvLTUwMA==\",\"--framer-font-family\":'\"Roboto\", \"Roboto Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-aeced44f-af67-42d0-b786-4444e9debda7, rgb(26, 26, 26))\"},children:\"Let's do it together\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"R0Y7Um9ib3RvLTUwMA==\",\"--framer-font-family\":'\"Roboto\", \"Roboto Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-aeced44f-af67-42d0-b786-4444e9debda7, rgb(26, 26, 26))\"},children:\"Let's do it together\"})}),className:\"framer-k60fga\",fonts:[\"GF;Roboto-500\"],verticalAlignment:\"top\",withExternalLayout:true})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{vvuqj7Rlm:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"R0Y7Q2hha3JhIFBldGNoLTcwMA==\",\"--framer-font-family\":'\"Chakra Petch\", \"Chakra Petch Placeholder\", sans-serif',\"--framer-font-size\":\"28px\",\"--framer-font-weight\":\"700\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-da1cd2cf-9eb2-4ef2-8e8d-18620cf1b102, rgb(250, 250, 250))\"},children:\"Workshops, Consulting and Corporate Programs\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"R0Y7Q2hha3JhIFBldGNoLTcwMA==\",\"--framer-font-family\":'\"Chakra Petch\", \"Chakra Petch Placeholder\", sans-serif',\"--framer-font-size\":\"32px\",\"--framer-font-weight\":\"700\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-da1cd2cf-9eb2-4ef2-8e8d-18620cf1b102, rgb(250, 250, 250))\"},children:\"Workshops, Consulting and Corporate Programs\"})}),className:\"framer-1tmt6t2\",fonts:[\"GF;Chakra Petch-700\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{vvuqj7Rlm:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{className:\"framer-styles-preset-yfkllb\",\"data-styles-preset\":\"ip3PG18zd\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-da1cd2cf-9eb2-4ef2-8e8d-18620cf1b102, rgb(250, 250, 250))\"},children:[\"Winning GTM strategy is proprietary. You are the one who has the final word, and \",/*#__PURE__*/_jsx(\"strong\",{children:\"we are here to support you with workshops and consulting programs\"}),\" that will bring all team members to the same page. Our approach combines \",/*#__PURE__*/_jsx(\"strong\",{children:\"fail-proof frameworks\"}),\" and \",/*#__PURE__*/_jsx(\"strong\",{children:\"proven methods\"}),\", lots of \",/*#__PURE__*/_jsx(\"strong\",{children:\"best practices from all around the globe\"}),\", and passion for the science that will fire up your team to bring out the best in them.\"]})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{className:\"framer-styles-preset-yfkllb\",\"data-styles-preset\":\"ip3PG18zd\",style:{\"--framer-text-color\":\"var(--token-da1cd2cf-9eb2-4ef2-8e8d-18620cf1b102, rgb(250, 250, 250))\"},children:[\"Winning GTM strategy is proprietary. You are the one who has the final word, and \",/*#__PURE__*/_jsx(\"strong\",{children:\"we are here to support you with workshops and consulting programs\"}),\" that will bring all team members to the same page. Our approach combines \",/*#__PURE__*/_jsx(\"strong\",{children:\"fail-proof frameworks\"}),\" and \",/*#__PURE__*/_jsx(\"strong\",{children:\"proven methods\"}),\", lots of \",/*#__PURE__*/_jsx(\"strong\",{children:\"best practices from all around the globe\"}),\", and passion for the science that will fire up your team to bring out the best in them.\"]})}),className:\"framer-185mwwk\",fonts:[\"Inter\",\"Inter-Bold\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"di40C17O9\"},implicitPathVariables:undefined},{href:{webPageId:\"di40C17O9\"},implicitPathVariables:undefined},{href:{webPageId:\"di40C17O9\"},implicitPathVariables:undefined}],children:resolvedLinks2=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{vvuqj7Rlm:{y:(componentViewport?.y||0)+0+933.6+10+1123.6+20+0+0+0+10+0+0+212.8}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:45,width:\"171px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-1s8oow9-container\",nodeId:\"A43nIP6tz\",scopeId:\"jaFc83PwF\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{R2pczdSMX:{xlu1VlVra:resolvedLinks2[1]},vvuqj7Rlm:{xlu1VlVra:resolvedLinks2[2]}},children:/*#__PURE__*/_jsx(CTAButtonOld,{An0B1FOIT:\"Book a demo\",height:\"100%\",id:\"A43nIP6tz\",iUfuvn8a9:false,layoutId:\"A43nIP6tz\",style:{width:\"100%\"},variant:\"eDGnwMIIb\",width:\"100%\",xlu1VlVra:resolvedLinks2[0]})})})})})})]}),isDisplayed()&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{vvuqj7Rlm:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:375.5,intrinsicWidth:685.5,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+933.6+10+1123.6+20+0+0+0+487.8-191.5),pixelHeight:751,pixelWidth:1371,positionX:\"center\",positionY:\"center\",sizes:`min(min(min(${componentViewport?.width||\"100vw\"} - 20px, 1200px) - 20px, 1000px), 350px)`,src:\"https://framerusercontent.com/images/1YeTP8eGjHETNbq5F7NEjQBzYw.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/1YeTP8eGjHETNbq5F7NEjQBzYw.png?scale-down-to=512 512w,https://framerusercontent.com/images/1YeTP8eGjHETNbq5F7NEjQBzYw.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/1YeTP8eGjHETNbq5F7NEjQBzYw.png 1371w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",intrinsicHeight:375.5,intrinsicWidth:685.5,pixelHeight:751,pixelWidth:1371,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/1YeTP8eGjHETNbq5F7NEjQBzYw.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/1YeTP8eGjHETNbq5F7NEjQBzYw.png?scale-down-to=512 512w,https://framerusercontent.com/images/1YeTP8eGjHETNbq5F7NEjQBzYw.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/1YeTP8eGjHETNbq5F7NEjQBzYw.png 1371w\"},className:\"framer-1m8402 hidden-1rypi7h hidden-18shuhr\",\"data-framer-name\":\"Highlights mx__d0mgmbch6iye_xlarge_2x\"})})]})}),isDisplayed1()&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{R2pczdSMX:{background:{alt:\"\",fit:\"fill\",pixelHeight:1912,pixelWidth:2240,positionX:\"left\",positionY:\"center\",sizes:`calc(min(${componentViewport?.width||\"100vw\"} - 20px, 1200px) * 0.4544)`,src:\"https://framerusercontent.com/images/uOtPgPfZ5uj2jo0b5hHDUp4kX0g.png\",srcSet:\"https://framerusercontent.com/images/uOtPgPfZ5uj2jo0b5hHDUp4kX0g.png?scale-down-to=512 512w,https://framerusercontent.com/images/uOtPgPfZ5uj2jo0b5hHDUp4kX0g.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/uOtPgPfZ5uj2jo0b5hHDUp4kX0g.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/uOtPgPfZ5uj2jo0b5hHDUp4kX0g.png 2240w\"}}},children:/*#__PURE__*/_jsx(ImageWithFX,{__framer__styleTransformEffectEnabled:true,__framer__transformTargets:[{target:{opacity:.5,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\",__perspectiveFX:false,__targetOpacity:1,background:{alt:\"\",fit:\"fill\",pixelHeight:1912,pixelWidth:2240,sizes:`calc(min(${componentViewport?.width||\"100vw\"} - 20px, 1200px) * 0.4797)`,src:\"https://framerusercontent.com/images/uOtPgPfZ5uj2jo0b5hHDUp4kX0g.png\",srcSet:\"https://framerusercontent.com/images/uOtPgPfZ5uj2jo0b5hHDUp4kX0g.png?scale-down-to=512 512w,https://framerusercontent.com/images/uOtPgPfZ5uj2jo0b5hHDUp4kX0g.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/uOtPgPfZ5uj2jo0b5hHDUp4kX0g.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/uOtPgPfZ5uj2jo0b5hHDUp4kX0g.png 2240w\"},className:\"framer-feu332 hidden-et0iqu\",\"data-framer-name\":\"Book Image\"})})]})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-83e2jw\",id:elementId3,ref:ref4,children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1qv6ft6\",\"data-framer-name\":\"Titles\",children:/*#__PURE__*/_jsx(RichTextWithHighlightColor17rass8,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"R0Y7Q2hha3JhIFBldGNoLTcwMA==\",\"--framer-font-family\":'\"Chakra Petch\", \"Chakra Petch Placeholder\", sans-serif',\"--framer-font-size\":\"36px\",\"--framer-font-weight\":\"700\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-aeced44f-af67-42d0-b786-4444e9debda7, rgb(26, 26, 26))\",\"--framer-text-decoration\":\"underline\"},children:\"About Maja Voje\"})}),className:\"framer-7rass8\",fonts:[\"GF;Chakra Petch-700\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1qeq5m\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-18m5gxe\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-s27932\",\"data-border\":true,children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{R2pczdSMX:{background:{alt:\"\",fit:\"fill\",pixelHeight:2172,pixelWidth:1480,positionX:\"center\",positionY:\"top\",sizes:\"276px\",src:\"https://framerusercontent.com/images/rkOBnEGHEiaVRf3SUkTVRYRv584.png\",srcSet:\"https://framerusercontent.com/images/rkOBnEGHEiaVRf3SUkTVRYRv584.png?scale-down-to=1024 697w,https://framerusercontent.com/images/rkOBnEGHEiaVRf3SUkTVRYRv584.png?scale-down-to=2048 1395w,https://framerusercontent.com/images/rkOBnEGHEiaVRf3SUkTVRYRv584.png 1480w\"}},vvuqj7Rlm:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+2585+40+67.2+10+0+0+0+12+0),pixelHeight:2172,pixelWidth:1480,positionX:\"center\",positionY:\"top\",sizes:`calc(min(${componentViewport?.width||\"100vw\"}, 1000px) - 44px)`,src:\"https://framerusercontent.com/images/rkOBnEGHEiaVRf3SUkTVRYRv584.png\",srcSet:\"https://framerusercontent.com/images/rkOBnEGHEiaVRf3SUkTVRYRv584.png?scale-down-to=1024 697w,https://framerusercontent.com/images/rkOBnEGHEiaVRf3SUkTVRYRv584.png?scale-down-to=2048 1395w,https://framerusercontent.com/images/rkOBnEGHEiaVRf3SUkTVRYRv584.png 1480w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:2172,pixelWidth:1480,positionX:\"center\",positionY:\"top\",sizes:\"326px\",src:\"https://framerusercontent.com/images/rkOBnEGHEiaVRf3SUkTVRYRv584.png\",srcSet:\"https://framerusercontent.com/images/rkOBnEGHEiaVRf3SUkTVRYRv584.png?scale-down-to=1024 697w,https://framerusercontent.com/images/rkOBnEGHEiaVRf3SUkTVRYRv584.png?scale-down-to=2048 1395w,https://framerusercontent.com/images/rkOBnEGHEiaVRf3SUkTVRYRv584.png 1480w\"},className:\"framer-1fala6a\"})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-19xperw\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{R2pczdSMX:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{style:{\"--font-selector\":\"R0Y7Um9ib3RvLTcwMA==\",\"--framer-font-family\":'\"Roboto\", \"Roboto Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"1em\"},children:\"Maja Voje\"})})},vvuqj7Rlm:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{style:{\"--font-selector\":\"R0Y7Um9ib3RvLTcwMA==\",\"--framer-font-family\":'\"Roboto\", \"Roboto Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"1em\"},children:\"Maja Voje\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{style:{\"--font-selector\":\"R0Y7Um9ib3RvLTcwMA==\",\"--framer-font-family\":'\"Roboto\", \"Roboto Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"1em\"},children:\"Maja Voje\"})}),className:\"framer-gnekv2\",fonts:[\"GF;Roboto-700\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{vvuqj7Rlm:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{style:{\"--font-selector\":\"R0Y7Um9ib3RvLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Roboto\", \"Roboto Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"1em\"},children:\"Entrepreneur and Author\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{style:{\"--font-selector\":\"R0Y7Um9ib3RvLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Roboto\", \"Roboto Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-line-height\":\"1em\"},children:\"Entrepreneur and Author\"})}),className:\"framer-1u6kkg7\",fonts:[\"GF;Roboto-regular\"],verticalAlignment:\"top\",withExternalLayout:true})})]})]}),isDisplayed1()&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1vcvw2s hidden-et0iqu\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1wnbrc3\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"R0Y7Um9ib3RvLTcwMA==\",\"--framer-font-family\":'\"Roboto\", \"Roboto Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"700\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-aeced44f-af67-42d0-b786-4444e9debda7, rgb(26, 26, 26))\",\"--framer-text-stroke-color\":\"rgba(0, 0, 0, 1)\",\"--framer-text-stroke-width\":\"0px\"},children:\"Join the Mission\"})}),className:\"framer-11jzzok\",fonts:[\"GF;Roboto-700\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"R0Y7Um9ib3RvLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Roboto\", \"Roboto Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-letter-spacing\":\"-0.01em\",\"--framer-line-height\":\"1.1em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-aeced44f-af67-42d0-b786-4444e9debda7, rgb(26, 26, 26))\"},children:[\"Connect with thousands of like-minded experts and \",/*#__PURE__*/_jsx(\"strong\",{children:\"get exclusive insights, resources, and updates.\"})]})}),className:\"framer-rrms8n\",fonts:[\"GF;Roboto-regular\",\"GF;Roboto-700\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-teqoxb\",children:[/*#__PURE__*/_jsx(Link,{href:\"https://www.linkedin.com/in/majavoje/\",motionChild:true,nodeId:\"VwkSgNlf6\",scopeId:\"jaFc83PwF\",children:/*#__PURE__*/_jsxs(motion.a,{className:\"framer-b1ne9q framer-8tay74\",\"data-border\":true,whileHover:animation2,children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-sxj9bx\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:2048,pixelWidth:2048,sizes:\"40px\",src:\"https://framerusercontent.com/images/LkXhDnc394RXzgwOtQQQLYCQnwA.png\",srcSet:\"https://framerusercontent.com/images/LkXhDnc394RXzgwOtQQQLYCQnwA.png?scale-down-to=512 512w,https://framerusercontent.com/images/LkXhDnc394RXzgwOtQQQLYCQnwA.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/LkXhDnc394RXzgwOtQQQLYCQnwA.png 2048w\"},className:\"framer-1md42i3\",\"data-border\":true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1niym5t\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"R0Y7Um9ib3RvLTcwMA==\",\"--framer-font-family\":'\"Roboto\", \"Roboto Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"700\"},children:[\"LinkedIn \",/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"R0Y7Um9ib3RvLXJlZ3VsYXI=\",\"--framer-font-weight\":\"400\",\"--framer-text-color\":\"rgba(0, 0, 0, 0.6)\"},children:\"followers\"})]})}),className:\"framer-1ndf485\",fonts:[\"GF;Roboto-700\",\"GF;Roboto-regular\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7Um9ib3RvLTcwMA==\",\"--framer-font-family\":'\"Roboto\", \"Roboto Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"700\",\"--framer-text-color\":\"rgb(2, 126, 186)\"},children:\"60,000+\"})}),className:\"framer-zzrgee\",fonts:[\"GF;Roboto-700\"],verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1o09d6j\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1fqq27u\",\"data-framer-name\":\"External-link\",fill:\"rgba(0, 0, 0, 0.2)\",intrinsicHeight:24,intrinsicWidth:24,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"24\" height=\"24\" fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\" class=\"lucide lucide-external-link\"><path d=\"M15 3h6v6m-11 5L21 3m-3 10v6a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V8a2 2 0 0 1 2-2h6\"/></svg>',withExternalLayout:true})})]})}),/*#__PURE__*/_jsx(Link,{href:{hash:\":aETlEDUjn\",webPageId:\"jaFc83PwF\"},motionChild:true,nodeId:\"v94cyCf7V\",openInNewTab:false,scopeId:\"jaFc83PwF\",smoothScroll:true,children:/*#__PURE__*/_jsxs(motion.a,{className:\"framer-1gg9i0p framer-8tay74\",\"data-border\":true,whileHover:animation2,children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-5cox58\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:1024,pixelWidth:1024,sizes:\"40px\",src:\"https://framerusercontent.com/images/vj75m6LIvnUEMDmYSo5fPrqo.png\",srcSet:\"https://framerusercontent.com/images/vj75m6LIvnUEMDmYSo5fPrqo.png?scale-down-to=512 512w,https://framerusercontent.com/images/vj75m6LIvnUEMDmYSo5fPrqo.png 1024w\"},className:\"framer-12o521b\",\"data-border\":true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1jdwyvu\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"R0Y7Um9ib3RvLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Roboto\", \"Roboto Placeholder\", sans-serif',\"--framer-font-size\":\"14px\"},children:[/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"R0Y7Um9ib3RvLTcwMA==\",\"--framer-font-weight\":\"700\"},children:\"Newsletter\"}),\" subscribers\"]})}),className:\"framer-d8idet\",fonts:[\"GF;Roboto-regular\",\"GF;Roboto-700\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7Um9ib3RvLTcwMA==\",\"--framer-font-family\":'\"Roboto\", \"Roboto Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"700\",\"--framer-text-color\":\"rgb(218, 119, 8)\"},children:\"16,000+\"})}),className:\"framer-a3tosc\",fonts:[\"GF;Roboto-700\"],verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1rfhlqd\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1dnekpk\",\"data-framer-name\":\"Link\",fill:\"rgba(0, 0, 0, 0.2)\",intrinsicHeight:24,intrinsicWidth:24,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"24\" height=\"24\" fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\" class=\"lucide lucide-link\"><path d=\"M10 13a5 5 0 0 0 7.54.54l3-3a5 5 0 0 0-7.07-7.07l-1.72 1.71\"/><path d=\"M14 11a5 5 0 0 0-7.54-.54l-3 3a5 5 0 0 0 7.07 7.07l1.71-1.71\"/></svg>',withExternalLayout:true})})]})})]})]})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-148197c\",\"data-border\":true,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{vvuqj7Rlm:{children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"R0Y7Um9ib3RvLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Roboto\", \"Roboto Placeholder\", sans-serif'},children:[\"Maja Voje helps companies \",/*#__PURE__*/_jsx(\"strong\",{children:\"build and execute winning go-to-market strategies\"}),\". She is a best-selling author of Go-To-Market Strategist.\"]}),/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"R0Y7Um9ib3RvLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Roboto\", \"Roboto Placeholder\", sans-serif'},children:[\"She spent 15 years working in growth and marketing across the spectrum of \",/*#__PURE__*/_jsx(\"strong\",{children:\"high-profile unicorns and enterprises\"}),\" such as Google, Rocket Internet, Bayer, and Heineken to scaleups and \",/*#__PURE__*/_jsx(\"strong\",{children:\"over 800 startups.\"})]}),/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"R0Y7Um9ib3RvLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Roboto\", \"Roboto Placeholder\", sans-serif',\"--framer-font-size\":\"14px\"},children:[/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-font-size\":\"16px\"},children:\"One thing became painfully clear:\\xa0\"}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-font-size\":\"16px\"},children:/*#__PURE__*/_jsx(\"br\",{})}),/*#__PURE__*/_jsxs(\"span\",{style:{\"--framer-font-size\":\"16px\"},children:[/*#__PURE__*/_jsx(\"strong\",{children:\"74% of products fail not because the products are bad but because of GTM mistakes.\"}),\"\\xa0\"]})]}),/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"R0Y7Um9ib3RvLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Roboto\", \"Roboto Placeholder\", sans-serif'},children:[\"And even average products \",/*#__PURE__*/_jsx(\"strong\",{children:\"succeed if the plan is solid.\"}),\"\\xa0\"]}),/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"R0Y7Um9ib3RvLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Roboto\", \"Roboto Placeholder\", sans-serif'},children:[\"And that became \",/*#__PURE__*/_jsx(\"strong\",{children:\"Maja\u2019s mission: Give great products the fighting chance they deserve\"}),\".\\xa0\"]}),/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"R0Y7Um9ib3RvLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Roboto\", \"Roboto Placeholder\", sans-serif'},children:[\"Maja invented the \",/*#__PURE__*/_jsx(\"strong\",{children:\"GTM Strategist method\"}),\" and created GTM Power Hour, GTM Checklist, GTM Masterclass, and many other resources. That \",/*#__PURE__*/_jsx(\"strong\",{children:\"helped thousands of companies\"}),\" to thrive in their go-to-market endeavors and focus their resources on where they have the \",/*#__PURE__*/_jsx(\"strong\",{children:\"highest chance of winning.\"})]}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7Um9ib3RvLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Roboto\", \"Roboto Placeholder\", sans-serif'},children:\"In her career, Maja Voje has helped several companies invest up to $10-25 million and scale from $20 million to $60-100 million in yearly revenue.\"})]})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"R0Y7Um9ib3RvLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Roboto\", \"Roboto Placeholder\", sans-serif',\"--framer-line-height\":\"24px\"},children:[\"Maja Voje helps companies \",/*#__PURE__*/_jsx(\"strong\",{children:\"build and execute winning go-to-market strategies\"}),\". She is a best-selling author of Go-To-Market Strategist.\"]}),/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"R0Y7Um9ib3RvLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Roboto\", \"Roboto Placeholder\", sans-serif',\"--framer-line-height\":\"24px\"},children:[\"She spent 15 years working in growth and marketing across the spectrum of \",/*#__PURE__*/_jsx(\"strong\",{children:\"high-profile unicorns and enterprises\"}),\" such as Google, Rocket Internet, Bayer, and Heineken to scaleups and \",/*#__PURE__*/_jsx(\"strong\",{children:\"over 800 startups.\"})]}),/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"R0Y7Um9ib3RvLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Roboto\", \"Roboto Placeholder\", sans-serif',\"--framer-line-height\":\"24px\"},children:[\"One thing became painfully clear:\\xa0\",/*#__PURE__*/_jsx(\"br\",{}),/*#__PURE__*/_jsx(\"strong\",{children:\"74% of products fail not because the products are bad but because of GTM mistakes.\"}),\"\\xa0\"]}),/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"R0Y7Um9ib3RvLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Roboto\", \"Roboto Placeholder\", sans-serif',\"--framer-line-height\":\"24px\"},children:[\"And even average products \",/*#__PURE__*/_jsx(\"strong\",{children:\"succeed if the plan is solid.\"}),\"\\xa0\"]}),/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"R0Y7Um9ib3RvLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Roboto\", \"Roboto Placeholder\", sans-serif',\"--framer-line-height\":\"24px\"},children:[\"And that became \",/*#__PURE__*/_jsx(\"strong\",{children:\"Maja\u2019s mission: Give great products the fighting chance they deserve\"}),\".\\xa0\"]}),/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"R0Y7Um9ib3RvLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Roboto\", \"Roboto Placeholder\", sans-serif',\"--framer-line-height\":\"24px\"},children:[\"Maja invented the \",/*#__PURE__*/_jsx(\"strong\",{children:\"GTM Strategist method\"}),\" and created GTM Power Hour, GTM Checklist, GTM Masterclass, and many other resources. That \",/*#__PURE__*/_jsx(\"strong\",{children:\"helped thousands of companies\"}),\" to thrive in their go-to-market endeavors and focus their resources on where they have the \",/*#__PURE__*/_jsx(\"strong\",{children:\"highest chance of winning.\"})]}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7Um9ib3RvLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Roboto\", \"Roboto Placeholder\", sans-serif',\"--framer-line-height\":\"24px\"},children:\"In her career, Maja Voje has helped several companies invest up to $10-25 million and scale from $20 million to $60-100 million in yearly revenue.\"})]}),className:\"framer-1osgti9\",fonts:[\"GF;Roboto-regular\",\"GF;Roboto-700\"],verticalAlignment:\"top\",withExternalLayout:true})})}),isDisplayed()&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-exwkj4 hidden-1rypi7h hidden-18shuhr\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-y6cgz6\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"R0Y7Um9ib3RvLTcwMA==\",\"--framer-font-family\":'\"Roboto\", \"Roboto Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"700\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-aeced44f-af67-42d0-b786-4444e9debda7, rgb(26, 26, 26))\",\"--framer-text-stroke-color\":\"rgba(0, 0, 0, 1)\",\"--framer-text-stroke-width\":\"0px\"},children:\"Join the Mission\"})}),className:\"framer-qwg4hq\",fonts:[\"GF;Roboto-700\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"R0Y7Um9ib3RvLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Roboto\", \"Roboto Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-letter-spacing\":\"-0.01em\",\"--framer-line-height\":\"1.1em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-aeced44f-af67-42d0-b786-4444e9debda7, rgb(26, 26, 26))\"},children:[\"Connect with thousands of like-minded experts and \",/*#__PURE__*/_jsx(\"strong\",{children:\"get exclusive insights, resources, and updates.\"})]})}),className:\"framer-42pz72\",fonts:[\"GF;Roboto-regular\",\"GF;Roboto-700\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-pkw8ww\",children:[/*#__PURE__*/_jsx(Link,{href:\"https://www.linkedin.com/in/majavoje/\",motionChild:true,nodeId:\"eCc8cWQGP\",scopeId:\"jaFc83PwF\",children:/*#__PURE__*/_jsxs(motion.a,{className:\"framer-1k01xay framer-8tay74\",\"data-border\":true,whileHover:animation2,children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1uhbqxg\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{vvuqj7Rlm:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+2585+40+67.2+10+1204+12+125+0+0+12+1.4),pixelHeight:2048,pixelWidth:2048,sizes:\"40px\",src:\"https://framerusercontent.com/images/LkXhDnc394RXzgwOtQQQLYCQnwA.png\",srcSet:\"https://framerusercontent.com/images/LkXhDnc394RXzgwOtQQQLYCQnwA.png?scale-down-to=512 512w,https://framerusercontent.com/images/LkXhDnc394RXzgwOtQQQLYCQnwA.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/LkXhDnc394RXzgwOtQQQLYCQnwA.png 2048w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:2048,pixelWidth:2048,sizes:\"40px\",src:\"https://framerusercontent.com/images/LkXhDnc394RXzgwOtQQQLYCQnwA.png\",srcSet:\"https://framerusercontent.com/images/LkXhDnc394RXzgwOtQQQLYCQnwA.png?scale-down-to=512 512w,https://framerusercontent.com/images/LkXhDnc394RXzgwOtQQQLYCQnwA.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/LkXhDnc394RXzgwOtQQQLYCQnwA.png 2048w\"},className:\"framer-o1p9gr\",\"data-border\":true})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1p5clyt\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"R0Y7Um9ib3RvLTcwMA==\",\"--framer-font-family\":'\"Roboto\", \"Roboto Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"700\"},children:[\"LinkedIn \",/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"R0Y7Um9ib3RvLXJlZ3VsYXI=\",\"--framer-font-weight\":\"400\",\"--framer-text-color\":\"rgba(0, 0, 0, 0.4)\"},children:\"followers\"})]})}),className:\"framer-1txy253\",fonts:[\"GF;Roboto-700\",\"GF;Roboto-regular\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7Um9ib3RvLTcwMA==\",\"--framer-font-family\":'\"Roboto\", \"Roboto Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"700\",\"--framer-text-color\":\"rgb(2, 126, 186)\"},children:\"60,000+\"})}),className:\"framer-dogksp\",fonts:[\"GF;Roboto-700\"],verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-htv6nr\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-127atj3\",\"data-framer-name\":\"External-link\",fill:\"rgba(0, 0, 0, 0.2)\",intrinsicHeight:24,intrinsicWidth:24,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"24\" height=\"24\" fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\" class=\"lucide lucide-external-link\"><path d=\"M15 3h6v6m-11 5L21 3m-3 10v6a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V8a2 2 0 0 1 2-2h6\"/></svg>',withExternalLayout:true})})]})}),/*#__PURE__*/_jsx(Link,{href:{hash:\":aETlEDUjn\",webPageId:\"jaFc83PwF\"},motionChild:true,nodeId:\"N9Dvg0I1j\",openInNewTab:false,scopeId:\"jaFc83PwF\",smoothScroll:true,children:/*#__PURE__*/_jsxs(motion.a,{className:\"framer-jlx8j1 framer-8tay74\",\"data-border\":true,whileHover:animation2,children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1l4g2mc\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{vvuqj7Rlm:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+2585+40+67.2+10+1204+12+125+0+72.8+12+4.4),pixelHeight:1024,pixelWidth:1024,sizes:\"40px\",src:\"https://framerusercontent.com/images/vj75m6LIvnUEMDmYSo5fPrqo.png\",srcSet:\"https://framerusercontent.com/images/vj75m6LIvnUEMDmYSo5fPrqo.png?scale-down-to=512 512w,https://framerusercontent.com/images/vj75m6LIvnUEMDmYSo5fPrqo.png 1024w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:1024,pixelWidth:1024,sizes:\"40px\",src:\"https://framerusercontent.com/images/vj75m6LIvnUEMDmYSo5fPrqo.png\",srcSet:\"https://framerusercontent.com/images/vj75m6LIvnUEMDmYSo5fPrqo.png?scale-down-to=512 512w,https://framerusercontent.com/images/vj75m6LIvnUEMDmYSo5fPrqo.png 1024w\"},className:\"framer-17fymol\",\"data-border\":true})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-6nyitb\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"R0Y7Um9ib3RvLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Roboto\", \"Roboto Placeholder\", sans-serif',\"--framer-font-size\":\"14px\"},children:[/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"R0Y7Um9ib3RvLTcwMA==\",\"--framer-font-weight\":\"700\"},children:\"Newsletter\"}),\" \",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"rgba(0, 0, 0, 0.4)\"},children:\"subscribers\"})]})}),className:\"framer-10ew54n\",fonts:[\"GF;Roboto-regular\",\"GF;Roboto-700\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7Um9ib3RvLTcwMA==\",\"--framer-font-family\":'\"Roboto\", \"Roboto Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"700\",\"--framer-text-color\":\"rgb(218, 119, 8)\"},children:\"16,000+\"})}),className:\"framer-1sgyqrp\",fonts:[\"GF;Roboto-700\"],verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1atx8xl\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-7tyrer\",\"data-framer-name\":\"Link\",fill:\"rgba(0, 0, 0, 0.2)\",intrinsicHeight:24,intrinsicWidth:24,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"24\" height=\"24\" fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\" class=\"lucide lucide-link\"><path d=\"M10 13a5 5 0 0 0 7.54.54l3-3a5 5 0 0 0-7.07-7.07l-1.72 1.71\"/><path d=\"M14 11a5 5 0 0 0-7.54-.54l-3 3a5 5 0 0 0 7.07 7.07l1.71-1.71\"/></svg>',withExternalLayout:true})})]})})]})]})]})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{vvuqj7Rlm:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+4222.8),sizes:componentViewport?.width||\"100vw\",src:\"https://framerusercontent.com/images/Fkqa5RRAMsR3nW3u6aTMGgxYns.jpg\",srcSet:\"https://framerusercontent.com/images/Fkqa5RRAMsR3nW3u6aTMGgxYns.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/Fkqa5RRAMsR3nW3u6aTMGgxYns.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/Fkqa5RRAMsR3nW3u6aTMGgxYns.jpg 1467w\"}}},children:/*#__PURE__*/_jsxs(\"div\",{background:{alt:\"\",fit:\"fill\"},className:\"framer-1vtx90n\",\"data-framer-name\":\"Reviews\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1sfzx8x\",\"data-framer-name\":\"Titles\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{vvuqj7Rlm:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h2\",{style:{\"--font-selector\":\"R0Y7Q2hha3JhIFBldGNoLTcwMA==\",\"--framer-font-family\":'\"Chakra Petch\", \"Chakra Petch Placeholder\", sans-serif',\"--framer-font-size\":\"32px\",\"--framer-font-weight\":\"700\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-aeced44f-af67-42d0-b786-4444e9debda7, rgb(26, 26, 26))\"},children:[\"Real People, \",/*#__PURE__*/_jsx(\"br\",{}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-decoration\":\"underline\"},children:\"Real Results\"})]})})}},children:/*#__PURE__*/_jsx(RichTextWithHighlightColor11totb6h,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h2\",{style:{\"--font-selector\":\"R0Y7Q2hha3JhIFBldGNoLTcwMA==\",\"--framer-font-family\":'\"Chakra Petch\", \"Chakra Petch Placeholder\", sans-serif',\"--framer-font-size\":\"36px\",\"--framer-font-weight\":\"700\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-aeced44f-af67-42d0-b786-4444e9debda7, rgb(26, 26, 26))\"},children:[\"Real People, \",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-decoration\":\"underline\"},children:\"Real Results\"})]})}),className:\"framer-1totb6h\",fonts:[\"GF;Chakra Petch-700\"],verticalAlignment:\"top\",withExternalLayout:true})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1hs6z4-container\",isModuleExternal:true,nodeId:\"YV0CxFVbN\",scopeId:\"jaFc83PwF\",children:/*#__PURE__*/_jsx(Ticker1,{alignment:\"center\",direction:\"left\",fadeOptions:{fadeAlpha:0,fadeContent:true,fadeInset:0,fadeWidth:25,overflow:false},gap:24,height:\"100%\",hoverFactor:1,id:\"YV0CxFVbN\",layoutId:\"YV0CxFVbN\",padding:10,paddingBottom:10,paddingLeft:10,paddingPerSide:false,paddingRight:10,paddingTop:10,sizingOptions:{heightType:true,widthType:true},slots:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-wzj4zs\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:288,children:/*#__PURE__*/_jsx(Container,{className:\"framer-159h2n0-container\",inComponentSlot:true,nodeId:\"UjR9E0iEp\",rendersWithMotion:true,scopeId:\"jaFc83PwF\",children:/*#__PURE__*/_jsx(Review_2,{bkoPerOO8:addImageAlt({src:\"https://framerusercontent.com/images/QKuE0MBuhdOcAlkq8JnuLJ3ebMk.png\"},\"\"),FUBbCTiZ3:\"\u2605\u2605\u2605\u2605\u2605\",height:\"100%\",id:\"UjR9E0iEp\",JQGh1DquF:\"5.0\",layoutId:\"UjR9E0iEp\",qJY_z_pQ8:\"Reviewing GTM Checklist\",variant:\"utCvoGwgo\",width:\"100%\",XHXMpL2Fa:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{children:\"As an early-stage company, DevStats is currently exploring different go-to-market strategies. Before our session, I was uncertain if I was on the right track. I had many ideas but lacked focus. During the session, we did an informal positioning exercise that provided insights into how I could enhance my current positioning. We also reviewed the strategies I have attempted so far and discussed my ideas, addressing the challenges associated with each one.\\xa0 We did an exercise that helped me visualize the high value, low efforts motions and that's what I will be focusing on in the next few months.\"})}),xMvzABla3:\"Phil Alves\",xQhPZ9emf:\"Verified Purchase\",Z75M3tVzZ:\"Founder, DevStats\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:288,children:/*#__PURE__*/_jsx(Container,{className:\"framer-135qwge-container\",inComponentSlot:true,nodeId:\"f0R0ZqlkT\",rendersWithMotion:true,scopeId:\"jaFc83PwF\",children:/*#__PURE__*/_jsx(Review_2,{bkoPerOO8:addImageAlt({src:\"https://framerusercontent.com/images/ZKBdBNyBy747KyD3Fp1vZJGQGBg.png\"},\"\"),FUBbCTiZ3:\"\u2605\u2605\u2605\u2605\u2605\",height:\"100%\",id:\"f0R0ZqlkT\",JQGh1DquF:\"5.0\",layoutId:\"f0R0ZqlkT\",qJY_z_pQ8:\"Reviewing GTM Checklist\",variant:\"utCvoGwgo\",width:\"100%\",XHXMpL2Fa:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{children:\"I felt like I lacked the entire understanding of the GTM levers and routes that I have for an initiative with disruptive potential.\\xa0\"}),/*#__PURE__*/_jsx(\"p\",{children:\"The session with Maja helped me understand the mechanics of how to orchestrate the right people, and I found a bunch of nice viral loops.\\xa0\"}),/*#__PURE__*/_jsxs(\"p\",{children:[\"I feel excited about what's next: \",/*#__PURE__*/_jsx(\"strong\",{children:\"I gained more clarity and a game plan that is more detailed than I expected.\"})]}),/*#__PURE__*/_jsx(\"p\",{children:\"I have already assembled the team and made the game plan to launch what aims to become the Global CRO benchmark for eCommerce.\"})]}),xMvzABla3:\"Valentin Radu\",xQhPZ9emf:\"Verified Purchase\",Z75M3tVzZ:\"CEO, Omniconvert.com\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:288,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1gy1y2t-container\",inComponentSlot:true,nodeId:\"EqPn6eAUi\",rendersWithMotion:true,scopeId:\"jaFc83PwF\",children:/*#__PURE__*/_jsx(Review_2,{bkoPerOO8:addImageAlt({src:\"https://framerusercontent.com/images/0Dw6fvbJB9m7TNaN8OXqVjiLcU.png\"},\"\"),FUBbCTiZ3:\"\u2605\u2605\u2605\u2605\u2605\",height:\"100%\",id:\"EqPn6eAUi\",JQGh1DquF:\"5.0\",layoutId:\"EqPn6eAUi\",qJY_z_pQ8:\"Reviewing GTM Checklist\",variant:\"utCvoGwgo\",width:\"100%\",XHXMpL2Fa:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{children:\"I recently attended a consultancy session with Maja, after weeks following her LinkedIn posts and taking her Bootcamp lessons. She provided invaluable guidance in prioritizing and clarifying a high-value use case for our horizontal Software as a Service, targeting clients with a higher ARR. This strategic focus has provided us with a clear path to scale our solution in the market. The key, in my opinion, was the amount of pre-work and familiarization that Maja made before our meeting and that accelerated the process significantly! Highly recommend her services!\"})}),xMvzABla3:\"Miguel Sureda \",xQhPZ9emf:\"Verified Purchase\",Z75M3tVzZ:\"Founder, Anlak\"})})})]})],speed:100,style:{height:\"100%\",maxWidth:\"100%\",width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-l6vfuk-container\",isModuleExternal:true,nodeId:\"yvuaRvzk3\",scopeId:\"jaFc83PwF\",children:/*#__PURE__*/_jsx(Ticker1,{alignment:\"center\",direction:\"right\",fadeOptions:{fadeAlpha:0,fadeContent:true,fadeInset:0,fadeWidth:25,overflow:false},gap:24,height:\"100%\",hoverFactor:1,id:\"yvuaRvzk3\",layoutId:\"yvuaRvzk3\",padding:10,paddingBottom:10,paddingLeft:10,paddingPerSide:false,paddingRight:10,paddingTop:10,sizingOptions:{heightType:true,widthType:true},slots:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1pn0ubg\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:288,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1i8ecym-container\",inComponentSlot:true,nodeId:\"lZgIJWYNE\",rendersWithMotion:true,scopeId:\"jaFc83PwF\",children:/*#__PURE__*/_jsx(Review_2,{bkoPerOO8:addImageAlt({src:\"https://framerusercontent.com/images/qYJfcKq8bmGm7E8z1qsZTuO15M.png\"},\"\"),FUBbCTiZ3:\"\u2605\u2605\u2605\u2605\u2605\",height:\"100%\",id:\"lZgIJWYNE\",JQGh1DquF:\"5.0\",layoutId:\"lZgIJWYNE\",qJY_z_pQ8:\"Reviewing GTM Checklist\",variant:\"utCvoGwgo\",width:\"100%\",XHXMpL2Fa:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{children:\"Maja is a power house! I was blown away by just how much information we were able to stuff into a 90-minute session. Maja has thought about every step of the GTM process, so I can't recommend her enough to founders looking to get their house in order.\"})}),xMvzABla3:\"Warren Sadler\",xQhPZ9emf:\"Verified Purchase\",Z75M3tVzZ:\"Co-founder and CTO, Therify\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:288,children:/*#__PURE__*/_jsx(Container,{className:\"framer-hfoz8p-container\",inComponentSlot:true,nodeId:\"QFe4U6nYv\",rendersWithMotion:true,scopeId:\"jaFc83PwF\",children:/*#__PURE__*/_jsx(Review_2,{bkoPerOO8:addImageAlt({src:\"https://framerusercontent.com/images/DZqltJVxgiQEORpWfg8DtfQoFpg.png\",srcSet:\"https://framerusercontent.com/images/DZqltJVxgiQEORpWfg8DtfQoFpg.png?scale-down-to=512 512w,https://framerusercontent.com/images/DZqltJVxgiQEORpWfg8DtfQoFpg.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/DZqltJVxgiQEORpWfg8DtfQoFpg.png 1366w\"},\"\"),FUBbCTiZ3:\"\u2605\u2605\u2605\u2605\u2605\",height:\"100%\",id:\"QFe4U6nYv\",JQGh1DquF:\"5.0\",layoutId:\"QFe4U6nYv\",qJY_z_pQ8:\"Reviewing GTM Checklist\",variant:\"utCvoGwgo\",width:\"100%\",XHXMpL2Fa:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{children:\"Working together was super helpful! I finally got clear on exactly who my ideal customers are and how to reach them. I also learned some great practical tips for creating a lead magnet that actually works, including smart ways to share it and get my network involved. Best of all, I'm now way more confident in my sales approach and truly believe in what I'm offering, which makes it so much easier to talk to potential customers. This was exactly what I needed to move forward!\"})}),xMvzABla3:\"Dima Durah\",xQhPZ9emf:\"Verified Purchase\",Z75M3tVzZ:\"CEO, Living Assets\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:288,children:/*#__PURE__*/_jsx(Container,{className:\"framer-t4wp55-container\",inComponentSlot:true,nodeId:\"U6UafNtCW\",rendersWithMotion:true,scopeId:\"jaFc83PwF\",children:/*#__PURE__*/_jsx(Review_2,{bkoPerOO8:addImageAlt({src:\"https://framerusercontent.com/images/IQQUKlRNoZeuBHJ2DbmcAXdeIM.png\",srcSet:\"https://framerusercontent.com/images/IQQUKlRNoZeuBHJ2DbmcAXdeIM.png?scale-down-to=512 512w,https://framerusercontent.com/images/IQQUKlRNoZeuBHJ2DbmcAXdeIM.png 800w\"},\"\"),FUBbCTiZ3:\"\u2605\u2605\u2605\u2605\u2605\",height:\"100%\",id:\"U6UafNtCW\",JQGh1DquF:\"5.0\",layoutId:\"U6UafNtCW\",qJY_z_pQ8:\"Reviewing GTM Checklist\",variant:\"utCvoGwgo\",width:\"100%\",XHXMpL2Fa:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{children:\"Maja's business savvy is only matched by her high energy. Working with her delivered actionable GTM strategies that are better than I would have come up with alone\u2014and more than that, her thought partnership helped me find a deeper and more powerful positioning for my startup. Highly recommend the Power Hour, great investment of time!\"})}),xMvzABla3:\"Abe Sorock\",xQhPZ9emf:\"Verified Purchase\",Z75M3tVzZ:\"Founder, LeadersAtlas\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:288,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1jo5pnw-container\",inComponentSlot:true,nodeId:\"P1S3lHLlN\",rendersWithMotion:true,scopeId:\"jaFc83PwF\",children:/*#__PURE__*/_jsx(Review_2,{bkoPerOO8:addImageAlt({src:\"https://framerusercontent.com/images/ZTDPgWNjvMwMXyAf4hcRNCiLI04.png\"},\"\"),FUBbCTiZ3:\"\u2605\u2605\u2605\u2605\u2605\",height:\"100%\",id:\"P1S3lHLlN\",JQGh1DquF:\"5.0\",layoutId:\"P1S3lHLlN\",qJY_z_pQ8:\"Reviewing GTM Checklist\",variant:\"utCvoGwgo\",width:\"100%\",XHXMpL2Fa:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{children:\"The GTM strategy session with Maja Voje was honestly such a great experience. Maja has this rare combination of deep expertise and enthusiasm that makes it easy to connect with her and get the most out of the session. She gave us a clear direction\u2014not just what we need to do, but exactly how to approach it and where to focus our efforts.\\xa0\"}),/*#__PURE__*/_jsx(\"p\",{children:\"We went into the session expecting a lot, but Maja still managed to exceed those expectations. If you\u2019re working on your GTM strategy and need someone who truly gets it, Maja is the person to call.\"})]}),xMvzABla3:\"Nenad Stojkovic\",xQhPZ9emf:\"Verified Purchase\",Z75M3tVzZ:\"Founder and CEO, Blackfield Labs\"})})})]})],speed:100,style:{height:\"100%\",maxWidth:\"100%\",width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-16d60nh\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{R2pczdSMX:{width:`max(min(min(${componentViewport?.width||\"100vw\"} - 20px, 1200px) - 20px, 400px), 262px)`},vvuqj7Rlm:{width:`min(min(${componentViewport?.width||\"100vw\"}, 1200px) - 20px, 350px)`,y:(componentViewport?.y||0)+0+4222.8+20+655.4+10+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:519,width:`min((min(${componentViewport?.width||\"100vw\"}, 1200px) - 20px) * 0.3, 350px)`,children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:false,__framer__enter:animation3,__framer__exit:animation4,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1s28oy5-container\",nodeId:\"LhZ2jZjsv\",rendersWithMotion:true,scopeId:\"jaFc83PwF\",children:/*#__PURE__*/_jsx(Review,{ebxNLetO2:\"CEO and Founder of ProductLed\",height:\"100%\",id:\"LhZ2jZjsv\",layoutId:\"LhZ2jZjsv\",M8fSi6lOU:addImageAlt({src:\"https://framerusercontent.com/images/puKui0yXF1VksVHBvyLRIPwijg.webp\"},\"\"),mmgLlUZZW:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{children:\"\u201CThis book is a must-read for any founder who doesn't want to take the long, meandering road to finding product-market fit.\u201D\"})}),style:{maxWidth:\"100%\",width:\"100%\"},variant:\"RFMrQMrR8\",width:\"100%\",WNC0FN220:\"Wes Bush\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{R2pczdSMX:{width:`max(min(min(${componentViewport?.width||\"100vw\"} - 20px, 1200px) - 20px, 400px), 262px)`},vvuqj7Rlm:{width:`min(min(${componentViewport?.width||\"100vw\"}, 1200px) - 20px, 350px)`,y:(componentViewport?.y||0)+0+4222.8+20+655.4+10+543}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:519,width:`min((min(${componentViewport?.width||\"100vw\"}, 1200px) - 20px) * 0.3, 350px)`,children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:false,__framer__enter:animation3,__framer__exit:animation4,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1djdy9q-container\",nodeId:\"YB3Q8MkgV\",rendersWithMotion:true,scopeId:\"jaFc83PwF\",children:/*#__PURE__*/_jsx(Review,{ebxNLetO2:\"Partner at Fletch\",height:\"100%\",id:\"YB3Q8MkgV\",layoutId:\"YB3Q8MkgV\",M8fSi6lOU:addImageAlt({src:\"https://framerusercontent.com/images/SPaoHsf1SNYBnOFuiM1Ewhtgmw.webp\"},\"\"),mmgLlUZZW:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{children:\"\u201DGo-to-market strategy and finding product-market fit tends to be a 'black box', especially for founders. Maja's approach of tapping into experts across the dimensions of GTM aims to remove the uncertainty of what good GTM strategy looks like \u2014 and makes this book a must read for founders, marketings, and product teams.\u201D\"})}),style:{maxWidth:\"100%\",width:\"100%\"},variant:\"RFMrQMrR8\",width:\"100%\",WNC0FN220:\"Robert Kaminski\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{R2pczdSMX:{width:`max(min(min(${componentViewport?.width||\"100vw\"} - 20px, 1200px) - 20px, 400px), 262px)`},vvuqj7Rlm:{width:`min(min(${componentViewport?.width||\"100vw\"}, 1200px) - 20px, 350px)`,y:(componentViewport?.y||0)+0+4222.8+20+655.4+10+1086}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:519,width:`min((min(${componentViewport?.width||\"100vw\"}, 1200px) - 20px) * 0.3, 350px)`,children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:false,__framer__enter:animation3,__framer__exit:animation4,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1r2o4mn-container\",nodeId:\"ZyeEOHkJv\",rendersWithMotion:true,scopeId:\"jaFc83PwF\",children:/*#__PURE__*/_jsx(Review,{ebxNLetO2:\"Author of bestseller Hacking Growth\",height:\"100%\",id:\"ZyeEOHkJv\",layoutId:\"ZyeEOHkJv\",M8fSi6lOU:addImageAlt({src:\"https://framerusercontent.com/images/L1yHn34la6KwZNwcwmkRoJ2UDKM.webp\"},\"\"),mmgLlUZZW:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{children:\"\u201DMaja's book is the best guide that I've seen for getting to product-market fit, and without PMF, sustainable growth is impossible.\u201D\"})}),style:{maxWidth:\"100%\",width:\"100%\"},variant:\"RFMrQMrR8\",width:\"100%\",WNC0FN220:\"Sean Ellis\"})})})})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7Um9ib3RvLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Roboto\", \"Roboto Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-text-color\":\"var(--token-aeced44f-af67-42d0-b786-4444e9debda7, rgb(26, 26, 26))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"iIntcKT9x\"},motionChild:true,nodeId:\"Q1r0WJ7Lb\",openInNewTab:false,scopeId:\"jaFc83PwF\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1ex5fti\",\"data-styles-preset\":\"EsFVOJYdO\",children:\"See more reviews on our wall of love \uD83D\uDC9C \u2192\"})})})}),className:\"framer-18bu1iz\",fonts:[\"GF;Roboto-regular\"],verticalAlignment:\"top\",withExternalLayout:true})]})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{vvuqj7Rlm:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+6572),sizes:componentViewport?.width||\"100vw\",src:\"https://framerusercontent.com/images/Fkqa5RRAMsR3nW3u6aTMGgxYns.jpg\",srcSet:\"https://framerusercontent.com/images/Fkqa5RRAMsR3nW3u6aTMGgxYns.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/Fkqa5RRAMsR3nW3u6aTMGgxYns.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/Fkqa5RRAMsR3nW3u6aTMGgxYns.jpg 1467w\"}}},children:/*#__PURE__*/_jsxs(\"div\",{background:{alt:\"\",fit:\"fill\"},className:\"framer-q5vrg7\",\"data-framer-name\":\"Reviews\",id:elementId4,ref:ref5,children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1flxwnj\",\"data-framer-name\":\"Titles\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{vvuqj7Rlm:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h2\",{style:{\"--font-selector\":\"R0Y7Q2hha3JhIFBldGNoLTcwMA==\",\"--framer-font-family\":'\"Chakra Petch\", \"Chakra Petch Placeholder\", sans-serif',\"--framer-font-size\":\"32px\",\"--framer-font-weight\":\"700\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-aeced44f-af67-42d0-b786-4444e9debda7, rgb(26, 26, 26))\"},children:[\"Free weekly newsletter \",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-decoration\":\"underline\"},children:\"+ welcome gift\"})]})})}},children:/*#__PURE__*/_jsx(RichTextWithHighlightColor1zmge2g,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h2\",{style:{\"--font-selector\":\"R0Y7Q2hha3JhIFBldGNoLTcwMA==\",\"--framer-font-family\":'\"Chakra Petch\", \"Chakra Petch Placeholder\", sans-serif',\"--framer-font-size\":\"36px\",\"--framer-font-weight\":\"700\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-aeced44f-af67-42d0-b786-4444e9debda7, rgb(26, 26, 26))\"},children:[\"Free weekly newsletter \",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-decoration\":\"underline\"},children:\"+ welcome gift\"})]})}),className:\"framer-zmge2g\",fonts:[\"GF;Chakra Petch-700\"],verticalAlignment:\"top\",withExternalLayout:true})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-2xlhaz\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"R0Y7Um9ib3RvLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Roboto\", \"Roboto Placeholder\", sans-serif',\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-aeced44f-af67-42d0-b786-4444e9debda7, rgb(26, 26, 26))\"},children:[\"Subscribe to the GTM Strategist newsletter with \",/*#__PURE__*/_jsx(\"strong\",{children:\"best practices, hot tips, and tools\"}),\".\",/*#__PURE__*/_jsx(\"br\",{}),\" \",/*#__PURE__*/_jsx(\"strong\",{children:\"Join more than 16,000 go-to-market strategists.\"}),\" In your inbox every Friday.\"]})}),className:\"framer-1u0xztb\",fonts:[\"GF;Roboto-regular\",\"GF;Roboto-700\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-94y9vw\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{vvuqj7Rlm:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+6572+20+54.4+24+115+0+0),pixelHeight:2708,pixelWidth:3355,positionX:\"center\",positionY:\"top\",sizes:`calc(min(${componentViewport?.width||\"100vw\"} - 20px, 850px) - 48px)`,src:\"https://framerusercontent.com/images/xiwJYCRYoNg9aZK2aJdUqQag.png\",srcSet:\"https://framerusercontent.com/images/xiwJYCRYoNg9aZK2aJdUqQag.png?scale-down-to=512 512w,https://framerusercontent.com/images/xiwJYCRYoNg9aZK2aJdUqQag.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/xiwJYCRYoNg9aZK2aJdUqQag.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/xiwJYCRYoNg9aZK2aJdUqQag.png 3355w\"}}},children:/*#__PURE__*/_jsx(ImageWithFX,{__framer__animate:{transition:transition3},__framer__animateOnce:false,__framer__enter:animation5,__framer__exit:animation6,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,background:{alt:\"\",fit:\"fill\",pixelHeight:2708,pixelWidth:3355,positionX:\"center\",positionY:\"top\",sizes:\"802px\",src:\"https://framerusercontent.com/images/xiwJYCRYoNg9aZK2aJdUqQag.png\",srcSet:\"https://framerusercontent.com/images/xiwJYCRYoNg9aZK2aJdUqQag.png?scale-down-to=512 512w,https://framerusercontent.com/images/xiwJYCRYoNg9aZK2aJdUqQag.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/xiwJYCRYoNg9aZK2aJdUqQag.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/xiwJYCRYoNg9aZK2aJdUqQag.png 3355w\"},className:\"framer-1dk3s2w\"})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-183m872\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"R0Y7Um9ib3RvLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Roboto\", \"Roboto Placeholder\", sans-serif',\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-aeced44f-af67-42d0-b786-4444e9debda7, rgb(26, 26, 26))\"},children:[\"Free welcome gift: \",/*#__PURE__*/_jsx(\"strong\",{children:\"GTM Power Hour template\"})]})}),className:\"framer-1363vzz\",fonts:[\"GF;Roboto-regular\",\"GF;Roboto-700\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{vvuqj7Rlm:{y:(componentViewport?.y||0)+0+6572+20+54.4+24+314}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:45,children:/*#__PURE__*/_jsx(Container,{className:\"framer-zzrpbf-container\",nodeId:\"gaOR7OyX_\",scopeId:\"jaFc83PwF\",children:/*#__PURE__*/_jsx(CTAButtonOld,{An0B1FOIT:\"Subscribe for free\",height:\"100%\",id:\"gaOR7OyX_\",iUfuvn8a9:true,layoutId:\"gaOR7OyX_\",variant:\"eDGnwMIIb\",width:\"100%\",xlu1VlVra:\"https://knowledge.gtmstrategist.com/\"})})})})]})]})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1avq8nn\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{vvuqj7Rlm:{y:(componentViewport?.y||0)+0+7073.4+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:100,width:componentViewport?.width||\"100vw\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-17f6ow6-container\",nodeId:\"Ih6dSnwFh\",scopeId:\"jaFc83PwF\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{R2pczdSMX:{variant:\"QYibPzW7m\"},vvuqj7Rlm:{variant:\"G2mlJ0Wwy\"}},children:/*#__PURE__*/_jsx(Footer,{height:\"100%\",id:\"Ih6dSnwFh\",layoutId:\"Ih6dSnwFh\",style:{width:\"100%\"},variant:\"UV0icq2D1\",width:\"100%\"})})})})})})]}),/*#__PURE__*/_jsx(\"div\",{id:\"overlay\"})]})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-Q41kF.framer-8tay74, .framer-Q41kF .framer-8tay74 { display: block; }\",\".framer-Q41kF.framer-1rypi7h { align-content: center; align-items: center; background-color: var(--token-ae756d7a-c4ff-4a5e-a170-543733a03a99, #efefef); 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-Q41kF .framer-xg6xlb-container { flex: none; height: 64px; left: calc(50.00000000000002% - 100% / 2); position: fixed; top: 0px; width: 100%; z-index: 5; }\",\".framer-Q41kF .framer-581bs3 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: center; overflow: hidden; padding: 46px 20px 46px 20px; position: relative; width: 100%; }\",\".framer-Q41kF .framer-1vfse2b { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 54px; height: min-content; justify-content: center; max-width: 1300px; overflow: visible; padding: 70px 0px 70px 0px; position: relative; width: 100%; }\",\".framer-Q41kF .framer-6fx4ul { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 32px; height: min-content; justify-content: center; max-width: 800px; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-Q41kF .framer-1lf2uaw { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; will-change: var(--framer-will-change-effect-override, transform); word-break: break-word; word-wrap: break-word; }\",\".framer-Q41kF .framer-1owqgii, .framer-Q41kF .framer-n6tbkz, .framer-Q41kF .framer-1jhem0t, .framer-Q41kF .framer-1kmlo6l, .framer-Q41kF .framer-38ohdo, .framer-Q41kF .framer-1tmt6t2, .framer-Q41kF .framer-185mwwk { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-Q41kF .framer-14vrjgi { aspect-ratio: 1.8333333333333333 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 380px); min-width: 50%; overflow: visible; position: relative; width: 60%; }\",\".framer-Q41kF .framer-1uksap2 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 4px; height: min-content; justify-content: center; overflow: hidden; padding: 24px 0px 24px 0px; position: relative; width: 100%; }\",\".framer-Q41kF .framer-1ogi498, .framer-Q41kF .framer-gnekv2, .framer-Q41kF .framer-1u6kkg7, .framer-Q41kF .framer-1363vzz { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-Q41kF .framer-f6a43c-container { flex: none; height: 69px; max-width: 1200px; position: relative; width: 100%; }\",\".framer-Q41kF .framer-tyhe3y { aspect-ratio: 46.490196078431374 / 1; height: var(--framer-aspect-ratio-supported, 51px); overflow: visible; position: relative; width: 2371px; }\",\".framer-Q41kF .framer-kk285t { aspect-ratio: 34.166666666666664 / 1; height: var(--framer-aspect-ratio-supported, 48px); overflow: visible; position: relative; width: 1640px; }\",\".framer-Q41kF .framer-1ktsmk8 { aspect-ratio: 38.375 / 1; height: var(--framer-aspect-ratio-supported, 48px); overflow: visible; position: relative; width: 1842px; }\",\".framer-Q41kF .framer-m2tdek { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: center; overflow: hidden; padding: 64px 20px 64px 20px; position: relative; width: 100%; }\",\".framer-Q41kF .framer-94h0fx { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; max-width: 1000px; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-Q41kF .framer-k4mnom, .framer-Q41kF .framer-1jvyzh3 { -webkit-user-select: none; flex: none; height: auto; max-width: 650px; pointer-events: auto; position: relative; user-select: none; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-Q41kF .framer-1tclc37 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 10px; position: relative; width: 100%; }\",\".framer-Q41kF .framer-1ye3vic { --border-bottom-width: 1px; --border-color: #ffffff; --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; align-content: center; align-items: center; border-bottom-left-radius: 20px; border-bottom-right-radius: 20px; border-top-left-radius: 20px; border-top-right-radius: 20px; box-shadow: 0px 0.6021873017743928px 1.5656869846134214px -0.6666666666666666px rgba(0, 0, 0, 0.1), 0px 2.288533303243457px 5.950186588432988px -1.3333333333333333px rgba(0, 0, 0, 0.11144), 0px 10px 26px -2px rgba(0, 0, 0, 0.15); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; max-width: 1200px; overflow: hidden; padding: 40px 20px 40px 20px; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",'.framer-Q41kF .framer-1di09jm { background: linear-gradient(139deg, var(--token-ae756d7a-c4ff-4a5e-a170-543733a03a99, #efefef) /* {\"name\":\"GTM Grey Dark\"} */ 0%, rgba(250, 250, 250, 0.4) 99%); bottom: -1px; flex: none; left: -1px; opacity: 0.94; overflow: hidden; position: absolute; right: -1px; top: -1px; z-index: 0; }',\".framer-Q41kF .framer-1gp4bd6, .framer-Q41kF .framer-1a2bqno, .framer-Q41kF .framer-1547c8i { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; max-width: 1000px; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-Q41kF .framer-17kcco6, .framer-Q41kF .framer-10185qq { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; max-width: 1000px; overflow: visible; padding: 60px 0px 60px 0px; position: relative; width: 100%; }\",\".framer-Q41kF .framer-11sl2wp { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 36px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 56%; }\",\".framer-Q41kF .framer-1qwl1a1, .framer-Q41kF .framer-ey1os5 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-Q41kF .framer-11g91uj, .framer-Q41kF .framer-1f8kk4h, .framer-Q41kF .framer-woponp { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-Q41kF .framer-opejc1, .framer-Q41kF .framer-1rgwq8w, .framer-Q41kF .framer-1v5eft7 { align-content: center; align-items: center; background-color: var(--token-c7291228-fe05-410d-aa79-55711a8bc310, #f8fe03); border-bottom-left-radius: 50px; border-bottom-right-radius: 50px; border-top-left-radius: 50px; border-top-right-radius: 50px; box-shadow: 0px 0.6021873017743928px 0.6021873017743928px -1.25px rgba(0, 0, 0, 0.18), 0px 2.288533303243457px 2.288533303243457px -2.5px rgba(0, 0, 0, 0.15889), 0px 10px 10px -3.75px rgba(0, 0, 0, 0.0625); display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 2px 12px 2px 12px; position: relative; width: min-content; will-change: var(--framer-will-change-override, transform); }\",\".framer-Q41kF .framer-9ydz9s, .framer-Q41kF .framer-t2nnyv, .framer-Q41kF .framer-k60fga, .framer-Q41kF .framer-1ndf485, .framer-Q41kF .framer-zzrgee, .framer-Q41kF .framer-d8idet, .framer-Q41kF .framer-a3tosc, .framer-Q41kF .framer-1txy253, .framer-Q41kF .framer-dogksp, .framer-Q41kF .framer-10ew54n, .framer-Q41kF .framer-1sgyqrp, .framer-Q41kF .framer-18bu1iz { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-Q41kF .framer-v7igmv { align-content: flex-start; align-items: flex-start; bottom: -399px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 23px; height: 378px; justify-content: center; left: calc(50.00000000000002% - 100% / 2); overflow: visible; padding: 20px; position: absolute; width: 100%; z-index: 1; }\",\".framer-Q41kF .framer-1pphvyc-container, .framer-Q41kF .framer-159h2n0-container, .framer-Q41kF .framer-135qwge-container, .framer-Q41kF .framer-1gy1y2t-container, .framer-Q41kF .framer-1i8ecym-container, .framer-Q41kF .framer-hfoz8p-container, .framer-Q41kF .framer-t4wp55-container, .framer-Q41kF .framer-1jo5pnw-container, .framer-Q41kF .framer-zzrpbf-container { flex: none; height: auto; position: relative; width: auto; }\",\".framer-Q41kF .framer-1it87j1 { align-content: flex-start; align-items: flex-start; bottom: -184px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 23px; justify-content: center; overflow: visible; padding: 20px; position: absolute; right: -19px; top: -16px; width: 48%; z-index: 0; }\",\".framer-Q41kF .framer-sdquk8, .framer-Q41kF .framer-ttixy8 { --border-bottom-width: 1px; --border-color: rgba(255, 255, 255, 0.2); --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; align-content: center; align-items: center; border-bottom-left-radius: 20px; border-bottom-right-radius: 20px; border-top-left-radius: 20px; border-top-right-radius: 20px; box-shadow: 0px 0.6021873017743928px 1.5656869846134214px -0.6666666666666666px rgba(0, 0, 0, 0.1), 0px 2.288533303243457px 5.950186588432988px -1.3333333333333333px rgba(0, 0, 0, 0.11144), 0px 10px 26px -2px rgba(0, 0, 0, 0.15); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; max-width: 1200px; overflow: hidden; padding: 40px 20px 40px 20px; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-Q41kF .framer-1aq4rfy { background: linear-gradient(224deg, #cf7aa7 0%, rgb(161, 72, 170) 19%, rgb(90, 39, 127) 41%, rgba(208, 140, 160, 0.1466) 70%, rgba(222, 151, 165, 0) 100%); bottom: 0px; flex: none; left: 0px; opacity: 0.51; overflow: hidden; position: absolute; right: 0px; top: 0px; z-index: 0; }\",\".framer-Q41kF .framer-1d4w73c { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-end; max-width: 1000px; overflow: visible; padding: 60px 0px 60px 0px; position: relative; width: 100%; }\",\".framer-Q41kF .framer-123xxdn, .framer-Q41kF .framer-cvtck3 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 36px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 50%; }\",\".framer-Q41kF .framer-1o4oxax { 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: 100%; }\",\".framer-Q41kF .framer-hjaqpb-container { flex: none; height: auto; position: relative; width: 171px; }\",\".framer-Q41kF .framer-1oerhoz { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 23px; height: 331px; justify-content: center; left: calc(50.00000000000002% - 473px / 2); overflow: visible; padding: 20px; position: absolute; top: calc(156.34328358208958% - 331px / 2); width: 473px; z-index: 1; }\",\".framer-Q41kF .framer-1on2zts { align-content: flex-start; align-items: flex-start; bottom: -39px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 23px; justify-content: center; left: -100px; overflow: visible; padding: 20px; position: absolute; top: -39px; width: 62%; z-index: 1; }\",'.framer-Q41kF .framer-9m4e4x { background: linear-gradient(49deg, rgba(150, 84, 255, 0) 8.383586711711711%, rgba(149, 83, 255, 0.51351) 71.20185810810811%, var(--token-17a5caa5-2b08-431f-9701-5786bdd9a29d, rgb(148, 83, 255)) /* {\"name\":\"GTM Purple\"} */ 100%); bottom: 0px; flex: none; left: 0px; opacity: 0.62; overflow: hidden; position: absolute; right: 0px; top: 0px; z-index: 0; }',\".framer-Q41kF .framer-1s8oow9-container { flex: none; height: auto; min-width: 100px; position: relative; width: 171px; }\",\".framer-Q41kF .framer-1m8402 { bottom: -5px; flex: none; height: 197px; left: 0px; max-width: 350px; overflow: visible; position: absolute; right: 0px; z-index: 1; }\",\".framer-Q41kF .framer-feu332 { align-content: flex-start; align-items: flex-start; bottom: -40px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 23px; height: 479px; justify-content: center; overflow: visible; padding: 20px; position: absolute; right: 0px; width: 48%; z-index: 1; }\",\".framer-Q41kF .framer-83e2jw { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 23px; height: min-content; justify-content: center; overflow: hidden; padding: 30px 0px 30px 0px; position: relative; width: 100%; }\",\".framer-Q41kF .framer-1qv6ft6, .framer-Q41kF .framer-1sfzx8x, .framer-Q41kF .framer-1flxwnj { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-Q41kF .framer-7rass8, .framer-Q41kF .framer-11jzzok, .framer-Q41kF .framer-qwg4hq, .framer-Q41kF .framer-1totb6h, .framer-Q41kF .framer-zmge2g { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; max-width: 750px; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-Q41kF .framer-1qeq5m { align-content: flex-start; align-items: flex-start; background: linear-gradient(180deg, rgba(148, 83, 255, 0.2) 0%, rgba(239, 239, 239, 0.2) 93%); border-bottom-left-radius: 20px; border-bottom-right-radius: 20px; border-top-left-radius: 20px; border-top-right-radius: 20px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: center; max-width: 1000px; overflow: hidden; padding: 24px; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-Q41kF .framer-18m5gxe { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 350px; }\",\".framer-Q41kF .framer-s27932 { --border-bottom-width: 1px; --border-color: #ffffff; --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; align-content: flex-start; align-items: flex-start; background-color: var(--token-da1cd2cf-9eb2-4ef2-8e8d-18620cf1b102, #fafafa); border-bottom-left-radius: 10px; border-bottom-right-radius: 10px; border-top-left-radius: 10px; border-top-right-radius: 10px; box-shadow: 0px 0.6021873017743928px 1.5656869846134214px -1.5833333333333333px rgba(0, 0, 0, 0.22), 0px 2.288533303243457px 5.950186588432988px -3.1666666666666665px rgba(0, 0, 0, 0.18601), 0px 10px 26px -4.75px rgba(0, 0, 0, 0.0125); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: center; overflow: hidden; padding: 12px; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-Q41kF .framer-1fala6a { aspect-ratio: 1.0866666666666667 / 1; border-bottom-left-radius: 4px; border-bottom-right-radius: 4px; border-top-left-radius: 4px; border-top-right-radius: 4px; flex: none; height: var(--framer-aspect-ratio-supported, 300px); overflow: hidden; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-Q41kF .framer-19xperw { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 4px; height: min-content; justify-content: center; overflow: hidden; padding: 4px; position: relative; width: 100%; }\",\".framer-Q41kF .framer-1vcvw2s { align-content: flex-start; align-items: flex-start; background: linear-gradient(180deg, #ffffff 0%, rgba(255, 255, 255, 0) 100%); border-bottom-left-radius: 10px; border-bottom-right-radius: 10px; border-top-left-radius: 10px; border-top-right-radius: 10px; display: flex; flex: none; flex-direction: column; flex-wrap: wrap; gap: 12px; height: min-content; justify-content: center; overflow: visible; padding: 12px; position: relative; width: 100%; }\",\".framer-Q41kF .framer-1wnbrc3, .framer-Q41kF .framer-y6cgz6 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 4px; height: min-content; justify-content: center; overflow: hidden; padding: 4px; position: relative; width: 100%; }\",\".framer-Q41kF .framer-rrms8n, .framer-Q41kF .framer-42pz72 { --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-Q41kF .framer-teqoxb, .framer-Q41kF .framer-pkw8ww { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-Q41kF .framer-b1ne9q, .framer-Q41kF .framer-1k01xay { --border-bottom-width: 1px; --border-color: rgba(1, 126, 187, 0.2); --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-da1cd2cf-9eb2-4ef2-8e8d-18620cf1b102, #fafafa); border-bottom-left-radius: 10px; border-bottom-right-radius: 10px; border-top-left-radius: 10px; border-top-right-radius: 10px; box-shadow: 0px 0.6021873017743928px 0.6021873017743928px -1.25px rgba(0, 0, 0, 0.18), 0px 2.288533303243457px 2.288533303243457px -2.5px rgba(0, 0, 0, 0.15889), 0px 10px 10px -3.75px rgba(0, 0, 0, 0.0625); display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 32px; height: min-content; justify-content: center; overflow: hidden; padding: 12px; position: relative; text-decoration: none; width: 100%; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-Q41kF .framer-sxj9bx, .framer-Q41kF .framer-1uhbqxg { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-Q41kF .framer-1md42i3, .framer-Q41kF .framer-12o521b { --border-bottom-width: 1px; --border-color: #ffffff; --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; aspect-ratio: 1 / 1; border-bottom-left-radius: 6px; border-bottom-right-radius: 6px; border-top-left-radius: 6px; border-top-right-radius: 6px; flex: none; height: var(--framer-aspect-ratio-supported, 40px); position: relative; width: 40px; }\",\".framer-Q41kF .framer-1niym5t, .framer-Q41kF .framer-1jdwyvu, .framer-Q41kF .framer-1p5clyt, .framer-Q41kF .framer-6nyitb { 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: min-content; }\",\".framer-Q41kF .framer-1o09d6j, .framer-Q41kF .framer-1rfhlqd, .framer-Q41kF .framer-htv6nr, .framer-Q41kF .framer-1atx8xl { align-content: flex-start; align-items: flex-start; align-self: stretch; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 4px; height: auto; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 13px; }\",\".framer-Q41kF .framer-1fqq27u, .framer-Q41kF .framer-1dnekpk, .framer-Q41kF .framer-127atj3, .framer-Q41kF .framer-7tyrer { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 16px); position: relative; width: 16px; }\",\".framer-Q41kF .framer-1gg9i0p, .framer-Q41kF .framer-jlx8j1 { --border-bottom-width: 1px; --border-color: rgba(218, 119, 8, 0.2); --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-da1cd2cf-9eb2-4ef2-8e8d-18620cf1b102, #fafafa); border-bottom-left-radius: 10px; border-bottom-right-radius: 10px; border-top-left-radius: 10px; border-top-right-radius: 10px; box-shadow: 0px 0.6021873017743928px 0.6021873017743928px -1.25px rgba(0, 0, 0, 0.18), 0px 2.288533303243457px 2.288533303243457px -2.5px rgba(0, 0, 0, 0.15889), 0px 10px 10px -3.75px rgba(0, 0, 0, 0.0625); display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 32px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 12px; position: relative; text-decoration: none; width: 100%; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-Q41kF .framer-5cox58, .framer-Q41kF .framer-1l4g2mc { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-Q41kF .framer-148197c { --border-bottom-width: 1px; --border-color: #ffffff; --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-da1cd2cf-9eb2-4ef2-8e8d-18620cf1b102, #fafafa); border-bottom-left-radius: 10px; border-bottom-right-radius: 10px; border-top-left-radius: 10px; border-top-right-radius: 10px; box-shadow: 0px 0.6021873017743928px 0.6021873017743928px -1.25px rgba(0, 0, 0, 0.18), 0px 2.288533303243457px 2.288533303243457px -2.5px rgba(0, 0, 0, 0.15889), 0px 10px 10px -3.75px rgba(0, 0, 0, 0.0625); display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 20px; position: relative; width: 1px; will-change: var(--framer-will-change-override, transform); }\",\".framer-Q41kF .framer-1osgti9 { --framer-paragraph-spacing: 16px; -webkit-user-select: none; flex: none; height: auto; pointer-events: auto; position: relative; user-select: none; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-Q41kF .framer-exwkj4 { align-content: center; align-items: center; background: linear-gradient(180deg, #ffffff 0%, rgba(255, 255, 255, 0) 100%); 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: wrap; gap: 12px; height: min-content; justify-content: center; overflow: visible; padding: 12px; position: relative; width: 1px; }\",\".framer-Q41kF .framer-o1p9gr { --border-bottom-width: 1px; --border-color: #ffffff; --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; aspect-ratio: 1 / 1; border-bottom-left-radius: 6px; border-bottom-right-radius: 6px; border-top-left-radius: 6px; border-top-right-radius: 6px; flex: none; height: var(--framer-aspect-ratio-supported, 38px); position: relative; width: 40px; }\",\".framer-Q41kF .framer-17fymol { --border-bottom-width: 1px; --border-color: #ffffff; --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; aspect-ratio: 1 / 1; border-bottom-left-radius: 6px; border-bottom-right-radius: 6px; border-top-left-radius: 6px; border-top-right-radius: 6px; flex: none; height: var(--framer-aspect-ratio-supported, 32px); position: relative; width: 40px; }\",\".framer-Q41kF .framer-1vtx90n { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 12px; height: min-content; justify-content: center; overflow: visible; padding: 20px 0px 20px 0px; position: relative; width: 100%; }\",\".framer-Q41kF .framer-1hs6z4-container { flex: none; height: 298px; max-width: 1200px; position: relative; width: 100%; }\",\".framer-Q41kF .framer-wzj4zs { align-content: flex-end; align-items: flex-end; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 12px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-Q41kF .framer-l6vfuk-container { flex: none; height: 283px; max-width: 1200px; position: relative; width: 100%; }\",\".framer-Q41kF .framer-1pn0ubg { align-content: flex-start; align-items: flex-start; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 12px; height: 279px; justify-content: center; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-Q41kF .framer-16d60nh { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: wrap; gap: 24px; height: min-content; justify-content: center; max-width: 1200px; overflow: visible; padding: 10px; position: relative; width: 100%; }\",\".framer-Q41kF .framer-1s28oy5-container, .framer-Q41kF .framer-1djdy9q-container, .framer-Q41kF .framer-1r2o4mn-container { flex: none; height: auto; max-width: 350px; position: relative; width: 30%; }\",\".framer-Q41kF .framer-q5vrg7 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: center; overflow: visible; padding: 40px 0px 40px 0px; position: relative; width: 100%; }\",\".framer-Q41kF .framer-2xlhaz { align-content: center; align-items: center; background-color: var(--token-da1cd2cf-9eb2-4ef2-8e8d-18620cf1b102, #fafafa); border-bottom-left-radius: 20px; border-bottom-right-radius: 20px; border-top-left-radius: 20px; border-top-right-radius: 20px; box-shadow: 0px 0.6021873017743928px 0.6021873017743928px -1.25px rgba(0, 0, 0, 0.18), 0px 2.288533303243457px 2.288533303243457px -2.5px rgba(0, 0, 0, 0.15889), 0px 10px 10px -3.75px rgba(0, 0, 0, 0.0625); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 19px; height: min-content; justify-content: center; max-width: 850px; overflow: hidden; padding: 24px; position: relative; width: min-content; will-change: var(--framer-will-change-override, transform); }\",\".framer-Q41kF .framer-1u0xztb { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 650px; word-break: break-word; word-wrap: break-word; }\",\".framer-Q41kF .framer-94y9vw { align-content: center; align-items: center; align-self: stretch; 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: auto; }\",\".framer-Q41kF .framer-1dk3s2w { flex: none; height: 321px; position: relative; width: 100%; }\",\".framer-Q41kF .framer-183m872 { align-content: center; align-items: center; background-color: #fbff00; border-bottom-left-radius: 28px; border-bottom-right-radius: 28px; border-top-left-radius: 28px; border-top-right-radius: 28px; bottom: -9px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; left: 50%; overflow: hidden; padding: 4px 12px 4px 12px; position: absolute; transform: translateX(-50%); width: min-content; will-change: var(--framer-will-change-override, transform); z-index: 1; }\",\".framer-Q41kF .framer-1avq8nn { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-Q41kF .framer-17f6ow6-container { flex: none; height: auto; position: relative; width: 100%; }\",\"@supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-Q41kF.framer-1rypi7h, .framer-Q41kF .framer-581bs3, .framer-Q41kF .framer-1vfse2b, .framer-Q41kF .framer-6fx4ul, .framer-Q41kF .framer-1uksap2, .framer-Q41kF .framer-m2tdek, .framer-Q41kF .framer-94h0fx, .framer-Q41kF .framer-1tclc37, .framer-Q41kF .framer-1ye3vic, .framer-Q41kF .framer-1gp4bd6, .framer-Q41kF .framer-17kcco6, .framer-Q41kF .framer-11sl2wp, .framer-Q41kF .framer-1qwl1a1, .framer-Q41kF .framer-11g91uj, .framer-Q41kF .framer-opejc1, .framer-Q41kF .framer-v7igmv, .framer-Q41kF .framer-1it87j1, .framer-Q41kF .framer-sdquk8, .framer-Q41kF .framer-1a2bqno, .framer-Q41kF .framer-1d4w73c, .framer-Q41kF .framer-123xxdn, .framer-Q41kF .framer-1o4oxax, .framer-Q41kF .framer-1f8kk4h, .framer-Q41kF .framer-1rgwq8w, .framer-Q41kF .framer-1oerhoz, .framer-Q41kF .framer-1on2zts, .framer-Q41kF .framer-ttixy8, .framer-Q41kF .framer-1547c8i, .framer-Q41kF .framer-10185qq, .framer-Q41kF .framer-cvtck3, .framer-Q41kF .framer-ey1os5, .framer-Q41kF .framer-woponp, .framer-Q41kF .framer-1v5eft7, .framer-Q41kF .framer-feu332, .framer-Q41kF .framer-83e2jw, .framer-Q41kF .framer-1qv6ft6, .framer-Q41kF .framer-1qeq5m, .framer-Q41kF .framer-18m5gxe, .framer-Q41kF .framer-s27932, .framer-Q41kF .framer-19xperw, .framer-Q41kF .framer-1vcvw2s, .framer-Q41kF .framer-1wnbrc3, .framer-Q41kF .framer-teqoxb, .framer-Q41kF .framer-b1ne9q, .framer-Q41kF .framer-sxj9bx, .framer-Q41kF .framer-1niym5t, .framer-Q41kF .framer-1o09d6j, .framer-Q41kF .framer-1gg9i0p, .framer-Q41kF .framer-5cox58, .framer-Q41kF .framer-1jdwyvu, .framer-Q41kF .framer-1rfhlqd, .framer-Q41kF .framer-148197c, .framer-Q41kF .framer-exwkj4, .framer-Q41kF .framer-y6cgz6, .framer-Q41kF .framer-pkw8ww, .framer-Q41kF .framer-1k01xay, .framer-Q41kF .framer-1uhbqxg, .framer-Q41kF .framer-1p5clyt, .framer-Q41kF .framer-htv6nr, .framer-Q41kF .framer-jlx8j1, .framer-Q41kF .framer-1l4g2mc, .framer-Q41kF .framer-6nyitb, .framer-Q41kF .framer-1atx8xl, .framer-Q41kF .framer-1vtx90n, .framer-Q41kF .framer-1sfzx8x, .framer-Q41kF .framer-wzj4zs, .framer-Q41kF .framer-1pn0ubg, .framer-Q41kF .framer-16d60nh, .framer-Q41kF .framer-q5vrg7, .framer-Q41kF .framer-1flxwnj, .framer-Q41kF .framer-2xlhaz, .framer-Q41kF .framer-94y9vw, .framer-Q41kF .framer-183m872, .framer-Q41kF .framer-1avq8nn { gap: 0px; } .framer-Q41kF.framer-1rypi7h > *, .framer-Q41kF .framer-1qv6ft6 > *, .framer-Q41kF .framer-1niym5t > *, .framer-Q41kF .framer-1jdwyvu > *, .framer-Q41kF .framer-1p5clyt > *, .framer-Q41kF .framer-6nyitb > *, .framer-Q41kF .framer-1sfzx8x > *, .framer-Q41kF .framer-1flxwnj > *, .framer-Q41kF .framer-1avq8nn > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-Q41kF.framer-1rypi7h > :first-child, .framer-Q41kF .framer-581bs3 > :first-child, .framer-Q41kF .framer-1vfse2b > :first-child, .framer-Q41kF .framer-6fx4ul > :first-child, .framer-Q41kF .framer-1uksap2 > :first-child, .framer-Q41kF .framer-m2tdek > :first-child, .framer-Q41kF .framer-94h0fx > :first-child, .framer-Q41kF .framer-1tclc37 > :first-child, .framer-Q41kF .framer-1ye3vic > :first-child, .framer-Q41kF .framer-11sl2wp > :first-child, .framer-Q41kF .framer-1qwl1a1 > :first-child, .framer-Q41kF .framer-11g91uj > :first-child, .framer-Q41kF .framer-v7igmv > :first-child, .framer-Q41kF .framer-1it87j1 > :first-child, .framer-Q41kF .framer-sdquk8 > :first-child, .framer-Q41kF .framer-123xxdn > :first-child, .framer-Q41kF .framer-1o4oxax > :first-child, .framer-Q41kF .framer-1f8kk4h > :first-child, .framer-Q41kF .framer-1oerhoz > :first-child, .framer-Q41kF .framer-1on2zts > :first-child, .framer-Q41kF .framer-ttixy8 > :first-child, .framer-Q41kF .framer-cvtck3 > :first-child, .framer-Q41kF .framer-ey1os5 > :first-child, .framer-Q41kF .framer-woponp > :first-child, .framer-Q41kF .framer-feu332 > :first-child, .framer-Q41kF .framer-83e2jw > :first-child, .framer-Q41kF .framer-1qv6ft6 > :first-child, .framer-Q41kF .framer-18m5gxe > :first-child, .framer-Q41kF .framer-s27932 > :first-child, .framer-Q41kF .framer-19xperw > :first-child, .framer-Q41kF .framer-1vcvw2s > :first-child, .framer-Q41kF .framer-1wnbrc3 > :first-child, .framer-Q41kF .framer-teqoxb > :first-child, .framer-Q41kF .framer-1niym5t > :first-child, .framer-Q41kF .framer-1o09d6j > :first-child, .framer-Q41kF .framer-1jdwyvu > :first-child, .framer-Q41kF .framer-1rfhlqd > :first-child, .framer-Q41kF .framer-148197c > :first-child, .framer-Q41kF .framer-exwkj4 > :first-child, .framer-Q41kF .framer-y6cgz6 > :first-child, .framer-Q41kF .framer-pkw8ww > :first-child, .framer-Q41kF .framer-1p5clyt > :first-child, .framer-Q41kF .framer-htv6nr > :first-child, .framer-Q41kF .framer-6nyitb > :first-child, .framer-Q41kF .framer-1atx8xl > :first-child, .framer-Q41kF .framer-1vtx90n > :first-child, .framer-Q41kF .framer-1sfzx8x > :first-child, .framer-Q41kF .framer-q5vrg7 > :first-child, .framer-Q41kF .framer-1flxwnj > :first-child, .framer-Q41kF .framer-2xlhaz > :first-child, .framer-Q41kF .framer-94y9vw > :first-child, .framer-Q41kF .framer-183m872 > :first-child, .framer-Q41kF .framer-1avq8nn > :first-child { margin-top: 0px; } .framer-Q41kF.framer-1rypi7h > :last-child, .framer-Q41kF .framer-581bs3 > :last-child, .framer-Q41kF .framer-1vfse2b > :last-child, .framer-Q41kF .framer-6fx4ul > :last-child, .framer-Q41kF .framer-1uksap2 > :last-child, .framer-Q41kF .framer-m2tdek > :last-child, .framer-Q41kF .framer-94h0fx > :last-child, .framer-Q41kF .framer-1tclc37 > :last-child, .framer-Q41kF .framer-1ye3vic > :last-child, .framer-Q41kF .framer-11sl2wp > :last-child, .framer-Q41kF .framer-1qwl1a1 > :last-child, .framer-Q41kF .framer-11g91uj > :last-child, .framer-Q41kF .framer-v7igmv > :last-child, .framer-Q41kF .framer-1it87j1 > :last-child, .framer-Q41kF .framer-sdquk8 > :last-child, .framer-Q41kF .framer-123xxdn > :last-child, .framer-Q41kF .framer-1o4oxax > :last-child, .framer-Q41kF .framer-1f8kk4h > :last-child, .framer-Q41kF .framer-1oerhoz > :last-child, .framer-Q41kF .framer-1on2zts > :last-child, .framer-Q41kF .framer-ttixy8 > :last-child, .framer-Q41kF .framer-cvtck3 > :last-child, .framer-Q41kF .framer-ey1os5 > :last-child, .framer-Q41kF .framer-woponp > :last-child, .framer-Q41kF .framer-feu332 > :last-child, .framer-Q41kF .framer-83e2jw > :last-child, .framer-Q41kF .framer-1qv6ft6 > :last-child, .framer-Q41kF .framer-18m5gxe > :last-child, .framer-Q41kF .framer-s27932 > :last-child, .framer-Q41kF .framer-19xperw > :last-child, .framer-Q41kF .framer-1vcvw2s > :last-child, .framer-Q41kF .framer-1wnbrc3 > :last-child, .framer-Q41kF .framer-teqoxb > :last-child, .framer-Q41kF .framer-1niym5t > :last-child, .framer-Q41kF .framer-1o09d6j > :last-child, .framer-Q41kF .framer-1jdwyvu > :last-child, .framer-Q41kF .framer-1rfhlqd > :last-child, .framer-Q41kF .framer-148197c > :last-child, .framer-Q41kF .framer-exwkj4 > :last-child, .framer-Q41kF .framer-y6cgz6 > :last-child, .framer-Q41kF .framer-pkw8ww > :last-child, .framer-Q41kF .framer-1p5clyt > :last-child, .framer-Q41kF .framer-htv6nr > :last-child, .framer-Q41kF .framer-6nyitb > :last-child, .framer-Q41kF .framer-1atx8xl > :last-child, .framer-Q41kF .framer-1vtx90n > :last-child, .framer-Q41kF .framer-1sfzx8x > :last-child, .framer-Q41kF .framer-q5vrg7 > :last-child, .framer-Q41kF .framer-1flxwnj > :last-child, .framer-Q41kF .framer-2xlhaz > :last-child, .framer-Q41kF .framer-94y9vw > :last-child, .framer-Q41kF .framer-183m872 > :last-child, .framer-Q41kF .framer-1avq8nn > :last-child { margin-bottom: 0px; } .framer-Q41kF .framer-581bs3 > * { margin: 0px; margin-bottom: calc(40px / 2); margin-top: calc(40px / 2); } .framer-Q41kF .framer-1vfse2b > * { margin: 0px; margin-bottom: calc(54px / 2); margin-top: calc(54px / 2); } .framer-Q41kF .framer-6fx4ul > * { margin: 0px; margin-bottom: calc(32px / 2); margin-top: calc(32px / 2); } .framer-Q41kF .framer-1uksap2 > *, .framer-Q41kF .framer-19xperw > *, .framer-Q41kF .framer-1wnbrc3 > *, .framer-Q41kF .framer-1o09d6j > *, .framer-Q41kF .framer-1rfhlqd > *, .framer-Q41kF .framer-y6cgz6 > *, .framer-Q41kF .framer-htv6nr > *, .framer-Q41kF .framer-1atx8xl > * { margin: 0px; margin-bottom: calc(4px / 2); margin-top: calc(4px / 2); } .framer-Q41kF .framer-m2tdek > *, .framer-Q41kF .framer-1qwl1a1 > *, .framer-Q41kF .framer-1o4oxax > *, .framer-Q41kF .framer-ey1os5 > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } .framer-Q41kF .framer-94h0fx > *, .framer-Q41kF .framer-1tclc37 > *, .framer-Q41kF .framer-1ye3vic > *, .framer-Q41kF .framer-sdquk8 > *, .framer-Q41kF .framer-ttixy8 > *, .framer-Q41kF .framer-148197c > *, .framer-Q41kF .framer-94y9vw > *, .framer-Q41kF .framer-183m872 > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-Q41kF .framer-1gp4bd6 > *, .framer-Q41kF .framer-17kcco6 > *, .framer-Q41kF .framer-1a2bqno > *, .framer-Q41kF .framer-1d4w73c > *, .framer-Q41kF .framer-1547c8i > *, .framer-Q41kF .framer-10185qq > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } .framer-Q41kF .framer-1gp4bd6 > :first-child, .framer-Q41kF .framer-17kcco6 > :first-child, .framer-Q41kF .framer-opejc1 > :first-child, .framer-Q41kF .framer-1a2bqno > :first-child, .framer-Q41kF .framer-1d4w73c > :first-child, .framer-Q41kF .framer-1rgwq8w > :first-child, .framer-Q41kF .framer-1547c8i > :first-child, .framer-Q41kF .framer-10185qq > :first-child, .framer-Q41kF .framer-1v5eft7 > :first-child, .framer-Q41kF .framer-1qeq5m > :first-child, .framer-Q41kF .framer-b1ne9q > :first-child, .framer-Q41kF .framer-sxj9bx > :first-child, .framer-Q41kF .framer-1gg9i0p > :first-child, .framer-Q41kF .framer-5cox58 > :first-child, .framer-Q41kF .framer-1k01xay > :first-child, .framer-Q41kF .framer-1uhbqxg > :first-child, .framer-Q41kF .framer-jlx8j1 > :first-child, .framer-Q41kF .framer-1l4g2mc > :first-child, .framer-Q41kF .framer-wzj4zs > :first-child, .framer-Q41kF .framer-1pn0ubg > :first-child, .framer-Q41kF .framer-16d60nh > :first-child { margin-left: 0px; } .framer-Q41kF .framer-1gp4bd6 > :last-child, .framer-Q41kF .framer-17kcco6 > :last-child, .framer-Q41kF .framer-opejc1 > :last-child, .framer-Q41kF .framer-1a2bqno > :last-child, .framer-Q41kF .framer-1d4w73c > :last-child, .framer-Q41kF .framer-1rgwq8w > :last-child, .framer-Q41kF .framer-1547c8i > :last-child, .framer-Q41kF .framer-10185qq > :last-child, .framer-Q41kF .framer-1v5eft7 > :last-child, .framer-Q41kF .framer-1qeq5m > :last-child, .framer-Q41kF .framer-b1ne9q > :last-child, .framer-Q41kF .framer-sxj9bx > :last-child, .framer-Q41kF .framer-1gg9i0p > :last-child, .framer-Q41kF .framer-5cox58 > :last-child, .framer-Q41kF .framer-1k01xay > :last-child, .framer-Q41kF .framer-1uhbqxg > :last-child, .framer-Q41kF .framer-jlx8j1 > :last-child, .framer-Q41kF .framer-1l4g2mc > :last-child, .framer-Q41kF .framer-wzj4zs > :last-child, .framer-Q41kF .framer-1pn0ubg > :last-child, .framer-Q41kF .framer-16d60nh > :last-child { margin-right: 0px; } .framer-Q41kF .framer-11sl2wp > *, .framer-Q41kF .framer-123xxdn > *, .framer-Q41kF .framer-cvtck3 > * { margin: 0px; margin-bottom: calc(36px / 2); margin-top: calc(36px / 2); } .framer-Q41kF .framer-11g91uj > *, .framer-Q41kF .framer-1f8kk4h > *, .framer-Q41kF .framer-woponp > *, .framer-Q41kF .framer-18m5gxe > *, .framer-Q41kF .framer-s27932 > *, .framer-Q41kF .framer-teqoxb > *, .framer-Q41kF .framer-pkw8ww > * { margin: 0px; margin-bottom: calc(8px / 2); margin-top: calc(8px / 2); } .framer-Q41kF .framer-opejc1 > *, .framer-Q41kF .framer-1rgwq8w > *, .framer-Q41kF .framer-1v5eft7 > *, .framer-Q41kF .framer-sxj9bx > *, .framer-Q41kF .framer-5cox58 > *, .framer-Q41kF .framer-1uhbqxg > *, .framer-Q41kF .framer-1l4g2mc > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-Q41kF .framer-v7igmv > *, .framer-Q41kF .framer-1it87j1 > *, .framer-Q41kF .framer-1oerhoz > *, .framer-Q41kF .framer-1on2zts > *, .framer-Q41kF .framer-feu332 > *, .framer-Q41kF .framer-83e2jw > * { margin: 0px; margin-bottom: calc(23px / 2); margin-top: calc(23px / 2); } .framer-Q41kF .framer-1qeq5m > * { margin: 0px; margin-left: calc(8px / 2); margin-right: calc(8px / 2); } .framer-Q41kF .framer-1vcvw2s > *, .framer-Q41kF .framer-exwkj4 > *, .framer-Q41kF .framer-1vtx90n > * { margin: 0px; margin-bottom: calc(12px / 2); margin-top: calc(12px / 2); } .framer-Q41kF .framer-b1ne9q > *, .framer-Q41kF .framer-1gg9i0p > *, .framer-Q41kF .framer-1k01xay > *, .framer-Q41kF .framer-jlx8j1 > * { margin: 0px; margin-left: calc(32px / 2); margin-right: calc(32px / 2); } .framer-Q41kF .framer-wzj4zs > *, .framer-Q41kF .framer-1pn0ubg > * { margin: 0px; margin-left: calc(12px / 2); margin-right: calc(12px / 2); } .framer-Q41kF .framer-16d60nh > * { margin: 0px; margin-left: calc(24px / 2); margin-right: calc(24px / 2); } .framer-Q41kF .framer-q5vrg7 > * { margin: 0px; margin-bottom: calc(16px / 2); margin-top: calc(16px / 2); } .framer-Q41kF .framer-2xlhaz > * { margin: 0px; margin-bottom: calc(19px / 2); margin-top: calc(19px / 2); } }\",...sharedStyle.css,...sharedStyle1.css,'.framer-Q41kF[data-border=\"true\"]::after, .framer-Q41kF [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; }',\"@media (min-width: 810px) and (max-width: 1199px) { .framer-Q41kF.framer-1rypi7h { width: 810px; } .framer-Q41kF .framer-14vrjgi { height: var(--framer-aspect-ratio-supported, 328px); width: 78%; } .framer-Q41kF .framer-m2tdek { padding: 46px 10px 46px 10px; } .framer-Q41kF .framer-1ye3vic { padding: 20px; } .framer-Q41kF .framer-1gp4bd6, .framer-Q41kF .framer-1547c8i { padding: 20px 0px 0px 0px; } .framer-Q41kF .framer-17kcco6, .framer-Q41kF .framer-1d4w73c, .framer-Q41kF .framer-10185qq, .framer-Q41kF .framer-1vtx90n { padding: 20px 10px 20px 10px; } .framer-Q41kF .framer-11sl2wp, .framer-Q41kF .framer-123xxdn, .framer-Q41kF .framer-cvtck3 { width: 55%; } .framer-Q41kF .framer-1it87j1 { bottom: unset; height: 355px; right: -27px; top: calc(50.00000000000002% - 355px / 2); width: 46%; } .framer-Q41kF .framer-1on2zts { bottom: -39px; left: -252px; top: -38px; width: 1103px; } .framer-Q41kF .framer-feu332 { bottom: -3px; height: 403px; right: -1px; width: 45%; } .framer-Q41kF .framer-83e2jw { overflow: visible; padding: 30px 10px 30px 10px; } .framer-Q41kF .framer-1qv6ft6 { order: 0; } .framer-Q41kF .framer-1qeq5m { order: 1; overflow: visible; padding: 20px; will-change: unset; } .framer-Q41kF .framer-18m5gxe { width: 300px; } .framer-Q41kF .framer-1fala6a { aspect-ratio: 0.92 / 1; } .framer-Q41kF .framer-d8idet { white-space: pre-wrap; width: 146px; word-break: break-word; word-wrap: break-word; } .framer-Q41kF .framer-1s28oy5-container { flex: 1 0 0px; max-width: 400px; min-width: 262px; order: 0; width: 1px; } .framer-Q41kF .framer-1djdy9q-container { flex: 1 0 0px; max-width: 400px; min-width: 262px; order: 2; width: 1px; } .framer-Q41kF .framer-1r2o4mn-container { flex: 1 0 0px; max-width: 400px; min-width: 262px; order: 1; width: 1px; } .framer-Q41kF .framer-q5vrg7 { padding: 40px 10px 40px 10px; }}\",\"@media (max-width: 809px) { .framer-Q41kF.framer-1rypi7h { width: 390px; } .framer-Q41kF .framer-xg6xlb-container { height: auto; left: 50%; order: 0; transform: translateX(-50%); } .framer-Q41kF .framer-581bs3 { gap: 0px; order: 1; padding: 71px 20px 40px 20px; } .framer-Q41kF .framer-1vfse2b { gap: 30px; padding: 10px 0px 0px 0px; } .framer-Q41kF .framer-6fx4ul, .framer-Q41kF .framer-v7igmv, .framer-Q41kF .framer-1oerhoz, .framer-Q41kF .framer-ey1os5, .framer-Q41kF .framer-1qv6ft6 { order: 0; } .framer-Q41kF .framer-14vrjgi { height: var(--framer-aspect-ratio-supported, 215px); order: 1; width: 113%; } .framer-Q41kF .framer-1uksap2, .framer-Q41kF .framer-1pphvyc-container { order: 2; } .framer-Q41kF .framer-f6a43c-container { height: 52px; } .framer-Q41kF .framer-m2tdek { order: 3; padding: 20px 10px 20px 10px; } .framer-Q41kF .framer-1tclc37 { order: 4; } .framer-Q41kF .framer-1ye3vic, .framer-Q41kF .framer-sdquk8 { padding: 20px 10px 250px 10px; } .framer-Q41kF .framer-1gp4bd6, .framer-Q41kF .framer-1a2bqno, .framer-Q41kF .framer-1547c8i { flex-direction: column; } .framer-Q41kF .framer-17kcco6 { flex-direction: column; padding: 0px 0px 60px 0px; } .framer-Q41kF .framer-11sl2wp, .framer-Q41kF .framer-123xxdn, .framer-Q41kF .framer-cvtck3 { align-content: center; align-items: center; order: 0; width: 100%; } .framer-Q41kF .framer-1qwl1a1, .framer-Q41kF .framer-1s8oow9-container, .framer-Q41kF .framer-1m8402 { order: 1; } .framer-Q41kF .framer-11g91uj, .framer-Q41kF .framer-1f8kk4h, .framer-Q41kF .framer-woponp { align-content: center; align-items: center; gap: 12px; } .framer-Q41kF .framer-1jhem0t, .framer-Q41kF .framer-38ohdo, .framer-Q41kF .framer-185mwwk { width: 95%; } .framer-Q41kF .framer-1aq4rfy { background: linear-gradient(305deg, #cf7aa7 -3%, rgb(161, 72, 170) 19%, rgb(90, 39, 127) 41%, rgba(208, 140, 160, 0.1466) 70%, rgba(222, 151, 165, 0) 100%); } .framer-Q41kF .framer-1d4w73c { flex-direction: column; padding: 0px; } .framer-Q41kF .framer-1o4oxax { align-content: center; align-items: center; order: 1; } .framer-Q41kF .framer-ttixy8 { padding: 20px 10px 0px 10px; } .framer-Q41kF .framer-10185qq { flex-direction: column; padding: 10px 0px 220px 0px; } .framer-Q41kF .framer-83e2jw { gap: 24px; order: 5; padding: 40px 0px 20px 0px; } .framer-Q41kF .framer-1qeq5m { flex-direction: column; order: 1; padding: 10px; } .framer-Q41kF .framer-18m5gxe, .framer-Q41kF .framer-1s28oy5-container, .framer-Q41kF .framer-1djdy9q-container, .framer-Q41kF .framer-1r2o4mn-container, .framer-Q41kF .framer-2xlhaz, .framer-Q41kF .framer-1u0xztb { width: 100%; } .framer-Q41kF .framer-1fala6a { aspect-ratio: unset; height: 300px; } .framer-Q41kF .framer-148197c, .framer-Q41kF .framer-exwkj4 { flex: none; width: 100%; } .framer-Q41kF .framer-o1p9gr, .framer-Q41kF .framer-17fymol { height: var(--framer-aspect-ratio-supported, 40px); } .framer-Q41kF .framer-1vtx90n { order: 6; } .framer-Q41kF .framer-16d60nh { align-content: center; align-items: center; flex-direction: column; flex-wrap: nowrap; } .framer-Q41kF .framer-q5vrg7 { order: 7; padding: 20px 10px 20px 10px; } .framer-Q41kF .framer-94y9vw { align-self: unset; width: 100%; } .framer-Q41kF .framer-1dk3s2w { height: 180px; } .framer-Q41kF .framer-183m872 { bottom: -8px; } .framer-Q41kF .framer-1avq8nn { order: 9; overflow: visible; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-Q41kF .framer-581bs3, .framer-Q41kF .framer-1vfse2b, .framer-Q41kF .framer-1gp4bd6, .framer-Q41kF .framer-17kcco6, .framer-Q41kF .framer-11g91uj, .framer-Q41kF .framer-1a2bqno, .framer-Q41kF .framer-1d4w73c, .framer-Q41kF .framer-1f8kk4h, .framer-Q41kF .framer-1547c8i, .framer-Q41kF .framer-10185qq, .framer-Q41kF .framer-woponp, .framer-Q41kF .framer-83e2jw, .framer-Q41kF .framer-1qeq5m, .framer-Q41kF .framer-16d60nh { gap: 0px; } .framer-Q41kF .framer-581bs3 > *, .framer-Q41kF .framer-1gp4bd6 > *, .framer-Q41kF .framer-17kcco6 > *, .framer-Q41kF .framer-1a2bqno > *, .framer-Q41kF .framer-1d4w73c > *, .framer-Q41kF .framer-1547c8i > *, .framer-Q41kF .framer-10185qq > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-Q41kF .framer-581bs3 > :first-child, .framer-Q41kF .framer-1vfse2b > :first-child, .framer-Q41kF .framer-1gp4bd6 > :first-child, .framer-Q41kF .framer-17kcco6 > :first-child, .framer-Q41kF .framer-11g91uj > :first-child, .framer-Q41kF .framer-1a2bqno > :first-child, .framer-Q41kF .framer-1d4w73c > :first-child, .framer-Q41kF .framer-1f8kk4h > :first-child, .framer-Q41kF .framer-1547c8i > :first-child, .framer-Q41kF .framer-10185qq > :first-child, .framer-Q41kF .framer-woponp > :first-child, .framer-Q41kF .framer-83e2jw > :first-child, .framer-Q41kF .framer-1qeq5m > :first-child, .framer-Q41kF .framer-16d60nh > :first-child { margin-top: 0px; } .framer-Q41kF .framer-581bs3 > :last-child, .framer-Q41kF .framer-1vfse2b > :last-child, .framer-Q41kF .framer-1gp4bd6 > :last-child, .framer-Q41kF .framer-17kcco6 > :last-child, .framer-Q41kF .framer-11g91uj > :last-child, .framer-Q41kF .framer-1a2bqno > :last-child, .framer-Q41kF .framer-1d4w73c > :last-child, .framer-Q41kF .framer-1f8kk4h > :last-child, .framer-Q41kF .framer-1547c8i > :last-child, .framer-Q41kF .framer-10185qq > :last-child, .framer-Q41kF .framer-woponp > :last-child, .framer-Q41kF .framer-83e2jw > :last-child, .framer-Q41kF .framer-1qeq5m > :last-child, .framer-Q41kF .framer-16d60nh > :last-child { margin-bottom: 0px; } .framer-Q41kF .framer-1vfse2b > * { margin: 0px; margin-bottom: calc(30px / 2); margin-top: calc(30px / 2); } .framer-Q41kF .framer-11g91uj > *, .framer-Q41kF .framer-1f8kk4h > *, .framer-Q41kF .framer-woponp > * { margin: 0px; margin-bottom: calc(12px / 2); margin-top: calc(12px / 2); } .framer-Q41kF .framer-83e2jw > *, .framer-Q41kF .framer-16d60nh > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } .framer-Q41kF .framer-1qeq5m > * { margin: 0px; margin-bottom: calc(8px / 2); margin-top: calc(8px / 2); } }}\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 5437\n * @framerIntrinsicWidth 1200\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"R2pczdSMX\":{\"layout\":[\"fixed\",\"auto\"]},\"vvuqj7Rlm\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n * @framerAcceptsLayoutTemplate true\n * @framerScrollSections {\"FU0UxZwnD\":{\"pattern\":\":FU0UxZwnD\",\"name\":\"book\"},\"Y_PifSpYm\":{\"pattern\":\":Y_PifSpYm\",\"name\":\"checklist\"},\"FYxVeMXga\":{\"pattern\":\":FYxVeMXga\",\"name\":\"workshops\"},\"gNM0jf4Ce\":{\"pattern\":\":gNM0jf4Ce\",\"name\":\"about-maja\"},\"aETlEDUjn\":{\"pattern\":\":aETlEDUjn\",\"name\":\"newsletter\"}}\n * @framerResponsiveScreen\n */const FramerjaFc83PwF=withCSS(Component,css,\"framer-Q41kF\");export default FramerjaFc83PwF;FramerjaFc83PwF.displayName=\"Home\";FramerjaFc83PwF.defaultProps={height:5437,width:1200};addFonts(FramerjaFc83PwF,[{explicitInter:true,fonts:[{family:\"Chakra Petch\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/chakrapetch/v11/cIflMapbsEk7TDLdtEz1BwkeJI9FRZXE3AY00g.woff2\",weight:\"700\"},{family:\"Roboto\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/roboto/v47/KFOMCnqEu92Fr1ME7kSn66aGLdTylUAMQXC89YmC2DPNWubEbWmWggvWl0Qn.woff2\",weight:\"400\"},{family:\"Roboto\",source:\"google\",style:\"italic\",url:\"https://fonts.gstatic.com/s/roboto/v47/KFOKCnqEu92Fr1Mu53ZEC9_Vu3r1gIhOszmOClHrs6ljXfMMLoHQiAr0klQnx24.woff2\",weight:\"400\"},{family:\"Roboto\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/roboto/v47/KFOMCnqEu92Fr1ME7kSn66aGLdTylUAMQXC89YmC2DPNWuYjammWggvWl0Qn.woff2\",weight:\"700\"},{family:\"Roboto\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/roboto/v47/KFOMCnqEu92Fr1ME7kSn66aGLdTylUAMQXC89YmC2DPNWub2bWmWggvWl0Qn.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/5vvr9Vy74if2I6bQbJvbw7SY1pQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/EOr0mi4hNtlgWNn9if640EZzXCo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Y9k9QrlZAqio88Klkmbd8VoMQc.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/OYrD2tBIBPvoJXiIHnLoOXnY9M.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/JeYwfuaPfZHQhEG8U5gtPDZ7WQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/vQyevYAyHtARFwPqUzQGpnDs.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/b6Y37FthZeALduNqHicBT6FutY.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/DpPBYI0sL4fYLgAkX8KXOPVt7c.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/4RAEQdEOrcnDkhHiiCbJOw92Lk.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/1K3W8DizY3v4emK8Mb08YHxTbs.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/tUSCtfYVM1I1IchuyCwz9gDdQ.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/VgYFWiwsAC5OYxAycRXXvhze58.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/DXD0Q7LSl7HEvDzucnyLnGBHM.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/GIryZETIX4IFypco5pYZONKhJIo.woff2\",weight:\"700\"}]},...TopMenuFonts,...TickerFonts,...CTAButtonOldFonts,...Review_2Fonts,...Ticker1Fonts,...ReviewFonts,...FooterFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerjaFc83PwF\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\",\"framerComponentViewportWidth\":\"true\",\"framerAcceptsLayoutTemplate\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerImmutableVariables\":\"true\",\"framerScrollSections\":\"{\\\"FU0UxZwnD\\\":{\\\"pattern\\\":\\\":FU0UxZwnD\\\",\\\"name\\\":\\\"book\\\"},\\\"Y_PifSpYm\\\":{\\\"pattern\\\":\\\":Y_PifSpYm\\\",\\\"name\\\":\\\"checklist\\\"},\\\"FYxVeMXga\\\":{\\\"pattern\\\":\\\":FYxVeMXga\\\",\\\"name\\\":\\\"workshops\\\"},\\\"gNM0jf4Ce\\\":{\\\"pattern\\\":\\\":gNM0jf4Ce\\\",\\\"name\\\":\\\"about-maja\\\"},\\\"aETlEDUjn\\\":{\\\"pattern\\\":\\\":aETlEDUjn\\\",\\\"name\\\":\\\"newsletter\\\"}}\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"R2pczdSMX\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"vvuqj7Rlm\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerIntrinsicHeight\":\"5437\",\"framerResponsiveScreen\":\"\",\"framerIntrinsicWidth\":\"1200\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}"],
  "mappings": "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",
  "names": ["MAX_DUPLICATED_ITEMS", "directionTransformers", "offset", "Ticker", "props", "slots", "gap", "padding", "paddingPerSide", "paddingTop", "paddingRight", "paddingBottom", "paddingLeft", "speed", "hoverFactor", "direction", "alignment", "sizingOptions", "fadeOptions", "style", "fadeContent", "overflow", "fadeWidth", "fadeInset", "fadeAlpha", "widthType", "heightType", "paddingValue", "currentTarget", "RenderTarget", "isCanvas", "filteredSlots", "numChildren", "j", "hasChildren", "isHorizontal", "useMotionValue", "transformer", "transform", "useTransform", "parentRef", "pe", "childrenRef", "se", "size", "setSize", "ye", "clonedChildren", "dupedChildren", "duplicateBy", "opacity", "measure", "te", "parentLength", "start", "childrenLength", "Z", "childrenStyles", "initialResize", "ue", "frame", "resize", "contentSize", "child", "index", "ref", "p", "LayoutGroup", "q", "isInView", "useInView", "i", "childIndex", "animateToValue", "initialTime", "prevTime", "xOrY", "isHover", "isReducedMotion", "useReducedMotion", "listRef", "animationRef", "playOrPause", "hidden", "fadeDirection", "fadeWidthStart", "fadeWidthEnd", "fadeInsetStart", "clamp", "fadeInsetEnd", "fadeMask", "containerStyle", "u", "motion", "isValidNumber", "placeholderStyles", "emojiStyles", "titleStyles", "subtitleStyles", "addPropertyControls", "ControlType", "num", "min", "max", "value", "TopMenuFonts", "getFonts", "TY1QOUEWM_default", "RichTextWithHighlightColor11lf2uawWithOptimizedAppearEffect", "withOptimizedAppearEffect", "withCodeBoundaryForOverrides", "RichText2", "withHighlightColor1", "TickerFonts", "Ticker", "RichTextWithHighlightColor1k4mnom", "CTAButtonOldFonts", "IRm4q5HRg_default", "ImageWithFX", "withFX", "Image2", "RichTextWithHighlightColor17rass8", "RichTextWithHighlightColor11totb6h", "Review_2Fonts", "YeB8I31zk_default", "Ticker1Fonts", "ReviewFonts", "f7vEVQgDx_default", "ContainerWithFX", "Container", "RichTextWithHighlightColor1zmge2g", "FooterFonts", "i5rPRTdxN_default", "breakpoints", "isBrowser", "serializationHash", "variantClassNames", "transition1", "animation", "animation1", "transition2", "animation2", "addImageAlt", "image", "alt", "animation3", "animation4", "animation5", "transition3", "animation6", "HTMLStyle", "value", "useIsOnFramerCanvas", "p", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "variant", "restProps", "ue", "metadata", "robotsTag", "ie", "baseVariant", "hydratedBaseVariant", "useHydratedBreakpointVariants", "gestureVariant", "scopingClassNames", "cx", "elementId", "useRouteElementId", "ref1", "isDisplayed", "router", "useRouter", "isDisplayed1", "elementId1", "ref2", "elementId2", "ref3", "elementId3", "ref4", "elementId4", "ref5", "useCustomCursors", "GeneratedComponentContext", "u", "LayoutGroup", "motion", "ComponentViewportProvider", "PropertyOverrides2", "getLoadingLazyAtYPosition", "x", "ResolveLinks", "resolvedLinks", "resolvedLinks1", "resolvedLinks2", "Link", "SVG", "css", "FramerjaFc83PwF", "withCSS", "jaFc83PwF_default", "addFonts", "getFontsFromSharedStyle", "fonts", "__FramerMetadata__"]
}
