{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/NEd4VmDdsxM3StIUbddO/1de6WpgIbCrKkRcPfQcW/YouTube.js", "ssg:https://framerusercontent.com/modules/P5nVFgBGO4hfe1zBxew4/Y0gVJR98aQDaTw3zVsu3/r32UMfI4X.js"],
  "sourcesContent": ["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", "// Generated by Framer (013b13c)\nimport{jsx as _jsx,jsxs as _jsxs,Fragment as _Fragment}from\"react/jsx-runtime\";import{addFonts,ChildrenCanSuspend,ComponentViewportProvider,Container,cx,GeneratedComponentContext,getFonts,getFontsFromSharedStyle,getLoadingLazyAtYPosition,Image,Link,PathVariablesContext,PropertyOverrides,ResolveLinks,RichText,SVG,useActiveVariantCallback,useComponentViewport,useCustomCursors,useHydratedBreakpointVariants,useIsOnFramerCanvas,useLoadMorePaginatedQuery,useLocaleInfo,useOverlayState,useQueryData,useRouteElementId,useRouter,withCSS,withFX,withOptimizedAppearEffect}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{Youtube as YouTube}from\"https://framerusercontent.com/modules/NEd4VmDdsxM3StIUbddO/1de6WpgIbCrKkRcPfQcW/YouTube.js\";import{Youtube as YouTube1}from\"https://framerusercontent.com/modules/NEd4VmDdsxM3StIUbddO/bZxrMUxBPAhoXlARkK9C/YouTube.js\";import{Icon as Phosphor}from\"https://framerusercontent.com/modules/tYScH7LTqUtz5KUaUAYP/CAjjxbTJBxHwH1MagCef/Phosphor.js\";import Slideshow from\"https://framerusercontent.com/modules/zvkTOpMSuRzRhLzZZIwG/V6UPjHLBAvBWqyNKvY6M/SlideShow.js\";import Row from\"#framer/local/canvasComponent/aE4vmH7az/aE4vmH7az.js\";import Buttons from\"#framer/local/canvasComponent/Cfpfg2W_1/Cfpfg2W_1.js\";import CardTestimonial from\"#framer/local/canvasComponent/CKeBATpFg/CKeBATpFg.js\";import CheckoutOverlay from\"#framer/local/canvasComponent/h8GLDGdeM/h8GLDGdeM.js\";import BlackButtone from\"#framer/local/canvasComponent/hGOjUVukZ/hGOjUVukZ.js\";import NavigationBarPremium from\"#framer/local/canvasComponent/HYgYW39Wu/HYgYW39Wu.js\";import LoadMore5 from\"#framer/local/canvasComponent/LLZuVD5c3/LLZuVD5c3.js\";import FOOTER from\"#framer/local/canvasComponent/nOZjQz6d4/nOZjQz6d4.js\";import FeaturePills from\"#framer/local/canvasComponent/Q2v7PlggH/Q2v7PlggH.js\";import ViewCursor from\"#framer/local/canvasComponent/sNRj8KQg5/sNRj8KQg5.js\";import PriceTag from\"#framer/local/canvasComponent/vaIRnXhOi/vaIRnXhOi.js\";import Products from\"#framer/local/collection/SFX0Dqs7b/SFX0Dqs7b.js\";import*as sharedStyle1 from\"#framer/local/css/clG0h7arK/clG0h7arK.js\";import*as sharedStyle9 from\"#framer/local/css/G8zqkKYm4/G8zqkKYm4.js\";import*as sharedStyle4 from\"#framer/local/css/HnyHtk8qf/HnyHtk8qf.js\";import*as sharedStyle10 from\"#framer/local/css/igVSyEwNb/igVSyEwNb.js\";import*as sharedStyle11 from\"#framer/local/css/MvXRdIpXO/MvXRdIpXO.js\";import*as sharedStyle from\"#framer/local/css/Ohmd2vlMG/Ohmd2vlMG.js\";import*as sharedStyle3 from\"#framer/local/css/sHjMxyi5E/sHjMxyi5E.js\";import*as sharedStyle6 from\"#framer/local/css/sXc7rJlgK/sXc7rJlgK.js\";import*as sharedStyle2 from\"#framer/local/css/tZDGvdxd8/tZDGvdxd8.js\";import*as sharedStyle8 from\"#framer/local/css/UnYt6dMGd/UnYt6dMGd.js\";import*as sharedStyle7 from\"#framer/local/css/UXFOc2qSc/UXFOc2qSc.js\";import*as sharedStyle5 from\"#framer/local/css/wAUJYhCTZ/wAUJYhCTZ.js\";import metadataProvider from\"#framer/local/webPageMetadata/r32UMfI4X/r32UMfI4X.js\";const NavigationBarPremiumFonts=getFonts(NavigationBarPremium);const ContainerWithFX=withFX(Container);const MotionDivWithOptimizedAppearEffect=withOptimizedAppearEffect(motion.div);const RichTextWithOptimizedAppearEffect=withOptimizedAppearEffect(RichText);const BlackButtoneFonts=getFonts(BlackButtone);const ButtonsFonts=getFonts(Buttons);const PhosphorFonts=getFonts(Phosphor);const MotionDivWithFX=withFX(motion.div);const YouTubeFonts=getFonts(YouTube);const SlideshowFonts=getFonts(Slideshow);const MotionHeaderWithFX=withFX(motion.header);const FOOTERFonts=getFonts(FOOTER);const CardTestimonialFonts=getFonts(CardTestimonial);const ImageWithFX=withFX(Image);const YouTube1Fonts=getFonts(YouTube1);const CheckoutOverlayFonts=getFonts(CheckoutOverlay);const FeaturePillsFonts=getFonts(FeaturePills);const RowFonts=getFonts(Row);const PriceTagFonts=getFonts(PriceTag);const MotionAWithFX=withFX(motion.a);const LoadMore5Fonts=getFonts(LoadMore5);const ViewCursorFonts=getFonts(ViewCursor);const breakpoints={HfFVj7Qh2:\"(min-width: 1200px)\",ko4hRxKW6:\"(max-width: 809px)\",w53wCcwGU:\"(min-width: 810px) and (max-width: 1199px)\"};const isBrowser=()=>typeof document!==\"undefined\";const serializationHash=\"framer-NgGR6\";const variantClassNames={HfFVj7Qh2:\"framer-v-qw8wk6\",ko4hRxKW6:\"framer-v-1y80szd\",w53wCcwGU:\"framer-v-wnl5lg\"};const transition1={damping:30,delay:0,mass:1,stiffness:400,type:\"spring\"};const animation={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:0,y:-69};const transition2={delay:1,duration:1,ease:[.44,0,.56,1],type:\"tween\"};const animation1={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition2,x:0,y:0};const animation2={opacity:.001,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0};const transition3={damping:30,delay:.4,mass:1,stiffness:400,type:\"spring\"};const animation3={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition3,x:0,y:0};const animation4={opacity:.001,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:-150,y:0};const transition4={damping:30,delay:.5,mass:1,stiffness:400,type:\"spring\"};const animation5={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition4,x:0,y:0};const animation6={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:0,y:50};const transition5={damping:60,delay:.2,mass:1,stiffness:300,type:\"spring\"};const animation7={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition5,x:0,y:50};const animation8={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:0,y:150};const animation9={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition1,x:0,y:150};const addImageAlt=(image,alt)=>{if(!image||typeof image!==\"object\"){return;}return{...image,alt};};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 transformTemplate1=(_,t)=>`translate(-50%, -50%) ${t}`;const animation10={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:.97,skewX:0,skewY:0,transition:transition1};const toResponsiveImage=value=>{if(typeof value===\"object\"&&value!==null&&typeof value.src===\"string\"){return value;}return typeof value===\"string\"?{src:value}:undefined;};const loaderVariants=(repeaterState,variants,currentVariant)=>{if(repeaterState.currentPage>=repeaterState.totalPages)return variants.disabled??currentVariant;if(repeaterState.isLoading)return variants.loading??currentVariant;return currentVariant;};const QueryData=({query,pageSize,children})=>{const{paginatedQuery,paginationInfo,loadMore}=useLoadMorePaginatedQuery(query,pageSize,\"fV6DIsWDr\");const data=useQueryData(paginatedQuery);return children(data,paginationInfo,loadMore);};const HTMLStyle=({value})=>{const onCanvas=useIsOnFramerCanvas();if(onCanvas)return null;return /*#__PURE__*/_jsx(\"style\",{dangerouslySetInnerHTML:{__html:value},\"data-framer-html-style\":\"\"});};const humanReadableVariantMap={Desktop:\"HfFVj7Qh2\",Phone:\"ko4hRxKW6\",Tablet:\"w53wCcwGU\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"HfFVj7Qh2\"};};const transition6={damping:22,delay:0,mass:.3,stiffness:396,type:\"spring\"};const cursor={component:ViewCursor,transition:transition6,variant:\"iKty1g97s\"};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,of3ofpChffV6DIsWDr,lSX4KVUBlfV6DIsWDr,kJmlKOMF8fV6DIsWDr,HvGMvLAS4fV6DIsWDr,M2_RVR9oQfV6DIsWDr,idfV6DIsWDr,...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 S8x78ZPL23bnx0g=({overlay,loadMore})=>activeVariantCallback(async(...args)=>{overlay.toggle();});const DURvSA_Q81wnntms=({overlay,loadMore})=>activeVariantCallback(async(...args)=>{overlay.hide();});const Wld3NDzSj1b86s49=({overlay,loadMore})=>activeVariantCallback(async(...args)=>{loadMore();});const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className,sharedStyle2.className,sharedStyle3.className,sharedStyle4.className,sharedStyle5.className,sharedStyle6.className,sharedStyle7.className,sharedStyle8.className,sharedStyle9.className,sharedStyle10.className,sharedStyle11.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const router=useRouter();const elementId=useRouteElementId(\"p5fFvkI2C\");const ref1=React.useRef(null);const elementId1=useRouteElementId(\"D831QGSfK\");const ref2=React.useRef(null);const elementId2=useRouteElementId(\"VeGOkGdd_\");const ref3=React.useRef(null);const elementId3=useRouteElementId(\"qmswgea4r\");const ref4=React.useRef(null);const elementId4=useRouteElementId(\"llrG4e6wF\");const ref5=React.useRef(null);const isDisplayed=()=>{if(!isBrowser())return true;if(baseVariant===\"ko4hRxKW6\")return true;return false;};const isDisplayed1=()=>{if(!isBrowser())return true;if(baseVariant===\"ko4hRxKW6\")return false;return true;};useCustomCursors({\"1iubjob\":cursor});return /*#__PURE__*/_jsx(GeneratedComponentContext.Provider,{value:{primaryVariantId:\"HfFVj7Qh2\",variantClassNames},children:/*#__PURE__*/_jsxs(LayoutGroup,{id:layoutId??defaultLayoutId,children:[/*#__PURE__*/_jsx(HTMLStyle,{value:\"html body { background: var(--token-cf452b9e-a6a8-44b5-a205-de3324b8b22a, rgb(247, 247, 247)); }\"}),/*#__PURE__*/_jsxs(motion.div,{...restProps,className:cx(scopingClassNames,\"framer-qw8wk6\",className),ref:refBinding,style:{...style},children:[/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{hash:\":llrG4e6wF\",webPageId:\"r32UMfI4X\"},implicitPathVariables:undefined},{href:{hash:\":D831QGSfK\",webPageId:\"r32UMfI4X\"},implicitPathVariables:undefined},{href:{hash:\":VeGOkGdd_\",webPageId:\"r32UMfI4X\"},implicitPathVariables:undefined},{href:{hash:\":p5fFvkI2C\",webPageId:\"r32UMfI4X\"},implicitPathVariables:undefined},{href:{hash:\":llrG4e6wF\",webPageId:\"r32UMfI4X\"},implicitPathVariables:undefined},{href:{hash:\":D831QGSfK\",webPageId:\"r32UMfI4X\"},implicitPathVariables:undefined},{href:{hash:\":VeGOkGdd_\",webPageId:\"r32UMfI4X\"},implicitPathVariables:undefined},{href:{hash:\":p5fFvkI2C\",webPageId:\"r32UMfI4X\"},implicitPathVariables:undefined},{href:{hash:\":llrG4e6wF\",webPageId:\"r32UMfI4X\"},implicitPathVariables:undefined},{href:{hash:\":D831QGSfK\",webPageId:\"r32UMfI4X\"},implicitPathVariables:undefined},{href:{hash:\":VeGOkGdd_\",webPageId:\"r32UMfI4X\"},implicitPathVariables:undefined},{href:{hash:\":p5fFvkI2C\",webPageId:\"r32UMfI4X\"},implicitPathVariables:undefined}],children:resolvedLinks=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:64,width:componentViewport?.width||\"100vw\",y:0,children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:false,__framer__scrollDirection:{direction:\"down\",target:animation},__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1gxo2sw-container\",layoutScroll:true,nodeId:\"yAZTp29Vv\",rendersWithMotion:true,scopeId:\"r32UMfI4X\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ko4hRxKW6:{IhXs51q61:resolvedLinks[11],TlDEmw6Yy:resolvedLinks[10],variant:\"m7dgB_0bq\",wyKtURBe8:resolvedLinks[9],y45dAUzIj:resolvedLinks[8]},w53wCcwGU:{IhXs51q61:resolvedLinks[7],TlDEmw6Yy:resolvedLinks[6],wyKtURBe8:resolvedLinks[5],y45dAUzIj:resolvedLinks[4]}},children:/*#__PURE__*/_jsx(NavigationBarPremium,{height:\"100%\",HQdM2NJfs:\"Get a copy\",id:\"yAZTp29Vv\",IhXs51q61:resolvedLinks[3],layoutId:\"yAZTp29Vv\",style:{width:\"100%\"},TlDEmw6Yy:resolvedLinks[2],variant:\"Kac__9uzm\",width:\"100%\",wyKtURBe8:resolvedLinks[1],y45dAUzIj:resolvedLinks[0]})})})})}),/*#__PURE__*/_jsxs(\"header\",{className:\"framer-kliehl\",\"data-framer-name\":\"Header\",children:[/*#__PURE__*/_jsxs(MotionDivWithOptimizedAppearEffect,{animate:animation1,className:\"framer-oso0u6\",\"data-framer-appear-id\":\"oso0u6\",initial:animation2,optimized:true,children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ko4hRxKW6:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+59+40+0+0),pixelHeight:566,pixelWidth:566,positionX:\"center\",positionY:\"center\",sizes:\"50px\",src:\"https://framerusercontent.com/images/QDVvMw5wxGp1wOu4mfU8prW1nx0.png\",srcSet:\"https://framerusercontent.com/images/QDVvMw5wxGp1wOu4mfU8prW1nx0.png?scale-down-to=512 512w,https://framerusercontent.com/images/QDVvMw5wxGp1wOu4mfU8prW1nx0.png 566w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",pixelHeight:566,pixelWidth:566,positionX:\"center\",positionY:\"center\",sizes:\"86px\",src:\"https://framerusercontent.com/images/QDVvMw5wxGp1wOu4mfU8prW1nx0.png\",srcSet:\"https://framerusercontent.com/images/QDVvMw5wxGp1wOu4mfU8prW1nx0.png?scale-down-to=512 512w,https://framerusercontent.com/images/QDVvMw5wxGp1wOu4mfU8prW1nx0.png 566w\"},className:\"framer-1696n9t\"})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ko4hRxKW6:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:209,intrinsicWidth:260,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+59+40+0+2),pixelHeight:209,pixelWidth:260,src:\"https://framerusercontent.com/images/6L8guATfR2EbVsE7LhzW5H2otyw.svg\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:209,intrinsicWidth:260,pixelHeight:209,pixelWidth:260,src:\"https://framerusercontent.com/images/6L8guATfR2EbVsE7LhzW5H2otyw.svg\"},className:\"framer-lk1g2g\",\"data-framer-name\":\"KashFloo_Materials_1080x720_1\"})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-xk8b9y\",children:[/*#__PURE__*/_jsx(RichTextWithOptimizedAppearEffect,{__fromCanvasComponent:true,animate:animation3,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{className:\"framer-styles-preset-l6yyz0\",\"data-styles-preset\":\"Ohmd2vlMG\",style:{\"--framer-text-alignment\":\"center\"},children:\"Money, Tracked. Goals, Met.\"})}),className:\"framer-xlxlnl\",\"data-framer-appear-id\":\"xlxlnl\",fonts:[\"Inter\"],initial:animation4,optimized:true,style:{transformPerspective:1200},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichTextWithOptimizedAppearEffect,{__fromCanvasComponent:true,animate:animation3,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-1q1wiwb\",\"data-styles-preset\":\"clG0h7arK\",style:{\"--framer-text-alignment\":\"center\"},children:\"A smarter way to track your cashflow, recurring transactions, and goals. All in one sleek Notion setup.\"})}),className:\"framer-130rk6e\",\"data-framer-appear-id\":\"130rk6e\",fonts:[\"Inter\"],initial:animation4,optimized:true,style:{transformPerspective:1200},verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(MotionDivWithOptimizedAppearEffect,{animate:animation5,className:\"framer-1j6pdi8\",\"data-framer-appear-id\":\"1j6pdi8\",\"data-framer-name\":\"Buttons Stack\",initial:animation4,optimized:true,style:{transformPerspective:1200},children:[/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{hash:\":VeGOkGdd_\",webPageId:\"r32UMfI4X\"},implicitPathVariables:undefined},{href:{hash:\":VeGOkGdd_\",webPageId:\"r32UMfI4X\"},implicitPathVariables:undefined},{href:{hash:\":VeGOkGdd_\",webPageId:\"r32UMfI4X\"},implicitPathVariables:undefined}],children:resolvedLinks1=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ko4hRxKW6:{height:50,y:(componentViewport?.y||0)+0+59+40+274+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:45,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1su93o6-container\",nodeId:\"Ff8YDRHAM\",scopeId:\"r32UMfI4X\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ko4hRxKW6:{EaBmMpPr3:resolvedLinks1[2]},w53wCcwGU:{EaBmMpPr3:resolvedLinks1[1]}},children:/*#__PURE__*/_jsx(BlackButtone,{EaBmMpPr3:resolvedLinks1[0],height:\"100%\",id:\"Ff8YDRHAM\",layoutId:\"Ff8YDRHAM\",mZ_FC3eH3:\"Watch Demo\",style:{height:\"100%\"},width:\"100%\"})})})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{hash:\":llrG4e6wF\",webPageId:\"r32UMfI4X\"},implicitPathVariables:undefined},{href:{hash:\":llrG4e6wF\",webPageId:\"r32UMfI4X\"},implicitPathVariables:undefined},{href:{hash:\":llrG4e6wF\",webPageId:\"r32UMfI4X\"},implicitPathVariables:undefined}],children:resolvedLinks2=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ko4hRxKW6:{y:(componentViewport?.y||0)+0+59+40+274+0+68}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:45,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1glbqvo-container\",nodeId:\"ut7FYGSIx\",scopeId:\"r32UMfI4X\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ko4hRxKW6:{YI6PUBvQH:resolvedLinks2[2]},w53wCcwGU:{YI6PUBvQH:resolvedLinks2[1]}},children:/*#__PURE__*/_jsx(Buttons,{d3rKsrWsN:\"Get access now\",GiqVJFXfJ:\"rgb(0, 0, 0)\",height:\"100%\",id:\"ut7FYGSIx\",layoutId:\"ut7FYGSIx\",style:{height:\"100%\"},u5xM7xc5A:\"ChevronRight\",variant:\"kx1CNnOFU\",width:\"100%\",YI6PUBvQH:resolvedLinks2[0]})})})})})})]}),/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition5},__framer__animateOnce:true,__framer__enter:animation6,__framer__exit:animation7,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-13j5iqj\",\"data-framer-name\":\"Avatar Component\",style:{transformPerspective:1200},children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-6uj306\",\"data-framer-name\":\"Avatar\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ko4hRxKW6:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+59+40+422+0+0+0),pixelHeight:2e3,pixelWidth:2e3,sizes:\"32px\",src:\"https://framerusercontent.com/images/ojun9SfS4K29iMKjhUt5D6yG6Q.png\",srcSet:\"https://framerusercontent.com/images/ojun9SfS4K29iMKjhUt5D6yG6Q.png?scale-down-to=512 512w,https://framerusercontent.com/images/ojun9SfS4K29iMKjhUt5D6yG6Q.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/ojun9SfS4K29iMKjhUt5D6yG6Q.png 2000w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:2e3,pixelWidth:2e3,sizes:\"32px\",src:\"https://framerusercontent.com/images/ojun9SfS4K29iMKjhUt5D6yG6Q.png\",srcSet:\"https://framerusercontent.com/images/ojun9SfS4K29iMKjhUt5D6yG6Q.png?scale-down-to=512 512w,https://framerusercontent.com/images/ojun9SfS4K29iMKjhUt5D6yG6Q.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/ojun9SfS4K29iMKjhUt5D6yG6Q.png 2000w\"},className:\"framer-vjcs76\",\"data-border\":true,\"data-framer-name\":\"Avatar / Image-32\"})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ko4hRxKW6:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+59+40+422+0+0+0),pixelHeight:81,pixelWidth:88,src:\"https://framerusercontent.com/images/Qhx3tcOYeSdYaQ9ZnyaF2mkc.png\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:81,pixelWidth:88,src:\"https://framerusercontent.com/images/Qhx3tcOYeSdYaQ9ZnyaF2mkc.png\"},className:\"framer-3h9kzn\",\"data-framer-name\":\"Avatar / Image-32\"})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ko4hRxKW6:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+59+40+422+0+0+0),pixelHeight:1200,pixelWidth:1200,sizes:\"32px\",src:\"https://framerusercontent.com/images/trEqLhduB31MN6FuFXSXyqngc.gif\",srcSet:\"https://framerusercontent.com/images/trEqLhduB31MN6FuFXSXyqngc.gif?scale-down-to=512 512w,https://framerusercontent.com/images/trEqLhduB31MN6FuFXSXyqngc.gif?scale-down-to=1024 1024w,https://framerusercontent.com/images/trEqLhduB31MN6FuFXSXyqngc.gif 1200w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:1200,pixelWidth:1200,sizes:\"32px\",src:\"https://framerusercontent.com/images/trEqLhduB31MN6FuFXSXyqngc.gif\",srcSet:\"https://framerusercontent.com/images/trEqLhduB31MN6FuFXSXyqngc.gif?scale-down-to=512 512w,https://framerusercontent.com/images/trEqLhduB31MN6FuFXSXyqngc.gif?scale-down-to=1024 1024w,https://framerusercontent.com/images/trEqLhduB31MN6FuFXSXyqngc.gif 1200w\"},className:\"framer-1n7kh8y\",\"data-border\":true,\"data-framer-name\":\"Avatar / Image-32\"})})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-4gtask\",\"data-framer-name\":\"Avatar Content\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1b6qspf\",\"data-framer-name\":\"Star\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-3dmzsy\",\"data-framer-name\":\"Star\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-14ppwd9-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"fcakEZpSv\",scopeId:\"r32UMfI4X\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"rgb(255, 183, 0)\",height:\"100%\",iconSearch:\"House\",iconSelection:\"Star\",id:\"fcakEZpSv\",layoutId:\"fcakEZpSv\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"fill\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-hitwmd-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"RUpthOEsB\",scopeId:\"r32UMfI4X\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"rgb(255, 183, 0)\",height:\"100%\",iconSearch:\"House\",iconSelection:\"Star\",id:\"RUpthOEsB\",layoutId:\"RUpthOEsB\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"fill\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-81hil7-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"bAeA8ivmi\",scopeId:\"r32UMfI4X\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"rgb(255, 183, 0)\",height:\"100%\",iconSearch:\"House\",iconSelection:\"Star\",id:\"bAeA8ivmi\",layoutId:\"bAeA8ivmi\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"fill\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-12uufv0-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"pNb3tMruf\",scopeId:\"r32UMfI4X\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"rgb(255, 183, 0)\",height:\"100%\",iconSearch:\"House\",iconSelection:\"Star\",id:\"pNb3tMruf\",layoutId:\"pNb3tMruf\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"fill\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1a6fxi7-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"arNAyHamI\",scopeId:\"r32UMfI4X\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"rgb(255, 183, 0)\",height:\"100%\",iconSearch:\"House\",iconSelection:\"Star\",id:\"arNAyHamI\",layoutId:\"arNAyHamI\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"fill\",width:\"100%\"})})})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1yx30xy\",\"data-styles-preset\":\"tZDGvdxd8\",style:{\"--framer-text-color\":\"var(--token-d77ca8e8-a5ba-4970-9073-ad4568667c81, rgb(84, 84, 84))\"},children:\"5.0 on review\"})}),className:\"framer-ovawtd\",\"data-framer-name\":\"4.7 on review\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})})]}),/*#__PURE__*/_jsx(MotionHeaderWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation8,__framer__exit:animation9,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-f9jo1k\",\"data-framer-name\":\"SHOWCASE\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-spfuum-container\",isModuleExternal:true,nodeId:\"Nks3_y9EE\",scopeId:\"r32UMfI4X\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ko4hRxKW6:{arrowOptions:{arrowFill:\"rgba(0, 0, 0, 0.2)\",arrowGap:10,arrowPadding:20,arrowPaddingBottom:0,arrowPaddingLeft:0,arrowPaddingRight:0,arrowPaddingTop:0,arrowPosition:\"auto\",arrowRadius:40,arrowShouldFadeIn:false,arrowShouldSpace:true,arrowSize:24,showMouseControls:false},effectsOptions:{effectsHover:true,effectsOpacity:1,effectsPerspective:1200,effectsRotate:0,effectsScale:.95},gap:5,progressOptions:{dotsActiveOpacity:1,dotsBackground:\"rgba(0, 0, 0, 0)\",dotsBlur:0,dotsFill:\"var(--token-fe72c105-d895-4e74-a601-6f4ce865a0e7, rgb(34, 34, 34))\",dotsGap:10,dotsInset:-30,dotSize:4,dotsOpacity:.5,dotsPadding:10,dotsRadius:50,showProgressDots:true}}},children:/*#__PURE__*/_jsx(Slideshow,{alignment:\"center\",arrowOptions:{arrowFill:\"rgba(0, 0, 0, 0.68)\",arrowGap:10,arrowPadding:20,arrowPaddingBottom:0,arrowPaddingLeft:0,arrowPaddingRight:0,arrowPaddingTop:0,arrowPosition:\"auto\",arrowRadius:40,arrowShouldFadeIn:true,arrowShouldSpace:true,arrowSize:40,showMouseControls:true},autoPlayControl:true,borderRadius:0,direction:\"left\",dragControl:true,effectsOptions:{effectsHover:false,effectsOpacity:1,effectsPerspective:1200,effectsRotate:0,effectsScale:.95},fadeOptions:{fadeAlpha:0,fadeContent:false,fadeInset:0,fadeWidth:25,overflow:true},gap:21,height:\"100%\",id:\"Nks3_y9EE\",intervalControl:2,itemAmount:1,layoutId:\"Nks3_y9EE\",padding:0,paddingBottom:0,paddingLeft:0,paddingPerSide:false,paddingRight:0,paddingTop:0,progressOptions:{dotsActiveOpacity:1,dotsBackground:\"rgba(0, 0, 0, 0.2)\",dotsBlur:0,dotsFill:\"rgb(255, 255, 255)\",dotsGap:10,dotsInset:10,dotSize:10,dotsOpacity:.5,dotsPadding:10,dotsRadius:50,showProgressDots:false},slots:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1800,intrinsicWidth:2700,pixelHeight:1198,pixelWidth:1797,sizes:\"1260px\",src:\"https://framerusercontent.com/images/Z914PDr2s6nnpTV1V44SWNTKh6s.png\",srcSet:\"https://framerusercontent.com/images/Z914PDr2s6nnpTV1V44SWNTKh6s.png?scale-down-to=512 512w,https://framerusercontent.com/images/Z914PDr2s6nnpTV1V44SWNTKh6s.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/Z914PDr2s6nnpTV1V44SWNTKh6s.png 1797w\"},className:\"framer-ufcr94\",\"data-border\":true,\"data-framer-name\":\"YouTube Video\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-cdxow8-container\",inComponentSlot:true,isModuleExternal:true,nodeId:\"IrOzFkJyi\",rendersWithMotion:true,scopeId:\"r32UMfI4X\",children:/*#__PURE__*/_jsx(YouTube,{borderRadius:0,bottomLeftRadius:0,bottomRightRadius:0,height:\"100%\",id:\"IrOzFkJyi\",isMixedBorderRadius:false,isRed:true,layoutId:\"IrOzFkJyi\",play:\"On\",shouldMute:true,style:{height:\"100%\",width:\"100%\"},thumbnail:\"Medium Quality\",topLeftRadius:0,topRightRadius:0,url:\"https://youtu.be/Mvbt-Gib0hE\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1800,intrinsicWidth:2700,pixelHeight:1198,pixelWidth:1797,sizes:\"984px\",src:\"https://framerusercontent.com/images/E9i32zJWk5gtbRio3Qn8HiGZNXY.png\",srcSet:\"https://framerusercontent.com/images/E9i32zJWk5gtbRio3Qn8HiGZNXY.png?scale-down-to=512 512w,https://framerusercontent.com/images/E9i32zJWk5gtbRio3Qn8HiGZNXY.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/E9i32zJWk5gtbRio3Qn8HiGZNXY.png 1797w\"},className:\"framer-1ojsch4\",\"data-border\":true,\"data-framer-name\":\"Image 1\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1800,intrinsicWidth:2700,pixelHeight:1198,pixelWidth:1797,sizes:\"984px\",src:\"https://framerusercontent.com/images/XWfY2LKpgjg3rIYkXlqRTJpd3P0.png\",srcSet:\"https://framerusercontent.com/images/XWfY2LKpgjg3rIYkXlqRTJpd3P0.png?scale-down-to=512 512w,https://framerusercontent.com/images/XWfY2LKpgjg3rIYkXlqRTJpd3P0.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/XWfY2LKpgjg3rIYkXlqRTJpd3P0.png 1797w\"},className:\"framer-1sk4gz0\",\"data-border\":true,\"data-framer-name\":\"Image 2\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1800,intrinsicWidth:2700,pixelHeight:1198,pixelWidth:1797,sizes:\"984px\",src:\"https://framerusercontent.com/images/Z914PDr2s6nnpTV1V44SWNTKh6s.png\",srcSet:\"https://framerusercontent.com/images/Z914PDr2s6nnpTV1V44SWNTKh6s.png?scale-down-to=512 512w,https://framerusercontent.com/images/Z914PDr2s6nnpTV1V44SWNTKh6s.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/Z914PDr2s6nnpTV1V44SWNTKh6s.png 1797w\"},className:\"framer-1mkw1fd\",\"data-border\":true,\"data-framer-name\":\"Image 3\"})],startFrom:0,style:{height:\"100%\",width:\"100%\"},transitionControl:{damping:40,delay:0,mass:1,stiffness:200,type:\"spring\"},width:\"100%\"})})})})})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ko4hRxKW6:{height:485,width:\"390px\",y:(componentViewport?.y||0)+0+13251}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:700,width:componentViewport?.width||\"100vw\",y:300,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1w23fch-container\",layoutScroll:true,nodeId:\"hgzk4NsZr\",scopeId:\"r32UMfI4X\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ko4hRxKW6:{style:{width:\"100%\"},variant:\"iI1MkFtB3\"}},children:/*#__PURE__*/_jsx(FOOTER,{height:\"100%\",id:\"hgzk4NsZr\",layoutId:\"hgzk4NsZr\",style:{height:\"100%\",width:\"100%\"},variant:\"iUEwek7FN\",width:\"100%\"})})})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-88uq8g\",\"data-framer-name\":\"Video Intro Section\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-cgsr62\",children:/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation8,__framer__exit:animation9,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1v5of39\",\"data-framer-name\":\"Content\",style:{transformPerspective:1200},children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-dtrywi\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1ib2xk\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-324438ed-bfca-4dbc-b4a7-050d681abe11, rgb(136, 136, 136))\"},children:\"Stop scratching your head wondering where your money goes.\"})}),className:\"framer-1kbyqbt\",fonts:[\"FS;Satoshi-bold\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-1vwqv0c\",\"data-styles-preset\":\"sHjMxyi5E\",style:{\"--framer-text-alignment\":\"center\"},children:/*#__PURE__*/_jsx(\"strong\",{children:\"Because your money deserves a plan and your goals deserve to be reached.\"})})}),className:\"framer-s3qfd2\",fonts:[\"Inter\",\"Inter-Bold\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-1q1wiwb\",\"data-styles-preset\":\"clG0h7arK\",style:{\"--framer-text-alignment\":\"center\"},children:\"Imagine a life where you\u2019re not stressing over finances. This plug-and-play system is your first step toward getting there.\"})}),className:\"framer-1gxykiw\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{hash:\":llrG4e6wF\",webPageId:\"r32UMfI4X\"},implicitPathVariables:undefined},{href:{hash:\":llrG4e6wF\",webPageId:\"r32UMfI4X\"},implicitPathVariables:undefined},{href:{hash:\":llrG4e6wF\",webPageId:\"r32UMfI4X\"},implicitPathVariables:undefined}],children:resolvedLinks3=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ko4hRxKW6:{y:(componentViewport?.y||0)+0+913.2+42+0+0+0+0+252}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:45,children:/*#__PURE__*/_jsx(Container,{className:\"framer-13bnr2z-container\",nodeId:\"bn8pRsr4f\",scopeId:\"r32UMfI4X\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ko4hRxKW6:{YI6PUBvQH:resolvedLinks3[2]},w53wCcwGU:{YI6PUBvQH:resolvedLinks3[1]}},children:/*#__PURE__*/_jsx(Buttons,{d3rKsrWsN:\"Let\u2019s Do This\",GiqVJFXfJ:\"rgb(0, 0, 0)\",height:\"100%\",id:\"bn8pRsr4f\",layoutId:\"bn8pRsr4f\",style:{height:\"100%\"},u5xM7xc5A:\"ChevronRight\",variant:\"kx1CNnOFU\",width:\"100%\",YI6PUBvQH:resolvedLinks3[0]})})})})})})]})})}),/*#__PURE__*/_jsx(\"section\",{className:\"framer-nujarz\",\"data-framer-name\":\"Review 1\",id:elementId,ref:ref1,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ko4hRxKW6:{background:undefined}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",backgroundSize:1.43,fit:\"tile\",pixelHeight:126,pixelWidth:126,positionX:\"left\",positionY:\"top\",src:\"https://framerusercontent.com/images/VfkEna8iRjS9ZbXeCG1MRu3r0w.svg\"},className:\"framer-8scjsd\",\"data-border\":true,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ko4hRxKW6:{width:`min(${componentViewport?.width||\"100vw\"} - 40px, 1200px)`,y:(componentViewport?.y||0)+0+1294.2+62+0+0+0},w53wCcwGU:{width:`calc(min(${componentViewport?.width||\"100vw\"} - 80px, 1200px) - 100px)`}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:347,width:\"732px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-dd3kso-container\",nodeId:\"AqQO9k15O\",scopeId:\"r32UMfI4X\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ko4hRxKW6:{variant:\"uh_ycFVUb\"}},children:/*#__PURE__*/_jsx(CardTestimonial,{height:\"100%\",id:\"AqQO9k15O\",layoutId:\"AqQO9k15O\",mjW3_JNZr:\"Data Scientist\",OrEnDZrSN:\"I\u2019ve been tracking my finances for over 8 years, switched between more than 5 apps, and I can confidently say this Notion template is the best fit for my needs so far. The onboarding process was super easy to follow, and almost everything I need is covered. For the price, this template is absolutely worth it. Highly recommended!\",style:{width:\"100%\"},THN17XOhF:\"Ikhwanul Muslimin\",variant:\"Z94ZkeDM2\",width:\"100%\",zonqMRqY8:addImageAlt({src:\"https://framerusercontent.com/images/Qhx3tcOYeSdYaQ9ZnyaF2mkc.png\"},\"\")})})})})})})})}),/*#__PURE__*/_jsxs(\"header\",{className:\"framer-oeacjw\",\"data-framer-name\":\"Features\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-121w0z2\",id:elementId1,ref:ref2,children:[/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation8,__framer__exit:animation9,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1tm9kyc\",\"data-framer-name\":\"Content\",style:{transformPerspective:1200},children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ko4hRxKW6:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-hac7y\",\"data-styles-preset\":\"HnyHtk8qf\",style:{\"--framer-text-alignment\":\"left\"},children:\"Cashflow Tracker\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-hac7y\",\"data-styles-preset\":\"HnyHtk8qf\",children:\"Cashflow Tracker\"})}),className:\"framer-ovj0jf\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ko4hRxKW6:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1869upd\",\"data-styles-preset\":\"wAUJYhCTZ\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-d77ca8e8-a5ba-4970-9073-ad4568667c81, rgb(84, 84, 84))\"},children:\"Ever wonder where your cash disappears to? Here, you'll see it all, like watching your money dance in slow motion.\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1869upd\",\"data-styles-preset\":\"wAUJYhCTZ\",style:{\"--framer-text-color\":\"var(--token-d77ca8e8-a5ba-4970-9073-ad4568667c81, rgb(84, 84, 84))\"},children:\"Ever wonder where your cash disappears to? Here, you'll see it all, like watching your money dance in slow motion.\"})}),className:\"framer-14le3mx\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ko4hRxKW6:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1869upd\",\"data-styles-preset\":\"wAUJYhCTZ\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-d77ca8e8-a5ba-4970-9073-ad4568667c81, rgb(84, 84, 84))\"},children:/*#__PURE__*/_jsx(Link,{href:{hash:\":llrG4e6wF\",webPageId:\"r32UMfI4X\"},motionChild:true,nodeId:\"vRHKz1hQm\",openInNewTab:false,scopeId:\"r32UMfI4X\",smoothScroll:true,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-o6c6wk\",\"data-styles-preset\":\"sXc7rJlgK\",children:\"Get KashFloo \u2192\"})})})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1869upd\",\"data-styles-preset\":\"wAUJYhCTZ\",style:{\"--framer-text-color\":\"var(--token-d77ca8e8-a5ba-4970-9073-ad4568667c81, rgb(84, 84, 84))\"},children:/*#__PURE__*/_jsx(Link,{href:{hash:\":llrG4e6wF\",webPageId:\"r32UMfI4X\"},motionChild:true,nodeId:\"vRHKz1hQm\",openInNewTab:false,scopeId:\"r32UMfI4X\",smoothScroll:true,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-o6c6wk\",\"data-styles-preset\":\"sXc7rJlgK\",children:\"Get KashFloo \u2192\"})})})}),className:\"framer-1j93a58\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ko4hRxKW6:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1703.2+36+0+0+0),pixelHeight:988,pixelWidth:1830,positionX:\"center\",positionY:\"center\",sizes:`min(${componentViewport?.width||\"100vw\"} - 40px, 1500px)`,src:\"https://framerusercontent.com/images/gqQOxtNynG1ddFT7zBaCWxtNIU.png\",srcSet:\"https://framerusercontent.com/images/gqQOxtNynG1ddFT7zBaCWxtNIU.png?scale-down-to=512 512w,https://framerusercontent.com/images/gqQOxtNynG1ddFT7zBaCWxtNIU.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/gqQOxtNynG1ddFT7zBaCWxtNIU.png 1830w\"}},w53wCcwGU:{background:{alt:\"\",fit:\"fit\",pixelHeight:988,pixelWidth:1830,positionX:\"center\",positionY:\"center\",sizes:`min(${componentViewport?.width||\"100vw\"} - 80px, 1500px)`,src:\"https://framerusercontent.com/images/gqQOxtNynG1ddFT7zBaCWxtNIU.png\",srcSet:\"https://framerusercontent.com/images/gqQOxtNynG1ddFT7zBaCWxtNIU.png?scale-down-to=512 512w,https://framerusercontent.com/images/gqQOxtNynG1ddFT7zBaCWxtNIU.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/gqQOxtNynG1ddFT7zBaCWxtNIU.png 1830w\"}}},children:/*#__PURE__*/_jsx(ImageWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation8,__framer__exit:animation9,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,background:{alt:\"\",fit:\"fit\",pixelHeight:988,pixelWidth:1830,positionX:\"center\",positionY:\"center\",sizes:\"734px\",src:\"https://framerusercontent.com/images/gqQOxtNynG1ddFT7zBaCWxtNIU.png\",srcSet:\"https://framerusercontent.com/images/gqQOxtNynG1ddFT7zBaCWxtNIU.png?scale-down-to=512 512w,https://framerusercontent.com/images/gqQOxtNynG1ddFT7zBaCWxtNIU.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/gqQOxtNynG1ddFT7zBaCWxtNIU.png 1830w\"},className:\"framer-v75iov\",style:{transformPerspective:1200}})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-6bvvjr\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ko4hRxKW6:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1703.2+36+724.8+0+0),pixelHeight:1010,pixelWidth:1121,positionX:\"center\",positionY:\"center\",sizes:`min(${componentViewport?.width||\"100vw\"} - 40px, 1200px)`,src:\"https://framerusercontent.com/images/rMVmG6ftQwrBeNkmG6QznGqb1A.png\",srcSet:\"https://framerusercontent.com/images/rMVmG6ftQwrBeNkmG6QznGqb1A.png?scale-down-to=512 512w,https://framerusercontent.com/images/rMVmG6ftQwrBeNkmG6QznGqb1A.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/rMVmG6ftQwrBeNkmG6QznGqb1A.png 1121w\"}},w53wCcwGU:{background:{alt:\"\",fit:\"fit\",pixelHeight:1010,pixelWidth:1121,positionX:\"center\",positionY:\"center\",sizes:`min(${componentViewport?.width||\"100vw\"} - 80px, 1200px)`,src:\"https://framerusercontent.com/images/rMVmG6ftQwrBeNkmG6QznGqb1A.png\",srcSet:\"https://framerusercontent.com/images/rMVmG6ftQwrBeNkmG6QznGqb1A.png?scale-down-to=512 512w,https://framerusercontent.com/images/rMVmG6ftQwrBeNkmG6QznGqb1A.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/rMVmG6ftQwrBeNkmG6QznGqb1A.png 1121w\"}}},children:/*#__PURE__*/_jsx(ImageWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation8,__framer__exit:animation9,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,background:{alt:\"\",fit:\"fit\",pixelHeight:1010,pixelWidth:1121,positionX:\"center\",positionY:\"center\",sizes:\"581px\",src:\"https://framerusercontent.com/images/rMVmG6ftQwrBeNkmG6QznGqb1A.png\",srcSet:\"https://framerusercontent.com/images/rMVmG6ftQwrBeNkmG6QznGqb1A.png?scale-down-to=512 512w,https://framerusercontent.com/images/rMVmG6ftQwrBeNkmG6QznGqb1A.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/rMVmG6ftQwrBeNkmG6QznGqb1A.png 1121w\"},className:\"framer-1tufa7w\",style:{transformPerspective:1200}})}),/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation8,__framer__exit:animation9,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1v4lmci\",\"data-framer-name\":\"Content\",style:{transformPerspective:1200},children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-hac7y\",\"data-styles-preset\":\"HnyHtk8qf\",children:\"Subscription Tracker\"})}),className:\"framer-1q1u3pj\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{className:\"framer-styles-preset-1869upd\",\"data-styles-preset\":\"wAUJYhCTZ\",style:{\"--framer-text-color\":\"var(--token-d77ca8e8-a5ba-4970-9073-ad4568667c81, rgb(84, 84, 84))\"},children:[/*#__PURE__*/_jsx(\"em\",{children:\"Tired of mystery charges? \"}),\"Add your subscriptions, set renewal dates, and let the system do the calculations. No more \u201CWait, I\u2019m still paying for that?\u201D moments.\"]})}),className:\"framer-khpah5\",fonts:[\"Inter\",\"Inter-Italic\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ko4hRxKW6:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1869upd\",\"data-styles-preset\":\"wAUJYhCTZ\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-d77ca8e8-a5ba-4970-9073-ad4568667c81, rgb(84, 84, 84))\"},children:/*#__PURE__*/_jsx(Link,{href:{hash:\":llrG4e6wF\",webPageId:\"r32UMfI4X\"},motionChild:true,nodeId:\"TPnckjbNo\",openInNewTab:false,scopeId:\"r32UMfI4X\",smoothScroll:true,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-o6c6wk\",\"data-styles-preset\":\"sXc7rJlgK\",children:\"Get KashFloo \u2192\"})})})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1869upd\",\"data-styles-preset\":\"wAUJYhCTZ\",style:{\"--framer-text-color\":\"var(--token-d77ca8e8-a5ba-4970-9073-ad4568667c81, rgb(84, 84, 84))\"},children:/*#__PURE__*/_jsx(Link,{href:{hash:\":llrG4e6wF\",webPageId:\"r32UMfI4X\"},motionChild:true,nodeId:\"TPnckjbNo\",openInNewTab:false,scopeId:\"r32UMfI4X\",smoothScroll:true,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-o6c6wk\",\"data-styles-preset\":\"sXc7rJlgK\",children:\"Get KashFloo \u2192\"})})})}),className:\"framer-pjh7l1\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-nj9o5y\",children:[/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation8,__framer__exit:animation9,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1rfukrp\",\"data-framer-name\":\"Content\",style:{transformPerspective:1200},children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-hac7y\",\"data-styles-preset\":\"HnyHtk8qf\",children:\"Accounts & Credit Cards\"})}),className:\"framer-jm1vni\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1869upd\",\"data-styles-preset\":\"wAUJYhCTZ\",style:{\"--framer-text-color\":\"var(--token-d77ca8e8-a5ba-4970-9073-ad4568667c81, rgb(84, 84, 84))\"},children:\"All your financial footprints in one spot, so you're never left guessing.\"})}),className:\"framer-zbpi77\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ko4hRxKW6:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1869upd\",\"data-styles-preset\":\"wAUJYhCTZ\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-d77ca8e8-a5ba-4970-9073-ad4568667c81, rgb(84, 84, 84))\"},children:/*#__PURE__*/_jsx(Link,{href:{hash:\":llrG4e6wF\",webPageId:\"r32UMfI4X\"},motionChild:true,nodeId:\"bWcFrirvp\",openInNewTab:false,scopeId:\"r32UMfI4X\",smoothScroll:true,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-o6c6wk\",\"data-styles-preset\":\"sXc7rJlgK\",children:\"Get KashFloo \u2192\"})})})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1869upd\",\"data-styles-preset\":\"wAUJYhCTZ\",style:{\"--framer-text-color\":\"var(--token-d77ca8e8-a5ba-4970-9073-ad4568667c81, rgb(84, 84, 84))\"},children:/*#__PURE__*/_jsx(Link,{href:{hash:\":llrG4e6wF\",webPageId:\"r32UMfI4X\"},motionChild:true,nodeId:\"bWcFrirvp\",openInNewTab:false,scopeId:\"r32UMfI4X\",smoothScroll:true,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-o6c6wk\",\"data-styles-preset\":\"sXc7rJlgK\",children:\"Get KashFloo \u2192\"})})})}),className:\"framer-1vi453y\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ko4hRxKW6:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1703.2+36+1570.6+0+0),pixelHeight:1398,pixelWidth:2519,positionX:\"center\",positionY:\"center\",sizes:`min(${componentViewport?.width||\"100vw\"} - 40px, 1200px)`,src:\"https://framerusercontent.com/images/ybBGkhQ5JCodILm1MHhLmGDQdPI.png\",srcSet:\"https://framerusercontent.com/images/ybBGkhQ5JCodILm1MHhLmGDQdPI.png?scale-down-to=512 512w,https://framerusercontent.com/images/ybBGkhQ5JCodILm1MHhLmGDQdPI.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/ybBGkhQ5JCodILm1MHhLmGDQdPI.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/ybBGkhQ5JCodILm1MHhLmGDQdPI.png 2519w\"}},w53wCcwGU:{background:{alt:\"\",fit:\"fit\",pixelHeight:1398,pixelWidth:2519,positionX:\"center\",positionY:\"center\",sizes:`min(${componentViewport?.width||\"100vw\"} - 80px, 1200px)`,src:\"https://framerusercontent.com/images/ybBGkhQ5JCodILm1MHhLmGDQdPI.png\",srcSet:\"https://framerusercontent.com/images/ybBGkhQ5JCodILm1MHhLmGDQdPI.png?scale-down-to=512 512w,https://framerusercontent.com/images/ybBGkhQ5JCodILm1MHhLmGDQdPI.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/ybBGkhQ5JCodILm1MHhLmGDQdPI.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/ybBGkhQ5JCodILm1MHhLmGDQdPI.png 2519w\"}}},children:/*#__PURE__*/_jsx(ImageWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation8,__framer__exit:animation9,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,background:{alt:\"\",fit:\"fit\",pixelHeight:1398,pixelWidth:2519,positionX:\"center\",positionY:\"center\",sizes:\"751px\",src:\"https://framerusercontent.com/images/ybBGkhQ5JCodILm1MHhLmGDQdPI.png\",srcSet:\"https://framerusercontent.com/images/ybBGkhQ5JCodILm1MHhLmGDQdPI.png?scale-down-to=512 512w,https://framerusercontent.com/images/ybBGkhQ5JCodILm1MHhLmGDQdPI.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/ybBGkhQ5JCodILm1MHhLmGDQdPI.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/ybBGkhQ5JCodILm1MHhLmGDQdPI.png 2519w\"},className:\"framer-lfqzmy\",style:{transformPerspective:1200}})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1lxq8m8\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ko4hRxKW6:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1703.2+36+2412.4+0+0),pixelHeight:1218,pixelWidth:1800,positionX:\"center\",positionY:\"center\",sizes:`min(${componentViewport?.width||\"100vw\"} - 40px, 1200px)`,src:\"https://framerusercontent.com/images/J8AEqdEqMj8FLLbGPiS6CqiLf1s.png\",srcSet:\"https://framerusercontent.com/images/J8AEqdEqMj8FLLbGPiS6CqiLf1s.png?scale-down-to=512 512w,https://framerusercontent.com/images/J8AEqdEqMj8FLLbGPiS6CqiLf1s.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/J8AEqdEqMj8FLLbGPiS6CqiLf1s.png 1800w\"}},w53wCcwGU:{background:{alt:\"\",fit:\"fit\",pixelHeight:1218,pixelWidth:1800,positionX:\"center\",positionY:\"center\",sizes:`min(${componentViewport?.width||\"100vw\"} - 80px, 1200px)`,src:\"https://framerusercontent.com/images/J8AEqdEqMj8FLLbGPiS6CqiLf1s.png\",srcSet:\"https://framerusercontent.com/images/J8AEqdEqMj8FLLbGPiS6CqiLf1s.png?scale-down-to=512 512w,https://framerusercontent.com/images/J8AEqdEqMj8FLLbGPiS6CqiLf1s.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/J8AEqdEqMj8FLLbGPiS6CqiLf1s.png 1800w\"}}},children:/*#__PURE__*/_jsx(ImageWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation8,__framer__exit:animation9,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,background:{alt:\"\",fit:\"fit\",pixelHeight:1218,pixelWidth:1800,positionX:\"center\",positionY:\"center\",sizes:\"667px\",src:\"https://framerusercontent.com/images/J8AEqdEqMj8FLLbGPiS6CqiLf1s.png\",srcSet:\"https://framerusercontent.com/images/J8AEqdEqMj8FLLbGPiS6CqiLf1s.png?scale-down-to=512 512w,https://framerusercontent.com/images/J8AEqdEqMj8FLLbGPiS6CqiLf1s.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/J8AEqdEqMj8FLLbGPiS6CqiLf1s.png 1800w\"},className:\"framer-o9utia\",style:{transformPerspective:1200}})}),/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation8,__framer__exit:animation9,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-18i07rf\",\"data-framer-name\":\"Content\",style:{transformPerspective:1200},children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-hac7y\",\"data-styles-preset\":\"HnyHtk8qf\",children:\"Wishlist & Goals Tracker\"})}),className:\"framer-19qtz4l\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1869upd\",\"data-styles-preset\":\"wAUJYhCTZ\",style:{\"--framer-text-color\":\"var(--token-d77ca8e8-a5ba-4970-9073-ad4568667c81, rgb(84, 84, 84))\"},children:\"Got dreams? Here's where you map them out, turn them into goals, and actually plan to achieve them.\"})}),className:\"framer-1h6c2af\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ko4hRxKW6:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1869upd\",\"data-styles-preset\":\"wAUJYhCTZ\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-d77ca8e8-a5ba-4970-9073-ad4568667c81, rgb(84, 84, 84))\"},children:/*#__PURE__*/_jsx(Link,{href:{hash:\":llrG4e6wF\",webPageId:\"r32UMfI4X\"},motionChild:true,nodeId:\"eyNsKinl2\",openInNewTab:false,scopeId:\"r32UMfI4X\",smoothScroll:true,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-o6c6wk\",\"data-styles-preset\":\"sXc7rJlgK\",children:\"Get KashFloo \u2192\"})})})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1869upd\",\"data-styles-preset\":\"wAUJYhCTZ\",style:{\"--framer-text-color\":\"var(--token-d77ca8e8-a5ba-4970-9073-ad4568667c81, rgb(84, 84, 84))\"},children:/*#__PURE__*/_jsx(Link,{href:{hash:\":llrG4e6wF\",webPageId:\"r32UMfI4X\"},motionChild:true,nodeId:\"eyNsKinl2\",openInNewTab:false,scopeId:\"r32UMfI4X\",smoothScroll:true,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-o6c6wk\",\"data-styles-preset\":\"sXc7rJlgK\",children:\"Get KashFloo \u2192\"})})})}),className:\"framer-lfqwci\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1lklvjh\",children:[/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation8,__framer__exit:animation9,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1kwvmnm\",\"data-framer-name\":\"Content\",style:{transformPerspective:1200},children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-hac7y\",\"data-styles-preset\":\"HnyHtk8qf\",children:\"Monthly Planned Budget\"})}),className:\"framer-13mkl2w\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1869upd\",\"data-styles-preset\":\"wAUJYhCTZ\",style:{\"--framer-text-color\":\"var(--token-d77ca8e8-a5ba-4970-9073-ad4568667c81, rgb(84, 84, 84))\"},children:\"ting that feels like planning a road trip, where you're in control of the stops.\"})}),className:\"framer-1qrj3j7\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ko4hRxKW6:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1869upd\",\"data-styles-preset\":\"wAUJYhCTZ\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-d77ca8e8-a5ba-4970-9073-ad4568667c81, rgb(84, 84, 84))\"},children:/*#__PURE__*/_jsx(Link,{href:{hash:\":llrG4e6wF\",webPageId:\"r32UMfI4X\"},motionChild:true,nodeId:\"eug4Je6Vl\",openInNewTab:false,scopeId:\"r32UMfI4X\",smoothScroll:true,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-o6c6wk\",\"data-styles-preset\":\"sXc7rJlgK\",children:\"Get KashFloo \u2192\"})})})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1869upd\",\"data-styles-preset\":\"wAUJYhCTZ\",style:{\"--framer-text-color\":\"var(--token-d77ca8e8-a5ba-4970-9073-ad4568667c81, rgb(84, 84, 84))\"},children:/*#__PURE__*/_jsx(Link,{href:{hash:\":llrG4e6wF\",webPageId:\"r32UMfI4X\"},motionChild:true,nodeId:\"eug4Je6Vl\",openInNewTab:false,scopeId:\"r32UMfI4X\",smoothScroll:true,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-o6c6wk\",\"data-styles-preset\":\"sXc7rJlgK\",children:\"Get KashFloo \u2192\"})})})}),className:\"framer-1svp3tf\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ko4hRxKW6:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1703.2+36+4945.8+0+0),pixelHeight:1522,pixelWidth:1495,positionX:\"center\",positionY:\"center\",sizes:`min(${componentViewport?.width||\"100vw\"} - 40px, 1200px)`,src:\"https://framerusercontent.com/images/sd7wAT0gMhn8bnH70lNoudS12vw.png\",srcSet:\"https://framerusercontent.com/images/sd7wAT0gMhn8bnH70lNoudS12vw.png?scale-down-to=1024 1005w,https://framerusercontent.com/images/sd7wAT0gMhn8bnH70lNoudS12vw.png 1495w\"}},w53wCcwGU:{background:{alt:\"\",fit:\"fill\",pixelHeight:1522,pixelWidth:1495,positionX:\"center\",positionY:\"center\",sizes:`min(${componentViewport?.width||\"100vw\"} - 80px, 1200px)`,src:\"https://framerusercontent.com/images/sd7wAT0gMhn8bnH70lNoudS12vw.png\",srcSet:\"https://framerusercontent.com/images/sd7wAT0gMhn8bnH70lNoudS12vw.png?scale-down-to=1024 1005w,https://framerusercontent.com/images/sd7wAT0gMhn8bnH70lNoudS12vw.png 1495w\"}}},children:/*#__PURE__*/_jsx(ImageWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation8,__framer__exit:animation9,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,background:{alt:\"\",fit:\"fill\",pixelHeight:1522,pixelWidth:1495,positionX:\"center\",positionY:\"center\",sizes:\"561px\",src:\"https://framerusercontent.com/images/sd7wAT0gMhn8bnH70lNoudS12vw.png\",srcSet:\"https://framerusercontent.com/images/sd7wAT0gMhn8bnH70lNoudS12vw.png?scale-down-to=1024 1005w,https://framerusercontent.com/images/sd7wAT0gMhn8bnH70lNoudS12vw.png 1495w\"},className:\"framer-hfcpnc\",style:{transformPerspective:1200}})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-dx4qvh\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ko4hRxKW6:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1703.2+36+4101+0+0),pixelHeight:1651,pixelWidth:2920,positionX:\"center\",positionY:\"center\",sizes:`min(${componentViewport?.width||\"100vw\"} - 40px, 1200px)`,src:\"https://framerusercontent.com/images/wJffKzLkQgx1yHh7avfs57AUAg.png\",srcSet:\"https://framerusercontent.com/images/wJffKzLkQgx1yHh7avfs57AUAg.png?scale-down-to=512 512w,https://framerusercontent.com/images/wJffKzLkQgx1yHh7avfs57AUAg.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/wJffKzLkQgx1yHh7avfs57AUAg.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/wJffKzLkQgx1yHh7avfs57AUAg.png 2920w\"}},w53wCcwGU:{background:{alt:\"\",fit:\"fit\",pixelHeight:1651,pixelWidth:2920,positionX:\"center\",positionY:\"center\",sizes:`min(${componentViewport?.width||\"100vw\"} - 80px, 1200px)`,src:\"https://framerusercontent.com/images/wJffKzLkQgx1yHh7avfs57AUAg.png\",srcSet:\"https://framerusercontent.com/images/wJffKzLkQgx1yHh7avfs57AUAg.png?scale-down-to=512 512w,https://framerusercontent.com/images/wJffKzLkQgx1yHh7avfs57AUAg.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/wJffKzLkQgx1yHh7avfs57AUAg.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/wJffKzLkQgx1yHh7avfs57AUAg.png 2920w\"}}},children:/*#__PURE__*/_jsx(ImageWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation8,__framer__exit:animation9,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,background:{alt:\"\",fit:\"fit\",pixelHeight:1651,pixelWidth:2920,positionX:\"center\",positionY:\"center\",sizes:\"678px\",src:\"https://framerusercontent.com/images/wJffKzLkQgx1yHh7avfs57AUAg.png\",srcSet:\"https://framerusercontent.com/images/wJffKzLkQgx1yHh7avfs57AUAg.png?scale-down-to=512 512w,https://framerusercontent.com/images/wJffKzLkQgx1yHh7avfs57AUAg.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/wJffKzLkQgx1yHh7avfs57AUAg.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/wJffKzLkQgx1yHh7avfs57AUAg.png 2920w\"},className:\"framer-m6wq2j\",style:{transformPerspective:1200}})}),/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation8,__framer__exit:animation9,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-fnh9rr\",\"data-framer-name\":\"Content\",style:{transformPerspective:1200},children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-hac7y\",\"data-styles-preset\":\"HnyHtk8qf\",children:\"Revenue Sources\"})}),className:\"framer-1yunlh0\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1869upd\",\"data-styles-preset\":\"wAUJYhCTZ\",style:{\"--framer-text-color\":\"var(--token-d77ca8e8-a5ba-4970-9073-ad4568667c81, rgb(84, 84, 84))\"},children:\"Whether it's your 9-5, your Etsy shop, or that freelance gig, keep tabs on every dollar that rolls in.\"})}),className:\"framer-c29cb6\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ko4hRxKW6:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1869upd\",\"data-styles-preset\":\"wAUJYhCTZ\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-d77ca8e8-a5ba-4970-9073-ad4568667c81, rgb(84, 84, 84))\"},children:/*#__PURE__*/_jsx(Link,{href:{hash:\":llrG4e6wF\",webPageId:\"r32UMfI4X\"},motionChild:true,nodeId:\"L2I_42XCL\",openInNewTab:false,scopeId:\"r32UMfI4X\",smoothScroll:true,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-o6c6wk\",\"data-styles-preset\":\"sXc7rJlgK\",children:\"Get KashFloo \u2192\"})})})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1869upd\",\"data-styles-preset\":\"wAUJYhCTZ\",style:{\"--framer-text-color\":\"var(--token-d77ca8e8-a5ba-4970-9073-ad4568667c81, rgb(84, 84, 84))\"},children:/*#__PURE__*/_jsx(Link,{href:{hash:\":llrG4e6wF\",webPageId:\"r32UMfI4X\"},motionChild:true,nodeId:\"L2I_42XCL\",openInNewTab:false,scopeId:\"r32UMfI4X\",smoothScroll:true,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-o6c6wk\",\"data-styles-preset\":\"sXc7rJlgK\",children:\"Get KashFloo \u2192\"})})})}),className:\"framer-1d4qwxg\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-twy73y\",children:[/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation8,__framer__exit:animation9,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-dze5gc\",\"data-framer-name\":\"Content\",style:{transformPerspective:1200},children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-hac7y\",\"data-styles-preset\":\"HnyHtk8qf\",children:\"Categorize Records & Budget\"})}),className:\"framer-v390xh\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1869upd\",\"data-styles-preset\":\"wAUJYhCTZ\",style:{\"--framer-text-color\":\"var(--token-d77ca8e8-a5ba-4970-9073-ad4568667c81, rgb(84, 84, 84))\"},children:\"Track every dollar with ease. Categorize your cash flow records, and set monthly budget thresholds to keep your spending in check. It\u2019s like giving your money a purpose\u2014and a place to be.\"})}),className:\"framer-1k7mqz7\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ko4hRxKW6:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1869upd\",\"data-styles-preset\":\"wAUJYhCTZ\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-d77ca8e8-a5ba-4970-9073-ad4568667c81, rgb(84, 84, 84))\"},children:/*#__PURE__*/_jsx(Link,{href:{hash:\":llrG4e6wF\",webPageId:\"r32UMfI4X\"},motionChild:true,nodeId:\"vMmIzRzdq\",openInNewTab:false,scopeId:\"r32UMfI4X\",smoothScroll:true,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-o6c6wk\",\"data-styles-preset\":\"sXc7rJlgK\",children:\"Get KashFloo \u2192\"})})})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1869upd\",\"data-styles-preset\":\"wAUJYhCTZ\",style:{\"--framer-text-color\":\"var(--token-d77ca8e8-a5ba-4970-9073-ad4568667c81, rgb(84, 84, 84))\"},children:/*#__PURE__*/_jsx(Link,{href:{hash:\":llrG4e6wF\",webPageId:\"r32UMfI4X\"},motionChild:true,nodeId:\"vMmIzRzdq\",openInNewTab:false,scopeId:\"r32UMfI4X\",smoothScroll:true,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-o6c6wk\",\"data-styles-preset\":\"sXc7rJlgK\",children:\"Get KashFloo \u2192\"})})})}),className:\"framer-t2nqyn\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ko4hRxKW6:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1703.2+36+5802.6+0+0),pixelHeight:1211,pixelWidth:2126,positionX:\"left\",positionY:\"center\",sizes:`min(${componentViewport?.width||\"100vw\"} - 40px, 1200px)`,src:\"https://framerusercontent.com/images/7jAOmNzT8qM7PSEBjyqUFxY1vxk.png\",srcSet:\"https://framerusercontent.com/images/7jAOmNzT8qM7PSEBjyqUFxY1vxk.png?scale-down-to=512 512w,https://framerusercontent.com/images/7jAOmNzT8qM7PSEBjyqUFxY1vxk.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/7jAOmNzT8qM7PSEBjyqUFxY1vxk.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/7jAOmNzT8qM7PSEBjyqUFxY1vxk.png 2126w\"}},w53wCcwGU:{background:{alt:\"\",fit:\"fit\",pixelHeight:1211,pixelWidth:2126,positionX:\"left\",positionY:\"center\",sizes:`min(${componentViewport?.width||\"100vw\"} - 80px, 1200px)`,src:\"https://framerusercontent.com/images/7jAOmNzT8qM7PSEBjyqUFxY1vxk.png\",srcSet:\"https://framerusercontent.com/images/7jAOmNzT8qM7PSEBjyqUFxY1vxk.png?scale-down-to=512 512w,https://framerusercontent.com/images/7jAOmNzT8qM7PSEBjyqUFxY1vxk.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/7jAOmNzT8qM7PSEBjyqUFxY1vxk.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/7jAOmNzT8qM7PSEBjyqUFxY1vxk.png 2126w\"}}},children:/*#__PURE__*/_jsx(ImageWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation8,__framer__exit:animation9,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,background:{alt:\"\",fit:\"fit\",pixelHeight:1211,pixelWidth:2126,positionX:\"left\",positionY:\"center\",sizes:\"699px\",src:\"https://framerusercontent.com/images/7jAOmNzT8qM7PSEBjyqUFxY1vxk.png\",srcSet:\"https://framerusercontent.com/images/7jAOmNzT8qM7PSEBjyqUFxY1vxk.png?scale-down-to=512 512w,https://framerusercontent.com/images/7jAOmNzT8qM7PSEBjyqUFxY1vxk.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/7jAOmNzT8qM7PSEBjyqUFxY1vxk.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/7jAOmNzT8qM7PSEBjyqUFxY1vxk.png 2126w\"},className:\"framer-1h4ihpk\",style:{transformPerspective:1200}})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-4m5wgr\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ko4hRxKW6:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1703.2+36+3262.2+0+0),pixelHeight:1517,pixelWidth:2795,positionX:\"left\",positionY:\"center\",sizes:`min(${componentViewport?.width||\"100vw\"} - 40px, 1200px)`,src:\"https://framerusercontent.com/images/5JsILPRvFeTDQaE9Uj6lnO6xI8Q.png\",srcSet:\"https://framerusercontent.com/images/5JsILPRvFeTDQaE9Uj6lnO6xI8Q.png?scale-down-to=512 512w,https://framerusercontent.com/images/5JsILPRvFeTDQaE9Uj6lnO6xI8Q.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/5JsILPRvFeTDQaE9Uj6lnO6xI8Q.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/5JsILPRvFeTDQaE9Uj6lnO6xI8Q.png 2795w\"}},w53wCcwGU:{background:{alt:\"\",fit:\"fit\",pixelHeight:1517,pixelWidth:2795,positionX:\"left\",positionY:\"center\",sizes:`min(${componentViewport?.width||\"100vw\"} - 80px, 1200px)`,src:\"https://framerusercontent.com/images/5JsILPRvFeTDQaE9Uj6lnO6xI8Q.png\",srcSet:\"https://framerusercontent.com/images/5JsILPRvFeTDQaE9Uj6lnO6xI8Q.png?scale-down-to=512 512w,https://framerusercontent.com/images/5JsILPRvFeTDQaE9Uj6lnO6xI8Q.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/5JsILPRvFeTDQaE9Uj6lnO6xI8Q.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/5JsILPRvFeTDQaE9Uj6lnO6xI8Q.png 2795w\"}}},children:/*#__PURE__*/_jsx(ImageWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation8,__framer__exit:animation9,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,background:{alt:\"\",fit:\"fit\",pixelHeight:1517,pixelWidth:2795,positionX:\"left\",positionY:\"center\",sizes:\"685px\",src:\"https://framerusercontent.com/images/5JsILPRvFeTDQaE9Uj6lnO6xI8Q.png\",srcSet:\"https://framerusercontent.com/images/5JsILPRvFeTDQaE9Uj6lnO6xI8Q.png?scale-down-to=512 512w,https://framerusercontent.com/images/5JsILPRvFeTDQaE9Uj6lnO6xI8Q.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/5JsILPRvFeTDQaE9Uj6lnO6xI8Q.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/5JsILPRvFeTDQaE9Uj6lnO6xI8Q.png 2795w\"},className:\"framer-1e8fwm0\",style:{transformPerspective:1200}})}),/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation8,__framer__exit:animation9,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-12ditc1\",\"data-framer-name\":\"Content\",style:{transformPerspective:1200},children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-hac7y\",\"data-styles-preset\":\"HnyHtk8qf\",children:\"Powerful insights & reports, and more!\"})}),className:\"framer-k9evgm\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1869upd\",\"data-styles-preset\":\"wAUJYhCTZ\",style:{\"--framer-text-color\":\"var(--token-d77ca8e8-a5ba-4970-9073-ad4568667c81, rgb(84, 84, 84))\"},children:\"These are the heart of the template and what makes the system valuable. From expense totals to budget balances, it\u2019s all automated. You focus on your goals, and let the system do the math.\"})}),className:\"framer-yt56j6\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ko4hRxKW6:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1869upd\",\"data-styles-preset\":\"wAUJYhCTZ\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-d77ca8e8-a5ba-4970-9073-ad4568667c81, rgb(84, 84, 84))\"},children:/*#__PURE__*/_jsx(Link,{href:{hash:\":llrG4e6wF\",webPageId:\"r32UMfI4X\"},motionChild:true,nodeId:\"s4pAt9lK4\",openInNewTab:false,scopeId:\"r32UMfI4X\",smoothScroll:true,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-o6c6wk\",\"data-styles-preset\":\"sXc7rJlgK\",children:\"Get KashFloo \u2192\"})})})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1869upd\",\"data-styles-preset\":\"wAUJYhCTZ\",style:{\"--framer-text-color\":\"var(--token-d77ca8e8-a5ba-4970-9073-ad4568667c81, rgb(84, 84, 84))\"},children:/*#__PURE__*/_jsx(Link,{href:{hash:\":llrG4e6wF\",webPageId:\"r32UMfI4X\"},motionChild:true,nodeId:\"s4pAt9lK4\",openInNewTab:false,scopeId:\"r32UMfI4X\",smoothScroll:true,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-o6c6wk\",\"data-styles-preset\":\"sXc7rJlgK\",children:\"Get KashFloo \u2192\"})})})}),className:\"framer-138shlx\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]})]})]}),/*#__PURE__*/_jsxs(\"section\",{className:\"framer-14yeywx\",\"data-framer-name\":\"Video Walkthru section\",id:elementId2,ref:ref3,children:[/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation8,__framer__exit:animation9,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1rj77ux\",\"data-framer-name\":\"Content\",style:{transformPerspective:1200},children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h2\",{className:\"framer-styles-preset-1vwqv0c\",\"data-styles-preset\":\"sHjMxyi5E\",style:{\"--framer-text-alignment\":\"center\"},children:[\"What sets \",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-1eecf6d5-4a5b-4a74-a227-d2f1542211e2, rgb(202, 142, 27))\"},children:\"KashFloo\"}),\" apart from other finance tracking dashboards?\"]})}),className:\"framer-1oz7rbd\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-1q1wiwb\",\"data-styles-preset\":\"clG0h7arK\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-d77ca8e8-a5ba-4970-9073-ad4568667c81, rgb(84, 84, 84))\"},children:\"This video will show you the features you'll get and guide you through on how to use the template. \"})}),className:\"framer-1hg4mjs\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-v8q05y\",\"data-border\":true,\"data-framer-name\":\"Video Frame\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1sc6zuu-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"WDnLLuXc0\",scopeId:\"r32UMfI4X\",children:/*#__PURE__*/_jsx(YouTube1,{borderRadius:0,bottomLeftRadius:0,bottomRightRadius:0,height:\"100%\",id:\"WDnLLuXc0\",isMixedBorderRadius:false,isRed:true,layoutId:\"WDnLLuXc0\",play:\"Off\",shouldMute:true,style:{height:\"100%\",width:\"100%\"},thumbnail:\"High Quality\",topLeftRadius:0,topRightRadius:0,url:\"https://youtu.be/Mvbt-Gib0hE\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(MotionDivWithOptimizedAppearEffect,{animate:animation5,className:\"framer-ccgd41\",\"data-framer-appear-id\":\"ccgd41\",\"data-framer-name\":\"Buttons Stack\",initial:animation4,optimized:true,style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{hash:\":llrG4e6wF\",webPageId:\"r32UMfI4X\"},implicitPathVariables:undefined},{href:{hash:\":llrG4e6wF\",webPageId:\"r32UMfI4X\"},implicitPathVariables:undefined},{href:{hash:\":llrG4e6wF\",webPageId:\"r32UMfI4X\"},implicitPathVariables:undefined}],children:resolvedLinks4=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ko4hRxKW6:{y:(componentViewport?.y||0)+0+8250.6+34+439+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:45,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1bgk0t6-container\",nodeId:\"lmaajOLTf\",scopeId:\"r32UMfI4X\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ko4hRxKW6:{YI6PUBvQH:resolvedLinks4[2]},w53wCcwGU:{YI6PUBvQH:resolvedLinks4[1]}},children:/*#__PURE__*/_jsx(Buttons,{d3rKsrWsN:\"Get KashFloo now\",GiqVJFXfJ:\"rgb(0, 0, 0)\",height:\"100%\",id:\"lmaajOLTf\",layoutId:\"lmaajOLTf\",style:{height:\"100%\"},u5xM7xc5A:\"ChevronRight\",variant:\"kx1CNnOFU\",width:\"100%\",YI6PUBvQH:resolvedLinks4[0]})})})})})})}),/*#__PURE__*/_jsx(\"section\",{className:\"framer-16iqtxb\",\"data-framer-name\":\"Review 1\",id:elementId3,ref:ref4,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ko4hRxKW6:{background:undefined}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",backgroundSize:1.43,fit:\"tile\",pixelHeight:126,pixelWidth:126,positionX:\"left\",positionY:\"top\",src:\"https://framerusercontent.com/images/VfkEna8iRjS9ZbXeCG1MRu3r0w.svg\"},className:\"framer-btxrk4\",\"data-border\":true,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ko4hRxKW6:{width:`min(${componentViewport?.width||\"100vw\"} - 80px, 1200px)`,y:(componentViewport?.y||0)+0+8250.6+34+548+62+0+0+0},w53wCcwGU:{width:`calc(min(${componentViewport?.width||\"100vw\"} - 160px, 1200px) - 100px)`}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:347,width:\"594px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-484tqs-container\",nodeId:\"OmFjE2bKL\",scopeId:\"r32UMfI4X\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ko4hRxKW6:{variant:\"uh_ycFVUb\"}},children:/*#__PURE__*/_jsx(CardTestimonial,{height:\"100%\",id:\"OmFjE2bKL\",layoutId:\"OmFjE2bKL\",mjW3_JNZr:\"Independent Creator\",OrEnDZrSN:\"I'm very satisfied with this All-in-one Personal Finance Hub by Ian and highly recommend it to others!\",style:{width:\"100%\"},THN17XOhF:\"Jolan Jimenez\",variant:\"Z94ZkeDM2\",width:\"100%\",zonqMRqY8:addImageAlt({src:\"https://framerusercontent.com/images/ojun9SfS4K29iMKjhUt5D6yG6Q.png\",srcSet:\"https://framerusercontent.com/images/ojun9SfS4K29iMKjhUt5D6yG6Q.png?scale-down-to=512 512w,https://framerusercontent.com/images/ojun9SfS4K29iMKjhUt5D6yG6Q.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/ojun9SfS4K29iMKjhUt5D6yG6Q.png 2000w\"},\"\")})})})})})})})})]}),/*#__PURE__*/_jsxs(\"section\",{className:\"framer-4av0w7\",\"data-framer-name\":\"Pricing\",id:elementId4,ref:ref5,children:[/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation8,__framer__exit:animation9,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-wnbz0n\",\"data-framer-name\":\"Content\",style:{transformPerspective:1200},children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ko4hRxKW6:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:1485,intrinsicWidth:2063,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+9275.6+89+0+-76.0068),pixelHeight:678,pixelWidth:713,positionX:\"center\",positionY:\"center\",sizes:`calc(min(${componentViewport?.width||\"100vw\"} - 40px, 1200px) - 280px)`,src:\"https://framerusercontent.com/images/kuglLLuJ47BR4oPMrDaVGY7ZlTg.png\",srcSet:\"https://framerusercontent.com/images/kuglLLuJ47BR4oPMrDaVGY7ZlTg.png?scale-down-to=512 512w,https://framerusercontent.com/images/kuglLLuJ47BR4oPMrDaVGY7ZlTg.png 713w\"}},w53wCcwGU:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:1485,intrinsicWidth:2063,pixelHeight:678,pixelWidth:713,positionX:\"center\",positionY:\"center\",sizes:`calc(min(${componentViewport?.width||\"100vw\"} - 80px, 1200px) - 576px)`,src:\"https://framerusercontent.com/images/kuglLLuJ47BR4oPMrDaVGY7ZlTg.png\",srcSet:\"https://framerusercontent.com/images/kuglLLuJ47BR4oPMrDaVGY7ZlTg.png?scale-down-to=512 512w,https://framerusercontent.com/images/kuglLLuJ47BR4oPMrDaVGY7ZlTg.png 713w\"},style:{rotate:6}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",intrinsicHeight:1485,intrinsicWidth:2063,pixelHeight:678,pixelWidth:713,positionX:\"center\",positionY:\"center\",sizes:`calc(min(${componentViewport?.width||\"100vw\"} - 80px, 1200px) - 978px)`,src:\"https://framerusercontent.com/images/kuglLLuJ47BR4oPMrDaVGY7ZlTg.png\",srcSet:\"https://framerusercontent.com/images/kuglLLuJ47BR4oPMrDaVGY7ZlTg.png?scale-down-to=512 512w,https://framerusercontent.com/images/kuglLLuJ47BR4oPMrDaVGY7ZlTg.png 713w\"},className:\"framer-ffmc8z\",\"data-framer-name\":\"$31\",style:{rotate:-14}})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1ib2xk\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-d77ca8e8-a5ba-4970-9073-ad4568667c81, rgb(84, 84, 84))\"},children:\"So you're ready to take action\u2026\"})}),className:\"framer-1s7nfor\",fonts:[\"FS;Satoshi-bold\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-hac7y\",\"data-styles-preset\":\"HnyHtk8qf\",style:{\"--framer-text-alignment\":\"center\"},children:\"Pick a price that's right for you\"})}),className:\"framer-1yj1wbi\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1869upd\",\"data-styles-preset\":\"wAUJYhCTZ\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-d77ca8e8-a5ba-4970-9073-ad4568667c81, rgb(84, 84, 84))\"},children:\"Make money management feel like less of a chore and more like part of your daily groove. \"})}),className:\"framer-3lkbr0\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1cx6qz5\",\"data-framer-name\":\"Container\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-k9l0dm\",\"data-border\":true,\"data-framer-name\":\"Card\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-rzgtx0\",\"data-styles-preset\":\"UXFOc2qSc\",children:\"Premium\"})}),className:\"framer-182mwgb\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1xl283s\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-v2itx5\",\"data-styles-preset\":\"UnYt6dMGd\",style:{\"--framer-text-color\":\"var(--token-324438ed-bfca-4dbc-b4a7-050d681abe11, rgb(136, 136, 136))\"},children:\"$40\"})}),className:\"framer-1dc0vzq\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-17mbfe1\",\"data-styles-preset\":\"G8zqkKYm4\",children:\"$29\"})}),className:\"framer-1coal0w\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-2hlaql\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1kec2w4\",\"data-framer-name\":\"Row\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-1v80n1z\",\"data-framer-name\":\"Check\",layout:\"position\",opacity:1,radius:0,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 24 24\"><path d=\"M 12 2.25 C 6.615 2.25 2.25 6.615 2.25 12 C 2.25 17.385 6.615 21.75 12 21.75 C 17.385 21.75 21.75 17.385 21.75 12 C 21.74 6.62 17.38 2.26 12 2.25 Z M 16.641 10.294 L 11.147 15.544 C 11.005 15.677 10.817 15.751 10.622 15.75 C 10.429 15.753 10.244 15.679 10.106 15.544 L 7.359 12.919 C 7.152 12.738 7.06 12.458 7.121 12.189 C 7.181 11.92 7.384 11.706 7.649 11.632 C 7.914 11.557 8.199 11.634 8.391 11.831 L 10.622 13.959 L 15.609 9.206 C 15.912 8.942 16.37 8.964 16.647 9.255 C 16.923 9.547 16.921 10.005 16.641 10.294 Z\" fill=\"#333\"></path></svg>',svgContentId:12061808373,withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-17uzyx5\",\"data-styles-preset\":\"igVSyEwNb\",style:{\"--framer-text-color\":\"var(--token-fe72c105-d895-4e74-a601-6f4ce865a0e7, rgb(34, 34, 34))\"},children:\"All Features\"})}),className:\"framer-y6akyf\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-gkz8q1\",\"data-framer-name\":\"Row\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-1n1nvvn\",\"data-framer-name\":\"Check\",layout:\"position\",opacity:1,radius:0,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 24 24\"><path d=\"M 12 2.25 C 6.615 2.25 2.25 6.615 2.25 12 C 2.25 17.385 6.615 21.75 12 21.75 C 17.385 21.75 21.75 17.385 21.75 12 C 21.74 6.62 17.38 2.26 12 2.25 Z M 16.641 10.294 L 11.147 15.544 C 11.005 15.677 10.817 15.751 10.622 15.75 C 10.429 15.753 10.244 15.679 10.106 15.544 L 7.359 12.919 C 7.152 12.738 7.06 12.458 7.121 12.189 C 7.181 11.92 7.384 11.706 7.649 11.632 C 7.914 11.557 8.199 11.634 8.391 11.831 L 10.622 13.959 L 15.609 9.206 C 15.912 8.942 16.37 8.964 16.647 9.255 C 16.923 9.547 16.921 10.005 16.641 10.294 Z\" fill=\"#333\"></path></svg>',svgContentId:12061808373,withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-17uzyx5\",\"data-styles-preset\":\"igVSyEwNb\",style:{\"--framer-text-color\":\"var(--token-fe72c105-d895-4e74-a601-6f4ce865a0e7, rgb(34, 34, 34))\"},children:\"Automations\"})}),className:\"framer-66zi2w\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-11ofosj\",\"data-framer-name\":\"Row\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-1e0ublg\",\"data-framer-name\":\"Check\",layout:\"position\",opacity:1,radius:0,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 24 24\"><path d=\"M 12 2.25 C 6.615 2.25 2.25 6.615 2.25 12 C 2.25 17.385 6.615 21.75 12 21.75 C 17.385 21.75 21.75 17.385 21.75 12 C 21.74 6.62 17.38 2.26 12 2.25 Z M 16.641 10.294 L 11.147 15.544 C 11.005 15.677 10.817 15.751 10.622 15.75 C 10.429 15.753 10.244 15.679 10.106 15.544 L 7.359 12.919 C 7.152 12.738 7.06 12.458 7.121 12.189 C 7.181 11.92 7.384 11.706 7.649 11.632 C 7.914 11.557 8.199 11.634 8.391 11.831 L 10.622 13.959 L 15.609 9.206 C 15.912 8.942 16.37 8.964 16.647 9.255 C 16.923 9.547 16.921 10.005 16.641 10.294 Z\" fill=\"#333\"></path></svg>',svgContentId:12061808373,withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-17uzyx5\",\"data-styles-preset\":\"igVSyEwNb\",style:{\"--framer-text-color\":\"var(--token-fe72c105-d895-4e74-a601-6f4ce865a0e7, rgb(34, 34, 34))\"},children:\"Future Updates\"})}),className:\"framer-3r8yy0\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1duu1lu\",\"data-framer-name\":\"Row\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-14zrojv\",\"data-framer-name\":\"Check\",layout:\"position\",opacity:1,radius:0,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 24 24\"><path d=\"M 12 2.25 C 6.615 2.25 2.25 6.615 2.25 12 C 2.25 17.385 6.615 21.75 12 21.75 C 17.385 21.75 21.75 17.385 21.75 12 C 21.74 6.62 17.38 2.26 12 2.25 Z M 16.641 10.294 L 11.147 15.544 C 11.005 15.677 10.817 15.751 10.622 15.75 C 10.429 15.753 10.244 15.679 10.106 15.544 L 7.359 12.919 C 7.152 12.738 7.06 12.458 7.121 12.189 C 7.181 11.92 7.384 11.706 7.649 11.632 C 7.914 11.557 8.199 11.634 8.391 11.831 L 10.622 13.959 L 15.609 9.206 C 15.912 8.942 16.37 8.964 16.647 9.255 C 16.923 9.547 16.921 10.005 16.641 10.294 Z\" fill=\"#333\"></path></svg>',svgContentId:12061808373,withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-17uzyx5\",\"data-styles-preset\":\"igVSyEwNb\",style:{\"--framer-text-color\":\"var(--token-fe72c105-d895-4e74-a601-6f4ce865a0e7, rgb(34, 34, 34))\"},children:\"Mobile Version\"})}),className:\"framer-swn318\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsx(Overlay,{children:overlay=>/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ko4hRxKW6:{y:(componentViewport?.y||0)+0+9275.6+89+311.3+0+0+54+314.5}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:45,children:/*#__PURE__*/_jsxs(Container,{className:\"framer-zny39v-container\",id:\"zny39v\",nodeId:\"MfsTh7A8g\",scopeId:\"r32UMfI4X\",children:[/*#__PURE__*/_jsx(Buttons,{d3rKsrWsN:\"Buy now\",GiqVJFXfJ:\"rgb(0, 0, 0)\",height:\"100%\",id:\"MfsTh7A8g\",layoutId:\"MfsTh7A8g\",S8x78ZPL2:S8x78ZPL23bnx0g({overlay}),style:{height:\"100%\"},u5xM7xc5A:\"ChevronRight\",variant:\"xk4djkVGs\",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-1a34p1v\"),\"data-framer-portal-id\":\"zny39v\",exit:{opacity:0,transition:{delay:0,duration:0,ease:[.12,.23,.5,1],type:\"tween\"}},initial:{opacity:0},onTap:()=>overlay.hide()},\"bjqMD7xQI\"),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ko4hRxKW6:{width:\"347px\"}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{width:\"667px\",children:/*#__PURE__*/_jsx(Container,{className:cx(scopingClassNames,\"framer-ckdkv4-container\"),\"data-framer-portal-id\":\"zny39v\",inComponentSlot:true,nodeId:\"dQCCw3Bf8\",rendersWithMotion:true,scopeId:\"r32UMfI4X\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ko4hRxKW6:{variant:\"jKSgdUCEp\"}},children:/*#__PURE__*/_jsx(CheckoutOverlay,{bdB0sXu16:\"https://shop.newblocs.co/b/kashfloo\",DURvSA_Q8:DURvSA_Q81wnntms({overlay}),height:\"100%\",hq0JeW1m2:\"https://shop.newblocs.co/buy?link=6hVTy\",id:\"dQCCw3Bf8\",layoutId:\"dQCCw3Bf8\",style:{height:\"100%\",width:\"100%\"},variant:\"bQLzY9pC5\",width:\"100%\",zUJ2FJ5vs:\"rgb(221, 221, 221)\"})})})})})]}),getContainer())})})]})})})})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-10tbefq\",\"data-border\":true,\"data-framer-name\":\"Card\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-rzgtx0\",\"data-styles-preset\":\"UXFOc2qSc\",style:{\"--framer-text-color\":\"var(--token-324438ed-bfca-4dbc-b4a7-050d681abe11, rgb(136, 136, 136))\"},children:\"Premium + Support\"})}),className:\"framer-hl4dxg\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1uarpg4\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-17mbfe1\",\"data-styles-preset\":\"G8zqkKYm4\",style:{\"--framer-text-color\":\"var(--token-cf452b9e-a6a8-44b5-a205-de3324b8b22a, rgb(247, 247, 247))\"},children:\"$99\"})}),className:\"framer-15ypyw5\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-rzgtx0\",\"data-styles-preset\":\"UXFOc2qSc\",style:{\"--framer-text-color\":\"var(--token-324438ed-bfca-4dbc-b4a7-050d681abe11, rgb(136, 136, 136))\"},children:\"5 slots left\"})}),className:\"framer-93l1oc\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-cd8mm\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-15up9fa\",\"data-framer-name\":\"Row\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-ht7yug\",\"data-framer-name\":\"Check\",layout:\"position\",opacity:1,radius:0,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 24 24\"><path d=\"M 12 2.25 C 6.615 2.25 2.25 6.615 2.25 12 C 2.25 17.385 6.615 21.75 12 21.75 C 17.385 21.75 21.75 17.385 21.75 12 C 21.74 6.62 17.38 2.26 12 2.25 Z M 16.641 10.294 L 11.147 15.544 C 11.005 15.677 10.817 15.751 10.622 15.75 C 10.429 15.753 10.244 15.679 10.106 15.544 L 7.359 12.919 C 7.152 12.738 7.06 12.458 7.121 12.189 C 7.181 11.92 7.384 11.706 7.649 11.632 C 7.914 11.557 8.199 11.634 8.391 11.831 L 10.622 13.959 L 15.609 9.206 C 15.912 8.942 16.37 8.964 16.647 9.255 C 16.923 9.547 16.921 10.005 16.641 10.294 Z\" fill=\"var(--token-cf452b9e-a6a8-44b5-a205-de3324b8b22a, rgb(247, 247, 247)) /* {&quot;name&quot;:&quot;GrayWhite&quot;} */\"></path></svg>',svgContentId:9232301768,withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-17uzyx5\",\"data-styles-preset\":\"igVSyEwNb\",style:{\"--framer-text-color\":\"var(--token-cf452b9e-a6a8-44b5-a205-de3324b8b22a, rgb(247, 247, 247))\"},children:\"All Features\"})}),className:\"framer-1vsupew\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-15wh9w7\",\"data-framer-name\":\"Row\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-5kecm6\",\"data-framer-name\":\"Check\",layout:\"position\",opacity:1,radius:0,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 24 24\"><path d=\"M 12 2.25 C 6.615 2.25 2.25 6.615 2.25 12 C 2.25 17.385 6.615 21.75 12 21.75 C 17.385 21.75 21.75 17.385 21.75 12 C 21.74 6.62 17.38 2.26 12 2.25 Z M 16.641 10.294 L 11.147 15.544 C 11.005 15.677 10.817 15.751 10.622 15.75 C 10.429 15.753 10.244 15.679 10.106 15.544 L 7.359 12.919 C 7.152 12.738 7.06 12.458 7.121 12.189 C 7.181 11.92 7.384 11.706 7.649 11.632 C 7.914 11.557 8.199 11.634 8.391 11.831 L 10.622 13.959 L 15.609 9.206 C 15.912 8.942 16.37 8.964 16.647 9.255 C 16.923 9.547 16.921 10.005 16.641 10.294 Z\" fill=\"var(--token-cf452b9e-a6a8-44b5-a205-de3324b8b22a, rgb(247, 247, 247)) /* {&quot;name&quot;:&quot;GrayWhite&quot;} */\"></path></svg>',svgContentId:9232301768,withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-17uzyx5\",\"data-styles-preset\":\"igVSyEwNb\",style:{\"--framer-text-color\":\"var(--token-cf452b9e-a6a8-44b5-a205-de3324b8b22a, rgb(247, 247, 247))\"},children:\"Future Updates\"})}),className:\"framer-t7giqq\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1ye2cqd\",\"data-framer-name\":\"Row\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-rk1wtk\",\"data-framer-name\":\"Check\",layout:\"position\",opacity:1,radius:0,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 24 24\"><path d=\"M 12 2.25 C 6.615 2.25 2.25 6.615 2.25 12 C 2.25 17.385 6.615 21.75 12 21.75 C 17.385 21.75 21.75 17.385 21.75 12 C 21.74 6.62 17.38 2.26 12 2.25 Z M 16.641 10.294 L 11.147 15.544 C 11.005 15.677 10.817 15.751 10.622 15.75 C 10.429 15.753 10.244 15.679 10.106 15.544 L 7.359 12.919 C 7.152 12.738 7.06 12.458 7.121 12.189 C 7.181 11.92 7.384 11.706 7.649 11.632 C 7.914 11.557 8.199 11.634 8.391 11.831 L 10.622 13.959 L 15.609 9.206 C 15.912 8.942 16.37 8.964 16.647 9.255 C 16.923 9.547 16.921 10.005 16.641 10.294 Z\" fill=\"var(--token-1eecf6d5-4a5b-4a74-a227-d2f1542211e2, rgb(202, 142, 27)) /* {&quot;name&quot;:&quot;Notion Yellow&quot;} */\"></path></svg>',svgContentId:10592860939,withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-17uzyx5\",\"data-styles-preset\":\"igVSyEwNb\",style:{\"--framer-text-color\":\"var(--token-1eecf6d5-4a5b-4a74-a227-d2f1542211e2, rgb(202, 142, 27))\"},children:/*#__PURE__*/_jsx(\"strong\",{children:\"1 Hr Call\"})})}),className:\"framer-c1i8io\",fonts:[\"Inter\",\"Inter-Bold\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1rcfp9s\",\"data-framer-name\":\"Row\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-1qqhhkc\",\"data-framer-name\":\"Check\",layout:\"position\",opacity:1,radius:0,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 24 24\"><path d=\"M 12 2.25 C 6.615 2.25 2.25 6.615 2.25 12 C 2.25 17.385 6.615 21.75 12 21.75 C 17.385 21.75 21.75 17.385 21.75 12 C 21.74 6.62 17.38 2.26 12 2.25 Z M 16.641 10.294 L 11.147 15.544 C 11.005 15.677 10.817 15.751 10.622 15.75 C 10.429 15.753 10.244 15.679 10.106 15.544 L 7.359 12.919 C 7.152 12.738 7.06 12.458 7.121 12.189 C 7.181 11.92 7.384 11.706 7.649 11.632 C 7.914 11.557 8.199 11.634 8.391 11.831 L 10.622 13.959 L 15.609 9.206 C 15.912 8.942 16.37 8.964 16.647 9.255 C 16.923 9.547 16.921 10.005 16.641 10.294 Z\" fill=\"var(--token-1eecf6d5-4a5b-4a74-a227-d2f1542211e2, rgb(202, 142, 27)) /* {&quot;name&quot;:&quot;Notion Yellow&quot;} */\"></path></svg>',svgContentId:10592860939,withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-17uzyx5\",\"data-styles-preset\":\"igVSyEwNb\",style:{\"--framer-text-color\":\"var(--token-1eecf6d5-4a5b-4a74-a227-d2f1542211e2, rgb(202, 142, 27))\"},children:/*#__PURE__*/_jsx(\"strong\",{children:\"Personalized Setup\"})})}),className:\"framer-1vo86zr\",fonts:[\"Inter\",\"Inter-Bold\"],verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ko4hRxKW6:{y:(componentViewport?.y||0)+0+9275.6+89+311.3+0+487.5+60+314.5}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:45,children:/*#__PURE__*/_jsx(Container,{className:\"framer-im8kbg-container\",nodeId:\"SHdimIUYQ\",scopeId:\"r32UMfI4X\",children:/*#__PURE__*/_jsx(Buttons,{d3rKsrWsN:\"Get started\",GiqVJFXfJ:\"rgb(0, 0, 0)\",height:\"100%\",id:\"SHdimIUYQ\",layoutId:\"SHdimIUYQ\",style:{height:\"100%\"},u5xM7xc5A:\"ChevronRight\",variant:\"kx1CNnOFU\",width:\"100%\",YI6PUBvQH:\"https://shop.newblocs.co/b/kashfloo\"})})})})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ko4hRxKW6:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:354,intrinsicWidth:354,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+9275.6+89+311.3+-27.3497),pixelHeight:566,pixelWidth:566,sizes:\"87px\",src:\"https://framerusercontent.com/images/QDVvMw5wxGp1wOu4mfU8prW1nx0.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/QDVvMw5wxGp1wOu4mfU8prW1nx0.png?scale-down-to=512 512w,https://framerusercontent.com/images/QDVvMw5wxGp1wOu4mfU8prW1nx0.png 566w\"},style:{rotate:9}},w53wCcwGU:{style:{rotate:-12}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:354,intrinsicWidth:354,pixelHeight:566,pixelWidth:566,sizes:\"109px\",src:\"https://framerusercontent.com/images/QDVvMw5wxGp1wOu4mfU8prW1nx0.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/QDVvMw5wxGp1wOu4mfU8prW1nx0.png?scale-down-to=512 512w,https://framerusercontent.com/images/QDVvMw5wxGp1wOu4mfU8prW1nx0.png 566w\"},className:\"framer-9cosiz\",\"data-framer-name\":\"App_icon2\",style:{rotate:-5},transformTemplate:transformTemplate1})})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ko4hRxKW6:{y:(componentViewport?.y||0)+0+9275.6+89+1338.3}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:36,children:/*#__PURE__*/_jsx(Container,{className:\"framer-rccw61-container\",\"data-framer-name\":\"Payments secured\",name:\"Payments secured\",nodeId:\"SLw53a8Cy\",scopeId:\"r32UMfI4X\",children:/*#__PURE__*/_jsx(FeaturePills,{AA1nw0WDx:\"var(--token-324438ed-bfca-4dbc-b4a7-050d681abe11, rgb(136, 136, 136))\",AGYC1S6Nd:\"Lock\",DZWuxW1f2:\"Payments are secure and encrypted\",height:\"100%\",id:\"SLw53a8Cy\",layoutId:\"SLw53a8Cy\",MezjkfkQ5:\"var(--token-324438ed-bfca-4dbc-b4a7-050d681abe11, rgb(136, 136, 136))\",name:\"Payments secured\",variant:\"X6se6_YPK\",width:\"100%\"})})})})]}),/*#__PURE__*/_jsx(\"header\",{className:\"framer-d1x7bj\",\"data-framer-name\":\"FAQs\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1fzazgz\",children:[/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation8,__framer__exit:animation9,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-a7akii\",\"data-framer-name\":\"Content\",style:{transformPerspective:1200},children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-rzgtx0\",\"data-styles-preset\":\"UXFOc2qSc\",style:{\"--framer-text-alignment\":\"left\"},children:\"FAQs\"})}),className:\"framer-qh2yyo\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-hac7y\",\"data-styles-preset\":\"HnyHtk8qf\",children:\"Your questions, solved\"})}),className:\"framer-1cc6cnt\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{className:\"framer-styles-preset-1869upd\",\"data-styles-preset\":\"wAUJYhCTZ\",style:{\"--framer-text-color\":\"var(--token-d77ca8e8-a5ba-4970-9073-ad4568667c81, rgb(84, 84, 84))\"},children:[\"We believe asking questions is key to finding the \",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-fe72c105-d895-4e74-a601-6f4ce865a0e7, rgb(34, 34, 34))\"},children:/*#__PURE__*/_jsx(\"strong\",{children:\"perfect solution\"})}),\". So we answered some common questions you might have.\"]})}),className:\"framer-108rg93\",fonts:[\"Inter\",\"Inter-Bold\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation8,__framer__exit:animation9,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-11utsto\",\"data-framer-name\":\"Accordion\",style:{transformPerspective:1200},children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ko4hRxKW6:{width:`calc(min(max(${componentViewport?.width||\"100vw\"}, 390px) - 40px, 1200px) - 40px)`,y:(componentViewport?.y||0)+0+10827.9+36+0+0+412.8+0+0},w53wCcwGU:{width:`calc(min(${componentViewport?.width||\"100vw\"} - 80px, 1200px) - 40px)`}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:116,width:`calc(max((min(max(${componentViewport?.width||\"100vw\"} - 80px, 1px), 1200px) - 23px) / 1.8, 1px) - 40px)`,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1vpnrue-container\",nodeId:\"GLv9MisoU\",scopeId:\"r32UMfI4X\",children:/*#__PURE__*/_jsx(Row,{height:\"100%\",id:\"GLv9MisoU\",layoutId:\"GLv9MisoU\",style:{width:\"100%\"},T8rQFvSBR:\"Templates are pre-built Notion pages that give you a head start on organizing your projects, tasks, and information. They offer several advantages over building systems from scratch, especially for businesses and other important matters.\\n\\nTemplates provide a ready-made structure and layout, eliminating the need to design your system from the ground up. This can save you significant time and effort, especially if you're new to Notion.\",variant:\"zhHThyHni\",W88zB8mIG:\"Why use a Notion Template?\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ko4hRxKW6:{width:`calc(min(max(${componentViewport?.width||\"100vw\"}, 390px) - 40px, 1200px) - 40px)`,y:(componentViewport?.y||0)+0+10827.9+36+0+0+412.8+0+116},w53wCcwGU:{width:`calc(min(${componentViewport?.width||\"100vw\"} - 80px, 1200px) - 40px)`}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:116,width:`calc(max((min(max(${componentViewport?.width||\"100vw\"} - 80px, 1px), 1200px) - 23px) / 1.8, 1px) - 40px)`,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1u0tgwz-container\",nodeId:\"LTi0JOLbz\",scopeId:\"r32UMfI4X\",children:/*#__PURE__*/_jsx(Row,{height:\"100%\",id:\"LTi0JOLbz\",layoutId:\"LTi0JOLbz\",style:{width:\"100%\"},T8rQFvSBR:\"Absolutely. It\u2019s your template\u2014make it as simple or as detailed as you want. Just be sure not to delete important databases.\\n\\n\",variant:\"zhHThyHni\",W88zB8mIG:\"Can I customize it for my needs?\\n\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-t1ot6m\",\"data-framer-name\":\"Line\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-gf38lb\",\"data-framer-name\":\"Line\"}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ko4hRxKW6:{width:`calc(min(max(${componentViewport?.width||\"100vw\"}, 390px) - 40px, 1200px) - 40px)`,y:(componentViewport?.y||0)+0+10827.9+36+0+0+412.8+0+234},w53wCcwGU:{width:`calc(min(${componentViewport?.width||\"100vw\"} - 80px, 1200px) - 40px)`}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:116,width:`calc(max((min(max(${componentViewport?.width||\"100vw\"} - 80px, 1px), 1200px) - 23px) / 1.8, 1px) - 40px)`,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1y5hwyr-container\",nodeId:\"MX3sPWKt3\",scopeId:\"r32UMfI4X\",children:/*#__PURE__*/_jsx(Row,{height:\"100%\",id:\"MX3sPWKt3\",layoutId:\"MX3sPWKt3\",style:{width:\"100%\"},T8rQFvSBR:\"Not at all. The template is intuitive and comes with step-by-step guidance and the video tutorial. You\u2019ll be up and running in no time.\",variant:\"zhHThyHni\",W88zB8mIG:\"I\u2019m not great with Notion or tech. Will this be hard to use?\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-q11q5y\",\"data-framer-name\":\"Line\"}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ko4hRxKW6:{width:`calc(min(max(${componentViewport?.width||\"100vw\"}, 390px) - 40px, 1200px) - 40px)`,y:(componentViewport?.y||0)+0+10827.9+36+0+0+412.8+0+351},w53wCcwGU:{width:`calc(min(${componentViewport?.width||\"100vw\"} - 80px, 1200px) - 40px)`}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:116,width:`calc(max((min(max(${componentViewport?.width||\"100vw\"} - 80px, 1px), 1200px) - 23px) / 1.8, 1px) - 40px)`,children:/*#__PURE__*/_jsx(Container,{className:\"framer-218h7d-container\",nodeId:\"Wu6ZkiX9R\",scopeId:\"r32UMfI4X\",children:/*#__PURE__*/_jsx(Row,{height:\"100%\",id:\"Wu6ZkiX9R\",layoutId:\"Wu6ZkiX9R\",style:{width:\"100%\"},T8rQFvSBR:\"Yes, it works perfectly with the free version of Notion. While the template includes charts and graphs to visualize your finances, Notion\u2019s free plan only supports one chart per workspace. Don\u2019t worry, though\u2014the template is fully functional without the charts, and you can still track and organize your finances seamlessly.\",variant:\"zhHThyHni\",W88zB8mIG:\" Is this template compatible with the free version of Notion?\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-fa3w60\",\"data-framer-name\":\"Line\"}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ko4hRxKW6:{width:`calc(min(max(${componentViewport?.width||\"100vw\"}, 390px) - 40px, 1200px) - 40px)`,y:(componentViewport?.y||0)+0+10827.9+36+0+0+412.8+0+468},w53wCcwGU:{width:`calc(min(${componentViewport?.width||\"100vw\"} - 80px, 1200px) - 40px)`}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:116,width:`calc(max((min(max(${componentViewport?.width||\"100vw\"} - 80px, 1px), 1200px) - 23px) / 1.8, 1px) - 40px)`,children:/*#__PURE__*/_jsx(Container,{className:\"framer-xtgohj-container\",nodeId:\"hrnxJ7Qzh\",scopeId:\"r32UMfI4X\",children:/*#__PURE__*/_jsx(Row,{height:\"100%\",id:\"hrnxJ7Qzh\",layoutId:\"hrnxJ7Qzh\",style:{width:\"100%\"},T8rQFvSBR:\"There\u2019s a database page that holds all sample records. Simply delete the sample data from the databases, and you\u2019re good to start with your own entries. There's a guide on how to do this.\",variant:\"zhHThyHni\",W88zB8mIG:\"How do I reset the sample data in the template?\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1y26pw0\",\"data-framer-name\":\"Line\"}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ko4hRxKW6:{width:`calc(min(max(${componentViewport?.width||\"100vw\"}, 390px) - 40px, 1200px) - 40px)`,y:(componentViewport?.y||0)+0+10827.9+36+0+0+412.8+0+585},w53wCcwGU:{width:`calc(min(${componentViewport?.width||\"100vw\"} - 80px, 1200px) - 40px)`}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:116,width:`calc(max((min(max(${componentViewport?.width||\"100vw\"} - 80px, 1px), 1200px) - 23px) / 1.8, 1px) - 40px)`,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1f9y8h9-container\",nodeId:\"jteIBZwuF\",scopeId:\"r32UMfI4X\",children:/*#__PURE__*/_jsx(Row,{height:\"100%\",id:\"jteIBZwuF\",layoutId:\"jteIBZwuF\",style:{width:\"100%\"},T8rQFvSBR:\"Yes, it\u2019s fully responsive and works great on Notion\u2019s mobile app, so you can track your finances on the go. Additionaly, there's a mobile version of the template included in the package,\",variant:\"zhHThyHni\",W88zB8mIG:\"Does this template work on mobile?\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ko4hRxKW6:{width:`calc(min(max(${componentViewport?.width||\"100vw\"}, 390px) - 40px, 1200px) - 40px)`,y:(componentViewport?.y||0)+0+10827.9+36+0+0+412.8+0+701},w53wCcwGU:{width:`calc(min(${componentViewport?.width||\"100vw\"} - 80px, 1200px) - 40px)`}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:116,width:`calc(max((min(max(${componentViewport?.width||\"100vw\"} - 80px, 1px), 1200px) - 23px) / 1.8, 1px) - 40px)`,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1628cu3-container\",nodeId:\"S4WD6XP4G\",scopeId:\"r32UMfI4X\",children:/*#__PURE__*/_jsx(Row,{height:\"100%\",id:\"S4WD6XP4G\",layoutId:\"S4WD6XP4G\",style:{width:\"100%\"},T8rQFvSBR:\"For any inquiries regarding Newblocs, our templates, or our services, feel free to reach out to us via hello@newblocs.co or through the live chat function located on the bottom right corner of this page. We are always happy to assist you.\",variant:\"zhHThyHni\",W88zB8mIG:\"How can I reach you for further questions?\",width:\"100%\"})})})})]})]})}),isDisplayed()&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-k49cz4 hidden-qw8wk6 hidden-wnl5lg\"}),/*#__PURE__*/_jsxs(\"header\",{className:\"framer-39emcf\",\"data-framer-name\":\"COLLECTION\",children:[/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation8,__framer__exit:animation9,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-191u6tx\",\"data-framer-name\":\"Text Row\",style:{transformPerspective:1200},children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-hac7y\",\"data-styles-preset\":\"HnyHtk8qf\",children:\"You might also like\"})}),className:\"framer-1pnf2r0\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ko4hRxKW6:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1tZWRpdW0=\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.5px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"right\",\"--framer-text-color\":\"var(--token-324438ed-bfca-4dbc-b4a7-050d681abe11, rgb(136, 136, 136))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"DxmZ32f9z\"},motionChild:true,nodeId:\"eL16jax6Q\",openInNewTab:false,scopeId:\"r32UMfI4X\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1uz7l35\",\"data-styles-preset\":\"MvXRdIpXO\",children:\"View All \u2192\"})})})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1tZWRpdW0=\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-size\":\"23px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.5px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"right\",\"--framer-text-color\":\"var(--token-324438ed-bfca-4dbc-b4a7-050d681abe11, rgb(136, 136, 136))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"DxmZ32f9z\"},motionChild:true,nodeId:\"eL16jax6Q\",openInNewTab:false,scopeId:\"r32UMfI4X\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1uz7l35\",\"data-styles-preset\":\"MvXRdIpXO\",children:\"View All \u2192\"})})})}),className:\"framer-12rdd67\",\"data-framer-name\":\"View all\",fonts:[\"FS;Satoshi-medium\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1mpm5el\",children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(QueryData,{pageSize:4,query:{from:{alias:\"fV6DIsWDr\",data:Products,type:\"Collection\"},select:[{collection:\"fV6DIsWDr\",name:\"of3ofpChf\",type:\"Identifier\"},{collection:\"fV6DIsWDr\",name:\"lSX4KVUBl\",type:\"Identifier\"},{collection:\"fV6DIsWDr\",name:\"kJmlKOMF8\",type:\"Identifier\"},{collection:\"fV6DIsWDr\",name:\"HvGMvLAS4\",type:\"Identifier\"},{collection:\"fV6DIsWDr\",name:\"M2_RVR9oQ\",type:\"Identifier\"},{collection:\"fV6DIsWDr\",name:\"id\",type:\"Identifier\"}],where:{left:{collection:\"fV6DIsWDr\",name:\"a0y_7wvq3\",type:\"Identifier\"},operator:\"and\",right:{operator:\"not\",type:\"UnaryOperation\",value:{arguments:[{collection:\"fV6DIsWDr\",name:\"kJmlKOMF8\",type:\"Identifier\"},{type:\"LiteralValue\",value:\"KashFloo\"}],functionName:\"CONTAINS\",type:\"FunctionCall\"}},type:\"BinaryOperation\"}},children:(collection,paginationInfo,loadMore)=>/*#__PURE__*/_jsxs(_Fragment,{children:[collection?.map(({HvGMvLAS4:HvGMvLAS4fV6DIsWDr,id:idfV6DIsWDr,kJmlKOMF8:kJmlKOMF8fV6DIsWDr,lSX4KVUBl:lSX4KVUBlfV6DIsWDr,M2_RVR9oQ:M2_RVR9oQfV6DIsWDr,of3ofpChf:of3ofpChffV6DIsWDr},index)=>{of3ofpChffV6DIsWDr??=\"\";kJmlKOMF8fV6DIsWDr??=\"\";HvGMvLAS4fV6DIsWDr??=\"\";M2_RVR9oQfV6DIsWDr??=\"\";return /*#__PURE__*/_jsx(LayoutGroup,{id:`fV6DIsWDr-${idfV6DIsWDr}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{M2_RVR9oQ:M2_RVR9oQfV6DIsWDr},children:/*#__PURE__*/_jsx(Link,{href:of3ofpChffV6DIsWDr,motionChild:true,nodeId:\"ZP8KVnw1Z\",openInNewTab:false,scopeId:\"r32UMfI4X\",smoothScroll:true,children:/*#__PURE__*/_jsxs(MotionAWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation8,__framer__exit:animation9,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-lkouft framer-raj3d\",\"data-framer-name\":\"CMS CARD\",style:{transformPerspective:1200},whileTap:animation10,children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1t31v3h\",\"data-border\":true,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ko4hRxKW6:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+12213.7+22+95.8+0+0+0+0+0),sizes:`max(max(max(min(${componentViewport?.width||\"100vw\"} - 40px, 1080px), 200px), 310px), 1px)`,...toResponsiveImage(lSX4KVUBlfV6DIsWDr)}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",sizes:`max(max((min(${componentViewport?.width||\"100vw\"} - 120px, 1080px) - 50px) / 2, 200px), 1px)`,...toResponsiveImage(lSX4KVUBlfV6DIsWDr)},className:\"framer-1ranw9m\",\"data-framer-cursor\":\"1iubjob\",\"data-framer-name\":\"Collection Card\"})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-ntl3ua\",\"data-framer-name\":\"Post\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ko4hRxKW6:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1tZWRpdW0=\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.5px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-fe72c105-d895-4e74-a601-6f4ce865a0e7, rgb(34, 34, 34))\"},children:\"Title\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1tZWRpdW0=\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-size\":\"23px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.5px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-fe72c105-d895-4e74-a601-6f4ce865a0e7, rgb(34, 34, 34))\"},children:\"Title\"})}),className:\"framer-1wpvryj\",\"data-framer-name\":\"Title\",fonts:[\"FS;Satoshi-medium\"],text:kJmlKOMF8fV6DIsWDr,verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ko4hRxKW6:{y:(componentViewport?.y||0)+0+12213.7+22+95.8+0+0+0+215+20}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:45,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1xy4qlc-container\",nodeId:\"yAi3MK6qL\",scopeId:\"r32UMfI4X\",children:/*#__PURE__*/_jsx(PriceTag,{d3rKsrWsN:HvGMvLAS4fV6DIsWDr,height:\"100%\",id:\"yAi3MK6qL\",layoutId:\"yAi3MK6qL\",style:{height:\"100%\"},variant:\"ZviMmyfJ4\",width:\"100%\"})})})})]})]})})})},idfV6DIsWDr);}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ko4hRxKW6:{y:(componentViewport?.y||0)+0+12213.7+22+95.8+300- -16}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:40,children:/*#__PURE__*/_jsx(Container,{className:\"framer-p6y2fp-container\",nodeId:\"rZjpTCd9y\",scopeId:\"r32UMfI4X\",children:/*#__PURE__*/_jsx(LoadMore5,{height:\"100%\",id:\"rZjpTCd9y\",layoutId:\"rZjpTCd9y\",variant:loaderVariants(paginationInfo,{disabled:\"oNAmo3SSq\",loading:\"y1oJYFF8M\"},\"G4ZAAHeIa\"),width:\"100%\",Wld3NDzSj:Wld3NDzSj1b86s49({loadMore})})})})})]})})})})]}),/*#__PURE__*/_jsxs(\"header\",{className:\"framer-2bmfba\",\"data-framer-name\":\"CTA custom\",children:[/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation8,__framer__exit:animation9,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-qj1jsr\",\"data-framer-name\":\"Content\",style:{transformPerspective:1200},children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1ib2xk\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-324438ed-bfca-4dbc-b4a7-050d681abe11, rgb(136, 136, 136))\"},children:\"Prefer a custom setup instead?\"})}),className:\"framer-1v4u9q9\",fonts:[\"FS;Satoshi-bold\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h2\",{className:\"framer-styles-preset-1vwqv0c\",\"data-styles-preset\":\"sHjMxyi5E\",style:{\"--framer-text-alignment\":\"center\"},children:[\"Let's Make it Happen:\",/*#__PURE__*/_jsx(\"br\",{}),\"Your System, Personalized. \"]})}),className:\"framer-1h8t93p\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1869upd\",\"data-styles-preset\":\"wAUJYhCTZ\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-d77ca8e8-a5ba-4970-9073-ad4568667c81, rgb(84, 84, 84))\"},children:\"Book a free 30-minute Discovery Call with us! Let's chat about how we can help you make the most out of Notion.\"})}),className:\"framer-i9jcfj\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"wwF6u3Iq8\"},implicitPathVariables:undefined},{href:{webPageId:\"wwF6u3Iq8\"},implicitPathVariables:undefined},{href:{webPageId:\"wwF6u3Iq8\"},implicitPathVariables:undefined}],children:resolvedLinks5=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ko4hRxKW6:{y:(componentViewport?.y||0)+0+12653.5+83+314.5}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:45,children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation8,__framer__exit:animation9,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-yasm9h-container\",nodeId:\"iwE0_6ewu\",rendersWithMotion:true,scopeId:\"r32UMfI4X\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ko4hRxKW6:{YI6PUBvQH:resolvedLinks5[2]},w53wCcwGU:{YI6PUBvQH:resolvedLinks5[1]}},children:/*#__PURE__*/_jsx(Buttons,{d3rKsrWsN:\"Schedule a call\",GiqVJFXfJ:\"rgb(0, 0, 0)\",height:\"100%\",id:\"iwE0_6ewu\",layoutId:\"iwE0_6ewu\",style:{height:\"100%\"},u5xM7xc5A:\"ChevronRight\",variant:\"xk4djkVGs\",width:\"100%\",YI6PUBvQH:resolvedLinks5[0]})})})})})})]}),isDisplayed1()&&/*#__PURE__*/_jsx(\"header\",{className:\"framer-iv0c1e hidden-1y80szd\",\"data-framer-name\":\"Extra section\"})]}),/*#__PURE__*/_jsx(\"div\",{id:\"overlay\"})]})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-NgGR6.framer-raj3d, .framer-NgGR6 .framer-raj3d { display: block; }\",\".framer-NgGR6.framer-qw8wk6 { align-content: center; align-items: center; background-color: var(--token-cf452b9e-a6a8-44b5-a205-de3324b8b22a, #f7f7f7); display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 1200px; }\",\".framer-NgGR6 .framer-1gxo2sw-container { flex: none; height: auto; left: 0px; position: fixed; right: 0px; top: 0px; z-index: 3; }\",\".framer-NgGR6 .framer-kliehl { align-content: center; align-items: center; background-color: var(--token-cf452b9e-a6a8-44b5-a205-de3324b8b22a, #f7f7f7); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 61px; height: min-content; justify-content: center; overflow: visible; padding: 200px 40px 29px 40px; position: relative; width: 100%; z-index: 2; }\",\".framer-NgGR6 .framer-oso0u6 { 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%; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-NgGR6 .framer-1696n9t { flex: none; height: 71px; position: relative; width: 86px; z-index: 1; }\",\".framer-NgGR6 .framer-lk1g2g { aspect-ratio: 1.244019138755981 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 69px); overflow: visible; position: relative; width: 86px; }\",\".framer-NgGR6 .framer-xk8b9y { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 23px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-NgGR6 .framer-xlxlnl { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; max-width: 705px; position: relative; white-space: pre-wrap; width: auto; will-change: var(--framer-will-change-effect-override, transform); word-break: break-word; word-wrap: break-word; }\",\".framer-NgGR6 .framer-130rk6e { flex: none; height: auto; max-width: 100%; overflow: visible; position: relative; white-space: pre-wrap; width: 705px; will-change: var(--framer-will-change-effect-override, transform); word-break: break-word; word-wrap: break-word; }\",\".framer-NgGR6 .framer-1j6pdi8 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 18px; height: 40px; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-NgGR6 .framer-1su93o6-container, .framer-NgGR6 .framer-1glbqvo-container, .framer-NgGR6 .framer-13bnr2z-container, .framer-NgGR6 .framer-1bgk0t6-container, .framer-NgGR6 .framer-zny39v-container, .framer-NgGR6 .framer-im8kbg-container, .framer-NgGR6 .framer-1xy4qlc-container, .framer-NgGR6 .framer-yasm9h-container { flex: none; height: 45px; position: relative; width: auto; }\",\".framer-NgGR6 .framer-13j5iqj { 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: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-NgGR6 .framer-6uj306 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: 32px; justify-content: center; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-NgGR6 .framer-vjcs76, .framer-NgGR6 .framer-1n7kh8y { --border-bottom-width: 1px; --border-color: #ffffff; --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; border-bottom-left-radius: 16px; border-bottom-right-radius: 16px; border-top-left-radius: 16px; border-top-right-radius: 16px; flex: none; height: 32px; overflow: hidden; position: relative; width: 32px; will-change: var(--framer-will-change-override, transform); }\",\".framer-NgGR6 .framer-3h9kzn { border-bottom-left-radius: 16px; border-bottom-right-radius: 16px; border-top-left-radius: 16px; border-top-right-radius: 16px; flex: none; height: 32px; overflow: hidden; position: relative; width: 32px; will-change: var(--framer-will-change-override, transform); }\",\".framer-NgGR6 .framer-4gtask { 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: flex-start; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-NgGR6 .framer-1b6qspf { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 3px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-NgGR6 .framer-3dmzsy { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 4px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-NgGR6 .framer-14ppwd9-container, .framer-NgGR6 .framer-hitwmd-container, .framer-NgGR6 .framer-81hil7-container, .framer-NgGR6 .framer-12uufv0-container, .framer-NgGR6 .framer-1a6fxi7-container { flex: none; height: 16px; position: relative; width: 16px; }\",\".framer-NgGR6 .framer-ovawtd { --framer-paragraph-spacing: 0px; flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-NgGR6 .framer-f9jo1k { align-content: center; align-items: center; background-color: var(--token-cf452b9e-a6a8-44b5-a205-de3324b8b22a, #f7f7f7); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 45px; height: min-content; justify-content: center; max-width: 1200px; overflow: visible; padding: 0px 40px 0px 40px; position: relative; width: 100%; z-index: 2; }\",\".framer-NgGR6 .framer-spfuum-container { aspect-ratio: 1.5 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 617px); position: relative; width: 925px; }\",\".framer-NgGR6 .framer-ufcr94 { --border-bottom-width: 10px; --border-color: #222222; --border-left-width: 3px; --border-right-width: 3px; --border-style: solid; --border-top-width: 3px; 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-direction: column; flex-wrap: nowrap; gap: 24px; height: 709px; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 1260px; will-change: var(--framer-will-change-override, transform); }\",\".framer-NgGR6 .framer-cdxow8-container { flex: 1 0 0px; height: 1px; position: relative; width: 100%; }\",\".framer-NgGR6 .framer-1ojsch4, .framer-NgGR6 .framer-1sk4gz0, .framer-NgGR6 .framer-1mkw1fd { --border-bottom-width: 10px; --border-color: #222222; --border-left-width: 3px; --border-right-width: 3px; --border-style: solid; --border-top-width: 3px; 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-direction: column; flex-wrap: nowrap; gap: 24px; height: 709px; justify-content: flex-start; overflow: hidden; padding: 40px; position: relative; width: 984px; will-change: var(--framer-will-change-override, transform); }\",\".framer-NgGR6 .framer-1w23fch-container { bottom: 0px; flex: none; height: 70vh; left: 0px; position: fixed; right: 0px; z-index: 0; }\",\".framer-NgGR6 .framer-88uq8g { align-content: center; align-items: center; background-color: var(--token-cf452b9e-a6a8-44b5-a205-de3324b8b22a, #f7f7f7); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 96px; height: min-content; justify-content: center; overflow: hidden; padding: 59px 40px 59px 40px; position: relative; width: 100%; z-index: 2; }\",\".framer-NgGR6 .framer-cgsr62 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: wrap; gap: 50px; height: min-content; justify-content: center; max-width: 1080px; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-NgGR6 .framer-1v5of39 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 75px; height: min-content; justify-content: center; padding: 0px; position: relative; width: 100%; }\",\".framer-NgGR6 .framer-dtrywi { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 45px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-NgGR6 .framer-1kbyqbt, .framer-NgGR6 .framer-1s7nfor, .framer-NgGR6 .framer-qh2yyo, .framer-NgGR6 .framer-108rg93, .framer-NgGR6 .framer-1v4u9q9 { flex: none; height: auto; overflow: visible; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-NgGR6 .framer-s3qfd2 { flex: none; height: auto; max-width: 712.8px; overflow: visible; position: relative; white-space: pre-wrap; width: 712px; word-break: break-word; word-wrap: break-word; }\",\".framer-NgGR6 .framer-1gxykiw { flex: none; height: auto; max-width: 612px; overflow: visible; position: relative; white-space: pre-wrap; width: 612px; word-break: break-word; word-wrap: break-word; }\",\".framer-NgGR6 .framer-nujarz, .framer-NgGR6 .framer-16iqtxb { align-content: center; align-items: center; background-color: var(--token-cf452b9e-a6a8-44b5-a205-de3324b8b22a, #f7f7f7); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 54px; height: min-content; justify-content: center; overflow: visible; padding: 9px 40px 9px 40px; position: relative; width: 100%; }\",\".framer-NgGR6 .framer-8scjsd { --border-bottom-width: 10px; --border-color: var(--token-fe72c105-d895-4e74-a601-6f4ce865a0e7, #222222); --border-left-width: 3px; --border-right-width: 3px; --border-style: solid; --border-top-width: 3px; 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: 60px; height: min-content; justify-content: center; max-width: 1200px; overflow: visible; padding: 50px; position: relative; width: 832px; }\",\".framer-NgGR6 .framer-dd3kso-container, .framer-NgGR6 .framer-484tqs-container, .framer-NgGR6 .framer-1vpnrue-container, .framer-NgGR6 .framer-1u0tgwz-container, .framer-NgGR6 .framer-1y5hwyr-container, .framer-NgGR6 .framer-218h7d-container, .framer-NgGR6 .framer-xtgohj-container, .framer-NgGR6 .framer-1f9y8h9-container, .framer-NgGR6 .framer-1628cu3-container { flex: none; height: auto; position: relative; width: 100%; }\",\".framer-NgGR6 .framer-oeacjw { align-content: center; align-items: center; background-color: var(--token-cf452b9e-a6a8-44b5-a205-de3324b8b22a, #f7f7f7); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 63px; height: min-content; justify-content: center; overflow: visible; padding: 80px 40px 55px 40px; position: relative; width: 100%; z-index: 2; }\",\".framer-NgGR6 .framer-121w0z2 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 61px; height: min-content; justify-content: center; max-width: 1500px; overflow: hidden; padding: 0px; position: relative; width: 1124px; }\",\".framer-NgGR6 .framer-1tm9kyc, .framer-NgGR6 .framer-1v4lmci, .framer-NgGR6 .framer-1rfukrp, .framer-NgGR6 .framer-18i07rf, .framer-NgGR6 .framer-1kwvmnm, .framer-NgGR6 .framer-fnh9rr, .framer-NgGR6 .framer-dze5gc, .framer-NgGR6 .framer-12ditc1 { align-content: flex-start; align-items: flex-start; align-self: stretch; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: auto; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-NgGR6 .framer-ovj0jf, .framer-NgGR6 .framer-1q1u3pj, .framer-NgGR6 .framer-jm1vni, .framer-NgGR6 .framer-19qtz4l, .framer-NgGR6 .framer-13mkl2w, .framer-NgGR6 .framer-1yunlh0, .framer-NgGR6 .framer-v390xh, .framer-NgGR6 .framer-k9evgm, .framer-NgGR6 .framer-1cc6cnt, .framer-NgGR6 .framer-1h8t93p { flex: none; height: auto; max-width: 705px; overflow: visible; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-NgGR6 .framer-14le3mx, .framer-NgGR6 .framer-1j93a58, .framer-NgGR6 .framer-khpah5, .framer-NgGR6 .framer-pjh7l1, .framer-NgGR6 .framer-zbpi77, .framer-NgGR6 .framer-1vi453y, .framer-NgGR6 .framer-1h6c2af, .framer-NgGR6 .framer-lfqwci, .framer-NgGR6 .framer-1qrj3j7, .framer-NgGR6 .framer-1svp3tf, .framer-NgGR6 .framer-c29cb6, .framer-NgGR6 .framer-1d4qwxg, .framer-NgGR6 .framer-1k7mqz7, .framer-NgGR6 .framer-t2nqyn, .framer-NgGR6 .framer-yt56j6, .framer-NgGR6 .framer-138shlx { flex: none; height: auto; max-width: 533px; overflow: visible; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-NgGR6 .framer-v75iov { border-bottom-left-radius: 10px; border-bottom-right-radius: 10px; border-top-left-radius: 10px; border-top-right-radius: 10px; flex: none; height: 453px; overflow: hidden; position: relative; width: 734px; will-change: var(--framer-will-change-override, transform); }\",\".framer-NgGR6 .framer-6bvvjr, .framer-NgGR6 .framer-nj9o5y, .framer-NgGR6 .framer-1lxq8m8, .framer-NgGR6 .framer-1lklvjh, .framer-NgGR6 .framer-dx4qvh, .framer-NgGR6 .framer-twy73y, .framer-NgGR6 .framer-4m5wgr { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 61px; height: min-content; justify-content: center; max-width: 1200px; overflow: hidden; padding: 0px; position: relative; width: 1124px; }\",\".framer-NgGR6 .framer-1tufa7w { border-bottom-left-radius: 10px; border-bottom-right-radius: 10px; border-top-left-radius: 10px; border-top-right-radius: 10px; flex: none; height: 531px; overflow: hidden; position: relative; width: 581px; will-change: var(--framer-will-change-override, transform); }\",\".framer-NgGR6 .framer-lfqzmy { border-bottom-left-radius: 10px; border-bottom-right-radius: 10px; border-top-left-radius: 10px; border-top-right-radius: 10px; flex: none; height: 548px; overflow: visible; position: relative; width: 751px; }\",\".framer-NgGR6 .framer-o9utia { border-bottom-left-radius: 10px; border-bottom-right-radius: 10px; border-top-left-radius: 10px; border-top-right-radius: 10px; flex: none; height: 455px; overflow: hidden; position: relative; width: 667px; will-change: var(--framer-will-change-override, transform); }\",\".framer-NgGR6 .framer-hfcpnc { border-bottom-left-radius: 10px; border-bottom-right-radius: 10px; border-top-left-radius: 10px; border-top-right-radius: 10px; flex: none; height: 621px; overflow: visible; position: relative; width: 561px; }\",\".framer-NgGR6 .framer-m6wq2j { border-bottom-left-radius: 10px; border-bottom-right-radius: 10px; border-top-left-radius: 10px; border-top-right-radius: 10px; flex: none; height: 538px; overflow: hidden; position: relative; width: 678px; will-change: var(--framer-will-change-override, transform); }\",\".framer-NgGR6 .framer-1h4ihpk { border-bottom-left-radius: 10px; border-bottom-right-radius: 10px; border-top-left-radius: 10px; border-top-right-radius: 10px; flex: none; height: 434px; overflow: visible; position: relative; width: 699px; }\",\".framer-NgGR6 .framer-1e8fwm0 { border-bottom-left-radius: 10px; border-bottom-right-radius: 10px; border-top-left-radius: 10px; border-top-right-radius: 10px; flex: none; height: 625px; overflow: visible; position: relative; width: 685px; }\",\".framer-NgGR6 .framer-14yeywx { align-content: center; align-items: center; background-color: var(--token-cf452b9e-a6a8-44b5-a205-de3324b8b22a, #f7f7f7); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 42px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 69px 40px 69px 40px; position: relative; width: 100%; }\",\".framer-NgGR6 .framer-1rj77ux, .framer-NgGR6 .framer-qj1jsr { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; padding: 0px; position: relative; width: 100%; }\",\".framer-NgGR6 .framer-1oz7rbd { flex: none; height: auto; max-width: 716px; overflow: visible; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-NgGR6 .framer-1hg4mjs { flex: none; height: auto; max-width: 539px; overflow: visible; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-NgGR6 .framer-v8q05y { --border-bottom-width: 10px; --border-color: var(--token-fe72c105-d895-4e74-a601-6f4ce865a0e7, #222222); --border-left-width: 3px; --border-right-width: 3px; --border-style: solid; --border-top-width: 3px; align-content: center; align-items: center; aspect-ratio: 1.759213759213759 / 1; 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: wrap; gap: 20px; height: var(--framer-aspect-ratio-supported, 583px); justify-content: center; max-width: 1200px; overflow: hidden; padding: 0px; position: relative; width: 1026px; will-change: var(--framer-will-change-override, transform); }\",\".framer-NgGR6 .framer-1sc6zuu-container { flex: 1 0 0px; height: 100%; position: relative; width: 1px; }\",\".framer-NgGR6 .framer-ccgd41 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 17px; height: 40px; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-NgGR6 .framer-btxrk4 { --border-bottom-width: 10px; --border-color: var(--token-fe72c105-d895-4e74-a601-6f4ce865a0e7, #222222); --border-left-width: 3px; --border-right-width: 3px; --border-style: solid; --border-top-width: 3px; 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: 60px; height: min-content; justify-content: center; max-width: 1200px; overflow: visible; padding: 50px; position: relative; width: 694px; }\",\".framer-NgGR6 .framer-4av0w7 { align-content: center; align-items: center; background-color: var(--token-cf452b9e-a6a8-44b5-a205-de3324b8b22a, #f7f7f7); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 60px; height: min-content; justify-content: flex-start; overflow: visible; padding: 99px 40px 99px 40px; position: relative; width: 100%; }\",\".framer-NgGR6 .framer-wnbz0n { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; max-width: 1200px; padding: 0px; position: relative; width: 100%; }\",\".framer-NgGR6 .framer-ffmc8z { bottom: 53px; flex: none; left: 827px; overflow: visible; position: absolute; right: 151px; top: 7px; z-index: 1; }\",\".framer-NgGR6 .framer-1yj1wbi { flex: none; height: auto; max-width: 619px; overflow: visible; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-NgGR6 .framer-3lkbr0 { flex: none; height: auto; max-width: 589px; overflow: visible; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-NgGR6 .framer-1cx6qz5 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: wrap; gap: 20px; height: min-content; justify-content: center; max-width: 1000px; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-NgGR6 .framer-k9l0dm { --border-bottom-width: 10px; --border-color: var(--token-fe72c105-d895-4e74-a601-6f4ce865a0e7, #222222); --border-left-width: 3px; --border-right-width: 3px; --border-style: solid; --border-top-width: 3px; align-content: flex-start; align-items: flex-start; 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: 20px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 54px 30px 54px 30px; position: relative; width: 328px; will-change: var(--framer-will-change-override, transform); }\",\".framer-NgGR6 .framer-182mwgb, .framer-NgGR6 .framer-1dc0vzq, .framer-NgGR6 .framer-y6akyf, .framer-NgGR6 .framer-66zi2w, .framer-NgGR6 .framer-3r8yy0, .framer-NgGR6 .framer-swn318, .framer-NgGR6 .framer-hl4dxg, .framer-NgGR6 .framer-15ypyw5, .framer-NgGR6 .framer-93l1oc, .framer-NgGR6 .framer-1vsupew, .framer-NgGR6 .framer-t7giqq, .framer-NgGR6 .framer-c1i8io, .framer-NgGR6 .framer-1vo86zr { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; --framer-paragraph-spacing: 0px; flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-NgGR6 .framer-1xl283s, .framer-NgGR6 .framer-1uarpg4 { align-content: flex-end; align-items: flex-end; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-NgGR6 .framer-1coal0w { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-NgGR6 .framer-2hlaql, .framer-NgGR6 .framer-cd8mm { 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: visible; padding: 20px 0px 20px 0px; position: relative; width: 100%; }\",\".framer-NgGR6 .framer-1kec2w4, .framer-NgGR6 .framer-gkz8q1, .framer-NgGR6 .framer-11ofosj, .framer-NgGR6 .framer-1duu1lu, .framer-NgGR6 .framer-15up9fa, .framer-NgGR6 .framer-15wh9w7, .framer-NgGR6 .framer-1ye2cqd, .framer-NgGR6 .framer-1rcfp9s { 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: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-NgGR6 .framer-1v80n1z, .framer-NgGR6 .framer-1n1nvvn, .framer-NgGR6 .framer-1e0ublg, .framer-NgGR6 .framer-14zrojv { flex: none; height: 24px; position: relative; width: 24px; }\",\".framer-NgGR6.framer-1a34p1v { background-color: rgba(0, 0, 0, 0.8); inset: 0px; position: fixed; user-select: none; z-index: 6; }\",\".framer-NgGR6.framer-ckdkv4-container { flex: none; height: 91%; left: calc(50.00000000000002% - 667px / 2); position: fixed; top: calc(49.25000000000002% - 91% / 2); width: 667px; z-index: 6; }\",\".framer-NgGR6 .framer-10tbefq { --border-bottom-width: 2px; --border-color: #222222; --border-left-width: 2px; --border-right-width: 2px; --border-style: solid; --border-top-width: 2px; align-content: flex-start; align-items: flex-start; background-color: var(--token-fe72c105-d895-4e74-a601-6f4ce865a0e7, #222222); border-bottom-left-radius: 10px; border-bottom-right-radius: 10px; border-top-left-radius: 10px; border-top-right-radius: 10px; box-shadow: 0px 0.6021873017743928px 0.6021873017743928px -1.25px rgba(0, 0, 0, 0.18), 0px 2.288533303243457px 2.288533303243457px -2.5px rgba(0, 0, 0, 0.15889), 0px 10px 10px -3.75px rgba(0, 0, 0, 0.0625); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 60px 30px 60px 30px; position: relative; width: 341px; will-change: var(--framer-will-change-override, transform); }\",\".framer-NgGR6 .framer-ht7yug, .framer-NgGR6 .framer-5kecm6, .framer-NgGR6 .framer-rk1wtk, .framer-NgGR6 .framer-1qqhhkc { background-color: rgba(0, 0, 0, 0); flex: none; height: 24px; position: relative; width: 24px; }\",\".framer-NgGR6 .framer-9cosiz { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 109px); left: 15%; overflow: visible; position: absolute; top: 3%; transform: translate(-50%, -50%); width: 109px; z-index: 1; }\",\".framer-NgGR6 .framer-rccw61-container { flex: none; height: auto; position: relative; width: auto; }\",\".framer-NgGR6 .framer-d1x7bj { align-content: flex-start; align-items: flex-start; background-color: var(--token-cf452b9e-a6a8-44b5-a205-de3324b8b22a, #f7f7f7); display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 49px; height: min-content; justify-content: center; overflow: visible; padding: 63px 40px 63px 40px; position: relative; width: 100%; z-index: 2; }\",\".framer-NgGR6 .framer-1fzazgz { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 23px; height: min-content; justify-content: flex-start; max-width: 1200px; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-NgGR6 .framer-a7akii { align-content: flex-start; align-items: flex-start; display: flex; flex: 0.8 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: flex-start; padding: 0px; position: sticky; top: 20px; width: 1px; z-index: 1; }\",\".framer-NgGR6 .framer-11utsto { align-content: flex-start; align-items: flex-start; background-color: var(--token-d009c66a-04ed-4679-b219-3f7ba5631b6f, #f2f2f2); 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: 0px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px 20px 0px 20px; position: relative; width: 1px; will-change: var(--framer-will-change-override, transform); }\",\".framer-NgGR6 .framer-t1ot6m, .framer-NgGR6 .framer-gf38lb, .framer-NgGR6 .framer-q11q5y, .framer-NgGR6 .framer-fa3w60, .framer-NgGR6 .framer-1y26pw0 { background-color: rgba(0, 0, 0, 0.05); flex: none; height: 1px; overflow: hidden; position: relative; width: 100%; }\",\".framer-NgGR6 .framer-k49cz4 { flex: none; height: 59px; overflow: hidden; position: relative; width: 390px; }\",\".framer-NgGR6 .framer-39emcf { align-content: center; align-items: center; background-color: var(--token-cf452b9e-a6a8-44b5-a205-de3324b8b22a, #f7f7f7); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 57px; height: min-content; justify-content: center; overflow: hidden; padding: 70px 60px 70px 60px; position: relative; width: 100%; z-index: 2; }\",\".framer-NgGR6 .framer-191u6tx { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 127px; height: min-content; justify-content: center; max-width: 1080px; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-NgGR6 .framer-1pnf2r0 { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 847px; word-break: break-word; word-wrap: break-word; }\",\".framer-NgGR6 .framer-12rdd67 { --framer-custom-cursors: pointer; flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-NgGR6 .framer-1mpm5el { display: grid; flex: none; gap: 50px; grid-auto-rows: minmax(0, 1fr); grid-template-columns: repeat(2, minmax(200px, 1fr)); height: min-content; justify-content: center; max-width: 1080px; padding: 0px; position: relative; width: 100%; }\",\".framer-NgGR6 .framer-lkouft { align-content: center; align-items: center; align-self: start; 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: none; flex-direction: column; flex-wrap: wrap; gap: 0px; height: 100%; justify-content: flex-start; justify-self: start; padding: 0px; position: relative; text-decoration: none; width: 100%; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-NgGR6 .framer-1t31v3h { --border-bottom-width: 3px; --border-color: #222222; --border-left-width: 3px; --border-right-width: 3px; --border-style: solid; --border-top-width: 3px; align-content: center; align-items: center; background-color: var(--token-fe72c105-d895-4e74-a601-6f4ce865a0e7, #222222); border-bottom-left-radius: 10px; border-bottom-right-radius: 10px; border-top-left-radius: 10px; border-top-right-radius: 10px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 329px; justify-content: center; overflow: hidden; padding: 0px 0px 10px 0px; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-NgGR6 .framer-1ranw9m { border-bottom-left-radius: 10px; border-bottom-right-radius: 10px; border-top-left-radius: 10px; border-top-right-radius: 10px; flex: 1 0 0px; height: 100%; position: relative; width: 1px; }\",\".framer-NgGR6 .framer-ntl3ua { align-content: flex-start; align-items: flex-start; border-bottom-left-radius: 10px; border-bottom-right-radius: 10px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 25px; height: min-content; justify-content: flex-start; min-width: 200px; padding: 20px 0px 20px 0px; position: relative; width: 100%; }\",\".framer-NgGR6 .framer-1wpvryj { flex: 1 0 0px; height: auto; position: relative; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; }\",\".framer-NgGR6 .framer-p6y2fp-container { bottom: -56px; flex: none; height: auto; left: 50%; position: absolute; transform: translateX(-50%); width: auto; }\",\".framer-NgGR6 .framer-2bmfba { align-content: center; align-items: center; background-color: var(--token-cf452b9e-a6a8-44b5-a205-de3324b8b22a, #f7f7f7); border-bottom-left-radius: 20px; border-bottom-right-radius: 20px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 51px; height: 70vh; justify-content: center; overflow: hidden; padding: 119px 80px 140px 80px; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); z-index: 2; }\",\".framer-NgGR6 .framer-i9jcfj { flex: none; height: auto; max-width: 694px; overflow: visible; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-NgGR6 .framer-iv0c1e { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 57px; height: 68vh; justify-content: center; overflow: hidden; padding: 70px 60px 70px 60px; pointer-events: none; position: relative; width: 100%; z-index: 2; }\",\"@supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-NgGR6.framer-qw8wk6, .framer-NgGR6 .framer-kliehl, .framer-NgGR6 .framer-oso0u6, .framer-NgGR6 .framer-xk8b9y, .framer-NgGR6 .framer-1j6pdi8, .framer-NgGR6 .framer-13j5iqj, .framer-NgGR6 .framer-6uj306, .framer-NgGR6 .framer-4gtask, .framer-NgGR6 .framer-1b6qspf, .framer-NgGR6 .framer-3dmzsy, .framer-NgGR6 .framer-f9jo1k, .framer-NgGR6 .framer-ufcr94, .framer-NgGR6 .framer-1ojsch4, .framer-NgGR6 .framer-1sk4gz0, .framer-NgGR6 .framer-1mkw1fd, .framer-NgGR6 .framer-88uq8g, .framer-NgGR6 .framer-cgsr62, .framer-NgGR6 .framer-1v5of39, .framer-NgGR6 .framer-dtrywi, .framer-NgGR6 .framer-nujarz, .framer-NgGR6 .framer-8scjsd, .framer-NgGR6 .framer-oeacjw, .framer-NgGR6 .framer-121w0z2, .framer-NgGR6 .framer-1tm9kyc, .framer-NgGR6 .framer-6bvvjr, .framer-NgGR6 .framer-1v4lmci, .framer-NgGR6 .framer-nj9o5y, .framer-NgGR6 .framer-1rfukrp, .framer-NgGR6 .framer-1lxq8m8, .framer-NgGR6 .framer-18i07rf, .framer-NgGR6 .framer-1lklvjh, .framer-NgGR6 .framer-1kwvmnm, .framer-NgGR6 .framer-dx4qvh, .framer-NgGR6 .framer-fnh9rr, .framer-NgGR6 .framer-twy73y, .framer-NgGR6 .framer-dze5gc, .framer-NgGR6 .framer-4m5wgr, .framer-NgGR6 .framer-12ditc1, .framer-NgGR6 .framer-14yeywx, .framer-NgGR6 .framer-1rj77ux, .framer-NgGR6 .framer-v8q05y, .framer-NgGR6 .framer-ccgd41, .framer-NgGR6 .framer-16iqtxb, .framer-NgGR6 .framer-btxrk4, .framer-NgGR6 .framer-4av0w7, .framer-NgGR6 .framer-wnbz0n, .framer-NgGR6 .framer-1cx6qz5, .framer-NgGR6 .framer-k9l0dm, .framer-NgGR6 .framer-1xl283s, .framer-NgGR6 .framer-2hlaql, .framer-NgGR6 .framer-1kec2w4, .framer-NgGR6 .framer-gkz8q1, .framer-NgGR6 .framer-11ofosj, .framer-NgGR6 .framer-1duu1lu, .framer-NgGR6 .framer-10tbefq, .framer-NgGR6 .framer-1uarpg4, .framer-NgGR6 .framer-cd8mm, .framer-NgGR6 .framer-15up9fa, .framer-NgGR6 .framer-15wh9w7, .framer-NgGR6 .framer-1ye2cqd, .framer-NgGR6 .framer-1rcfp9s, .framer-NgGR6 .framer-d1x7bj, .framer-NgGR6 .framer-1fzazgz, .framer-NgGR6 .framer-a7akii, .framer-NgGR6 .framer-11utsto, .framer-NgGR6 .framer-39emcf, .framer-NgGR6 .framer-191u6tx, .framer-NgGR6 .framer-lkouft, .framer-NgGR6 .framer-1t31v3h, .framer-NgGR6 .framer-ntl3ua, .framer-NgGR6 .framer-2bmfba, .framer-NgGR6 .framer-qj1jsr, .framer-NgGR6 .framer-iv0c1e { gap: 0px; } .framer-NgGR6.framer-qw8wk6 > *, .framer-NgGR6 .framer-4gtask > *, .framer-NgGR6 .framer-11utsto > *, .framer-NgGR6 .framer-lkouft > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-NgGR6.framer-qw8wk6 > :first-child, .framer-NgGR6 .framer-kliehl > :first-child, .framer-NgGR6 .framer-xk8b9y > :first-child, .framer-NgGR6 .framer-4gtask > :first-child, .framer-NgGR6 .framer-1b6qspf > :first-child, .framer-NgGR6 .framer-f9jo1k > :first-child, .framer-NgGR6 .framer-ufcr94 > :first-child, .framer-NgGR6 .framer-1ojsch4 > :first-child, .framer-NgGR6 .framer-1sk4gz0 > :first-child, .framer-NgGR6 .framer-1mkw1fd > :first-child, .framer-NgGR6 .framer-88uq8g > :first-child, .framer-NgGR6 .framer-cgsr62 > :first-child, .framer-NgGR6 .framer-1v5of39 > :first-child, .framer-NgGR6 .framer-dtrywi > :first-child, .framer-NgGR6 .framer-nujarz > :first-child, .framer-NgGR6 .framer-8scjsd > :first-child, .framer-NgGR6 .framer-oeacjw > :first-child, .framer-NgGR6 .framer-1tm9kyc > :first-child, .framer-NgGR6 .framer-1v4lmci > :first-child, .framer-NgGR6 .framer-1rfukrp > :first-child, .framer-NgGR6 .framer-18i07rf > :first-child, .framer-NgGR6 .framer-1kwvmnm > :first-child, .framer-NgGR6 .framer-fnh9rr > :first-child, .framer-NgGR6 .framer-dze5gc > :first-child, .framer-NgGR6 .framer-12ditc1 > :first-child, .framer-NgGR6 .framer-14yeywx > :first-child, .framer-NgGR6 .framer-1rj77ux > :first-child, .framer-NgGR6 .framer-16iqtxb > :first-child, .framer-NgGR6 .framer-btxrk4 > :first-child, .framer-NgGR6 .framer-4av0w7 > :first-child, .framer-NgGR6 .framer-wnbz0n > :first-child, .framer-NgGR6 .framer-k9l0dm > :first-child, .framer-NgGR6 .framer-2hlaql > :first-child, .framer-NgGR6 .framer-10tbefq > :first-child, .framer-NgGR6 .framer-cd8mm > :first-child, .framer-NgGR6 .framer-a7akii > :first-child, .framer-NgGR6 .framer-11utsto > :first-child, .framer-NgGR6 .framer-39emcf > :first-child, .framer-NgGR6 .framer-lkouft > :first-child, .framer-NgGR6 .framer-2bmfba > :first-child, .framer-NgGR6 .framer-qj1jsr > :first-child, .framer-NgGR6 .framer-iv0c1e > :first-child { margin-top: 0px; } .framer-NgGR6.framer-qw8wk6 > :last-child, .framer-NgGR6 .framer-kliehl > :last-child, .framer-NgGR6 .framer-xk8b9y > :last-child, .framer-NgGR6 .framer-4gtask > :last-child, .framer-NgGR6 .framer-1b6qspf > :last-child, .framer-NgGR6 .framer-f9jo1k > :last-child, .framer-NgGR6 .framer-ufcr94 > :last-child, .framer-NgGR6 .framer-1ojsch4 > :last-child, .framer-NgGR6 .framer-1sk4gz0 > :last-child, .framer-NgGR6 .framer-1mkw1fd > :last-child, .framer-NgGR6 .framer-88uq8g > :last-child, .framer-NgGR6 .framer-cgsr62 > :last-child, .framer-NgGR6 .framer-1v5of39 > :last-child, .framer-NgGR6 .framer-dtrywi > :last-child, .framer-NgGR6 .framer-nujarz > :last-child, .framer-NgGR6 .framer-8scjsd > :last-child, .framer-NgGR6 .framer-oeacjw > :last-child, .framer-NgGR6 .framer-1tm9kyc > :last-child, .framer-NgGR6 .framer-1v4lmci > :last-child, .framer-NgGR6 .framer-1rfukrp > :last-child, .framer-NgGR6 .framer-18i07rf > :last-child, .framer-NgGR6 .framer-1kwvmnm > :last-child, .framer-NgGR6 .framer-fnh9rr > :last-child, .framer-NgGR6 .framer-dze5gc > :last-child, .framer-NgGR6 .framer-12ditc1 > :last-child, .framer-NgGR6 .framer-14yeywx > :last-child, .framer-NgGR6 .framer-1rj77ux > :last-child, .framer-NgGR6 .framer-16iqtxb > :last-child, .framer-NgGR6 .framer-btxrk4 > :last-child, .framer-NgGR6 .framer-4av0w7 > :last-child, .framer-NgGR6 .framer-wnbz0n > :last-child, .framer-NgGR6 .framer-k9l0dm > :last-child, .framer-NgGR6 .framer-2hlaql > :last-child, .framer-NgGR6 .framer-10tbefq > :last-child, .framer-NgGR6 .framer-cd8mm > :last-child, .framer-NgGR6 .framer-a7akii > :last-child, .framer-NgGR6 .framer-11utsto > :last-child, .framer-NgGR6 .framer-39emcf > :last-child, .framer-NgGR6 .framer-lkouft > :last-child, .framer-NgGR6 .framer-2bmfba > :last-child, .framer-NgGR6 .framer-qj1jsr > :last-child, .framer-NgGR6 .framer-iv0c1e > :last-child { margin-bottom: 0px; } .framer-NgGR6 .framer-kliehl > * { margin: 0px; margin-bottom: calc(61px / 2); margin-top: calc(61px / 2); } .framer-NgGR6 .framer-oso0u6 > *, .framer-NgGR6 .framer-1kec2w4 > *, .framer-NgGR6 .framer-gkz8q1 > *, .framer-NgGR6 .framer-11ofosj > *, .framer-NgGR6 .framer-1duu1lu > *, .framer-NgGR6 .framer-15up9fa > *, .framer-NgGR6 .framer-15wh9w7 > *, .framer-NgGR6 .framer-1ye2cqd > *, .framer-NgGR6 .framer-1rcfp9s > *, .framer-NgGR6 .framer-1t31v3h > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-NgGR6 .framer-oso0u6 > :first-child, .framer-NgGR6 .framer-1j6pdi8 > :first-child, .framer-NgGR6 .framer-13j5iqj > :first-child, .framer-NgGR6 .framer-6uj306 > :first-child, .framer-NgGR6 .framer-3dmzsy > :first-child, .framer-NgGR6 .framer-121w0z2 > :first-child, .framer-NgGR6 .framer-6bvvjr > :first-child, .framer-NgGR6 .framer-nj9o5y > :first-child, .framer-NgGR6 .framer-1lxq8m8 > :first-child, .framer-NgGR6 .framer-1lklvjh > :first-child, .framer-NgGR6 .framer-dx4qvh > :first-child, .framer-NgGR6 .framer-twy73y > :first-child, .framer-NgGR6 .framer-4m5wgr > :first-child, .framer-NgGR6 .framer-v8q05y > :first-child, .framer-NgGR6 .framer-ccgd41 > :first-child, .framer-NgGR6 .framer-1cx6qz5 > :first-child, .framer-NgGR6 .framer-1xl283s > :first-child, .framer-NgGR6 .framer-1kec2w4 > :first-child, .framer-NgGR6 .framer-gkz8q1 > :first-child, .framer-NgGR6 .framer-11ofosj > :first-child, .framer-NgGR6 .framer-1duu1lu > :first-child, .framer-NgGR6 .framer-1uarpg4 > :first-child, .framer-NgGR6 .framer-15up9fa > :first-child, .framer-NgGR6 .framer-15wh9w7 > :first-child, .framer-NgGR6 .framer-1ye2cqd > :first-child, .framer-NgGR6 .framer-1rcfp9s > :first-child, .framer-NgGR6 .framer-d1x7bj > :first-child, .framer-NgGR6 .framer-1fzazgz > :first-child, .framer-NgGR6 .framer-191u6tx > :first-child, .framer-NgGR6 .framer-1t31v3h > :first-child, .framer-NgGR6 .framer-ntl3ua > :first-child { margin-left: 0px; } .framer-NgGR6 .framer-oso0u6 > :last-child, .framer-NgGR6 .framer-1j6pdi8 > :last-child, .framer-NgGR6 .framer-13j5iqj > :last-child, .framer-NgGR6 .framer-6uj306 > :last-child, .framer-NgGR6 .framer-3dmzsy > :last-child, .framer-NgGR6 .framer-121w0z2 > :last-child, .framer-NgGR6 .framer-6bvvjr > :last-child, .framer-NgGR6 .framer-nj9o5y > :last-child, .framer-NgGR6 .framer-1lxq8m8 > :last-child, .framer-NgGR6 .framer-1lklvjh > :last-child, .framer-NgGR6 .framer-dx4qvh > :last-child, .framer-NgGR6 .framer-twy73y > :last-child, .framer-NgGR6 .framer-4m5wgr > :last-child, .framer-NgGR6 .framer-v8q05y > :last-child, .framer-NgGR6 .framer-ccgd41 > :last-child, .framer-NgGR6 .framer-1cx6qz5 > :last-child, .framer-NgGR6 .framer-1xl283s > :last-child, .framer-NgGR6 .framer-1kec2w4 > :last-child, .framer-NgGR6 .framer-gkz8q1 > :last-child, .framer-NgGR6 .framer-11ofosj > :last-child, .framer-NgGR6 .framer-1duu1lu > :last-child, .framer-NgGR6 .framer-1uarpg4 > :last-child, .framer-NgGR6 .framer-15up9fa > :last-child, .framer-NgGR6 .framer-15wh9w7 > :last-child, .framer-NgGR6 .framer-1ye2cqd > :last-child, .framer-NgGR6 .framer-1rcfp9s > :last-child, .framer-NgGR6 .framer-d1x7bj > :last-child, .framer-NgGR6 .framer-1fzazgz > :last-child, .framer-NgGR6 .framer-191u6tx > :last-child, .framer-NgGR6 .framer-1t31v3h > :last-child, .framer-NgGR6 .framer-ntl3ua > :last-child { margin-right: 0px; } .framer-NgGR6 .framer-xk8b9y > * { margin: 0px; margin-bottom: calc(23px / 2); margin-top: calc(23px / 2); } .framer-NgGR6 .framer-1j6pdi8 > * { margin: 0px; margin-left: calc(18px / 2); margin-right: calc(18px / 2); } .framer-NgGR6 .framer-13j5iqj > * { margin: 0px; margin-left: calc(16px / 2); margin-right: calc(16px / 2); } .framer-NgGR6 .framer-6uj306 > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } .framer-NgGR6 .framer-1b6qspf > * { margin: 0px; margin-bottom: calc(3px / 2); margin-top: calc(3px / 2); } .framer-NgGR6 .framer-3dmzsy > * { margin: 0px; margin-left: calc(4px / 2); margin-right: calc(4px / 2); } .framer-NgGR6 .framer-f9jo1k > *, .framer-NgGR6 .framer-dtrywi > * { margin: 0px; margin-bottom: calc(45px / 2); margin-top: calc(45px / 2); } .framer-NgGR6 .framer-ufcr94 > *, .framer-NgGR6 .framer-1ojsch4 > *, .framer-NgGR6 .framer-1sk4gz0 > *, .framer-NgGR6 .framer-1mkw1fd > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } .framer-NgGR6 .framer-88uq8g > * { margin: 0px; margin-bottom: calc(96px / 2); margin-top: calc(96px / 2); } .framer-NgGR6 .framer-cgsr62 > * { margin: 0px; margin-bottom: calc(50px / 2); margin-top: calc(50px / 2); } .framer-NgGR6 .framer-1v5of39 > * { margin: 0px; margin-bottom: calc(75px / 2); margin-top: calc(75px / 2); } .framer-NgGR6 .framer-nujarz > *, .framer-NgGR6 .framer-16iqtxb > * { margin: 0px; margin-bottom: calc(54px / 2); margin-top: calc(54px / 2); } .framer-NgGR6 .framer-8scjsd > *, .framer-NgGR6 .framer-btxrk4 > *, .framer-NgGR6 .framer-4av0w7 > * { margin: 0px; margin-bottom: calc(60px / 2); margin-top: calc(60px / 2); } .framer-NgGR6 .framer-oeacjw > * { margin: 0px; margin-bottom: calc(63px / 2); margin-top: calc(63px / 2); } .framer-NgGR6 .framer-121w0z2 > *, .framer-NgGR6 .framer-6bvvjr > *, .framer-NgGR6 .framer-nj9o5y > *, .framer-NgGR6 .framer-1lxq8m8 > *, .framer-NgGR6 .framer-1lklvjh > *, .framer-NgGR6 .framer-dx4qvh > *, .framer-NgGR6 .framer-twy73y > *, .framer-NgGR6 .framer-4m5wgr > * { margin: 0px; margin-left: calc(61px / 2); margin-right: calc(61px / 2); } .framer-NgGR6 .framer-1tm9kyc > *, .framer-NgGR6 .framer-1v4lmci > *, .framer-NgGR6 .framer-1rfukrp > *, .framer-NgGR6 .framer-18i07rf > *, .framer-NgGR6 .framer-1kwvmnm > *, .framer-NgGR6 .framer-fnh9rr > *, .framer-NgGR6 .framer-dze5gc > *, .framer-NgGR6 .framer-12ditc1 > *, .framer-NgGR6 .framer-1rj77ux > *, .framer-NgGR6 .framer-wnbz0n > *, .framer-NgGR6 .framer-k9l0dm > *, .framer-NgGR6 .framer-10tbefq > *, .framer-NgGR6 .framer-a7akii > *, .framer-NgGR6 .framer-qj1jsr > * { margin: 0px; margin-bottom: calc(20px / 2); margin-top: calc(20px / 2); } .framer-NgGR6 .framer-14yeywx > * { margin: 0px; margin-bottom: calc(42px / 2); margin-top: calc(42px / 2); } .framer-NgGR6 .framer-v8q05y > *, .framer-NgGR6 .framer-1cx6qz5 > * { margin: 0px; margin-left: calc(20px / 2); margin-right: calc(20px / 2); } .framer-NgGR6 .framer-ccgd41 > * { margin: 0px; margin-left: calc(17px / 2); margin-right: calc(17px / 2); } .framer-NgGR6 .framer-1xl283s > *, .framer-NgGR6 .framer-1uarpg4 > * { margin: 0px; margin-left: calc(8px / 2); margin-right: calc(8px / 2); } .framer-NgGR6 .framer-2hlaql > *, .framer-NgGR6 .framer-cd8mm > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-NgGR6 .framer-d1x7bj > * { margin: 0px; margin-left: calc(49px / 2); margin-right: calc(49px / 2); } .framer-NgGR6 .framer-1fzazgz > * { margin: 0px; margin-left: calc(23px / 2); margin-right: calc(23px / 2); } .framer-NgGR6 .framer-39emcf > *, .framer-NgGR6 .framer-iv0c1e > * { margin: 0px; margin-bottom: calc(57px / 2); margin-top: calc(57px / 2); } .framer-NgGR6 .framer-191u6tx > * { margin: 0px; margin-left: calc(127px / 2); margin-right: calc(127px / 2); } .framer-NgGR6 .framer-ntl3ua > * { margin: 0px; margin-left: calc(25px / 2); margin-right: calc(25px / 2); } .framer-NgGR6 .framer-2bmfba > * { margin: 0px; margin-bottom: calc(51px / 2); margin-top: calc(51px / 2); } }\",...sharedStyle.css,...sharedStyle1.css,...sharedStyle2.css,...sharedStyle3.css,...sharedStyle4.css,...sharedStyle5.css,...sharedStyle6.css,...sharedStyle7.css,...sharedStyle8.css,...sharedStyle9.css,...sharedStyle10.css,...sharedStyle11.css,'.framer-NgGR6[data-border=\"true\"]::after, .framer-NgGR6 [data-border=\"true\"]::after { content: \"\"; border-width: var(--border-top-width, 0) var(--border-right-width, 0) var(--border-bottom-width, 0) var(--border-left-width, 0); border-color: var(--border-color, none); border-style: var(--border-style, none); width: 100%; height: 100%; position: absolute; box-sizing: border-box; left: 0; top: 0; border-radius: inherit; pointer-events: none; }',\"@media (min-width: 810px) and (max-width: 1199px) { .framer-NgGR6.framer-qw8wk6 { width: 810px; } .framer-NgGR6 .framer-1gxo2sw-container { order: 0; } .framer-NgGR6 .framer-kliehl { order: 2; } .framer-NgGR6 .framer-xlxlnl { max-width: 462px; } .framer-NgGR6 .framer-13j5iqj { justify-content: center; width: 100%; } .framer-NgGR6 .framer-f9jo1k { height: 64.89493201483313vh; } .framer-NgGR6 .framer-spfuum-container { height: var(--framer-aspect-ratio-supported, 494px); width: 741px; } .framer-NgGR6 .framer-1w23fch-container { order: 1; } .framer-NgGR6 .framer-88uq8g { order: 3; padding: 70px 40px 70px 40px; } .framer-NgGR6 .framer-nujarz { order: 4; padding: 46px 40px 46px 40px; } .framer-NgGR6 .framer-8scjsd, .framer-NgGR6 .framer-btxrk4 { width: 100%; } .framer-NgGR6 .framer-oeacjw { order: 5; } .framer-NgGR6 .framer-121w0z2, .framer-NgGR6 .framer-6bvvjr, .framer-NgGR6 .framer-nj9o5y, .framer-NgGR6 .framer-1lxq8m8, .framer-NgGR6 .framer-1lklvjh, .framer-NgGR6 .framer-dx4qvh, .framer-NgGR6 .framer-twy73y, .framer-NgGR6 .framer-4m5wgr { flex-wrap: wrap; width: 100%; } .framer-NgGR6 .framer-1tm9kyc { align-self: unset; height: min-content; } .framer-NgGR6 .framer-v75iov { flex: 1 0 0px; height: 309px; width: 1px; } .framer-NgGR6 .framer-1tufa7w { flex: 1 0 0px; height: 279px; width: 1px; } .framer-NgGR6 .framer-lfqzmy { flex: 1 0 0px; height: 384px; width: 1px; } .framer-NgGR6 .framer-o9utia { flex: 1 0 0px; height: 445px; width: 1px; } .framer-NgGR6 .framer-hfcpnc, .framer-NgGR6 .framer-1h4ihpk { flex: 1 0 0px; height: 292px; width: 1px; } .framer-NgGR6 .framer-m6wq2j { flex: 1 0 0px; height: 376px; width: 1px; } .framer-NgGR6 .framer-1e8fwm0 { flex: 1 0 0px; height: 336px; width: 1px; } .framer-NgGR6 .framer-14yeywx { order: 6; padding: 80px 40px 80px 40px; } .framer-NgGR6 .framer-v8q05y { height: var(--framer-aspect-ratio-supported, 379px); width: 668px; } .framer-NgGR6 .framer-16iqtxb { padding: 46px 40px 46px 40px; } .framer-NgGR6 .framer-4av0w7 { order: 8; padding: 48px 40px 48px 40px; } .framer-NgGR6 .framer-ffmc8z { bottom: 66px; left: 556px; right: 20px; top: -14px; } .framer-NgGR6 .framer-k9l0dm, .framer-NgGR6 .framer-10tbefq, .framer-NgGR6 .framer-1pnf2r0 { flex: 1 0 0px; width: 1px; } .framer-NgGR6 .framer-9cosiz { left: 8%; top: -3%; } .framer-NgGR6 .framer-d1x7bj { flex-direction: column; gap: 33px; order: 9; } .framer-NgGR6 .framer-1fzazgz { flex: none; flex-direction: column; gap: 49px; width: 100%; } .framer-NgGR6 .framer-a7akii { flex: none; position: relative; top: unset; width: 100%; } .framer-NgGR6 .framer-11utsto { flex: none; width: 100%; } .framer-NgGR6 .framer-39emcf { order: 11; } .framer-NgGR6 .framer-1t31v3h { height: 215px; } .framer-NgGR6 .framer-2bmfba { height: min-content; order: 12; padding: 54px 80px 54px 80px; } .framer-NgGR6 .framer-iv0c1e { height: min-content; min-height: 714px; order: 13; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-NgGR6 .framer-d1x7bj, .framer-NgGR6 .framer-1fzazgz { gap: 0px; } .framer-NgGR6 .framer-d1x7bj > * { margin: 0px; margin-bottom: calc(33px / 2); margin-top: calc(33px / 2); } .framer-NgGR6 .framer-d1x7bj > :first-child, .framer-NgGR6 .framer-1fzazgz > :first-child { margin-top: 0px; } .framer-NgGR6 .framer-d1x7bj > :last-child, .framer-NgGR6 .framer-1fzazgz > :last-child { margin-bottom: 0px; } .framer-NgGR6 .framer-1fzazgz > * { margin: 0px; margin-bottom: calc(49px / 2); margin-top: calc(49px / 2); } }}\",\"@media (max-width: 809px) { .framer-NgGR6.framer-qw8wk6 { width: 390px; } .framer-NgGR6 .framer-1gxo2sw-container, .framer-NgGR6 .framer-oso0u6, .framer-NgGR6 .framer-1bgk0t6-container { order: 0; } .framer-NgGR6 .framer-kliehl { gap: 35px; order: 2; padding: 40px 20px 40px 20px; } .framer-NgGR6 .framer-1696n9t { height: 53px; width: 50px; } .framer-NgGR6 .framer-lk1g2g { height: var(--framer-aspect-ratio-supported, 49px); width: 62px; } .framer-NgGR6 .framer-xk8b9y { gap: 19px; order: 1; } .framer-NgGR6 .framer-xlxlnl, .framer-NgGR6 .framer-s3qfd2 { max-width: unset; width: 100%; } .framer-NgGR6 .framer-1j6pdi8, .framer-NgGR6 .framer-ccgd41 { flex-direction: column; height: min-content; order: 2; } .framer-NgGR6 .framer-1su93o6-container { height: 50px; } .framer-NgGR6 .framer-13j5iqj { flex-direction: column; order: 3; width: 100%; } .framer-NgGR6 .framer-4gtask { align-content: center; align-items: center; gap: 2px; } .framer-NgGR6 .framer-f9jo1k { order: 4; padding: 0px 20px 0px 20px; } .framer-NgGR6 .framer-spfuum-container { height: var(--framer-aspect-ratio-supported, 231px); width: 347px; } .framer-NgGR6 .framer-1w23fch-container { bottom: unset; height: auto; left: unset; order: 13; position: relative; right: unset; width: 390px; } .framer-NgGR6 .framer-88uq8g { gap: 53px; order: 3; padding: 42px 20px 42px 20px; } .framer-NgGR6 .framer-cgsr62 { gap: 30px; order: 1; } .framer-NgGR6 .framer-1v5of39 { gap: 79px; order: 0; } .framer-NgGR6 .framer-dtrywi { gap: 25px; } .framer-NgGR6 .framer-1gxykiw, .framer-NgGR6 .framer-k9l0dm, .framer-NgGR6 .framer-10tbefq { width: 100%; } .framer-NgGR6 .framer-nujarz { gap: 41px; order: 4; padding: 62px 20px 0px 20px; } .framer-NgGR6 .framer-8scjsd, .framer-NgGR6 .framer-btxrk4 { --border-bottom-width: unset; --border-left-width: unset; --border-right-width: unset; --border-top-width: unset; background-color: var(--token-cf452b9e-a6a8-44b5-a205-de3324b8b22a, #f7f7f7); gap: 36px; order: 0; padding: 0px; width: 100%; } .framer-NgGR6 .framer-oeacjw { align-content: flex-start; align-items: flex-start; gap: 96px; order: 5; padding: 36px 20px 70px 20px; } .framer-NgGR6 .framer-121w0z2 { align-content: flex-start; align-items: flex-start; flex-direction: column; gap: 48px; order: 0; overflow: visible; width: 100%; } .framer-NgGR6 .framer-1tm9kyc, .framer-NgGR6 .framer-1rfukrp, .framer-NgGR6 .framer-1kwvmnm, .framer-NgGR6 .framer-dze5gc, .framer-NgGR6 .framer-12ditc1 { align-self: unset; flex: none; height: min-content; order: 1; width: 100%; } .framer-NgGR6 .framer-v75iov { height: 214px; order: 0; width: 100%; } .framer-NgGR6 .framer-6bvvjr { flex-direction: column; gap: 62px; order: 1; overflow: visible; width: 100%; } .framer-NgGR6 .framer-1tufa7w, .framer-NgGR6 .framer-m6wq2j { height: 321px; width: 100%; } .framer-NgGR6 .framer-1v4lmci, .framer-NgGR6 .framer-18i07rf, .framer-NgGR6 .framer-fnh9rr { align-self: unset; flex: none; height: min-content; width: 100%; } .framer-NgGR6 .framer-nj9o5y { flex-direction: column; gap: 63px; order: 2; overflow: visible; width: 100%; } .framer-NgGR6 .framer-lfqzmy { height: 316px; order: 0; width: 100%; } .framer-NgGR6 .framer-1lxq8m8 { flex-direction: column; order: 3; overflow: visible; width: 100%; } .framer-NgGR6 .framer-o9utia { height: 326px; width: 100%; } .framer-NgGR6 .framer-1lklvjh { flex-direction: column; order: 6; overflow: visible; width: 100%; } .framer-NgGR6 .framer-hfcpnc { height: 333px; order: 0; width: 100%; } .framer-NgGR6 .framer-dx4qvh { flex-direction: column; order: 5; overflow: visible; width: 100%; } .framer-NgGR6 .framer-twy73y { flex-direction: column; order: 7; overflow: visible; width: 100%; } .framer-NgGR6 .framer-1h4ihpk { height: 211px; order: 0; width: 100%; } .framer-NgGR6 .framer-4m5wgr { flex-direction: column; gap: 48px; order: 4; overflow: visible; width: 100%; } .framer-NgGR6 .framer-1e8fwm0 { height: 328px; order: 0; width: 100%; } .framer-NgGR6 .framer-14yeywx { gap: 64px; order: 6; padding: 34px 20px 34px 20px; } .framer-NgGR6 .framer-1rj77ux, .framer-NgGR6 .framer-k49cz4 { order: 1; } .framer-NgGR6 .framer-v8q05y { flex-direction: column; height: var(--framer-aspect-ratio-supported, 199px); order: 0; width: 100%; } .framer-NgGR6 .framer-1sc6zuu-container { height: 1px; order: 0; width: 100%; } .framer-NgGR6 .framer-16iqtxb { gap: 41px; order: 3; padding: 62px 20px 0px 20px; } .framer-NgGR6 .framer-4av0w7 { order: 8; padding: 89px 20px 89px 20px; } .framer-NgGR6 .framer-ffmc8z { bottom: 212px; left: 140px; right: 140px; top: -76px; } .framer-NgGR6 .framer-1cx6qz5 { flex-direction: column; } .framer-NgGR6.framer-ckdkv4-container { left: calc(49.743589743589766% - 347px / 2); width: 347px; } .framer-NgGR6 .framer-9cosiz { height: var(--framer-aspect-ratio-supported, 87px); left: 88%; top: 2%; width: 87px; } .framer-NgGR6 .framer-d1x7bj { flex-direction: column; gap: 43px; min-width: 390px; order: 9; padding: 36px 20px 120px 20px; } .framer-NgGR6 .framer-1fzazgz { flex: none; flex-direction: column; gap: 46px; width: 100%; } .framer-NgGR6 .framer-a7akii { flex: none; position: relative; top: unset; width: 100%; } .framer-NgGR6 .framer-11utsto { flex: none; width: 100%; } .framer-NgGR6 .framer-39emcf { border-bottom-left-radius: 1px; border-bottom-right-radius: 1px; border-top-left-radius: 1px; border-top-right-radius: 1px; gap: 54px; order: 10; overflow: visible; padding: 22px 20px 22px 20px; } .framer-NgGR6 .framer-191u6tx { gap: 19px; } .framer-NgGR6 .framer-1pnf2r0 { flex: 1 0 0px; width: 1px; } .framer-NgGR6 .framer-1mpm5el { gap: 30px; grid-template-columns: repeat(1, minmax(200px, 1fr)); overflow: visible; } .framer-NgGR6 .framer-lkouft { grid-row: auto / span 2; min-width: 310px; } .framer-NgGR6 .framer-1t31v3h { height: 215px; } .framer-NgGR6 .framer-2bmfba { gap: 45px; height: min-content; order: 11; overflow: visible; padding: 83px 20px 155px 20px; will-change: unset; z-index: 1; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-NgGR6 .framer-kliehl, .framer-NgGR6 .framer-xk8b9y, .framer-NgGR6 .framer-1j6pdi8, .framer-NgGR6 .framer-13j5iqj, .framer-NgGR6 .framer-4gtask, .framer-NgGR6 .framer-88uq8g, .framer-NgGR6 .framer-cgsr62, .framer-NgGR6 .framer-1v5of39, .framer-NgGR6 .framer-dtrywi, .framer-NgGR6 .framer-nujarz, .framer-NgGR6 .framer-8scjsd, .framer-NgGR6 .framer-oeacjw, .framer-NgGR6 .framer-121w0z2, .framer-NgGR6 .framer-6bvvjr, .framer-NgGR6 .framer-nj9o5y, .framer-NgGR6 .framer-1lxq8m8, .framer-NgGR6 .framer-1lklvjh, .framer-NgGR6 .framer-dx4qvh, .framer-NgGR6 .framer-twy73y, .framer-NgGR6 .framer-4m5wgr, .framer-NgGR6 .framer-14yeywx, .framer-NgGR6 .framer-v8q05y, .framer-NgGR6 .framer-ccgd41, .framer-NgGR6 .framer-16iqtxb, .framer-NgGR6 .framer-btxrk4, .framer-NgGR6 .framer-1cx6qz5, .framer-NgGR6 .framer-d1x7bj, .framer-NgGR6 .framer-1fzazgz, .framer-NgGR6 .framer-39emcf, .framer-NgGR6 .framer-191u6tx, .framer-NgGR6 .framer-1mpm5el, .framer-NgGR6 .framer-2bmfba { gap: 0px; } .framer-NgGR6 .framer-kliehl > * { margin: 0px; margin-bottom: calc(35px / 2); margin-top: calc(35px / 2); } .framer-NgGR6 .framer-kliehl > :first-child, .framer-NgGR6 .framer-xk8b9y > :first-child, .framer-NgGR6 .framer-1j6pdi8 > :first-child, .framer-NgGR6 .framer-13j5iqj > :first-child, .framer-NgGR6 .framer-4gtask > :first-child, .framer-NgGR6 .framer-88uq8g > :first-child, .framer-NgGR6 .framer-cgsr62 > :first-child, .framer-NgGR6 .framer-1v5of39 > :first-child, .framer-NgGR6 .framer-dtrywi > :first-child, .framer-NgGR6 .framer-nujarz > :first-child, .framer-NgGR6 .framer-8scjsd > :first-child, .framer-NgGR6 .framer-oeacjw > :first-child, .framer-NgGR6 .framer-121w0z2 > :first-child, .framer-NgGR6 .framer-6bvvjr > :first-child, .framer-NgGR6 .framer-nj9o5y > :first-child, .framer-NgGR6 .framer-1lxq8m8 > :first-child, .framer-NgGR6 .framer-1lklvjh > :first-child, .framer-NgGR6 .framer-dx4qvh > :first-child, .framer-NgGR6 .framer-twy73y > :first-child, .framer-NgGR6 .framer-4m5wgr > :first-child, .framer-NgGR6 .framer-14yeywx > :first-child, .framer-NgGR6 .framer-v8q05y > :first-child, .framer-NgGR6 .framer-ccgd41 > :first-child, .framer-NgGR6 .framer-16iqtxb > :first-child, .framer-NgGR6 .framer-btxrk4 > :first-child, .framer-NgGR6 .framer-1cx6qz5 > :first-child, .framer-NgGR6 .framer-d1x7bj > :first-child, .framer-NgGR6 .framer-1fzazgz > :first-child, .framer-NgGR6 .framer-39emcf > :first-child, .framer-NgGR6 .framer-2bmfba > :first-child { margin-top: 0px; } .framer-NgGR6 .framer-kliehl > :last-child, .framer-NgGR6 .framer-xk8b9y > :last-child, .framer-NgGR6 .framer-1j6pdi8 > :last-child, .framer-NgGR6 .framer-13j5iqj > :last-child, .framer-NgGR6 .framer-4gtask > :last-child, .framer-NgGR6 .framer-88uq8g > :last-child, .framer-NgGR6 .framer-cgsr62 > :last-child, .framer-NgGR6 .framer-1v5of39 > :last-child, .framer-NgGR6 .framer-dtrywi > :last-child, .framer-NgGR6 .framer-nujarz > :last-child, .framer-NgGR6 .framer-8scjsd > :last-child, .framer-NgGR6 .framer-oeacjw > :last-child, .framer-NgGR6 .framer-121w0z2 > :last-child, .framer-NgGR6 .framer-6bvvjr > :last-child, .framer-NgGR6 .framer-nj9o5y > :last-child, .framer-NgGR6 .framer-1lxq8m8 > :last-child, .framer-NgGR6 .framer-1lklvjh > :last-child, .framer-NgGR6 .framer-dx4qvh > :last-child, .framer-NgGR6 .framer-twy73y > :last-child, .framer-NgGR6 .framer-4m5wgr > :last-child, .framer-NgGR6 .framer-14yeywx > :last-child, .framer-NgGR6 .framer-v8q05y > :last-child, .framer-NgGR6 .framer-ccgd41 > :last-child, .framer-NgGR6 .framer-16iqtxb > :last-child, .framer-NgGR6 .framer-btxrk4 > :last-child, .framer-NgGR6 .framer-1cx6qz5 > :last-child, .framer-NgGR6 .framer-d1x7bj > :last-child, .framer-NgGR6 .framer-1fzazgz > :last-child, .framer-NgGR6 .framer-39emcf > :last-child, .framer-NgGR6 .framer-2bmfba > :last-child { margin-bottom: 0px; } .framer-NgGR6 .framer-xk8b9y > * { margin: 0px; margin-bottom: calc(19px / 2); margin-top: calc(19px / 2); } .framer-NgGR6 .framer-1j6pdi8 > * { margin: 0px; margin-bottom: calc(18px / 2); margin-top: calc(18px / 2); } .framer-NgGR6 .framer-13j5iqj > * { margin: 0px; margin-bottom: calc(16px / 2); margin-top: calc(16px / 2); } .framer-NgGR6 .framer-4gtask > * { margin: 0px; margin-bottom: calc(2px / 2); margin-top: calc(2px / 2); } .framer-NgGR6 .framer-88uq8g > * { margin: 0px; margin-bottom: calc(53px / 2); margin-top: calc(53px / 2); } .framer-NgGR6 .framer-cgsr62 > * { margin: 0px; margin-bottom: calc(30px / 2); margin-top: calc(30px / 2); } .framer-NgGR6 .framer-1v5of39 > * { margin: 0px; margin-bottom: calc(79px / 2); margin-top: calc(79px / 2); } .framer-NgGR6 .framer-dtrywi > * { margin: 0px; margin-bottom: calc(25px / 2); margin-top: calc(25px / 2); } .framer-NgGR6 .framer-nujarz > *, .framer-NgGR6 .framer-16iqtxb > * { margin: 0px; margin-bottom: calc(41px / 2); margin-top: calc(41px / 2); } .framer-NgGR6 .framer-8scjsd > *, .framer-NgGR6 .framer-btxrk4 > * { margin: 0px; margin-bottom: calc(36px / 2); margin-top: calc(36px / 2); } .framer-NgGR6 .framer-oeacjw > * { margin: 0px; margin-bottom: calc(96px / 2); margin-top: calc(96px / 2); } .framer-NgGR6 .framer-121w0z2 > *, .framer-NgGR6 .framer-4m5wgr > * { margin: 0px; margin-bottom: calc(48px / 2); margin-top: calc(48px / 2); } .framer-NgGR6 .framer-6bvvjr > * { margin: 0px; margin-bottom: calc(62px / 2); margin-top: calc(62px / 2); } .framer-NgGR6 .framer-nj9o5y > * { margin: 0px; margin-bottom: calc(63px / 2); margin-top: calc(63px / 2); } .framer-NgGR6 .framer-1lxq8m8 > *, .framer-NgGR6 .framer-1lklvjh > *, .framer-NgGR6 .framer-dx4qvh > *, .framer-NgGR6 .framer-twy73y > * { margin: 0px; margin-bottom: calc(61px / 2); margin-top: calc(61px / 2); } .framer-NgGR6 .framer-14yeywx > * { margin: 0px; margin-bottom: calc(64px / 2); margin-top: calc(64px / 2); } .framer-NgGR6 .framer-v8q05y > *, .framer-NgGR6 .framer-1cx6qz5 > * { margin: 0px; margin-bottom: calc(20px / 2); margin-top: calc(20px / 2); } .framer-NgGR6 .framer-ccgd41 > * { margin: 0px; margin-bottom: calc(17px / 2); margin-top: calc(17px / 2); } .framer-NgGR6 .framer-d1x7bj > * { margin: 0px; margin-bottom: calc(43px / 2); margin-top: calc(43px / 2); } .framer-NgGR6 .framer-1fzazgz > * { margin: 0px; margin-bottom: calc(46px / 2); margin-top: calc(46px / 2); } .framer-NgGR6 .framer-39emcf > * { margin: 0px; margin-bottom: calc(54px / 2); margin-top: calc(54px / 2); } .framer-NgGR6 .framer-191u6tx > * { margin: 0px; margin-left: calc(19px / 2); margin-right: calc(19px / 2); } .framer-NgGR6 .framer-191u6tx > :first-child { margin-left: 0px; } .framer-NgGR6 .framer-191u6tx > :last-child { margin-right: 0px; } .framer-NgGR6 .framer-1mpm5el > *, .framer-NgGR6 .framer-1mpm5el > :first-child, .framer-NgGR6 .framer-1mpm5el > :last-child { margin: 0px; } .framer-NgGR6 .framer-2bmfba > * { margin: 0px; margin-bottom: calc(45px / 2); margin-top: calc(45px / 2); } }}\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 12703\n * @framerIntrinsicWidth 1200\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"w53wCcwGU\":{\"layout\":[\"fixed\",\"auto\"]},\"ko4hRxKW6\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n * @framerAcceptsLayoutTemplate true\n * @framerScrollSections {\"p5fFvkI2C\":{\"pattern\":\":p5fFvkI2C\",\"name\":\"reviews\"},\"D831QGSfK\":{\"pattern\":\":D831QGSfK\",\"name\":\"features\"},\"VeGOkGdd_\":{\"pattern\":\":VeGOkGdd_\",\"name\":\"walkthru\"},\"qmswgea4r\":{\"pattern\":\":qmswgea4r\",\"name\":\"reviews\"},\"llrG4e6wF\":{\"pattern\":\":llrG4e6wF\",\"name\":\"pricing\"}}\n * @framerResponsiveScreen\n */const Framerr32UMfI4X=withCSS(Component,css,\"framer-NgGR6\");export default Framerr32UMfI4X;Framerr32UMfI4X.displayName=\"Forge\";Framerr32UMfI4X.defaultProps={height:12703,width:1200};addFonts(Framerr32UMfI4X,[{explicitInter:true,fonts:[{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/5vvr9Vy74if2I6bQbJvbw7SY1pQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/EOr0mi4hNtlgWNn9if640EZzXCo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Y9k9QrlZAqio88Klkmbd8VoMQc.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/OYrD2tBIBPvoJXiIHnLoOXnY9M.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/JeYwfuaPfZHQhEG8U5gtPDZ7WQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/vQyevYAyHtARFwPqUzQGpnDs.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/b6Y37FthZeALduNqHicBT6FutY.woff2\",weight:\"400\"},{family:\"Satoshi\",source:\"fontshare\",style:\"normal\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/LAFFD4SDUCDVQEXFPDC7C53EQ4ZELWQI/PXCT3G6LO6ICM5I3NTYENYPWJAECAWDD/GHM6WVH6MILNYOOCXHXB5GTSGNTMGXZR.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/DpPBYI0sL4fYLgAkX8KXOPVt7c.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/4RAEQdEOrcnDkhHiiCbJOw92Lk.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/1K3W8DizY3v4emK8Mb08YHxTbs.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/tUSCtfYVM1I1IchuyCwz9gDdQ.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/VgYFWiwsAC5OYxAycRXXvhze58.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/DXD0Q7LSl7HEvDzucnyLnGBHM.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/GIryZETIX4IFypco5pYZONKhJIo.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/CfMzU8w2e7tHgF4T4rATMPuWosA.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/867QObYax8ANsfX4TGEVU9YiCM.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Oyn2ZbENFdnW7mt2Lzjk1h9Zb9k.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/cdAe8hgZ1cMyLu9g005pAW3xMo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"italic\",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/DOfvtmE1UplCq161m6Hj8CSQYg.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"italic\",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/vFzuJY0c65av44uhEKB6vyjFMg.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"italic\",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/tKtBcDnBMevsEEJKdNGhhkLzYo.woff2\",weight:\"400\"},{family:\"Satoshi\",source:\"fontshare\",style:\"normal\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/P2LQKHE6KA6ZP4AAGN72KDWMHH6ZH3TA/ZC32TK2P7FPS5GFTL46EU6KQJA24ZYDB/7AHDUZ4A7LFLVFUIFSARGIWCRQJHISQP.woff2\",weight:\"500\"}]},...NavigationBarPremiumFonts,...BlackButtoneFonts,...ButtonsFonts,...PhosphorFonts,...YouTubeFonts,...SlideshowFonts,...FOOTERFonts,...CardTestimonialFonts,...YouTube1Fonts,...CheckoutOverlayFonts,...FeaturePillsFonts,...RowFonts,...PriceTagFonts,...LoadMore5Fonts,...ViewCursorFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts),...getFontsFromSharedStyle(sharedStyle2.fonts),...getFontsFromSharedStyle(sharedStyle3.fonts),...getFontsFromSharedStyle(sharedStyle4.fonts),...getFontsFromSharedStyle(sharedStyle5.fonts),...getFontsFromSharedStyle(sharedStyle6.fonts),...getFontsFromSharedStyle(sharedStyle7.fonts),...getFontsFromSharedStyle(sharedStyle8.fonts),...getFontsFromSharedStyle(sharedStyle9.fonts),...getFontsFromSharedStyle(sharedStyle10.fonts),...getFontsFromSharedStyle(sharedStyle11.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"Framerr32UMfI4X\",\"slots\":[],\"annotations\":{\"framerIntrinsicHeight\":\"12703\",\"framerIntrinsicWidth\":\"1200\",\"framerResponsiveScreen\":\"\",\"framerAcceptsLayoutTemplate\":\"true\",\"framerComponentViewportWidth\":\"true\",\"framerImmutableVariables\":\"true\",\"framerScrollSections\":\"{\\\"p5fFvkI2C\\\":{\\\"pattern\\\":\\\":p5fFvkI2C\\\",\\\"name\\\":\\\"reviews\\\"},\\\"D831QGSfK\\\":{\\\"pattern\\\":\\\":D831QGSfK\\\",\\\"name\\\":\\\"features\\\"},\\\"VeGOkGdd_\\\":{\\\"pattern\\\":\\\":VeGOkGdd_\\\",\\\"name\\\":\\\"walkthru\\\"},\\\"qmswgea4r\\\":{\\\"pattern\\\":\\\":qmswgea4r\\\",\\\"name\\\":\\\"reviews\\\"},\\\"llrG4e6wF\\\":{\\\"pattern\\\":\\\":llrG4e6wF\\\",\\\"name\\\":\\\"pricing\\\"}}\",\"framerContractVersion\":\"1\",\"framerDisplayContentsDiv\":\"false\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"w53wCcwGU\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"ko4hRxKW6\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}"],
  "mappings": "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",
  "names": ["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", "NavigationBarPremiumFonts", "getFonts", "HYgYW39Wu_default", "ContainerWithFX", "withFX", "Container", "MotionDivWithOptimizedAppearEffect", "withOptimizedAppearEffect", "motion", "RichTextWithOptimizedAppearEffect", "RichText", "BlackButtoneFonts", "hGOjUVukZ_default", "ButtonsFonts", "Cfpfg2W_1_default", "PhosphorFonts", "Icon", "MotionDivWithFX", "YouTubeFonts", "Youtube", "SlideshowFonts", "Slideshow", "MotionHeaderWithFX", "FOOTERFonts", "nOZjQz6d4_default", "CardTestimonialFonts", "CKeBATpFg_default", "ImageWithFX", "Image2", "YouTube1Fonts", "CheckoutOverlayFonts", "h8GLDGdeM_default", "FeaturePillsFonts", "Q2v7PlggH_default", "RowFonts", "aE4vmH7az_default", "PriceTagFonts", "vaIRnXhOi_default", "MotionAWithFX", "LoadMore5Fonts", "LLZuVD5c3_default", "ViewCursorFonts", "sNRj8KQg5_default", "breakpoints", "isBrowser", "serializationHash", "variantClassNames", "transition1", "animation", "transition2", "animation1", "animation2", "transition3", "animation3", "animation4", "transition4", "animation5", "animation6", "transition5", "animation7", "animation8", "animation9", "addImageAlt", "image", "alt", "getContainer", "Overlay", "children", "blockDocumentScrolling", "enabled", "visible", "setVisible", "useOverlayState", "transformTemplate1", "_", "t", "animation10", "toResponsiveImage", "value", "loaderVariants", "repeaterState", "variants", "currentVariant", "QueryData", "query", "pageSize", "paginatedQuery", "paginationInfo", "loadMore", "useLoadMorePaginatedQuery", "data", "useQueryData", "HTMLStyle", "useIsOnFramerCanvas", "p", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "transition6", "cursor", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "variant", "of3ofpChffV6DIsWDr", "lSX4KVUBlfV6DIsWDr", "kJmlKOMF8fV6DIsWDr", "HvGMvLAS4fV6DIsWDr", "M2_RVR9oQfV6DIsWDr", "idfV6DIsWDr", "restProps", "ue", "metadata", "robotsTag", "ie", "baseVariant", "hydratedBaseVariant", "useHydratedBreakpointVariants", "gestureVariant", "activeVariantCallback", "delay", "useActiveVariantCallback", "S8x78ZPL23bnx0g", "overlay", "args", "DURvSA_Q81wnntms", "Wld3NDzSj1b86s49", "scopingClassNames", "cx", "router", "useRouter", "elementId", "useRouteElementId", "ref1", "elementId1", "ref2", "elementId2", "ref3", "elementId3", "ref4", "elementId4", "ref5", "isDisplayed", "isDisplayed1", "useCustomCursors", "GeneratedComponentContext", "u", "LayoutGroup", "ResolveLinks", "resolvedLinks", "ComponentViewportProvider", "PropertyOverrides2", "getLoadingLazyAtYPosition", "x", "resolvedLinks1", "resolvedLinks2", "resolvedLinks3", "Link", "resolvedLinks4", "SVG", "l", "AnimatePresence", "Ga", "ChildrenCanSuspend", "SFX0Dqs7b_default", "collection", "index", "PathVariablesContext", "resolvedLinks5", "css", "Framerr32UMfI4X", "withCSS", "r32UMfI4X_default", "addFonts", "getFontsFromSharedStyle", "fonts", "__FramerMetadata__"]
}
