{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/B2xAlJLcN0gOnt11mSPw/XVUmpmPn1EPL0dzocT35/Ticker.js", "ssg:https://framerusercontent.com/modules/NEd4VmDdsxM3StIUbddO/1de6WpgIbCrKkRcPfQcW/YouTube.js", "ssg:https://framerusercontent.com/modules/o1PI5S8YtkA5bP5g4dFz/Mn69eMnaMcqJ65TjxwR1/Embed.js", "ssg:https://framer.com/m/phosphor-icons/House.js@0.0.57", "ssg:https://framerusercontent.com/modules/tYScH7LTqUtz5KUaUAYP/p8dptk4UIND8hbFWz9V7/Phosphor.js", "ssg:https://framerusercontent.com/modules/qIggmiIQlgkOOxO2FZXf/E1odE2c2oTIcBdM408HN/t8McjhPdx.js", "ssg:https://framerusercontent.com/modules/st88pPivHzQIrszrLdyo/GoXE4Lbsj7YfPnNhuXr8/ILlMbfB4O.js", "ssg:https://framerusercontent.com/modules/PA96NfPzqF9JZJu9G8Nz/CXXX1raE0Wy21cYqBvDy/hVbytqJMx.js", "ssg:https://framerusercontent.com/modules/nE73jANULy5g4OMFsbr4/jojIILHdP5PFtytLohfK/d3cR5vufm.js", "ssg:https://framerusercontent.com/modules/Luhl8wKrbAobUrP8D9Te/3etyzWZ2tBANHEqzlgbv/wktam6FEc.js", "ssg:https://framerusercontent.com/modules/SQ4swOLyGpXeyCS993Vn/nr3OQA3a0yIYlUoVJax3/Uc0SLSiZ7.js", "ssg:https://framerusercontent.com/modules/gulg7RakJpkwoLPwmWqQ/85A9UYxFlLWIqrgPpz9k/foQIE3cD3.js", "ssg:https://framerusercontent.com/modules/GXnsTEYv1FllinnhSA7i/2A6fJpZyTdLoFQrjkI0j/dqoM54HW_.js", "ssg:https://framerusercontent.com/modules/rxlNXt6iWcpENRfg7pZm/9AuSj2cE4bktS3yfH8XT/lZNocZMOH.js", "ssg:https://framerusercontent.com/modules/GmK0i4suEgUA8LOP7v3u/NPVcO7pwXgSj0GZb8s3A/RkCts21Sv.js", "ssg:https://framerusercontent.com/modules/ISDblTQkrx18SxGBuZUx/iYAEMJzcPTSfOpcWfkJ7/pbRtJ_R1i.js", "ssg:https://framerusercontent.com/modules/WDk2LaxbI3pGt0w5XqZw/NbjsQWa8UQNlwUdorSSA/HWDAZjt0B.js", "ssg:https://framerusercontent.com/modules/nWWHiL30aJzE0FsrysfG/hvhN5DZgFrODdgrVxOmV/nFiJHpmb6.js", "ssg:https://framerusercontent.com/modules/dzFC9kjcJY9EGucVJzAV/ORszZT6EkQKx0dHC1mOj/dqoM54HW_.js", "ssg:https://framerusercontent.com/modules/jKhpQmisC38PJ5WLfuFo/djx5Ka6OZn02Me2uoLjP/OMp430bgy.js"],
  "sourcesContent": ["import{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{Children,useEffect,useState,useRef,useMemo,createRef,useCallback,cloneElement}from\"react\";import{addPropertyControls,ControlType,RenderTarget}from\"framer\";import{useAnimationFrame,useReducedMotion,LayoutGroup,useInView,useMotionValue,useTransform,motion,wrap,frame}from\"framer-motion\";import{resize}from\"@motionone/dom\";const MAX_DUPLICATED_ITEMS=100;const directionTransformers={left:offset=>`translateX(-${offset}px)`,right:offset=>`translateX(${offset}px)`,top:offset=>`translateY(-${offset}px)`,bottom:offset=>`translateY(${offset}px)`};const supportsAcceleratedAnimations=typeof Animation!==\"undefined\"&&typeof Animation.prototype.updatePlaybackRate===\"function\";/**\n *\n * @framerIntrinsicWidth 400\n * @framerIntrinsicHeight 200\n *\n * @framerDisableUnlink\n *\n * @framerSupportedLayoutWidth fixed\n * @framerSupportedLayoutHeight fixed\n */export default function Ticker(props){/* Props */let{slots,gap,padding,paddingPerSide,paddingTop,paddingRight,paddingBottom,paddingLeft,speed,hoverFactor,direction,alignment,sizingOptions,fadeOptions,style}=props;const{fadeContent,overflow,fadeWidth,fadeInset,fadeAlpha}=fadeOptions;const{widthType,heightType}=sizingOptions;const paddingValue=paddingPerSide?`${paddingTop}px ${paddingRight}px ${paddingBottom}px ${paddingLeft}px`:`${padding}px`;/* Checks */const isCanvas=RenderTarget.current()===RenderTarget.canvas;// Remove empty slots (such as hidden layers)\nconst filteredSlots=slots.filter(Boolean);const numChildren=Children.count(filteredSlots);const hasChildren=numChildren>0;if(direction===true){direction=\"left\";}const isHorizontal=direction===\"left\"||direction===\"right\";const offset=useMotionValue(0);const transformer=directionTransformers[direction];const transform=useTransform(offset,transformer);/* Refs and State */const parentRef=useRef(null);const childrenRef=useMemo(()=>{return[/*#__PURE__*/createRef(),/*#__PURE__*/createRef()];},[]);const[size,setSize]=useState({parent:null,children:null});/* Arrays */let clonedChildren=[];let dupedChildren=[];/* Duplicate value */let duplicateBy=0;let opacity=0;if(isCanvas){duplicateBy=numChildren?Math.floor(10/numChildren):0;opacity=1;}if(!isCanvas&&hasChildren&&size.parent){duplicateBy=Math.round(size.parent/size.children*2)+1;duplicateBy=Math.min(duplicateBy,MAX_DUPLICATED_ITEMS);opacity=1;}/* Measure parent and child */const measure=useCallback(()=>{if(hasChildren&&parentRef.current){const parentLength=isHorizontal?parentRef.current.offsetWidth:parentRef.current.offsetHeight;const start=childrenRef[0].current?isHorizontal?childrenRef[0].current.offsetLeft:childrenRef[0].current.offsetTop:0;const end=childrenRef[1].current?isHorizontal?childrenRef[1].current.offsetLeft+childrenRef[1].current.offsetWidth:childrenRef[1].current.offsetTop+childrenRef[1].current.offsetHeight:0;const childrenLength=end-start+gap;setSize({parent:parentLength,children:childrenLength});}},[]);const childrenStyles=isCanvas?{contentVisibility:\"auto\"}:{};/* Add refs to first and last child */if(hasChildren){// TODO: These conditional hooks will be unsafe if hasChildren ever changes outside the canvas.\nif(!isCanvas){/**\n             * Track whether this is the initial resize event. By default this will fire on mount,\n             * which we do in the useEffect. We should only fire it on subsequent resizes.\n             */let initialResize=useRef(true);useEffect(()=>{frame.read(measure);return resize(parentRef.current,({contentSize})=>{if(!initialResize.current&&(contentSize.width||contentSize.height)){frame.read(measure);}initialResize.current=false;});},[]);}clonedChildren=Children.map(filteredSlots,(child,index)=>{var _child_props,_child_props1,_child_props2,_child_props3;let ref;if(index===0){ref=childrenRef[0];}if(index===filteredSlots.length-1){ref=childrenRef[1];}const size={width:widthType?(_child_props=child.props)===null||_child_props===void 0?void 0:_child_props.width:\"100%\",height:heightType?(_child_props1=child.props)===null||_child_props1===void 0?void 0:_child_props1.height:\"100%\"};return /*#__PURE__*/_jsx(LayoutGroup,{inherit:\"id\",children:/*#__PURE__*/_jsx(\"li\",{ref:ref,style:size,children:/*#__PURE__*/cloneElement(child,{style:{...(_child_props2=child.props)===null||_child_props2===void 0?void 0:_child_props2.style,...size,flexShrink:0,...childrenStyles},layoutId:child.props.layoutId?child.props.layoutId+\"-original-\"+index:undefined},(_child_props3=child.props)===null||_child_props3===void 0?void 0:_child_props3.children)})});});}if(!isCanvas){for(let i=0;i<duplicateBy;i++){dupedChildren=[...dupedChildren,...Children.map(filteredSlots,(child,childIndex)=>{var _child_props,_child_props1,_child_props2,_child_props3,_child_props4,_child_props5;const size={width:widthType?(_child_props=child.props)===null||_child_props===void 0?void 0:_child_props.width:\"100%\",height:heightType?(_child_props1=child.props)===null||_child_props1===void 0?void 0:_child_props1.height:\"100%\",willChange:\"transform\"};return /*#__PURE__*/_jsx(LayoutGroup,{inherit:\"id\",children:/*#__PURE__*/_jsx(\"li\",{style:size,\"aria-hidden\":true,children:/*#__PURE__*/cloneElement(child,{key:i+\" \"+childIndex,style:{...(_child_props2=child.props)===null||_child_props2===void 0?void 0:_child_props2.style,width:widthType?(_child_props3=child.props)===null||_child_props3===void 0?void 0:_child_props3.width:\"100%\",height:heightType?(_child_props4=child.props)===null||_child_props4===void 0?void 0:_child_props4.height:\"100%\",flexShrink:0,...childrenStyles},layoutId:child.props.layoutId?child.props.layoutId+\"-dupe-\"+i:undefined},(_child_props5=child.props)===null||_child_props5===void 0?void 0:_child_props5.children)},i+\"li\"+childIndex)},i+\"lg\"+childIndex);})];}}const animateToValue=size.children+size.children*Math.round(size.parent/size.children);const initialTime=useRef(null);const prevTime=useRef(null);const xOrY=useRef(0);const isHover=useRef(false);const isReducedMotion=useReducedMotion();const listRef=useRef(null);const animationRef=useRef(null);/**\n     * Setup animations\n     */if(!isCanvas){const isInView=useInView(parentRef);/**\n         * If this is an animation we can hardware accelerate, animate with WAAPI\n         */if(supportsAcceleratedAnimations){useEffect(()=>{if(isReducedMotion||!animateToValue||!speed){return;}animationRef.current=listRef.current.animate({transform:[transformer(0),transformer(animateToValue)]},{duration:Math.abs(animateToValue)/speed*1e3,iterations:Infinity,easing:\"linear\"});return()=>animationRef.current.cancel();},[hoverFactor,animateToValue,speed]);// Pause the animation when it's out of view\nuseEffect(()=>{if(!animationRef.current)return;if(isInView&&animationRef.current.playState===\"paused\"){animationRef.current.play();}else if(!isInView&&animationRef.current.playState===\"running\"){animationRef.current.pause();}},[isInView]);}else{/**\n             * If we can't accelerate this animation because we have a hoverFactor defined\n             * animate with a rAF loop.\n             */useAnimationFrame(t=>{if(!animateToValue||isReducedMotion||supportsAcceleratedAnimations){return;}/**\n                 * In case this animation is delayed from starting because we're running a bunch\n                 * of other work, we want to set an initial time rather than counting from 0.\n                 * That ensures that if the animation is delayed, it starts from the first frame\n                 * rather than jumping.\n                 */if(initialTime.current===null){initialTime.current=t;}t=t-initialTime.current;const timeSince=prevTime.current===null?0:t-prevTime.current;let delta=timeSince*(speed/1e3);if(isHover.current){delta*=hoverFactor;}xOrY.current+=delta;xOrY.current=wrap(0,animateToValue,xOrY.current);prevTime.current=t;if(!isInView)return;offset.set(xOrY.current);});}}/* Fades */const fadeDirection=isHorizontal?\"to right\":\"to bottom\";const fadeWidthStart=fadeWidth/2;const fadeWidthEnd=100-fadeWidth/2;const fadeInsetStart=clamp(fadeInset,0,fadeWidthStart);const fadeInsetEnd=100-fadeInset;const fadeMask=`linear-gradient(${fadeDirection}, rgba(0, 0, 0, ${fadeAlpha}) ${fadeInsetStart}%, rgba(0, 0, 0, 1) ${fadeWidthStart}%, rgba(0, 0, 0, 1) ${fadeWidthEnd}%, rgba(0, 0, 0, ${fadeAlpha}) ${fadeInsetEnd}%)`;/* Empty state */if(!hasChildren){return /*#__PURE__*/_jsxs(\"section\",{style:placeholderStyles,children:[/*#__PURE__*/_jsx(\"div\",{style:emojiStyles,children:\"\u2728\"}),/*#__PURE__*/_jsx(\"p\",{style:titleStyles,children:\"Connect to Content\"}),/*#__PURE__*/_jsx(\"p\",{style:subtitleStyles,children:\"Add layers or components to infinitely loop on your page.\"})]});}return /*#__PURE__*/_jsx(\"section\",{style:{...containerStyle,opacity:opacity,WebkitMaskImage:fadeContent?fadeMask:undefined,MozMaskImage:fadeContent?fadeMask:undefined,maskImage:fadeContent?fadeMask:undefined,overflow:overflow?\"visible\":\"hidden\",padding:paddingValue},ref:parentRef,children:/*#__PURE__*/_jsxs(motion.ul,{ref:listRef,style:{...containerStyle,gap:gap,top:direction===\"bottom\"&&isValidNumber(animateToValue)?-animateToValue:undefined,left:direction===\"right\"&&isValidNumber(animateToValue)?-animateToValue:undefined,placeItems:alignment,position:\"relative\",flexDirection:isHorizontal?\"row\":\"column\",...style,willChange:isCanvas?\"auto\":\"transform\",transform:supportsAcceleratedAnimations?transformer(0):transform},onMouseEnter:()=>{isHover.current=true;if(animationRef.current){// TODO Replace with updatePlaybackRate when Chrome bugs sorted\nanimationRef.current.playbackRate=hoverFactor;}},onMouseLeave:()=>{isHover.current=false;if(animationRef.current){// TODO Replace with updatePlaybackRate when Chrome bugs sorted\nanimationRef.current.playbackRate=1;}},children:[clonedChildren,dupedChildren]})});}/* Default Properties */Ticker.defaultProps={gap:10,padding:10,sizingOptions:{widthType:true,heightType:true},fadeOptions:{fadeContent:true,overflow:false,fadeWidth:25,fadeAlpha:0,fadeInset:0},direction:true};/* Property Controls */addPropertyControls(Ticker,{slots:{type:ControlType.Array,title:\"Children\",control:{type:ControlType.ComponentInstance}},speed:{type:ControlType.Number,title:\"Speed\",min:0,max:1e3,defaultValue:100,unit:\"%\",displayStepper:true,step:5},direction:{type:ControlType.Enum,title:\"Direction\",options:[\"left\",\"right\",\"top\",\"bottom\"],optionIcons:[\"direction-left\",\"direction-right\",\"direction-up\",\"direction-down\"],optionTitles:[\"Left\",\"Right\",\"Top\",\"Bottom\"],defaultValue:\"left\",displaySegmentedControl:true},alignment:{type:ControlType.Enum,title:\"Align\",options:[\"flex-start\",\"center\",\"flex-end\"],optionIcons:{direction:{right:[\"align-top\",\"align-middle\",\"align-bottom\"],left:[\"align-top\",\"align-middle\",\"align-bottom\"],top:[\"align-left\",\"align-center\",\"align-right\"],bottom:[\"align-left\",\"align-center\",\"align-right\"]}},defaultValue:\"center\",displaySegmentedControl:true},gap:{type:ControlType.Number,title:\"Gap\"},padding:{title:\"Padding\",type:ControlType.FusedNumber,toggleKey:\"paddingPerSide\",toggleTitles:[\"Padding\",\"Padding per side\"],valueKeys:[\"paddingTop\",\"paddingRight\",\"paddingBottom\",\"paddingLeft\"],valueLabels:[\"T\",\"R\",\"B\",\"L\"],min:0},sizingOptions:{type:ControlType.Object,title:\"Sizing\",controls:{widthType:{type:ControlType.Boolean,title:\"Width\",enabledTitle:\"Auto\",disabledTitle:\"Stretch\",defaultValue:true},heightType:{type:ControlType.Boolean,title:\"Height\",enabledTitle:\"Auto\",disabledTitle:\"Stretch\",defaultValue:true}}},fadeOptions:{type:ControlType.Object,title:\"Clipping\",controls:{fadeContent:{type:ControlType.Boolean,title:\"Fade\",defaultValue:true},overflow:{type:ControlType.Boolean,title:\"Overflow\",enabledTitle:\"Show\",disabledTitle:\"Hide\",defaultValue:false,hidden(props){return props.fadeContent===true;}},fadeWidth:{type:ControlType.Number,title:\"Width\",defaultValue:25,min:0,max:100,unit:\"%\",hidden(props){return props.fadeContent===false;}},fadeInset:{type:ControlType.Number,title:\"Inset\",defaultValue:0,min:0,max:100,unit:\"%\",hidden(props){return props.fadeContent===false;}},fadeAlpha:{type:ControlType.Number,title:\"Opacity\",defaultValue:0,min:0,max:1,step:.05,hidden(props){return props.fadeContent===false;}}}},hoverFactor:{type:ControlType.Number,title:\"Hover\",min:0,max:1,unit:\"x\",defaultValue:1,step:.1,displayStepper:true,description:\"Slows down the speed while you are hovering.\"}});/* Placeholder Styles */const containerStyle={display:\"flex\",width:\"100%\",height:\"100%\",maxWidth:\"100%\",maxHeight:\"100%\",placeItems:\"center\",margin:0,padding:0,listStyleType:\"none\",textIndent:\"none\"};/* Styles */const placeholderStyles={display:\"flex\",width:\"100%\",height:\"100%\",placeContent:\"center\",placeItems:\"center\",flexDirection:\"column\",color:\"#96F\",background:\"rgba(136, 85, 255, 0.1)\",fontSize:11,overflow:\"hidden\",padding:\"20px 20px 30px 20px\"};const emojiStyles={fontSize:32,marginBottom:10};const titleStyles={margin:0,marginBottom:10,fontWeight:600,textAlign:\"center\"};const subtitleStyles={margin:0,opacity:.7,maxWidth:150,lineHeight:1.5,textAlign:\"center\"};/* Clamp function, used for fadeInset */const clamp=(num,min,max)=>Math.min(Math.max(num,min),max);const isValidNumber=value=>typeof value===\"number\"&&!isNaN(value);\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"Ticker\",\"slots\":[],\"annotations\":{\"framerDisableUnlink\":\"*\",\"framerIntrinsicWidth\":\"400\",\"framerContractVersion\":\"1\",\"framerSupportedLayoutWidth\":\"fixed\",\"framerIntrinsicHeight\":\"200\",\"framerSupportedLayoutHeight\":\"fixed\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Ticker.map", "import{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{useReducer,useState}from\"react\";import{ControlType,addPropertyControls}from\"framer\";import{useIsOnCanvas,emptyStateStyle,containerStyles,defaultEvents,useRadius,borderRadiusControl}from\"https://framer.com/m/framer/default-utils.js@^0.45.0\";var PlayOptions;(function(PlayOptions){PlayOptions[\"Normal\"]=\"Off\";PlayOptions[\"Auto\"]=\"On\";PlayOptions[\"Loop\"]=\"Loop\";})(PlayOptions||(PlayOptions={}));var ThumbnailOptions;(function(ThumbnailOptions){ThumbnailOptions[\"High\"]=\"High Quality\";ThumbnailOptions[\"Medium\"]=\"Medium Quality\";ThumbnailOptions[\"Low\"]=\"Low Quality\";ThumbnailOptions[\"Off\"]=\"Off\";})(ThumbnailOptions||(ThumbnailOptions={}));var ThumbnailFormat;(function(ThumbnailFormat){ThumbnailFormat[\"WebP\"]=\"webp\";ThumbnailFormat[\"JPG\"]=\"jpg\";})(ThumbnailFormat||(ThumbnailFormat={}));/**\n * @framerIntrinsicWidth 560\n * @framerIntrinsicHeight 315\n *\n * @framerSupportedLayoutWidth fixed\n * @framerSupportedLayoutHeight fixed\n *\n * @framerComponentPresetProps isRed, borderRadius\n */export function Youtube({url,play,shouldMute,thumbnail,isRed,onClick,onMouseEnter,onMouseLeave,onMouseDown,onMouseUp,title,...props}){const onCanvas=useIsOnCanvas();const isAutoplay=play!==\"Off\";const showThumbnail=onCanvas||thumbnail!==\"Off\"&&!isAutoplay;const[isPreloading,preloadVideo]=useReducer(()=>true,false);const[showVideo,startVideo]=useReducer(()=>true,!showThumbnail);const[isHovered,setHovered]=useState(false);const borderRadius=useRadius(props);const hasBorderRadius=borderRadius!==\"0px 0px 0px 0px\"&&borderRadius!==\"0px\";if(url===\"\"){return /*#__PURE__*/_jsx(Instructions,{});}const parsedURL=parseVideoURL(url);if(parsedURL===undefined){return /*#__PURE__*/_jsx(ErrorMessage,{message:\"Invalid Youtube URL.\"});}const[videoId,embedURL]=parsedURL;// https://developers.google.com/youtube/player_parameters\nconst searchParams=embedURL.searchParams;searchParams.set(\"iv_load_policy\",\"3\");searchParams.set(\"rel\",\"0\");searchParams.set(\"modestbranding\",\"1\");searchParams.set(\"playsinline\",\"1\");if(!showVideo){// if a browser does not support `loading=lazy`, make sure the video doesn't start playing in the background\nsearchParams.set(\"autoplay\",\"0\");}else if(isAutoplay||// when there is no thumbnail, we don't want to autoplay, unless video is started\nshowThumbnail&&showVideo){searchParams.set(\"autoplay\",\"1\");}if(isAutoplay&&shouldMute){searchParams.set(\"mute\",\"1\");}if(play===\"Loop\"){searchParams.set(\"loop\",\"1\");searchParams.set(\"playlist\",videoId);}if(!isRed){searchParams.set(\"color\",\"white\");}const iframeProps={title:title||\"Youtube Video\",allow:\"presentation; fullscreen; accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture\",src:embedURL.href,frameBorder:\"0\",onClick,onMouseEnter,onMouseLeave,onMouseDown,onMouseUp};return /*#__PURE__*/_jsxs(\"article\",{onPointerEnter:()=>setHovered(true),onPointerLeave:()=>setHovered(false),onPointerOver:preloadVideo,onKeyDown:startVideo,onClick:startVideo,style:{...wrapperStyle,borderRadius,transform:// Safari sometimes struggles to render border-radius:\n// - on the canvas when changing from 0 to any other value\n// - or when rendering an iframe\nhasBorderRadius&&(showVideo||onCanvas)?\"translateZ(0.000001px)\":\"unset\",cursor:\"pointer\",overflow:\"hidden\"},role:\"presentation\",children:[isPreloading&&/*#__PURE__*/_jsx(\"link\",{rel:\"preconnect\",href:\"https://www.youtube.com\"}),isPreloading&&/*#__PURE__*/_jsx(\"link\",{rel:\"preconnect\",href:\"https://www.google.com\"}),/*#__PURE__*/_jsx(\"div\",{style:{...videoStyle,background:showThumbnail?`center / cover url(${getThumbnailURL(videoId,thumbnail,getWebPSupported()?\"webp\":\"jpg\")}) no-repeat`:undefined}}),!onCanvas?/*#__PURE__*/_jsx(\"iframe\",{loading:!showVideo?\"lazy\":undefined,style:!showVideo?{...videoStyle,display:\"none\"}:videoStyle,...iframeProps}):null,showVideo?null:/*#__PURE__*/_jsx(PlayButton,{onClick:startVideo,isHovered:isHovered,isRed:isRed})]});}Youtube.displayName=\"YouTube\";addPropertyControls(Youtube,{url:{type:ControlType.String,title:\"Video\"},play:{type:ControlType.Enum,title:\"Autoplay\",options:Object.values(PlayOptions)},shouldMute:{title:\"Mute\",type:ControlType.Boolean,enabledTitle:\"Yes\",disabledTitle:\"No\",hidden(props){return props.play===\"Off\";}},thumbnail:{title:\"Thumbnail\",description:\"Showing a thumbnail improves performance.\",type:ControlType.Enum,options:Object.values(ThumbnailOptions),hidden(props){return props.play!==\"Off\";}},isRed:{title:\"Color\",type:ControlType.Boolean,enabledTitle:\"Red\",disabledTitle:\"White\"},...borderRadiusControl,...defaultEvents});const defaultProps={url:\"https://youtu.be/smPos0mJvh8\",play:\"Off\",shouldMute:true,thumbnail:\"Medium Quality\",isRed:true};Youtube.defaultProps=defaultProps;function parseVideoURL(urlString){let url;try{url=new URL(urlString);}catch{const embedURL=getEmbedURL(urlString);return[urlString,embedURL];}if(url.hostname===\"youtube.com\"||url.hostname===\"www.youtube.com\"||url.hostname===\"youtube-nocookie.com\"||url.hostname===\"www.youtube-nocookie.com\"){const pathSegments=url.pathname.slice(1).split(\"/\");// https://www.youtube.com/watch?v=Fop2oskTug8\nif(pathSegments[0]===\"watch\"){const videoId=url.searchParams.get(\"v\");const embedURL=getEmbedURL(videoId);return[videoId,embedURL];}// https://www.youtube.com/embed/Fop2oskTug8\nif(pathSegments[0]===\"embed\"){const videoId=pathSegments[1];return[videoId,url];}}// https://youtu.be/Fop2oskTug8\nif(url.hostname===\"youtu.be\"){const videoId=url.pathname.slice(1);const embedURL=getEmbedURL(videoId);return[videoId,embedURL];}}function getEmbedURL(videoId){return new URL(`https://www.youtube.com/embed/${videoId}`);}function getThumbnailURL(videoId,res,format=\"jpg\"){// https://gist.github.com/a1ip/be4514c1fd392a8c13b05e082c4da363\nconst useWebP=format===\"webp\";const pre=useWebP?\"https://i.ytimg.com/vi_webp/\":\"https://i.ytimg.com/vi/\";const ext=useWebP?\"webp\":\"jpg\";switch(res){case\"Low Quality\":return`${pre}${videoId}/hqdefault.${ext}`;case\"Medium Quality\":return`${pre}${videoId}/sddefault.${ext}`;case\"High Quality\":return`${pre}${videoId}/maxresdefault.${ext}`;default:return`${pre}${videoId}/0.${ext}`;}}let _getWebPSupported;// https://stackoverflow.com/a/27232658\nfunction getWebPSupported(){// We're going to default to webp because it's pretty widely supported by now\nif(!window){return true;}if(_getWebPSupported!==undefined){return _getWebPSupported;}const element=document.createElement(\"canvas\");if(element.getContext&&element.getContext(\"2d\")){// was able or not to get WebP representation\nreturn _getWebPSupported=element.toDataURL(\"image/webp\").indexOf(\"data:image/webp\")===0;}else{// very old browser like IE 8, canvas not supported\nreturn _getWebPSupported=false;}}// Helper components\nfunction Instructions(){return /*#__PURE__*/_jsx(\"div\",{style:{...emptyStateStyle,overflow:\"hidden\"},children:/*#__PURE__*/_jsx(\"div\",{style:centerTextStyle,children:\"To embed a Youtube video, add the URL to the properties\\xa0panel.\"})});}function ErrorMessage({message}){return /*#__PURE__*/_jsx(\"div\",{className:\"framerInternalUI-errorPlaceholder\",style:{...containerStyles,overflow:\"hidden\"},children:/*#__PURE__*/_jsxs(\"div\",{style:centerTextStyle,children:[\"Error: \",message]})});}function PlayButton({onClick,isHovered,isRed}){return /*#__PURE__*/_jsx(\"button\",{onClick:onClick,\"aria-label\":\"Play\",style:buttonStyle,children:/*#__PURE__*/_jsxs(\"svg\",{height:\"100%\",version:\"1.1\",viewBox:\"0 0 68 48\",width:\"100%\",children:[/*#__PURE__*/_jsx(\"path\",{d:\"M66.52,7.74c-0.78-2.93-2.49-5.41-5.42-6.19C55.79,.13,34,0,34,0S12.21,.13,6.9,1.55 C3.97,2.33,2.27,4.81,1.48,7.74C0.06,13.05,0,24,0,24s0.06,10.95,1.48,16.26c0.78,2.93,2.49,5.41,5.42,6.19 C12.21,47.87,34,48,34,48s21.79-0.13,27.1-1.55c2.93-0.78,4.64-3.26,5.42-6.19C67.94,34.95,68,24,68,24S67.94,13.05,66.52,7.74z\",fill:isHovered?isRed?\"#f00\":\"#000\":\"#212121\",fillOpacity:isHovered?isRed?1:.8:.8,style:{transition:\"fill .1s cubic-bezier(0.4, 0, 1, 1), fill-opacity .1s cubic-bezier(0.4, 0, 1, 1)\"}}),/*#__PURE__*/_jsx(\"path\",{d:\"M 45,24 27,14 27,34\",fill:\"#fff\"})]})});}const buttonStyle={position:\"absolute\",top:\"50%\",left:\"50%\",transform:\"translate(-50%, -50%)\",width:68,height:48,padding:0,border:\"none\",background:\"transparent\",cursor:\"pointer\"};const wrapperStyle={position:\"relative\",width:\"100%\",height:\"100%\"};const centerTextStyle={textAlign:\"center\",minWidth:140};const videoStyle={position:\"absolute\",top:0,left:0,height:\"100%\",width:\"100%\"};\nexport const __FramerMetadata__ = {\"exports\":{\"Youtube\":{\"type\":\"reactComponent\",\"name\":\"Youtube\",\"slots\":[],\"annotations\":{\"framerComponentPresetProps\":\"isRed, borderRadius\",\"framerIntrinsicHeight\":\"315\",\"framerSupportedLayoutWidth\":\"fixed\",\"framerIntrinsicWidth\":\"560\",\"framerContractVersion\":\"1\",\"framerSupportedLayoutHeight\":\"fixed\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./YouTube.map", "import{jsx as _jsx}from\"react/jsx-runtime\";import{useEffect,useRef,useState}from\"react\";import{addPropertyControls,ControlType}from\"framer\";import{useIsOnCanvas,emptyStateStyle,containerStyles}from\"https://framer.com/m/framer/default-utils.js\";/**\n * @framerIntrinsicWidth 600\n * @framerIntrinsicHeight 400\n *\n * @framerSupportedLayoutWidth fixed\n * @framerSupportedLayoutHeight any-prefer-fixed\n *\n * @framerDisableUnlink\n */export default function Embed({type,url,html,style={}}){if(type===\"url\"&&url){return /*#__PURE__*/_jsx(EmbedURL,{url:url,style:style});}if(type===\"html\"&&html){return /*#__PURE__*/_jsx(EmbedHTML,{html:html,style:style});}return /*#__PURE__*/_jsx(Instructions,{style:style});}addPropertyControls(Embed,{type:{type:ControlType.Enum,defaultValue:\"url\",displaySegmentedControl:true,options:[\"url\",\"html\"],optionTitles:[\"URL\",\"HTML\"]},url:{title:\"URL\",type:ControlType.String,description:\"Some websites don\u2019t support embedding.\",hidden(props){return props.type!==\"url\";}},html:{title:\"HTML\",type:ControlType.String,displayTextArea:true,hidden(props){return props.type!==\"html\";}}});function Instructions({style}){return /*#__PURE__*/_jsx(\"div\",{style:{minHeight:getMinHeight(style),...emptyStateStyle,overflow:\"hidden\",...style},children:/*#__PURE__*/_jsx(\"div\",{style:centerTextStyle,children:\"To embed a website or widget, add it to the properties\\xa0panel.\"})});}function EmbedURL({url,style}){const hasAutoHeight=!style.height;// Add https:// if the URL does not have a protocol.\nif(!/[a-z]+:\\/\\//.test(url)){url=\"https://\"+url;}const onCanvas=useIsOnCanvas();// We need to check if the url is blocked inside an iframe by the X-Frame-Options\n// or Content-Security-Policy headers on the backend.\nconst[state,setState]=useState(onCanvas?undefined:false);useEffect(()=>{// We only want to check on the canvas.\n// On the website we want to avoid the additional delay.\nif(!onCanvas)return;// TODO: We could also use AbortController here.\nlet isLastEffect=true;setState(undefined);async function load(){const response=await fetch(\"https://api.framer.com/functions/check-iframe-url?url=\"+encodeURIComponent(url));if(response.status==200){const{isBlocked}=await response.json();if(isLastEffect){setState(isBlocked);}}else{const message=await response.text();console.error(message);const error=new Error(\"This site can\u2019t be reached.\");setState(error);}}load().catch(error=>{console.error(error);setState(error);});return()=>{isLastEffect=false;};},[url]);if(onCanvas&&hasAutoHeight){return /*#__PURE__*/_jsx(ErrorMessage,{message:\"URL embeds do not support auto height.\",style:style});}if(!url.startsWith(\"https://\")){return /*#__PURE__*/_jsx(ErrorMessage,{message:\"Unsupported protocol.\",style:style});}if(state===undefined){return /*#__PURE__*/_jsx(LoadingIndicator,{});}if(state instanceof Error){return /*#__PURE__*/_jsx(ErrorMessage,{message:state.message,style:style});}if(state===true){const message=`Can\u2019t embed ${url} due to its content security policy.`;return /*#__PURE__*/_jsx(ErrorMessage,{message:message,style:style});}return /*#__PURE__*/_jsx(\"iframe\",{src:url,style:{...iframeStyle,...style},loading:\"lazy\",// @ts-ignore\nfetchPriority:onCanvas?\"low\":\"auto\",referrerPolicy:\"no-referrer\",sandbox:getSandbox(onCanvas)});}const iframeStyle={width:\"100%\",height:\"100%\",border:\"none\"};function getSandbox(onCanvas){const result=[\"allow-same-origin\",\"allow-scripts\"];if(!onCanvas){result.push(\"allow-downloads\",\"allow-forms\",\"allow-modals\",\"allow-orientation-lock\",\"allow-pointer-lock\",\"allow-popups\",\"allow-popups-to-escape-sandbox\",\"allow-presentation\",\"allow-storage-access-by-user-activation\",\"allow-top-navigation-by-user-activation\");}return result.join(\" \");}function EmbedHTML({html,style}){const ref=useRef();const onCanvas=useIsOnCanvas();const[iframeHeight,setIframeHeight]=useState(0);const hasAutoHeight=!style.height;const hasScript=html.includes(\"</script>\");useEffect(()=>{var _ref_current;const iframeWindow=(_ref_current=ref.current)===null||_ref_current===void 0?void 0:_ref_current.contentWindow;function handleMessage(event){if(event.source!==iframeWindow)return;const data=event.data;if(typeof data!==\"object\"||data===null)return;const height=data.embedHeight;if(typeof height!==\"number\")return;setIframeHeight(height);}window.addEventListener(\"message\",handleMessage);// After SSG the iframe loads before we attach the event handler,\n// therefore we need to request the latest height from the iframe.\niframeWindow===null||iframeWindow===void 0?void 0:iframeWindow.postMessage(\"getEmbedHeight\",\"*\");return()=>{window.removeEventListener(\"message\",handleMessage);};},[]);if(hasScript){const srcDoc=`<html>\n    <head>\n        <style>body { margin: 0; }</style>\n    </head>\n    <body>\n        ${html}\n        <script type=\"module\">\n            let height = 0\n\n            function sendEmbedHeight() {\n                window.parent.postMessage({\n                    embedHeight: height\n                }, \"*\")\n            }\n\n            const observer = new ResizeObserver((entries) => {\n                if (entries.length !== 1) return\n                const entry = entries[0]\n                if (entry.target !== document.body) return\n\n                height = entry.contentRect.height\n                sendEmbedHeight()\n            })\n\n            observer.observe(document.body)\n\n            window.addEventListener(\"message\", (event) => {\n                if (event.source !== window.parent) return\n                if (event.data !== \"getEmbedHeight\") return\n                sendEmbedHeight()\n            })\n        </script>\n    <body>\n</html>`;const currentStyle={...iframeStyle,...style};if(hasAutoHeight){currentStyle.height=iframeHeight+\"px\";}return /*#__PURE__*/_jsx(\"iframe\",{ref:ref,style:currentStyle,srcDoc:srcDoc});}return /*#__PURE__*/_jsx(\"div\",{style:{...htmlStyle,...style},dangerouslySetInnerHTML:{__html:html}});}const htmlStyle={width:\"100%\",height:\"100%\",display:\"flex\",flexDirection:\"column\",justifyContent:\"center\",alignItems:\"center\"};// Generic components\nfunction LoadingIndicator(){return /*#__PURE__*/_jsx(\"div\",{className:\"framerInternalUI-componentPlaceholder\",style:{...containerStyles,overflow:\"hidden\"},children:/*#__PURE__*/_jsx(\"div\",{style:centerTextStyle,children:\"Loading\u2026\"})});}function ErrorMessage({message,style}){return /*#__PURE__*/_jsx(\"div\",{className:\"framerInternalUI-errorPlaceholder\",style:{minHeight:getMinHeight(style),...containerStyles,overflow:\"hidden\",...style},children:/*#__PURE__*/_jsx(\"div\",{style:centerTextStyle,children:message})});}const centerTextStyle={textAlign:\"center\",minWidth:140};// Returns a min-height if the component is using auto-height.\nfunction getMinHeight(style){const hasAutoHeight=!style.height;if(hasAutoHeight)return 200;}\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"Embed\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\",\"framerIntrinsicWidth\":\"600\",\"framerSupportedLayoutWidth\":\"fixed\",\"framerIntrinsicHeight\":\"400\",\"framerSupportedLayoutHeight\":\"any-prefer-fixed\",\"framerDisableUnlink\":\"\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Embed.map", "let Component;\nlet IconInner;\nvar Icon = (React) => {\n  if (!Component) {\n    Component = /* @__PURE__ */ new Map([\n      [\n        \"bold\",\n        /* @__PURE__ */ React.createElement(React.Fragment, null, /* @__PURE__ */ React.createElement(\"path\", { d: \"M222.14,105.85l-80-80a20,20,0,0,0-28.28,0l-80,80A19.86,19.86,0,0,0,28,120v96a12,12,0,0,0,12,12h64a12,12,0,0,0,12-12V164h24v52a12,12,0,0,0,12,12h64a12,12,0,0,0,12-12V120A19.86,19.86,0,0,0,222.14,105.85ZM204,204H164V152a12,12,0,0,0-12-12H104a12,12,0,0,0-12,12v52H52V121.65l76-76,76,76Z\" }))\n      ],\n      [\n        \"duotone\",\n        /* @__PURE__ */ React.createElement(React.Fragment, null, /* @__PURE__ */ React.createElement(\n          \"path\",\n          {\n            d: \"M216,120v96H152V152H104v64H40V120a8,8,0,0,1,2.34-5.66l80-80a8,8,0,0,1,11.32,0l80,80A8,8,0,0,1,216,120Z\",\n            opacity: \"0.2\"\n          }\n        ), /* @__PURE__ */ React.createElement(\"path\", { d: \"M219.31,108.68l-80-80a16,16,0,0,0-22.62,0l-80,80A15.87,15.87,0,0,0,32,120v96a8,8,0,0,0,8,8h64a8,8,0,0,0,8-8V160h32v56a8,8,0,0,0,8,8h64a8,8,0,0,0,8-8V120A15.87,15.87,0,0,0,219.31,108.68ZM208,208H160V152a8,8,0,0,0-8-8H104a8,8,0,0,0-8,8v56H48V120l80-80,80,80Z\" }))\n      ],\n      [\n        \"fill\",\n        /* @__PURE__ */ React.createElement(React.Fragment, null, /* @__PURE__ */ React.createElement(\"path\", { d: \"M224,120v96a8,8,0,0,1-8,8H160a8,8,0,0,1-8-8V164a4,4,0,0,0-4-4H108a4,4,0,0,0-4,4v52a8,8,0,0,1-8,8H40a8,8,0,0,1-8-8V120a16,16,0,0,1,4.69-11.31l80-80a16,16,0,0,1,22.62,0l80,80A16,16,0,0,1,224,120Z\" }))\n      ],\n      [\n        \"light\",\n        /* @__PURE__ */ React.createElement(React.Fragment, null, /* @__PURE__ */ React.createElement(\"path\", { d: \"M217.9,110.1l-80-80a14,14,0,0,0-19.8,0l-80,80A13.92,13.92,0,0,0,34,120v96a6,6,0,0,0,6,6h64a6,6,0,0,0,6-6V158h36v58a6,6,0,0,0,6,6h64a6,6,0,0,0,6-6V120A13.92,13.92,0,0,0,217.9,110.1ZM210,210H158V152a6,6,0,0,0-6-6H104a6,6,0,0,0-6,6v58H46V120a2,2,0,0,1,.58-1.42l80-80a2,2,0,0,1,2.84,0l80,80A2,2,0,0,1,210,120Z\" }))\n      ],\n      [\n        \"regular\",\n        /* @__PURE__ */ React.createElement(React.Fragment, null, /* @__PURE__ */ React.createElement(\"path\", { d: \"M219.31,108.68l-80-80a16,16,0,0,0-22.62,0l-80,80A15.87,15.87,0,0,0,32,120v96a8,8,0,0,0,8,8h64a8,8,0,0,0,8-8V160h32v56a8,8,0,0,0,8,8h64a8,8,0,0,0,8-8V120A15.87,15.87,0,0,0,219.31,108.68ZM208,208H160V152a8,8,0,0,0-8-8H104a8,8,0,0,0-8,8v56H48V120l80-80,80,80Z\" }))\n      ],\n      [\n        \"thin\",\n        /* @__PURE__ */ React.createElement(React.Fragment, null, /* @__PURE__ */ React.createElement(\"path\", { d: \"M216.49,111.51l-80-80a12,12,0,0,0-17,0l-80,80A12,12,0,0,0,36,120v96a4,4,0,0,0,4,4h64a4,4,0,0,0,4-4V156h40v60a4,4,0,0,0,4,4h64a4,4,0,0,0,4-4V120A12,12,0,0,0,216.49,111.51ZM212,212H156V152a4,4,0,0,0-4-4H104a4,4,0,0,0-4,4v60H44V120a4,4,0,0,1,1.17-2.83l80-80a4,4,0,0,1,5.66,0l80,80A4,4,0,0,1,212,120Z\" }))\n      ]\n    ]);\n    IconInner = React.forwardRef((props, ref) => /* @__PURE__ */ React.createElement(\"g\", { ref, ...props }, Component.get(props.weight)));\n  }\n  return IconInner;\n};\nconst __FramerMetadata__ = {\n  exports: {\n    default: {\n      type: \"reactComponent\",\n      slots: [],\n      annotations: { framerContractVersion: \"1\" }\n    },\n    __FramerMetadata__: { type: \"variable\" }\n  }\n};\nvar House_default = Icon;\nexport {\n  __FramerMetadata__,\n  House_default as default\n};\n", "import{jsx as _jsx}from\"react/jsx-runtime\";import*as React from\"react\";import{useState,useEffect,useRef}from\"react\";import{addPropertyControls,ControlType,RenderTarget}from\"framer\";import{motion}from\"framer-motion\";import{NullState}from\"https://framer.com/m/framer/icon-nullstate.js@0.7.0\";import HouseFactory from\"https://framer.com/m/phosphor-icons/House.js@0.0.57\";import{defaultEvents,useIconSelection}from\"https://framerusercontent.com/modules/Ma20hU0GGRxLxZphbywl/OSpwWF91FHPVFyQJjMHt/utils.js\";const iconKeys=[\"Acorn\",\"AddressBook\",\"AddressBookTabs\",\"AirTrafficControl\",\"Airplane\",\"AirplaneInFlight\",\"AirplaneLanding\",\"AirplaneTakeoff\",\"AirplaneTaxiing\",\"AirplaneTilt\",\"Airplay\",\"Alarm\",\"Alien\",\"AlignBottom\",\"AlignBottomSimple\",\"AlignCenterVertical\",\"AlignLeft\",\"AlignLeftSimple\",\"AlignRight\",\"AlignRightSimple\",\"AlignTop\",\"AlignTopSimple\",\"AmazonLogo\",\"Ambulance\",\"Anchor\",\"AnchorSimple\",\"AndroidLogo\",\"Angle\",\"AngularLogo\",\"Aperture\",\"AppStoreLogo\",\"AppWindow\",\"AppleLogo\",\"ApplePodcastsLogo\",\"ApproximateEquals\",\"Archive\",\"ArchiveBox\",\"ArchiveTray\",\"Armchair\",\"ArrowArcLeft\",\"ArrowArcRight\",\"ArrowBendDownLeft\",\"ArrowBendDownRight\",\"ArrowBendLeftDown\",\"ArrowBendLeftUp\",\"ArrowBendRightDown\",\"ArrowBendRightUp\",\"ArrowBendUpLeft\",\"ArrowBendUpRight\",\"ArrowCircleDown\",\"ArrowCircleDownLeft\",\"ArrowCircleDownRight\",\"ArrowCircleLeft\",\"ArrowCircleRight\",\"ArrowCircleUp\",\"ArrowCircleUpLeft\",\"ArrowCircleUpRight\",\"ArrowClockwise\",\"ArrowDown\",\"ArrowDownLeft\",\"ArrowDownRight\",\"ArrowElbowDownLeft\",\"ArrowElbowDownRight\",\"ArrowElbowLeft\",\"ArrowElbowLeftDown\",\"ArrowElbowLeftUp\",\"ArrowElbowRight\",\"ArrowElbowRightDown\",\"ArrowElbowRightUp\",\"ArrowElbowUpLeft\",\"ArrowElbowUpRight\",\"ArrowFatDown\",\"ArrowFatLeft\",\"ArrowFatLineDown\",\"ArrowFatLineLeft\",\"ArrowFatLineRight\",\"ArrowFatLineUp\",\"ArrowFatLinesDown\",\"ArrowFatLinesLeft\",\"ArrowFatLinesRight\",\"ArrowFatLinesUp\",\"ArrowFatRight\",\"ArrowFatUp\",\"ArrowLeft\",\"ArrowLineDown\",\"ArrowLineDownLeft\",\"ArrowLineDownRight\",\"ArrowLineLeft\",\"ArrowLineRight\",\"ArrowLineUp\",\"ArrowLineUpLeft\",\"ArrowLineUpRight\",\"ArrowRight\",\"ArrowSquareDown\",\"ArrowSquareDownLeft\",\"ArrowSquareDownRight\",\"ArrowSquareIn\",\"ArrowSquareLeft\",\"ArrowSquareOut\",\"ArrowSquareRight\",\"ArrowSquareUp\",\"ArrowSquareUpLeft\",\"ArrowSquareUpRight\",\"ArrowUDownLeft\",\"ArrowUDownRight\",\"ArrowULeftDown\",\"ArrowULeftUp\",\"ArrowURightDown\",\"ArrowURightUp\",\"ArrowUUpLeft\",\"ArrowUUpRight\",\"ArrowUp\",\"ArrowUpLeft\",\"ArrowUpRight\",\"ArrowsClockwise\",\"ArrowsDownUp\",\"ArrowsHorizontal\",\"ArrowsIn\",\"ArrowsInCardinal\",\"ArrowsInLineVertical\",\"ArrowsInSimple\",\"ArrowsLeftRight\",\"ArrowsMerge\",\"ArrowsOut\",\"ArrowsOutCardinal\",\"ArrowsOutSimple\",\"ArrowsSplit\",\"ArrowsVertical\",\"Article\",\"ArticleMedium\",\"ArticleNyTimes\",\"Asclepius\",\"Asterisk\",\"AsteriskSimple\",\"At\",\"Atom\",\"Avocado\",\"Axe\",\"Baby\",\"BabyCarriage\",\"Backpack\",\"Backspace\",\"Bag\",\"BagSimple\",\"Balloon\",\"Bandaids\",\"Bank\",\"Barbell\",\"Barcode\",\"Barn\",\"Barricade\",\"Baseball\",\"BaseballCap\",\"BaseballHelmet\",\"Basket\",\"Basketball\",\"Bathtub\",\"BatteryCharging\",\"BatteryEmpty\",\"BatteryFull\",\"BatteryHigh\",\"BatteryLow\",\"BatteryMedium\",\"BatteryPlus\",\"BatteryPlusVertical\",\"BatteryVerticalEmpty\",\"BatteryVerticalFull\",\"BatteryVerticalHigh\",\"BatteryVerticalLow\",\"BatteryWarning\",\"BeachBall\",\"Beanie\",\"Bed\",\"BeerBottle\",\"BeerStein\",\"BehanceLogo\",\"Bell\",\"BellRinging\",\"BellSimple\",\"BellSimpleRinging\",\"BellSimpleSlash\",\"BellSimpleZ\",\"BellSlash\",\"BellZ\",\"Belt\",\"BezierCurve\",\"Bicycle\",\"Binary\",\"Binoculars\",\"Biohazard\",\"Bird\",\"Blueprint\",\"Bluetooth\",\"BluetoothConnected\",\"BluetoothSlash\",\"BluetoothX\",\"Boat\",\"Bomb\",\"Bone\",\"Book\",\"BookBookmark\",\"BookOpen\",\"BookOpenText\",\"BookOpenUser\",\"BookUser\",\"Bookmark\",\"BookmarkSimple\",\"Bookmarks\",\"BookmarksSimple\",\"Books\",\"Boot\",\"Boules\",\"BoundingBox\",\"BowlFood\",\"BowlSteam\",\"BowlingBall\",\"BoxArrowDown\",\"BoxArrowUp\",\"BoxingGlove\",\"BracketsAngle\",\"BracketsCurly\",\"BracketsRound\",\"BracketsSquare\",\"Brain\",\"Brandy\",\"Bread\",\"Bridge\",\"Briefcase\",\"BriefcaseMetal\",\"Broadcast\",\"Broom\",\"Browser\",\"Browsers\",\"Bug\",\"BugBeetle\",\"BugDroid\",\"Building\",\"BuildingApartment\",\"BuildingOffice\",\"Buildings\",\"Bulldozer\",\"Bus\",\"Butterfly\",\"CableCar\",\"Cactus\",\"Cake\",\"Calculator\",\"Calendar\",\"CalendarBlank\",\"CalendarCheck\",\"CalendarDot\",\"CalendarDots\",\"CalendarHeart\",\"CalendarMinus\",\"CalendarPlus\",\"CalendarSlash\",\"CalendarStar\",\"CalendarX\",\"CallBell\",\"Camera\",\"CameraPlus\",\"CameraRotate\",\"CameraSlash\",\"Campfire\",\"Car\",\"CarBattery\",\"CarProfile\",\"CarSimple\",\"Cardholder\",\"Cards\",\"CardsThree\",\"CaretCircleDoubleUp\",\"CaretCircleDown\",\"CaretCircleLeft\",\"CaretCircleRight\",\"CaretCircleUp\",\"CaretCircleUpDown\",\"CaretDoubleDown\",\"CaretDoubleLeft\",\"CaretDoubleRight\",\"CaretDoubleUp\",\"CaretDown\",\"CaretLeft\",\"CaretLineDown\",\"CaretLineLeft\",\"CaretLineRight\",\"CaretLineUp\",\"CaretRight\",\"CaretUp\",\"CaretUpDown\",\"Carrot\",\"CashRegister\",\"CassetteTape\",\"CastleTurret\",\"Cat\",\"CellSignalFull\",\"CellSignalHigh\",\"CellSignalLow\",\"CellSignalMedium\",\"CellSignalNone\",\"CellSignalSlash\",\"CellSignalX\",\"CellTower\",\"Certificate\",\"Chair\",\"Chalkboard\",\"ChalkboardSimple\",\"ChalkboardTeacher\",\"Champagne\",\"ChargingStation\",\"ChartBar\",\"ChartBarHorizontal\",\"ChartDonut\",\"ChartLine\",\"ChartLineDown\",\"ChartLineUp\",\"ChartPie\",\"ChartPieSlice\",\"ChartPolar\",\"ChartScatter\",\"Chat\",\"ChatCentered\",\"ChatCenteredDots\",\"ChatCenteredSlash\",\"ChatCenteredText\",\"ChatCircle\",\"ChatCircleDots\",\"ChatCircleSlash\",\"ChatCircleText\",\"ChatDots\",\"ChatSlash\",\"ChatTeardrop\",\"ChatTeardropDots\",\"ChatTeardropSlash\",\"ChatTeardropText\",\"ChatText\",\"Chats\",\"ChatsCircle\",\"ChatsTeardrop\",\"Check\",\"CheckCircle\",\"CheckFat\",\"CheckSquare\",\"CheckSquareOffset\",\"Checkerboard\",\"Checks\",\"Cheers\",\"Cheese\",\"ChefHat\",\"Cherries\",\"Church\",\"Cigarette\",\"CigaretteSlash\",\"Circle\",\"CircleDashed\",\"CircleHalf\",\"CircleHalfTilt\",\"CircleNotch\",\"CirclesFour\",\"CirclesThree\",\"CirclesThreePlus\",\"Circuitry\",\"City\",\"Clipboard\",\"ClipboardText\",\"Clock\",\"ClockAfternoon\",\"ClockClockwise\",\"ClockCountdown\",\"ClockUser\",\"ClosedCaptioning\",\"Cloud\",\"CloudArrowDown\",\"CloudArrowUp\",\"CloudCheck\",\"CloudFog\",\"CloudLightning\",\"CloudMoon\",\"CloudRain\",\"CloudSlash\",\"CloudSnow\",\"CloudSun\",\"CloudWarning\",\"CloudX\",\"Clover\",\"Club\",\"CoatHanger\",\"CodaLogo\",\"Code\",\"CodeBlock\",\"CodeSimple\",\"CodepenLogo\",\"CodesandboxLogo\",\"Coffee\",\"CoffeeBean\",\"Coin\",\"CoinVertical\",\"Coins\",\"Columns\",\"ColumnsPlusLeft\",\"ColumnsPlusRight\",\"Command\",\"Compass\",\"CompassRose\",\"CompassTool\",\"ComputerTower\",\"Confetti\",\"ContactlessPayment\",\"Control\",\"Cookie\",\"CookingPot\",\"Copy\",\"CopySimple\",\"Copyleft\",\"Copyright\",\"CornersIn\",\"CornersOut\",\"Couch\",\"CourtBasketball\",\"Cow\",\"CowboyHat\",\"Cpu\",\"Crane\",\"CraneTower\",\"CreditCard\",\"Cricket\",\"Crop\",\"Cross\",\"Crosshair\",\"CrosshairSimple\",\"Crown\",\"CrownCross\",\"CrownSimple\",\"Cube\",\"CubeFocus\",\"CubeTransparent\",\"CurrencyBtc\",\"CurrencyCircleDollar\",\"CurrencyCny\",\"CurrencyDollar\",\"CurrencyDollarSimple\",\"CurrencyEth\",\"CurrencyEur\",\"CurrencyGbp\",\"CurrencyInr\",\"CurrencyJpy\",\"CurrencyKrw\",\"CurrencyKzt\",\"CurrencyNgn\",\"CurrencyRub\",\"Cursor\",\"CursorClick\",\"CursorText\",\"Cylinder\",\"Database\",\"Desk\",\"Desktop\",\"DesktopTower\",\"Detective\",\"DevToLogo\",\"DeviceMobile\",\"DeviceMobileCamera\",\"DeviceMobileSlash\",\"DeviceMobileSpeaker\",\"DeviceRotate\",\"DeviceTablet\",\"DeviceTabletCamera\",\"DeviceTabletSpeaker\",\"Devices\",\"Diamond\",\"DiamondsFour\",\"DiceFive\",\"DiceFour\",\"DiceOne\",\"DiceSix\",\"DiceThree\",\"DiceTwo\",\"Disc\",\"DiscoBall\",\"DiscordLogo\",\"Divide\",\"Dna\",\"Dog\",\"Door\",\"DoorOpen\",\"Dot\",\"DotOutline\",\"DotsNine\",\"DotsSix\",\"DotsSixVertical\",\"DotsThree\",\"DotsThreeCircle\",\"DotsThreeOutline\",\"DotsThreeVertical\",\"Download\",\"DownloadSimple\",\"Dress\",\"Dresser\",\"DribbbleLogo\",\"Drone\",\"Drop\",\"DropHalf\",\"DropHalfBottom\",\"DropSimple\",\"DropSlash\",\"DropboxLogo\",\"Ear\",\"EarSlash\",\"Egg\",\"EggCrack\",\"Eject\",\"EjectSimple\",\"Elevator\",\"Empty\",\"Engine\",\"Envelope\",\"EnvelopeOpen\",\"EnvelopeSimple\",\"EnvelopeSimpleOpen\",\"Equalizer\",\"Equals\",\"Eraser\",\"EscalatorDown\",\"EscalatorUp\",\"Exam\",\"ExclamationMark\",\"Exclude\",\"ExcludeSquare\",\"Export\",\"Eye\",\"EyeClosed\",\"EyeSlash\",\"Eyedropper\",\"EyedropperSample\",\"Eyeglasses\",\"Eyes\",\"FaceMask\",\"FacebookLogo\",\"Factory\",\"Faders\",\"FadersHorizontal\",\"FalloutShelter\",\"Fan\",\"Farm\",\"FastForward\",\"FastForwardCircle\",\"Feather\",\"FediverseLogo\",\"FigmaLogo\",\"File\",\"FileArchive\",\"FileArrowDown\",\"FileArrowUp\",\"FileAudio\",\"FileC\",\"FileCloud\",\"FileCode\",\"FileCpp\",\"FileCss\",\"FileCsv\",\"FileDashed\",\"FileDoc\",\"FileHtml\",\"FileImage\",\"FileIni\",\"FileJpg\",\"FileJs\",\"FileJsx\",\"FileLock\",\"FileMagnifyingGlass\",\"FileMd\",\"FileMinus\",\"FilePdf\",\"FilePlus\",\"FilePng\",\"FilePpt\",\"FilePy\",\"FileRs\",\"FileSql\",\"FileSvg\",\"FileText\",\"FileTs\",\"FileTsx\",\"FileTxt\",\"FileVideo\",\"FileVue\",\"FileX\",\"FileXls\",\"FileZip\",\"Files\",\"FilmReel\",\"FilmScript\",\"FilmSlate\",\"FilmStrip\",\"Fingerprint\",\"FingerprintSimple\",\"FinnTheHuman\",\"Fire\",\"FireExtinguisher\",\"FireSimple\",\"FireTruck\",\"FirstAid\",\"FirstAidKit\",\"Fish\",\"FishSimple\",\"Flag\",\"FlagBanner\",\"FlagBannerFold\",\"FlagCheckered\",\"FlagPennant\",\"Flame\",\"Flashlight\",\"Flask\",\"FlipHorizontal\",\"FlipVertical\",\"FloppyDisk\",\"FloppyDiskBack\",\"FlowArrow\",\"Flower\",\"FlowerLotus\",\"FlowerTulip\",\"FlyingSaucer\",\"Folder\",\"FolderDashed\",\"FolderLock\",\"FolderMinus\",\"FolderNotch\",\"FolderNotchMinus\",\"FolderNotchOpen\",\"FolderNotchPlus\",\"FolderOpen\",\"FolderPlus\",\"FolderSimple\",\"FolderSimpleDashed\",\"FolderSimpleLock\",\"FolderSimpleMinus\",\"FolderSimplePlus\",\"FolderSimpleStar\",\"FolderSimpleUser\",\"FolderStar\",\"FolderUser\",\"Folders\",\"Football\",\"FootballHelmet\",\"Footprints\",\"ForkKnife\",\"FourK\",\"FrameCorners\",\"FramerLogo\",\"Function\",\"Funnel\",\"FunnelSimple\",\"FunnelSimpleX\",\"FunnelX\",\"GameController\",\"Garage\",\"GasCan\",\"GasPump\",\"Gauge\",\"Gavel\",\"Gear\",\"GearFine\",\"GearSix\",\"GenderFemale\",\"GenderIntersex\",\"GenderMale\",\"GenderNeuter\",\"GenderNonbinary\",\"GenderTransgender\",\"Ghost\",\"Gif\",\"Gift\",\"GitBranch\",\"GitCommit\",\"GitDiff\",\"GitFork\",\"GitMerge\",\"GitPullRequest\",\"GithubLogo\",\"GitlabLogo\",\"GitlabLogoSimple\",\"Globe\",\"GlobeHemisphereEast\",\"GlobeHemisphereWest\",\"GlobeSimple\",\"GlobeSimpleX\",\"GlobeStand\",\"GlobeX\",\"Goggles\",\"Golf\",\"GoodreadsLogo\",\"GoogleCardboardLogo\",\"GoogleChromeLogo\",\"GoogleDriveLogo\",\"GoogleLogo\",\"GooglePhotosLogo\",\"GooglePlayLogo\",\"GooglePodcastsLogo\",\"Gps\",\"GpsFix\",\"GpsSlash\",\"Gradient\",\"GraduationCap\",\"Grains\",\"GrainsSlash\",\"Graph\",\"GraphicsCard\",\"GreaterThan\",\"GreaterThanOrEqual\",\"GridFour\",\"GridNine\",\"Guitar\",\"HairDryer\",\"Hamburger\",\"Hammer\",\"Hand\",\"HandArrowDown\",\"HandArrowUp\",\"HandCoins\",\"HandDeposit\",\"HandEye\",\"HandFist\",\"HandGrabbing\",\"HandHeart\",\"HandPalm\",\"HandPeace\",\"HandPointing\",\"HandSoap\",\"HandSwipeLeft\",\"HandSwipeRight\",\"HandTap\",\"HandWaving\",\"HandWithdraw\",\"Handbag\",\"HandbagSimple\",\"HandsClapping\",\"HandsPraying\",\"Handshake\",\"HardDrive\",\"HardDrives\",\"HardHat\",\"Hash\",\"HashStraight\",\"HeadCircuit\",\"Headlights\",\"Headphones\",\"Headset\",\"Heart\",\"HeartBreak\",\"HeartHalf\",\"HeartStraight\",\"HeartStraightBreak\",\"Heartbeat\",\"Hexagon\",\"HighDefinition\",\"HighHeel\",\"Highlighter\",\"HighlighterCircle\",\"Hockey\",\"Hoodie\",\"Horse\",\"Hospital\",\"Hourglass\",\"HourglassHigh\",\"HourglassLow\",\"HourglassMedium\",\"HourglassSimple\",\"HourglassSimpleHigh\",\"HourglassSimpleLow\",\"House\",\"HouseLine\",\"HouseSimple\",\"Hurricane\",\"IceCream\",\"IdentificationBadge\",\"IdentificationCard\",\"Image\",\"ImageBroken\",\"ImageSquare\",\"Images\",\"ImagesSquare\",\"Infinity\",\"Info\",\"InstagramLogo\",\"Intersect\",\"IntersectSquare\",\"IntersectThree\",\"Intersection\",\"Invoice\",\"Island\",\"Jar\",\"JarLabel\",\"Jeep\",\"Joystick\",\"Kanban\",\"Key\",\"KeyReturn\",\"Keyboard\",\"Keyhole\",\"Knife\",\"Ladder\",\"LadderSimple\",\"Lamp\",\"LampPendant\",\"Laptop\",\"Lasso\",\"LastfmLogo\",\"Layout\",\"Leaf\",\"Lectern\",\"Lego\",\"LegoSmiley\",\"LessThan\",\"LessThanOrEqual\",\"LetterCircleH\",\"LetterCircleP\",\"LetterCircleV\",\"Lifebuoy\",\"Lightbulb\",\"LightbulbFilament\",\"Lighthouse\",\"Lightning\",\"LightningA\",\"LightningSlash\",\"LineSegment\",\"LineSegments\",\"LineVertical\",\"Link\",\"LinkBreak\",\"LinkSimple\",\"LinkSimpleBreak\",\"LinkSimpleHorizontal\",\"LinkedinLogo\",\"LinktreeLogo\",\"LinuxLogo\",\"List\",\"ListBullets\",\"ListChecks\",\"ListDashes\",\"ListHeart\",\"ListMagnifyingGlass\",\"ListNumbers\",\"ListPlus\",\"ListStar\",\"Lock\",\"LockKey\",\"LockKeyOpen\",\"LockLaminated\",\"LockLaminatedOpen\",\"LockOpen\",\"LockSimple\",\"LockSimpleOpen\",\"Lockers\",\"Log\",\"MagicWand\",\"Magnet\",\"MagnetStraight\",\"MagnifyingGlass\",\"MagnifyingGlassMinus\",\"MagnifyingGlassPlus\",\"Mailbox\",\"MapPin\",\"MapPinArea\",\"MapPinLine\",\"MapPinPlus\",\"MapPinSimple\",\"MapPinSimpleArea\",\"MapPinSimpleLine\",\"MapTrifold\",\"MarkdownLogo\",\"MarkerCircle\",\"Martini\",\"MaskHappy\",\"MaskSad\",\"MastodonLogo\",\"MathOperations\",\"MatrixLogo\",\"Medal\",\"MedalMilitary\",\"MediumLogo\",\"Megaphone\",\"MegaphoneSimple\",\"MemberOf\",\"Memory\",\"MessengerLogo\",\"MetaLogo\",\"Meteor\",\"Metronome\",\"Microphone\",\"MicrophoneSlash\",\"MicrophoneStage\",\"Microscope\",\"MicrosoftExcelLogo\",\"MicrosoftOutlookLogo\",\"MicrosoftTeamsLogo\",\"MicrosoftWordLogo\",\"Minus\",\"MinusCircle\",\"MinusSquare\",\"Money\",\"MoneyWavy\",\"Monitor\",\"MonitorArrowUp\",\"MonitorPlay\",\"Moon\",\"MoonStars\",\"Moped\",\"MopedFront\",\"Mosque\",\"Motorcycle\",\"Mountains\",\"Mouse\",\"MouseLeftClick\",\"MouseMiddleClick\",\"MouseRightClick\",\"MouseScroll\",\"MouseSimple\",\"MusicNote\",\"MusicNoteSimple\",\"MusicNotes\",\"MusicNotesMinus\",\"MusicNotesPlus\",\"MusicNotesSimple\",\"NavigationArrow\",\"Needle\",\"Network\",\"NetworkSlash\",\"NetworkX\",\"Newspaper\",\"NewspaperClipping\",\"NotEquals\",\"NotMemberOf\",\"NotSubsetOf\",\"NotSupersetOf\",\"Notches\",\"Note\",\"NoteBlank\",\"NotePencil\",\"Notebook\",\"Notepad\",\"Notification\",\"NotionLogo\",\"NuclearPlant\",\"NumberCircleEight\",\"NumberCircleFive\",\"NumberCircleFour\",\"NumberCircleNine\",\"NumberCircleOne\",\"NumberCircleSeven\",\"NumberCircleSix\",\"NumberCircleThree\",\"NumberCircleTwo\",\"NumberCircleZero\",\"NumberEight\",\"NumberFive\",\"NumberFour\",\"NumberNine\",\"NumberOne\",\"NumberSeven\",\"NumberSix\",\"NumberSquareEight\",\"NumberSquareFive\",\"NumberSquareFour\",\"NumberSquareNine\",\"NumberSquareOne\",\"NumberSquareSeven\",\"NumberSquareSix\",\"NumberSquareThree\",\"NumberSquareTwo\",\"NumberSquareZero\",\"NumberThree\",\"NumberTwo\",\"NumberZero\",\"Numpad\",\"Nut\",\"NyTimesLogo\",\"Octagon\",\"OfficeChair\",\"Onigiri\",\"OpenAiLogo\",\"Option\",\"Orange\",\"OrangeSlice\",\"Oven\",\"Package\",\"PaintBrush\",\"PaintBrushBroad\",\"PaintBrushHousehold\",\"PaintBucket\",\"PaintRoller\",\"Palette\",\"Panorama\",\"Pants\",\"PaperPlane\",\"PaperPlaneRight\",\"PaperPlaneTilt\",\"Paperclip\",\"PaperclipHorizontal\",\"Parachute\",\"Paragraph\",\"Parallelogram\",\"Park\",\"Password\",\"Path\",\"PatreonLogo\",\"Pause\",\"PauseCircle\",\"PawPrint\",\"PaypalLogo\",\"Peace\",\"Pen\",\"PenNib\",\"PenNibStraight\",\"Pencil\",\"PencilCircle\",\"PencilLine\",\"PencilRuler\",\"PencilSimple\",\"PencilSimpleLine\",\"PencilSimpleSlash\",\"PencilSlash\",\"Pentagon\",\"Pentagram\",\"Pepper\",\"Percent\",\"Person\",\"PersonArmsSpread\",\"PersonSimple\",\"PersonSimpleBike\",\"PersonSimpleCircle\",\"PersonSimpleHike\",\"PersonSimpleRun\",\"PersonSimpleSki\",\"PersonSimpleSwim\",\"PersonSimpleTaiChi\",\"PersonSimpleThrow\",\"PersonSimpleWalk\",\"Perspective\",\"Phone\",\"PhoneCall\",\"PhoneDisconnect\",\"PhoneIncoming\",\"PhoneList\",\"PhoneOutgoing\",\"PhonePause\",\"PhonePlus\",\"PhoneSlash\",\"PhoneTransfer\",\"PhoneX\",\"PhosphorLogo\",\"Pi\",\"PianoKeys\",\"PicnicTable\",\"PictureInPicture\",\"PiggyBank\",\"Pill\",\"PingPong\",\"PintGlass\",\"PinterestLogo\",\"Pinwheel\",\"Pipe\",\"PipeWrench\",\"PixLogo\",\"Pizza\",\"Placeholder\",\"Planet\",\"Plant\",\"Play\",\"PlayCircle\",\"PlayPause\",\"Playlist\",\"Plug\",\"PlugCharging\",\"Plugs\",\"PlugsConnected\",\"Plus\",\"PlusCircle\",\"PlusMinus\",\"PlusSquare\",\"PokerChip\",\"PoliceCar\",\"Polygon\",\"Popcorn\",\"Popsicle\",\"PottedPlant\",\"Power\",\"Prescription\",\"Presentation\",\"PresentationChart\",\"Printer\",\"Prohibit\",\"ProhibitInset\",\"ProjectorScreen\",\"ProjectorScreenChart\",\"Pulse\",\"PushPin\",\"PushPinSimple\",\"PushPinSimpleSlash\",\"PushPinSlash\",\"PuzzlePiece\",\"QrCode\",\"Question\",\"QuestionMark\",\"Queue\",\"Quotes\",\"Rabbit\",\"Racquet\",\"Radical\",\"Radio\",\"RadioButton\",\"Radioactive\",\"Rainbow\",\"RainbowCloud\",\"Ranking\",\"ReadCvLogo\",\"Receipt\",\"ReceiptX\",\"Record\",\"Rectangle\",\"RectangleDashed\",\"Recycle\",\"RedditLogo\",\"Repeat\",\"RepeatOnce\",\"ReplitLogo\",\"Resize\",\"Rewind\",\"RewindCircle\",\"RoadHorizon\",\"Robot\",\"Rocket\",\"RocketLaunch\",\"Rows\",\"RowsPlusBottom\",\"RowsPlusTop\",\"Rss\",\"RssSimple\",\"Rug\",\"Ruler\",\"Sailboat\",\"Scales\",\"Scan\",\"ScanSmiley\",\"Scissors\",\"Scooter\",\"Screencast\",\"Screwdriver\",\"Scribble\",\"ScribbleLoop\",\"Scroll\",\"Seal\",\"SealCheck\",\"SealPercent\",\"SealQuestion\",\"SealWarning\",\"Seat\",\"Seatbelt\",\"SecurityCamera\",\"Selection\",\"SelectionAll\",\"SelectionBackground\",\"SelectionForeground\",\"SelectionInverse\",\"SelectionPlus\",\"SelectionSlash\",\"Shapes\",\"Share\",\"ShareFat\",\"ShareNetwork\",\"Shield\",\"ShieldCheck\",\"ShieldCheckered\",\"ShieldChevron\",\"ShieldPlus\",\"ShieldSlash\",\"ShieldStar\",\"ShieldWarning\",\"ShippingContainer\",\"ShirtFolded\",\"ShootingStar\",\"ShoppingBag\",\"ShoppingBagOpen\",\"ShoppingCart\",\"ShoppingCartSimple\",\"Shovel\",\"Shower\",\"Shrimp\",\"Shuffle\",\"ShuffleAngular\",\"ShuffleSimple\",\"Sidebar\",\"SidebarSimple\",\"Sigma\",\"SignIn\",\"SignOut\",\"Signature\",\"Signpost\",\"SimCard\",\"Siren\",\"SketchLogo\",\"SkipBack\",\"SkipBackCircle\",\"SkipForward\",\"SkipForwardCircle\",\"Skull\",\"SkypeLogo\",\"SlackLogo\",\"Sliders\",\"SlidersHorizontal\",\"Slideshow\",\"Smiley\",\"SmileyAngry\",\"SmileyBlank\",\"SmileyMeh\",\"SmileyMelting\",\"SmileyNervous\",\"SmileySad\",\"SmileySticker\",\"SmileyWink\",\"SmileyXEyes\",\"SnapchatLogo\",\"Sneaker\",\"SneakerMove\",\"Snowflake\",\"SoccerBall\",\"Sock\",\"SolarPanel\",\"SolarRoof\",\"SortAscending\",\"SortDescending\",\"SoundcloudLogo\",\"Spade\",\"Sparkle\",\"SpeakerHifi\",\"SpeakerHigh\",\"SpeakerLow\",\"SpeakerNone\",\"SpeakerSimpleHigh\",\"SpeakerSimpleLow\",\"SpeakerSimpleNone\",\"SpeakerSimpleSlash\",\"SpeakerSimpleX\",\"SpeakerSlash\",\"SpeakerX\",\"Speedometer\",\"Sphere\",\"Spinner\",\"SpinnerBall\",\"SpinnerGap\",\"Spiral\",\"SplitHorizontal\",\"SplitVertical\",\"SpotifyLogo\",\"SprayBottle\",\"Square\",\"SquareHalf\",\"SquareHalfBottom\",\"SquareLogo\",\"SquareSplitVertical\",\"SquaresFour\",\"Stack\",\"StackMinus\",\"StackOverflowLogo\",\"StackPlus\",\"StackSimple\",\"Stairs\",\"Stamp\",\"StandardDefinition\",\"Star\",\"StarAndCrescent\",\"StarFour\",\"StarHalf\",\"StarOfDavid\",\"SteamLogo\",\"SteeringWheel\",\"Steps\",\"Stethoscope\",\"Sticker\",\"Stool\",\"Stop\",\"StopCircle\",\"Storefront\",\"Strategy\",\"StripeLogo\",\"Student\",\"SubsetOf\",\"SubsetProperOf\",\"Subtitles\",\"SubtitlesSlash\",\"Subtract\",\"SubtractSquare\",\"Subway\",\"Suitcase\",\"SuitcaseRolling\",\"SuitcaseSimple\",\"Sun\",\"SunDim\",\"SunHorizon\",\"Sunglasses\",\"SupersetOf\",\"SupersetProperOf\",\"Swap\",\"Swatches\",\"SwimmingPool\",\"Sword\",\"Synagogue\",\"Syringe\",\"TShirt\",\"Table\",\"Tabs\",\"Tag\",\"TagChevron\",\"TagSimple\",\"Target\",\"Taxi\",\"TeaBag\",\"TelegramLogo\",\"Television\",\"TelevisionSimple\",\"TennisBall\",\"Tent\",\"Terminal\",\"TerminalWindow\",\"TestTube\",\"TextAUnderline\",\"TextAa\",\"TextAlignCenter\",\"TextAlignJustify\",\"TextAlignLeft\",\"TextAlignRight\",\"TextB\",\"TextColumns\",\"TextH\",\"TextHFive\",\"TextHFour\",\"TextHOne\",\"TextHSix\",\"TextHThree\",\"TextHTwo\",\"TextIndent\",\"TextItalic\",\"TextOutdent\",\"TextStrikethrough\",\"TextSubscript\",\"TextSuperscript\",\"TextT\",\"TextTSlash\",\"TextUnderline\",\"Textbox\",\"Thermometer\",\"ThermometerCold\",\"ThermometerHot\",\"ThermometerSimple\",\"ThreadsLogo\",\"ThreeD\",\"ThumbsDown\",\"ThumbsUp\",\"Ticket\",\"TidalLogo\",\"TiktokLogo\",\"Tilde\",\"Timer\",\"TipJar\",\"Tipi\",\"Tire\",\"ToggleLeft\",\"ToggleRight\",\"Toilet\",\"ToiletPaper\",\"Toolbox\",\"Tooth\",\"Tornado\",\"Tote\",\"ToteSimple\",\"Towel\",\"Tractor\",\"Trademark\",\"TrademarkRegistered\",\"TrafficCone\",\"TrafficSign\",\"TrafficSignal\",\"Train\",\"TrainRegional\",\"TrainSimple\",\"Tram\",\"Translate\",\"Trash\",\"TrashSimple\",\"Tray\",\"TrayArrowDown\",\"TrayArrowUp\",\"TreasureChest\",\"Tree\",\"TreeEvergreen\",\"TreePalm\",\"TreeStructure\",\"TreeView\",\"TrendDown\",\"TrendUp\",\"Triangle\",\"TriangleDashed\",\"Trolley\",\"TrolleySuitcase\",\"Trophy\",\"Truck\",\"TruckTrailer\",\"TumblrLogo\",\"TwitchLogo\",\"TwitterLogo\",\"Umbrella\",\"UmbrellaSimple\",\"Union\",\"Unite\",\"UniteSquare\",\"Upload\",\"UploadSimple\",\"Usb\",\"User\",\"UserCheck\",\"UserCircle\",\"UserCircleCheck\",\"UserCircleDashed\",\"UserCircleGear\",\"UserCircleMinus\",\"UserCirclePlus\",\"UserFocus\",\"UserGear\",\"UserList\",\"UserMinus\",\"UserPlus\",\"UserRectangle\",\"UserSound\",\"UserSquare\",\"UserSwitch\",\"Users\",\"UsersFour\",\"UsersThree\",\"Van\",\"Vault\",\"VectorThree\",\"VectorTwo\",\"Vibrate\",\"Video\",\"VideoCamera\",\"VideoCameraSlash\",\"VideoConference\",\"Vignette\",\"VinylRecord\",\"VirtualReality\",\"Virus\",\"Visor\",\"Voicemail\",\"Volleyball\",\"Wall\",\"Wallet\",\"Warehouse\",\"Warning\",\"WarningCircle\",\"WarningDiamond\",\"WarningOctagon\",\"WashingMachine\",\"Watch\",\"WaveSawtooth\",\"WaveSine\",\"WaveSquare\",\"WaveTriangle\",\"Waveform\",\"WaveformSlash\",\"Waves\",\"Webcam\",\"WebcamSlash\",\"WebhooksLogo\",\"WechatLogo\",\"WhatsappLogo\",\"Wheelchair\",\"WheelchairMotion\",\"WifiHigh\",\"WifiLow\",\"WifiMedium\",\"WifiNone\",\"WifiSlash\",\"WifiX\",\"Wind\",\"Windmill\",\"WindowsLogo\",\"Wine\",\"Wrench\",\"X\",\"XCircle\",\"XLogo\",\"XSquare\",\"Yarn\",\"YinYang\",\"YoutubeLogo\"];const moduleBaseUrl=\"https://framer.com/m/phosphor-icons/\";const weightOptions=[\"thin\",\"light\",\"regular\",\"bold\",\"fill\",\"duotone\"];const lowercaseIconKeyPairs=iconKeys.reduce((res,key)=>{res[key.toLowerCase()]=key;return res;},{});/**\n * PHOSPHOR\n *\n * @framerSupportedLayoutWidth fixed\n * @framerSupportedLayoutHeight fixed\n *\n * @framerIntrinsicWidth 24\n * @framerIntrinsicHeight 24\n */export function Icon(props){const{color,selectByList,iconSearch,iconSelection,onClick,onMouseDown,onMouseUp,onMouseEnter,onMouseLeave,weight,mirrored}=props;const isMounted=useRef(false);const iconKey=useIconSelection(iconKeys,selectByList,iconSearch,iconSelection,lowercaseIconKeyPairs);const[SelectedIcon,setSelectedIcon]=useState(iconKey===\"Home\"?HouseFactory(React):null);async function importModule(){// Get the selected module\ntry{const version=\"0.0.57\";const iconModuleUrl=`${moduleBaseUrl}${iconKey}.js@${version}`;const module=await import(/* webpackIgnore: true */iconModuleUrl);if(isMounted.current)setSelectedIcon(module.default(React));}catch(err){if(isMounted.current)setSelectedIcon(null);}}useEffect(()=>{isMounted.current=true;importModule();return()=>{isMounted.current=false;};},[iconKey]);const isOnCanvas=RenderTarget.current()===RenderTarget.canvas;const emptyState=isOnCanvas?/*#__PURE__*/_jsx(NullState,{}):null;return /*#__PURE__*/_jsx(motion.div,{style:{display:\"contents\"},onClick,onMouseEnter,onMouseLeave,onMouseDown,onMouseUp,children:SelectedIcon?/*#__PURE__*/_jsx(\"svg\",{xmlns:\"http://www.w3.org/2000/svg\",viewBox:\"0 0 256 256\",style:{userSelect:\"none\",width:\"100%\",height:\"100%\",display:\"inline-block\",fill:color,color,flexShrink:0,transform:mirrored?\"scale(-1, 1)\":undefined},focusable:\"false\",color:color,children:/*#__PURE__*/_jsx(SelectedIcon,{color:color,weight:weight})}):emptyState});}Icon.displayName=\"Phosphor\";Icon.defaultProps={width:24,height:24,iconSelection:\"House\",iconSearch:\"House\",color:\"#66F\",selectByList:true,weight:\"regular\",mirrored:false};addPropertyControls(Icon,{selectByList:{type:ControlType.Boolean,title:\"Select\",enabledTitle:\"List\",disabledTitle:\"Search\",defaultValue:Icon.defaultProps.selectByList},iconSelection:{type:ControlType.Enum,options:iconKeys,defaultValue:Icon.defaultProps.iconSelection,title:\"Name\",hidden:({selectByList})=>!selectByList,description:\"Find every icon name on the [Phosphor site](https://phosphoricons.com/)\"},iconSearch:{type:ControlType.String,title:\"Name\",placeholder:\"Menu, Wifi, Box\u2026\",hidden:({selectByList})=>selectByList},color:{type:ControlType.Color,title:\"Color\",defaultValue:Icon.defaultProps.color},weight:{type:ControlType.Enum,title:\"Weight\",optionTitles:weightOptions.map(piece=>piece.charAt(0).toUpperCase()+piece.slice(1)),options:weightOptions,defaultValue:Icon.defaultProps.weight},mirrored:{type:ControlType.Boolean,enabledTitle:\"Yes\",disabledTitle:\"No\",defaultValue:Icon.defaultProps.mirrored},...defaultEvents});\nexport const __FramerMetadata__ = {\"exports\":{\"IconProps\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"Icon\":{\"type\":\"reactComponent\",\"name\":\"Icon\",\"slots\":[],\"annotations\":{\"framerIntrinsicWidth\":\"24\",\"framerSupportedLayoutWidth\":\"fixed\",\"framerContractVersion\":\"1\",\"framerSupportedLayoutHeight\":\"fixed\",\"framerIntrinsicHeight\":\"24\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Phosphor.map", "// Generated by Framer (322ed1a)\nimport{fontStore}from\"framer\";fontStore.loadFonts([\"CUSTOM;Degular Text Bold\"]);export const fonts=[{explicitInter:true,fonts:[{family:\"Degular Text Bold\",source:\"custom\",url:\"https://framerusercontent.com/assets/mFTxIQ7cRbDDHArSvCvVyEA7OlM.woff2\"}]}];export const css=['.framer-bxsbn .framer-styles-preset-w2finr:not(.rich-text-wrapper), .framer-bxsbn .framer-styles-preset-w2finr.rich-text-wrapper p { --framer-font-family: \"Degular Text Bold\", \"Degular Text Bold Placeholder\", sans-serif; --framer-font-open-type-features: normal; --framer-font-size: 22px; --framer-font-style: normal; --framer-font-weight: 400; --framer-letter-spacing: 0em; --framer-line-height: 29px; --framer-paragraph-spacing: 20px; --framer-text-alignment: start; --framer-text-color: var(--token-19182416-018f-4aaf-8caa-795abe04b4ff, #ffffff); --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; }','@media (max-width: 1699px) and (min-width: 810px) { .framer-bxsbn .framer-styles-preset-w2finr:not(.rich-text-wrapper), .framer-bxsbn .framer-styles-preset-w2finr.rich-text-wrapper p { --framer-font-family: \"Degular Text Bold\", \"Degular Text Bold Placeholder\", sans-serif; --framer-font-open-type-features: normal; --framer-font-size: 22px; --framer-font-style: normal; --framer-font-weight: 400; --framer-letter-spacing: 0em; --framer-line-height: 29px; --framer-paragraph-spacing: 20px; --framer-text-alignment: start; --framer-text-color: var(--token-19182416-018f-4aaf-8caa-795abe04b4ff, #ffffff); --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; } }','@media (max-width: 809px) and (min-width: 0px) { .framer-bxsbn .framer-styles-preset-w2finr:not(.rich-text-wrapper), .framer-bxsbn .framer-styles-preset-w2finr.rich-text-wrapper p { --framer-font-family: \"Degular Text Bold\", \"Degular Text Bold Placeholder\", sans-serif; --framer-font-open-type-features: normal; --framer-font-size: 18px; --framer-font-style: normal; --framer-font-weight: 400; --framer-letter-spacing: 0em; --framer-line-height: 25px; --framer-paragraph-spacing: 20px; --framer-text-alignment: start; --framer-text-color: var(--token-19182416-018f-4aaf-8caa-795abe04b4ff, #ffffff); --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; } }'];export const className=\"framer-bxsbn\";\nexport const __FramerMetadata__ = {\"exports\":{\"fonts\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"className\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"css\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (8c7926c)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,getFontsFromSharedStyle,Link,RichText,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{Icon as Phosphor}from\"https://framerusercontent.com/modules/tYScH7LTqUtz5KUaUAYP/p8dptk4UIND8hbFWz9V7/Phosphor.js\";import*as sharedStyle from\"https://framerusercontent.com/modules/qIggmiIQlgkOOxO2FZXf/E1odE2c2oTIcBdM408HN/t8McjhPdx.js\";const PhosphorFonts=getFonts(Phosphor);const enabledGestures={fdB6OMGxz:{hover:true},lbE2C1YKC:{hover:true}};const cycleOrder=[\"fdB6OMGxz\",\"lbE2C1YKC\"];const serializationHash=\"framer-JKr8n\";const variantClassNames={fdB6OMGxz:\"framer-v-p10mre\",lbE2C1YKC:\"framer-v-7ufcs6\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const transformTemplate1=(_,t)=>`translateY(-50%) ${t}`;const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={\"Banner Button\":\"fdB6OMGxz\",\"Banner Mobile Button\":\"lbE2C1YKC\"};const getProps=({height,id,link,width,...props})=>{var _humanReadableVariantMap_props_variant,_ref;return{...props,i9h0tMlqE:link!==null&&link!==void 0?link:props.i9h0tMlqE,variant:(_ref=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref!==void 0?_ref:\"fdB6OMGxz\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,i9h0tMlqE,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"fdB6OMGxz\",enabledGestures,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const ref1=React.useRef(null);const isDisplayed=()=>{if(gestureVariant===\"lbE2C1YKC-hover\")return false;if(baseVariant===\"lbE2C1YKC\")return false;return true;};const defaultLayoutId=React.useId();const sharedStyleClassNames=[sharedStyle.className];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(Link,{href:i9h0tMlqE,smoothScroll:true,...addPropertyOverrides({\"fdB6OMGxz-hover\":{smoothScroll:false}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.a,{...restProps,...gestureHandlers,className:`${cx(serializationHash,...sharedStyleClassNames,\"framer-p10mre\",className,classNames)} framer-1k1j32s`,\"data-border\":true,\"data-framer-name\":\"Banner Button\",layoutDependency:layoutDependency,layoutId:\"fdB6OMGxz\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"var(--token-d1f6ecfd-2abf-4418-8a05-8920186c6135, rgb(0, 97, 255))\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",backgroundColor:\"var(--token-d1f6ecfd-2abf-4418-8a05-8920186c6135, rgb(0, 97, 255))\",borderBottomLeftRadius:100,borderBottomRightRadius:100,borderTopLeftRadius:100,borderTopRightRadius:100,boxShadow:\"0px 14px 33px 0px rgba(0, 96, 255, 0.17)\",...style},variants:{\"fdB6OMGxz-hover\":{backgroundColor:\"rgba(0, 98, 255, 0)\"},\"lbE2C1YKC-hover\":{backgroundColor:\"rgba(0, 98, 255, 0)\"}},...addPropertyOverrides({\"fdB6OMGxz-hover\":{\"data-framer-name\":undefined},\"lbE2C1YKC-hover\":{\"data-framer-name\":undefined},lbE2C1YKC:{\"data-framer-name\":\"Banner Mobile Button\"}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-pz4zhx\",\"data-framer-name\":\"Top Text Wrap\",layoutDependency:layoutDependency,layoutId:\"pq3dw5ksU\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1akto6q\",\"data-framer-name\":\"Top Text White\",layoutDependency:layoutDependency,layoutId:\"lXgOsrk3k\",transformTemplate:transformTemplate1,...addPropertyOverrides({\"fdB6OMGxz-hover\":{transformTemplate:undefined},\"lbE2C1YKC-hover\":{transformTemplate:undefined},lbE2C1YKC:{transformTemplate:undefined}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-w2finr\",\"data-styles-preset\":\"t8McjhPdx\",children:\"Buy CreatorHQ Now\"})}),className:\"framer-xp9yw0\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"WmZAer5wf\",style:{\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},variants:{\"lbE2C1YKC-hover\":{\"--extracted-r6o4lv\":\"var(--token-d1f6ecfd-2abf-4418-8a05-8920186c6135, rgb(0, 97, 255))\"}},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({\"lbE2C1YKC-hover\":{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-w2finr\",\"data-styles-preset\":\"t8McjhPdx\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-d1f6ecfd-2abf-4418-8a05-8920186c6135, rgb(0, 97, 255)))\"},children:\"Buy CreatorHQ Now\"})})}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-dffj67-container\",layoutDependency:layoutDependency,layoutId:\"tbY1quXob-container\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"var(--token-19182416-018f-4aaf-8caa-795abe04b4ff, rgb(255, 255, 255))\",height:\"100%\",iconSearch:\"arrow right\",iconSelection:\"House\",id:\"tbY1quXob\",layoutId:\"tbY1quXob\",mirrored:false,selectByList:false,style:{height:\"100%\",width:\"100%\"},weight:\"regular\",width:\"100%\",...addPropertyOverrides({\"lbE2C1YKC-hover\":{color:\"var(--token-d1f6ecfd-2abf-4418-8a05-8920186c6135, rgb(0, 97, 255))\"}},baseVariant,gestureVariant)})})})]}),isDisplayed()&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-wf1mwd\",\"data-framer-name\":\"Bottom Text Blue\",layoutDependency:layoutDependency,layoutId:\"OsxdbkUTx\",...addPropertyOverrides({\"fdB6OMGxz-hover\":{transformTemplate:transformTemplate1}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-w2finr\",\"data-styles-preset\":\"t8McjhPdx\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-d1f6ecfd-2abf-4418-8a05-8920186c6135, rgb(0, 97, 255)))\"},children:\"Buy CreatorHQ Now\"})}),className:\"framer-1h802vo\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"p1JaVEUl_\",style:{\"--extracted-r6o4lv\":\"var(--token-d1f6ecfd-2abf-4418-8a05-8920186c6135, rgb(0, 97, 255))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-h9jdaj-container\",layoutDependency:layoutDependency,layoutId:\"giUULKnNt-container\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"var(--token-d1f6ecfd-2abf-4418-8a05-8920186c6135, rgb(0, 97, 255))\",height:\"100%\",iconSearch:\"arrow right\",iconSelection:\"House\",id:\"giUULKnNt\",layoutId:\"giUULKnNt\",mirrored:false,selectByList:false,style:{height:\"100%\",width:\"100%\"},weight:\"regular\",width:\"100%\"})})})]})]})})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-JKr8n.framer-1k1j32s, .framer-JKr8n .framer-1k1j32s { display: block; }\",\".framer-JKr8n.framer-p10mre { align-content: center; align-items: center; cursor: pointer; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 6px; height: min-content; justify-content: center; overflow: hidden; padding: 22px 65px 22px 65px; position: relative; text-decoration: none; width: 364px; will-change: var(--framer-will-change-override, transform); }\",\".framer-JKr8n .framer-pz4zhx { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; min-height: 29px; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-JKr8n .framer-1akto6q { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; left: 0px; overflow: visible; padding: 0px; position: absolute; right: 0px; top: 48%; z-index: 1; }\",\".framer-JKr8n .framer-xp9yw0, .framer-JKr8n .framer-1h802vo { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-JKr8n .framer-dffj67-container, .framer-JKr8n .framer-h9jdaj-container { flex: none; height: 24px; position: relative; width: 26px; }\",\".framer-JKr8n .framer-wf1mwd { align-content: center; align-items: center; bottom: -40px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; left: 0px; overflow: visible; padding: 0px; position: absolute; right: 0px; z-index: 1; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-JKr8n.framer-p10mre, .framer-JKr8n .framer-pz4zhx, .framer-JKr8n .framer-1akto6q, .framer-JKr8n .framer-wf1mwd { gap: 0px; } .framer-JKr8n.framer-p10mre > * { margin: 0px; margin-left: calc(6px / 2); margin-right: calc(6px / 2); } .framer-JKr8n.framer-p10mre > :first-child, .framer-JKr8n .framer-1akto6q > :first-child, .framer-JKr8n .framer-wf1mwd > :first-child { margin-left: 0px; } .framer-JKr8n.framer-p10mre > :last-child, .framer-JKr8n .framer-1akto6q > :last-child, .framer-JKr8n .framer-wf1mwd > :last-child { margin-right: 0px; } .framer-JKr8n .framer-pz4zhx > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-JKr8n .framer-pz4zhx > :first-child { margin-top: 0px; } .framer-JKr8n .framer-pz4zhx > :last-child { margin-bottom: 0px; } .framer-JKr8n .framer-1akto6q > *, .framer-JKr8n .framer-wf1mwd > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } }\",\".framer-JKr8n.framer-v-7ufcs6.framer-p10mre { padding: 20px 30px 20px 30px; width: min-content; }\",\".framer-JKr8n.framer-v-7ufcs6 .framer-pz4zhx { flex: none; min-height: unset; width: min-content; }\",\".framer-JKr8n.framer-v-7ufcs6 .framer-1akto6q { left: unset; position: relative; right: unset; top: unset; width: min-content; }\",\".framer-JKr8n.framer-v-p10mre.hover .framer-1akto6q { top: -60px; }\",\".framer-JKr8n.framer-v-p10mre.hover .framer-wf1mwd { bottom: unset; top: 48%; }\",\".framer-JKr8n.framer-v-7ufcs6.hover .framer-pz4zhx { min-height: unset; }\",\".framer-JKr8n.framer-v-7ufcs6.hover .framer-1akto6q { left: unset; right: unset; top: unset; }\",...sharedStyle.css,'.framer-JKr8n[data-border=\"true\"]::after, .framer-JKr8n [data-border=\"true\"]::after { content: \"\"; border-width: var(--border-top-width, 0) var(--border-right-width, 0) var(--border-bottom-width, 0) var(--border-left-width, 0); border-color: var(--border-color, none); border-style: var(--border-style, none); width: 100%; height: 100%; position: absolute; box-sizing: border-box; left: 0; top: 0; border-radius: inherit; pointer-events: none; }'];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 73\n * @framerIntrinsicWidth 364\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"lbE2C1YKC\":{\"layout\":[\"auto\",\"auto\"]},\"smwfovywo\":{\"layout\":[\"fixed\",\"auto\"]},\"nkNgZkBYj\":{\"layout\":[\"auto\",\"auto\"]}}}\n * @framerVariables {\"i9h0tMlqE\":\"link\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerILlMbfB4O=withCSS(Component,css,\"framer-JKr8n\");export default FramerILlMbfB4O;FramerILlMbfB4O.displayName=\"Banner Button\";FramerILlMbfB4O.defaultProps={height:73,width:364};addPropertyControls(FramerILlMbfB4O,{variant:{options:[\"fdB6OMGxz\",\"lbE2C1YKC\"],optionTitles:[\"Banner Button\",\"Banner Mobile Button\"],title:\"Variant\",type:ControlType.Enum},i9h0tMlqE:{title:\"Link\",type:ControlType.Link}});addFonts(FramerILlMbfB4O,[{explicitInter:true,fonts:[{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/5vvr9Vy74if2I6bQbJvbw7SY1pQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/EOr0mi4hNtlgWNn9if640EZzXCo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Y9k9QrlZAqio88Klkmbd8VoMQc.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/OYrD2tBIBPvoJXiIHnLoOXnY9M.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/JeYwfuaPfZHQhEG8U5gtPDZ7WQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/vQyevYAyHtARFwPqUzQGpnDs.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/b6Y37FthZeALduNqHicBT6FutY.woff2\",weight:\"400\"}]},...PhosphorFonts,...getFontsFromSharedStyle(sharedStyle.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerILlMbfB4O\",\"slots\":[],\"annotations\":{\"framerDisplayContentsDiv\":\"false\",\"framerIntrinsicHeight\":\"73\",\"framerIntrinsicWidth\":\"364\",\"framerComponentViewportWidth\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"lbE2C1YKC\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"smwfovywo\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"nkNgZkBYj\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]}}}\",\"framerVariables\":\"{\\\"i9h0tMlqE\\\":\\\"link\\\"}\",\"framerContractVersion\":\"1\",\"framerImmutableVariables\":\"true\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./ILlMbfB4O.map", "// Generated by Framer (64bc75b)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,getLoadingLazyAtYPosition,Image,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{Youtube as YouTube}from\"https://framerusercontent.com/modules/NEd4VmDdsxM3StIUbddO/1de6WpgIbCrKkRcPfQcW/YouTube.js\";const YouTubeFonts=getFonts(YouTube);const cycleOrder=[\"OWkAHdXOP\",\"N4x4WkVCg\",\"Bz5zv1XpC\",\"n7EKciBQr\",\"LjvYa0tNh\",\"v_yXbSR4V\",\"cLJVdwq5J\",\"Plvu5JPyG\",\"YxqKOIFto\"];const serializationHash=\"framer-wsVsp\";const variantClassNames={Bz5zv1XpC:\"framer-v-1izdhfa\",cLJVdwq5J:\"framer-v-1p81mf4\",LjvYa0tNh:\"framer-v-1beux04\",N4x4WkVCg:\"framer-v-hl0wqo\",n7EKciBQr:\"framer-v-19t14si\",OWkAHdXOP:\"framer-v-1b0igk\",Plvu5JPyG:\"framer-v-5kf3mn\",v_yXbSR4V:\"framer-v-ttyaiw\",YxqKOIFto:\"framer-v-1s9qr6s\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={duration:0,type:\"tween\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={\"Banner Cover Image Default\":\"Bz5zv1XpC\",\"Banner Cover Image\":\"OWkAHdXOP\",\"Banner Video\":\"N4x4WkVCg\",\"Mobile \":\"YxqKOIFto\",\"Mobile Cover Image\":\"cLJVdwq5J\",\"Mobile Video\":\"Plvu5JPyG\",\"Tablet Cover Image Defualt\":\"v_yXbSR4V\",\"Tablet Cover Image\":\"n7EKciBQr\",\"Tablet Video\":\"LjvYa0tNh\"};const getProps=({height,id,width,...props})=>{var _humanReadableVariantMap_props_variant,_ref;return{...props,variant:(_ref=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref!==void 0?_ref:\"OWkAHdXOP\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"OWkAHdXOP\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onTaph1bqot=activeVariantCallback(async(...args)=>{setGestureState({isPressed:false});setVariant(\"N4x4WkVCg\");});const onTapt2d18k=activeVariantCallback(async(...args)=>{setGestureState({isPressed:false});setVariant(\"OWkAHdXOP\");});const onTap1m3i9n5=activeVariantCallback(async(...args)=>{setGestureState({isPressed:false});setVariant(\"LjvYa0tNh\");});const onTaprutlse=activeVariantCallback(async(...args)=>{setGestureState({isPressed:false});setVariant(\"Plvu5JPyG\");});const ref1=React.useRef(null);const isDisplayed=()=>{if([\"N4x4WkVCg\",\"LjvYa0tNh\",\"Plvu5JPyG\"].includes(baseVariant))return true;return false;};const isDisplayed1=()=>{if([\"N4x4WkVCg\",\"LjvYa0tNh\",\"Plvu5JPyG\"].includes(baseVariant))return false;return true;};const defaultLayoutId=React.useId();const sharedStyleClassNames=[];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(motion.div,{...restProps,...gestureHandlers,className:cx(serializationHash,...sharedStyleClassNames,\"framer-1b0igk\",className,classNames),\"data-framer-name\":\"Banner Cover Image\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"OWkAHdXOP\",onTap:onTaph1bqot,ref:ref!==null&&ref!==void 0?ref:ref1,style:{...style},...addPropertyOverrides({Bz5zv1XpC:{\"data-framer-name\":\"Banner Cover Image Default\",onTap:onTapt2d18k},cLJVdwq5J:{\"data-framer-name\":\"Mobile Cover Image\",onTap:onTaprutlse},LjvYa0tNh:{\"data-framer-name\":\"Tablet Video\",onTap:onTap1m3i9n5},N4x4WkVCg:{\"data-framer-name\":\"Banner Video\"},n7EKciBQr:{\"data-framer-name\":\"Tablet Cover Image\",onTap:onTap1m3i9n5},Plvu5JPyG:{\"data-framer-name\":\"Mobile Video\",onTap:onTaprutlse},v_yXbSR4V:{\"data-framer-name\":\"Tablet Cover Image Defualt\",onTap:onTap1m3i9n5},YxqKOIFto:{\"data-framer-name\":\"Mobile \",onTap:onTaprutlse}},baseVariant,gestureVariant),children:[isDisplayed()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1t3re7z-container\",layoutDependency:layoutDependency,layoutId:\"AR1aSN7s3-container\",children:/*#__PURE__*/_jsx(YouTube,{borderRadius:20,bottomLeftRadius:20,bottomRightRadius:20,height:\"100%\",id:\"AR1aSN7s3\",isMixedBorderRadius:false,isRed:false,layoutId:\"AR1aSN7s3\",play:\"Loop\",shouldMute:false,style:{height:\"100%\",width:\"100%\"},thumbnail:\"High Quality\",topLeftRadius:20,topRightRadius:20,url:\"https://youtu.be/9LlGQVmAlmU\",width:\"100%\",...addPropertyOverrides({LjvYa0tNh:{onClick:undefined,onMouseLeave:undefined},N4x4WkVCg:{onClick:undefined,onMouseLeave:undefined},Plvu5JPyG:{borderRadius:10,bottomLeftRadius:10,bottomRightRadius:10,onClick:undefined,onMouseLeave:undefined,topLeftRadius:10,topRightRadius:10}},baseVariant,gestureVariant)})})}),isDisplayed1()&&/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:906,intrinsicWidth:1575,loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+(0+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||526)-0-(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||526)-0)*1)/2)),pixelHeight:1052,pixelWidth:1872,sizes:(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\",src:\"https://framerusercontent.com/images/olZEt2deWmtLdNjDtih8bdGHtk.png\",srcSet:\"https://framerusercontent.com/images/olZEt2deWmtLdNjDtih8bdGHtk.png?scale-down-to=512 512w,https://framerusercontent.com/images/olZEt2deWmtLdNjDtih8bdGHtk.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/olZEt2deWmtLdNjDtih8bdGHtk.png 1872w\"},className:\"framer-xqk70d\",\"data-framer-name\":\"Video_cover\",layoutDependency:layoutDependency,layoutId:\"ofO_pfLGs\",...addPropertyOverrides({Bz5zv1XpC:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:906,intrinsicWidth:1575,loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||526)-0-((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||526)-0)*1+0))/2+0+0)),pixelHeight:1052,pixelWidth:1872,sizes:(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\",src:\"https://framerusercontent.com/images/olZEt2deWmtLdNjDtih8bdGHtk.png\",srcSet:\"https://framerusercontent.com/images/olZEt2deWmtLdNjDtih8bdGHtk.png?scale-down-to=512 512w,https://framerusercontent.com/images/olZEt2deWmtLdNjDtih8bdGHtk.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/olZEt2deWmtLdNjDtih8bdGHtk.png 1872w\"}},cLJVdwq5J:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:906,intrinsicWidth:1575,loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+(0+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||170)-0-(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||170)-0)*1)/2)),pixelHeight:170,pixelWidth:300,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/YaQPXZKCFBAPfQOippZXlk047jQ.jpg\"}},n7EKciBQr:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:906,intrinsicWidth:1575,loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+(0+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||340)-0-(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||340)-0)*1)/2)),pixelHeight:1052,pixelWidth:1872,positionX:\"center\",positionY:\"center\",sizes:(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\",src:\"https://framerusercontent.com/images/olZEt2deWmtLdNjDtih8bdGHtk.png\",srcSet:\"https://framerusercontent.com/images/olZEt2deWmtLdNjDtih8bdGHtk.png?scale-down-to=512 512w,https://framerusercontent.com/images/olZEt2deWmtLdNjDtih8bdGHtk.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/olZEt2deWmtLdNjDtih8bdGHtk.png 1872w\"}},v_yXbSR4V:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:906,intrinsicWidth:1575,loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||340)-0-((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||340)-0)*1+0))/2+0+0)),pixelHeight:1052,pixelWidth:1872,positionX:\"center\",positionY:\"center\",sizes:(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\",src:\"https://framerusercontent.com/images/olZEt2deWmtLdNjDtih8bdGHtk.png\",srcSet:\"https://framerusercontent.com/images/olZEt2deWmtLdNjDtih8bdGHtk.png?scale-down-to=512 512w,https://framerusercontent.com/images/olZEt2deWmtLdNjDtih8bdGHtk.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/olZEt2deWmtLdNjDtih8bdGHtk.png 1872w\"}},YxqKOIFto:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:906,intrinsicWidth:1575,loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||170)-0-((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||170)-0)*1+0))/2+0+0)),pixelHeight:170,pixelWidth:300,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/YaQPXZKCFBAPfQOippZXlk047jQ.jpg\"}}},baseVariant,gestureVariant)})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-wsVsp.framer-bkhs6a, .framer-wsVsp .framer-bkhs6a { display: block; }\",\".framer-wsVsp.framer-1b0igk { align-content: center; align-items: center; cursor: pointer; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 526px; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 936px; }\",\".framer-wsVsp .framer-1t3re7z-container { flex: 1 0 0px; height: 100%; position: relative; width: 1px; }\",\".framer-wsVsp .framer-xqk70d { flex: none; height: 100%; overflow: visible; position: relative; width: 100%; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-wsVsp.framer-1b0igk { gap: 0px; } .framer-wsVsp.framer-1b0igk > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-wsVsp.framer-1b0igk > :first-child { margin-left: 0px; } .framer-wsVsp.framer-1b0igk > :last-child { margin-right: 0px; } }\",\".framer-wsVsp.framer-v-hl0wqo .framer-1t3re7z-container, .framer-wsVsp.framer-v-1beux04 .framer-1t3re7z-container, .framer-wsVsp.framer-v-5kf3mn .framer-1t3re7z-container { order: 0; }\",\".framer-wsVsp.framer-v-1izdhfa.framer-1b0igk { flex-direction: column; }\",\".framer-wsVsp.framer-v-1izdhfa .framer-xqk70d, .framer-wsVsp.framer-v-ttyaiw .framer-xqk70d, .framer-wsVsp.framer-v-1s9qr6s .framer-xqk70d { order: 1; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-wsVsp.framer-v-1izdhfa.framer-1b0igk { gap: 0px; } .framer-wsVsp.framer-v-1izdhfa.framer-1b0igk > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-wsVsp.framer-v-1izdhfa.framer-1b0igk > :first-child { margin-top: 0px; } .framer-wsVsp.framer-v-1izdhfa.framer-1b0igk > :last-child { margin-bottom: 0px; } }\",\".framer-wsVsp.framer-v-19t14si.framer-1b0igk, .framer-wsVsp.framer-v-1beux04.framer-1b0igk { height: 340px; width: 600px; }\",\".framer-wsVsp.framer-v-ttyaiw.framer-1b0igk { flex-direction: column; height: 340px; width: 600px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-wsVsp.framer-v-ttyaiw.framer-1b0igk { gap: 0px; } .framer-wsVsp.framer-v-ttyaiw.framer-1b0igk > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-wsVsp.framer-v-ttyaiw.framer-1b0igk > :first-child { margin-top: 0px; } .framer-wsVsp.framer-v-ttyaiw.framer-1b0igk > :last-child { margin-bottom: 0px; } }\",\".framer-wsVsp.framer-v-1p81mf4.framer-1b0igk, .framer-wsVsp.framer-v-5kf3mn.framer-1b0igk { height: 170px; width: 300px; }\",\".framer-wsVsp.framer-v-1p81mf4 .framer-xqk70d { width: 390px; }\",\".framer-wsVsp.framer-v-1s9qr6s.framer-1b0igk { flex-direction: column; height: 170px; width: 300px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-wsVsp.framer-v-1s9qr6s.framer-1b0igk { gap: 0px; } .framer-wsVsp.framer-v-1s9qr6s.framer-1b0igk > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-wsVsp.framer-v-1s9qr6s.framer-1b0igk > :first-child { margin-top: 0px; } .framer-wsVsp.framer-v-1s9qr6s.framer-1b0igk > :last-child { margin-bottom: 0px; } }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 526\n * @framerIntrinsicWidth 936\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]},\"N4x4WkVCg\":{\"layout\":[\"fixed\",\"fixed\"]},\"Bz5zv1XpC\":{\"layout\":[\"fixed\",\"fixed\"]},\"n7EKciBQr\":{\"layout\":[\"fixed\",\"fixed\"]},\"LjvYa0tNh\":{\"layout\":[\"fixed\",\"fixed\"]},\"v_yXbSR4V\":{\"layout\":[\"fixed\",\"fixed\"]},\"cLJVdwq5J\":{\"layout\":[\"fixed\",\"fixed\"]},\"Plvu5JPyG\":{\"layout\":[\"fixed\",\"fixed\"]},\"YxqKOIFto\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerhVbytqJMx=withCSS(Component,css,\"framer-wsVsp\");export default FramerhVbytqJMx;FramerhVbytqJMx.displayName=\"Video Component 2\";FramerhVbytqJMx.defaultProps={height:526,width:936};addPropertyControls(FramerhVbytqJMx,{variant:{options:[\"OWkAHdXOP\",\"N4x4WkVCg\",\"Bz5zv1XpC\",\"n7EKciBQr\",\"LjvYa0tNh\",\"v_yXbSR4V\",\"cLJVdwq5J\",\"Plvu5JPyG\",\"YxqKOIFto\"],optionTitles:[\"Banner Cover Image\",\"Banner Video\",\"Banner Cover Image Default\",\"Tablet Cover Image\",\"Tablet Video\",\"Tablet Cover Image Defualt\",\"Mobile Cover Image\",\"Mobile Video\",\"Mobile \"],title:\"Variant\",type:ControlType.Enum}});addFonts(FramerhVbytqJMx,[{explicitInter:true,fonts:[]},...YouTubeFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerhVbytqJMx\",\"slots\":[],\"annotations\":{\"framerImmutableVariables\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerIntrinsicHeight\":\"526\",\"framerIntrinsicWidth\":\"936\",\"framerComponentViewportWidth\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"N4x4WkVCg\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"Bz5zv1XpC\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"n7EKciBQr\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"LjvYa0tNh\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"v_yXbSR4V\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"cLJVdwq5J\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"Plvu5JPyG\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"YxqKOIFto\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./hVbytqJMx.map", "// Generated by Framer (64bc75b)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,CycleVariantState,getFonts,getLoadingLazyAtYPosition,Image,RichText,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import VideoComponent2 from\"https://framerusercontent.com/modules/PA96NfPzqF9JZJu9G8Nz/CXXX1raE0Wy21cYqBvDy/hVbytqJMx.js\";const VideoComponent2Fonts=getFonts(VideoComponent2);const cycleOrder=[\"V6ihMEqzj\",\"vGdQKWH8Y\",\"YsGAEKWC3\",\"lL2BYkp7T\",\"bUlMzpvEb\",\"f6yeqNrif\"];const serializationHash=\"framer-Ek4Ce\";const variantClassNames={bUlMzpvEb:\"framer-v-rudgri\",f6yeqNrif:\"framer-v-10uq3sp\",lL2BYkp7T:\"framer-v-6tlowq\",V6ihMEqzj:\"framer-v-cab7wa\",vGdQKWH8Y:\"framer-v-1pgndri\",YsGAEKWC3:\"framer-v-55jfp8\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={bounce:.2,delay:0,duration:.4,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={\"Desktop Cover\":\"V6ihMEqzj\",\"Desktop Play\":\"vGdQKWH8Y\",\"Mobile Cover\":\"bUlMzpvEb\",\"Mobile Play\":\"f6yeqNrif\",\"Tablet Cover\":\"YsGAEKWC3\",\"Tablet Play\":\"lL2BYkp7T\"};const getProps=({click,height,id,width,...props})=>{var _humanReadableVariantMap_props_variant,_ref;return{...props,gsI_KvgAm:click!==null&&click!==void 0?click:props.gsI_KvgAm,variant:(_ref=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref!==void 0?_ref:\"V6ihMEqzj\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,gsI_KvgAm,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"V6ihMEqzj\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onTapvo1v91=activeVariantCallback(async(...args)=>{if(gsI_KvgAm){const res=await gsI_KvgAm(...args);if(res===false)return false;}setVariant(CycleVariantState);});const onTap1njm6oe=activeVariantCallback(async(...args)=>{if(gsI_KvgAm){const res=await gsI_KvgAm(...args);if(res===false)return false;}setVariant(\"V6ihMEqzj\");});const onTap14bk59a=activeVariantCallback(async(...args)=>{if(gsI_KvgAm){const res=await gsI_KvgAm(...args);if(res===false)return false;}setVariant(\"YsGAEKWC3\");});const onTapbv5rcq=activeVariantCallback(async(...args)=>{if(gsI_KvgAm){const res=await gsI_KvgAm(...args);if(res===false)return false;}setVariant(\"f6yeqNrif\");});const ref1=React.useRef(null);const defaultLayoutId=React.useId();const sharedStyleClassNames=[];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(motion.div,{...restProps,...gestureHandlers,className:cx(serializationHash,...sharedStyleClassNames,\"framer-cab7wa\",className,classNames),\"data-framer-name\":\"Desktop Cover\",layoutDependency:layoutDependency,layoutId:\"V6ihMEqzj\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{...style},...addPropertyOverrides({bUlMzpvEb:{\"data-framer-name\":\"Mobile Cover\"},f6yeqNrif:{\"data-framer-name\":\"Mobile Play\"},lL2BYkp7T:{\"data-framer-name\":\"Tablet Play\"},vGdQKWH8Y:{\"data-framer-name\":\"Desktop Play\"},YsGAEKWC3:{\"data-framer-name\":\"Tablet Cover\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:526,width:(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\",y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||662)-0-708)/2+0+0),...addPropertyOverrides({bUlMzpvEb:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||325)-0-680.5)/2+0+0)},f6yeqNrif:{height:320,y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||325)-0-474.5)/2+0+0)},lL2BYkp7T:{height:340,y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||476)-0-522)/2+0+0)},YsGAEKWC3:{height:339,y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||475)-0-521)/2+0+0)}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1gxswb-container\",\"data-framer-name\":\"Video\",layoutDependency:layoutDependency,layoutId:\"zO7v9VoBm-container\",name:\"Video\",children:/*#__PURE__*/_jsx(VideoComponent2,{height:\"100%\",id:\"zO7v9VoBm\",layoutId:\"zO7v9VoBm\",name:\"Video\",style:{height:\"100%\",width:\"100%\"},variant:\"OWkAHdXOP\",width:\"100%\",...addPropertyOverrides({bUlMzpvEb:{style:{width:\"100%\"},variant:\"cLJVdwq5J\"},f6yeqNrif:{style:{maxHeight:\"100%\",width:\"100%\"},variant:\"cLJVdwq5J\"},lL2BYkp7T:{variant:\"Bz5zv1XpC\"},vGdQKWH8Y:{variant:\"Bz5zv1XpC\"},YsGAEKWC3:{variant:\"n7EKciBQr\"}},baseVariant,gestureVariant)})})}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1f7fot7\",\"data-framer-name\":\"Image Caption\",layoutDependency:layoutDependency,layoutId:\"qPQeT5vDL\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1nx29it\",\"data-framer-name\":\"Image Text\",layoutDependency:layoutDependency,layoutId:\"Eo_zFThcx\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO0RlZ3VsYXIgVGV4dCBSZWd1bGFy\",\"--framer-font-family\":'\"Degular Text Regular\", \"Degular Text Regular Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"23px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-406ee2a1-9c29-42c5-961e-cfe02a30aaf7, rgb(18, 18, 18)))\"},children:\"CreatorHQ is the system we wish we had when we started. We\u2019ve spent nearly three years building, using, and adapting this system for our own use at Creator Science \u2013 and you can have it right out of the box.\"})}),className:\"framer-rpphtf\",fonts:[\"CUSTOM;Degular Text Regular\"],layoutDependency:layoutDependency,layoutId:\"Nhek2pWkm\",style:{\"--extracted-r6o4lv\":\"var(--token-406ee2a1-9c29-42c5-961e-cfe02a30aaf7, rgb(18, 18, 18))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({bUlMzpvEb:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO0RlZ3VsYXIgVGV4dCBSZWd1bGFy\",\"--framer-font-family\":'\"Degular Text Regular\", \"Degular Text Regular Placeholder\", sans-serif',\"--framer-font-size\":\"15px\",\"--framer-line-height\":\"110%\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-406ee2a1-9c29-42c5-961e-cfe02a30aaf7, rgb(18, 18, 18)))\"},children:\"CreatorHQ is the system we wish we had when we started. We\u2019ve spent nearly three years building, using, and adapting this system for our own use at Creator Science \u2013 and you can have it right out of the box.\"})})},f6yeqNrif:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO0RlZ3VsYXIgVGV4dCBSZWd1bGFy\",\"--framer-font-family\":'\"Degular Text Regular\", \"Degular Text Regular Placeholder\", sans-serif',\"--framer-font-size\":\"15px\",\"--framer-line-height\":\"110%\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-406ee2a1-9c29-42c5-961e-cfe02a30aaf7, rgb(18, 18, 18)))\"},children:\"CreatorHQ is the system we wish we had when we started. We\u2019ve spent nearly three years building, using, and adapting this system for our own use at Creator Science \u2013 and you can have it right out of the box.\"})})}},baseVariant,gestureVariant)})}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-zva6nf\",\"data-framer-name\":\"Image Text\",layoutDependency:layoutDependency,layoutId:\"lG_cF70A8\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-qkdsdo\",\"data-framer-name\":\"Text Wrap\",layoutDependency:layoutDependency,layoutId:\"g2apRbjOx\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO0RlZ3VsYXIgVGV4dCBSZWd1bGFy\",\"--framer-font-family\":'\"Degular Text Regular\", \"Degular Text Regular Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"23px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-406ee2a1-9c29-42c5-961e-cfe02a30aaf7, rgb(18, 18, 18)))\"},children:\"Want to see all the details?\"})}),className:\"framer-2c3qnl\",fonts:[\"CUSTOM;Degular Text Regular\"],layoutDependency:layoutDependency,layoutId:\"c2sLFWY2R\",style:{\"--extracted-r6o4lv\":\"var(--token-406ee2a1-9c29-42c5-961e-cfe02a30aaf7, rgb(18, 18, 18))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({bUlMzpvEb:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO0RlZ3VsYXIgVGV4dCBSZWd1bGFy\",\"--framer-font-family\":'\"Degular Text Regular\", \"Degular Text Regular Placeholder\", sans-serif',\"--framer-font-size\":\"15px\",\"--framer-line-height\":\"18px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-406ee2a1-9c29-42c5-961e-cfe02a30aaf7, rgb(18, 18, 18)))\"},children:\"Want to see all the details?\"})})},f6yeqNrif:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO0RlZ3VsYXIgVGV4dCBSZWd1bGFy\",\"--framer-font-family\":'\"Degular Text Regular\", \"Degular Text Regular Placeholder\", sans-serif',\"--framer-font-size\":\"15px\",\"--framer-line-height\":\"18px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-406ee2a1-9c29-42c5-961e-cfe02a30aaf7, rgb(18, 18, 18)))\"},children:\"Want to see all the details?\"})})}},baseVariant,gestureVariant)})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-blhon\",\"data-framer-name\":\"Text Wrap\",layoutDependency:layoutDependency,layoutId:\"ONxiDG45W\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||662)-0-708)/2+526+0)+0+135+12+-.5),pixelHeight:46,pixelWidth:489,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/YcQ7O8niMwYn6weMjn0YzqLQ444.png\"},className:\"framer-1xzaxx3\",\"data-framer-name\":\"Text Wrap\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"fvUl1MwM7\",onTap:onTapvo1v91,...addPropertyOverrides({bUlMzpvEb:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||325)-0-680.5)/2+526+0)+0+102.5+3+23+.9754098360655732),pixelHeight:46,pixelWidth:489,src:\"https://framerusercontent.com/images/YcQ7O8niMwYn6weMjn0YzqLQ444.png\"}},f6yeqNrif:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||325)-0-474.5)/2+320+0)+0+102.5+3+23+-.5),pixelHeight:46,pixelWidth:489,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/YcQ7O8niMwYn6weMjn0YzqLQ444.png\"},onTap:onTapbv5rcq},lL2BYkp7T:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||476)-0-522)/2+340+0)+0+135+12+-.5),pixelHeight:46,pixelWidth:489,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/YcQ7O8niMwYn6weMjn0YzqLQ444.png\"},onTap:onTap14bk59a},vGdQKWH8Y:{onTap:onTap1njm6oe},YsGAEKWC3:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||475)-0-521)/2+339+0)+0+135+12+-.5),pixelHeight:46,pixelWidth:489,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/YcQ7O8niMwYn6weMjn0YzqLQ444.png\"}}},baseVariant,gestureVariant)})})]})]})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-Ek4Ce.framer-18takbm, .framer-Ek4Ce .framer-18takbm { display: block; }\",\".framer-Ek4Ce.framer-cab7wa { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 936px; }\",\".framer-Ek4Ce .framer-1gxswb-container { flex: none; height: 526px; position: relative; width: 100%; }\",\".framer-Ek4Ce .framer-1f7fot7 { 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-Ek4Ce .framer-1nx29it { 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: 790px; overflow: hidden; padding: 20px 0px 0px 0px; position: relative; width: 100%; }\",\".framer-Ek4Ce .framer-rpphtf { flex: 1 0 0px; height: auto; position: relative; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; }\",\".framer-Ek4Ce .framer-zva6nf { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 15px; height: min-content; justify-content: center; max-width: 890px; overflow: hidden; padding: 12px 0px 12px 0px; position: relative; width: 100%; }\",\".framer-Ek4Ce .framer-qkdsdo { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-Ek4Ce .framer-2c3qnl { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-Ek4Ce .framer-blhon { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 23px; justify-content: center; max-width: 244px; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-Ek4Ce .framer-1xzaxx3 { align-content: center; align-items: center; cursor: pointer; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 8px; height: 24px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-Ek4Ce.framer-cab7wa, .framer-Ek4Ce .framer-1f7fot7, .framer-Ek4Ce .framer-1nx29it, .framer-Ek4Ce .framer-zva6nf, .framer-Ek4Ce .framer-qkdsdo, .framer-Ek4Ce .framer-blhon, .framer-Ek4Ce .framer-1xzaxx3 { gap: 0px; } .framer-Ek4Ce.framer-cab7wa > *, .framer-Ek4Ce .framer-1f7fot7 > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-Ek4Ce.framer-cab7wa > :first-child, .framer-Ek4Ce .framer-1f7fot7 > :first-child { margin-top: 0px; } .framer-Ek4Ce.framer-cab7wa > :last-child, .framer-Ek4Ce .framer-1f7fot7 > :last-child { margin-bottom: 0px; } .framer-Ek4Ce .framer-1nx29it > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } .framer-Ek4Ce .framer-1nx29it > :first-child, .framer-Ek4Ce .framer-zva6nf > :first-child, .framer-Ek4Ce .framer-qkdsdo > :first-child, .framer-Ek4Ce .framer-blhon > :first-child, .framer-Ek4Ce .framer-1xzaxx3 > :first-child { margin-left: 0px; } .framer-Ek4Ce .framer-1nx29it > :last-child, .framer-Ek4Ce .framer-zva6nf > :last-child, .framer-Ek4Ce .framer-qkdsdo > :last-child, .framer-Ek4Ce .framer-blhon > :last-child, .framer-Ek4Ce .framer-1xzaxx3 > :last-child { margin-right: 0px; } .framer-Ek4Ce .framer-zva6nf > * { margin: 0px; margin-left: calc(15px / 2); margin-right: calc(15px / 2); } .framer-Ek4Ce .framer-qkdsdo > *, .framer-Ek4Ce .framer-blhon > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-Ek4Ce .framer-1xzaxx3 > * { margin: 0px; margin-left: calc(8px / 2); margin-right: calc(8px / 2); } }\",\".framer-Ek4Ce.framer-v-55jfp8.framer-cab7wa, .framer-Ek4Ce.framer-v-6tlowq.framer-cab7wa { max-width: 600px; width: 600px; }\",\".framer-Ek4Ce.framer-v-55jfp8 .framer-1gxswb-container { height: 339px; }\",\".framer-Ek4Ce.framer-v-6tlowq .framer-1gxswb-container { height: 340px; }\",\".framer-Ek4Ce.framer-v-rudgri.framer-cab7wa { max-width: 300px; width: 300px; }\",\".framer-Ek4Ce.framer-v-rudgri .framer-1gxswb-container { height: auto; }\",\".framer-Ek4Ce.framer-v-rudgri .framer-zva6nf, .framer-Ek4Ce.framer-v-10uq3sp .framer-zva6nf { flex-direction: column; gap: 5px; padding: 3px 0px 3px 0px; }\",\".framer-Ek4Ce.framer-v-rudgri .framer-blhon { flex: none; max-width: 223px; width: 100%; }\",\".framer-Ek4Ce.framer-v-rudgri .framer-1xzaxx3 { flex: none; height: 21px; width: 223px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-Ek4Ce.framer-v-rudgri .framer-zva6nf { gap: 0px; } .framer-Ek4Ce.framer-v-rudgri .framer-zva6nf > * { margin: 0px; margin-bottom: calc(5px / 2); margin-top: calc(5px / 2); } .framer-Ek4Ce.framer-v-rudgri .framer-zva6nf > :first-child { margin-top: 0px; } .framer-Ek4Ce.framer-v-rudgri .framer-zva6nf > :last-child { margin-bottom: 0px; } }\",\".framer-Ek4Ce.framer-v-10uq3sp.framer-cab7wa { max-height: 330px; max-width: 300px; width: 300px; }\",\".framer-Ek4Ce.framer-v-10uq3sp .framer-1gxswb-container { height: auto; max-height: 320px; }\",\".framer-Ek4Ce.framer-v-10uq3sp .framer-blhon { flex: none; width: 100%; }\",\".framer-Ek4Ce.framer-v-10uq3sp .framer-1xzaxx3 { flex: none; width: 223px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-Ek4Ce.framer-v-10uq3sp .framer-zva6nf { gap: 0px; } .framer-Ek4Ce.framer-v-10uq3sp .framer-zva6nf > * { margin: 0px; margin-bottom: calc(5px / 2); margin-top: calc(5px / 2); } .framer-Ek4Ce.framer-v-10uq3sp .framer-zva6nf > :first-child { margin-top: 0px; } .framer-Ek4Ce.framer-v-10uq3sp .framer-zva6nf > :last-child { margin-bottom: 0px; } }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 662\n * @framerIntrinsicWidth 936\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"vGdQKWH8Y\":{\"layout\":[\"fixed\",\"auto\"]},\"YsGAEKWC3\":{\"layout\":[\"fixed\",\"auto\"],\"constraints\":[null,\"600px\",null,null]},\"lL2BYkp7T\":{\"layout\":[\"fixed\",\"auto\"],\"constraints\":[null,\"600px\",null,null]},\"bUlMzpvEb\":{\"layout\":[\"fixed\",\"auto\"],\"constraints\":[null,\"300px\",null,null]},\"f6yeqNrif\":{\"layout\":[\"fixed\",\"auto\"],\"constraints\":[null,\"300px\",null,\"330px\"]}}}\n * @framerVariables {\"gsI_KvgAm\":\"click\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const Framerd3cR5vufm=withCSS(Component,css,\"framer-Ek4Ce\");export default Framerd3cR5vufm;Framerd3cR5vufm.displayName=\"Cratorhq video\";Framerd3cR5vufm.defaultProps={height:662,width:936};addPropertyControls(Framerd3cR5vufm,{variant:{options:[\"V6ihMEqzj\",\"vGdQKWH8Y\",\"YsGAEKWC3\",\"lL2BYkp7T\",\"bUlMzpvEb\",\"f6yeqNrif\"],optionTitles:[\"Desktop Cover\",\"Desktop Play\",\"Tablet Cover\",\"Tablet Play\",\"Mobile Cover\",\"Mobile Play\"],title:\"Variant\",type:ControlType.Enum},gsI_KvgAm:{title:\"Click\",type:ControlType.EventHandler}});addFonts(Framerd3cR5vufm,[{explicitInter:true,fonts:[{family:\"Degular Text Regular\",source:\"custom\",url:\"https://framerusercontent.com/assets/hRf9qqgFPbwFk0bTHXg4viCZjI.woff2\"}]},...VideoComponent2Fonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"Framerd3cR5vufm\",\"slots\":[],\"annotations\":{\"framerIntrinsicWidth\":\"936\",\"framerVariables\":\"{\\\"gsI_KvgAm\\\":\\\"click\\\"}\",\"framerImmutableVariables\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"vGdQKWH8Y\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"YsGAEKWC3\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"],\\\"constraints\\\":[null,\\\"600px\\\",null,null]},\\\"lL2BYkp7T\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"],\\\"constraints\\\":[null,\\\"600px\\\",null,null]},\\\"bUlMzpvEb\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"],\\\"constraints\\\":[null,\\\"300px\\\",null,null]},\\\"f6yeqNrif\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"],\\\"constraints\\\":[null,\\\"300px\\\",null,\\\"330px\\\"]}}}\",\"framerIntrinsicHeight\":\"662\",\"framerContractVersion\":\"1\",\"framerComponentViewportWidth\":\"true\",\"framerDisplayContentsDiv\":\"false\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (8c7926c)\nimport{fontStore}from\"framer\";fontStore.loadFonts([\"CUSTOM;Degular Text Bold\"]);export const fonts=[{explicitInter:true,fonts:[{family:\"Degular Text Bold\",source:\"custom\",url:\"https://framerusercontent.com/assets/mFTxIQ7cRbDDHArSvCvVyEA7OlM.woff2\"}]}];export const css=['.framer-FYVQ7 .framer-styles-preset-1ytpwqn:not(.rich-text-wrapper), .framer-FYVQ7 .framer-styles-preset-1ytpwqn.rich-text-wrapper p { --framer-font-family: \"Degular Text Bold\", \"Degular Text Bold Placeholder\", sans-serif; --framer-font-open-type-features: normal; --framer-font-size: 18px; --framer-font-style: normal; --framer-font-weight: 400; --framer-letter-spacing: 0em; --framer-line-height: 23px; --framer-paragraph-spacing: 20px; --framer-text-alignment: center; --framer-text-color: var(--token-19182416-018f-4aaf-8caa-795abe04b4ff, #ffffff); --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; }','@media (max-width: 1199px) and (min-width: 810px) { .framer-FYVQ7 .framer-styles-preset-1ytpwqn:not(.rich-text-wrapper), .framer-FYVQ7 .framer-styles-preset-1ytpwqn.rich-text-wrapper p { --framer-font-family: \"Degular Text Bold\", \"Degular Text Bold Placeholder\", sans-serif; --framer-font-open-type-features: normal; --framer-font-size: 18px; --framer-font-style: normal; --framer-font-weight: 400; --framer-letter-spacing: 0em; --framer-line-height: 23px; --framer-paragraph-spacing: 20px; --framer-text-alignment: center; --framer-text-color: var(--token-19182416-018f-4aaf-8caa-795abe04b4ff, #ffffff); --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; } }','@media (max-width: 809px) and (min-width: 0px) { .framer-FYVQ7 .framer-styles-preset-1ytpwqn:not(.rich-text-wrapper), .framer-FYVQ7 .framer-styles-preset-1ytpwqn.rich-text-wrapper p { --framer-font-family: \"Degular Text Bold\", \"Degular Text Bold Placeholder\", sans-serif; --framer-font-open-type-features: normal; --framer-font-size: 16px; --framer-font-style: normal; --framer-font-weight: 400; --framer-letter-spacing: 0em; --framer-line-height: 16px; --framer-paragraph-spacing: 20px; --framer-text-alignment: center; --framer-text-color: var(--token-19182416-018f-4aaf-8caa-795abe04b4ff, #ffffff); --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; } }'];export const className=\"framer-FYVQ7\";\nexport const __FramerMetadata__ = {\"exports\":{\"className\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"fonts\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"css\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (8c7926c)\nimport{jsx as _jsx}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,getFontsFromSharedStyle,Link,RichText,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import*as sharedStyle from\"https://framerusercontent.com/modules/Luhl8wKrbAobUrP8D9Te/3etyzWZ2tBANHEqzlgbv/wktam6FEc.js\";const enabledGestures={D7RIkVR_J:{hover:true},lc0nOAiBV:{hover:true}};const cycleOrder=[\"lc0nOAiBV\",\"D7RIkVR_J\"];const serializationHash=\"framer-iEvfS\";const variantClassNames={D7RIkVR_J:\"framer-v-1f0i9n2\",lc0nOAiBV:\"framer-v-xad6s7\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={\"Nav Button\":\"lc0nOAiBV\",Mobile:\"D7RIkVR_J\"};const getProps=({height,id,link,width,...props})=>{var _humanReadableVariantMap_props_variant,_ref;return{...props,tmkFHmbIP:link!==null&&link!==void 0?link:props.tmkFHmbIP,variant:(_ref=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref!==void 0?_ref:\"lc0nOAiBV\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,tmkFHmbIP,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"lc0nOAiBV\",enabledGestures,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const ref1=React.useRef(null);const defaultLayoutId=React.useId();const sharedStyleClassNames=[sharedStyle.className];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(Link,{href:tmkFHmbIP,smoothScroll:true,children:/*#__PURE__*/_jsx(motion.a,{...restProps,...gestureHandlers,className:`${cx(serializationHash,...sharedStyleClassNames,\"framer-xad6s7\",className,classNames)} framer-1lo5u25`,\"data-framer-name\":\"Nav Button\",layoutDependency:layoutDependency,layoutId:\"lc0nOAiBV\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{\"--border-bottom-width\":\"0px\",\"--border-color\":\"rgba(0, 0, 0, 0)\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-style\":\"solid\",\"--border-top-width\":\"0px\",backgroundColor:\"rgb(0, 97, 255)\",borderBottomLeftRadius:100,borderBottomRightRadius:100,borderTopLeftRadius:100,borderTopRightRadius:100,boxShadow:\"none\",...style},variants:{\"D7RIkVR_J-hover\":{\"--border-bottom-width\":\"1px\",\"--border-color\":\"rgb(0, 97, 255)\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",backgroundColor:\"rgba(0, 98, 255, 0)\",boxShadow:\"inset 0px 0px 0px 0px rgba(0, 0, 0, 0.30000001192092896)\"},\"lc0nOAiBV-hover\":{\"--border-bottom-width\":\"1px\",\"--border-color\":\"rgb(0, 97, 255)\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",backgroundColor:\"rgba(0, 98, 255, 0)\",boxShadow:\"inset 0px 0px 0px 0px rgba(0, 0, 0, 0.30000001192092896)\"}},...addPropertyOverrides({\"D7RIkVR_J-hover\":{\"data-border\":true,\"data-framer-name\":undefined},\"lc0nOAiBV-hover\":{\"data-border\":true,\"data-framer-name\":undefined},D7RIkVR_J:{\"data-framer-name\":\"Mobile\"}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-pq6ooi\",\"data-framer-name\":\"Button Text Wrap\",layoutDependency:layoutDependency,layoutId:\"RqsO8dFYz\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1ytpwqn\",\"data-styles-preset\":\"wktam6FEc\",children:\"Buy Now\"})}),className:\"framer-14vfntg\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"NZT2AHYSa\",style:{\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},variants:{\"D7RIkVR_J-hover\":{\"--extracted-r6o4lv\":\"rgb(0, 97, 255)\"},\"lc0nOAiBV-hover\":{\"--extracted-r6o4lv\":\"rgb(0, 97, 255)\"}},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({\"D7RIkVR_J-hover\":{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1ytpwqn\",\"data-styles-preset\":\"wktam6FEc\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(0, 97, 255))\"},children:\"Buy Now\"})})},\"lc0nOAiBV-hover\":{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1ytpwqn\",\"data-styles-preset\":\"wktam6FEc\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(0, 97, 255))\"},children:\"Buy Now\"})})}},baseVariant,gestureVariant)})})})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-iEvfS.framer-1lo5u25, .framer-iEvfS .framer-1lo5u25 { display: block; }\",\".framer-iEvfS.framer-xad6s7 { align-content: center; align-items: center; cursor: pointer; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: 55px; justify-content: center; overflow: hidden; padding: 15px 34px 15px 34px; position: relative; text-decoration: none; width: 150px; will-change: var(--framer-will-change-override, transform); }\",\".framer-iEvfS .framer-pq6ooi { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-iEvfS .framer-14vfntg { flex: 1 0 0px; height: auto; position: relative; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-iEvfS.framer-xad6s7, .framer-iEvfS .framer-pq6ooi { gap: 0px; } .framer-iEvfS.framer-xad6s7 > *, .framer-iEvfS .framer-pq6ooi > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } .framer-iEvfS.framer-xad6s7 > :first-child, .framer-iEvfS .framer-pq6ooi > :first-child { margin-left: 0px; } .framer-iEvfS.framer-xad6s7 > :last-child, .framer-iEvfS .framer-pq6ooi > :last-child { margin-right: 0px; } }\",\".framer-iEvfS.framer-v-1f0i9n2.framer-xad6s7 { height: 45px; padding: 15px; width: 130px; }\",...sharedStyle.css,'.framer-iEvfS[data-border=\"true\"]::after, .framer-iEvfS [data-border=\"true\"]::after { content: \"\"; border-width: var(--border-top-width, 0) var(--border-right-width, 0) var(--border-bottom-width, 0) var(--border-left-width, 0); border-color: var(--border-color, none); border-style: var(--border-style, none); width: 100%; height: 100%; position: absolute; box-sizing: border-box; left: 0; top: 0; border-radius: inherit; pointer-events: none; }'];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 55\n * @framerIntrinsicWidth 150\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]},\"D7RIkVR_J\":{\"layout\":[\"fixed\",\"fixed\"]},\"r1z_TjC1C\":{\"layout\":[\"fixed\",\"fixed\"]},\"Oi3Ixvkt1\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerVariables {\"tmkFHmbIP\":\"link\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerUc0SLSiZ7=withCSS(Component,css,\"framer-iEvfS\");export default FramerUc0SLSiZ7;FramerUc0SLSiZ7.displayName=\"Nav Button\";FramerUc0SLSiZ7.defaultProps={height:55,width:150};addPropertyControls(FramerUc0SLSiZ7,{variant:{options:[\"lc0nOAiBV\",\"D7RIkVR_J\"],optionTitles:[\"Nav Button\",\"Mobile\"],title:\"Variant\",type:ControlType.Enum},tmkFHmbIP:{title:\"Link\",type:ControlType.Link}});addFonts(FramerUc0SLSiZ7,[{explicitInter:true,fonts:[{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/5vvr9Vy74if2I6bQbJvbw7SY1pQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/EOr0mi4hNtlgWNn9if640EZzXCo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Y9k9QrlZAqio88Klkmbd8VoMQc.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/OYrD2tBIBPvoJXiIHnLoOXnY9M.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/JeYwfuaPfZHQhEG8U5gtPDZ7WQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/vQyevYAyHtARFwPqUzQGpnDs.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/b6Y37FthZeALduNqHicBT6FutY.woff2\",weight:\"400\"}]},...getFontsFromSharedStyle(sharedStyle.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerUc0SLSiZ7\",\"slots\":[],\"annotations\":{\"framerImmutableVariables\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerIntrinsicHeight\":\"55\",\"framerContractVersion\":\"1\",\"framerIntrinsicWidth\":\"150\",\"framerVariables\":\"{\\\"tmkFHmbIP\\\":\\\"link\\\"}\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"D7RIkVR_J\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"r1z_TjC1C\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"Oi3Ixvkt1\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerComponentViewportWidth\":\"true\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Uc0SLSiZ7.map", "// Generated by Framer (64bc75b)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,getLoadingLazyAtYPosition,Image,Link,RichText,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import NavButton from\"https://framerusercontent.com/modules/SQ4swOLyGpXeyCS993Vn/nr3OQA3a0yIYlUoVJax3/Uc0SLSiZ7.js\";const NavButtonFonts=getFonts(NavButton);const cycleOrder=[\"c0IfFvRLx\",\"T0UHG4upF\",\"Se43N8mBa\",\"ZLySTnwlf\",\"tfqsmWnqt\"];const serializationHash=\"framer-NQa86\";const variantClassNames={c0IfFvRLx:\"framer-v-1vdu4uv\",Se43N8mBa:\"framer-v-93jjw8\",T0UHG4upF:\"framer-v-1wnfix9\",tfqsmWnqt:\"framer-v-5xjyc6\",ZLySTnwlf:\"framer-v-1pkpq1t\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:80,delay:.1,mass:1,stiffness:500,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={\"Mobile Close\":\"ZLySTnwlf\",\"Stricky Navbar\":\"tfqsmWnqt\",\"Stricky Tablet\":\"Se43N8mBa\",Navigation:\"c0IfFvRLx\",Tablet:\"T0UHG4upF\"};const getProps=({height,id,width,...props})=>{var _humanReadableVariantMap_props_variant,_ref;return{...props,variant:(_ref=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref!==void 0?_ref:\"c0IfFvRLx\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"c0IfFvRLx\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const ref1=React.useRef(null);const isDisplayed=()=>{if(baseVariant===\"ZLySTnwlf\")return false;return true;};const defaultLayoutId=React.useId();const sharedStyleClassNames=[];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(motion.div,{...restProps,...gestureHandlers,className:cx(serializationHash,...sharedStyleClassNames,\"framer-1vdu4uv\",className,classNames),\"data-framer-name\":\"Navigation\",layoutDependency:layoutDependency,layoutId:\"c0IfFvRLx\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{backgroundColor:\"rgba(255, 255, 255, 0)\",...style},variants:{Se43N8mBa:{backgroundColor:\"rgb(255, 255, 255)\"},tfqsmWnqt:{backgroundColor:\"var(--token-19182416-018f-4aaf-8caa-795abe04b4ff, rgb(255, 255, 255))\"},ZLySTnwlf:{backgroundColor:\"rgb(255, 255, 255)\"}},...addPropertyOverrides({Se43N8mBa:{\"data-framer-name\":\"Stricky Tablet\"},T0UHG4upF:{\"data-framer-name\":\"Tablet\"},tfqsmWnqt:{\"data-framer-name\":\"Stricky Navbar\"},ZLySTnwlf:{\"data-framer-name\":\"Mobile Close\"}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-18eaz70\",\"data-framer-name\":\"Container\",layoutDependency:layoutDependency,layoutId:\"c8q6cy_bE\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-17has7z\",\"data-framer-name\":\"Logo\",layoutDependency:layoutDependency,layoutId:\"zfGYV1htj\",children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"OMp430bgy\"},openInNewTab:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-p6juq3 framer-jgh2go\",\"data-framer-name\":\"Logo Wrap\",layoutDependency:layoutDependency,layoutId:\"dEzzwa_LH\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"Creatotor Hq\",fit:\"fit\",loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+(20+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||95)-40-46)/2)+0+0+0),pixelHeight:95,pixelWidth:300,positionX:\"center\",positionY:\"center\",sizes:\"148px\",src:\"https://framerusercontent.com/images/SYpBZ1eZdakgZTqHSE7QF3gDk.svg\",srcSet:\"https://framerusercontent.com/images/SYpBZ1eZdakgZTqHSE7QF3gDk.svg?scale-down-to=512 512w,https://framerusercontent.com/images/SYpBZ1eZdakgZTqHSE7QF3gDk.svg?scale-down-to=1024 1024w,https://framerusercontent.com/images/SYpBZ1eZdakgZTqHSE7QF3gDk.svg?scale-down-to=2048 2048w,https://framerusercontent.com/images/SYpBZ1eZdakgZTqHSE7QF3gDk.svg 2484w\"},className:\"framer-1p1n5wl\",\"data-framer-name\":\"Logo\",layoutDependency:layoutDependency,layoutId:\"LEX9mJCAs\",...addPropertyOverrides({ZLySTnwlf:{background:{alt:\"Creatotor Hq\",fit:\"fit\",pixelHeight:95,pixelWidth:300,positionX:\"center\",positionY:\"center\",sizes:\"110px\",src:\"https://framerusercontent.com/images/SYpBZ1eZdakgZTqHSE7QF3gDk.svg\",srcSet:\"https://framerusercontent.com/images/SYpBZ1eZdakgZTqHSE7QF3gDk.svg?scale-down-to=512 512w,https://framerusercontent.com/images/SYpBZ1eZdakgZTqHSE7QF3gDk.svg?scale-down-to=1024 1024w,https://framerusercontent.com/images/SYpBZ1eZdakgZTqHSE7QF3gDk.svg?scale-down-to=2048 2048w,https://framerusercontent.com/images/SYpBZ1eZdakgZTqHSE7QF3gDk.svg 2484w\"}}},baseVariant,gestureVariant)})})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-13xzgxd\",\"data-framer-name\":\"Menu Iteam Wrap\",layoutDependency:layoutDependency,layoutId:\"ZiWa64Zwo\",children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1tan4n7\",\"data-framer-name\":\"Menu Item Outer\",layoutDependency:layoutDependency,layoutId:\"OyfR4YklR\",children:[isDisplayed()&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-13zs640\",\"data-framer-name\":\"Menu  \",layoutDependency:layoutDependency,layoutId:\"zCoAnAA3C\",children:[/*#__PURE__*/_jsx(Link,{href:{hash:\":k8NijeHUy\",webPageId:\"OMp430bgy\"},openInNewTab:false,smoothScroll:true,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-1m81t4m framer-jgh2go\",\"data-framer-name\":\"Menu List\",layoutDependency:layoutDependency,layoutId:\"uU4c0HOlx\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO0RlZ3VsYXIgVGV4dCBNZWRpdW0=\",\"--framer-font-family\":'\"Degular Text Medium\", \"Degular Text Medium Placeholder\", sans-serif',\"--framer-line-height\":\"24px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-e4b70477-24a4-41fb-a2e1-045f4b4b3d16, rgba(18, 18, 18, 0.7)))\"},children:\"Video Overview\"})}),className:\"framer-1629glt\",fonts:[\"CUSTOM;Degular Text Medium\"],layoutDependency:layoutDependency,layoutId:\"nRG9wgQ9r\",style:{\"--extracted-r6o4lv\":\"var(--token-e4b70477-24a4-41fb-a2e1-045f4b4b3d16, rgba(18, 18, 18, 0.7))\"},verticalAlignment:\"top\",withExternalLayout:true})})}),/*#__PURE__*/_jsx(Link,{href:{hash:\":GXA_8Db4S\",webPageId:\"OMp430bgy\"},openInNewTab:false,smoothScroll:true,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-1ji8kl5 framer-jgh2go\",\"data-framer-name\":\"Menu List\",layoutDependency:layoutDependency,layoutId:\"rI86y4SRO\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO0RlZ3VsYXIgVGV4dCBNZWRpdW0=\",\"--framer-font-family\":'\"Degular Text Medium\", \"Degular Text Medium Placeholder\", sans-serif',\"--framer-line-height\":\"24px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-e4b70477-24a4-41fb-a2e1-045f4b4b3d16, rgba(18, 18, 18, 0.7)))\"},children:\"Features\"})}),className:\"framer-1o48fnx\",fonts:[\"CUSTOM;Degular Text Medium\"],layoutDependency:layoutDependency,layoutId:\"SqC2UgUrU\",style:{\"--extracted-r6o4lv\":\"var(--token-e4b70477-24a4-41fb-a2e1-045f4b4b3d16, rgba(18, 18, 18, 0.7))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true})})}),/*#__PURE__*/_jsx(Link,{href:{hash:\":HyRmPLoFc\",webPageId:\"OMp430bgy\"},openInNewTab:false,smoothScroll:true,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-1pwgm8s framer-jgh2go\",\"data-framer-name\":\"Menu List\",layoutDependency:layoutDependency,layoutId:\"AWnVdrFfR\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO0RlZ3VsYXIgVGV4dCBNZWRpdW0=\",\"--framer-font-family\":'\"Degular Text Medium\", \"Degular Text Medium Placeholder\", sans-serif',\"--framer-line-height\":\"24px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-e4b70477-24a4-41fb-a2e1-045f4b4b3d16, rgba(18, 18, 18, 0.7)))\"},children:\"Pricing\"})}),className:\"framer-1hyp8zm\",fonts:[\"CUSTOM;Degular Text Medium\"],layoutDependency:layoutDependency,layoutId:\"lSMFOqCMc\",style:{\"--extracted-r6o4lv\":\"var(--token-e4b70477-24a4-41fb-a2e1-045f4b4b3d16, rgba(18, 18, 18, 0.7))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true})})}),/*#__PURE__*/_jsx(Link,{href:{hash:\":zRYYxdLw1\",webPageId:\"OMp430bgy\"},openInNewTab:false,smoothScroll:true,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-hhucln framer-jgh2go\",\"data-framer-name\":\"Menu List\",layoutDependency:layoutDependency,layoutId:\"JvWFf2fEh\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO0RlZ3VsYXIgVGV4dCBNZWRpdW0=\",\"--framer-font-family\":'\"Degular Text Medium\", \"Degular Text Medium Placeholder\", sans-serif',\"--framer-line-height\":\"24px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-e4b70477-24a4-41fb-a2e1-045f4b4b3d16, rgba(18, 18, 18, 0.7)))\"},children:\"FAQs\"})}),className:\"framer-1sg8lx2\",fonts:[\"CUSTOM;Degular Text Medium\"],layoutDependency:layoutDependency,layoutId:\"XZeG1Byvm\",style:{\"--extracted-r6o4lv\":\"var(--token-e4b70477-24a4-41fb-a2e1-045f4b4b3d16, rgba(18, 18, 18, 0.7))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true})})})]}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:55,width:\"150px\",y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+(20+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||95)-40-46)/2)+0+0+-4.5,...addPropertyOverrides({ZLySTnwlf:{height:37,width:\"120px\",y:undefined}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-lqx9mv-container\",layoutDependency:layoutDependency,layoutId:\"xJNPUjy7E-container\",children:/*#__PURE__*/_jsx(NavButton,{height:\"100%\",id:\"xJNPUjy7E\",layoutId:\"xJNPUjy7E\",style:{width:\"100%\"},tmkFHmbIP:\"https://store.creatorscience.com/buy/28aeab8d-5b53-4840-9055-080794014e8b\",variant:\"lc0nOAiBV\",width:\"100%\",...addPropertyOverrides({ZLySTnwlf:{style:{height:\"100%\",width:\"100%\"},variant:\"D7RIkVR_J\"}},baseVariant,gestureVariant)})})})]})})]})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-NQa86.framer-jgh2go, .framer-NQa86 .framer-jgh2go { display: block; }\",\".framer-NQa86.framer-1vdu4uv { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: hidden; padding: 20px; position: relative; width: 1350px; }\",\".framer-NQa86 .framer-18eaz70 { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; height: min-content; justify-content: space-between; max-width: 1260px; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-NQa86 .framer-17has7z { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-NQa86 .framer-p6juq3 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: 46px; justify-content: center; max-width: 148px; overflow: hidden; padding: 0px; position: relative; text-decoration: none; width: 148px; }\",\".framer-NQa86 .framer-1p1n5wl { flex: none; height: 100%; overflow: hidden; position: relative; width: 100%; }\",\".framer-NQa86 .framer-13xzgxd { align-content: center; align-items: center; align-self: stretch; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: auto; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-NQa86 .framer-1tan4n7 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 50px; height: 100%; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-NQa86 .framer-13zs640 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 50px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-NQa86 .framer-1m81t4m, .framer-NQa86 .framer-1ji8kl5, .framer-NQa86 .framer-1pwgm8s, .framer-NQa86 .framer-hhucln { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; text-decoration: none; width: min-content; }\",\".framer-NQa86 .framer-1629glt, .framer-NQa86 .framer-1o48fnx, .framer-NQa86 .framer-1hyp8zm, .framer-NQa86 .framer-1sg8lx2 { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-NQa86 .framer-lqx9mv-container { flex: none; height: auto; position: relative; width: 150px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-NQa86.framer-1vdu4uv, .framer-NQa86 .framer-17has7z, .framer-NQa86 .framer-p6juq3, .framer-NQa86 .framer-13xzgxd, .framer-NQa86 .framer-1tan4n7, .framer-NQa86 .framer-13zs640, .framer-NQa86 .framer-1m81t4m, .framer-NQa86 .framer-1ji8kl5, .framer-NQa86 .framer-1pwgm8s, .framer-NQa86 .framer-hhucln { gap: 0px; } .framer-NQa86.framer-1vdu4uv > *, .framer-NQa86 .framer-p6juq3 > *, .framer-NQa86 .framer-13xzgxd > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } .framer-NQa86.framer-1vdu4uv > :first-child, .framer-NQa86 .framer-17has7z > :first-child, .framer-NQa86 .framer-p6juq3 > :first-child, .framer-NQa86 .framer-13xzgxd > :first-child, .framer-NQa86 .framer-1tan4n7 > :first-child, .framer-NQa86 .framer-13zs640 > :first-child, .framer-NQa86 .framer-1m81t4m > :first-child, .framer-NQa86 .framer-1ji8kl5 > :first-child, .framer-NQa86 .framer-1pwgm8s > :first-child, .framer-NQa86 .framer-hhucln > :first-child { margin-left: 0px; } .framer-NQa86.framer-1vdu4uv > :last-child, .framer-NQa86 .framer-17has7z > :last-child, .framer-NQa86 .framer-p6juq3 > :last-child, .framer-NQa86 .framer-13xzgxd > :last-child, .framer-NQa86 .framer-1tan4n7 > :last-child, .framer-NQa86 .framer-13zs640 > :last-child, .framer-NQa86 .framer-1m81t4m > :last-child, .framer-NQa86 .framer-1ji8kl5 > :last-child, .framer-NQa86 .framer-1pwgm8s > :last-child, .framer-NQa86 .framer-hhucln > :last-child { margin-right: 0px; } .framer-NQa86 .framer-17has7z > *, .framer-NQa86 .framer-1m81t4m > *, .framer-NQa86 .framer-1ji8kl5 > *, .framer-NQa86 .framer-1pwgm8s > *, .framer-NQa86 .framer-hhucln > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-NQa86 .framer-1tan4n7 > *, .framer-NQa86 .framer-13zs640 > * { margin: 0px; margin-left: calc(50px / 2); margin-right: calc(50px / 2); } }\",\".framer-NQa86.framer-v-1wnfix9.framer-1vdu4uv, .framer-NQa86.framer-v-93jjw8.framer-1vdu4uv { width: 810px; }\",\".framer-NQa86.framer-v-1wnfix9 .framer-18eaz70, .framer-NQa86.framer-v-93jjw8 .framer-18eaz70 { max-width: 100%; }\",\".framer-NQa86.framer-v-1wnfix9 .framer-p6juq3, .framer-NQa86.framer-v-93jjw8 .framer-p6juq3 { max-width: 200px; }\",\".framer-NQa86.framer-v-1wnfix9 .framer-1tan4n7, .framer-NQa86.framer-v-93jjw8 .framer-1tan4n7 { gap: 30px; }\",\".framer-NQa86.framer-v-1wnfix9 .framer-13zs640, .framer-NQa86.framer-v-93jjw8 .framer-13zs640 { gap: 25px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-NQa86.framer-v-1wnfix9 .framer-1tan4n7, .framer-NQa86.framer-v-1wnfix9 .framer-13zs640 { gap: 0px; } .framer-NQa86.framer-v-1wnfix9 .framer-1tan4n7 > * { margin: 0px; margin-left: calc(30px / 2); margin-right: calc(30px / 2); } .framer-NQa86.framer-v-1wnfix9 .framer-1tan4n7 > :first-child, .framer-NQa86.framer-v-1wnfix9 .framer-13zs640 > :first-child { margin-left: 0px; } .framer-NQa86.framer-v-1wnfix9 .framer-1tan4n7 > :last-child, .framer-NQa86.framer-v-1wnfix9 .framer-13zs640 > :last-child { margin-right: 0px; } .framer-NQa86.framer-v-1wnfix9 .framer-13zs640 > * { margin: 0px; margin-left: calc(25px / 2); margin-right: calc(25px / 2); } }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-NQa86.framer-v-93jjw8 .framer-1tan4n7, .framer-NQa86.framer-v-93jjw8 .framer-13zs640 { gap: 0px; } .framer-NQa86.framer-v-93jjw8 .framer-1tan4n7 > * { margin: 0px; margin-left: calc(30px / 2); margin-right: calc(30px / 2); } .framer-NQa86.framer-v-93jjw8 .framer-1tan4n7 > :first-child, .framer-NQa86.framer-v-93jjw8 .framer-13zs640 > :first-child { margin-left: 0px; } .framer-NQa86.framer-v-93jjw8 .framer-1tan4n7 > :last-child, .framer-NQa86.framer-v-93jjw8 .framer-13zs640 > :last-child { margin-right: 0px; } .framer-NQa86.framer-v-93jjw8 .framer-13zs640 > * { margin: 0px; margin-left: calc(25px / 2); margin-right: calc(25px / 2); } }\",\".framer-NQa86.framer-v-1pkpq1t.framer-1vdu4uv { width: 390px; }\",\".framer-NQa86.framer-v-1pkpq1t .framer-18eaz70 { flex-wrap: wrap; }\",\".framer-NQa86.framer-v-1pkpq1t .framer-17has7z { flex-wrap: wrap; gap: 0px; }\",\".framer-NQa86.framer-v-1pkpq1t .framer-p6juq3 { height: 35px; max-width: 130px; width: 110px; }\",\".framer-NQa86.framer-v-1pkpq1t .framer-13xzgxd { align-self: unset; height: min-content; justify-content: flex-start; }\",\".framer-NQa86.framer-v-1pkpq1t .framer-1tan4n7 { align-content: flex-start; align-items: flex-start; flex-direction: column; gap: 25px; height: min-content; }\",\".framer-NQa86.framer-v-1pkpq1t .framer-lqx9mv-container { height: 37px; width: 120px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-NQa86.framer-v-1pkpq1t .framer-17has7z, .framer-NQa86.framer-v-1pkpq1t .framer-1tan4n7 { gap: 0px; } .framer-NQa86.framer-v-1pkpq1t .framer-17has7z > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } .framer-NQa86.framer-v-1pkpq1t .framer-17has7z > :first-child { margin-left: 0px; } .framer-NQa86.framer-v-1pkpq1t .framer-17has7z > :last-child { margin-right: 0px; } .framer-NQa86.framer-v-1pkpq1t .framer-1tan4n7 > * { margin: 0px; margin-bottom: calc(25px / 2); margin-top: calc(25px / 2); } .framer-NQa86.framer-v-1pkpq1t .framer-1tan4n7 > :first-child { margin-top: 0px; } .framer-NQa86.framer-v-1pkpq1t .framer-1tan4n7 > :last-child { margin-bottom: 0px; } }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 95\n * @framerIntrinsicWidth 1350\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"T0UHG4upF\":{\"layout\":[\"fixed\",\"auto\"]},\"Se43N8mBa\":{\"layout\":[\"fixed\",\"auto\"]},\"ZLySTnwlf\":{\"layout\":[\"fixed\",\"auto\"]},\"tfqsmWnqt\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerfoQIE3cD3=withCSS(Component,css,\"framer-NQa86\");export default FramerfoQIE3cD3;FramerfoQIE3cD3.displayName=\"Navigation\";FramerfoQIE3cD3.defaultProps={height:95,width:1350};addPropertyControls(FramerfoQIE3cD3,{variant:{options:[\"c0IfFvRLx\",\"T0UHG4upF\",\"Se43N8mBa\",\"ZLySTnwlf\",\"tfqsmWnqt\"],optionTitles:[\"Navigation\",\"Tablet\",\"Stricky Tablet\",\"Mobile Close\",\"Stricky Navbar\"],title:\"Variant\",type:ControlType.Enum}});addFonts(FramerfoQIE3cD3,[{explicitInter:true,fonts:[{family:\"Degular Text Medium\",source:\"custom\",url:\"https://framerusercontent.com/assets/KYOWrO2toCoKcFkFeQ1S5pkzzDM.woff2\"}]},...NavButtonFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerfoQIE3cD3\",\"slots\":[],\"annotations\":{\"framerComponentViewportWidth\":\"true\",\"framerImmutableVariables\":\"true\",\"framerContractVersion\":\"1\",\"framerIntrinsicWidth\":\"1350\",\"framerDisplayContentsDiv\":\"false\",\"framerIntrinsicHeight\":\"95\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"T0UHG4upF\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"Se43N8mBa\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"ZLySTnwlf\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"tfqsmWnqt\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./foQIE3cD3.map", "// Generated by Framer (8c7926c)\nimport{fontStore}from\"framer\";fontStore.loadFonts([]);export const fonts=[{explicitInter:true,fonts:[]}];export const css=['.framer-BcBeE .framer-styles-preset-uh7q67:not(.rich-text-wrapper), .framer-BcBeE .framer-styles-preset-uh7q67.rich-text-wrapper a { --framer-link-current-text-color: var(--token-406ee2a1-9c29-42c5-961e-cfe02a30aaf7, #121212) /* {\"name\":\"Primary -  Color\"} */; --framer-link-current-text-decoration: underline; --framer-link-hover-text-color: var(--token-d1f6ecfd-2abf-4418-8a05-8920186c6135, #0061ff) /* {\"name\":\"Button Color\"} */; --framer-link-hover-text-decoration: underline; --framer-link-text-color: var(--token-406ee2a1-9c29-42c5-961e-cfe02a30aaf7, #121212); --framer-link-text-decoration: underline; transition: color 0.4s cubic-bezier(0, 0, 1, 1) 0s; }'];export const className=\"framer-BcBeE\";\nexport const __FramerMetadata__ = {\"exports\":{\"css\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"className\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"fonts\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (322ed1a)\nimport{fontStore}from\"framer\";fontStore.loadFonts([\"CUSTOM;Degular Text Bold\"]);export const fonts=[{explicitInter:true,fonts:[{family:\"Degular Text Bold\",source:\"custom\",url:\"https://framerusercontent.com/assets/mFTxIQ7cRbDDHArSvCvVyEA7OlM.woff2\"}]}];export const css=['.framer-PpOwA .framer-styles-preset-zo7rv3:not(.rich-text-wrapper), .framer-PpOwA .framer-styles-preset-zo7rv3.rich-text-wrapper p { --framer-font-family: \"Degular Text Bold\", \"Degular Text Bold Placeholder\", sans-serif; --framer-font-open-type-features: normal; --framer-font-size: 22px; --framer-font-style: normal; --framer-font-weight: 400; --framer-letter-spacing: 0em; --framer-line-height: 24px; --framer-paragraph-spacing: 20px; --framer-text-alignment: start; --framer-text-color: var(--token-19182416-018f-4aaf-8caa-795abe04b4ff, #ffffff); --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; }','@media (max-width: 1699px) and (min-width: 810px) { .framer-PpOwA .framer-styles-preset-zo7rv3:not(.rich-text-wrapper), .framer-PpOwA .framer-styles-preset-zo7rv3.rich-text-wrapper p { --framer-font-family: \"Degular Text Bold\", \"Degular Text Bold Placeholder\", sans-serif; --framer-font-open-type-features: normal; --framer-font-size: 20px; --framer-font-style: normal; --framer-font-weight: 400; --framer-letter-spacing: 0em; --framer-line-height: 22px; --framer-paragraph-spacing: 20px; --framer-text-alignment: start; --framer-text-color: var(--token-19182416-018f-4aaf-8caa-795abe04b4ff, #ffffff); --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; } }','@media (max-width: 809px) and (min-width: 0px) { .framer-PpOwA .framer-styles-preset-zo7rv3:not(.rich-text-wrapper), .framer-PpOwA .framer-styles-preset-zo7rv3.rich-text-wrapper p { --framer-font-family: \"Degular Text Bold\", \"Degular Text Bold Placeholder\", sans-serif; --framer-font-open-type-features: normal; --framer-font-size: 18px; --framer-font-style: normal; --framer-font-weight: 400; --framer-letter-spacing: 0em; --framer-line-height: 20px; --framer-paragraph-spacing: 20px; --framer-text-alignment: start; --framer-text-color: var(--token-19182416-018f-4aaf-8caa-795abe04b4ff, #ffffff); --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; } }'];export const className=\"framer-PpOwA\";\nexport const __FramerMetadata__ = {\"exports\":{\"fonts\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"css\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"className\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (8c7926c)\nimport{fontStore}from\"framer\";fontStore.loadFonts([\"CUSTOM;Degular Text Regular\"]);export const fonts=[{explicitInter:true,fonts:[{family:\"Degular Text Regular\",source:\"custom\",url:\"https://framerusercontent.com/assets/5VavLLcJ9jCFtHqJpNlJAkaP2U.woff2\"}]}];export const css=['.framer-mnLgr .framer-styles-preset-1qrjosq:not(.rich-text-wrapper), .framer-mnLgr .framer-styles-preset-1qrjosq.rich-text-wrapper p { --framer-font-family: \"Degular Text Regular\", \"Degular Text Regular Placeholder\", sans-serif; --framer-font-open-type-features: normal; --framer-font-size: 18px; --framer-font-style: normal; --framer-font-weight: 400; --framer-letter-spacing: 0em; --framer-line-height: 23px; --framer-paragraph-spacing: 20px; --framer-text-alignment: start; --framer-text-color: var(--token-406ee2a1-9c29-42c5-961e-cfe02a30aaf7, #121212); --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; }','@media (max-width: 1699px) and (min-width: 810px) { .framer-mnLgr .framer-styles-preset-1qrjosq:not(.rich-text-wrapper), .framer-mnLgr .framer-styles-preset-1qrjosq.rich-text-wrapper p { --framer-font-family: \"Degular Text Regular\", \"Degular Text Regular Placeholder\", sans-serif; --framer-font-open-type-features: normal; --framer-font-size: 18px; --framer-font-style: normal; --framer-font-weight: 400; --framer-letter-spacing: 0em; --framer-line-height: 23px; --framer-paragraph-spacing: 20px; --framer-text-alignment: start; --framer-text-color: var(--token-406ee2a1-9c29-42c5-961e-cfe02a30aaf7, #121212); --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; } }','@media (max-width: 809px) and (min-width: 0px) { .framer-mnLgr .framer-styles-preset-1qrjosq:not(.rich-text-wrapper), .framer-mnLgr .framer-styles-preset-1qrjosq.rich-text-wrapper p { --framer-font-family: \"Degular Text Regular\", \"Degular Text Regular Placeholder\", sans-serif; --framer-font-open-type-features: normal; --framer-font-size: 16px; --framer-font-style: normal; --framer-font-weight: 400; --framer-letter-spacing: 0em; --framer-line-height: 18px; --framer-paragraph-spacing: 20px; --framer-text-alignment: start; --framer-text-color: var(--token-406ee2a1-9c29-42c5-961e-cfe02a30aaf7, #121212); --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; } }'];export const className=\"framer-mnLgr\";\nexport const __FramerMetadata__ = {\"exports\":{\"fonts\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"css\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"className\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (8c7926c)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,getFontsFromSharedStyle,RichText,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import*as sharedStyle2 from\"https://framerusercontent.com/modules/GXnsTEYv1FllinnhSA7i/2A6fJpZyTdLoFQrjkI0j/dqoM54HW_.js\";import*as sharedStyle from\"https://framerusercontent.com/modules/rxlNXt6iWcpENRfg7pZm/9AuSj2cE4bktS3yfH8XT/lZNocZMOH.js\";import*as sharedStyle1 from\"https://framerusercontent.com/modules/GmK0i4suEgUA8LOP7v3u/NPVcO7pwXgSj0GZb8s3A/RkCts21Sv.js\";const cycleOrder=[\"qLHlqXO92\",\"dvEgTFVbc\",\"GyQgv1ZH2\",\"g37yV3pNe\",\"mPy3zrA1V\",\"xmQHHns_n\",\"z85sZFmvv\",\"RntQgjFYE\"];const serializationHash=\"framer-nE1fa\";const variantClassNames={dvEgTFVbc:\"framer-v-1x2puou\",g37yV3pNe:\"framer-v-1mi360d\",GyQgv1ZH2:\"framer-v-qa4qnh\",mPy3zrA1V:\"framer-v-1pn1qtn\",qLHlqXO92:\"framer-v-1mpgt3e\",RntQgjFYE:\"framer-v-1la0yul\",xmQHHns_n:\"framer-v-10bif4t\",z85sZFmvv:\"framer-v-1obunl7\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:80,delay:0,mass:1,stiffness:500,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={\"FAQ  Mobile Answer\":\"RntQgjFYE\",\"FAQ  Mobile Question\":\"z85sZFmvv\",\"FAQ Answer\":\"g37yV3pNe\",\"FAQ Mobile Summary Question\":\"xmQHHns_n\",\"FAQ Mobile Summary\":\"mPy3zrA1V\",\"FAQ Question\":\"GyQgv1ZH2\",\"FAQ Summary Answer\":\"dvEgTFVbc\",\"FAQ Summary Question\":\"qLHlqXO92\"};const getProps=({fAQAnswer,fAQContent,fAQQuestion,height,id,width,...props})=>{var _ref,_ref1,_ref2,_humanReadableVariantMap_props_variant,_ref3;return{...props,iS5cEE2Kk:(_ref=fAQAnswer!==null&&fAQAnswer!==void 0?fAQAnswer:props.iS5cEE2Kk)!==null&&_ref!==void 0?_ref:\"CreatorHQ is a foundational operating system. It's actually better to start using CreatorHQ sooner rather than later so that you can grow INTO it (rather than migrating existing systems into it later). It's easy enough to merge things INTO CreatorHQ, but there is no reason to wait until any point before starting to use it.\",OEszT_6kN:(_ref1=fAQContent!==null&&fAQContent!==void 0?fAQContent:props.OEszT_6kN)!==null&&_ref1!==void 0?_ref1:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(motion.p,{children:\"We are not offering refunds for CreatorHQ.\"}),/*#__PURE__*/_jsx(motion.p,{children:\"The mechanics of selling a Notion template means that I have no ability to *revoke* access to CreatorHQ once you\u2019ve purchased. So if I offered a refund, it would be a prime target for abuse. And, unfortunately, there are a lot of people out there who purchase Notion templates with the intention to ask for refunds.\"}),/*#__PURE__*/_jsx(motion.p,{children:\"Now, if you've gotten this far, there's a good chance you already know me and what I\u2019m about. \"}),/*#__PURE__*/_jsx(motion.p,{children:\"I take integrity very seriously, which means I don\u2019t stretch the truth or over-promise. As a result, I can count on one hand the number of refunds I\u2019ve ever had to offer to disappointed customers.\"}),/*#__PURE__*/_jsx(motion.p,{children:\"If everything you\u2019ve seen here has you interested in CreatorHQ, you will not be disappointed. If you recognize that this is a product built in Notion and you\u2019re comfortable using (or learning) Notion, you will not be disappointed. \"}),/*#__PURE__*/_jsx(motion.p,{children:\"But if you\u2019re on the fence, do not purchase.\"}),/*#__PURE__*/_jsx(motion.p,{children:\"If you\u2019re unwilling to use Notion, do not purchase.\"}),/*#__PURE__*/_jsx(motion.p,{children:\"If you can\u2019t afford CreatorHQ, do not purchase.\"}),/*#__PURE__*/_jsx(motion.p,{children:\"Thanks for your understanding!\"})]}),pW6hGUTQ7:(_ref2=fAQQuestion!==null&&fAQQuestion!==void 0?fAQQuestion:props.pW6hGUTQ7)!==null&&_ref2!==void 0?_ref2:\"What is your refund policy?\",variant:(_ref3=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref3!==void 0?_ref3:\"qLHlqXO92\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,pW6hGUTQ7,iS5cEE2Kk,OEszT_6kN,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"qLHlqXO92\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onTap1wu3u16=activeVariantCallback(async(...args)=>{setGestureState({isPressed:false});setVariant(\"dvEgTFVbc\");});const onTap1sne6o5=activeVariantCallback(async(...args)=>{setGestureState({isPressed:false});setVariant(\"qLHlqXO92\");});const onTap1txxu06=activeVariantCallback(async(...args)=>{setGestureState({isPressed:false});setVariant(\"g37yV3pNe\");});const onTappepuow=activeVariantCallback(async(...args)=>{setGestureState({isPressed:false});setVariant(\"GyQgv1ZH2\");});const onTap128b4yn=activeVariantCallback(async(...args)=>{setGestureState({isPressed:false});setVariant(\"xmQHHns_n\");});const onTapwfk224=activeVariantCallback(async(...args)=>{setGestureState({isPressed:false});setVariant(\"mPy3zrA1V\");});const onTap1j9twzq=activeVariantCallback(async(...args)=>{setGestureState({isPressed:false});setVariant(\"RntQgjFYE\");});const onTap1jb0sw3=activeVariantCallback(async(...args)=>{setGestureState({isPressed:false});setVariant(\"z85sZFmvv\");});const ref1=React.useRef(null);const isDisplayed=()=>{if([\"dvEgTFVbc\",\"mPy3zrA1V\"].includes(baseVariant))return true;return false;};const isDisplayed1=()=>{if([\"g37yV3pNe\",\"RntQgjFYE\"].includes(baseVariant))return true;return false;};const defaultLayoutId=React.useId();const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className,sharedStyle2.className];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(motion.div,{...restProps,...gestureHandlers,className:cx(serializationHash,...sharedStyleClassNames,\"framer-1mpgt3e\",className,classNames),\"data-framer-name\":\"FAQ Summary Question\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"qLHlqXO92\",onTap:onTap1wu3u16,ref:ref!==null&&ref!==void 0?ref:ref1,style:{backgroundColor:\"var(--token-19182416-018f-4aaf-8caa-795abe04b4ff, rgb(255, 255, 255))\",borderBottomLeftRadius:4,borderBottomRightRadius:4,borderTopLeftRadius:4,borderTopRightRadius:4,...style},...addPropertyOverrides({dvEgTFVbc:{\"data-framer-name\":\"FAQ Summary Answer\",onTap:onTap1sne6o5},g37yV3pNe:{\"data-framer-name\":\"FAQ Answer\",onTap:onTappepuow},GyQgv1ZH2:{\"data-framer-name\":\"FAQ Question\",onTap:onTap1txxu06},mPy3zrA1V:{\"data-framer-name\":\"FAQ Mobile Summary\",onTap:onTap128b4yn},RntQgjFYE:{\"data-framer-name\":\"FAQ  Mobile Answer\",onTap:onTap1jb0sw3},xmQHHns_n:{\"data-framer-name\":\"FAQ Mobile Summary Question\",onTap:onTapwfk224},z85sZFmvv:{\"data-framer-name\":\"FAQ  Mobile Question\",onTap:onTap1j9twzq}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-15rgcvp\",\"data-framer-name\":\"Question Wrap\",layoutDependency:layoutDependency,layoutId:\"ghMg4CL2g\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-zo7rv3\",\"data-styles-preset\":\"lZNocZMOH\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-406ee2a1-9c29-42c5-961e-cfe02a30aaf7, rgb(18, 18, 18)))\"},children:\"What is your refund policy?\"})}),className:\"framer-uw2bv6\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"H9sTgtDsP\",style:{\"--extracted-r6o4lv\":\"var(--token-406ee2a1-9c29-42c5-961e-cfe02a30aaf7, rgb(18, 18, 18))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},text:pW6hGUTQ7,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-czufdy\",\"data-framer-name\":\"Union\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"MaNNrd8p7\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1ssq5oy\",\"data-framer-name\":\"Line\",layoutDependency:layoutDependency,layoutId:\"wIsGvWvG5\",style:{backgroundColor:\"var(--token-d1f6ecfd-2abf-4418-8a05-8920186c6135, rgb(0, 97, 255))\",borderBottomLeftRadius:3,borderBottomRightRadius:3,borderTopLeftRadius:3,borderTopRightRadius:3}}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1cs36oi\",\"data-framer-name\":\"Line\",layoutDependency:layoutDependency,layoutId:\"WH2Z9GdYz\",style:{backgroundColor:\"var(--token-d1f6ecfd-2abf-4418-8a05-8920186c6135, rgb(0, 97, 255))\",borderBottomLeftRadius:3,borderBottomRightRadius:3,borderTopLeftRadius:3,borderTopRightRadius:3,rotate:90},variants:{dvEgTFVbc:{rotate:180},g37yV3pNe:{rotate:180},mPy3zrA1V:{rotate:180},RntQgjFYE:{rotate:180}}})]})]}),isDisplayed()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-bi8u8t\",\"data-framer-name\":\"Answer Wrap\",layoutDependency:layoutDependency,layoutId:\"d0MrTqmAo\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:OEszT_6kN,className:\"framer-18mtp5j\",\"data-framer-name\":\"Faq Answer\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"w2GgAWAPJ\",style:{\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},stylesPresetsClassNames:{a:\"framer-styles-preset-uh7q67\",h5:\"framer-styles-preset-1xdhwtf\",p:\"framer-styles-preset-1qrjosq\"},verticalAlignment:\"top\",withExternalLayout:true})}),isDisplayed1()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-1eitq1z\",\"data-framer-name\":\"Answer Text\",layoutDependency:layoutDependency,layoutId:\"WrMAfghPl\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1qrjosq\",\"data-styles-preset\":\"RkCts21Sv\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-406ee2a1-9c29-42c5-961e-cfe02a30aaf7, rgb(18, 18, 18)))\"},children:\"CreatorHQ is a foundational operating system. It's actually better to start using CreatorHQ sooner rather than later so that you can grow INTO it (rather than migrating existing systems into it later). It's easy enough to merge things INTO CreatorHQ, but there is no reason to wait until any point before starting to use it.\"})}),className:\"framer-16ii5mo\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"ANEQLOVXU\",style:{\"--extracted-r6o4lv\":\"var(--token-406ee2a1-9c29-42c5-961e-cfe02a30aaf7, rgb(18, 18, 18))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},text:iS5cEE2Kk,verticalAlignment:\"top\",withExternalLayout:true})})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-nE1fa.framer-11jfqgr, .framer-nE1fa .framer-11jfqgr { display: block; }\",\".framer-nE1fa.framer-1mpgt3e { align-content: center; align-items: center; cursor: pointer; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; overflow: hidden; padding: 16px 24px 20px 24px; position: relative; width: 730px; will-change: var(--framer-will-change-override, transform); }\",\".framer-nE1fa .framer-15rgcvp { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; height: min-content; justify-content: space-between; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-nE1fa .framer-uw2bv6 { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-nE1fa .framer-czufdy { align-content: center; align-items: center; cursor: pointer; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: 20px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 20px; }\",\".framer-nE1fa .framer-1ssq5oy { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 3px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 18px; will-change: var(--framer-will-change-override, transform); z-index: 1; }\",\".framer-nE1fa .framer-1cs36oi { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 3px; justify-content: center; left: calc(50.00000000000002% - 18px / 2); overflow: hidden; padding: 0px; position: absolute; top: calc(50.00000000000002% - 3px / 2); width: 18px; will-change: var(--framer-will-change-override, transform); z-index: 1; }\",\".framer-nE1fa .framer-bi8u8t { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-nE1fa .framer-18mtp5j { flex: none; height: auto; position: relative; width: 100%; }\",\".framer-nE1fa .framer-1eitq1z { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-nE1fa .framer-16ii5mo { flex: 1 0 0px; height: auto; position: relative; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-nE1fa.framer-1mpgt3e, .framer-nE1fa .framer-czufdy, .framer-nE1fa .framer-1ssq5oy, .framer-nE1fa .framer-1cs36oi, .framer-nE1fa .framer-bi8u8t, .framer-nE1fa .framer-1eitq1z { gap: 0px; } .framer-nE1fa.framer-1mpgt3e > * { margin: 0px; margin-bottom: calc(20px / 2); margin-top: calc(20px / 2); } .framer-nE1fa.framer-1mpgt3e > :first-child, .framer-nE1fa .framer-czufdy > :first-child, .framer-nE1fa .framer-bi8u8t > :first-child { margin-top: 0px; } .framer-nE1fa.framer-1mpgt3e > :last-child, .framer-nE1fa .framer-czufdy > :last-child, .framer-nE1fa .framer-bi8u8t > :last-child { margin-bottom: 0px; } .framer-nE1fa .framer-czufdy > *, .framer-nE1fa .framer-bi8u8t > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-nE1fa .framer-1ssq5oy > *, .framer-nE1fa .framer-1cs36oi > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-nE1fa .framer-1ssq5oy > :first-child, .framer-nE1fa .framer-1cs36oi > :first-child, .framer-nE1fa .framer-1eitq1z > :first-child { margin-left: 0px; } .framer-nE1fa .framer-1ssq5oy > :last-child, .framer-nE1fa .framer-1cs36oi > :last-child, .framer-nE1fa .framer-1eitq1z > :last-child { margin-right: 0px; } .framer-nE1fa .framer-1eitq1z > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } }\",\".framer-nE1fa.framer-v-1pn1qtn.framer-1mpgt3e, .framer-nE1fa.framer-v-10bif4t.framer-1mpgt3e, .framer-nE1fa.framer-v-1obunl7.framer-1mpgt3e, .framer-nE1fa.framer-v-1la0yul.framer-1mpgt3e { padding: 20px; width: 390px; }\",\".framer-nE1fa.framer-v-1pn1qtn .framer-15rgcvp, .framer-nE1fa.framer-v-10bif4t .framer-15rgcvp, .framer-nE1fa.framer-v-1obunl7 .framer-15rgcvp, .framer-nE1fa.framer-v-1la0yul .framer-15rgcvp { flex-wrap: wrap; gap: 20px; justify-content: flex-start; }\",\".framer-nE1fa.framer-v-1pn1qtn .framer-uw2bv6, .framer-nE1fa.framer-v-10bif4t .framer-uw2bv6, .framer-nE1fa.framer-v-1obunl7 .framer-uw2bv6, .framer-nE1fa.framer-v-1la0yul .framer-uw2bv6 { flex: 1 0 0px; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-nE1fa.framer-v-1pn1qtn .framer-15rgcvp { gap: 0px; } .framer-nE1fa.framer-v-1pn1qtn .framer-15rgcvp > * { margin: 0px; margin-left: calc(20px / 2); margin-right: calc(20px / 2); } .framer-nE1fa.framer-v-1pn1qtn .framer-15rgcvp > :first-child { margin-left: 0px; } .framer-nE1fa.framer-v-1pn1qtn .framer-15rgcvp > :last-child { margin-right: 0px; } }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-nE1fa.framer-v-10bif4t .framer-15rgcvp { gap: 0px; } .framer-nE1fa.framer-v-10bif4t .framer-15rgcvp > * { margin: 0px; margin-left: calc(20px / 2); margin-right: calc(20px / 2); } .framer-nE1fa.framer-v-10bif4t .framer-15rgcvp > :first-child { margin-left: 0px; } .framer-nE1fa.framer-v-10bif4t .framer-15rgcvp > :last-child { margin-right: 0px; } }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-nE1fa.framer-v-1obunl7 .framer-15rgcvp { gap: 0px; } .framer-nE1fa.framer-v-1obunl7 .framer-15rgcvp > * { margin: 0px; margin-left: calc(20px / 2); margin-right: calc(20px / 2); } .framer-nE1fa.framer-v-1obunl7 .framer-15rgcvp > :first-child { margin-left: 0px; } .framer-nE1fa.framer-v-1obunl7 .framer-15rgcvp > :last-child { margin-right: 0px; } }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-nE1fa.framer-v-1la0yul .framer-15rgcvp { gap: 0px; } .framer-nE1fa.framer-v-1la0yul .framer-15rgcvp > * { margin: 0px; margin-left: calc(20px / 2); margin-right: calc(20px / 2); } .framer-nE1fa.framer-v-1la0yul .framer-15rgcvp > :first-child { margin-left: 0px; } .framer-nE1fa.framer-v-1la0yul .framer-15rgcvp > :last-child { margin-right: 0px; } }\",...sharedStyle.css,...sharedStyle1.css,...sharedStyle2.css];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 60\n * @framerIntrinsicWidth 730\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"dvEgTFVbc\":{\"layout\":[\"fixed\",\"auto\"]},\"GyQgv1ZH2\":{\"layout\":[\"fixed\",\"auto\"]},\"g37yV3pNe\":{\"layout\":[\"fixed\",\"auto\"]},\"mPy3zrA1V\":{\"layout\":[\"fixed\",\"auto\"]},\"xmQHHns_n\":{\"layout\":[\"fixed\",\"auto\"]},\"z85sZFmvv\":{\"layout\":[\"fixed\",\"auto\"]},\"RntQgjFYE\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerVariables {\"pW6hGUTQ7\":\"fAQQuestion\",\"iS5cEE2Kk\":\"fAQAnswer\",\"OEszT_6kN\":\"fAQContent\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerpbRtJ_R1i=withCSS(Component,css,\"framer-nE1fa\");export default FramerpbRtJ_R1i;FramerpbRtJ_R1i.displayName=\"FAQ\";FramerpbRtJ_R1i.defaultProps={height:60,width:730};addPropertyControls(FramerpbRtJ_R1i,{variant:{options:[\"qLHlqXO92\",\"dvEgTFVbc\",\"GyQgv1ZH2\",\"g37yV3pNe\",\"mPy3zrA1V\",\"xmQHHns_n\",\"z85sZFmvv\",\"RntQgjFYE\"],optionTitles:[\"FAQ Summary Question\",\"FAQ Summary Answer\",\"FAQ Question\",\"FAQ Answer\",\"FAQ Mobile Summary\",\"FAQ Mobile Summary Question\",\"FAQ  Mobile Question\",\"FAQ  Mobile Answer\"],title:\"Variant\",type:ControlType.Enum},pW6hGUTQ7:{defaultValue:\"What is your refund policy?\",description:\"FAQ Question\",displayTextArea:false,title:\"FAQ Question\",type:ControlType.String},iS5cEE2Kk:{defaultValue:\"CreatorHQ is a foundational operating system. It's actually better to start using CreatorHQ sooner rather than later so that you can grow INTO it (rather than migrating existing systems into it later). It's easy enough to merge things INTO CreatorHQ, but there is no reason to wait until any point before starting to use it.\",displayTextArea:false,title:\"FAQ Answer\",type:ControlType.String},OEszT_6kN:{defaultValue:\"<p>We are not offering refunds for CreatorHQ.</p><p>The mechanics of selling a Notion template means that I have no ability to *revoke* access to CreatorHQ once you\u2019ve purchased. So if I offered a refund, it would be a prime target for abuse. And, unfortunately, there are a lot of people out there who purchase Notion templates with the intention to ask for refunds.</p><p>Now, if you've gotten this far, there's a good chance you already know me and what I\u2019m about. </p><p>I take integrity very seriously, which means I don\u2019t stretch the truth or over-promise. As a result, I can count on one hand the number of refunds I\u2019ve ever had to offer to disappointed customers.</p><p>If everything you\u2019ve seen here has you interested in CreatorHQ, you will not be disappointed. If you recognize that this is a product built in Notion and you\u2019re comfortable using (or learning) Notion, you will not be disappointed. </p><p>But if you\u2019re on the fence, do not purchase.</p><p>If you\u2019re unwilling to use Notion, do not purchase.</p><p>If you can\u2019t afford CreatorHQ, do not purchase.</p><p>Thanks for your understanding!</p>\",title:\"FAQ Content\",type:ControlType.RichText}});addFonts(FramerpbRtJ_R1i,[{explicitInter:true,fonts:[{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/5vvr9Vy74if2I6bQbJvbw7SY1pQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/EOr0mi4hNtlgWNn9if640EZzXCo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Y9k9QrlZAqio88Klkmbd8VoMQc.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/OYrD2tBIBPvoJXiIHnLoOXnY9M.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/JeYwfuaPfZHQhEG8U5gtPDZ7WQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/vQyevYAyHtARFwPqUzQGpnDs.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/b6Y37FthZeALduNqHicBT6FutY.woff2\",weight:\"400\"}]},...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts),...getFontsFromSharedStyle(sharedStyle2.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerpbRtJ_R1i\",\"slots\":[],\"annotations\":{\"framerIntrinsicWidth\":\"730\",\"framerVariables\":\"{\\\"pW6hGUTQ7\\\":\\\"fAQQuestion\\\",\\\"iS5cEE2Kk\\\":\\\"fAQAnswer\\\",\\\"OEszT_6kN\\\":\\\"fAQContent\\\"}\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"dvEgTFVbc\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"GyQgv1ZH2\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"g37yV3pNe\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"mPy3zrA1V\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"xmQHHns_n\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"z85sZFmvv\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"RntQgjFYE\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerComponentViewportWidth\":\"true\",\"framerImmutableVariables\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerIntrinsicHeight\":\"60\",\"framerContractVersion\":\"1\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./pbRtJ_R1i.map", "// Generated by Framer (3c7cdfa)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,RichText,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import FAQ from\"https://framerusercontent.com/modules/ISDblTQkrx18SxGBuZUx/iYAEMJzcPTSfOpcWfkJ7/pbRtJ_R1i.js\";const FAQFonts=getFonts(FAQ);const cycleOrder=[\"p1na7IxIf\",\"u0XOLYjk6\",\"gqWVplBqC\"];const serializationHash=\"framer-ZHD9Q\";const variantClassNames={gqWVplBqC:\"framer-v-3rhwif\",p1na7IxIf:\"framer-v-1e25blc\",u0XOLYjk6:\"framer-v-1r8an9k\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={bounce:.2,delay:0,duration:.4,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={Desktop:\"p1na7IxIf\",Phone:\"gqWVplBqC\",Tablet:\"u0XOLYjk6\"};const getProps=({height,id,width,...props})=>{var _humanReadableVariantMap_props_variant,_ref;return{...props,variant:(_ref=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref!==void 0?_ref:\"p1na7IxIf\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"p1na7IxIf\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const ref1=React.useRef(null);const defaultLayoutId=React.useId();const sharedStyleClassNames=[];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(motion.div,{...restProps,...gestureHandlers,className:cx(serializationHash,...sharedStyleClassNames,\"framer-1e25blc\",className,classNames),\"data-framer-name\":\"Desktop\",layoutDependency:layoutDependency,layoutId:\"p1na7IxIf\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{backgroundColor:\"rgb(246, 247, 248)\",...style},...addPropertyOverrides({gqWVplBqC:{\"data-framer-name\":\"Phone\"},u0XOLYjk6:{\"data-framer-name\":\"Tablet\"}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-hj9g8o\",\"data-framer-name\":\"Container\",layoutDependency:layoutDependency,layoutId:\"w6mWg4HhN\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1rfctha\",\"data-framer-name\":\"Title Wrap\",layoutDependency:layoutDependency,layoutId:\"ifkasA1hm\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7U3BhY2UgTW9uby03MDA=\",\"--framer-font-family\":'\"Space Mono\", monospace',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"18px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-d1f6ecfd-2abf-4418-8a05-8920186c6135, rgb(0, 97, 255)))\"},children:\"FAQS\"})}),className:\"framer-qfm878\",fonts:[\"GF;Space Mono-700\"],layoutDependency:layoutDependency,layoutId:\"wGAJUozQt\",style:{\"--extracted-r6o4lv\":\"var(--token-d1f6ecfd-2abf-4418-8a05-8920186c6135, rgb(0, 97, 255))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h2,{style:{\"--font-selector\":\"Q1VTVE9NO0RlZ3VsYXIgVGV4dCBCb2xk\",\"--framer-font-family\":'\"Degular Text Bold\", \"Degular Text Bold Placeholder\", sans-serif',\"--framer-font-size\":\"46px\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"50px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-1of0zx5, var(--token-406ee2a1-9c29-42c5-961e-cfe02a30aaf7, rgb(18, 18, 18)))\"},children:\"Frequently asked questions\"})}),className:\"framer-o4ywco\",fonts:[\"CUSTOM;Degular Text Bold\"],layoutDependency:layoutDependency,layoutId:\"p1nMONI_R\",style:{\"--extracted-1of0zx5\":\"var(--token-406ee2a1-9c29-42c5-961e-cfe02a30aaf7, rgb(18, 18, 18))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-16yli49\",\"data-framer-name\":\"Faq Wrap\",layoutDependency:layoutDependency,layoutId:\"kvITzkghc\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:60,width:`min(max(${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"}, 1px), 730px)`,y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+(104+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||1158)-224-930)/2)+0+150+0+0,...addPropertyOverrides({gqWVplBqC:{width:`min(max(${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} - 40px, 1px), 730px)`,y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+(80+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||1434)-200-900)/2)+0+120+0+0},u0XOLYjk6:{width:`min(max(${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} - 40px, 1px), 730px)`,y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+(80+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||1144)-240-900)/2)+0+120+0+0}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-11xbw0b-container\",layoutDependency:layoutDependency,layoutId:\"hIfDJeCzE-container\",children:/*#__PURE__*/_jsx(FAQ,{height:\"100%\",id:\"hIfDJeCzE\",iS5cEE2Kk:\"CreatorHQ is a foundational operating system. It's actually better to start using CreatorHQ sooner rather than later so that you can grow INTO it (rather than migrating existing systems into it later). It's easy enough to merge things INTO CreatorHQ, but there is no reason to wait until any point before starting to use it.\",layoutId:\"hIfDJeCzE\",OEszT_6kN:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{children:\"We are not offering refunds for CreatorHQ.\"}),/*#__PURE__*/_jsx(\"p\",{children:\"The mechanics of selling a Notion template means that I have no ability to *revoke* access to CreatorHQ once you\u2019ve purchased. So if I offered a refund, it would be a prime target for abuse. And, unfortunately, there are a lot of people out there who purchase Notion templates with the intention to ask for refunds.\"}),/*#__PURE__*/_jsx(\"p\",{children:\"Now, if you've gotten this far, there's a good chance you already know me and what I\u2019m about. \"}),/*#__PURE__*/_jsx(\"p\",{children:\"I take integrity very seriously, which means I don\u2019t stretch the truth or over-promise. As a result, I can count on one hand the number of refunds I\u2019ve ever had to offer to disappointed customers.\"}),/*#__PURE__*/_jsx(\"p\",{children:\"If everything you\u2019ve seen here has you interested in CreatorHQ, you will not be disappointed. If you recognize that this is a product built in Notion and you\u2019re comfortable using (or learning) Notion, you will not be disappointed. \"}),/*#__PURE__*/_jsx(\"p\",{children:\"But if you\u2019re on the fence, do not purchase.\"}),/*#__PURE__*/_jsx(\"p\",{children:\"If you\u2019re unwilling to use Notion, do not purchase.\"}),/*#__PURE__*/_jsx(\"p\",{children:\"If you can\u2019t afford CreatorHQ, do not purchase.\"}),/*#__PURE__*/_jsx(\"p\",{children:\"Thanks for your understanding!\"})]}),pW6hGUTQ7:\"What is your refund policy?\",style:{width:\"100%\"},variant:\"qLHlqXO92\",width:\"100%\",...addPropertyOverrides({gqWVplBqC:{variant:\"xmQHHns_n\"}},baseVariant,gestureVariant)})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:60,width:`min(max(${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"}, 1px), 730px)`,y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+(104+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||1158)-224-930)/2)+0+150+0+72,...addPropertyOverrides({gqWVplBqC:{width:`min(max(${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} - 40px, 1px), 730px)`,y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+(80+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||1434)-200-900)/2)+0+120+0+72},u0XOLYjk6:{width:`min(max(${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} - 40px, 1px), 730px)`,y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+(80+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||1144)-240-900)/2)+0+120+0+72}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-gxp7ki-container\",layoutDependency:layoutDependency,layoutId:\"c6oP9cQg1-container\",children:/*#__PURE__*/_jsx(FAQ,{height:\"100%\",id:\"c6oP9cQg1\",iS5cEE2Kk:\"CreatorHQ is a foundational operating system. It's actually better to start using CreatorHQ sooner rather than later so that you can grow INTO it (rather than migrating existing systems into it later). It's easy enough to merge things INTO CreatorHQ, but there is no reason to wait until any point before starting to use it.\",layoutId:\"c6oP9cQg1\",OEszT_6kN:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{children:\"We are not offering refunds for CreatorHQ.\"}),/*#__PURE__*/_jsx(\"p\",{children:\"The mechanics of selling a Notion template means that I have no ability to *revoke* access to CreatorHQ once you\u2019ve purchased. So if I offered a refund, it would be a prime target for abuse. And, unfortunately, there are a lot of people out there who purchase Notion templates with the intention to ask for refunds.\"}),/*#__PURE__*/_jsx(\"p\",{children:\"Now, if you've gotten this far, there's a good chance you already know me and what I\u2019m about. \"}),/*#__PURE__*/_jsx(\"p\",{children:\"I take integrity very seriously, which means I don\u2019t stretch the truth or over-promise. As a result, I can count on one hand the number of refunds I\u2019ve ever had to offer to disappointed customers.\"}),/*#__PURE__*/_jsx(\"p\",{children:\"If everything you\u2019ve seen here has you interested in CreatorHQ, you will not be disappointed. If you recognize that this is a product built in Notion and you\u2019re comfortable using (or learning) Notion, you will not be disappointed. \"}),/*#__PURE__*/_jsx(\"p\",{children:\"But if you\u2019re on the fence, do not purchase.\"}),/*#__PURE__*/_jsx(\"p\",{children:\"If you\u2019re unwilling to use Notion, do not purchase.\"}),/*#__PURE__*/_jsx(\"p\",{children:\"If you can\u2019t afford CreatorHQ, do not purchase.\"}),/*#__PURE__*/_jsx(\"p\",{children:\"Thanks for your understanding!\"})]}),pW6hGUTQ7:\"Does this work for beginners?\",style:{width:\"100%\"},variant:\"GyQgv1ZH2\",width:\"100%\",...addPropertyOverrides({gqWVplBqC:{variant:\"z85sZFmvv\"}},baseVariant,gestureVariant)})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:60,width:`min(max(${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"}, 1px), 730px)`,y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+(104+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||1158)-224-930)/2)+0+150+0+144,...addPropertyOverrides({gqWVplBqC:{width:`min(max(${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} - 40px, 1px), 730px)`,y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+(80+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||1434)-200-900)/2)+0+120+0+144},u0XOLYjk6:{width:`min(max(${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} - 40px, 1px), 730px)`,y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+(80+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||1144)-240-900)/2)+0+120+0+144}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-m0yvq4-container\",layoutDependency:layoutDependency,layoutId:\"oOt2Mxd2t-container\",children:/*#__PURE__*/_jsx(FAQ,{height:\"100%\",id:\"oOt2Mxd2t\",iS5cEE2Kk:\"Yes! CreatorHQ works just as well for any niche or platform you publish on.\",layoutId:\"oOt2Mxd2t\",OEszT_6kN:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{children:\"We are not offering refunds for CreatorHQ.\"}),/*#__PURE__*/_jsx(\"p\",{children:\"The mechanics of selling a Notion template means that I have no ability to *revoke* access to CreatorHQ once you\u2019ve purchased. So if I offered a refund, it would be a prime target for abuse. And, unfortunately, there are a lot of people out there who purchase Notion templates with the intention to ask for refunds.\"}),/*#__PURE__*/_jsx(\"p\",{children:\"Now, if you've gotten this far, there's a good chance you already know me and what I\u2019m about. \"}),/*#__PURE__*/_jsx(\"p\",{children:\"I take integrity very seriously, which means I don\u2019t stretch the truth or over-promise. As a result, I can count on one hand the number of refunds I\u2019ve ever had to offer to disappointed customers.\"}),/*#__PURE__*/_jsx(\"p\",{children:\"If everything you\u2019ve seen here has you interested in CreatorHQ, you will not be disappointed. If you recognize that this is a product built in Notion and you\u2019re comfortable using (or learning) Notion, you will not be disappointed. \"}),/*#__PURE__*/_jsx(\"p\",{children:\"But if you\u2019re on the fence, do not purchase.\"}),/*#__PURE__*/_jsx(\"p\",{children:\"If you\u2019re unwilling to use Notion, do not purchase.\"}),/*#__PURE__*/_jsx(\"p\",{children:\"If you can\u2019t afford CreatorHQ, do not purchase.\"}),/*#__PURE__*/_jsx(\"p\",{children:\"Thanks for your understanding!\"})]}),pW6hGUTQ7:\"Will this work for any creator?\",style:{width:\"100%\"},variant:\"GyQgv1ZH2\",width:\"100%\",...addPropertyOverrides({gqWVplBqC:{variant:\"z85sZFmvv\"}},baseVariant,gestureVariant)})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:60,width:`min(max(${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"}, 1px), 730px)`,y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+(104+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||1158)-224-930)/2)+0+150+0+216,...addPropertyOverrides({gqWVplBqC:{width:`min(max(${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} - 40px, 1px), 730px)`,y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+(80+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||1434)-200-900)/2)+0+120+0+216},u0XOLYjk6:{width:`min(max(${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} - 40px, 1px), 730px)`,y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+(80+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||1144)-240-900)/2)+0+120+0+216}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1ft1sib-container\",layoutDependency:layoutDependency,layoutId:\"PBL5D89qj-container\",children:/*#__PURE__*/_jsx(FAQ,{height:\"100%\",id:\"PBL5D89qj\",iS5cEE2Kk:\"Yes. CreatorHQ is completely built in Notion.\",layoutId:\"PBL5D89qj\",OEszT_6kN:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{children:\"We are not offering refunds for CreatorHQ.\"}),/*#__PURE__*/_jsx(\"p\",{children:\"The mechanics of selling a Notion template means that I have no ability to *revoke* access to CreatorHQ once you\u2019ve purchased. So if I offered a refund, it would be a prime target for abuse. And, unfortunately, there are a lot of people out there who purchase Notion templates with the intention to ask for refunds.\"}),/*#__PURE__*/_jsx(\"p\",{children:\"Now, if you've gotten this far, there's a good chance you already know me and what I\u2019m about. \"}),/*#__PURE__*/_jsx(\"p\",{children:\"I take integrity very seriously, which means I don\u2019t stretch the truth or over-promise. As a result, I can count on one hand the number of refunds I\u2019ve ever had to offer to disappointed customers.\"}),/*#__PURE__*/_jsx(\"p\",{children:\"If everything you\u2019ve seen here has you interested in CreatorHQ, you will not be disappointed. If you recognize that this is a product built in Notion and you\u2019re comfortable using (or learning) Notion, you will not be disappointed. \"}),/*#__PURE__*/_jsx(\"p\",{children:\"But if you\u2019re on the fence, do not purchase.\"}),/*#__PURE__*/_jsx(\"p\",{children:\"If you\u2019re unwilling to use Notion, do not purchase.\"}),/*#__PURE__*/_jsx(\"p\",{children:\"If you can\u2019t afford CreatorHQ, do not purchase.\"}),/*#__PURE__*/_jsx(\"p\",{children:\"Thanks for your understanding!\"})]}),pW6hGUTQ7:\"Do I have to use Notion for CreatorHQ?\",style:{width:\"100%\"},variant:\"GyQgv1ZH2\",width:\"100%\",...addPropertyOverrides({gqWVplBqC:{variant:\"z85sZFmvv\"}},baseVariant,gestureVariant)})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:60,width:`min(max(${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"}, 1px), 730px)`,y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+(104+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||1158)-224-930)/2)+0+150+0+288,...addPropertyOverrides({gqWVplBqC:{width:`min(max(${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} - 40px, 1px), 730px)`,y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+(80+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||1434)-200-900)/2)+0+120+0+288},u0XOLYjk6:{width:`min(max(${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} - 40px, 1px), 730px)`,y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+(80+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||1144)-240-900)/2)+0+120+0+288}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-td6gdb-container\",layoutDependency:layoutDependency,layoutId:\"FNEoLEBxG-container\",children:/*#__PURE__*/_jsx(FAQ,{height:\"100%\",id:\"FNEoLEBxG\",iS5cEE2Kk:\"We didn\u2019t always use Notion. Everyone who does use Notion started somewhere! We\u2019ve designed CreatorHQ to be friendly to Notion newbies. If you\u2019re Notion-curious, this is a great starting point that helps to teach you Notion as you go. And, since you\u2019re starting with a blank slate, CreatorHQ will be even easier to implement.\",layoutId:\"FNEoLEBxG\",OEszT_6kN:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{children:\"We are not offering refunds for CreatorHQ.\"}),/*#__PURE__*/_jsx(\"p\",{children:\"The mechanics of selling a Notion template means that I have no ability to *revoke* access to CreatorHQ once you\u2019ve purchased. So if I offered a refund, it would be a prime target for abuse. And, unfortunately, there are a lot of people out there who purchase Notion templates with the intention to ask for refunds.\"}),/*#__PURE__*/_jsx(\"p\",{children:\"Now, if you've gotten this far, there's a good chance you already know me and what I\u2019m about. \"}),/*#__PURE__*/_jsx(\"p\",{children:\"I take integrity very seriously, which means I don\u2019t stretch the truth or over-promise. As a result, I can count on one hand the number of refunds I\u2019ve ever had to offer to disappointed customers.\"}),/*#__PURE__*/_jsx(\"p\",{children:\"If everything you\u2019ve seen here has you interested in CreatorHQ, you will not be disappointed. If you recognize that this is a product built in Notion and you\u2019re comfortable using (or learning) Notion, you will not be disappointed. \"}),/*#__PURE__*/_jsx(\"p\",{children:\"But if you\u2019re on the fence, do not purchase.\"}),/*#__PURE__*/_jsx(\"p\",{children:\"If you\u2019re unwilling to use Notion, do not purchase.\"}),/*#__PURE__*/_jsx(\"p\",{children:\"If you can\u2019t afford CreatorHQ, do not purchase.\"}),/*#__PURE__*/_jsx(\"p\",{children:\"Thanks for your understanding!\"})]}),pW6hGUTQ7:\"What if I don\u2019t use Notion currently?\",style:{width:\"100%\"},variant:\"GyQgv1ZH2\",width:\"100%\",...addPropertyOverrides({gqWVplBqC:{variant:\"z85sZFmvv\"}},baseVariant,gestureVariant)})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:60,width:`min(max(${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"}, 1px), 730px)`,y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+(104+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||1158)-224-930)/2)+0+150+0+360,...addPropertyOverrides({gqWVplBqC:{width:`min(max(${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} - 40px, 1px), 730px)`,y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+(80+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||1434)-200-900)/2)+0+120+0+360},u0XOLYjk6:{width:`min(max(${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} - 40px, 1px), 730px)`,y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+(80+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||1144)-240-900)/2)+0+120+0+360}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1t1kpzc-container\",layoutDependency:layoutDependency,layoutId:\"kDgfYbcTu-container\",children:/*#__PURE__*/_jsx(FAQ,{height:\"100%\",id:\"kDgfYbcTu\",iS5cEE2Kk:\"Yes! CreatorHQ was designed to work even on Notion's free plans.\",layoutId:\"kDgfYbcTu\",OEszT_6kN:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{children:\"We are not offering refunds for CreatorHQ.\"}),/*#__PURE__*/_jsx(\"p\",{children:\"The mechanics of selling a Notion template means that I have no ability to *revoke* access to CreatorHQ once you\u2019ve purchased. So if I offered a refund, it would be a prime target for abuse. And, unfortunately, there are a lot of people out there who purchase Notion templates with the intention to ask for refunds.\"}),/*#__PURE__*/_jsx(\"p\",{children:\"Now, if you've gotten this far, there's a good chance you already know me and what I\u2019m about. \"}),/*#__PURE__*/_jsx(\"p\",{children:\"I take integrity very seriously, which means I don\u2019t stretch the truth or over-promise. As a result, I can count on one hand the number of refunds I\u2019ve ever had to offer to disappointed customers.\"}),/*#__PURE__*/_jsx(\"p\",{children:\"If everything you\u2019ve seen here has you interested in CreatorHQ, you will not be disappointed. If you recognize that this is a product built in Notion and you\u2019re comfortable using (or learning) Notion, you will not be disappointed. \"}),/*#__PURE__*/_jsx(\"p\",{children:\"But if you\u2019re on the fence, do not purchase.\"}),/*#__PURE__*/_jsx(\"p\",{children:\"If you\u2019re unwilling to use Notion, do not purchase.\"}),/*#__PURE__*/_jsx(\"p\",{children:\"If you can\u2019t afford CreatorHQ, do not purchase.\"}),/*#__PURE__*/_jsx(\"p\",{children:\"Thanks for your understanding!\"})]}),pW6hGUTQ7:\"Does this work with a Notion free plan?\",style:{width:\"100%\"},variant:\"GyQgv1ZH2\",width:\"100%\",...addPropertyOverrides({gqWVplBqC:{variant:\"z85sZFmvv\"}},baseVariant,gestureVariant)})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:60,width:`min(max(${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"}, 1px), 730px)`,y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+(104+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||1158)-224-930)/2)+0+150+0+432,...addPropertyOverrides({gqWVplBqC:{width:`min(max(${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} - 40px, 1px), 730px)`,y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+(80+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||1434)-200-900)/2)+0+120+0+432},u0XOLYjk6:{width:`min(max(${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} - 40px, 1px), 730px)`,y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+(80+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||1144)-240-900)/2)+0+120+0+432}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-15nraf5-container\",layoutDependency:layoutDependency,layoutId:\"fU2H9FUiT-container\",children:/*#__PURE__*/_jsx(FAQ,{height:\"100%\",id:\"fU2H9FUiT\",iS5cEE2Kk:\"Great! You should be well-equipped to dive right in. We know that you may want to bring all of your pages together, so we\u2019ve prepared a short guide on how to migrate your data into CreatorHQ. During our own testing, we downloaded a fresh version of CreatorHQ and migrated our own data into it \u2013 you can do it too!\",layoutId:\"fU2H9FUiT\",OEszT_6kN:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{children:/*#__PURE__*/_jsx(\"br\",{className:\"trailing-break\"})})}),pW6hGUTQ7:\"What if I'm already using Notion?\",style:{width:\"100%\"},variant:\"GyQgv1ZH2\",width:\"100%\",...addPropertyOverrides({gqWVplBqC:{variant:\"z85sZFmvv\"}},baseVariant,gestureVariant)})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:60,width:`min(max(${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"}, 1px), 730px)`,y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+(104+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||1158)-224-930)/2)+0+150+0+504,...addPropertyOverrides({gqWVplBqC:{width:`min(max(${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} - 40px, 1px), 730px)`,y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+(80+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||1434)-200-900)/2)+0+120+0+504},u0XOLYjk6:{width:`min(max(${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} - 40px, 1px), 730px)`,y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+(80+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||1144)-240-900)/2)+0+120+0+504}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1cc72wf-container\",layoutDependency:layoutDependency,layoutId:\"qWTrnUSTc-container\",children:/*#__PURE__*/_jsx(FAQ,{height:\"100%\",id:\"qWTrnUSTc\",iS5cEE2Kk:\"CreatorHQ is a foundational operating system. It's actually better to start using CreatorHQ sooner rather than later so that you can grow INTO it (rather than migrating existing systems into it later). It's easy enough to merge things INTO CreatorHQ, but there is no reason to wait until any point before starting to use it.\",layoutId:\"qWTrnUSTc\",OEszT_6kN:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{children:\"One of our biggest headaches using Notion was collaboration. Do we invite Guests or add Members? How do we give them access to the Pages we want but not the Pages we don\u2019t want?\"}),/*#__PURE__*/_jsx(\"p\",{children:\"It was a mess.\"}),/*#__PURE__*/_jsx(\"p\",{children:\"So we built CreatorHQ to make sharing easier by grouping your pages into Folders that make sharing quick and intuitive. This system is also built to accommodate Guest sharing vs. Member sharing, so it doesn\u2019t impact your Notion bill.\"})]}),pW6hGUTQ7:\"Does CreatorHQ work for teams?\",style:{width:\"100%\"},variant:\"qLHlqXO92\",width:\"100%\",...addPropertyOverrides({gqWVplBqC:{variant:\"z85sZFmvv\"}},baseVariant,gestureVariant)})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:60,width:`min(max(${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"}, 1px), 730px)`,y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+(104+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||1158)-224-930)/2)+0+150+0+576,...addPropertyOverrides({gqWVplBqC:{width:`min(max(${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} - 40px, 1px), 730px)`,y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+(80+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||1434)-200-900)/2)+0+120+0+576},u0XOLYjk6:{width:`min(max(${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} - 40px, 1px), 730px)`,y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+(80+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||1144)-240-900)/2)+0+120+0+576}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1iaekcl-container\",layoutDependency:layoutDependency,layoutId:\"CS2stbzh1-container\",children:/*#__PURE__*/_jsx(FAQ,{height:\"100%\",id:\"CS2stbzh1\",iS5cEE2Kk:\"That\u2019s totally up to you! You can copy the entire CreatorHQ setup into your Notion account and choose the aspects you want to use, or you can proactively copy the Pages you\u2019re most interested in. \",layoutId:\"CS2stbzh1\",OEszT_6kN:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{children:\"We are not offering refunds for CreatorHQ.\"}),/*#__PURE__*/_jsx(\"p\",{children:\"The mechanics of selling a Notion template means that I have no ability to *revoke* access to CreatorHQ once you\u2019ve purchased. So if I offered a refund, it would be a prime target for abuse. And, unfortunately, there are a lot of people out there who purchase Notion templates with the intention to ask for refunds.\"}),/*#__PURE__*/_jsx(\"p\",{children:\"Now, if you've gotten this far, there's a good chance you already know me and what I\u2019m about. \"}),/*#__PURE__*/_jsx(\"p\",{children:\"I take integrity very seriously, which means I don\u2019t stretch the truth or over-promise. As a result, I can count on one hand the number of refunds I\u2019ve ever had to offer to disappointed customers.\"}),/*#__PURE__*/_jsx(\"p\",{children:\"If everything you\u2019ve seen here has you interested in CreatorHQ, you will not be disappointed. If you recognize that this is a product built in Notion and you\u2019re comfortable using (or learning) Notion, you will not be disappointed. \"}),/*#__PURE__*/_jsx(\"p\",{children:\"But if you\u2019re on the fence, do not purchase.\"}),/*#__PURE__*/_jsx(\"p\",{children:\"If you\u2019re unwilling to use Notion, do not purchase.\"}),/*#__PURE__*/_jsx(\"p\",{children:\"If you can\u2019t afford CreatorHQ, do not purchase.\"}),/*#__PURE__*/_jsx(\"p\",{children:\"Thanks for your understanding!\"})]}),pW6hGUTQ7:\"What if I only want to use part of CreatorHQ?\",style:{width:\"100%\"},variant:\"GyQgv1ZH2\",width:\"100%\",...addPropertyOverrides({gqWVplBqC:{variant:\"z85sZFmvv\"}},baseVariant,gestureVariant)})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:60,width:`min(max(${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"}, 1px), 730px)`,y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+(104+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||1158)-224-930)/2)+0+150+0+648,...addPropertyOverrides({gqWVplBqC:{width:`min(max(${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} - 40px, 1px), 730px)`,y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+(80+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||1434)-200-900)/2)+0+120+0+648},u0XOLYjk6:{width:`min(max(${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} - 40px, 1px), 730px)`,y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+(80+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||1144)-240-900)/2)+0+120+0+648}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-3kw5h1-container\",layoutDependency:layoutDependency,layoutId:\"QZncZn_HY-container\",children:/*#__PURE__*/_jsx(FAQ,{height:\"100%\",id:\"QZncZn_HY\",iS5cEE2Kk:\"Yes! CreatorHQ is included when you join The Lab (our community for creators)\",layoutId:\"QZncZn_HY\",OEszT_6kN:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{children:/*#__PURE__*/_jsx(\"br\",{className:\"trailing-break\"})})}),pW6hGUTQ7:\"Is this included in The Lab?\",style:{width:\"100%\"},variant:\"z85sZFmvv\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:60,width:`min(max(${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"}, 1px), 730px)`,y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+(104+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||1158)-224-930)/2)+0+150+0+720,...addPropertyOverrides({gqWVplBqC:{width:`min(max(${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} - 40px, 1px), 730px)`,y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+(80+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||1434)-200-900)/2)+0+120+0+720},u0XOLYjk6:{width:`min(max(${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} - 40px, 1px), 730px)`,y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+(80+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||1144)-240-900)/2)+0+120+0+720}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1tqu5vi-container\",layoutDependency:layoutDependency,layoutId:\"swbOLq0Z2-container\",children:/*#__PURE__*/_jsx(FAQ,{height:\"100%\",id:\"swbOLq0Z2\",iS5cEE2Kk:\"Super kind of you to ask! Creator Science is actually a family business run by me and my wife, Mallory. The proceeds of CreatorHQ support the ongoing production of Creator Science content (namely our YouTube videos and podcast) as well as our family. This summer, we\u2019re welcoming our first child into the Clousehold, and CreatorHQ is playing an integral role in allowing us to take family leave.\",layoutId:\"swbOLq0Z2\",OEszT_6kN:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{children:\"We are not offering refunds for CreatorHQ.\"}),/*#__PURE__*/_jsx(\"p\",{children:\"The mechanics of selling a Notion template means that I have no ability to *revoke* access to CreatorHQ once you\u2019ve purchased. So if I offered a refund, it would be a prime target for abuse. And, unfortunately, there are a lot of people out there who purchase Notion templates with the intention to ask for refunds.\"}),/*#__PURE__*/_jsx(\"p\",{children:\"Now, if you've gotten this far, there's a good chance you already know me and what I\u2019m about. \"}),/*#__PURE__*/_jsx(\"p\",{children:\"I take integrity very seriously, which means I don\u2019t stretch the truth or over-promise. As a result, I can count on one hand the number of refunds I\u2019ve ever had to offer to disappointed customers.\"}),/*#__PURE__*/_jsx(\"p\",{children:\"If everything you\u2019ve seen here has you interested in CreatorHQ, you will not be disappointed. If you recognize that this is a product built in Notion and you\u2019re comfortable using (or learning) Notion, you will not be disappointed. \"}),/*#__PURE__*/_jsx(\"p\",{children:\"But if you\u2019re on the fence, do not purchase.\"}),/*#__PURE__*/_jsx(\"p\",{children:\"If you\u2019re unwilling to use Notion, do not purchase.\"}),/*#__PURE__*/_jsx(\"p\",{children:\"If you can\u2019t afford CreatorHQ, do not purchase.\"}),/*#__PURE__*/_jsx(\"p\",{children:\"Thanks for your understanding!\"})]}),pW6hGUTQ7:\"How does Creator Science use this revenue?\",style:{width:\"100%\"},variant:\"GyQgv1ZH2\",width:\"100%\",...addPropertyOverrides({gqWVplBqC:{variant:\"z85sZFmvv\"}},baseVariant,gestureVariant)})})})]})]})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-ZHD9Q.framer-1mo3vts, .framer-ZHD9Q .framer-1mo3vts { display: block; }\",\".framer-ZHD9Q.framer-1e25blc { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: visible; padding: 104px 0px 120px 0px; position: relative; width: 1700px; }\",\".framer-ZHD9Q .framer-hj9g8o { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 70px; height: min-content; justify-content: center; max-width: 730px; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-ZHD9Q .framer-1rfctha, .framer-ZHD9Q .framer-16yli49 { 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: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-ZHD9Q .framer-qfm878 { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-ZHD9Q .framer-o4ywco { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-ZHD9Q .framer-11xbw0b-container, .framer-ZHD9Q .framer-gxp7ki-container, .framer-ZHD9Q .framer-m0yvq4-container, .framer-ZHD9Q .framer-1ft1sib-container, .framer-ZHD9Q .framer-td6gdb-container, .framer-ZHD9Q .framer-1t1kpzc-container, .framer-ZHD9Q .framer-15nraf5-container, .framer-ZHD9Q .framer-1cc72wf-container, .framer-ZHD9Q .framer-1iaekcl-container, .framer-ZHD9Q .framer-3kw5h1-container, .framer-ZHD9Q .framer-1tqu5vi-container { flex: none; height: auto; position: relative; width: 100%; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-ZHD9Q.framer-1e25blc, .framer-ZHD9Q .framer-hj9g8o, .framer-ZHD9Q .framer-1rfctha, .framer-ZHD9Q .framer-16yli49 { gap: 0px; } .framer-ZHD9Q.framer-1e25blc > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } .framer-ZHD9Q.framer-1e25blc > :first-child { margin-left: 0px; } .framer-ZHD9Q.framer-1e25blc > :last-child { margin-right: 0px; } .framer-ZHD9Q .framer-hj9g8o > * { margin: 0px; margin-bottom: calc(70px / 2); margin-top: calc(70px / 2); } .framer-ZHD9Q .framer-hj9g8o > :first-child, .framer-ZHD9Q .framer-1rfctha > :first-child, .framer-ZHD9Q .framer-16yli49 > :first-child { margin-top: 0px; } .framer-ZHD9Q .framer-hj9g8o > :last-child, .framer-ZHD9Q .framer-1rfctha > :last-child, .framer-ZHD9Q .framer-16yli49 > :last-child { margin-bottom: 0px; } .framer-ZHD9Q .framer-1rfctha > *, .framer-ZHD9Q .framer-16yli49 > * { margin: 0px; margin-bottom: calc(12px / 2); margin-top: calc(12px / 2); } }\",\".framer-ZHD9Q.framer-v-1r8an9k.framer-1e25blc { padding: 80px 20px 160px 20px; width: 810px; }\",\".framer-ZHD9Q.framer-v-1r8an9k .framer-hj9g8o, .framer-ZHD9Q.framer-v-3rhwif .framer-hj9g8o { gap: 40px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-ZHD9Q.framer-v-1r8an9k .framer-hj9g8o { gap: 0px; } .framer-ZHD9Q.framer-v-1r8an9k .framer-hj9g8o > * { margin: 0px; margin-bottom: calc(40px / 2); margin-top: calc(40px / 2); } .framer-ZHD9Q.framer-v-1r8an9k .framer-hj9g8o > :first-child { margin-top: 0px; } .framer-ZHD9Q.framer-v-1r8an9k .framer-hj9g8o > :last-child { margin-bottom: 0px; } }\",\".framer-ZHD9Q.framer-v-3rhwif.framer-1e25blc { padding: 80px 20px 120px 20px; width: 390px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-ZHD9Q.framer-v-3rhwif .framer-hj9g8o { gap: 0px; } .framer-ZHD9Q.framer-v-3rhwif .framer-hj9g8o > * { margin: 0px; margin-bottom: calc(40px / 2); margin-top: calc(40px / 2); } .framer-ZHD9Q.framer-v-3rhwif .framer-hj9g8o > :first-child { margin-top: 0px; } .framer-ZHD9Q.framer-v-3rhwif .framer-hj9g8o > :last-child { margin-bottom: 0px; } }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 1158\n * @framerIntrinsicWidth 1700\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"u0XOLYjk6\":{\"layout\":[\"fixed\",\"auto\"]},\"gqWVplBqC\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerHWDAZjt0B=withCSS(Component,css,\"framer-ZHD9Q\");export default FramerHWDAZjt0B;FramerHWDAZjt0B.displayName=\"FAQ Section\";FramerHWDAZjt0B.defaultProps={height:1158,width:1700};addPropertyControls(FramerHWDAZjt0B,{variant:{options:[\"p1na7IxIf\",\"u0XOLYjk6\",\"gqWVplBqC\"],optionTitles:[\"Desktop\",\"Tablet\",\"Phone\"],title:\"Variant\",type:ControlType.Enum}});addFonts(FramerHWDAZjt0B,[{explicitInter:true,fonts:[{family:\"Space Mono\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/spacemono/v14/i7dMIFZifjKcF5UAWdDRaPpZYFeQHwyVd3U.woff2\",weight:\"700\"},{family:\"Degular Text Bold\",source:\"custom\",url:\"https://framerusercontent.com/assets/kzxIE4WhTLg9tomWtvmg7Dsvklw.woff\"}]},...FAQFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerHWDAZjt0B\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\",\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicHeight\":\"1158\",\"framerIntrinsicWidth\":\"1700\",\"framerDisplayContentsDiv\":\"false\",\"framerImmutableVariables\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"u0XOLYjk6\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"gqWVplBqC\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./HWDAZjt0B.map", "// Generated by Framer (2b47498)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,getLoadingLazyAtYPosition,Image,RichText,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import BannerButton from\"https://framerusercontent.com/modules/st88pPivHzQIrszrLdyo/GoXE4Lbsj7YfPnNhuXr8/ILlMbfB4O.js\";const BannerButtonFonts=getFonts(BannerButton);const cycleOrder=[\"qc5LGCZNJ\",\"Nu1f7TvOU\",\"KgdC60qld\"];const serializationHash=\"framer-xPlNF\";const variantClassNames={KgdC60qld:\"framer-v-nd44wx\",Nu1f7TvOU:\"framer-v-wbtskq\",qc5LGCZNJ:\"framer-v-udgbpf\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={bounce:.2,delay:0,duration:.4,type:\"spring\"};const transformTemplate1=(_,t)=>`translateX(-50%) ${t}`;const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={Desktop:\"qc5LGCZNJ\",Phone:\"KgdC60qld\",Tablet:\"Nu1f7TvOU\"};const getProps=({height,id,width,...props})=>{var _humanReadableVariantMap_props_variant,_ref;return{...props,variant:(_ref=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref!==void 0?_ref:\"qc5LGCZNJ\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"qc5LGCZNJ\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const ref1=React.useRef(null);const defaultLayoutId=React.useId();const sharedStyleClassNames=[];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(motion.div,{...restProps,...gestureHandlers,className:cx(serializationHash,...sharedStyleClassNames,\"framer-udgbpf\",className,classNames),\"data-framer-name\":\"Desktop\",layoutDependency:layoutDependency,layoutId:\"qc5LGCZNJ\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{backgroundColor:\"rgb(31, 31, 29)\",...style},...addPropertyOverrides({KgdC60qld:{\"data-framer-name\":\"Phone\"},Nu1f7TvOU:{\"data-framer-name\":\"Tablet\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-ekxkyv\",\"data-framer-name\":\"Container\",layoutDependency:layoutDependency,layoutId:\"WL42dk434\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-z4rh5q\",\"data-framer-name\":\"Footer text\",layoutDependency:layoutDependency,layoutId:\"uuhLb6YTP\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-15anbbk\",\"data-framer-name\":\"Image Wrap\",layoutDependency:layoutDependency,layoutId:\"fVvD0UFtE\",...addPropertyOverrides({Nu1f7TvOU:{transformTemplate:transformTemplate1}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+100+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||741)-175-545)/2+0+0)+0+0+-160+0+0),pixelHeight:959,pixelWidth:1206,positionX:\"center\",positionY:\"top\",sizes:\"717px\",src:\"https://framerusercontent.com/images/jR9gRQJuJIc3xYJag6K0RC01zI.png\",srcSet:\"https://framerusercontent.com/images/jR9gRQJuJIc3xYJag6K0RC01zI.png?scale-down-to=512 512w,https://framerusercontent.com/images/jR9gRQJuJIc3xYJag6K0RC01zI.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/jR9gRQJuJIc3xYJag6K0RC01zI.png 1206w\"},className:\"framer-730wlg\",\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"GmK5pL5pl\",...addPropertyOverrides({KgdC60qld:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||723)-80-606.2)/2+0+0)+0+0+-68+0+-14.5),pixelHeight:959,pixelWidth:1206,positionX:\"center\",positionY:\"top\",sizes:`calc(min(${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} - 80px, 1400px) * 1.1161)`,src:\"https://framerusercontent.com/images/jR9gRQJuJIc3xYJag6K0RC01zI.png\",srcSet:\"https://framerusercontent.com/images/jR9gRQJuJIc3xYJag6K0RC01zI.png?scale-down-to=512 512w,https://framerusercontent.com/images/jR9gRQJuJIc3xYJag6K0RC01zI.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/jR9gRQJuJIc3xYJag6K0RC01zI.png 1206w\"}},Nu1f7TvOU:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||772)-80-671)/2+0+0)+0+0+-144.5+0+0),pixelHeight:959,pixelWidth:1206,positionX:\"center\",positionY:\"top\",sizes:\"536px\",src:\"https://framerusercontent.com/images/jR9gRQJuJIc3xYJag6K0RC01zI.png\",srcSet:\"https://framerusercontent.com/images/jR9gRQJuJIc3xYJag6K0RC01zI.png?scale-down-to=512 512w,https://framerusercontent.com/images/jR9gRQJuJIc3xYJag6K0RC01zI.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/jR9gRQJuJIc3xYJag6K0RC01zI.png 1206w\"}}},baseVariant,gestureVariant)})}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-192u45t\",\"data-framer-name\":\"Content Wrap\",layoutDependency:layoutDependency,layoutId:\"pCs1_gyIq\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-mjdu4v\",\"data-framer-name\":\"Title Wrap\",layoutDependency:layoutDependency,layoutId:\"oadwH_5WF\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h5,{style:{\"--font-selector\":\"Q1VTVE9NO0RlZ3VsYXIgVGV4dCBCb2xk\",\"--framer-font-family\":'\"Degular Text Bold\", \"Degular Text Bold Placeholder\", sans-serif',\"--framer-font-size\":\"54px\",\"--framer-letter-spacing\":\"0.32px\",\"--framer-line-height\":\"59px\",\"--framer-text-color\":\"var(--extracted-1lwpl3i, var(--token-19182416-018f-4aaf-8caa-795abe04b4ff, rgb(255, 255, 255)))\"},children:\"The Complete Creator Operating System\"})}),className:\"framer-lwi4sf\",fonts:[\"CUSTOM;Degular Text Bold\"],layoutDependency:layoutDependency,layoutId:\"KwpbG49s1\",style:{\"--extracted-1lwpl3i\":\"var(--token-19182416-018f-4aaf-8caa-795abe04b4ff, rgb(255, 255, 255))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({KgdC60qld:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h5,{style:{\"--font-selector\":\"Q1VTVE9NO0RlZ3VsYXIgVGV4dCBCb2xk\",\"--framer-font-family\":'\"Degular Text Bold\", \"Degular Text Bold Placeholder\", sans-serif',\"--framer-font-size\":\"36px\",\"--framer-letter-spacing\":\"-0.38px\",\"--framer-line-height\":\"120%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-1lwpl3i, var(--token-19182416-018f-4aaf-8caa-795abe04b4ff, rgb(255, 255, 255)))\"},children:\"The Complete Creator Operating System\"})})},Nu1f7TvOU:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h5,{style:{\"--font-selector\":\"Q1VTVE9NO0RlZ3VsYXIgVGV4dCBCb2xk\",\"--framer-font-family\":'\"Degular Text Bold\", \"Degular Text Bold Placeholder\", sans-serif',\"--framer-font-size\":\"54px\",\"--framer-letter-spacing\":\"0.32px\",\"--framer-line-height\":\"59px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-1lwpl3i, var(--token-19182416-018f-4aaf-8caa-795abe04b4ff, rgb(255, 255, 255)))\"},children:\"The Complete Creator Operating System\"})})}},baseVariant,gestureVariant)})}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1x8lvrd\",layoutDependency:layoutDependency,layoutId:\"nM4RfgVHq\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:73,y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+100+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||741)-175-545)/2+0+0)+0+0+0+0+115+0+0,...addPropertyOverrides({KgdC60qld:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||723)-80-606.2)/2+0+0)+0+0+180+0+0+63.199999999999996+0+0},Nu1f7TvOU:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||772)-80-671)/2+0+0)+0+0+270+0+0+99+0+0}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-xw95ia-container\",layoutDependency:layoutDependency,layoutId:\"To83pDaqC-container\",children:/*#__PURE__*/_jsx(BannerButton,{height:\"100%\",i9h0tMlqE:\"https://store.creatorscience.com/buy/28aeab8d-5b53-4840-9055-080794014e8b\",id:\"To83pDaqC\",layoutId:\"To83pDaqC\",variant:\"fdB6OMGxz\",width:\"100%\",...addPropertyOverrides({KgdC60qld:{variant:\"lbE2C1YKC\"}},baseVariant,gestureVariant)})})}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-yn3q1s\",\"data-framer-name\":\"Client Feed Back\",layoutDependency:layoutDependency,layoutId:\"jPNClvOos\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-v5p94z\",\"data-framer-name\":\"Image Wrap\",layoutDependency:layoutDependency,layoutId:\"lKhURbRRx\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"Profile Image\",fit:\"fill\",loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+100+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||741)-175-545)/2+0+0)+0+0+0+0+115+0+97+0+0),pixelHeight:84,pixelWidth:84,src:\"https://framerusercontent.com/images/4XmVWyDYvji64Um2Ij1kjANjjU.png\"},className:\"framer-i54f1i\",\"data-border\":true,\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"yOyJGUJO5\",style:{\"--border-bottom-width\":\"3px\",\"--border-color\":\"rgb(30, 35, 44)\",\"--border-left-width\":\"3px\",\"--border-right-width\":\"3px\",\"--border-style\":\"solid\",\"--border-top-width\":\"3px\",borderBottomLeftRadius:100,borderBottomRightRadius:100,borderTopLeftRadius:100,borderTopRightRadius:100},...addPropertyOverrides({KgdC60qld:{background:{alt:\"Profile Image\",fit:\"fill\",loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||723)-80-606.2)/2+0+0)+0+0+180+0+0+63.199999999999996+0+97+0+0+0),pixelHeight:84,pixelWidth:84,src:\"https://framerusercontent.com/images/4XmVWyDYvji64Um2Ij1kjANjjU.png\"}},Nu1f7TvOU:{background:{alt:\"Profile Image\",fit:\"fill\",loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||772)-80-671)/2+0+0)+0+0+270+0+0+99+0+97+0+0),pixelHeight:84,pixelWidth:84,src:\"https://framerusercontent.com/images/4XmVWyDYvji64Um2Ij1kjANjjU.png\"}}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(Image,{background:{alt:\"Profile Image\",fit:\"fill\",loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+100+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||741)-175-545)/2+0+0)+0+0+0+0+115+0+97+0+0),pixelHeight:84,pixelWidth:84,src:\"https://framerusercontent.com/images/QHJzsu2ETLUfscvC3jgkdBJrF0.png\"},className:\"framer-1vz86ht\",\"data-border\":true,\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"JETgDuEHe\",style:{\"--border-bottom-width\":\"3px\",\"--border-color\":\"rgb(30, 35, 44)\",\"--border-left-width\":\"3px\",\"--border-right-width\":\"3px\",\"--border-style\":\"solid\",\"--border-top-width\":\"3px\",borderBottomLeftRadius:100,borderBottomRightRadius:100,borderTopLeftRadius:100,borderTopRightRadius:100},...addPropertyOverrides({KgdC60qld:{background:{alt:\"Profile Image\",fit:\"fill\",loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||723)-80-606.2)/2+0+0)+0+0+180+0+0+63.199999999999996+0+97+0+0+0),pixelHeight:84,pixelWidth:84,src:\"https://framerusercontent.com/images/QHJzsu2ETLUfscvC3jgkdBJrF0.png\"}},Nu1f7TvOU:{background:{alt:\"Profile Image\",fit:\"fill\",loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||772)-80-671)/2+0+0)+0+0+270+0+0+99+0+97+0+0),pixelHeight:84,pixelWidth:84,src:\"https://framerusercontent.com/images/QHJzsu2ETLUfscvC3jgkdBJrF0.png\"}}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(Image,{background:{alt:\"Profile Image\",fit:\"fill\",loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+100+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||741)-175-545)/2+0+0)+0+0+0+0+115+0+97+0+0),pixelHeight:84,pixelWidth:84,src:\"https://framerusercontent.com/images/RnZZ4m80hSvCi2Nhbpdf5dPvdWM.png\"},className:\"framer-116ton0\",\"data-border\":true,\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"q7KFKs1w5\",style:{\"--border-bottom-width\":\"3px\",\"--border-color\":\"rgb(30, 35, 44)\",\"--border-left-width\":\"3px\",\"--border-right-width\":\"3px\",\"--border-style\":\"solid\",\"--border-top-width\":\"3px\",borderBottomLeftRadius:100,borderBottomRightRadius:100,borderTopLeftRadius:100,borderTopRightRadius:100},...addPropertyOverrides({KgdC60qld:{background:{alt:\"Profile Image\",fit:\"fill\",loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||723)-80-606.2)/2+0+0)+0+0+180+0+0+63.199999999999996+0+97+0+0+0),pixelHeight:84,pixelWidth:84,src:\"https://framerusercontent.com/images/RnZZ4m80hSvCi2Nhbpdf5dPvdWM.png\"}},Nu1f7TvOU:{background:{alt:\"Profile Image\",fit:\"fill\",loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||772)-80-671)/2+0+0)+0+0+270+0+0+99+0+97+0+0),pixelHeight:84,pixelWidth:84,src:\"https://framerusercontent.com/images/RnZZ4m80hSvCi2Nhbpdf5dPvdWM.png\"}}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(Image,{background:{alt:\"Profile Image\",fit:\"fill\",loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+100+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||741)-175-545)/2+0+0)+0+0+0+0+115+0+97+0+0),pixelHeight:84,pixelWidth:84,src:\"https://framerusercontent.com/images/KZC8n9cvHipVgG9TrRuyJ3B4iZ0.png\"},className:\"framer-myw368\",\"data-border\":true,\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"GJcH9EFYf\",style:{\"--border-bottom-width\":\"3px\",\"--border-color\":\"rgb(30, 35, 44)\",\"--border-left-width\":\"3px\",\"--border-right-width\":\"3px\",\"--border-style\":\"solid\",\"--border-top-width\":\"3px\",borderBottomLeftRadius:100,borderBottomRightRadius:100,borderTopLeftRadius:100,borderTopRightRadius:100},...addPropertyOverrides({KgdC60qld:{background:{alt:\"Profile Image\",fit:\"fill\",loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||723)-80-606.2)/2+0+0)+0+0+180+0+0+63.199999999999996+0+97+0+0+0),pixelHeight:84,pixelWidth:84,src:\"https://framerusercontent.com/images/KZC8n9cvHipVgG9TrRuyJ3B4iZ0.png\"}},Nu1f7TvOU:{background:{alt:\"Profile Image\",fit:\"fill\",loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||772)-80-671)/2+0+0)+0+0+270+0+0+99+0+97+0+0),pixelHeight:84,pixelWidth:84,src:\"https://framerusercontent.com/images/KZC8n9cvHipVgG9TrRuyJ3B4iZ0.png\"}}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(Image,{background:{alt:\"Profile Image\",fit:\"fill\",loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+100+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||741)-175-545)/2+0+0)+0+0+0+0+115+0+97+0+0),pixelHeight:84,pixelWidth:84,src:\"https://framerusercontent.com/images/blOx5BuQR66DXrceL6h0I0Og.png\"},className:\"framer-zbyzjt\",\"data-border\":true,\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"MjL08qVVR\",style:{\"--border-bottom-width\":\"3px\",\"--border-color\":\"rgb(30, 35, 44)\",\"--border-left-width\":\"3px\",\"--border-right-width\":\"3px\",\"--border-style\":\"solid\",\"--border-top-width\":\"3px\",borderBottomLeftRadius:100,borderBottomRightRadius:100,borderTopLeftRadius:100,borderTopRightRadius:100},...addPropertyOverrides({KgdC60qld:{background:{alt:\"Profile Image\",fit:\"fill\",loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||723)-80-606.2)/2+0+0)+0+0+180+0+0+63.199999999999996+0+97+0+0+0),pixelHeight:84,pixelWidth:84,src:\"https://framerusercontent.com/images/blOx5BuQR66DXrceL6h0I0Og.png\"}},Nu1f7TvOU:{background:{alt:\"Profile Image\",fit:\"fill\",loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||772)-80-671)/2+0+0)+0+0+270+0+0+99+0+97+0+0),pixelHeight:84,pixelWidth:84,src:\"https://framerusercontent.com/images/blOx5BuQR66DXrceL6h0I0Og.png\"}}},baseVariant,gestureVariant)})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-oc7evh\",\"data-framer-name\":\"Star Wrap\",layoutDependency:layoutDependency,layoutId:\"sr7XddwLf\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-19utlxv\",\"data-framer-name\":\"Star\",layoutDependency:layoutDependency,layoutId:\"F0_H1GASe\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+100+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||741)-175-545)/2+0+0)+0+0+0+0+115+0+97+11.5+0+0),pixelHeight:39,pixelWidth:40,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/uNPAOmb4yL0smyE22fhH6kd02bs.png\"},className:\"framer-llfql\",\"data-framer-name\":\"Star\",layoutDependency:layoutDependency,layoutId:\"QOFEv6udR\",...addPropertyOverrides({KgdC60qld:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||723)-80-606.2)/2+0+0)+0+0+180+0+0+63.199999999999996+0+97+0+54+0+0+0),pixelHeight:39,pixelWidth:40,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/uNPAOmb4yL0smyE22fhH6kd02bs.png\"}},Nu1f7TvOU:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||772)-80-671)/2+0+0)+0+0+270+0+0+99+0+97+11.5+0+0),pixelHeight:39,pixelWidth:40,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/uNPAOmb4yL0smyE22fhH6kd02bs.png\"}}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+100+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||741)-175-545)/2+0+0)+0+0+0+0+115+0+97+11.5+0+0),pixelHeight:39,pixelWidth:40,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/uNPAOmb4yL0smyE22fhH6kd02bs.png\"},className:\"framer-1mlidiw\",\"data-framer-name\":\"Star\",layoutDependency:layoutDependency,layoutId:\"jIt1lrgir\",...addPropertyOverrides({KgdC60qld:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||723)-80-606.2)/2+0+0)+0+0+180+0+0+63.199999999999996+0+97+0+54+0+0+0),pixelHeight:39,pixelWidth:40,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/uNPAOmb4yL0smyE22fhH6kd02bs.png\"}},Nu1f7TvOU:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||772)-80-671)/2+0+0)+0+0+270+0+0+99+0+97+11.5+0+0),pixelHeight:39,pixelWidth:40,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/uNPAOmb4yL0smyE22fhH6kd02bs.png\"}}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+100+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||741)-175-545)/2+0+0)+0+0+0+0+115+0+97+11.5+0+0),pixelHeight:39,pixelWidth:40,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/uNPAOmb4yL0smyE22fhH6kd02bs.png\"},className:\"framer-1m4gwyo\",\"data-framer-name\":\"Star\",layoutDependency:layoutDependency,layoutId:\"KZyJIPIMo\",...addPropertyOverrides({KgdC60qld:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||723)-80-606.2)/2+0+0)+0+0+180+0+0+63.199999999999996+0+97+0+54+0+0+0),pixelHeight:39,pixelWidth:40,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/uNPAOmb4yL0smyE22fhH6kd02bs.png\"}},Nu1f7TvOU:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||772)-80-671)/2+0+0)+0+0+270+0+0+99+0+97+11.5+0+0),pixelHeight:39,pixelWidth:40,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/uNPAOmb4yL0smyE22fhH6kd02bs.png\"}}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+100+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||741)-175-545)/2+0+0)+0+0+0+0+115+0+97+11.5+0+0),pixelHeight:39,pixelWidth:40,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/uNPAOmb4yL0smyE22fhH6kd02bs.png\"},className:\"framer-13woe42\",\"data-framer-name\":\"Star\",layoutDependency:layoutDependency,layoutId:\"eVJNPODet\",...addPropertyOverrides({KgdC60qld:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||723)-80-606.2)/2+0+0)+0+0+180+0+0+63.199999999999996+0+97+0+54+0+0+0),pixelHeight:39,pixelWidth:40,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/uNPAOmb4yL0smyE22fhH6kd02bs.png\"}},Nu1f7TvOU:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||772)-80-671)/2+0+0)+0+0+270+0+0+99+0+97+11.5+0+0),pixelHeight:39,pixelWidth:40,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/uNPAOmb4yL0smyE22fhH6kd02bs.png\"}}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+100+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||741)-175-545)/2+0+0)+0+0+0+0+115+0+97+11.5+0+0),pixelHeight:39,pixelWidth:40,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/uNPAOmb4yL0smyE22fhH6kd02bs.png\"},className:\"framer-qnnwlw\",\"data-framer-name\":\"Star\",layoutDependency:layoutDependency,layoutId:\"WR0tN4GM1\",...addPropertyOverrides({KgdC60qld:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||723)-80-606.2)/2+0+0)+0+0+180+0+0+63.199999999999996+0+97+0+54+0+0+0),pixelHeight:39,pixelWidth:40,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/uNPAOmb4yL0smyE22fhH6kd02bs.png\"}},Nu1f7TvOU:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||772)-80-671)/2+0+0)+0+0+270+0+0+99+0+97+11.5+0+0),pixelHeight:39,pixelWidth:40,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/uNPAOmb4yL0smyE22fhH6kd02bs.png\"}}},baseVariant,gestureVariant)})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO0RlZ3VsYXIgVGV4dCBTZW1pYm9sZA==\",\"--framer-font-family\":'\"Degular Text Semibold\", \"Degular Text Semibold Placeholder\", sans-serif',\"--framer-line-height\":\"16px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"+543 happy creators\"})}),className:\"framer-ul09ou\",fonts:[\"CUSTOM;Degular Text Semibold\"],layoutDependency:layoutDependency,layoutId:\"LsemkUGEH\",style:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true})]})]})]})]})]}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1bbxu6l\",\"data-framer-name\":\"Brand Text Wrap\",layoutDependency:layoutDependency,layoutId:\"ifrnYT3fp\",children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1adnd15\",\"data-framer-name\":\"Brand Text \",layoutDependency:layoutDependency,layoutId:\"WPZSa2F3V\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"Brand Logo\",fit:\"fill\",loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+100+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||741)-175-545)/2+0+0)+0+427+0+19),pixelHeight:160,pixelWidth:104,src:\"https://framerusercontent.com/images/0gMsQCg43EIuCmt8jCKvZXRAzs.png\"},className:\"framer-90mt1j\",\"data-framer-name\":\"Brand Logo\",layoutDependency:layoutDependency,layoutId:\"rk70tnTWz\",...addPropertyOverrides({KgdC60qld:{background:{alt:\"Brand Logo\",fit:\"fill\",loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||723)-80-606.2)/2+0+0)+0+480.2+0+0+23),pixelHeight:160,pixelWidth:104,src:\"https://framerusercontent.com/images/0gMsQCg43EIuCmt8jCKvZXRAzs.png\"}},Nu1f7TvOU:{background:{alt:\"Brand Logo\",fit:\"fill\",loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||772)-80-671)/2+0+0)+0+553+0+19),pixelHeight:160,pixelWidth:104,src:\"https://framerusercontent.com/images/0gMsQCg43EIuCmt8jCKvZXRAzs.png\"}}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-4y9t56\",\"data-framer-name\":\"Brand Text Wrap\",layoutDependency:layoutDependency,layoutId:\"OCCYEOISv\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO0RlZ3VsYXIgVGV4dCBCb2xk\",\"--framer-font-family\":'\"Degular Text Bold\", \"Degular Text Bold Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-letter-spacing\":\"0.32px\",\"--framer-line-height\":\"19px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-19182416-018f-4aaf-8caa-795abe04b4ff, rgb(255, 255, 255)))\"},children:\"Built by Creator Science\"})}),className:\"framer-1fwna0c\",fonts:[\"CUSTOM;Degular Text Bold\"],layoutDependency:layoutDependency,layoutId:\"wwG5t1TGU\",style:{\"--extracted-r6o4lv\":\"var(--token-19182416-018f-4aaf-8caa-795abe04b4ff, rgb(255, 255, 255))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO0RlZ3VsYXIgVGV4dCBSZWd1bGFy\",\"--framer-font-family\":'\"Degular Text Regular\", \"Degular Text Regular Placeholder\", sans-serif',\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"19px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgba(255, 255, 255, 0.5))\"},children:\"Creator Science helps you become a professional creator\"})}),className:\"framer-p56965\",fonts:[\"CUSTOM;Degular Text Regular\"],layoutDependency:layoutDependency,layoutId:\"ZM2FORqC9\",style:{\"--extracted-r6o4lv\":\"rgba(255, 255, 255, 0.5)\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true})]})]})})]}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-hr5ogt\",\"data-framer-name\":\"Bg Gradient\",layoutDependency:layoutDependency,layoutId:\"fbxiByvWV\",style:{borderBottomLeftRadius:\"100%\",borderBottomRightRadius:\"100%\",borderTopLeftRadius:\"100%\",borderTopRightRadius:\"100%\"},children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1ojeuph\",\"data-framer-name\":\"gradient\",layoutDependency:layoutDependency,layoutId:\"sjDRKthpL\",style:{background:\"radial-gradient(50% 50% at 50% 50%, rgba(0, 98, 255, 0.22) 0%, rgba(0, 98, 255, 0.22) 84.98496665610924%)\",filter:\"blur(100px)\",WebkitFilter:\"blur(100px)\"}})})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-xPlNF.framer-17xoa61, .framer-xPlNF .framer-17xoa61 { display: block; }\",\".framer-xPlNF.framer-udgbpf { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 200px; height: min-content; justify-content: center; overflow: visible; padding: 100px 20px 75px 20px; position: relative; width: 1700px; }\",\".framer-xPlNF .framer-ekxkyv { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 173px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; z-index: 5; }\",\".framer-xPlNF .framer-z4rh5q { 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: 1400px; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-xPlNF .framer-15anbbk { align-content: center; align-items: center; bottom: -173px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; justify-content: center; left: -45px; overflow: visible; padding: 0px; position: absolute; top: -160px; width: 717px; }\",\".framer-xPlNF .framer-730wlg { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: 1px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-xPlNF .framer-192u45t { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 56px; height: min-content; justify-content: center; max-width: 570px; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-xPlNF .framer-mjdu4v { 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: 570px; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-xPlNF .framer-lwi4sf { flex: 1 0 0px; height: auto; position: relative; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; }\",\".framer-xPlNF .framer-1x8lvrd { 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: min-content; }\",\".framer-xPlNF .framer-xw95ia-container { flex: none; height: auto; position: relative; width: auto; }\",\".framer-xPlNF .framer-yn3q1s { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 12px; height: min-content; justify-content: center; max-width: 460px; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-xPlNF .framer-v5p94z { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; max-width: 158px; overflow: hidden; padding: 0px; position: relative; width: 158px; }\",\".framer-xPlNF .framer-i54f1i { flex: none; height: 42px; overflow: hidden; position: relative; width: 42px; will-change: var(--framer-will-change-override, transform); }\",\".framer-xPlNF .framer-1vz86ht { bottom: 0px; flex: none; left: 28px; overflow: hidden; position: absolute; top: 0px; width: 42px; will-change: var(--framer-will-change-override, transform); z-index: 1; }\",\".framer-xPlNF .framer-116ton0 { bottom: 0px; flex: none; left: 57px; overflow: hidden; position: absolute; top: 0px; width: 42px; will-change: var(--framer-will-change-override, transform); z-index: 1; }\",\".framer-xPlNF .framer-myw368 { bottom: 0px; flex: none; left: 86px; overflow: hidden; position: absolute; top: 0px; width: 42px; will-change: var(--framer-will-change-override, transform); z-index: 1; }\",\".framer-xPlNF .framer-zbyzjt { bottom: 0px; flex: none; left: 116px; overflow: hidden; position: absolute; top: 0px; width: 42px; will-change: var(--framer-will-change-override, transform); z-index: 1; }\",\".framer-xPlNF .framer-oc7evh { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 11px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 290px; }\",\".framer-xPlNF .framer-19utlxv { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 4px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-xPlNF .framer-llfql, .framer-xPlNF .framer-1mlidiw, .framer-xPlNF .framer-1m4gwyo, .framer-xPlNF .framer-13woe42, .framer-xPlNF .framer-qnnwlw { flex: none; height: 19px; overflow: hidden; position: relative; width: 20px; }\",\".framer-xPlNF .framer-ul09ou, .framer-xPlNF .framer-1fwna0c { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-xPlNF .framer-1bbxu6l { 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; overflow: hidden; padding: 0px 0px 0px 147px; position: relative; width: 100%; }\",\".framer-xPlNF .framer-1adnd15 { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 18px; height: min-content; justify-content: flex-start; max-width: 510px; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-xPlNF .framer-90mt1j { flex: none; height: 80px; overflow: hidden; position: relative; width: 52px; }\",\".framer-xPlNF .framer-4y9t56 { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 4px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-xPlNF .framer-p56965 { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-xPlNF .framer-hr5ogt { align-content: center; align-items: center; bottom: 0px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: 300px; justify-content: center; left: calc(50.00000000000002% - min(1700px, 100%) / 2); max-width: 1700px; overflow: visible; padding: 0px; position: absolute; width: 100%; }\",\".framer-xPlNF .framer-1ojeuph { flex: 1 0 0px; height: 100%; overflow: hidden; position: relative; width: 1px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-xPlNF.framer-udgbpf, .framer-xPlNF .framer-ekxkyv, .framer-xPlNF .framer-z4rh5q, .framer-xPlNF .framer-15anbbk, .framer-xPlNF .framer-730wlg, .framer-xPlNF .framer-192u45t, .framer-xPlNF .framer-mjdu4v, .framer-xPlNF .framer-1x8lvrd, .framer-xPlNF .framer-yn3q1s, .framer-xPlNF .framer-v5p94z, .framer-xPlNF .framer-oc7evh, .framer-xPlNF .framer-19utlxv, .framer-xPlNF .framer-1bbxu6l, .framer-xPlNF .framer-1adnd15, .framer-xPlNF .framer-4y9t56, .framer-xPlNF .framer-hr5ogt { gap: 0px; } .framer-xPlNF.framer-udgbpf > * { margin: 0px; margin-bottom: calc(200px / 2); margin-top: calc(200px / 2); } .framer-xPlNF.framer-udgbpf > :first-child, .framer-xPlNF .framer-ekxkyv > :first-child, .framer-xPlNF .framer-15anbbk > :first-child, .framer-xPlNF .framer-192u45t > :first-child, .framer-xPlNF .framer-1x8lvrd > :first-child, .framer-xPlNF .framer-4y9t56 > :first-child { margin-top: 0px; } .framer-xPlNF.framer-udgbpf > :last-child, .framer-xPlNF .framer-ekxkyv > :last-child, .framer-xPlNF .framer-15anbbk > :last-child, .framer-xPlNF .framer-192u45t > :last-child, .framer-xPlNF .framer-1x8lvrd > :last-child, .framer-xPlNF .framer-4y9t56 > :last-child { margin-bottom: 0px; } .framer-xPlNF .framer-ekxkyv > * { margin: 0px; margin-bottom: calc(173px / 2); margin-top: calc(173px / 2); } .framer-xPlNF .framer-z4rh5q > *, .framer-xPlNF .framer-730wlg > *, .framer-xPlNF .framer-mjdu4v > *, .framer-xPlNF .framer-1bbxu6l > *, .framer-xPlNF .framer-hr5ogt > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } .framer-xPlNF .framer-z4rh5q > :first-child, .framer-xPlNF .framer-730wlg > :first-child, .framer-xPlNF .framer-mjdu4v > :first-child, .framer-xPlNF .framer-yn3q1s > :first-child, .framer-xPlNF .framer-v5p94z > :first-child, .framer-xPlNF .framer-oc7evh > :first-child, .framer-xPlNF .framer-19utlxv > :first-child, .framer-xPlNF .framer-1bbxu6l > :first-child, .framer-xPlNF .framer-1adnd15 > :first-child, .framer-xPlNF .framer-hr5ogt > :first-child { margin-left: 0px; } .framer-xPlNF .framer-z4rh5q > :last-child, .framer-xPlNF .framer-730wlg > :last-child, .framer-xPlNF .framer-mjdu4v > :last-child, .framer-xPlNF .framer-yn3q1s > :last-child, .framer-xPlNF .framer-v5p94z > :last-child, .framer-xPlNF .framer-oc7evh > :last-child, .framer-xPlNF .framer-19utlxv > :last-child, .framer-xPlNF .framer-1bbxu6l > :last-child, .framer-xPlNF .framer-1adnd15 > :last-child, .framer-xPlNF .framer-hr5ogt > :last-child { margin-right: 0px; } .framer-xPlNF .framer-15anbbk > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-xPlNF .framer-192u45t > * { margin: 0px; margin-bottom: calc(56px / 2); margin-top: calc(56px / 2); } .framer-xPlNF .framer-1x8lvrd > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } .framer-xPlNF .framer-yn3q1s > * { margin: 0px; margin-left: calc(12px / 2); margin-right: calc(12px / 2); } .framer-xPlNF .framer-v5p94z > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-xPlNF .framer-oc7evh > * { margin: 0px; margin-left: calc(11px / 2); margin-right: calc(11px / 2); } .framer-xPlNF .framer-19utlxv > * { margin: 0px; margin-left: calc(4px / 2); margin-right: calc(4px / 2); } .framer-xPlNF .framer-1adnd15 > * { margin: 0px; margin-left: calc(18px / 2); margin-right: calc(18px / 2); } .framer-xPlNF .framer-4y9t56 > * { margin: 0px; margin-bottom: calc(4px / 2); margin-top: calc(4px / 2); } }\",\".framer-xPlNF.framer-v-wbtskq.framer-udgbpf { padding: 0px 20px 80px 20px; width: 810px; }\",\".framer-xPlNF.framer-v-wbtskq .framer-ekxkyv { gap: 45px; }\",\".framer-xPlNF.framer-v-wbtskq .framer-z4rh5q { flex-direction: column; justify-content: center; padding: 270px 0px 0px 0px; }\",\".framer-xPlNF.framer-v-wbtskq .framer-15anbbk { aspect-ratio: 1.25 / 1; bottom: unset; height: var(--framer-aspect-ratio-supported, 428px); left: 50%; top: -144px; width: 536px; z-index: 1; }\",\".framer-xPlNF.framer-v-wbtskq .framer-192u45t { align-content: center; align-items: center; flex: none; gap: 40px; width: 100%; }\",\".framer-xPlNF.framer-v-wbtskq .framer-1x8lvrd, .framer-xPlNF.framer-v-nd44wx .framer-1x8lvrd { align-content: center; align-items: center; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-xPlNF.framer-v-wbtskq .framer-ekxkyv, .framer-xPlNF.framer-v-wbtskq .framer-z4rh5q, .framer-xPlNF.framer-v-wbtskq .framer-192u45t { gap: 0px; } .framer-xPlNF.framer-v-wbtskq .framer-ekxkyv > * { margin: 0px; margin-bottom: calc(45px / 2); margin-top: calc(45px / 2); } .framer-xPlNF.framer-v-wbtskq .framer-ekxkyv > :first-child, .framer-xPlNF.framer-v-wbtskq .framer-z4rh5q > :first-child, .framer-xPlNF.framer-v-wbtskq .framer-192u45t > :first-child { margin-top: 0px; } .framer-xPlNF.framer-v-wbtskq .framer-ekxkyv > :last-child, .framer-xPlNF.framer-v-wbtskq .framer-z4rh5q > :last-child, .framer-xPlNF.framer-v-wbtskq .framer-192u45t > :last-child { margin-bottom: 0px; } .framer-xPlNF.framer-v-wbtskq .framer-z4rh5q > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-xPlNF.framer-v-wbtskq .framer-192u45t > * { margin: 0px; margin-bottom: calc(40px / 2); margin-top: calc(40px / 2); } }\",\".framer-xPlNF.framer-v-nd44wx.framer-udgbpf { padding: 0px 20px 80px 20px; width: 390px; }\",\".framer-xPlNF.framer-v-nd44wx .framer-ekxkyv { gap: 40px; padding: 0px 20px 0px 20px; }\",\".framer-xPlNF.framer-v-nd44wx .framer-z4rh5q { flex-direction: column; justify-content: center; padding: 180px 0px 0px 0px; }\",\".framer-xPlNF.framer-v-nd44wx .framer-15anbbk { bottom: unset; height: 250px; left: 0px; right: 0px; top: -68px; width: unset; z-index: 1; }\",\".framer-xPlNF.framer-v-nd44wx .framer-730wlg { flex: none; height: 112%; width: 112%; }\",\".framer-xPlNF.framer-v-nd44wx .framer-192u45t { align-content: center; align-items: center; flex: none; gap: 20px; width: 100%; }\",\".framer-xPlNF.framer-v-nd44wx .framer-yn3q1s, .framer-xPlNF.framer-v-nd44wx .framer-oc7evh { flex-direction: column; }\",\".framer-xPlNF.framer-v-nd44wx .framer-1bbxu6l { flex-direction: column; padding: 0px; }\",\".framer-xPlNF.framer-v-nd44wx .framer-1adnd15 { flex: none; width: 100%; }\",\".framer-xPlNF.framer-v-nd44wx .framer-4y9t56 { padding: 8px 0px 0px 0px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-xPlNF.framer-v-nd44wx .framer-ekxkyv, .framer-xPlNF.framer-v-nd44wx .framer-z4rh5q, .framer-xPlNF.framer-v-nd44wx .framer-192u45t, .framer-xPlNF.framer-v-nd44wx .framer-yn3q1s, .framer-xPlNF.framer-v-nd44wx .framer-oc7evh, .framer-xPlNF.framer-v-nd44wx .framer-1bbxu6l { gap: 0px; } .framer-xPlNF.framer-v-nd44wx .framer-ekxkyv > * { margin: 0px; margin-bottom: calc(40px / 2); margin-top: calc(40px / 2); } .framer-xPlNF.framer-v-nd44wx .framer-ekxkyv > :first-child, .framer-xPlNF.framer-v-nd44wx .framer-z4rh5q > :first-child, .framer-xPlNF.framer-v-nd44wx .framer-192u45t > :first-child, .framer-xPlNF.framer-v-nd44wx .framer-yn3q1s > :first-child, .framer-xPlNF.framer-v-nd44wx .framer-oc7evh > :first-child, .framer-xPlNF.framer-v-nd44wx .framer-1bbxu6l > :first-child { margin-top: 0px; } .framer-xPlNF.framer-v-nd44wx .framer-ekxkyv > :last-child, .framer-xPlNF.framer-v-nd44wx .framer-z4rh5q > :last-child, .framer-xPlNF.framer-v-nd44wx .framer-192u45t > :last-child, .framer-xPlNF.framer-v-nd44wx .framer-yn3q1s > :last-child, .framer-xPlNF.framer-v-nd44wx .framer-oc7evh > :last-child, .framer-xPlNF.framer-v-nd44wx .framer-1bbxu6l > :last-child { margin-bottom: 0px; } .framer-xPlNF.framer-v-nd44wx .framer-z4rh5q > *, .framer-xPlNF.framer-v-nd44wx .framer-1bbxu6l > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-xPlNF.framer-v-nd44wx .framer-192u45t > * { margin: 0px; margin-bottom: calc(20px / 2); margin-top: calc(20px / 2); } .framer-xPlNF.framer-v-nd44wx .framer-yn3q1s > * { margin: 0px; margin-bottom: calc(12px / 2); margin-top: calc(12px / 2); } .framer-xPlNF.framer-v-nd44wx .framer-oc7evh > * { margin: 0px; margin-bottom: calc(11px / 2); margin-top: calc(11px / 2); } }\",'.framer-xPlNF[data-border=\"true\"]::after, .framer-xPlNF [data-border=\"true\"]::after { content: \"\"; border-width: var(--border-top-width, 0) var(--border-right-width, 0) var(--border-bottom-width, 0) var(--border-left-width, 0); border-color: var(--border-color, none); border-style: var(--border-style, none); width: 100%; height: 100%; position: absolute; box-sizing: border-box; left: 0; top: 0; border-radius: inherit; pointer-events: none; }'];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 741\n * @framerIntrinsicWidth 1700\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"Nu1f7TvOU\":{\"layout\":[\"fixed\",\"auto\"]},\"KgdC60qld\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramernFiJHpmb6=withCSS(Component,css,\"framer-xPlNF\");export default FramernFiJHpmb6;FramernFiJHpmb6.displayName=\"Footer Section\";FramernFiJHpmb6.defaultProps={height:741,width:1700};addPropertyControls(FramernFiJHpmb6,{variant:{options:[\"qc5LGCZNJ\",\"Nu1f7TvOU\",\"KgdC60qld\"],optionTitles:[\"Desktop\",\"Tablet\",\"Phone\"],title:\"Variant\",type:ControlType.Enum}});addFonts(FramernFiJHpmb6,[{explicitInter:true,fonts:[{family:\"Degular Text Bold\",source:\"custom\",url:\"https://framerusercontent.com/assets/kzxIE4WhTLg9tomWtvmg7Dsvklw.woff\"},{family:\"Degular Text Regular\",source:\"custom\",url:\"https://framerusercontent.com/assets/hRf9qqgFPbwFk0bTHXg4viCZjI.woff2\"}]},...BannerButtonFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramernFiJHpmb6\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"Nu1f7TvOU\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"KgdC60qld\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerIntrinsicHeight\":\"741\",\"framerDisplayContentsDiv\":\"false\",\"framerIntrinsicWidth\":\"1700\",\"framerImmutableVariables\":\"true\",\"framerComponentViewportWidth\":\"true\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./nFiJHpmb6.map", "// Generated by Framer (3c7cdfa)\nimport{fontStore}from\"framer\";fontStore.loadFonts([]);export const fonts=[{explicitInter:true,fonts:[]}];export const css=['.framer-BmPdF .framer-styles-preset-uh7q67:not(.rich-text-wrapper), .framer-BmPdF .framer-styles-preset-uh7q67.rich-text-wrapper a { --framer-link-current-text-color: var(--token-406ee2a1-9c29-42c5-961e-cfe02a30aaf7, #121212) /* {\"name\":\"Primary -  Color\"} */; --framer-link-current-text-decoration: underline; --framer-link-hover-text-color: var(--token-d1f6ecfd-2abf-4418-8a05-8920186c6135, #0061ff) /* {\"name\":\"Button Color\"} */; --framer-link-hover-text-decoration: underline; --framer-link-text-color: var(--token-406ee2a1-9c29-42c5-961e-cfe02a30aaf7, #121212); --framer-link-text-decoration: underline; transition: color 0.4s cubic-bezier(0, 0, 1, 1) 0s; }'];export const className=\"framer-BmPdF\";\nexport const __FramerMetadata__ = {\"exports\":{\"css\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"fonts\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"className\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (47ebf4a)\nimport{jsx as _jsx,jsxs as _jsxs,Fragment as _Fragment}from\"react/jsx-runtime\";import{addFonts,ComponentViewportProvider,Container,cx,GeneratedComponentContext,getFonts,getFontsFromSharedStyle,getLoadingLazyAtYPosition,Image,Link,PropertyOverrides,RichText,useActiveVariantCallback,useComponentViewport,useCustomCursors,useHydratedBreakpointVariants,useIsOnFramerCanvas,useLocaleInfo,useOverlayState,useRouteElementId,withCSS,withFX}from\"framer\";import{AnimatePresence,LayoutGroup,motion}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import*as ReactDOM from\"react-dom\";import Ticker from\"https://framerusercontent.com/modules/B2xAlJLcN0gOnt11mSPw/XVUmpmPn1EPL0dzocT35/Ticker.js\";import{Youtube as YouTube}from\"https://framerusercontent.com/modules/NEd4VmDdsxM3StIUbddO/1de6WpgIbCrKkRcPfQcW/YouTube.js\";import Embed from\"https://framerusercontent.com/modules/o1PI5S8YtkA5bP5g4dFz/Mn69eMnaMcqJ65TjxwR1/Embed.js\";import BannerButton from\"https://framerusercontent.com/modules/st88pPivHzQIrszrLdyo/GoXE4Lbsj7YfPnNhuXr8/ILlMbfB4O.js\";import CratorhqVideo from\"#framer/local/canvasComponent/d3cR5vufm/d3cR5vufm.js\";import Navigation from\"#framer/local/canvasComponent/foQIE3cD3/foQIE3cD3.js\";import FAQSection from\"#framer/local/canvasComponent/HWDAZjt0B/HWDAZjt0B.js\";import FooterSection from\"#framer/local/canvasComponent/nFiJHpmb6/nFiJHpmb6.js\";import*as sharedStyle from\"#framer/local/css/dqoM54HW_/dqoM54HW_.js\";import metadataProvider from\"#framer/local/webPageMetadata/OMp430bgy/OMp430bgy.js\";const NavigationFonts=getFonts(Navigation);const ContainerWithFX=withFX(Container);const BannerButtonFonts=getFonts(BannerButton);const CratorhqVideoFonts=getFonts(CratorhqVideo);const YouTubeFonts=getFonts(YouTube);const TickerFonts=getFonts(Ticker);const ImageWithFX=withFX(Image);const EmbedFonts=getFonts(Embed);const FAQSectionFonts=getFonts(FAQSection);const FooterSectionFonts=getFonts(FooterSection);const breakpoints={AcU5MM9Xd:\"(min-width: 1300px) and (max-width: 1699px)\",jtC8vLgen:\"(max-width: 809px)\",tICWQLge2:\"(min-width: 810px) and (max-width: 1299px)\",WSvcEG864:\"(min-width: 1700px)\"};const isBrowser=()=>typeof document!==\"undefined\";const serializationHash=\"framer-bwrSz\";const variantClassNames={AcU5MM9Xd:\"framer-v-zpfzn2\",jtC8vLgen:\"framer-v-1fe2tz1\",tICWQLge2:\"framer-v-k43bug\",WSvcEG864:\"framer-v-g8mx0f\"};const transition1={delay:0,duration:.3,ease:[.44,0,.56,1],type:\"tween\"};const animation={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:2,y:-170};const transformTemplate1=(_,t)=>`translateX(-50%) ${t}`;const getContainer=()=>{return document.querySelector(\"#template-overlay\")??document.querySelector(\"#overlay\")??document.body;};const Overlay=({children,blockDocumentScrolling,enabled=true})=>{const[visible,setVisible]=useOverlayState({blockDocumentScrolling});return children({hide:()=>setVisible(false),show:()=>setVisible(true),toggle:()=>setVisible(!visible),visible:enabled&&visible});};const HTMLStyle=({value})=>{const onCanvas=useIsOnFramerCanvas();if(onCanvas)return null;return /*#__PURE__*/_jsx(\"style\",{dangerouslySetInnerHTML:{__html:value},\"data-framer-html-style\":\"\"});};const humanReadableVariantMap={\"Extra Large\":\"WSvcEG864\",Desktop:\"AcU5MM9Xd\",Phone:\"jtC8vLgen\",Tablet:\"tICWQLge2\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"AcU5MM9Xd\"};};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{activeVariantCallback,delay}=useActiveVariantCallback(undefined);const gsI_KvgAm3bnx0g=({overlay,loadMore})=>activeVariantCallback(async(...args)=>{overlay.toggle();});const onTap3bnx0g=({overlay,loadMore})=>activeVariantCallback(async(...args)=>{overlay.toggle();});const sharedStyleClassNames=[sharedStyle.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const isDisplayed=()=>{if(!isBrowser())return true;if(baseVariant===\"jtC8vLgen\")return false;return true;};const elementId=useRouteElementId(\"T5Cmf87uN\");const ref1=React.useRef(null);const elementId1=useRouteElementId(\"k8NijeHUy\");const ref2=React.useRef(null);const elementId2=useRouteElementId(\"GXA_8Db4S\");const ref3=React.useRef(null);const elementId3=useRouteElementId(\"iGKwrp9ZD\");const ref4=React.useRef(null);const elementId4=useRouteElementId(\"HyRmPLoFc\");const ref5=React.useRef(null);const elementId5=useRouteElementId(\"zRYYxdLw1\");const ref6=React.useRef(null);useCustomCursors({});return /*#__PURE__*/_jsx(GeneratedComponentContext.Provider,{value:{primaryVariantId:\"AcU5MM9Xd\",variantClassNames},children:/*#__PURE__*/_jsxs(LayoutGroup,{id:layoutId??defaultLayoutId,children:[/*#__PURE__*/_jsx(HTMLStyle,{value:\"html body { background: var(--token-19182416-018f-4aaf-8caa-795abe04b4ff, rgb(255, 255, 255)); }\"}),/*#__PURE__*/_jsxs(motion.div,{...restProps,className:cx(scopingClassNames,\"framer-zpfzn2\",className),ref:refBinding,style:{...style},children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:95,width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-2wkkta-container\",nodeId:\"Wp0z_lU6z\",scopeId:\"OMp430bgy\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{jtC8vLgen:{variant:\"ZLySTnwlf\"}},children:/*#__PURE__*/_jsx(Navigation,{height:\"100%\",id:\"Wp0z_lU6z\",layoutId:\"Wp0z_lU6z\",style:{width:\"100%\"},variant:\"c0IfFvRLx\",width:\"100%\"})})})}),isDisplayed()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{height:95,width:\"100vw\",y:0,children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:false,__framer__scrollDirection:{direction:\"up\",target:animation},__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-13tn19q-container hidden-1fe2tz1\",layoutScroll:true,nodeId:\"SMqdczPWO\",rendersWithMotion:true,scopeId:\"OMp430bgy\",transformTemplate:transformTemplate1,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{tICWQLge2:{variant:\"Se43N8mBa\"}},children:/*#__PURE__*/_jsx(Navigation,{height:\"100%\",id:\"SMqdczPWO\",layoutId:\"SMqdczPWO\",style:{width:\"100%\"},variant:\"tfqsmWnqt\",width:\"100%\"})})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1w1gp8r\",\"data-framer-name\":\"Hero Section\",children:[isDisplayed()&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-105ty16 hidden-1fe2tz1\",\"data-framer-name\":\"Bg Linear\"}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1eyinrm\",\"data-framer-name\":\"Banner Section\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-awzptn\",\"data-framer-name\":\"Container\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1vlm4ni\",\"data-framer-name\":\"Banner Content Wrap\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-hpp9yk\",\"data-framer-name\":\"Client Feed Back\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-f22k\",\"data-framer-name\":\"Image Wrap\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{jtC8vLgen:{background:{alt:\"Profile Image\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+90+0+50+0+0+0+0+0+0+0+0),pixelHeight:84,pixelWidth:84,src:\"https://framerusercontent.com/images/4XmVWyDYvji64Um2Ij1kjANjjU.png\"}},tICWQLge2:{background:{alt:\"Profile Image\",fit:\"fill\",pixelHeight:84,pixelWidth:84,src:\"https://framerusercontent.com/images/4XmVWyDYvji64Um2Ij1kjANjjU.png\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"Profile Image\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+0+194+0+0+0+0+0+0),pixelHeight:84,pixelWidth:84,src:\"https://framerusercontent.com/images/4XmVWyDYvji64Um2Ij1kjANjjU.png\"},className:\"framer-wqagu2\",\"data-framer-name\":\"Image\"})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{jtC8vLgen:{background:{alt:\"Profile Image\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+90+0+50+0+0+0+0+0+0+0+0),pixelHeight:84,pixelWidth:84,src:\"https://framerusercontent.com/images/QHJzsu2ETLUfscvC3jgkdBJrF0.png\"}},tICWQLge2:{background:{alt:\"Profile Image\",fit:\"fill\",pixelHeight:84,pixelWidth:84,src:\"https://framerusercontent.com/images/QHJzsu2ETLUfscvC3jgkdBJrF0.png\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"Profile Image\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+0+194+0+0+0+0+0+0),pixelHeight:84,pixelWidth:84,src:\"https://framerusercontent.com/images/QHJzsu2ETLUfscvC3jgkdBJrF0.png\"},className:\"framer-1x4cknr\",\"data-framer-name\":\"Image\"})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{jtC8vLgen:{background:{alt:\"Profile Image\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+90+0+50+0+0+0+0+0+0+0+0),pixelHeight:84,pixelWidth:84,src:\"https://framerusercontent.com/images/RnZZ4m80hSvCi2Nhbpdf5dPvdWM.png\"}},tICWQLge2:{background:{alt:\"Profile Image\",fit:\"fill\",pixelHeight:84,pixelWidth:84,src:\"https://framerusercontent.com/images/RnZZ4m80hSvCi2Nhbpdf5dPvdWM.png\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"Profile Image\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+0+194+0+0+0+0+0+0),pixelHeight:84,pixelWidth:84,src:\"https://framerusercontent.com/images/RnZZ4m80hSvCi2Nhbpdf5dPvdWM.png\"},className:\"framer-1ez9ee8\",\"data-framer-name\":\"Image\"})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{jtC8vLgen:{background:{alt:\"Profile Image\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+90+0+50+0+0+0+0+0+0+0+0),pixelHeight:84,pixelWidth:84,src:\"https://framerusercontent.com/images/KZC8n9cvHipVgG9TrRuyJ3B4iZ0.png\"}},tICWQLge2:{background:{alt:\"Profile Image\",fit:\"fill\",pixelHeight:84,pixelWidth:84,src:\"https://framerusercontent.com/images/KZC8n9cvHipVgG9TrRuyJ3B4iZ0.png\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"Profile Image\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+0+194+0+0+0+0+0+0),pixelHeight:84,pixelWidth:84,src:\"https://framerusercontent.com/images/KZC8n9cvHipVgG9TrRuyJ3B4iZ0.png\"},className:\"framer-wv0i8b\",\"data-framer-name\":\"Image\"})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{jtC8vLgen:{background:{alt:\"Profile Image\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+90+0+50+0+0+0+0+0+0+0+0),pixelHeight:84,pixelWidth:84,src:\"https://framerusercontent.com/images/blOx5BuQR66DXrceL6h0I0Og.png\"}},tICWQLge2:{background:{alt:\"Profile Image\",fit:\"fill\",pixelHeight:84,pixelWidth:84,src:\"https://framerusercontent.com/images/blOx5BuQR66DXrceL6h0I0Og.png\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"Profile Image\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+0+194+0+0+0+0+0+0),pixelHeight:84,pixelWidth:84,src:\"https://framerusercontent.com/images/blOx5BuQR66DXrceL6h0I0Og.png\"},className:\"framer-kegcw7\",\"data-framer-name\":\"Image\"})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1hih0xd\",\"data-framer-name\":\"Star Wrap\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-y6nxsz\",\"data-framer-name\":\"Star\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{jtC8vLgen:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+90+0+50+0+0+0+0+0+0+45+0+0),pixelHeight:39,pixelWidth:40,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/uNPAOmb4yL0smyE22fhH6kd02bs.png\"}},tICWQLge2:{background:{alt:\"\",fit:\"fit\",pixelHeight:39,pixelWidth:40,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/uNPAOmb4yL0smyE22fhH6kd02bs.png\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+0+194+0+0+0+0+11.5+0+0),pixelHeight:39,pixelWidth:40,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/uNPAOmb4yL0smyE22fhH6kd02bs.png\"},className:\"framer-1vv1ji5\",\"data-framer-name\":\"Star\"})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{jtC8vLgen:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+90+0+50+0+0+0+0+0+0+45+0+0),pixelHeight:39,pixelWidth:40,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/uNPAOmb4yL0smyE22fhH6kd02bs.png\"}},tICWQLge2:{background:{alt:\"\",fit:\"fit\",pixelHeight:39,pixelWidth:40,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/uNPAOmb4yL0smyE22fhH6kd02bs.png\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+0+194+0+0+0+0+11.5+0+0),pixelHeight:39,pixelWidth:40,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/uNPAOmb4yL0smyE22fhH6kd02bs.png\"},className:\"framer-4ulpm\",\"data-framer-name\":\"Star\"})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{jtC8vLgen:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+90+0+50+0+0+0+0+0+0+45+0+0),pixelHeight:39,pixelWidth:40,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/uNPAOmb4yL0smyE22fhH6kd02bs.png\"}},tICWQLge2:{background:{alt:\"\",fit:\"fit\",pixelHeight:39,pixelWidth:40,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/uNPAOmb4yL0smyE22fhH6kd02bs.png\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+0+194+0+0+0+0+11.5+0+0),pixelHeight:39,pixelWidth:40,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/uNPAOmb4yL0smyE22fhH6kd02bs.png\"},className:\"framer-19853qw\",\"data-framer-name\":\"Star\"})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{jtC8vLgen:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+90+0+50+0+0+0+0+0+0+45+0+0),pixelHeight:39,pixelWidth:40,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/uNPAOmb4yL0smyE22fhH6kd02bs.png\"}},tICWQLge2:{background:{alt:\"\",fit:\"fit\",pixelHeight:39,pixelWidth:40,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/uNPAOmb4yL0smyE22fhH6kd02bs.png\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+0+194+0+0+0+0+11.5+0+0),pixelHeight:39,pixelWidth:40,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/uNPAOmb4yL0smyE22fhH6kd02bs.png\"},className:\"framer-1v2foty\",\"data-framer-name\":\"Star\"})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{jtC8vLgen:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+90+0+50+0+0+0+0+0+0+45+0+0),pixelHeight:39,pixelWidth:40,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/uNPAOmb4yL0smyE22fhH6kd02bs.png\"}},tICWQLge2:{background:{alt:\"\",fit:\"fit\",pixelHeight:39,pixelWidth:40,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/uNPAOmb4yL0smyE22fhH6kd02bs.png\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+0+194+0+0+0+0+11.5+0+0),pixelHeight:39,pixelWidth:40,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/uNPAOmb4yL0smyE22fhH6kd02bs.png\"},className:\"framer-riuzzh\",\"data-framer-name\":\"Star\"})})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{jtC8vLgen:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0RlZ3VsYXIgVGV4dCBTZW1pYm9sZA==\",\"--framer-font-family\":'\"Degular Text Semibold\", \"Degular Text Semibold Placeholder\", sans-serif',\"--framer-font-size\":\"15px\",\"--framer-line-height\":\"16px\",\"--framer-text-color\":\"var(--token-406ee2a1-9c29-42c5-961e-cfe02a30aaf7, rgb(18, 18, 18))\"},children:\"+543 happy creators\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0RlZ3VsYXIgVGV4dCBTZW1pYm9sZA==\",\"--framer-font-family\":'\"Degular Text Semibold\", \"Degular Text Semibold Placeholder\", sans-serif',\"--framer-line-height\":\"16px\",\"--framer-text-color\":\"var(--token-406ee2a1-9c29-42c5-961e-cfe02a30aaf7, rgb(18, 18, 18))\"},children:\"+543 happy creators\"})}),className:\"framer-1lolyip\",fonts:[\"CUSTOM;Degular Text Semibold\"],verticalAlignment:\"top\",withExternalLayout:true})})]})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1h9sst9\",\"data-framer-name\":\"Heading Wrap\",id:elementId,ref:ref1,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{jtC8vLgen:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"Q1VTVE9NO0RlZ3VsYXIgVGV4dCBCb2xk\",\"--framer-font-family\":'\"Degular Text Bold\", \"Degular Text Bold Placeholder\", sans-serif',\"--framer-font-size\":\"31px\",\"--framer-line-height\":\"28px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-406ee2a1-9c29-42c5-961e-cfe02a30aaf7, rgb(18, 18, 18))\"},children:\"The Complete Creator Operating System\"})})},tICWQLge2:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"Q1VTVE9NO0RlZ3VsYXIgVGV4dCBCb2xk\",\"--framer-font-family\":'\"Degular Text Bold\", \"Degular Text Bold Placeholder\", sans-serif',\"--framer-font-size\":\"64px\",\"--framer-line-height\":\"100%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-406ee2a1-9c29-42c5-961e-cfe02a30aaf7, rgb(18, 18, 18))\"},children:\"The Complete Creator Operating System\"})})},WSvcEG864:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"Q1VTVE9NO0RlZ3VsYXIgVGV4dCBCb2xk\",\"--framer-font-family\":'\"Degular Text Bold\", \"Degular Text Bold Placeholder\", sans-serif',\"--framer-font-size\":\"68px\",\"--framer-line-height\":\"68px\",\"--framer-text-color\":\"var(--token-406ee2a1-9c29-42c5-961e-cfe02a30aaf7, rgb(18, 18, 18))\"},children:\"The Complete Creator Operating System\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"Q1VTVE9NO0RlZ3VsYXIgVGV4dCBCb2xk\",\"--framer-font-family\":'\"Degular Text Bold\", \"Degular Text Bold Placeholder\", sans-serif',\"--framer-font-size\":\"64px\",\"--framer-line-height\":\"100%\",\"--framer-text-color\":\"var(--token-406ee2a1-9c29-42c5-961e-cfe02a30aaf7, rgb(18, 18, 18))\"},children:\"The Complete Creator Operating System\"})}),className:\"framer-a5azck\",fonts:[\"CUSTOM;Degular Text Bold\"],verticalAlignment:\"top\",withExternalLayout:true})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1jb68j\",\"data-framer-name\":\"Contant  Wrap\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{jtC8vLgen:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0RlZ3VsYXIgVGV4dCBSZWd1bGFy\",\"--framer-font-family\":'\"Degular Text Regular\", \"Degular Text Regular Placeholder\", sans-serif',\"--framer-font-size\":\"17px\",\"--framer-line-height\":\"21px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-406ee2a1-9c29-42c5-961e-cfe02a30aaf7, rgb(18, 18, 18))\"},children:[\"Grow your creator business with an \",/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"Q1VTVE9NO0RlZ3VsYXIgVGV4dCBCb2xk\",\"--framer-font-family\":'\"Degular Text Bold\", \"Degular Text Bold Placeholder\", sans-serif'},children:\"all-in-one workspace\"}),\" designed to save you more time, create more content, and drive more revenue.\"]})})},tICWQLge2:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0RlZ3VsYXIgVGV4dCBSZWd1bGFy\",\"--framer-font-family\":'\"Degular Text Regular\", \"Degular Text Regular Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-line-height\":\"27px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-406ee2a1-9c29-42c5-961e-cfe02a30aaf7, rgb(18, 18, 18))\"},children:[\"Grow your creator business with an \",/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"Q1VTVE9NO0RlZ3VsYXIgVGV4dCBCb2xk\",\"--framer-font-family\":'\"Degular Text Bold\", \"Degular Text Bold Placeholder\", sans-serif'},children:\"all-in-one workspace\"}),\" designed to save you more time, create more content, and drive more revenue.\"]})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0RlZ3VsYXIgVGV4dCBSZWd1bGFy\",\"--framer-font-family\":'\"Degular Text Regular\", \"Degular Text Regular Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-line-height\":\"27px\",\"--framer-text-color\":\"var(--token-406ee2a1-9c29-42c5-961e-cfe02a30aaf7, rgb(18, 18, 18))\"},children:[\"Grow your creator business with an \",/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"Q1VTVE9NO0RlZ3VsYXIgVGV4dCBCb2xk\",\"--framer-font-family\":'\"Degular Text Bold\", \"Degular Text Bold Placeholder\", sans-serif'},children:\"all-in-one workspace\"}),\" designed to save you more time, create more content, and drive more revenue.\"]})}),className:\"framer-156c0cy\",fonts:[\"CUSTOM;Degular Text Regular\",\"CUSTOM;Degular Text Bold\"],verticalAlignment:\"top\",withExternalLayout:true})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1gekpb3\",\"data-framer-name\":\"Button Wrap  Wrap\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{jtC8vLgen:{width:undefined,y:(componentViewport?.y||0)+0+0+90+0+50+0+0+0+0+227+20+0},tICWQLge2:{y:undefined},WSvcEG864:{y:(componentViewport?.y||0)+0+0+0+0+194+0+0+0+309+36+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:73,width:\"364px\",y:(componentViewport?.y||0)+0+0+0+0+194+0+0+0+305+36+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1tr1kn3-container\",isModuleExternal:true,nodeId:\"JD2AEYD8u\",scopeId:\"OMp430bgy\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{jtC8vLgen:{variant:\"lbE2C1YKC\"}},children:/*#__PURE__*/_jsx(BannerButton,{height:\"100%\",i9h0tMlqE:\"https://store.creatorscience.com/buy/28aeab8d-5b53-4840-9055-080794014e8b\",id:\"JD2AEYD8u\",layoutId:\"JD2AEYD8u\",style:{width:\"100%\"},variant:\"fdB6OMGxz\",width:\"100%\"})})})})})})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-4aewp5\",\"data-framer-name\":\"Image Wrap\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{jtC8vLgen:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+90+0+50+0+0+350+0),pixelHeight:818,pixelWidth:900,sizes:`calc(min(${componentViewport?.width||\"100vw\"} - 40px, 1260px) * 1.06)`,src:\"https://framerusercontent.com/images/Gp5LBXKjIptfXvRYpTRb9CrcGRk.png\",srcSet:\"https://framerusercontent.com/images/Gp5LBXKjIptfXvRYpTRb9CrcGRk.png?scale-down-to=512 512w,https://framerusercontent.com/images/Gp5LBXKjIptfXvRYpTRb9CrcGRk.png 900w\"}},tICWQLge2:{background:{alt:\"\",fit:\"fill\",pixelHeight:869,pixelWidth:1110,sizes:\"731px\",src:\"https://framerusercontent.com/images/wToleiDXX6ij3EtZtRGeijfKl1c.png\",srcSet:\"https://framerusercontent.com/images/wToleiDXX6ij3EtZtRGeijfKl1c.png?scale-down-to=512 512w,https://framerusercontent.com/images/wToleiDXX6ij3EtZtRGeijfKl1c.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/wToleiDXX6ij3EtZtRGeijfKl1c.png 1110w\"}},WSvcEG864:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+0+194+0+-46+0),pixelHeight:869,pixelWidth:1110,sizes:\"740px\",src:\"https://framerusercontent.com/images/wToleiDXX6ij3EtZtRGeijfKl1c.png\",srcSet:\"https://framerusercontent.com/images/wToleiDXX6ij3EtZtRGeijfKl1c.png?scale-down-to=512 512w,https://framerusercontent.com/images/wToleiDXX6ij3EtZtRGeijfKl1c.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/wToleiDXX6ij3EtZtRGeijfKl1c.png 1110w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+0+194+0+-75+-.4953),pixelHeight:869,pixelWidth:1110,sizes:\"763px\",src:\"https://framerusercontent.com/images/wToleiDXX6ij3EtZtRGeijfKl1c.png\",srcSet:\"https://framerusercontent.com/images/wToleiDXX6ij3EtZtRGeijfKl1c.png?scale-down-to=512 512w,https://framerusercontent.com/images/wToleiDXX6ij3EtZtRGeijfKl1c.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/wToleiDXX6ij3EtZtRGeijfKl1c.png 1110w\"},className:\"framer-1akfunj\",\"data-framer-name\":\"Baner Image\"})})})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-6xo3q5\",\"data-framer-name\":\"Container\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-k1b8fo\",\"data-framer-name\":\"Feature Grid\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-175iioy\",\"data-framer-name\":\"Feature Card One\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{jtC8vLgen:{background:{alt:\"Contant Planning\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+90+0+50+690+0+0+0+0+0),pixelHeight:73,pixelWidth:80,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/PdCdgfkfiUDhD1KRMJxRwTANM.png\"}},tICWQLge2:{background:{alt:\"Contant Planning\",fit:\"fill\",pixelHeight:73,pixelWidth:80,src:\"https://framerusercontent.com/images/PdCdgfkfiUDhD1KRMJxRwTANM.png\"}},WSvcEG864:{background:{alt:\"Contant Planning\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+0+194+518+0+0+0+0+0),pixelHeight:73,pixelWidth:80,src:\"https://framerusercontent.com/images/PdCdgfkfiUDhD1KRMJxRwTANM.png\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"Contant Planning\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+0+194+514+0+0+0+0+0),pixelHeight:73,pixelWidth:80,src:\"https://framerusercontent.com/images/PdCdgfkfiUDhD1KRMJxRwTANM.png\"},className:\"framer-1e6ipjz\"})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-64ue0r\",\"data-framer-name\":\"Content Wrap\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{jtC8vLgen:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0RlZ3VsYXIgVGV4dCBCb2xk\",\"--framer-font-family\":'\"Degular Text Bold\", \"Degular Text Bold Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"24px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-406ee2a1-9c29-42c5-961e-cfe02a30aaf7, rgb(18, 18, 18))\"},children:[\"Content Planning to \",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-d1f6ecfd-2abf-4418-8a05-8920186c6135, rgb(0, 97, 255))\"},children:\"Save You Time\"})]})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0RlZ3VsYXIgVGV4dCBCb2xk\",\"--framer-font-family\":'\"Degular Text Bold\", \"Degular Text Bold Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-line-height\":\"24px\",\"--framer-text-color\":\"var(--token-406ee2a1-9c29-42c5-961e-cfe02a30aaf7, rgb(18, 18, 18))\"},children:[\"Content Planning to \",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-d1f6ecfd-2abf-4418-8a05-8920186c6135, rgb(0, 97, 255))\"},children:\"Save You Time\"})]})}),className:\"framer-khh4yb\",fonts:[\"CUSTOM;Degular Text Bold\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{jtC8vLgen:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0RlZ3VsYXIgVGV4dCBSZWd1bGFy\",\"--framer-font-family\":'\"Degular Text Regular\", \"Degular Text Regular Placeholder\", sans-serif',\"--framer-line-height\":\"18px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-406ee2a1-9c29-42c5-961e-cfe02a30aaf7, rgb(18, 18, 18))\"},children:\"Stay consistent with dashboards and templates to plan, produce, and repurpose content across all platforms. \"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0RlZ3VsYXIgVGV4dCBSZWd1bGFy\",\"--framer-font-family\":'\"Degular Text Regular\", \"Degular Text Regular Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"21px\",\"--framer-text-color\":\"var(--token-406ee2a1-9c29-42c5-961e-cfe02a30aaf7, rgb(18, 18, 18))\"},children:\"Stay consistent with dashboards and templates to plan, produce, and repurpose content across all platforms. \"})}),className:\"framer-1ukfnfu\",fonts:[\"CUSTOM;Degular Text Regular\"],verticalAlignment:\"top\",withExternalLayout:true})})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1f2hrj6\",\"data-framer-name\":\"Feature Card Two\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{jtC8vLgen:{background:{alt:\"Contant Planning\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+90+0+50+690+0+0+276+0+0),pixelHeight:73,pixelWidth:81,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/wsGtHkf3VBOgJHJNk3AZ1fZzUzM.png\"}},tICWQLge2:{background:{alt:\"Contant Planning\",fit:\"fill\",pixelHeight:73,pixelWidth:81,src:\"https://framerusercontent.com/images/wsGtHkf3VBOgJHJNk3AZ1fZzUzM.png\"}},WSvcEG864:{background:{alt:\"Contant Planning\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+0+194+518+0+0+0+0+0),pixelHeight:73,pixelWidth:81,src:\"https://framerusercontent.com/images/wsGtHkf3VBOgJHJNk3AZ1fZzUzM.png\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"Contant Planning\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+0+194+514+0+0+0+0+0),pixelHeight:73,pixelWidth:81,src:\"https://framerusercontent.com/images/wsGtHkf3VBOgJHJNk3AZ1fZzUzM.png\"},className:\"framer-z5lzk6\"})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-c17x76\",\"data-framer-name\":\"Content Wrap\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{jtC8vLgen:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0RlZ3VsYXIgVGV4dCBCb2xk\",\"--framer-font-family\":'\"Degular Text Bold\", \"Degular Text Bold Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"24px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-406ee2a1-9c29-42c5-961e-cfe02a30aaf7, rgb(18, 18, 18))\"},children:[/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-d1f6ecfd-2abf-4418-8a05-8920186c6135, rgb(0, 97, 255))\"},children:\"Publish More\"}),\" & Stress Less\"]})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0RlZ3VsYXIgVGV4dCBCb2xk\",\"--framer-font-family\":'\"Degular Text Bold\", \"Degular Text Bold Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-line-height\":\"24px\",\"--framer-text-color\":\"var(--token-406ee2a1-9c29-42c5-961e-cfe02a30aaf7, rgb(18, 18, 18))\"},children:[/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-d1f6ecfd-2abf-4418-8a05-8920186c6135, rgb(0, 97, 255))\"},children:\"Publish More\"}),\" & Stress Less\"]})}),className:\"framer-hnbuem\",fonts:[\"CUSTOM;Degular Text Bold\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{jtC8vLgen:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0RlZ3VsYXIgVGV4dCBSZWd1bGFy\",\"--framer-font-family\":'\"Degular Text Regular\", \"Degular Text Regular Placeholder\", sans-serif',\"--framer-line-height\":\"18px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-406ee2a1-9c29-42c5-961e-cfe02a30aaf7, rgb(18, 18, 18))\"},children:\"Get inspired by audience feedback, FAQs, and past successes and leverage the republishing calendar.\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0RlZ3VsYXIgVGV4dCBSZWd1bGFy\",\"--framer-font-family\":'\"Degular Text Regular\", \"Degular Text Regular Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"21px\",\"--framer-text-color\":\"var(--token-406ee2a1-9c29-42c5-961e-cfe02a30aaf7, rgb(18, 18, 18))\"},children:\"Get inspired by audience feedback, FAQs, and past successes and leverage the republishing calendar.\"})}),className:\"framer-15v4rlk\",fonts:[\"CUSTOM;Degular Text Regular\"],verticalAlignment:\"top\",withExternalLayout:true})})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1ppie8k\",\"data-framer-name\":\"Feature Card Three\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{jtC8vLgen:{background:{alt:\"Contant Planning\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+90+0+50+690+0+0+552+0+0),pixelHeight:73,pixelWidth:80,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/juOV7dNfWQ84xp0bNa0HrXWgdc.png\"}},tICWQLge2:{background:{alt:\"Contant Planning\",fit:\"fill\",pixelHeight:73,pixelWidth:80,src:\"https://framerusercontent.com/images/juOV7dNfWQ84xp0bNa0HrXWgdc.png\"}},WSvcEG864:{background:{alt:\"Contant Planning\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+0+194+518+0+0+0+0+0),pixelHeight:73,pixelWidth:80,src:\"https://framerusercontent.com/images/juOV7dNfWQ84xp0bNa0HrXWgdc.png\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"Contant Planning\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+0+194+514+0+0+0+0+0),pixelHeight:73,pixelWidth:80,src:\"https://framerusercontent.com/images/juOV7dNfWQ84xp0bNa0HrXWgdc.png\"},className:\"framer-1c38bh5\"})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-17h8p4q\",\"data-framer-name\":\"Content Wrap\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{jtC8vLgen:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0RlZ3VsYXIgVGV4dCBCb2xk\",\"--framer-font-family\":'\"Degular Text Bold\", \"Degular Text Bold Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"24px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-d1f6ecfd-2abf-4418-8a05-8920186c6135, rgb(0, 97, 255))\"},children:[/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-406ee2a1-9c29-42c5-961e-cfe02a30aaf7, rgb(18, 18, 18))\"},children:\"Manage & \"}),\"Grow Sponsorship\",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-406ee2a1-9c29-42c5-961e-cfe02a30aaf7, rgb(18, 18, 18))\"},children:\" Deals\"})]})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0RlZ3VsYXIgVGV4dCBCb2xk\",\"--framer-font-family\":'\"Degular Text Bold\", \"Degular Text Bold Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-line-height\":\"24px\",\"--framer-text-color\":\"var(--token-d1f6ecfd-2abf-4418-8a05-8920186c6135, rgb(0, 97, 255))\"},children:[/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-406ee2a1-9c29-42c5-961e-cfe02a30aaf7, rgb(18, 18, 18))\"},children:\"Manage & \"}),\"Grow Sponsorship\",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-406ee2a1-9c29-42c5-961e-cfe02a30aaf7, rgb(18, 18, 18))\"},children:\" Deals\"})]})}),className:\"framer-okk91a\",fonts:[\"CUSTOM;Degular Text Bold\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{jtC8vLgen:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0RlZ3VsYXIgVGV4dCBSZWd1bGFy\",\"--framer-font-family\":'\"Degular Text Regular\", \"Degular Text Regular Placeholder\", sans-serif',\"--framer-line-height\":\"18px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-406ee2a1-9c29-42c5-961e-cfe02a30aaf7, rgb(18, 18, 18))\"},children:\"Track sponsorships and stay organized at every stage to help you land more deals and grow your revenue.\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0RlZ3VsYXIgVGV4dCBSZWd1bGFy\",\"--framer-font-family\":'\"Degular Text Regular\", \"Degular Text Regular Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"21px\",\"--framer-text-color\":\"var(--token-406ee2a1-9c29-42c5-961e-cfe02a30aaf7, rgb(18, 18, 18))\"},children:\"Track sponsorships and stay organized at every stage to help you land more deals and grow your revenue.\"})}),className:\"framer-1y947ap\",fonts:[\"CUSTOM;Degular Text Regular\"],verticalAlignment:\"top\",withExternalLayout:true})})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-120bbms\",\"data-framer-name\":\"Feature Card Four\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{jtC8vLgen:{background:{alt:\"Contant Planning\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+90+0+50+690+0+0+828+0+0),pixelHeight:74,pixelWidth:80,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/e7lnmLN0nCSfdwUgXB0IgQ3ACRo.png\"}},tICWQLge2:{background:{alt:\"Contant Planning\",fit:\"fill\",pixelHeight:74,pixelWidth:80,src:\"https://framerusercontent.com/images/e7lnmLN0nCSfdwUgXB0IgQ3ACRo.png\"}},WSvcEG864:{background:{alt:\"Contant Planning\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+0+194+518+0+0+313+0+0),pixelHeight:74,pixelWidth:80,src:\"https://framerusercontent.com/images/e7lnmLN0nCSfdwUgXB0IgQ3ACRo.png\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"Contant Planning\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+0+194+514+0+0+313+0+0),pixelHeight:74,pixelWidth:80,src:\"https://framerusercontent.com/images/e7lnmLN0nCSfdwUgXB0IgQ3ACRo.png\"},className:\"framer-a1cvgt\"})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1x0lf0n\",\"data-framer-name\":\"Content Wrap\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{jtC8vLgen:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0RlZ3VsYXIgVGV4dCBCb2xk\",\"--framer-font-family\":'\"Degular Text Bold\", \"Degular Text Bold Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"24px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-406ee2a1-9c29-42c5-961e-cfe02a30aaf7, rgb(18, 18, 18))\"},children:[\"Task, Project, and Goal \",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-d1f6ecfd-2abf-4418-8a05-8920186c6135, rgb(0, 97, 255))\"},children:\"Management\"})]})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0RlZ3VsYXIgVGV4dCBCb2xk\",\"--framer-font-family\":'\"Degular Text Bold\", \"Degular Text Bold Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-line-height\":\"24px\",\"--framer-text-color\":\"var(--token-406ee2a1-9c29-42c5-961e-cfe02a30aaf7, rgb(18, 18, 18))\"},children:[\"Task, Project, and Goal \",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-d1f6ecfd-2abf-4418-8a05-8920186c6135, rgb(0, 97, 255))\"},children:\"Management\"})]})}),className:\"framer-bft53\",fonts:[\"CUSTOM;Degular Text Bold\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{jtC8vLgen:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0RlZ3VsYXIgVGV4dCBSZWd1bGFy\",\"--framer-font-family\":'\"Degular Text Regular\", \"Degular Text Regular Placeholder\", sans-serif',\"--framer-line-height\":\"18px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-406ee2a1-9c29-42c5-961e-cfe02a30aaf7, rgb(18, 18, 18))\"},children:\"Easily stay focused, track progress, and reach your personal and business milestones.\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0RlZ3VsYXIgVGV4dCBSZWd1bGFy\",\"--framer-font-family\":'\"Degular Text Regular\", \"Degular Text Regular Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"21px\",\"--framer-text-color\":\"var(--token-406ee2a1-9c29-42c5-961e-cfe02a30aaf7, rgb(18, 18, 18))\"},children:\"Easily stay focused, track progress, and reach your personal and business milestones.\"})}),className:\"framer-1twpi8h\",fonts:[\"CUSTOM;Degular Text Regular\"],verticalAlignment:\"top\",withExternalLayout:true})})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-nl9pss\",\"data-framer-name\":\"Feature Card Five\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{jtC8vLgen:{background:{alt:\"Contant Planning\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+90+0+50+690+0+0+1104+0+0),pixelHeight:74,pixelWidth:81,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/8HQPt5abTGpPpY1F0B48M4EW2c.png\"}},tICWQLge2:{background:{alt:\"Contant Planning\",fit:\"fill\",pixelHeight:74,pixelWidth:81,src:\"https://framerusercontent.com/images/8HQPt5abTGpPpY1F0B48M4EW2c.png\"}},WSvcEG864:{background:{alt:\"Contant Planning\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+0+194+518+0+0+313+0+0),pixelHeight:74,pixelWidth:81,src:\"https://framerusercontent.com/images/8HQPt5abTGpPpY1F0B48M4EW2c.png\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"Contant Planning\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+0+194+514+0+0+313+0+0),pixelHeight:74,pixelWidth:81,src:\"https://framerusercontent.com/images/8HQPt5abTGpPpY1F0B48M4EW2c.png\"},className:\"framer-hmncqd\"})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1gi8dg8\",\"data-framer-name\":\"Content Wrap\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{jtC8vLgen:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0RlZ3VsYXIgVGV4dCBCb2xk\",\"--framer-font-family\":'\"Degular Text Bold\", \"Degular Text Bold Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"24px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-406ee2a1-9c29-42c5-961e-cfe02a30aaf7, rgb(18, 18, 18))\"},children:[\"Deep \",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-d1f6ecfd-2abf-4418-8a05-8920186c6135, rgb(0, 97, 255))\"},children:\"Audience\"}),\" Understanding\"]})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0RlZ3VsYXIgVGV4dCBCb2xk\",\"--framer-font-family\":'\"Degular Text Bold\", \"Degular Text Bold Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-line-height\":\"24px\",\"--framer-text-color\":\"var(--token-406ee2a1-9c29-42c5-961e-cfe02a30aaf7, rgb(18, 18, 18))\"},children:[\"Deep \",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-d1f6ecfd-2abf-4418-8a05-8920186c6135, rgb(0, 97, 255))\"},children:\"Audience\"}),\" Understanding\"]})}),className:\"framer-yl4wlb\",fonts:[\"CUSTOM;Degular Text Bold\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{jtC8vLgen:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0RlZ3VsYXIgVGV4dCBSZWd1bGFy\",\"--framer-font-family\":'\"Degular Text Regular\", \"Degular Text Regular Placeholder\", sans-serif',\"--framer-line-height\":\"18px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-406ee2a1-9c29-42c5-961e-cfe02a30aaf7, rgb(18, 18, 18))\"},children:\"Log and track customer pain points, questions, and insights in the Problems & FAQs database.\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0RlZ3VsYXIgVGV4dCBSZWd1bGFy\",\"--framer-font-family\":'\"Degular Text Regular\", \"Degular Text Regular Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"21px\",\"--framer-text-color\":\"var(--token-406ee2a1-9c29-42c5-961e-cfe02a30aaf7, rgb(18, 18, 18))\"},children:\"Log and track customer pain points, questions, and insights in the Problems & FAQs database.\"})}),className:\"framer-riohi3\",fonts:[\"CUSTOM;Degular Text Regular\"],verticalAlignment:\"top\",withExternalLayout:true})})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1brz0t2\",\"data-framer-name\":\"Feature Card Six\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{jtC8vLgen:{background:{alt:\"Contant Planning\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+90+0+50+690+0+0+1380+0+0),pixelHeight:74,pixelWidth:81,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/7zhwpLwkgwFupk1Aa9szb5HbBBY.png\"}},tICWQLge2:{background:{alt:\"Contant Planning\",fit:\"fill\",pixelHeight:74,pixelWidth:81,src:\"https://framerusercontent.com/images/7zhwpLwkgwFupk1Aa9szb5HbBBY.png\"}},WSvcEG864:{background:{alt:\"Contant Planning\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+0+194+518+0+0+313+0+0),pixelHeight:74,pixelWidth:81,src:\"https://framerusercontent.com/images/7zhwpLwkgwFupk1Aa9szb5HbBBY.png\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"Contant Planning\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+0+194+514+0+0+313+0+0),pixelHeight:74,pixelWidth:81,src:\"https://framerusercontent.com/images/7zhwpLwkgwFupk1Aa9szb5HbBBY.png\"},className:\"framer-17h2jxo\"})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1vn3gpi\",\"data-framer-name\":\"Content Wrap\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{jtC8vLgen:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0RlZ3VsYXIgVGV4dCBCb2xk\",\"--framer-font-family\":'\"Degular Text Bold\", \"Degular Text Bold Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"24px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-406ee2a1-9c29-42c5-961e-cfe02a30aaf7, rgb(18, 18, 18))\"},children:[\"Stay on Top of \",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-d1f6ecfd-2abf-4418-8a05-8920186c6135, rgb(0, 97, 255))\"},children:\"Revenue\"})]})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0RlZ3VsYXIgVGV4dCBCb2xk\",\"--framer-font-family\":'\"Degular Text Bold\", \"Degular Text Bold Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-line-height\":\"24px\",\"--framer-text-color\":\"var(--token-406ee2a1-9c29-42c5-961e-cfe02a30aaf7, rgb(18, 18, 18))\"},children:[\"Stay on Top of \",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-d1f6ecfd-2abf-4418-8a05-8920186c6135, rgb(0, 97, 255))\"},children:\"Revenue\"})]})}),className:\"framer-3z0mdu\",fonts:[\"CUSTOM;Degular Text Bold\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{jtC8vLgen:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0RlZ3VsYXIgVGV4dCBSZWd1bGFy\",\"--framer-font-family\":'\"Degular Text Regular\", \"Degular Text Regular Placeholder\", sans-serif',\"--framer-line-height\":\"18px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-406ee2a1-9c29-42c5-961e-cfe02a30aaf7, rgb(18, 18, 18))\"},children:\"Track all income streams. Monitor contract progress, payment statuses, and ensure timely payments.\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0RlZ3VsYXIgVGV4dCBSZWd1bGFy\",\"--framer-font-family\":'\"Degular Text Regular\", \"Degular Text Regular Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"21px\",\"--framer-text-color\":\"var(--token-406ee2a1-9c29-42c5-961e-cfe02a30aaf7, rgb(18, 18, 18))\"},children:\"Track all income streams. Monitor contract progress, payment statuses, and ensure timely payments.\"})}),className:\"framer-1jng1u9\",fonts:[\"CUSTOM;Degular Text Regular\"],verticalAlignment:\"top\",withExternalLayout:true})})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-g2v8iv\",\"data-framer-name\":\"Feature Card Seven\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{jtC8vLgen:{background:{alt:\"Contant Planning\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+90+0+50+690+0+0+1656+0+0),pixelHeight:74,pixelWidth:80,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/0XDgPdUBDdrYwJRVkY4ISIBBCJI.png\"}},tICWQLge2:{background:{alt:\"Contant Planning\",fit:\"fill\",pixelHeight:74,pixelWidth:80,src:\"https://framerusercontent.com/images/0XDgPdUBDdrYwJRVkY4ISIBBCJI.png\"}},WSvcEG864:{background:{alt:\"Contant Planning\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+0+194+518+0+0+626+0+0),pixelHeight:74,pixelWidth:80,src:\"https://framerusercontent.com/images/0XDgPdUBDdrYwJRVkY4ISIBBCJI.png\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"Contant Planning\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+0+194+514+0+0+626+0+0),pixelHeight:74,pixelWidth:80,src:\"https://framerusercontent.com/images/0XDgPdUBDdrYwJRVkY4ISIBBCJI.png\"},className:\"framer-xbrb91\"})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1qe28rx\",\"data-framer-name\":\"Content Wrap\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{jtC8vLgen:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0RlZ3VsYXIgVGV4dCBCb2xk\",\"--framer-font-family\":'\"Degular Text Bold\", \"Degular Text Bold Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"24px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-406ee2a1-9c29-42c5-961e-cfe02a30aaf7, rgb(18, 18, 18))\"},children:[\"Efficient Delegation with \",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-d1f6ecfd-2abf-4418-8a05-8920186c6135, rgb(0, 97, 255))\"},children:\"SOPs\"})]})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0RlZ3VsYXIgVGV4dCBCb2xk\",\"--framer-font-family\":'\"Degular Text Bold\", \"Degular Text Bold Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-line-height\":\"24px\",\"--framer-text-color\":\"var(--token-406ee2a1-9c29-42c5-961e-cfe02a30aaf7, rgb(18, 18, 18))\"},children:[\"Efficient Delegation with \",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-d1f6ecfd-2abf-4418-8a05-8920186c6135, rgb(0, 97, 255))\"},children:\"SOPs\"})]})}),className:\"framer-1cej8cc\",fonts:[\"CUSTOM;Degular Text Bold\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{jtC8vLgen:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0RlZ3VsYXIgVGV4dCBSZWd1bGFy\",\"--framer-font-family\":'\"Degular Text Regular\", \"Degular Text Regular Placeholder\", sans-serif',\"--framer-line-height\":\"18px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-406ee2a1-9c29-42c5-961e-cfe02a30aaf7, rgb(18, 18, 18))\"},children:\"Streamline your processes and delegate by documenting and centralizing your Standard Operating Procedures.\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0RlZ3VsYXIgVGV4dCBSZWd1bGFy\",\"--framer-font-family\":'\"Degular Text Regular\", \"Degular Text Regular Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"21px\",\"--framer-text-color\":\"var(--token-406ee2a1-9c29-42c5-961e-cfe02a30aaf7, rgb(18, 18, 18))\"},children:\"Streamline your processes and delegate by documenting and centralizing your Standard Operating Procedures.\"})}),className:\"framer-ardbwa\",fonts:[\"CUSTOM;Degular Text Regular\"],verticalAlignment:\"top\",withExternalLayout:true})})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1g0sp87\",\"data-framer-name\":\"Feature Card Eight\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{jtC8vLgen:{background:{alt:\"Contant Planning\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+90+0+50+690+0+0+1932+0+0),pixelHeight:74,pixelWidth:81,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/INPM9lSj6kf9U4L8H0J11gxifKE.png\"}},tICWQLge2:{background:{alt:\"Contant Planning\",fit:\"fill\",pixelHeight:74,pixelWidth:81,src:\"https://framerusercontent.com/images/INPM9lSj6kf9U4L8H0J11gxifKE.png\"}},WSvcEG864:{background:{alt:\"Contant Planning\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+0+194+518+0+0+626+0+0),pixelHeight:74,pixelWidth:81,src:\"https://framerusercontent.com/images/INPM9lSj6kf9U4L8H0J11gxifKE.png\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"Contant Planning\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+0+194+514+0+0+626+0+0),pixelHeight:74,pixelWidth:81,src:\"https://framerusercontent.com/images/INPM9lSj6kf9U4L8H0J11gxifKE.png\"},className:\"framer-6qosv9\"})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1b80tly\",\"data-framer-name\":\"Content Wrap\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{jtC8vLgen:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0RlZ3VsYXIgVGV4dCBCb2xk\",\"--framer-font-family\":'\"Degular Text Bold\", \"Degular Text Bold Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"24px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-406ee2a1-9c29-42c5-961e-cfe02a30aaf7, rgb(18, 18, 18))\"},children:[\"Simple yet Powerful \",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-d1f6ecfd-2abf-4418-8a05-8920186c6135, rgb(0, 97, 255))\"},children:\"CRM\"})]})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0RlZ3VsYXIgVGV4dCBCb2xk\",\"--framer-font-family\":'\"Degular Text Bold\", \"Degular Text Bold Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-line-height\":\"24px\",\"--framer-text-color\":\"var(--token-406ee2a1-9c29-42c5-961e-cfe02a30aaf7, rgb(18, 18, 18))\"},children:[\"Simple yet Powerful \",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-d1f6ecfd-2abf-4418-8a05-8920186c6135, rgb(0, 97, 255))\"},children:\"CRM\"})]})}),className:\"framer-7kwuez\",fonts:[\"CUSTOM;Degular Text Bold\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{jtC8vLgen:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0RlZ3VsYXIgVGV4dCBSZWd1bGFy\",\"--framer-font-family\":'\"Degular Text Regular\", \"Degular Text Regular Placeholder\", sans-serif',\"--framer-line-height\":\"18px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-406ee2a1-9c29-42c5-961e-cfe02a30aaf7, rgb(18, 18, 18))\"},children:\"Keep track of people, companies, and conversations with to nurture relationships and grow your network.\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0RlZ3VsYXIgVGV4dCBSZWd1bGFy\",\"--framer-font-family\":'\"Degular Text Regular\", \"Degular Text Regular Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"21px\",\"--framer-text-color\":\"var(--token-406ee2a1-9c29-42c5-961e-cfe02a30aaf7, rgb(18, 18, 18))\"},children:\"Keep track of people, companies, and conversations with to nurture relationships and grow your network.\"})}),className:\"framer-1wij8tq\",fonts:[\"CUSTOM;Degular Text Regular\"],verticalAlignment:\"top\",withExternalLayout:true})})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-y25aah\",\"data-framer-name\":\"Feature Card Eight\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{jtC8vLgen:{background:{alt:\"Contant Planning\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+90+0+50+690+0+0+2208+0+0),pixelHeight:74,pixelWidth:80,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/jyVeUvRjHNdkxJixhUcL1An3Ec.png\"}},tICWQLge2:{background:{alt:\"Contant Planning\",fit:\"fill\",pixelHeight:74,pixelWidth:80,src:\"https://framerusercontent.com/images/jyVeUvRjHNdkxJixhUcL1An3Ec.png\"}},WSvcEG864:{background:{alt:\"Contant Planning\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+0+194+518+0+0+626+0+0),pixelHeight:74,pixelWidth:80,src:\"https://framerusercontent.com/images/jyVeUvRjHNdkxJixhUcL1An3Ec.png\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"Contant Planning\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+0+194+514+0+0+626+0+0),pixelHeight:74,pixelWidth:80,src:\"https://framerusercontent.com/images/jyVeUvRjHNdkxJixhUcL1An3Ec.png\"},className:\"framer-1i832sp\"})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-13jb5pt\",\"data-framer-name\":\"Content Wrap\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{jtC8vLgen:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0RlZ3VsYXIgVGV4dCBCb2xk\",\"--framer-font-family\":'\"Degular Text Bold\", \"Degular Text Bold Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"24px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-406ee2a1-9c29-42c5-961e-cfe02a30aaf7, rgb(18, 18, 18))\"},children:[\"Learn Quickly with Integrated \",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-d1f6ecfd-2abf-4418-8a05-8920186c6135, rgb(0, 97, 255))\"},children:\"Tutorials\"})]})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0RlZ3VsYXIgVGV4dCBCb2xk\",\"--framer-font-family\":'\"Degular Text Bold\", \"Degular Text Bold Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-line-height\":\"24px\",\"--framer-text-color\":\"var(--token-406ee2a1-9c29-42c5-961e-cfe02a30aaf7, rgb(18, 18, 18))\"},children:[\"Learn Quickly with Integrated \",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-d1f6ecfd-2abf-4418-8a05-8920186c6135, rgb(0, 97, 255))\"},children:\"Tutorials\"})]})}),className:\"framer-ekd3h4\",fonts:[\"CUSTOM;Degular Text Bold\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{jtC8vLgen:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0RlZ3VsYXIgVGV4dCBSZWd1bGFy\",\"--framer-font-family\":'\"Degular Text Regular\", \"Degular Text Regular Placeholder\", sans-serif',\"--framer-line-height\":\"18px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-406ee2a1-9c29-42c5-961e-cfe02a30aaf7, rgb(18, 18, 18))\"},children:\"Tutorials, tooltips, and a dedicated training library ensure you make the most of every feature.\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0RlZ3VsYXIgVGV4dCBSZWd1bGFy\",\"--framer-font-family\":'\"Degular Text Regular\", \"Degular Text Regular Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"21px\",\"--framer-text-color\":\"var(--token-406ee2a1-9c29-42c5-961e-cfe02a30aaf7, rgb(18, 18, 18))\"},children:\"Tutorials, tooltips, and a dedicated training library ensure you make the most of every feature.\"})}),className:\"framer-61hzs4\",fonts:[\"CUSTOM;Degular Text Regular\"],verticalAlignment:\"top\",withExternalLayout:true})})]})]})]})})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-52f242\",\"data-framer-name\":\"Video Section\",id:elementId1,ref:ref2,children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-nliwgv\",\"data-framer-name\":\"Container\",children:/*#__PURE__*/_jsx(Overlay,{children:overlay=>/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{jtC8vLgen:{width:`min(min(${componentViewport?.width||\"100vw\"} * 0.9, ${componentViewport?.width||\"100vw\"}), 300px)`,y:(componentViewport?.y||0)+0+3420+-90+0+0},tICWQLge2:{width:`min(min(${componentViewport?.width||\"100vw\"}, 600px), 936px)`,y:undefined},WSvcEG864:{y:(componentViewport?.y||0)+0+1661+20+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:662,width:\"936px\",y:(componentViewport?.y||0)+0+1657+0+0+0,children:/*#__PURE__*/_jsxs(Container,{className:\"framer-ibcior-container\",\"data-framer-name\":\"Creatorhq video\",id:\"ibcior\",name:\"Creatorhq video\",nodeId:\"zEzziZs6C\",scopeId:\"OMp430bgy\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{jtC8vLgen:{variant:overlay.visible?\"f6yeqNrif\":\"bUlMzpvEb\"},tICWQLge2:{variant:overlay.visible?\"lL2BYkp7T\":\"YsGAEKWC3\"}},children:/*#__PURE__*/_jsx(CratorhqVideo,{gsI_KvgAm:gsI_KvgAm3bnx0g({overlay}),height:\"100%\",id:\"zEzziZs6C\",layoutId:\"zEzziZs6C\",name:\"Creatorhq video\",style:{maxWidth:\"100%\",width:\"100%\"},variant:overlay.visible?\"vGdQKWH8Y\":\"V6ihMEqzj\",width:\"100%\"})}),/*#__PURE__*/_jsx(AnimatePresence,{children:overlay.visible&&/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/ReactDOM.createPortal(/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(motion.div,{animate:{opacity:1,transition:{delay:0,duration:0,ease:[.5,0,.88,.77],type:\"tween\"}},className:cx(scopingClassNames,\"framer-9hd70b\"),\"data-framer-portal-id\":\"ibcior\",exit:{opacity:0,transition:{delay:0,duration:0,ease:[.12,.23,.5,1],type:\"tween\"}},initial:{opacity:0},onTap:()=>overlay.hide()},\"gqUHnCVd8\"),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:cx(scopingClassNames,\"framer-3avlr0-container\"),\"data-framer-portal-id\":\"ibcior\",inComponentSlot:true,isModuleExternal:true,nodeId:\"gRhMWkOcm\",rendersWithMotion:true,scopeId:\"OMp430bgy\",children:/*#__PURE__*/_jsx(YouTube,{borderRadius:10,bottomLeftRadius:10,bottomRightRadius:10,height:\"100%\",id:\"gRhMWkOcm\",isMixedBorderRadius:false,isRed:true,layoutId:\"gRhMWkOcm\",play:\"Loop\",shouldMute:false,style:{height:\"100%\",width:\"100%\"},thumbnail:\"Medium Quality\",topLeftRadius:10,topRightRadius:10,url:\"https://youtu.be/0sEHyH9k9CA\",width:\"100%\"})})})]}),getContainer())})})]})})})})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1sn8yzv\",\"data-framer-name\":\"Container\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-102ga7m\",\"data-border\":true,\"data-framer-name\":\"Intor Wrap\",children:[/*#__PURE__*/_jsx(Overlay,{children:overlay1=>/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{jtC8vLgen:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+3420+270+0+20+0+25+0),pixelHeight:450,pixelWidth:803,sizes:`min(min(${componentViewport?.width||\"100vw\"} - 40px, 1130px) - 40px, 540px)`,src:\"https://framerusercontent.com/images/zOcrg1G2g8R5X1yCmNFCHahY.png\",srcSet:\"https://framerusercontent.com/images/zOcrg1G2g8R5X1yCmNFCHahY.png?scale-down-to=512 512w,https://framerusercontent.com/images/zOcrg1G2g8R5X1yCmNFCHahY.png 803w\"}},tICWQLge2:{background:{alt:\"\",fit:\"fill\",pixelHeight:450,pixelWidth:803,sizes:\"400px\",src:\"https://framerusercontent.com/images/zOcrg1G2g8R5X1yCmNFCHahY.png\",srcSet:\"https://framerusercontent.com/images/zOcrg1G2g8R5X1yCmNFCHahY.png?scale-down-to=512 512w,https://framerusercontent.com/images/zOcrg1G2g8R5X1yCmNFCHahY.png 803w\"}},WSvcEG864:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1661+620+0+105+0+38.5),pixelHeight:450,pixelWidth:803,sizes:`min(max((min(${componentViewport?.width||\"100vw\"} - 40px, 1130px) - 102px) / 2, 1px), 540px)`,src:\"https://framerusercontent.com/images/zOcrg1G2g8R5X1yCmNFCHahY.png\",srcSet:\"https://framerusercontent.com/images/zOcrg1G2g8R5X1yCmNFCHahY.png?scale-down-to=512 512w,https://framerusercontent.com/images/zOcrg1G2g8R5X1yCmNFCHahY.png 803w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1657+620+0+105+0+38.5),pixelHeight:450,pixelWidth:803,sizes:`min(max((min(${componentViewport?.width||\"100vw\"} - 40px, 1130px) - 102px) / 2, 1px), 540px)`,src:\"https://framerusercontent.com/images/zOcrg1G2g8R5X1yCmNFCHahY.png\",srcSet:\"https://framerusercontent.com/images/zOcrg1G2g8R5X1yCmNFCHahY.png?scale-down-to=512 512w,https://framerusercontent.com/images/zOcrg1G2g8R5X1yCmNFCHahY.png 803w\"},className:\"framer-1xq8q6r\",\"data-framer-name\":\"Image Wrap\",id:\"1xq8q6r\",onTap:onTap3bnx0g({overlay:overlay1}),children:/*#__PURE__*/_jsx(AnimatePresence,{children:overlay1.visible&&/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/ReactDOM.createPortal(/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(motion.div,{animate:{opacity:1,transition:{delay:0,duration:.3,ease:[.44,0,.56,1],type:\"tween\"}},className:cx(scopingClassNames,\"framer-2plv4c\"),\"data-framer-portal-id\":\"1xq8q6r\",exit:{opacity:0,transition:{delay:0,duration:0,ease:[.44,0,.56,1],type:\"tween\"}},initial:{opacity:0},onTap:()=>overlay1.hide()},\"RzrQecwW8\"),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:cx(scopingClassNames,\"framer-dzve55-container\"),\"data-framer-portal-id\":\"1xq8q6r\",isModuleExternal:true,nodeId:\"RnHWFyMbg\",scopeId:\"OMp430bgy\",children:/*#__PURE__*/_jsx(YouTube,{borderRadius:10,bottomLeftRadius:10,bottomRightRadius:10,height:\"100%\",id:\"RnHWFyMbg\",isMixedBorderRadius:false,isRed:true,layoutId:\"RnHWFyMbg\",play:\"Loop\",shouldMute:false,style:{height:\"100%\",width:\"100%\"},thumbnail:\"Medium Quality\",topLeftRadius:10,topRightRadius:10,url:\"https://youtu.be/xR9Cch_UXaw\",width:\"100%\"})})})]}),getContainer())})})})})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-105zu52\",\"data-framer-name\":\"Intro Content Wrap\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1aveioo\",\"data-framer-name\":\"Intro Content\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{jtC8vLgen:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+3420+270+0+20+0+25+200+0+0+0+0),pixelHeight:30,pixelWidth:40,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/m2lp3Wo0pbZ3zaxymTgxPUOoFBU.svg\"}},tICWQLge2:{background:{alt:\"\",fit:\"fill\",pixelHeight:30,pixelWidth:40,src:\"https://framerusercontent.com/images/m2lp3Wo0pbZ3zaxymTgxPUOoFBU.svg\"}},WSvcEG864:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1661+620+0+105+0+32+0+0+0+0),pixelHeight:30,pixelWidth:40,src:\"https://framerusercontent.com/images/m2lp3Wo0pbZ3zaxymTgxPUOoFBU.svg\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1657+620+0+105+0+32+0+0+0+0),pixelHeight:30,pixelWidth:40,src:\"https://framerusercontent.com/images/m2lp3Wo0pbZ3zaxymTgxPUOoFBU.svg\"},className:\"framer-15f4461\",\"data-framer-name\":\"Qyotes\"})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-smbyua\",\"data-framer-name\":\"intro Heading\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{jtC8vLgen:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0RlZ3VsYXIgVGV4dCBCb2xk\",\"--framer-font-family\":'\"Degular Text Bold\", \"Degular Text Bold Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-letter-spacing\":\"-0.16px\",\"--framer-line-height\":\"25px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-406ee2a1-9c29-42c5-961e-cfe02a30aaf7, rgb(18, 18, 18))\"},children:/*#__PURE__*/_jsx(\"em\",{children:'\"I feel like it\\'s so much easier to create content.\"'})})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0RlZ3VsYXIgVGV4dCBCb2xk\",\"--framer-font-family\":'\"Degular Text Bold\", \"Degular Text Bold Placeholder\", sans-serif',\"--framer-font-size\":\"32px\",\"--framer-letter-spacing\":\"-0.16px\",\"--framer-line-height\":\"38px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-406ee2a1-9c29-42c5-961e-cfe02a30aaf7, rgb(18, 18, 18))\"},children:/*#__PURE__*/_jsx(\"em\",{children:'\"I feel like it\\'s so much easier to create content.\"'})})}),className:\"framer-3mjhlj\",fonts:[\"CUSTOM;Degular Text Bold\"],verticalAlignment:\"top\",withExternalLayout:true})})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-keiasn\",\"data-framer-name\":\"Name Wrap\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-jjja4l\",\"data-framer-name\":\"Intro Name\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{jtC8vLgen:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+3420+270+0+20+0+25+200+0+178+0+1),pixelHeight:120,pixelWidth:120,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/NmKrWjVAPwbKM6svYtcIj4Bd8.jpg\"}},tICWQLge2:{background:{alt:\"\",fit:\"fit\",pixelHeight:120,pixelWidth:120,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/NmKrWjVAPwbKM6svYtcIj4Bd8.jpg\"}},WSvcEG864:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1661+620+0+105+0+32+0+255+0+1.5),pixelHeight:120,pixelWidth:120,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/NmKrWjVAPwbKM6svYtcIj4Bd8.jpg\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1657+620+0+105+0+32+0+255+0+1.5),pixelHeight:120,pixelWidth:120,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/NmKrWjVAPwbKM6svYtcIj4Bd8.jpg\"},className:\"framer-17pkle5\"})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{jtC8vLgen:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0RlZ3VsYXIgVGV4dCBCb2xk\",\"--framer-font-family\":'\"Degular Text Bold\", \"Degular Text Bold Placeholder\", sans-serif',\"--framer-line-height\":\"22px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-406ee2a1-9c29-42c5-961e-cfe02a30aaf7, rgb(18, 18, 18))\"},children:\"Kyle Adams\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0RlZ3VsYXIgVGV4dCBCb2xk\",\"--framer-font-family\":'\"Degular Text Bold\", \"Degular Text Bold Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"22px\",\"--framer-text-color\":\"var(--token-406ee2a1-9c29-42c5-961e-cfe02a30aaf7, rgb(18, 18, 18))\"},children:\"Kyle Adams\"})}),className:\"framer-cvjjyp\",fonts:[\"CUSTOM;Degular Text Bold\"],verticalAlignment:\"top\",withExternalLayout:true})})]})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-p6ih1t\",\"data-framer-name\":\"Content Whole Wrap\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1c55s91\",\"data-framer-name\":\"Headin Wrap\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{jtC8vLgen:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h3\",{style:{\"--font-selector\":\"Q1VTVE9NO0RlZ3VsYXIgVGV4dCBSZWd1bGFy\",\"--framer-font-family\":'\"Degular Text Regular\", \"Degular Text Regular Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-line-height\":\"25px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-406ee2a1-9c29-42c5-961e-cfe02a30aaf7, rgb(18, 18, 18))\"},children:[\"Great \",/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"Q1VTVE9NO0RlZ3VsYXIgVGV4dCBCb2xk\",\"--framer-font-family\":'\"Degular Text Bold\", \"Degular Text Bold Placeholder\", sans-serif'},children:\"creators\"}),\" have great \",/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"Q1VTVE9NO0RlZ3VsYXIgVGV4dCBCb2xk\",\"--framer-font-family\":'\"Degular Text Bold\", \"Degular Text Bold Placeholder\", sans-serif'},children:\"systems\"}),\".\"]})})},tICWQLge2:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h3\",{style:{\"--font-selector\":\"Q1VTVE9NO0RlZ3VsYXIgVGV4dCBSZWd1bGFy\",\"--framer-font-family\":'\"Degular Text Regular\", \"Degular Text Regular Placeholder\", sans-serif',\"--framer-font-size\":\"46px\",\"--framer-line-height\":\"50px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-406ee2a1-9c29-42c5-961e-cfe02a30aaf7, rgb(18, 18, 18))\"},children:[\"Great \",/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"Q1VTVE9NO0RlZ3VsYXIgVGV4dCBCb2xk\",\"--framer-font-family\":'\"Degular Text Bold\", \"Degular Text Bold Placeholder\", sans-serif'},children:\"creators\"}),\" have great \",/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"Q1VTVE9NO0RlZ3VsYXIgVGV4dCBCb2xk\",\"--framer-font-family\":'\"Degular Text Bold\", \"Degular Text Bold Placeholder\", sans-serif'},children:\"systems\"}),\".\"]})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h3\",{style:{\"--font-selector\":\"Q1VTVE9NO0RlZ3VsYXIgVGV4dCBSZWd1bGFy\",\"--framer-font-family\":'\"Degular Text Regular\", \"Degular Text Regular Placeholder\", sans-serif',\"--framer-font-size\":\"46px\",\"--framer-line-height\":\"61px\",\"--framer-text-color\":\"var(--token-406ee2a1-9c29-42c5-961e-cfe02a30aaf7, rgb(18, 18, 18))\"},children:[\"Great \",/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"Q1VTVE9NO0RlZ3VsYXIgVGV4dCBCb2xk\",\"--framer-font-family\":'\"Degular Text Bold\", \"Degular Text Bold Placeholder\", sans-serif'},children:\"creators\"}),\" have great \",/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"Q1VTVE9NO0RlZ3VsYXIgVGV4dCBCb2xk\",\"--framer-font-family\":'\"Degular Text Bold\", \"Degular Text Bold Placeholder\", sans-serif'},children:\"systems\"}),\".\"]})}),className:\"framer-mbcnsz\",fonts:[\"CUSTOM;Degular Text Regular\",\"CUSTOM;Degular Text Bold\"],verticalAlignment:\"top\",withExternalLayout:true})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-zl4zl1\",\"data-framer-name\":\"Text Wrap\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{jtC8vLgen:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0RlZ3VsYXIgVGV4dCBSZWd1bGFy\",\"--framer-font-family\":'\"Degular Text Regular\", \"Degular Text Regular Placeholder\", sans-serif',\"--framer-line-height\":\"18px\",\"--framer-text-color\":\"var(--token-406ee2a1-9c29-42c5-961e-cfe02a30aaf7, rgb(18, 18, 18))\"},children:'Have you looked at the creators you admire and wondered, \"How do they do it all?\"'})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0RlZ3VsYXIgVGV4dCBSZWd1bGFy\",\"--framer-font-family\":'\"Degular Text Regular\", \"Degular Text Regular Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-line-height\":\"26px\",\"--framer-text-color\":\"var(--token-406ee2a1-9c29-42c5-961e-cfe02a30aaf7, rgb(18, 18, 18))\"},children:'Have you looked at the creators you admire and wondered, \"How do they do it all?\"'})}),className:\"framer-1kd1hc7\",fonts:[\"CUSTOM;Degular Text Regular\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{jtC8vLgen:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0RlZ3VsYXIgVGV4dCBSZWd1bGFy\",\"--framer-font-family\":'\"Degular Text Regular\", \"Degular Text Regular Placeholder\", sans-serif',\"--framer-line-height\":\"18px\",\"--framer-text-color\":\"var(--token-406ee2a1-9c29-42c5-961e-cfe02a30aaf7, rgb(18, 18, 18))\"},children:[\"You're not crazy \",/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"Q1VTVE9NO0RlZ3VsYXIgVGV4dCBCb2xk\",\"--framer-font-family\":'\"Degular Text Bold\", \"Degular Text Bold Placeholder\", sans-serif'},children:\"\u2013 keeping up with the demands of being a creator is hard.\"}),\" You have the constant pressure of a looming deadline, but that's compounded by just how many tasks are on your plate that don't involve creating.\"]})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0RlZ3VsYXIgVGV4dCBSZWd1bGFy\",\"--framer-font-family\":'\"Degular Text Regular\", \"Degular Text Regular Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-line-height\":\"26px\",\"--framer-text-color\":\"var(--token-406ee2a1-9c29-42c5-961e-cfe02a30aaf7, rgb(18, 18, 18))\"},children:[\"You're not crazy \",/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"Q1VTVE9NO0RlZ3VsYXIgVGV4dCBCb2xk\",\"--framer-font-family\":'\"Degular Text Bold\", \"Degular Text Bold Placeholder\", sans-serif'},children:\"\u2013 keeping up with the demands of being a creator is hard.\"}),\" You have the constant pressure of a looming deadline, but that's compounded by just how many tasks are on your plate that don't involve creating.\"]})}),className:\"framer-1qedfjv\",fonts:[\"CUSTOM;Degular Text Regular\",\"CUSTOM;Degular Text Bold\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{jtC8vLgen:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0RlZ3VsYXIgVGV4dCBSZWd1bGFy\",\"--framer-font-family\":'\"Degular Text Regular\", \"Degular Text Regular Placeholder\", sans-serif',\"--framer-line-height\":\"18px\",\"--framer-text-color\":\"var(--token-406ee2a1-9c29-42c5-961e-cfe02a30aaf7, rgb(18, 18, 18))\"},children:\"The more successful you become, the more complex the business becomes. Suddenly the thing you love most (creating) feels like a minority of your time.\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0RlZ3VsYXIgVGV4dCBSZWd1bGFy\",\"--framer-font-family\":'\"Degular Text Regular\", \"Degular Text Regular Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-line-height\":\"26px\",\"--framer-text-color\":\"var(--token-406ee2a1-9c29-42c5-961e-cfe02a30aaf7, rgb(18, 18, 18))\"},children:\"The more successful you become, the more complex the business becomes. Suddenly the thing you love most (creating) feels like a minority of your time.\"})}),className:\"framer-1bskhk6\",fonts:[\"CUSTOM;Degular Text Regular\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{jtC8vLgen:{children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0RlZ3VsYXIgVGV4dCBSZWd1bGFy\",\"--framer-font-family\":'\"Degular Text Regular\", \"Degular Text Regular Placeholder\", sans-serif',\"--framer-line-height\":\"18px\",\"--framer-text-color\":\"var(--token-406ee2a1-9c29-42c5-961e-cfe02a30aaf7, rgb(18, 18, 18))\"},children:\"We've experienced this firsthand. And we realized that whether they have a team or not, the most successful creators are supported by excellent systems that allow them to spend more time doing what they do best.\"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0RlZ3VsYXIgVGV4dCBSZWd1bGFy\",\"--framer-font-family\":'\"Degular Text Regular\", \"Degular Text Regular Placeholder\", sans-serif',\"--framer-line-height\":\"18px\",\"--framer-text-color\":\"var(--token-406ee2a1-9c29-42c5-961e-cfe02a30aaf7, rgb(18, 18, 18))\"},children:/*#__PURE__*/_jsx(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0RlZ3VsYXIgVGV4dCBCb2xk\",\"--framer-font-family\":'\"Degular Text Bold\", \"Degular Text Bold Placeholder\", sans-serif',\"--framer-line-height\":\"18px\",\"--framer-text-color\":\"var(--token-406ee2a1-9c29-42c5-961e-cfe02a30aaf7, rgb(18, 18, 18))\"},children:\"The problem is, most productivity systems were built for managers, not makers.\"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0RlZ3VsYXIgVGV4dCBCb2xk\",\"--framer-font-family\":'\"Degular Text Bold\", \"Degular Text Bold Placeholder\", sans-serif',\"--framer-line-height\":\"18px\",\"--framer-text-color\":\"var(--token-406ee2a1-9c29-42c5-961e-cfe02a30aaf7, rgb(18, 18, 18))\"},children:/*#__PURE__*/_jsx(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0RlZ3VsYXIgVGV4dCBSZWd1bGFy\",\"--framer-font-family\":'\"Degular Text Regular\", \"Degular Text Regular Placeholder\", sans-serif',\"--framer-line-height\":\"18px\",\"--framer-text-color\":\"var(--token-406ee2a1-9c29-42c5-961e-cfe02a30aaf7, rgb(18, 18, 18))\"},children:\"They assume your work is linear, when the creative process is fluid and multidimensional. So you end up fighting your tools instead of using them to bring your best work to life.\"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0RlZ3VsYXIgVGV4dCBCb2xk\",\"--framer-font-family\":'\"Degular Text Bold\", \"Degular Text Bold Placeholder\", sans-serif',\"--framer-line-height\":\"18px\",\"--framer-text-color\":\"var(--token-406ee2a1-9c29-42c5-961e-cfe02a30aaf7, rgb(18, 18, 18))\"},children:/*#__PURE__*/_jsx(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0RlZ3VsYXIgVGV4dCBCb2xk\",\"--framer-font-family\":'\"Degular Text Bold\", \"Degular Text Bold Placeholder\", sans-serif',\"--framer-line-height\":\"18px\",\"--framer-text-color\":\"var(--token-406ee2a1-9c29-42c5-961e-cfe02a30aaf7, rgb(18, 18, 18))\"},children:\"That's exactly why we built CreatorHQ.\"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0RlZ3VsYXIgVGV4dCBCb2xk\",\"--framer-font-family\":'\"Degular Text Bold\", \"Degular Text Bold Placeholder\", sans-serif',\"--framer-line-height\":\"18px\",\"--framer-text-color\":\"var(--token-406ee2a1-9c29-42c5-961e-cfe02a30aaf7, rgb(18, 18, 18))\"},children:/*#__PURE__*/_jsx(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0RlZ3VsYXIgVGV4dCBSZWd1bGFy\",\"--framer-font-family\":'\"Degular Text Regular\", \"Degular Text Regular Placeholder\", sans-serif',\"--framer-line-height\":\"18px\",\"--framer-text-color\":\"var(--token-406ee2a1-9c29-42c5-961e-cfe02a30aaf7, rgb(18, 18, 18))\"},children:'CreatorHQ is a \"thinking system\" that brings all your work into one clear view \u2013 so you spend less time context switching and more time in creative flow.'})]})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0RlZ3VsYXIgVGV4dCBSZWd1bGFy\",\"--framer-font-family\":'\"Degular Text Regular\", \"Degular Text Regular Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-line-height\":\"26px\",\"--framer-text-color\":\"var(--token-406ee2a1-9c29-42c5-961e-cfe02a30aaf7, rgb(18, 18, 18))\"},children:\"We've experienced this firsthand. And we realized that whether they have a team or not, the most successful creators are supported by excellent systems that allow them to spend more time doing what they do best.\"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0RlZ3VsYXIgVGV4dCBSZWd1bGFy\",\"--framer-font-family\":'\"Degular Text Regular\", \"Degular Text Regular Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-line-height\":\"26px\",\"--framer-text-color\":\"var(--token-406ee2a1-9c29-42c5-961e-cfe02a30aaf7, rgb(18, 18, 18))\"},children:/*#__PURE__*/_jsx(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0RlZ3VsYXIgVGV4dCBCb2xk\",\"--framer-font-family\":'\"Degular Text Bold\", \"Degular Text Bold Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-line-height\":\"26px\",\"--framer-text-color\":\"var(--token-406ee2a1-9c29-42c5-961e-cfe02a30aaf7, rgb(18, 18, 18))\"},children:\"The problem is, most productivity systems were built for managers, not makers.\"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0RlZ3VsYXIgVGV4dCBCb2xk\",\"--framer-font-family\":'\"Degular Text Bold\", \"Degular Text Bold Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-line-height\":\"26px\",\"--framer-text-color\":\"var(--token-406ee2a1-9c29-42c5-961e-cfe02a30aaf7, rgb(18, 18, 18))\"},children:/*#__PURE__*/_jsx(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0RlZ3VsYXIgVGV4dCBSZWd1bGFy\",\"--framer-font-family\":'\"Degular Text Regular\", \"Degular Text Regular Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-line-height\":\"26px\",\"--framer-text-color\":\"var(--token-406ee2a1-9c29-42c5-961e-cfe02a30aaf7, rgb(18, 18, 18))\"},children:\"They assume your work is linear, when the creative process is fluid and multidimensional. So you end up fighting your tools instead of using them to bring your best work to life.\"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0RlZ3VsYXIgVGV4dCBCb2xk\",\"--framer-font-family\":'\"Degular Text Bold\", \"Degular Text Bold Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-line-height\":\"26px\",\"--framer-text-color\":\"var(--token-406ee2a1-9c29-42c5-961e-cfe02a30aaf7, rgb(18, 18, 18))\"},children:/*#__PURE__*/_jsx(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0RlZ3VsYXIgVGV4dCBCb2xk\",\"--framer-font-family\":'\"Degular Text Bold\", \"Degular Text Bold Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-line-height\":\"26px\",\"--framer-text-color\":\"var(--token-406ee2a1-9c29-42c5-961e-cfe02a30aaf7, rgb(18, 18, 18))\"},children:\"That's exactly why we built CreatorHQ.\"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0RlZ3VsYXIgVGV4dCBCb2xk\",\"--framer-font-family\":'\"Degular Text Bold\", \"Degular Text Bold Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-line-height\":\"26px\",\"--framer-text-color\":\"var(--token-406ee2a1-9c29-42c5-961e-cfe02a30aaf7, rgb(18, 18, 18))\"},children:/*#__PURE__*/_jsx(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0RlZ3VsYXIgVGV4dCBSZWd1bGFy\",\"--framer-font-family\":'\"Degular Text Regular\", \"Degular Text Regular Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-line-height\":\"26px\",\"--framer-text-color\":\"var(--token-406ee2a1-9c29-42c5-961e-cfe02a30aaf7, rgb(18, 18, 18))\"},children:'CreatorHQ is a \"thinking system\" that brings all your work into one clear view \u2013 so you spend less time context switching and more time in creative flow.'})]}),className:\"framer-1jsmrmc\",fonts:[\"CUSTOM;Degular Text Regular\",\"CUSTOM;Degular Text Bold\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{jtC8vLgen:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0RlZ3VsYXIgVGV4dCBSZWd1bGFy\",\"--framer-font-family\":'\"Degular Text Regular\", \"Degular Text Regular Placeholder\", sans-serif',\"--framer-line-height\":\"18px\",\"--framer-text-color\":\"var(--token-406ee2a1-9c29-42c5-961e-cfe02a30aaf7, rgb(18, 18, 18))\"},children:\"It's the same system we use to support Creator Science \u2013 all in Notion.\\u2028\\u2028By leveraging CreatorHQ, we're publishing more than ever and are nearing $1 million in annual revenue because of it.\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0RlZ3VsYXIgVGV4dCBSZWd1bGFy\",\"--framer-font-family\":'\"Degular Text Regular\", \"Degular Text Regular Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-line-height\":\"26px\",\"--framer-text-color\":\"var(--token-406ee2a1-9c29-42c5-961e-cfe02a30aaf7, rgb(18, 18, 18))\"},children:\"It's the same system we use to support Creator Science \u2013 all in Notion.\\u2028\\u2028By leveraging CreatorHQ, we're publishing more than ever and are nearing $1 million in annual revenue because of it.\"})}),className:\"framer-u1njx8\",fonts:[\"CUSTOM;Degular Text Regular\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{jtC8vLgen:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0RlZ3VsYXIgVGV4dCBCb2xk\",\"--framer-font-family\":'\"Degular Text Bold\", \"Degular Text Bold Placeholder\", sans-serif',\"--framer-line-height\":\"20px\",\"--framer-text-color\":\"var(--token-406ee2a1-9c29-42c5-961e-cfe02a30aaf7, rgb(18, 18, 18))\"},children:[/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"Q1VTVE9NO0RlZ3VsYXIgVGV4dCBSZWd1bGFy\",\"--framer-font-family\":'\"Degular Text Regular\", \"Degular Text Regular Placeholder\", sans-serif'},children:\"We spent \"}),\"more than three years building this.\"]})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0RlZ3VsYXIgVGV4dCBCb2xk\",\"--framer-font-family\":'\"Degular Text Bold\", \"Degular Text Bold Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-line-height\":\"26px\",\"--framer-text-color\":\"var(--token-406ee2a1-9c29-42c5-961e-cfe02a30aaf7, rgb(18, 18, 18))\"},children:[/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"Q1VTVE9NO0RlZ3VsYXIgVGV4dCBSZWd1bGFy\",\"--framer-font-family\":'\"Degular Text Regular\", \"Degular Text Regular Placeholder\", sans-serif'},children:\"We spent \"}),\"more than three years building this.\"]})}),className:\"framer-jjgidt\",fonts:[\"CUSTOM;Degular Text Bold\",\"CUSTOM;Degular Text Regular\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{jtC8vLgen:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0RlZ3VsYXIgVGV4dCBSZWd1bGFy\",\"--framer-font-family\":'\"Degular Text Regular\", \"Degular Text Regular Placeholder\", sans-serif',\"--framer-line-height\":\"18px\",\"--framer-text-color\":\"var(--token-406ee2a1-9c29-42c5-961e-cfe02a30aaf7, rgb(18, 18, 18))\"},children:\"And now, you can have it out of the box.\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0RlZ3VsYXIgVGV4dCBSZWd1bGFy\",\"--framer-font-family\":'\"Degular Text Regular\", \"Degular Text Regular Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-line-height\":\"26px\",\"--framer-text-color\":\"var(--token-406ee2a1-9c29-42c5-961e-cfe02a30aaf7, rgb(18, 18, 18))\"},children:\"And now, you can have it out of the box.\"})}),className:\"framer-1jd0kvl\",fonts:[\"CUSTOM;Degular Text Regular\"],verticalAlignment:\"top\",withExternalLayout:true})})]})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1xk7dnu\",\"data-framer-name\":\"Container\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-aids7l\",\"data-framer-name\":\"Title Wrap\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{jtC8vLgen:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{style:{\"--font-selector\":\"Q1VTVE9NO0RlZ3VsYXIgVGV4dCBCb2xk\",\"--framer-font-family\":'\"Degular Text Bold\", \"Degular Text Bold Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-line-height\":\"32px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-406ee2a1-9c29-42c5-961e-cfe02a30aaf7, rgb(18, 18, 18))\"},children:\"CreatorHQ helps you do three things:\"})})},WSvcEG864:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{style:{\"--font-selector\":\"Q1VTVE9NO0RlZ3VsYXIgVGV4dCBCb2xk\",\"--framer-font-family\":'\"Degular Text Bold\", \"Degular Text Bold Placeholder\", sans-serif',\"--framer-font-size\":\"32px\",\"--framer-line-height\":\"41px\",\"--framer-text-color\":\"var(--token-406ee2a1-9c29-42c5-961e-cfe02a30aaf7, rgb(18, 18, 18))\"},children:\"CreatorHQ helps you do three things:\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{style:{\"--font-selector\":\"Q1VTVE9NO0RlZ3VsYXIgVGV4dCBCb2xk\",\"--framer-font-family\":'\"Degular Text Bold\", \"Degular Text Bold Placeholder\", sans-serif',\"--framer-font-size\":\"30px\",\"--framer-line-height\":\"41px\",\"--framer-text-color\":\"var(--token-406ee2a1-9c29-42c5-961e-cfe02a30aaf7, rgb(18, 18, 18))\"},children:\"CreatorHQ helps you do three things:\"})}),className:\"framer-4wi6k8\",fonts:[\"CUSTOM;Degular Text Bold\"],verticalAlignment:\"top\",withExternalLayout:true})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-6mt53p\",\"data-framer-name\":\"Benifit Card\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-kr4srb\",\"data-framer-name\":\"Benifit Card One\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-lusj61\",\"data-framer-name\":\"inner Card\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{jtC8vLgen:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0RlZ3VsYXIgVGV4dCBCb2xk\",\"--framer-font-family\":'\"Degular Text Bold\", \"Degular Text Bold Placeholder\", sans-serif',\"--framer-font-size\":\"28px\",\"--framer-line-height\":\"32px\",\"--framer-text-color\":\"var(--token-406ee2a1-9c29-42c5-961e-cfe02a30aaf7, rgb(18, 18, 18))\"},children:/*#__PURE__*/_jsx(\"span\",{\"data-text-fill\":\"true\",style:{backgroundImage:\"linear-gradient(179deg, rgb(0, 97, 255) 22%, rgba(0, 97, 255, 0) 100%)\"},children:\"1\"})})})},WSvcEG864:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0RlZ3VsYXIgVGV4dCBCb2xk\",\"--framer-font-family\":'\"Degular Text Bold\", \"Degular Text Bold Placeholder\", sans-serif',\"--framer-font-size\":\"64px\",\"--framer-line-height\":\"57px\",\"--framer-text-color\":\"var(--token-406ee2a1-9c29-42c5-961e-cfe02a30aaf7, rgb(18, 18, 18))\"},children:/*#__PURE__*/_jsx(\"span\",{\"data-text-fill\":\"true\",style:{backgroundImage:\"linear-gradient(179deg, rgb(0, 97, 255) 22%, rgba(0, 97, 255, 0) 100%)\"},children:\"1\"})})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0RlZ3VsYXIgVGV4dCBCb2xk\",\"--framer-font-family\":'\"Degular Text Bold\", \"Degular Text Bold Placeholder\", sans-serif',\"--framer-font-size\":\"51px\",\"--framer-line-height\":\"57px\",\"--framer-text-color\":\"var(--token-406ee2a1-9c29-42c5-961e-cfe02a30aaf7, rgb(18, 18, 18))\"},children:/*#__PURE__*/_jsx(\"span\",{\"data-text-fill\":\"true\",style:{backgroundImage:\"linear-gradient(179deg, rgb(0, 97, 255) 22%, rgba(0, 97, 255, 0) 100%)\"},children:\"1\"})})}),className:\"framer-1lfe08l\",fonts:[\"CUSTOM;Degular Text Bold\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{jtC8vLgen:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0RlZ3VsYXIgVGV4dCBCb2xk\",\"--framer-font-family\":'\"Degular Text Bold\", \"Degular Text Bold Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-line-height\":\"22px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-406ee2a1-9c29-42c5-961e-cfe02a30aaf7, rgb(18, 18, 18))\"},children:\"Save More Time\"})})},WSvcEG864:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0RlZ3VsYXIgVGV4dCBCb2xk\",\"--framer-font-family\":'\"Degular Text Bold\", \"Degular Text Bold Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-line-height\":\"26px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-406ee2a1-9c29-42c5-961e-cfe02a30aaf7, rgb(18, 18, 18))\"},children:\"Save More Time\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0RlZ3VsYXIgVGV4dCBCb2xk\",\"--framer-font-family\":'\"Degular Text Bold\", \"Degular Text Bold Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-line-height\":\"22px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-406ee2a1-9c29-42c5-961e-cfe02a30aaf7, rgb(18, 18, 18))\"},children:\"Save More Time\"})}),className:\"framer-d47lx7\",fonts:[\"CUSTOM;Degular Text Bold\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{jtC8vLgen:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0RlZ3VsYXIgVGV4dCBSZWd1bGFy\",\"--framer-font-family\":'\"Degular Text Regular\", \"Degular Text Regular Placeholder\", sans-serif',\"--framer-line-height\":\"18px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-406ee2a1-9c29-42c5-961e-cfe02a30aaf7, rgb(18, 18, 18))\"},children:\"Time is your most precious asset as a creator. CreatorHQ lets you unburden your memory and helps to keep you focused on the most important tasks.\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0RlZ3VsYXIgVGV4dCBSZWd1bGFy\",\"--framer-font-family\":'\"Degular Text Regular\", \"Degular Text Regular Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"21px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-406ee2a1-9c29-42c5-961e-cfe02a30aaf7, rgb(18, 18, 18))\"},children:\"Time is your most precious asset as a creator. CreatorHQ lets you unburden your memory and helps to keep you focused on the most important tasks.\"})}),className:\"framer-crvrnj\",fonts:[\"CUSTOM;Degular Text Regular\"],verticalAlignment:\"top\",withExternalLayout:true})})]})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-hvwoa4\",\"data-framer-name\":\"Benifit Card One\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1rgo1l8\",\"data-framer-name\":\"inner Card\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{jtC8vLgen:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0RlZ3VsYXIgVGV4dCBCb2xk\",\"--framer-font-family\":'\"Degular Text Bold\", \"Degular Text Bold Placeholder\", sans-serif',\"--framer-font-size\":\"28px\",\"--framer-line-height\":\"32px\",\"--framer-text-color\":\"var(--token-406ee2a1-9c29-42c5-961e-cfe02a30aaf7, rgb(18, 18, 18))\"},children:/*#__PURE__*/_jsx(\"span\",{\"data-text-fill\":\"true\",style:{backgroundImage:\"linear-gradient(179deg, rgb(0, 97, 255) 22%, rgba(0, 97, 255, 0) 100%)\"},children:\"2\"})})})},WSvcEG864:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0RlZ3VsYXIgVGV4dCBCb2xk\",\"--framer-font-family\":'\"Degular Text Bold\", \"Degular Text Bold Placeholder\", sans-serif',\"--framer-font-size\":\"64px\",\"--framer-line-height\":\"57px\",\"--framer-text-color\":\"var(--token-406ee2a1-9c29-42c5-961e-cfe02a30aaf7, rgb(18, 18, 18))\"},children:/*#__PURE__*/_jsx(\"span\",{\"data-text-fill\":\"true\",style:{backgroundImage:\"linear-gradient(179deg, rgb(0, 97, 255) 22%, rgba(0, 97, 255, 0) 100%)\"},children:\"2\"})})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0RlZ3VsYXIgVGV4dCBCb2xk\",\"--framer-font-family\":'\"Degular Text Bold\", \"Degular Text Bold Placeholder\", sans-serif',\"--framer-font-size\":\"51px\",\"--framer-line-height\":\"57px\",\"--framer-text-color\":\"var(--token-406ee2a1-9c29-42c5-961e-cfe02a30aaf7, rgb(18, 18, 18))\"},children:/*#__PURE__*/_jsx(\"span\",{\"data-text-fill\":\"true\",style:{backgroundImage:\"linear-gradient(179deg, rgb(0, 97, 255) 22%, rgba(0, 97, 255, 0) 100%)\"},children:\"2\"})})}),className:\"framer-12zudh4\",fonts:[\"CUSTOM;Degular Text Bold\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{jtC8vLgen:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0RlZ3VsYXIgVGV4dCBCb2xk\",\"--framer-font-family\":'\"Degular Text Bold\", \"Degular Text Bold Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-line-height\":\"22px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-406ee2a1-9c29-42c5-961e-cfe02a30aaf7, rgb(18, 18, 18))\"},children:\"Publish More Content\"})})},WSvcEG864:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0RlZ3VsYXIgVGV4dCBCb2xk\",\"--framer-font-family\":'\"Degular Text Bold\", \"Degular Text Bold Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-line-height\":\"26px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-406ee2a1-9c29-42c5-961e-cfe02a30aaf7, rgb(18, 18, 18))\"},children:\"Publish More Content\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0RlZ3VsYXIgVGV4dCBCb2xk\",\"--framer-font-family\":'\"Degular Text Bold\", \"Degular Text Bold Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-line-height\":\"22px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-406ee2a1-9c29-42c5-961e-cfe02a30aaf7, rgb(18, 18, 18))\"},children:\"Publish More Content\"})}),className:\"framer-1abun22\",fonts:[\"CUSTOM;Degular Text Bold\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{jtC8vLgen:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0RlZ3VsYXIgVGV4dCBSZWd1bGFy\",\"--framer-font-family\":'\"Degular Text Regular\", \"Degular Text Regular Placeholder\", sans-serif',\"--framer-line-height\":\"18px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-406ee2a1-9c29-42c5-961e-cfe02a30aaf7, rgb(18, 18, 18))\"},children:\"From planning long-form content to brainstorming short-form content, CreatorHQ is designed to help you ideate and publish more content.\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0RlZ3VsYXIgVGV4dCBSZWd1bGFy\",\"--framer-font-family\":'\"Degular Text Regular\", \"Degular Text Regular Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"21px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-406ee2a1-9c29-42c5-961e-cfe02a30aaf7, rgb(18, 18, 18))\"},children:\"From planning long-form content to brainstorming short-form content, CreatorHQ is designed to help you ideate and publish more content.\"})}),className:\"framer-vjtuw9\",fonts:[\"CUSTOM;Degular Text Regular\"],verticalAlignment:\"top\",withExternalLayout:true})})]})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-hlcfv8\",\"data-framer-name\":\"Benifit Card One\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1h5aum0\",\"data-framer-name\":\"inner Card\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{jtC8vLgen:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0RlZ3VsYXIgVGV4dCBCb2xk\",\"--framer-font-family\":'\"Degular Text Bold\", \"Degular Text Bold Placeholder\", sans-serif',\"--framer-font-size\":\"28px\",\"--framer-line-height\":\"32px\",\"--framer-text-color\":\"var(--token-406ee2a1-9c29-42c5-961e-cfe02a30aaf7, rgb(18, 18, 18))\"},children:/*#__PURE__*/_jsx(\"span\",{\"data-text-fill\":\"true\",style:{backgroundImage:\"linear-gradient(179deg, rgb(0, 97, 255) 22%, rgba(0, 97, 255, 0) 100%)\"},children:\"3\"})})})},WSvcEG864:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0RlZ3VsYXIgVGV4dCBCb2xk\",\"--framer-font-family\":'\"Degular Text Bold\", \"Degular Text Bold Placeholder\", sans-serif',\"--framer-font-size\":\"64px\",\"--framer-line-height\":\"57px\",\"--framer-text-color\":\"var(--token-406ee2a1-9c29-42c5-961e-cfe02a30aaf7, rgb(18, 18, 18))\"},children:/*#__PURE__*/_jsx(\"span\",{\"data-text-fill\":\"true\",style:{backgroundImage:\"linear-gradient(179deg, rgb(0, 97, 255) 22%, rgba(0, 97, 255, 0) 100%)\"},children:\"3\"})})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0RlZ3VsYXIgVGV4dCBCb2xk\",\"--framer-font-family\":'\"Degular Text Bold\", \"Degular Text Bold Placeholder\", sans-serif',\"--framer-font-size\":\"51px\",\"--framer-line-height\":\"57px\",\"--framer-text-color\":\"var(--token-406ee2a1-9c29-42c5-961e-cfe02a30aaf7, rgb(18, 18, 18))\"},children:/*#__PURE__*/_jsx(\"span\",{\"data-text-fill\":\"true\",style:{backgroundImage:\"linear-gradient(179deg, rgb(0, 97, 255) 22%, rgba(0, 97, 255, 0) 100%)\"},children:\"3\"})})}),className:\"framer-1iqu9kq\",fonts:[\"CUSTOM;Degular Text Bold\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{jtC8vLgen:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0RlZ3VsYXIgVGV4dCBCb2xk\",\"--framer-font-family\":'\"Degular Text Bold\", \"Degular Text Bold Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-line-height\":\"22px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-406ee2a1-9c29-42c5-961e-cfe02a30aaf7, rgb(18, 18, 18))\"},children:\"Drive More Revenue\"})})},WSvcEG864:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0RlZ3VsYXIgVGV4dCBCb2xk\",\"--framer-font-family\":'\"Degular Text Bold\", \"Degular Text Bold Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-line-height\":\"26px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-406ee2a1-9c29-42c5-961e-cfe02a30aaf7, rgb(18, 18, 18))\"},children:\"Drive More Revenue\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0RlZ3VsYXIgVGV4dCBCb2xk\",\"--framer-font-family\":'\"Degular Text Bold\", \"Degular Text Bold Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-line-height\":\"22px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-406ee2a1-9c29-42c5-961e-cfe02a30aaf7, rgb(18, 18, 18))\"},children:\"Drive More Revenue\"})}),className:\"framer-apdrfs\",fonts:[\"CUSTOM;Degular Text Bold\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{jtC8vLgen:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0RlZ3VsYXIgVGV4dCBSZWd1bGFy\",\"--framer-font-family\":'\"Degular Text Regular\", \"Degular Text Regular Placeholder\", sans-serif',\"--framer-line-height\":\"18px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-406ee2a1-9c29-42c5-961e-cfe02a30aaf7, rgb(18, 18, 18))\"},children:\"We make it easy to both track sponsorship, affiliate, and speaking revenue as well as encourage you to do more outreach to generate revenue.\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0RlZ3VsYXIgVGV4dCBSZWd1bGFy\",\"--framer-font-family\":'\"Degular Text Regular\", \"Degular Text Regular Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"21px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-406ee2a1-9c29-42c5-961e-cfe02a30aaf7, rgb(18, 18, 18))\"},children:\"We make it easy to both track sponsorship, affiliate, and speaking revenue as well as encourage you to do more outreach to generate revenue.\"})}),className:\"framer-1crvx15\",fonts:[\"CUSTOM;Degular Text Regular\"],verticalAlignment:\"top\",withExternalLayout:true})})]})})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-17q032c\",\"data-framer-name\":\"Button Wrap  Wrap\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{jtC8vLgen:{width:`min(${componentViewport?.width||\"100vw\"} - 40px, 365px)`,y:(componentViewport?.y||0)+0+3420+270+2890+25+0},tICWQLge2:{y:undefined},WSvcEG864:{y:(componentViewport?.y||0)+0+1661+620+3199+80+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:73,width:\"364px\",y:(componentViewport?.y||0)+0+1657+620+3179+80+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-e2f56c-container\",isModuleExternal:true,nodeId:\"WpayI_YrG\",scopeId:\"OMp430bgy\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{jtC8vLgen:{variant:\"lbE2C1YKC\"}},children:/*#__PURE__*/_jsx(BannerButton,{height:\"100%\",i9h0tMlqE:\"https://store.creatorscience.com/buy/28aeab8d-5b53-4840-9055-080794014e8b\",id:\"WpayI_YrG\",layoutId:\"WpayI_YrG\",style:{width:\"100%\"},variant:\"fdB6OMGxz\",width:\"100%\"})})})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-gasvvy\",\"data-framer-name\":\"Prcing Text\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{jtC8vLgen:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7U3BhY2UgTW9uby1yZWd1bGFy\",\"--framer-font-family\":'\"Space Mono\", monospace',\"--framer-font-size\":\"12px\",\"--framer-letter-spacing\":\"0.65px\",\"--framer-line-height\":\"13px\",\"--framer-text-color\":\"var(--token-ead53e59-221f-4b46-951f-2920018f76b7, rgb(30, 30, 30))\",\"--framer-text-transform\":\"uppercase\"},children:\"lifetime access for $297\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7U3BhY2UgTW9uby1yZWd1bGFy\",\"--framer-font-family\":'\"Space Mono\", monospace',\"--framer-font-size\":\"13px\",\"--framer-letter-spacing\":\"0.65px\",\"--framer-line-height\":\"13px\",\"--framer-text-color\":\"var(--token-ead53e59-221f-4b46-951f-2920018f76b7, rgb(30, 30, 30))\",\"--framer-text-transform\":\"uppercase\"},children:\"lifetime access for $297\"})}),className:\"framer-1s9svh7\",fonts:[\"GF;Space Mono-regular\"],verticalAlignment:\"top\",withExternalLayout:true})})})]})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-gorjhk\",\"data-framer-name\":\"Ticker Section\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-1in8w8t\",\"data-framer-name\":\"Ticker\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1tzw4tx-container\",isModuleExternal:true,nodeId:\"iQjI1ObWQ\",scopeId:\"OMp430bgy\",children:/*#__PURE__*/_jsx(Ticker,{alignment:\"center\",direction:\"left\",fadeOptions:{fadeAlpha:0,fadeContent:true,fadeInset:0,fadeWidth:25,overflow:false},gap:0,height:\"100%\",hoverFactor:1,id:\"iQjI1ObWQ\",layoutId:\"iQjI1ObWQ\",padding:10,paddingBottom:10,paddingLeft:10,paddingPerSide:false,paddingRight:10,paddingTop:10,sizingOptions:{heightType:true,widthType:true},slots:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-mj3mox\",\"data-border\":true,\"data-framer-name\":\"Ticker \",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7U3BhY2UgTW9uby03MDA=\",\"--framer-font-family\":'\"Space Mono\", monospace',\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"0.16px\",\"--framer-line-height\":\"16px\",\"--framer-text-color\":\"var(--token-d1f6ecfd-2abf-4418-8a05-8920186c6135, rgb(0, 97, 255))\",\"--framer-text-transform\":\"uppercase\"},children:\"Features & Benefits\"})}),className:\"framer-wngm78\",fonts:[\"GF;Space Mono-700\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:16,pixelWidth:19,src:\"https://framerusercontent.com/images/CYCdTbWDDAiMjyVgVrkA9Le7l8.png\"},className:\"framer-17patwh\"}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7U3BhY2UgTW9uby03MDA=\",\"--framer-font-family\":'\"Space Mono\", monospace',\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"0.16px\",\"--framer-line-height\":\"16px\",\"--framer-text-color\":\"var(--token-d1f6ecfd-2abf-4418-8a05-8920186c6135, rgb(0, 97, 255))\",\"--framer-text-transform\":\"uppercase\"},children:\"Grow your creator business with a proven system\"})}),className:\"framer-1ou90xi\",fonts:[\"GF;Space Mono-700\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:16,pixelWidth:19,src:\"https://framerusercontent.com/images/CYCdTbWDDAiMjyVgVrkA9Le7l8.png\"},className:\"framer-vckyyq\"}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7U3BhY2UgTW9uby03MDA=\",\"--framer-font-family\":'\"Space Mono\", monospace',\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"0.16px\",\"--framer-line-height\":\"16px\",\"--framer-text-color\":\"var(--token-d1f6ecfd-2abf-4418-8a05-8920186c6135, rgb(0, 97, 255))\",\"--framer-text-transform\":\"uppercase\"},children:\"Features & Benefits\"})}),className:\"framer-u32sey\",fonts:[\"GF;Space Mono-700\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:16,pixelWidth:19,src:\"https://framerusercontent.com/images/CYCdTbWDDAiMjyVgVrkA9Le7l8.png\"},className:\"framer-plahom\"}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7U3BhY2UgTW9uby03MDA=\",\"--framer-font-family\":'\"Space Mono\", monospace',\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"0.16px\",\"--framer-line-height\":\"16px\",\"--framer-text-color\":\"var(--token-d1f6ecfd-2abf-4418-8a05-8920186c6135, rgb(0, 97, 255))\",\"--framer-text-transform\":\"uppercase\"},children:\"Grow your creator business with a proven system\"})}),className:\"framer-b9857j\",fonts:[\"GF;Space Mono-700\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:16,pixelWidth:19,src:\"https://framerusercontent.com/images/CYCdTbWDDAiMjyVgVrkA9Le7l8.png\"},className:\"framer-1yv8qs6\"}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7U3BhY2UgTW9uby03MDA=\",\"--framer-font-family\":'\"Space Mono\", monospace',\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"0.16px\",\"--framer-line-height\":\"16px\",\"--framer-text-color\":\"var(--token-d1f6ecfd-2abf-4418-8a05-8920186c6135, rgb(0, 97, 255))\",\"--framer-text-transform\":\"uppercase\"},children:\"Features & Benefits\"})}),className:\"framer-18chl6g\",fonts:[\"GF;Space Mono-700\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:16,pixelWidth:19,src:\"https://framerusercontent.com/images/CYCdTbWDDAiMjyVgVrkA9Le7l8.png\"},className:\"framer-15kgw86\"}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7U3BhY2UgTW9uby03MDA=\",\"--framer-font-family\":'\"Space Mono\", monospace',\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"0.16px\",\"--framer-line-height\":\"16px\",\"--framer-text-color\":\"var(--token-d1f6ecfd-2abf-4418-8a05-8920186c6135, rgb(0, 97, 255))\",\"--framer-text-transform\":\"uppercase\"},children:\"Grow your creator business with a proven system\"})}),className:\"framer-4t0h6i\",fonts:[\"GF;Space Mono-700\"],verticalAlignment:\"top\",withExternalLayout:true})]})],speed:25,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1p73v9a\",\"data-framer-name\":\"Feature Section\",id:elementId2,ref:ref3,children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-rrkx6d\",\"data-framer-name\":\"Feature One\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-frd46q\",\"data-framer-name\":\"Container\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1qbs5gg\",\"data-framer-name\":\"Feature Content\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-vr2df2\",\"data-framer-name\":\"Feature Content one\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-atsu2\",\"data-framer-name\":\"Title Whole Wrap\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-ek563u\",\"data-framer-name\":\"Title Wrap\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{jtC8vLgen:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7U3BhY2UgTW9uby03MDA=\",\"--framer-font-family\":'\"Space Mono\", monospace',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.3px\",\"--framer-line-height\":\"105%\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-d1f6ecfd-2abf-4418-8a05-8920186c6135, rgb(0, 97, 255))\",\"--framer-text-transform\":\"uppercase\"},children:\"1. Manage personal & business tasks, projects and goals\"})})},WSvcEG864:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7U3BhY2UgTW9uby03MDA=\",\"--framer-font-family\":'\"Space Mono\", monospace',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"18px\",\"--framer-text-color\":\"var(--token-d1f6ecfd-2abf-4418-8a05-8920186c6135, rgb(0, 97, 255))\",\"--framer-text-transform\":\"uppercase\"},children:\"1. Manage personal & business tasks, projects and goals\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7U3BhY2UgTW9uby03MDA=\",\"--framer-font-family\":'\"Space Mono\", monospace',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"0.01em\",\"--framer-line-height\":\"18px\",\"--framer-text-color\":\"var(--token-d1f6ecfd-2abf-4418-8a05-8920186c6135, rgb(0, 97, 255))\",\"--framer-text-transform\":\"uppercase\"},children:\"1. Manage personal & business tasks, projects and goals\"})}),className:\"framer-1v92amp\",fonts:[\"GF;Space Mono-700\"],verticalAlignment:\"top\",withExternalLayout:true})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-ioaxux\",\"data-framer-name\":\"Heading Wrap\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{jtC8vLgen:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"Q1VTVE9NO0RlZ3VsYXIgVGV4dCBCb2xk\",\"--framer-font-family\":'\"Degular Text Bold\", \"Degular Text Bold Placeholder\", sans-serif',\"--framer-font-size\":\"25px\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"30px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-406ee2a1-9c29-42c5-961e-cfe02a30aaf7, rgb(18, 18, 18))\"},children:\"Stay focused and organized to reach your goals\"})})},WSvcEG864:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"Q1VTVE9NO0RlZ3VsYXIgVGV4dCBCb2xk\",\"--framer-font-family\":'\"Degular Text Bold\", \"Degular Text Bold Placeholder\", sans-serif',\"--framer-font-size\":\"46px\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"50px\",\"--framer-text-color\":\"var(--token-406ee2a1-9c29-42c5-961e-cfe02a30aaf7, rgb(18, 18, 18))\"},children:\"Stay focused and organized to reach your goals\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"Q1VTVE9NO0RlZ3VsYXIgVGV4dCBCb2xk\",\"--framer-font-family\":'\"Degular Text Bold\", \"Degular Text Bold Placeholder\", sans-serif',\"--framer-font-size\":\"35px\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"40px\",\"--framer-text-color\":\"var(--token-406ee2a1-9c29-42c5-961e-cfe02a30aaf7, rgb(18, 18, 18))\"},children:\"Stay focused and organized to reach your goals\"})}),className:\"framer-1aj685c\",fonts:[\"CUSTOM;Degular Text Bold\"],verticalAlignment:\"top\",withExternalLayout:true})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1qvzmik\",\"data-framer-name\":\"Content Wrap\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{jtC8vLgen:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0RlZ3VsYXIgVGV4dCBSZWd1bGFy\",\"--framer-font-family\":'\"Degular Text Regular\", \"Degular Text Regular Placeholder\", sans-serif',\"--framer-line-height\":\"18px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-406ee2a1-9c29-42c5-961e-cfe02a30aaf7, rgb(18, 18, 18))\"},children:\"In CreatorHQ, your goals, projects, and tasks are connected, helping you stay organized and ensuring everything you do contributes to your bigger picture.\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0RlZ3VsYXIgVGV4dCBSZWd1bGFy\",\"--framer-font-family\":'\"Degular Text Regular\", \"Degular Text Regular Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"23px\",\"--framer-text-color\":\"var(--token-406ee2a1-9c29-42c5-961e-cfe02a30aaf7, rgb(18, 18, 18))\"},children:\"In CreatorHQ, your goals, projects, and tasks are connected, helping you stay organized and ensuring everything you do contributes to your bigger picture.\"})}),className:\"framer-lkekk7\",fonts:[\"CUSTOM;Degular Text Regular\"],verticalAlignment:\"top\",withExternalLayout:true})})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-xb4jb6\",\"data-framer-name\":\"Points Whole Wrap\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1p3551y\",\"data-framer-name\":\"Points One Wrap\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-n9r5oa\",\"data-framer-name\":\"Points One\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{jtC8vLgen:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+6797+60+0+0+0+0+0+0+0+0+249.5+0+0+0+0+45),pixelHeight:21,pixelWidth:22,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/O0eRoHPRHXG7AMIFsit5hwmqXU.png\"}},tICWQLge2:{background:{alt:\"\",fit:\"fill\",pixelHeight:21,pixelWidth:22,src:\"https://framerusercontent.com/images/O0eRoHPRHXG7AMIFsit5hwmqXU.png\"}},WSvcEG864:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+5902+90+0+0+0+0+0+0+0+319+0+0+0+0+9),pixelHeight:21,pixelWidth:22,src:\"https://framerusercontent.com/images/O0eRoHPRHXG7AMIFsit5hwmqXU.png\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+5878+90+0+0+0+0+0+0+0+309+0+0+0+0+7),pixelHeight:21,pixelWidth:22,src:\"https://framerusercontent.com/images/O0eRoHPRHXG7AMIFsit5hwmqXU.png\"},className:\"framer-arb9d7\"})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{jtC8vLgen:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0RlZ3VsYXIgVGV4dCBCb2xk\",\"--framer-font-family\":'\"Degular Text Bold\", \"Degular Text Bold Placeholder\", sans-serif',\"--framer-font-size\":\"17px\",\"--framer-line-height\":\"20px\",\"--framer-text-color\":\"var(--token-406ee2a1-9c29-42c5-961e-cfe02a30aaf7, rgb(18, 18, 18))\"},children:\"Align your goals, projects, and tasks\"})})},WSvcEG864:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0RlZ3VsYXIgVGV4dCBCb2xk\",\"--framer-font-family\":'\"Degular Text Bold\", \"Degular Text Bold Placeholder\", sans-serif',\"--framer-font-size\":\"22px\",\"--framer-line-height\":\"28px\",\"--framer-text-color\":\"var(--token-406ee2a1-9c29-42c5-961e-cfe02a30aaf7, rgb(18, 18, 18))\"},children:\"Align your goals, projects, and tasks\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0RlZ3VsYXIgVGV4dCBCb2xk\",\"--framer-font-family\":'\"Degular Text Bold\", \"Degular Text Bold Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-line-height\":\"24px\",\"--framer-text-color\":\"var(--token-406ee2a1-9c29-42c5-961e-cfe02a30aaf7, rgb(18, 18, 18))\"},children:\"Align your goals, projects, and tasks\"})}),className:\"framer-51rej9\",fonts:[\"CUSTOM;Degular Text Bold\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1e1r4f2\",\"data-framer-name\":\"Points Text\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{jtC8vLgen:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0RlZ3VsYXIgVGV4dCBSZWd1bGFy\",\"--framer-font-family\":'\"Degular Text Regular\", \"Degular Text Regular Placeholder\", sans-serif',\"--framer-line-height\":\"18px\",\"--framer-text-color\":\"var(--token-406ee2a1-9c29-42c5-961e-cfe02a30aaf7, rgb(18, 18, 18))\"},children:\"See how each task contributes to a project and each project moves you closer to your goals.\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0RlZ3VsYXIgVGV4dCBSZWd1bGFy\",\"--framer-font-family\":'\"Degular Text Regular\", \"Degular Text Regular Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"23px\",\"--framer-text-color\":\"var(--token-406ee2a1-9c29-42c5-961e-cfe02a30aaf7, rgb(18, 18, 18))\"},children:\"See how each task contributes to a project and each project moves you closer to your goals.\"})}),className:\"framer-15yb31e\",fonts:[\"CUSTOM;Degular Text Regular\"],verticalAlignment:\"top\",withExternalLayout:true})})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-2dvkji\",\"data-framer-name\":\"Points Two Wrap\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1bhyrvs\",\"data-framer-name\":\"Points Two\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{jtC8vLgen:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+6797+60+0+0+0+0+0+0+0+0+249.5+0+210+0+0+45),pixelHeight:21,pixelWidth:22,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/O0eRoHPRHXG7AMIFsit5hwmqXU.png\"}},tICWQLge2:{background:{alt:\"\",fit:\"fill\",pixelHeight:21,pixelWidth:22,src:\"https://framerusercontent.com/images/O0eRoHPRHXG7AMIFsit5hwmqXU.png\"}},WSvcEG864:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+5902+90+0+0+0+0+0+0+0+319+0+172+0+0+9),pixelHeight:21,pixelWidth:22,src:\"https://framerusercontent.com/images/O0eRoHPRHXG7AMIFsit5hwmqXU.png\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+5878+90+0+0+0+0+0+0+0+309+0+168+0+0+7),pixelHeight:21,pixelWidth:22,src:\"https://framerusercontent.com/images/O0eRoHPRHXG7AMIFsit5hwmqXU.png\"},className:\"framer-1fvbm4u\"})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{jtC8vLgen:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0RlZ3VsYXIgVGV4dCBCb2xk\",\"--framer-font-family\":'\"Degular Text Bold\", \"Degular Text Bold Placeholder\", sans-serif',\"--framer-font-size\":\"17px\",\"--framer-line-height\":\"20px\",\"--framer-text-color\":\"var(--token-406ee2a1-9c29-42c5-961e-cfe02a30aaf7, rgb(18, 18, 18))\"},children:\"Organize and track tasks with ease\"})})},WSvcEG864:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0RlZ3VsYXIgVGV4dCBCb2xk\",\"--framer-font-family\":'\"Degular Text Bold\", \"Degular Text Bold Placeholder\", sans-serif',\"--framer-font-size\":\"22px\",\"--framer-line-height\":\"28px\",\"--framer-text-color\":\"var(--token-406ee2a1-9c29-42c5-961e-cfe02a30aaf7, rgb(18, 18, 18))\"},children:\"Organize and track tasks with ease\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0RlZ3VsYXIgVGV4dCBCb2xk\",\"--framer-font-family\":'\"Degular Text Bold\", \"Degular Text Bold Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-line-height\":\"24px\",\"--framer-text-color\":\"var(--token-406ee2a1-9c29-42c5-961e-cfe02a30aaf7, rgb(18, 18, 18))\"},children:\"Organize and track tasks with ease\"})}),className:\"framer-1wcw6fq\",fonts:[\"CUSTOM;Degular Text Bold\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-10ahet3\",\"data-framer-name\":\"Points Text\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{jtC8vLgen:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0RlZ3VsYXIgVGV4dCBSZWd1bGFy\",\"--framer-font-family\":'\"Degular Text Regular\", \"Degular Text Regular Placeholder\", sans-serif',\"--framer-line-height\":\"18px\",\"--framer-text-color\":\"var(--token-406ee2a1-9c29-42c5-961e-cfe02a30aaf7, rgb(18, 18, 18))\"},children:\"Manage all your to-dos from both work and personal life through our pre-made dashboards and dedicated task database. With quick deadline assignments and drag-and-drop scheduling, staying on top of your day-to-day becomes effortless.\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0RlZ3VsYXIgVGV4dCBSZWd1bGFy\",\"--framer-font-family\":'\"Degular Text Regular\", \"Degular Text Regular Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"23px\",\"--framer-text-color\":\"var(--token-406ee2a1-9c29-42c5-961e-cfe02a30aaf7, rgb(18, 18, 18))\"},children:\"Manage all your to-dos from both work and personal life through our pre-made dashboards and dedicated task database. With quick deadline assignments and drag-and-drop scheduling, staying on top of your day-to-day becomes effortless.\"})}),className:\"framer-1m20qwn\",fonts:[\"CUSTOM;Degular Text Regular\"],verticalAlignment:\"top\",withExternalLayout:true})})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-13bg56e\",\"data-framer-name\":\"Points Three Wrap\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-tsceuy\",\"data-framer-name\":\"Points Two\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{jtC8vLgen:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+6797+60+0+0+0+0+0+0+0+0+249.5+0+420+0+0+45),pixelHeight:21,pixelWidth:22,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/O0eRoHPRHXG7AMIFsit5hwmqXU.png\"}},tICWQLge2:{background:{alt:\"\",fit:\"fill\",pixelHeight:21,pixelWidth:22,src:\"https://framerusercontent.com/images/O0eRoHPRHXG7AMIFsit5hwmqXU.png\"}},WSvcEG864:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+5902+90+0+0+0+0+0+0+0+319+0+344+0+0+9),pixelHeight:21,pixelWidth:22,src:\"https://framerusercontent.com/images/O0eRoHPRHXG7AMIFsit5hwmqXU.png\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+5878+90+0+0+0+0+0+0+0+309+0+336+0+0+7),pixelHeight:21,pixelWidth:22,src:\"https://framerusercontent.com/images/O0eRoHPRHXG7AMIFsit5hwmqXU.png\"},className:\"framer-15o0rdq\"})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{jtC8vLgen:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0RlZ3VsYXIgVGV4dCBCb2xk\",\"--framer-font-family\":'\"Degular Text Bold\", \"Degular Text Bold Placeholder\", sans-serif',\"--framer-font-size\":\"17px\",\"--framer-line-height\":\"20px\",\"--framer-text-color\":\"var(--token-406ee2a1-9c29-42c5-961e-cfe02a30aaf7, rgb(18, 18, 18))\"},children:\"Visualize progress and stay motivated\"})})},WSvcEG864:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0RlZ3VsYXIgVGV4dCBCb2xk\",\"--framer-font-family\":'\"Degular Text Bold\", \"Degular Text Bold Placeholder\", sans-serif',\"--framer-font-size\":\"22px\",\"--framer-line-height\":\"28px\",\"--framer-text-color\":\"var(--token-406ee2a1-9c29-42c5-961e-cfe02a30aaf7, rgb(18, 18, 18))\"},children:\"Visualize progress and stay motivated\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0RlZ3VsYXIgVGV4dCBCb2xk\",\"--framer-font-family\":'\"Degular Text Bold\", \"Degular Text Bold Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-line-height\":\"24px\",\"--framer-text-color\":\"var(--token-406ee2a1-9c29-42c5-961e-cfe02a30aaf7, rgb(18, 18, 18))\"},children:\"Visualize progress and stay motivated\"})}),className:\"framer-1mfr9di\",fonts:[\"CUSTOM;Degular Text Bold\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-pvaq2p\",\"data-framer-name\":\"Points Text\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{jtC8vLgen:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0RlZ3VsYXIgVGV4dCBSZWd1bGFy\",\"--framer-font-family\":'\"Degular Text Regular\", \"Degular Text Regular Placeholder\", sans-serif',\"--framer-line-height\":\"18px\",\"--framer-text-color\":\"var(--token-406ee2a1-9c29-42c5-961e-cfe02a30aaf7, rgb(18, 18, 18))\"},children:\"Keep your goals in sight and track how close you are to completing projects. With visual progress tracking, you'll always know what\u2019s done and what needs your attention.\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0RlZ3VsYXIgVGV4dCBSZWd1bGFy\",\"--framer-font-family\":'\"Degular Text Regular\", \"Degular Text Regular Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"23px\",\"--framer-text-color\":\"var(--token-406ee2a1-9c29-42c5-961e-cfe02a30aaf7, rgb(18, 18, 18))\"},children:\"Keep your goals in sight and track how close you are to completing projects. With visual progress tracking, you'll always know what\u2019s done and what needs your attention.\"})}),className:\"framer-1b0m0td\",fonts:[\"CUSTOM;Degular Text Regular\"],verticalAlignment:\"top\",withExternalLayout:true})})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-7yjmkl\",\"data-framer-name\":\"Points Four Wrap\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-l0rin9\",\"data-framer-name\":\"Points Two\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{jtC8vLgen:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+6797+60+0+0+0+0+0+0+0+0+249.5+0+630+0+0+45),pixelHeight:21,pixelWidth:22,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/O0eRoHPRHXG7AMIFsit5hwmqXU.png\"}},tICWQLge2:{background:{alt:\"\",fit:\"fill\",pixelHeight:21,pixelWidth:22,src:\"https://framerusercontent.com/images/O0eRoHPRHXG7AMIFsit5hwmqXU.png\"}},WSvcEG864:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+5902+90+0+0+0+0+0+0+0+319+0+516+0+0+9),pixelHeight:21,pixelWidth:22,src:\"https://framerusercontent.com/images/O0eRoHPRHXG7AMIFsit5hwmqXU.png\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+5878+90+0+0+0+0+0+0+0+309+0+504+0+0+7),pixelHeight:21,pixelWidth:22,src:\"https://framerusercontent.com/images/O0eRoHPRHXG7AMIFsit5hwmqXU.png\"},className:\"framer-1o90noc\"})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{jtC8vLgen:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0RlZ3VsYXIgVGV4dCBCb2xk\",\"--framer-font-family\":'\"Degular Text Bold\", \"Degular Text Bold Placeholder\", sans-serif',\"--framer-font-size\":\"17px\",\"--framer-line-height\":\"20px\",\"--framer-text-color\":\"var(--token-406ee2a1-9c29-42c5-961e-cfe02a30aaf7, rgb(18, 18, 18))\"},children:\"Quickly set deadlines\"})})},WSvcEG864:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0RlZ3VsYXIgVGV4dCBCb2xk\",\"--framer-font-family\":'\"Degular Text Bold\", \"Degular Text Bold Placeholder\", sans-serif',\"--framer-font-size\":\"22px\",\"--framer-line-height\":\"28px\",\"--framer-text-color\":\"var(--token-406ee2a1-9c29-42c5-961e-cfe02a30aaf7, rgb(18, 18, 18))\"},children:\"Quickly set deadlines\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0RlZ3VsYXIgVGV4dCBCb2xk\",\"--framer-font-family\":'\"Degular Text Bold\", \"Degular Text Bold Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-line-height\":\"24px\",\"--framer-text-color\":\"var(--token-406ee2a1-9c29-42c5-961e-cfe02a30aaf7, rgb(18, 18, 18))\"},children:\"Quickly set deadlines\"})}),className:\"framer-1y0e7x8\",fonts:[\"CUSTOM;Degular Text Bold\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-lbfmvc\",\"data-framer-name\":\"Points Text\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{jtC8vLgen:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0RlZ3VsYXIgVGV4dCBSZWd1bGFy\",\"--framer-font-family\":'\"Degular Text Regular\", \"Degular Text Regular Placeholder\", sans-serif',\"--framer-line-height\":\"18px\",\"--framer-text-color\":\"var(--token-406ee2a1-9c29-42c5-961e-cfe02a30aaf7, rgb(18, 18, 18))\"},children:\"Assign due dates with a click or simply drag tasks into your calendar\u2014keeping you on schedule without the hassle.\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0RlZ3VsYXIgVGV4dCBSZWd1bGFy\",\"--framer-font-family\":'\"Degular Text Regular\", \"Degular Text Regular Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"23px\",\"--framer-text-color\":\"var(--token-406ee2a1-9c29-42c5-961e-cfe02a30aaf7, rgb(18, 18, 18))\"},children:\"Assign due dates with a click or simply drag tasks into your calendar\u2014keeping you on schedule without the hassle.\"})}),className:\"framer-8epl8n\",fonts:[\"CUSTOM;Degular Text Regular\"],verticalAlignment:\"top\",withExternalLayout:true})})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-t7xko5\",\"data-framer-name\":\"Points Four Wrap\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1hccslf\",\"data-framer-name\":\"Points Two\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{jtC8vLgen:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+6797+60+0+0+0+0+0+0+0+0+249.5+0+840+0+0+45),pixelHeight:21,pixelWidth:22,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/O0eRoHPRHXG7AMIFsit5hwmqXU.png\"}},tICWQLge2:{background:{alt:\"\",fit:\"fill\",pixelHeight:21,pixelWidth:22,src:\"https://framerusercontent.com/images/O0eRoHPRHXG7AMIFsit5hwmqXU.png\"}},WSvcEG864:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+5902+90+0+0+0+0+0+0+0+319+0+688+0+0+9),pixelHeight:21,pixelWidth:22,src:\"https://framerusercontent.com/images/O0eRoHPRHXG7AMIFsit5hwmqXU.png\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+5878+90+0+0+0+0+0+0+0+309+0+672+0+0+7),pixelHeight:21,pixelWidth:22,src:\"https://framerusercontent.com/images/O0eRoHPRHXG7AMIFsit5hwmqXU.png\"},className:\"framer-1ilqj2h\"})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{jtC8vLgen:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0RlZ3VsYXIgVGV4dCBCb2xk\",\"--framer-font-family\":'\"Degular Text Bold\", \"Degular Text Bold Placeholder\", sans-serif',\"--framer-font-size\":\"17px\",\"--framer-line-height\":\"20px\",\"--framer-text-color\":\"var(--token-406ee2a1-9c29-42c5-961e-cfe02a30aaf7, rgb(18, 18, 18))\"},children:\"Capture ideas on the go\"})})},WSvcEG864:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0RlZ3VsYXIgVGV4dCBCb2xk\",\"--framer-font-family\":'\"Degular Text Bold\", \"Degular Text Bold Placeholder\", sans-serif',\"--framer-font-size\":\"22px\",\"--framer-line-height\":\"28px\",\"--framer-text-color\":\"var(--token-406ee2a1-9c29-42c5-961e-cfe02a30aaf7, rgb(18, 18, 18))\"},children:\"Capture ideas on the go\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0RlZ3VsYXIgVGV4dCBCb2xk\",\"--framer-font-family\":'\"Degular Text Bold\", \"Degular Text Bold Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-line-height\":\"24px\",\"--framer-text-color\":\"var(--token-406ee2a1-9c29-42c5-961e-cfe02a30aaf7, rgb(18, 18, 18))\"},children:\"Capture ideas on the go\"})}),className:\"framer-llf1f5\",fonts:[\"CUSTOM;Degular Text Bold\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-egj3ch\",\"data-framer-name\":\"Points Text\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{jtC8vLgen:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0RlZ3VsYXIgVGV4dCBSZWd1bGFy\",\"--framer-font-family\":'\"Degular Text Regular\", \"Degular Text Regular Placeholder\", sans-serif',\"--framer-line-height\":\"18px\",\"--framer-text-color\":\"var(--token-406ee2a1-9c29-42c5-961e-cfe02a30aaf7, rgb(18, 18, 18))\"},children:\"Access your mobile task list and inbox anytime through a mobile widget, so you can jot down thoughts, tasks, and ideas wherever you are.\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0RlZ3VsYXIgVGV4dCBSZWd1bGFy\",\"--framer-font-family\":'\"Degular Text Regular\", \"Degular Text Regular Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"23px\",\"--framer-text-color\":\"var(--token-406ee2a1-9c29-42c5-961e-cfe02a30aaf7, rgb(18, 18, 18))\"},children:\"Access your mobile task list and inbox anytime through a mobile widget, so you can jot down thoughts, tasks, and ideas wherever you are.\"})}),className:\"framer-sr47gc\",fonts:[\"CUSTOM;Degular Text Regular\"],verticalAlignment:\"top\",withExternalLayout:true})})})]})]})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-a0eejm\",\"data-framer-name\":\"Image Wrap\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{jtC8vLgen:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+6797+60+0+0+0+0+0+0+1294.5+0+0),pixelHeight:1698,pixelWidth:1302,positionX:\"center\",positionY:\"center\",sizes:`min(min(${componentViewport?.width||\"100vw\"} - 40px, 1260px), 650px)`,src:\"https://framerusercontent.com/images/AjD7CzMsS8JIY0JKNnHQsY5NJig.png\",srcSet:\"https://framerusercontent.com/images/AjD7CzMsS8JIY0JKNnHQsY5NJig.png?scale-down-to=1024 785w,https://framerusercontent.com/images/AjD7CzMsS8JIY0JKNnHQsY5NJig.png 1302w\"}},tICWQLge2:{background:{alt:\"\",fit:\"fill\",pixelHeight:1698,pixelWidth:1302,sizes:`min(min(${componentViewport?.width||\"100vw\"} - 40px, 1260px), 650px)`,src:\"https://framerusercontent.com/images/AjD7CzMsS8JIY0JKNnHQsY5NJig.png\",srcSet:\"https://framerusercontent.com/images/AjD7CzMsS8JIY0JKNnHQsY5NJig.png?scale-down-to=1024 785w,https://framerusercontent.com/images/AjD7CzMsS8JIY0JKNnHQsY5NJig.png 1302w\"}},WSvcEG864:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+5902+90+0+0+0+0+0+157.5+0+0),pixelHeight:1698,pixelWidth:1302,sizes:`min(max((min(${componentViewport?.width||\"100vw\"}, 1260px) - 45px) / 2, 1px), 650px)`,src:\"https://framerusercontent.com/images/AjD7CzMsS8JIY0JKNnHQsY5NJig.png\",srcSet:\"https://framerusercontent.com/images/AjD7CzMsS8JIY0JKNnHQsY5NJig.png?scale-down-to=1024 785w,https://framerusercontent.com/images/AjD7CzMsS8JIY0JKNnHQsY5NJig.png 1302w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+5878+90+0+0+0+0+0+142.5+0+0),pixelHeight:1698,pixelWidth:1302,sizes:`min(max((min(${componentViewport?.width||\"100vw\"}, 1260px) - 45px) / 2, 1px), 650px)`,src:\"https://framerusercontent.com/images/AjD7CzMsS8JIY0JKNnHQsY5NJig.png\",srcSet:\"https://framerusercontent.com/images/AjD7CzMsS8JIY0JKNnHQsY5NJig.png?scale-down-to=1024 785w,https://framerusercontent.com/images/AjD7CzMsS8JIY0JKNnHQsY5NJig.png 1302w\"},className:\"framer-fw3858\",\"data-framer-name\":\"Image\"})})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-vwureh\",\"data-framer-name\":\"Feature Goals\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-eksu1r\",\"data-border\":true,\"data-framer-name\":\"Intro Wrap\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-12k299d\",\"data-framer-name\":\"Content Wrap\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1yzz4d9\",\"data-framer-name\":\"Feed Back \",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{jtC8vLgen:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+6797+60+0+0+0+0+1774.5+0+0+25+0+0+0+0),pixelHeight:58,pixelWidth:79,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/qnPHpRCgU5XVKoX7i5h7jEdkA.png\"}},tICWQLge2:{background:{alt:\"\",fit:\"fill\",pixelHeight:58,pixelWidth:79,src:\"https://framerusercontent.com/images/qnPHpRCgU5XVKoX7i5h7jEdkA.png\"}},WSvcEG864:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+5902+90+0+0+0+0+1220+0+0+40+0+0+0+0),pixelHeight:58,pixelWidth:79,src:\"https://framerusercontent.com/images/qnPHpRCgU5XVKoX7i5h7jEdkA.png\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+5878+90+0+0+0+0+1190+0+0+40+0+0+0+0),pixelHeight:58,pixelWidth:79,src:\"https://framerusercontent.com/images/qnPHpRCgU5XVKoX7i5h7jEdkA.png\"},className:\"framer-1iwrxu2\",\"data-framer-name\":\"Qutos\"})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-a509z4\",\"data-framer-name\":\"Title Wrap\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{jtC8vLgen:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0RlZ3VsYXIgVGV4dCBSZWd1bGFy\",\"--framer-font-family\":'\"Degular Text Regular\", \"Degular Text Regular Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-letter-spacing\":\"-0.3px\",\"--framer-line-height\":\"120%\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-406ee2a1-9c29-42c5-961e-cfe02a30aaf7, rgb(18, 18, 18))\"},children:[/*#__PURE__*/_jsx(\"em\",{children:'\"Within the first few days, '}),/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"Q1VTVE9NO0RlZ3VsYXIgVGV4dCBCb2xk\",\"--framer-font-family\":'\"Degular Text Bold\", \"Degular Text Bold Placeholder\", sans-serif'},children:/*#__PURE__*/_jsx(\"em\",{children:/*#__PURE__*/_jsx(\"strong\",{children:\"I've got my goals, projects and tasks lined up\"})})}),/*#__PURE__*/_jsx(\"em\",{children:', and an outline for a new course all planned out.\"'})]})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0RlZ3VsYXIgVGV4dCBSZWd1bGFy\",\"--framer-font-family\":'\"Degular Text Regular\", \"Degular Text Regular Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-letter-spacing\":\"-0.3px\",\"--framer-line-height\":\"130%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-406ee2a1-9c29-42c5-961e-cfe02a30aaf7, rgb(18, 18, 18))\"},children:[/*#__PURE__*/_jsx(\"em\",{children:'\"Within the first few days, '}),/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"Q1VTVE9NO0RlZ3VsYXIgVGV4dCBCb2xk\",\"--framer-font-family\":'\"Degular Text Bold\", \"Degular Text Bold Placeholder\", sans-serif'},children:/*#__PURE__*/_jsx(\"em\",{children:/*#__PURE__*/_jsx(\"strong\",{children:\"I've got my goals, projects and tasks lined up\"})})}),/*#__PURE__*/_jsx(\"em\",{children:', and an outline for a new course all planned out.\"'})]})}),className:\"framer-3usbi5\",fonts:[\"CUSTOM;Degular Text Regular\",\"CUSTOM;Degular Text Bold\"],verticalAlignment:\"top\",withExternalLayout:true})})})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-oo0ytm\",\"data-framer-name\":\"Feed Back Image\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-meiijz\",\"data-framer-name\":\"Name Wrap\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-o2bslv\",\"data-framer-name\":\"Intro Name\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{jtC8vLgen:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+6797+60+0+0+0+0+1774.5+0+0+25+0+175+0+0+1),pixelHeight:120,pixelWidth:120,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/H5BQ75fgd568RPuDovZ8FDNQ.jpg\"}},tICWQLge2:{background:{alt:\"\",fit:\"fit\",pixelHeight:120,pixelWidth:120,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/H5BQ75fgd568RPuDovZ8FDNQ.jpg\"}},WSvcEG864:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+5902+90+0+0+0+0+1220+0+0+40+0+227+0+63.5+1.5),pixelHeight:120,pixelWidth:120,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/H5BQ75fgd568RPuDovZ8FDNQ.jpg\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+5878+90+0+0+0+0+1190+0+0+40+0+227+0+63.5+1.5),pixelHeight:120,pixelWidth:120,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/H5BQ75fgd568RPuDovZ8FDNQ.jpg\"},className:\"framer-sfwra0\"})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-cawef5\",\"data-framer-name\":\"Name\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{jtC8vLgen:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0RlZ3VsYXIgVGV4dCBCb2xk\",\"--framer-font-family\":'\"Degular Text Bold\", \"Degular Text Bold Placeholder\", sans-serif',\"--framer-line-height\":\"22px\",\"--framer-text-color\":\"var(--token-406ee2a1-9c29-42c5-961e-cfe02a30aaf7, rgb(18, 18, 18))\"},children:\"Nate Kadlac\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0RlZ3VsYXIgVGV4dCBCb2xk\",\"--framer-font-family\":'\"Degular Text Bold\", \"Degular Text Bold Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"22px\",\"--framer-text-color\":\"var(--token-406ee2a1-9c29-42c5-961e-cfe02a30aaf7, rgb(18, 18, 18))\"},children:\"Nate Kadlac\"})}),className:\"framer-1nn581k\",fonts:[\"CUSTOM;Degular Text Bold\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0RlZ3VsYXIgVGV4dCBSZWd1bGFy\",\"--framer-font-family\":'\"Degular Text Regular\", \"Degular Text Regular Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-line-height\":\"16px\",\"--framer-text-color\":\"var(--token-406ee2a1-9c29-42c5-961e-cfe02a30aaf7, rgb(18, 18, 18))\"},children:\"Founder of Approachable Design\"})}),className:\"framer-rhnaxd\",fonts:[\"CUSTOM;Degular Text Regular\"],verticalAlignment:\"top\",withExternalLayout:true})]})]})})]})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-zsqo2y\",\"data-framer-name\":\"Button Wrap  Wrap\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{jtC8vLgen:{width:`min(min(min(${componentViewport?.width||\"100vw\"} - 40px, 1260px), 900px), 365px)`,y:(componentViewport?.y||0)+0+6797+60+0+0+0+0+1774.5+0+295+0+0},tICWQLge2:{y:undefined},WSvcEG864:{y:(componentViewport?.y||0)+0+5902+90+0+0+0+0+1220+0+541+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:73,width:\"364px\",y:(componentViewport?.y||0)+0+5878+90+0+0+0+0+1190+0+541+0+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1h7a0yd-container\",isModuleExternal:true,nodeId:\"kfcOQl47k\",scopeId:\"OMp430bgy\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{jtC8vLgen:{variant:\"lbE2C1YKC\"}},children:/*#__PURE__*/_jsx(BannerButton,{height:\"100%\",i9h0tMlqE:\"https://store.creatorscience.com/buy/28aeab8d-5b53-4840-9055-080794014e8b\",id:\"kfcOQl47k\",layoutId:\"kfcOQl47k\",style:{width:\"100%\"},variant:\"fdB6OMGxz\",width:\"100%\"})})})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-xnklsk\",\"data-framer-name\":\"Prcing Text\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{jtC8vLgen:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7U3BhY2UgTW9uby1yZWd1bGFy\",\"--framer-font-family\":'\"Space Mono\", monospace',\"--framer-font-size\":\"12px\",\"--framer-letter-spacing\":\"0.65px\",\"--framer-line-height\":\"13px\",\"--framer-text-color\":\"var(--token-ead53e59-221f-4b46-951f-2920018f76b7, rgb(30, 30, 30))\",\"--framer-text-transform\":\"uppercase\"},children:\"lifetime access for $297\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7U3BhY2UgTW9uby1yZWd1bGFy\",\"--framer-font-family\":'\"Space Mono\", monospace',\"--framer-font-size\":\"13px\",\"--framer-letter-spacing\":\"0.65px\",\"--framer-line-height\":\"13px\",\"--framer-text-color\":\"var(--token-ead53e59-221f-4b46-951f-2920018f76b7, rgb(30, 30, 30))\",\"--framer-text-transform\":\"uppercase\"},children:\"lifetime access for $297\"})}),className:\"framer-1p8loib\",fonts:[\"GF;Space Mono-regular\"],verticalAlignment:\"top\",withExternalLayout:true})})})]})]})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1ykdrsi\",\"data-framer-name\":\"Seprator\"})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-15436lh\",\"data-framer-name\":\"Feature Two\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1a7bnpp\",\"data-framer-name\":\"Container\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-o61xom\",\"data-framer-name\":\"Feature Content\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-wcviag\",\"data-framer-name\":\"Feature Content one\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1uvk137\",\"data-framer-name\":\"Title Whole Wrap\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-us4unl\",\"data-framer-name\":\"Title Wrap\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{jtC8vLgen:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7U3BhY2UgTW9uby03MDA=\",\"--framer-font-family\":'\"Space Mono\", monospace',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.3px\",\"--framer-line-height\":\"105%\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-d1f6ecfd-2abf-4418-8a05-8920186c6135, rgb(0, 97, 255))\",\"--framer-text-transform\":\"uppercase\"},children:\"2. Master your content calendar on every platform\"})})},WSvcEG864:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7U3BhY2UgTW9uby03MDA=\",\"--framer-font-family\":'\"Space Mono\", monospace',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"18px\",\"--framer-text-color\":\"var(--token-d1f6ecfd-2abf-4418-8a05-8920186c6135, rgb(0, 97, 255))\",\"--framer-text-transform\":\"uppercase\"},children:\"2. Master your content calendar on every platform\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7U3BhY2UgTW9uby03MDA=\",\"--framer-font-family\":'\"Space Mono\", monospace',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"0.01em\",\"--framer-line-height\":\"18px\",\"--framer-text-color\":\"var(--token-d1f6ecfd-2abf-4418-8a05-8920186c6135, rgb(0, 97, 255))\",\"--framer-text-transform\":\"uppercase\"},children:\"2. Master your content calendar on every platform\"})}),className:\"framer-1oley\",fonts:[\"GF;Space Mono-700\"],verticalAlignment:\"top\",withExternalLayout:true})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-gym3h3\",\"data-framer-name\":\"Heading Wrap\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{jtC8vLgen:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"Q1VTVE9NO0RlZ3VsYXIgVGV4dCBCb2xk\",\"--framer-font-family\":'\"Degular Text Bold\", \"Degular Text Bold Placeholder\", sans-serif',\"--framer-font-size\":\"25px\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"30px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-406ee2a1-9c29-42c5-961e-cfe02a30aaf7, rgb(18, 18, 18))\"},children:\"Easily plan, produce, and stay consistent with your content\"})})},WSvcEG864:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"Q1VTVE9NO0RlZ3VsYXIgVGV4dCBCb2xk\",\"--framer-font-family\":'\"Degular Text Bold\", \"Degular Text Bold Placeholder\", sans-serif',\"--framer-font-size\":\"46px\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"50px\",\"--framer-text-color\":\"var(--token-406ee2a1-9c29-42c5-961e-cfe02a30aaf7, rgb(18, 18, 18))\"},children:\"Easily plan, produce, and stay consistent with your content\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"Q1VTVE9NO0RlZ3VsYXIgVGV4dCBCb2xk\",\"--framer-font-family\":'\"Degular Text Bold\", \"Degular Text Bold Placeholder\", sans-serif',\"--framer-font-size\":\"35px\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"40px\",\"--framer-text-color\":\"var(--token-406ee2a1-9c29-42c5-961e-cfe02a30aaf7, rgb(18, 18, 18))\"},children:\"Easily plan, produce, and stay consistent with your content\"})}),className:\"framer-cxqrgn\",fonts:[\"CUSTOM;Degular Text Bold\"],verticalAlignment:\"top\",withExternalLayout:true})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-rkt84e\",\"data-framer-name\":\"Content Wrap\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{jtC8vLgen:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0RlZ3VsYXIgVGV4dCBSZWd1bGFy\",\"--framer-font-family\":'\"Degular Text Regular\", \"Degular Text Regular Placeholder\", sans-serif',\"--framer-line-height\":\"18px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-406ee2a1-9c29-42c5-961e-cfe02a30aaf7, rgb(18, 18, 18))\"},children:\"Managing content across multiple platforms can be challenging, but CreatorHQ makes it simple. Use our Content Dashboard and Calendar to easily plan, produce, and publish your content\u2014all from one place.\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0RlZ3VsYXIgVGV4dCBSZWd1bGFy\",\"--framer-font-family\":'\"Degular Text Regular\", \"Degular Text Regular Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"23px\",\"--framer-text-color\":\"var(--token-406ee2a1-9c29-42c5-961e-cfe02a30aaf7, rgb(18, 18, 18))\"},children:\"Managing content across multiple platforms can be challenging, but CreatorHQ makes it simple. Use our Content Dashboard and Calendar to easily plan, produce, and publish your content\u2014all from one place.\"})}),className:\"framer-sn1dcu\",fonts:[\"CUSTOM;Degular Text Regular\"],verticalAlignment:\"top\",withExternalLayout:true})})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-cgn6em\",\"data-framer-name\":\"Points Whole Wrap\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-16dle1p\",\"data-framer-name\":\"Points One Wrap\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-v70e8x\",\"data-framer-name\":\"Points One\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{jtC8vLgen:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+6797+60+2211.5+60+0+0+0+0+0+0+248.5+0+0+0+0+45),pixelHeight:21,pixelWidth:22,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/O0eRoHPRHXG7AMIFsit5hwmqXU.png\"}},tICWQLge2:{background:{alt:\"\",fit:\"fill\",pixelHeight:21,pixelWidth:22,src:\"https://framerusercontent.com/images/O0eRoHPRHXG7AMIFsit5hwmqXU.png\"}},WSvcEG864:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+5902+90+1958+100+0+0+0+0+0+319+0+0+0+0+9),pixelHeight:21,pixelWidth:22,src:\"https://framerusercontent.com/images/O0eRoHPRHXG7AMIFsit5hwmqXU.png\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+5878+90+1928+100+0+0+0+0+0+309+0+0+0+0+7),pixelHeight:21,pixelWidth:22,src:\"https://framerusercontent.com/images/O0eRoHPRHXG7AMIFsit5hwmqXU.png\"},className:\"framer-1ti6b0m\"})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{jtC8vLgen:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0RlZ3VsYXIgVGV4dCBCb2xk\",\"--framer-font-family\":'\"Degular Text Bold\", \"Degular Text Bold Placeholder\", sans-serif',\"--framer-font-size\":\"17px\",\"--framer-line-height\":\"20px\",\"--framer-text-color\":\"var(--token-406ee2a1-9c29-42c5-961e-cfe02a30aaf7, rgb(18, 18, 18))\"},children:\"Plan and organize across platforms\"})})},WSvcEG864:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0RlZ3VsYXIgVGV4dCBCb2xk\",\"--framer-font-family\":'\"Degular Text Bold\", \"Degular Text Bold Placeholder\", sans-serif',\"--framer-font-size\":\"22px\",\"--framer-line-height\":\"28px\",\"--framer-text-color\":\"var(--token-406ee2a1-9c29-42c5-961e-cfe02a30aaf7, rgb(18, 18, 18))\"},children:\"Plan and organize across platforms\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0RlZ3VsYXIgVGV4dCBCb2xk\",\"--framer-font-family\":'\"Degular Text Bold\", \"Degular Text Bold Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-line-height\":\"24px\",\"--framer-text-color\":\"var(--token-406ee2a1-9c29-42c5-961e-cfe02a30aaf7, rgb(18, 18, 18))\"},children:\"Plan and organize across platforms\"})}),className:\"framer-3nna1h\",fonts:[\"CUSTOM;Degular Text Bold\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1p3xpbz\",\"data-framer-name\":\"Points Text\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{jtC8vLgen:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0RlZ3VsYXIgVGV4dCBSZWd1bGFy\",\"--framer-font-family\":'\"Degular Text Regular\", \"Degular Text Regular Placeholder\", sans-serif',\"--framer-line-height\":\"18px\",\"--framer-text-color\":\"var(--token-406ee2a1-9c29-42c5-961e-cfe02a30aaf7, rgb(18, 18, 18))\"},children:\"Visualize your entire content pipeline and keep track of your progress from idea to production. Get access to ready-made templates for all major platforms:\\xa0\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0RlZ3VsYXIgVGV4dCBSZWd1bGFy\",\"--framer-font-family\":'\"Degular Text Regular\", \"Degular Text Regular Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"23px\",\"--framer-text-color\":\"var(--token-406ee2a1-9c29-42c5-961e-cfe02a30aaf7, rgb(18, 18, 18))\"},children:\"Visualize your entire content pipeline and keep track of your progress from idea to production. Get access to ready-made templates for all major platforms:\\xa0\"})}),className:\"framer-1pvtuh0\",fonts:[\"CUSTOM;Degular Text Regular\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{jtC8vLgen:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0RlZ3VsYXIgVGV4dCBSZWd1bGFy\",\"--framer-font-family\":'\"Degular Text Regular\", \"Degular Text Regular Placeholder\", sans-serif',\"--framer-line-height\":\"18px\",\"--framer-text-color\":\"var(--token-406ee2a1-9c29-42c5-961e-cfe02a30aaf7, rgb(18, 18, 18))\"},children:\"YouTube, Podcasts, Email Newsletters, Twitter, LinkedIn, Instagram, Shorts, and TikTok.\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0RlZ3VsYXIgVGV4dCBSZWd1bGFy\",\"--framer-font-family\":'\"Degular Text Regular\", \"Degular Text Regular Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"23px\",\"--framer-text-color\":\"var(--token-406ee2a1-9c29-42c5-961e-cfe02a30aaf7, rgb(18, 18, 18))\"},children:\"YouTube, Podcasts, Email Newsletters, Twitter, LinkedIn, Instagram, Shorts, and TikTok.\"})}),className:\"framer-1k5jmzs\",fonts:[\"CUSTOM;Degular Text Regular\"],verticalAlignment:\"top\",withExternalLayout:true})})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-11hi75c\",\"data-framer-name\":\"Points Two Wrap\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-5wagu1\",\"data-framer-name\":\"Points Two\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{jtC8vLgen:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+6797+60+2211.5+60+0+0+0+0+0+0+248.5+0+305+0+0+45),pixelHeight:21,pixelWidth:22,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/O0eRoHPRHXG7AMIFsit5hwmqXU.png\"}},tICWQLge2:{background:{alt:\"\",fit:\"fill\",pixelHeight:21,pixelWidth:22,src:\"https://framerusercontent.com/images/O0eRoHPRHXG7AMIFsit5hwmqXU.png\"}},WSvcEG864:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+5902+90+1958+100+0+0+0+0+0+319+0+287+0+0+9),pixelHeight:21,pixelWidth:22,src:\"https://framerusercontent.com/images/O0eRoHPRHXG7AMIFsit5hwmqXU.png\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+5878+90+1928+100+0+0+0+0+0+309+0+283+0+0+7),pixelHeight:21,pixelWidth:22,src:\"https://framerusercontent.com/images/O0eRoHPRHXG7AMIFsit5hwmqXU.png\"},className:\"framer-z6hmrk\"})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{jtC8vLgen:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0RlZ3VsYXIgVGV4dCBCb2xk\",\"--framer-font-family\":'\"Degular Text Bold\", \"Degular Text Bold Placeholder\", sans-serif',\"--framer-font-size\":\"17px\",\"--framer-line-height\":\"20px\",\"--framer-text-color\":\"var(--token-406ee2a1-9c29-42c5-961e-cfe02a30aaf7, rgb(18, 18, 18))\"},children:\"Stay on top of deadlines with a content calendar\"})})},WSvcEG864:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0RlZ3VsYXIgVGV4dCBCb2xk\",\"--framer-font-family\":'\"Degular Text Bold\", \"Degular Text Bold Placeholder\", sans-serif',\"--framer-font-size\":\"22px\",\"--framer-line-height\":\"28px\",\"--framer-text-color\":\"var(--token-406ee2a1-9c29-42c5-961e-cfe02a30aaf7, rgb(18, 18, 18))\"},children:\"Stay on top of deadlines with a content calendar\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0RlZ3VsYXIgVGV4dCBCb2xk\",\"--framer-font-family\":'\"Degular Text Bold\", \"Degular Text Bold Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-line-height\":\"24px\",\"--framer-text-color\":\"var(--token-406ee2a1-9c29-42c5-961e-cfe02a30aaf7, rgb(18, 18, 18))\"},children:\"Stay on top of deadlines with a content calendar\"})}),className:\"framer-1viuv9k\",fonts:[\"CUSTOM;Degular Text Bold\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-tg2o0h\",\"data-framer-name\":\"Points Text\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{jtC8vLgen:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0RlZ3VsYXIgVGV4dCBSZWd1bGFy\",\"--framer-font-family\":'\"Degular Text Regular\", \"Degular Text Regular Placeholder\", sans-serif',\"--framer-line-height\":\"18px\",\"--framer-text-color\":\"var(--token-406ee2a1-9c29-42c5-961e-cfe02a30aaf7, rgb(18, 18, 18))\"},children:\"Drag and drop content ideas into our easy-to-use calendar, making it simple to plan ahead and hit your publishing goals. Track progress at every stage so you know what\u2019s completed and what still needs attention.\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0RlZ3VsYXIgVGV4dCBSZWd1bGFy\",\"--framer-font-family\":'\"Degular Text Regular\", \"Degular Text Regular Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"23px\",\"--framer-text-color\":\"var(--token-406ee2a1-9c29-42c5-961e-cfe02a30aaf7, rgb(18, 18, 18))\"},children:\"Drag and drop content ideas into our easy-to-use calendar, making it simple to plan ahead and hit your publishing goals. Track progress at every stage so you know what\u2019s completed and what still needs attention.\"})}),className:\"framer-s0tsjq\",fonts:[\"CUSTOM;Degular Text Regular\"],verticalAlignment:\"top\",withExternalLayout:true})})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-w08l4i\",\"data-framer-name\":\"Points Three Wrap\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1dhqdxr\",\"data-framer-name\":\"Points Two\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{jtC8vLgen:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+6797+60+2211.5+60+0+0+0+0+0+0+248.5+0+520+0+0+45),pixelHeight:21,pixelWidth:22,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/O0eRoHPRHXG7AMIFsit5hwmqXU.png\"}},tICWQLge2:{background:{alt:\"\",fit:\"fill\",pixelHeight:21,pixelWidth:22,src:\"https://framerusercontent.com/images/O0eRoHPRHXG7AMIFsit5hwmqXU.png\"}},WSvcEG864:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+5902+90+1958+100+0+0+0+0+0+319+0+459+0+0+9),pixelHeight:21,pixelWidth:22,src:\"https://framerusercontent.com/images/O0eRoHPRHXG7AMIFsit5hwmqXU.png\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+5878+90+1928+100+0+0+0+0+0+309+0+451+0+0+7),pixelHeight:21,pixelWidth:22,src:\"https://framerusercontent.com/images/O0eRoHPRHXG7AMIFsit5hwmqXU.png\"},className:\"framer-w5gzlo\"})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{jtC8vLgen:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0RlZ3VsYXIgVGV4dCBCb2xk\",\"--framer-font-family\":'\"Degular Text Bold\", \"Degular Text Bold Placeholder\", sans-serif',\"--framer-font-size\":\"17px\",\"--framer-line-height\":\"20px\",\"--framer-text-color\":\"var(--token-406ee2a1-9c29-42c5-961e-cfe02a30aaf7, rgb(18, 18, 18))\"},children:\"Maximize reach with content repurposing\"})})},WSvcEG864:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0RlZ3VsYXIgVGV4dCBCb2xk\",\"--framer-font-family\":'\"Degular Text Bold\", \"Degular Text Bold Placeholder\", sans-serif',\"--framer-font-size\":\"22px\",\"--framer-line-height\":\"28px\",\"--framer-text-color\":\"var(--token-406ee2a1-9c29-42c5-961e-cfe02a30aaf7, rgb(18, 18, 18))\"},children:\"Maximize reach with content repurposing\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0RlZ3VsYXIgVGV4dCBCb2xk\",\"--framer-font-family\":'\"Degular Text Bold\", \"Degular Text Bold Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-line-height\":\"24px\",\"--framer-text-color\":\"var(--token-406ee2a1-9c29-42c5-961e-cfe02a30aaf7, rgb(18, 18, 18))\"},children:\"Maximize reach with content repurposing\"})}),className:\"framer-1t9vgp5\",fonts:[\"CUSTOM;Degular Text Bold\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-zs5xj1\",\"data-framer-name\":\"Points Text\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{jtC8vLgen:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0RlZ3VsYXIgVGV4dCBSZWd1bGFy\",\"--framer-font-family\":'\"Degular Text Regular\", \"Degular Text Regular Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"20px\",\"--framer-text-color\":\"var(--token-21b87942-b5ba-4341-95a9-cb6b167de460, rgb(0, 0, 0))\"},children:[\"Turn one content idea into multiple posts across different platforms using our \",/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"Q1VTVE9NO0RlZ3VsYXIgVGV4dCBCb2xk\",\"--framer-font-family\":'\"Degular Text Bold\", \"Degular Text Bold Placeholder\", sans-serif'},children:\"repurposing matrix, \"}),\"helping you extend your reach and publish more consistently.\"]})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0RlZ3VsYXIgVGV4dCBSZWd1bGFy\",\"--framer-font-family\":'\"Degular Text Regular\", \"Degular Text Regular Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"23px\",\"--framer-text-color\":\"var(--token-21b87942-b5ba-4341-95a9-cb6b167de460, rgb(0, 0, 0))\"},children:[\"Turn one content idea into multiple posts across different platforms using our \",/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"Q1VTVE9NO0RlZ3VsYXIgVGV4dCBCb2xk\",\"--framer-font-family\":'\"Degular Text Bold\", \"Degular Text Bold Placeholder\", sans-serif'},children:\"repurposing matrix, \"}),\"helping you extend your reach and publish more consistently.\"]})}),className:\"framer-132xp8l\",fonts:[\"CUSTOM;Degular Text Regular\",\"CUSTOM;Degular Text Bold\"],verticalAlignment:\"top\",withExternalLayout:true})})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-n29lvg\",\"data-framer-name\":\"Points Four Wrap\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-pu3nx6\",\"data-framer-name\":\"Points Two\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{jtC8vLgen:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+6797+60+2211.5+60+0+0+0+0+0+0+248.5+0+745+0+0+5),pixelHeight:21,pixelWidth:22,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/O0eRoHPRHXG7AMIFsit5hwmqXU.png\"}},tICWQLge2:{background:{alt:\"\",fit:\"fill\",pixelHeight:21,pixelWidth:22,src:\"https://framerusercontent.com/images/O0eRoHPRHXG7AMIFsit5hwmqXU.png\"}},WSvcEG864:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+5902+90+1958+100+0+0+0+0+0+319+0+631+0+0+9),pixelHeight:21,pixelWidth:22,src:\"https://framerusercontent.com/images/O0eRoHPRHXG7AMIFsit5hwmqXU.png\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+5878+90+1928+100+0+0+0+0+0+309+0+619+0+0+7),pixelHeight:21,pixelWidth:22,src:\"https://framerusercontent.com/images/O0eRoHPRHXG7AMIFsit5hwmqXU.png\"},className:\"framer-1dyfb4x\"})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{jtC8vLgen:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0RlZ3VsYXIgVGV4dCBCb2xk\",\"--framer-font-family\":'\"Degular Text Bold\", \"Degular Text Bold Placeholder\", sans-serif',\"--framer-font-size\":\"17px\",\"--framer-line-height\":\"20px\",\"--framer-text-color\":\"var(--token-406ee2a1-9c29-42c5-961e-cfe02a30aaf7, rgb(18, 18, 18))\"},children:\"Everything at your fingertips\"})})},WSvcEG864:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0RlZ3VsYXIgVGV4dCBCb2xk\",\"--framer-font-family\":'\"Degular Text Bold\", \"Degular Text Bold Placeholder\", sans-serif',\"--framer-font-size\":\"22px\",\"--framer-line-height\":\"28px\",\"--framer-text-color\":\"var(--token-406ee2a1-9c29-42c5-961e-cfe02a30aaf7, rgb(18, 18, 18))\"},children:\"Everything at your fingertips\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0RlZ3VsYXIgVGV4dCBCb2xk\",\"--framer-font-family\":'\"Degular Text Bold\", \"Degular Text Bold Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-line-height\":\"24px\",\"--framer-text-color\":\"var(--token-406ee2a1-9c29-42c5-961e-cfe02a30aaf7, rgb(18, 18, 18))\"},children:\"Everything at your fingertips\"})}),className:\"framer-1f2htl8\",fonts:[\"CUSTOM;Degular Text Bold\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-o217h0\",\"data-framer-name\":\"Points Text\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{jtC8vLgen:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0RlZ3VsYXIgVGV4dCBSZWd1bGFy\",\"--framer-font-family\":'\"Degular Text Regular\", \"Degular Text Regular Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"20px\",\"--framer-text-color\":\"var(--token-21b87942-b5ba-4341-95a9-cb6b167de460, rgb(0, 0, 0))\"},children:[\"Your \",/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"Q1VTVE9NO0RlZ3VsYXIgVGV4dCBCb2xk\",\"--framer-font-family\":'\"Degular Text Bold\", \"Degular Text Bold Placeholder\", sans-serif'},children:\"Content Calendar\"}),\" is always accessible across multiple dashboards, allowing you to stay organized and on schedule without missing a beat.\"]})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0RlZ3VsYXIgVGV4dCBSZWd1bGFy\",\"--framer-font-family\":'\"Degular Text Regular\", \"Degular Text Regular Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"23px\",\"--framer-text-color\":\"var(--token-21b87942-b5ba-4341-95a9-cb6b167de460, rgb(0, 0, 0))\"},children:[\"Your \",/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"Q1VTVE9NO0RlZ3VsYXIgVGV4dCBCb2xk\",\"--framer-font-family\":'\"Degular Text Bold\", \"Degular Text Bold Placeholder\", sans-serif'},children:\"Content Calendar\"}),\" is always accessible across multiple dashboards, allowing you to stay organized and on schedule without missing a beat.\"]})}),className:\"framer-c5z48g\",fonts:[\"CUSTOM;Degular Text Regular\",\"CUSTOM;Degular Text Bold\"],verticalAlignment:\"top\",withExternalLayout:true})})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-3is12n\",\"data-framer-name\":\"Points Four Wrap\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1mctllf\",\"data-framer-name\":\"Points Two\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{jtC8vLgen:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+6797+60+2211.5+60+0+0+0+0+0+0+248.5+0+890+0+0+5),pixelHeight:21,pixelWidth:22,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/O0eRoHPRHXG7AMIFsit5hwmqXU.png\"}},tICWQLge2:{background:{alt:\"\",fit:\"fill\",pixelHeight:21,pixelWidth:22,src:\"https://framerusercontent.com/images/O0eRoHPRHXG7AMIFsit5hwmqXU.png\"}},WSvcEG864:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+5902+90+1958+100+0+0+0+0+0+319+0+803+0+0+9),pixelHeight:21,pixelWidth:22,src:\"https://framerusercontent.com/images/O0eRoHPRHXG7AMIFsit5hwmqXU.png\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+5878+90+1928+100+0+0+0+0+0+309+0+787+0+0+7),pixelHeight:21,pixelWidth:22,src:\"https://framerusercontent.com/images/O0eRoHPRHXG7AMIFsit5hwmqXU.png\"},className:\"framer-t6oprh\"})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{jtC8vLgen:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0RlZ3VsYXIgVGV4dCBCb2xk\",\"--framer-font-family\":'\"Degular Text Bold\", \"Degular Text Bold Placeholder\", sans-serif',\"--framer-font-size\":\"17px\",\"--framer-line-height\":\"20px\",\"--framer-text-color\":\"var(--token-406ee2a1-9c29-42c5-961e-cfe02a30aaf7, rgb(18, 18, 18))\"},children:\"Our processes \u2013 built in\"})})},WSvcEG864:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0RlZ3VsYXIgVGV4dCBCb2xk\",\"--framer-font-family\":'\"Degular Text Bold\", \"Degular Text Bold Placeholder\", sans-serif',\"--framer-font-size\":\"22px\",\"--framer-line-height\":\"28px\",\"--framer-text-color\":\"var(--token-406ee2a1-9c29-42c5-961e-cfe02a30aaf7, rgb(18, 18, 18))\"},children:\"Our processes \u2013 built in\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0RlZ3VsYXIgVGV4dCBCb2xk\",\"--framer-font-family\":'\"Degular Text Bold\", \"Degular Text Bold Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-line-height\":\"24px\",\"--framer-text-color\":\"var(--token-406ee2a1-9c29-42c5-961e-cfe02a30aaf7, rgb(18, 18, 18))\"},children:\"Our processes \u2013 built in\"})}),className:\"framer-erhise\",fonts:[\"CUSTOM;Degular Text Bold\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-14px8ci\",\"data-framer-name\":\"Points Text\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{jtC8vLgen:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0RlZ3VsYXIgVGV4dCBSZWd1bGFy\",\"--framer-font-family\":'\"Degular Text Regular\", \"Degular Text Regular Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"20px\",\"--framer-text-color\":\"var(--token-21b87942-b5ba-4341-95a9-cb6b167de460, rgb(0, 0, 0))\"},children:[\"We've taken the specific processes and templates \",/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"Q1VTVE9NO0RlZ3VsYXIgVGV4dCBCb2xk\",\"--framer-font-family\":'\"Degular Text Bold\", \"Degular Text Bold Placeholder\", sans-serif'},children:\"WE\"}),\" use for content creation and baked them right into CreatorHQ for you to use too.\"]})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0RlZ3VsYXIgVGV4dCBSZWd1bGFy\",\"--framer-font-family\":'\"Degular Text Regular\", \"Degular Text Regular Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"23px\",\"--framer-text-color\":\"var(--token-21b87942-b5ba-4341-95a9-cb6b167de460, rgb(0, 0, 0))\"},children:[\"We've taken the specific processes and templates \",/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"Q1VTVE9NO0RlZ3VsYXIgVGV4dCBCb2xk\",\"--framer-font-family\":'\"Degular Text Bold\", \"Degular Text Bold Placeholder\", sans-serif'},children:\"WE\"}),\" use for content creation and baked them right into CreatorHQ for you to use too.\"]})}),className:\"framer-1ity8c0\",fonts:[\"CUSTOM;Degular Text Regular\",\"CUSTOM;Degular Text Bold\"],verticalAlignment:\"top\",withExternalLayout:true})})})]})]})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-15pvabl\",\"data-framer-name\":\"Image Wrap\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{jtC8vLgen:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+6797+60+2211.5+60+0+0+0+0+1283.5+0+0),pixelHeight:1812,pixelWidth:1223,positionX:\"center\",positionY:\"center\",sizes:`min(min(${componentViewport?.width||\"100vw\"} - 40px, 1260px), 650px)`,src:\"https://framerusercontent.com/images/vMWYxdDH5ESG5DLOHWGQqbUIbMw.png\",srcSet:\"https://framerusercontent.com/images/vMWYxdDH5ESG5DLOHWGQqbUIbMw.png?scale-down-to=1024 691w,https://framerusercontent.com/images/vMWYxdDH5ESG5DLOHWGQqbUIbMw.png 1223w\"}},tICWQLge2:{background:{alt:\"\",fit:\"fit\",pixelHeight:1812,pixelWidth:1223,positionX:\"center\",positionY:\"center\",sizes:`min(min(${componentViewport?.width||\"100vw\"} - 40px, 1260px), 650px)`,src:\"https://framerusercontent.com/images/vMWYxdDH5ESG5DLOHWGQqbUIbMw.png\",srcSet:\"https://framerusercontent.com/images/vMWYxdDH5ESG5DLOHWGQqbUIbMw.png?scale-down-to=1024 691w,https://framerusercontent.com/images/vMWYxdDH5ESG5DLOHWGQqbUIbMw.png 1223w\"}},WSvcEG864:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+5902+90+1958+100+0+0+0+160+0+0),pixelHeight:1812,pixelWidth:1223,sizes:`min(max((min(${componentViewport?.width||\"100vw\"}, 1260px) - 85px) / 2, 1px), 650px)`,src:\"https://framerusercontent.com/images/vMWYxdDH5ESG5DLOHWGQqbUIbMw.png\",srcSet:\"https://framerusercontent.com/images/vMWYxdDH5ESG5DLOHWGQqbUIbMw.png?scale-down-to=1024 691w,https://framerusercontent.com/images/vMWYxdDH5ESG5DLOHWGQqbUIbMw.png 1223w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+5878+90+1928+100+0+0+0+145+0+0),pixelHeight:1812,pixelWidth:1223,sizes:`min(max((min(${componentViewport?.width||\"100vw\"}, 1260px) - 85px) / 2, 1px), 650px)`,src:\"https://framerusercontent.com/images/vMWYxdDH5ESG5DLOHWGQqbUIbMw.png\",srcSet:\"https://framerusercontent.com/images/vMWYxdDH5ESG5DLOHWGQqbUIbMw.png?scale-down-to=1024 691w,https://framerusercontent.com/images/vMWYxdDH5ESG5DLOHWGQqbUIbMw.png 1223w\"},className:\"framer-v7sj1r\",\"data-framer-name\":\"Image\"})})})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-naskbo\",\"data-framer-name\":\"Feature Goals\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-alt8g\",\"data-framer-name\":\"Button Wrap  Wrap\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{jtC8vLgen:{width:`min(min(min(${componentViewport?.width||\"100vw\"} - 40px, 1260px), 900px), 365px)`,y:(componentViewport?.y||0)+0+6797+60+2211.5+60+0+0+1753.5+0+0+0+0},tICWQLge2:{y:undefined},WSvcEG864:{y:(componentViewport?.y||0)+0+5902+90+1958+100+0+0+1339+0+0+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:73,width:\"364px\",y:(componentViewport?.y||0)+0+5878+90+1928+100+0+0+1309+0+0+0+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-m2sfy2-container\",isModuleExternal:true,nodeId:\"sLOLZKpWa\",scopeId:\"OMp430bgy\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{jtC8vLgen:{variant:\"lbE2C1YKC\"}},children:/*#__PURE__*/_jsx(BannerButton,{height:\"100%\",i9h0tMlqE:\"https://store.creatorscience.com/buy/28aeab8d-5b53-4840-9055-080794014e8b\",id:\"sLOLZKpWa\",layoutId:\"sLOLZKpWa\",style:{width:\"100%\"},variant:\"fdB6OMGxz\",width:\"100%\"})})})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-svsfyk\",\"data-framer-name\":\"Prcing Text\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{jtC8vLgen:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7U3BhY2UgTW9uby1yZWd1bGFy\",\"--framer-font-family\":'\"Space Mono\", monospace',\"--framer-font-size\":\"12px\",\"--framer-letter-spacing\":\"0.65px\",\"--framer-line-height\":\"13px\",\"--framer-text-color\":\"var(--token-ead53e59-221f-4b46-951f-2920018f76b7, rgb(30, 30, 30))\",\"--framer-text-transform\":\"uppercase\"},children:\"lifetime access for $297\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7U3BhY2UgTW9uby1yZWd1bGFy\",\"--framer-font-family\":'\"Space Mono\", monospace',\"--framer-font-size\":\"13px\",\"--framer-letter-spacing\":\"0.65px\",\"--framer-line-height\":\"13px\",\"--framer-text-color\":\"var(--token-ead53e59-221f-4b46-951f-2920018f76b7, rgb(30, 30, 30))\",\"--framer-text-transform\":\"uppercase\"},children:\"lifetime access for $297\"})}),className:\"framer-xqdi6m\",fonts:[\"GF;Space Mono-regular\"],verticalAlignment:\"top\",withExternalLayout:true})})})]})})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-lyviwu\",\"data-framer-name\":\"Seprator\"})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-5aizod\",\"data-framer-name\":\"Feature Three\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1v8x8z0\",\"data-framer-name\":\"Container\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1cfq3ln\",\"data-framer-name\":\"Feature Content\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-23kc2h\",\"data-framer-name\":\"Feature Content one\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1138vvu\",\"data-framer-name\":\"Title Whole Wrap\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-mixp3\",\"data-framer-name\":\"Title Wrap\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{jtC8vLgen:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7U3BhY2UgTW9uby03MDA=\",\"--framer-font-family\":'\"Space Mono\", monospace',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.3px\",\"--framer-line-height\":\"105%\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-d1f6ecfd-2abf-4418-8a05-8920186c6135, rgb(0, 97, 255))\",\"--framer-text-transform\":\"uppercase\"},children:\"3. republish calendar\"})})},WSvcEG864:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7U3BhY2UgTW9uby03MDA=\",\"--framer-font-family\":'\"Space Mono\", monospace',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"18px\",\"--framer-text-color\":\"var(--token-d1f6ecfd-2abf-4418-8a05-8920186c6135, rgb(0, 97, 255))\",\"--framer-text-transform\":\"uppercase\"},children:\"3. republish calendar\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7U3BhY2UgTW9uby03MDA=\",\"--framer-font-family\":'\"Space Mono\", monospace',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"0.01em\",\"--framer-line-height\":\"18px\",\"--framer-text-color\":\"var(--token-d1f6ecfd-2abf-4418-8a05-8920186c6135, rgb(0, 97, 255))\",\"--framer-text-transform\":\"uppercase\"},children:\"3. republish calendar\"})}),className:\"framer-1c184jv\",fonts:[\"GF;Space Mono-700\"],verticalAlignment:\"top\",withExternalLayout:true})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-15ezi1a\",\"data-framer-name\":\"Heading Wrap\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{jtC8vLgen:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"Q1VTVE9NO0RlZ3VsYXIgVGV4dCBCb2xk\",\"--framer-font-family\":'\"Degular Text Bold\", \"Degular Text Bold Placeholder\", sans-serif',\"--framer-font-size\":\"25px\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"30px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-406ee2a1-9c29-42c5-961e-cfe02a30aaf7, rgb(18, 18, 18))\"},children:\"Publish more, stress less\"})})},WSvcEG864:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"Q1VTVE9NO0RlZ3VsYXIgVGV4dCBCb2xk\",\"--framer-font-family\":'\"Degular Text Bold\", \"Degular Text Bold Placeholder\", sans-serif',\"--framer-font-size\":\"46px\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"50px\",\"--framer-text-color\":\"var(--token-406ee2a1-9c29-42c5-961e-cfe02a30aaf7, rgb(18, 18, 18))\"},children:\"Publish more, stress less\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"Q1VTVE9NO0RlZ3VsYXIgVGV4dCBCb2xk\",\"--framer-font-family\":'\"Degular Text Bold\", \"Degular Text Bold Placeholder\", sans-serif',\"--framer-font-size\":\"35px\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"40px\",\"--framer-text-color\":\"var(--token-406ee2a1-9c29-42c5-961e-cfe02a30aaf7, rgb(18, 18, 18))\"},children:\"Publish more, stress less\"})}),className:\"framer-12lvesq\",fonts:[\"CUSTOM;Degular Text Bold\"],verticalAlignment:\"top\",withExternalLayout:true})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-wmj1s9\",\"data-framer-name\":\"Content Wrap\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{jtC8vLgen:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0RlZ3VsYXIgVGV4dCBSZWd1bGFy\",\"--framer-font-family\":'\"Degular Text Regular\", \"Degular Text Regular Placeholder\", sans-serif',\"--framer-line-height\":\"18px\",\"--framer-text-color\":\"var(--token-406ee2a1-9c29-42c5-961e-cfe02a30aaf7, rgb(18, 18, 18))\"},children:\"With CreatorHQ, you\u2019ll not only plan and manage content with ease\u2014you\u2019ll also find fresh inspiration from your own past work.\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0RlZ3VsYXIgVGV4dCBSZWd1bGFy\",\"--framer-font-family\":'\"Degular Text Regular\", \"Degular Text Regular Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"23px\",\"--framer-text-color\":\"var(--token-406ee2a1-9c29-42c5-961e-cfe02a30aaf7, rgb(18, 18, 18))\"},children:\"With CreatorHQ, you\u2019ll not only plan and manage content with ease\u2014you\u2019ll also find fresh inspiration from your own past work.\"})}),className:\"framer-1mu04g\",fonts:[\"CUSTOM;Degular Text Regular\"],verticalAlignment:\"top\",withExternalLayout:true})})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-yvc2vk\",\"data-framer-name\":\"Points Whole Wrap\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-28jjxg\",\"data-framer-name\":\"Points One Wrap\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-i7cunx\",\"data-framer-name\":\"Points One\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{jtC8vLgen:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+6797+60+4152+30+0+0+0+0+0+0+243.5+0+0+0+0+45),pixelHeight:21,pixelWidth:22,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/O0eRoHPRHXG7AMIFsit5hwmqXU.png\"}},tICWQLge2:{background:{alt:\"\",fit:\"fill\",pixelHeight:21,pixelWidth:22,src:\"https://framerusercontent.com/images/O0eRoHPRHXG7AMIFsit5hwmqXU.png\"}},WSvcEG864:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+5902+90+3594+100+0+0+0+0+0+319+0+0+0+0+9),pixelHeight:21,pixelWidth:22,src:\"https://framerusercontent.com/images/O0eRoHPRHXG7AMIFsit5hwmqXU.png\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+5878+90+3534+100+0+0+0+0+0+309+0+0+0+0+7),pixelHeight:21,pixelWidth:22,src:\"https://framerusercontent.com/images/O0eRoHPRHXG7AMIFsit5hwmqXU.png\"},className:\"framer-1ic6iy5\"})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{jtC8vLgen:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0RlZ3VsYXIgVGV4dCBCb2xk\",\"--framer-font-family\":'\"Degular Text Bold\", \"Degular Text Bold Placeholder\", sans-serif',\"--framer-font-size\":\"17px\",\"--framer-line-height\":\"20px\",\"--framer-text-color\":\"var(--token-406ee2a1-9c29-42c5-961e-cfe02a30aaf7, rgb(18, 18, 18))\"},children:\"Automatically find content to republish\"})})},WSvcEG864:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0RlZ3VsYXIgVGV4dCBCb2xk\",\"--framer-font-family\":'\"Degular Text Bold\", \"Degular Text Bold Placeholder\", sans-serif',\"--framer-font-size\":\"22px\",\"--framer-line-height\":\"28px\",\"--framer-text-color\":\"var(--token-406ee2a1-9c29-42c5-961e-cfe02a30aaf7, rgb(18, 18, 18))\"},children:\"Automatically find content to republish\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0RlZ3VsYXIgVGV4dCBCb2xk\",\"--framer-font-family\":'\"Degular Text Bold\", \"Degular Text Bold Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-line-height\":\"24px\",\"--framer-text-color\":\"var(--token-406ee2a1-9c29-42c5-961e-cfe02a30aaf7, rgb(18, 18, 18))\"},children:\"Automatically find content to republish\"})}),className:\"framer-4ogvel\",fonts:[\"CUSTOM;Degular Text Bold\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1iqq5h1\",\"data-framer-name\":\"Points Text\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{jtC8vLgen:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0RlZ3VsYXIgVGV4dCBSZWd1bGFy\",\"--framer-font-family\":'\"Degular Text Regular\", \"Degular Text Regular Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"20px\",\"--framer-text-color\":\"var(--token-406ee2a1-9c29-42c5-961e-cfe02a30aaf7, rgb(18, 18, 18))\"},children:[\"Every piece of content automatically gets flagged for republishing at 6, 12, 18, and 24 months. Use the \",/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"Q1VTVE9NO0RlZ3VsYXIgVGV4dCBCb2xk\",\"--framer-font-family\":'\"Degular Text Bold\", \"Degular Text Bold Placeholder\", sans-serif'},children:\"republishing calendar\"}),\" to revive your best work and save time.\"]})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0RlZ3VsYXIgVGV4dCBSZWd1bGFy\",\"--framer-font-family\":'\"Degular Text Regular\", \"Degular Text Regular Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"23px\",\"--framer-text-color\":\"var(--token-406ee2a1-9c29-42c5-961e-cfe02a30aaf7, rgb(18, 18, 18))\"},children:[\"Every piece of content automatically gets flagged for republishing at 6, 12, 18, and 24 months. Use the \",/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"Q1VTVE9NO0RlZ3VsYXIgVGV4dCBCb2xk\",\"--framer-font-family\":'\"Degular Text Bold\", \"Degular Text Bold Placeholder\", sans-serif'},children:\"republishing calendar\"}),\" to revive your best work and save time.\"]})}),className:\"framer-1w9v989\",fonts:[\"CUSTOM;Degular Text Regular\",\"CUSTOM;Degular Text Bold\"],verticalAlignment:\"top\",withExternalLayout:true})})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-cx5wpa\",\"data-framer-name\":\"Points Two Wrap\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1p7nyux\",\"data-framer-name\":\"Points Two\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{jtC8vLgen:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+6797+60+4152+30+0+0+0+0+0+0+243.5+0+220+0+0+45),pixelHeight:21,pixelWidth:22,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/O0eRoHPRHXG7AMIFsit5hwmqXU.png\"}},tICWQLge2:{background:{alt:\"\",fit:\"fill\",pixelHeight:21,pixelWidth:22,src:\"https://framerusercontent.com/images/O0eRoHPRHXG7AMIFsit5hwmqXU.png\"}},WSvcEG864:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+5902+90+3594+100+0+0+0+0+0+319+0+172+0+0+9),pixelHeight:21,pixelWidth:22,src:\"https://framerusercontent.com/images/O0eRoHPRHXG7AMIFsit5hwmqXU.png\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+5878+90+3534+100+0+0+0+0+0+309+0+168+0+0+7),pixelHeight:21,pixelWidth:22,src:\"https://framerusercontent.com/images/O0eRoHPRHXG7AMIFsit5hwmqXU.png\"},className:\"framer-1dfc5kd\"})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{jtC8vLgen:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0RlZ3VsYXIgVGV4dCBCb2xk\",\"--framer-font-family\":'\"Degular Text Bold\", \"Degular Text Bold Placeholder\", sans-serif',\"--framer-font-size\":\"17px\",\"--framer-line-height\":\"20px\",\"--framer-text-color\":\"var(--token-406ee2a1-9c29-42c5-961e-cfe02a30aaf7, rgb(18, 18, 18))\"},children:\"Find inspiration in previous content\"})})},WSvcEG864:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0RlZ3VsYXIgVGV4dCBCb2xk\",\"--framer-font-family\":'\"Degular Text Bold\", \"Degular Text Bold Placeholder\", sans-serif',\"--framer-font-size\":\"22px\",\"--framer-line-height\":\"28px\",\"--framer-text-color\":\"var(--token-406ee2a1-9c29-42c5-961e-cfe02a30aaf7, rgb(18, 18, 18))\"},children:\"Find inspiration in previous content\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0RlZ3VsYXIgVGV4dCBCb2xk\",\"--framer-font-family\":'\"Degular Text Bold\", \"Degular Text Bold Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-line-height\":\"24px\",\"--framer-text-color\":\"var(--token-406ee2a1-9c29-42c5-961e-cfe02a30aaf7, rgb(18, 18, 18))\"},children:\"Find inspiration in previous content\"})}),className:\"framer-1xolbky\",fonts:[\"CUSTOM;Degular Text Bold\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-ksdp6y\",\"data-framer-name\":\"Points Text\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{jtC8vLgen:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0RlZ3VsYXIgVGV4dCBSZWd1bGFy\",\"--framer-font-family\":'\"Degular Text Regular\", \"Degular Text Regular Placeholder\", sans-serif',\"--framer-line-height\":\"18px\",\"--framer-text-color\":\"var(--token-406ee2a1-9c29-42c5-961e-cfe02a30aaf7, rgb(18, 18, 18))\"},children:\"Easily identify content to republish or use past ideas to inspire new content.\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0RlZ3VsYXIgVGV4dCBSZWd1bGFy\",\"--framer-font-family\":'\"Degular Text Regular\", \"Degular Text Regular Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"23px\",\"--framer-text-color\":\"var(--token-406ee2a1-9c29-42c5-961e-cfe02a30aaf7, rgb(18, 18, 18))\"},children:\"Easily identify content to republish or use past ideas to inspire new content.\"})}),className:\"framer-2aadt6\",fonts:[\"CUSTOM;Degular Text Regular\"],verticalAlignment:\"top\",withExternalLayout:true})})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-9j82sf\",\"data-framer-name\":\"Points Three Wrap\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-2282r8\",\"data-framer-name\":\"Points Two\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{jtC8vLgen:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+6797+60+4152+30+0+0+0+0+0+0+243.5+0+430+0+0+45),pixelHeight:21,pixelWidth:22,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/O0eRoHPRHXG7AMIFsit5hwmqXU.png\"}},tICWQLge2:{background:{alt:\"\",fit:\"fill\",pixelHeight:21,pixelWidth:22,src:\"https://framerusercontent.com/images/O0eRoHPRHXG7AMIFsit5hwmqXU.png\"}},WSvcEG864:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+5902+90+3594+100+0+0+0+0+0+319+0+344+0+0+9),pixelHeight:21,pixelWidth:22,src:\"https://framerusercontent.com/images/O0eRoHPRHXG7AMIFsit5hwmqXU.png\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+5878+90+3534+100+0+0+0+0+0+309+0+336+0+0+7),pixelHeight:21,pixelWidth:22,src:\"https://framerusercontent.com/images/O0eRoHPRHXG7AMIFsit5hwmqXU.png\"},className:\"framer-xa8mun\"})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{jtC8vLgen:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0RlZ3VsYXIgVGV4dCBCb2xk\",\"--framer-font-family\":'\"Degular Text Bold\", \"Degular Text Bold Placeholder\", sans-serif',\"--framer-font-size\":\"17px\",\"--framer-line-height\":\"20px\",\"--framer-text-color\":\"var(--token-406ee2a1-9c29-42c5-961e-cfe02a30aaf7, rgb(18, 18, 18))\"},children:\"Boost your publishing frequency\"})})},WSvcEG864:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0RlZ3VsYXIgVGV4dCBCb2xk\",\"--framer-font-family\":'\"Degular Text Bold\", \"Degular Text Bold Placeholder\", sans-serif',\"--framer-font-size\":\"22px\",\"--framer-line-height\":\"28px\",\"--framer-text-color\":\"var(--token-406ee2a1-9c29-42c5-961e-cfe02a30aaf7, rgb(18, 18, 18))\"},children:\"Boost your publishing frequency\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0RlZ3VsYXIgVGV4dCBCb2xk\",\"--framer-font-family\":'\"Degular Text Bold\", \"Degular Text Bold Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-line-height\":\"24px\",\"--framer-text-color\":\"var(--token-406ee2a1-9c29-42c5-961e-cfe02a30aaf7, rgb(18, 18, 18))\"},children:\"Boost your publishing frequency\"})}),className:\"framer-184qw9f\",fonts:[\"CUSTOM;Degular Text Bold\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-14n5m7z\",\"data-framer-name\":\"Points Text\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{jtC8vLgen:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0RlZ3VsYXIgVGV4dCBSZWd1bGFy\",\"--framer-font-family\":'\"Degular Text Regular\", \"Degular Text Regular Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"20px\",\"--framer-text-color\":\"var(--token-21b87942-b5ba-4341-95a9-cb6b167de460, rgb(0, 0, 0))\"},children:[\"Whether you republish or find inspiration, you will \",/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"Q1VTVE9NO0RlZ3VsYXIgVGV4dCBCb2xk\",\"--framer-font-family\":'\"Degular Text Bold\", \"Degular Text Bold Placeholder\", sans-serif'},children:\"publish MORE.\"})]})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0RlZ3VsYXIgVGV4dCBSZWd1bGFy\",\"--framer-font-family\":'\"Degular Text Regular\", \"Degular Text Regular Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"23px\",\"--framer-text-color\":\"var(--token-21b87942-b5ba-4341-95a9-cb6b167de460, rgb(0, 0, 0))\"},children:[\"Whether you republish or find inspiration, you will \",/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"Q1VTVE9NO0RlZ3VsYXIgVGV4dCBCb2xk\",\"--framer-font-family\":'\"Degular Text Bold\", \"Degular Text Bold Placeholder\", sans-serif'},children:\"publish MORE.\"})]})}),className:\"framer-5p0blf\",fonts:[\"CUSTOM;Degular Text Regular\",\"CUSTOM;Degular Text Bold\"],verticalAlignment:\"top\",withExternalLayout:true})})})]})]})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-17ycsfe\",\"data-framer-name\":\"Image Wrap\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{jtC8vLgen:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+6797+60+4152+30+0+0+0+0+898.5+0+-4.995),pixelHeight:1370,pixelWidth:1303,positionX:\"center\",positionY:\"center\",sizes:`calc(min(min(${componentViewport?.width||\"100vw\"} - 40px, 1260px), 645px) * 1.0286)`,src:\"https://framerusercontent.com/images/8V1CboeLIlPvUWcbOCpueUAo.png\",srcSet:\"https://framerusercontent.com/images/8V1CboeLIlPvUWcbOCpueUAo.png?scale-down-to=1024 973w,https://framerusercontent.com/images/8V1CboeLIlPvUWcbOCpueUAo.png 1303w\"}},tICWQLge2:{background:{alt:\"\",fit:\"fill\",pixelHeight:1370,pixelWidth:1303,sizes:`min(min(${componentViewport?.width||\"100vw\"} - 40px, 1260px), 645px)`,src:\"https://framerusercontent.com/images/8V1CboeLIlPvUWcbOCpueUAo.png\",srcSet:\"https://framerusercontent.com/images/8V1CboeLIlPvUWcbOCpueUAo.png?scale-down-to=1024 973w,https://framerusercontent.com/images/8V1CboeLIlPvUWcbOCpueUAo.png 1303w\"}},WSvcEG864:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+5902+90+3594+100+0+0+0+73.5+0+0),pixelHeight:1370,pixelWidth:1303,sizes:`min(max((min(${componentViewport?.width||\"100vw\"}, 1260px) - 85px) / 2, 1px), 645px)`,src:\"https://framerusercontent.com/images/8V1CboeLIlPvUWcbOCpueUAo.png\",srcSet:\"https://framerusercontent.com/images/8V1CboeLIlPvUWcbOCpueUAo.png?scale-down-to=1024 973w,https://framerusercontent.com/images/8V1CboeLIlPvUWcbOCpueUAo.png 1303w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+5878+90+3534+100+0+0+0+62.5+0+0),pixelHeight:1370,pixelWidth:1303,sizes:`min(max((min(${componentViewport?.width||\"100vw\"}, 1260px) - 85px) / 2, 1px), 645px)`,src:\"https://framerusercontent.com/images/8V1CboeLIlPvUWcbOCpueUAo.png\",srcSet:\"https://framerusercontent.com/images/8V1CboeLIlPvUWcbOCpueUAo.png?scale-down-to=1024 973w,https://framerusercontent.com/images/8V1CboeLIlPvUWcbOCpueUAo.png 1303w\"},className:\"framer-16562bd\",\"data-framer-name\":\"Image\"})})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-g3vwkp\",\"data-framer-name\":\"Feature Goals\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1bhdp5q\",\"data-border\":true,\"data-framer-name\":\"Intro Wrap\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-roug7i\",\"data-framer-name\":\"Content Wrap\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-gw7mhw\",\"data-framer-name\":\"Feed Back \",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{jtC8vLgen:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+6797+60+4152+30+0+0+1288.5+0+0+25+0+0+0+0),pixelHeight:58,pixelWidth:79,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/qnPHpRCgU5XVKoX7i5h7jEdkA.png\"}},tICWQLge2:{background:{alt:\"\",fit:\"fill\",pixelHeight:58,pixelWidth:79,src:\"https://framerusercontent.com/images/qnPHpRCgU5XVKoX7i5h7jEdkA.png\"}},WSvcEG864:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+5902+90+3594+100+0+0+859+0+0+40+0+0+0+0),pixelHeight:58,pixelWidth:79,src:\"https://framerusercontent.com/images/qnPHpRCgU5XVKoX7i5h7jEdkA.png\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+5878+90+3534+100+0+0+837+0+0+40+0+0+0+0),pixelHeight:58,pixelWidth:79,src:\"https://framerusercontent.com/images/qnPHpRCgU5XVKoX7i5h7jEdkA.png\"},className:\"framer-1yf166x\",\"data-framer-name\":\"Qutos\"})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-eaosvg\",\"data-framer-name\":\"Title Wrap\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{jtC8vLgen:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0RlZ3VsYXIgVGV4dCBSZWd1bGFy\",\"--framer-font-family\":'\"Degular Text Regular\", \"Degular Text Regular Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-letter-spacing\":\"-0.3px\",\"--framer-line-height\":\"120%\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-21b87942-b5ba-4341-95a9-cb6b167de460, rgb(0, 0, 0))\"},children:[/*#__PURE__*/_jsx(\"em\",{children:'\"This is hands down the '}),/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"Q1VTVE9NO0RlZ3VsYXIgVGV4dCBCb2xk\",\"--framer-font-family\":'\"Degular Text Bold\", \"Degular Text Bold Placeholder\", sans-serif'},children:/*#__PURE__*/_jsx(\"em\",{children:/*#__PURE__*/_jsx(\"strong\",{children:\"BEST productivity tool I\u2019ve ever used\"})})}),/*#__PURE__*/_jsx(\"em\",{children:\" and it\u2019s worth WAY more than the price I paid. You can tell this was a \"}),/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"Q1VTVE9NO0RlZ3VsYXIgVGV4dCBCb2xk\",\"--framer-font-family\":'\"Degular Text Bold\", \"Degular Text Bold Placeholder\", sans-serif'},children:/*#__PURE__*/_jsx(\"em\",{children:/*#__PURE__*/_jsx(\"strong\",{children:\"carefully thought out, intentional design\"})})}),/*#__PURE__*/_jsx(\"em\",{children:\". If you never used Notion, don\u2019t worry. There are a bunch of very helpful videos placed throughout the template. I am honestly \"}),/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"Q1VTVE9NO0RlZ3VsYXIgVGV4dCBCb2xk\",\"--framer-font-family\":'\"Degular Text Bold\", \"Degular Text Bold Placeholder\", sans-serif'},children:/*#__PURE__*/_jsx(\"em\",{children:/*#__PURE__*/_jsx(\"strong\",{children:\"10x more excited about my content creation journey\"})})}),/*#__PURE__*/_jsx(\"em\",{children:' because of this tool. Thank you so much, Jay!\"'})]})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0RlZ3VsYXIgVGV4dCBSZWd1bGFy\",\"--framer-font-family\":'\"Degular Text Regular\", \"Degular Text Regular Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-letter-spacing\":\"-0.3px\",\"--framer-line-height\":\"130%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-21b87942-b5ba-4341-95a9-cb6b167de460, rgb(0, 0, 0))\"},children:[/*#__PURE__*/_jsx(\"em\",{children:'\"This is hands down the '}),/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"Q1VTVE9NO0RlZ3VsYXIgVGV4dCBCb2xk\",\"--framer-font-family\":'\"Degular Text Bold\", \"Degular Text Bold Placeholder\", sans-serif'},children:/*#__PURE__*/_jsx(\"em\",{children:/*#__PURE__*/_jsx(\"strong\",{children:\"BEST productivity tool I\u2019ve ever used\"})})}),/*#__PURE__*/_jsx(\"em\",{children:\" and it\u2019s worth WAY more than the price I paid. You can tell this was a \"}),/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"Q1VTVE9NO0RlZ3VsYXIgVGV4dCBCb2xk\",\"--framer-font-family\":'\"Degular Text Bold\", \"Degular Text Bold Placeholder\", sans-serif'},children:/*#__PURE__*/_jsx(\"em\",{children:/*#__PURE__*/_jsx(\"strong\",{children:\"carefully thought out, intentional design\"})})}),/*#__PURE__*/_jsx(\"em\",{children:\". If you never used Notion, don\u2019t worry. There are a bunch of very helpful videos placed throughout the template. I am honestly \"}),/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"Q1VTVE9NO0RlZ3VsYXIgVGV4dCBCb2xk\",\"--framer-font-family\":'\"Degular Text Bold\", \"Degular Text Bold Placeholder\", sans-serif'},children:/*#__PURE__*/_jsx(\"em\",{children:/*#__PURE__*/_jsx(\"strong\",{children:\"10x more excited about my content creation journey\"})})}),/*#__PURE__*/_jsx(\"em\",{children:' because of this tool. Thank you so much, Jay!\"'})]})}),className:\"framer-m0cd4a\",fonts:[\"CUSTOM;Degular Text Regular\",\"CUSTOM;Degular Text Bold\"],verticalAlignment:\"top\",withExternalLayout:true})})})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-19674vv\",\"data-framer-name\":\"Feed Back Image\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1x81t7y\",\"data-framer-name\":\"Name Wrap\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-j0datt\",\"data-framer-name\":\"Intro Name\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{jtC8vLgen:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+6797+60+4152+30+0+0+1288.5+0+0+25+0+180+0+0+1),pixelHeight:90,pixelWidth:91,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/2zen1S36FPZ0AonmexLgHDcMI.png\"}},tICWQLge2:{background:{alt:\"\",fit:\"fit\",pixelHeight:90,pixelWidth:91,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/2zen1S36FPZ0AonmexLgHDcMI.png\"}},WSvcEG864:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+5902+90+3594+100+0+0+859+0+0+40+0+227+0+63.5+-10.5),pixelHeight:90,pixelWidth:91,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/2zen1S36FPZ0AonmexLgHDcMI.png\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+5878+90+3534+100+0+0+837+0+0+40+0+227+0+63.5+-10.5),pixelHeight:90,pixelWidth:91,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/2zen1S36FPZ0AonmexLgHDcMI.png\"},className:\"framer-1gj6f3z\"})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1d281p5\",\"data-framer-name\":\"Name\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{jtC8vLgen:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0RlZ3VsYXIgVGV4dCBCb2xk\",\"--framer-font-family\":'\"Degular Text Bold\", \"Degular Text Bold Placeholder\", sans-serif',\"--framer-line-height\":\"22px\",\"--framer-text-color\":\"var(--token-406ee2a1-9c29-42c5-961e-cfe02a30aaf7, rgb(18, 18, 18))\"},children:\"Diane Bonheur\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0RlZ3VsYXIgVGV4dCBCb2xk\",\"--framer-font-family\":'\"Degular Text Bold\", \"Degular Text Bold Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"22px\",\"--framer-text-color\":\"var(--token-406ee2a1-9c29-42c5-961e-cfe02a30aaf7, rgb(18, 18, 18))\"},children:\"Diane Bonheur\"})}),className:\"framer-10ncsn7\",fonts:[\"CUSTOM;Degular Text Bold\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0RlZ3VsYXIgVGV4dCBSZWd1bGFy\",\"--framer-font-family\":'\"Degular Text Regular\", \"Degular Text Regular Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-line-height\":\"16px\",\"--framer-text-color\":\"var(--token-406ee2a1-9c29-42c5-961e-cfe02a30aaf7, rgb(18, 18, 18))\"},children:\"Entrepreneur & Content Creator\"})}),className:\"framer-aorki8\",fonts:[\"CUSTOM;Degular Text Regular\"],verticalAlignment:\"top\",withExternalLayout:true})]})]})})]})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-aem9z6\",\"data-framer-name\":\"Button Wrap  Wrap\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{jtC8vLgen:{width:`min(min(min(${componentViewport?.width||\"100vw\"} - 40px, 1260px), 900px), 365px)`,y:(componentViewport?.y||0)+0+6797+60+4152+30+0+0+1288.5+0+300+0+0},tICWQLge2:{y:undefined},WSvcEG864:{y:(componentViewport?.y||0)+0+5902+90+3594+100+0+0+859+0+541+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:73,width:\"364px\",y:(componentViewport?.y||0)+0+5878+90+3534+100+0+0+837+0+541+0+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1i8wp9v-container\",isModuleExternal:true,nodeId:\"UAF2JGBN1\",scopeId:\"OMp430bgy\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{jtC8vLgen:{variant:\"lbE2C1YKC\"}},children:/*#__PURE__*/_jsx(BannerButton,{height:\"100%\",i9h0tMlqE:\"https://store.creatorscience.com/buy/28aeab8d-5b53-4840-9055-080794014e8b\",id:\"UAF2JGBN1\",layoutId:\"UAF2JGBN1\",style:{width:\"100%\"},variant:\"fdB6OMGxz\",width:\"100%\"})})})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-quf9kh\",\"data-framer-name\":\"Prcing Text\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{jtC8vLgen:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7U3BhY2UgTW9uby1yZWd1bGFy\",\"--framer-font-family\":'\"Space Mono\", monospace',\"--framer-font-size\":\"12px\",\"--framer-letter-spacing\":\"0.65px\",\"--framer-line-height\":\"13px\",\"--framer-text-color\":\"var(--token-ead53e59-221f-4b46-951f-2920018f76b7, rgb(30, 30, 30))\",\"--framer-text-transform\":\"uppercase\"},children:\"lifetime access for $297\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7U3BhY2UgTW9uby1yZWd1bGFy\",\"--framer-font-family\":'\"Space Mono\", monospace',\"--framer-font-size\":\"13px\",\"--framer-letter-spacing\":\"0.65px\",\"--framer-line-height\":\"13px\",\"--framer-text-color\":\"var(--token-ead53e59-221f-4b46-951f-2920018f76b7, rgb(30, 30, 30))\",\"--framer-text-transform\":\"uppercase\"},children:\"lifetime access for $297\"})}),className:\"framer-1iwwn0s\",fonts:[\"GF;Space Mono-regular\"],verticalAlignment:\"top\",withExternalLayout:true})})})]})]})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1fvnc5f\",\"data-framer-name\":\"Seprator\"})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1eghzfh\",\"data-framer-name\":\"Feature Four\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-189dmh4\",\"data-framer-name\":\"Container\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1u9r77i\",\"data-framer-name\":\"Feature Content\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1xf8lwr\",\"data-framer-name\":\"Feature Content one\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-3tojw3\",\"data-framer-name\":\"Title Whole Wrap\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1sxjzbn\",\"data-framer-name\":\"Title Wrap\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{jtC8vLgen:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7U3BhY2UgTW9uby03MDA=\",\"--framer-font-family\":'\"Space Mono\", monospace',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.3px\",\"--framer-line-height\":\"105%\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-d1f6ecfd-2abf-4418-8a05-8920186c6135, rgb(0, 97, 255))\",\"--framer-text-transform\":\"uppercase\"},children:\"4. Capture audience problems and FAQs\"})})},WSvcEG864:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7U3BhY2UgTW9uby03MDA=\",\"--framer-font-family\":'\"Space Mono\", monospace',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"18px\",\"--framer-text-color\":\"var(--token-d1f6ecfd-2abf-4418-8a05-8920186c6135, rgb(0, 97, 255))\",\"--framer-text-transform\":\"uppercase\"},children:\"4. Capture audience problems and FAQs\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7U3BhY2UgTW9uby03MDA=\",\"--framer-font-family\":'\"Space Mono\", monospace',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"0.01em\",\"--framer-line-height\":\"18px\",\"--framer-text-color\":\"var(--token-d1f6ecfd-2abf-4418-8a05-8920186c6135, rgb(0, 97, 255))\",\"--framer-text-transform\":\"uppercase\"},children:\"4. Capture audience problems and FAQs\"})}),className:\"framer-1kytu83\",fonts:[\"GF;Space Mono-700\"],verticalAlignment:\"top\",withExternalLayout:true})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-l8jec0\",\"data-framer-name\":\"Heading Wrap\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{jtC8vLgen:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"Q1VTVE9NO0RlZ3VsYXIgVGV4dCBCb2xk\",\"--framer-font-family\":'\"Degular Text Bold\", \"Degular Text Bold Placeholder\", sans-serif',\"--framer-font-size\":\"25px\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"30px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-406ee2a1-9c29-42c5-961e-cfe02a30aaf7, rgb(18, 18, 18))\"},children:\"Turn audience problems into content opportunities\"})})},WSvcEG864:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"Q1VTVE9NO0RlZ3VsYXIgVGV4dCBCb2xk\",\"--framer-font-family\":'\"Degular Text Bold\", \"Degular Text Bold Placeholder\", sans-serif',\"--framer-font-size\":\"46px\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"50px\",\"--framer-text-color\":\"var(--token-406ee2a1-9c29-42c5-961e-cfe02a30aaf7, rgb(18, 18, 18))\"},children:\"Turn audience problems into content opportunities\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"Q1VTVE9NO0RlZ3VsYXIgVGV4dCBCb2xk\",\"--framer-font-family\":'\"Degular Text Bold\", \"Degular Text Bold Placeholder\", sans-serif',\"--framer-font-size\":\"35px\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"40px\",\"--framer-text-color\":\"var(--token-406ee2a1-9c29-42c5-961e-cfe02a30aaf7, rgb(18, 18, 18))\"},children:\"Turn audience problems into content opportunities\"})}),className:\"framer-jleu8q\",fonts:[\"CUSTOM;Degular Text Bold\"],verticalAlignment:\"top\",withExternalLayout:true})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1hdhrd8\",\"data-framer-name\":\"Content Wrap\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{jtC8vLgen:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0RlZ3VsYXIgVGV4dCBSZWd1bGFy\",\"--framer-font-family\":'\"Degular Text Regular\", \"Degular Text Regular Placeholder\", sans-serif',\"--framer-line-height\":\"18px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-406ee2a1-9c29-42c5-961e-cfe02a30aaf7, rgb(18, 18, 18))\"},children:\"Our Problems and FAQs database allows you to easily log customer pain points and questions as you discover them. Assign each to your audience avatar to keep track of what matters most to your community.\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0RlZ3VsYXIgVGV4dCBSZWd1bGFy\",\"--framer-font-family\":'\"Degular Text Regular\", \"Degular Text Regular Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"23px\",\"--framer-text-color\":\"var(--token-406ee2a1-9c29-42c5-961e-cfe02a30aaf7, rgb(18, 18, 18))\"},children:\"Our Problems and FAQs database allows you to easily log customer pain points and questions as you discover them. Assign each to your audience avatar to keep track of what matters most to your community.\"})}),className:\"framer-4gd846\",fonts:[\"CUSTOM;Degular Text Regular\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{jtC8vLgen:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0RlZ3VsYXIgVGV4dCBSZWd1bGFy\",\"--framer-font-family\":'\"Degular Text Regular\", \"Degular Text Regular Placeholder\", sans-serif',\"--framer-line-height\":\"18px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-406ee2a1-9c29-42c5-961e-cfe02a30aaf7, rgb(18, 18, 18))\"},children:\"These problems will live above your brainstorming areas \u2013 giving you the perfect prompts for future content.\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0RlZ3VsYXIgVGV4dCBSZWd1bGFy\",\"--framer-font-family\":'\"Degular Text Regular\", \"Degular Text Regular Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"23px\",\"--framer-text-color\":\"var(--token-406ee2a1-9c29-42c5-961e-cfe02a30aaf7, rgb(18, 18, 18))\"},children:\"These problems will live above your brainstorming areas \u2013 giving you the perfect prompts for future content.\"})}),className:\"framer-xr8sdf\",fonts:[\"CUSTOM;Degular Text Regular\"],verticalAlignment:\"top\",withExternalLayout:true})})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1dmpvd0\",\"data-framer-name\":\"Points Whole Wrap\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-191nxa\",\"data-framer-name\":\"Points One Wrap\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-vam3jb\",\"data-framer-name\":\"Points One\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{jtC8vLgen:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+6797+60+5897.5+30+0+0+0+0+0+0+345.5+0+0+0+0+45),pixelHeight:21,pixelWidth:22,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/O0eRoHPRHXG7AMIFsit5hwmqXU.png\"}},tICWQLge2:{background:{alt:\"\",fit:\"fill\",pixelHeight:21,pixelWidth:22,src:\"https://framerusercontent.com/images/O0eRoHPRHXG7AMIFsit5hwmqXU.png\"}},WSvcEG864:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+5902+90+5291+100+0+0+0+0+0+444+0+0+0+0+9),pixelHeight:21,pixelWidth:22,src:\"https://framerusercontent.com/images/O0eRoHPRHXG7AMIFsit5hwmqXU.png\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+5878+90+5209+100+0+0+0+0+0+434+0+0+0+0+7),pixelHeight:21,pixelWidth:22,src:\"https://framerusercontent.com/images/O0eRoHPRHXG7AMIFsit5hwmqXU.png\"},className:\"framer-1n7w0x2\"})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{jtC8vLgen:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0RlZ3VsYXIgVGV4dCBCb2xk\",\"--framer-font-family\":'\"Degular Text Bold\", \"Degular Text Bold Placeholder\", sans-serif',\"--framer-font-size\":\"17px\",\"--framer-line-height\":\"20px\",\"--framer-text-color\":\"var(--token-406ee2a1-9c29-42c5-961e-cfe02a30aaf7, rgb(18, 18, 18))\"},children:\"Understand your audience deeply\"})})},WSvcEG864:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0RlZ3VsYXIgVGV4dCBCb2xk\",\"--framer-font-family\":'\"Degular Text Bold\", \"Degular Text Bold Placeholder\", sans-serif',\"--framer-font-size\":\"22px\",\"--framer-line-height\":\"28px\",\"--framer-text-color\":\"var(--token-406ee2a1-9c29-42c5-961e-cfe02a30aaf7, rgb(18, 18, 18))\"},children:\"Understand your audience deeply\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0RlZ3VsYXIgVGV4dCBCb2xk\",\"--framer-font-family\":'\"Degular Text Bold\", \"Degular Text Bold Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-line-height\":\"24px\",\"--framer-text-color\":\"var(--token-406ee2a1-9c29-42c5-961e-cfe02a30aaf7, rgb(18, 18, 18))\"},children:\"Understand your audience deeply\"})}),className:\"framer-bx0cmh\",fonts:[\"CUSTOM;Degular Text Bold\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1q5hdfa\",\"data-framer-name\":\"Points Text\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{jtC8vLgen:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0RlZ3VsYXIgVGV4dCBSZWd1bGFy\",\"--framer-font-family\":'\"Degular Text Regular\", \"Degular Text Regular Placeholder\", sans-serif',\"--framer-line-height\":\"18px\",\"--framer-text-color\":\"var(--token-406ee2a1-9c29-42c5-961e-cfe02a30aaf7, rgb(18, 18, 18))\"},children:\"The Audience Dashboard helps you stay inside the mind of your target audience.\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0RlZ3VsYXIgVGV4dCBSZWd1bGFy\",\"--framer-font-family\":'\"Degular Text Regular\", \"Degular Text Regular Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"23px\",\"--framer-text-color\":\"var(--token-406ee2a1-9c29-42c5-961e-cfe02a30aaf7, rgb(18, 18, 18))\"},children:\"The Audience Dashboard helps you stay inside the mind of your target audience.\"})}),className:\"framer-12324ay\",fonts:[\"CUSTOM;Degular Text Regular\"],verticalAlignment:\"top\",withExternalLayout:true})})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-10eqdi3\",\"data-framer-name\":\"Points Two Wrap\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1an2bh2\",\"data-framer-name\":\"Points Two\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{jtC8vLgen:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+6797+60+5897.5+30+0+0+0+0+0+0+345.5+0+210+0+0+45),pixelHeight:21,pixelWidth:22,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/O0eRoHPRHXG7AMIFsit5hwmqXU.png\"}},tICWQLge2:{background:{alt:\"\",fit:\"fill\",pixelHeight:21,pixelWidth:22,src:\"https://framerusercontent.com/images/O0eRoHPRHXG7AMIFsit5hwmqXU.png\"}},WSvcEG864:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+5902+90+5291+100+0+0+0+0+0+444+0+172+0+0+9),pixelHeight:21,pixelWidth:22,src:\"https://framerusercontent.com/images/O0eRoHPRHXG7AMIFsit5hwmqXU.png\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+5878+90+5209+100+0+0+0+0+0+434+0+168+0+0+7),pixelHeight:21,pixelWidth:22,src:\"https://framerusercontent.com/images/O0eRoHPRHXG7AMIFsit5hwmqXU.png\"},className:\"framer-1wxovli\"})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{jtC8vLgen:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0RlZ3VsYXIgVGV4dCBCb2xk\",\"--framer-font-family\":'\"Degular Text Bold\", \"Degular Text Bold Placeholder\", sans-serif',\"--framer-font-size\":\"17px\",\"--framer-line-height\":\"20px\",\"--framer-text-color\":\"var(--token-406ee2a1-9c29-42c5-961e-cfe02a30aaf7, rgb(18, 18, 18))\"},children:\"Define avatars clearly\"})})},WSvcEG864:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0RlZ3VsYXIgVGV4dCBCb2xk\",\"--framer-font-family\":'\"Degular Text Bold\", \"Degular Text Bold Placeholder\", sans-serif',\"--framer-font-size\":\"22px\",\"--framer-line-height\":\"28px\",\"--framer-text-color\":\"var(--token-406ee2a1-9c29-42c5-961e-cfe02a30aaf7, rgb(18, 18, 18))\"},children:\"Define avatars clearly\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0RlZ3VsYXIgVGV4dCBCb2xk\",\"--framer-font-family\":'\"Degular Text Bold\", \"Degular Text Bold Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-line-height\":\"24px\",\"--framer-text-color\":\"var(--token-406ee2a1-9c29-42c5-961e-cfe02a30aaf7, rgb(18, 18, 18))\"},children:\"Define avatars clearly\"})}),className:\"framer-x9v2c2\",fonts:[\"CUSTOM;Degular Text Bold\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1w4rpdf\",\"data-framer-name\":\"Points Text\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{jtC8vLgen:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0RlZ3VsYXIgVGV4dCBSZWd1bGFy\",\"--framer-font-family\":'\"Degular Text Regular\", \"Degular Text Regular Placeholder\", sans-serif',\"--framer-line-height\":\"18px\",\"--framer-text-color\":\"var(--token-406ee2a1-9c29-42c5-961e-cfe02a30aaf7, rgb(18, 18, 18))\"},children:\"Get guided steps to define and understand your different audience avatars better.\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0RlZ3VsYXIgVGV4dCBSZWd1bGFy\",\"--framer-font-family\":'\"Degular Text Regular\", \"Degular Text Regular Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"23px\",\"--framer-text-color\":\"var(--token-406ee2a1-9c29-42c5-961e-cfe02a30aaf7, rgb(18, 18, 18))\"},children:\"Get guided steps to define and understand your different audience avatars better.\"})}),className:\"framer-1cfmlha\",fonts:[\"CUSTOM;Degular Text Regular\"],verticalAlignment:\"top\",withExternalLayout:true})})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1menrs2\",\"data-framer-name\":\"Points Three Wrap\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1egoj48\",\"data-framer-name\":\"Points Two\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{jtC8vLgen:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+6797+60+5897.5+30+0+0+0+0+0+0+345.5+0+420+0+0+45),pixelHeight:21,pixelWidth:22,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/O0eRoHPRHXG7AMIFsit5hwmqXU.png\"}},tICWQLge2:{background:{alt:\"\",fit:\"fill\",pixelHeight:21,pixelWidth:22,src:\"https://framerusercontent.com/images/O0eRoHPRHXG7AMIFsit5hwmqXU.png\"}},WSvcEG864:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+5902+90+5291+100+0+0+0+0+0+444+0+344+0+0+9),pixelHeight:21,pixelWidth:22,src:\"https://framerusercontent.com/images/O0eRoHPRHXG7AMIFsit5hwmqXU.png\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+5878+90+5209+100+0+0+0+0+0+434+0+336+0+0+7),pixelHeight:21,pixelWidth:22,src:\"https://framerusercontent.com/images/O0eRoHPRHXG7AMIFsit5hwmqXU.png\"},className:\"framer-pjfkd7\"})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{jtC8vLgen:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0RlZ3VsYXIgVGV4dCBCb2xk\",\"--framer-font-family\":'\"Degular Text Bold\", \"Degular Text Bold Placeholder\", sans-serif',\"--framer-font-size\":\"17px\",\"--framer-line-height\":\"20px\",\"--framer-text-color\":\"var(--token-406ee2a1-9c29-42c5-961e-cfe02a30aaf7, rgb(18, 18, 18))\"},children:\"Capture problems & FAQs effectively\"})})},WSvcEG864:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0RlZ3VsYXIgVGV4dCBCb2xk\",\"--framer-font-family\":'\"Degular Text Bold\", \"Degular Text Bold Placeholder\", sans-serif',\"--framer-font-size\":\"22px\",\"--framer-line-height\":\"28px\",\"--framer-text-color\":\"var(--token-406ee2a1-9c29-42c5-961e-cfe02a30aaf7, rgb(18, 18, 18))\"},children:\"Capture problems & FAQs effectively\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0RlZ3VsYXIgVGV4dCBCb2xk\",\"--framer-font-family\":'\"Degular Text Bold\", \"Degular Text Bold Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-line-height\":\"24px\",\"--framer-text-color\":\"var(--token-406ee2a1-9c29-42c5-961e-cfe02a30aaf7, rgb(18, 18, 18))\"},children:\"Capture problems & FAQs effectively\"})}),className:\"framer-juwxl0\",fonts:[\"CUSTOM;Degular Text Bold\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-49i8sr\",\"data-framer-name\":\"Points Text\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{jtC8vLgen:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0RlZ3VsYXIgVGV4dCBSZWd1bGFy\",\"--framer-font-family\":'\"Degular Text Regular\", \"Degular Text Regular Placeholder\", sans-serif',\"--framer-line-height\":\"18px\",\"--framer-text-color\":\"var(--token-406ee2a1-9c29-42c5-961e-cfe02a30aaf7, rgb(18, 18, 18))\"},children:\"Quickly log problems or questions you hear from your target audience all in one organized location.\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0RlZ3VsYXIgVGV4dCBSZWd1bGFy\",\"--framer-font-family\":'\"Degular Text Regular\", \"Degular Text Regular Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"23px\",\"--framer-text-color\":\"var(--token-406ee2a1-9c29-42c5-961e-cfe02a30aaf7, rgb(18, 18, 18))\"},children:\"Quickly log problems or questions you hear from your target audience all in one organized location.\"})}),className:\"framer-v5erws\",fonts:[\"CUSTOM;Degular Text Regular\"],verticalAlignment:\"top\",withExternalLayout:true})})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1uskf3\",\"data-framer-name\":\"Points Three Wrap\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1gp14yd\",\"data-framer-name\":\"Points Two\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{jtC8vLgen:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+6797+60+5897.5+30+0+0+0+0+0+0+345.5+0+630+0+0+45),pixelHeight:21,pixelWidth:22,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/O0eRoHPRHXG7AMIFsit5hwmqXU.png\"}},tICWQLge2:{background:{alt:\"\",fit:\"fill\",pixelHeight:21,pixelWidth:22,src:\"https://framerusercontent.com/images/O0eRoHPRHXG7AMIFsit5hwmqXU.png\"}},WSvcEG864:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+5902+90+5291+100+0+0+0+0+0+444+0+516+0+0+9),pixelHeight:21,pixelWidth:22,src:\"https://framerusercontent.com/images/O0eRoHPRHXG7AMIFsit5hwmqXU.png\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+5878+90+5209+100+0+0+0+0+0+434+0+504+0+0+7),pixelHeight:21,pixelWidth:22,src:\"https://framerusercontent.com/images/O0eRoHPRHXG7AMIFsit5hwmqXU.png\"},className:\"framer-xauyja\"})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{jtC8vLgen:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0RlZ3VsYXIgVGV4dCBCb2xk\",\"--framer-font-family\":'\"Degular Text Bold\", \"Degular Text Bold Placeholder\", sans-serif',\"--framer-font-size\":\"17px\",\"--framer-line-height\":\"20px\",\"--framer-text-color\":\"var(--token-406ee2a1-9c29-42c5-961e-cfe02a30aaf7, rgb(18, 18, 18))\"},children:\"Brainstorm content effortlessly\"})})},WSvcEG864:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0RlZ3VsYXIgVGV4dCBCb2xk\",\"--framer-font-family\":'\"Degular Text Bold\", \"Degular Text Bold Placeholder\", sans-serif',\"--framer-font-size\":\"22px\",\"--framer-line-height\":\"28px\",\"--framer-text-color\":\"var(--token-406ee2a1-9c29-42c5-961e-cfe02a30aaf7, rgb(18, 18, 18))\"},children:\"Brainstorm content effortlessly\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0RlZ3VsYXIgVGV4dCBCb2xk\",\"--framer-font-family\":'\"Degular Text Bold\", \"Degular Text Bold Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-line-height\":\"24px\",\"--framer-text-color\":\"var(--token-406ee2a1-9c29-42c5-961e-cfe02a30aaf7, rgb(18, 18, 18))\"},children:\"Brainstorm content effortlessly\"})}),className:\"framer-nkolfw\",fonts:[\"CUSTOM;Degular Text Bold\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-czgi67\",\"data-framer-name\":\"Points Text\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{jtC8vLgen:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0RlZ3VsYXIgVGV4dCBSZWd1bGFy\",\"--framer-font-family\":'\"Degular Text Regular\", \"Degular Text Regular Placeholder\", sans-serif',\"--framer-line-height\":\"18px\",\"--framer-text-color\":\"var(--token-406ee2a1-9c29-42c5-961e-cfe02a30aaf7, rgb(18, 18, 18))\"},children:\"Quickly turn problems or questions into content your audience will appreciate.\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0RlZ3VsYXIgVGV4dCBSZWd1bGFy\",\"--framer-font-family\":'\"Degular Text Regular\", \"Degular Text Regular Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"23px\",\"--framer-text-color\":\"var(--token-406ee2a1-9c29-42c5-961e-cfe02a30aaf7, rgb(18, 18, 18))\"},children:\"Quickly turn problems or questions into content your audience will appreciate.\"})}),className:\"framer-1h8fwsu\",fonts:[\"CUSTOM;Degular Text Regular\"],verticalAlignment:\"top\",withExternalLayout:true})})})]})]})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1p4nvq8\",\"data-framer-name\":\"Image Wrap\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{jtC8vLgen:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+6797+60+5897.5+30+0+0+0+0+1190.5+0+-6.006),pixelHeight:1480,pixelWidth:1253,positionX:\"center\",positionY:\"center\",sizes:`calc(min(min(${componentViewport?.width||\"100vw\"} - 40px, 1260px), 645px) * 1.0286)`,src:\"https://framerusercontent.com/images/VtPuHTsB9N59zpeZEPvDl11BRg.png\",srcSet:\"https://framerusercontent.com/images/VtPuHTsB9N59zpeZEPvDl11BRg.png?scale-down-to=1024 866w,https://framerusercontent.com/images/VtPuHTsB9N59zpeZEPvDl11BRg.png 1253w\"}},tICWQLge2:{background:{alt:\"\",fit:\"fill\",pixelHeight:1480,pixelWidth:1253,sizes:`min(min(${componentViewport?.width||\"100vw\"} - 40px, 1260px), 645px)`,src:\"https://framerusercontent.com/images/VtPuHTsB9N59zpeZEPvDl11BRg.png\",srcSet:\"https://framerusercontent.com/images/VtPuHTsB9N59zpeZEPvDl11BRg.png?scale-down-to=1024 866w,https://framerusercontent.com/images/VtPuHTsB9N59zpeZEPvDl11BRg.png 1253w\"}},WSvcEG864:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+5902+90+5291+100+0+0+0+184+0+0),pixelHeight:1480,pixelWidth:1253,sizes:`min(max((min(${componentViewport?.width||\"100vw\"}, 1260px) - 85px) / 2, 1px), 645px)`,src:\"https://framerusercontent.com/images/VtPuHTsB9N59zpeZEPvDl11BRg.png\",srcSet:\"https://framerusercontent.com/images/VtPuHTsB9N59zpeZEPvDl11BRg.png?scale-down-to=1024 866w,https://framerusercontent.com/images/VtPuHTsB9N59zpeZEPvDl11BRg.png 1253w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+5878+90+5209+100+0+0+0+171+0+0),pixelHeight:1480,pixelWidth:1253,sizes:`min(max((min(${componentViewport?.width||\"100vw\"}, 1260px) - 85px) / 2, 1px), 645px)`,src:\"https://framerusercontent.com/images/VtPuHTsB9N59zpeZEPvDl11BRg.png\",srcSet:\"https://framerusercontent.com/images/VtPuHTsB9N59zpeZEPvDl11BRg.png?scale-down-to=1024 866w,https://framerusercontent.com/images/VtPuHTsB9N59zpeZEPvDl11BRg.png 1253w\"},className:\"framer-19jjyy2\",\"data-framer-name\":\"Image\"})})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1p5ecd1\",\"data-framer-name\":\"Feature Goals\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-117vcbp\",\"data-border\":true,\"data-framer-name\":\"Intro Wrap\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1fbv8s3\",\"data-framer-name\":\"Content Wrap\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-3y9ew\",\"data-framer-name\":\"Feed Back \",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{jtC8vLgen:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+6797+60+5897.5+30+0+0+1630.5+0+0+25+0+0+0+0),pixelHeight:58,pixelWidth:79,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/qnPHpRCgU5XVKoX7i5h7jEdkA.png\"}},tICWQLge2:{background:{alt:\"\",fit:\"fill\",pixelHeight:58,pixelWidth:79,src:\"https://framerusercontent.com/images/qnPHpRCgU5XVKoX7i5h7jEdkA.png\"}},WSvcEG864:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+5902+90+5291+100+0+0+1156+0+0+40+0+0+0+0),pixelHeight:58,pixelWidth:79,src:\"https://framerusercontent.com/images/qnPHpRCgU5XVKoX7i5h7jEdkA.png\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+5878+90+5209+100+0+0+1130+0+0+40+0+0+0+0),pixelHeight:58,pixelWidth:79,src:\"https://framerusercontent.com/images/qnPHpRCgU5XVKoX7i5h7jEdkA.png\"},className:\"framer-u8xbxs\",\"data-framer-name\":\"Qutos\"})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1j9m4t9\",\"data-framer-name\":\"Title Wrap\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{jtC8vLgen:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0RlZ3VsYXIgVGV4dCBCb2xk\",\"--framer-font-family\":'\"Degular Text Bold\", \"Degular Text Bold Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-letter-spacing\":\"-0.3px\",\"--framer-line-height\":\"120%\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-21b87942-b5ba-4341-95a9-cb6b167de460, rgb(0, 0, 0))\"},children:/*#__PURE__*/_jsx(\"em\",{children:'\"I love the customer avatars. I really love the section about problems and FAQs as a place for idea generation.\"'})})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0RlZ3VsYXIgVGV4dCBCb2xk\",\"--framer-font-family\":'\"Degular Text Bold\", \"Degular Text Bold Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-letter-spacing\":\"-0.3px\",\"--framer-line-height\":\"130%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-21b87942-b5ba-4341-95a9-cb6b167de460, rgb(0, 0, 0))\"},children:/*#__PURE__*/_jsx(\"em\",{children:'\"I love the customer avatars. I really love the section about problems and FAQs as a place for idea generation.\"'})})}),className:\"framer-ok4sry\",fonts:[\"CUSTOM;Degular Text Bold\"],verticalAlignment:\"top\",withExternalLayout:true})})})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-kypz9v\",\"data-framer-name\":\"Feed Back Image\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-n36iwb\",\"data-framer-name\":\"Name Wrap\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-7i5vqk\",\"data-framer-name\":\"Intro Name\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{jtC8vLgen:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+6797+60+5897.5+30+0+0+1630.5+0+0+25+0+174+0+0+1),pixelHeight:120,pixelWidth:121,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/vkYeTHFp4MI0bTnKEIWYaxpXj4U.jpg\"}},tICWQLge2:{background:{alt:\"\",fit:\"fit\",pixelHeight:120,pixelWidth:121,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/vkYeTHFp4MI0bTnKEIWYaxpXj4U.jpg\"}},WSvcEG864:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+5902+90+5291+100+0+0+1156+0+0+40+0+227+0+63+2),pixelHeight:120,pixelWidth:121,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/vkYeTHFp4MI0bTnKEIWYaxpXj4U.jpg\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+5878+90+5209+100+0+0+1130+0+0+40+0+227+0+63+2),pixelHeight:120,pixelWidth:121,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/vkYeTHFp4MI0bTnKEIWYaxpXj4U.jpg\"},className:\"framer-75bjrp\"})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1b4lx9r\",\"data-framer-name\":\"Name\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{jtC8vLgen:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0RlZ3VsYXIgVGV4dCBCb2xk\",\"--framer-font-family\":'\"Degular Text Bold\", \"Degular Text Bold Placeholder\", sans-serif',\"--framer-line-height\":\"22px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-406ee2a1-9c29-42c5-961e-cfe02a30aaf7, rgb(18, 18, 18))\"},children:\"Lauren Tildan\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0RlZ3VsYXIgVGV4dCBCb2xk\",\"--framer-font-family\":'\"Degular Text Bold\", \"Degular Text Bold Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"22px\",\"--framer-text-color\":\"var(--token-406ee2a1-9c29-42c5-961e-cfe02a30aaf7, rgb(18, 18, 18))\"},children:\"Lauren Tildan\"})}),className:\"framer-11rayse\",fonts:[\"CUSTOM;Degular Text Bold\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{jtC8vLgen:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0RlZ3VsYXIgVGV4dCBSZWd1bGFy\",\"--framer-font-family\":'\"Degular Text Regular\", \"Degular Text Regular Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-line-height\":\"16px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-406ee2a1-9c29-42c5-961e-cfe02a30aaf7, rgb(18, 18, 18))\"},children:\"Marketing Coach\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0RlZ3VsYXIgVGV4dCBSZWd1bGFy\",\"--framer-font-family\":'\"Degular Text Regular\", \"Degular Text Regular Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-line-height\":\"16px\",\"--framer-text-color\":\"var(--token-406ee2a1-9c29-42c5-961e-cfe02a30aaf7, rgb(18, 18, 18))\"},children:\"Marketing Coach\"})}),className:\"framer-1x6j3s5\",fonts:[\"CUSTOM;Degular Text Regular\"],verticalAlignment:\"top\",withExternalLayout:true})})]})]})})]})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-19wnb18\",\"data-framer-name\":\"Button Wrap  Wrap\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{jtC8vLgen:{width:`min(min(min(${componentViewport?.width||\"100vw\"} - 40px, 1260px), 900px), 365px)`,y:(componentViewport?.y||0)+0+6797+60+5897.5+30+0+0+1630.5+0+294+0+0},tICWQLge2:{y:undefined},WSvcEG864:{y:(componentViewport?.y||0)+0+5902+90+5291+100+0+0+1156+0+541+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:73,width:\"364px\",y:(componentViewport?.y||0)+0+5878+90+5209+100+0+0+1130+0+541+0+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-9gg2ep-container\",isModuleExternal:true,nodeId:\"bxy6wWQUW\",scopeId:\"OMp430bgy\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{jtC8vLgen:{variant:\"lbE2C1YKC\"}},children:/*#__PURE__*/_jsx(BannerButton,{height:\"100%\",i9h0tMlqE:\"https://store.creatorscience.com/buy/28aeab8d-5b53-4840-9055-080794014e8b\",id:\"bxy6wWQUW\",layoutId:\"bxy6wWQUW\",style:{width:\"100%\"},variant:\"fdB6OMGxz\",width:\"100%\"})})})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-rjziwt\",\"data-framer-name\":\"Prcing Text\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{jtC8vLgen:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7U3BhY2UgTW9uby1yZWd1bGFy\",\"--framer-font-family\":'\"Space Mono\", monospace',\"--framer-font-size\":\"12px\",\"--framer-letter-spacing\":\"0.65px\",\"--framer-line-height\":\"13px\",\"--framer-text-color\":\"var(--token-ead53e59-221f-4b46-951f-2920018f76b7, rgb(30, 30, 30))\",\"--framer-text-transform\":\"uppercase\"},children:\"lifetime access for $297\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7U3BhY2UgTW9uby1yZWd1bGFy\",\"--framer-font-family\":'\"Space Mono\", monospace',\"--framer-font-size\":\"13px\",\"--framer-letter-spacing\":\"0.65px\",\"--framer-line-height\":\"13px\",\"--framer-text-color\":\"var(--token-ead53e59-221f-4b46-951f-2920018f76b7, rgb(30, 30, 30))\",\"--framer-text-transform\":\"uppercase\"},children:\"lifetime access for $297\"})}),className:\"framer-123n1wm\",fonts:[\"GF;Space Mono-regular\"],verticalAlignment:\"top\",withExternalLayout:true})})})]})]})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1b406ez\",\"data-framer-name\":\"Seprator\"})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-52dtc9\",\"data-framer-name\":\"Feature Five\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1l6vcrr\",\"data-framer-name\":\"Container\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-q4asj2\",\"data-framer-name\":\"Feature Content\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-lehxwo\",\"data-framer-name\":\"Feature Content one\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1vr4z9c\",\"data-framer-name\":\"Title Whole Wrap\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-7rve6w\",\"data-framer-name\":\"Title Wrap\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{jtC8vLgen:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7U3BhY2UgTW9uby03MDA=\",\"--framer-font-family\":'\"Space Mono\", monospace',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.3px\",\"--framer-line-height\":\"105%\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-d1f6ecfd-2abf-4418-8a05-8920186c6135, rgb(0, 97, 255))\",\"--framer-text-transform\":\"uppercase\"},children:\"5. Integrated training & tutorials\"})})},WSvcEG864:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7U3BhY2UgTW9uby03MDA=\",\"--framer-font-family\":'\"Space Mono\", monospace',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"18px\",\"--framer-text-color\":\"var(--token-d1f6ecfd-2abf-4418-8a05-8920186c6135, rgb(0, 97, 255))\",\"--framer-text-transform\":\"uppercase\"},children:\"5. Integrated training & tutorials\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7U3BhY2UgTW9uby03MDA=\",\"--framer-font-family\":'\"Space Mono\", monospace',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"0.01em\",\"--framer-line-height\":\"18px\",\"--framer-text-color\":\"var(--token-d1f6ecfd-2abf-4418-8a05-8920186c6135, rgb(0, 97, 255))\",\"--framer-text-transform\":\"uppercase\"},children:\"5. Integrated training & tutorials\"})}),className:\"framer-1052dt6\",fonts:[\"GF;Space Mono-700\"],verticalAlignment:\"top\",withExternalLayout:true})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-utlcs\",\"data-framer-name\":\"Heading Wrap\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{jtC8vLgen:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"Q1VTVE9NO0RlZ3VsYXIgVGV4dCBCb2xk\",\"--framer-font-family\":'\"Degular Text Bold\", \"Degular Text Bold Placeholder\", sans-serif',\"--framer-font-size\":\"25px\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"30px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-406ee2a1-9c29-42c5-961e-cfe02a30aaf7, rgb(18, 18, 18))\"},children:\"Quickly learn to use every feature\"})})},WSvcEG864:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"Q1VTVE9NO0RlZ3VsYXIgVGV4dCBCb2xk\",\"--framer-font-family\":'\"Degular Text Bold\", \"Degular Text Bold Placeholder\", sans-serif',\"--framer-font-size\":\"46px\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"50px\",\"--framer-text-color\":\"var(--token-406ee2a1-9c29-42c5-961e-cfe02a30aaf7, rgb(18, 18, 18))\"},children:\"Quickly learn to use every feature\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"Q1VTVE9NO0RlZ3VsYXIgVGV4dCBCb2xk\",\"--framer-font-family\":'\"Degular Text Bold\", \"Degular Text Bold Placeholder\", sans-serif',\"--framer-font-size\":\"35px\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"40px\",\"--framer-text-color\":\"var(--token-406ee2a1-9c29-42c5-961e-cfe02a30aaf7, rgb(18, 18, 18))\"},children:\"Quickly learn to use every feature\"})}),className:\"framer-s59vep\",fonts:[\"CUSTOM;Degular Text Bold\"],verticalAlignment:\"top\",withExternalLayout:true})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-vsex48\",\"data-framer-name\":\"Content Wrap\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{jtC8vLgen:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0RlZ3VsYXIgVGV4dCBSZWd1bGFy\",\"--framer-font-family\":'\"Degular Text Regular\", \"Degular Text Regular Placeholder\", sans-serif',\"--framer-line-height\":\"18px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-406ee2a1-9c29-42c5-961e-cfe02a30aaf7, rgb(18, 18, 18))\"},children:\"We\u2019re not Notion-certified consultants\u2014and you probably aren\u2019t either.\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0RlZ3VsYXIgVGV4dCBSZWd1bGFy\",\"--framer-font-family\":'\"Degular Text Regular\", \"Degular Text Regular Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"23px\",\"--framer-text-color\":\"var(--token-406ee2a1-9c29-42c5-961e-cfe02a30aaf7, rgb(18, 18, 18))\"},children:\"We\u2019re not Notion-certified consultants\u2014and you probably aren\u2019t either.\"})}),className:\"framer-1bzdok7\",fonts:[\"CUSTOM;Degular Text Regular\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{jtC8vLgen:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0RlZ3VsYXIgVGV4dCBSZWd1bGFy\",\"--framer-font-family\":'\"Degular Text Regular\", \"Degular Text Regular Placeholder\", sans-serif',\"--framer-line-height\":\"18px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-406ee2a1-9c29-42c5-961e-cfe02a30aaf7, rgb(18, 18, 18))\"},children:\"Most Notion templates focus on selling, leaving you to figure out the rest. They\u2019re often too complicated, designed for Notion pros.\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0RlZ3VsYXIgVGV4dCBSZWd1bGFy\",\"--framer-font-family\":'\"Degular Text Regular\", \"Degular Text Regular Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"23px\",\"--framer-text-color\":\"var(--token-406ee2a1-9c29-42c5-961e-cfe02a30aaf7, rgb(18, 18, 18))\"},children:\"Most Notion templates focus on selling, leaving you to figure out the rest. They\u2019re often too complicated, designed for Notion pros.\"})}),className:\"framer-3127yd\",fonts:[\"CUSTOM;Degular Text Regular\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{jtC8vLgen:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0RlZ3VsYXIgVGV4dCBSZWd1bGFy\",\"--framer-font-family\":'\"Degular Text Regular\", \"Degular Text Regular Placeholder\", sans-serif',\"--framer-line-height\":\"18px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-21b87942-b5ba-4341-95a9-cb6b167de460, rgb(0, 0, 0))\"},children:[\"We took a different approach. Every \",/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"Q1VTVE9NO0RlZ3VsYXIgVGV4dCBCb2xk\",\"--framer-font-family\":'\"Degular Text Bold\", \"Degular Text Bold Placeholder\", sans-serif'},children:\"CreatorHQ page\"}),\" includes integrated training. With \",/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"Q1VTVE9NO0RlZ3VsYXIgVGV4dCBCb2xk\",\"--framer-font-family\":'\"Degular Text Bold\", \"Degular Text Bold Placeholder\", sans-serif'},children:\"30 step-by-step \"}),\"tutorials, you\u2019ll learn how to maximize every feature without frustration.\"]})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0RlZ3VsYXIgVGV4dCBSZWd1bGFy\",\"--framer-font-family\":'\"Degular Text Regular\", \"Degular Text Regular Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"23px\",\"--framer-text-color\":\"var(--token-21b87942-b5ba-4341-95a9-cb6b167de460, rgb(0, 0, 0))\"},children:[\"We took a different approach. Every \",/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"Q1VTVE9NO0RlZ3VsYXIgVGV4dCBCb2xk\",\"--framer-font-family\":'\"Degular Text Bold\", \"Degular Text Bold Placeholder\", sans-serif'},children:\"CreatorHQ page\"}),\" includes integrated training. With \",/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"Q1VTVE9NO0RlZ3VsYXIgVGV4dCBCb2xk\",\"--framer-font-family\":'\"Degular Text Bold\", \"Degular Text Bold Placeholder\", sans-serif'},children:\"30 step-by-step \"}),\"tutorials, you\u2019ll learn how to maximize every feature without frustration.\"]})}),className:\"framer-1stakjq\",fonts:[\"CUSTOM;Degular Text Regular\",\"CUSTOM;Degular Text Bold\"],verticalAlignment:\"top\",withExternalLayout:true})})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-g2ozvq\",\"data-framer-name\":\"Points Whole Wrap\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1x9g53w\",\"data-framer-name\":\"Points One Wrap\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1v1x0vi\",\"data-framer-name\":\"Points One\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{jtC8vLgen:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+6797+60+7979+30+0+0+0+0+0+438.5+0+0+0+0+45),pixelHeight:21,pixelWidth:22,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/O0eRoHPRHXG7AMIFsit5hwmqXU.png\"}},tICWQLge2:{background:{alt:\"\",fit:\"fill\",pixelHeight:21,pixelWidth:22,src:\"https://framerusercontent.com/images/O0eRoHPRHXG7AMIFsit5hwmqXU.png\"}},WSvcEG864:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+5902+90+7285+100+0+0+0+0+0+601+0+0+0+0+9),pixelHeight:21,pixelWidth:22,src:\"https://framerusercontent.com/images/O0eRoHPRHXG7AMIFsit5hwmqXU.png\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+5878+90+7177+100+0+0+0+0+0+591+0+0+0+0+7),pixelHeight:21,pixelWidth:22,src:\"https://framerusercontent.com/images/O0eRoHPRHXG7AMIFsit5hwmqXU.png\"},className:\"framer-1koaflj\"})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{jtC8vLgen:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0RlZ3VsYXIgVGV4dCBCb2xk\",\"--framer-font-family\":'\"Degular Text Bold\", \"Degular Text Bold Placeholder\", sans-serif',\"--framer-font-size\":\"17px\",\"--framer-line-height\":\"20px\",\"--framer-text-color\":\"var(--token-406ee2a1-9c29-42c5-961e-cfe02a30aaf7, rgb(18, 18, 18))\"},children:\"Tutorials right where you need them\"})})},WSvcEG864:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0RlZ3VsYXIgVGV4dCBCb2xk\",\"--framer-font-family\":'\"Degular Text Bold\", \"Degular Text Bold Placeholder\", sans-serif',\"--framer-font-size\":\"22px\",\"--framer-line-height\":\"28px\",\"--framer-text-color\":\"var(--token-406ee2a1-9c29-42c5-961e-cfe02a30aaf7, rgb(18, 18, 18))\"},children:\"Tutorials right where you need them\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0RlZ3VsYXIgVGV4dCBCb2xk\",\"--framer-font-family\":'\"Degular Text Bold\", \"Degular Text Bold Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-line-height\":\"24px\",\"--framer-text-color\":\"var(--token-406ee2a1-9c29-42c5-961e-cfe02a30aaf7, rgb(18, 18, 18))\"},children:\"Tutorials right where you need them\"})}),className:\"framer-1sms6pc\",fonts:[\"CUSTOM;Degular Text Bold\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1tz63uy\",\"data-framer-name\":\"Points Text\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{jtC8vLgen:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0RlZ3VsYXIgVGV4dCBSZWd1bGFy\",\"--framer-font-family\":'\"Degular Text Regular\", \"Degular Text Regular Placeholder\", sans-serif',\"--framer-line-height\":\"18px\",\"--framer-text-color\":\"var(--token-406ee2a1-9c29-42c5-961e-cfe02a30aaf7, rgb(18, 18, 18))\"},children:\"The most important pages of CreatorHQ include built-in tutorials, making it easy to learn as you go.\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0RlZ3VsYXIgVGV4dCBSZWd1bGFy\",\"--framer-font-family\":'\"Degular Text Regular\", \"Degular Text Regular Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"23px\",\"--framer-text-color\":\"var(--token-406ee2a1-9c29-42c5-961e-cfe02a30aaf7, rgb(18, 18, 18))\"},children:\"The most important pages of CreatorHQ include built-in tutorials, making it easy to learn as you go.\"})}),className:\"framer-rgplaz\",fonts:[\"CUSTOM;Degular Text Regular\"],verticalAlignment:\"top\",withExternalLayout:true})})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-dyv6pe\",\"data-framer-name\":\"Points Two Wrap\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-pwh9ge\",\"data-framer-name\":\"Points Two\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{jtC8vLgen:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+6797+60+7979+30+0+0+0+0+0+438.5+0+210+0+0+45),pixelHeight:21,pixelWidth:22,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/O0eRoHPRHXG7AMIFsit5hwmqXU.png\"}},tICWQLge2:{background:{alt:\"\",fit:\"fill\",pixelHeight:21,pixelWidth:22,src:\"https://framerusercontent.com/images/O0eRoHPRHXG7AMIFsit5hwmqXU.png\"}},WSvcEG864:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+5902+90+7285+100+0+0+0+0+0+601+0+0+0+0+9),pixelHeight:21,pixelWidth:22,src:\"https://framerusercontent.com/images/O0eRoHPRHXG7AMIFsit5hwmqXU.png\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+5878+90+7177+100+0+0+0+0+0+591+0+0+0+0+7),pixelHeight:21,pixelWidth:22,src:\"https://framerusercontent.com/images/O0eRoHPRHXG7AMIFsit5hwmqXU.png\"},className:\"framer-c1xh5z\"})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{jtC8vLgen:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0RlZ3VsYXIgVGV4dCBCb2xk\",\"--framer-font-family\":'\"Degular Text Bold\", \"Degular Text Bold Placeholder\", sans-serif',\"--framer-font-size\":\"17px\",\"--framer-line-height\":\"20px\",\"--framer-text-color\":\"var(--token-406ee2a1-9c29-42c5-961e-cfe02a30aaf7, rgb(18, 18, 18))\"},children:\"Dedicated tutorials library\"})})},WSvcEG864:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0RlZ3VsYXIgVGV4dCBCb2xk\",\"--framer-font-family\":'\"Degular Text Bold\", \"Degular Text Bold Placeholder\", sans-serif',\"--framer-font-size\":\"22px\",\"--framer-line-height\":\"28px\",\"--framer-text-color\":\"var(--token-406ee2a1-9c29-42c5-961e-cfe02a30aaf7, rgb(18, 18, 18))\"},children:\"Dedicated tutorials library\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0RlZ3VsYXIgVGV4dCBCb2xk\",\"--framer-font-family\":'\"Degular Text Bold\", \"Degular Text Bold Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-line-height\":\"24px\",\"--framer-text-color\":\"var(--token-406ee2a1-9c29-42c5-961e-cfe02a30aaf7, rgb(18, 18, 18))\"},children:\"Dedicated tutorials library\"})}),className:\"framer-1qfky70\",fonts:[\"CUSTOM;Degular Text Bold\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1tu9oqi\",\"data-framer-name\":\"Points Text\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{jtC8vLgen:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0RlZ3VsYXIgVGV4dCBSZWd1bGFy\",\"--framer-font-family\":'\"Degular Text Regular\", \"Degular Text Regular Placeholder\", sans-serif',\"--framer-line-height\":\"18px\",\"--framer-text-color\":\"var(--token-406ee2a1-9c29-42c5-961e-cfe02a30aaf7, rgb(18, 18, 18))\"},children:\"Access all tutorials, plus some basic Notion training, in one centralized library.\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0RlZ3VsYXIgVGV4dCBSZWd1bGFy\",\"--framer-font-family\":'\"Degular Text Regular\", \"Degular Text Regular Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"23px\",\"--framer-text-color\":\"var(--token-406ee2a1-9c29-42c5-961e-cfe02a30aaf7, rgb(18, 18, 18))\"},children:\"Access all tutorials, plus some basic Notion training, in one centralized library.\"})}),className:\"framer-h413vl\",fonts:[\"CUSTOM;Degular Text Regular\"],verticalAlignment:\"top\",withExternalLayout:true})})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-u9k3um\",\"data-framer-name\":\"Points Three Wrap\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-pbbt10\",\"data-framer-name\":\"Points Two\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{jtC8vLgen:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+6797+60+7979+30+0+0+0+0+0+438.5+0+420+0+0+45),pixelHeight:21,pixelWidth:22,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/O0eRoHPRHXG7AMIFsit5hwmqXU.png\"}},tICWQLge2:{background:{alt:\"\",fit:\"fill\",pixelHeight:21,pixelWidth:22,src:\"https://framerusercontent.com/images/O0eRoHPRHXG7AMIFsit5hwmqXU.png\"}},WSvcEG864:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+5902+90+7285+100+0+0+0+0+0+601+0+0+0+0+9),pixelHeight:21,pixelWidth:22,src:\"https://framerusercontent.com/images/O0eRoHPRHXG7AMIFsit5hwmqXU.png\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+5878+90+7177+100+0+0+0+0+0+591+0+0+0+0+7),pixelHeight:21,pixelWidth:22,src:\"https://framerusercontent.com/images/O0eRoHPRHXG7AMIFsit5hwmqXU.png\"},className:\"framer-18tx8sk\"})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{jtC8vLgen:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0RlZ3VsYXIgVGV4dCBCb2xk\",\"--framer-font-family\":'\"Degular Text Bold\", \"Degular Text Bold Placeholder\", sans-serif',\"--framer-font-size\":\"17px\",\"--framer-line-height\":\"20px\",\"--framer-text-color\":\"var(--token-406ee2a1-9c29-42c5-961e-cfe02a30aaf7, rgb(18, 18, 18))\"},children:\"Tooltips for quick guidance\"})})},WSvcEG864:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0RlZ3VsYXIgVGV4dCBCb2xk\",\"--framer-font-family\":'\"Degular Text Bold\", \"Degular Text Bold Placeholder\", sans-serif',\"--framer-font-size\":\"22px\",\"--framer-line-height\":\"28px\",\"--framer-text-color\":\"var(--token-406ee2a1-9c29-42c5-961e-cfe02a30aaf7, rgb(18, 18, 18))\"},children:\"Tooltips for quick guidance\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0RlZ3VsYXIgVGV4dCBCb2xk\",\"--framer-font-family\":'\"Degular Text Bold\", \"Degular Text Bold Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-line-height\":\"24px\",\"--framer-text-color\":\"var(--token-406ee2a1-9c29-42c5-961e-cfe02a30aaf7, rgb(18, 18, 18))\"},children:\"Tooltips for quick guidance\"})}),className:\"framer-1kgrbg6\",fonts:[\"CUSTOM;Degular Text Bold\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-132nr10\",\"data-framer-name\":\"Points Text\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{jtC8vLgen:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0RlZ3VsYXIgVGV4dCBSZWd1bGFy\",\"--framer-font-family\":'\"Degular Text Regular\", \"Degular Text Regular Placeholder\", sans-serif',\"--framer-line-height\":\"18px\",\"--framer-text-color\":\"var(--token-406ee2a1-9c29-42c5-961e-cfe02a30aaf7, rgb(18, 18, 18))\"},children:\"Every database and property has been defined and described using information icons.\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0RlZ3VsYXIgVGV4dCBSZWd1bGFy\",\"--framer-font-family\":'\"Degular Text Regular\", \"Degular Text Regular Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"23px\",\"--framer-text-color\":\"var(--token-406ee2a1-9c29-42c5-961e-cfe02a30aaf7, rgb(18, 18, 18))\"},children:\"Every database and property has been defined and described using information icons.\"})}),className:\"framer-o71qu\",fonts:[\"CUSTOM;Degular Text Regular\"],verticalAlignment:\"top\",withExternalLayout:true})})})]})]})]})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-yhe4uf\",\"data-framer-name\":\"Image Wrap\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{jtC8vLgen:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+6797+60+7979+30+0+0+1083.5+0),pixelHeight:841,pixelWidth:1371,positionX:\"center\",positionY:\"center\",sizes:`max(min(${componentViewport?.width||\"100vw\"} - 40px, 1260px), 1px)`,src:\"https://framerusercontent.com/images/7ni46YqGPPVYfqPqkogbjaXXBlg.gif\",srcSet:\"https://framerusercontent.com/images/7ni46YqGPPVYfqPqkogbjaXXBlg.gif?scale-down-to=512 512w,https://framerusercontent.com/images/7ni46YqGPPVYfqPqkogbjaXXBlg.gif?scale-down-to=1024 1024w,https://framerusercontent.com/images/7ni46YqGPPVYfqPqkogbjaXXBlg.gif 1371w\"}},tICWQLge2:{background:{alt:\"\",fit:\"fit\",pixelHeight:841,pixelWidth:1371,positionX:\"center\",positionY:\"center\",sizes:\"750px\",src:\"https://framerusercontent.com/images/7ni46YqGPPVYfqPqkogbjaXXBlg.gif\",srcSet:\"https://framerusercontent.com/images/7ni46YqGPPVYfqPqkogbjaXXBlg.gif?scale-down-to=512 512w,https://framerusercontent.com/images/7ni46YqGPPVYfqPqkogbjaXXBlg.gif?scale-down-to=1024 1024w,https://framerusercontent.com/images/7ni46YqGPPVYfqPqkogbjaXXBlg.gif 1371w\"}},WSvcEG864:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+5902+90+7285+100+0+0+813+0),pixelHeight:841,pixelWidth:1371,sizes:`max(min(${componentViewport?.width||\"100vw\"}, 1260px), 1px)`,src:\"https://framerusercontent.com/images/7ni46YqGPPVYfqPqkogbjaXXBlg.gif\",srcSet:\"https://framerusercontent.com/images/7ni46YqGPPVYfqPqkogbjaXXBlg.gif?scale-down-to=512 512w,https://framerusercontent.com/images/7ni46YqGPPVYfqPqkogbjaXXBlg.gif?scale-down-to=1024 1024w,https://framerusercontent.com/images/7ni46YqGPPVYfqPqkogbjaXXBlg.gif 1371w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+5878+90+7177+100+0+0+799+0),pixelHeight:841,pixelWidth:1371,sizes:`max(min(${componentViewport?.width||\"100vw\"}, 1260px), 1px)`,src:\"https://framerusercontent.com/images/7ni46YqGPPVYfqPqkogbjaXXBlg.gif\",srcSet:\"https://framerusercontent.com/images/7ni46YqGPPVYfqPqkogbjaXXBlg.gif?scale-down-to=512 512w,https://framerusercontent.com/images/7ni46YqGPPVYfqPqkogbjaXXBlg.gif?scale-down-to=1024 1024w,https://framerusercontent.com/images/7ni46YqGPPVYfqPqkogbjaXXBlg.gif 1371w\"},className:\"framer-1cte7ru\",\"data-framer-name\":\"Image\"})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-18ubzqs\",\"data-framer-name\":\"Feature Goals Wrap\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1ldzeft\",\"data-framer-name\":\"Feature Goals\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1hp3ap9\",\"data-border\":true,\"data-framer-name\":\"Intro Wrap\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1gj9oxt\",\"data-framer-name\":\"Content Wrap\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-eo4kss\",\"data-framer-name\":\"Feed Back \",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{jtC8vLgen:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+6797+60+7979+30+0+0+1331.5+16+0+0+25+0+0+0+0),pixelHeight:58,pixelWidth:79,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/qnPHpRCgU5XVKoX7i5h7jEdkA.png\"}},tICWQLge2:{background:{alt:\"\",fit:\"fill\",pixelHeight:58,pixelWidth:79,src:\"https://framerusercontent.com/images/qnPHpRCgU5XVKoX7i5h7jEdkA.png\"}},WSvcEG864:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+5902+90+7285+100+0+0+1717+16+0+0+40+0+0+0+0),pixelHeight:58,pixelWidth:79,src:\"https://framerusercontent.com/images/qnPHpRCgU5XVKoX7i5h7jEdkA.png\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+5878+90+7177+100+0+0+1703+16+0+0+40+0+0+0+0),pixelHeight:58,pixelWidth:79,src:\"https://framerusercontent.com/images/qnPHpRCgU5XVKoX7i5h7jEdkA.png\"},className:\"framer-evdhaz\",\"data-framer-name\":\"Qutos\"})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1c40u4k\",\"data-framer-name\":\"Title Wrap\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{jtC8vLgen:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0RlZ3VsYXIgVGV4dCBSZWd1bGFy\",\"--framer-font-family\":'\"Degular Text Regular\", \"Degular Text Regular Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-letter-spacing\":\"-0.3px\",\"--framer-line-height\":\"120%\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-21b87942-b5ba-4341-95a9-cb6b167de460, rgb(0, 0, 0))\"},children:[/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"Q1VTVE9NO0RlZ3VsYXIgVGV4dCBCb2xk\",\"--framer-font-family\":'\"Degular Text Bold\", \"Degular Text Bold Placeholder\", sans-serif'},children:/*#__PURE__*/_jsx(\"em\",{children:'\"A big plus are the detailed video tutorials'})}),/*#__PURE__*/_jsx(\"em\",{children:' Jay created. Even someone who is totally new to Notion could quickly learn how to use this template.\"'})]})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0RlZ3VsYXIgVGV4dCBSZWd1bGFy\",\"--framer-font-family\":'\"Degular Text Regular\", \"Degular Text Regular Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-letter-spacing\":\"-0.3px\",\"--framer-line-height\":\"130%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-21b87942-b5ba-4341-95a9-cb6b167de460, rgb(0, 0, 0))\"},children:[/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"Q1VTVE9NO0RlZ3VsYXIgVGV4dCBCb2xk\",\"--framer-font-family\":'\"Degular Text Bold\", \"Degular Text Bold Placeholder\", sans-serif'},children:/*#__PURE__*/_jsx(\"em\",{children:'\"A big plus are the detailed video tutorials'})}),/*#__PURE__*/_jsx(\"em\",{children:' Jay created. Even someone who is totally new to Notion could quickly learn how to use this template.\"'})]})}),className:\"framer-1vyih5n\",fonts:[\"CUSTOM;Degular Text Regular\",\"CUSTOM;Degular Text Bold\"],verticalAlignment:\"top\",withExternalLayout:true})})})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-13t7ola\",\"data-framer-name\":\"Feed Back Image\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-11cycif\",\"data-framer-name\":\"Name Wrap\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-52p4oz\",\"data-framer-name\":\"Intro Name\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{jtC8vLgen:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+6797+60+7979+30+0+0+1331.5+16+0+0+25+0+175+0+0+1),pixelHeight:128,pixelWidth:129,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/2SsMNDBASnl1LHKVqfwSGTnUVc.png\"}},tICWQLge2:{background:{alt:\"\",fit:\"fit\",pixelHeight:128,pixelWidth:129,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/2SsMNDBASnl1LHKVqfwSGTnUVc.png\"}},WSvcEG864:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+5902+90+7285+100+0+0+1717+16+0+0+40+0+228+0+0+2),pixelHeight:128,pixelWidth:129,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/2SsMNDBASnl1LHKVqfwSGTnUVc.png\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+5878+90+7177+100+0+0+1703+16+0+0+40+0+228+0+0+2),pixelHeight:128,pixelWidth:129,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/2SsMNDBASnl1LHKVqfwSGTnUVc.png\"},className:\"framer-1tgbor3\"})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-crch8q\",\"data-framer-name\":\"Name\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{jtC8vLgen:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0RlZ3VsYXIgVGV4dCBCb2xk\",\"--framer-font-family\":'\"Degular Text Bold\", \"Degular Text Bold Placeholder\", sans-serif',\"--framer-line-height\":\"22px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-406ee2a1-9c29-42c5-961e-cfe02a30aaf7, rgb(18, 18, 18))\"},children:\"Mindy Marzec\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0RlZ3VsYXIgVGV4dCBCb2xk\",\"--framer-font-family\":'\"Degular Text Bold\", \"Degular Text Bold Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"22px\",\"--framer-text-color\":\"var(--token-406ee2a1-9c29-42c5-961e-cfe02a30aaf7, rgb(18, 18, 18))\"},children:\"Mindy Marzec\"})}),className:\"framer-i25dd0\",fonts:[\"CUSTOM;Degular Text Bold\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{jtC8vLgen:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0RlZ3VsYXIgVGV4dCBSZWd1bGFy\",\"--framer-font-family\":'\"Degular Text Regular\", \"Degular Text Regular Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-line-height\":\"16px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-406ee2a1-9c29-42c5-961e-cfe02a30aaf7, rgb(18, 18, 18))\"},children:\"Mindset Coach\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0RlZ3VsYXIgVGV4dCBSZWd1bGFy\",\"--framer-font-family\":'\"Degular Text Regular\", \"Degular Text Regular Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-line-height\":\"16px\",\"--framer-text-color\":\"var(--token-406ee2a1-9c29-42c5-961e-cfe02a30aaf7, rgb(18, 18, 18))\"},children:\"Mindset Coach\"})}),className:\"framer-19q8dz0\",fonts:[\"CUSTOM;Degular Text Regular\"],verticalAlignment:\"top\",withExternalLayout:true})})]})]})})]})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1dkj3es\",\"data-framer-name\":\"Button Wrap  Wrap\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{jtC8vLgen:{width:`min(min(max(min(${componentViewport?.width||\"100vw\"} - 40px, 1260px), 1px), 900px), 365px)`,y:(componentViewport?.y||0)+0+6797+60+7979+30+0+0+1331.5+16+0+295+0+0},tICWQLge2:{y:undefined},WSvcEG864:{y:(componentViewport?.y||0)+0+5902+90+7285+100+0+0+1717+16+0+416+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:73,width:\"364px\",y:(componentViewport?.y||0)+0+5878+90+7177+100+0+0+1703+16+0+416+0+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1fvf7l7-container\",isModuleExternal:true,nodeId:\"W4_oarGqA\",scopeId:\"OMp430bgy\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{jtC8vLgen:{variant:\"lbE2C1YKC\"}},children:/*#__PURE__*/_jsx(BannerButton,{height:\"100%\",i9h0tMlqE:\"https://store.creatorscience.com/buy/28aeab8d-5b53-4840-9055-080794014e8b\",id:\"W4_oarGqA\",layoutId:\"W4_oarGqA\",style:{width:\"100%\"},variant:\"fdB6OMGxz\",width:\"100%\"})})})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1dmbiah\",\"data-framer-name\":\"Prcing Text\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{jtC8vLgen:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7U3BhY2UgTW9uby1yZWd1bGFy\",\"--framer-font-family\":'\"Space Mono\", monospace',\"--framer-font-size\":\"12px\",\"--framer-letter-spacing\":\"0.65px\",\"--framer-line-height\":\"13px\",\"--framer-text-color\":\"var(--token-ead53e59-221f-4b46-951f-2920018f76b7, rgb(30, 30, 30))\",\"--framer-text-transform\":\"uppercase\"},children:\"lifetime access for $297\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7U3BhY2UgTW9uby1yZWd1bGFy\",\"--framer-font-family\":'\"Space Mono\", monospace',\"--framer-font-size\":\"13px\",\"--framer-letter-spacing\":\"0.65px\",\"--framer-line-height\":\"13px\",\"--framer-text-color\":\"var(--token-ead53e59-221f-4b46-951f-2920018f76b7, rgb(30, 30, 30))\",\"--framer-text-transform\":\"uppercase\"},children:\"lifetime access for $297\"})}),className:\"framer-19emw6l\",fonts:[\"GF;Space Mono-regular\"],verticalAlignment:\"top\",withExternalLayout:true})})})]})]})})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1d6k3s6\",\"data-framer-name\":\"Seprator\"})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-ae81f7\",\"data-framer-name\":\"Feature Six\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-cyw1he\",\"data-framer-name\":\"Container\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-7adqy4\",\"data-framer-name\":\"Feature Content\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-c7q33y\",\"data-framer-name\":\"Feature Content one\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-6nlw0c\",\"data-framer-name\":\"Title Whole Wrap\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-xlu5yh\",\"data-framer-name\":\"Title Wrap\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{jtC8vLgen:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7U3BhY2UgTW9uby03MDA=\",\"--framer-font-family\":'\"Space Mono\", monospace',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.3px\",\"--framer-line-height\":\"105%\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-d1f6ecfd-2abf-4418-8a05-8920186c6135, rgb(0, 97, 255))\",\"--framer-text-transform\":\"uppercase\"},children:\"6. Simple yet powerful CRM\"})})},WSvcEG864:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7U3BhY2UgTW9uby03MDA=\",\"--framer-font-family\":'\"Space Mono\", monospace',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"18px\",\"--framer-text-color\":\"var(--token-d1f6ecfd-2abf-4418-8a05-8920186c6135, rgb(0, 97, 255))\",\"--framer-text-transform\":\"uppercase\"},children:\"6. Simple yet powerful CRM\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7U3BhY2UgTW9uby03MDA=\",\"--framer-font-family\":'\"Space Mono\", monospace',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"0.01em\",\"--framer-line-height\":\"18px\",\"--framer-text-color\":\"var(--token-d1f6ecfd-2abf-4418-8a05-8920186c6135, rgb(0, 97, 255))\",\"--framer-text-transform\":\"uppercase\"},children:\"6. Simple yet powerful CRM\"})}),className:\"framer-tti8nf\",fonts:[\"GF;Space Mono-700\"],verticalAlignment:\"top\",withExternalLayout:true})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-161nuzi\",\"data-framer-name\":\"Heading Wrap\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{jtC8vLgen:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"Q1VTVE9NO0RlZ3VsYXIgVGV4dCBCb2xk\",\"--framer-font-family\":'\"Degular Text Bold\", \"Degular Text Bold Placeholder\", sans-serif',\"--framer-font-size\":\"25px\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"30px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-406ee2a1-9c29-42c5-961e-cfe02a30aaf7, rgb(18, 18, 18))\"},children:\"Grow your network & deepen connections\"})})},WSvcEG864:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"Q1VTVE9NO0RlZ3VsYXIgVGV4dCBCb2xk\",\"--framer-font-family\":'\"Degular Text Bold\", \"Degular Text Bold Placeholder\", sans-serif',\"--framer-font-size\":\"46px\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"50px\",\"--framer-text-color\":\"var(--token-406ee2a1-9c29-42c5-961e-cfe02a30aaf7, rgb(18, 18, 18))\"},children:\"Grow your network & deepen connections\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"Q1VTVE9NO0RlZ3VsYXIgVGV4dCBCb2xk\",\"--framer-font-family\":'\"Degular Text Bold\", \"Degular Text Bold Placeholder\", sans-serif',\"--framer-font-size\":\"35px\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"40px\",\"--framer-text-color\":\"var(--token-406ee2a1-9c29-42c5-961e-cfe02a30aaf7, rgb(18, 18, 18))\"},children:\"Grow your network & deepen connections\"})}),className:\"framer-1ytwoyw\",fonts:[\"CUSTOM;Degular Text Bold\"],verticalAlignment:\"top\",withExternalLayout:true})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-d49bok\",\"data-framer-name\":\"Content Wrap\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{jtC8vLgen:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0RlZ3VsYXIgVGV4dCBSZWd1bGFy\",\"--framer-font-family\":'\"Degular Text Regular\", \"Degular Text Regular Placeholder\", sans-serif',\"--framer-line-height\":\"18px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-21b87942-b5ba-4341-95a9-cb6b167de460, rgb(0, 0, 0))\"},children:[\"Most CRMs are either too complex or too expensive. That\u2019s why we built a \",/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"Q1VTVE9NO0RlZ3VsYXIgVGV4dCBCb2xk\",\"--framer-font-family\":'\"Degular Text Bold\", \"Degular Text Bold Placeholder\", sans-serif'},children:\"lightweight CRM\u2014\"}),\"simple yet powerful\u2014to help you easily manage key business relationships, whether they're with people or companies.\"]})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0RlZ3VsYXIgVGV4dCBSZWd1bGFy\",\"--framer-font-family\":'\"Degular Text Regular\", \"Degular Text Regular Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"23px\",\"--framer-text-color\":\"var(--token-21b87942-b5ba-4341-95a9-cb6b167de460, rgb(0, 0, 0))\"},children:[\"Most CRMs are either too complex or too expensive. That\u2019s why we built a \",/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"Q1VTVE9NO0RlZ3VsYXIgVGV4dCBCb2xk\",\"--framer-font-family\":'\"Degular Text Bold\", \"Degular Text Bold Placeholder\", sans-serif'},children:\"lightweight CRM\u2014\"}),\"simple yet powerful\u2014to help you easily manage key business relationships, whether they're with people or companies.\"]})}),className:\"framer-3udj4h\",fonts:[\"CUSTOM;Degular Text Regular\",\"CUSTOM;Degular Text Bold\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{jtC8vLgen:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0RlZ3VsYXIgVGV4dCBSZWd1bGFy\",\"--framer-font-family\":'\"Degular Text Regular\", \"Degular Text Regular Placeholder\", sans-serif',\"--framer-line-height\":\"18px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-21b87942-b5ba-4341-95a9-cb6b167de460, rgb(0, 0, 0))\"},children:[\"With an integrated\",/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"Q1VTVE9NO0RlZ3VsYXIgVGV4dCBCb2xk\",\"--framer-font-family\":'\"Degular Text Bold\", \"Degular Text Bold Placeholder\", sans-serif'},children:\" Conversations database,\"}),\" you can effortlessly track outreach, reconnect when needed, and customize your CRM as your network grows.\"]})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0RlZ3VsYXIgVGV4dCBSZWd1bGFy\",\"--framer-font-family\":'\"Degular Text Regular\", \"Degular Text Regular Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"23px\",\"--framer-text-color\":\"var(--token-21b87942-b5ba-4341-95a9-cb6b167de460, rgb(0, 0, 0))\"},children:[\"With an integrated\",/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"Q1VTVE9NO0RlZ3VsYXIgVGV4dCBCb2xk\",\"--framer-font-family\":'\"Degular Text Bold\", \"Degular Text Bold Placeholder\", sans-serif'},children:\" Conversations database,\"}),\" you can effortlessly track outreach, reconnect when needed, and customize your CRM as your network grows.\"]})}),className:\"framer-u6xymz\",fonts:[\"CUSTOM;Degular Text Regular\",\"CUSTOM;Degular Text Bold\"],verticalAlignment:\"top\",withExternalLayout:true})})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-htioxk\",\"data-framer-name\":\"Points Whole Wrap\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-fizy1h\",\"data-framer-name\":\"Points One Wrap\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1pr2ono\",\"data-framer-name\":\"Points One\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{jtC8vLgen:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+6797+60+9778.5+30+0+0+0+0+0+0+343.5+0+0+0+0+5),pixelHeight:21,pixelWidth:22,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/O0eRoHPRHXG7AMIFsit5hwmqXU.png\"}},tICWQLge2:{background:{alt:\"\",fit:\"fill\",pixelHeight:21,pixelWidth:22,src:\"https://framerusercontent.com/images/O0eRoHPRHXG7AMIFsit5hwmqXU.png\"}},WSvcEG864:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+5902+90+9731+100+0+0+0+0+0+444+0+0+0+0+9),pixelHeight:21,pixelWidth:22,src:\"https://framerusercontent.com/images/O0eRoHPRHXG7AMIFsit5hwmqXU.png\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+5878+90+9609+100+0+0+0+0+0+434+0+0+0+0+7),pixelHeight:21,pixelWidth:22,src:\"https://framerusercontent.com/images/O0eRoHPRHXG7AMIFsit5hwmqXU.png\"},className:\"framer-8ymhm7\"})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{jtC8vLgen:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0RlZ3VsYXIgVGV4dCBCb2xk\",\"--framer-font-family\":'\"Degular Text Bold\", \"Degular Text Bold Placeholder\", sans-serif',\"--framer-font-size\":\"17px\",\"--framer-line-height\":\"20px\",\"--framer-text-color\":\"var(--token-406ee2a1-9c29-42c5-961e-cfe02a30aaf7, rgb(18, 18, 18))\"},children:\"People\"})})},WSvcEG864:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0RlZ3VsYXIgVGV4dCBCb2xk\",\"--framer-font-family\":'\"Degular Text Bold\", \"Degular Text Bold Placeholder\", sans-serif',\"--framer-font-size\":\"22px\",\"--framer-line-height\":\"28px\",\"--framer-text-color\":\"var(--token-406ee2a1-9c29-42c5-961e-cfe02a30aaf7, rgb(18, 18, 18))\"},children:\"People\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0RlZ3VsYXIgVGV4dCBCb2xk\",\"--framer-font-family\":'\"Degular Text Bold\", \"Degular Text Bold Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-line-height\":\"24px\",\"--framer-text-color\":\"var(--token-406ee2a1-9c29-42c5-961e-cfe02a30aaf7, rgb(18, 18, 18))\"},children:\"People\"})}),className:\"framer-wslsi1\",fonts:[\"CUSTOM;Degular Text Bold\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-vb465k\",\"data-framer-name\":\"Points Text\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{jtC8vLgen:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0RlZ3VsYXIgVGV4dCBSZWd1bGFy\",\"--framer-font-family\":'\"Degular Text Regular\", \"Degular Text Regular Placeholder\", sans-serif',\"--framer-line-height\":\"18px\",\"--framer-text-color\":\"var(--token-406ee2a1-9c29-42c5-961e-cfe02a30aaf7, rgb(18, 18, 18))\"},children:\"Organize key contacts and maintain essential info for both personal and business connections.\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0RlZ3VsYXIgVGV4dCBSZWd1bGFy\",\"--framer-font-family\":'\"Degular Text Regular\", \"Degular Text Regular Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"23px\",\"--framer-text-color\":\"var(--token-406ee2a1-9c29-42c5-961e-cfe02a30aaf7, rgb(18, 18, 18))\"},children:\"Organize key contacts and maintain essential info for both personal and business connections.\"})}),className:\"framer-1qcy3ib\",fonts:[\"CUSTOM;Degular Text Regular\"],verticalAlignment:\"top\",withExternalLayout:true})})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1hjmyo8\",\"data-framer-name\":\"Points Two Wrap\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-flpdzv\",\"data-framer-name\":\"Points Two\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{jtC8vLgen:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+6797+60+9778.5+30+0+0+0+0+0+0+343.5+0+130+0+0+5),pixelHeight:21,pixelWidth:22,src:\"https://framerusercontent.com/images/O0eRoHPRHXG7AMIFsit5hwmqXU.png\"}},tICWQLge2:{background:{alt:\"\",fit:\"fill\",pixelHeight:21,pixelWidth:22,src:\"https://framerusercontent.com/images/O0eRoHPRHXG7AMIFsit5hwmqXU.png\"}},WSvcEG864:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+5902+90+9731+100+0+0+0+0+0+444+0+172+0+0+9),pixelHeight:21,pixelWidth:22,src:\"https://framerusercontent.com/images/O0eRoHPRHXG7AMIFsit5hwmqXU.png\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+5878+90+9609+100+0+0+0+0+0+434+0+168+0+0+7),pixelHeight:21,pixelWidth:22,src:\"https://framerusercontent.com/images/O0eRoHPRHXG7AMIFsit5hwmqXU.png\"},className:\"framer-1nenazc\"})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{jtC8vLgen:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0RlZ3VsYXIgVGV4dCBCb2xk\",\"--framer-font-family\":'\"Degular Text Bold\", \"Degular Text Bold Placeholder\", sans-serif',\"--framer-font-size\":\"17px\",\"--framer-line-height\":\"20px\",\"--framer-text-color\":\"var(--token-406ee2a1-9c29-42c5-961e-cfe02a30aaf7, rgb(18, 18, 18))\"},children:\"Companies\"})})},WSvcEG864:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0RlZ3VsYXIgVGV4dCBCb2xk\",\"--framer-font-family\":'\"Degular Text Bold\", \"Degular Text Bold Placeholder\", sans-serif',\"--framer-font-size\":\"22px\",\"--framer-line-height\":\"28px\",\"--framer-text-color\":\"var(--token-406ee2a1-9c29-42c5-961e-cfe02a30aaf7, rgb(18, 18, 18))\"},children:\"Companies\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0RlZ3VsYXIgVGV4dCBCb2xk\",\"--framer-font-family\":'\"Degular Text Bold\", \"Degular Text Bold Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-line-height\":\"24px\",\"--framer-text-color\":\"var(--token-406ee2a1-9c29-42c5-961e-cfe02a30aaf7, rgb(18, 18, 18))\"},children:\"Companies\"})}),className:\"framer-1kw4zf5\",fonts:[\"CUSTOM;Degular Text Bold\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-14n6r6t\",\"data-framer-name\":\"Points Text\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{jtC8vLgen:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0RlZ3VsYXIgVGV4dCBSZWd1bGFy\",\"--framer-font-family\":'\"Degular Text Regular\", \"Degular Text Regular Placeholder\", sans-serif',\"--framer-line-height\":\"18px\",\"--framer-text-color\":\"var(--token-406ee2a1-9c29-42c5-961e-cfe02a30aaf7, rgb(18, 18, 18))\"},children:\"Keep track of business details and link them to the right people, affiliate commissions, or sponsorships.\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0RlZ3VsYXIgVGV4dCBSZWd1bGFy\",\"--framer-font-family\":'\"Degular Text Regular\", \"Degular Text Regular Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"23px\",\"--framer-text-color\":\"var(--token-406ee2a1-9c29-42c5-961e-cfe02a30aaf7, rgb(18, 18, 18))\"},children:\"Keep track of business details and link them to the right people, affiliate commissions, or sponsorships.\"})}),className:\"framer-9evqhi\",fonts:[\"CUSTOM;Degular Text Regular\"],verticalAlignment:\"top\",withExternalLayout:true})})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1wwc5lm\",\"data-framer-name\":\"Points Three Wrap\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1iavh7d\",\"data-framer-name\":\"Points Two\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{jtC8vLgen:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+6797+60+9778.5+30+0+0+0+0+0+0+343.5+0+260+0+0+5),pixelHeight:21,pixelWidth:22,src:\"https://framerusercontent.com/images/O0eRoHPRHXG7AMIFsit5hwmqXU.png\"}},tICWQLge2:{background:{alt:\"\",fit:\"fill\",pixelHeight:21,pixelWidth:22,src:\"https://framerusercontent.com/images/O0eRoHPRHXG7AMIFsit5hwmqXU.png\"}},WSvcEG864:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+5902+90+9731+100+0+0+0+0+0+444+0+344+0+0+9),pixelHeight:21,pixelWidth:22,src:\"https://framerusercontent.com/images/O0eRoHPRHXG7AMIFsit5hwmqXU.png\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+5878+90+9609+100+0+0+0+0+0+434+0+336+0+0+7),pixelHeight:21,pixelWidth:22,src:\"https://framerusercontent.com/images/O0eRoHPRHXG7AMIFsit5hwmqXU.png\"},className:\"framer-vjdc10\"})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{jtC8vLgen:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0RlZ3VsYXIgVGV4dCBCb2xk\",\"--framer-font-family\":'\"Degular Text Bold\", \"Degular Text Bold Placeholder\", sans-serif',\"--framer-font-size\":\"17px\",\"--framer-line-height\":\"20px\",\"--framer-text-color\":\"var(--token-406ee2a1-9c29-42c5-961e-cfe02a30aaf7, rgb(18, 18, 18))\"},children:\"Conversations\"})})},WSvcEG864:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0RlZ3VsYXIgVGV4dCBCb2xk\",\"--framer-font-family\":'\"Degular Text Bold\", \"Degular Text Bold Placeholder\", sans-serif',\"--framer-font-size\":\"22px\",\"--framer-line-height\":\"28px\",\"--framer-text-color\":\"var(--token-406ee2a1-9c29-42c5-961e-cfe02a30aaf7, rgb(18, 18, 18))\"},children:\"Conversations\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0RlZ3VsYXIgVGV4dCBCb2xk\",\"--framer-font-family\":'\"Degular Text Bold\", \"Degular Text Bold Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-line-height\":\"24px\",\"--framer-text-color\":\"var(--token-406ee2a1-9c29-42c5-961e-cfe02a30aaf7, rgb(18, 18, 18))\"},children:\"Conversations\"})}),className:\"framer-1tov85o\",fonts:[\"CUSTOM;Degular Text Bold\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-beffgk\",\"data-framer-name\":\"Points Text\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{jtC8vLgen:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0RlZ3VsYXIgVGV4dCBSZWd1bGFy\",\"--framer-font-family\":'\"Degular Text Regular\", \"Degular Text Regular Placeholder\", sans-serif',\"--framer-line-height\":\"18px\",\"--framer-text-color\":\"var(--token-406ee2a1-9c29-42c5-961e-cfe02a30aaf7, rgb(18, 18, 18))\"},children:\"Easily start and log interactions with your network, helping you nurture relationships over time.\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0RlZ3VsYXIgVGV4dCBSZWd1bGFy\",\"--framer-font-family\":'\"Degular Text Regular\", \"Degular Text Regular Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"23px\",\"--framer-text-color\":\"var(--token-406ee2a1-9c29-42c5-961e-cfe02a30aaf7, rgb(18, 18, 18))\"},children:\"Easily start and log interactions with your network, helping you nurture relationships over time.\"})}),className:\"framer-10bwrn3\",fonts:[\"CUSTOM;Degular Text Regular\"],verticalAlignment:\"top\",withExternalLayout:true})})})]})]})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-11c61qm\",\"data-framer-name\":\"Image Wrap\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{jtC8vLgen:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+6797+60+9778.5+30+0+0+0+0+738.5+0+0),pixelHeight:1256,pixelWidth:1303,positionX:\"center\",positionY:\"center\",sizes:`min(min(${componentViewport?.width||\"100vw\"} - 40px, 1260px), 655px)`,src:\"https://framerusercontent.com/images/ndq5vxOzV841iwZdGhFuCHI.png\",srcSet:\"https://framerusercontent.com/images/ndq5vxOzV841iwZdGhFuCHI.png?scale-down-to=512 512w,https://framerusercontent.com/images/ndq5vxOzV841iwZdGhFuCHI.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/ndq5vxOzV841iwZdGhFuCHI.png 1303w\"}},tICWQLge2:{background:{alt:\"\",fit:\"fill\",pixelHeight:1256,pixelWidth:1303,sizes:\"650px\",src:\"https://framerusercontent.com/images/ndq5vxOzV841iwZdGhFuCHI.png\",srcSet:\"https://framerusercontent.com/images/ndq5vxOzV841iwZdGhFuCHI.png?scale-down-to=512 512w,https://framerusercontent.com/images/ndq5vxOzV841iwZdGhFuCHI.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/ndq5vxOzV841iwZdGhFuCHI.png 1303w\"}},WSvcEG864:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+5902+90+9731+100+0+0+0+154+0+0),pixelHeight:1256,pixelWidth:1303,sizes:\"650px\",src:\"https://framerusercontent.com/images/ndq5vxOzV841iwZdGhFuCHI.png\",srcSet:\"https://framerusercontent.com/images/ndq5vxOzV841iwZdGhFuCHI.png?scale-down-to=512 512w,https://framerusercontent.com/images/ndq5vxOzV841iwZdGhFuCHI.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/ndq5vxOzV841iwZdGhFuCHI.png 1303w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+5878+90+9609+100+0+0+0+143+0+0),pixelHeight:1256,pixelWidth:1303,sizes:\"650px\",src:\"https://framerusercontent.com/images/ndq5vxOzV841iwZdGhFuCHI.png\",srcSet:\"https://framerusercontent.com/images/ndq5vxOzV841iwZdGhFuCHI.png?scale-down-to=512 512w,https://framerusercontent.com/images/ndq5vxOzV841iwZdGhFuCHI.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/ndq5vxOzV841iwZdGhFuCHI.png 1303w\"},className:\"framer-18cdkro\",\"data-framer-name\":\"Image\"})})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-qthqx6\",\"data-framer-name\":\"Feature Goals\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1mx4aft\",\"data-border\":true,\"data-framer-name\":\"Intro Wrap\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-50hyn6\",\"data-framer-name\":\"Content Wrap\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-vnyll0\",\"data-framer-name\":\"Feed Back \",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{jtC8vLgen:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+6797+60+9778.5+30+0+0+1108.5+0+0+25+0+0+0+0),pixelHeight:58,pixelWidth:79,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/qnPHpRCgU5XVKoX7i5h7jEdkA.png\"}},tICWQLge2:{background:{alt:\"\",fit:\"fill\",pixelHeight:58,pixelWidth:79,src:\"https://framerusercontent.com/images/qnPHpRCgU5XVKoX7i5h7jEdkA.png\"}},WSvcEG864:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+5902+90+9731+100+0+0+984+0+0+40+0+0+0+0),pixelHeight:58,pixelWidth:79,src:\"https://framerusercontent.com/images/qnPHpRCgU5XVKoX7i5h7jEdkA.png\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+5878+90+9609+100+0+0+962+0+0+40+0+0+0+0),pixelHeight:58,pixelWidth:79,src:\"https://framerusercontent.com/images/qnPHpRCgU5XVKoX7i5h7jEdkA.png\"},className:\"framer-1lu8hsy\",\"data-framer-name\":\"Qutos\"})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-amv8wm\",\"data-framer-name\":\"Title Wrap\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{jtC8vLgen:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0RlZ3VsYXIgVGV4dCBSZWd1bGFy\",\"--framer-font-family\":'\"Degular Text Regular\", \"Degular Text Regular Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-letter-spacing\":\"-0.3px\",\"--framer-line-height\":\"120%\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-21b87942-b5ba-4341-95a9-cb6b167de460, rgb(0, 0, 0))\"},children:[/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"Q1VTVE9NO0RlZ3VsYXIgVGV4dCBCb2xk\",\"--framer-font-family\":'\"Degular Text Bold\", \"Degular Text Bold Placeholder\", sans-serif'},children:/*#__PURE__*/_jsxs(\"em\",{children:[/*#__PURE__*/_jsx(\"strong\",{children:\"\\\"I've done outreach sprints quite a bit\"}),\" \"]})}),/*#__PURE__*/_jsx(\"em\",{children:\"(like connecting with 30 people in 30 days), but I like the way you separate conversations from notes \u2013 \"}),/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"Q1VTVE9NO0RlZ3VsYXIgVGV4dCBCb2xk\",\"--framer-font-family\":'\"Degular Text Bold\", \"Degular Text Bold Placeholder\", sans-serif'},children:/*#__PURE__*/_jsx(\"em\",{children:\"it's like a built-in daily connection practice.\\\"\"})})]})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0RlZ3VsYXIgVGV4dCBSZWd1bGFy\",\"--framer-font-family\":'\"Degular Text Regular\", \"Degular Text Regular Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-letter-spacing\":\"-0.3px\",\"--framer-line-height\":\"130%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-21b87942-b5ba-4341-95a9-cb6b167de460, rgb(0, 0, 0))\"},children:[/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"Q1VTVE9NO0RlZ3VsYXIgVGV4dCBCb2xk\",\"--framer-font-family\":'\"Degular Text Bold\", \"Degular Text Bold Placeholder\", sans-serif'},children:/*#__PURE__*/_jsxs(\"em\",{children:[/*#__PURE__*/_jsx(\"strong\",{children:\"\\\"I've done outreach sprints quite a bit\"}),\" \"]})}),/*#__PURE__*/_jsx(\"em\",{children:\"(like connecting with 30 people in 30 days), but I like the way you separate conversations from notes \u2013 \"}),/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"Q1VTVE9NO0RlZ3VsYXIgVGV4dCBCb2xk\",\"--framer-font-family\":'\"Degular Text Bold\", \"Degular Text Bold Placeholder\", sans-serif'},children:/*#__PURE__*/_jsx(\"em\",{children:\"it's like a built-in daily connection practice.\\\"\"})})]})}),className:\"framer-1i3p74n\",fonts:[\"CUSTOM;Degular Text Regular\",\"CUSTOM;Degular Text Bold\"],verticalAlignment:\"top\",withExternalLayout:true})})})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1efkruc\",\"data-framer-name\":\"Feed Back Image\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-w116bq\",\"data-framer-name\":\"Name Wrap\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-13jqfnf\",\"data-framer-name\":\"Intro Name\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{jtC8vLgen:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+6797+60+9778.5+30+0+0+1108.5+0+0+25+0+175+0+0+1),pixelHeight:120,pixelWidth:112,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/qar1kwyWAh94i8RBCTzeLHQq5Os.jpg\"}},tICWQLge2:{background:{alt:\"\",fit:\"fill\",pixelHeight:120,pixelWidth:112,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/qar1kwyWAh94i8RBCTzeLHQq5Os.jpg\"}},WSvcEG864:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+5902+90+9731+100+0+0+984+0+0+40+0+227+0+0+2),pixelHeight:120,pixelWidth:112,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/qar1kwyWAh94i8RBCTzeLHQq5Os.jpg\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+5878+90+9609+100+0+0+962+0+0+40+0+227+0+0+2),pixelHeight:120,pixelWidth:112,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/qar1kwyWAh94i8RBCTzeLHQq5Os.jpg\"},className:\"framer-yaur30\"})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-rqbud5\",\"data-framer-name\":\"Name\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{jtC8vLgen:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0RlZ3VsYXIgVGV4dCBCb2xk\",\"--framer-font-family\":'\"Degular Text Bold\", \"Degular Text Bold Placeholder\", sans-serif',\"--framer-line-height\":\"22px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-406ee2a1-9c29-42c5-961e-cfe02a30aaf7, rgb(18, 18, 18))\"},children:\"Cecilia Bratt\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0RlZ3VsYXIgVGV4dCBCb2xk\",\"--framer-font-family\":'\"Degular Text Bold\", \"Degular Text Bold Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"22px\",\"--framer-text-color\":\"var(--token-406ee2a1-9c29-42c5-961e-cfe02a30aaf7, rgb(18, 18, 18))\"},children:\"Cecilia Bratt\"})}),className:\"framer-p25yd8\",fonts:[\"CUSTOM;Degular Text Bold\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{jtC8vLgen:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0RlZ3VsYXIgVGV4dCBSZWd1bGFy\",\"--framer-font-family\":'\"Degular Text Regular\", \"Degular Text Regular Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-line-height\":\"16px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-406ee2a1-9c29-42c5-961e-cfe02a30aaf7, rgb(18, 18, 18))\"},children:\"Marketing Coach\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0RlZ3VsYXIgVGV4dCBSZWd1bGFy\",\"--framer-font-family\":'\"Degular Text Regular\", \"Degular Text Regular Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-line-height\":\"16px\",\"--framer-text-color\":\"var(--token-406ee2a1-9c29-42c5-961e-cfe02a30aaf7, rgb(18, 18, 18))\"},children:\"Marketing Coach\"})}),className:\"framer-1873pj8\",fonts:[\"CUSTOM;Degular Text Regular\"],verticalAlignment:\"top\",withExternalLayout:true})})]})]})})]})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-aou0rj\",\"data-framer-name\":\"Button Wrap  Wrap\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{jtC8vLgen:{width:`min(min(min(${componentViewport?.width||\"100vw\"} - 40px, 1260px), 900px), 365px)`,y:(componentViewport?.y||0)+0+6797+60+9778.5+30+0+0+1108.5+0+295+0+0},tICWQLge2:{y:undefined},WSvcEG864:{y:(componentViewport?.y||0)+0+5902+90+9731+100+0+0+984+0+415+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:73,width:\"364px\",y:(componentViewport?.y||0)+0+5878+90+9609+100+0+0+962+0+415+0+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-upy9io-container\",isModuleExternal:true,nodeId:\"vSzoA43rz\",scopeId:\"OMp430bgy\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{jtC8vLgen:{variant:\"lbE2C1YKC\"}},children:/*#__PURE__*/_jsx(BannerButton,{height:\"100%\",i9h0tMlqE:\"https://store.creatorscience.com/buy/28aeab8d-5b53-4840-9055-080794014e8b\",id:\"vSzoA43rz\",layoutId:\"vSzoA43rz\",style:{width:\"100%\"},variant:\"fdB6OMGxz\",width:\"100%\"})})})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-lwt6n7\",\"data-framer-name\":\"Prcing Text\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{jtC8vLgen:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7U3BhY2UgTW9uby1yZWd1bGFy\",\"--framer-font-family\":'\"Space Mono\", monospace',\"--framer-font-size\":\"12px\",\"--framer-letter-spacing\":\"0.65px\",\"--framer-line-height\":\"13px\",\"--framer-text-color\":\"var(--token-ead53e59-221f-4b46-951f-2920018f76b7, rgb(30, 30, 30))\",\"--framer-text-transform\":\"uppercase\"},children:\"lifetime access for $297\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7U3BhY2UgTW9uby1yZWd1bGFy\",\"--framer-font-family\":'\"Space Mono\", monospace',\"--framer-font-size\":\"13px\",\"--framer-letter-spacing\":\"0.65px\",\"--framer-line-height\":\"13px\",\"--framer-text-color\":\"var(--token-ead53e59-221f-4b46-951f-2920018f76b7, rgb(30, 30, 30))\",\"--framer-text-transform\":\"uppercase\"},children:\"lifetime access for $297\"})}),className:\"framer-1g21uth\",fonts:[\"GF;Space Mono-regular\"],verticalAlignment:\"top\",withExternalLayout:true})})})]})]})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1s3hkd0\",\"data-framer-name\":\"Seprator\"})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-25gri7\",\"data-framer-name\":\"Feature Seven\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-hwtf6s\",\"data-framer-name\":\"Container\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-83vese\",\"data-framer-name\":\"Feature Content\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-60cnpp\",\"data-framer-name\":\"Feature Content one\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1u3nqev\",\"data-framer-name\":\"Title Whole Wrap\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-k17dzp\",\"data-framer-name\":\"Title Wrap\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{jtC8vLgen:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7U3BhY2UgTW9uby03MDA=\",\"--framer-font-family\":'\"Space Mono\", monospace',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.3px\",\"--framer-line-height\":\"105%\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-d1f6ecfd-2abf-4418-8a05-8920186c6135, rgb(0, 97, 255))\",\"--framer-text-transform\":\"uppercase\"},children:\"7. Standard Operating Procedures\"})})},WSvcEG864:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7U3BhY2UgTW9uby03MDA=\",\"--framer-font-family\":'\"Space Mono\", monospace',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"18px\",\"--framer-text-color\":\"var(--token-d1f6ecfd-2abf-4418-8a05-8920186c6135, rgb(0, 97, 255))\",\"--framer-text-transform\":\"uppercase\"},children:\"7. Standard Operating Procedures\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7U3BhY2UgTW9uby03MDA=\",\"--framer-font-family\":'\"Space Mono\", monospace',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"0.01em\",\"--framer-line-height\":\"18px\",\"--framer-text-color\":\"var(--token-d1f6ecfd-2abf-4418-8a05-8920186c6135, rgb(0, 97, 255))\",\"--framer-text-transform\":\"uppercase\"},children:\"7. Standard Operating Procedures\"})}),className:\"framer-19zuyq7\",fonts:[\"GF;Space Mono-700\"],verticalAlignment:\"top\",withExternalLayout:true})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-uvsl2g\",\"data-framer-name\":\"Heading Wrap\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{jtC8vLgen:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"Q1VTVE9NO0RlZ3VsYXIgVGV4dCBCb2xk\",\"--framer-font-family\":'\"Degular Text Bold\", \"Degular Text Bold Placeholder\", sans-serif',\"--framer-font-size\":\"25px\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"30px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-406ee2a1-9c29-42c5-961e-cfe02a30aaf7, rgb(18, 18, 18))\"},children:\"Delegate easily with built-in SOPs\"})})},WSvcEG864:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"Q1VTVE9NO0RlZ3VsYXIgVGV4dCBCb2xk\",\"--framer-font-family\":'\"Degular Text Bold\", \"Degular Text Bold Placeholder\", sans-serif',\"--framer-font-size\":\"46px\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"50px\",\"--framer-text-color\":\"var(--token-406ee2a1-9c29-42c5-961e-cfe02a30aaf7, rgb(18, 18, 18))\"},children:\"Delegate easily with built-in SOPs\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"Q1VTVE9NO0RlZ3VsYXIgVGV4dCBCb2xk\",\"--framer-font-family\":'\"Degular Text Bold\", \"Degular Text Bold Placeholder\", sans-serif',\"--framer-font-size\":\"35px\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"40px\",\"--framer-text-color\":\"var(--token-406ee2a1-9c29-42c5-961e-cfe02a30aaf7, rgb(18, 18, 18))\"},children:\"Delegate easily with built-in SOPs\"})}),className:\"framer-lpjgdw\",fonts:[\"CUSTOM;Degular Text Bold\"],verticalAlignment:\"top\",withExternalLayout:true})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-g82wi1\",\"data-framer-name\":\"Content Wrap\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{jtC8vLgen:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0RlZ3VsYXIgVGV4dCBSZWd1bGFy\",\"--framer-font-family\":'\"Degular Text Regular\", \"Degular Text Regular Placeholder\", sans-serif',\"--framer-line-height\":\"18px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-406ee2a1-9c29-42c5-961e-cfe02a30aaf7, rgb(18, 18, 18))\"},children:\"As you grow, it becomes imperative that you learn to delegate. CreatorHQ makes it easy to document your processes in Standard Operating Procedures (SOPs) to share with your team.\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0RlZ3VsYXIgVGV4dCBSZWd1bGFy\",\"--framer-font-family\":'\"Degular Text Regular\", \"Degular Text Regular Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"23px\",\"--framer-text-color\":\"var(--token-406ee2a1-9c29-42c5-961e-cfe02a30aaf7, rgb(18, 18, 18))\"},children:\"As you grow, it becomes imperative that you learn to delegate. CreatorHQ makes it easy to document your processes in Standard Operating Procedures (SOPs) to share with your team.\"})}),className:\"framer-1o9mvw5\",fonts:[\"CUSTOM;Degular Text Regular\"],verticalAlignment:\"top\",withExternalLayout:true})})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-183m5pi\",\"data-framer-name\":\"Points Whole Wrap\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-5a03mm\",\"data-framer-name\":\"Points One Wrap\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-14gvoa3\",\"data-framer-name\":\"Points One\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{jtC8vLgen:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+6797+60+11339+30+0+0+0+0+0+243.5+0+0+0+0+5),pixelHeight:21,pixelWidth:22,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/O0eRoHPRHXG7AMIFsit5hwmqXU.png\"}},tICWQLge2:{background:{alt:\"\",fit:\"fill\",pixelHeight:21,pixelWidth:22,src:\"https://framerusercontent.com/images/O0eRoHPRHXG7AMIFsit5hwmqXU.png\"}},WSvcEG864:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+5902+90+11427+100+0+0+0+0+0+351+0+0+0+0+9),pixelHeight:21,pixelWidth:22,src:\"https://framerusercontent.com/images/O0eRoHPRHXG7AMIFsit5hwmqXU.png\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+5878+90+11283+100+0+0+0+0+0+341+0+0+0+0+7),pixelHeight:21,pixelWidth:22,src:\"https://framerusercontent.com/images/O0eRoHPRHXG7AMIFsit5hwmqXU.png\"},className:\"framer-n0xw8g\"})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{jtC8vLgen:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0RlZ3VsYXIgVGV4dCBCb2xk\",\"--framer-font-family\":'\"Degular Text Bold\", \"Degular Text Bold Placeholder\", sans-serif',\"--framer-font-size\":\"17px\",\"--framer-line-height\":\"20px\",\"--framer-text-color\":\"var(--token-406ee2a1-9c29-42c5-961e-cfe02a30aaf7, rgb(18, 18, 18))\"},children:\"Centralize all your SOPs\"})})},WSvcEG864:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0RlZ3VsYXIgVGV4dCBCb2xk\",\"--framer-font-family\":'\"Degular Text Bold\", \"Degular Text Bold Placeholder\", sans-serif',\"--framer-font-size\":\"22px\",\"--framer-line-height\":\"28px\",\"--framer-text-color\":\"var(--token-406ee2a1-9c29-42c5-961e-cfe02a30aaf7, rgb(18, 18, 18))\"},children:\"Centralize all your SOPs\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0RlZ3VsYXIgVGV4dCBCb2xk\",\"--framer-font-family\":'\"Degular Text Bold\", \"Degular Text Bold Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-line-height\":\"24px\",\"--framer-text-color\":\"var(--token-406ee2a1-9c29-42c5-961e-cfe02a30aaf7, rgb(18, 18, 18))\"},children:\"Centralize all your SOPs\"})}),className:\"framer-1thvua7\",fonts:[\"CUSTOM;Degular Text Bold\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-185pj40\",\"data-framer-name\":\"Points Text\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{jtC8vLgen:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0RlZ3VsYXIgVGV4dCBSZWd1bGFy\",\"--framer-font-family\":'\"Degular Text Regular\", \"Degular Text Regular Placeholder\", sans-serif',\"--framer-line-height\":\"18px\",\"--framer-text-color\":\"var(--token-406ee2a1-9c29-42c5-961e-cfe02a30aaf7, rgb(18, 18, 18))\"},children:\"Our SOP database acts as a growing instruction manual for your entire business.\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0RlZ3VsYXIgVGV4dCBSZWd1bGFy\",\"--framer-font-family\":'\"Degular Text Regular\", \"Degular Text Regular Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"23px\",\"--framer-text-color\":\"var(--token-406ee2a1-9c29-42c5-961e-cfe02a30aaf7, rgb(18, 18, 18))\"},children:\"Our SOP database acts as a growing instruction manual for your entire business.\"})}),className:\"framer-1dul9l8\",fonts:[\"CUSTOM;Degular Text Regular\"],verticalAlignment:\"top\",withExternalLayout:true})})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-189kyol\",\"data-framer-name\":\"Points Two Wrap\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1n2kvl9\",\"data-framer-name\":\"Points Two\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{jtC8vLgen:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+6797+60+11339+30+0+0+0+0+0+243.5+0+130+0+0+5),pixelHeight:21,pixelWidth:22,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/O0eRoHPRHXG7AMIFsit5hwmqXU.png\"}},tICWQLge2:{background:{alt:\"\",fit:\"fill\",pixelHeight:21,pixelWidth:22,src:\"https://framerusercontent.com/images/O0eRoHPRHXG7AMIFsit5hwmqXU.png\"}},WSvcEG864:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+5902+90+11427+100+0+0+0+0+0+351+0+0+0+0+9),pixelHeight:21,pixelWidth:22,src:\"https://framerusercontent.com/images/O0eRoHPRHXG7AMIFsit5hwmqXU.png\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+5878+90+11283+100+0+0+0+0+0+341+0+0+0+0+7),pixelHeight:21,pixelWidth:22,src:\"https://framerusercontent.com/images/O0eRoHPRHXG7AMIFsit5hwmqXU.png\"},className:\"framer-1xhz308\"})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{jtC8vLgen:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0RlZ3VsYXIgVGV4dCBCb2xk\",\"--framer-font-family\":'\"Degular Text Bold\", \"Degular Text Bold Placeholder\", sans-serif',\"--framer-font-size\":\"17px\",\"--framer-line-height\":\"20px\",\"--framer-text-color\":\"var(--token-406ee2a1-9c29-42c5-961e-cfe02a30aaf7, rgb(18, 18, 18))\"},children:\"Quickly capture in video\"})})},WSvcEG864:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0RlZ3VsYXIgVGV4dCBCb2xk\",\"--framer-font-family\":'\"Degular Text Bold\", \"Degular Text Bold Placeholder\", sans-serif',\"--framer-font-size\":\"22px\",\"--framer-line-height\":\"28px\",\"--framer-text-color\":\"var(--token-406ee2a1-9c29-42c5-961e-cfe02a30aaf7, rgb(18, 18, 18))\"},children:\"Quickly capture in video\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0RlZ3VsYXIgVGV4dCBCb2xk\",\"--framer-font-family\":'\"Degular Text Bold\", \"Degular Text Bold Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-line-height\":\"24px\",\"--framer-text-color\":\"var(--token-406ee2a1-9c29-42c5-961e-cfe02a30aaf7, rgb(18, 18, 18))\"},children:\"Quickly capture in video\"})}),className:\"framer-kmqhok\",fonts:[\"CUSTOM;Degular Text Bold\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-qyd57b\",\"data-framer-name\":\"Points Text\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{jtC8vLgen:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0RlZ3VsYXIgVGV4dCBSZWd1bGFy\",\"--framer-font-family\":'\"Degular Text Regular\", \"Degular Text Regular Placeholder\", sans-serif',\"--framer-line-height\":\"18px\",\"--framer-text-color\":\"var(--token-406ee2a1-9c29-42c5-961e-cfe02a30aaf7, rgb(18, 18, 18))\"},children:\"Simply capture a video or screencapture using Tella or Loom and embed directly into CreatorHQ.\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0RlZ3VsYXIgVGV4dCBSZWd1bGFy\",\"--framer-font-family\":'\"Degular Text Regular\", \"Degular Text Regular Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"23px\",\"--framer-text-color\":\"var(--token-406ee2a1-9c29-42c5-961e-cfe02a30aaf7, rgb(18, 18, 18))\"},children:\"Simply capture a video or screencapture using Tella or Loom and embed directly into CreatorHQ.\"})}),className:\"framer-qgtirk\",fonts:[\"CUSTOM;Degular Text Regular\"],verticalAlignment:\"top\",withExternalLayout:true})})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-19ogmly\",\"data-framer-name\":\"Points Three Wrap\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-emgo27\",\"data-framer-name\":\"Points Two\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{jtC8vLgen:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+6797+60+11339+30+0+0+0+0+0+243.5+0+260+0+0+5),pixelHeight:21,pixelWidth:22,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/O0eRoHPRHXG7AMIFsit5hwmqXU.png\"}},tICWQLge2:{background:{alt:\"\",fit:\"fill\",pixelHeight:21,pixelWidth:22,src:\"https://framerusercontent.com/images/O0eRoHPRHXG7AMIFsit5hwmqXU.png\"}},WSvcEG864:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+5902+90+11427+100+0+0+0+0+0+351+0+0+0+0+9),pixelHeight:21,pixelWidth:22,src:\"https://framerusercontent.com/images/O0eRoHPRHXG7AMIFsit5hwmqXU.png\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+5878+90+11283+100+0+0+0+0+0+341+0+0+0+0+7),pixelHeight:21,pixelWidth:22,src:\"https://framerusercontent.com/images/O0eRoHPRHXG7AMIFsit5hwmqXU.png\"},className:\"framer-1pd46rc\"})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{jtC8vLgen:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0RlZ3VsYXIgVGV4dCBCb2xk\",\"--framer-font-family\":'\"Degular Text Bold\", \"Degular Text Bold Placeholder\", sans-serif',\"--framer-font-size\":\"17px\",\"--framer-line-height\":\"20px\",\"--framer-text-color\":\"var(--token-406ee2a1-9c29-42c5-961e-cfe02a30aaf7, rgb(18, 18, 18))\"},children:\"Find SOPs with ease\"})})},WSvcEG864:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0RlZ3VsYXIgVGV4dCBCb2xk\",\"--framer-font-family\":'\"Degular Text Bold\", \"Degular Text Bold Placeholder\", sans-serif',\"--framer-font-size\":\"22px\",\"--framer-line-height\":\"28px\",\"--framer-text-color\":\"var(--token-406ee2a1-9c29-42c5-961e-cfe02a30aaf7, rgb(18, 18, 18))\"},children:\"Find SOPs with ease\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0RlZ3VsYXIgVGV4dCBCb2xk\",\"--framer-font-family\":'\"Degular Text Bold\", \"Degular Text Bold Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-line-height\":\"24px\",\"--framer-text-color\":\"var(--token-406ee2a1-9c29-42c5-961e-cfe02a30aaf7, rgb(18, 18, 18))\"},children:\"Find SOPs with ease\"})}),className:\"framer-1ds9sil\",fonts:[\"CUSTOM;Degular Text Bold\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-jpgcig\",\"data-framer-name\":\"Points Text\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{jtC8vLgen:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0RlZ3VsYXIgVGV4dCBSZWd1bGFy\",\"--framer-font-family\":'\"Degular Text Regular\", \"Degular Text Regular Placeholder\", sans-serif',\"--framer-line-height\":\"18px\",\"--framer-text-color\":\"var(--token-406ee2a1-9c29-42c5-961e-cfe02a30aaf7, rgb(18, 18, 18))\"},children:\"Search SOPs by function or software, making delegation and training seamless.\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0RlZ3VsYXIgVGV4dCBSZWd1bGFy\",\"--framer-font-family\":'\"Degular Text Regular\", \"Degular Text Regular Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"23px\",\"--framer-text-color\":\"var(--token-406ee2a1-9c29-42c5-961e-cfe02a30aaf7, rgb(18, 18, 18))\"},children:\"Search SOPs by function or software, making delegation and training seamless.\"})}),className:\"framer-1mh1h11\",fonts:[\"CUSTOM;Degular Text Regular\"],verticalAlignment:\"top\",withExternalLayout:true})})})]})]})]})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1vvv31h\",\"data-framer-name\":\"Image Wrap\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{jtC8vLgen:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+6797+60+11339+30+0+0+648.5+0),pixelHeight:1616,pixelWidth:2721,sizes:`min(min(${componentViewport?.width||\"100vw\"} - 40px, 1260px), 350px)`,src:\"https://framerusercontent.com/images/e7FBz36yjOqnP2Ackn0JI94gOg.png\",srcSet:\"https://framerusercontent.com/images/e7FBz36yjOqnP2Ackn0JI94gOg.png?scale-down-to=512 512w,https://framerusercontent.com/images/e7FBz36yjOqnP2Ackn0JI94gOg.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/e7FBz36yjOqnP2Ackn0JI94gOg.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/e7FBz36yjOqnP2Ackn0JI94gOg.png 2721w\"}},tICWQLge2:{background:{alt:\"\",fit:\"fit\",pixelHeight:1616,pixelWidth:2721,positionX:\"center\",positionY:\"center\",sizes:\"750px\",src:\"https://framerusercontent.com/images/e7FBz36yjOqnP2Ackn0JI94gOg.png\",srcSet:\"https://framerusercontent.com/images/e7FBz36yjOqnP2Ackn0JI94gOg.png?scale-down-to=512 512w,https://framerusercontent.com/images/e7FBz36yjOqnP2Ackn0JI94gOg.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/e7FBz36yjOqnP2Ackn0JI94gOg.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/e7FBz36yjOqnP2Ackn0JI94gOg.png 2721w\"}},WSvcEG864:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+5902+90+11427+100+0+0+563+0),pixelHeight:1616,pixelWidth:2721,sizes:`min(${componentViewport?.width||\"100vw\"}, 1260px)`,src:\"https://framerusercontent.com/images/e7FBz36yjOqnP2Ackn0JI94gOg.png\",srcSet:\"https://framerusercontent.com/images/e7FBz36yjOqnP2Ackn0JI94gOg.png?scale-down-to=512 512w,https://framerusercontent.com/images/e7FBz36yjOqnP2Ackn0JI94gOg.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/e7FBz36yjOqnP2Ackn0JI94gOg.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/e7FBz36yjOqnP2Ackn0JI94gOg.png 2721w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+5878+90+11283+100+0+0+549+0),pixelHeight:1616,pixelWidth:2721,sizes:`min(${componentViewport?.width||\"100vw\"}, 1260px)`,src:\"https://framerusercontent.com/images/e7FBz36yjOqnP2Ackn0JI94gOg.png\",srcSet:\"https://framerusercontent.com/images/e7FBz36yjOqnP2Ackn0JI94gOg.png?scale-down-to=512 512w,https://framerusercontent.com/images/e7FBz36yjOqnP2Ackn0JI94gOg.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/e7FBz36yjOqnP2Ackn0JI94gOg.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/e7FBz36yjOqnP2Ackn0JI94gOg.png 2721w\"},className:\"framer-17d4l10\",\"data-framer-name\":\"Image\"})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-165cwb5\",\"data-framer-name\":\"Feature Goals Wrap\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1f3wgf2\",\"data-framer-name\":\"Feature Goals\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1qfdh3r\",\"data-border\":true,\"data-framer-name\":\"Intro Wrap\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1w1zsst\",\"data-framer-name\":\"Content Wrap\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-b86aa8\",\"data-framer-name\":\"Feed Back \",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{jtC8vLgen:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+6797+60+11339+30+0+0+885.5+0+0+0+25+0+0+0+0),pixelHeight:58,pixelWidth:79,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/qnPHpRCgU5XVKoX7i5h7jEdkA.png\"}},tICWQLge2:{background:{alt:\"\",fit:\"fill\",pixelHeight:58,pixelWidth:79,src:\"https://framerusercontent.com/images/qnPHpRCgU5XVKoX7i5h7jEdkA.png\"}},WSvcEG864:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+5902+90+11427+100+0+0+1435+16+0+0+40+0+0+0+0),pixelHeight:58,pixelWidth:79,src:\"https://framerusercontent.com/images/qnPHpRCgU5XVKoX7i5h7jEdkA.png\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+5878+90+11283+100+0+0+1421+16+0+0+40+0+0+0+0),pixelHeight:58,pixelWidth:79,src:\"https://framerusercontent.com/images/qnPHpRCgU5XVKoX7i5h7jEdkA.png\"},className:\"framer-1ydzamk\",\"data-framer-name\":\"Qutos\"})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-sz9v10\",\"data-framer-name\":\"Title Wrap\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{jtC8vLgen:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0RlZ3VsYXIgVGV4dCBSZWd1bGFy\",\"--framer-font-family\":'\"Degular Text Regular\", \"Degular Text Regular Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-letter-spacing\":\"-0.3px\",\"--framer-line-height\":\"120%\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-21b87942-b5ba-4341-95a9-cb6b167de460, rgb(0, 0, 0))\"},children:[/*#__PURE__*/_jsx(\"em\",{children:'\"CreatorHQ has been a '}),/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"Q1VTVE9NO0RlZ3VsYXIgVGV4dCBCb2xk\",\"--framer-font-family\":'\"Degular Text Bold\", \"Degular Text Bold Placeholder\", sans-serif'},children:/*#__PURE__*/_jsx(\"em\",{children:\"game changer for my creator business\"})}),/*#__PURE__*/_jsx(\"em\",{children:\". I was struggling to stay organized and be effective with my time. After implementing CreatorHQ, I now have a much better understanding of where and how to \"}),/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"Q1VTVE9NO0RlZ3VsYXIgVGV4dCBCb2xk\",\"--framer-font-family\":'\"Degular Text Bold\", \"Degular Text Bold Placeholder\", sans-serif'},children:/*#__PURE__*/_jsx(\"em\",{children:\"spend my time effectively\"})}),/*#__PURE__*/_jsx(\"em\",{children:\". It's completely changed how I approach content and has me thinking much more strategically about my business. Purchasing CreatorHQ was a great investment!\\\"\"})]})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0RlZ3VsYXIgVGV4dCBSZWd1bGFy\",\"--framer-font-family\":'\"Degular Text Regular\", \"Degular Text Regular Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-letter-spacing\":\"-0.3px\",\"--framer-line-height\":\"130%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-21b87942-b5ba-4341-95a9-cb6b167de460, rgb(0, 0, 0))\"},children:[/*#__PURE__*/_jsx(\"em\",{children:'\"CreatorHQ has been a '}),/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"Q1VTVE9NO0RlZ3VsYXIgVGV4dCBCb2xk\",\"--framer-font-family\":'\"Degular Text Bold\", \"Degular Text Bold Placeholder\", sans-serif'},children:/*#__PURE__*/_jsx(\"em\",{children:\"game changer for my creator business\"})}),/*#__PURE__*/_jsx(\"em\",{children:\". I was struggling to stay organized and be effective with my time. After implementing CreatorHQ, I now have a much better understanding of where and how to \"}),/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"Q1VTVE9NO0RlZ3VsYXIgVGV4dCBCb2xk\",\"--framer-font-family\":'\"Degular Text Bold\", \"Degular Text Bold Placeholder\", sans-serif'},children:/*#__PURE__*/_jsx(\"em\",{children:\"spend my time effectively\"})}),/*#__PURE__*/_jsx(\"em\",{children:\". It's completely changed how I approach content and has me thinking much more strategically about my business. Purchasing CreatorHQ was a great investment!\\\"\"})]})}),className:\"framer-1xcfhkj\",fonts:[\"CUSTOM;Degular Text Regular\",\"CUSTOM;Degular Text Bold\"],verticalAlignment:\"top\",withExternalLayout:true})})})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1g9foo4\",\"data-framer-name\":\"Feed Back Image\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-zevqis\",\"data-framer-name\":\"Name Wrap\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-h1uwlv\",\"data-framer-name\":\"Intro Name\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{jtC8vLgen:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+6797+60+11339+30+0+0+885.5+0+0+0+25+0+175+0+0+1),pixelHeight:120,pixelWidth:113,positionX:\"left\",positionY:\"top\",src:\"https://framerusercontent.com/images/vnYbAmUNltS9UpY3lqP2KfsvbM.png\"}},tICWQLge2:{background:{alt:\"\",fit:\"fill\",pixelHeight:120,pixelWidth:113,positionX:\"left\",positionY:\"top\",src:\"https://framerusercontent.com/images/vnYbAmUNltS9UpY3lqP2KfsvbM.png\"}},WSvcEG864:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+5902+90+11427+100+0+0+1435+16+0+0+40+0+228+0+0+2),pixelHeight:120,pixelWidth:113,positionX:\"left\",positionY:\"top\",src:\"https://framerusercontent.com/images/vnYbAmUNltS9UpY3lqP2KfsvbM.png\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+5878+90+11283+100+0+0+1421+16+0+0+40+0+228+0+0+2),pixelHeight:120,pixelWidth:113,positionX:\"left\",positionY:\"top\",src:\"https://framerusercontent.com/images/vnYbAmUNltS9UpY3lqP2KfsvbM.png\"},className:\"framer-1glapzg\"})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-c3t35y\",\"data-framer-name\":\"Name\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{jtC8vLgen:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0RlZ3VsYXIgVGV4dCBCb2xk\",\"--framer-font-family\":'\"Degular Text Bold\", \"Degular Text Bold Placeholder\", sans-serif',\"--framer-line-height\":\"22px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-406ee2a1-9c29-42c5-961e-cfe02a30aaf7, rgb(18, 18, 18))\"},children:\"Matt Beglinger\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0RlZ3VsYXIgVGV4dCBCb2xk\",\"--framer-font-family\":'\"Degular Text Bold\", \"Degular Text Bold Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"22px\",\"--framer-text-color\":\"var(--token-406ee2a1-9c29-42c5-961e-cfe02a30aaf7, rgb(18, 18, 18))\"},children:\"Matt Beglinger\"})}),className:\"framer-1l9wlt7\",fonts:[\"CUSTOM;Degular Text Bold\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{jtC8vLgen:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0RlZ3VsYXIgVGV4dCBSZWd1bGFy\",\"--framer-font-family\":'\"Degular Text Regular\", \"Degular Text Regular Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-line-height\":\"16px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-406ee2a1-9c29-42c5-961e-cfe02a30aaf7, rgb(18, 18, 18))\"},children:\"Captain at Job Pirate\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0RlZ3VsYXIgVGV4dCBSZWd1bGFy\",\"--framer-font-family\":'\"Degular Text Regular\", \"Degular Text Regular Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-line-height\":\"16px\",\"--framer-text-color\":\"var(--token-406ee2a1-9c29-42c5-961e-cfe02a30aaf7, rgb(18, 18, 18))\"},children:\"Captain at Job Pirate\"})}),className:\"framer-75byug\",fonts:[\"CUSTOM;Degular Text Regular\"],verticalAlignment:\"top\",withExternalLayout:true})})]})]})})]})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-6wlw6c\",\"data-framer-name\":\"Button Wrap  Wrap\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{jtC8vLgen:{width:`min(min(max(min(${componentViewport?.width||\"100vw\"} - 40px, 1260px), 1px), 900px), 365px)`,y:(componentViewport?.y||0)+0+6797+60+11339+30+0+0+885.5+0+0+295+0+0},tICWQLge2:{y:undefined},WSvcEG864:{y:(componentViewport?.y||0)+0+5902+90+11427+100+0+0+1435+16+0+416+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:73,width:\"364px\",y:(componentViewport?.y||0)+0+5878+90+11283+100+0+0+1421+16+0+416+0+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1g73k0-container\",isModuleExternal:true,nodeId:\"gqo9xWBMc\",scopeId:\"OMp430bgy\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{jtC8vLgen:{variant:\"lbE2C1YKC\"}},children:/*#__PURE__*/_jsx(BannerButton,{height:\"100%\",i9h0tMlqE:\"https://store.creatorscience.com/buy/28aeab8d-5b53-4840-9055-080794014e8b\",id:\"gqo9xWBMc\",layoutId:\"gqo9xWBMc\",style:{width:\"100%\"},variant:\"fdB6OMGxz\",width:\"100%\"})})})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-p1o857\",\"data-framer-name\":\"Prcing Text\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{jtC8vLgen:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7U3BhY2UgTW9uby1yZWd1bGFy\",\"--framer-font-family\":'\"Space Mono\", monospace',\"--framer-font-size\":\"12px\",\"--framer-letter-spacing\":\"0.65px\",\"--framer-line-height\":\"13px\",\"--framer-text-color\":\"var(--token-ead53e59-221f-4b46-951f-2920018f76b7, rgb(30, 30, 30))\",\"--framer-text-transform\":\"uppercase\"},children:\"lifetime access for $297\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7U3BhY2UgTW9uby1yZWd1bGFy\",\"--framer-font-family\":'\"Space Mono\", monospace',\"--framer-font-size\":\"13px\",\"--framer-letter-spacing\":\"0.65px\",\"--framer-line-height\":\"13px\",\"--framer-text-color\":\"var(--token-ead53e59-221f-4b46-951f-2920018f76b7, rgb(30, 30, 30))\",\"--framer-text-transform\":\"uppercase\"},children:\"lifetime access for $297\"})}),className:\"framer-dtx2vs\",fonts:[\"GF;Space Mono-regular\"],verticalAlignment:\"top\",withExternalLayout:true})})})]})]})})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1v9ws0h\",\"data-framer-name\":\"Seprator\"})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1c3pyx\",\"data-framer-name\":\"Feature Eight\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-h9vykg\",\"data-framer-name\":\"Container\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-17a5cg9\",\"data-framer-name\":\"Feature Content\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1w1h1d5\",\"data-framer-name\":\"Feature Content one\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-147yf44\",\"data-framer-name\":\"Title Whole Wrap\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-9smev7\",\"data-framer-name\":\"Title Wrap\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{jtC8vLgen:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7U3BhY2UgTW9uby03MDA=\",\"--framer-font-family\":'\"Space Mono\", monospace',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.3px\",\"--framer-line-height\":\"105%\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-d1f6ecfd-2abf-4418-8a05-8920186c6135, rgb(0, 97, 255))\",\"--framer-text-transform\":\"uppercase\"},children:\"8. keep track of revenue\"})})},WSvcEG864:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7U3BhY2UgTW9uby03MDA=\",\"--framer-font-family\":'\"Space Mono\", monospace',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"18px\",\"--framer-text-color\":\"var(--token-d1f6ecfd-2abf-4418-8a05-8920186c6135, rgb(0, 97, 255))\",\"--framer-text-transform\":\"uppercase\"},children:\"8. keep track of revenue\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7U3BhY2UgTW9uby03MDA=\",\"--framer-font-family\":'\"Space Mono\", monospace',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"0.01em\",\"--framer-line-height\":\"18px\",\"--framer-text-color\":\"var(--token-d1f6ecfd-2abf-4418-8a05-8920186c6135, rgb(0, 97, 255))\",\"--framer-text-transform\":\"uppercase\"},children:\"8. keep track of revenue\"})}),className:\"framer-1qzwcxk\",fonts:[\"GF;Space Mono-700\"],verticalAlignment:\"top\",withExternalLayout:true})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1ho4nr1\",\"data-framer-name\":\"Heading Wrap\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{jtC8vLgen:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"Q1VTVE9NO0RlZ3VsYXIgVGV4dCBCb2xk\",\"--framer-font-family\":'\"Degular Text Bold\", \"Degular Text Bold Placeholder\", sans-serif',\"--framer-font-size\":\"25px\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"30px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-406ee2a1-9c29-42c5-961e-cfe02a30aaf7, rgb(18, 18, 18))\"},children:\"Stay on top of expected revenue & and get paid faster\"})})},WSvcEG864:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"Q1VTVE9NO0RlZ3VsYXIgVGV4dCBCb2xk\",\"--framer-font-family\":'\"Degular Text Bold\", \"Degular Text Bold Placeholder\", sans-serif',\"--framer-font-size\":\"46px\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"50px\",\"--framer-text-color\":\"var(--token-406ee2a1-9c29-42c5-961e-cfe02a30aaf7, rgb(18, 18, 18))\"},children:\"Stay on top of expected revenue & and get paid faster\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"Q1VTVE9NO0RlZ3VsYXIgVGV4dCBCb2xk\",\"--framer-font-family\":'\"Degular Text Bold\", \"Degular Text Bold Placeholder\", sans-serif',\"--framer-font-size\":\"35px\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"40px\",\"--framer-text-color\":\"var(--token-406ee2a1-9c29-42c5-961e-cfe02a30aaf7, rgb(18, 18, 18))\"},children:\"Stay on top of expected revenue & and get paid faster\"})}),className:\"framer-1iryx15\",fonts:[\"CUSTOM;Degular Text Bold\"],verticalAlignment:\"top\",withExternalLayout:true})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1o9n70\",\"data-framer-name\":\"Content Wrap\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{jtC8vLgen:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0RlZ3VsYXIgVGV4dCBSZWd1bGFy\",\"--framer-font-family\":'\"Degular Text Regular\", \"Degular Text Regular Placeholder\", sans-serif',\"--framer-line-height\":\"18px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-406ee2a1-9c29-42c5-961e-cfe02a30aaf7, rgb(18, 18, 18))\"},children:\"As your business grows, keeping track of revenue can get tricky. CreatorHQ\u2019s Owner Dashboard helps you monitor outstanding sponsorship payments, affiliate commissions, and speaking fees\u2014so you can ensure you collect what you're owed, faster.\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0RlZ3VsYXIgVGV4dCBSZWd1bGFy\",\"--framer-font-family\":'\"Degular Text Regular\", \"Degular Text Regular Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"23px\",\"--framer-text-color\":\"var(--token-406ee2a1-9c29-42c5-961e-cfe02a30aaf7, rgb(18, 18, 18))\"},children:\"As your business grows, keeping track of revenue can get tricky. CreatorHQ\u2019s Owner Dashboard helps you monitor outstanding sponsorship payments, affiliate commissions, and speaking fees\u2014so you can ensure you collect what you're owed, faster.\"})}),className:\"framer-1fx5ue2\",fonts:[\"CUSTOM;Degular Text Regular\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{jtC8vLgen:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0RlZ3VsYXIgVGV4dCBSZWd1bGFy\",\"--framer-font-family\":'\"Degular Text Regular\", \"Degular Text Regular Placeholder\", sans-serif',\"--framer-line-height\":\"18px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-406ee2a1-9c29-42c5-961e-cfe02a30aaf7, rgb(18, 18, 18))\"},children:\"See at a glance what payments are pending, making it simple to follow up and get paid on time.\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0RlZ3VsYXIgVGV4dCBSZWd1bGFy\",\"--framer-font-family\":'\"Degular Text Regular\", \"Degular Text Regular Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"23px\",\"--framer-text-color\":\"var(--token-406ee2a1-9c29-42c5-961e-cfe02a30aaf7, rgb(18, 18, 18))\"},children:\"See at a glance what payments are pending, making it simple to follow up and get paid on time.\"})}),className:\"framer-1769ksi\",fonts:[\"CUSTOM;Degular Text Regular\"],verticalAlignment:\"top\",withExternalLayout:true})})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-15usenh\",\"data-framer-name\":\"Points Whole Wrap\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-19odxae\",\"data-framer-name\":\"Points One Wrap\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1h2qgrh\",\"data-framer-name\":\"Points One\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{jtC8vLgen:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+6797+60+12676.5+30+0+0+0+0+0+0+333.5+0+0+0+0+5),pixelHeight:21,pixelWidth:22,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/O0eRoHPRHXG7AMIFsit5hwmqXU.png\"}},tICWQLge2:{background:{alt:\"\",fit:\"fill\",pixelHeight:21,pixelWidth:22,src:\"https://framerusercontent.com/images/O0eRoHPRHXG7AMIFsit5hwmqXU.png\"}},WSvcEG864:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+5902+90+13591+100+0+0+0+0+0+444+0+0+0+0+9),pixelHeight:21,pixelWidth:22,src:\"https://framerusercontent.com/images/O0eRoHPRHXG7AMIFsit5hwmqXU.png\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+5878+90+13433+100+0+0+0+0+0+434+0+0+0+0+7),pixelHeight:21,pixelWidth:22,src:\"https://framerusercontent.com/images/O0eRoHPRHXG7AMIFsit5hwmqXU.png\"},className:\"framer-g1iadk\"})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{jtC8vLgen:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0RlZ3VsYXIgVGV4dCBCb2xk\",\"--framer-font-family\":'\"Degular Text Bold\", \"Degular Text Bold Placeholder\", sans-serif',\"--framer-font-size\":\"17px\",\"--framer-line-height\":\"20px\",\"--framer-text-color\":\"var(--token-406ee2a1-9c29-42c5-961e-cfe02a30aaf7, rgb(18, 18, 18))\"},children:\"Sponsorship campaigns\"})})},WSvcEG864:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0RlZ3VsYXIgVGV4dCBCb2xk\",\"--framer-font-family\":'\"Degular Text Bold\", \"Degular Text Bold Placeholder\", sans-serif',\"--framer-font-size\":\"22px\",\"--framer-line-height\":\"28px\",\"--framer-text-color\":\"var(--token-406ee2a1-9c29-42c5-961e-cfe02a30aaf7, rgb(18, 18, 18))\"},children:\"Sponsorship campaigns\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0RlZ3VsYXIgVGV4dCBCb2xk\",\"--framer-font-family\":'\"Degular Text Bold\", \"Degular Text Bold Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-line-height\":\"24px\",\"--framer-text-color\":\"var(--token-406ee2a1-9c29-42c5-961e-cfe02a30aaf7, rgb(18, 18, 18))\"},children:\"Sponsorship campaigns\"})}),className:\"framer-ho4i3y\",fonts:[\"CUSTOM;Degular Text Bold\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-bi5gog\",\"data-framer-name\":\"Points Text\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{jtC8vLgen:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0RlZ3VsYXIgVGV4dCBSZWd1bGFy\",\"--framer-font-family\":'\"Degular Text Regular\", \"Degular Text Regular Placeholder\", sans-serif',\"--framer-line-height\":\"18px\",\"--framer-text-color\":\"var(--token-406ee2a1-9c29-42c5-961e-cfe02a30aaf7, rgb(18, 18, 18))\"},children:\"Stay on top of payment terms like Net-30, 60, or 90. CreatorHQ helps you ensure you don't get ghosted.\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0RlZ3VsYXIgVGV4dCBSZWd1bGFy\",\"--framer-font-family\":'\"Degular Text Regular\", \"Degular Text Regular Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"23px\",\"--framer-text-color\":\"var(--token-406ee2a1-9c29-42c5-961e-cfe02a30aaf7, rgb(18, 18, 18))\"},children:\"Stay on top of payment terms like Net-30, 60, or 90. CreatorHQ helps you ensure you don't get ghosted.\"})}),className:\"framer-118mdxy\",fonts:[\"CUSTOM;Degular Text Regular\"],verticalAlignment:\"top\",withExternalLayout:true})})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1tjdu85\",\"data-framer-name\":\"Points Two Wrap\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-3ym1i9\",\"data-framer-name\":\"Points Two\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{jtC8vLgen:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+6797+60+12676.5+30+0+0+0+0+0+0+333.5+0+130+0+0+5),pixelHeight:21,pixelWidth:22,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/O0eRoHPRHXG7AMIFsit5hwmqXU.png\"}},tICWQLge2:{background:{alt:\"\",fit:\"fill\",pixelHeight:21,pixelWidth:22,src:\"https://framerusercontent.com/images/O0eRoHPRHXG7AMIFsit5hwmqXU.png\"}},WSvcEG864:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+5902+90+13591+100+0+0+0+0+0+444+0+172+0+0+9),pixelHeight:21,pixelWidth:22,src:\"https://framerusercontent.com/images/O0eRoHPRHXG7AMIFsit5hwmqXU.png\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+5878+90+13433+100+0+0+0+0+0+434+0+168+0+0+7),pixelHeight:21,pixelWidth:22,src:\"https://framerusercontent.com/images/O0eRoHPRHXG7AMIFsit5hwmqXU.png\"},className:\"framer-ie1qjv\"})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{jtC8vLgen:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0RlZ3VsYXIgVGV4dCBCb2xk\",\"--framer-font-family\":'\"Degular Text Bold\", \"Degular Text Bold Placeholder\", sans-serif',\"--framer-font-size\":\"17px\",\"--framer-line-height\":\"20px\",\"--framer-text-color\":\"var(--token-406ee2a1-9c29-42c5-961e-cfe02a30aaf7, rgb(18, 18, 18))\"},children:\"Affiliate commissions\"})})},WSvcEG864:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0RlZ3VsYXIgVGV4dCBCb2xk\",\"--framer-font-family\":'\"Degular Text Bold\", \"Degular Text Bold Placeholder\", sans-serif',\"--framer-font-size\":\"22px\",\"--framer-line-height\":\"28px\",\"--framer-text-color\":\"var(--token-406ee2a1-9c29-42c5-961e-cfe02a30aaf7, rgb(18, 18, 18))\"},children:\"Affiliate commissions\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0RlZ3VsYXIgVGV4dCBCb2xk\",\"--framer-font-family\":'\"Degular Text Bold\", \"Degular Text Bold Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-line-height\":\"24px\",\"--framer-text-color\":\"var(--token-406ee2a1-9c29-42c5-961e-cfe02a30aaf7, rgb(18, 18, 18))\"},children:\"Affiliate commissions\"})}),className:\"framer-wxyuv\",fonts:[\"CUSTOM;Degular Text Bold\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-dowmd8\",\"data-framer-name\":\"Points Text\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{jtC8vLgen:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0RlZ3VsYXIgVGV4dCBSZWd1bGFy\",\"--framer-font-family\":'\"Degular Text Regular\", \"Degular Text Regular Placeholder\", sans-serif',\"--framer-line-height\":\"18px\",\"--framer-text-color\":\"var(--token-406ee2a1-9c29-42c5-961e-cfe02a30aaf7, rgb(18, 18, 18))\"},children:\"Effortlessly manage all affiliate links and commissions so you know exactly what to follow up on.\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0RlZ3VsYXIgVGV4dCBSZWd1bGFy\",\"--framer-font-family\":'\"Degular Text Regular\", \"Degular Text Regular Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"23px\",\"--framer-text-color\":\"var(--token-406ee2a1-9c29-42c5-961e-cfe02a30aaf7, rgb(18, 18, 18))\"},children:\"Effortlessly manage all affiliate links and commissions so you know exactly what to follow up on.\"})}),className:\"framer-11n2h0r\",fonts:[\"CUSTOM;Degular Text Regular\"],verticalAlignment:\"top\",withExternalLayout:true})})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1bpdqh1\",\"data-framer-name\":\"Points Three Wrap\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-61s6d4\",\"data-framer-name\":\"Points Two\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{jtC8vLgen:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+6797+60+12676.5+30+0+0+0+0+0+0+333.5+0+260+0+0+5),pixelHeight:21,pixelWidth:22,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/O0eRoHPRHXG7AMIFsit5hwmqXU.png\"}},tICWQLge2:{background:{alt:\"\",fit:\"fill\",pixelHeight:21,pixelWidth:22,src:\"https://framerusercontent.com/images/O0eRoHPRHXG7AMIFsit5hwmqXU.png\"}},WSvcEG864:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+5902+90+13591+100+0+0+0+0+0+444+0+344+0+0+9),pixelHeight:21,pixelWidth:22,src:\"https://framerusercontent.com/images/O0eRoHPRHXG7AMIFsit5hwmqXU.png\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+5878+90+13433+100+0+0+0+0+0+434+0+336+0+0+7),pixelHeight:21,pixelWidth:22,src:\"https://framerusercontent.com/images/O0eRoHPRHXG7AMIFsit5hwmqXU.png\"},className:\"framer-15ll5m9\"})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{jtC8vLgen:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0RlZ3VsYXIgVGV4dCBCb2xk\",\"--framer-font-family\":'\"Degular Text Bold\", \"Degular Text Bold Placeholder\", sans-serif',\"--framer-font-size\":\"17px\",\"--framer-line-height\":\"20px\",\"--framer-text-color\":\"var(--token-406ee2a1-9c29-42c5-961e-cfe02a30aaf7, rgb(18, 18, 18))\"},children:\"Speaking engagements\"})})},WSvcEG864:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0RlZ3VsYXIgVGV4dCBCb2xk\",\"--framer-font-family\":'\"Degular Text Bold\", \"Degular Text Bold Placeholder\", sans-serif',\"--framer-font-size\":\"22px\",\"--framer-line-height\":\"28px\",\"--framer-text-color\":\"var(--token-406ee2a1-9c29-42c5-961e-cfe02a30aaf7, rgb(18, 18, 18))\"},children:\"Speaking engagements\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0RlZ3VsYXIgVGV4dCBCb2xk\",\"--framer-font-family\":'\"Degular Text Bold\", \"Degular Text Bold Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-line-height\":\"24px\",\"--framer-text-color\":\"var(--token-406ee2a1-9c29-42c5-961e-cfe02a30aaf7, rgb(18, 18, 18))\"},children:\"Speaking engagements\"})}),className:\"framer-wlrrj\",fonts:[\"CUSTOM;Degular Text Bold\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-qq9x3o\",\"data-framer-name\":\"Points Text\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{jtC8vLgen:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0RlZ3VsYXIgVGV4dCBSZWd1bGFy\",\"--framer-font-family\":'\"Degular Text Regular\", \"Degular Text Regular Placeholder\", sans-serif',\"--framer-line-height\":\"18px\",\"--framer-text-color\":\"var(--token-406ee2a1-9c29-42c5-961e-cfe02a30aaf7, rgb(18, 18, 18))\"},children:\"Keep track of your speaking fees including reimbursements, so you never miss a payment.\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0RlZ3VsYXIgVGV4dCBSZWd1bGFy\",\"--framer-font-family\":'\"Degular Text Regular\", \"Degular Text Regular Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"23px\",\"--framer-text-color\":\"var(--token-406ee2a1-9c29-42c5-961e-cfe02a30aaf7, rgb(18, 18, 18))\"},children:\"Keep track of your speaking fees including reimbursements, so you never miss a payment.\"})}),className:\"framer-19xgm4h\",fonts:[\"CUSTOM;Degular Text Regular\"],verticalAlignment:\"top\",withExternalLayout:true})})})]})]})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-gs02zc\",\"data-framer-name\":\"Image Wrap\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{jtC8vLgen:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+6797+60+12676.5+30+0+0+0+0+738.5+0+0),pixelHeight:1490,pixelWidth:1303,positionX:\"center\",positionY:\"center\",sizes:`min(min(${componentViewport?.width||\"100vw\"} - 40px, 1260px), 655px)`,src:\"https://framerusercontent.com/images/fFwX67JFETTImdjMSHmNjpphqvk.png\",srcSet:\"https://framerusercontent.com/images/fFwX67JFETTImdjMSHmNjpphqvk.png?scale-down-to=1024 895w,https://framerusercontent.com/images/fFwX67JFETTImdjMSHmNjpphqvk.png 1303w\"}},tICWQLge2:{background:{alt:\"\",fit:\"fill\",pixelHeight:1490,pixelWidth:1303,sizes:\"650px\",src:\"https://framerusercontent.com/images/fFwX67JFETTImdjMSHmNjpphqvk.png\",srcSet:\"https://framerusercontent.com/images/fFwX67JFETTImdjMSHmNjpphqvk.png?scale-down-to=1024 895w,https://framerusercontent.com/images/fFwX67JFETTImdjMSHmNjpphqvk.png 1303w\"}},WSvcEG864:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+5902+90+13591+100+0+0+0+95.5+0+0),pixelHeight:1490,pixelWidth:1303,sizes:\"650px\",src:\"https://framerusercontent.com/images/fFwX67JFETTImdjMSHmNjpphqvk.png\",srcSet:\"https://framerusercontent.com/images/fFwX67JFETTImdjMSHmNjpphqvk.png?scale-down-to=1024 895w,https://framerusercontent.com/images/fFwX67JFETTImdjMSHmNjpphqvk.png 1303w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+5878+90+13433+100+0+0+0+84.5+0+0),pixelHeight:1490,pixelWidth:1303,sizes:\"650px\",src:\"https://framerusercontent.com/images/fFwX67JFETTImdjMSHmNjpphqvk.png\",srcSet:\"https://framerusercontent.com/images/fFwX67JFETTImdjMSHmNjpphqvk.png?scale-down-to=1024 895w,https://framerusercontent.com/images/fFwX67JFETTImdjMSHmNjpphqvk.png 1303w\"},className:\"framer-wkqf7h\",\"data-framer-name\":\"Image\"})})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-d7c0j2\",\"data-framer-name\":\"Feature Goals\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1b7ei3l\",\"data-border\":true,\"data-framer-name\":\"Intro Wrap\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1t39tug\",\"data-framer-name\":\"Content Wrap\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-8tnktt\",\"data-framer-name\":\"Feed Back \",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{jtC8vLgen:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+6797+60+12676.5+30+0+0+1158.5+0+0+25+0+0+0+0),pixelHeight:58,pixelWidth:79,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/qnPHpRCgU5XVKoX7i5h7jEdkA.png\"}},tICWQLge2:{background:{alt:\"\",fit:\"fill\",pixelHeight:58,pixelWidth:79,src:\"https://framerusercontent.com/images/qnPHpRCgU5XVKoX7i5h7jEdkA.png\"}},WSvcEG864:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+5902+90+13591+100+0+0+984+0+0+40+0+0+0+0),pixelHeight:58,pixelWidth:79,src:\"https://framerusercontent.com/images/qnPHpRCgU5XVKoX7i5h7jEdkA.png\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+5878+90+13433+100+0+0+962+0+0+40+0+0+0+0),pixelHeight:58,pixelWidth:79,src:\"https://framerusercontent.com/images/qnPHpRCgU5XVKoX7i5h7jEdkA.png\"},className:\"framer-7vzt44\",\"data-framer-name\":\"Qutos\"})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-16lszh9\",\"data-framer-name\":\"Title Wrap\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{jtC8vLgen:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0RlZ3VsYXIgVGV4dCBSZWd1bGFy\",\"--framer-font-family\":'\"Degular Text Regular\", \"Degular Text Regular Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-letter-spacing\":\"-0.3px\",\"--framer-line-height\":\"120%\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-21b87942-b5ba-4341-95a9-cb6b167de460, rgb(0, 0, 0))\"},children:[/*#__PURE__*/_jsx(\"em\",{children:\"\\\"CreatorHQ saved my sanity! I'm in the middle of a pivot and juggling 2 newsletters, posting on 3 different platforms, and launching a new podcast and YouTube channel. I would have never believed it before CreatorHQ, but \"}),/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"Q1VTVE9NO0RlZ3VsYXIgVGV4dCBCb2xk\",\"--framer-font-family\":'\"Degular Text Bold\", \"Degular Text Bold Placeholder\", sans-serif'},children:/*#__PURE__*/_jsx(\"em\",{children:\"I'm organized and on top of things. I can finally sleep at night\"})}),/*#__PURE__*/_jsx(\"em\",{children:' and if I have a freakout moment at 3am - I can quickly capture it in my task list or ideas list Creator HQ widget on my phone.\"'})]})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0RlZ3VsYXIgVGV4dCBSZWd1bGFy\",\"--framer-font-family\":'\"Degular Text Regular\", \"Degular Text Regular Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-letter-spacing\":\"-0.3px\",\"--framer-line-height\":\"130%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-21b87942-b5ba-4341-95a9-cb6b167de460, rgb(0, 0, 0))\"},children:[/*#__PURE__*/_jsx(\"em\",{children:\"\\\"CreatorHQ saved my sanity! I'm in the middle of a pivot and juggling 2 newsletters, posting on 3 different platforms, and launching a new podcast and YouTube channel. I would have never believed it before CreatorHQ, but \"}),/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"Q1VTVE9NO0RlZ3VsYXIgVGV4dCBCb2xk\",\"--framer-font-family\":'\"Degular Text Bold\", \"Degular Text Bold Placeholder\", sans-serif'},children:/*#__PURE__*/_jsx(\"em\",{children:\"I'm organized and on top of things. I can finally sleep at night\"})}),/*#__PURE__*/_jsx(\"em\",{children:' and if I have a freakout moment at 3am - I can quickly capture it in my task list or ideas list Creator HQ widget on my phone.\"'})]})}),className:\"framer-1d5db9z\",fonts:[\"CUSTOM;Degular Text Regular\",\"CUSTOM;Degular Text Bold\"],verticalAlignment:\"top\",withExternalLayout:true})})})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-13plyw2\",\"data-framer-name\":\"Feed Back Image\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-6q6g3z\",\"data-framer-name\":\"Name Wrap\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-m7more\",\"data-framer-name\":\"Intro Name\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{jtC8vLgen:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+6797+60+12676.5+30+0+0+1158.5+0+0+25+0+175+0+0+1),pixelHeight:120,pixelWidth:121,positionX:\"left\",positionY:\"top\",src:\"https://framerusercontent.com/images/NUkZv94ZJMPyeyrTN8NpP3XfA.png\"}},tICWQLge2:{background:{alt:\"\",fit:\"fill\",pixelHeight:120,pixelWidth:121,positionX:\"left\",positionY:\"top\",src:\"https://framerusercontent.com/images/NUkZv94ZJMPyeyrTN8NpP3XfA.png\"}},WSvcEG864:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+5902+90+13591+100+0+0+984+0+0+40+0+227+0+0+2),pixelHeight:120,pixelWidth:121,positionX:\"left\",positionY:\"top\",src:\"https://framerusercontent.com/images/NUkZv94ZJMPyeyrTN8NpP3XfA.png\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+5878+90+13433+100+0+0+962+0+0+40+0+227+0+0+2),pixelHeight:120,pixelWidth:121,positionX:\"left\",positionY:\"top\",src:\"https://framerusercontent.com/images/NUkZv94ZJMPyeyrTN8NpP3XfA.png\"},className:\"framer-tf0gs8\"})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-m5n18o\",\"data-framer-name\":\"Name\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{jtC8vLgen:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0RlZ3VsYXIgVGV4dCBCb2xk\",\"--framer-font-family\":'\"Degular Text Bold\", \"Degular Text Bold Placeholder\", sans-serif',\"--framer-line-height\":\"22px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-406ee2a1-9c29-42c5-961e-cfe02a30aaf7, rgb(18, 18, 18))\"},children:\"Lisa Kostova\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0RlZ3VsYXIgVGV4dCBCb2xk\",\"--framer-font-family\":'\"Degular Text Bold\", \"Degular Text Bold Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"22px\",\"--framer-text-color\":\"var(--token-406ee2a1-9c29-42c5-961e-cfe02a30aaf7, rgb(18, 18, 18))\"},children:\"Lisa Kostova\"})}),className:\"framer-1yezbri\",fonts:[\"CUSTOM;Degular Text Bold\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{jtC8vLgen:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0RlZ3VsYXIgVGV4dCBSZWd1bGFy\",\"--framer-font-family\":'\"Degular Text Regular\", \"Degular Text Regular Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-line-height\":\"16px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-406ee2a1-9c29-42c5-961e-cfe02a30aaf7, rgb(18, 18, 18))\"},children:\"Creator\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0RlZ3VsYXIgVGV4dCBSZWd1bGFy\",\"--framer-font-family\":'\"Degular Text Regular\", \"Degular Text Regular Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-line-height\":\"16px\",\"--framer-text-color\":\"var(--token-406ee2a1-9c29-42c5-961e-cfe02a30aaf7, rgb(18, 18, 18))\"},children:\"Creator\"})}),className:\"framer-b1wt1s\",fonts:[\"CUSTOM;Degular Text Regular\"],verticalAlignment:\"top\",withExternalLayout:true})})]})]})})]})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-4hqerr\",\"data-framer-name\":\"Button Wrap  Wrap\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{jtC8vLgen:{width:`min(min(min(${componentViewport?.width||\"100vw\"} - 40px, 1260px), 900px), 365px)`,y:(componentViewport?.y||0)+0+6797+60+12676.5+30+0+0+1158.5+0+295+0+0},tICWQLge2:{y:undefined},WSvcEG864:{y:(componentViewport?.y||0)+0+5902+90+13591+100+0+0+984+0+415+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:73,width:\"364px\",y:(componentViewport?.y||0)+0+5878+90+13433+100+0+0+962+0+415+0+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-jz6dtt-container\",isModuleExternal:true,nodeId:\"B64Qk8NXh\",scopeId:\"OMp430bgy\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{jtC8vLgen:{variant:\"lbE2C1YKC\"}},children:/*#__PURE__*/_jsx(BannerButton,{height:\"100%\",i9h0tMlqE:\"https://store.creatorscience.com/buy/28aeab8d-5b53-4840-9055-080794014e8b\",id:\"B64Qk8NXh\",layoutId:\"B64Qk8NXh\",style:{width:\"100%\"},variant:\"fdB6OMGxz\",width:\"100%\"})})})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1fjrak5\",\"data-framer-name\":\"Prcing Text\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{jtC8vLgen:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7U3BhY2UgTW9uby1yZWd1bGFy\",\"--framer-font-family\":'\"Space Mono\", monospace',\"--framer-font-size\":\"12px\",\"--framer-letter-spacing\":\"0.65px\",\"--framer-line-height\":\"13px\",\"--framer-text-color\":\"var(--token-ead53e59-221f-4b46-951f-2920018f76b7, rgb(30, 30, 30))\",\"--framer-text-transform\":\"uppercase\"},children:\"lifetime access for $297\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7U3BhY2UgTW9uby1yZWd1bGFy\",\"--framer-font-family\":'\"Space Mono\", monospace',\"--framer-font-size\":\"13px\",\"--framer-letter-spacing\":\"0.65px\",\"--framer-line-height\":\"13px\",\"--framer-text-color\":\"var(--token-ead53e59-221f-4b46-951f-2920018f76b7, rgb(30, 30, 30))\",\"--framer-text-transform\":\"uppercase\"},children:\"lifetime access for $297\"})}),className:\"framer-f5ia9z\",fonts:[\"GF;Space Mono-regular\"],verticalAlignment:\"top\",withExternalLayout:true})})})]})]})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-tt47p8\",\"data-framer-name\":\"Seprator\"})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1warloq\",\"data-framer-name\":\"Feature Nine\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-1ncyl5p\",\"data-framer-name\":\"Container\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-155n5s9\",\"data-framer-name\":\"Feature Content\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1b2pqcd\",\"data-framer-name\":\"Feature Content one\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1qi5iij\",\"data-framer-name\":\"Title Whole Wrap\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-8yifc0\",\"data-framer-name\":\"Title Wrap\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{jtC8vLgen:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7U3BhY2UgTW9uby03MDA=\",\"--framer-font-family\":'\"Space Mono\", monospace',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.3px\",\"--framer-line-height\":\"105%\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-d1f6ecfd-2abf-4418-8a05-8920186c6135, rgb(0, 97, 255))\",\"--framer-text-transform\":\"uppercase\"},children:\"9. keep track of sponsorships\"})})},WSvcEG864:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7U3BhY2UgTW9uby03MDA=\",\"--framer-font-family\":'\"Space Mono\", monospace',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"18px\",\"--framer-text-color\":\"var(--token-d1f6ecfd-2abf-4418-8a05-8920186c6135, rgb(0, 97, 255))\",\"--framer-text-transform\":\"uppercase\"},children:\"9. keep track of sponsorships\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7U3BhY2UgTW9uby03MDA=\",\"--framer-font-family\":'\"Space Mono\", monospace',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"0.01em\",\"--framer-line-height\":\"18px\",\"--framer-text-color\":\"var(--token-d1f6ecfd-2abf-4418-8a05-8920186c6135, rgb(0, 97, 255))\",\"--framer-text-transform\":\"uppercase\"},children:\"9. keep track of sponsorships\"})}),className:\"framer-qnj4av\",fonts:[\"GF;Space Mono-700\"],verticalAlignment:\"top\",withExternalLayout:true})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-14e9jvq\",\"data-framer-name\":\"Heading Wrap\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{jtC8vLgen:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"Q1VTVE9NO0RlZ3VsYXIgVGV4dCBCb2xk\",\"--framer-font-family\":'\"Degular Text Bold\", \"Degular Text Bold Placeholder\", sans-serif',\"--framer-font-size\":\"25px\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"30px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-406ee2a1-9c29-42c5-961e-cfe02a30aaf7, rgb(18, 18, 18))\"},children:\"Manage and land more sponsorships\"})})},WSvcEG864:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"Q1VTVE9NO0RlZ3VsYXIgVGV4dCBCb2xk\",\"--framer-font-family\":'\"Degular Text Bold\", \"Degular Text Bold Placeholder\", sans-serif',\"--framer-font-size\":\"46px\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"50px\",\"--framer-text-color\":\"var(--token-406ee2a1-9c29-42c5-961e-cfe02a30aaf7, rgb(18, 18, 18))\"},children:\"Manage and land more sponsorships\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"Q1VTVE9NO0RlZ3VsYXIgVGV4dCBCb2xk\",\"--framer-font-family\":'\"Degular Text Bold\", \"Degular Text Bold Placeholder\", sans-serif',\"--framer-font-size\":\"35px\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"40px\",\"--framer-text-color\":\"var(--token-406ee2a1-9c29-42c5-961e-cfe02a30aaf7, rgb(18, 18, 18))\"},children:\"Manage and land more sponsorships\"})}),className:\"framer-1gqtkxu\",fonts:[\"CUSTOM;Degular Text Bold\"],verticalAlignment:\"top\",withExternalLayout:true})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1w6p2ml\",\"data-framer-name\":\"Content Wrap\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{jtC8vLgen:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0RlZ3VsYXIgVGV4dCBSZWd1bGFy\",\"--framer-font-family\":'\"Degular Text Regular\", \"Degular Text Regular Placeholder\", sans-serif',\"--framer-line-height\":\"18px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-406ee2a1-9c29-42c5-961e-cfe02a30aaf7, rgb(18, 18, 18))\"},children:\"Managing sponsorships shouldn\u2019t be overwhelming. CreatorHQ makes it simple to track partnerships from lead to completed campaign, without giving up 20-40% to a partnership manager, and helping you scale and close more deals.\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0RlZ3VsYXIgVGV4dCBSZWd1bGFy\",\"--framer-font-family\":'\"Degular Text Regular\", \"Degular Text Regular Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"23px\",\"--framer-text-color\":\"var(--token-406ee2a1-9c29-42c5-961e-cfe02a30aaf7, rgb(18, 18, 18))\"},children:\"Managing sponsorships shouldn\u2019t be overwhelming. CreatorHQ makes it simple to track partnerships from lead to completed campaign, without giving up 20-40% to a partnership manager, and helping you scale and close more deals.\"})}),className:\"framer-1o4p3m3\",fonts:[\"CUSTOM;Degular Text Regular\"],verticalAlignment:\"top\",withExternalLayout:true})})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-zkhf0k\",\"data-framer-name\":\"Points Whole Wrap\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-lhejbm\",\"data-framer-name\":\"Points One Wrap\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-9r6lps\",\"data-framer-name\":\"Points One\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{jtC8vLgen:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+6797+60+14287+30+0+0+0+0+0+0+238.5+0+0+0+0+5),pixelHeight:21,pixelWidth:22,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/O0eRoHPRHXG7AMIFsit5hwmqXU.png\"}},tICWQLge2:{background:{alt:\"\",fit:\"fill\",pixelHeight:21,pixelWidth:22,src:\"https://framerusercontent.com/images/O0eRoHPRHXG7AMIFsit5hwmqXU.png\"}},WSvcEG864:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+5902+90+15287+100+0+0+0+0+0+319+0+0+0+0+9),pixelHeight:21,pixelWidth:22,src:\"https://framerusercontent.com/images/O0eRoHPRHXG7AMIFsit5hwmqXU.png\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+5878+90+15107+100+0+0+0+0+0+309+0+0+0+0+7),pixelHeight:21,pixelWidth:22,src:\"https://framerusercontent.com/images/O0eRoHPRHXG7AMIFsit5hwmqXU.png\"},className:\"framer-vz3r69\"})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{jtC8vLgen:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0RlZ3VsYXIgVGV4dCBCb2xk\",\"--framer-font-family\":'\"Degular Text Bold\", \"Degular Text Bold Placeholder\", sans-serif',\"--framer-font-size\":\"17px\",\"--framer-line-height\":\"20px\",\"--framer-text-color\":\"var(--token-406ee2a1-9c29-42c5-961e-cfe02a30aaf7, rgb(18, 18, 18))\"},children:\"Track every stage of your sponsorships\"})})},WSvcEG864:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0RlZ3VsYXIgVGV4dCBCb2xk\",\"--framer-font-family\":'\"Degular Text Bold\", \"Degular Text Bold Placeholder\", sans-serif',\"--framer-font-size\":\"22px\",\"--framer-line-height\":\"28px\",\"--framer-text-color\":\"var(--token-406ee2a1-9c29-42c5-961e-cfe02a30aaf7, rgb(18, 18, 18))\"},children:\"Track every stage of your sponsorships\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0RlZ3VsYXIgVGV4dCBCb2xk\",\"--framer-font-family\":'\"Degular Text Bold\", \"Degular Text Bold Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-line-height\":\"24px\",\"--framer-text-color\":\"var(--token-406ee2a1-9c29-42c5-961e-cfe02a30aaf7, rgb(18, 18, 18))\"},children:\"Track every stage of your sponsorships\"})}),className:\"framer-1vry8io\",fonts:[\"CUSTOM;Degular Text Bold\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-6no27i\",\"data-framer-name\":\"Points Text\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{jtC8vLgen:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0RlZ3VsYXIgVGV4dCBSZWd1bGFy\",\"--framer-font-family\":'\"Degular Text Regular\", \"Degular Text Regular Placeholder\", sans-serif',\"--framer-line-height\":\"18px\",\"--framer-text-color\":\"var(--token-406ee2a1-9c29-42c5-961e-cfe02a30aaf7, rgb(18, 18, 18))\"},children:\"Oversee contracts, creative briefs, and payment statuses\u2014all in one place. Monitor progress at each stage, ensuring you get campaigns to the finish line smoothly and on time.\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0RlZ3VsYXIgVGV4dCBSZWd1bGFy\",\"--framer-font-family\":'\"Degular Text Regular\", \"Degular Text Regular Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"23px\",\"--framer-text-color\":\"var(--token-406ee2a1-9c29-42c5-961e-cfe02a30aaf7, rgb(18, 18, 18))\"},children:\"Oversee contracts, creative briefs, and payment statuses\u2014all in one place. Monitor progress at each stage, ensuring you get campaigns to the finish line smoothly and on time.\"})}),className:\"framer-wdoh3w\",fonts:[\"CUSTOM;Degular Text Regular\"],verticalAlignment:\"top\",withExternalLayout:true})})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1m447wg\",\"data-framer-name\":\"Points Two Wrap\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1s4yz0u\",\"data-framer-name\":\"Points Two\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{jtC8vLgen:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+6797+60+14287+30+0+0+0+0+0+0+238.5+0+130+0+0+45),pixelHeight:21,pixelWidth:22,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/O0eRoHPRHXG7AMIFsit5hwmqXU.png\"}},tICWQLge2:{background:{alt:\"\",fit:\"fill\",pixelHeight:21,pixelWidth:22,src:\"https://framerusercontent.com/images/O0eRoHPRHXG7AMIFsit5hwmqXU.png\"}},WSvcEG864:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+5902+90+15287+100+0+0+0+0+0+319+0+172+0+0+9),pixelHeight:21,pixelWidth:22,src:\"https://framerusercontent.com/images/O0eRoHPRHXG7AMIFsit5hwmqXU.png\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+5878+90+15107+100+0+0+0+0+0+309+0+168+0+0+7),pixelHeight:21,pixelWidth:22,src:\"https://framerusercontent.com/images/O0eRoHPRHXG7AMIFsit5hwmqXU.png\"},className:\"framer-19ab3cj\"})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{jtC8vLgen:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0RlZ3VsYXIgVGV4dCBCb2xk\",\"--framer-font-family\":'\"Degular Text Bold\", \"Degular Text Bold Placeholder\", sans-serif',\"--framer-font-size\":\"17px\",\"--framer-line-height\":\"20px\",\"--framer-text-color\":\"var(--token-406ee2a1-9c29-42c5-961e-cfe02a30aaf7, rgb(18, 18, 18))\"},children:\"Ask the right questions, craft winning proposals\"})})},WSvcEG864:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0RlZ3VsYXIgVGV4dCBCb2xk\",\"--framer-font-family\":'\"Degular Text Bold\", \"Degular Text Bold Placeholder\", sans-serif',\"--framer-font-size\":\"22px\",\"--framer-line-height\":\"28px\",\"--framer-text-color\":\"var(--token-406ee2a1-9c29-42c5-961e-cfe02a30aaf7, rgb(18, 18, 18))\"},children:\"Ask the right questions, craft winning proposals\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0RlZ3VsYXIgVGV4dCBCb2xk\",\"--framer-font-family\":'\"Degular Text Bold\", \"Degular Text Bold Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-line-height\":\"24px\",\"--framer-text-color\":\"var(--token-406ee2a1-9c29-42c5-961e-cfe02a30aaf7, rgb(18, 18, 18))\"},children:\"Ask the right questions, craft winning proposals\"})}),className:\"framer-kbuy76\",fonts:[\"CUSTOM;Degular Text Bold\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1djvw13\",\"data-framer-name\":\"Points Text\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{jtC8vLgen:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0RlZ3VsYXIgVGV4dCBSZWd1bGFy\",\"--framer-font-family\":'\"Degular Text Regular\", \"Degular Text Regular Placeholder\", sans-serif',\"--framer-line-height\":\"18px\",\"--framer-text-color\":\"var(--token-406ee2a1-9c29-42c5-961e-cfe02a30aaf7, rgb(18, 18, 18))\"},children:\"Use our Sponsorship Campaign template to gather the information you need and follow guided steps to write compelling proposals that catch sponsors' attention.\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0RlZ3VsYXIgVGV4dCBSZWd1bGFy\",\"--framer-font-family\":'\"Degular Text Regular\", \"Degular Text Regular Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"23px\",\"--framer-text-color\":\"var(--token-406ee2a1-9c29-42c5-961e-cfe02a30aaf7, rgb(18, 18, 18))\"},children:\"Use our Sponsorship Campaign template to gather the information you need and follow guided steps to write compelling proposals that catch sponsors' attention.\"})}),className:\"framer-2w21g9\",fonts:[\"CUSTOM;Degular Text Regular\"],verticalAlignment:\"top\",withExternalLayout:true})})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1skf8az\",\"data-framer-name\":\"Points Three Wrap\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1juj22g\",\"data-framer-name\":\"Points Two\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{jtC8vLgen:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+6797+60+14287+30+0+0+0+0+0+0+238.5+0+340+0+0+45),pixelHeight:21,pixelWidth:22,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/O0eRoHPRHXG7AMIFsit5hwmqXU.png\"}},tICWQLge2:{background:{alt:\"\",fit:\"fill\",pixelHeight:21,pixelWidth:22,src:\"https://framerusercontent.com/images/O0eRoHPRHXG7AMIFsit5hwmqXU.png\"}},WSvcEG864:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+5902+90+15287+100+0+0+0+0+0+319+0+344+0+0+9),pixelHeight:21,pixelWidth:22,src:\"https://framerusercontent.com/images/O0eRoHPRHXG7AMIFsit5hwmqXU.png\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+5878+90+15107+100+0+0+0+0+0+309+0+336+0+0+7),pixelHeight:21,pixelWidth:22,src:\"https://framerusercontent.com/images/O0eRoHPRHXG7AMIFsit5hwmqXU.png\"},className:\"framer-447tls\"})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{jtC8vLgen:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0RlZ3VsYXIgVGV4dCBCb2xk\",\"--framer-font-family\":'\"Degular Text Bold\", \"Degular Text Bold Placeholder\", sans-serif',\"--framer-font-size\":\"17px\",\"--framer-line-height\":\"20px\",\"--framer-text-color\":\"var(--token-406ee2a1-9c29-42c5-961e-cfe02a30aaf7, rgb(18, 18, 18))\"},children:\"Script seamless integrations and measure success\"})})},WSvcEG864:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0RlZ3VsYXIgVGV4dCBCb2xk\",\"--framer-font-family\":'\"Degular Text Bold\", \"Degular Text Bold Placeholder\", sans-serif',\"--framer-font-size\":\"22px\",\"--framer-line-height\":\"28px\",\"--framer-text-color\":\"var(--token-406ee2a1-9c29-42c5-961e-cfe02a30aaf7, rgb(18, 18, 18))\"},children:\"Script seamless integrations and measure success\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0RlZ3VsYXIgVGV4dCBCb2xk\",\"--framer-font-family\":'\"Degular Text Bold\", \"Degular Text Bold Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-line-height\":\"24px\",\"--framer-text-color\":\"var(--token-406ee2a1-9c29-42c5-961e-cfe02a30aaf7, rgb(18, 18, 18))\"},children:\"Script seamless integrations and measure success\"})}),className:\"framer-vla9x8\",fonts:[\"CUSTOM;Degular Text Bold\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1ge6z87\",\"data-framer-name\":\"Points Text\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{jtC8vLgen:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0RlZ3VsYXIgVGV4dCBSZWd1bGFy\",\"--framer-font-family\":'\"Degular Text Regular\", \"Degular Text Regular Placeholder\", sans-serif',\"--framer-line-height\":\"18px\",\"--framer-text-color\":\"var(--token-406ee2a1-9c29-42c5-961e-cfe02a30aaf7, rgb(18, 18, 18))\"},children:\"Take your clients\u2019 creative briefs and easily script ads or integrations directly within CreatorHQ. Once a campaign is complete, log the results to refine your approach for future success.\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0RlZ3VsYXIgVGV4dCBSZWd1bGFy\",\"--framer-font-family\":'\"Degular Text Regular\", \"Degular Text Regular Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"23px\",\"--framer-text-color\":\"var(--token-406ee2a1-9c29-42c5-961e-cfe02a30aaf7, rgb(18, 18, 18))\"},children:\"Take your clients\u2019 creative briefs and easily script ads or integrations directly within CreatorHQ. Once a campaign is complete, log the results to refine your approach for future success.\"})}),className:\"framer-vqc5mv\",fonts:[\"CUSTOM;Degular Text Regular\"],verticalAlignment:\"top\",withExternalLayout:true})})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1xjlzn7\",\"data-framer-name\":\"Points Three Wrap\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1kfojif\",\"data-framer-name\":\"Points Two\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{jtC8vLgen:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+6797+60+14287+30+0+0+0+0+0+0+238.5+0+550+0+0+45),pixelHeight:21,pixelWidth:22,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/O0eRoHPRHXG7AMIFsit5hwmqXU.png\"}},tICWQLge2:{background:{alt:\"\",fit:\"fill\",pixelHeight:21,pixelWidth:22,src:\"https://framerusercontent.com/images/O0eRoHPRHXG7AMIFsit5hwmqXU.png\"}},WSvcEG864:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+5902+90+15287+100+0+0+0+0+0+319+0+516+0+0+9),pixelHeight:21,pixelWidth:22,src:\"https://framerusercontent.com/images/O0eRoHPRHXG7AMIFsit5hwmqXU.png\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+5878+90+15107+100+0+0+0+0+0+309+0+504+0+0+7),pixelHeight:21,pixelWidth:22,src:\"https://framerusercontent.com/images/O0eRoHPRHXG7AMIFsit5hwmqXU.png\"},className:\"framer-d9q2cq\"})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{jtC8vLgen:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0RlZ3VsYXIgVGV4dCBCb2xk\",\"--framer-font-family\":'\"Degular Text Bold\", \"Degular Text Bold Placeholder\", sans-serif',\"--framer-font-size\":\"17px\",\"--framer-line-height\":\"20px\",\"--framer-text-color\":\"var(--token-406ee2a1-9c29-42c5-961e-cfe02a30aaf7, rgb(18, 18, 18))\"},children:\"Stay on top of payments and boost your revenue\"})})},WSvcEG864:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0RlZ3VsYXIgVGV4dCBCb2xk\",\"--framer-font-family\":'\"Degular Text Bold\", \"Degular Text Bold Placeholder\", sans-serif',\"--framer-font-size\":\"22px\",\"--framer-line-height\":\"28px\",\"--framer-text-color\":\"var(--token-406ee2a1-9c29-42c5-961e-cfe02a30aaf7, rgb(18, 18, 18))\"},children:\"Stay on top of payments and boost your revenue\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0RlZ3VsYXIgVGV4dCBCb2xk\",\"--framer-font-family\":'\"Degular Text Bold\", \"Degular Text Bold Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-line-height\":\"24px\",\"--framer-text-color\":\"var(--token-406ee2a1-9c29-42c5-961e-cfe02a30aaf7, rgb(18, 18, 18))\"},children:\"Stay on top of payments and boost your revenue\"})}),className:\"framer-1brr7w0\",fonts:[\"CUSTOM;Degular Text Bold\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-59ggbv\",\"data-framer-name\":\"Points Text\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{jtC8vLgen:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0RlZ3VsYXIgVGV4dCBSZWd1bGFy\",\"--framer-font-family\":'\"Degular Text Regular\", \"Degular Text Regular Placeholder\", sans-serif',\"--framer-line-height\":\"18px\",\"--framer-text-color\":\"var(--token-406ee2a1-9c29-42c5-961e-cfe02a30aaf7, rgb(18, 18, 18))\"},children:\"Identify unpaid campaigns quickly to send invoices or follow up, so you get paid faster and maximize your earnings\u2014all while growing your sponsorship pipeline.\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0RlZ3VsYXIgVGV4dCBSZWd1bGFy\",\"--framer-font-family\":'\"Degular Text Regular\", \"Degular Text Regular Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"23px\",\"--framer-text-color\":\"var(--token-406ee2a1-9c29-42c5-961e-cfe02a30aaf7, rgb(18, 18, 18))\"},children:\"Identify unpaid campaigns quickly to send invoices or follow up, so you get paid faster and maximize your earnings\u2014all while growing your sponsorship pipeline.\"})}),className:\"framer-tgjctx\",fonts:[\"CUSTOM;Degular Text Regular\"],verticalAlignment:\"top\",withExternalLayout:true})})})]})]})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-9kvptu\",\"data-framer-name\":\"Image Wrap\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{jtC8vLgen:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+6797+60+14287+30+0+0+0+0+1003.5+0+0),pixelHeight:1788,pixelWidth:1303,positionX:\"center\",positionY:\"center\",sizes:`min(min(${componentViewport?.width||\"100vw\"} - 40px, 1260px), 655px)`,src:\"https://framerusercontent.com/images/BFtZJm32MRqAbiP6gSmMlxjb81E.png\",srcSet:\"https://framerusercontent.com/images/BFtZJm32MRqAbiP6gSmMlxjb81E.png?scale-down-to=1024 746w,https://framerusercontent.com/images/BFtZJm32MRqAbiP6gSmMlxjb81E.png 1303w\"}},tICWQLge2:{background:{alt:\"\",fit:\"fill\",pixelHeight:1788,pixelWidth:1303,sizes:\"650px\",src:\"https://framerusercontent.com/images/BFtZJm32MRqAbiP6gSmMlxjb81E.png\",srcSet:\"https://framerusercontent.com/images/BFtZJm32MRqAbiP6gSmMlxjb81E.png?scale-down-to=1024 746w,https://framerusercontent.com/images/BFtZJm32MRqAbiP6gSmMlxjb81E.png 1303w\"}},WSvcEG864:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+5902+90+15287+100+0+0+0+46.5+0+0),pixelHeight:1788,pixelWidth:1303,sizes:\"650px\",src:\"https://framerusercontent.com/images/BFtZJm32MRqAbiP6gSmMlxjb81E.png\",srcSet:\"https://framerusercontent.com/images/BFtZJm32MRqAbiP6gSmMlxjb81E.png?scale-down-to=1024 746w,https://framerusercontent.com/images/BFtZJm32MRqAbiP6gSmMlxjb81E.png 1303w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+5878+90+15107+100+0+0+0+33.5+0+0),pixelHeight:1788,pixelWidth:1303,sizes:\"650px\",src:\"https://framerusercontent.com/images/BFtZJm32MRqAbiP6gSmMlxjb81E.png\",srcSet:\"https://framerusercontent.com/images/BFtZJm32MRqAbiP6gSmMlxjb81E.png?scale-down-to=1024 746w,https://framerusercontent.com/images/BFtZJm32MRqAbiP6gSmMlxjb81E.png 1303w\"},className:\"framer-tqu3ep\",\"data-framer-name\":\"Image\"})})})]})})})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-kuecq6\",\"data-framer-name\":\"Recap Section\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1chths4\",\"data-framer-name\":\"Container\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1ni9oz1\",\"data-framer-name\":\"Title Wrap\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{jtC8vLgen:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7U3BhY2UgTW9uby03MDA=\",\"--framer-font-family\":'\"Space Mono\", monospace',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.3px\",\"--framer-line-height\":\"105%\",\"--framer-text-color\":\"var(--token-d1f6ecfd-2abf-4418-8a05-8920186c6135, rgb(0, 97, 255))\",\"--framer-text-transform\":\"uppercase\"},children:\"CreatorHQ recap\"})})},WSvcEG864:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7U3BhY2UgTW9uby03MDA=\",\"--framer-font-family\":'\"Space Mono\", monospace',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"18px\",\"--framer-text-color\":\"var(--token-d1f6ecfd-2abf-4418-8a05-8920186c6135, rgb(0, 97, 255))\",\"--framer-text-transform\":\"uppercase\"},children:\"CreatorHQ recap\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7U3BhY2UgTW9uby03MDA=\",\"--framer-font-family\":'\"Space Mono\", monospace',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"0.01em\",\"--framer-line-height\":\"18px\",\"--framer-text-color\":\"var(--token-d1f6ecfd-2abf-4418-8a05-8920186c6135, rgb(0, 97, 255))\",\"--framer-text-transform\":\"uppercase\"},children:\"CreatorHQ recap\"})}),className:\"framer-uk2tdn\",fonts:[\"GF;Space Mono-700\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{jtC8vLgen:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"Q1VTVE9NO0RlZ3VsYXIgVGV4dCBCb2xk\",\"--framer-font-family\":'\"Degular Text Bold\", \"Degular Text Bold Placeholder\", sans-serif',\"--framer-font-size\":\"25px\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"30px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-406ee2a1-9c29-42c5-961e-cfe02a30aaf7, rgb(18, 18, 18))\"},children:\"Designed to be intuitive and easy to learn\"})})},WSvcEG864:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"Q1VTVE9NO0RlZ3VsYXIgVGV4dCBCb2xk\",\"--framer-font-family\":'\"Degular Text Bold\", \"Degular Text Bold Placeholder\", sans-serif',\"--framer-font-size\":\"46px\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"50px\",\"--framer-text-color\":\"var(--token-406ee2a1-9c29-42c5-961e-cfe02a30aaf7, rgb(18, 18, 18))\"},children:\"Designed to be intuitive and easy to learn\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"Q1VTVE9NO0RlZ3VsYXIgVGV4dCBCb2xk\",\"--framer-font-family\":'\"Degular Text Bold\", \"Degular Text Bold Placeholder\", sans-serif',\"--framer-font-size\":\"35px\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"40px\",\"--framer-text-color\":\"var(--token-406ee2a1-9c29-42c5-961e-cfe02a30aaf7, rgb(18, 18, 18))\"},children:\"Designed to be intuitive and easy to learn\"})}),className:\"framer-qv260j\",fonts:[\"CUSTOM;Degular Text Bold\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1x5m0k\",\"data-framer-name\":\"Feature Grid\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1th2lyo\",\"data-framer-name\":\"Feature Card One\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{jtC8vLgen:{background:{alt:\"Contant Planning\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+22635.5+50+0+74.7+0+0+0+0),pixelHeight:73,pixelWidth:80,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/PdCdgfkfiUDhD1KRMJxRwTANM.png\"}},tICWQLge2:{background:{alt:\"Contant Planning\",fit:\"fill\",pixelHeight:73,pixelWidth:80,src:\"https://framerusercontent.com/images/PdCdgfkfiUDhD1KRMJxRwTANM.png\"}},WSvcEG864:{background:{alt:\"Contant Planning\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+22420+120+0+144+0+0+0+0),pixelHeight:73,pixelWidth:80,src:\"https://framerusercontent.com/images/PdCdgfkfiUDhD1KRMJxRwTANM.png\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"Contant Planning\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+22190+120+0+134+0+0+0+0),pixelHeight:73,pixelWidth:80,src:\"https://framerusercontent.com/images/PdCdgfkfiUDhD1KRMJxRwTANM.png\"},className:\"framer-1loituj\"})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1hbt1nd\",\"data-framer-name\":\"Content Wrap\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{jtC8vLgen:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0RlZ3VsYXIgVGV4dCBCb2xk\",\"--framer-font-family\":'\"Degular Text Bold\", \"Degular Text Bold Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"24px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-406ee2a1-9c29-42c5-961e-cfe02a30aaf7, rgb(18, 18, 18))\"},children:[\"Content Planning to \",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-d1f6ecfd-2abf-4418-8a05-8920186c6135, rgb(0, 97, 255))\"},children:\"Save You Time\"})]})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0RlZ3VsYXIgVGV4dCBCb2xk\",\"--framer-font-family\":'\"Degular Text Bold\", \"Degular Text Bold Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-line-height\":\"24px\",\"--framer-text-color\":\"var(--token-406ee2a1-9c29-42c5-961e-cfe02a30aaf7, rgb(18, 18, 18))\"},children:[\"Content Planning to \",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-d1f6ecfd-2abf-4418-8a05-8920186c6135, rgb(0, 97, 255))\"},children:\"Save You Time\"})]})}),className:\"framer-1a87k7c\",fonts:[\"CUSTOM;Degular Text Bold\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{jtC8vLgen:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0RlZ3VsYXIgVGV4dCBSZWd1bGFy\",\"--framer-font-family\":'\"Degular Text Regular\", \"Degular Text Regular Placeholder\", sans-serif',\"--framer-line-height\":\"18px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-406ee2a1-9c29-42c5-961e-cfe02a30aaf7, rgb(18, 18, 18))\"},children:\"Stay consistent with dashboards and templates to plan, produce, and repurpose content across all platforms. \"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0RlZ3VsYXIgVGV4dCBSZWd1bGFy\",\"--framer-font-family\":'\"Degular Text Regular\", \"Degular Text Regular Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"21px\",\"--framer-text-color\":\"var(--token-406ee2a1-9c29-42c5-961e-cfe02a30aaf7, rgb(18, 18, 18))\"},children:\"Stay consistent with dashboards and templates to plan, produce, and repurpose content across all platforms. \"})}),className:\"framer-1hk91rv\",fonts:[\"CUSTOM;Degular Text Regular\"],verticalAlignment:\"top\",withExternalLayout:true})})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-mmptn7\",\"data-framer-name\":\"Feature Card Two\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{jtC8vLgen:{background:{alt:\"Contant Planning\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+22635.5+50+0+74.7+0+272+0+0),pixelHeight:73,pixelWidth:81,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/wsGtHkf3VBOgJHJNk3AZ1fZzUzM.png\"}},tICWQLge2:{background:{alt:\"Contant Planning\",fit:\"fill\",pixelHeight:73,pixelWidth:81,src:\"https://framerusercontent.com/images/wsGtHkf3VBOgJHJNk3AZ1fZzUzM.png\"}},WSvcEG864:{background:{alt:\"Contant Planning\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+22420+120+0+144+0+0+0+0),pixelHeight:73,pixelWidth:81,src:\"https://framerusercontent.com/images/wsGtHkf3VBOgJHJNk3AZ1fZzUzM.png\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"Contant Planning\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+22190+120+0+134+0+0+0+0),pixelHeight:73,pixelWidth:81,src:\"https://framerusercontent.com/images/wsGtHkf3VBOgJHJNk3AZ1fZzUzM.png\"},className:\"framer-1vtcoqo\"})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1ym8shl\",\"data-framer-name\":\"Content Wrap\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{jtC8vLgen:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0RlZ3VsYXIgVGV4dCBCb2xk\",\"--framer-font-family\":'\"Degular Text Bold\", \"Degular Text Bold Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"24px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-406ee2a1-9c29-42c5-961e-cfe02a30aaf7, rgb(18, 18, 18))\"},children:[/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-d1f6ecfd-2abf-4418-8a05-8920186c6135, rgb(0, 97, 255))\"},children:\"Publish More\"}),\" & Stress Less\"]})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0RlZ3VsYXIgVGV4dCBCb2xk\",\"--framer-font-family\":'\"Degular Text Bold\", \"Degular Text Bold Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-line-height\":\"24px\",\"--framer-text-color\":\"var(--token-406ee2a1-9c29-42c5-961e-cfe02a30aaf7, rgb(18, 18, 18))\"},children:[/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-d1f6ecfd-2abf-4418-8a05-8920186c6135, rgb(0, 97, 255))\"},children:\"Publish More\"}),\" & Stress Less\"]})}),className:\"framer-swpcyz\",fonts:[\"CUSTOM;Degular Text Bold\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{jtC8vLgen:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0RlZ3VsYXIgVGV4dCBSZWd1bGFy\",\"--framer-font-family\":'\"Degular Text Regular\", \"Degular Text Regular Placeholder\", sans-serif',\"--framer-line-height\":\"18px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-406ee2a1-9c29-42c5-961e-cfe02a30aaf7, rgb(18, 18, 18))\"},children:\"Get inspired by audience feedback, FAQs, and past successes and leverage the republishing calendar.\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0RlZ3VsYXIgVGV4dCBSZWd1bGFy\",\"--framer-font-family\":'\"Degular Text Regular\", \"Degular Text Regular Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"21px\",\"--framer-text-color\":\"var(--token-406ee2a1-9c29-42c5-961e-cfe02a30aaf7, rgb(18, 18, 18))\"},children:\"Get inspired by audience feedback, FAQs, and past successes and leverage the republishing calendar.\"})}),className:\"framer-1p811b4\",fonts:[\"CUSTOM;Degular Text Regular\"],verticalAlignment:\"top\",withExternalLayout:true})})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1jqssn9\",\"data-framer-name\":\"Feature Card Three\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{jtC8vLgen:{background:{alt:\"Contant Planning\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+22635.5+50+0+74.7+0+544+0+0),pixelHeight:73,pixelWidth:80,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/juOV7dNfWQ84xp0bNa0HrXWgdc.png\"}},tICWQLge2:{background:{alt:\"Contant Planning\",fit:\"fill\",pixelHeight:73,pixelWidth:80,src:\"https://framerusercontent.com/images/juOV7dNfWQ84xp0bNa0HrXWgdc.png\"}},WSvcEG864:{background:{alt:\"Contant Planning\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+22420+120+0+144+0+0+0+0),pixelHeight:73,pixelWidth:80,src:\"https://framerusercontent.com/images/juOV7dNfWQ84xp0bNa0HrXWgdc.png\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"Contant Planning\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+22190+120+0+134+0+0+0+0),pixelHeight:73,pixelWidth:80,src:\"https://framerusercontent.com/images/juOV7dNfWQ84xp0bNa0HrXWgdc.png\"},className:\"framer-1x8345f\"})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-13mh0nf\",\"data-framer-name\":\"Content Wrap\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{jtC8vLgen:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0RlZ3VsYXIgVGV4dCBCb2xk\",\"--framer-font-family\":'\"Degular Text Bold\", \"Degular Text Bold Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"24px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-d1f6ecfd-2abf-4418-8a05-8920186c6135, rgb(0, 97, 255))\"},children:[/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-406ee2a1-9c29-42c5-961e-cfe02a30aaf7, rgb(18, 18, 18))\"},children:\"Manage & \"}),\"Grow Sponsorship\",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-406ee2a1-9c29-42c5-961e-cfe02a30aaf7, rgb(18, 18, 18))\"},children:\" Deals\"})]})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0RlZ3VsYXIgVGV4dCBCb2xk\",\"--framer-font-family\":'\"Degular Text Bold\", \"Degular Text Bold Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-line-height\":\"24px\",\"--framer-text-color\":\"var(--token-d1f6ecfd-2abf-4418-8a05-8920186c6135, rgb(0, 97, 255))\"},children:[/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-406ee2a1-9c29-42c5-961e-cfe02a30aaf7, rgb(18, 18, 18))\"},children:\"Manage & \"}),\"Grow Sponsorship\",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-406ee2a1-9c29-42c5-961e-cfe02a30aaf7, rgb(18, 18, 18))\"},children:\" Deals\"})]})}),className:\"framer-9hre55\",fonts:[\"CUSTOM;Degular Text Bold\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{jtC8vLgen:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0RlZ3VsYXIgVGV4dCBSZWd1bGFy\",\"--framer-font-family\":'\"Degular Text Regular\", \"Degular Text Regular Placeholder\", sans-serif',\"--framer-line-height\":\"18px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-406ee2a1-9c29-42c5-961e-cfe02a30aaf7, rgb(18, 18, 18))\"},children:\"Track sponsorships and stay organized at every stage to help you land more deals and grow your revenue.\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0RlZ3VsYXIgVGV4dCBSZWd1bGFy\",\"--framer-font-family\":'\"Degular Text Regular\", \"Degular Text Regular Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"21px\",\"--framer-text-color\":\"var(--token-406ee2a1-9c29-42c5-961e-cfe02a30aaf7, rgb(18, 18, 18))\"},children:\"Track sponsorships and stay organized at every stage to help you land more deals and grow your revenue.\"})}),className:\"framer-1xi0axo\",fonts:[\"CUSTOM;Degular Text Regular\"],verticalAlignment:\"top\",withExternalLayout:true})})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-e0td4m\",\"data-framer-name\":\"Feature Card Four\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{jtC8vLgen:{background:{alt:\"Contant Planning\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+22635.5+50+0+74.7+0+816+0+0),pixelHeight:74,pixelWidth:80,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/e7lnmLN0nCSfdwUgXB0IgQ3ACRo.png\"}},tICWQLge2:{background:{alt:\"Contant Planning\",fit:\"fill\",pixelHeight:74,pixelWidth:80,src:\"https://framerusercontent.com/images/e7lnmLN0nCSfdwUgXB0IgQ3ACRo.png\"}},WSvcEG864:{background:{alt:\"Contant Planning\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+22420+120+0+144+0+313+0+0),pixelHeight:74,pixelWidth:80,src:\"https://framerusercontent.com/images/e7lnmLN0nCSfdwUgXB0IgQ3ACRo.png\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"Contant Planning\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+22190+120+0+134+0+313+0+0),pixelHeight:74,pixelWidth:80,src:\"https://framerusercontent.com/images/e7lnmLN0nCSfdwUgXB0IgQ3ACRo.png\"},className:\"framer-1uk6wjb\"})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-61rdgf\",\"data-framer-name\":\"Content Wrap\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{jtC8vLgen:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0RlZ3VsYXIgVGV4dCBCb2xk\",\"--framer-font-family\":'\"Degular Text Bold\", \"Degular Text Bold Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"24px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-406ee2a1-9c29-42c5-961e-cfe02a30aaf7, rgb(18, 18, 18))\"},children:[\"Task, Project, and Goal \",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-d1f6ecfd-2abf-4418-8a05-8920186c6135, rgb(0, 97, 255))\"},children:\"Management\"})]})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0RlZ3VsYXIgVGV4dCBCb2xk\",\"--framer-font-family\":'\"Degular Text Bold\", \"Degular Text Bold Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-line-height\":\"24px\",\"--framer-text-color\":\"var(--token-406ee2a1-9c29-42c5-961e-cfe02a30aaf7, rgb(18, 18, 18))\"},children:[\"Task, Project, and Goal \",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-d1f6ecfd-2abf-4418-8a05-8920186c6135, rgb(0, 97, 255))\"},children:\"Management\"})]})}),className:\"framer-lrgntw\",fonts:[\"CUSTOM;Degular Text Bold\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{jtC8vLgen:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0RlZ3VsYXIgVGV4dCBSZWd1bGFy\",\"--framer-font-family\":'\"Degular Text Regular\", \"Degular Text Regular Placeholder\", sans-serif',\"--framer-line-height\":\"18px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-406ee2a1-9c29-42c5-961e-cfe02a30aaf7, rgb(18, 18, 18))\"},children:\"Easily stay focused, track progress, and reach your personal and business milestones.\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0RlZ3VsYXIgVGV4dCBSZWd1bGFy\",\"--framer-font-family\":'\"Degular Text Regular\", \"Degular Text Regular Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"21px\",\"--framer-text-color\":\"var(--token-406ee2a1-9c29-42c5-961e-cfe02a30aaf7, rgb(18, 18, 18))\"},children:\"Easily stay focused, track progress, and reach your personal and business milestones.\"})}),className:\"framer-19yqi1y\",fonts:[\"CUSTOM;Degular Text Regular\"],verticalAlignment:\"top\",withExternalLayout:true})})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-4c0x5w\",\"data-framer-name\":\"Feature Card Five\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{jtC8vLgen:{background:{alt:\"Contant Planning\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+22635.5+50+0+74.7+0+1088+0+0),pixelHeight:74,pixelWidth:81,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/8HQPt5abTGpPpY1F0B48M4EW2c.png\"}},tICWQLge2:{background:{alt:\"Contant Planning\",fit:\"fill\",pixelHeight:74,pixelWidth:81,src:\"https://framerusercontent.com/images/8HQPt5abTGpPpY1F0B48M4EW2c.png\"}},WSvcEG864:{background:{alt:\"Contant Planning\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+22420+120+0+144+0+313+0+0),pixelHeight:74,pixelWidth:81,src:\"https://framerusercontent.com/images/8HQPt5abTGpPpY1F0B48M4EW2c.png\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"Contant Planning\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+22190+120+0+134+0+313+0+0),pixelHeight:74,pixelWidth:81,src:\"https://framerusercontent.com/images/8HQPt5abTGpPpY1F0B48M4EW2c.png\"},className:\"framer-13mzk0h\"})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1vpllc\",\"data-framer-name\":\"Content Wrap\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{jtC8vLgen:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0RlZ3VsYXIgVGV4dCBCb2xk\",\"--framer-font-family\":'\"Degular Text Bold\", \"Degular Text Bold Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"24px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-406ee2a1-9c29-42c5-961e-cfe02a30aaf7, rgb(18, 18, 18))\"},children:[\"Deep \",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-d1f6ecfd-2abf-4418-8a05-8920186c6135, rgb(0, 97, 255))\"},children:\"Audience\"}),\" Understanding\"]})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0RlZ3VsYXIgVGV4dCBCb2xk\",\"--framer-font-family\":'\"Degular Text Bold\", \"Degular Text Bold Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-line-height\":\"24px\",\"--framer-text-color\":\"var(--token-406ee2a1-9c29-42c5-961e-cfe02a30aaf7, rgb(18, 18, 18))\"},children:[\"Deep \",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-d1f6ecfd-2abf-4418-8a05-8920186c6135, rgb(0, 97, 255))\"},children:\"Audience\"}),\" Understanding\"]})}),className:\"framer-1sky3uh\",fonts:[\"CUSTOM;Degular Text Bold\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{jtC8vLgen:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0RlZ3VsYXIgVGV4dCBSZWd1bGFy\",\"--framer-font-family\":'\"Degular Text Regular\", \"Degular Text Regular Placeholder\", sans-serif',\"--framer-line-height\":\"18px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-406ee2a1-9c29-42c5-961e-cfe02a30aaf7, rgb(18, 18, 18))\"},children:\"Log and track customer pain points, questions, and insights in the Problems & FAQs database.\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0RlZ3VsYXIgVGV4dCBSZWd1bGFy\",\"--framer-font-family\":'\"Degular Text Regular\", \"Degular Text Regular Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"21px\",\"--framer-text-color\":\"var(--token-406ee2a1-9c29-42c5-961e-cfe02a30aaf7, rgb(18, 18, 18))\"},children:\"Log and track customer pain points, questions, and insights in the Problems & FAQs database.\"})}),className:\"framer-jdk9nv\",fonts:[\"CUSTOM;Degular Text Regular\"],verticalAlignment:\"top\",withExternalLayout:true})})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-mk3tv8\",\"data-framer-name\":\"Feature Card Six\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{jtC8vLgen:{background:{alt:\"Contant Planning\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+22635.5+50+0+74.7+0+1360+0+0),pixelHeight:74,pixelWidth:81,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/7zhwpLwkgwFupk1Aa9szb5HbBBY.png\"}},tICWQLge2:{background:{alt:\"Contant Planning\",fit:\"fill\",pixelHeight:74,pixelWidth:81,src:\"https://framerusercontent.com/images/7zhwpLwkgwFupk1Aa9szb5HbBBY.png\"}},WSvcEG864:{background:{alt:\"Contant Planning\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+22420+120+0+144+0+313+0+0),pixelHeight:74,pixelWidth:81,src:\"https://framerusercontent.com/images/7zhwpLwkgwFupk1Aa9szb5HbBBY.png\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"Contant Planning\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+22190+120+0+134+0+313+0+0),pixelHeight:74,pixelWidth:81,src:\"https://framerusercontent.com/images/7zhwpLwkgwFupk1Aa9szb5HbBBY.png\"},className:\"framer-fbfixt\"})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-i2gxvn\",\"data-framer-name\":\"Content Wrap\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{jtC8vLgen:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0RlZ3VsYXIgVGV4dCBCb2xk\",\"--framer-font-family\":'\"Degular Text Bold\", \"Degular Text Bold Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"24px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-406ee2a1-9c29-42c5-961e-cfe02a30aaf7, rgb(18, 18, 18))\"},children:[\"Stay on Top of \",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-d1f6ecfd-2abf-4418-8a05-8920186c6135, rgb(0, 97, 255))\"},children:\"Revenue\"})]})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0RlZ3VsYXIgVGV4dCBCb2xk\",\"--framer-font-family\":'\"Degular Text Bold\", \"Degular Text Bold Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-line-height\":\"24px\",\"--framer-text-color\":\"var(--token-406ee2a1-9c29-42c5-961e-cfe02a30aaf7, rgb(18, 18, 18))\"},children:[\"Stay on Top of \",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-d1f6ecfd-2abf-4418-8a05-8920186c6135, rgb(0, 97, 255))\"},children:\"Revenue\"})]})}),className:\"framer-4k48ft\",fonts:[\"CUSTOM;Degular Text Bold\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{jtC8vLgen:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0RlZ3VsYXIgVGV4dCBSZWd1bGFy\",\"--framer-font-family\":'\"Degular Text Regular\", \"Degular Text Regular Placeholder\", sans-serif',\"--framer-line-height\":\"18px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-406ee2a1-9c29-42c5-961e-cfe02a30aaf7, rgb(18, 18, 18))\"},children:\"Track all income streams. Monitor contract progress, payment statuses, and ensure timely payments.\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0RlZ3VsYXIgVGV4dCBSZWd1bGFy\",\"--framer-font-family\":'\"Degular Text Regular\", \"Degular Text Regular Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"21px\",\"--framer-text-color\":\"var(--token-406ee2a1-9c29-42c5-961e-cfe02a30aaf7, rgb(18, 18, 18))\"},children:\"Track all income streams. Monitor contract progress, payment statuses, and ensure timely payments.\"})}),className:\"framer-s1bm1z\",fonts:[\"CUSTOM;Degular Text Regular\"],verticalAlignment:\"top\",withExternalLayout:true})})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1d2io0b\",\"data-framer-name\":\"Feature Card Seven\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{jtC8vLgen:{background:{alt:\"Contant Planning\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+22635.5+50+0+74.7+0+1632+0+0),pixelHeight:74,pixelWidth:80,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/0XDgPdUBDdrYwJRVkY4ISIBBCJI.png\"}},tICWQLge2:{background:{alt:\"Contant Planning\",fit:\"fill\",pixelHeight:74,pixelWidth:80,src:\"https://framerusercontent.com/images/0XDgPdUBDdrYwJRVkY4ISIBBCJI.png\"}},WSvcEG864:{background:{alt:\"Contant Planning\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+22420+120+0+144+0+626+0+0),pixelHeight:74,pixelWidth:80,src:\"https://framerusercontent.com/images/0XDgPdUBDdrYwJRVkY4ISIBBCJI.png\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"Contant Planning\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+22190+120+0+134+0+626+0+0),pixelHeight:74,pixelWidth:80,src:\"https://framerusercontent.com/images/0XDgPdUBDdrYwJRVkY4ISIBBCJI.png\"},className:\"framer-evjfpi\"})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1o1yxpl\",\"data-framer-name\":\"Content Wrap\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{jtC8vLgen:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0RlZ3VsYXIgVGV4dCBCb2xk\",\"--framer-font-family\":'\"Degular Text Bold\", \"Degular Text Bold Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"24px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-406ee2a1-9c29-42c5-961e-cfe02a30aaf7, rgb(18, 18, 18))\"},children:[\"Efficient Delegation with \",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-d1f6ecfd-2abf-4418-8a05-8920186c6135, rgb(0, 97, 255))\"},children:\"SOPs\"})]})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0RlZ3VsYXIgVGV4dCBCb2xk\",\"--framer-font-family\":'\"Degular Text Bold\", \"Degular Text Bold Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-line-height\":\"24px\",\"--framer-text-color\":\"var(--token-406ee2a1-9c29-42c5-961e-cfe02a30aaf7, rgb(18, 18, 18))\"},children:[\"Efficient Delegation with \",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-d1f6ecfd-2abf-4418-8a05-8920186c6135, rgb(0, 97, 255))\"},children:\"SOPs\"})]})}),className:\"framer-1ax7voz\",fonts:[\"CUSTOM;Degular Text Bold\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{jtC8vLgen:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0RlZ3VsYXIgVGV4dCBSZWd1bGFy\",\"--framer-font-family\":'\"Degular Text Regular\", \"Degular Text Regular Placeholder\", sans-serif',\"--framer-line-height\":\"18px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-406ee2a1-9c29-42c5-961e-cfe02a30aaf7, rgb(18, 18, 18))\"},children:\"Streamline your processes and delegate by documenting and centralizing your Standard Operating Procedures.\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0RlZ3VsYXIgVGV4dCBSZWd1bGFy\",\"--framer-font-family\":'\"Degular Text Regular\", \"Degular Text Regular Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"21px\",\"--framer-text-color\":\"var(--token-406ee2a1-9c29-42c5-961e-cfe02a30aaf7, rgb(18, 18, 18))\"},children:\"Streamline your processes and delegate by documenting and centralizing your Standard Operating Procedures.\"})}),className:\"framer-ppypqa\",fonts:[\"CUSTOM;Degular Text Regular\"],verticalAlignment:\"top\",withExternalLayout:true})})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1uu292a\",\"data-framer-name\":\"Feature Card Eight\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{jtC8vLgen:{background:{alt:\"Contant Planning\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+22635.5+50+0+74.7+0+1904+0+0),pixelHeight:74,pixelWidth:81,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/INPM9lSj6kf9U4L8H0J11gxifKE.png\"}},tICWQLge2:{background:{alt:\"Contant Planning\",fit:\"fill\",pixelHeight:74,pixelWidth:81,src:\"https://framerusercontent.com/images/INPM9lSj6kf9U4L8H0J11gxifKE.png\"}},WSvcEG864:{background:{alt:\"Contant Planning\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+22420+120+0+144+0+626+0+0),pixelHeight:74,pixelWidth:81,src:\"https://framerusercontent.com/images/INPM9lSj6kf9U4L8H0J11gxifKE.png\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"Contant Planning\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+22190+120+0+134+0+626+0+0),pixelHeight:74,pixelWidth:81,src:\"https://framerusercontent.com/images/INPM9lSj6kf9U4L8H0J11gxifKE.png\"},className:\"framer-s4qjxz\"})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1pq0flv\",\"data-framer-name\":\"Content Wrap\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{jtC8vLgen:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0RlZ3VsYXIgVGV4dCBCb2xk\",\"--framer-font-family\":'\"Degular Text Bold\", \"Degular Text Bold Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"24px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-406ee2a1-9c29-42c5-961e-cfe02a30aaf7, rgb(18, 18, 18))\"},children:[\"Simple yet Powerful \",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-d1f6ecfd-2abf-4418-8a05-8920186c6135, rgb(0, 97, 255))\"},children:\"CRM\"})]})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0RlZ3VsYXIgVGV4dCBCb2xk\",\"--framer-font-family\":'\"Degular Text Bold\", \"Degular Text Bold Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-line-height\":\"24px\",\"--framer-text-color\":\"var(--token-406ee2a1-9c29-42c5-961e-cfe02a30aaf7, rgb(18, 18, 18))\"},children:[\"Simple yet Powerful \",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-d1f6ecfd-2abf-4418-8a05-8920186c6135, rgb(0, 97, 255))\"},children:\"CRM\"})]})}),className:\"framer-1e7gbvh\",fonts:[\"CUSTOM;Degular Text Bold\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{jtC8vLgen:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0RlZ3VsYXIgVGV4dCBSZWd1bGFy\",\"--framer-font-family\":'\"Degular Text Regular\", \"Degular Text Regular Placeholder\", sans-serif',\"--framer-line-height\":\"18px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-406ee2a1-9c29-42c5-961e-cfe02a30aaf7, rgb(18, 18, 18))\"},children:\"Keep track of people, companies, and conversations with to nurture relationships and grow your network.\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0RlZ3VsYXIgVGV4dCBSZWd1bGFy\",\"--framer-font-family\":'\"Degular Text Regular\", \"Degular Text Regular Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"21px\",\"--framer-text-color\":\"var(--token-406ee2a1-9c29-42c5-961e-cfe02a30aaf7, rgb(18, 18, 18))\"},children:\"Keep track of people, companies, and conversations with to nurture relationships and grow your network.\"})}),className:\"framer-17fnsny\",fonts:[\"CUSTOM;Degular Text Regular\"],verticalAlignment:\"top\",withExternalLayout:true})})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-145dwah\",\"data-framer-name\":\"Feature Card Eight\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{jtC8vLgen:{background:{alt:\"Contant Planning\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+22635.5+50+0+74.7+0+2176+0+0),pixelHeight:74,pixelWidth:80,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/jyVeUvRjHNdkxJixhUcL1An3Ec.png\"}},tICWQLge2:{background:{alt:\"Contant Planning\",fit:\"fill\",pixelHeight:74,pixelWidth:80,src:\"https://framerusercontent.com/images/jyVeUvRjHNdkxJixhUcL1An3Ec.png\"}},WSvcEG864:{background:{alt:\"Contant Planning\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+22420+120+0+144+0+626+0+0),pixelHeight:74,pixelWidth:80,src:\"https://framerusercontent.com/images/jyVeUvRjHNdkxJixhUcL1An3Ec.png\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"Contant Planning\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+22190+120+0+134+0+626+0+0),pixelHeight:74,pixelWidth:80,src:\"https://framerusercontent.com/images/jyVeUvRjHNdkxJixhUcL1An3Ec.png\"},className:\"framer-10jdh6h\"})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1csudjx\",\"data-framer-name\":\"Content Wrap\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{jtC8vLgen:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0RlZ3VsYXIgVGV4dCBCb2xk\",\"--framer-font-family\":'\"Degular Text Bold\", \"Degular Text Bold Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"24px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-406ee2a1-9c29-42c5-961e-cfe02a30aaf7, rgb(18, 18, 18))\"},children:[\"Learn Quickly with Integrated \",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-d1f6ecfd-2abf-4418-8a05-8920186c6135, rgb(0, 97, 255))\"},children:\"Tutorials\"})]})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0RlZ3VsYXIgVGV4dCBCb2xk\",\"--framer-font-family\":'\"Degular Text Bold\", \"Degular Text Bold Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-line-height\":\"24px\",\"--framer-text-color\":\"var(--token-406ee2a1-9c29-42c5-961e-cfe02a30aaf7, rgb(18, 18, 18))\"},children:[\"Learn Quickly with Integrated \",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-d1f6ecfd-2abf-4418-8a05-8920186c6135, rgb(0, 97, 255))\"},children:\"Tutorials\"})]})}),className:\"framer-fgs0ui\",fonts:[\"CUSTOM;Degular Text Bold\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{jtC8vLgen:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0RlZ3VsYXIgVGV4dCBSZWd1bGFy\",\"--framer-font-family\":'\"Degular Text Regular\", \"Degular Text Regular Placeholder\", sans-serif',\"--framer-line-height\":\"18px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-406ee2a1-9c29-42c5-961e-cfe02a30aaf7, rgb(18, 18, 18))\"},children:\"Tutorials, tooltips, and a dedicated training library ensure you make the most of every feature.\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0RlZ3VsYXIgVGV4dCBSZWd1bGFy\",\"--framer-font-family\":'\"Degular Text Regular\", \"Degular Text Regular Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"21px\",\"--framer-text-color\":\"var(--token-406ee2a1-9c29-42c5-961e-cfe02a30aaf7, rgb(18, 18, 18))\"},children:\"Tutorials, tooltips, and a dedicated training library ensure you make the most of every feature.\"})}),className:\"framer-1jyd6rb\",fonts:[\"CUSTOM;Degular Text Regular\"],verticalAlignment:\"top\",withExternalLayout:true})})]})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-vqn9b8\",\"data-framer-name\":\"Feature Goals\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-dmwim7\",\"data-border\":true,\"data-framer-name\":\"Intro Wrap\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-susct\",\"data-framer-name\":\"Content Wrap\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-12uvfat\",\"data-framer-name\":\"Feed Back \",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{jtC8vLgen:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+22635.5+50+0+2522.7+0+0+25+0+0+0+0),pixelHeight:58,pixelWidth:79,src:\"https://framerusercontent.com/images/qnPHpRCgU5XVKoX7i5h7jEdkA.png\"}},tICWQLge2:{background:{alt:\"\",fit:\"fill\",pixelHeight:58,pixelWidth:79,src:\"https://framerusercontent.com/images/qnPHpRCgU5XVKoX7i5h7jEdkA.png\"}},WSvcEG864:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+22420+120+0+1107+0+0+40+0+0+0+0),pixelHeight:58,pixelWidth:79,src:\"https://framerusercontent.com/images/qnPHpRCgU5XVKoX7i5h7jEdkA.png\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+22190+120+0+1097+0+0+40+0+0+0+0),pixelHeight:58,pixelWidth:79,src:\"https://framerusercontent.com/images/qnPHpRCgU5XVKoX7i5h7jEdkA.png\"},className:\"framer-61yzpa\",\"data-framer-name\":\"Qutos\"})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1kqdii\",\"data-framer-name\":\"Title Wrap\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{jtC8vLgen:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0RlZ3VsYXIgVGV4dCBSZWd1bGFy\",\"--framer-font-family\":'\"Degular Text Regular\", \"Degular Text Regular Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-letter-spacing\":\"-0.3px\",\"--framer-line-height\":\"120%\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-21b87942-b5ba-4341-95a9-cb6b167de460, rgb(0, 0, 0))\"},children:[/*#__PURE__*/_jsx(\"em\",{children:'\"I was surprised at how much was included with the template - you can use this to run your whole business, which makes it a '}),/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"Q1VTVE9NO0RlZ3VsYXIgVGV4dCBCb2xk\",\"--framer-font-family\":'\"Degular Text Bold\", \"Degular Text Bold Placeholder\", sans-serif'},children:/*#__PURE__*/_jsx(\"em\",{children:\"precious resource for creators to want to grow and scale.\"})}),/*#__PURE__*/_jsx(\"em\",{children:'\"'})]})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0RlZ3VsYXIgVGV4dCBSZWd1bGFy\",\"--framer-font-family\":'\"Degular Text Regular\", \"Degular Text Regular Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-letter-spacing\":\"-0.3px\",\"--framer-line-height\":\"130%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-21b87942-b5ba-4341-95a9-cb6b167de460, rgb(0, 0, 0))\"},children:[/*#__PURE__*/_jsx(\"em\",{children:'\"I was surprised at how much was included with the template - you can use this to run your whole business, which makes it a '}),/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"Q1VTVE9NO0RlZ3VsYXIgVGV4dCBCb2xk\",\"--framer-font-family\":'\"Degular Text Bold\", \"Degular Text Bold Placeholder\", sans-serif'},children:/*#__PURE__*/_jsx(\"em\",{children:\"precious resource for creators to want to grow and scale.\"})}),/*#__PURE__*/_jsx(\"em\",{children:'\"'})]})}),className:\"framer-zft0ht\",fonts:[\"CUSTOM;Degular Text Regular\",\"CUSTOM;Degular Text Bold\"],verticalAlignment:\"top\",withExternalLayout:true})})})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-il043v\",\"data-framer-name\":\"Feed Back Image\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-ecw49t\",\"data-framer-name\":\"Name Wrap\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-d6e80i\",\"data-framer-name\":\"Intro Name\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{jtC8vLgen:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+22635.5+50+0+2522.7+0+0+25+0+185+0+0+0),pixelHeight:120,pixelWidth:117,positionX:\"left\",positionY:\"top\",src:\"https://framerusercontent.com/images/z9CqPSnZ2eez8brCJYs2o4rNMU.jpg\"}},tICWQLge2:{background:{alt:\"\",fit:\"fill\",pixelHeight:120,pixelWidth:117,positionX:\"left\",positionY:\"top\",src:\"https://framerusercontent.com/images/z9CqPSnZ2eez8brCJYs2o4rNMU.jpg\"}},WSvcEG864:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+22420+120+0+1107+0+0+40+0+221+0+63+2),pixelHeight:120,pixelWidth:117,positionX:\"left\",positionY:\"top\",src:\"https://framerusercontent.com/images/z9CqPSnZ2eez8brCJYs2o4rNMU.jpg\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+22190+120+0+1097+0+0+40+0+221+0+63+2),pixelHeight:120,pixelWidth:117,positionX:\"left\",positionY:\"top\",src:\"https://framerusercontent.com/images/z9CqPSnZ2eez8brCJYs2o4rNMU.jpg\"},className:\"framer-lyczd6\"})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1hcuejl\",\"data-framer-name\":\"Name\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{jtC8vLgen:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0RlZ3VsYXIgVGV4dCBCb2xk\",\"--framer-font-family\":'\"Degular Text Bold\", \"Degular Text Bold Placeholder\", sans-serif',\"--framer-line-height\":\"22px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-406ee2a1-9c29-42c5-961e-cfe02a30aaf7, rgb(18, 18, 18))\"},children:\"Sue McLachlan\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0RlZ3VsYXIgVGV4dCBCb2xk\",\"--framer-font-family\":'\"Degular Text Bold\", \"Degular Text Bold Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"22px\",\"--framer-text-color\":\"var(--token-406ee2a1-9c29-42c5-961e-cfe02a30aaf7, rgb(18, 18, 18))\"},children:\"Sue McLachlan\"})}),className:\"framer-vuc8ru\",fonts:[\"CUSTOM;Degular Text Bold\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{jtC8vLgen:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0RlZ3VsYXIgVGV4dCBSZWd1bGFy\",\"--framer-font-family\":'\"Degular Text Regular\", \"Degular Text Regular Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-line-height\":\"16px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-406ee2a1-9c29-42c5-961e-cfe02a30aaf7, rgb(18, 18, 18))\"},children:\"Kajabi Consultant\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0RlZ3VsYXIgVGV4dCBSZWd1bGFy\",\"--framer-font-family\":'\"Degular Text Regular\", \"Degular Text Regular Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-line-height\":\"16px\",\"--framer-text-color\":\"var(--token-406ee2a1-9c29-42c5-961e-cfe02a30aaf7, rgb(18, 18, 18))\"},children:\"Kajabi Consultant\"})}),className:\"framer-18u9oyi\",fonts:[\"CUSTOM;Degular Text Regular\"],verticalAlignment:\"top\",withExternalLayout:true})})]})]})})]})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-obgdsy\",\"data-framer-name\":\"Button Wrap  Wrap\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{jtC8vLgen:{width:`min(min(min(max(${componentViewport?.width||\"100vw\"} - 40px, 1px), 1260px), 900px), 365px)`,y:(componentViewport?.y||0)+0+22635.5+50+0+2522.7+0+303+0+0},tICWQLge2:{y:undefined},WSvcEG864:{y:(componentViewport?.y||0)+0+22420+120+0+1107+0+535+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:73,width:\"364px\",y:(componentViewport?.y||0)+0+22190+120+0+1097+0+535+0+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-10k7nej-container\",isModuleExternal:true,nodeId:\"Ql9Z84EgW\",scopeId:\"OMp430bgy\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{jtC8vLgen:{variant:\"lbE2C1YKC\"}},children:/*#__PURE__*/_jsx(BannerButton,{height:\"100%\",i9h0tMlqE:\"https://store.creatorscience.com/buy/28aeab8d-5b53-4840-9055-080794014e8b\",id:\"Ql9Z84EgW\",layoutId:\"Ql9Z84EgW\",style:{width:\"100%\"},variant:\"fdB6OMGxz\",width:\"100%\"})})})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1d76466\",\"data-framer-name\":\"Prcing Text\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{jtC8vLgen:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7U3BhY2UgTW9uby1yZWd1bGFy\",\"--framer-font-family\":'\"Space Mono\", monospace',\"--framer-font-size\":\"12px\",\"--framer-letter-spacing\":\"0.65px\",\"--framer-line-height\":\"13px\",\"--framer-text-color\":\"var(--token-ead53e59-221f-4b46-951f-2920018f76b7, rgb(30, 30, 30))\",\"--framer-text-transform\":\"uppercase\"},children:\"lifetime access for $297\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7U3BhY2UgTW9uby1yZWd1bGFy\",\"--framer-font-family\":'\"Space Mono\", monospace',\"--framer-font-size\":\"13px\",\"--framer-letter-spacing\":\"0.65px\",\"--framer-line-height\":\"13px\",\"--framer-text-color\":\"var(--token-ead53e59-221f-4b46-951f-2920018f76b7, rgb(30, 30, 30))\",\"--framer-text-transform\":\"uppercase\"},children:\"lifetime access for $297\"})}),className:\"framer-ngl6dr\",fonts:[\"GF;Space Mono-regular\"],verticalAlignment:\"top\",withExternalLayout:true})})})]})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-7lpfvf\",\"data-framer-name\":\"Arrow Wrap\",id:elementId3,ref:ref4,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{jtC8vLgen:{__framer__spring:{damping:80,delay:0,duration:.3,ease:[.44,0,.56,1],mass:1,stiffness:300,type:\"spring\"},background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+22635.5+50+-92+0),pixelHeight:268,pixelWidth:90,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/fLw1am5ZgNembsd6dMhCtdW3A1E.png\"}},tICWQLge2:{background:{alt:\"\",fit:\"fit\",pixelHeight:352,pixelWidth:45,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/riNtQ8XcPdXmj1ka85l5iwp77Rg.png\"}},WSvcEG864:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+22420+120+-205+0),pixelHeight:352,pixelWidth:45,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/riNtQ8XcPdXmj1ka85l5iwp77Rg.png\"}}},children:/*#__PURE__*/_jsx(ImageWithFX,{__framer__spring:{damping:60,delay:0,duration:.3,ease:[.44,0,.56,1],mass:1,stiffness:500,type:\"spring\"},__framer__styleTransformEffectEnabled:true,__framer__transformTargets:[{target:{opacity:.2,rotate:0,rotateX:0,rotateY:0,scale:.2,skewX:0,skewY:0,x:0,y:0}},{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\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+22190+120+-205+0),pixelHeight:352,pixelWidth:45,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/riNtQ8XcPdXmj1ka85l5iwp77Rg.png\"},className:\"framer-q4hknw\"})})})]})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-5vluwg\",\"data-framer-name\":\"About Section\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-vvd4up\",\"data-framer-name\":\"Container\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-43f0qv\",\"data-framer-name\":\"Image Wrap\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{jtC8vLgen:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+25657.2+40+0+0+0+0+0),pixelHeight:1486,pixelWidth:1046,positionX:\"center\",positionY:\"top\",sizes:`min(min(${componentViewport?.width||\"100vw\"} - 40px, 1216px) * 0.9, 360px)`,src:\"https://framerusercontent.com/images/2LiTW4H18bGUe2ukhftB6ZVfw.png\",srcSet:\"https://framerusercontent.com/images/2LiTW4H18bGUe2ukhftB6ZVfw.png?scale-down-to=1024 720w,https://framerusercontent.com/images/2LiTW4H18bGUe2ukhftB6ZVfw.png 1046w\"}},tICWQLge2:{background:{alt:\"\",fit:\"fit\",pixelHeight:1486,pixelWidth:1046,positionX:\"center\",positionY:\"center\",sizes:`min(min(max(${componentViewport?.width||\"100vw\"} - 40px, 1px), 1216px), 420px)`,src:\"https://framerusercontent.com/images/2LiTW4H18bGUe2ukhftB6ZVfw.png\",srcSet:\"https://framerusercontent.com/images/2LiTW4H18bGUe2ukhftB6ZVfw.png?scale-down-to=1024 720w,https://framerusercontent.com/images/2LiTW4H18bGUe2ukhftB6ZVfw.png 1046w\"}},WSvcEG864:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+24398+120+51+0+0),pixelHeight:1486,pixelWidth:1046,sizes:`min(max((min(max(${componentViewport?.width||\"100vw\"}, 1px), 1216px) - 80px) / 2, 1px), 520px)`,src:\"https://framerusercontent.com/images/2LiTW4H18bGUe2ukhftB6ZVfw.png\",srcSet:\"https://framerusercontent.com/images/2LiTW4H18bGUe2ukhftB6ZVfw.png?scale-down-to=1024 720w,https://framerusercontent.com/images/2LiTW4H18bGUe2ukhftB6ZVfw.png 1046w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+24158+120+6+0+0),pixelHeight:1486,pixelWidth:1046,sizes:`min(max((min(max(${componentViewport?.width||\"100vw\"}, 1px), 1216px) - 80px) / 2, 1px), 520px)`,src:\"https://framerusercontent.com/images/2LiTW4H18bGUe2ukhftB6ZVfw.png\",srcSet:\"https://framerusercontent.com/images/2LiTW4H18bGUe2ukhftB6ZVfw.png?scale-down-to=1024 720w,https://framerusercontent.com/images/2LiTW4H18bGUe2ukhftB6ZVfw.png 1046w\"},className:\"framer-1t94n0c\",\"data-framer-name\":\"Image\"})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-h6n2mt\",\"data-framer-name\":\"About Content Wrap\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-6d3uvh\",\"data-framer-name\":\"Heading Wrap\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{jtC8vLgen:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"Q1VTVE9NO0RlZ3VsYXIgVGV4dCBCb2xk\",\"--framer-font-family\":'\"Degular Text Bold\", \"Degular Text Bold Placeholder\", sans-serif',\"--framer-font-size\":\"25px\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"30px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-406ee2a1-9c29-42c5-961e-cfe02a30aaf7, rgb(18, 18, 18))\"},children:\"Created by Jay Clouse\"})})},WSvcEG864:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"Q1VTVE9NO0RlZ3VsYXIgVGV4dCBCb2xk\",\"--framer-font-family\":'\"Degular Text Bold\", \"Degular Text Bold Placeholder\", sans-serif',\"--framer-font-size\":\"46px\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"50px\",\"--framer-text-color\":\"var(--token-406ee2a1-9c29-42c5-961e-cfe02a30aaf7, rgb(18, 18, 18))\"},children:\"Created by Jay Clouse\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"Q1VTVE9NO0RlZ3VsYXIgVGV4dCBCb2xk\",\"--framer-font-family\":'\"Degular Text Bold\", \"Degular Text Bold Placeholder\", sans-serif',\"--framer-font-size\":\"35px\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"40px\",\"--framer-text-color\":\"var(--token-406ee2a1-9c29-42c5-961e-cfe02a30aaf7, rgb(18, 18, 18))\"},children:\"Created by Jay Clouse\"})}),className:\"framer-1c2sll\",fonts:[\"CUSTOM;Degular Text Bold\"],verticalAlignment:\"top\",withExternalLayout:true})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-15lv7z6\",\"data-framer-name\":\"Text Wrap\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{jtC8vLgen:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0RlZ3VsYXIgVGV4dCBSZWd1bGFy\",\"--framer-font-family\":'\"Degular Text Regular\", \"Degular Text Regular Placeholder\", sans-serif',\"--framer-line-height\":\"20px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-406ee2a1-9c29-42c5-961e-cfe02a30aaf7, rgb(18, 18, 18))\"},children:\"Hello, my friend! \"})})},WSvcEG864:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0RlZ3VsYXIgVGV4dCBSZWd1bGFy\",\"--framer-font-family\":'\"Degular Text Regular\", \"Degular Text Regular Placeholder\", sans-serif',\"--framer-font-size\":\"22px\",\"--framer-line-height\":\"28px\",\"--framer-text-color\":\"var(--token-406ee2a1-9c29-42c5-961e-cfe02a30aaf7, rgb(18, 18, 18))\"},children:\"Hello, my friend! \"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0RlZ3VsYXIgVGV4dCBSZWd1bGFy\",\"--framer-font-family\":'\"Degular Text Regular\", \"Degular Text Regular Placeholder\", sans-serif',\"--framer-font-size\":\"22px\",\"--framer-line-height\":\"24px\",\"--framer-text-color\":\"var(--token-406ee2a1-9c29-42c5-961e-cfe02a30aaf7, rgb(18, 18, 18))\"},children:\"Hello, my friend! \"})}),className:\"framer-l6ec2r\",fonts:[\"CUSTOM;Degular Text Regular\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{jtC8vLgen:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0RlZ3VsYXIgVGV4dCBSZWd1bGFy\",\"--framer-font-family\":'\"Degular Text Regular\", \"Degular Text Regular Placeholder\", sans-serif',\"--framer-line-height\":\"20px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-406ee2a1-9c29-42c5-961e-cfe02a30aaf7, rgb(18, 18, 18))\"},children:[\"You know me as the founder of \",/*#__PURE__*/_jsx(Link,{href:\"https://creatorscience.com/\",motionChild:true,nodeId:\"nwR6rjsQi\",openInNewTab:true,scopeId:\"OMp430bgy\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-uh7q67\",\"data-styles-preset\":\"dqoM54HW_\",children:/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-decoration\":\"underline\"},children:\"Creator Science.\"})})})]})})},tICWQLge2:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0RlZ3VsYXIgVGV4dCBSZWd1bGFy\",\"--framer-font-family\":'\"Degular Text Regular\", \"Degular Text Regular Placeholder\", sans-serif',\"--framer-font-size\":\"22px\",\"--framer-line-height\":\"24px\",\"--framer-text-color\":\"var(--token-406ee2a1-9c29-42c5-961e-cfe02a30aaf7, rgb(18, 18, 18))\"},children:[\"You may know me as the founder of \",/*#__PURE__*/_jsx(Link,{href:\"https://creatorscience.com/\",motionChild:true,nodeId:\"nwR6rjsQi\",openInNewTab:true,scopeId:\"OMp430bgy\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-uh7q67\",\"data-styles-preset\":\"dqoM54HW_\",children:/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-decoration\":\"underline\"},children:\"Creator Science.\"})})})]})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0RlZ3VsYXIgVGV4dCBSZWd1bGFy\",\"--framer-font-family\":'\"Degular Text Regular\", \"Degular Text Regular Placeholder\", sans-serif',\"--framer-font-size\":\"22px\",\"--framer-line-height\":\"28px\",\"--framer-text-color\":\"var(--token-406ee2a1-9c29-42c5-961e-cfe02a30aaf7, rgb(18, 18, 18))\"},children:[\"You may know me as the founder of \",/*#__PURE__*/_jsx(Link,{href:\"https://creatorscience.com/\",motionChild:true,nodeId:\"nwR6rjsQi\",openInNewTab:true,scopeId:\"OMp430bgy\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-uh7q67\",\"data-styles-preset\":\"dqoM54HW_\",children:/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-decoration\":\"underline\"},children:\"Creator Science.\"})})})]})}),className:\"framer-1mnxa93\",fonts:[\"CUSTOM;Degular Text Regular\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{jtC8vLgen:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0RlZ3VsYXIgVGV4dCBSZWd1bGFy\",\"--framer-font-family\":'\"Degular Text Regular\", \"Degular Text Regular Placeholder\", sans-serif',\"--framer-line-height\":\"20px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-406ee2a1-9c29-42c5-961e-cfe02a30aaf7, rgb(18, 18, 18))\"},children:\"I've been a creator for seven years now \u2013 and people constantly ask me how I'm able to be so prolific. Well, my systems are my secret. And for the last few years, my most important systems have been built in Notion.\"})})},WSvcEG864:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0RlZ3VsYXIgVGV4dCBSZWd1bGFy\",\"--framer-font-family\":'\"Degular Text Regular\", \"Degular Text Regular Placeholder\", sans-serif',\"--framer-font-size\":\"22px\",\"--framer-line-height\":\"28px\",\"--framer-text-color\":\"var(--token-406ee2a1-9c29-42c5-961e-cfe02a30aaf7, rgb(18, 18, 18))\"},children:\"I've been a creator for seven years now \u2013 and people constantly ask me how I'm able to be so prolific. Well, my systems are my secret. And for the last few years, my most important systems have been built in Notion.\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0RlZ3VsYXIgVGV4dCBSZWd1bGFy\",\"--framer-font-family\":'\"Degular Text Regular\", \"Degular Text Regular Placeholder\", sans-serif',\"--framer-font-size\":\"22px\",\"--framer-line-height\":\"24px\",\"--framer-text-color\":\"var(--token-406ee2a1-9c29-42c5-961e-cfe02a30aaf7, rgb(18, 18, 18))\"},children:\"I've been a creator for seven years now \u2013 and people constantly ask me how I'm able to be so prolific. Well, my systems are my secret. And for the last few years, my most important systems have been built in Notion.\"})}),className:\"framer-mn20k2\",fonts:[\"CUSTOM;Degular Text Regular\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{jtC8vLgen:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0RlZ3VsYXIgVGV4dCBSZWd1bGFy\",\"--framer-font-family\":'\"Degular Text Regular\", \"Degular Text Regular Placeholder\", sans-serif',\"--framer-line-height\":\"20px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-406ee2a1-9c29-42c5-961e-cfe02a30aaf7, rgb(18, 18, 18))\"},children:\"CreatorHQ is quite literally the system I've built to enable me (and now my team) to get the most out of our precious time. I'm not a Notion certified expert, and you don't need to be either to use this.\"})})},WSvcEG864:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0RlZ3VsYXIgVGV4dCBSZWd1bGFy\",\"--framer-font-family\":'\"Degular Text Regular\", \"Degular Text Regular Placeholder\", sans-serif',\"--framer-font-size\":\"22px\",\"--framer-line-height\":\"28px\",\"--framer-text-color\":\"var(--token-406ee2a1-9c29-42c5-961e-cfe02a30aaf7, rgb(18, 18, 18))\"},children:\"CreatorHQ is quite literally the system I've built to enable me (and now my team) to get the most out of our precious time. I'm not a Notion certified expert, and you don't need to be either to use this.\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0RlZ3VsYXIgVGV4dCBSZWd1bGFy\",\"--framer-font-family\":'\"Degular Text Regular\", \"Degular Text Regular Placeholder\", sans-serif',\"--framer-font-size\":\"22px\",\"--framer-line-height\":\"24px\",\"--framer-text-color\":\"var(--token-406ee2a1-9c29-42c5-961e-cfe02a30aaf7, rgb(18, 18, 18))\"},children:\"CreatorHQ is quite literally the system I've built to enable me (and now my team) to get the most out of our precious time. I'm not a Notion certified expert, and you don't need to be either to use this.\"})}),className:\"framer-1505n2o\",fonts:[\"CUSTOM;Degular Text Regular\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{jtC8vLgen:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0RlZ3VsYXIgVGV4dCBSZWd1bGFy\",\"--framer-font-family\":'\"Degular Text Regular\", \"Degular Text Regular Placeholder\", sans-serif',\"--framer-line-height\":\"20px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-406ee2a1-9c29-42c5-961e-cfe02a30aaf7, rgb(18, 18, 18))\"},children:\"CreatorHQ was designed to be easy for ME and my team to use \u2013 and it's helped us generate more than $1 million in revenue. I promise it'll help you too.\"})})},WSvcEG864:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0RlZ3VsYXIgVGV4dCBSZWd1bGFy\",\"--framer-font-family\":'\"Degular Text Regular\", \"Degular Text Regular Placeholder\", sans-serif',\"--framer-font-size\":\"22px\",\"--framer-line-height\":\"28px\",\"--framer-text-color\":\"var(--token-406ee2a1-9c29-42c5-961e-cfe02a30aaf7, rgb(18, 18, 18))\"},children:\"CreatorHQ was designed to be easy for ME and my team to use \u2013 and it's helped us generate more than $1 million in revenue. I promise it'll help you too.\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0RlZ3VsYXIgVGV4dCBSZWd1bGFy\",\"--framer-font-family\":'\"Degular Text Regular\", \"Degular Text Regular Placeholder\", sans-serif',\"--framer-font-size\":\"22px\",\"--framer-line-height\":\"24px\",\"--framer-text-color\":\"var(--token-406ee2a1-9c29-42c5-961e-cfe02a30aaf7, rgb(18, 18, 18))\"},children:\"CreatorHQ was designed to be easy for ME and my team to use \u2013 and it's helped us generate more than $1 million in revenue. I promise it'll help you too.\"})}),className:\"framer-1ttbmu6\",fonts:[\"CUSTOM;Degular Text Regular\"],verticalAlignment:\"top\",withExternalLayout:true})})]})]})]})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-18cja5u\",\"data-framer-name\":\"Testimoonial Section\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1kya76u\",\"data-framer-name\":\"Container\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-99fk0z\",\"data-framer-name\":\"Title Wrap\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{jtC8vLgen:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"Q1VTVE9NO0RlZ3VsYXIgVGV4dCBCb2xk\",\"--framer-font-family\":'\"Degular Text Bold\", \"Degular Text Bold Placeholder\", sans-serif',\"--framer-font-size\":\"25px\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"30px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-406ee2a1-9c29-42c5-961e-cfe02a30aaf7, rgb(18, 18, 18))\"},children:\"CreatorHQ is loved by creators like you\"})})},WSvcEG864:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"Q1VTVE9NO0RlZ3VsYXIgVGV4dCBCb2xk\",\"--framer-font-family\":'\"Degular Text Bold\", \"Degular Text Bold Placeholder\", sans-serif',\"--framer-font-size\":\"46px\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"50px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-406ee2a1-9c29-42c5-961e-cfe02a30aaf7, rgb(18, 18, 18))\"},children:\"CreatorHQ is loved by creators like you\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"Q1VTVE9NO0RlZ3VsYXIgVGV4dCBCb2xk\",\"--framer-font-family\":'\"Degular Text Bold\", \"Degular Text Bold Placeholder\", sans-serif',\"--framer-font-size\":\"35px\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"40px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-406ee2a1-9c29-42c5-961e-cfe02a30aaf7, rgb(18, 18, 18))\"},children:\"CreatorHQ is loved by creators like you\"})}),className:\"framer-k9bzqx\",fonts:[\"CUSTOM;Degular Text Bold\"],verticalAlignment:\"top\",withExternalLayout:true})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1fg3x2r-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"oEDcNEu0Z\",scopeId:\"OMp430bgy\",children:/*#__PURE__*/_jsx(Embed,{height:\"100%\",html:'<script src=\"https://widget.senja.io/widget/2951fac7-f1f8-4664-969c-c45d3c47fad9/platform.js\" type=\"text/javascript\" async></script>\\n<div class=\"senja-embed\" data-id=\"2951fac7-f1f8-4664-969c-c45d3c47fad9\" data-mode=\"shadow\" data-lazyload=\"false\" style=\"display: block;\"></div>',id:\"oEDcNEu0Z\",layoutId:\"oEDcNEu0Z\",style:{width:\"100%\"},type:\"html\",url:\"https://widget.senja.io/widget/4d400a85-f3ca-46e4-98c7-90b6a727b280\",width:\"100%\"})})})]})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1gxz9n5\",\"data-framer-name\":\"pricing Section\",id:elementId4,ref:ref5,children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-l61in2\",\"data-framer-name\":\"Container\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1n63pwe\",\"data-framer-name\":\"Title Wrap\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{jtC8vLgen:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"Q1VTVE9NO0RlZ3VsYXIgVGV4dCBCb2xk\",\"--framer-font-family\":'\"Degular Text Bold\", \"Degular Text Bold Placeholder\", sans-serif',\"--framer-font-size\":\"25px\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"30px\",\"--framer-text-color\":\"var(--token-19182416-018f-4aaf-8caa-795abe04b4ff, rgb(255, 255, 255))\"},children:\"Pay once, use forever\"})})},WSvcEG864:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"Q1VTVE9NO0RlZ3VsYXIgVGV4dCBCb2xk\",\"--framer-font-family\":'\"Degular Text Bold\", \"Degular Text Bold Placeholder\", sans-serif',\"--framer-font-size\":\"46px\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"50px\",\"--framer-text-color\":\"var(--token-19182416-018f-4aaf-8caa-795abe04b4ff, rgb(255, 255, 255))\"},children:\"Pay once, use forever\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"Q1VTVE9NO0RlZ3VsYXIgVGV4dCBCb2xk\",\"--framer-font-family\":'\"Degular Text Bold\", \"Degular Text Bold Placeholder\", sans-serif',\"--framer-font-size\":\"35px\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"40px\",\"--framer-text-color\":\"var(--token-19182416-018f-4aaf-8caa-795abe04b4ff, rgb(255, 255, 255))\"},children:\"Pay once, use forever\"})}),className:\"framer-npp9wi\",fonts:[\"CUSTOM;Degular Text Bold\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{jtC8vLgen:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0RlZ3VsYXIgVGV4dCBSZWd1bGFy\",\"--framer-font-family\":'\"Degular Text Regular\", \"Degular Text Regular Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"20px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-19182416-018f-4aaf-8caa-795abe04b4ff, rgb(255, 255, 255))\"},children:\"Enjoy lifetime access, occasional updates, and no subscription fees.\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0RlZ3VsYXIgVGV4dCBSZWd1bGFy\",\"--framer-font-family\":'\"Degular Text Regular\", \"Degular Text Regular Placeholder\", sans-serif',\"--framer-font-size\":\"22px\",\"--framer-line-height\":\"24px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-19182416-018f-4aaf-8caa-795abe04b4ff, rgb(255, 255, 255))\"},children:\"Enjoy lifetime access, occasional updates, and no subscription fees.\"})}),className:\"framer-rm6ls\",fonts:[\"CUSTOM;Degular Text Regular\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-pcic4k\",\"data-framer-name\":\"Prcing Card \",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1npybh\",\"data-framer-name\":\"Pricing Fill Color\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1ydfzfb\",\"data-framer-name\":\"Title Wrap\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-6749od\",\"data-framer-name\":\"Text Wrap\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{jtC8vLgen:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"Q1VTVE9NO0RlZ3VsYXIgVGV4dCBCb2xk\",\"--framer-font-family\":'\"Degular Text Bold\", \"Degular Text Bold Placeholder\", sans-serif',\"--framer-font-size\":\"25px\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"30px\",\"--framer-text-color\":\"var(--token-19182416-018f-4aaf-8caa-795abe04b4ff, rgb(255, 255, 255))\"},children:\"CreatorHQ\"})})},WSvcEG864:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"Q1VTVE9NO0RlZ3VsYXIgVGV4dCBCb2xk\",\"--framer-font-family\":'\"Degular Text Bold\", \"Degular Text Bold Placeholder\", sans-serif',\"--framer-font-size\":\"46px\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"50px\",\"--framer-text-color\":\"var(--token-19182416-018f-4aaf-8caa-795abe04b4ff, rgb(255, 255, 255))\"},children:\"CreatorHQ\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"Q1VTVE9NO0RlZ3VsYXIgVGV4dCBCb2xk\",\"--framer-font-family\":'\"Degular Text Bold\", \"Degular Text Bold Placeholder\", sans-serif',\"--framer-font-size\":\"35px\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"40px\",\"--framer-text-color\":\"var(--token-19182416-018f-4aaf-8caa-795abe04b4ff, rgb(255, 255, 255))\"},children:\"CreatorHQ\"})}),className:\"framer-t4wd7j\",fonts:[\"CUSTOM;Degular Text Bold\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{jtC8vLgen:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0RlZ3VsYXIgVGV4dCBSZWd1bGFy\",\"--framer-font-family\":'\"Degular Text Regular\", \"Degular Text Regular Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"22px\",\"--framer-text-color\":\"var(--token-19182416-018f-4aaf-8caa-795abe04b4ff, rgb(255, 255, 255))\"},children:\"The Complete Creator Operating System\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0RlZ3VsYXIgVGV4dCBSZWd1bGFy\",\"--framer-font-family\":'\"Degular Text Regular\", \"Degular Text Regular Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-line-height\":\"22px\",\"--framer-text-color\":\"var(--token-19182416-018f-4aaf-8caa-795abe04b4ff, rgb(255, 255, 255))\"},children:\"The Complete Creator Operating System\"})}),className:\"framer-1y0wfgc\",fonts:[\"CUSTOM;Degular Text Regular\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1giz3xk\",\"data-framer-name\":\"Prcing text\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{jtC8vLgen:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0RlZ3VsYXIgVGV4dCBCb2xk\",\"--framer-font-family\":'\"Degular Text Bold\", \"Degular Text Bold Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-line-height\":\"22px\",\"--framer-text-color\":\"var(--token-19182416-018f-4aaf-8caa-795abe04b4ff, rgb(255, 255, 255))\"},children:\"$297\"})})},WSvcEG864:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0RlZ3VsYXIgVGV4dCBCb2xk\",\"--framer-font-family\":'\"Degular Text Bold\", \"Degular Text Bold Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-line-height\":\"26px\",\"--framer-text-color\":\"var(--token-19182416-018f-4aaf-8caa-795abe04b4ff, rgb(255, 255, 255))\"},children:\"$297\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0RlZ3VsYXIgVGV4dCBCb2xk\",\"--framer-font-family\":'\"Degular Text Bold\", \"Degular Text Bold Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-line-height\":\"22px\",\"--framer-text-color\":\"var(--token-19182416-018f-4aaf-8caa-795abe04b4ff, rgb(255, 255, 255))\"},children:\"$297\"})}),className:\"framer-n4fslg\",fonts:[\"CUSTOM;Degular Text Bold\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0RlZ3VsYXIgVGV4dCBSZWd1bGFy\",\"--framer-font-family\":'\"Degular Text Regular\", \"Degular Text Regular Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-line-height\":\"16px\",\"--framer-text-color\":\"var(--token-19182416-018f-4aaf-8caa-795abe04b4ff, rgb(255, 255, 255))\"},children:\"one-time-payment\"})}),className:\"framer-83vj6k\",fonts:[\"CUSTOM;Degular Text Regular\"],verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-rjhtmf\",\"data-framer-name\":\"Points Wrap\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1atz13h\",\"data-framer-name\":\"Points\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{jtC8vLgen:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+27237.2+60+0+175+2+25+205+0+0+0),pixelHeight:40,pixelWidth:26,src:\"https://framerusercontent.com/images/CY1R1hYL9R1HFCCLoekg5Czxs.png\"}},tICWQLge2:{background:{alt:\"\",fit:\"fill\",pixelHeight:40,pixelWidth:26,src:\"https://framerusercontent.com/images/CY1R1hYL9R1HFCCLoekg5Czxs.png\"}},WSvcEG864:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+26230+100+0+257+2+30+244+0+0+.5),pixelHeight:40,pixelWidth:26,src:\"https://framerusercontent.com/images/CY1R1hYL9R1HFCCLoekg5Czxs.png\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+25890+100+0+247+2+30+230+0+0+.5),pixelHeight:40,pixelWidth:26,src:\"https://framerusercontent.com/images/CY1R1hYL9R1HFCCLoekg5Czxs.png\"},className:\"framer-1jsd4it\",\"data-framer-name\":\"Icon\"})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{jtC8vLgen:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0RlZ3VsYXIgVGV4dCBSZWd1bGFy\",\"--framer-font-family\":'\"Degular Text Regular\", \"Degular Text Regular Placeholder\", sans-serif',\"--framer-line-height\":\"18px\",\"--framer-text-color\":\"var(--token-19182416-018f-4aaf-8caa-795abe04b4ff, rgb(255, 255, 255))\"},children:\"Owner Dashboard\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0RlZ3VsYXIgVGV4dCBSZWd1bGFy\",\"--framer-font-family\":'\"Degular Text Regular\", \"Degular Text Regular Placeholder\", sans-serif',\"--framer-font-size\":\"17px\",\"--framer-line-height\":\"20px\",\"--framer-text-color\":\"var(--token-19182416-018f-4aaf-8caa-795abe04b4ff, rgb(255, 255, 255))\"},children:\"Owner Dashboard\"})}),className:\"framer-klifvf\",fonts:[\"CUSTOM;Degular Text Regular\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1240tuv\",\"data-framer-name\":\"Points\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{jtC8vLgen:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+27237.2+60+0+175+2+25+205+0+31+0),pixelHeight:40,pixelWidth:26,src:\"https://framerusercontent.com/images/CY1R1hYL9R1HFCCLoekg5Czxs.png\"}},tICWQLge2:{background:{alt:\"\",fit:\"fill\",pixelHeight:40,pixelWidth:26,src:\"https://framerusercontent.com/images/CY1R1hYL9R1HFCCLoekg5Czxs.png\"}},WSvcEG864:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+26230+100+0+257+2+30+244+0+32+.5),pixelHeight:40,pixelWidth:26,src:\"https://framerusercontent.com/images/CY1R1hYL9R1HFCCLoekg5Czxs.png\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+25890+100+0+247+2+30+230+0+32+.5),pixelHeight:40,pixelWidth:26,src:\"https://framerusercontent.com/images/CY1R1hYL9R1HFCCLoekg5Czxs.png\"},className:\"framer-1vgl7x9\",\"data-framer-name\":\"Icon\"})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{jtC8vLgen:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0RlZ3VsYXIgVGV4dCBSZWd1bGFy\",\"--framer-font-family\":'\"Degular Text Regular\", \"Degular Text Regular Placeholder\", sans-serif',\"--framer-line-height\":\"18px\",\"--framer-text-color\":\"var(--token-19182416-018f-4aaf-8caa-795abe04b4ff, rgb(255, 255, 255))\"},children:\"Content Dashboard\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0RlZ3VsYXIgVGV4dCBSZWd1bGFy\",\"--framer-font-family\":'\"Degular Text Regular\", \"Degular Text Regular Placeholder\", sans-serif',\"--framer-font-size\":\"17px\",\"--framer-line-height\":\"20px\",\"--framer-text-color\":\"var(--token-19182416-018f-4aaf-8caa-795abe04b4ff, rgb(255, 255, 255))\"},children:\"Content Dashboard\"})}),className:\"framer-14orgsr\",fonts:[\"CUSTOM;Degular Text Regular\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-13lcauk\",\"data-framer-name\":\"Points\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{jtC8vLgen:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+27237.2+60+0+175+2+25+205+0+62+0),pixelHeight:40,pixelWidth:26,src:\"https://framerusercontent.com/images/CY1R1hYL9R1HFCCLoekg5Czxs.png\"}},tICWQLge2:{background:{alt:\"\",fit:\"fill\",pixelHeight:40,pixelWidth:26,src:\"https://framerusercontent.com/images/CY1R1hYL9R1HFCCLoekg5Czxs.png\"}},WSvcEG864:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+26230+100+0+257+2+30+244+0+64+.5),pixelHeight:40,pixelWidth:26,src:\"https://framerusercontent.com/images/CY1R1hYL9R1HFCCLoekg5Czxs.png\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+25890+100+0+247+2+30+230+0+64+.5),pixelHeight:40,pixelWidth:26,src:\"https://framerusercontent.com/images/CY1R1hYL9R1HFCCLoekg5Czxs.png\"},className:\"framer-1k8ndz4\",\"data-framer-name\":\"Icon\"})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{jtC8vLgen:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0RlZ3VsYXIgVGV4dCBSZWd1bGFy\",\"--framer-font-family\":'\"Degular Text Regular\", \"Degular Text Regular Placeholder\", sans-serif',\"--framer-line-height\":\"18px\",\"--framer-text-color\":\"var(--token-19182416-018f-4aaf-8caa-795abe04b4ff, rgb(255, 255, 255))\"},children:\"Content Repurposing Calendar\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0RlZ3VsYXIgVGV4dCBSZWd1bGFy\",\"--framer-font-family\":'\"Degular Text Regular\", \"Degular Text Regular Placeholder\", sans-serif',\"--framer-font-size\":\"17px\",\"--framer-line-height\":\"20px\",\"--framer-text-color\":\"var(--token-19182416-018f-4aaf-8caa-795abe04b4ff, rgb(255, 255, 255))\"},children:\"Content Repurposing Calendar\"})}),className:\"framer-1a4usq\",fonts:[\"CUSTOM;Degular Text Regular\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-nm5qjo\",\"data-framer-name\":\"Points\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{jtC8vLgen:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+27237.2+60+0+175+2+25+205+0+93+0),pixelHeight:40,pixelWidth:26,src:\"https://framerusercontent.com/images/CY1R1hYL9R1HFCCLoekg5Czxs.png\"}},tICWQLge2:{background:{alt:\"\",fit:\"fill\",pixelHeight:40,pixelWidth:26,src:\"https://framerusercontent.com/images/CY1R1hYL9R1HFCCLoekg5Czxs.png\"}},WSvcEG864:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+26230+100+0+257+2+30+244+0+96+.5),pixelHeight:40,pixelWidth:26,src:\"https://framerusercontent.com/images/CY1R1hYL9R1HFCCLoekg5Czxs.png\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+25890+100+0+247+2+30+230+0+96+.5),pixelHeight:40,pixelWidth:26,src:\"https://framerusercontent.com/images/CY1R1hYL9R1HFCCLoekg5Czxs.png\"},className:\"framer-1q78itp\",\"data-framer-name\":\"Icon\"})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{jtC8vLgen:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0RlZ3VsYXIgVGV4dCBSZWd1bGFy\",\"--framer-font-family\":'\"Degular Text Regular\", \"Degular Text Regular Placeholder\", sans-serif',\"--framer-line-height\":\"18px\",\"--framer-text-color\":\"var(--token-19182416-018f-4aaf-8caa-795abe04b4ff, rgb(255, 255, 255))\"},children:\"Affiliate Dashboard\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0RlZ3VsYXIgVGV4dCBSZWd1bGFy\",\"--framer-font-family\":'\"Degular Text Regular\", \"Degular Text Regular Placeholder\", sans-serif',\"--framer-font-size\":\"17px\",\"--framer-line-height\":\"20px\",\"--framer-text-color\":\"var(--token-19182416-018f-4aaf-8caa-795abe04b4ff, rgb(255, 255, 255))\"},children:\"Affiliate Dashboard\"})}),className:\"framer-1kn1ihi\",fonts:[\"CUSTOM;Degular Text Regular\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-cnahli\",\"data-framer-name\":\"Points\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{jtC8vLgen:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+27237.2+60+0+175+2+25+205+0+124+0),pixelHeight:40,pixelWidth:26,src:\"https://framerusercontent.com/images/CY1R1hYL9R1HFCCLoekg5Czxs.png\"}},tICWQLge2:{background:{alt:\"\",fit:\"fill\",pixelHeight:40,pixelWidth:26,src:\"https://framerusercontent.com/images/CY1R1hYL9R1HFCCLoekg5Czxs.png\"}},WSvcEG864:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+26230+100+0+257+2+30+244+0+128+.5),pixelHeight:40,pixelWidth:26,src:\"https://framerusercontent.com/images/CY1R1hYL9R1HFCCLoekg5Czxs.png\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+25890+100+0+247+2+30+230+0+128+.5),pixelHeight:40,pixelWidth:26,src:\"https://framerusercontent.com/images/CY1R1hYL9R1HFCCLoekg5Czxs.png\"},className:\"framer-14rbqxr\",\"data-framer-name\":\"Icon\"})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{jtC8vLgen:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0RlZ3VsYXIgVGV4dCBSZWd1bGFy\",\"--framer-font-family\":'\"Degular Text Regular\", \"Degular Text Regular Placeholder\", sans-serif',\"--framer-line-height\":\"18px\",\"--framer-text-color\":\"var(--token-19182416-018f-4aaf-8caa-795abe04b4ff, rgb(255, 255, 255))\"},children:\"Audience Dashboard\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0RlZ3VsYXIgVGV4dCBSZWd1bGFy\",\"--framer-font-family\":'\"Degular Text Regular\", \"Degular Text Regular Placeholder\", sans-serif',\"--framer-font-size\":\"17px\",\"--framer-line-height\":\"20px\",\"--framer-text-color\":\"var(--token-19182416-018f-4aaf-8caa-795abe04b4ff, rgb(255, 255, 255))\"},children:\"Audience Dashboard\"})}),className:\"framer-iek0kf\",fonts:[\"CUSTOM;Degular Text Regular\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-6l5koc\",\"data-framer-name\":\"Points\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{jtC8vLgen:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+27237.2+60+0+175+2+25+205+0+155+0),pixelHeight:40,pixelWidth:26,src:\"https://framerusercontent.com/images/CY1R1hYL9R1HFCCLoekg5Czxs.png\"}},tICWQLge2:{background:{alt:\"\",fit:\"fill\",pixelHeight:40,pixelWidth:26,src:\"https://framerusercontent.com/images/CY1R1hYL9R1HFCCLoekg5Czxs.png\"}},WSvcEG864:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+26230+100+0+257+2+30+244+0+160+.5),pixelHeight:40,pixelWidth:26,src:\"https://framerusercontent.com/images/CY1R1hYL9R1HFCCLoekg5Czxs.png\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+25890+100+0+247+2+30+230+0+160+.5),pixelHeight:40,pixelWidth:26,src:\"https://framerusercontent.com/images/CY1R1hYL9R1HFCCLoekg5Czxs.png\"},className:\"framer-1hdrd18\",\"data-framer-name\":\"Icon\"})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{jtC8vLgen:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0RlZ3VsYXIgVGV4dCBSZWd1bGFy\",\"--framer-font-family\":'\"Degular Text Regular\", \"Degular Text Regular Placeholder\", sans-serif',\"--framer-line-height\":\"18px\",\"--framer-text-color\":\"var(--token-19182416-018f-4aaf-8caa-795abe04b4ff, rgb(255, 255, 255))\"},children:\"Sponsorship Dashboard\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0RlZ3VsYXIgVGV4dCBSZWd1bGFy\",\"--framer-font-family\":'\"Degular Text Regular\", \"Degular Text Regular Placeholder\", sans-serif',\"--framer-font-size\":\"17px\",\"--framer-line-height\":\"20px\",\"--framer-text-color\":\"var(--token-19182416-018f-4aaf-8caa-795abe04b4ff, rgb(255, 255, 255))\"},children:\"Sponsorship Dashboard\"})}),className:\"framer-1erzzad\",fonts:[\"CUSTOM;Degular Text Regular\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-6toyq0\",\"data-framer-name\":\"Points\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{jtC8vLgen:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+27237.2+60+0+175+2+25+205+0+186+0),pixelHeight:40,pixelWidth:26,src:\"https://framerusercontent.com/images/CY1R1hYL9R1HFCCLoekg5Czxs.png\"}},tICWQLge2:{background:{alt:\"\",fit:\"fill\",pixelHeight:40,pixelWidth:26,src:\"https://framerusercontent.com/images/CY1R1hYL9R1HFCCLoekg5Czxs.png\"}},WSvcEG864:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+26230+100+0+257+2+30+244+0+192+.5),pixelHeight:40,pixelWidth:26,src:\"https://framerusercontent.com/images/CY1R1hYL9R1HFCCLoekg5Czxs.png\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+25890+100+0+247+2+30+230+0+192+.5),pixelHeight:40,pixelWidth:26,src:\"https://framerusercontent.com/images/CY1R1hYL9R1HFCCLoekg5Czxs.png\"},className:\"framer-x4l3rr\",\"data-framer-name\":\"Icon\"})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{jtC8vLgen:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0RlZ3VsYXIgVGV4dCBSZWd1bGFy\",\"--framer-font-family\":'\"Degular Text Regular\", \"Degular Text Regular Placeholder\", sans-serif',\"--framer-line-height\":\"18px\",\"--framer-text-color\":\"var(--token-19182416-018f-4aaf-8caa-795abe04b4ff, rgb(255, 255, 255))\"},children:\"Integrated Goals, Projects, and Tasks Dashboard\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0RlZ3VsYXIgVGV4dCBSZWd1bGFy\",\"--framer-font-family\":'\"Degular Text Regular\", \"Degular Text Regular Placeholder\", sans-serif',\"--framer-font-size\":\"17px\",\"--framer-line-height\":\"20px\",\"--framer-text-color\":\"var(--token-19182416-018f-4aaf-8caa-795abe04b4ff, rgb(255, 255, 255))\"},children:\"Integrated Goals, Projects, and Tasks Dashboard\"})}),className:\"framer-1buuxrv\",fonts:[\"CUSTOM;Degular Text Regular\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-e17yix\",\"data-framer-name\":\"Points\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{jtC8vLgen:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+27237.2+60+0+175+2+25+205+0+217+0),pixelHeight:40,pixelWidth:26,src:\"https://framerusercontent.com/images/CY1R1hYL9R1HFCCLoekg5Czxs.png\"}},tICWQLge2:{background:{alt:\"\",fit:\"fill\",pixelHeight:40,pixelWidth:26,src:\"https://framerusercontent.com/images/CY1R1hYL9R1HFCCLoekg5Czxs.png\"}},WSvcEG864:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+26230+100+0+257+2+30+244+0+224+.5),pixelHeight:40,pixelWidth:26,src:\"https://framerusercontent.com/images/CY1R1hYL9R1HFCCLoekg5Czxs.png\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+25890+100+0+247+2+30+230+0+224+.5),pixelHeight:40,pixelWidth:26,src:\"https://framerusercontent.com/images/CY1R1hYL9R1HFCCLoekg5Czxs.png\"},className:\"framer-1xv9m\",\"data-framer-name\":\"Icon\"})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{jtC8vLgen:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0RlZ3VsYXIgVGV4dCBSZWd1bGFy\",\"--framer-font-family\":'\"Degular Text Regular\", \"Degular Text Regular Placeholder\", sans-serif',\"--framer-line-height\":\"18px\",\"--framer-text-color\":\"var(--token-19182416-018f-4aaf-8caa-795abe04b4ff, rgb(255, 255, 255))\"},children:\"Lightweight CRM and Conversation Database\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0RlZ3VsYXIgVGV4dCBSZWd1bGFy\",\"--framer-font-family\":'\"Degular Text Regular\", \"Degular Text Regular Placeholder\", sans-serif',\"--framer-font-size\":\"17px\",\"--framer-line-height\":\"20px\",\"--framer-text-color\":\"var(--token-19182416-018f-4aaf-8caa-795abe04b4ff, rgb(255, 255, 255))\"},children:\"Lightweight CRM and Conversation Database\"})}),className:\"framer-2b19u8\",fonts:[\"CUSTOM;Degular Text Regular\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1bsb5cx\",\"data-framer-name\":\"Points\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{jtC8vLgen:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+27237.2+60+0+175+2+25+205+0+248+0),pixelHeight:40,pixelWidth:26,src:\"https://framerusercontent.com/images/CY1R1hYL9R1HFCCLoekg5Czxs.png\"}},tICWQLge2:{background:{alt:\"\",fit:\"fill\",pixelHeight:40,pixelWidth:26,src:\"https://framerusercontent.com/images/CY1R1hYL9R1HFCCLoekg5Czxs.png\"}},WSvcEG864:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+26230+100+0+257+2+30+244+0+256+.5),pixelHeight:40,pixelWidth:26,src:\"https://framerusercontent.com/images/CY1R1hYL9R1HFCCLoekg5Czxs.png\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+25890+100+0+247+2+30+230+0+256+.5),pixelHeight:40,pixelWidth:26,src:\"https://framerusercontent.com/images/CY1R1hYL9R1HFCCLoekg5Czxs.png\"},className:\"framer-1ab1cib\",\"data-framer-name\":\"Icon\"})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{jtC8vLgen:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0RlZ3VsYXIgVGV4dCBSZWd1bGFy\",\"--framer-font-family\":'\"Degular Text Regular\", \"Degular Text Regular Placeholder\", sans-serif',\"--framer-line-height\":\"18px\",\"--framer-text-color\":\"var(--token-19182416-018f-4aaf-8caa-795abe04b4ff, rgb(255, 255, 255))\"},children:\"Separate Work and Personal Notebooks\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0RlZ3VsYXIgVGV4dCBSZWd1bGFy\",\"--framer-font-family\":'\"Degular Text Regular\", \"Degular Text Regular Placeholder\", sans-serif',\"--framer-font-size\":\"17px\",\"--framer-line-height\":\"20px\",\"--framer-text-color\":\"var(--token-19182416-018f-4aaf-8caa-795abe04b4ff, rgb(255, 255, 255))\"},children:\"Separate Work and Personal Notebooks\"})}),className:\"framer-152dsc4\",fonts:[\"CUSTOM;Degular Text Regular\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-17r2s1x\",\"data-framer-name\":\"Points\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{jtC8vLgen:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+27237.2+60+0+175+2+25+205+0+279+0),pixelHeight:40,pixelWidth:26,src:\"https://framerusercontent.com/images/CY1R1hYL9R1HFCCLoekg5Czxs.png\"}},tICWQLge2:{background:{alt:\"\",fit:\"fill\",pixelHeight:40,pixelWidth:26,src:\"https://framerusercontent.com/images/CY1R1hYL9R1HFCCLoekg5Czxs.png\"}},WSvcEG864:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+26230+100+0+257+2+30+244+0+288+.5),pixelHeight:40,pixelWidth:26,src:\"https://framerusercontent.com/images/CY1R1hYL9R1HFCCLoekg5Czxs.png\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+25890+100+0+247+2+30+230+0+288+.5),pixelHeight:40,pixelWidth:26,src:\"https://framerusercontent.com/images/CY1R1hYL9R1HFCCLoekg5Czxs.png\"},className:\"framer-1cfxarj\",\"data-framer-name\":\"Icon\"})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{jtC8vLgen:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0RlZ3VsYXIgVGV4dCBSZWd1bGFy\",\"--framer-font-family\":'\"Degular Text Regular\", \"Degular Text Regular Placeholder\", sans-serif',\"--framer-line-height\":\"18px\",\"--framer-text-color\":\"var(--token-19182416-018f-4aaf-8caa-795abe04b4ff, rgb(255, 255, 255))\"},children:\"Standard Operating Procedures (SOPs) Database\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0RlZ3VsYXIgVGV4dCBSZWd1bGFy\",\"--framer-font-family\":'\"Degular Text Regular\", \"Degular Text Regular Placeholder\", sans-serif',\"--framer-font-size\":\"17px\",\"--framer-line-height\":\"20px\",\"--framer-text-color\":\"var(--token-19182416-018f-4aaf-8caa-795abe04b4ff, rgb(255, 255, 255))\"},children:\"Standard Operating Procedures (SOPs) Database\"})}),className:\"framer-i9hjzq\",fonts:[\"CUSTOM;Degular Text Regular\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-qzs1tk\",\"data-framer-name\":\"Points\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{jtC8vLgen:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+27237.2+60+0+175+2+25+205+0+310+0),pixelHeight:40,pixelWidth:26,src:\"https://framerusercontent.com/images/CY1R1hYL9R1HFCCLoekg5Czxs.png\"}},tICWQLge2:{background:{alt:\"\",fit:\"fill\",pixelHeight:40,pixelWidth:26,src:\"https://framerusercontent.com/images/CY1R1hYL9R1HFCCLoekg5Czxs.png\"}},WSvcEG864:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+26230+100+0+257+2+30+244+0+320+.5),pixelHeight:40,pixelWidth:26,src:\"https://framerusercontent.com/images/CY1R1hYL9R1HFCCLoekg5Czxs.png\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+25890+100+0+247+2+30+230+0+320+.5),pixelHeight:40,pixelWidth:26,src:\"https://framerusercontent.com/images/CY1R1hYL9R1HFCCLoekg5Czxs.png\"},className:\"framer-kb04ee\",\"data-framer-name\":\"Icon\"})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{jtC8vLgen:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0RlZ3VsYXIgVGV4dCBSZWd1bGFy\",\"--framer-font-family\":'\"Degular Text Regular\", \"Degular Text Regular Placeholder\", sans-serif',\"--framer-line-height\":\"18px\",\"--framer-text-color\":\"var(--token-19182416-018f-4aaf-8caa-795abe04b4ff, rgb(255, 255, 255))\"},children:\"KPI Tracker\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0RlZ3VsYXIgVGV4dCBSZWd1bGFy\",\"--framer-font-family\":'\"Degular Text Regular\", \"Degular Text Regular Placeholder\", sans-serif',\"--framer-font-size\":\"17px\",\"--framer-line-height\":\"20px\",\"--framer-text-color\":\"var(--token-19182416-018f-4aaf-8caa-795abe04b4ff, rgb(255, 255, 255))\"},children:\"KPI Tracker\"})}),className:\"framer-gmozyy\",fonts:[\"CUSTOM;Degular Text Regular\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-i8le62\",\"data-framer-name\":\"Points\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{jtC8vLgen:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+27237.2+60+0+175+2+25+205+0+341+0),pixelHeight:40,pixelWidth:26,src:\"https://framerusercontent.com/images/CY1R1hYL9R1HFCCLoekg5Czxs.png\"}},tICWQLge2:{background:{alt:\"\",fit:\"fill\",pixelHeight:40,pixelWidth:26,src:\"https://framerusercontent.com/images/CY1R1hYL9R1HFCCLoekg5Czxs.png\"}},WSvcEG864:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+26230+100+0+257+2+30+244+0+352+.5),pixelHeight:40,pixelWidth:26,src:\"https://framerusercontent.com/images/CY1R1hYL9R1HFCCLoekg5Czxs.png\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+25890+100+0+247+2+30+230+0+352+.5),pixelHeight:40,pixelWidth:26,src:\"https://framerusercontent.com/images/CY1R1hYL9R1HFCCLoekg5Czxs.png\"},className:\"framer-byh65e\",\"data-framer-name\":\"Icon\"})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{jtC8vLgen:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0RlZ3VsYXIgVGV4dCBSZWd1bGFy\",\"--framer-font-family\":'\"Degular Text Regular\", \"Degular Text Regular Placeholder\", sans-serif',\"--framer-line-height\":\"18px\",\"--framer-text-color\":\"var(--token-19182416-018f-4aaf-8caa-795abe04b4ff, rgb(255, 255, 255))\"},children:\"Course Planning Template\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0RlZ3VsYXIgVGV4dCBSZWd1bGFy\",\"--framer-font-family\":'\"Degular Text Regular\", \"Degular Text Regular Placeholder\", sans-serif',\"--framer-font-size\":\"17px\",\"--framer-line-height\":\"20px\",\"--framer-text-color\":\"var(--token-19182416-018f-4aaf-8caa-795abe04b4ff, rgb(255, 255, 255))\"},children:\"Course Planning Template\"})}),className:\"framer-w6srxg\",fonts:[\"CUSTOM;Degular Text Regular\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1w0ct81\",\"data-framer-name\":\"Points\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{jtC8vLgen:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+27237.2+60+0+175+2+25+205+0+372+0),pixelHeight:40,pixelWidth:26,src:\"https://framerusercontent.com/images/CY1R1hYL9R1HFCCLoekg5Czxs.png\"}},tICWQLge2:{background:{alt:\"\",fit:\"fill\",pixelHeight:40,pixelWidth:26,src:\"https://framerusercontent.com/images/CY1R1hYL9R1HFCCLoekg5Czxs.png\"}},WSvcEG864:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+26230+100+0+257+2+30+244+0+384+.5),pixelHeight:40,pixelWidth:26,src:\"https://framerusercontent.com/images/CY1R1hYL9R1HFCCLoekg5Czxs.png\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+25890+100+0+247+2+30+230+0+384+.5),pixelHeight:40,pixelWidth:26,src:\"https://framerusercontent.com/images/CY1R1hYL9R1HFCCLoekg5Czxs.png\"},className:\"framer-1kzxcet\",\"data-framer-name\":\"Icon\"})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{jtC8vLgen:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0RlZ3VsYXIgVGV4dCBSZWd1bGFy\",\"--framer-font-family\":'\"Degular Text Regular\", \"Degular Text Regular Placeholder\", sans-serif',\"--framer-line-height\":\"18px\",\"--framer-text-color\":\"var(--token-19182416-018f-4aaf-8caa-795abe04b4ff, rgb(255, 255, 255))\"},children:\"Integrated Training & Tutorials\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0RlZ3VsYXIgVGV4dCBSZWd1bGFy\",\"--framer-font-family\":'\"Degular Text Regular\", \"Degular Text Regular Placeholder\", sans-serif',\"--framer-font-size\":\"17px\",\"--framer-line-height\":\"20px\",\"--framer-text-color\":\"var(--token-19182416-018f-4aaf-8caa-795abe04b4ff, rgb(255, 255, 255))\"},children:\"Integrated Training & Tutorials\"})}),className:\"framer-1nvr08n\",fonts:[\"CUSTOM;Degular Text Regular\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1rj57yi\",\"data-framer-name\":\"Points\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{jtC8vLgen:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+27237.2+60+0+175+2+25+205+0+403+0),pixelHeight:40,pixelWidth:26,src:\"https://framerusercontent.com/images/CY1R1hYL9R1HFCCLoekg5Czxs.png\"}},tICWQLge2:{background:{alt:\"\",fit:\"fill\",pixelHeight:40,pixelWidth:26,src:\"https://framerusercontent.com/images/CY1R1hYL9R1HFCCLoekg5Czxs.png\"}},WSvcEG864:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+26230+100+0+257+2+30+244+0+416+.5),pixelHeight:40,pixelWidth:26,src:\"https://framerusercontent.com/images/CY1R1hYL9R1HFCCLoekg5Czxs.png\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+25890+100+0+247+2+30+230+0+416+.5),pixelHeight:40,pixelWidth:26,src:\"https://framerusercontent.com/images/CY1R1hYL9R1HFCCLoekg5Czxs.png\"},className:\"framer-p0e1on\",\"data-framer-name\":\"Icon\"})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{jtC8vLgen:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0RlZ3VsYXIgVGV4dCBSZWd1bGFy\",\"--framer-font-family\":'\"Degular Text Regular\", \"Degular Text Regular Placeholder\", sans-serif',\"--framer-line-height\":\"18px\",\"--framer-text-color\":\"var(--token-19182416-018f-4aaf-8caa-795abe04b4ff, rgb(255, 255, 255))\"},children:\"Access to future updates\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0RlZ3VsYXIgVGV4dCBSZWd1bGFy\",\"--framer-font-family\":'\"Degular Text Regular\", \"Degular Text Regular Placeholder\", sans-serif',\"--framer-font-size\":\"17px\",\"--framer-line-height\":\"20px\",\"--framer-text-color\":\"var(--token-19182416-018f-4aaf-8caa-795abe04b4ff, rgb(255, 255, 255))\"},children:\"Access to future updates\"})}),className:\"framer-13h9sel\",fonts:[\"CUSTOM;Degular Text Regular\"],verticalAlignment:\"top\",withExternalLayout:true})})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1x9nxtd\",\"data-framer-name\":\"Button Wrap  Wrap\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{jtC8vLgen:{width:`min(max(min(min(max(${componentViewport?.width||\"100vw\"} - 40px, 1px), 800px), 520px) - 4px, 1px) - 40px, 367px)`,y:(componentViewport?.y||0)+0+27237.2+60+0+175+2+25+652+0+0},tICWQLge2:{y:undefined},WSvcEG864:{y:(componentViewport?.y||0)+0+26230+100+0+257+2+30+720+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:73,width:\"364px\",y:(componentViewport?.y||0)+0+25890+100+0+247+2+30+706+0+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1v65elf-container\",isModuleExternal:true,nodeId:\"vawU74pvS\",scopeId:\"OMp430bgy\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{jtC8vLgen:{variant:\"lbE2C1YKC\"}},children:/*#__PURE__*/_jsx(BannerButton,{height:\"100%\",i9h0tMlqE:\"https://store.creatorscience.com/buy/28aeab8d-5b53-4840-9055-080794014e8b\",id:\"vawU74pvS\",layoutId:\"vawU74pvS\",style:{width:\"100%\"},variant:\"fdB6OMGxz\",width:\"100%\"})})})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1wkcvft\",\"data-framer-name\":\"Prcing Text\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0RlZ3VsYXIgVGV4dCBSZWd1bGFy\",\"--framer-font-family\":'\"Degular Text Regular\", \"Degular Text Regular Placeholder\", sans-serif',\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"19px\",\"--framer-text-color\":\"var(--token-19182416-018f-4aaf-8caa-795abe04b4ff, rgb(255, 255, 255))\"},children:\"Pay once, use forever\"})}),className:\"framer-12tqsqj\",fonts:[\"CUSTOM;Degular Text Regular\"],verticalAlignment:\"top\",withExternalLayout:true})})]})]})})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-gw77ge\",\"data-framer-name\":\"logo\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{jtC8vLgen:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+27237.2+1103-298+-1.9286),pixelHeight:405,pixelWidth:405,src:\"https://framerusercontent.com/images/20fVUCkB1YpbdnIYTavCrZeQs8.svg\"}},tICWQLge2:{background:{alt:\"\",fit:\"fill\",pixelHeight:405,pixelWidth:405,src:\"https://framerusercontent.com/images/20fVUCkB1YpbdnIYTavCrZeQs8.svg\"}},WSvcEG864:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+26230+1323-298+-1.9286),pixelHeight:405,pixelWidth:405,src:\"https://framerusercontent.com/images/20fVUCkB1YpbdnIYTavCrZeQs8.svg\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+25890+1299-298+-1.9286),pixelHeight:405,pixelWidth:405,src:\"https://framerusercontent.com/images/20fVUCkB1YpbdnIYTavCrZeQs8.svg\"},className:\"framer-v836so\"})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1amx99u\",\"data-framer-name\":\"Bg Gradient\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-1xt2qz4\",\"data-framer-name\":\"gradient\"})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-ul3lb3\",\"data-framer-name\":\"Bg Gradient\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-1mteudb\",\"data-framer-name\":\"gradient\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-1qk90je\"})})})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{jtC8vLgen:{y:(componentViewport?.y||0)+0+28340.2},tICWQLge2:{y:undefined},WSvcEG864:{y:(componentViewport?.y||0)+0+27553}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:1158,width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+27189,children:/*#__PURE__*/_jsx(Container,{className:\"framer-13o073r-container\",id:elementId5,nodeId:\"zRYYxdLw1\",ref:ref6,scopeId:\"OMp430bgy\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{jtC8vLgen:{variant:\"gqWVplBqC\"},tICWQLge2:{variant:\"u0XOLYjk6\"}},children:/*#__PURE__*/_jsx(FAQSection,{height:\"100%\",id:\"zRYYxdLw1\",layoutId:\"zRYYxdLw1\",style:{width:\"100%\"},variant:\"p1na7IxIf\",width:\"100%\"})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{jtC8vLgen:{y:(componentViewport?.y||0)+0+29498.2},tICWQLge2:{y:undefined},WSvcEG864:{y:(componentViewport?.y||0)+0+28711}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:741,width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+28347,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1b988io-container\",nodeId:\"Th3Be4bsz\",scopeId:\"OMp430bgy\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{jtC8vLgen:{variant:\"KgdC60qld\"},tICWQLge2:{variant:\"Nu1f7TvOU\"}},children:/*#__PURE__*/_jsx(FooterSection,{height:\"100%\",id:\"Th3Be4bsz\",layoutId:\"Th3Be4bsz\",style:{width:\"100%\"},variant:\"qc5LGCZNJ\",width:\"100%\"})})})})})]}),/*#__PURE__*/_jsx(\"div\",{id:\"overlay\"})]})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-bwrSz.framer-l5qwt6, .framer-bwrSz .framer-l5qwt6 { display: block; }\",\".framer-bwrSz.framer-zpfzn2 { align-content: center; align-items: center; background-color: var(--token-19182416-018f-4aaf-8caa-795abe04b4ff, #ffffff); display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: 23046px; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 1300px; }\",\".framer-bwrSz .framer-2wkkta-container { flex: none; height: auto; left: 50%; position: absolute; top: 0px; transform: translateX(-50%); width: 100%; z-index: 8; }\",\".framer-bwrSz .framer-13tn19q-container { flex: none; height: auto; left: 50%; position: fixed; top: 0px; transform: translateX(-50%); width: 100%; z-index: 8; }\",\".framer-bwrSz .framer-1w1gp8r { 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 0px 50px 0px; position: relative; width: 100%; }\",\".framer-bwrSz .framer-105ty16 { background: linear-gradient(180deg, #ffffff 36%, rgb(240, 242, 246) 78%); flex: none; height: 1450px; left: 0px; overflow: hidden; position: absolute; top: 0px; width: 100%; z-index: 7; }\",\".framer-bwrSz .framer-1eyinrm { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 100px; height: min-content; justify-content: center; overflow: hidden; padding: 194px 0px 0px 0px; position: relative; width: 100%; z-index: 7; }\",\".framer-bwrSz .framer-awzptn, .framer-bwrSz .framer-6xo3q5 { 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: 1260px; overflow: visible; padding: 0px; position: relative; width: 100%; z-index: 4; }\",\".framer-bwrSz .framer-1vlm4ni { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; max-width: 680px; overflow: visible; padding: 0px; position: relative; width: 1px; z-index: 3; }\",\".framer-bwrSz .framer-hpp9yk { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 12px; height: min-content; justify-content: center; max-width: 460px; overflow: hidden; padding: 0px; position: relative; width: 460px; }\",\".framer-bwrSz .framer-f22k { 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; max-width: 158px; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-bwrSz .framer-wqagu2 { flex: none; height: 42px; overflow: hidden; position: relative; width: 42px; }\",\".framer-bwrSz .framer-1x4cknr { bottom: 0px; flex: none; left: 28px; overflow: hidden; position: absolute; top: 0px; width: 42px; z-index: 1; }\",\".framer-bwrSz .framer-1ez9ee8 { bottom: 0px; flex: none; left: 57px; overflow: hidden; position: absolute; top: 0px; width: 42px; z-index: 1; }\",\".framer-bwrSz .framer-wv0i8b { bottom: 0px; flex: none; left: 86px; overflow: hidden; position: absolute; top: 0px; width: 42px; z-index: 1; }\",\".framer-bwrSz .framer-kegcw7 { bottom: 0px; flex: none; left: 116px; overflow: hidden; position: absolute; top: 0px; width: 42px; z-index: 1; }\",\".framer-bwrSz .framer-1hih0xd { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 11px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-bwrSz .framer-y6nxsz { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 4px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-bwrSz .framer-1vv1ji5, .framer-bwrSz .framer-4ulpm, .framer-bwrSz .framer-19853qw, .framer-bwrSz .framer-1v2foty, .framer-bwrSz .framer-riuzzh { flex: none; height: 19px; overflow: hidden; position: relative; width: 20px; }\",\".framer-bwrSz .framer-1lolyip, .framer-bwrSz .framer-cvjjyp, .framer-bwrSz .framer-mbcnsz, .framer-bwrSz .framer-4wi6k8, .framer-bwrSz .framer-1lfe08l, .framer-bwrSz .framer-12zudh4, .framer-bwrSz .framer-1iqu9kq, .framer-bwrSz .framer-1s9svh7, .framer-bwrSz .framer-wngm78, .framer-bwrSz .framer-1ou90xi, .framer-bwrSz .framer-u32sey, .framer-bwrSz .framer-b9857j, .framer-bwrSz .framer-18chl6g, .framer-bwrSz .framer-4t0h6i, .framer-bwrSz .framer-51rej9, .framer-bwrSz .framer-1wcw6fq, .framer-bwrSz .framer-1mfr9di, .framer-bwrSz .framer-1y0e7x8, .framer-bwrSz .framer-llf1f5, .framer-bwrSz .framer-1p8loib, .framer-bwrSz .framer-3nna1h, .framer-bwrSz .framer-1viuv9k, .framer-bwrSz .framer-1t9vgp5, .framer-bwrSz .framer-1f2htl8, .framer-bwrSz .framer-erhise, .framer-bwrSz .framer-xqdi6m, .framer-bwrSz .framer-4ogvel, .framer-bwrSz .framer-1xolbky, .framer-bwrSz .framer-184qw9f, .framer-bwrSz .framer-1iwwn0s, .framer-bwrSz .framer-bx0cmh, .framer-bwrSz .framer-x9v2c2, .framer-bwrSz .framer-juwxl0, .framer-bwrSz .framer-nkolfw, .framer-bwrSz .framer-123n1wm, .framer-bwrSz .framer-1sms6pc, .framer-bwrSz .framer-1qfky70, .framer-bwrSz .framer-1kgrbg6, .framer-bwrSz .framer-i25dd0, .framer-bwrSz .framer-19emw6l, .framer-bwrSz .framer-wslsi1, .framer-bwrSz .framer-1kw4zf5, .framer-bwrSz .framer-1tov85o, .framer-bwrSz .framer-p25yd8, .framer-bwrSz .framer-1g21uth, .framer-bwrSz .framer-1thvua7, .framer-bwrSz .framer-kmqhok, .framer-bwrSz .framer-1ds9sil, .framer-bwrSz .framer-1l9wlt7, .framer-bwrSz .framer-dtx2vs, .framer-bwrSz .framer-ho4i3y, .framer-bwrSz .framer-wxyuv, .framer-bwrSz .framer-wlrrj, .framer-bwrSz .framer-1yezbri, .framer-bwrSz .framer-f5ia9z, .framer-bwrSz .framer-1vry8io, .framer-bwrSz .framer-kbuy76, .framer-bwrSz .framer-vla9x8, .framer-bwrSz .framer-1brr7w0, .framer-bwrSz .framer-uk2tdn, .framer-bwrSz .framer-qv260j, .framer-bwrSz .framer-ngl6dr, .framer-bwrSz .framer-npp9wi, .framer-bwrSz .framer-n4fslg, .framer-bwrSz .framer-klifvf, .framer-bwrSz .framer-14orgsr, .framer-bwrSz .framer-1a4usq, .framer-bwrSz .framer-1kn1ihi, .framer-bwrSz .framer-iek0kf, .framer-bwrSz .framer-1erzzad, .framer-bwrSz .framer-1buuxrv, .framer-bwrSz .framer-2b19u8, .framer-bwrSz .framer-152dsc4, .framer-bwrSz .framer-i9hjzq, .framer-bwrSz .framer-gmozyy, .framer-bwrSz .framer-w6srxg, .framer-bwrSz .framer-1nvr08n, .framer-bwrSz .framer-13h9sel { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-bwrSz .framer-1h9sst9 { 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: 800px; overflow: hidden; padding: 32px 0px 0px 0px; position: relative; width: 100%; }\",\".framer-bwrSz .framer-a5azck, .framer-bwrSz .framer-156c0cy, .framer-bwrSz .framer-3mjhlj, .framer-bwrSz .framer-1v92amp, .framer-bwrSz .framer-1aj685c, .framer-bwrSz .framer-lkekk7, .framer-bwrSz .framer-15yb31e, .framer-bwrSz .framer-1m20qwn, .framer-bwrSz .framer-1b0m0td, .framer-bwrSz .framer-8epl8n, .framer-bwrSz .framer-sr47gc, .framer-bwrSz .framer-3usbi5, .framer-bwrSz .framer-1oley, .framer-bwrSz .framer-cxqrgn, .framer-bwrSz .framer-sn1dcu, .framer-bwrSz .framer-s0tsjq, .framer-bwrSz .framer-132xp8l, .framer-bwrSz .framer-c5z48g, .framer-bwrSz .framer-1ity8c0, .framer-bwrSz .framer-1c184jv, .framer-bwrSz .framer-12lvesq, .framer-bwrSz .framer-1mu04g, .framer-bwrSz .framer-2aadt6, .framer-bwrSz .framer-5p0blf, .framer-bwrSz .framer-m0cd4a, .framer-bwrSz .framer-1kytu83, .framer-bwrSz .framer-jleu8q, .framer-bwrSz .framer-1cfmlha, .framer-bwrSz .framer-v5erws, .framer-bwrSz .framer-1h8fwsu, .framer-bwrSz .framer-ok4sry, .framer-bwrSz .framer-1052dt6, .framer-bwrSz .framer-s59vep, .framer-bwrSz .framer-h413vl, .framer-bwrSz .framer-o71qu, .framer-bwrSz .framer-1vyih5n, .framer-bwrSz .framer-tti8nf, .framer-bwrSz .framer-1ytwoyw, .framer-bwrSz .framer-9evqhi, .framer-bwrSz .framer-10bwrn3, .framer-bwrSz .framer-1i3p74n, .framer-bwrSz .framer-19zuyq7, .framer-bwrSz .framer-lpjgdw, .framer-bwrSz .framer-qgtirk, .framer-bwrSz .framer-1mh1h11, .framer-bwrSz .framer-1xcfhkj, .framer-bwrSz .framer-1qzwcxk, .framer-bwrSz .framer-1iryx15, .framer-bwrSz .framer-11n2h0r, .framer-bwrSz .framer-19xgm4h, .framer-bwrSz .framer-1d5db9z, .framer-bwrSz .framer-qnj4av, .framer-bwrSz .framer-1gqtkxu, .framer-bwrSz .framer-2w21g9, .framer-bwrSz .framer-vqc5mv, .framer-bwrSz .framer-tgjctx, .framer-bwrSz .framer-zft0ht, .framer-bwrSz .framer-1c2sll, .framer-bwrSz .framer-k9bzqx { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: 1 0 0px; height: auto; position: relative; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; }\",\".framer-bwrSz .framer-1jb68j { 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: 660px; overflow: hidden; padding: 32px 0px 0px 0px; position: relative; width: 100%; }\",\".framer-bwrSz .framer-1gekpb3 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; max-width: 365px; overflow: visible; padding: 36px 0px 0px 0px; position: relative; width: 100%; }\",\".framer-bwrSz .framer-1tr1kn3-container, .framer-bwrSz .framer-e2f56c-container, .framer-bwrSz .framer-1h7a0yd-container, .framer-bwrSz .framer-m2sfy2-container, .framer-bwrSz .framer-1i8wp9v-container, .framer-bwrSz .framer-9gg2ep-container, .framer-bwrSz .framer-1fvf7l7-container, .framer-bwrSz .framer-upy9io-container, .framer-bwrSz .framer-1g73k0-container, .framer-bwrSz .framer-jz6dtt-container, .framer-bwrSz .framer-10k7nej-container, .framer-bwrSz .framer-1v65elf-container { flex: none; height: auto; position: relative; width: 364px; }\",\".framer-bwrSz .framer-4aewp5 { align-content: center; align-items: center; bottom: -146px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; justify-content: center; overflow: hidden; padding: 0px; position: absolute; right: -115px; top: -75px; width: 763px; z-index: 0; }\",\".framer-bwrSz .framer-1akfunj { flex: none; height: 100%; left: -23px; overflow: hidden; position: absolute; top: calc(49.921996879875216% - 100% / 2); width: 100%; z-index: 1; }\",\".framer-bwrSz .framer-k1b8fo { display: grid; flex: 1 0 0px; gap: 40px; grid-auto-rows: min-content; grid-template-columns: repeat(3, minmax(50px, 1fr)); grid-template-rows: repeat(1, min-content); height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-bwrSz .framer-175iioy, .framer-bwrSz .framer-1f2hrj6, .framer-bwrSz .framer-1ppie8k, .framer-bwrSz .framer-120bbms, .framer-bwrSz .framer-nl9pss, .framer-bwrSz .framer-1brz0t2, .framer-bwrSz .framer-g2v8iv, .framer-bwrSz .framer-1g0sp87, .framer-bwrSz .framer-y25aah, .framer-bwrSz .framer-1th2lyo, .framer-bwrSz .framer-mmptn7, .framer-bwrSz .framer-1jqssn9, .framer-bwrSz .framer-e0td4m, .framer-bwrSz .framer-4c0x5w, .framer-bwrSz .framer-mk3tv8, .framer-bwrSz .framer-1d2io0b, .framer-bwrSz .framer-1uu292a, .framer-bwrSz .framer-145dwah { align-content: flex-start; align-items: flex-start; align-self: start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 8px; height: auto; justify-content: flex-start; justify-self: start; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-bwrSz .framer-1e6ipjz, .framer-bwrSz .framer-z5lzk6, .framer-bwrSz .framer-1c38bh5, .framer-bwrSz .framer-a1cvgt, .framer-bwrSz .framer-hmncqd, .framer-bwrSz .framer-17h2jxo, .framer-bwrSz .framer-xbrb91, .framer-bwrSz .framer-6qosv9, .framer-bwrSz .framer-1i832sp, .framer-bwrSz .framer-1loituj, .framer-bwrSz .framer-1vtcoqo, .framer-bwrSz .framer-1x8345f, .framer-bwrSz .framer-1uk6wjb, .framer-bwrSz .framer-13mzk0h, .framer-bwrSz .framer-fbfixt, .framer-bwrSz .framer-evjfpi, .framer-bwrSz .framer-s4qjxz, .framer-bwrSz .framer-10jdh6h { flex: none; height: 36px; overflow: hidden; position: relative; width: 40px; }\",\".framer-bwrSz .framer-64ue0r, .framer-bwrSz .framer-c17x76, .framer-bwrSz .framer-17h8p4q, .framer-bwrSz .framer-1x0lf0n, .framer-bwrSz .framer-1gi8dg8, .framer-bwrSz .framer-1vn3gpi, .framer-bwrSz .framer-1qe28rx, .framer-bwrSz .framer-1b80tly, .framer-bwrSz .framer-13jb5pt, .framer-bwrSz .framer-1hbt1nd, .framer-bwrSz .framer-1ym8shl, .framer-bwrSz .framer-13mh0nf, .framer-bwrSz .framer-61rdgf, .framer-bwrSz .framer-1vpllc, .framer-bwrSz .framer-i2gxvn, .framer-bwrSz .framer-1o1yxpl, .framer-bwrSz .framer-1pq0flv, .framer-bwrSz .framer-1csudjx { 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: flex-start; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-bwrSz .framer-khh4yb, .framer-bwrSz .framer-1ukfnfu, .framer-bwrSz .framer-hnbuem, .framer-bwrSz .framer-15v4rlk, .framer-bwrSz .framer-okk91a, .framer-bwrSz .framer-1y947ap, .framer-bwrSz .framer-bft53, .framer-bwrSz .framer-1twpi8h, .framer-bwrSz .framer-yl4wlb, .framer-bwrSz .framer-riohi3, .framer-bwrSz .framer-3z0mdu, .framer-bwrSz .framer-1jng1u9, .framer-bwrSz .framer-1cej8cc, .framer-bwrSz .framer-ardbwa, .framer-bwrSz .framer-7kwuez, .framer-bwrSz .framer-1wij8tq, .framer-bwrSz .framer-ekd3h4, .framer-bwrSz .framer-61hzs4, .framer-bwrSz .framer-1kd1hc7, .framer-bwrSz .framer-1qedfjv, .framer-bwrSz .framer-1bskhk6, .framer-bwrSz .framer-1jsmrmc, .framer-bwrSz .framer-u1njx8, .framer-bwrSz .framer-jjgidt, .framer-bwrSz .framer-1jd0kvl, .framer-bwrSz .framer-d47lx7, .framer-bwrSz .framer-crvrnj, .framer-bwrSz .framer-1abun22, .framer-bwrSz .framer-vjtuw9, .framer-bwrSz .framer-apdrfs, .framer-bwrSz .framer-1crvx15, .framer-bwrSz .framer-1nn581k, .framer-bwrSz .framer-1pvtuh0, .framer-bwrSz .framer-1k5jmzs, .framer-bwrSz .framer-1w9v989, .framer-bwrSz .framer-10ncsn7, .framer-bwrSz .framer-4gd846, .framer-bwrSz .framer-xr8sdf, .framer-bwrSz .framer-12324ay, .framer-bwrSz .framer-11rayse, .framer-bwrSz .framer-1bzdok7, .framer-bwrSz .framer-3127yd, .framer-bwrSz .framer-1stakjq, .framer-bwrSz .framer-rgplaz, .framer-bwrSz .framer-3udj4h, .framer-bwrSz .framer-u6xymz, .framer-bwrSz .framer-1qcy3ib, .framer-bwrSz .framer-1o9mvw5, .framer-bwrSz .framer-1dul9l8, .framer-bwrSz .framer-1fx5ue2, .framer-bwrSz .framer-1769ksi, .framer-bwrSz .framer-118mdxy, .framer-bwrSz .framer-1o4p3m3, .framer-bwrSz .framer-wdoh3w, .framer-bwrSz .framer-1a87k7c, .framer-bwrSz .framer-1hk91rv, .framer-bwrSz .framer-swpcyz, .framer-bwrSz .framer-1p811b4, .framer-bwrSz .framer-9hre55, .framer-bwrSz .framer-1xi0axo, .framer-bwrSz .framer-lrgntw, .framer-bwrSz .framer-19yqi1y, .framer-bwrSz .framer-1sky3uh, .framer-bwrSz .framer-jdk9nv, .framer-bwrSz .framer-4k48ft, .framer-bwrSz .framer-s1bm1z, .framer-bwrSz .framer-1ax7voz, .framer-bwrSz .framer-ppypqa, .framer-bwrSz .framer-1e7gbvh, .framer-bwrSz .framer-17fnsny, .framer-bwrSz .framer-fgs0ui, .framer-bwrSz .framer-1jyd6rb, .framer-bwrSz .framer-vuc8ru, .framer-bwrSz .framer-l6ec2r, .framer-bwrSz .framer-mn20k2, .framer-bwrSz .framer-1505n2o, .framer-bwrSz .framer-1ttbmu6, .framer-bwrSz .framer-rm6ls, .framer-bwrSz .framer-t4wd7j, .framer-bwrSz .framer-1y0wfgc { --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-bwrSz .framer-52f242 { align-content: center; align-items: center; background-color: var(--token-19182416-018f-4aaf-8caa-795abe04b4ff, #ffffff); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: visible; padding: 620px 20px 0px 20px; position: relative; scroll-margin-top: 150px; width: 100%; }\",\".framer-bwrSz .framer-nliwgv { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; left: 50%; max-width: 936px; overflow: hidden; padding: 0px; position: absolute; top: 0px; transform: translateX(-50%); width: 936px; z-index: 7; }\",\".framer-bwrSz .framer-ibcior-container { flex: none; height: auto; max-width: 936px; position: relative; width: 100%; z-index: 1; }\",\".framer-bwrSz.framer-9hd70b { background-color: rgba(0, 0, 0, 0.67); inset: 0px; position: fixed; user-select: none; z-index: 10; }\",\".framer-bwrSz.framer-3avlr0-container { flex: none; height: 526px; left: calc(50.00000000000002% - 936px / 2); position: fixed; top: 140px; width: 936px; z-index: 10; }\",\".framer-bwrSz .framer-1sn8yzv { align-content: center; align-items: center; background-color: #ffffff; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 80px; height: min-content; justify-content: center; max-width: 1130px; overflow: hidden; padding: 105px 0px 0px 0px; position: relative; width: 100%; }\",\".framer-bwrSz .framer-102ga7m { --border-bottom-width: 1px; --border-color: var(--token-6bc26d4f-082c-4ad6-b035-a557e3f04344, #d8dee8); --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-e41766a9-a65b-4dd7-a8ba-ae9a43b347f8, #f0f2f6); border-bottom-left-radius: 16px; border-bottom-right-radius: 16px; border-top-left-radius: 16px; border-top-right-radius: 16px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 30px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 32px 40px 32px 32px; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-bwrSz .framer-1xq8q6r { align-content: center; align-items: center; aspect-ratio: 1.639344262295082 / 1; border-bottom-left-radius: 10px; border-bottom-right-radius: 10px; border-top-left-radius: 10px; border-top-right-radius: 10px; cursor: pointer; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: var(--framer-aspect-ratio-supported, 313px); justify-content: flex-start; max-width: 540px; overflow: hidden; padding: 0px; position: relative; width: 1px; will-change: var(--framer-will-change-override, transform); }\",'.framer-bwrSz.framer-2plv4c { background-color: var(--token-21b87942-b5ba-4341-95a9-cb6b167de460, #000000) /* {\"name\":\"Black\"} */; inset: 0px; position: fixed; user-select: none; z-index: 10; }',\".framer-bwrSz.framer-dzve55-container { flex: none; height: 526px; left: calc(49.357142857142875% - 936px / 2); position: fixed; top: 140px; width: 936px; z-index: 10; }\",\".framer-bwrSz .framer-105zu52 { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-bwrSz .framer-1aveioo { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 12px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-bwrSz .framer-15f4461 { flex: none; height: 29px; overflow: hidden; position: relative; width: 39px; }\",\".framer-bwrSz .framer-smbyua, .framer-bwrSz .framer-aids7l, .framer-bwrSz .framer-a509z4, .framer-bwrSz .framer-eaosvg, .framer-bwrSz .framer-1j9m4t9, .framer-bwrSz .framer-1c40u4k, .framer-bwrSz .framer-amv8wm, .framer-bwrSz .framer-sz9v10, .framer-bwrSz .framer-16lszh9, .framer-bwrSz .framer-1kqdii { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-bwrSz .framer-keiasn { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-bwrSz .framer-jjja4l, .framer-bwrSz .framer-o2bslv, .framer-bwrSz .framer-j0datt { align-content: center; align-items: center; background-color: #d9d9d9; border-bottom-left-radius: 7px; border-bottom-right-radius: 7px; border-top-left-radius: 7px; border-top-right-radius: 7px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: 63px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 64px; will-change: var(--framer-will-change-override, transform); }\",\".framer-bwrSz .framer-17pkle5, .framer-bwrSz .framer-sfwra0 { border-bottom-left-radius: 6px; border-bottom-right-radius: 6px; border-top-left-radius: 6px; border-top-right-radius: 6px; flex: none; height: 60px; overflow: hidden; position: relative; width: 60px; will-change: var(--framer-will-change-override, transform); }\",\".framer-bwrSz .framer-p6ih1t { align-content: center; align-items: center; background-color: #ffffff; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: center; max-width: 800px; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-bwrSz .framer-1c55s91, .framer-bwrSz .framer-1e1r4f2, .framer-bwrSz .framer-10ahet3, .framer-bwrSz .framer-pvaq2p, .framer-bwrSz .framer-lbfmvc, .framer-bwrSz .framer-egj3ch, .framer-bwrSz .framer-tg2o0h, .framer-bwrSz .framer-zs5xj1, .framer-bwrSz .framer-o217h0, .framer-bwrSz .framer-14px8ci, .framer-bwrSz .framer-ksdp6y, .framer-bwrSz .framer-14n5m7z, .framer-bwrSz .framer-1w4rpdf, .framer-bwrSz .framer-49i8sr, .framer-bwrSz .framer-czgi67, .framer-bwrSz .framer-132nr10, .framer-bwrSz .framer-14n6r6t, .framer-bwrSz .framer-beffgk, .framer-bwrSz .framer-jpgcig, .framer-bwrSz .framer-dowmd8, .framer-bwrSz .framer-qq9x3o, .framer-bwrSz .framer-1djvw13, .framer-bwrSz .framer-1ge6z87, .framer-bwrSz .framer-59ggbv, .framer-bwrSz .framer-6d3uvh { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-bwrSz .framer-zl4zl1 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-bwrSz .framer-1xk7dnu { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 12px; height: min-content; justify-content: center; max-width: 1128px; overflow: hidden; padding: 40px 0px 0px 0px; position: relative; width: 100%; }\",\".framer-bwrSz .framer-6mt53p { align-content: center; align-items: center; background: linear-gradient(180deg, rgba(240, 242, 246, 0) 0%, rgb(240, 242, 246) 100%); display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-bwrSz .framer-kr4srb, .framer-bwrSz .framer-hvwoa4, .framer-bwrSz .framer-hlcfv8 { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; max-width: 370px; overflow: hidden; padding: 20px 30px 40px 30px; position: relative; width: 1px; }\",\".framer-bwrSz .framer-lusj61, .framer-bwrSz .framer-1rgo1l8, .framer-bwrSz .framer-1h5aum0 { 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: hidden; padding: 0px; position: relative; width: 308px; }\",\".framer-bwrSz .framer-17q032c { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; max-width: 365px; overflow: visible; padding: 80px 0px 0px 0px; position: relative; width: 100%; }\",\".framer-bwrSz .framer-gasvvy, .framer-bwrSz .framer-n9r5oa, .framer-bwrSz .framer-1bhyrvs, .framer-bwrSz .framer-tsceuy, .framer-bwrSz .framer-l0rin9, .framer-bwrSz .framer-1hccslf, .framer-bwrSz .framer-xnklsk, .framer-bwrSz .framer-v70e8x, .framer-bwrSz .framer-5wagu1, .framer-bwrSz .framer-1dhqdxr, .framer-bwrSz .framer-pu3nx6, .framer-bwrSz .framer-1mctllf, .framer-bwrSz .framer-svsfyk, .framer-bwrSz .framer-i7cunx, .framer-bwrSz .framer-1p7nyux, .framer-bwrSz .framer-2282r8, .framer-bwrSz .framer-quf9kh, .framer-bwrSz .framer-vam3jb, .framer-bwrSz .framer-1an2bh2, .framer-bwrSz .framer-1egoj48, .framer-bwrSz .framer-1gp14yd, .framer-bwrSz .framer-rjziwt, .framer-bwrSz .framer-1v1x0vi, .framer-bwrSz .framer-pwh9ge, .framer-bwrSz .framer-pbbt10, .framer-bwrSz .framer-1dmbiah, .framer-bwrSz .framer-1pr2ono, .framer-bwrSz .framer-flpdzv, .framer-bwrSz .framer-1iavh7d, .framer-bwrSz .framer-lwt6n7, .framer-bwrSz .framer-14gvoa3, .framer-bwrSz .framer-1n2kvl9, .framer-bwrSz .framer-emgo27, .framer-bwrSz .framer-p1o857, .framer-bwrSz .framer-1h2qgrh, .framer-bwrSz .framer-3ym1i9, .framer-bwrSz .framer-61s6d4, .framer-bwrSz .framer-1fjrak5, .framer-bwrSz .framer-9r6lps, .framer-bwrSz .framer-1s4yz0u, .framer-bwrSz .framer-1juj22g, .framer-bwrSz .framer-1kfojif, .framer-bwrSz .framer-1d76466, .framer-bwrSz .framer-1wkcvft { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-bwrSz .framer-gorjhk { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: hidden; padding: 190px 0px 0px 0px; position: relative; width: 100%; }\",\".framer-bwrSz .framer-1in8w8t { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-bwrSz .framer-1tzw4tx-container { flex: 1 0 0px; height: 56px; position: relative; width: 1px; }\",\".framer-bwrSz .framer-mj3mox { --border-bottom-width: 1px; --border-color: var(--token-d1f6ecfd-2abf-4418-8a05-8920186c6135, #0061ff); --border-left-width: 0px; --border-right-width: 0px; --border-style: solid; --border-top-width: 1px; align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 18px; height: 56px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1920px; }\",\".framer-bwrSz .framer-17patwh, .framer-bwrSz .framer-vckyyq, .framer-bwrSz .framer-plahom, .framer-bwrSz .framer-1yv8qs6, .framer-bwrSz .framer-15kgw86 { flex: none; height: 8px; overflow: hidden; position: relative; width: 9px; }\",\".framer-bwrSz .framer-1p73v9a { align-content: center; align-items: center; background-color: #f6f7f8; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: hidden; padding: 90px 0px 0px 0px; position: relative; width: 100%; }\",\".framer-bwrSz .framer-rrkx6d { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 100px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-bwrSz .framer-frd46q { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 65px; height: min-content; justify-content: center; max-width: 1260px; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-bwrSz .framer-1qbs5gg { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 45px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-bwrSz .framer-vr2df2, .framer-bwrSz .framer-wcviag, .framer-bwrSz .framer-23kc2h, .framer-bwrSz .framer-1xf8lwr, .framer-bwrSz .framer-c7q33y, .framer-bwrSz .framer-1w1h1d5, .framer-bwrSz .framer-1b2pqcd { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 32px; height: min-content; justify-content: center; max-width: 670px; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-bwrSz .framer-atsu2, .framer-bwrSz .framer-1uvk137, .framer-bwrSz .framer-1p3xpbz, .framer-bwrSz .framer-1138vvu, .framer-bwrSz .framer-1iqq5h1, .framer-bwrSz .framer-3tojw3, .framer-bwrSz .framer-1q5hdfa, .framer-bwrSz .framer-6nlw0c, .framer-bwrSz .framer-vb465k, .framer-bwrSz .framer-185pj40, .framer-bwrSz .framer-147yf44, .framer-bwrSz .framer-bi5gog, .framer-bwrSz .framer-1qi5iij, .framer-bwrSz .framer-6no27i { 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-bwrSz .framer-ek563u, .framer-bwrSz .framer-us4unl, .framer-bwrSz .framer-mixp3, .framer-bwrSz .framer-1sxjzbn, .framer-bwrSz .framer-7rve6w, .framer-bwrSz .framer-xlu5yh, .framer-bwrSz .framer-k17dzp, .framer-bwrSz .framer-9smev7, .framer-bwrSz .framer-8yifc0 { 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; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-bwrSz .framer-ioaxux, .framer-bwrSz .framer-1qvzmik, .framer-bwrSz .framer-gym3h3, .framer-bwrSz .framer-rkt84e, .framer-bwrSz .framer-15ezi1a, .framer-bwrSz .framer-wmj1s9, .framer-bwrSz .framer-l8jec0, .framer-bwrSz .framer-utlcs, .framer-bwrSz .framer-161nuzi, .framer-bwrSz .framer-uvsl2g, .framer-bwrSz .framer-1ho4nr1, .framer-bwrSz .framer-14e9jvq { 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; overflow: hidden; padding: 16px 0px 0px 0px; position: relative; width: 100%; }\",\".framer-bwrSz .framer-xb4jb6, .framer-bwrSz .framer-cgn6em, .framer-bwrSz .framer-yvc2vk, .framer-bwrSz .framer-1dmpvd0, .framer-bwrSz .framer-htioxk, .framer-bwrSz .framer-15usenh, .framer-bwrSz .framer-zkhf0k { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-bwrSz .framer-1p3551y, .framer-bwrSz .framer-2dvkji, .framer-bwrSz .framer-13bg56e, .framer-bwrSz .framer-7yjmkl, .framer-bwrSz .framer-t7xko5, .framer-bwrSz .framer-16dle1p, .framer-bwrSz .framer-11hi75c, .framer-bwrSz .framer-w08l4i, .framer-bwrSz .framer-n29lvg, .framer-bwrSz .framer-3is12n, .framer-bwrSz .framer-28jjxg, .framer-bwrSz .framer-cx5wpa, .framer-bwrSz .framer-9j82sf, .framer-bwrSz .framer-191nxa, .framer-bwrSz .framer-10eqdi3, .framer-bwrSz .framer-1menrs2, .framer-bwrSz .framer-1uskf3, .framer-bwrSz .framer-fizy1h, .framer-bwrSz .framer-1hjmyo8, .framer-bwrSz .framer-1wwc5lm, .framer-bwrSz .framer-19odxae, .framer-bwrSz .framer-1tjdu85, .framer-bwrSz .framer-1bpdqh1, .framer-bwrSz .framer-lhejbm, .framer-bwrSz .framer-1m447wg, .framer-bwrSz .framer-1skf8az, .framer-bwrSz .framer-1xjlzn7 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 5px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-bwrSz .framer-arb9d7, .framer-bwrSz .framer-1fvbm4u, .framer-bwrSz .framer-15o0rdq, .framer-bwrSz .framer-1o90noc, .framer-bwrSz .framer-1ilqj2h, .framer-bwrSz .framer-1ti6b0m, .framer-bwrSz .framer-z6hmrk, .framer-bwrSz .framer-w5gzlo, .framer-bwrSz .framer-1dyfb4x, .framer-bwrSz .framer-t6oprh, .framer-bwrSz .framer-1ic6iy5, .framer-bwrSz .framer-1dfc5kd, .framer-bwrSz .framer-xa8mun, .framer-bwrSz .framer-1n7w0x2, .framer-bwrSz .framer-1wxovli, .framer-bwrSz .framer-pjfkd7, .framer-bwrSz .framer-xauyja, .framer-bwrSz .framer-1koaflj, .framer-bwrSz .framer-c1xh5z, .framer-bwrSz .framer-18tx8sk, .framer-bwrSz .framer-8ymhm7, .framer-bwrSz .framer-1nenazc, .framer-bwrSz .framer-vjdc10, .framer-bwrSz .framer-n0xw8g, .framer-bwrSz .framer-1xhz308, .framer-bwrSz .framer-1pd46rc, .framer-bwrSz .framer-g1iadk, .framer-bwrSz .framer-ie1qjv, .framer-bwrSz .framer-15ll5m9, .framer-bwrSz .framer-vz3r69, .framer-bwrSz .framer-19ab3cj, .framer-bwrSz .framer-447tls, .framer-bwrSz .framer-d9q2cq { flex: none; height: 10px; overflow: hidden; position: relative; width: 10px; }\",\".framer-bwrSz .framer-a0eejm { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: 840px; justify-content: center; max-width: 650px; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-bwrSz .framer-fw3858, .framer-bwrSz .framer-v7sj1r, .framer-bwrSz .framer-16562bd, .framer-bwrSz .framer-19jjyy2 { flex: none; height: 100%; overflow: hidden; position: relative; width: 100%; }\",\".framer-bwrSz .framer-vwureh, .framer-bwrSz .framer-naskbo, .framer-bwrSz .framer-g3vwkp, .framer-bwrSz .framer-1p5ecd1, .framer-bwrSz .framer-qthqx6, .framer-bwrSz .framer-d7c0j2, .framer-bwrSz .framer-vqn9b8 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 44px; height: min-content; justify-content: center; max-width: 900px; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-bwrSz .framer-eksu1r, .framer-bwrSz .framer-1bhdp5q, .framer-bwrSz .framer-117vcbp, .framer-bwrSz .framer-1hp3ap9, .framer-bwrSz .framer-1mx4aft, .framer-bwrSz .framer-1qfdh3r, .framer-bwrSz .framer-1b7ei3l, .framer-bwrSz .framer-dmwim7 { --border-bottom-width: 1px; --border-color: var(--token-6bc26d4f-082c-4ad6-b035-a557e3f04344, #d8dee8); --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-e41766a9-a65b-4dd7-a8ba-ae9a43b347f8, #f0f2f6); border-bottom-left-radius: 16px; border-bottom-right-radius: 16px; border-top-left-radius: 16px; border-top-right-radius: 16px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 30px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 40px 50px 40px 50px; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-bwrSz .framer-12k299d, .framer-bwrSz .framer-roug7i, .framer-bwrSz .framer-1fbv8s3, .framer-bwrSz .framer-1gj9oxt, .framer-bwrSz .framer-50hyn6, .framer-bwrSz .framer-1w1zsst, .framer-bwrSz .framer-1t39tug { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-bwrSz .framer-1yzz4d9, .framer-bwrSz .framer-gw7mhw, .framer-bwrSz .framer-8tnktt, .framer-bwrSz .framer-12uvfat { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 18px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-bwrSz .framer-1iwrxu2, .framer-bwrSz .framer-1yf166x, .framer-bwrSz .framer-u8xbxs, .framer-bwrSz .framer-1lu8hsy, .framer-bwrSz .framer-7vzt44, .framer-bwrSz .framer-61yzpa { flex: none; height: 29px; overflow: hidden; position: relative; width: 40px; }\",\".framer-bwrSz .framer-oo0ytm, .framer-bwrSz .framer-19674vv, .framer-bwrSz .framer-kypz9v, .framer-bwrSz .framer-13t7ola, .framer-bwrSz .framer-1efkruc, .framer-bwrSz .framer-1g9foo4, .framer-bwrSz .framer-13plyw2, .framer-bwrSz .framer-il043v { 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: 300px; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-bwrSz .framer-meiijz, .framer-bwrSz .framer-1x81t7y, .framer-bwrSz .framer-n36iwb, .framer-bwrSz .framer-ecw49t { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-bwrSz .framer-cawef5, .framer-bwrSz .framer-1d281p5, .framer-bwrSz .framer-1b4lx9r, .framer-bwrSz .framer-1hcuejl { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-bwrSz .framer-rhnaxd, .framer-bwrSz .framer-aorki8, .framer-bwrSz .framer-1x6j3s5, .framer-bwrSz .framer-18u9oyi { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; opacity: 0.7; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-bwrSz .framer-zsqo2y, .framer-bwrSz .framer-alt8g, .framer-bwrSz .framer-aem9z6, .framer-bwrSz .framer-19wnb18, .framer-bwrSz .framer-1dkj3es, .framer-bwrSz .framer-aou0rj, .framer-bwrSz .framer-6wlw6c, .framer-bwrSz .framer-4hqerr, .framer-bwrSz .framer-obgdsy { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; max-width: 365px; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-bwrSz .framer-1ykdrsi, .framer-bwrSz .framer-lyviwu, .framer-bwrSz .framer-1fvnc5f, .framer-bwrSz .framer-1b406ez, .framer-bwrSz .framer-1d6k3s6, .framer-bwrSz .framer-1s3hkd0, .framer-bwrSz .framer-1v9ws0h, .framer-bwrSz .framer-tt47p8 { background-color: var(--token-2e3b8e69-3f51-433b-b40e-5e81c828e92a, #d8dee8); flex: none; height: 1px; max-width: 1360px; overflow: hidden; position: relative; width: 100%; }\",\".framer-bwrSz .framer-15436lh, .framer-bwrSz .framer-5aizod, .framer-bwrSz .framer-1eghzfh, .framer-bwrSz .framer-52dtc9, .framer-bwrSz .framer-ae81f7, .framer-bwrSz .framer-25gri7, .framer-bwrSz .framer-1c3pyx { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 100px; height: min-content; justify-content: center; overflow: hidden; padding: 100px 0px 0px 0px; position: relative; width: 100%; }\",\".framer-bwrSz .framer-1a7bnpp { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 69px; height: min-content; justify-content: center; max-width: 1260px; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-bwrSz .framer-o61xom, .framer-bwrSz .framer-q4asj2, .framer-bwrSz .framer-83vese { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 85px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-bwrSz .framer-15pvabl { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: 950px; justify-content: center; max-width: 650px; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-bwrSz .framer-1v8x8z0, .framer-bwrSz .framer-189dmh4, .framer-bwrSz .framer-cyw1he, .framer-bwrSz .framer-h9vykg, .framer-bwrSz .framer-1ncyl5p { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 48px; height: min-content; justify-content: center; max-width: 1260px; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-bwrSz .framer-1cfq3ln, .framer-bwrSz .framer-1u9r77i { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 85px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-bwrSz .framer-17ycsfe { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: 664px; justify-content: center; max-width: 645px; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-bwrSz .framer-1gj6f3z { border-bottom-left-radius: 7px; border-bottom-right-radius: 7px; border-top-left-radius: 7px; border-top-right-radius: 7px; flex: none; height: 84px; overflow: hidden; position: relative; width: 84px; will-change: var(--framer-will-change-override, transform); }\",\".framer-bwrSz .framer-1hdhrd8, .framer-bwrSz .framer-vsex48, .framer-bwrSz .framer-d49bok, .framer-bwrSz .framer-g82wi1, .framer-bwrSz .framer-1o9n70, .framer-bwrSz .framer-1w6p2ml { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 16px 0px 0px 0px; position: relative; width: 100%; }\",\".framer-bwrSz .framer-1p4nvq8 { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: 740px; justify-content: center; max-width: 645px; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-bwrSz .framer-3y9ew, .framer-bwrSz .framer-eo4kss, .framer-bwrSz .framer-vnyll0, .framer-bwrSz .framer-b86aa8 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 18px; height: min-content; justify-content: center; max-width: 760px; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-bwrSz .framer-7i5vqk, .framer-bwrSz .framer-52p4oz, .framer-bwrSz .framer-13jqfnf, .framer-bwrSz .framer-h1uwlv, .framer-bwrSz .framer-m7more, .framer-bwrSz .framer-d6e80i { align-content: center; align-items: center; background-color: #d9d9d9; border-bottom-left-radius: 7px; border-bottom-right-radius: 7px; border-top-left-radius: 7px; border-top-right-radius: 7px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: 64px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 64px; will-change: var(--framer-will-change-override, transform); }\",\".framer-bwrSz .framer-75bjrp, .framer-bwrSz .framer-1tgbor3, .framer-bwrSz .framer-yaur30, .framer-bwrSz .framer-1glapzg, .framer-bwrSz .framer-tf0gs8, .framer-bwrSz .framer-lyczd6 { border-bottom-left-radius: 7px; border-bottom-right-radius: 7px; border-top-left-radius: 7px; border-top-right-radius: 7px; flex: none; height: 60px; overflow: hidden; position: relative; width: 60px; will-change: var(--framer-will-change-override, transform); }\",\".framer-bwrSz .framer-1l6vcrr, .framer-bwrSz .framer-hwtf6s { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 64px; height: min-content; justify-content: center; max-width: 1260px; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-bwrSz .framer-lehxwo, .framer-bwrSz .framer-60cnpp { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 64px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-bwrSz .framer-1vr4z9c, .framer-bwrSz .framer-1u3nqev { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; max-width: 750px; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-bwrSz .framer-g2ozvq, .framer-bwrSz .framer-183m5pi { display: grid; flex: none; gap: 40px; grid-auto-rows: minmax(0, 1fr); grid-template-columns: repeat(3, minmax(50px, 1fr)); grid-template-rows: repeat(1, minmax(0, 1fr)); height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-bwrSz .framer-1x9g53w, .framer-bwrSz .framer-dyv6pe { align-content: flex-start; align-items: flex-start; align-self: start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 5px; height: min-content; justify-content: flex-start; justify-self: start; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-bwrSz .framer-1tz63uy { align-content: center; align-items: center; align-self: stretch; 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: auto; }\",\".framer-bwrSz .framer-1tu9oqi, .framer-bwrSz .framer-qyd57b { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 426px; }\",\".framer-bwrSz .framer-u9k3um { align-content: flex-start; align-items: flex-start; align-self: start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 5px; height: min-content; justify-content: flex-start; justify-self: start; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-bwrSz .framer-yhe4uf { align-content: center; align-items: center; border-bottom-left-radius: 10px; border-bottom-right-radius: 10px; border-top-left-radius: 10px; border-top-right-radius: 10px; box-shadow: 0px 4px 40px 0px rgba(0, 0, 0, 0.08); cursor: pointer; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: 840px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-bwrSz .framer-1cte7ru { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: 100%; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-bwrSz .framer-18ubzqs, .framer-bwrSz .framer-165cwb5 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: visible; padding: 16px 0px 0px 0px; position: relative; width: 100%; }\",\".framer-bwrSz .framer-1ldzeft, .framer-bwrSz .framer-1f3wgf2 { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 44px; height: min-content; justify-content: center; max-width: 900px; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-bwrSz .framer-evdhaz, .framer-bwrSz .framer-1ydzamk { flex: none; height: 30px; overflow: hidden; position: relative; width: 40px; }\",\".framer-bwrSz .framer-11cycif, .framer-bwrSz .framer-w116bq, .framer-bwrSz .framer-zevqis, .framer-bwrSz .framer-6q6g3z { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-bwrSz .framer-crch8q, .framer-bwrSz .framer-rqbud5 { 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: min-content; }\",\".framer-bwrSz .framer-19q8dz0, .framer-bwrSz .framer-1873pj8, .framer-bwrSz .framer-75byug, .framer-bwrSz .framer-b1wt1s { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; opacity: 0.7; position: relative; white-space: pre; width: auto; }\",\".framer-bwrSz .framer-7adqy4, .framer-bwrSz .framer-17a5cg9, .framer-bwrSz .framer-155n5s9 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 85px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-bwrSz .framer-11c61qm { align-content: center; align-items: center; border-bottom-left-radius: 10px; border-bottom-right-radius: 10px; border-top-left-radius: 10px; border-top-right-radius: 10px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: 628px; justify-content: center; max-width: 655px; overflow: visible; padding: 0px; position: relative; width: 650px; }\",\".framer-bwrSz .framer-18cdkro, .framer-bwrSz .framer-wkqf7h, .framer-bwrSz .framer-tqu3ep { border-bottom-left-radius: 10px; border-bottom-right-radius: 10px; border-top-left-radius: 10px; border-top-right-radius: 10px; flex: none; height: 100%; overflow: hidden; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-bwrSz .framer-5a03mm, .framer-bwrSz .framer-19ogmly { align-content: flex-start; align-items: flex-start; align-self: start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 5px; height: min-content; justify-content: flex-start; justify-self: start; max-width: 426px; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-bwrSz .framer-189kyol { align-content: flex-start; align-items: flex-start; align-self: start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 5px; height: min-content; justify-content: flex-start; justify-self: start; max-width: 426px; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-bwrSz .framer-1vvv31h { align-content: center; align-items: center; border-bottom-left-radius: 10px; border-bottom-right-radius: 10px; border-top-left-radius: 10px; border-top-right-radius: 10px; box-shadow: 0px 4px 40px 0px rgba(0, 0, 0, 0.08); display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: 808px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-bwrSz .framer-17d4l10 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: 100%; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-bwrSz .framer-c3t35y, .framer-bwrSz .framer-m5n18o { 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-bwrSz .framer-gs02zc { align-content: center; align-items: center; border-bottom-left-radius: 10px; border-bottom-right-radius: 10px; border-top-left-radius: 10px; border-top-right-radius: 10px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: 745px; justify-content: center; max-width: 655px; overflow: visible; padding: 0px; position: relative; width: 650px; }\",\".framer-bwrSz .framer-1warloq { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 100px; height: min-content; justify-content: center; overflow: hidden; padding: 100px 0px 58px 0px; position: relative; width: 100%; }\",\".framer-bwrSz .framer-9kvptu { align-content: center; align-items: center; border-bottom-left-radius: 10px; border-bottom-right-radius: 10px; border-top-left-radius: 10px; border-top-right-radius: 10px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: 890px; justify-content: center; max-width: 655px; overflow: visible; padding: 0px; position: relative; width: 650px; }\",\".framer-bwrSz .framer-kuecq6 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: visible; padding: 120px 0px 120px 0px; position: relative; width: 100%; }\",\".framer-bwrSz .framer-1chths4 { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 64px; height: min-content; justify-content: center; max-width: 1260px; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-bwrSz .framer-1ni9oz1 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 12px; height: min-content; justify-content: center; max-width: 860px; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-bwrSz .framer-1x5m0k { display: grid; flex: none; gap: 40px; grid-auto-rows: min-content; grid-template-columns: repeat(3, minmax(50px, 1fr)); grid-template-rows: repeat(1, min-content); height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-bwrSz .framer-susct { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 18px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-bwrSz .framer-7lpfvf { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: 178px; justify-content: center; left: 0px; overflow: hidden; padding: 0px; position: absolute; right: 0px; top: -205px; z-index: 1; }\",\".framer-bwrSz .framer-q4hknw { flex: none; height: 175px; overflow: hidden; position: relative; width: 22px; }\",\".framer-bwrSz .framer-5vluwg { align-content: center; align-items: center; background-color: #f6f7f8; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: hidden; padding: 120px 0px 120px 0px; position: relative; width: 100%; }\",\".framer-bwrSz .framer-vvd4up { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 80px; height: min-content; justify-content: flex-start; max-width: 1216px; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-bwrSz .framer-43f0qv { 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; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: 740px; justify-content: center; max-width: 520px; overflow: hidden; padding: 0px; position: relative; width: 1px; will-change: var(--framer-will-change-override, transform); }\",\".framer-bwrSz .framer-1t94n0c { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: 1px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-bwrSz .framer-h6n2mt { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 32px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-bwrSz .framer-15lv7z6 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 15px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-bwrSz .framer-1mnxa93 { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-bwrSz .framer-18cja5u { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: hidden; padding: 120px 20px 120px 20px; position: relative; width: 100%; }\",\".framer-bwrSz .framer-1kya76u { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 60px; height: min-content; justify-content: center; max-width: 1200px; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-bwrSz .framer-99fk0z { 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: 810px; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-bwrSz .framer-1fg3x2r-container, .framer-bwrSz .framer-13o073r-container, .framer-bwrSz .framer-1b988io-container { flex: none; height: auto; position: relative; width: 100%; }\",\".framer-bwrSz .framer-1gxz9n5 { align-content: center; align-items: center; background-color: #1f1f1d; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: hidden; padding: 100px 0px 80px 0px; position: relative; scroll-margin-top: 100px; width: 100%; }\",\".framer-bwrSz .framer-l61in2 { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 63px; height: min-content; justify-content: center; max-width: 800px; overflow: hidden; padding: 0px; position: relative; width: 1px; z-index: 4; }\",\".framer-bwrSz .framer-1n63pwe { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: center; max-width: 700px; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-bwrSz .framer-pcic4k { align-content: center; align-items: center; background: linear-gradient(180deg, rgba(0, 97, 255, 0.2) 0%, rgb(0, 97, 255) 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: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; max-width: 520px; overflow: hidden; padding: 2px; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-bwrSz .framer-1npybh { align-content: flex-start; align-items: flex-start; background-color: var(--token-406ee2a1-9c29-42c5-961e-cfe02a30aaf7, #121212); border-bottom-left-radius: 10px; border-bottom-right-radius: 10px; border-top-left-radius: 10px; border-top-right-radius: 10px; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 30px 50px 30px 50px; position: relative; width: 1px; will-change: var(--framer-will-change-override, transform); }\",\".framer-bwrSz .framer-1ydfzfb { 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-bwrSz .framer-6749od { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-bwrSz .framer-1giz3xk { align-content: flex-end; align-items: flex-end; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 4px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-bwrSz .framer-83vj6k { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; opacity: 0.5; position: relative; white-space: pre; width: auto; }\",\".framer-bwrSz .framer-rjhtmf { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 12px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-bwrSz .framer-1atz13h, .framer-bwrSz .framer-1240tuv, .framer-bwrSz .framer-13lcauk, .framer-bwrSz .framer-nm5qjo, .framer-bwrSz .framer-cnahli, .framer-bwrSz .framer-6l5koc, .framer-bwrSz .framer-6toyq0, .framer-bwrSz .framer-e17yix, .framer-bwrSz .framer-1bsb5cx, .framer-bwrSz .framer-17r2s1x, .framer-bwrSz .framer-qzs1tk, .framer-bwrSz .framer-i8le62, .framer-bwrSz .framer-1w0ct81, .framer-bwrSz .framer-1rj57yi { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 12px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-bwrSz .framer-1jsd4it, .framer-bwrSz .framer-1vgl7x9, .framer-bwrSz .framer-1k8ndz4, .framer-bwrSz .framer-1q78itp, .framer-bwrSz .framer-14rbqxr, .framer-bwrSz .framer-1hdrd18, .framer-bwrSz .framer-x4l3rr, .framer-bwrSz .framer-1xv9m, .framer-bwrSz .framer-1ab1cib, .framer-bwrSz .framer-1cfxarj, .framer-bwrSz .framer-kb04ee, .framer-bwrSz .framer-byh65e, .framer-bwrSz .framer-1kzxcet, .framer-bwrSz .framer-p0e1on { flex: none; height: 19px; overflow: hidden; position: relative; width: 12px; }\",\".framer-bwrSz .framer-1x9nxtd { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; max-width: 367px; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-bwrSz .framer-12tqsqj { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; opacity: 0.6; position: relative; white-space: pre; width: auto; }\",\".framer-bwrSz .framer-gw77ge { bottom: -107px; flex: none; height: 405px; left: 1018px; overflow: hidden; position: absolute; width: 405px; z-index: 1; }\",\".framer-bwrSz .framer-v836so { flex: none; height: 100%; left: 0px; overflow: hidden; position: absolute; top: calc(49.52380952380955% - 100% / 2); width: 100%; }\",\".framer-bwrSz .framer-1amx99u { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: 800px; justify-content: center; left: calc(50.00000000000002% - 800px / 2); overflow: visible; padding: 0px; position: absolute; top: -550px; width: 800px; z-index: 0; }\",\".framer-bwrSz .framer-1xt2qz4, .framer-bwrSz .framer-1mteudb { -webkit-filter: blur(100px); background: radial-gradient(50% 50% at 50% 50%, rgba(0, 97, 255, 0.3) 64.02406434755068%, rgba(0, 0, 0, 0.55) 100%); border-bottom-left-radius: 100%; border-bottom-right-radius: 100%; border-top-left-radius: 100%; border-top-right-radius: 100%; filter: blur(100px); flex: 1 0 0px; height: 100%; overflow: hidden; position: relative; width: 1px; will-change: var(--framer-will-change-override, transform); }\",\".framer-bwrSz .framer-ul3lb3 { align-content: center; align-items: center; bottom: -640px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: 1200px; justify-content: center; left: calc(51.76470588235297% - 1200px / 2); overflow: visible; padding: 0px; position: absolute; width: 1200px; z-index: 0; }\",\".framer-bwrSz .framer-1qk90je { background-color: #99eeff; bottom: 513px; flex: none; height: 20px; left: calc(47.58333333333336% - 43px / 2); overflow: hidden; position: absolute; width: 43px; }\",\"@supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-bwrSz.framer-zpfzn2, .framer-bwrSz .framer-1w1gp8r, .framer-bwrSz .framer-1eyinrm, .framer-bwrSz .framer-awzptn, .framer-bwrSz .framer-1vlm4ni, .framer-bwrSz .framer-hpp9yk, .framer-bwrSz .framer-f22k, .framer-bwrSz .framer-1hih0xd, .framer-bwrSz .framer-y6nxsz, .framer-bwrSz .framer-1h9sst9, .framer-bwrSz .framer-1jb68j, .framer-bwrSz .framer-1gekpb3, .framer-bwrSz .framer-4aewp5, .framer-bwrSz .framer-6xo3q5, .framer-bwrSz .framer-175iioy, .framer-bwrSz .framer-64ue0r, .framer-bwrSz .framer-1f2hrj6, .framer-bwrSz .framer-c17x76, .framer-bwrSz .framer-1ppie8k, .framer-bwrSz .framer-17h8p4q, .framer-bwrSz .framer-120bbms, .framer-bwrSz .framer-1x0lf0n, .framer-bwrSz .framer-nl9pss, .framer-bwrSz .framer-1gi8dg8, .framer-bwrSz .framer-1brz0t2, .framer-bwrSz .framer-1vn3gpi, .framer-bwrSz .framer-g2v8iv, .framer-bwrSz .framer-1qe28rx, .framer-bwrSz .framer-1g0sp87, .framer-bwrSz .framer-1b80tly, .framer-bwrSz .framer-y25aah, .framer-bwrSz .framer-13jb5pt, .framer-bwrSz .framer-52f242, .framer-bwrSz .framer-nliwgv, .framer-bwrSz .framer-1sn8yzv, .framer-bwrSz .framer-102ga7m, .framer-bwrSz .framer-1xq8q6r, .framer-bwrSz .framer-105zu52, .framer-bwrSz .framer-1aveioo, .framer-bwrSz .framer-smbyua, .framer-bwrSz .framer-keiasn, .framer-bwrSz .framer-jjja4l, .framer-bwrSz .framer-p6ih1t, .framer-bwrSz .framer-1c55s91, .framer-bwrSz .framer-zl4zl1, .framer-bwrSz .framer-1xk7dnu, .framer-bwrSz .framer-aids7l, .framer-bwrSz .framer-6mt53p, .framer-bwrSz .framer-kr4srb, .framer-bwrSz .framer-lusj61, .framer-bwrSz .framer-hvwoa4, .framer-bwrSz .framer-1rgo1l8, .framer-bwrSz .framer-hlcfv8, .framer-bwrSz .framer-1h5aum0, .framer-bwrSz .framer-17q032c, .framer-bwrSz .framer-gasvvy, .framer-bwrSz .framer-gorjhk, .framer-bwrSz .framer-1in8w8t, .framer-bwrSz .framer-mj3mox, .framer-bwrSz .framer-1p73v9a, .framer-bwrSz .framer-rrkx6d, .framer-bwrSz .framer-frd46q, .framer-bwrSz .framer-1qbs5gg, .framer-bwrSz .framer-vr2df2, .framer-bwrSz .framer-atsu2, .framer-bwrSz .framer-ek563u, .framer-bwrSz .framer-ioaxux, .framer-bwrSz .framer-1qvzmik, .framer-bwrSz .framer-xb4jb6, .framer-bwrSz .framer-1p3551y, .framer-bwrSz .framer-n9r5oa, .framer-bwrSz .framer-1e1r4f2, .framer-bwrSz .framer-2dvkji, .framer-bwrSz .framer-1bhyrvs, .framer-bwrSz .framer-10ahet3, .framer-bwrSz .framer-13bg56e, .framer-bwrSz .framer-tsceuy, .framer-bwrSz .framer-pvaq2p, .framer-bwrSz .framer-7yjmkl, .framer-bwrSz .framer-l0rin9, .framer-bwrSz .framer-lbfmvc, .framer-bwrSz .framer-t7xko5, .framer-bwrSz .framer-1hccslf, .framer-bwrSz .framer-egj3ch, .framer-bwrSz .framer-a0eejm, .framer-bwrSz .framer-vwureh, .framer-bwrSz .framer-eksu1r, .framer-bwrSz .framer-12k299d, .framer-bwrSz .framer-1yzz4d9, .framer-bwrSz .framer-a509z4, .framer-bwrSz .framer-oo0ytm, .framer-bwrSz .framer-meiijz, .framer-bwrSz .framer-o2bslv, .framer-bwrSz .framer-cawef5, .framer-bwrSz .framer-zsqo2y, .framer-bwrSz .framer-xnklsk, .framer-bwrSz .framer-15436lh, .framer-bwrSz .framer-1a7bnpp, .framer-bwrSz .framer-o61xom, .framer-bwrSz .framer-wcviag, .framer-bwrSz .framer-1uvk137, .framer-bwrSz .framer-us4unl, .framer-bwrSz .framer-gym3h3, .framer-bwrSz .framer-rkt84e, .framer-bwrSz .framer-cgn6em, .framer-bwrSz .framer-16dle1p, .framer-bwrSz .framer-v70e8x, .framer-bwrSz .framer-1p3xpbz, .framer-bwrSz .framer-11hi75c, .framer-bwrSz .framer-5wagu1, .framer-bwrSz .framer-tg2o0h, .framer-bwrSz .framer-w08l4i, .framer-bwrSz .framer-1dhqdxr, .framer-bwrSz .framer-zs5xj1, .framer-bwrSz .framer-n29lvg, .framer-bwrSz .framer-pu3nx6, .framer-bwrSz .framer-o217h0, .framer-bwrSz .framer-3is12n, .framer-bwrSz .framer-1mctllf, .framer-bwrSz .framer-14px8ci, .framer-bwrSz .framer-15pvabl, .framer-bwrSz .framer-naskbo, .framer-bwrSz .framer-alt8g, .framer-bwrSz .framer-svsfyk, .framer-bwrSz .framer-5aizod, .framer-bwrSz .framer-1v8x8z0, .framer-bwrSz .framer-1cfq3ln, .framer-bwrSz .framer-23kc2h, .framer-bwrSz .framer-1138vvu, .framer-bwrSz .framer-mixp3, .framer-bwrSz .framer-15ezi1a, .framer-bwrSz .framer-wmj1s9, .framer-bwrSz .framer-yvc2vk, .framer-bwrSz .framer-28jjxg, .framer-bwrSz .framer-i7cunx, .framer-bwrSz .framer-1iqq5h1, .framer-bwrSz .framer-cx5wpa, .framer-bwrSz .framer-1p7nyux, .framer-bwrSz .framer-ksdp6y, .framer-bwrSz .framer-9j82sf, .framer-bwrSz .framer-2282r8, .framer-bwrSz .framer-14n5m7z, .framer-bwrSz .framer-17ycsfe, .framer-bwrSz .framer-g3vwkp, .framer-bwrSz .framer-1bhdp5q, .framer-bwrSz .framer-roug7i, .framer-bwrSz .framer-gw7mhw, .framer-bwrSz .framer-eaosvg, .framer-bwrSz .framer-19674vv, .framer-bwrSz .framer-1x81t7y, .framer-bwrSz .framer-j0datt, .framer-bwrSz .framer-1d281p5, .framer-bwrSz .framer-aem9z6, .framer-bwrSz .framer-quf9kh, .framer-bwrSz .framer-1eghzfh, .framer-bwrSz .framer-189dmh4, .framer-bwrSz .framer-1u9r77i, .framer-bwrSz .framer-1xf8lwr, .framer-bwrSz .framer-3tojw3, .framer-bwrSz .framer-1sxjzbn, .framer-bwrSz .framer-l8jec0, .framer-bwrSz .framer-1hdhrd8, .framer-bwrSz .framer-1dmpvd0, .framer-bwrSz .framer-191nxa, .framer-bwrSz .framer-vam3jb, .framer-bwrSz .framer-1q5hdfa, .framer-bwrSz .framer-10eqdi3, .framer-bwrSz .framer-1an2bh2, .framer-bwrSz .framer-1w4rpdf, .framer-bwrSz .framer-1menrs2, .framer-bwrSz .framer-1egoj48, .framer-bwrSz .framer-49i8sr, .framer-bwrSz .framer-1uskf3, .framer-bwrSz .framer-1gp14yd, .framer-bwrSz .framer-czgi67, .framer-bwrSz .framer-1p4nvq8, .framer-bwrSz .framer-1p5ecd1, .framer-bwrSz .framer-117vcbp, .framer-bwrSz .framer-1fbv8s3, .framer-bwrSz .framer-3y9ew, .framer-bwrSz .framer-1j9m4t9, .framer-bwrSz .framer-kypz9v, .framer-bwrSz .framer-n36iwb, .framer-bwrSz .framer-7i5vqk, .framer-bwrSz .framer-1b4lx9r, .framer-bwrSz .framer-19wnb18, .framer-bwrSz .framer-rjziwt, .framer-bwrSz .framer-52dtc9, .framer-bwrSz .framer-1l6vcrr, .framer-bwrSz .framer-q4asj2, .framer-bwrSz .framer-lehxwo, .framer-bwrSz .framer-1vr4z9c, .framer-bwrSz .framer-7rve6w, .framer-bwrSz .framer-utlcs, .framer-bwrSz .framer-vsex48, .framer-bwrSz .framer-1x9g53w, .framer-bwrSz .framer-1v1x0vi, .framer-bwrSz .framer-1tz63uy, .framer-bwrSz .framer-dyv6pe, .framer-bwrSz .framer-pwh9ge, .framer-bwrSz .framer-1tu9oqi, .framer-bwrSz .framer-u9k3um, .framer-bwrSz .framer-pbbt10, .framer-bwrSz .framer-132nr10, .framer-bwrSz .framer-yhe4uf, .framer-bwrSz .framer-1cte7ru, .framer-bwrSz .framer-18ubzqs, .framer-bwrSz .framer-1ldzeft, .framer-bwrSz .framer-1hp3ap9, .framer-bwrSz .framer-1gj9oxt, .framer-bwrSz .framer-eo4kss, .framer-bwrSz .framer-1c40u4k, .framer-bwrSz .framer-13t7ola, .framer-bwrSz .framer-11cycif, .framer-bwrSz .framer-52p4oz, .framer-bwrSz .framer-crch8q, .framer-bwrSz .framer-1dkj3es, .framer-bwrSz .framer-1dmbiah, .framer-bwrSz .framer-ae81f7, .framer-bwrSz .framer-cyw1he, .framer-bwrSz .framer-7adqy4, .framer-bwrSz .framer-c7q33y, .framer-bwrSz .framer-6nlw0c, .framer-bwrSz .framer-xlu5yh, .framer-bwrSz .framer-161nuzi, .framer-bwrSz .framer-d49bok, .framer-bwrSz .framer-htioxk, .framer-bwrSz .framer-fizy1h, .framer-bwrSz .framer-1pr2ono, .framer-bwrSz .framer-vb465k, .framer-bwrSz .framer-1hjmyo8, .framer-bwrSz .framer-flpdzv, .framer-bwrSz .framer-14n6r6t, .framer-bwrSz .framer-1wwc5lm, .framer-bwrSz .framer-1iavh7d, .framer-bwrSz .framer-beffgk, .framer-bwrSz .framer-11c61qm, .framer-bwrSz .framer-qthqx6, .framer-bwrSz .framer-1mx4aft, .framer-bwrSz .framer-50hyn6, .framer-bwrSz .framer-vnyll0, .framer-bwrSz .framer-amv8wm, .framer-bwrSz .framer-1efkruc, .framer-bwrSz .framer-w116bq, .framer-bwrSz .framer-13jqfnf, .framer-bwrSz .framer-rqbud5, .framer-bwrSz .framer-aou0rj, .framer-bwrSz .framer-lwt6n7, .framer-bwrSz .framer-25gri7, .framer-bwrSz .framer-hwtf6s, .framer-bwrSz .framer-83vese, .framer-bwrSz .framer-60cnpp, .framer-bwrSz .framer-1u3nqev, .framer-bwrSz .framer-k17dzp, .framer-bwrSz .framer-uvsl2g, .framer-bwrSz .framer-g82wi1, .framer-bwrSz .framer-5a03mm, .framer-bwrSz .framer-14gvoa3, .framer-bwrSz .framer-185pj40, .framer-bwrSz .framer-189kyol, .framer-bwrSz .framer-1n2kvl9, .framer-bwrSz .framer-qyd57b, .framer-bwrSz .framer-19ogmly, .framer-bwrSz .framer-emgo27, .framer-bwrSz .framer-jpgcig, .framer-bwrSz .framer-1vvv31h, .framer-bwrSz .framer-17d4l10, .framer-bwrSz .framer-165cwb5, .framer-bwrSz .framer-1f3wgf2, .framer-bwrSz .framer-1qfdh3r, .framer-bwrSz .framer-1w1zsst, .framer-bwrSz .framer-b86aa8, .framer-bwrSz .framer-sz9v10, .framer-bwrSz .framer-1g9foo4, .framer-bwrSz .framer-zevqis, .framer-bwrSz .framer-h1uwlv, .framer-bwrSz .framer-c3t35y, .framer-bwrSz .framer-6wlw6c, .framer-bwrSz .framer-p1o857, .framer-bwrSz .framer-1c3pyx, .framer-bwrSz .framer-h9vykg, .framer-bwrSz .framer-17a5cg9, .framer-bwrSz .framer-1w1h1d5, .framer-bwrSz .framer-147yf44, .framer-bwrSz .framer-9smev7, .framer-bwrSz .framer-1ho4nr1, .framer-bwrSz .framer-1o9n70, .framer-bwrSz .framer-15usenh, .framer-bwrSz .framer-19odxae, .framer-bwrSz .framer-1h2qgrh, .framer-bwrSz .framer-bi5gog, .framer-bwrSz .framer-1tjdu85, .framer-bwrSz .framer-3ym1i9, .framer-bwrSz .framer-dowmd8, .framer-bwrSz .framer-1bpdqh1, .framer-bwrSz .framer-61s6d4, .framer-bwrSz .framer-qq9x3o, .framer-bwrSz .framer-gs02zc, .framer-bwrSz .framer-d7c0j2, .framer-bwrSz .framer-1b7ei3l, .framer-bwrSz .framer-1t39tug, .framer-bwrSz .framer-8tnktt, .framer-bwrSz .framer-16lszh9, .framer-bwrSz .framer-13plyw2, .framer-bwrSz .framer-6q6g3z, .framer-bwrSz .framer-m7more, .framer-bwrSz .framer-m5n18o, .framer-bwrSz .framer-4hqerr, .framer-bwrSz .framer-1fjrak5, .framer-bwrSz .framer-1warloq, .framer-bwrSz .framer-1ncyl5p, .framer-bwrSz .framer-155n5s9, .framer-bwrSz .framer-1b2pqcd, .framer-bwrSz .framer-1qi5iij, .framer-bwrSz .framer-8yifc0, .framer-bwrSz .framer-14e9jvq, .framer-bwrSz .framer-1w6p2ml, .framer-bwrSz .framer-zkhf0k, .framer-bwrSz .framer-lhejbm, .framer-bwrSz .framer-9r6lps, .framer-bwrSz .framer-6no27i, .framer-bwrSz .framer-1m447wg, .framer-bwrSz .framer-1s4yz0u, .framer-bwrSz .framer-1djvw13, .framer-bwrSz .framer-1skf8az, .framer-bwrSz .framer-1juj22g, .framer-bwrSz .framer-1ge6z87, .framer-bwrSz .framer-1xjlzn7, .framer-bwrSz .framer-1kfojif, .framer-bwrSz .framer-59ggbv, .framer-bwrSz .framer-9kvptu, .framer-bwrSz .framer-kuecq6, .framer-bwrSz .framer-1chths4, .framer-bwrSz .framer-1ni9oz1, .framer-bwrSz .framer-1th2lyo, .framer-bwrSz .framer-1hbt1nd, .framer-bwrSz .framer-mmptn7, .framer-bwrSz .framer-1ym8shl, .framer-bwrSz .framer-1jqssn9, .framer-bwrSz .framer-13mh0nf, .framer-bwrSz .framer-e0td4m, .framer-bwrSz .framer-61rdgf, .framer-bwrSz .framer-4c0x5w, .framer-bwrSz .framer-1vpllc, .framer-bwrSz .framer-mk3tv8, .framer-bwrSz .framer-i2gxvn, .framer-bwrSz .framer-1d2io0b, .framer-bwrSz .framer-1o1yxpl, .framer-bwrSz .framer-1uu292a, .framer-bwrSz .framer-1pq0flv, .framer-bwrSz .framer-145dwah, .framer-bwrSz .framer-1csudjx, .framer-bwrSz .framer-vqn9b8, .framer-bwrSz .framer-dmwim7, .framer-bwrSz .framer-susct, .framer-bwrSz .framer-12uvfat, .framer-bwrSz .framer-1kqdii, .framer-bwrSz .framer-il043v, .framer-bwrSz .framer-ecw49t, .framer-bwrSz .framer-d6e80i, .framer-bwrSz .framer-1hcuejl, .framer-bwrSz .framer-obgdsy, .framer-bwrSz .framer-1d76466, .framer-bwrSz .framer-7lpfvf, .framer-bwrSz .framer-5vluwg, .framer-bwrSz .framer-vvd4up, .framer-bwrSz .framer-43f0qv, .framer-bwrSz .framer-1t94n0c, .framer-bwrSz .framer-h6n2mt, .framer-bwrSz .framer-6d3uvh, .framer-bwrSz .framer-15lv7z6, .framer-bwrSz .framer-18cja5u, .framer-bwrSz .framer-1kya76u, .framer-bwrSz .framer-99fk0z, .framer-bwrSz .framer-1gxz9n5, .framer-bwrSz .framer-l61in2, .framer-bwrSz .framer-1n63pwe, .framer-bwrSz .framer-pcic4k, .framer-bwrSz .framer-1npybh, .framer-bwrSz .framer-1ydfzfb, .framer-bwrSz .framer-6749od, .framer-bwrSz .framer-1giz3xk, .framer-bwrSz .framer-rjhtmf, .framer-bwrSz .framer-1atz13h, .framer-bwrSz .framer-1240tuv, .framer-bwrSz .framer-13lcauk, .framer-bwrSz .framer-nm5qjo, .framer-bwrSz .framer-cnahli, .framer-bwrSz .framer-6l5koc, .framer-bwrSz .framer-6toyq0, .framer-bwrSz .framer-e17yix, .framer-bwrSz .framer-1bsb5cx, .framer-bwrSz .framer-17r2s1x, .framer-bwrSz .framer-qzs1tk, .framer-bwrSz .framer-i8le62, .framer-bwrSz .framer-1w0ct81, .framer-bwrSz .framer-1rj57yi, .framer-bwrSz .framer-1x9nxtd, .framer-bwrSz .framer-1wkcvft, .framer-bwrSz .framer-1amx99u, .framer-bwrSz .framer-ul3lb3 { gap: 0px; } .framer-bwrSz.framer-zpfzn2 > *, .framer-bwrSz .framer-1w1gp8r > *, .framer-bwrSz .framer-1vlm4ni > *, .framer-bwrSz .framer-52f242 > *, .framer-bwrSz .framer-nliwgv > *, .framer-bwrSz .framer-1xq8q6r > *, .framer-bwrSz .framer-1p73v9a > *, .framer-bwrSz .framer-atsu2 > *, .framer-bwrSz .framer-a0eejm > *, .framer-bwrSz .framer-cawef5 > *, .framer-bwrSz .framer-1uvk137 > *, .framer-bwrSz .framer-1p3xpbz > *, .framer-bwrSz .framer-15pvabl > *, .framer-bwrSz .framer-1138vvu > *, .framer-bwrSz .framer-1iqq5h1 > *, .framer-bwrSz .framer-17ycsfe > *, .framer-bwrSz .framer-1d281p5 > *, .framer-bwrSz .framer-3tojw3 > *, .framer-bwrSz .framer-1q5hdfa > *, .framer-bwrSz .framer-1p4nvq8 > *, .framer-bwrSz .framer-1b4lx9r > *, .framer-bwrSz .framer-1vr4z9c > *, .framer-bwrSz .framer-1tz63uy > *, .framer-bwrSz .framer-crch8q > *, .framer-bwrSz .framer-6nlw0c > *, .framer-bwrSz .framer-vb465k > *, .framer-bwrSz .framer-11c61qm > *, .framer-bwrSz .framer-rqbud5 > *, .framer-bwrSz .framer-1u3nqev > *, .framer-bwrSz .framer-185pj40 > *, .framer-bwrSz .framer-c3t35y > *, .framer-bwrSz .framer-147yf44 > *, .framer-bwrSz .framer-bi5gog > *, .framer-bwrSz .framer-gs02zc > *, .framer-bwrSz .framer-m5n18o > *, .framer-bwrSz .framer-1qi5iij > *, .framer-bwrSz .framer-6no27i > *, .framer-bwrSz .framer-9kvptu > *, .framer-bwrSz .framer-1hcuejl > *, .framer-bwrSz .framer-43f0qv > *, .framer-bwrSz .framer-1t94n0c > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-bwrSz.framer-zpfzn2 > :first-child, .framer-bwrSz .framer-1w1gp8r > :first-child, .framer-bwrSz .framer-1eyinrm > :first-child, .framer-bwrSz .framer-1vlm4ni > :first-child, .framer-bwrSz .framer-1gekpb3 > :first-child, .framer-bwrSz .framer-175iioy > :first-child, .framer-bwrSz .framer-64ue0r > :first-child, .framer-bwrSz .framer-1f2hrj6 > :first-child, .framer-bwrSz .framer-c17x76 > :first-child, .framer-bwrSz .framer-1ppie8k > :first-child, .framer-bwrSz .framer-17h8p4q > :first-child, .framer-bwrSz .framer-120bbms > :first-child, .framer-bwrSz .framer-1x0lf0n > :first-child, .framer-bwrSz .framer-nl9pss > :first-child, .framer-bwrSz .framer-1gi8dg8 > :first-child, .framer-bwrSz .framer-1brz0t2 > :first-child, .framer-bwrSz .framer-1vn3gpi > :first-child, .framer-bwrSz .framer-g2v8iv > :first-child, .framer-bwrSz .framer-1qe28rx > :first-child, .framer-bwrSz .framer-1g0sp87 > :first-child, .framer-bwrSz .framer-1b80tly > :first-child, .framer-bwrSz .framer-y25aah > :first-child, .framer-bwrSz .framer-13jb5pt > :first-child, .framer-bwrSz .framer-52f242 > :first-child, .framer-bwrSz .framer-nliwgv > :first-child, .framer-bwrSz .framer-1sn8yzv > :first-child, .framer-bwrSz .framer-1xq8q6r > :first-child, .framer-bwrSz .framer-105zu52 > :first-child, .framer-bwrSz .framer-1aveioo > :first-child, .framer-bwrSz .framer-p6ih1t > :first-child, .framer-bwrSz .framer-zl4zl1 > :first-child, .framer-bwrSz .framer-1xk7dnu > :first-child, .framer-bwrSz .framer-lusj61 > :first-child, .framer-bwrSz .framer-1rgo1l8 > :first-child, .framer-bwrSz .framer-1h5aum0 > :first-child, .framer-bwrSz .framer-17q032c > :first-child, .framer-bwrSz .framer-1p73v9a > :first-child, .framer-bwrSz .framer-rrkx6d > :first-child, .framer-bwrSz .framer-frd46q > :first-child, .framer-bwrSz .framer-vr2df2 > :first-child, .framer-bwrSz .framer-atsu2 > :first-child, .framer-bwrSz .framer-xb4jb6 > :first-child, .framer-bwrSz .framer-1p3551y > :first-child, .framer-bwrSz .framer-2dvkji > :first-child, .framer-bwrSz .framer-13bg56e > :first-child, .framer-bwrSz .framer-7yjmkl > :first-child, .framer-bwrSz .framer-t7xko5 > :first-child, .framer-bwrSz .framer-a0eejm > :first-child, .framer-bwrSz .framer-vwureh > :first-child, .framer-bwrSz .framer-12k299d > :first-child, .framer-bwrSz .framer-1yzz4d9 > :first-child, .framer-bwrSz .framer-cawef5 > :first-child, .framer-bwrSz .framer-zsqo2y > :first-child, .framer-bwrSz .framer-15436lh > :first-child, .framer-bwrSz .framer-1a7bnpp > :first-child, .framer-bwrSz .framer-wcviag > :first-child, .framer-bwrSz .framer-1uvk137 > :first-child, .framer-bwrSz .framer-cgn6em > :first-child, .framer-bwrSz .framer-16dle1p > :first-child, .framer-bwrSz .framer-1p3xpbz > :first-child, .framer-bwrSz .framer-11hi75c > :first-child, .framer-bwrSz .framer-w08l4i > :first-child, .framer-bwrSz .framer-n29lvg > :first-child, .framer-bwrSz .framer-3is12n > :first-child, .framer-bwrSz .framer-15pvabl > :first-child, .framer-bwrSz .framer-naskbo > :first-child, .framer-bwrSz .framer-alt8g > :first-child, .framer-bwrSz .framer-5aizod > :first-child, .framer-bwrSz .framer-1v8x8z0 > :first-child, .framer-bwrSz .framer-23kc2h > :first-child, .framer-bwrSz .framer-1138vvu > :first-child, .framer-bwrSz .framer-yvc2vk > :first-child, .framer-bwrSz .framer-28jjxg > :first-child, .framer-bwrSz .framer-1iqq5h1 > :first-child, .framer-bwrSz .framer-cx5wpa > :first-child, .framer-bwrSz .framer-9j82sf > :first-child, .framer-bwrSz .framer-17ycsfe > :first-child, .framer-bwrSz .framer-g3vwkp > :first-child, .framer-bwrSz .framer-roug7i > :first-child, .framer-bwrSz .framer-gw7mhw > :first-child, .framer-bwrSz .framer-1d281p5 > :first-child, .framer-bwrSz .framer-aem9z6 > :first-child, .framer-bwrSz .framer-1eghzfh > :first-child, .framer-bwrSz .framer-189dmh4 > :first-child, .framer-bwrSz .framer-1xf8lwr > :first-child, .framer-bwrSz .framer-3tojw3 > :first-child, .framer-bwrSz .framer-1hdhrd8 > :first-child, .framer-bwrSz .framer-1dmpvd0 > :first-child, .framer-bwrSz .framer-191nxa > :first-child, .framer-bwrSz .framer-1q5hdfa > :first-child, .framer-bwrSz .framer-10eqdi3 > :first-child, .framer-bwrSz .framer-1menrs2 > :first-child, .framer-bwrSz .framer-1uskf3 > :first-child, .framer-bwrSz .framer-1p4nvq8 > :first-child, .framer-bwrSz .framer-1p5ecd1 > :first-child, .framer-bwrSz .framer-1fbv8s3 > :first-child, .framer-bwrSz .framer-3y9ew > :first-child, .framer-bwrSz .framer-1b4lx9r > :first-child, .framer-bwrSz .framer-19wnb18 > :first-child, .framer-bwrSz .framer-52dtc9 > :first-child, .framer-bwrSz .framer-1l6vcrr > :first-child, .framer-bwrSz .framer-lehxwo > :first-child, .framer-bwrSz .framer-1vr4z9c > :first-child, .framer-bwrSz .framer-vsex48 > :first-child, .framer-bwrSz .framer-1x9g53w > :first-child, .framer-bwrSz .framer-1tz63uy > :first-child, .framer-bwrSz .framer-dyv6pe > :first-child, .framer-bwrSz .framer-u9k3um > :first-child, .framer-bwrSz .framer-1ldzeft > :first-child, .framer-bwrSz .framer-1gj9oxt > :first-child, .framer-bwrSz .framer-eo4kss > :first-child, .framer-bwrSz .framer-crch8q > :first-child, .framer-bwrSz .framer-1dkj3es > :first-child, .framer-bwrSz .framer-ae81f7 > :first-child, .framer-bwrSz .framer-cyw1he > :first-child, .framer-bwrSz .framer-c7q33y > :first-child, .framer-bwrSz .framer-6nlw0c > :first-child, .framer-bwrSz .framer-d49bok > :first-child, .framer-bwrSz .framer-htioxk > :first-child, .framer-bwrSz .framer-fizy1h > :first-child, .framer-bwrSz .framer-vb465k > :first-child, .framer-bwrSz .framer-1hjmyo8 > :first-child, .framer-bwrSz .framer-1wwc5lm > :first-child, .framer-bwrSz .framer-11c61qm > :first-child, .framer-bwrSz .framer-qthqx6 > :first-child, .framer-bwrSz .framer-50hyn6 > :first-child, .framer-bwrSz .framer-vnyll0 > :first-child, .framer-bwrSz .framer-rqbud5 > :first-child, .framer-bwrSz .framer-aou0rj > :first-child, .framer-bwrSz .framer-25gri7 > :first-child, .framer-bwrSz .framer-hwtf6s > :first-child, .framer-bwrSz .framer-60cnpp > :first-child, .framer-bwrSz .framer-1u3nqev > :first-child, .framer-bwrSz .framer-g82wi1 > :first-child, .framer-bwrSz .framer-5a03mm > :first-child, .framer-bwrSz .framer-185pj40 > :first-child, .framer-bwrSz .framer-189kyol > :first-child, .framer-bwrSz .framer-19ogmly > :first-child, .framer-bwrSz .framer-1f3wgf2 > :first-child, .framer-bwrSz .framer-1w1zsst > :first-child, .framer-bwrSz .framer-b86aa8 > :first-child, .framer-bwrSz .framer-c3t35y > :first-child, .framer-bwrSz .framer-6wlw6c > :first-child, .framer-bwrSz .framer-1c3pyx > :first-child, .framer-bwrSz .framer-h9vykg > :first-child, .framer-bwrSz .framer-1w1h1d5 > :first-child, .framer-bwrSz .framer-147yf44 > :first-child, .framer-bwrSz .framer-1o9n70 > :first-child, .framer-bwrSz .framer-15usenh > :first-child, .framer-bwrSz .framer-19odxae > :first-child, .framer-bwrSz .framer-bi5gog > :first-child, .framer-bwrSz .framer-1tjdu85 > :first-child, .framer-bwrSz .framer-1bpdqh1 > :first-child, .framer-bwrSz .framer-gs02zc > :first-child, .framer-bwrSz .framer-d7c0j2 > :first-child, .framer-bwrSz .framer-1t39tug > :first-child, .framer-bwrSz .framer-8tnktt > :first-child, .framer-bwrSz .framer-m5n18o > :first-child, .framer-bwrSz .framer-4hqerr > :first-child, .framer-bwrSz .framer-1warloq > :first-child, .framer-bwrSz .framer-1ncyl5p > :first-child, .framer-bwrSz .framer-1b2pqcd > :first-child, .framer-bwrSz .framer-1qi5iij > :first-child, .framer-bwrSz .framer-1w6p2ml > :first-child, .framer-bwrSz .framer-zkhf0k > :first-child, .framer-bwrSz .framer-lhejbm > :first-child, .framer-bwrSz .framer-6no27i > :first-child, .framer-bwrSz .framer-1m447wg > :first-child, .framer-bwrSz .framer-1skf8az > :first-child, .framer-bwrSz .framer-1xjlzn7 > :first-child, .framer-bwrSz .framer-9kvptu > :first-child, .framer-bwrSz .framer-1chths4 > :first-child, .framer-bwrSz .framer-1ni9oz1 > :first-child, .framer-bwrSz .framer-1th2lyo > :first-child, .framer-bwrSz .framer-1hbt1nd > :first-child, .framer-bwrSz .framer-mmptn7 > :first-child, .framer-bwrSz .framer-1ym8shl > :first-child, .framer-bwrSz .framer-1jqssn9 > :first-child, .framer-bwrSz .framer-13mh0nf > :first-child, .framer-bwrSz .framer-e0td4m > :first-child, .framer-bwrSz .framer-61rdgf > :first-child, .framer-bwrSz .framer-4c0x5w > :first-child, .framer-bwrSz .framer-1vpllc > :first-child, .framer-bwrSz .framer-mk3tv8 > :first-child, .framer-bwrSz .framer-i2gxvn > :first-child, .framer-bwrSz .framer-1d2io0b > :first-child, .framer-bwrSz .framer-1o1yxpl > :first-child, .framer-bwrSz .framer-1uu292a > :first-child, .framer-bwrSz .framer-1pq0flv > :first-child, .framer-bwrSz .framer-145dwah > :first-child, .framer-bwrSz .framer-1csudjx > :first-child, .framer-bwrSz .framer-vqn9b8 > :first-child, .framer-bwrSz .framer-susct > :first-child, .framer-bwrSz .framer-12uvfat > :first-child, .framer-bwrSz .framer-1hcuejl > :first-child, .framer-bwrSz .framer-obgdsy > :first-child, .framer-bwrSz .framer-43f0qv > :first-child, .framer-bwrSz .framer-1t94n0c > :first-child, .framer-bwrSz .framer-h6n2mt > :first-child, .framer-bwrSz .framer-15lv7z6 > :first-child, .framer-bwrSz .framer-1kya76u > :first-child, .framer-bwrSz .framer-l61in2 > :first-child, .framer-bwrSz .framer-1n63pwe > :first-child, .framer-bwrSz .framer-1npybh > :first-child, .framer-bwrSz .framer-1ydfzfb > :first-child, .framer-bwrSz .framer-6749od > :first-child, .framer-bwrSz .framer-rjhtmf > :first-child, .framer-bwrSz .framer-1x9nxtd > :first-child { margin-top: 0px; } .framer-bwrSz.framer-zpfzn2 > :last-child, .framer-bwrSz .framer-1w1gp8r > :last-child, .framer-bwrSz .framer-1eyinrm > :last-child, .framer-bwrSz .framer-1vlm4ni > :last-child, .framer-bwrSz .framer-1gekpb3 > :last-child, .framer-bwrSz .framer-175iioy > :last-child, .framer-bwrSz .framer-64ue0r > :last-child, .framer-bwrSz .framer-1f2hrj6 > :last-child, .framer-bwrSz .framer-c17x76 > :last-child, .framer-bwrSz .framer-1ppie8k > :last-child, .framer-bwrSz .framer-17h8p4q > :last-child, .framer-bwrSz .framer-120bbms > :last-child, .framer-bwrSz .framer-1x0lf0n > :last-child, .framer-bwrSz .framer-nl9pss > :last-child, .framer-bwrSz .framer-1gi8dg8 > :last-child, .framer-bwrSz .framer-1brz0t2 > :last-child, .framer-bwrSz .framer-1vn3gpi > :last-child, .framer-bwrSz .framer-g2v8iv > :last-child, .framer-bwrSz .framer-1qe28rx > :last-child, .framer-bwrSz .framer-1g0sp87 > :last-child, .framer-bwrSz .framer-1b80tly > :last-child, .framer-bwrSz .framer-y25aah > :last-child, .framer-bwrSz .framer-13jb5pt > :last-child, .framer-bwrSz .framer-52f242 > :last-child, .framer-bwrSz .framer-nliwgv > :last-child, .framer-bwrSz .framer-1sn8yzv > :last-child, .framer-bwrSz .framer-1xq8q6r > :last-child, .framer-bwrSz .framer-105zu52 > :last-child, .framer-bwrSz .framer-1aveioo > :last-child, .framer-bwrSz .framer-p6ih1t > :last-child, .framer-bwrSz .framer-zl4zl1 > :last-child, .framer-bwrSz .framer-1xk7dnu > :last-child, .framer-bwrSz .framer-lusj61 > :last-child, .framer-bwrSz .framer-1rgo1l8 > :last-child, .framer-bwrSz .framer-1h5aum0 > :last-child, .framer-bwrSz .framer-17q032c > :last-child, .framer-bwrSz .framer-1p73v9a > :last-child, .framer-bwrSz .framer-rrkx6d > :last-child, .framer-bwrSz .framer-frd46q > :last-child, .framer-bwrSz .framer-vr2df2 > :last-child, .framer-bwrSz .framer-atsu2 > :last-child, .framer-bwrSz .framer-xb4jb6 > :last-child, .framer-bwrSz .framer-1p3551y > :last-child, .framer-bwrSz .framer-2dvkji > :last-child, .framer-bwrSz .framer-13bg56e > :last-child, .framer-bwrSz .framer-7yjmkl > :last-child, .framer-bwrSz .framer-t7xko5 > :last-child, .framer-bwrSz .framer-a0eejm > :last-child, .framer-bwrSz .framer-vwureh > :last-child, .framer-bwrSz .framer-12k299d > :last-child, .framer-bwrSz .framer-1yzz4d9 > :last-child, .framer-bwrSz .framer-cawef5 > :last-child, .framer-bwrSz .framer-zsqo2y > :last-child, .framer-bwrSz .framer-15436lh > :last-child, .framer-bwrSz .framer-1a7bnpp > :last-child, .framer-bwrSz .framer-wcviag > :last-child, .framer-bwrSz .framer-1uvk137 > :last-child, .framer-bwrSz .framer-cgn6em > :last-child, .framer-bwrSz .framer-16dle1p > :last-child, .framer-bwrSz .framer-1p3xpbz > :last-child, .framer-bwrSz .framer-11hi75c > :last-child, .framer-bwrSz .framer-w08l4i > :last-child, .framer-bwrSz .framer-n29lvg > :last-child, .framer-bwrSz .framer-3is12n > :last-child, .framer-bwrSz .framer-15pvabl > :last-child, .framer-bwrSz .framer-naskbo > :last-child, .framer-bwrSz .framer-alt8g > :last-child, .framer-bwrSz .framer-5aizod > :last-child, .framer-bwrSz .framer-1v8x8z0 > :last-child, .framer-bwrSz .framer-23kc2h > :last-child, .framer-bwrSz .framer-1138vvu > :last-child, .framer-bwrSz .framer-yvc2vk > :last-child, .framer-bwrSz .framer-28jjxg > :last-child, .framer-bwrSz .framer-1iqq5h1 > :last-child, .framer-bwrSz .framer-cx5wpa > :last-child, .framer-bwrSz .framer-9j82sf > :last-child, .framer-bwrSz .framer-17ycsfe > :last-child, .framer-bwrSz .framer-g3vwkp > :last-child, .framer-bwrSz .framer-roug7i > :last-child, .framer-bwrSz .framer-gw7mhw > :last-child, .framer-bwrSz .framer-1d281p5 > :last-child, .framer-bwrSz .framer-aem9z6 > :last-child, .framer-bwrSz .framer-1eghzfh > :last-child, .framer-bwrSz .framer-189dmh4 > :last-child, .framer-bwrSz .framer-1xf8lwr > :last-child, .framer-bwrSz .framer-3tojw3 > :last-child, .framer-bwrSz .framer-1hdhrd8 > :last-child, .framer-bwrSz .framer-1dmpvd0 > :last-child, .framer-bwrSz .framer-191nxa > :last-child, .framer-bwrSz .framer-1q5hdfa > :last-child, .framer-bwrSz .framer-10eqdi3 > :last-child, .framer-bwrSz .framer-1menrs2 > :last-child, .framer-bwrSz .framer-1uskf3 > :last-child, .framer-bwrSz .framer-1p4nvq8 > :last-child, .framer-bwrSz .framer-1p5ecd1 > :last-child, .framer-bwrSz .framer-1fbv8s3 > :last-child, .framer-bwrSz .framer-3y9ew > :last-child, .framer-bwrSz .framer-1b4lx9r > :last-child, .framer-bwrSz .framer-19wnb18 > :last-child, .framer-bwrSz .framer-52dtc9 > :last-child, .framer-bwrSz .framer-1l6vcrr > :last-child, .framer-bwrSz .framer-lehxwo > :last-child, .framer-bwrSz .framer-1vr4z9c > :last-child, .framer-bwrSz .framer-vsex48 > :last-child, .framer-bwrSz .framer-1x9g53w > :last-child, .framer-bwrSz .framer-1tz63uy > :last-child, .framer-bwrSz .framer-dyv6pe > :last-child, .framer-bwrSz .framer-u9k3um > :last-child, .framer-bwrSz .framer-1ldzeft > :last-child, .framer-bwrSz .framer-1gj9oxt > :last-child, .framer-bwrSz .framer-eo4kss > :last-child, .framer-bwrSz .framer-crch8q > :last-child, .framer-bwrSz .framer-1dkj3es > :last-child, .framer-bwrSz .framer-ae81f7 > :last-child, .framer-bwrSz .framer-cyw1he > :last-child, .framer-bwrSz .framer-c7q33y > :last-child, .framer-bwrSz .framer-6nlw0c > :last-child, .framer-bwrSz .framer-d49bok > :last-child, .framer-bwrSz .framer-htioxk > :last-child, .framer-bwrSz .framer-fizy1h > :last-child, .framer-bwrSz .framer-vb465k > :last-child, .framer-bwrSz .framer-1hjmyo8 > :last-child, .framer-bwrSz .framer-1wwc5lm > :last-child, .framer-bwrSz .framer-11c61qm > :last-child, .framer-bwrSz .framer-qthqx6 > :last-child, .framer-bwrSz .framer-50hyn6 > :last-child, .framer-bwrSz .framer-vnyll0 > :last-child, .framer-bwrSz .framer-rqbud5 > :last-child, .framer-bwrSz .framer-aou0rj > :last-child, .framer-bwrSz .framer-25gri7 > :last-child, .framer-bwrSz .framer-hwtf6s > :last-child, .framer-bwrSz .framer-60cnpp > :last-child, .framer-bwrSz .framer-1u3nqev > :last-child, .framer-bwrSz .framer-g82wi1 > :last-child, .framer-bwrSz .framer-5a03mm > :last-child, .framer-bwrSz .framer-185pj40 > :last-child, .framer-bwrSz .framer-189kyol > :last-child, .framer-bwrSz .framer-19ogmly > :last-child, .framer-bwrSz .framer-1f3wgf2 > :last-child, .framer-bwrSz .framer-1w1zsst > :last-child, .framer-bwrSz .framer-b86aa8 > :last-child, .framer-bwrSz .framer-c3t35y > :last-child, .framer-bwrSz .framer-6wlw6c > :last-child, .framer-bwrSz .framer-1c3pyx > :last-child, .framer-bwrSz .framer-h9vykg > :last-child, .framer-bwrSz .framer-1w1h1d5 > :last-child, .framer-bwrSz .framer-147yf44 > :last-child, .framer-bwrSz .framer-1o9n70 > :last-child, .framer-bwrSz .framer-15usenh > :last-child, .framer-bwrSz .framer-19odxae > :last-child, .framer-bwrSz .framer-bi5gog > :last-child, .framer-bwrSz .framer-1tjdu85 > :last-child, .framer-bwrSz .framer-1bpdqh1 > :last-child, .framer-bwrSz .framer-gs02zc > :last-child, .framer-bwrSz .framer-d7c0j2 > :last-child, .framer-bwrSz .framer-1t39tug > :last-child, .framer-bwrSz .framer-8tnktt > :last-child, .framer-bwrSz .framer-m5n18o > :last-child, .framer-bwrSz .framer-4hqerr > :last-child, .framer-bwrSz .framer-1warloq > :last-child, .framer-bwrSz .framer-1ncyl5p > :last-child, .framer-bwrSz .framer-1b2pqcd > :last-child, .framer-bwrSz .framer-1qi5iij > :last-child, .framer-bwrSz .framer-1w6p2ml > :last-child, .framer-bwrSz .framer-zkhf0k > :last-child, .framer-bwrSz .framer-lhejbm > :last-child, .framer-bwrSz .framer-6no27i > :last-child, .framer-bwrSz .framer-1m447wg > :last-child, .framer-bwrSz .framer-1skf8az > :last-child, .framer-bwrSz .framer-1xjlzn7 > :last-child, .framer-bwrSz .framer-9kvptu > :last-child, .framer-bwrSz .framer-1chths4 > :last-child, .framer-bwrSz .framer-1ni9oz1 > :last-child, .framer-bwrSz .framer-1th2lyo > :last-child, .framer-bwrSz .framer-1hbt1nd > :last-child, .framer-bwrSz .framer-mmptn7 > :last-child, .framer-bwrSz .framer-1ym8shl > :last-child, .framer-bwrSz .framer-1jqssn9 > :last-child, .framer-bwrSz .framer-13mh0nf > :last-child, .framer-bwrSz .framer-e0td4m > :last-child, .framer-bwrSz .framer-61rdgf > :last-child, .framer-bwrSz .framer-4c0x5w > :last-child, .framer-bwrSz .framer-1vpllc > :last-child, .framer-bwrSz .framer-mk3tv8 > :last-child, .framer-bwrSz .framer-i2gxvn > :last-child, .framer-bwrSz .framer-1d2io0b > :last-child, .framer-bwrSz .framer-1o1yxpl > :last-child, .framer-bwrSz .framer-1uu292a > :last-child, .framer-bwrSz .framer-1pq0flv > :last-child, .framer-bwrSz .framer-145dwah > :last-child, .framer-bwrSz .framer-1csudjx > :last-child, .framer-bwrSz .framer-vqn9b8 > :last-child, .framer-bwrSz .framer-susct > :last-child, .framer-bwrSz .framer-12uvfat > :last-child, .framer-bwrSz .framer-1hcuejl > :last-child, .framer-bwrSz .framer-obgdsy > :last-child, .framer-bwrSz .framer-43f0qv > :last-child, .framer-bwrSz .framer-1t94n0c > :last-child, .framer-bwrSz .framer-h6n2mt > :last-child, .framer-bwrSz .framer-15lv7z6 > :last-child, .framer-bwrSz .framer-1kya76u > :last-child, .framer-bwrSz .framer-l61in2 > :last-child, .framer-bwrSz .framer-1n63pwe > :last-child, .framer-bwrSz .framer-1npybh > :last-child, .framer-bwrSz .framer-1ydfzfb > :last-child, .framer-bwrSz .framer-6749od > :last-child, .framer-bwrSz .framer-rjhtmf > :last-child, .framer-bwrSz .framer-1x9nxtd > :last-child { margin-bottom: 0px; } .framer-bwrSz .framer-1eyinrm > *, .framer-bwrSz .framer-rrkx6d > *, .framer-bwrSz .framer-15436lh > *, .framer-bwrSz .framer-5aizod > *, .framer-bwrSz .framer-1eghzfh > *, .framer-bwrSz .framer-52dtc9 > *, .framer-bwrSz .framer-ae81f7 > *, .framer-bwrSz .framer-25gri7 > *, .framer-bwrSz .framer-1c3pyx > *, .framer-bwrSz .framer-1warloq > * { margin: 0px; margin-bottom: calc(100px / 2); margin-top: calc(100px / 2); } .framer-bwrSz .framer-awzptn > *, .framer-bwrSz .framer-1h9sst9 > *, .framer-bwrSz .framer-1jb68j > *, .framer-bwrSz .framer-4aewp5 > *, .framer-bwrSz .framer-6xo3q5 > *, .framer-bwrSz .framer-smbyua > *, .framer-bwrSz .framer-jjja4l > *, .framer-bwrSz .framer-aids7l > *, .framer-bwrSz .framer-6mt53p > *, .framer-bwrSz .framer-kr4srb > *, .framer-bwrSz .framer-hvwoa4 > *, .framer-bwrSz .framer-hlcfv8 > *, .framer-bwrSz .framer-gorjhk > *, .framer-bwrSz .framer-1in8w8t > *, .framer-bwrSz .framer-ek563u > *, .framer-bwrSz .framer-ioaxux > *, .framer-bwrSz .framer-1qvzmik > *, .framer-bwrSz .framer-a509z4 > *, .framer-bwrSz .framer-oo0ytm > *, .framer-bwrSz .framer-o2bslv > *, .framer-bwrSz .framer-us4unl > *, .framer-bwrSz .framer-gym3h3 > *, .framer-bwrSz .framer-rkt84e > *, .framer-bwrSz .framer-mixp3 > *, .framer-bwrSz .framer-15ezi1a > *, .framer-bwrSz .framer-wmj1s9 > *, .framer-bwrSz .framer-eaosvg > *, .framer-bwrSz .framer-19674vv > *, .framer-bwrSz .framer-j0datt > *, .framer-bwrSz .framer-1sxjzbn > *, .framer-bwrSz .framer-l8jec0 > *, .framer-bwrSz .framer-1j9m4t9 > *, .framer-bwrSz .framer-kypz9v > *, .framer-bwrSz .framer-7i5vqk > *, .framer-bwrSz .framer-7rve6w > *, .framer-bwrSz .framer-utlcs > *, .framer-bwrSz .framer-yhe4uf > *, .framer-bwrSz .framer-1cte7ru > *, .framer-bwrSz .framer-18ubzqs > *, .framer-bwrSz .framer-1c40u4k > *, .framer-bwrSz .framer-13t7ola > *, .framer-bwrSz .framer-52p4oz > *, .framer-bwrSz .framer-xlu5yh > *, .framer-bwrSz .framer-161nuzi > *, .framer-bwrSz .framer-amv8wm > *, .framer-bwrSz .framer-1efkruc > *, .framer-bwrSz .framer-13jqfnf > *, .framer-bwrSz .framer-k17dzp > *, .framer-bwrSz .framer-uvsl2g > *, .framer-bwrSz .framer-1vvv31h > *, .framer-bwrSz .framer-17d4l10 > *, .framer-bwrSz .framer-165cwb5 > *, .framer-bwrSz .framer-sz9v10 > *, .framer-bwrSz .framer-1g9foo4 > *, .framer-bwrSz .framer-h1uwlv > *, .framer-bwrSz .framer-9smev7 > *, .framer-bwrSz .framer-1ho4nr1 > *, .framer-bwrSz .framer-16lszh9 > *, .framer-bwrSz .framer-13plyw2 > *, .framer-bwrSz .framer-m7more > *, .framer-bwrSz .framer-8yifc0 > *, .framer-bwrSz .framer-14e9jvq > *, .framer-bwrSz .framer-kuecq6 > *, .framer-bwrSz .framer-1kqdii > *, .framer-bwrSz .framer-il043v > *, .framer-bwrSz .framer-d6e80i > *, .framer-bwrSz .framer-7lpfvf > *, .framer-bwrSz .framer-5vluwg > *, .framer-bwrSz .framer-18cja5u > *, .framer-bwrSz .framer-99fk0z > *, .framer-bwrSz .framer-1gxz9n5 > *, .framer-bwrSz .framer-pcic4k > *, .framer-bwrSz .framer-1amx99u > *, .framer-bwrSz .framer-ul3lb3 > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } .framer-bwrSz .framer-awzptn > :first-child, .framer-bwrSz .framer-hpp9yk > :first-child, .framer-bwrSz .framer-f22k > :first-child, .framer-bwrSz .framer-1hih0xd > :first-child, .framer-bwrSz .framer-y6nxsz > :first-child, .framer-bwrSz .framer-1h9sst9 > :first-child, .framer-bwrSz .framer-1jb68j > :first-child, .framer-bwrSz .framer-4aewp5 > :first-child, .framer-bwrSz .framer-6xo3q5 > :first-child, .framer-bwrSz .framer-102ga7m > :first-child, .framer-bwrSz .framer-smbyua > :first-child, .framer-bwrSz .framer-keiasn > :first-child, .framer-bwrSz .framer-jjja4l > :first-child, .framer-bwrSz .framer-1c55s91 > :first-child, .framer-bwrSz .framer-aids7l > :first-child, .framer-bwrSz .framer-6mt53p > :first-child, .framer-bwrSz .framer-kr4srb > :first-child, .framer-bwrSz .framer-hvwoa4 > :first-child, .framer-bwrSz .framer-hlcfv8 > :first-child, .framer-bwrSz .framer-gasvvy > :first-child, .framer-bwrSz .framer-gorjhk > :first-child, .framer-bwrSz .framer-1in8w8t > :first-child, .framer-bwrSz .framer-mj3mox > :first-child, .framer-bwrSz .framer-1qbs5gg > :first-child, .framer-bwrSz .framer-ek563u > :first-child, .framer-bwrSz .framer-ioaxux > :first-child, .framer-bwrSz .framer-1qvzmik > :first-child, .framer-bwrSz .framer-n9r5oa > :first-child, .framer-bwrSz .framer-1e1r4f2 > :first-child, .framer-bwrSz .framer-1bhyrvs > :first-child, .framer-bwrSz .framer-10ahet3 > :first-child, .framer-bwrSz .framer-tsceuy > :first-child, .framer-bwrSz .framer-pvaq2p > :first-child, .framer-bwrSz .framer-l0rin9 > :first-child, .framer-bwrSz .framer-lbfmvc > :first-child, .framer-bwrSz .framer-1hccslf > :first-child, .framer-bwrSz .framer-egj3ch > :first-child, .framer-bwrSz .framer-eksu1r > :first-child, .framer-bwrSz .framer-a509z4 > :first-child, .framer-bwrSz .framer-oo0ytm > :first-child, .framer-bwrSz .framer-meiijz > :first-child, .framer-bwrSz .framer-o2bslv > :first-child, .framer-bwrSz .framer-xnklsk > :first-child, .framer-bwrSz .framer-o61xom > :first-child, .framer-bwrSz .framer-us4unl > :first-child, .framer-bwrSz .framer-gym3h3 > :first-child, .framer-bwrSz .framer-rkt84e > :first-child, .framer-bwrSz .framer-v70e8x > :first-child, .framer-bwrSz .framer-5wagu1 > :first-child, .framer-bwrSz .framer-tg2o0h > :first-child, .framer-bwrSz .framer-1dhqdxr > :first-child, .framer-bwrSz .framer-zs5xj1 > :first-child, .framer-bwrSz .framer-pu3nx6 > :first-child, .framer-bwrSz .framer-o217h0 > :first-child, .framer-bwrSz .framer-1mctllf > :first-child, .framer-bwrSz .framer-14px8ci > :first-child, .framer-bwrSz .framer-svsfyk > :first-child, .framer-bwrSz .framer-1cfq3ln > :first-child, .framer-bwrSz .framer-mixp3 > :first-child, .framer-bwrSz .framer-15ezi1a > :first-child, .framer-bwrSz .framer-wmj1s9 > :first-child, .framer-bwrSz .framer-i7cunx > :first-child, .framer-bwrSz .framer-1p7nyux > :first-child, .framer-bwrSz .framer-ksdp6y > :first-child, .framer-bwrSz .framer-2282r8 > :first-child, .framer-bwrSz .framer-14n5m7z > :first-child, .framer-bwrSz .framer-1bhdp5q > :first-child, .framer-bwrSz .framer-eaosvg > :first-child, .framer-bwrSz .framer-19674vv > :first-child, .framer-bwrSz .framer-1x81t7y > :first-child, .framer-bwrSz .framer-j0datt > :first-child, .framer-bwrSz .framer-quf9kh > :first-child, .framer-bwrSz .framer-1u9r77i > :first-child, .framer-bwrSz .framer-1sxjzbn > :first-child, .framer-bwrSz .framer-l8jec0 > :first-child, .framer-bwrSz .framer-vam3jb > :first-child, .framer-bwrSz .framer-1an2bh2 > :first-child, .framer-bwrSz .framer-1w4rpdf > :first-child, .framer-bwrSz .framer-1egoj48 > :first-child, .framer-bwrSz .framer-49i8sr > :first-child, .framer-bwrSz .framer-1gp14yd > :first-child, .framer-bwrSz .framer-czgi67 > :first-child, .framer-bwrSz .framer-117vcbp > :first-child, .framer-bwrSz .framer-1j9m4t9 > :first-child, .framer-bwrSz .framer-kypz9v > :first-child, .framer-bwrSz .framer-n36iwb > :first-child, .framer-bwrSz .framer-7i5vqk > :first-child, .framer-bwrSz .framer-rjziwt > :first-child, .framer-bwrSz .framer-q4asj2 > :first-child, .framer-bwrSz .framer-7rve6w > :first-child, .framer-bwrSz .framer-utlcs > :first-child, .framer-bwrSz .framer-1v1x0vi > :first-child, .framer-bwrSz .framer-pwh9ge > :first-child, .framer-bwrSz .framer-1tu9oqi > :first-child, .framer-bwrSz .framer-pbbt10 > :first-child, .framer-bwrSz .framer-132nr10 > :first-child, .framer-bwrSz .framer-yhe4uf > :first-child, .framer-bwrSz .framer-1cte7ru > :first-child, .framer-bwrSz .framer-18ubzqs > :first-child, .framer-bwrSz .framer-1hp3ap9 > :first-child, .framer-bwrSz .framer-1c40u4k > :first-child, .framer-bwrSz .framer-13t7ola > :first-child, .framer-bwrSz .framer-11cycif > :first-child, .framer-bwrSz .framer-52p4oz > :first-child, .framer-bwrSz .framer-1dmbiah > :first-child, .framer-bwrSz .framer-7adqy4 > :first-child, .framer-bwrSz .framer-xlu5yh > :first-child, .framer-bwrSz .framer-161nuzi > :first-child, .framer-bwrSz .framer-1pr2ono > :first-child, .framer-bwrSz .framer-flpdzv > :first-child, .framer-bwrSz .framer-14n6r6t > :first-child, .framer-bwrSz .framer-1iavh7d > :first-child, .framer-bwrSz .framer-beffgk > :first-child, .framer-bwrSz .framer-1mx4aft > :first-child, .framer-bwrSz .framer-amv8wm > :first-child, .framer-bwrSz .framer-1efkruc > :first-child, .framer-bwrSz .framer-w116bq > :first-child, .framer-bwrSz .framer-13jqfnf > :first-child, .framer-bwrSz .framer-lwt6n7 > :first-child, .framer-bwrSz .framer-83vese > :first-child, .framer-bwrSz .framer-k17dzp > :first-child, .framer-bwrSz .framer-uvsl2g > :first-child, .framer-bwrSz .framer-14gvoa3 > :first-child, .framer-bwrSz .framer-1n2kvl9 > :first-child, .framer-bwrSz .framer-qyd57b > :first-child, .framer-bwrSz .framer-emgo27 > :first-child, .framer-bwrSz .framer-jpgcig > :first-child, .framer-bwrSz .framer-1vvv31h > :first-child, .framer-bwrSz .framer-17d4l10 > :first-child, .framer-bwrSz .framer-165cwb5 > :first-child, .framer-bwrSz .framer-1qfdh3r > :first-child, .framer-bwrSz .framer-sz9v10 > :first-child, .framer-bwrSz .framer-1g9foo4 > :first-child, .framer-bwrSz .framer-zevqis > :first-child, .framer-bwrSz .framer-h1uwlv > :first-child, .framer-bwrSz .framer-p1o857 > :first-child, .framer-bwrSz .framer-17a5cg9 > :first-child, .framer-bwrSz .framer-9smev7 > :first-child, .framer-bwrSz .framer-1ho4nr1 > :first-child, .framer-bwrSz .framer-1h2qgrh > :first-child, .framer-bwrSz .framer-3ym1i9 > :first-child, .framer-bwrSz .framer-dowmd8 > :first-child, .framer-bwrSz .framer-61s6d4 > :first-child, .framer-bwrSz .framer-qq9x3o > :first-child, .framer-bwrSz .framer-1b7ei3l > :first-child, .framer-bwrSz .framer-16lszh9 > :first-child, .framer-bwrSz .framer-13plyw2 > :first-child, .framer-bwrSz .framer-6q6g3z > :first-child, .framer-bwrSz .framer-m7more > :first-child, .framer-bwrSz .framer-1fjrak5 > :first-child, .framer-bwrSz .framer-155n5s9 > :first-child, .framer-bwrSz .framer-8yifc0 > :first-child, .framer-bwrSz .framer-14e9jvq > :first-child, .framer-bwrSz .framer-9r6lps > :first-child, .framer-bwrSz .framer-1s4yz0u > :first-child, .framer-bwrSz .framer-1djvw13 > :first-child, .framer-bwrSz .framer-1juj22g > :first-child, .framer-bwrSz .framer-1ge6z87 > :first-child, .framer-bwrSz .framer-1kfojif > :first-child, .framer-bwrSz .framer-59ggbv > :first-child, .framer-bwrSz .framer-kuecq6 > :first-child, .framer-bwrSz .framer-dmwim7 > :first-child, .framer-bwrSz .framer-1kqdii > :first-child, .framer-bwrSz .framer-il043v > :first-child, .framer-bwrSz .framer-ecw49t > :first-child, .framer-bwrSz .framer-d6e80i > :first-child, .framer-bwrSz .framer-1d76466 > :first-child, .framer-bwrSz .framer-7lpfvf > :first-child, .framer-bwrSz .framer-5vluwg > :first-child, .framer-bwrSz .framer-vvd4up > :first-child, .framer-bwrSz .framer-6d3uvh > :first-child, .framer-bwrSz .framer-18cja5u > :first-child, .framer-bwrSz .framer-99fk0z > :first-child, .framer-bwrSz .framer-1gxz9n5 > :first-child, .framer-bwrSz .framer-pcic4k > :first-child, .framer-bwrSz .framer-1giz3xk > :first-child, .framer-bwrSz .framer-1atz13h > :first-child, .framer-bwrSz .framer-1240tuv > :first-child, .framer-bwrSz .framer-13lcauk > :first-child, .framer-bwrSz .framer-nm5qjo > :first-child, .framer-bwrSz .framer-cnahli > :first-child, .framer-bwrSz .framer-6l5koc > :first-child, .framer-bwrSz .framer-6toyq0 > :first-child, .framer-bwrSz .framer-e17yix > :first-child, .framer-bwrSz .framer-1bsb5cx > :first-child, .framer-bwrSz .framer-17r2s1x > :first-child, .framer-bwrSz .framer-qzs1tk > :first-child, .framer-bwrSz .framer-i8le62 > :first-child, .framer-bwrSz .framer-1w0ct81 > :first-child, .framer-bwrSz .framer-1rj57yi > :first-child, .framer-bwrSz .framer-1wkcvft > :first-child, .framer-bwrSz .framer-1amx99u > :first-child, .framer-bwrSz .framer-ul3lb3 > :first-child { margin-left: 0px; } .framer-bwrSz .framer-awzptn > :last-child, .framer-bwrSz .framer-hpp9yk > :last-child, .framer-bwrSz .framer-f22k > :last-child, .framer-bwrSz .framer-1hih0xd > :last-child, .framer-bwrSz .framer-y6nxsz > :last-child, .framer-bwrSz .framer-1h9sst9 > :last-child, .framer-bwrSz .framer-1jb68j > :last-child, .framer-bwrSz .framer-4aewp5 > :last-child, .framer-bwrSz .framer-6xo3q5 > :last-child, .framer-bwrSz .framer-102ga7m > :last-child, .framer-bwrSz .framer-smbyua > :last-child, .framer-bwrSz .framer-keiasn > :last-child, .framer-bwrSz .framer-jjja4l > :last-child, .framer-bwrSz .framer-1c55s91 > :last-child, .framer-bwrSz .framer-aids7l > :last-child, .framer-bwrSz .framer-6mt53p > :last-child, .framer-bwrSz .framer-kr4srb > :last-child, .framer-bwrSz .framer-hvwoa4 > :last-child, .framer-bwrSz .framer-hlcfv8 > :last-child, .framer-bwrSz .framer-gasvvy > :last-child, .framer-bwrSz .framer-gorjhk > :last-child, .framer-bwrSz .framer-1in8w8t > :last-child, .framer-bwrSz .framer-mj3mox > :last-child, .framer-bwrSz .framer-1qbs5gg > :last-child, .framer-bwrSz .framer-ek563u > :last-child, .framer-bwrSz .framer-ioaxux > :last-child, .framer-bwrSz .framer-1qvzmik > :last-child, .framer-bwrSz .framer-n9r5oa > :last-child, .framer-bwrSz .framer-1e1r4f2 > :last-child, .framer-bwrSz .framer-1bhyrvs > :last-child, .framer-bwrSz .framer-10ahet3 > :last-child, .framer-bwrSz .framer-tsceuy > :last-child, .framer-bwrSz .framer-pvaq2p > :last-child, .framer-bwrSz .framer-l0rin9 > :last-child, .framer-bwrSz .framer-lbfmvc > :last-child, .framer-bwrSz .framer-1hccslf > :last-child, .framer-bwrSz .framer-egj3ch > :last-child, .framer-bwrSz .framer-eksu1r > :last-child, .framer-bwrSz .framer-a509z4 > :last-child, .framer-bwrSz .framer-oo0ytm > :last-child, .framer-bwrSz .framer-meiijz > :last-child, .framer-bwrSz .framer-o2bslv > :last-child, .framer-bwrSz .framer-xnklsk > :last-child, .framer-bwrSz .framer-o61xom > :last-child, .framer-bwrSz .framer-us4unl > :last-child, .framer-bwrSz .framer-gym3h3 > :last-child, .framer-bwrSz .framer-rkt84e > :last-child, .framer-bwrSz .framer-v70e8x > :last-child, .framer-bwrSz .framer-5wagu1 > :last-child, .framer-bwrSz .framer-tg2o0h > :last-child, .framer-bwrSz .framer-1dhqdxr > :last-child, .framer-bwrSz .framer-zs5xj1 > :last-child, .framer-bwrSz .framer-pu3nx6 > :last-child, .framer-bwrSz .framer-o217h0 > :last-child, .framer-bwrSz .framer-1mctllf > :last-child, .framer-bwrSz .framer-14px8ci > :last-child, .framer-bwrSz .framer-svsfyk > :last-child, .framer-bwrSz .framer-1cfq3ln > :last-child, .framer-bwrSz .framer-mixp3 > :last-child, .framer-bwrSz .framer-15ezi1a > :last-child, .framer-bwrSz .framer-wmj1s9 > :last-child, .framer-bwrSz .framer-i7cunx > :last-child, .framer-bwrSz .framer-1p7nyux > :last-child, .framer-bwrSz .framer-ksdp6y > :last-child, .framer-bwrSz .framer-2282r8 > :last-child, .framer-bwrSz .framer-14n5m7z > :last-child, .framer-bwrSz .framer-1bhdp5q > :last-child, .framer-bwrSz .framer-eaosvg > :last-child, .framer-bwrSz .framer-19674vv > :last-child, .framer-bwrSz .framer-1x81t7y > :last-child, .framer-bwrSz .framer-j0datt > :last-child, .framer-bwrSz .framer-quf9kh > :last-child, .framer-bwrSz .framer-1u9r77i > :last-child, .framer-bwrSz .framer-1sxjzbn > :last-child, .framer-bwrSz .framer-l8jec0 > :last-child, .framer-bwrSz .framer-vam3jb > :last-child, .framer-bwrSz .framer-1an2bh2 > :last-child, .framer-bwrSz .framer-1w4rpdf > :last-child, .framer-bwrSz .framer-1egoj48 > :last-child, .framer-bwrSz .framer-49i8sr > :last-child, .framer-bwrSz .framer-1gp14yd > :last-child, .framer-bwrSz .framer-czgi67 > :last-child, .framer-bwrSz .framer-117vcbp > :last-child, .framer-bwrSz .framer-1j9m4t9 > :last-child, .framer-bwrSz .framer-kypz9v > :last-child, .framer-bwrSz .framer-n36iwb > :last-child, .framer-bwrSz .framer-7i5vqk > :last-child, .framer-bwrSz .framer-rjziwt > :last-child, .framer-bwrSz .framer-q4asj2 > :last-child, .framer-bwrSz .framer-7rve6w > :last-child, .framer-bwrSz .framer-utlcs > :last-child, .framer-bwrSz .framer-1v1x0vi > :last-child, .framer-bwrSz .framer-pwh9ge > :last-child, .framer-bwrSz .framer-1tu9oqi > :last-child, .framer-bwrSz .framer-pbbt10 > :last-child, .framer-bwrSz .framer-132nr10 > :last-child, .framer-bwrSz .framer-yhe4uf > :last-child, .framer-bwrSz .framer-1cte7ru > :last-child, .framer-bwrSz .framer-18ubzqs > :last-child, .framer-bwrSz .framer-1hp3ap9 > :last-child, .framer-bwrSz .framer-1c40u4k > :last-child, .framer-bwrSz .framer-13t7ola > :last-child, .framer-bwrSz .framer-11cycif > :last-child, .framer-bwrSz .framer-52p4oz > :last-child, .framer-bwrSz .framer-1dmbiah > :last-child, .framer-bwrSz .framer-7adqy4 > :last-child, .framer-bwrSz .framer-xlu5yh > :last-child, .framer-bwrSz .framer-161nuzi > :last-child, .framer-bwrSz .framer-1pr2ono > :last-child, .framer-bwrSz .framer-flpdzv > :last-child, .framer-bwrSz .framer-14n6r6t > :last-child, .framer-bwrSz .framer-1iavh7d > :last-child, .framer-bwrSz .framer-beffgk > :last-child, .framer-bwrSz .framer-1mx4aft > :last-child, .framer-bwrSz .framer-amv8wm > :last-child, .framer-bwrSz .framer-1efkruc > :last-child, .framer-bwrSz .framer-w116bq > :last-child, .framer-bwrSz .framer-13jqfnf > :last-child, .framer-bwrSz .framer-lwt6n7 > :last-child, .framer-bwrSz .framer-83vese > :last-child, .framer-bwrSz .framer-k17dzp > :last-child, .framer-bwrSz .framer-uvsl2g > :last-child, .framer-bwrSz .framer-14gvoa3 > :last-child, .framer-bwrSz .framer-1n2kvl9 > :last-child, .framer-bwrSz .framer-qyd57b > :last-child, .framer-bwrSz .framer-emgo27 > :last-child, .framer-bwrSz .framer-jpgcig > :last-child, .framer-bwrSz .framer-1vvv31h > :last-child, .framer-bwrSz .framer-17d4l10 > :last-child, .framer-bwrSz .framer-165cwb5 > :last-child, .framer-bwrSz .framer-1qfdh3r > :last-child, .framer-bwrSz .framer-sz9v10 > :last-child, .framer-bwrSz .framer-1g9foo4 > :last-child, .framer-bwrSz .framer-zevqis > :last-child, .framer-bwrSz .framer-h1uwlv > :last-child, .framer-bwrSz .framer-p1o857 > :last-child, .framer-bwrSz .framer-17a5cg9 > :last-child, .framer-bwrSz .framer-9smev7 > :last-child, .framer-bwrSz .framer-1ho4nr1 > :last-child, .framer-bwrSz .framer-1h2qgrh > :last-child, .framer-bwrSz .framer-3ym1i9 > :last-child, .framer-bwrSz .framer-dowmd8 > :last-child, .framer-bwrSz .framer-61s6d4 > :last-child, .framer-bwrSz .framer-qq9x3o > :last-child, .framer-bwrSz .framer-1b7ei3l > :last-child, .framer-bwrSz .framer-16lszh9 > :last-child, .framer-bwrSz .framer-13plyw2 > :last-child, .framer-bwrSz .framer-6q6g3z > :last-child, .framer-bwrSz .framer-m7more > :last-child, .framer-bwrSz .framer-1fjrak5 > :last-child, .framer-bwrSz .framer-155n5s9 > :last-child, .framer-bwrSz .framer-8yifc0 > :last-child, .framer-bwrSz .framer-14e9jvq > :last-child, .framer-bwrSz .framer-9r6lps > :last-child, .framer-bwrSz .framer-1s4yz0u > :last-child, .framer-bwrSz .framer-1djvw13 > :last-child, .framer-bwrSz .framer-1juj22g > :last-child, .framer-bwrSz .framer-1ge6z87 > :last-child, .framer-bwrSz .framer-1kfojif > :last-child, .framer-bwrSz .framer-59ggbv > :last-child, .framer-bwrSz .framer-kuecq6 > :last-child, .framer-bwrSz .framer-dmwim7 > :last-child, .framer-bwrSz .framer-1kqdii > :last-child, .framer-bwrSz .framer-il043v > :last-child, .framer-bwrSz .framer-ecw49t > :last-child, .framer-bwrSz .framer-d6e80i > :last-child, .framer-bwrSz .framer-1d76466 > :last-child, .framer-bwrSz .framer-7lpfvf > :last-child, .framer-bwrSz .framer-5vluwg > :last-child, .framer-bwrSz .framer-vvd4up > :last-child, .framer-bwrSz .framer-6d3uvh > :last-child, .framer-bwrSz .framer-18cja5u > :last-child, .framer-bwrSz .framer-99fk0z > :last-child, .framer-bwrSz .framer-1gxz9n5 > :last-child, .framer-bwrSz .framer-pcic4k > :last-child, .framer-bwrSz .framer-1giz3xk > :last-child, .framer-bwrSz .framer-1atz13h > :last-child, .framer-bwrSz .framer-1240tuv > :last-child, .framer-bwrSz .framer-13lcauk > :last-child, .framer-bwrSz .framer-nm5qjo > :last-child, .framer-bwrSz .framer-cnahli > :last-child, .framer-bwrSz .framer-6l5koc > :last-child, .framer-bwrSz .framer-6toyq0 > :last-child, .framer-bwrSz .framer-e17yix > :last-child, .framer-bwrSz .framer-1bsb5cx > :last-child, .framer-bwrSz .framer-17r2s1x > :last-child, .framer-bwrSz .framer-qzs1tk > :last-child, .framer-bwrSz .framer-i8le62 > :last-child, .framer-bwrSz .framer-1w0ct81 > :last-child, .framer-bwrSz .framer-1rj57yi > :last-child, .framer-bwrSz .framer-1wkcvft > :last-child, .framer-bwrSz .framer-1amx99u > :last-child, .framer-bwrSz .framer-ul3lb3 > :last-child { margin-right: 0px; } .framer-bwrSz .framer-hpp9yk > *, .framer-bwrSz .framer-1atz13h > *, .framer-bwrSz .framer-1240tuv > *, .framer-bwrSz .framer-13lcauk > *, .framer-bwrSz .framer-nm5qjo > *, .framer-bwrSz .framer-cnahli > *, .framer-bwrSz .framer-6l5koc > *, .framer-bwrSz .framer-6toyq0 > *, .framer-bwrSz .framer-e17yix > *, .framer-bwrSz .framer-1bsb5cx > *, .framer-bwrSz .framer-17r2s1x > *, .framer-bwrSz .framer-qzs1tk > *, .framer-bwrSz .framer-i8le62 > *, .framer-bwrSz .framer-1w0ct81 > *, .framer-bwrSz .framer-1rj57yi > * { margin: 0px; margin-left: calc(12px / 2); margin-right: calc(12px / 2); } .framer-bwrSz .framer-f22k > *, .framer-bwrSz .framer-1c55s91 > *, .framer-bwrSz .framer-gasvvy > *, .framer-bwrSz .framer-n9r5oa > *, .framer-bwrSz .framer-1e1r4f2 > *, .framer-bwrSz .framer-1bhyrvs > *, .framer-bwrSz .framer-10ahet3 > *, .framer-bwrSz .framer-tsceuy > *, .framer-bwrSz .framer-pvaq2p > *, .framer-bwrSz .framer-l0rin9 > *, .framer-bwrSz .framer-lbfmvc > *, .framer-bwrSz .framer-1hccslf > *, .framer-bwrSz .framer-egj3ch > *, .framer-bwrSz .framer-xnklsk > *, .framer-bwrSz .framer-v70e8x > *, .framer-bwrSz .framer-5wagu1 > *, .framer-bwrSz .framer-tg2o0h > *, .framer-bwrSz .framer-1dhqdxr > *, .framer-bwrSz .framer-zs5xj1 > *, .framer-bwrSz .framer-pu3nx6 > *, .framer-bwrSz .framer-o217h0 > *, .framer-bwrSz .framer-1mctllf > *, .framer-bwrSz .framer-14px8ci > *, .framer-bwrSz .framer-svsfyk > *, .framer-bwrSz .framer-i7cunx > *, .framer-bwrSz .framer-1p7nyux > *, .framer-bwrSz .framer-ksdp6y > *, .framer-bwrSz .framer-2282r8 > *, .framer-bwrSz .framer-14n5m7z > *, .framer-bwrSz .framer-quf9kh > *, .framer-bwrSz .framer-vam3jb > *, .framer-bwrSz .framer-1an2bh2 > *, .framer-bwrSz .framer-1w4rpdf > *, .framer-bwrSz .framer-1egoj48 > *, .framer-bwrSz .framer-49i8sr > *, .framer-bwrSz .framer-1gp14yd > *, .framer-bwrSz .framer-czgi67 > *, .framer-bwrSz .framer-rjziwt > *, .framer-bwrSz .framer-1v1x0vi > *, .framer-bwrSz .framer-pwh9ge > *, .framer-bwrSz .framer-1tu9oqi > *, .framer-bwrSz .framer-pbbt10 > *, .framer-bwrSz .framer-132nr10 > *, .framer-bwrSz .framer-1dmbiah > *, .framer-bwrSz .framer-1pr2ono > *, .framer-bwrSz .framer-flpdzv > *, .framer-bwrSz .framer-14n6r6t > *, .framer-bwrSz .framer-1iavh7d > *, .framer-bwrSz .framer-beffgk > *, .framer-bwrSz .framer-lwt6n7 > *, .framer-bwrSz .framer-14gvoa3 > *, .framer-bwrSz .framer-1n2kvl9 > *, .framer-bwrSz .framer-qyd57b > *, .framer-bwrSz .framer-emgo27 > *, .framer-bwrSz .framer-jpgcig > *, .framer-bwrSz .framer-p1o857 > *, .framer-bwrSz .framer-1h2qgrh > *, .framer-bwrSz .framer-3ym1i9 > *, .framer-bwrSz .framer-dowmd8 > *, .framer-bwrSz .framer-61s6d4 > *, .framer-bwrSz .framer-qq9x3o > *, .framer-bwrSz .framer-1fjrak5 > *, .framer-bwrSz .framer-9r6lps > *, .framer-bwrSz .framer-1s4yz0u > *, .framer-bwrSz .framer-1djvw13 > *, .framer-bwrSz .framer-1juj22g > *, .framer-bwrSz .framer-1ge6z87 > *, .framer-bwrSz .framer-1kfojif > *, .framer-bwrSz .framer-59ggbv > *, .framer-bwrSz .framer-1d76466 > *, .framer-bwrSz .framer-6d3uvh > *, .framer-bwrSz .framer-1wkcvft > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-bwrSz .framer-1hih0xd > * { margin: 0px; margin-left: calc(11px / 2); margin-right: calc(11px / 2); } .framer-bwrSz .framer-y6nxsz > *, .framer-bwrSz .framer-1giz3xk > * { margin: 0px; margin-left: calc(4px / 2); margin-right: calc(4px / 2); } .framer-bwrSz .framer-1gekpb3 > *, .framer-bwrSz .framer-17q032c > *, .framer-bwrSz .framer-zsqo2y > *, .framer-bwrSz .framer-alt8g > *, .framer-bwrSz .framer-aem9z6 > *, .framer-bwrSz .framer-1hdhrd8 > *, .framer-bwrSz .framer-19wnb18 > *, .framer-bwrSz .framer-vsex48 > *, .framer-bwrSz .framer-1dkj3es > *, .framer-bwrSz .framer-d49bok > *, .framer-bwrSz .framer-aou0rj > *, .framer-bwrSz .framer-g82wi1 > *, .framer-bwrSz .framer-6wlw6c > *, .framer-bwrSz .framer-1o9n70 > *, .framer-bwrSz .framer-4hqerr > *, .framer-bwrSz .framer-1w6p2ml > *, .framer-bwrSz .framer-obgdsy > *, .framer-bwrSz .framer-6749od > *, .framer-bwrSz .framer-1x9nxtd > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-bwrSz .framer-175iioy > *, .framer-bwrSz .framer-1f2hrj6 > *, .framer-bwrSz .framer-1ppie8k > *, .framer-bwrSz .framer-120bbms > *, .framer-bwrSz .framer-nl9pss > *, .framer-bwrSz .framer-1brz0t2 > *, .framer-bwrSz .framer-g2v8iv > *, .framer-bwrSz .framer-1g0sp87 > *, .framer-bwrSz .framer-y25aah > *, .framer-bwrSz .framer-lusj61 > *, .framer-bwrSz .framer-1rgo1l8 > *, .framer-bwrSz .framer-1h5aum0 > *, .framer-bwrSz .framer-1th2lyo > *, .framer-bwrSz .framer-mmptn7 > *, .framer-bwrSz .framer-1jqssn9 > *, .framer-bwrSz .framer-e0td4m > *, .framer-bwrSz .framer-4c0x5w > *, .framer-bwrSz .framer-mk3tv8 > *, .framer-bwrSz .framer-1d2io0b > *, .framer-bwrSz .framer-1uu292a > *, .framer-bwrSz .framer-145dwah > *, .framer-bwrSz .framer-1ydfzfb > * { margin: 0px; margin-bottom: calc(8px / 2); margin-top: calc(8px / 2); } .framer-bwrSz .framer-64ue0r > *, .framer-bwrSz .framer-c17x76 > *, .framer-bwrSz .framer-17h8p4q > *, .framer-bwrSz .framer-1x0lf0n > *, .framer-bwrSz .framer-1gi8dg8 > *, .framer-bwrSz .framer-1vn3gpi > *, .framer-bwrSz .framer-1qe28rx > *, .framer-bwrSz .framer-1b80tly > *, .framer-bwrSz .framer-13jb5pt > *, .framer-bwrSz .framer-1hbt1nd > *, .framer-bwrSz .framer-1ym8shl > *, .framer-bwrSz .framer-13mh0nf > *, .framer-bwrSz .framer-61rdgf > *, .framer-bwrSz .framer-1vpllc > *, .framer-bwrSz .framer-i2gxvn > *, .framer-bwrSz .framer-1o1yxpl > *, .framer-bwrSz .framer-1pq0flv > *, .framer-bwrSz .framer-1csudjx > * { margin: 0px; margin-bottom: calc(4px / 2); margin-top: calc(4px / 2); } .framer-bwrSz .framer-1sn8yzv > * { margin: 0px; margin-bottom: calc(80px / 2); margin-top: calc(80px / 2); } .framer-bwrSz .framer-102ga7m > *, .framer-bwrSz .framer-eksu1r > *, .framer-bwrSz .framer-1bhdp5q > *, .framer-bwrSz .framer-117vcbp > *, .framer-bwrSz .framer-1hp3ap9 > *, .framer-bwrSz .framer-1mx4aft > *, .framer-bwrSz .framer-1qfdh3r > *, .framer-bwrSz .framer-1b7ei3l > *, .framer-bwrSz .framer-dmwim7 > * { margin: 0px; margin-left: calc(30px / 2); margin-right: calc(30px / 2); } .framer-bwrSz .framer-105zu52 > *, .framer-bwrSz .framer-xb4jb6 > *, .framer-bwrSz .framer-12k299d > *, .framer-bwrSz .framer-cgn6em > *, .framer-bwrSz .framer-yvc2vk > *, .framer-bwrSz .framer-roug7i > *, .framer-bwrSz .framer-1dmpvd0 > *, .framer-bwrSz .framer-1fbv8s3 > *, .framer-bwrSz .framer-1gj9oxt > *, .framer-bwrSz .framer-htioxk > *, .framer-bwrSz .framer-50hyn6 > *, .framer-bwrSz .framer-1w1zsst > *, .framer-bwrSz .framer-15usenh > *, .framer-bwrSz .framer-1t39tug > *, .framer-bwrSz .framer-zkhf0k > *, .framer-bwrSz .framer-1n63pwe > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } .framer-bwrSz .framer-1aveioo > *, .framer-bwrSz .framer-1xk7dnu > *, .framer-bwrSz .framer-1ni9oz1 > *, .framer-bwrSz .framer-rjhtmf > * { margin: 0px; margin-bottom: calc(12px / 2); margin-top: calc(12px / 2); } .framer-bwrSz .framer-keiasn > *, .framer-bwrSz .framer-meiijz > *, .framer-bwrSz .framer-1x81t7y > *, .framer-bwrSz .framer-n36iwb > *, .framer-bwrSz .framer-11cycif > *, .framer-bwrSz .framer-w116bq > *, .framer-bwrSz .framer-zevqis > *, .framer-bwrSz .framer-6q6g3z > *, .framer-bwrSz .framer-ecw49t > * { margin: 0px; margin-left: calc(16px / 2); margin-right: calc(16px / 2); } .framer-bwrSz .framer-p6ih1t > *, .framer-bwrSz .framer-1npybh > * { margin: 0px; margin-bottom: calc(40px / 2); margin-top: calc(40px / 2); } .framer-bwrSz .framer-zl4zl1 > * { margin: 0px; margin-bottom: calc(20px / 2); margin-top: calc(20px / 2); } .framer-bwrSz .framer-mj3mox > * { margin: 0px; margin-left: calc(18px / 2); margin-right: calc(18px / 2); } .framer-bwrSz .framer-frd46q > * { margin: 0px; margin-bottom: calc(65px / 2); margin-top: calc(65px / 2); } .framer-bwrSz .framer-1qbs5gg > * { margin: 0px; margin-left: calc(45px / 2); margin-right: calc(45px / 2); } .framer-bwrSz .framer-vr2df2 > *, .framer-bwrSz .framer-wcviag > *, .framer-bwrSz .framer-23kc2h > *, .framer-bwrSz .framer-1xf8lwr > *, .framer-bwrSz .framer-c7q33y > *, .framer-bwrSz .framer-1w1h1d5 > *, .framer-bwrSz .framer-1b2pqcd > *, .framer-bwrSz .framer-h6n2mt > * { margin: 0px; margin-bottom: calc(32px / 2); margin-top: calc(32px / 2); } .framer-bwrSz .framer-1p3551y > *, .framer-bwrSz .framer-2dvkji > *, .framer-bwrSz .framer-13bg56e > *, .framer-bwrSz .framer-7yjmkl > *, .framer-bwrSz .framer-t7xko5 > *, .framer-bwrSz .framer-16dle1p > *, .framer-bwrSz .framer-11hi75c > *, .framer-bwrSz .framer-w08l4i > *, .framer-bwrSz .framer-n29lvg > *, .framer-bwrSz .framer-3is12n > *, .framer-bwrSz .framer-28jjxg > *, .framer-bwrSz .framer-cx5wpa > *, .framer-bwrSz .framer-9j82sf > *, .framer-bwrSz .framer-191nxa > *, .framer-bwrSz .framer-10eqdi3 > *, .framer-bwrSz .framer-1menrs2 > *, .framer-bwrSz .framer-1uskf3 > *, .framer-bwrSz .framer-1x9g53w > *, .framer-bwrSz .framer-dyv6pe > *, .framer-bwrSz .framer-u9k3um > *, .framer-bwrSz .framer-fizy1h > *, .framer-bwrSz .framer-1hjmyo8 > *, .framer-bwrSz .framer-1wwc5lm > *, .framer-bwrSz .framer-5a03mm > *, .framer-bwrSz .framer-189kyol > *, .framer-bwrSz .framer-19ogmly > *, .framer-bwrSz .framer-19odxae > *, .framer-bwrSz .framer-1tjdu85 > *, .framer-bwrSz .framer-1bpdqh1 > *, .framer-bwrSz .framer-lhejbm > *, .framer-bwrSz .framer-1m447wg > *, .framer-bwrSz .framer-1skf8az > *, .framer-bwrSz .framer-1xjlzn7 > * { margin: 0px; margin-bottom: calc(5px / 2); margin-top: calc(5px / 2); } .framer-bwrSz .framer-vwureh > *, .framer-bwrSz .framer-naskbo > *, .framer-bwrSz .framer-g3vwkp > *, .framer-bwrSz .framer-1p5ecd1 > *, .framer-bwrSz .framer-1ldzeft > *, .framer-bwrSz .framer-qthqx6 > *, .framer-bwrSz .framer-1f3wgf2 > *, .framer-bwrSz .framer-d7c0j2 > *, .framer-bwrSz .framer-vqn9b8 > * { margin: 0px; margin-bottom: calc(44px / 2); margin-top: calc(44px / 2); } .framer-bwrSz .framer-1yzz4d9 > *, .framer-bwrSz .framer-gw7mhw > *, .framer-bwrSz .framer-3y9ew > *, .framer-bwrSz .framer-eo4kss > *, .framer-bwrSz .framer-vnyll0 > *, .framer-bwrSz .framer-b86aa8 > *, .framer-bwrSz .framer-8tnktt > *, .framer-bwrSz .framer-susct > *, .framer-bwrSz .framer-12uvfat > * { margin: 0px; margin-bottom: calc(18px / 2); margin-top: calc(18px / 2); } .framer-bwrSz .framer-1a7bnpp > * { margin: 0px; margin-bottom: calc(69px / 2); margin-top: calc(69px / 2); } .framer-bwrSz .framer-o61xom > *, .framer-bwrSz .framer-1cfq3ln > *, .framer-bwrSz .framer-1u9r77i > *, .framer-bwrSz .framer-q4asj2 > *, .framer-bwrSz .framer-7adqy4 > *, .framer-bwrSz .framer-83vese > *, .framer-bwrSz .framer-17a5cg9 > *, .framer-bwrSz .framer-155n5s9 > * { margin: 0px; margin-left: calc(85px / 2); margin-right: calc(85px / 2); } .framer-bwrSz .framer-1v8x8z0 > *, .framer-bwrSz .framer-189dmh4 > *, .framer-bwrSz .framer-cyw1he > *, .framer-bwrSz .framer-h9vykg > *, .framer-bwrSz .framer-1ncyl5p > * { margin: 0px; margin-bottom: calc(48px / 2); margin-top: calc(48px / 2); } .framer-bwrSz .framer-1l6vcrr > *, .framer-bwrSz .framer-lehxwo > *, .framer-bwrSz .framer-hwtf6s > *, .framer-bwrSz .framer-60cnpp > *, .framer-bwrSz .framer-1chths4 > * { margin: 0px; margin-bottom: calc(64px / 2); margin-top: calc(64px / 2); } .framer-bwrSz .framer-vvd4up > * { margin: 0px; margin-left: calc(80px / 2); margin-right: calc(80px / 2); } .framer-bwrSz .framer-15lv7z6 > * { margin: 0px; margin-bottom: calc(15px / 2); margin-top: calc(15px / 2); } .framer-bwrSz .framer-1kya76u > * { margin: 0px; margin-bottom: calc(60px / 2); margin-top: calc(60px / 2); } .framer-bwrSz .framer-l61in2 > * { margin: 0px; margin-bottom: calc(63px / 2); margin-top: calc(63px / 2); } }\",...sharedStyle.css,'.framer-bwrSz[data-border=\"true\"]::after, .framer-bwrSz [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: 1299px) { .framer-bwrSz.framer-zpfzn2 { height: min-content; width: 810px; } .framer-bwrSz .framer-1w1gp8r { padding: 50px 20px 40px 20px; } .framer-bwrSz .framer-105ty16 { height: 2020px; } .framer-bwrSz .framer-1eyinrm { gap: 30px; padding: 120px 0px 0px 0px; } .framer-bwrSz .framer-awzptn, .framer-bwrSz .framer-7adqy4, .framer-bwrSz .framer-17a5cg9, .framer-bwrSz .framer-155n5s9, .framer-bwrSz .framer-vvd4up { flex-direction: column; gap: 40px; } .framer-bwrSz .framer-1vlm4ni { align-content: center; align-items: center; flex: none; justify-content: center; max-width: unset; width: 100%; } .framer-bwrSz .framer-hpp9yk { max-width: unset; width: 100%; } .framer-bwrSz .framer-1hih0xd { flex: none; width: min-content; } .framer-bwrSz .framer-1h9sst9, .framer-bwrSz .framer-1jb68j { padding: 20px 0px 0px 0px; } .framer-bwrSz .framer-156c0cy { order: 0; } .framer-bwrSz .framer-1gekpb3 { max-width: unset; padding: 20px 0px 0px 0px; } .framer-bwrSz .framer-4aewp5 { bottom: unset; height: 496px; position: relative; right: unset; top: unset; width: 731px; } .framer-bwrSz .framer-1akfunj { left: unset; position: relative; top: unset; } .framer-bwrSz .framer-k1b8fo, .framer-bwrSz .framer-183m5pi, .framer-bwrSz .framer-1x5m0k { grid-template-columns: repeat(2, minmax(50px, 1fr)); } .framer-bwrSz .framer-52f242 { padding: 480px 20px 0px 20px; } .framer-bwrSz .framer-nliwgv { max-width: 600px; width: 100%; } .framer-bwrSz.framer-3avlr0-container { height: 336px; left: calc(50.00000000000002% - 600px / 2); top: calc(50.00000000000002% - 336px / 2); width: 600px; } .framer-bwrSz .framer-1sn8yzv { gap: 35px; padding: 30px 0px 0px 0px; } .framer-bwrSz .framer-102ga7m { padding: 25px 30px 25px 30px; } .framer-bwrSz .framer-1xq8q6r { flex: none; height: var(--framer-aspect-ratio-supported, 244px); width: 400px; } .framer-bwrSz.framer-dzve55-container { height: 330px; left: calc(49.382716049382736% - 580px / 2); top: 150px; width: 580px; } .framer-bwrSz .framer-p6ih1t, .framer-bwrSz .framer-1n63pwe { gap: 20px; } .framer-bwrSz .framer-mbcnsz { flex: 1 0 0px; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; } .framer-bwrSz .framer-1xk7dnu { padding: 30px 0px 0px 0px; } .framer-bwrSz .framer-6mt53p { align-content: flex-start; align-items: flex-start; flex-wrap: wrap; gap: 30px; justify-content: center; } .framer-bwrSz .framer-kr4srb, .framer-bwrSz .framer-hvwoa4 { flex: none; max-width: 48%; padding: 20px 25px 20px 25px; width: 48%; } .framer-bwrSz .framer-lusj61, .framer-bwrSz .framer-1rgo1l8, .framer-bwrSz .framer-1h5aum0 { flex: 1 0 0px; width: 1px; } .framer-bwrSz .framer-hlcfv8 { flex: none; max-width: 48%; padding: 0px 25px 20px 25px; width: 48%; } .framer-bwrSz .framer-17q032c { padding: 45px 0px 0px 0px; } .framer-bwrSz .framer-gorjhk { padding: 60px 0px 0px 0px; } .framer-bwrSz .framer-1p73v9a { padding: 60px 20px 0px 20px; } .framer-bwrSz .framer-rrkx6d { gap: 60px; } .framer-bwrSz .framer-frd46q, .framer-bwrSz .framer-1a7bnpp { gap: 35px; } .framer-bwrSz .framer-1qbs5gg { flex-direction: column; gap: 20px; } .framer-bwrSz .framer-vr2df2, .framer-bwrSz .framer-wcviag, .framer-bwrSz .framer-23kc2h, .framer-bwrSz .framer-1xf8lwr, .framer-bwrSz .framer-1cte7ru, .framer-bwrSz .framer-1w1h1d5, .framer-bwrSz .framer-1b2pqcd { flex: none; width: 100%; } .framer-bwrSz .framer-a0eejm { aspect-ratio: 0.8125 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 800px); width: 100%; } .framer-bwrSz .framer-vwureh { gap: 34px; } .framer-bwrSz .framer-eksu1r { border-bottom-left-radius: 15px; border-bottom-right-radius: 15px; border-top-left-radius: 15px; border-top-right-radius: 15px; padding: 30px; } .framer-bwrSz .framer-15436lh, .framer-bwrSz .framer-5aizod, .framer-bwrSz .framer-1eghzfh, .framer-bwrSz .framer-52dtc9, .framer-bwrSz .framer-ae81f7, .framer-bwrSz .framer-25gri7, .framer-bwrSz .framer-1c3pyx { gap: 60px; padding: 60px 0px 0px 0px; } .framer-bwrSz .framer-o61xom { flex-direction: column; gap: 35px; } .framer-bwrSz .framer-15pvabl { aspect-ratio: 0.7738095238095238 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 840px); width: 100%; } .framer-bwrSz .framer-1v8x8z0, .framer-bwrSz .framer-lehxwo, .framer-bwrSz .framer-1ldzeft, .framer-bwrSz .framer-qthqx6, .framer-bwrSz .framer-60cnpp, .framer-bwrSz .framer-1kya76u, .framer-bwrSz .framer-l61in2 { gap: 40px; } .framer-bwrSz .framer-1cfq3ln, .framer-bwrSz .framer-1u9r77i { flex-direction: column; gap: 30px; } .framer-bwrSz .framer-17ycsfe { aspect-ratio: 1.0015527950310559 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 644px); width: 100%; } .framer-bwrSz .framer-1bhdp5q, .framer-bwrSz .framer-1hp3ap9, .framer-bwrSz .framer-1mx4aft, .framer-bwrSz .framer-1qfdh3r, .framer-bwrSz .framer-1b7ei3l, .framer-bwrSz .framer-dmwim7 { padding: 30px; } .framer-bwrSz .framer-1p4nvq8 { aspect-ratio: 0.8716216216216216 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 740px); width: 100%; } .framer-bwrSz .framer-1l6vcrr, .framer-bwrSz .framer-1chths4 { gap: 45px; } .framer-bwrSz .framer-g2ozvq { gap: 30px; grid-template-columns: repeat(2, minmax(50px, 1fr)); } .framer-bwrSz .framer-yhe4uf { height: 470px; max-width: 750px; width: 750px; } .framer-bwrSz .framer-18ubzqs { padding: 0px; } .framer-bwrSz .framer-cyw1he, .framer-bwrSz .framer-hwtf6s, .framer-bwrSz .framer-h9vykg { gap: 30px; } .framer-bwrSz .framer-c7q33y { flex: none; gap: 25px; max-width: unset; width: 100%; } .framer-bwrSz .framer-11c61qm { aspect-ratio: 1.1648745519713262 / 1; height: var(--framer-aspect-ratio-supported, 558px); } .framer-bwrSz .framer-1vvv31h { height: 460px; max-width: 750px; overflow: visible; width: 750px; will-change: unset; } .framer-bwrSz .framer-gs02zc { aspect-ratio: 0.935251798561151 / 1; height: var(--framer-aspect-ratio-supported, 695px); } .framer-bwrSz .framer-1warloq { gap: 60px; padding: 60px 0px 58px 0px; } .framer-bwrSz .framer-9kvptu { aspect-ratio: 0.7558139534883721 / 1; height: var(--framer-aspect-ratio-supported, 860px); } .framer-bwrSz .framer-kuecq6 { padding: 160px 20px 60px 20px; } .framer-bwrSz .framer-7lpfvf { top: -215px; } .framer-bwrSz .framer-5vluwg { padding: 80px 20px 80px 20px; } .framer-bwrSz .framer-43f0qv { aspect-ratio: 0.7 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 600px); max-width: 420px; width: 100%; } .framer-bwrSz .framer-h6n2mt { flex: none; gap: 25px; width: 100%; } .framer-bwrSz .framer-18cja5u { padding: 100px 20px 100px 20px; } .framer-bwrSz .framer-1gxz9n5 { padding: 100px 20px 80px 20px; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-bwrSz .framer-1eyinrm, .framer-bwrSz .framer-awzptn, .framer-bwrSz .framer-1sn8yzv, .framer-bwrSz .framer-p6ih1t, .framer-bwrSz .framer-6mt53p, .framer-bwrSz .framer-rrkx6d, .framer-bwrSz .framer-frd46q, .framer-bwrSz .framer-1qbs5gg, .framer-bwrSz .framer-vwureh, .framer-bwrSz .framer-15436lh, .framer-bwrSz .framer-1a7bnpp, .framer-bwrSz .framer-o61xom, .framer-bwrSz .framer-5aizod, .framer-bwrSz .framer-1v8x8z0, .framer-bwrSz .framer-1cfq3ln, .framer-bwrSz .framer-1eghzfh, .framer-bwrSz .framer-1u9r77i, .framer-bwrSz .framer-52dtc9, .framer-bwrSz .framer-1l6vcrr, .framer-bwrSz .framer-lehxwo, .framer-bwrSz .framer-g2ozvq, .framer-bwrSz .framer-1ldzeft, .framer-bwrSz .framer-ae81f7, .framer-bwrSz .framer-cyw1he, .framer-bwrSz .framer-7adqy4, .framer-bwrSz .framer-c7q33y, .framer-bwrSz .framer-qthqx6, .framer-bwrSz .framer-25gri7, .framer-bwrSz .framer-hwtf6s, .framer-bwrSz .framer-60cnpp, .framer-bwrSz .framer-1c3pyx, .framer-bwrSz .framer-h9vykg, .framer-bwrSz .framer-17a5cg9, .framer-bwrSz .framer-1warloq, .framer-bwrSz .framer-155n5s9, .framer-bwrSz .framer-1chths4, .framer-bwrSz .framer-vvd4up, .framer-bwrSz .framer-h6n2mt, .framer-bwrSz .framer-1kya76u, .framer-bwrSz .framer-l61in2, .framer-bwrSz .framer-1n63pwe { gap: 0px; } .framer-bwrSz .framer-1eyinrm > *, .framer-bwrSz .framer-1cfq3ln > *, .framer-bwrSz .framer-1u9r77i > *, .framer-bwrSz .framer-cyw1he > *, .framer-bwrSz .framer-hwtf6s > *, .framer-bwrSz .framer-h9vykg > * { margin: 0px; margin-bottom: calc(30px / 2); margin-top: calc(30px / 2); } .framer-bwrSz .framer-1eyinrm > :first-child, .framer-bwrSz .framer-awzptn > :first-child, .framer-bwrSz .framer-1sn8yzv > :first-child, .framer-bwrSz .framer-p6ih1t > :first-child, .framer-bwrSz .framer-rrkx6d > :first-child, .framer-bwrSz .framer-frd46q > :first-child, .framer-bwrSz .framer-1qbs5gg > :first-child, .framer-bwrSz .framer-vwureh > :first-child, .framer-bwrSz .framer-15436lh > :first-child, .framer-bwrSz .framer-1a7bnpp > :first-child, .framer-bwrSz .framer-o61xom > :first-child, .framer-bwrSz .framer-5aizod > :first-child, .framer-bwrSz .framer-1v8x8z0 > :first-child, .framer-bwrSz .framer-1cfq3ln > :first-child, .framer-bwrSz .framer-1eghzfh > :first-child, .framer-bwrSz .framer-1u9r77i > :first-child, .framer-bwrSz .framer-52dtc9 > :first-child, .framer-bwrSz .framer-1l6vcrr > :first-child, .framer-bwrSz .framer-lehxwo > :first-child, .framer-bwrSz .framer-1ldzeft > :first-child, .framer-bwrSz .framer-ae81f7 > :first-child, .framer-bwrSz .framer-cyw1he > :first-child, .framer-bwrSz .framer-7adqy4 > :first-child, .framer-bwrSz .framer-c7q33y > :first-child, .framer-bwrSz .framer-qthqx6 > :first-child, .framer-bwrSz .framer-25gri7 > :first-child, .framer-bwrSz .framer-hwtf6s > :first-child, .framer-bwrSz .framer-60cnpp > :first-child, .framer-bwrSz .framer-1c3pyx > :first-child, .framer-bwrSz .framer-h9vykg > :first-child, .framer-bwrSz .framer-17a5cg9 > :first-child, .framer-bwrSz .framer-1warloq > :first-child, .framer-bwrSz .framer-155n5s9 > :first-child, .framer-bwrSz .framer-1chths4 > :first-child, .framer-bwrSz .framer-vvd4up > :first-child, .framer-bwrSz .framer-h6n2mt > :first-child, .framer-bwrSz .framer-1kya76u > :first-child, .framer-bwrSz .framer-l61in2 > :first-child, .framer-bwrSz .framer-1n63pwe > :first-child { margin-top: 0px; } .framer-bwrSz .framer-1eyinrm > :last-child, .framer-bwrSz .framer-awzptn > :last-child, .framer-bwrSz .framer-1sn8yzv > :last-child, .framer-bwrSz .framer-p6ih1t > :last-child, .framer-bwrSz .framer-rrkx6d > :last-child, .framer-bwrSz .framer-frd46q > :last-child, .framer-bwrSz .framer-1qbs5gg > :last-child, .framer-bwrSz .framer-vwureh > :last-child, .framer-bwrSz .framer-15436lh > :last-child, .framer-bwrSz .framer-1a7bnpp > :last-child, .framer-bwrSz .framer-o61xom > :last-child, .framer-bwrSz .framer-5aizod > :last-child, .framer-bwrSz .framer-1v8x8z0 > :last-child, .framer-bwrSz .framer-1cfq3ln > :last-child, .framer-bwrSz .framer-1eghzfh > :last-child, .framer-bwrSz .framer-1u9r77i > :last-child, .framer-bwrSz .framer-52dtc9 > :last-child, .framer-bwrSz .framer-1l6vcrr > :last-child, .framer-bwrSz .framer-lehxwo > :last-child, .framer-bwrSz .framer-1ldzeft > :last-child, .framer-bwrSz .framer-ae81f7 > :last-child, .framer-bwrSz .framer-cyw1he > :last-child, .framer-bwrSz .framer-7adqy4 > :last-child, .framer-bwrSz .framer-c7q33y > :last-child, .framer-bwrSz .framer-qthqx6 > :last-child, .framer-bwrSz .framer-25gri7 > :last-child, .framer-bwrSz .framer-hwtf6s > :last-child, .framer-bwrSz .framer-60cnpp > :last-child, .framer-bwrSz .framer-1c3pyx > :last-child, .framer-bwrSz .framer-h9vykg > :last-child, .framer-bwrSz .framer-17a5cg9 > :last-child, .framer-bwrSz .framer-1warloq > :last-child, .framer-bwrSz .framer-155n5s9 > :last-child, .framer-bwrSz .framer-1chths4 > :last-child, .framer-bwrSz .framer-vvd4up > :last-child, .framer-bwrSz .framer-h6n2mt > :last-child, .framer-bwrSz .framer-1kya76u > :last-child, .framer-bwrSz .framer-l61in2 > :last-child, .framer-bwrSz .framer-1n63pwe > :last-child { margin-bottom: 0px; } .framer-bwrSz .framer-awzptn > *, .framer-bwrSz .framer-1v8x8z0 > *, .framer-bwrSz .framer-lehxwo > *, .framer-bwrSz .framer-1ldzeft > *, .framer-bwrSz .framer-7adqy4 > *, .framer-bwrSz .framer-qthqx6 > *, .framer-bwrSz .framer-60cnpp > *, .framer-bwrSz .framer-17a5cg9 > *, .framer-bwrSz .framer-155n5s9 > *, .framer-bwrSz .framer-vvd4up > *, .framer-bwrSz .framer-1kya76u > *, .framer-bwrSz .framer-l61in2 > * { margin: 0px; margin-bottom: calc(40px / 2); margin-top: calc(40px / 2); } .framer-bwrSz .framer-1sn8yzv > *, .framer-bwrSz .framer-frd46q > *, .framer-bwrSz .framer-1a7bnpp > *, .framer-bwrSz .framer-o61xom > * { margin: 0px; margin-bottom: calc(35px / 2); margin-top: calc(35px / 2); } .framer-bwrSz .framer-p6ih1t > *, .framer-bwrSz .framer-1qbs5gg > *, .framer-bwrSz .framer-1n63pwe > * { margin: 0px; margin-bottom: calc(20px / 2); margin-top: calc(20px / 2); } .framer-bwrSz .framer-6mt53p > * { margin: 0px; margin-left: calc(30px / 2); margin-right: calc(30px / 2); } .framer-bwrSz .framer-6mt53p > :first-child { margin-left: 0px; } .framer-bwrSz .framer-6mt53p > :last-child { margin-right: 0px; } .framer-bwrSz .framer-rrkx6d > *, .framer-bwrSz .framer-15436lh > *, .framer-bwrSz .framer-5aizod > *, .framer-bwrSz .framer-1eghzfh > *, .framer-bwrSz .framer-52dtc9 > *, .framer-bwrSz .framer-ae81f7 > *, .framer-bwrSz .framer-25gri7 > *, .framer-bwrSz .framer-1c3pyx > *, .framer-bwrSz .framer-1warloq > * { margin: 0px; margin-bottom: calc(60px / 2); margin-top: calc(60px / 2); } .framer-bwrSz .framer-vwureh > * { margin: 0px; margin-bottom: calc(34px / 2); margin-top: calc(34px / 2); } .framer-bwrSz .framer-1l6vcrr > *, .framer-bwrSz .framer-1chths4 > * { margin: 0px; margin-bottom: calc(45px / 2); margin-top: calc(45px / 2); } .framer-bwrSz .framer-g2ozvq > *, .framer-bwrSz .framer-g2ozvq > :first-child, .framer-bwrSz .framer-g2ozvq > :last-child { margin: 0px; } .framer-bwrSz .framer-c7q33y > *, .framer-bwrSz .framer-h6n2mt > * { margin: 0px; margin-bottom: calc(25px / 2); margin-top: calc(25px / 2); } }}\",\"@media (max-width: 809px) { .framer-bwrSz.framer-zpfzn2 { height: min-content; overflow: hidden; width: 390px; } .framer-bwrSz .framer-1w1gp8r { background: linear-gradient(180deg, #ffffff 3%, rgb(240, 242, 246) 9%); padding: 90px 0px 50px 0px; } .framer-bwrSz .framer-1eyinrm { gap: 30px; padding: 50px 20px 80px 20px; } .framer-bwrSz .framer-awzptn { flex-direction: column; flex-wrap: wrap; gap: 30px; justify-content: center; } .framer-bwrSz .framer-1vlm4ni { align-content: center; align-items: center; flex: none; justify-content: center; max-width: 800px; width: 100%; } .framer-bwrSz .framer-hpp9yk { flex-direction: column; gap: 10px; width: 100%; } .framer-bwrSz .framer-f22k { flex: none; width: 100%; } .framer-bwrSz .framer-wqagu2 { height: 35px; width: 35px; } .framer-bwrSz .framer-1x4cknr { left: 23px; width: 35px; } .framer-bwrSz .framer-1ez9ee8 { left: 48px; width: 35px; } .framer-bwrSz .framer-wv0i8b { left: 76px; width: 35px; } .framer-bwrSz .framer-kegcw7 { left: 103px; width: 35px; } .framer-bwrSz .framer-1hih0xd { flex: none; justify-content: center; width: 100%; } .framer-bwrSz .framer-1h9sst9 { overflow: visible; padding: 15px 0px 0px 0px; } .framer-bwrSz .framer-1jb68j, .framer-bwrSz .framer-ioaxux, .framer-bwrSz .framer-gym3h3, .framer-bwrSz .framer-rkt84e, .framer-bwrSz .framer-15ezi1a, .framer-bwrSz .framer-wmj1s9, .framer-bwrSz .framer-utlcs, .framer-bwrSz .framer-161nuzi, .framer-bwrSz .framer-d49bok, .framer-bwrSz .framer-uvsl2g, .framer-bwrSz .framer-g82wi1, .framer-bwrSz .framer-14e9jvq { padding: 15px 0px 0px 0px; } .framer-bwrSz .framer-1gekpb3 { max-width: unset; padding: 20px 0px 0px 0px; } .framer-bwrSz .framer-1tr1kn3-container { width: auto; } .framer-bwrSz .framer-4aewp5 { bottom: unset; height: 310px; position: relative; right: unset; top: unset; width: 106%; } .framer-bwrSz .framer-1akfunj { left: unset; position: relative; top: unset; } .framer-bwrSz .framer-k1b8fo { align-content: flex-start; align-items: flex-start; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 24px; justify-content: flex-start; } .framer-bwrSz .framer-175iioy, .framer-bwrSz .framer-1f2hrj6, .framer-bwrSz .framer-1ppie8k, .framer-bwrSz .framer-120bbms, .framer-bwrSz .framer-nl9pss, .framer-bwrSz .framer-1brz0t2, .framer-bwrSz .framer-g2v8iv, .framer-bwrSz .framer-1g0sp87, .framer-bwrSz .framer-y25aah { align-content: center; align-items: center; align-self: unset; height: min-content; } .framer-bwrSz .framer-1e6ipjz, .framer-bwrSz .framer-z5lzk6, .framer-bwrSz .framer-1c38bh5, .framer-bwrSz .framer-a1cvgt, .framer-bwrSz .framer-hmncqd, .framer-bwrSz .framer-17h2jxo, .framer-bwrSz .framer-xbrb91, .framer-bwrSz .framer-6qosv9, .framer-bwrSz .framer-1i832sp, .framer-bwrSz .framer-15f4461, .framer-bwrSz .framer-1yf166x, .framer-bwrSz .framer-1lu8hsy, .framer-bwrSz .framer-7vzt44, .framer-bwrSz .framer-1loituj, .framer-bwrSz .framer-1vtcoqo, .framer-bwrSz .framer-1x8345f, .framer-bwrSz .framer-1uk6wjb, .framer-bwrSz .framer-13mzk0h, .framer-bwrSz .framer-fbfixt, .framer-bwrSz .framer-evjfpi, .framer-bwrSz .framer-s4qjxz, .framer-bwrSz .framer-10jdh6h { height: 30px; width: 30px; } .framer-bwrSz .framer-64ue0r { align-content: center; align-items: center; } .framer-bwrSz .framer-52f242 { padding: 270px 20px 0px 20px; } .framer-bwrSz .framer-nliwgv { max-width: 100%; overflow: visible; top: -90px; width: 90%; } .framer-bwrSz .framer-ibcior-container { max-width: 300px; } .framer-bwrSz.framer-9hd70b { background-color: rgba(0, 0, 0, 0.8); } .framer-bwrSz.framer-3avlr0-container { height: 168px; left: calc(50.00000000000002% - 300px / 2); top: calc(50.00000000000002% - 168px / 2); width: 300px; } .framer-bwrSz .framer-1sn8yzv { gap: 30px; padding: 20px 0px 0px 0px; } .framer-bwrSz .framer-102ga7m { border-bottom-left-radius: 15px; border-bottom-right-radius: 15px; border-top-left-radius: 15px; border-top-right-radius: 15px; flex-direction: column; gap: 20px; padding: 25px 20px 25px 20px; } .framer-bwrSz .framer-1xq8q6r { aspect-ratio: unset; flex: none; height: 180px; width: 100%; } .framer-bwrSz.framer-dzve55-container { height: 170px; left: calc(49.230769230769255% - 300px / 2); top: 272px; width: 300px; } .framer-bwrSz .framer-105zu52, .framer-bwrSz .framer-h6n2mt { flex: none; gap: 15px; width: 100%; } .framer-bwrSz .framer-1aveioo { align-content: center; align-items: center; gap: 8px; } .framer-bwrSz .framer-keiasn, .framer-bwrSz .framer-11cycif, .framer-bwrSz .framer-w116bq, .framer-bwrSz .framer-zevqis, .framer-bwrSz .framer-6q6g3z { gap: 10px; justify-content: center; } .framer-bwrSz .framer-jjja4l, .framer-bwrSz .framer-7i5vqk, .framer-bwrSz .framer-52p4oz, .framer-bwrSz .framer-m7more { height: 40px; width: 40px; } .framer-bwrSz .framer-17pkle5, .framer-bwrSz .framer-sfwra0, .framer-bwrSz .framer-1gj6f3z, .framer-bwrSz .framer-tf0gs8 { height: 38px; width: 38px; } .framer-bwrSz .framer-p6ih1t { gap: 25px; } .framer-bwrSz .framer-mbcnsz, .framer-bwrSz .framer-4wi6k8, .framer-bwrSz .framer-51rej9, .framer-bwrSz .framer-1wcw6fq, .framer-bwrSz .framer-1mfr9di, .framer-bwrSz .framer-1y0e7x8, .framer-bwrSz .framer-llf1f5, .framer-bwrSz .framer-3nna1h, .framer-bwrSz .framer-1viuv9k, .framer-bwrSz .framer-1t9vgp5, .framer-bwrSz .framer-4ogvel, .framer-bwrSz .framer-1xolbky, .framer-bwrSz .framer-184qw9f, .framer-bwrSz .framer-bx0cmh, .framer-bwrSz .framer-x9v2c2, .framer-bwrSz .framer-juwxl0, .framer-bwrSz .framer-nkolfw, .framer-bwrSz .framer-1sms6pc, .framer-bwrSz .framer-1qfky70, .framer-bwrSz .framer-1kgrbg6, .framer-bwrSz .framer-kbuy76, .framer-bwrSz .framer-vla9x8, .framer-bwrSz .framer-1brr7w0 { flex: 1 0 0px; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; } .framer-bwrSz .framer-zl4zl1 { gap: 9px; } .framer-bwrSz .framer-1xk7dnu { padding: 30px 0px 0px 0px; } .framer-bwrSz .framer-6mt53p { flex-direction: column; } .framer-bwrSz .framer-kr4srb, .framer-bwrSz .framer-hvwoa4, .framer-bwrSz .framer-hlcfv8 { flex: none; padding: 15px; width: 100%; } .framer-bwrSz .framer-lusj61, .framer-bwrSz .framer-1rgo1l8, .framer-bwrSz .framer-1h5aum0 { flex: 1 0 0px; width: 1px; } .framer-bwrSz .framer-17q032c { padding: 25px 0px 0px 0px; } .framer-bwrSz .framer-e2f56c-container, .framer-bwrSz .framer-1h7a0yd-container, .framer-bwrSz .framer-m2sfy2-container, .framer-bwrSz .framer-1i8wp9v-container, .framer-bwrSz .framer-9gg2ep-container, .framer-bwrSz .framer-1tu9oqi, .framer-bwrSz .framer-1fvf7l7-container, .framer-bwrSz .framer-upy9io-container, .framer-bwrSz .framer-qyd57b, .framer-bwrSz .framer-1g73k0-container, .framer-bwrSz .framer-jz6dtt-container, .framer-bwrSz .framer-10k7nej-container, .framer-bwrSz .framer-1v65elf-container { width: 100%; } .framer-bwrSz .framer-gorjhk { padding: 40px 0px 0px 0px; } .framer-bwrSz .framer-1p73v9a { padding: 60px 20px 0px 20px; } .framer-bwrSz .framer-rrkx6d { gap: 45px; overflow: visible; } .framer-bwrSz .framer-frd46q, .framer-bwrSz .framer-vwureh, .framer-bwrSz .framer-g3vwkp, .framer-bwrSz .framer-1p5ecd1, .framer-bwrSz .framer-1l6vcrr, .framer-bwrSz .framer-1ldzeft, .framer-bwrSz .framer-qthqx6, .framer-bwrSz .framer-hwtf6s, .framer-bwrSz .framer-1f3wgf2, .framer-bwrSz .framer-d7c0j2, .framer-bwrSz .framer-vqn9b8, .framer-bwrSz .framer-1kya76u, .framer-bwrSz .framer-l61in2 { gap: 30px; } .framer-bwrSz .framer-1qbs5gg { flex-direction: column; gap: 10px; } .framer-bwrSz .framer-vr2df2, .framer-bwrSz .framer-wcviag { flex: none; gap: 25px; width: 100%; } .framer-bwrSz .framer-xb4jb6, .framer-bwrSz .framer-12k299d, .framer-bwrSz .framer-1yzz4d9, .framer-bwrSz .framer-yvc2vk, .framer-bwrSz .framer-roug7i, .framer-bwrSz .framer-gw7mhw, .framer-bwrSz .framer-1x81t7y, .framer-bwrSz .framer-1dmpvd0, .framer-bwrSz .framer-1fbv8s3, .framer-bwrSz .framer-1gj9oxt, .framer-bwrSz .framer-htioxk, .framer-bwrSz .framer-50hyn6, .framer-bwrSz .framer-1w1zsst, .framer-bwrSz .framer-15usenh, .framer-bwrSz .framer-1t39tug, .framer-bwrSz .framer-zkhf0k, .framer-bwrSz .framer-1n63pwe { gap: 15px; } .framer-bwrSz .framer-n9r5oa, .framer-bwrSz .framer-1bhyrvs, .framer-bwrSz .framer-tsceuy, .framer-bwrSz .framer-l0rin9, .framer-bwrSz .framer-1hccslf, .framer-bwrSz .framer-v70e8x, .framer-bwrSz .framer-5wagu1, .framer-bwrSz .framer-1dhqdxr, .framer-bwrSz .framer-1mctllf, .framer-bwrSz .framer-i7cunx, .framer-bwrSz .framer-1p7nyux, .framer-bwrSz .framer-2282r8, .framer-bwrSz .framer-vam3jb, .framer-bwrSz .framer-1an2bh2, .framer-bwrSz .framer-1egoj48, .framer-bwrSz .framer-1gp14yd, .framer-bwrSz .framer-1v1x0vi, .framer-bwrSz .framer-pwh9ge, .framer-bwrSz .framer-pbbt10, .framer-bwrSz .framer-1s4yz0u, .framer-bwrSz .framer-1juj22g, .framer-bwrSz .framer-1kfojif { gap: 5px; width: 100%; } .framer-bwrSz .framer-a0eejm, .framer-bwrSz .framer-15pvabl { aspect-ratio: 0.7777777777777778 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 257px); width: 100%; } .framer-bwrSz .framer-eksu1r, .framer-bwrSz .framer-1bhdp5q, .framer-bwrSz .framer-117vcbp, .framer-bwrSz .framer-1hp3ap9, .framer-bwrSz .framer-1mx4aft, .framer-bwrSz .framer-1b7ei3l, .framer-bwrSz .framer-dmwim7 { border-bottom-left-radius: 15px; border-bottom-right-radius: 15px; border-top-left-radius: 15px; border-top-right-radius: 15px; padding: 25px 20px 25px 20px; } .framer-bwrSz .framer-1iwrxu2 { height: 25px; width: 30px; } .framer-bwrSz .framer-meiijz, .framer-bwrSz .framer-3y9ew, .framer-bwrSz .framer-n36iwb, .framer-bwrSz .framer-eo4kss, .framer-bwrSz .framer-vnyll0, .framer-bwrSz .framer-b86aa8, .framer-bwrSz .framer-8tnktt, .framer-bwrSz .framer-1ni9oz1 { gap: 10px; } .framer-bwrSz .framer-o2bslv, .framer-bwrSz .framer-j0datt, .framer-bwrSz .framer-13jqfnf, .framer-bwrSz .framer-h1uwlv { border-bottom-left-radius: 5px; border-bottom-right-radius: 5px; border-top-left-radius: 5px; border-top-right-radius: 5px; height: 40px; width: 40px; } .framer-bwrSz .framer-cawef5, .framer-bwrSz .framer-1d281p5, .framer-bwrSz .framer-1b4lx9r, .framer-bwrSz .framer-1hcuejl { align-content: flex-start; align-items: flex-start; flex: none; width: min-content; } .framer-bwrSz .framer-1nn581k, .framer-bwrSz .framer-rhnaxd, .framer-bwrSz .framer-10ncsn7, .framer-bwrSz .framer-aorki8, .framer-bwrSz .framer-11rayse, .framer-bwrSz .framer-1x6j3s5, .framer-bwrSz .framer-vuc8ru, .framer-bwrSz .framer-18u9oyi { white-space: pre; width: auto; } .framer-bwrSz .framer-15436lh { gap: 30px; overflow: visible; padding: 60px 0px 0px 0px; } .framer-bwrSz .framer-1a7bnpp, .framer-bwrSz .framer-cgn6em, .framer-bwrSz .framer-1v8x8z0, .framer-bwrSz .framer-189dmh4, .framer-bwrSz .framer-lehxwo, .framer-bwrSz .framer-cyw1he, .framer-bwrSz .framer-60cnpp, .framer-bwrSz .framer-h9vykg, .framer-bwrSz .framer-1chths4 { gap: 20px; } .framer-bwrSz .framer-o61xom, .framer-bwrSz .framer-1cfq3ln, .framer-bwrSz .framer-1u9r77i, .framer-bwrSz .framer-7adqy4, .framer-bwrSz .framer-155n5s9 { flex-direction: column; gap: 20px; } .framer-bwrSz .framer-pu3nx6, .framer-bwrSz .framer-1pr2ono, .framer-bwrSz .framer-flpdzv, .framer-bwrSz .framer-1iavh7d, .framer-bwrSz .framer-14gvoa3, .framer-bwrSz .framer-1n2kvl9, .framer-bwrSz .framer-emgo27, .framer-bwrSz .framer-1h2qgrh, .framer-bwrSz .framer-3ym1i9, .framer-bwrSz .framer-61s6d4, .framer-bwrSz .framer-9r6lps { gap: 5px; } .framer-bwrSz .framer-5aizod, .framer-bwrSz .framer-1eghzfh, .framer-bwrSz .framer-52dtc9, .framer-bwrSz .framer-ae81f7, .framer-bwrSz .framer-25gri7, .framer-bwrSz .framer-1c3pyx { gap: 30px; overflow: visible; padding: 30px 0px 0px 0px; } .framer-bwrSz .framer-23kc2h, .framer-bwrSz .framer-1xf8lwr, .framer-bwrSz .framer-c7q33y, .framer-bwrSz .framer-1w1h1d5, .framer-bwrSz .framer-1b2pqcd { flex: none; gap: 20px; width: 100%; } .framer-bwrSz .framer-17ycsfe { aspect-ratio: 0.9459459459459459 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 211px); width: 100%; } .framer-bwrSz .framer-16562bd { height: 103%; order: 0; width: 103%; } .framer-bwrSz .framer-1p4nvq8 { aspect-ratio: 0.8333333333333334 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 240px); width: 100%; } .framer-bwrSz .framer-19jjyy2 { height: 103%; width: 103%; } .framer-bwrSz .framer-u8xbxs, .framer-bwrSz .framer-evdhaz, .framer-bwrSz .framer-1ydzamk { width: 30px; } .framer-bwrSz .framer-75bjrp, .framer-bwrSz .framer-1tgbor3, .framer-bwrSz .framer-yaur30, .framer-bwrSz .framer-1glapzg { border-bottom-left-radius: 5px; border-bottom-right-radius: 5px; border-top-left-radius: 5px; border-top-right-radius: 5px; height: 38px; width: 38px; } .framer-bwrSz .framer-vsex48, .framer-bwrSz .framer-1ho4nr1, .framer-bwrSz .framer-1o9n70, .framer-bwrSz .framer-1w6p2ml { padding: 10px 0px 0px 0px; } .framer-bwrSz .framer-g2ozvq { align-content: flex-start; align-items: flex-start; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 15px; justify-content: flex-start; } .framer-bwrSz .framer-1x9g53w, .framer-bwrSz .framer-1tz63uy, .framer-bwrSz .framer-dyv6pe, .framer-bwrSz .framer-189kyol { align-self: unset; width: 100%; } .framer-bwrSz .framer-u9k3um, .framer-bwrSz .framer-5a03mm, .framer-bwrSz .framer-19ogmly { align-self: unset; } .framer-bwrSz .framer-yhe4uf { aspect-ratio: 1.6055045871559632 / 1; height: var(--framer-aspect-ratio-supported, 125px); } .framer-bwrSz .framer-13t7ola, .framer-bwrSz .framer-1efkruc, .framer-bwrSz .framer-1g9foo4, .framer-bwrSz .framer-13plyw2 { justify-content: flex-start; } .framer-bwrSz .framer-crch8q, .framer-bwrSz .framer-rqbud5 { align-content: flex-start; align-items: flex-start; } .framer-bwrSz .framer-11c61qm { aspect-ratio: 1 / 1; height: var(--framer-aspect-ratio-supported, 200px); width: 100%; } .framer-bwrSz .framer-183m5pi { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 15px; justify-content: flex-start; } .framer-bwrSz .framer-1vvv31h { aspect-ratio: 1.6908212560386473 / 1; height: var(--framer-aspect-ratio-supported, 118px); max-width: 350px; } .framer-bwrSz .framer-165cwb5 { padding: 0px; } .framer-bwrSz .framer-1qfdh3r { padding: 25px 20px 25px 20px; } .framer-bwrSz .framer-17a5cg9 { flex-direction: column; gap: 30px; } .framer-bwrSz .framer-gs02zc, .framer-bwrSz .framer-9kvptu { aspect-ratio: 0.875 / 1; height: var(--framer-aspect-ratio-supported, 229px); width: 100%; } .framer-bwrSz .framer-1warloq { gap: 30px; padding: 30px 0px 58px 0px; } .framer-bwrSz .framer-kuecq6 { padding: 50px 20px 50px 20px; } .framer-bwrSz .framer-qv260j { white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; } .framer-bwrSz .framer-1x5m0k { align-content: flex-start; align-items: flex-start; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 20px; justify-content: flex-start; } .framer-bwrSz .framer-1th2lyo, .framer-bwrSz .framer-mmptn7, .framer-bwrSz .framer-1jqssn9, .framer-bwrSz .framer-e0td4m, .framer-bwrSz .framer-4c0x5w, .framer-bwrSz .framer-mk3tv8, .framer-bwrSz .framer-1d2io0b, .framer-bwrSz .framer-1uu292a, .framer-bwrSz .framer-145dwah { align-content: center; align-items: center; align-self: unset; height: min-content; justify-content: center; } .framer-bwrSz .framer-d6e80i, .framer-bwrSz .framer-lyczd6 { aspect-ratio: 1 / 1; height: var(--framer-aspect-ratio-supported, 38px); width: 38px; } .framer-bwrSz .framer-7lpfvf { height: 70px; left: calc(50.00000000000002% - 100% / 2); right: unset; top: -92px; width: 100%; } .framer-bwrSz .framer-q4hknw { height: 69px; width: 23px; } .framer-bwrSz .framer-5vluwg { flex-direction: column; padding: 40px 20px 40px 20px; } .framer-bwrSz .framer-vvd4up { flex: none; flex-direction: column; gap: 25px; width: 100%; } .framer-bwrSz .framer-43f0qv { flex: none; height: 310px; max-width: 360px; width: 90%; } .framer-bwrSz .framer-15lv7z6 { align-content: flex-start; align-items: flex-start; gap: 10px; } .framer-bwrSz .framer-18cja5u, .framer-bwrSz .framer-1gxz9n5 { padding: 60px 20px 60px 20px; } .framer-bwrSz .framer-1npybh { gap: 25px; padding: 25px 20px 25px 20px; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-bwrSz .framer-1eyinrm, .framer-bwrSz .framer-awzptn, .framer-bwrSz .framer-hpp9yk, .framer-bwrSz .framer-k1b8fo, .framer-bwrSz .framer-1sn8yzv, .framer-bwrSz .framer-102ga7m, .framer-bwrSz .framer-105zu52, .framer-bwrSz .framer-1aveioo, .framer-bwrSz .framer-keiasn, .framer-bwrSz .framer-p6ih1t, .framer-bwrSz .framer-zl4zl1, .framer-bwrSz .framer-6mt53p, .framer-bwrSz .framer-rrkx6d, .framer-bwrSz .framer-frd46q, .framer-bwrSz .framer-1qbs5gg, .framer-bwrSz .framer-vr2df2, .framer-bwrSz .framer-xb4jb6, .framer-bwrSz .framer-n9r5oa, .framer-bwrSz .framer-1bhyrvs, .framer-bwrSz .framer-tsceuy, .framer-bwrSz .framer-l0rin9, .framer-bwrSz .framer-1hccslf, .framer-bwrSz .framer-vwureh, .framer-bwrSz .framer-12k299d, .framer-bwrSz .framer-1yzz4d9, .framer-bwrSz .framer-meiijz, .framer-bwrSz .framer-15436lh, .framer-bwrSz .framer-1a7bnpp, .framer-bwrSz .framer-o61xom, .framer-bwrSz .framer-wcviag, .framer-bwrSz .framer-cgn6em, .framer-bwrSz .framer-v70e8x, .framer-bwrSz .framer-5wagu1, .framer-bwrSz .framer-1dhqdxr, .framer-bwrSz .framer-pu3nx6, .framer-bwrSz .framer-1mctllf, .framer-bwrSz .framer-5aizod, .framer-bwrSz .framer-1v8x8z0, .framer-bwrSz .framer-1cfq3ln, .framer-bwrSz .framer-23kc2h, .framer-bwrSz .framer-yvc2vk, .framer-bwrSz .framer-i7cunx, .framer-bwrSz .framer-1p7nyux, .framer-bwrSz .framer-2282r8, .framer-bwrSz .framer-g3vwkp, .framer-bwrSz .framer-roug7i, .framer-bwrSz .framer-gw7mhw, .framer-bwrSz .framer-1x81t7y, .framer-bwrSz .framer-1eghzfh, .framer-bwrSz .framer-189dmh4, .framer-bwrSz .framer-1u9r77i, .framer-bwrSz .framer-1xf8lwr, .framer-bwrSz .framer-1dmpvd0, .framer-bwrSz .framer-vam3jb, .framer-bwrSz .framer-1an2bh2, .framer-bwrSz .framer-1egoj48, .framer-bwrSz .framer-1gp14yd, .framer-bwrSz .framer-1p5ecd1, .framer-bwrSz .framer-1fbv8s3, .framer-bwrSz .framer-3y9ew, .framer-bwrSz .framer-n36iwb, .framer-bwrSz .framer-52dtc9, .framer-bwrSz .framer-1l6vcrr, .framer-bwrSz .framer-lehxwo, .framer-bwrSz .framer-g2ozvq, .framer-bwrSz .framer-1v1x0vi, .framer-bwrSz .framer-pwh9ge, .framer-bwrSz .framer-pbbt10, .framer-bwrSz .framer-1ldzeft, .framer-bwrSz .framer-1gj9oxt, .framer-bwrSz .framer-eo4kss, .framer-bwrSz .framer-11cycif, .framer-bwrSz .framer-ae81f7, .framer-bwrSz .framer-cyw1he, .framer-bwrSz .framer-7adqy4, .framer-bwrSz .framer-c7q33y, .framer-bwrSz .framer-htioxk, .framer-bwrSz .framer-1pr2ono, .framer-bwrSz .framer-flpdzv, .framer-bwrSz .framer-1iavh7d, .framer-bwrSz .framer-qthqx6, .framer-bwrSz .framer-50hyn6, .framer-bwrSz .framer-vnyll0, .framer-bwrSz .framer-w116bq, .framer-bwrSz .framer-25gri7, .framer-bwrSz .framer-hwtf6s, .framer-bwrSz .framer-60cnpp, .framer-bwrSz .framer-183m5pi, .framer-bwrSz .framer-14gvoa3, .framer-bwrSz .framer-1n2kvl9, .framer-bwrSz .framer-emgo27, .framer-bwrSz .framer-1f3wgf2, .framer-bwrSz .framer-1w1zsst, .framer-bwrSz .framer-b86aa8, .framer-bwrSz .framer-zevqis, .framer-bwrSz .framer-1c3pyx, .framer-bwrSz .framer-h9vykg, .framer-bwrSz .framer-17a5cg9, .framer-bwrSz .framer-1w1h1d5, .framer-bwrSz .framer-15usenh, .framer-bwrSz .framer-1h2qgrh, .framer-bwrSz .framer-3ym1i9, .framer-bwrSz .framer-61s6d4, .framer-bwrSz .framer-d7c0j2, .framer-bwrSz .framer-1t39tug, .framer-bwrSz .framer-8tnktt, .framer-bwrSz .framer-6q6g3z, .framer-bwrSz .framer-1warloq, .framer-bwrSz .framer-155n5s9, .framer-bwrSz .framer-1b2pqcd, .framer-bwrSz .framer-zkhf0k, .framer-bwrSz .framer-9r6lps, .framer-bwrSz .framer-1s4yz0u, .framer-bwrSz .framer-1juj22g, .framer-bwrSz .framer-1kfojif, .framer-bwrSz .framer-1chths4, .framer-bwrSz .framer-1ni9oz1, .framer-bwrSz .framer-1x5m0k, .framer-bwrSz .framer-vqn9b8, .framer-bwrSz .framer-5vluwg, .framer-bwrSz .framer-vvd4up, .framer-bwrSz .framer-h6n2mt, .framer-bwrSz .framer-15lv7z6, .framer-bwrSz .framer-1kya76u, .framer-bwrSz .framer-l61in2, .framer-bwrSz .framer-1n63pwe, .framer-bwrSz .framer-1npybh { gap: 0px; } .framer-bwrSz .framer-1eyinrm > *, .framer-bwrSz .framer-awzptn > *, .framer-bwrSz .framer-1sn8yzv > *, .framer-bwrSz .framer-frd46q > *, .framer-bwrSz .framer-vwureh > *, .framer-bwrSz .framer-15436lh > *, .framer-bwrSz .framer-5aizod > *, .framer-bwrSz .framer-g3vwkp > *, .framer-bwrSz .framer-1eghzfh > *, .framer-bwrSz .framer-1p5ecd1 > *, .framer-bwrSz .framer-52dtc9 > *, .framer-bwrSz .framer-1l6vcrr > *, .framer-bwrSz .framer-1ldzeft > *, .framer-bwrSz .framer-ae81f7 > *, .framer-bwrSz .framer-qthqx6 > *, .framer-bwrSz .framer-25gri7 > *, .framer-bwrSz .framer-hwtf6s > *, .framer-bwrSz .framer-1f3wgf2 > *, .framer-bwrSz .framer-1c3pyx > *, .framer-bwrSz .framer-17a5cg9 > *, .framer-bwrSz .framer-d7c0j2 > *, .framer-bwrSz .framer-1warloq > *, .framer-bwrSz .framer-vqn9b8 > *, .framer-bwrSz .framer-1kya76u > *, .framer-bwrSz .framer-l61in2 > * { margin: 0px; margin-bottom: calc(30px / 2); margin-top: calc(30px / 2); } .framer-bwrSz .framer-1eyinrm > :first-child, .framer-bwrSz .framer-awzptn > :first-child, .framer-bwrSz .framer-hpp9yk > :first-child, .framer-bwrSz .framer-k1b8fo > :first-child, .framer-bwrSz .framer-1sn8yzv > :first-child, .framer-bwrSz .framer-102ga7m > :first-child, .framer-bwrSz .framer-105zu52 > :first-child, .framer-bwrSz .framer-1aveioo > :first-child, .framer-bwrSz .framer-p6ih1t > :first-child, .framer-bwrSz .framer-zl4zl1 > :first-child, .framer-bwrSz .framer-6mt53p > :first-child, .framer-bwrSz .framer-rrkx6d > :first-child, .framer-bwrSz .framer-frd46q > :first-child, .framer-bwrSz .framer-1qbs5gg > :first-child, .framer-bwrSz .framer-vr2df2 > :first-child, .framer-bwrSz .framer-xb4jb6 > :first-child, .framer-bwrSz .framer-vwureh > :first-child, .framer-bwrSz .framer-12k299d > :first-child, .framer-bwrSz .framer-1yzz4d9 > :first-child, .framer-bwrSz .framer-15436lh > :first-child, .framer-bwrSz .framer-1a7bnpp > :first-child, .framer-bwrSz .framer-o61xom > :first-child, .framer-bwrSz .framer-wcviag > :first-child, .framer-bwrSz .framer-cgn6em > :first-child, .framer-bwrSz .framer-5aizod > :first-child, .framer-bwrSz .framer-1v8x8z0 > :first-child, .framer-bwrSz .framer-1cfq3ln > :first-child, .framer-bwrSz .framer-23kc2h > :first-child, .framer-bwrSz .framer-yvc2vk > :first-child, .framer-bwrSz .framer-g3vwkp > :first-child, .framer-bwrSz .framer-roug7i > :first-child, .framer-bwrSz .framer-gw7mhw > :first-child, .framer-bwrSz .framer-1eghzfh > :first-child, .framer-bwrSz .framer-189dmh4 > :first-child, .framer-bwrSz .framer-1u9r77i > :first-child, .framer-bwrSz .framer-1xf8lwr > :first-child, .framer-bwrSz .framer-1dmpvd0 > :first-child, .framer-bwrSz .framer-1p5ecd1 > :first-child, .framer-bwrSz .framer-1fbv8s3 > :first-child, .framer-bwrSz .framer-3y9ew > :first-child, .framer-bwrSz .framer-52dtc9 > :first-child, .framer-bwrSz .framer-1l6vcrr > :first-child, .framer-bwrSz .framer-lehxwo > :first-child, .framer-bwrSz .framer-g2ozvq > :first-child, .framer-bwrSz .framer-1ldzeft > :first-child, .framer-bwrSz .framer-1gj9oxt > :first-child, .framer-bwrSz .framer-eo4kss > :first-child, .framer-bwrSz .framer-ae81f7 > :first-child, .framer-bwrSz .framer-cyw1he > :first-child, .framer-bwrSz .framer-7adqy4 > :first-child, .framer-bwrSz .framer-c7q33y > :first-child, .framer-bwrSz .framer-htioxk > :first-child, .framer-bwrSz .framer-qthqx6 > :first-child, .framer-bwrSz .framer-50hyn6 > :first-child, .framer-bwrSz .framer-vnyll0 > :first-child, .framer-bwrSz .framer-25gri7 > :first-child, .framer-bwrSz .framer-hwtf6s > :first-child, .framer-bwrSz .framer-60cnpp > :first-child, .framer-bwrSz .framer-183m5pi > :first-child, .framer-bwrSz .framer-1f3wgf2 > :first-child, .framer-bwrSz .framer-1w1zsst > :first-child, .framer-bwrSz .framer-b86aa8 > :first-child, .framer-bwrSz .framer-1c3pyx > :first-child, .framer-bwrSz .framer-h9vykg > :first-child, .framer-bwrSz .framer-17a5cg9 > :first-child, .framer-bwrSz .framer-1w1h1d5 > :first-child, .framer-bwrSz .framer-15usenh > :first-child, .framer-bwrSz .framer-d7c0j2 > :first-child, .framer-bwrSz .framer-1t39tug > :first-child, .framer-bwrSz .framer-8tnktt > :first-child, .framer-bwrSz .framer-1warloq > :first-child, .framer-bwrSz .framer-155n5s9 > :first-child, .framer-bwrSz .framer-1b2pqcd > :first-child, .framer-bwrSz .framer-zkhf0k > :first-child, .framer-bwrSz .framer-1chths4 > :first-child, .framer-bwrSz .framer-1ni9oz1 > :first-child, .framer-bwrSz .framer-1x5m0k > :first-child, .framer-bwrSz .framer-vqn9b8 > :first-child, .framer-bwrSz .framer-5vluwg > :first-child, .framer-bwrSz .framer-vvd4up > :first-child, .framer-bwrSz .framer-h6n2mt > :first-child, .framer-bwrSz .framer-15lv7z6 > :first-child, .framer-bwrSz .framer-1kya76u > :first-child, .framer-bwrSz .framer-l61in2 > :first-child, .framer-bwrSz .framer-1n63pwe > :first-child, .framer-bwrSz .framer-1npybh > :first-child { margin-top: 0px; } .framer-bwrSz .framer-1eyinrm > :last-child, .framer-bwrSz .framer-awzptn > :last-child, .framer-bwrSz .framer-hpp9yk > :last-child, .framer-bwrSz .framer-k1b8fo > :last-child, .framer-bwrSz .framer-1sn8yzv > :last-child, .framer-bwrSz .framer-102ga7m > :last-child, .framer-bwrSz .framer-105zu52 > :last-child, .framer-bwrSz .framer-1aveioo > :last-child, .framer-bwrSz .framer-p6ih1t > :last-child, .framer-bwrSz .framer-zl4zl1 > :last-child, .framer-bwrSz .framer-6mt53p > :last-child, .framer-bwrSz .framer-rrkx6d > :last-child, .framer-bwrSz .framer-frd46q > :last-child, .framer-bwrSz .framer-1qbs5gg > :last-child, .framer-bwrSz .framer-vr2df2 > :last-child, .framer-bwrSz .framer-xb4jb6 > :last-child, .framer-bwrSz .framer-vwureh > :last-child, .framer-bwrSz .framer-12k299d > :last-child, .framer-bwrSz .framer-1yzz4d9 > :last-child, .framer-bwrSz .framer-15436lh > :last-child, .framer-bwrSz .framer-1a7bnpp > :last-child, .framer-bwrSz .framer-o61xom > :last-child, .framer-bwrSz .framer-wcviag > :last-child, .framer-bwrSz .framer-cgn6em > :last-child, .framer-bwrSz .framer-5aizod > :last-child, .framer-bwrSz .framer-1v8x8z0 > :last-child, .framer-bwrSz .framer-1cfq3ln > :last-child, .framer-bwrSz .framer-23kc2h > :last-child, .framer-bwrSz .framer-yvc2vk > :last-child, .framer-bwrSz .framer-g3vwkp > :last-child, .framer-bwrSz .framer-roug7i > :last-child, .framer-bwrSz .framer-gw7mhw > :last-child, .framer-bwrSz .framer-1eghzfh > :last-child, .framer-bwrSz .framer-189dmh4 > :last-child, .framer-bwrSz .framer-1u9r77i > :last-child, .framer-bwrSz .framer-1xf8lwr > :last-child, .framer-bwrSz .framer-1dmpvd0 > :last-child, .framer-bwrSz .framer-1p5ecd1 > :last-child, .framer-bwrSz .framer-1fbv8s3 > :last-child, .framer-bwrSz .framer-3y9ew > :last-child, .framer-bwrSz .framer-52dtc9 > :last-child, .framer-bwrSz .framer-1l6vcrr > :last-child, .framer-bwrSz .framer-lehxwo > :last-child, .framer-bwrSz .framer-g2ozvq > :last-child, .framer-bwrSz .framer-1ldzeft > :last-child, .framer-bwrSz .framer-1gj9oxt > :last-child, .framer-bwrSz .framer-eo4kss > :last-child, .framer-bwrSz .framer-ae81f7 > :last-child, .framer-bwrSz .framer-cyw1he > :last-child, .framer-bwrSz .framer-7adqy4 > :last-child, .framer-bwrSz .framer-c7q33y > :last-child, .framer-bwrSz .framer-htioxk > :last-child, .framer-bwrSz .framer-qthqx6 > :last-child, .framer-bwrSz .framer-50hyn6 > :last-child, .framer-bwrSz .framer-vnyll0 > :last-child, .framer-bwrSz .framer-25gri7 > :last-child, .framer-bwrSz .framer-hwtf6s > :last-child, .framer-bwrSz .framer-60cnpp > :last-child, .framer-bwrSz .framer-183m5pi > :last-child, .framer-bwrSz .framer-1f3wgf2 > :last-child, .framer-bwrSz .framer-1w1zsst > :last-child, .framer-bwrSz .framer-b86aa8 > :last-child, .framer-bwrSz .framer-1c3pyx > :last-child, .framer-bwrSz .framer-h9vykg > :last-child, .framer-bwrSz .framer-17a5cg9 > :last-child, .framer-bwrSz .framer-1w1h1d5 > :last-child, .framer-bwrSz .framer-15usenh > :last-child, .framer-bwrSz .framer-d7c0j2 > :last-child, .framer-bwrSz .framer-1t39tug > :last-child, .framer-bwrSz .framer-8tnktt > :last-child, .framer-bwrSz .framer-1warloq > :last-child, .framer-bwrSz .framer-155n5s9 > :last-child, .framer-bwrSz .framer-1b2pqcd > :last-child, .framer-bwrSz .framer-zkhf0k > :last-child, .framer-bwrSz .framer-1chths4 > :last-child, .framer-bwrSz .framer-1ni9oz1 > :last-child, .framer-bwrSz .framer-1x5m0k > :last-child, .framer-bwrSz .framer-vqn9b8 > :last-child, .framer-bwrSz .framer-5vluwg > :last-child, .framer-bwrSz .framer-vvd4up > :last-child, .framer-bwrSz .framer-h6n2mt > :last-child, .framer-bwrSz .framer-15lv7z6 > :last-child, .framer-bwrSz .framer-1kya76u > :last-child, .framer-bwrSz .framer-l61in2 > :last-child, .framer-bwrSz .framer-1n63pwe > :last-child, .framer-bwrSz .framer-1npybh > :last-child { margin-bottom: 0px; } .framer-bwrSz .framer-hpp9yk > *, .framer-bwrSz .framer-1qbs5gg > *, .framer-bwrSz .framer-3y9ew > *, .framer-bwrSz .framer-eo4kss > *, .framer-bwrSz .framer-vnyll0 > *, .framer-bwrSz .framer-b86aa8 > *, .framer-bwrSz .framer-8tnktt > *, .framer-bwrSz .framer-1ni9oz1 > *, .framer-bwrSz .framer-15lv7z6 > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-bwrSz .framer-k1b8fo > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } .framer-bwrSz .framer-102ga7m > *, .framer-bwrSz .framer-1a7bnpp > *, .framer-bwrSz .framer-o61xom > *, .framer-bwrSz .framer-cgn6em > *, .framer-bwrSz .framer-1v8x8z0 > *, .framer-bwrSz .framer-1cfq3ln > *, .framer-bwrSz .framer-23kc2h > *, .framer-bwrSz .framer-189dmh4 > *, .framer-bwrSz .framer-1u9r77i > *, .framer-bwrSz .framer-1xf8lwr > *, .framer-bwrSz .framer-lehxwo > *, .framer-bwrSz .framer-cyw1he > *, .framer-bwrSz .framer-7adqy4 > *, .framer-bwrSz .framer-c7q33y > *, .framer-bwrSz .framer-60cnpp > *, .framer-bwrSz .framer-h9vykg > *, .framer-bwrSz .framer-1w1h1d5 > *, .framer-bwrSz .framer-155n5s9 > *, .framer-bwrSz .framer-1b2pqcd > *, .framer-bwrSz .framer-1chths4 > *, .framer-bwrSz .framer-1x5m0k > * { margin: 0px; margin-bottom: calc(20px / 2); margin-top: calc(20px / 2); } .framer-bwrSz .framer-105zu52 > *, .framer-bwrSz .framer-xb4jb6 > *, .framer-bwrSz .framer-12k299d > *, .framer-bwrSz .framer-1yzz4d9 > *, .framer-bwrSz .framer-yvc2vk > *, .framer-bwrSz .framer-roug7i > *, .framer-bwrSz .framer-gw7mhw > *, .framer-bwrSz .framer-1dmpvd0 > *, .framer-bwrSz .framer-1fbv8s3 > *, .framer-bwrSz .framer-g2ozvq > *, .framer-bwrSz .framer-1gj9oxt > *, .framer-bwrSz .framer-htioxk > *, .framer-bwrSz .framer-50hyn6 > *, .framer-bwrSz .framer-183m5pi > *, .framer-bwrSz .framer-1w1zsst > *, .framer-bwrSz .framer-15usenh > *, .framer-bwrSz .framer-1t39tug > *, .framer-bwrSz .framer-zkhf0k > *, .framer-bwrSz .framer-h6n2mt > *, .framer-bwrSz .framer-1n63pwe > * { margin: 0px; margin-bottom: calc(15px / 2); margin-top: calc(15px / 2); } .framer-bwrSz .framer-1aveioo > * { margin: 0px; margin-bottom: calc(8px / 2); margin-top: calc(8px / 2); } .framer-bwrSz .framer-keiasn > *, .framer-bwrSz .framer-meiijz > *, .framer-bwrSz .framer-n36iwb > *, .framer-bwrSz .framer-11cycif > *, .framer-bwrSz .framer-w116bq > *, .framer-bwrSz .framer-zevqis > *, .framer-bwrSz .framer-6q6g3z > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-bwrSz .framer-keiasn > :first-child, .framer-bwrSz .framer-n9r5oa > :first-child, .framer-bwrSz .framer-1bhyrvs > :first-child, .framer-bwrSz .framer-tsceuy > :first-child, .framer-bwrSz .framer-l0rin9 > :first-child, .framer-bwrSz .framer-1hccslf > :first-child, .framer-bwrSz .framer-meiijz > :first-child, .framer-bwrSz .framer-v70e8x > :first-child, .framer-bwrSz .framer-5wagu1 > :first-child, .framer-bwrSz .framer-1dhqdxr > :first-child, .framer-bwrSz .framer-pu3nx6 > :first-child, .framer-bwrSz .framer-1mctllf > :first-child, .framer-bwrSz .framer-i7cunx > :first-child, .framer-bwrSz .framer-1p7nyux > :first-child, .framer-bwrSz .framer-2282r8 > :first-child, .framer-bwrSz .framer-1x81t7y > :first-child, .framer-bwrSz .framer-vam3jb > :first-child, .framer-bwrSz .framer-1an2bh2 > :first-child, .framer-bwrSz .framer-1egoj48 > :first-child, .framer-bwrSz .framer-1gp14yd > :first-child, .framer-bwrSz .framer-n36iwb > :first-child, .framer-bwrSz .framer-1v1x0vi > :first-child, .framer-bwrSz .framer-pwh9ge > :first-child, .framer-bwrSz .framer-pbbt10 > :first-child, .framer-bwrSz .framer-11cycif > :first-child, .framer-bwrSz .framer-1pr2ono > :first-child, .framer-bwrSz .framer-flpdzv > :first-child, .framer-bwrSz .framer-1iavh7d > :first-child, .framer-bwrSz .framer-w116bq > :first-child, .framer-bwrSz .framer-14gvoa3 > :first-child, .framer-bwrSz .framer-1n2kvl9 > :first-child, .framer-bwrSz .framer-emgo27 > :first-child, .framer-bwrSz .framer-zevqis > :first-child, .framer-bwrSz .framer-1h2qgrh > :first-child, .framer-bwrSz .framer-3ym1i9 > :first-child, .framer-bwrSz .framer-61s6d4 > :first-child, .framer-bwrSz .framer-6q6g3z > :first-child, .framer-bwrSz .framer-9r6lps > :first-child, .framer-bwrSz .framer-1s4yz0u > :first-child, .framer-bwrSz .framer-1juj22g > :first-child, .framer-bwrSz .framer-1kfojif > :first-child { margin-left: 0px; } .framer-bwrSz .framer-keiasn > :last-child, .framer-bwrSz .framer-n9r5oa > :last-child, .framer-bwrSz .framer-1bhyrvs > :last-child, .framer-bwrSz .framer-tsceuy > :last-child, .framer-bwrSz .framer-l0rin9 > :last-child, .framer-bwrSz .framer-1hccslf > :last-child, .framer-bwrSz .framer-meiijz > :last-child, .framer-bwrSz .framer-v70e8x > :last-child, .framer-bwrSz .framer-5wagu1 > :last-child, .framer-bwrSz .framer-1dhqdxr > :last-child, .framer-bwrSz .framer-pu3nx6 > :last-child, .framer-bwrSz .framer-1mctllf > :last-child, .framer-bwrSz .framer-i7cunx > :last-child, .framer-bwrSz .framer-1p7nyux > :last-child, .framer-bwrSz .framer-2282r8 > :last-child, .framer-bwrSz .framer-1x81t7y > :last-child, .framer-bwrSz .framer-vam3jb > :last-child, .framer-bwrSz .framer-1an2bh2 > :last-child, .framer-bwrSz .framer-1egoj48 > :last-child, .framer-bwrSz .framer-1gp14yd > :last-child, .framer-bwrSz .framer-n36iwb > :last-child, .framer-bwrSz .framer-1v1x0vi > :last-child, .framer-bwrSz .framer-pwh9ge > :last-child, .framer-bwrSz .framer-pbbt10 > :last-child, .framer-bwrSz .framer-11cycif > :last-child, .framer-bwrSz .framer-1pr2ono > :last-child, .framer-bwrSz .framer-flpdzv > :last-child, .framer-bwrSz .framer-1iavh7d > :last-child, .framer-bwrSz .framer-w116bq > :last-child, .framer-bwrSz .framer-14gvoa3 > :last-child, .framer-bwrSz .framer-1n2kvl9 > :last-child, .framer-bwrSz .framer-emgo27 > :last-child, .framer-bwrSz .framer-zevqis > :last-child, .framer-bwrSz .framer-1h2qgrh > :last-child, .framer-bwrSz .framer-3ym1i9 > :last-child, .framer-bwrSz .framer-61s6d4 > :last-child, .framer-bwrSz .framer-6q6g3z > :last-child, .framer-bwrSz .framer-9r6lps > :last-child, .framer-bwrSz .framer-1s4yz0u > :last-child, .framer-bwrSz .framer-1juj22g > :last-child, .framer-bwrSz .framer-1kfojif > :last-child { margin-right: 0px; } .framer-bwrSz .framer-p6ih1t > *, .framer-bwrSz .framer-vr2df2 > *, .framer-bwrSz .framer-wcviag > *, .framer-bwrSz .framer-vvd4up > *, .framer-bwrSz .framer-1npybh > * { margin: 0px; margin-bottom: calc(25px / 2); margin-top: calc(25px / 2); } .framer-bwrSz .framer-zl4zl1 > * { margin: 0px; margin-bottom: calc(9px / 2); margin-top: calc(9px / 2); } .framer-bwrSz .framer-6mt53p > *, .framer-bwrSz .framer-5vluwg > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-bwrSz .framer-rrkx6d > * { margin: 0px; margin-bottom: calc(45px / 2); margin-top: calc(45px / 2); } .framer-bwrSz .framer-n9r5oa > *, .framer-bwrSz .framer-1bhyrvs > *, .framer-bwrSz .framer-tsceuy > *, .framer-bwrSz .framer-l0rin9 > *, .framer-bwrSz .framer-1hccslf > *, .framer-bwrSz .framer-v70e8x > *, .framer-bwrSz .framer-5wagu1 > *, .framer-bwrSz .framer-1dhqdxr > *, .framer-bwrSz .framer-pu3nx6 > *, .framer-bwrSz .framer-1mctllf > *, .framer-bwrSz .framer-i7cunx > *, .framer-bwrSz .framer-1p7nyux > *, .framer-bwrSz .framer-2282r8 > *, .framer-bwrSz .framer-vam3jb > *, .framer-bwrSz .framer-1an2bh2 > *, .framer-bwrSz .framer-1egoj48 > *, .framer-bwrSz .framer-1gp14yd > *, .framer-bwrSz .framer-1v1x0vi > *, .framer-bwrSz .framer-pwh9ge > *, .framer-bwrSz .framer-pbbt10 > *, .framer-bwrSz .framer-1pr2ono > *, .framer-bwrSz .framer-flpdzv > *, .framer-bwrSz .framer-1iavh7d > *, .framer-bwrSz .framer-14gvoa3 > *, .framer-bwrSz .framer-1n2kvl9 > *, .framer-bwrSz .framer-emgo27 > *, .framer-bwrSz .framer-1h2qgrh > *, .framer-bwrSz .framer-3ym1i9 > *, .framer-bwrSz .framer-61s6d4 > *, .framer-bwrSz .framer-9r6lps > *, .framer-bwrSz .framer-1s4yz0u > *, .framer-bwrSz .framer-1juj22g > *, .framer-bwrSz .framer-1kfojif > * { margin: 0px; margin-left: calc(5px / 2); margin-right: calc(5px / 2); } .framer-bwrSz .framer-1x81t7y > * { margin: 0px; margin-left: calc(15px / 2); margin-right: calc(15px / 2); } }}\",\"@media (min-width: 1700px) { .framer-bwrSz.framer-zpfzn2 { height: min-content; width: 1700px; } .framer-bwrSz .framer-105ty16 { height: 1480px; } .framer-bwrSz .framer-4aewp5 { bottom: -106px; right: -91px; top: -46px; width: 740px; } .framer-bwrSz .framer-1akfunj { left: unset; position: relative; top: unset; } .framer-bwrSz .framer-nliwgv { top: 20px; } .framer-bwrSz .framer-1xq8q6r { order: 0; } .framer-bwrSz.framer-dzve55-container { left: calc(49.35294117647061% - 936px / 2); top: 137px; } .framer-bwrSz .framer-105zu52 { order: 1; }}\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 23046\n * @framerIntrinsicWidth 1300\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]},\"tICWQLge2\":{\"layout\":[\"fixed\",\"auto\"]},\"jtC8vLgen\":{\"layout\":[\"fixed\",\"auto\"]},\"WSvcEG864\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n * @framerAcceptsLayoutTemplate true\n * @framerScrollSections {\"T5Cmf87uN\":{\"pattern\":\":T5Cmf87uN\",\"name\":\"heading-wrap\"},\"k8NijeHUy\":{\"pattern\":\":k8NijeHUy\",\"name\":\"video\"},\"GXA_8Db4S\":{\"pattern\":\":GXA_8Db4S\",\"name\":\"feature\"},\"iGKwrp9ZD\":{\"pattern\":\":iGKwrp9ZD\",\"name\":\"\"},\"HyRmPLoFc\":{\"pattern\":\":HyRmPLoFc\",\"name\":\"pricing \"},\"zRYYxdLw1\":{\"pattern\":\":zRYYxdLw1\",\"name\":\"faq\"}}\n * @framerResponsiveScreen\n */const FramerOMp430bgy=withCSS(Component,css,\"framer-bwrSz\");export default FramerOMp430bgy;FramerOMp430bgy.displayName=\"Page\";FramerOMp430bgy.defaultProps={height:23046,width:1300};addFonts(FramerOMp430bgy,[{explicitInter:true,fonts:[{family:\"Degular Text Bold\",source:\"custom\",url:\"https://framerusercontent.com/assets/kzxIE4WhTLg9tomWtvmg7Dsvklw.woff\"},{family:\"Degular Text Regular\",source:\"custom\",url:\"https://framerusercontent.com/assets/hRf9qqgFPbwFk0bTHXg4viCZjI.woff2\"},{family:\"Space Mono\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/spacemono/v15/i7dPIFZifjKcF5UAWdDRUEN2RFq7AwU.woff2\",weight:\"400\"},{family:\"Space Mono\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/spacemono/v15/i7dMIFZifjKcF5UAWdDRaPpZYFeQHwyVd3U.woff2\",weight:\"700\"}]},...NavigationFonts,...BannerButtonFonts,...CratorhqVideoFonts,...YouTubeFonts,...TickerFonts,...EmbedFonts,...FAQSectionFonts,...FooterSectionFonts,...getFontsFromSharedStyle(sharedStyle.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerOMp430bgy\",\"slots\":[],\"annotations\":{\"framerDisplayContentsDiv\":\"false\",\"framerIntrinsicWidth\":\"1300\",\"framerAcceptsLayoutTemplate\":\"true\",\"framerScrollSections\":\"{\\\"T5Cmf87uN\\\":{\\\"pattern\\\":\\\":T5Cmf87uN\\\",\\\"name\\\":\\\"heading-wrap\\\"},\\\"k8NijeHUy\\\":{\\\"pattern\\\":\\\":k8NijeHUy\\\",\\\"name\\\":\\\"video\\\"},\\\"GXA_8Db4S\\\":{\\\"pattern\\\":\\\":GXA_8Db4S\\\",\\\"name\\\":\\\"feature\\\"},\\\"iGKwrp9ZD\\\":{\\\"pattern\\\":\\\":iGKwrp9ZD\\\",\\\"name\\\":\\\"\\\"},\\\"HyRmPLoFc\\\":{\\\"pattern\\\":\\\":HyRmPLoFc\\\",\\\"name\\\":\\\"pricing \\\"},\\\"zRYYxdLw1\\\":{\\\"pattern\\\":\\\":zRYYxdLw1\\\",\\\"name\\\":\\\"faq\\\"}}\",\"framerImmutableVariables\":\"true\",\"framerComponentViewportWidth\":\"true\",\"framerContractVersion\":\"1\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"tICWQLge2\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"jtC8vLgen\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"WSvcEG864\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerResponsiveScreen\":\"\",\"framerIntrinsicHeight\":\"23046\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}"],
  "mappings": "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",
  "names": ["MAX_DUPLICATED_ITEMS", "directionTransformers", "offset", "supportsAcceleratedAnimations", "Ticker", "props", "slots", "gap", "padding", "paddingPerSide", "paddingTop", "paddingRight", "paddingBottom", "paddingLeft", "speed", "hoverFactor", "direction", "alignment", "sizingOptions", "fadeOptions", "style", "fadeContent", "overflow", "fadeWidth", "fadeInset", "fadeAlpha", "widthType", "heightType", "paddingValue", "isCanvas", "RenderTarget", "filteredSlots", "numChildren", "j", "hasChildren", "isHorizontal", "useMotionValue", "transformer", "transform", "useTransform", "parentRef", "pe", "childrenRef", "se", "W", "size", "setSize", "ye", "clonedChildren", "dupedChildren", "duplicateBy", "opacity", "measure", "te", "parentLength", "start", "childrenLength", "childrenStyles", "initialResize", "ue", "frame", "resize", "contentSize", "child", "index", "_child_props", "_child_props1", "_child_props2", "_child_props3", "ref", "p", "LayoutGroup", "q", "i", "childIndex", "_child_props4", "_child_props5", "animateToValue", "initialTime", "prevTime", "xOrY", "isHover", "isReducedMotion", "useReducedMotion", "listRef", "animationRef", "isInView", "useInView", "useAnimationFrame", "t", "delta", "wrap", "fadeDirection", "fadeWidthStart", "fadeWidthEnd", "fadeInsetStart", "clamp", "fadeInsetEnd", "fadeMask", "containerStyle", "u", "motion", "isValidNumber", "placeholderStyles", "emojiStyles", "titleStyles", "subtitleStyles", "addPropertyControls", "ControlType", "num", "min", "max", "value", "PlayOptions", "ThumbnailOptions", "ThumbnailFormat", "Youtube", "url", "play", "shouldMute", "thumbnail", "isRed", "onClick", "onMouseEnter", "onMouseLeave", "onMouseDown", "onMouseUp", "title", "props", "onCanvas", "useIsOnCanvas", "isAutoplay", "showThumbnail", "isPreloading", "preloadVideo", "le", "showVideo", "startVideo", "isHovered", "setHovered", "ye", "borderRadius", "useRadius", "hasBorderRadius", "p", "Instructions", "parsedURL", "parseVideoURL", "ErrorMessage", "videoId", "embedURL", "searchParams", "iframeProps", "u", "wrapperStyle", "videoStyle", "getThumbnailURL", "getWebPSupported", "PlayButton", "addPropertyControls", "ControlType", "borderRadiusControl", "defaultEvents", "defaultProps", "urlString", "getEmbedURL", "pathSegments", "res", "format", "useWebP", "pre", "ext", "_getWebPSupported", "window", "element", "emptyStateStyle", "centerTextStyle", "message", "containerStyles", "buttonStyle", "Embed", "type", "url", "html", "style", "p", "EmbedURL", "EmbedHTML", "Instructions", "addPropertyControls", "ControlType", "props", "getMinHeight", "emptyStateStyle", "centerTextStyle", "hasAutoHeight", "onCanvas", "useIsOnCanvas", "state", "setState", "ye", "ue", "isLastEffect", "load", "response", "isBlocked", "message", "error", "ErrorMessage", "LoadingIndicator", "iframeStyle", "getSandbox", "result", "ref", "pe", "iframeHeight", "setIframeHeight", "hasScript", "_ref_current", "iframeWindow", "handleMessage", "event", "data", "height", "window", "srcDoc", "currentStyle", "htmlStyle", "containerStyles", "Component", "IconInner", "Icon", "React", "props", "ref", "House_default", "Icon", "iconKeys", "moduleBaseUrl", "weightOptions", "lowercaseIconKeyPairs", "res", "key", "Icon", "props", "color", "selectByList", "iconSearch", "iconSelection", "onClick", "onMouseDown", "onMouseUp", "onMouseEnter", "onMouseLeave", "weight", "mirrored", "isMounted", "pe", "iconKey", "useIconSelection", "SelectedIcon", "setSelectedIcon", "ye", "House_default", "npm_react_18_2_exports", "importModule", "module", "ue", "emptyState", "RenderTarget", "p", "NullState", "motion", "addPropertyControls", "ControlType", "piece", "defaultEvents", "fontStore", "fonts", "css", "className", "PhosphorFonts", "getFonts", "Icon", "enabledGestures", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "transformTemplate1", "_", "t", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "height", "id", "link", "width", "props", "_humanReadableVariantMap_props_variant", "_ref", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "i9h0tMlqE", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "ref1", "pe", "isDisplayed", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "Link", "cx", "u", "RichText2", "ComponentViewportProvider", "css", "FramerILlMbfB4O", "withCSS", "ILlMbfB4O_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts", "YouTubeFonts", "getFonts", "Youtube", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "_humanReadableVariantMap_props_variant", "_ref", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onTaph1bqot", "args", "onTapt2d18k", "onTap1m3i9n5", "onTaprutlse", "ref1", "pe", "isDisplayed", "isDisplayed1", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "u", "cx", "ComponentViewportProvider", "Image2", "getLoadingLazyAtYPosition", "css", "FramerhVbytqJMx", "withCSS", "hVbytqJMx_default", "addPropertyControls", "ControlType", "addFonts", "VideoComponent2Fonts", "getFonts", "hVbytqJMx_default", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "click", "height", "id", "width", "props", "_humanReadableVariantMap_props_variant", "_ref", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "gsI_KvgAm", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onTapvo1v91", "args", "CycleVariantState", "onTap1njm6oe", "onTap14bk59a", "onTapbv5rcq", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "u", "cx", "ComponentViewportProvider", "RichText2", "Image2", "getLoadingLazyAtYPosition", "css", "Framerd3cR5vufm", "withCSS", "d3cR5vufm_default", "addPropertyControls", "ControlType", "addFonts", "fontStore", "fonts", "css", "className", "enabledGestures", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "height", "id", "link", "width", "props", "_humanReadableVariantMap_props_variant", "_ref", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "tmkFHmbIP", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "Link", "cx", "RichText2", "css", "FramerUc0SLSiZ7", "withCSS", "Uc0SLSiZ7_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts", "NavButtonFonts", "getFonts", "Uc0SLSiZ7_default", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "_humanReadableVariantMap_props_variant", "_ref", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "ref1", "pe", "isDisplayed", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "cx", "u", "Link", "Image2", "getLoadingLazyAtYPosition", "RichText2", "ComponentViewportProvider", "css", "FramerfoQIE3cD3", "withCSS", "foQIE3cD3_default", "addPropertyControls", "ControlType", "addFonts", "fontStore", "fonts", "css", "className", "fontStore", "fonts", "css", "className", "fontStore", "fonts", "css", "className", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "fAQAnswer", "fAQContent", "fAQQuestion", "height", "id", "width", "props", "_ref", "_ref1", "_ref2", "_humanReadableVariantMap_props_variant", "_ref3", "u", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "pW6hGUTQ7", "iS5cEE2Kk", "OEszT_6kN", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onTap1wu3u16", "args", "onTap1sne6o5", "onTap1txxu06", "onTappepuow", "onTap128b4yn", "onTapwfk224", "onTap1j9twzq", "onTap1jb0sw3", "ref1", "pe", "isDisplayed", "isDisplayed1", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "cx", "RichText2", "css", "FramerpbRtJ_R1i", "withCSS", "pbRtJ_R1i_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts", "FAQFonts", "getFonts", "pbRtJ_R1i_default", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "_humanReadableVariantMap_props_variant", "_ref", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "cx", "u", "RichText2", "ComponentViewportProvider", "css", "FramerHWDAZjt0B", "withCSS", "HWDAZjt0B_default", "addPropertyControls", "ControlType", "addFonts", "BannerButtonFonts", "getFonts", "ILlMbfB4O_default", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "transformTemplate1", "_", "t", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "_humanReadableVariantMap_props_variant", "_ref", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "u", "cx", "Image2", "getLoadingLazyAtYPosition", "RichText2", "ComponentViewportProvider", "css", "FramernFiJHpmb6", "withCSS", "nFiJHpmb6_default", "addPropertyControls", "ControlType", "addFonts", "fontStore", "fonts", "css", "className", "NavigationFonts", "getFonts", "foQIE3cD3_default", "ContainerWithFX", "withFX", "Container", "BannerButtonFonts", "ILlMbfB4O_default", "CratorhqVideoFonts", "d3cR5vufm_default", "YouTubeFonts", "Youtube", "TickerFonts", "Ticker", "ImageWithFX", "Image2", "EmbedFonts", "Embed", "FAQSectionFonts", "HWDAZjt0B_default", "FooterSectionFonts", "nFiJHpmb6_default", "breakpoints", "isBrowser", "serializationHash", "variantClassNames", "transition1", "animation", "transformTemplate1", "_", "t", "getContainer", "Overlay", "children", "blockDocumentScrolling", "enabled", "visible", "setVisible", "useOverlayState", "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", "activeVariantCallback", "delay", "useActiveVariantCallback", "gsI_KvgAm3bnx0g", "overlay", "loadMore", "args", "onTap3bnx0g", "scopingClassNames", "cx", "isDisplayed", "elementId", "useRouteElementId", "ref1", "elementId1", "ref2", "elementId2", "ref3", "elementId3", "ref4", "elementId4", "ref5", "elementId5", "ref6", "useCustomCursors", "GeneratedComponentContext", "u", "LayoutGroup", "motion", "ComponentViewportProvider", "PropertyOverrides2", "getLoadingLazyAtYPosition", "x", "RichText2", "l", "AnimatePresence", "Ga", "overlay1", "Link", "css", "FramerOMp430bgy", "withCSS", "OMp430bgy_default", "addFonts", "getFontsFromSharedStyle", "fonts", "__FramerMetadata__"]
}
