{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/NEd4VmDdsxM3StIUbddO/1de6WpgIbCrKkRcPfQcW/YouTube.js", "ssg:https://framerusercontent.com/modules/5enCuMgmwqN6NF9JnC7N/P2pbAMOrwzdv2gSWiF30/AMAzF8NUx.js", "ssg:https://framerusercontent.com/modules/iE4JVcld952dHp6BQJlA/b9XBjNlFQeb38unHioHb/CHwD1SPDS.js", "ssg:https://framerusercontent.com/modules/shMyIbIeftoFBKZK5GMc/adKGWgYvjPzjY4Q7MNZQ/suQ7EoNIR.js", "ssg:https://framerusercontent.com/modules/onruQYpjTAze6MeVzvTm/n1PEsDWLOBE4AqrhcX3n/dnPkheplk.js", "ssg:https://framerusercontent.com/modules/KGPMdCprRPG86Ne4afbh/HHaSQf2JVlk1xJLIrT9f/JEtrUOgj1.js", "ssg:https://framerusercontent.com/modules/of5zYBk5UOm35gF4u8pF/djL7Z9SaNtqfrRuSkVDV/v8NNvvLRE.js", "ssg:https://framerusercontent.com/modules/cQ3NfxHF3VEEX3XNegoc/g50qrI1Tchb6aYhE5Ycj/RT2RcQg55.js", "ssg:https://ga.jspm.io/npm:@motionone/utils@10.14.0/dist/index.es.js", "ssg:https://ga.jspm.io/npm:@motionone/easing@10.12.0/dist/index.es.js", "ssg:https://ga.jspm.io/npm:@motionone/animation@10.12.0/dist/index.es.js", "ssg:https://ga.jspm.io/npm:tslib@2.4.0/tslib.es6.js", "ssg:https://ga.jspm.io/npm:hey-listen@1.0.8/dist/index.js", "ssg:https://ga.jspm.io/npm:@motionone/generators@10.12.0/dist/index.es.js", "ssg:https://ga.jspm.io/npm:@motionone/dom@10.12.0/dist/index.es.js", "ssg:https://framerusercontent.com/modules/B2xAlJLcN0gOnt11mSPw/RLUeKLNmERbgkhrJQwKX/Ticker.js", "ssg:https://framerusercontent.com/modules/54ZG8wlyfuG3gtyy9d8S/XFzil8xfeXmd1P5RtYe8/uFFVz2_Nx.js", "ssg:https://framerusercontent.com/modules/gOG3LgmdsawDhc4AGuIG/DLpLaACUckCa0IA0omDU/zSk8gBtdV.js", "ssg:https://framerusercontent.com/modules/zP4ubf3i5OUefjt01s0B/Cbi5SSncC4AQfXmKTKHa/xUYKtLlNa.js", "ssg:https://framerusercontent.com/modules/kjOhBggkXbSfwf7XmWxE/lCfcoT6wpQXj3AorgJ1n/augiA20Il.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 (ca9141d)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,getFontsFromSharedStyle,getPropertyControls,RichText,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{Icon as Phosphor}from\"https://framerusercontent.com/modules/tYScH7LTqUtz5KUaUAYP/p8dptk4UIND8hbFWz9V7/Phosphor.js\";import*as sharedStyle1 from\"https://framerusercontent.com/modules/qi4tGdg94YsO3oqbxfiR/9uHvt3OSXzQ7fTKry0aa/iNaWndAoT.js\";import*as sharedStyle from\"https://framerusercontent.com/modules/6y1GSlglhv6XpEuEpxGk/MF6UFxAd6wxHGifxMM9T/JEtrUOgj1.js\";const PhosphorFonts=getFonts(Phosphor);const PhosphorControls=getPropertyControls(Phosphor);const serializationHash=\"framer-NTqeh\";const variantClassNames={AzYof9doP:\"framer-v-7bsz9o\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const getProps=({height,iconName,id,subText,text,width,...props})=>{return{...props,CQNbR4UaJ:text??props.CQNbR4UaJ??\"AI-Powered Insights\",SXwloxtpB:iconName??props.SXwloxtpB??\"House\",yr4axvj5s:subText??props.yr4axvj5s??\"Smarter task prioritization based on your habits.\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,CQNbR4UaJ,yr4axvj5s,SXwloxtpB,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({defaultVariant:\"AzYof9doP\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const ref1=React.useRef(null);const defaultLayoutId=React.useId();const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(motion.div,{...restProps,...gestureHandlers,className:cx(serializationHash,...sharedStyleClassNames,\"framer-7bsz9o\",className,classNames),\"data-border\":true,\"data-framer-name\":\"Features Card\",layoutDependency:layoutDependency,layoutId:\"AzYof9doP\",ref:ref??ref1,style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"var(--token-fa6afd35-81ed-4b44-8bcf-b09739b6783c, rgb(221, 229, 237))\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",backgroundColor:\"var(--token-fb34f388-cd1d-45d7-a628-4c35c84c8877, rgb(248, 250, 252))\",borderBottomLeftRadius:16,borderBottomRightRadius:16,borderTopLeftRadius:16,borderTopRightRadius:16,...style},children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-co4zec\",\"data-framer-name\":\"Icon Container\",layoutDependency:layoutDependency,layoutId:\"KBTwpW5ei\",style:{backgroundColor:\"rgb(56, 161, 177)\",borderBottomLeftRadius:12,borderBottomRightRadius:12,borderTopLeftRadius:12,borderTopRightRadius:12},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-op5jvc-container\",layoutDependency:layoutDependency,layoutId:\"zwY_QXFf8-container\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"var(--token-f9e45599-fd40-48ec-aab5-41b4b1e1cd80, rgb(255, 255, 255))\",height:\"100%\",iconSearch:\"House\",iconSelection:SXwloxtpB,id:\"zwY_QXFf8\",layoutId:\"zwY_QXFf8\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"regular\",width:\"100%\"})})})}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1g4d3hm\",\"data-framer-name\":\"Text Container\",layoutDependency:layoutDependency,layoutId:\"LU8tV54oT\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h3,{className:\"framer-styles-preset-17msl27\",\"data-styles-preset\":\"JEtrUOgj1\",children:\"AI-Powered Insights\"})}),className:\"framer-5x0mq4\",\"data-framer-name\":\"Heading\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"di9Bpr4hM\",style:{\"--framer-paragraph-spacing\":\"0px\"},text:CQNbR4UaJ,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-16upl8m\",\"data-styles-preset\":\"iNaWndAoT\",style:{\"--framer-text-alignment\":\"center\"},children:\"Smarter task prioritization based on your habits.\"})}),className:\"framer-ilng50\",\"data-framer-name\":\"Paragraph\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"f7mzkkf2D\",style:{\"--framer-paragraph-spacing\":\"0px\"},text:yr4axvj5s,verticalAlignment:\"top\",withExternalLayout:true})]})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-NTqeh.framer-zcvmu, .framer-NTqeh .framer-zcvmu { display: block; }\",\".framer-NTqeh.framer-7bsz9o { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: center; overflow: visible; padding: 30px 24px 30px 24px; position: relative; width: 323px; }\",\".framer-NTqeh .framer-co4zec { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 12px; position: relative; width: min-content; }\",\".framer-NTqeh .framer-op5jvc-container { flex: none; height: 30px; position: relative; width: 30px; }\",\".framer-NTqeh .framer-1g4d3hm { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 6px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-NTqeh .framer-5x0mq4, .framer-NTqeh .framer-ilng50 { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-NTqeh.framer-7bsz9o, .framer-NTqeh .framer-co4zec, .framer-NTqeh .framer-1g4d3hm { gap: 0px; } .framer-NTqeh.framer-7bsz9o > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } .framer-NTqeh.framer-7bsz9o > :first-child, .framer-NTqeh .framer-co4zec > :first-child, .framer-NTqeh .framer-1g4d3hm > :first-child { margin-top: 0px; } .framer-NTqeh.framer-7bsz9o > :last-child, .framer-NTqeh .framer-co4zec > :last-child, .framer-NTqeh .framer-1g4d3hm > :last-child { margin-bottom: 0px; } .framer-NTqeh .framer-co4zec > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-NTqeh .framer-1g4d3hm > * { margin: 0px; margin-bottom: calc(6px / 2); margin-top: calc(6px / 2); } }\",...sharedStyle.css,...sharedStyle1.css,'.framer-NTqeh[data-border=\"true\"]::after, .framer-NTqeh [data-border=\"true\"]::after { content: \"\"; border-width: var(--border-top-width, 0) var(--border-right-width, 0) var(--border-bottom-width, 0) var(--border-left-width, 0); border-color: var(--border-color, none); border-style: var(--border-style, none); width: 100%; height: 100%; position: absolute; box-sizing: border-box; left: 0; top: 0; border-radius: inherit; pointer-events: none; }'];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 231\n * @framerIntrinsicWidth 323\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerVariables {\"CQNbR4UaJ\":\"text\",\"yr4axvj5s\":\"subText\",\"SXwloxtpB\":\"iconName\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerAMAzF8NUx=withCSS(Component,css,\"framer-NTqeh\");export default FramerAMAzF8NUx;FramerAMAzF8NUx.displayName=\"Cards/ Features Card\";FramerAMAzF8NUx.defaultProps={height:231,width:323};addPropertyControls(FramerAMAzF8NUx,{CQNbR4UaJ:{defaultValue:\"AI-Powered Insights\",displayTextArea:false,title:\"Text\",type:ControlType.String},yr4axvj5s:{defaultValue:\"Smarter task prioritization based on your habits.\",displayTextArea:true,title:\"Sub Text\",type:ControlType.String},SXwloxtpB:PhosphorControls?.[\"iconSelection\"]&&{...PhosphorControls[\"iconSelection\"],defaultValue:\"House\",description:undefined,hidden:undefined,title:\"Icon name\"}});addFonts(FramerAMAzF8NUx,[{explicitInter:true,fonts:[{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/5vvr9Vy74if2I6bQbJvbw7SY1pQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/EOr0mi4hNtlgWNn9if640EZzXCo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Y9k9QrlZAqio88Klkmbd8VoMQc.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/OYrD2tBIBPvoJXiIHnLoOXnY9M.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/JeYwfuaPfZHQhEG8U5gtPDZ7WQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/vQyevYAyHtARFwPqUzQGpnDs.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/b6Y37FthZeALduNqHicBT6FutY.woff2\",weight:\"400\"}]},...PhosphorFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerAMAzF8NUx\",\"slots\":[],\"annotations\":{\"framerImmutableVariables\":\"true\",\"framerContractVersion\":\"1\",\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicHeight\":\"231\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerVariables\":\"{\\\"CQNbR4UaJ\\\":\\\"text\\\",\\\"yr4axvj5s\\\":\\\"subText\\\",\\\"SXwloxtpB\\\":\\\"iconName\\\"}\",\"framerDisplayContentsDiv\":\"false\",\"framerIntrinsicWidth\":\"323\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (abcfa95)\nimport{jsx as _jsx}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,getFontsFromSharedStyle,RichText,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import*as sharedStyle from\"https://framerusercontent.com/modules/fCWfm5uMI86QVc7Y9Zbm/Tek7w6e2lghz2fc1H4x2/iNaWndAoT.js\";const cycleOrder=[\"jN0Hb4oFd\",\"H8E5zqQ_H\"];const serializationHash=\"framer-j9Vq2\";const variantClassNames={H8E5zqQ_H:\"framer-v-1k45lxn\",jN0Hb4oFd:\"framer-v-1kdavvi\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion(React.Fragment);const humanReadableVariantMap={Active:\"jN0Hb4oFd\",Inactive:\"H8E5zqQ_H\"};const getProps=({click,click2,height,id,text,width,...props})=>{var _ref,_humanReadableVariantMap_props_variant,_ref1;return{...props,hv3PeQmyN:click!==null&&click!==void 0?click:props.hv3PeQmyN,uZvJx_VCq:(_ref=text!==null&&text!==void 0?text:props.uZvJx_VCq)!==null&&_ref!==void 0?_ref:\"Monthly\",variant:(_ref1=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref1!==void 0?_ref1:\"jN0Hb4oFd\",vWCJQmwXj:click2!==null&&click2!==void 0?click2:props.vWCJQmwXj};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,uZvJx_VCq,hv3PeQmyN,vWCJQmwXj,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"jN0Hb4oFd\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onTap1g09o89=activeVariantCallback(async(...args)=>{setGestureState({isPressed:false});if(hv3PeQmyN){const res=await hv3PeQmyN(...args);if(res===false)return false;}if(vWCJQmwXj){const res=await vWCJQmwXj(...args);if(res===false)return false;}});const ref1=React.useRef(null);const defaultLayoutId=React.useId();const sharedStyleClassNames=[sharedStyle.className];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(motion.div,{...restProps,...gestureHandlers,className:cx(serializationHash,...sharedStyleClassNames,\"framer-1kdavvi\",className,classNames),\"data-border\":true,\"data-framer-name\":\"Active\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"jN0Hb4oFd\",onTap:onTap1g09o89,ref:ref!==null&&ref!==void 0?ref:ref1,style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"var(--token-85f654ad-4940-49e1-9d91-3a9b36346329, rgb(228, 235, 240))\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",backgroundColor:\"var(--token-f9e45599-fd40-48ec-aab5-41b4b1e1cd80, rgb(255, 255, 255))\",borderBottomLeftRadius:12,borderBottomRightRadius:12,borderTopLeftRadius:12,borderTopRightRadius:12,boxShadow:\"0px 1px 1px 0px rgba(180, 185, 199, 0.5), 0px 1px 0px 0px rgba(180, 185, 198, 0.25), 0px 2px 4.099999904632568px 0px rgba(148, 154, 170, 0.10000000149011612)\",...style},variants:{H8E5zqQ_H:{\"--border-color\":\"rgba(228, 235, 240, 0)\",backgroundColor:\"rgba(255, 255, 255, 0)\",boxShadow:\"0px 1px 1px 0px rgba(180, 185, 199, 0), 0px 1px 0px 0px rgba(180, 185, 198, 0), 0px 2px 4.099999904632568px 0px rgba(148, 154, 170, 0)\"}},...addPropertyOverrides({H8E5zqQ_H:{\"data-framer-name\":\"Inactive\"}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-16upl8m\",\"data-styles-preset\":\"iNaWndAoT\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-ba518e49-fd81-4146-90b5-735c8c21a788, rgb(12, 12, 12)))\"},children:\"Monthly\"})}),className:\"framer-2oz7ss\",\"data-framer-name\":\"Text\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"UUOZbk3tI\",style:{\"--extracted-r6o4lv\":\"var(--token-ba518e49-fd81-4146-90b5-735c8c21a788, rgb(12, 12, 12))\",\"--framer-paragraph-spacing\":\"0px\"},text:uZvJx_VCq,variants:{H8E5zqQ_H:{\"--extracted-r6o4lv\":\"var(--token-b82bdf4e-f730-45bb-9a3f-abeb70329625, rgb(76, 76, 76))\"}},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({H8E5zqQ_H:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-16upl8m\",\"data-styles-preset\":\"iNaWndAoT\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-b82bdf4e-f730-45bb-9a3f-abeb70329625, rgb(76, 76, 76)))\"},children:\"Monthly\"})})}},baseVariant,gestureVariant)})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-j9Vq2.framer-177q8ob, .framer-j9Vq2 .framer-177q8ob { display: block; }\",\".framer-j9Vq2.framer-1kdavvi { align-content: center; align-items: center; cursor: pointer; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 12px 20px 12px 20px; position: relative; width: min-content; will-change: var(--framer-will-change-override, transform); }\",\".framer-j9Vq2 .framer-2oz7ss { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-j9Vq2.framer-1kdavvi { gap: 0px; } .framer-j9Vq2.framer-1kdavvi > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-j9Vq2.framer-1kdavvi > :first-child { margin-left: 0px; } .framer-j9Vq2.framer-1kdavvi > :last-child { margin-right: 0px; } }\",...sharedStyle.css,'.framer-j9Vq2[data-border=\"true\"]::after, .framer-j9Vq2 [data-border=\"true\"]::after { content: \"\"; border-width: var(--border-top-width, 0) var(--border-right-width, 0) var(--border-bottom-width, 0) var(--border-left-width, 0); border-color: var(--border-color, none); border-style: var(--border-style, none); width: 100%; height: 100%; position: absolute; box-sizing: border-box; left: 0; top: 0; border-radius: inherit; pointer-events: none; }'];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 51\n * @framerIntrinsicWidth 110\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"auto\",\"auto\"]},\"H8E5zqQ_H\":{\"layout\":[\"auto\",\"auto\"]}}}\n * @framerVariables {\"uZvJx_VCq\":\"text\",\"hv3PeQmyN\":\"click\",\"vWCJQmwXj\":\"click2\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerCHwD1SPDS=withCSS(Component,css,\"framer-j9Vq2\");export default FramerCHwD1SPDS;FramerCHwD1SPDS.displayName=\"Buttons/ Pricing Button\";FramerCHwD1SPDS.defaultProps={height:51,width:110};addPropertyControls(FramerCHwD1SPDS,{variant:{options:[\"jN0Hb4oFd\",\"H8E5zqQ_H\"],optionTitles:[\"Active\",\"Inactive\"],title:\"Variant\",type:ControlType.Enum},uZvJx_VCq:{defaultValue:\"Monthly\",displayTextArea:false,title:\"Text\",type:ControlType.String},hv3PeQmyN:{title:\"Click\",type:ControlType.EventHandler},vWCJQmwXj:{title:\"Click 2\",type:ControlType.EventHandler}});addFonts(FramerCHwD1SPDS,[{explicitInter:true,fonts:[{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/5vvr9Vy74if2I6bQbJvbw7SY1pQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/EOr0mi4hNtlgWNn9if640EZzXCo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Y9k9QrlZAqio88Klkmbd8VoMQc.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/OYrD2tBIBPvoJXiIHnLoOXnY9M.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/JeYwfuaPfZHQhEG8U5gtPDZ7WQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/vQyevYAyHtARFwPqUzQGpnDs.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/b6Y37FthZeALduNqHicBT6FutY.woff2\",weight:\"400\"}]},...getFontsFromSharedStyle(sharedStyle.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerCHwD1SPDS\",\"slots\":[],\"annotations\":{\"framerDisplayContentsDiv\":\"false\",\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicHeight\":\"51\",\"framerIntrinsicWidth\":\"110\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"H8E5zqQ_H\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]}}}\",\"framerVariables\":\"{\\\"uZvJx_VCq\\\":\\\"text\\\",\\\"hv3PeQmyN\\\":\\\"click\\\",\\\"vWCJQmwXj\\\":\\\"click2\\\"}\",\"framerContractVersion\":\"1\",\"framerImmutableVariables\":\"true\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (abcfa95)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,getFontsFromSharedStyle,Image,RichText,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import*as sharedStyle from\"https://framerusercontent.com/modules/fCWfm5uMI86QVc7Y9Zbm/Tek7w6e2lghz2fc1H4x2/iNaWndAoT.js\";const cycleOrder=[\"YtE_sihpB\",\"R23Vjp1TJ\"];const serializationHash=\"framer-5hu1Q\";const variantClassNames={R23Vjp1TJ:\"framer-v-19hyych\",YtE_sihpB:\"framer-v-1muikc5\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion(React.Fragment);const humanReadableVariantMap={Active:\"YtE_sihpB\",Inactive:\"R23Vjp1TJ\"};const getProps=({height,id,text,width,...props})=>{var _ref,_humanReadableVariantMap_props_variant,_ref1;return{...props,jp9rzvDxm:(_ref=text!==null&&text!==void 0?text:props.jp9rzvDxm)!==null&&_ref!==void 0?_ref:\"Task Management\",variant:(_ref1=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref1!==void 0?_ref1:\"YtE_sihpB\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,jp9rzvDxm,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"YtE_sihpB\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const ref1=React.useRef(null);const defaultLayoutId=React.useId();const sharedStyleClassNames=[sharedStyle.className];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(motion.div,{...restProps,...gestureHandlers,className:cx(serializationHash,...sharedStyleClassNames,\"framer-1muikc5\",className,classNames),\"data-framer-name\":\"Active\",layoutDependency:layoutDependency,layoutId:\"YtE_sihpB\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{...style},...addPropertyOverrides({R23Vjp1TJ:{\"data-framer-name\":\"Inactive\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"Icon\",fit:\"fit\",pixelHeight:20,pixelWidth:20,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/nZBd5Tho0xeWcmVIE56nXz8C1zc.svg\"},className:\"framer-xwfhnx\",\"data-framer-name\":\"Icon\",layoutDependency:layoutDependency,layoutId:\"EIAEl5B8e\",...addPropertyOverrides({R23Vjp1TJ:{background:{alt:\"Icon\",fit:\"fit\",pixelHeight:20,pixelWidth:20,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/Cewf0pqcOSDBHb5juzWIeXL9Cg.svg\"}}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-16upl8m\",\"data-styles-preset\":\"iNaWndAoT\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-fd9e8734-3b55-496a-bb4a-155ca7313ddd, rgb(61, 73, 91)))\"},children:\"Task Management\"})}),className:\"framer-d6q6pu\",\"data-framer-name\":\"Text\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"Pu8B6kFgr\",style:{\"--extracted-r6o4lv\":\"var(--token-fd9e8734-3b55-496a-bb4a-155ca7313ddd, rgb(61, 73, 91))\",\"--framer-paragraph-spacing\":\"0px\"},text:jp9rzvDxm,variants:{R23Vjp1TJ:{\"--extracted-r6o4lv\":\"var(--token-6c9f3e2c-5ff2-454c-a6dc-44dcc56aa738, rgb(92, 111, 137))\"}},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({R23Vjp1TJ:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-16upl8m\",\"data-styles-preset\":\"iNaWndAoT\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-6c9f3e2c-5ff2-454c-a6dc-44dcc56aa738, rgb(92, 111, 137)))\"},children:\"Task Management\"})})}},baseVariant,gestureVariant)})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-5hu1Q.framer-3bktai, .framer-5hu1Q .framer-3bktai { display: block; }\",\".framer-5hu1Q.framer-1muikc5 { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 314px; }\",\".framer-5hu1Q .framer-xwfhnx { flex: none; height: 20px; overflow: visible; position: relative; width: 20px; }\",\".framer-5hu1Q .framer-d6q6pu { flex: 1 0 0px; height: auto; position: relative; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-5hu1Q.framer-1muikc5 { gap: 0px; } .framer-5hu1Q.framer-1muikc5 > * { margin: 0px; margin-left: calc(8px / 2); margin-right: calc(8px / 2); } .framer-5hu1Q.framer-1muikc5 > :first-child { margin-left: 0px; } .framer-5hu1Q.framer-1muikc5 > :last-child { margin-right: 0px; } }\",...sharedStyle.css];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 27\n * @framerIntrinsicWidth 314\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"R23Vjp1TJ\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerVariables {\"jp9rzvDxm\":\"text\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramersuQ7EoNIR=withCSS(Component,css,\"framer-5hu1Q\");export default FramersuQ7EoNIR;FramersuQ7EoNIR.displayName=\"Helper/ Pointer\";FramersuQ7EoNIR.defaultProps={height:27,width:314};addPropertyControls(FramersuQ7EoNIR,{variant:{options:[\"YtE_sihpB\",\"R23Vjp1TJ\"],optionTitles:[\"Active\",\"Inactive\"],title:\"Variant\",type:ControlType.Enum},jp9rzvDxm:{defaultValue:\"Task Management\",displayTextArea:false,title:\"Text\",type:ControlType.String}});addFonts(FramersuQ7EoNIR,[{explicitInter:true,fonts:[{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/5vvr9Vy74if2I6bQbJvbw7SY1pQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/EOr0mi4hNtlgWNn9if640EZzXCo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Y9k9QrlZAqio88Klkmbd8VoMQc.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/OYrD2tBIBPvoJXiIHnLoOXnY9M.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/JeYwfuaPfZHQhEG8U5gtPDZ7WQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/vQyevYAyHtARFwPqUzQGpnDs.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/b6Y37FthZeALduNqHicBT6FutY.woff2\",weight:\"400\"}]},...getFontsFromSharedStyle(sharedStyle.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramersuQ7EoNIR\",\"slots\":[],\"annotations\":{\"framerIntrinsicWidth\":\"314\",\"framerContractVersion\":\"1\",\"framerComponentViewportWidth\":\"true\",\"framerImmutableVariables\":\"true\",\"framerVariables\":\"{\\\"jp9rzvDxm\\\":\\\"text\\\"}\",\"framerDisplayContentsDiv\":\"false\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"R23Vjp1TJ\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerIntrinsicHeight\":\"27\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (9d598a4)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,getFontsFromSharedStyle,getLoadingLazyAtYPosition,Image,RichText,SmartComponentScopedContainer,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useVariantState,withCodeBoundaryForOverrides,withCSS,withMappedReactProps}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import{trackLeadEvent}from\"https://framerusercontent.com/modules/VbgW92sa5Jj3Kbesb2IK/2Xzl9V7grzqJwQtjcj4q/LeadEventTracker.js\";import*as sharedStyle1 from\"https://framerusercontent.com/modules/pIVAPeLZp7opN1dVwy7U/0x2cMmFUVg35AZS6uqBr/hvr5rXD6E.js\";import*as sharedStyle from\"https://framerusercontent.com/modules/qi4tGdg94YsO3oqbxfiR/9uHvt3OSXzQ7fTKry0aa/iNaWndAoT.js\";import ButtonsPricingButton from\"https://framerusercontent.com/modules/iE4JVcld952dHp6BQJlA/b9XBjNlFQeb38unHioHb/CHwD1SPDS.js\";import ButtonsPrimaryButton,*as ButtonsPrimaryButtonInfo from\"https://framerusercontent.com/modules/zEjWvQD3ulMQi2xxG4xC/lz4mf2iy3RRA34R1BnQu/MgIT3hfmM.js\";import HelperPointer from\"https://framerusercontent.com/modules/shMyIbIeftoFBKZK5GMc/adKGWgYvjPzjY4Q7MNZQ/suQ7EoNIR.js\";const ButtonsPricingButtonFonts=getFonts(ButtonsPricingButton);const ButtonsPrimaryButtonFonts=getFonts(ButtonsPrimaryButton);const ButtonsPrimaryButtonTrackLeadEventj9b5d9WithMappedReactProps8b5nzg=withMappedReactProps(withCodeBoundaryForOverrides(ButtonsPrimaryButton,{nodeId:\"iJuBFIbl3\",override:trackLeadEvent,scopeId:\"dnPkheplk\"}),ButtonsPrimaryButtonInfo);const HelperPointerFonts=getFonts(HelperPointer);const ButtonsPrimaryButtonTrackLeadEventfpmacdWithMappedReactProps8b5nzg=withMappedReactProps(withCodeBoundaryForOverrides(ButtonsPrimaryButton,{nodeId:\"LZcmr8FC7\",override:trackLeadEvent,scopeId:\"dnPkheplk\"}),ButtonsPrimaryButtonInfo);const cycleOrder=[\"S1jThe6Ze\",\"TOOw3Xu0I\",\"mpgKEKNb5\",\"wBvcB5SQ1\",\"swjSyzn6e\",\"LSNt2ao8W\"];const serializationHash=\"framer-MzO41\";const variantClassNames={LSNt2ao8W:\"framer-v-11rp6xd\",mpgKEKNb5:\"framer-v-1wtrz73\",S1jThe6Ze:\"framer-v-11kg8v7\",swjSyzn6e:\"framer-v-1votq9h\",TOOw3Xu0I:\"framer-v-11478kv\",wBvcB5SQ1:\"framer-v-1les5di\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={duration:0,type:\"tween\"};const transformTemplate1=(_,t)=>`translateY(-50%) ${t}`;const transformTemplate2=(_,t)=>`translateX(-50%) ${t}`;const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={\"Desktop Monthly\":\"S1jThe6Ze\",\"Desktop Yearly\":\"TOOw3Xu0I\",\"Mobile Monthly\":\"swjSyzn6e\",\"Mobile Yearly\":\"LSNt2ao8W\",\"Tablet Montly\":\"mpgKEKNb5\",\"Tablet Yearly\":\"wBvcB5SQ1\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"S1jThe6Ze\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const fallbackRef=useRef(null);const refBinding=ref??fallbackRef;const defaultLayoutId=React.useId();const{activeLocale,setLocale}=useLocaleInfo();const componentViewport=useComponentViewport();const{style,className,layoutId,variant,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"S1jThe6Ze\",ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const hv3PeQmyN17893bc=activeVariantCallback(async(...args)=>{setVariant(\"S1jThe6Ze\");});const hv3PeQmyNtdwv5m=activeVariantCallback(async(...args)=>{setVariant(\"mpgKEKNb5\");});const hv3PeQmyN1jlt9ro=activeVariantCallback(async(...args)=>{setVariant(\"swjSyzn6e\");});const vWCJQmwXj1aoie3r=activeVariantCallback(async(...args)=>{setVariant(\"TOOw3Xu0I\");});const vWCJQmwXj1lc4dou=activeVariantCallback(async(...args)=>{setVariant(\"wBvcB5SQ1\");});const vWCJQmwXjq8l2yh=activeVariantCallback(async(...args)=>{setVariant(\"LSNt2ao8W\");});const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(motion.div,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-11kg8v7\",className,classNames),\"data-framer-name\":\"Desktop Monthly\",layoutDependency:layoutDependency,layoutId:\"S1jThe6Ze\",ref:refBinding,style:{...style},...addPropertyOverrides({LSNt2ao8W:{\"data-framer-name\":\"Mobile Yearly\"},mpgKEKNb5:{\"data-framer-name\":\"Tablet Montly\"},swjSyzn6e:{\"data-framer-name\":\"Mobile Monthly\"},TOOw3Xu0I:{\"data-framer-name\":\"Desktop Yearly\"},wBvcB5SQ1:{\"data-framer-name\":\"Tablet Yearly\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-utkgx6\",\"data-border\":true,\"data-framer-name\":\"Buttons Container\",layoutDependency:layoutDependency,layoutId:\"c8LEq4vRa\",style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"var(--token-fa6afd35-81ed-4b44-8bcf-b09739b6783c, rgb(221, 229, 237))\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",backgroundColor:\"var(--token-ebcfde1b-1a8b-4d23-9f12-e5e3b7c0ad16, rgb(244, 247, 249))\",borderBottomLeftRadius:14,borderBottomRightRadius:14,borderTopLeftRadius:14,borderTopRightRadius:14,boxShadow:\"inset 1px 1px 4px 0px rgba(255, 255, 255, 0.07999999821186066)\"},children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:51,y:(componentViewport?.y||0)+0+(((componentViewport?.height||997.5)-0-1369)/2+0+0)+8,...addPropertyOverrides({LSNt2ao8W:{y:(componentViewport?.y||0)+0+(((componentViewport?.height||2100)-0-2681)/2+0+0)+8},mpgKEKNb5:{y:(componentViewport?.y||0)+0+(((componentViewport?.height||1962)-0-2651)/2+0+0)+8},swjSyzn6e:{y:(componentViewport?.y||0)+0+(((componentViewport?.height||2100)-0-2681)/2+0+0)+8},wBvcB5SQ1:{y:(componentViewport?.y||0)+0+(((componentViewport?.height||1962)-0-2651)/2+0+0)+8}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1m72ga6-container\",layoutDependency:layoutDependency,layoutId:\"iMUadAAUL-container\",nodeId:\"iMUadAAUL\",rendersWithMotion:true,scopeId:\"dnPkheplk\",children:/*#__PURE__*/_jsx(ButtonsPricingButton,{height:\"100%\",hv3PeQmyN:hv3PeQmyN17893bc,id:\"iMUadAAUL\",layoutId:\"iMUadAAUL\",uZvJx_VCq:\"Monthly\",variant:\"jN0Hb4oFd\",width:\"100%\",...addPropertyOverrides({LSNt2ao8W:{hv3PeQmyN:hv3PeQmyN1jlt9ro,variant:\"H8E5zqQ_H\"},mpgKEKNb5:{hv3PeQmyN:hv3PeQmyNtdwv5m},swjSyzn6e:{hv3PeQmyN:hv3PeQmyN1jlt9ro},TOOw3Xu0I:{variant:\"H8E5zqQ_H\"},wBvcB5SQ1:{hv3PeQmyN:hv3PeQmyNtdwv5m,variant:\"H8E5zqQ_H\"}},baseVariant,gestureVariant)})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:51,y:(componentViewport?.y||0)+0+(((componentViewport?.height||997.5)-0-1369)/2+0+0)+8,...addPropertyOverrides({LSNt2ao8W:{y:(componentViewport?.y||0)+0+(((componentViewport?.height||2100)-0-2681)/2+0+0)+8},mpgKEKNb5:{y:(componentViewport?.y||0)+0+(((componentViewport?.height||1962)-0-2651)/2+0+0)+8},swjSyzn6e:{y:(componentViewport?.y||0)+0+(((componentViewport?.height||2100)-0-2681)/2+0+0)+8},wBvcB5SQ1:{y:(componentViewport?.y||0)+0+(((componentViewport?.height||1962)-0-2651)/2+0+0)+8}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-7c2hoo-container\",layoutDependency:layoutDependency,layoutId:\"exBLdrTp5-container\",nodeId:\"exBLdrTp5\",rendersWithMotion:true,scopeId:\"dnPkheplk\",children:/*#__PURE__*/_jsx(ButtonsPricingButton,{height:\"100%\",id:\"exBLdrTp5\",layoutId:\"exBLdrTp5\",uZvJx_VCq:\"Yearly\",variant:\"H8E5zqQ_H\",vWCJQmwXj:vWCJQmwXj1aoie3r,width:\"100%\",...addPropertyOverrides({LSNt2ao8W:{variant:\"jN0Hb4oFd\",vWCJQmwXj:vWCJQmwXjq8l2yh},mpgKEKNb5:{vWCJQmwXj:vWCJQmwXj1lc4dou},swjSyzn6e:{vWCJQmwXj:vWCJQmwXjq8l2yh},TOOw3Xu0I:{variant:\"jN0Hb4oFd\"},wBvcB5SQ1:{variant:\"jN0Hb4oFd\",vWCJQmwXj:vWCJQmwXj1lc4dou}},baseVariant,gestureVariant)})})}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-111s3i1\",\"data-framer-name\":\"Badge\",layoutDependency:layoutDependency,layoutId:\"uJXiny3Po\",transformTemplate:transformTemplate1,...addPropertyOverrides({LSNt2ao8W:{transformTemplate:transformTemplate2},swjSyzn6e:{transformTemplate:transformTemplate2}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"Arrow\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+(((componentViewport?.height||997.5)-0-1369)/2+0+0)+2.0147+-5),pixelHeight:38,pixelWidth:75,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/hWZY4Kk1SfZP45foRef7qRmoA.svg\"},className:\"framer-1huujcr\",\"data-framer-name\":\"Arrow\",layoutDependency:layoutDependency,layoutId:\"EPQb8LNVr\",style:{rotate:2},...addPropertyOverrides({LSNt2ao8W:{background:{alt:\"Arrow\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+(((componentViewport?.height||2100)-0-2681)/2+0+0)+67- -19.5+-23),pixelHeight:51,pixelWidth:25,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/FFTFi2nkDjL7942p6df4A3ZAM.svg\"}},mpgKEKNb5:{background:{alt:\"Arrow\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+(((componentViewport?.height||1962)-0-2651)/2+0+0)+2.5+1.9999),pixelHeight:38,pixelWidth:75,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/hWZY4Kk1SfZP45foRef7qRmoA.svg\"}},swjSyzn6e:{background:{alt:\"Arrow\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+(((componentViewport?.height||2100)-0-2681)/2+0+0)+67- -19.5+-23),pixelHeight:51,pixelWidth:25,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/FFTFi2nkDjL7942p6df4A3ZAM.svg\"}},wBvcB5SQ1:{background:{alt:\"Arrow\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+(((componentViewport?.height||1962)-0-2651)/2+0+0)+2.5+1.9999),pixelHeight:38,pixelWidth:75,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/hWZY4Kk1SfZP45foRef7qRmoA.svg\"}}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-112ikmc\",\"data-border\":true,\"data-framer-name\":\"Text Container\",layoutDependency:layoutDependency,layoutId:\"cyB9xeQPQ\",style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"var(--token-fa6afd35-81ed-4b44-8bcf-b09739b6783c, rgb(221, 229, 237))\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",backgroundColor:\"var(--token-f9e45599-fd40-48ec-aab5-41b4b1e1cd80, rgb(255, 255, 255))\",borderBottomLeftRadius:100,borderBottomRightRadius:100,borderTopLeftRadius:100,borderTopRightRadius:100,rotate:8},variants:{LSNt2ao8W:{rotate:0},mpgKEKNb5:{rotate:15},swjSyzn6e:{rotate:0},wBvcB5SQ1:{rotate:15}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"15px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"150%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-fd9e8734-3b55-496a-bb4a-155ca7313ddd, rgb(61, 73, 91)))\"},children:\"20% OFF on Yearly Plan\"})}),className:\"framer-ng7qvg\",\"data-framer-name\":\"Text\",fonts:[\"Inter-Medium\"],layoutDependency:layoutDependency,layoutId:\"WIMNyJHxI\",style:{\"--extracted-r6o4lv\":\"var(--token-fd9e8734-3b55-496a-bb4a-155ca7313ddd, rgb(61, 73, 91))\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true})})]})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-lz97db\",\"data-framer-name\":\"Items Container\",layoutDependency:layoutDependency,layoutId:\"oakfARBtE\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-zsie7x\",\"data-border\":true,\"data-framer-name\":\"Card\",layoutDependency:layoutDependency,layoutId:\"lPNAH8oUJ\",style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"var(--token-fa6afd35-81ed-4b44-8bcf-b09739b6783c, rgb(221, 229, 237))\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",backgroundColor:\"var(--token-f9e45599-fd40-48ec-aab5-41b4b1e1cd80, rgb(255, 255, 255))\",borderBottomLeftRadius:20,borderBottomRightRadius:20,borderTopLeftRadius:20,borderTopRightRadius:20,boxShadow:\"0px 2px 6px 0px rgba(217, 224, 232, 0.10000000149011612)\"},children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-4xj1ob\",\"data-border\":true,\"data-framer-name\":\"Sub Container\",layoutDependency:layoutDependency,layoutId:\"IU_rCtV3D\",style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"var(--token-fa6afd35-81ed-4b44-8bcf-b09739b6783c, rgb(221, 229, 237))\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",backgroundColor:\"var(--token-fb34f388-cd1d-45d7-a628-4c35c84c8877, rgb(248, 250, 252))\"},children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-cq6bya\",\"data-framer-name\":\"Container\",layoutDependency:layoutDependency,layoutId:\"GNIEVpyy5\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7QnJpY29sYWdlIEdyb3Rlc3F1ZS02MDA=\",\"--framer-font-family\":'\"Bricolage Grotesque\", \"Bricolage Grotesque Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"150%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-e4fdc027-410b-4747-8d19-b7d6252d4400, rgb(28, 28, 28)))\"},children:\"Free plan\"})}),className:\"framer-oqwcbf\",\"data-framer-name\":\"Heading\",fonts:[\"GF;Bricolage Grotesque-600\"],layoutDependency:layoutDependency,layoutId:\"emA05GS7K\",style:{\"--extracted-r6o4lv\":\"var(--token-e4fdc027-410b-4747-8d19-b7d6252d4400, rgb(28, 28, 28))\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-4qajxu\",\"data-framer-name\":\"Text Container\",layoutDependency:layoutDependency,layoutId:\"WOo8UYMVn\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7SW5zdHJ1bWVudCBTYW5zLTYwMA==\",\"--framer-font-family\":'\"Instrument Sans\", \"Instrument Sans Placeholder\", sans-serif',\"--framer-font-size\":\"55px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"100%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-e4fdc027-410b-4747-8d19-b7d6252d4400, rgb(28, 28, 28)))\"},children:\"$0\"})}),className:\"framer-1hnt3uj\",\"data-framer-name\":\"Number\",fonts:[\"GF;Instrument Sans-600\"],layoutDependency:layoutDependency,layoutId:\"u_WDUIA4v\",style:{\"--extracted-r6o4lv\":\"var(--token-e4fdc027-410b-4747-8d19-b7d6252d4400, rgb(28, 28, 28))\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-16upl8m\",\"data-styles-preset\":\"iNaWndAoT\",children:\"/ month\"})}),className:\"framer-1t9ez5a\",\"data-framer-name\":\"Text\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"ddXLFHmRR\",style:{\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({LSNt2ao8W:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-16upl8m\",\"data-styles-preset\":\"iNaWndAoT\",children:\"/ per Year\"})})}},baseVariant,gestureVariant)})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-16upl8m\",\"data-styles-preset\":\"iNaWndAoT\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-f5be0458-7744-4467-9ed4-43d7618ea1c4, rgb(82, 98, 121)))\"},children:\"No credit card required\"})}),className:\"framer-19m0zhj\",\"data-framer-name\":\"Description\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"tt8ZtG4AI\",style:{\"--extracted-r6o4lv\":\"var(--token-f5be0458-7744-4467-9ed4-43d7618ea1c4, rgb(82, 98, 121))\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:57,width:`calc(max((${componentViewport?.width||\"100vw\"} - 20px) / 2, 1px) - 60px)`,y:(componentViewport?.y||0)+0+(((componentViewport?.height||997.5)-0-1369)/2+67+50)+0+0+0+30+434,...addPropertyOverrides({LSNt2ao8W:{width:`calc(min(${componentViewport?.width||\"100vw\"}, 450px) - 60px)`,y:(componentViewport?.y||0)+0+(((componentViewport?.height||2100)-0-2681)/2+67+80)+0+0+0+0+30+434},mpgKEKNb5:{width:`calc(min(${componentViewport?.width||\"100vw\"}, 490px) - 60px)`,y:(componentViewport?.y||0)+0+(((componentViewport?.height||1962)-0-2651)/2+67+50)+0+0+0+0+30+434},swjSyzn6e:{width:`calc(min(${componentViewport?.width||\"100vw\"}, 450px) - 60px)`,y:(componentViewport?.y||0)+0+(((componentViewport?.height||2100)-0-2681)/2+67+80)+0+0+0+0+30+434},wBvcB5SQ1:{width:`calc(min(${componentViewport?.width||\"100vw\"}, 490px) - 60px)`,y:(componentViewport?.y||0)+0+(((componentViewport?.height||1962)-0-2651)/2+67+50)+0+0+0+0+30+434}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-j9b5d9-container\",layoutDependency:layoutDependency,layoutId:\"iJuBFIbl3-container\",nodeId:\"iJuBFIbl3\",rendersWithMotion:true,scopeId:\"dnPkheplk\",children:/*#__PURE__*/_jsx(ButtonsPrimaryButtonTrackLeadEventj9b5d9WithMappedReactProps8b5nzg,{ALqHfl2FI:\"var(--token-f9e45599-fd40-48ec-aab5-41b4b1e1cd80, rgb(255, 255, 255))\",DThcZ2dbv:\"Create your first proposal\",EvBVi6gZB:\"https://app.powerdocs.so/signup\",height:\"100%\",id:\"iJuBFIbl3\",IrVDgirDQ:\"var(--token-e4fdc027-410b-4747-8d19-b7d6252d4400, rgb(28, 28, 28))\",jvwT12xlX:\"var(--token-09920af5-e3bc-4f2c-8ef0-faf72c25158d, rgb(51, 51, 51))\",layoutId:\"iJuBFIbl3\",style:{width:\"100%\"},width:\"100%\"})})})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1iuiy8n\",\"data-framer-name\":\"Sub Container\",layoutDependency:layoutDependency,layoutId:\"qXyPrN27A\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1usl7g\",\"data-framer-name\":\"Text Container\",layoutDependency:layoutDependency,layoutId:\"zor_UgtXa\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"150%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-e4fdc027-410b-4747-8d19-b7d6252d4400, rgb(28, 28, 28)))\"},children:\"What\u2019s Included\"})}),className:\"framer-11xlo74\",\"data-framer-name\":\"Heading\",fonts:[\"Inter-SemiBold\"],layoutDependency:layoutDependency,layoutId:\"YJSVYTw3z\",style:{\"--extracted-r6o4lv\":\"var(--token-e4fdc027-410b-4747-8d19-b7d6252d4400, rgb(28, 28, 28))\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-4rrruy\",\"data-framer-name\":\"Container\",layoutDependency:layoutDependency,layoutId:\"Hvh27fEcW\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:27,width:`calc(max((${componentViewport?.width||\"100vw\"} - 20px) / 2, 1px) - 60px)`,y:(componentViewport?.y||0)+0+(((componentViewport?.height||997.5)-0-1369)/2+67+50)+0+0+551+30+170+0+0,...addPropertyOverrides({LSNt2ao8W:{width:`calc(min(${componentViewport?.width||\"100vw\"}, 450px) - 60px)`,y:(componentViewport?.y||0)+0+(((componentViewport?.height||2100)-0-2681)/2+67+80)+0+0+0+551+30+170+0+0},mpgKEKNb5:{width:`calc(min(${componentViewport?.width||\"100vw\"}, 490px) - 60px)`,y:(componentViewport?.y||0)+0+(((componentViewport?.height||1962)-0-2651)/2+67+50)+0+0+0+551+30+170+0+0},swjSyzn6e:{width:`calc(min(${componentViewport?.width||\"100vw\"}, 450px) - 60px)`,y:(componentViewport?.y||0)+0+(((componentViewport?.height||2100)-0-2681)/2+67+80)+0+0+0+551+30+170+0+0},wBvcB5SQ1:{width:`calc(min(${componentViewport?.width||\"100vw\"}, 490px) - 60px)`,y:(componentViewport?.y||0)+0+(((componentViewport?.height||1962)-0-2651)/2+67+50)+0+0+0+551+30+170+0+0}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-15ggn0r-container\",layoutDependency:layoutDependency,layoutId:\"MwnO8feFy-container\",nodeId:\"MwnO8feFy\",rendersWithMotion:true,scopeId:\"dnPkheplk\",children:/*#__PURE__*/_jsx(HelperPointer,{height:\"100%\",id:\"MwnO8feFy\",jp9rzvDxm:\"Create up to 3 proposals per month\",layoutId:\"MwnO8feFy\",style:{width:\"100%\"},variant:\"YtE_sihpB\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:27,width:`calc(max((${componentViewport?.width||\"100vw\"} - 20px) / 2, 1px) - 60px)`,y:(componentViewport?.y||0)+0+(((componentViewport?.height||997.5)-0-1369)/2+67+50)+0+0+551+30+170+0+41,...addPropertyOverrides({LSNt2ao8W:{width:`calc(min(${componentViewport?.width||\"100vw\"}, 450px) - 60px)`,y:(componentViewport?.y||0)+0+(((componentViewport?.height||2100)-0-2681)/2+67+80)+0+0+0+551+30+170+0+41},mpgKEKNb5:{width:`calc(min(${componentViewport?.width||\"100vw\"}, 490px) - 60px)`,y:(componentViewport?.y||0)+0+(((componentViewport?.height||1962)-0-2651)/2+67+50)+0+0+0+551+30+170+0+41},swjSyzn6e:{width:`calc(min(${componentViewport?.width||\"100vw\"}, 450px) - 60px)`,y:(componentViewport?.y||0)+0+(((componentViewport?.height||2100)-0-2681)/2+67+80)+0+0+0+551+30+170+0+41},wBvcB5SQ1:{width:`calc(min(${componentViewport?.width||\"100vw\"}, 490px) - 60px)`,y:(componentViewport?.y||0)+0+(((componentViewport?.height||1962)-0-2651)/2+67+50)+0+0+0+551+30+170+0+41}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-bs0wqn-container\",layoutDependency:layoutDependency,layoutId:\"M7SOAAmJf-container\",nodeId:\"M7SOAAmJf\",rendersWithMotion:true,scopeId:\"dnPkheplk\",children:/*#__PURE__*/_jsx(HelperPointer,{height:\"100%\",id:\"M7SOAAmJf\",jp9rzvDxm:\"Chrome browser extension\",layoutId:\"M7SOAAmJf\",style:{width:\"100%\"},variant:\"YtE_sihpB\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:27,width:`calc(max((${componentViewport?.width||\"100vw\"} - 20px) / 2, 1px) - 60px)`,y:(componentViewport?.y||0)+0+(((componentViewport?.height||997.5)-0-1369)/2+67+50)+0+0+551+30+170+0+82,...addPropertyOverrides({LSNt2ao8W:{width:`calc(min(${componentViewport?.width||\"100vw\"}, 450px) - 60px)`,y:(componentViewport?.y||0)+0+(((componentViewport?.height||2100)-0-2681)/2+67+80)+0+0+0+551+30+170+0+82},mpgKEKNb5:{width:`calc(min(${componentViewport?.width||\"100vw\"}, 490px) - 60px)`,y:(componentViewport?.y||0)+0+(((componentViewport?.height||1962)-0-2651)/2+67+50)+0+0+0+551+30+170+0+82},swjSyzn6e:{width:`calc(min(${componentViewport?.width||\"100vw\"}, 450px) - 60px)`,y:(componentViewport?.y||0)+0+(((componentViewport?.height||2100)-0-2681)/2+67+80)+0+0+0+551+30+170+0+82},wBvcB5SQ1:{width:`calc(min(${componentViewport?.width||\"100vw\"}, 490px) - 60px)`,y:(componentViewport?.y||0)+0+(((componentViewport?.height||1962)-0-2651)/2+67+50)+0+0+0+551+30+170+0+82}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1ih4a89-container\",layoutDependency:layoutDependency,layoutId:\"v1eNRX2Gf-container\",nodeId:\"v1eNRX2Gf\",rendersWithMotion:true,scopeId:\"dnPkheplk\",children:/*#__PURE__*/_jsx(HelperPointer,{height:\"100%\",id:\"v1eNRX2Gf\",jp9rzvDxm:\"AI-powered autocomplete\",layoutId:\"v1eNRX2Gf\",style:{width:\"100%\"},variant:\"YtE_sihpB\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:27,width:`calc(max((${componentViewport?.width||\"100vw\"} - 20px) / 2, 1px) - 60px)`,y:(componentViewport?.y||0)+0+(((componentViewport?.height||997.5)-0-1369)/2+67+50)+0+0+551+30+170+0+123,...addPropertyOverrides({LSNt2ao8W:{width:`calc(min(${componentViewport?.width||\"100vw\"}, 450px) - 60px)`,y:(componentViewport?.y||0)+0+(((componentViewport?.height||2100)-0-2681)/2+67+80)+0+0+0+551+30+170+0+123},mpgKEKNb5:{width:`calc(min(${componentViewport?.width||\"100vw\"}, 490px) - 60px)`,y:(componentViewport?.y||0)+0+(((componentViewport?.height||1962)-0-2651)/2+67+50)+0+0+0+551+30+170+0+123},swjSyzn6e:{width:`calc(min(${componentViewport?.width||\"100vw\"}, 450px) - 60px)`,y:(componentViewport?.y||0)+0+(((componentViewport?.height||2100)-0-2681)/2+67+80)+0+0+0+551+30+170+0+123},wBvcB5SQ1:{width:`calc(min(${componentViewport?.width||\"100vw\"}, 490px) - 60px)`,y:(componentViewport?.y||0)+0+(((componentViewport?.height||1962)-0-2651)/2+67+50)+0+0+0+551+30+170+0+123}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1o2m0wr-container\",layoutDependency:layoutDependency,layoutId:\"p8u82D2pa-container\",nodeId:\"p8u82D2pa\",rendersWithMotion:true,scopeId:\"dnPkheplk\",children:/*#__PURE__*/_jsx(HelperPointer,{height:\"100%\",id:\"p8u82D2pa\",jp9rzvDxm:\"Questions Picker\\xae to fill gaps\",layoutId:\"p8u82D2pa\",style:{width:\"100%\"},variant:\"YtE_sihpB\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:27,width:`calc(max((${componentViewport?.width||\"100vw\"} - 20px) / 2, 1px) - 60px)`,y:(componentViewport?.y||0)+0+(((componentViewport?.height||997.5)-0-1369)/2+67+50)+0+0+551+30+170+0+164,...addPropertyOverrides({LSNt2ao8W:{width:`calc(min(${componentViewport?.width||\"100vw\"}, 450px) - 60px)`,y:(componentViewport?.y||0)+0+(((componentViewport?.height||2100)-0-2681)/2+67+80)+0+0+0+551+30+170+0+164},mpgKEKNb5:{width:`calc(min(${componentViewport?.width||\"100vw\"}, 490px) - 60px)`,y:(componentViewport?.y||0)+0+(((componentViewport?.height||1962)-0-2651)/2+67+50)+0+0+0+551+30+170+0+164},swjSyzn6e:{width:`calc(min(${componentViewport?.width||\"100vw\"}, 450px) - 60px)`,y:(componentViewport?.y||0)+0+(((componentViewport?.height||2100)-0-2681)/2+67+80)+0+0+0+551+30+170+0+164},wBvcB5SQ1:{width:`calc(min(${componentViewport?.width||\"100vw\"}, 490px) - 60px)`,y:(componentViewport?.y||0)+0+(((componentViewport?.height||1962)-0-2651)/2+67+50)+0+0+0+551+30+170+0+164}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-qudift-container\",layoutDependency:layoutDependency,layoutId:\"Vd23ObyCz-container\",nodeId:\"Vd23ObyCz\",rendersWithMotion:true,scopeId:\"dnPkheplk\",children:/*#__PURE__*/_jsx(HelperPointer,{height:\"100%\",id:\"Vd23ObyCz\",jp9rzvDxm:\"Use AI Chat for document edits\",layoutId:\"Vd23ObyCz\",style:{width:\"100%\"},variant:\"YtE_sihpB\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:27,width:`calc(max((${componentViewport?.width||\"100vw\"} - 20px) / 2, 1px) - 60px)`,y:(componentViewport?.y||0)+0+(((componentViewport?.height||997.5)-0-1369)/2+67+50)+0+0+551+30+170+0+205,...addPropertyOverrides({LSNt2ao8W:{width:`calc(min(${componentViewport?.width||\"100vw\"}, 450px) - 60px)`,y:(componentViewport?.y||0)+0+(((componentViewport?.height||2100)-0-2681)/2+67+80)+0+0+0+551+30+170+0+205},mpgKEKNb5:{width:`calc(min(${componentViewport?.width||\"100vw\"}, 490px) - 60px)`,y:(componentViewport?.y||0)+0+(((componentViewport?.height||1962)-0-2651)/2+67+50)+0+0+0+551+30+170+0+205},swjSyzn6e:{width:`calc(min(${componentViewport?.width||\"100vw\"}, 450px) - 60px)`,y:(componentViewport?.y||0)+0+(((componentViewport?.height||2100)-0-2681)/2+67+80)+0+0+0+551+30+170+0+205},wBvcB5SQ1:{width:`calc(min(${componentViewport?.width||\"100vw\"}, 490px) - 60px)`,y:(componentViewport?.y||0)+0+(((componentViewport?.height||1962)-0-2651)/2+67+50)+0+0+0+551+30+170+0+205}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-195t7x9-container\",layoutDependency:layoutDependency,layoutId:\"KL_uCMTrW-container\",nodeId:\"KL_uCMTrW\",rendersWithMotion:true,scopeId:\"dnPkheplk\",children:/*#__PURE__*/_jsx(HelperPointer,{height:\"100%\",id:\"KL_uCMTrW\",jp9rzvDxm:\"Export to PDF, Word, and CSV\",layoutId:\"KL_uCMTrW\",style:{width:\"100%\"},variant:\"YtE_sihpB\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:27,width:`calc(max((${componentViewport?.width||\"100vw\"} - 20px) / 2, 1px) - 60px)`,y:(componentViewport?.y||0)+0+(((componentViewport?.height||997.5)-0-1369)/2+67+50)+0+0+551+30+170+0+246,...addPropertyOverrides({LSNt2ao8W:{width:`calc(min(${componentViewport?.width||\"100vw\"}, 450px) - 60px)`,y:(componentViewport?.y||0)+0+(((componentViewport?.height||2100)-0-2681)/2+67+80)+0+0+0+551+30+170+0+246},mpgKEKNb5:{width:`calc(min(${componentViewport?.width||\"100vw\"}, 490px) - 60px)`,y:(componentViewport?.y||0)+0+(((componentViewport?.height||1962)-0-2651)/2+67+50)+0+0+0+551+30+170+0+246},swjSyzn6e:{width:`calc(min(${componentViewport?.width||\"100vw\"}, 450px) - 60px)`,y:(componentViewport?.y||0)+0+(((componentViewport?.height||2100)-0-2681)/2+67+80)+0+0+0+551+30+170+0+246},wBvcB5SQ1:{width:`calc(min(${componentViewport?.width||\"100vw\"}, 490px) - 60px)`,y:(componentViewport?.y||0)+0+(((componentViewport?.height||1962)-0-2651)/2+67+50)+0+0+0+551+30+170+0+246}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1oxn32h-container\",layoutDependency:layoutDependency,layoutId:\"JqcgCS8Ib-container\",nodeId:\"JqcgCS8Ib\",rendersWithMotion:true,scopeId:\"dnPkheplk\",children:/*#__PURE__*/_jsx(HelperPointer,{height:\"100%\",id:\"JqcgCS8Ib\",jp9rzvDxm:\"Invite team members (view-only access)\",layoutId:\"JqcgCS8Ib\",style:{width:\"100%\"},variant:\"YtE_sihpB\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:27,width:`calc(max((${componentViewport?.width||\"100vw\"} - 20px) / 2, 1px) - 60px)`,y:(componentViewport?.y||0)+0+(((componentViewport?.height||997.5)-0-1369)/2+67+50)+0+0+551+30+170+0+287,...addPropertyOverrides({LSNt2ao8W:{width:`calc(min(${componentViewport?.width||\"100vw\"}, 450px) - 60px)`,y:(componentViewport?.y||0)+0+(((componentViewport?.height||2100)-0-2681)/2+67+80)+0+0+0+551+30+170+0+287},mpgKEKNb5:{width:`calc(min(${componentViewport?.width||\"100vw\"}, 490px) - 60px)`,y:(componentViewport?.y||0)+0+(((componentViewport?.height||1962)-0-2651)/2+67+50)+0+0+0+551+30+170+0+287},swjSyzn6e:{width:`calc(min(${componentViewport?.width||\"100vw\"}, 450px) - 60px)`,y:(componentViewport?.y||0)+0+(((componentViewport?.height||2100)-0-2681)/2+67+80)+0+0+0+551+30+170+0+287},wBvcB5SQ1:{width:`calc(min(${componentViewport?.width||\"100vw\"}, 490px) - 60px)`,y:(componentViewport?.y||0)+0+(((componentViewport?.height||1962)-0-2651)/2+67+50)+0+0+0+551+30+170+0+287}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1wiy26u-container\",layoutDependency:layoutDependency,layoutId:\"tr5ImZR5f-container\",nodeId:\"tr5ImZR5f\",rendersWithMotion:true,scopeId:\"dnPkheplk\",children:/*#__PURE__*/_jsx(HelperPointer,{height:\"100%\",id:\"tr5ImZR5f\",jp9rzvDxm:\"Share web-view documents with clients (with branding)\",layoutId:\"tr5ImZR5f\",style:{width:\"100%\"},variant:\"YtE_sihpB\",width:\"100%\"})})}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-m2ebc7\",\"data-framer-name\":\"Divider\",layoutDependency:layoutDependency,layoutId:\"cox2HZcS7\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-r0g1cr\",\"data-framer-name\":\"Line\",layoutDependency:layoutDependency,layoutId:\"R40Z6rJT1\",style:{backgroundColor:\"var(--token-fa6afd35-81ed-4b44-8bcf-b09739b6783c, rgb(221, 229, 237))\"}}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1dv56tj\",\"data-border\":true,\"data-framer-name\":\"Container\",layoutDependency:layoutDependency,layoutId:\"J3JEnFJEn\",style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"var(--token-fa6afd35-81ed-4b44-8bcf-b09739b6783c, rgb(221, 229, 237))\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",backgroundColor:\"var(--token-b8136821-7827-4ad3-8195-cf6926c973ca, rgb(241, 244, 248))\",borderBottomLeftRadius:6,borderBottomRightRadius:6,borderTopLeftRadius:6,borderTopRightRadius:6},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+(((componentViewport?.height||997.5)-0-1369)/2+67+50)+0+0+551+30+170+0+328+0+5+0),pixelHeight:10,pixelWidth:10,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/GkrDKBsQZmUShN6cbhaoPzLBU.svg\"},className:\"framer-1srwtqb\",\"data-framer-name\":\"Icon\",layoutDependency:layoutDependency,layoutId:\"SazhBd95Y\",...addPropertyOverrides({LSNt2ao8W:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+(((componentViewport?.height||2100)-0-2681)/2+67+80)+0+0+0+551+30+170+0+328+0+5+0),pixelHeight:10,pixelWidth:10,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/GkrDKBsQZmUShN6cbhaoPzLBU.svg\"}},mpgKEKNb5:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+(((componentViewport?.height||1962)-0-2651)/2+67+50)+0+0+0+551+30+170+0+328+0+5+0),pixelHeight:10,pixelWidth:10,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/GkrDKBsQZmUShN6cbhaoPzLBU.svg\"}},swjSyzn6e:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+(((componentViewport?.height||2100)-0-2681)/2+67+80)+0+0+0+551+30+170+0+328+0+5+0),pixelHeight:10,pixelWidth:10,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/GkrDKBsQZmUShN6cbhaoPzLBU.svg\"}},wBvcB5SQ1:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+(((componentViewport?.height||1962)-0-2651)/2+67+50)+0+0+0+551+30+170+0+328+0+5+0),pixelHeight:10,pixelWidth:10,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/GkrDKBsQZmUShN6cbhaoPzLBU.svg\"}}},baseVariant,gestureVariant)})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1feuflx\",\"data-framer-name\":\"Line\",layoutDependency:layoutDependency,layoutId:\"iCUL7Nfuc\",style:{backgroundColor:\"var(--token-fa6afd35-81ed-4b44-8bcf-b09739b6783c, rgb(221, 229, 237))\"}})]}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:27,width:`calc(max((${componentViewport?.width||\"100vw\"} - 20px) / 2, 1px) - 60px)`,y:(componentViewport?.y||0)+0+(((componentViewport?.height||997.5)-0-1369)/2+67+50)+0+0+551+30+170+0+362,...addPropertyOverrides({LSNt2ao8W:{width:`calc(min(${componentViewport?.width||\"100vw\"}, 450px) - 60px)`,y:(componentViewport?.y||0)+0+(((componentViewport?.height||2100)-0-2681)/2+67+80)+0+0+0+551+30+170+0+362},mpgKEKNb5:{width:`calc(min(${componentViewport?.width||\"100vw\"}, 490px) - 60px)`,y:(componentViewport?.y||0)+0+(((componentViewport?.height||1962)-0-2651)/2+67+50)+0+0+0+551+30+170+0+362},swjSyzn6e:{width:`calc(min(${componentViewport?.width||\"100vw\"}, 450px) - 60px)`,y:(componentViewport?.y||0)+0+(((componentViewport?.height||2100)-0-2681)/2+67+80)+0+0+0+551+30+170+0+362},wBvcB5SQ1:{width:`calc(min(${componentViewport?.width||\"100vw\"}, 490px) - 60px)`,y:(componentViewport?.y||0)+0+(((componentViewport?.height||1962)-0-2651)/2+67+50)+0+0+0+551+30+170+0+362}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1pl97tj-container\",layoutDependency:layoutDependency,layoutId:\"ILAL0mS9V-container\",nodeId:\"ILAL0mS9V\",rendersWithMotion:true,scopeId:\"dnPkheplk\",children:/*#__PURE__*/_jsx(HelperPointer,{height:\"100%\",id:\"ILAL0mS9V\",jp9rzvDxm:\"Unlimited proposals\",layoutId:\"ILAL0mS9V\",style:{width:\"100%\"},variant:\"R23Vjp1TJ\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:27,width:`calc(max((${componentViewport?.width||\"100vw\"} - 20px) / 2, 1px) - 60px)`,y:(componentViewport?.y||0)+0+(((componentViewport?.height||997.5)-0-1369)/2+67+50)+0+0+551+30+170+0+403,...addPropertyOverrides({LSNt2ao8W:{width:`calc(min(${componentViewport?.width||\"100vw\"}, 450px) - 60px)`,y:(componentViewport?.y||0)+0+(((componentViewport?.height||2100)-0-2681)/2+67+80)+0+0+0+551+30+170+0+403},mpgKEKNb5:{width:`calc(min(${componentViewport?.width||\"100vw\"}, 490px) - 60px)`,y:(componentViewport?.y||0)+0+(((componentViewport?.height||1962)-0-2651)/2+67+50)+0+0+0+551+30+170+0+403},swjSyzn6e:{width:`calc(min(${componentViewport?.width||\"100vw\"}, 450px) - 60px)`,y:(componentViewport?.y||0)+0+(((componentViewport?.height||2100)-0-2681)/2+67+80)+0+0+0+551+30+170+0+403},wBvcB5SQ1:{width:`calc(min(${componentViewport?.width||\"100vw\"}, 490px) - 60px)`,y:(componentViewport?.y||0)+0+(((componentViewport?.height||1962)-0-2651)/2+67+50)+0+0+0+551+30+170+0+403}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1r05nsa-container\",layoutDependency:layoutDependency,layoutId:\"RaBieW3bD-container\",nodeId:\"RaBieW3bD\",rendersWithMotion:true,scopeId:\"dnPkheplk\",children:/*#__PURE__*/_jsx(HelperPointer,{height:\"100%\",id:\"RaBieW3bD\",jp9rzvDxm:\"Team collaboration with editors\",layoutId:\"RaBieW3bD\",style:{width:\"100%\"},variant:\"R23Vjp1TJ\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:27,width:`calc(max((${componentViewport?.width||\"100vw\"} - 20px) / 2, 1px) - 60px)`,y:(componentViewport?.y||0)+0+(((componentViewport?.height||997.5)-0-1369)/2+67+50)+0+0+551+30+170+0+444,...addPropertyOverrides({LSNt2ao8W:{width:`calc(min(${componentViewport?.width||\"100vw\"}, 450px) - 60px)`,y:(componentViewport?.y||0)+0+(((componentViewport?.height||2100)-0-2681)/2+67+80)+0+0+0+551+30+170+0+444},mpgKEKNb5:{width:`calc(min(${componentViewport?.width||\"100vw\"}, 490px) - 60px)`,y:(componentViewport?.y||0)+0+(((componentViewport?.height||1962)-0-2651)/2+67+50)+0+0+0+551+30+170+0+444},swjSyzn6e:{width:`calc(min(${componentViewport?.width||\"100vw\"}, 450px) - 60px)`,y:(componentViewport?.y||0)+0+(((componentViewport?.height||2100)-0-2681)/2+67+80)+0+0+0+551+30+170+0+444},wBvcB5SQ1:{width:`calc(min(${componentViewport?.width||\"100vw\"}, 490px) - 60px)`,y:(componentViewport?.y||0)+0+(((componentViewport?.height||1962)-0-2651)/2+67+50)+0+0+0+551+30+170+0+444}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1kbmxbz-container\",layoutDependency:layoutDependency,layoutId:\"nkN1XEsPw-container\",nodeId:\"nkN1XEsPw\",rendersWithMotion:true,scopeId:\"dnPkheplk\",children:/*#__PURE__*/_jsx(HelperPointer,{height:\"100%\",id:\"nkN1XEsPw\",jp9rzvDxm:\"Analytics and insights\",layoutId:\"nkN1XEsPw\",style:{width:\"100%\"},variant:\"R23Vjp1TJ\",width:\"100%\"})})})]})]})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-z68x47\",\"data-border\":true,\"data-framer-name\":\"Card\",layoutDependency:layoutDependency,layoutId:\"Gua0DxtvX\",style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"var(--token-fa6afd35-81ed-4b44-8bcf-b09739b6783c, rgb(221, 229, 237))\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",backgroundColor:\"var(--token-f9e45599-fd40-48ec-aab5-41b4b1e1cd80, rgb(255, 255, 255))\",borderBottomLeftRadius:20,borderBottomRightRadius:20,borderTopLeftRadius:20,borderTopRightRadius:20,boxShadow:\"0px 2px 6px 0px rgba(217, 224, 232, 0.10000000149011612)\"},children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1vokhy2\",\"data-border\":true,\"data-framer-name\":\"Sub Container\",layoutDependency:layoutDependency,layoutId:\"BWknYCXal\",style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"var(--token-fa6afd35-81ed-4b44-8bcf-b09739b6783c, rgb(221, 229, 237))\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",backgroundColor:\"var(--token-fb34f388-cd1d-45d7-a628-4c35c84c8877, rgb(248, 250, 252))\"},children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-107gg6d\",\"data-framer-name\":\"Container\",layoutDependency:layoutDependency,layoutId:\"jIX5EkGu8\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1p8kqdc\",\"data-framer-name\":\"Container\",layoutDependency:layoutDependency,layoutId:\"gal3xGJQP\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7QnJpY29sYWdlIEdyb3Rlc3F1ZS02MDA=\",\"--framer-font-family\":'\"Bricolage Grotesque\", \"Bricolage Grotesque Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"150%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-e4fdc027-410b-4747-8d19-b7d6252d4400, rgb(28, 28, 28)))\"},children:\"Pro plan\"})}),className:\"framer-1ifeptb\",\"data-framer-name\":\"Heading\",fonts:[\"GF;Bricolage Grotesque-600\"],layoutDependency:layoutDependency,layoutId:\"VkAotS6Qy\",style:{\"--extracted-r6o4lv\":\"var(--token-e4fdc027-410b-4747-8d19-b7d6252d4400, rgb(28, 28, 28))\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-y9qdzd\",\"data-framer-name\":\"Text Container\",layoutDependency:layoutDependency,layoutId:\"tf1Vokvhr\",style:{backgroundColor:\"var(--token-e4fdc027-410b-4747-8d19-b7d6252d4400, rgb(28, 28, 28))\",borderBottomLeftRadius:100,borderBottomRightRadius:100,borderTopLeftRadius:100,borderTopRightRadius:100},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-dvup99\",\"data-styles-preset\":\"hvr5rXD6E\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-f9e45599-fd40-48ec-aab5-41b4b1e1cd80, rgb(255, 255, 255)))\"},children:\"Most Popular\"})}),className:\"framer-18l90fy\",\"data-framer-name\":\"Text\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"MC5NGUeQR\",style:{\"--extracted-r6o4lv\":\"var(--token-f9e45599-fd40-48ec-aab5-41b4b1e1cd80, rgb(255, 255, 255))\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-zfmgvg\",\"data-framer-name\":\"Text Container\",layoutDependency:layoutDependency,layoutId:\"ZWUBe7xiC\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7SW5zdHJ1bWVudCBTYW5zLTYwMA==\",\"--framer-font-family\":'\"Instrument Sans\", \"Instrument Sans Placeholder\", sans-serif',\"--framer-font-size\":\"55px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"100%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-e4fdc027-410b-4747-8d19-b7d6252d4400, rgb(28, 28, 28)))\"},children:\"$29\"})}),className:\"framer-q3fui0\",\"data-framer-name\":\"Number\",fonts:[\"GF;Instrument Sans-600\"],layoutDependency:layoutDependency,layoutId:\"zli1O_zWI\",style:{\"--extracted-r6o4lv\":\"var(--token-e4fdc027-410b-4747-8d19-b7d6252d4400, rgb(28, 28, 28))\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({LSNt2ao8W:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7SW5zdHJ1bWVudCBTYW5zLTYwMA==\",\"--framer-font-family\":'\"Instrument Sans\", \"Instrument Sans Placeholder\", sans-serif',\"--framer-font-size\":\"55px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"100%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-e4fdc027-410b-4747-8d19-b7d6252d4400, rgb(28, 28, 28)))\"},children:\"$99\"})})},TOOw3Xu0I:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7SW5zdHJ1bWVudCBTYW5zLTYwMA==\",\"--framer-font-family\":'\"Instrument Sans\", \"Instrument Sans Placeholder\", sans-serif',\"--framer-font-size\":\"55px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"100%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-e4fdc027-410b-4747-8d19-b7d6252d4400, rgb(28, 28, 28)))\"},children:\"$23\"})})},wBvcB5SQ1:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7SW5zdHJ1bWVudCBTYW5zLTYwMA==\",\"--framer-font-family\":'\"Instrument Sans\", \"Instrument Sans Placeholder\", sans-serif',\"--framer-font-size\":\"55px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"100%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-e4fdc027-410b-4747-8d19-b7d6252d4400, rgb(28, 28, 28)))\"},children:\"$23\"})})}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-16upl8m\",\"data-styles-preset\":\"iNaWndAoT\",children:\"/ month per editor\"})}),className:\"framer-1cf3tbx\",\"data-framer-name\":\"Text\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"g7u1xQF78\",style:{\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({LSNt2ao8W:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-16upl8m\",\"data-styles-preset\":\"iNaWndAoT\",children:\"/ per year\"})})}},baseVariant,gestureVariant)})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-16upl8m\",\"data-styles-preset\":\"iNaWndAoT\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-f5be0458-7744-4467-9ed4-43d7618ea1c4, rgb(82, 98, 121)))\"},children:\"No credit card required, cancel anytime\"})}),className:\"framer-1k25md2\",\"data-framer-name\":\"Description\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"bahWsyj1T\",style:{\"--extracted-r6o4lv\":\"var(--token-f5be0458-7744-4467-9ed4-43d7618ea1c4, rgb(82, 98, 121))\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:57,width:`calc(max((${componentViewport?.width||\"100vw\"} - 20px) / 2, 1px) - 60px)`,y:(componentViewport?.y||0)+0+(((componentViewport?.height||997.5)-0-1369)/2+67+50)+0+0+0+30+434,...addPropertyOverrides({LSNt2ao8W:{width:`calc(min(${componentViewport?.width||\"100vw\"}, 450px) - 60px)`,y:(componentViewport?.y||0)+0+(((componentViewport?.height||2100)-0-2681)/2+67+80)+0+1282+0+0+30+434},mpgKEKNb5:{width:`calc(min(${componentViewport?.width||\"100vw\"}, 490px) - 60px)`,y:(componentViewport?.y||0)+0+(((componentViewport?.height||1962)-0-2651)/2+67+50)+0+1282+0+0+30+434},swjSyzn6e:{width:`calc(min(${componentViewport?.width||\"100vw\"}, 450px) - 60px)`,y:(componentViewport?.y||0)+0+(((componentViewport?.height||2100)-0-2681)/2+67+80)+0+1282+0+0+30+434},wBvcB5SQ1:{width:`calc(min(${componentViewport?.width||\"100vw\"}, 490px) - 60px)`,y:(componentViewport?.y||0)+0+(((componentViewport?.height||1962)-0-2651)/2+67+50)+0+1282+0+0+30+434}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-fpmacd-container\",layoutDependency:layoutDependency,layoutId:\"LZcmr8FC7-container\",nodeId:\"LZcmr8FC7\",rendersWithMotion:true,scopeId:\"dnPkheplk\",children:/*#__PURE__*/_jsx(ButtonsPrimaryButtonTrackLeadEventfpmacdWithMappedReactProps8b5nzg,{ALqHfl2FI:\"var(--token-f9e45599-fd40-48ec-aab5-41b4b1e1cd80, rgb(255, 255, 255))\",DThcZ2dbv:\"Create your first proposal\",EvBVi6gZB:\"https://app.powerdocs.so/signup\",height:\"100%\",id:\"LZcmr8FC7\",IrVDgirDQ:\"var(--token-e4fdc027-410b-4747-8d19-b7d6252d4400, rgb(28, 28, 28))\",jvwT12xlX:\"var(--token-09920af5-e3bc-4f2c-8ef0-faf72c25158d, rgb(51, 51, 51))\",layoutId:\"LZcmr8FC7\",style:{width:\"100%\"},width:\"100%\"})})})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-ova3by\",\"data-framer-name\":\"Sub Container\",layoutDependency:layoutDependency,layoutId:\"ugArBPaSf\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-2kv07n\",\"data-framer-name\":\"Text Container\",layoutDependency:layoutDependency,layoutId:\"cRGIS8C9z\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"150%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-e4fdc027-410b-4747-8d19-b7d6252d4400, rgb(28, 28, 28)))\"},children:\"What\u2019s Included\"})}),className:\"framer-1xs6y0u\",\"data-framer-name\":\"Heading\",fonts:[\"Inter-SemiBold\"],layoutDependency:layoutDependency,layoutId:\"bNmsVDzQ3\",style:{\"--extracted-r6o4lv\":\"var(--token-e4fdc027-410b-4747-8d19-b7d6252d4400, rgb(28, 28, 28))\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-ayoeoh\",\"data-framer-name\":\"Container\",layoutDependency:layoutDependency,layoutId:\"eXz6DoAAi\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:27,width:`calc(max((${componentViewport?.width||\"100vw\"} - 20px) / 2, 1px) - 60px)`,y:(componentViewport?.y||0)+0+(((componentViewport?.height||997.5)-0-1369)/2+67+50)+0+0+551+30+170+0+0,...addPropertyOverrides({LSNt2ao8W:{width:`calc(min(${componentViewport?.width||\"100vw\"}, 450px) - 60px)`,y:(componentViewport?.y||0)+0+(((componentViewport?.height||2100)-0-2681)/2+67+80)+0+1282+0+551+30+170+0+0},mpgKEKNb5:{width:`calc(min(${componentViewport?.width||\"100vw\"}, 490px) - 60px)`,y:(componentViewport?.y||0)+0+(((componentViewport?.height||1962)-0-2651)/2+67+50)+0+1282+0+551+30+170+0+0},swjSyzn6e:{width:`calc(min(${componentViewport?.width||\"100vw\"}, 450px) - 60px)`,y:(componentViewport?.y||0)+0+(((componentViewport?.height||2100)-0-2681)/2+67+80)+0+1282+0+551+30+170+0+0},wBvcB5SQ1:{width:`calc(min(${componentViewport?.width||\"100vw\"}, 490px) - 60px)`,y:(componentViewport?.y||0)+0+(((componentViewport?.height||1962)-0-2651)/2+67+50)+0+1282+0+551+30+170+0+0}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-10pqxxh-container\",layoutDependency:layoutDependency,layoutId:\"hgA8PzfFq-container\",nodeId:\"hgA8PzfFq\",rendersWithMotion:true,scopeId:\"dnPkheplk\",children:/*#__PURE__*/_jsx(HelperPointer,{height:\"100%\",id:\"hgA8PzfFq\",jp9rzvDxm:\"Unlimited proposals per month\",layoutId:\"hgA8PzfFq\",style:{width:\"100%\"},variant:\"YtE_sihpB\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:27,width:`calc(max((${componentViewport?.width||\"100vw\"} - 20px) / 2, 1px) - 60px)`,y:(componentViewport?.y||0)+0+(((componentViewport?.height||997.5)-0-1369)/2+67+50)+0+0+551+30+170+0+41,...addPropertyOverrides({LSNt2ao8W:{width:`calc(min(${componentViewport?.width||\"100vw\"}, 450px) - 60px)`,y:(componentViewport?.y||0)+0+(((componentViewport?.height||2100)-0-2681)/2+67+80)+0+1282+0+551+30+170+0+41},mpgKEKNb5:{width:`calc(min(${componentViewport?.width||\"100vw\"}, 490px) - 60px)`,y:(componentViewport?.y||0)+0+(((componentViewport?.height||1962)-0-2651)/2+67+50)+0+1282+0+551+30+170+0+41},swjSyzn6e:{width:`calc(min(${componentViewport?.width||\"100vw\"}, 450px) - 60px)`,y:(componentViewport?.y||0)+0+(((componentViewport?.height||2100)-0-2681)/2+67+80)+0+1282+0+551+30+170+0+41},wBvcB5SQ1:{width:`calc(min(${componentViewport?.width||\"100vw\"}, 490px) - 60px)`,y:(componentViewport?.y||0)+0+(((componentViewport?.height||1962)-0-2651)/2+67+50)+0+1282+0+551+30+170+0+41}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1c6c6kk-container\",layoutDependency:layoutDependency,layoutId:\"gyhwOA9pG-container\",nodeId:\"gyhwOA9pG\",rendersWithMotion:true,scopeId:\"dnPkheplk\",children:/*#__PURE__*/_jsx(HelperPointer,{height:\"100%\",id:\"gyhwOA9pG\",jp9rzvDxm:\"Chrome browser extension\",layoutId:\"gyhwOA9pG\",style:{width:\"100%\"},variant:\"YtE_sihpB\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:27,width:`calc(max((${componentViewport?.width||\"100vw\"} - 20px) / 2, 1px) - 60px)`,y:(componentViewport?.y||0)+0+(((componentViewport?.height||997.5)-0-1369)/2+67+50)+0+0+551+30+170+0+82,...addPropertyOverrides({LSNt2ao8W:{width:`calc(min(${componentViewport?.width||\"100vw\"}, 450px) - 60px)`,y:(componentViewport?.y||0)+0+(((componentViewport?.height||2100)-0-2681)/2+67+80)+0+1282+0+551+30+170+0+82},mpgKEKNb5:{width:`calc(min(${componentViewport?.width||\"100vw\"}, 490px) - 60px)`,y:(componentViewport?.y||0)+0+(((componentViewport?.height||1962)-0-2651)/2+67+50)+0+1282+0+551+30+170+0+82},swjSyzn6e:{width:`calc(min(${componentViewport?.width||\"100vw\"}, 450px) - 60px)`,y:(componentViewport?.y||0)+0+(((componentViewport?.height||2100)-0-2681)/2+67+80)+0+1282+0+551+30+170+0+82},wBvcB5SQ1:{width:`calc(min(${componentViewport?.width||\"100vw\"}, 490px) - 60px)`,y:(componentViewport?.y||0)+0+(((componentViewport?.height||1962)-0-2651)/2+67+50)+0+1282+0+551+30+170+0+82}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1mqp2z-container\",layoutDependency:layoutDependency,layoutId:\"WZ9rDTlrS-container\",nodeId:\"WZ9rDTlrS\",rendersWithMotion:true,scopeId:\"dnPkheplk\",children:/*#__PURE__*/_jsx(HelperPointer,{height:\"100%\",id:\"WZ9rDTlrS\",jp9rzvDxm:\"AI-powered autocomplete\",layoutId:\"WZ9rDTlrS\",style:{width:\"100%\"},variant:\"YtE_sihpB\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:27,width:`calc(max((${componentViewport?.width||\"100vw\"} - 20px) / 2, 1px) - 60px)`,y:(componentViewport?.y||0)+0+(((componentViewport?.height||997.5)-0-1369)/2+67+50)+0+0+551+30+170+0+123,...addPropertyOverrides({LSNt2ao8W:{width:`calc(min(${componentViewport?.width||\"100vw\"}, 450px) - 60px)`,y:(componentViewport?.y||0)+0+(((componentViewport?.height||2100)-0-2681)/2+67+80)+0+1282+0+551+30+170+0+123},mpgKEKNb5:{width:`calc(min(${componentViewport?.width||\"100vw\"}, 490px) - 60px)`,y:(componentViewport?.y||0)+0+(((componentViewport?.height||1962)-0-2651)/2+67+50)+0+1282+0+551+30+170+0+123},swjSyzn6e:{width:`calc(min(${componentViewport?.width||\"100vw\"}, 450px) - 60px)`,y:(componentViewport?.y||0)+0+(((componentViewport?.height||2100)-0-2681)/2+67+80)+0+1282+0+551+30+170+0+123},wBvcB5SQ1:{width:`calc(min(${componentViewport?.width||\"100vw\"}, 490px) - 60px)`,y:(componentViewport?.y||0)+0+(((componentViewport?.height||1962)-0-2651)/2+67+50)+0+1282+0+551+30+170+0+123}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-ylsbq5-container\",layoutDependency:layoutDependency,layoutId:\"IPRSeFDMB-container\",nodeId:\"IPRSeFDMB\",rendersWithMotion:true,scopeId:\"dnPkheplk\",children:/*#__PURE__*/_jsx(HelperPointer,{height:\"100%\",id:\"IPRSeFDMB\",jp9rzvDxm:\"Questions Picker\\xae to fill gaps\",layoutId:\"IPRSeFDMB\",style:{width:\"100%\"},variant:\"YtE_sihpB\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:27,width:`calc(max((${componentViewport?.width||\"100vw\"} - 20px) / 2, 1px) - 60px)`,y:(componentViewport?.y||0)+0+(((componentViewport?.height||997.5)-0-1369)/2+67+50)+0+0+551+30+170+0+164,...addPropertyOverrides({LSNt2ao8W:{width:`calc(min(${componentViewport?.width||\"100vw\"}, 450px) - 60px)`,y:(componentViewport?.y||0)+0+(((componentViewport?.height||2100)-0-2681)/2+67+80)+0+1282+0+551+30+170+0+164},mpgKEKNb5:{width:`calc(min(${componentViewport?.width||\"100vw\"}, 490px) - 60px)`,y:(componentViewport?.y||0)+0+(((componentViewport?.height||1962)-0-2651)/2+67+50)+0+1282+0+551+30+170+0+164},swjSyzn6e:{width:`calc(min(${componentViewport?.width||\"100vw\"}, 450px) - 60px)`,y:(componentViewport?.y||0)+0+(((componentViewport?.height||2100)-0-2681)/2+67+80)+0+1282+0+551+30+170+0+164},wBvcB5SQ1:{width:`calc(min(${componentViewport?.width||\"100vw\"}, 490px) - 60px)`,y:(componentViewport?.y||0)+0+(((componentViewport?.height||1962)-0-2651)/2+67+50)+0+1282+0+551+30+170+0+164}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-176fto3-container\",layoutDependency:layoutDependency,layoutId:\"sbN_xN0Yp-container\",nodeId:\"sbN_xN0Yp\",rendersWithMotion:true,scopeId:\"dnPkheplk\",children:/*#__PURE__*/_jsx(HelperPointer,{height:\"100%\",id:\"sbN_xN0Yp\",jp9rzvDxm:\"Use AI Chat for document edits\",layoutId:\"sbN_xN0Yp\",style:{width:\"100%\"},variant:\"YtE_sihpB\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:27,width:`calc(max((${componentViewport?.width||\"100vw\"} - 20px) / 2, 1px) - 60px)`,y:(componentViewport?.y||0)+0+(((componentViewport?.height||997.5)-0-1369)/2+67+50)+0+0+551+30+170+0+205,...addPropertyOverrides({LSNt2ao8W:{width:`calc(min(${componentViewport?.width||\"100vw\"}, 450px) - 60px)`,y:(componentViewport?.y||0)+0+(((componentViewport?.height||2100)-0-2681)/2+67+80)+0+1282+0+551+30+170+0+205},mpgKEKNb5:{width:`calc(min(${componentViewport?.width||\"100vw\"}, 490px) - 60px)`,y:(componentViewport?.y||0)+0+(((componentViewport?.height||1962)-0-2651)/2+67+50)+0+1282+0+551+30+170+0+205},swjSyzn6e:{width:`calc(min(${componentViewport?.width||\"100vw\"}, 450px) - 60px)`,y:(componentViewport?.y||0)+0+(((componentViewport?.height||2100)-0-2681)/2+67+80)+0+1282+0+551+30+170+0+205},wBvcB5SQ1:{width:`calc(min(${componentViewport?.width||\"100vw\"}, 490px) - 60px)`,y:(componentViewport?.y||0)+0+(((componentViewport?.height||1962)-0-2651)/2+67+50)+0+1282+0+551+30+170+0+205}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-3f0mm8-container\",layoutDependency:layoutDependency,layoutId:\"e5PtHguzu-container\",nodeId:\"e5PtHguzu\",rendersWithMotion:true,scopeId:\"dnPkheplk\",children:/*#__PURE__*/_jsx(HelperPointer,{height:\"100%\",id:\"e5PtHguzu\",jp9rzvDxm:\"Export to PDF, Word, and CSV\",layoutId:\"e5PtHguzu\",style:{width:\"100%\"},variant:\"YtE_sihpB\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:27,width:`calc(max((${componentViewport?.width||\"100vw\"} - 20px) / 2, 1px) - 60px)`,y:(componentViewport?.y||0)+0+(((componentViewport?.height||997.5)-0-1369)/2+67+50)+0+0+551+30+170+0+246,...addPropertyOverrides({LSNt2ao8W:{width:`calc(min(${componentViewport?.width||\"100vw\"}, 450px) - 60px)`,y:(componentViewport?.y||0)+0+(((componentViewport?.height||2100)-0-2681)/2+67+80)+0+1282+0+551+30+170+0+246},mpgKEKNb5:{width:`calc(min(${componentViewport?.width||\"100vw\"}, 490px) - 60px)`,y:(componentViewport?.y||0)+0+(((componentViewport?.height||1962)-0-2651)/2+67+50)+0+1282+0+551+30+170+0+246},swjSyzn6e:{width:`calc(min(${componentViewport?.width||\"100vw\"}, 450px) - 60px)`,y:(componentViewport?.y||0)+0+(((componentViewport?.height||2100)-0-2681)/2+67+80)+0+1282+0+551+30+170+0+246},wBvcB5SQ1:{width:`calc(min(${componentViewport?.width||\"100vw\"}, 490px) - 60px)`,y:(componentViewport?.y||0)+0+(((componentViewport?.height||1962)-0-2651)/2+67+50)+0+1282+0+551+30+170+0+246}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-aswua0-container\",layoutDependency:layoutDependency,layoutId:\"L3eZLhczr-container\",nodeId:\"L3eZLhczr\",rendersWithMotion:true,scopeId:\"dnPkheplk\",children:/*#__PURE__*/_jsx(HelperPointer,{height:\"100%\",id:\"L3eZLhczr\",jp9rzvDxm:\"Invite team members with full editing access\",layoutId:\"L3eZLhczr\",style:{width:\"100%\"},variant:\"YtE_sihpB\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:27,width:`calc(max((${componentViewport?.width||\"100vw\"} - 20px) / 2, 1px) - 60px)`,y:(componentViewport?.y||0)+0+(((componentViewport?.height||997.5)-0-1369)/2+67+50)+0+0+551+30+170+0+287,...addPropertyOverrides({LSNt2ao8W:{width:`calc(min(${componentViewport?.width||\"100vw\"}, 450px) - 60px)`,y:(componentViewport?.y||0)+0+(((componentViewport?.height||2100)-0-2681)/2+67+80)+0+1282+0+551+30+170+0+287},mpgKEKNb5:{width:`calc(min(${componentViewport?.width||\"100vw\"}, 490px) - 60px)`,y:(componentViewport?.y||0)+0+(((componentViewport?.height||1962)-0-2651)/2+67+50)+0+1282+0+551+30+170+0+287},swjSyzn6e:{width:`calc(min(${componentViewport?.width||\"100vw\"}, 450px) - 60px)`,y:(componentViewport?.y||0)+0+(((componentViewport?.height||2100)-0-2681)/2+67+80)+0+1282+0+551+30+170+0+287},wBvcB5SQ1:{width:`calc(min(${componentViewport?.width||\"100vw\"}, 490px) - 60px)`,y:(componentViewport?.y||0)+0+(((componentViewport?.height||1962)-0-2651)/2+67+50)+0+1282+0+551+30+170+0+287}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1usj4mh-container\",layoutDependency:layoutDependency,layoutId:\"YJbXPxYFf-container\",nodeId:\"YJbXPxYFf\",rendersWithMotion:true,scopeId:\"dnPkheplk\",children:/*#__PURE__*/_jsx(HelperPointer,{height:\"100%\",id:\"YJbXPxYFf\",jp9rzvDxm:\"Share web-view documents with clients (no branding)\",layoutId:\"YJbXPxYFf\",style:{width:\"100%\"},variant:\"YtE_sihpB\",width:\"100%\"})})}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1wn2ap2\",\"data-framer-name\":\"Divider\",layoutDependency:layoutDependency,layoutId:\"kPxenYtnq\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1q0uim\",\"data-framer-name\":\"Line\",layoutDependency:layoutDependency,layoutId:\"eRfWla7oL\",style:{backgroundColor:\"var(--token-fa6afd35-81ed-4b44-8bcf-b09739b6783c, rgb(221, 229, 237))\"}}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-oohgsr\",\"data-border\":true,\"data-framer-name\":\"Container\",layoutDependency:layoutDependency,layoutId:\"yLA3cxs_w\",style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"var(--token-fa6afd35-81ed-4b44-8bcf-b09739b6783c, rgb(221, 229, 237))\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",backgroundColor:\"var(--token-b8136821-7827-4ad3-8195-cf6926c973ca, rgb(241, 244, 248))\",borderBottomLeftRadius:6,borderBottomRightRadius:6,borderTopLeftRadius:6,borderTopRightRadius:6},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+(((componentViewport?.height||997.5)-0-1369)/2+67+50)+0+0+551+30+170+0+328+0+5+0),pixelHeight:10,pixelWidth:10,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/GkrDKBsQZmUShN6cbhaoPzLBU.svg\"},className:\"framer-kcn33e\",\"data-framer-name\":\"Icon\",layoutDependency:layoutDependency,layoutId:\"YeX2p2TgA\",...addPropertyOverrides({LSNt2ao8W:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+(((componentViewport?.height||2100)-0-2681)/2+67+80)+0+1282+0+551+30+170+0+328+0+5+0),pixelHeight:10,pixelWidth:10,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/GkrDKBsQZmUShN6cbhaoPzLBU.svg\"}},mpgKEKNb5:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+(((componentViewport?.height||1962)-0-2651)/2+67+50)+0+1282+0+551+30+170+0+328+0+5+0),pixelHeight:10,pixelWidth:10,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/GkrDKBsQZmUShN6cbhaoPzLBU.svg\"}},swjSyzn6e:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+(((componentViewport?.height||2100)-0-2681)/2+67+80)+0+1282+0+551+30+170+0+328+0+5+0),pixelHeight:10,pixelWidth:10,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/GkrDKBsQZmUShN6cbhaoPzLBU.svg\"}},wBvcB5SQ1:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+(((componentViewport?.height||1962)-0-2651)/2+67+50)+0+1282+0+551+30+170+0+328+0+5+0),pixelHeight:10,pixelWidth:10,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/GkrDKBsQZmUShN6cbhaoPzLBU.svg\"}}},baseVariant,gestureVariant)})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-7lpz6m\",\"data-framer-name\":\"Line\",layoutDependency:layoutDependency,layoutId:\"eQyQmCC9l\",style:{backgroundColor:\"var(--token-fa6afd35-81ed-4b44-8bcf-b09739b6783c, rgb(221, 229, 237))\"}})]}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:27,width:`calc(max((${componentViewport?.width||\"100vw\"} - 20px) / 2, 1px) - 60px)`,y:(componentViewport?.y||0)+0+(((componentViewport?.height||997.5)-0-1369)/2+67+50)+0+0+551+30+170+0+362,...addPropertyOverrides({LSNt2ao8W:{width:`calc(min(${componentViewport?.width||\"100vw\"}, 450px) - 60px)`,y:(componentViewport?.y||0)+0+(((componentViewport?.height||2100)-0-2681)/2+67+80)+0+1282+0+551+30+170+0+362},mpgKEKNb5:{width:`calc(min(${componentViewport?.width||\"100vw\"}, 490px) - 60px)`,y:(componentViewport?.y||0)+0+(((componentViewport?.height||1962)-0-2651)/2+67+50)+0+1282+0+551+30+170+0+362},swjSyzn6e:{width:`calc(min(${componentViewport?.width||\"100vw\"}, 450px) - 60px)`,y:(componentViewport?.y||0)+0+(((componentViewport?.height||2100)-0-2681)/2+67+80)+0+1282+0+551+30+170+0+362},wBvcB5SQ1:{width:`calc(min(${componentViewport?.width||\"100vw\"}, 490px) - 60px)`,y:(componentViewport?.y||0)+0+(((componentViewport?.height||1962)-0-2651)/2+67+50)+0+1282+0+551+30+170+0+362}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1b5s4h5-container\",layoutDependency:layoutDependency,layoutId:\"IYSVXi8sp-container\",nodeId:\"IYSVXi8sp\",rendersWithMotion:true,scopeId:\"dnPkheplk\",children:/*#__PURE__*/_jsx(HelperPointer,{height:\"100%\",id:\"IYSVXi8sp\",jp9rzvDxm:\"Unlimited proposals\",layoutId:\"IYSVXi8sp\",style:{width:\"100%\"},variant:\"YtE_sihpB\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:27,width:`calc(max((${componentViewport?.width||\"100vw\"} - 20px) / 2, 1px) - 60px)`,y:(componentViewport?.y||0)+0+(((componentViewport?.height||997.5)-0-1369)/2+67+50)+0+0+551+30+170+0+403,...addPropertyOverrides({LSNt2ao8W:{width:`calc(min(${componentViewport?.width||\"100vw\"}, 450px) - 60px)`,y:(componentViewport?.y||0)+0+(((componentViewport?.height||2100)-0-2681)/2+67+80)+0+1282+0+551+30+170+0+403},mpgKEKNb5:{width:`calc(min(${componentViewport?.width||\"100vw\"}, 490px) - 60px)`,y:(componentViewport?.y||0)+0+(((componentViewport?.height||1962)-0-2651)/2+67+50)+0+1282+0+551+30+170+0+403},swjSyzn6e:{width:`calc(min(${componentViewport?.width||\"100vw\"}, 450px) - 60px)`,y:(componentViewport?.y||0)+0+(((componentViewport?.height||2100)-0-2681)/2+67+80)+0+1282+0+551+30+170+0+403},wBvcB5SQ1:{width:`calc(min(${componentViewport?.width||\"100vw\"}, 490px) - 60px)`,y:(componentViewport?.y||0)+0+(((componentViewport?.height||1962)-0-2651)/2+67+50)+0+1282+0+551+30+170+0+403}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-nxx9rb-container\",layoutDependency:layoutDependency,layoutId:\"XnYvVe5Wq-container\",nodeId:\"XnYvVe5Wq\",rendersWithMotion:true,scopeId:\"dnPkheplk\",children:/*#__PURE__*/_jsx(HelperPointer,{height:\"100%\",id:\"XnYvVe5Wq\",jp9rzvDxm:\"Team collaboration with editors\",layoutId:\"XnYvVe5Wq\",style:{width:\"100%\"},variant:\"YtE_sihpB\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:27,width:`calc(max((${componentViewport?.width||\"100vw\"} - 20px) / 2, 1px) - 60px)`,y:(componentViewport?.y||0)+0+(((componentViewport?.height||997.5)-0-1369)/2+67+50)+0+0+551+30+170+0+444,...addPropertyOverrides({LSNt2ao8W:{width:`calc(min(${componentViewport?.width||\"100vw\"}, 450px) - 60px)`,y:(componentViewport?.y||0)+0+(((componentViewport?.height||2100)-0-2681)/2+67+80)+0+1282+0+551+30+170+0+444},mpgKEKNb5:{width:`calc(min(${componentViewport?.width||\"100vw\"}, 490px) - 60px)`,y:(componentViewport?.y||0)+0+(((componentViewport?.height||1962)-0-2651)/2+67+50)+0+1282+0+551+30+170+0+444},swjSyzn6e:{width:`calc(min(${componentViewport?.width||\"100vw\"}, 450px) - 60px)`,y:(componentViewport?.y||0)+0+(((componentViewport?.height||2100)-0-2681)/2+67+80)+0+1282+0+551+30+170+0+444},wBvcB5SQ1:{width:`calc(min(${componentViewport?.width||\"100vw\"}, 490px) - 60px)`,y:(componentViewport?.y||0)+0+(((componentViewport?.height||1962)-0-2651)/2+67+50)+0+1282+0+551+30+170+0+444}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1acqw6k-container\",layoutDependency:layoutDependency,layoutId:\"tt3fQUMMV-container\",nodeId:\"tt3fQUMMV\",rendersWithMotion:true,scopeId:\"dnPkheplk\",children:/*#__PURE__*/_jsx(HelperPointer,{height:\"100%\",id:\"tt3fQUMMV\",jp9rzvDxm:\"Analytics and insights\",layoutId:\"tt3fQUMMV\",style:{width:\"100%\"},variant:\"YtE_sihpB\",width:\"100%\"})})})]})]})]})]})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-MzO41.framer-13qai2n, .framer-MzO41 .framer-13qai2n { display: block; }\",\".framer-MzO41.framer-11kg8v7 { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 50px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 1162px; }\",\".framer-MzO41 .framer-utkgx6 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 2px; height: min-content; justify-content: flex-start; overflow: visible; padding: 8px; position: relative; width: min-content; }\",\".framer-MzO41 .framer-1m72ga6-container, .framer-MzO41 .framer-7c2hoo-container { flex: none; height: auto; position: relative; width: auto; }\",\".framer-MzO41 .framer-111s3i1 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: 61px; justify-content: center; overflow: visible; padding: 0px; position: absolute; right: -284px; top: 49%; width: min-content; z-index: 1; }\",\".framer-MzO41 .framer-1huujcr { flex: none; height: 63px; left: -76px; overflow: hidden; position: absolute; top: -5px; width: 84px; z-index: 1; }\",\".framer-MzO41 .framer-112ikmc { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 5px 10px 5px 10px; position: relative; width: min-content; }\",\".framer-MzO41 .framer-ng7qvg, .framer-MzO41 .framer-1hnt3uj, .framer-MzO41 .framer-1t9ez5a, .framer-MzO41 .framer-18l90fy, .framer-MzO41 .framer-q3fui0, .framer-MzO41 .framer-1cf3tbx { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-MzO41 .framer-lz97db { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-MzO41 .framer-zsie7x, .framer-MzO41 .framer-z68x47 { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 1px; will-change: var(--framer-will-change-override, transform); }\",\".framer-MzO41 .framer-4xj1ob, .framer-MzO41 .framer-1vokhy2 { align-content: flex-end; align-items: flex-end; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: flex-start; overflow: visible; padding: 30px; position: relative; width: 100%; }\",\".framer-MzO41 .framer-cq6bya, .framer-MzO41 .framer-107gg6d { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-MzO41 .framer-oqwcbf, .framer-MzO41 .framer-19m0zhj, .framer-MzO41 .framer-11xlo74, .framer-MzO41 .framer-1k25md2, .framer-MzO41 .framer-1xs6y0u { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-MzO41 .framer-4qajxu, .framer-MzO41 .framer-zfmgvg { align-content: flex-end; align-items: flex-end; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 4px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-MzO41 .framer-j9b5d9-container, .framer-MzO41 .framer-15ggn0r-container, .framer-MzO41 .framer-bs0wqn-container, .framer-MzO41 .framer-1ih4a89-container, .framer-MzO41 .framer-1o2m0wr-container, .framer-MzO41 .framer-qudift-container, .framer-MzO41 .framer-195t7x9-container, .framer-MzO41 .framer-1oxn32h-container, .framer-MzO41 .framer-1wiy26u-container, .framer-MzO41 .framer-1pl97tj-container, .framer-MzO41 .framer-1r05nsa-container, .framer-MzO41 .framer-1kbmxbz-container, .framer-MzO41 .framer-fpmacd-container, .framer-MzO41 .framer-10pqxxh-container, .framer-MzO41 .framer-1c6c6kk-container, .framer-MzO41 .framer-1mqp2z-container, .framer-MzO41 .framer-ylsbq5-container, .framer-MzO41 .framer-176fto3-container, .framer-MzO41 .framer-3f0mm8-container, .framer-MzO41 .framer-aswua0-container, .framer-MzO41 .framer-1usj4mh-container, .framer-MzO41 .framer-1b5s4h5-container, .framer-MzO41 .framer-nxx9rb-container, .framer-MzO41 .framer-1acqw6k-container { flex: none; height: auto; position: relative; width: 100%; }\",\".framer-MzO41 .framer-1iuiy8n, .framer-MzO41 .framer-ova3by { align-content: flex-end; align-items: flex-end; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: flex-start; overflow: visible; padding: 30px; position: relative; width: 100%; }\",\".framer-MzO41 .framer-1usl7g, .framer-MzO41 .framer-2kv07n { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 4px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-MzO41 .framer-4rrruy, .framer-MzO41 .framer-ayoeoh { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 14px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-MzO41 .framer-m2ebc7, .framer-MzO41 .framer-1wn2ap2 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: 20px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-MzO41 .framer-r0g1cr, .framer-MzO41 .framer-1feuflx, .framer-MzO41 .framer-1q0uim, .framer-MzO41 .framer-7lpz6m { flex: 1 0 0px; height: 1px; overflow: hidden; position: relative; width: 1px; }\",\".framer-MzO41 .framer-1dv56tj, .framer-MzO41 .framer-oohgsr { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 5px; position: relative; width: min-content; will-change: var(--framer-will-change-override, transform); z-index: 1; }\",\".framer-MzO41 .framer-1srwtqb, .framer-MzO41 .framer-kcn33e { flex: none; height: 10px; overflow: hidden; position: relative; width: 10px; }\",\".framer-MzO41 .framer-1p8kqdc { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-MzO41 .framer-1ifeptb { flex: 1 0 0px; height: auto; position: relative; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; }\",\".framer-MzO41 .framer-y9qdzd { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 6px; height: min-content; justify-content: flex-start; overflow: visible; padding: 4px 10px 4px 10px; position: relative; width: min-content; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-MzO41.framer-11kg8v7, .framer-MzO41 .framer-utkgx6, .framer-MzO41 .framer-111s3i1, .framer-MzO41 .framer-112ikmc, .framer-MzO41 .framer-lz97db, .framer-MzO41 .framer-zsie7x, .framer-MzO41 .framer-4xj1ob, .framer-MzO41 .framer-cq6bya, .framer-MzO41 .framer-4qajxu, .framer-MzO41 .framer-1iuiy8n, .framer-MzO41 .framer-1usl7g, .framer-MzO41 .framer-4rrruy, .framer-MzO41 .framer-m2ebc7, .framer-MzO41 .framer-1dv56tj, .framer-MzO41 .framer-z68x47, .framer-MzO41 .framer-1vokhy2, .framer-MzO41 .framer-107gg6d, .framer-MzO41 .framer-1p8kqdc, .framer-MzO41 .framer-y9qdzd, .framer-MzO41 .framer-zfmgvg, .framer-MzO41 .framer-ova3by, .framer-MzO41 .framer-2kv07n, .framer-MzO41 .framer-ayoeoh, .framer-MzO41 .framer-1wn2ap2, .framer-MzO41 .framer-oohgsr { gap: 0px; } .framer-MzO41.framer-11kg8v7 > * { margin: 0px; margin-bottom: calc(50px / 2); margin-top: calc(50px / 2); } .framer-MzO41.framer-11kg8v7 > :first-child, .framer-MzO41 .framer-zsie7x > :first-child, .framer-MzO41 .framer-4xj1ob > :first-child, .framer-MzO41 .framer-cq6bya > :first-child, .framer-MzO41 .framer-1iuiy8n > :first-child, .framer-MzO41 .framer-1usl7g > :first-child, .framer-MzO41 .framer-4rrruy > :first-child, .framer-MzO41 .framer-1dv56tj > :first-child, .framer-MzO41 .framer-z68x47 > :first-child, .framer-MzO41 .framer-1vokhy2 > :first-child, .framer-MzO41 .framer-107gg6d > :first-child, .framer-MzO41 .framer-ova3by > :first-child, .framer-MzO41 .framer-2kv07n > :first-child, .framer-MzO41 .framer-ayoeoh > :first-child, .framer-MzO41 .framer-oohgsr > :first-child { margin-top: 0px; } .framer-MzO41.framer-11kg8v7 > :last-child, .framer-MzO41 .framer-zsie7x > :last-child, .framer-MzO41 .framer-4xj1ob > :last-child, .framer-MzO41 .framer-cq6bya > :last-child, .framer-MzO41 .framer-1iuiy8n > :last-child, .framer-MzO41 .framer-1usl7g > :last-child, .framer-MzO41 .framer-4rrruy > :last-child, .framer-MzO41 .framer-1dv56tj > :last-child, .framer-MzO41 .framer-z68x47 > :last-child, .framer-MzO41 .framer-1vokhy2 > :last-child, .framer-MzO41 .framer-107gg6d > :last-child, .framer-MzO41 .framer-ova3by > :last-child, .framer-MzO41 .framer-2kv07n > :last-child, .framer-MzO41 .framer-ayoeoh > :last-child, .framer-MzO41 .framer-oohgsr > :last-child { margin-bottom: 0px; } .framer-MzO41 .framer-utkgx6 > * { margin: 0px; margin-left: calc(2px / 2); margin-right: calc(2px / 2); } .framer-MzO41 .framer-utkgx6 > :first-child, .framer-MzO41 .framer-111s3i1 > :first-child, .framer-MzO41 .framer-112ikmc > :first-child, .framer-MzO41 .framer-lz97db > :first-child, .framer-MzO41 .framer-4qajxu > :first-child, .framer-MzO41 .framer-m2ebc7 > :first-child, .framer-MzO41 .framer-1p8kqdc > :first-child, .framer-MzO41 .framer-y9qdzd > :first-child, .framer-MzO41 .framer-zfmgvg > :first-child, .framer-MzO41 .framer-1wn2ap2 > :first-child { margin-left: 0px; } .framer-MzO41 .framer-utkgx6 > :last-child, .framer-MzO41 .framer-111s3i1 > :last-child, .framer-MzO41 .framer-112ikmc > :last-child, .framer-MzO41 .framer-lz97db > :last-child, .framer-MzO41 .framer-4qajxu > :last-child, .framer-MzO41 .framer-m2ebc7 > :last-child, .framer-MzO41 .framer-1p8kqdc > :last-child, .framer-MzO41 .framer-y9qdzd > :last-child, .framer-MzO41 .framer-zfmgvg > :last-child, .framer-MzO41 .framer-1wn2ap2 > :last-child { margin-right: 0px; } .framer-MzO41 .framer-111s3i1 > *, .framer-MzO41 .framer-m2ebc7 > *, .framer-MzO41 .framer-1wn2ap2 > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } .framer-MzO41 .framer-112ikmc > *, .framer-MzO41 .framer-1p8kqdc > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-MzO41 .framer-lz97db > * { margin: 0px; margin-left: calc(20px / 2); margin-right: calc(20px / 2); } .framer-MzO41 .framer-zsie7x > *, .framer-MzO41 .framer-z68x47 > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-MzO41 .framer-4xj1ob > *, .framer-MzO41 .framer-1vokhy2 > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } .framer-MzO41 .framer-cq6bya > *, .framer-MzO41 .framer-1iuiy8n > *, .framer-MzO41 .framer-107gg6d > *, .framer-MzO41 .framer-ova3by > * { margin: 0px; margin-bottom: calc(20px / 2); margin-top: calc(20px / 2); } .framer-MzO41 .framer-4qajxu > *, .framer-MzO41 .framer-zfmgvg > * { margin: 0px; margin-left: calc(4px / 2); margin-right: calc(4px / 2); } .framer-MzO41 .framer-1usl7g > *, .framer-MzO41 .framer-2kv07n > * { margin: 0px; margin-bottom: calc(4px / 2); margin-top: calc(4px / 2); } .framer-MzO41 .framer-4rrruy > *, .framer-MzO41 .framer-ayoeoh > * { margin: 0px; margin-bottom: calc(14px / 2); margin-top: calc(14px / 2); } .framer-MzO41 .framer-1dv56tj > *, .framer-MzO41 .framer-oohgsr > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-MzO41 .framer-y9qdzd > * { margin: 0px; margin-left: calc(6px / 2); margin-right: calc(6px / 2); } }\",\".framer-MzO41.framer-v-1wtrz73.framer-11kg8v7, .framer-MzO41.framer-v-1les5di.framer-11kg8v7 { width: 750px; }\",\".framer-MzO41.framer-v-1wtrz73 .framer-111s3i1, .framer-MzO41.framer-v-1les5di .framer-111s3i1 { right: -266px; top: 49%; }\",\".framer-MzO41.framer-v-1wtrz73 .framer-1huujcr, .framer-MzO41.framer-v-1les5di .framer-1huujcr { aspect-ratio: 1.3333333333333333 / 1; height: var(--framer-aspect-ratio-supported, 49px); left: -60px; top: 2px; width: 65px; }\",\".framer-MzO41.framer-v-1wtrz73 .framer-lz97db, .framer-MzO41.framer-v-1les5di .framer-lz97db { flex-direction: column; gap: 30px; max-width: 490px; }\",\".framer-MzO41.framer-v-1wtrz73 .framer-zsie7x, .framer-MzO41.framer-v-1wtrz73 .framer-z68x47, .framer-MzO41.framer-v-1les5di .framer-zsie7x, .framer-MzO41.framer-v-1les5di .framer-z68x47, .framer-MzO41.framer-v-1votq9h .framer-zsie7x, .framer-MzO41.framer-v-1votq9h .framer-z68x47, .framer-MzO41.framer-v-11rp6xd .framer-zsie7x, .framer-MzO41.framer-v-11rp6xd .framer-z68x47 { flex: none; width: 100%; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-MzO41.framer-v-1wtrz73 .framer-lz97db { gap: 0px; } .framer-MzO41.framer-v-1wtrz73 .framer-lz97db > * { margin: 0px; margin-bottom: calc(30px / 2); margin-top: calc(30px / 2); } .framer-MzO41.framer-v-1wtrz73 .framer-lz97db > :first-child { margin-top: 0px; } .framer-MzO41.framer-v-1wtrz73 .framer-lz97db > :last-child { margin-bottom: 0px; } }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-MzO41.framer-v-1les5di .framer-lz97db { gap: 0px; } .framer-MzO41.framer-v-1les5di .framer-lz97db > * { margin: 0px; margin-bottom: calc(30px / 2); margin-top: calc(30px / 2); } .framer-MzO41.framer-v-1les5di .framer-lz97db > :first-child { margin-top: 0px; } .framer-MzO41.framer-v-1les5di .framer-lz97db > :last-child { margin-bottom: 0px; } }\",\".framer-MzO41.framer-v-1votq9h.framer-11kg8v7, .framer-MzO41.framer-v-11rp6xd.framer-11kg8v7 { gap: 80px; width: 390px; }\",\".framer-MzO41.framer-v-1votq9h .framer-111s3i1, .framer-MzO41.framer-v-11rp6xd .framer-111s3i1 { bottom: -52px; height: min-content; left: 50%; right: unset; top: unset; }\",\".framer-MzO41.framer-v-1votq9h .framer-1huujcr, .framer-MzO41.framer-v-11rp6xd .framer-1huujcr { height: 57px; left: unset; right: -15px; top: -23px; width: 40px; }\",\".framer-MzO41.framer-v-1votq9h .framer-lz97db, .framer-MzO41.framer-v-11rp6xd .framer-lz97db { flex-direction: column; gap: 30px; max-width: 450px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-MzO41.framer-v-1votq9h.framer-11kg8v7, .framer-MzO41.framer-v-1votq9h .framer-lz97db { gap: 0px; } .framer-MzO41.framer-v-1votq9h.framer-11kg8v7 > * { margin: 0px; margin-bottom: calc(80px / 2); margin-top: calc(80px / 2); } .framer-MzO41.framer-v-1votq9h.framer-11kg8v7 > :first-child, .framer-MzO41.framer-v-1votq9h .framer-lz97db > :first-child { margin-top: 0px; } .framer-MzO41.framer-v-1votq9h.framer-11kg8v7 > :last-child, .framer-MzO41.framer-v-1votq9h .framer-lz97db > :last-child { margin-bottom: 0px; } .framer-MzO41.framer-v-1votq9h .framer-lz97db > * { margin: 0px; margin-bottom: calc(30px / 2); margin-top: calc(30px / 2); } }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-MzO41.framer-v-11rp6xd.framer-11kg8v7, .framer-MzO41.framer-v-11rp6xd .framer-lz97db { gap: 0px; } .framer-MzO41.framer-v-11rp6xd.framer-11kg8v7 > * { margin: 0px; margin-bottom: calc(80px / 2); margin-top: calc(80px / 2); } .framer-MzO41.framer-v-11rp6xd.framer-11kg8v7 > :first-child, .framer-MzO41.framer-v-11rp6xd .framer-lz97db > :first-child { margin-top: 0px; } .framer-MzO41.framer-v-11rp6xd.framer-11kg8v7 > :last-child, .framer-MzO41.framer-v-11rp6xd .framer-lz97db > :last-child { margin-bottom: 0px; } .framer-MzO41.framer-v-11rp6xd .framer-lz97db > * { margin: 0px; margin-bottom: calc(30px / 2); margin-top: calc(30px / 2); } }\",...sharedStyle.css,...sharedStyle1.css,'.framer-MzO41[data-border=\"true\"]::after, .framer-MzO41 [data-border=\"true\"]::after { content: \"\"; border-width: var(--border-top-width, 0) var(--border-right-width, 0) var(--border-bottom-width, 0) var(--border-left-width, 0); border-color: var(--border-color, none); border-style: var(--border-style, none); width: 100%; height: 100%; position: absolute; box-sizing: border-box; left: 0; top: 0; border-radius: inherit; pointer-events: none; }'];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 997.5\n * @framerIntrinsicWidth 1162\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"TOOw3Xu0I\":{\"layout\":[\"fixed\",\"auto\"]},\"mpgKEKNb5\":{\"layout\":[\"fixed\",\"auto\"]},\"wBvcB5SQ1\":{\"layout\":[\"fixed\",\"auto\"]},\"swjSyzn6e\":{\"layout\":[\"fixed\",\"auto\"]},\"LSNt2ao8W\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerdnPkheplk=withCSS(Component,css,\"framer-MzO41\");export default FramerdnPkheplk;FramerdnPkheplk.displayName=\"Pricing Component\";FramerdnPkheplk.defaultProps={height:997.5,width:1162};addPropertyControls(FramerdnPkheplk,{variant:{options:[\"S1jThe6Ze\",\"TOOw3Xu0I\",\"mpgKEKNb5\",\"wBvcB5SQ1\",\"swjSyzn6e\",\"LSNt2ao8W\"],optionTitles:[\"Desktop Monthly\",\"Desktop Yearly\",\"Tablet Montly\",\"Tablet Yearly\",\"Mobile Monthly\",\"Mobile Yearly\"],title:\"Variant\",type:ControlType.Enum}});addFonts(FramerdnPkheplk,[{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/5A3Ce6C9YYmCjpQx9M4inSaKU.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/Qx95Xyt0Ka3SGhinnbXIGpEIyP4.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/6mJuEAguuIuMog10gGvH5d3cl8.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/xYYWaj7wCU5zSQH0eXvSaS19wo.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/otTaNuNpVK4RbdlT7zDDdKvQBA.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/d3tHnaQIAeqiE5hGcRw4mmgWYU.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/DolVirEGb34pEXEp8t8FQBSK4.woff2\",weight:\"500\"},{family:\"Bricolage Grotesque\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/bricolagegrotesque/v8/3y9U6as8bTXq_nANBjzKo3IeZx8z6up5BeSl5jBNz_19PpbpMXuECpwUxJBOm_OJWiaaD30YfKfjZZoLvcXlyMgvs-wJDtw.woff2\",weight:\"600\"},{family:\"Instrument Sans\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/instrumentsans/v1/pximypc9vsFDm051Uf6KVwgkfoSxQ0GsQv8ToedPibnr-yp2JGEJOH9npSQb_gfwmS0v3_7Y.woff2\",weight:\"600\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/5vvr9Vy74if2I6bQbJvbw7SY1pQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/EOr0mi4hNtlgWNn9if640EZzXCo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Y9k9QrlZAqio88Klkmbd8VoMQc.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/OYrD2tBIBPvoJXiIHnLoOXnY9M.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/JeYwfuaPfZHQhEG8U5gtPDZ7WQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/vQyevYAyHtARFwPqUzQGpnDs.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/b6Y37FthZeALduNqHicBT6FutY.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/hyOgCu0Xnghbimh0pE8QTvtt2AU.woff2\",weight:\"600\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/NeGmSOXrPBfEFIy5YZeHq17LEDA.woff2\",weight:\"600\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/oYaAX5himiTPYuN8vLWnqBbfD2s.woff2\",weight:\"600\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/lEJLP4R0yuCaMCjSXYHtJw72M.woff2\",weight:\"600\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/cRJyLNuTJR5jbyKzGi33wU9cqIQ.woff2\",weight:\"600\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/1ZFS7N918ojhhd0nQWdj3jz4w.woff2\",weight:\"600\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/A0Wcc7NgXMjUuFdquHDrIZpzZw0.woff2\",weight:\"600\"}]},...ButtonsPricingButtonFonts,...ButtonsPrimaryButtonFonts,...HelperPointerFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerdnPkheplk\",\"slots\":[],\"annotations\":{\"framerDisplayContentsDiv\":\"false\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"TOOw3Xu0I\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"mpgKEKNb5\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"wBvcB5SQ1\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"swjSyzn6e\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"LSNt2ao8W\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerIntrinsicWidth\":\"1162\",\"framerImmutableVariables\":\"true\",\"framerIntrinsicHeight\":\"997.5\",\"framerContractVersion\":\"1\",\"framerComponentViewportWidth\":\"true\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (38d083a)\nimport{fontStore}from\"framer\";fontStore.loadFonts([\"GF;Bricolage Grotesque-600\",\"GF;Bricolage Grotesque-700\"]);export const fonts=[{explicitInter:true,fonts:[{family:\"Bricolage Grotesque\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/bricolagegrotesque/v7/3y9U6as8bTXq_nANBjzKo3IeZx8z6up5BeSl5jBNz_19PpbpMXuECpwUxJBOm_OJWiaaD30YfKfjZZoLvcXlyMgvs-wJDtw.woff2\",weight:\"600\"},{family:\"Bricolage Grotesque\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/bricolagegrotesque/v7/3y9U6as8bTXq_nANBjzKo3IeZx8z6up5BeSl5jBNz_19PpbpMXuECpwUxJBOm_OJWiaaD30YfKfjZZoLvfzlyMgvs-wJDtw.woff2\",weight:\"700\"}]}];export const css=['.framer-lK8cY .framer-styles-preset-17msl27:not(.rich-text-wrapper), .framer-lK8cY .framer-styles-preset-17msl27.rich-text-wrapper h5 { --framer-font-family: \"Bricolage Grotesque\", \"Bricolage Grotesque Placeholder\", sans-serif; --framer-font-family-bold: \"Bricolage Grotesque\", \"Bricolage Grotesque Placeholder\", sans-serif; --framer-font-open-type-features: normal; --framer-font-size: 22px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-weight: 600; --framer-font-weight-bold: 700; --framer-letter-spacing: 0em; --framer-line-height: 150%; --framer-paragraph-spacing: 40px; --framer-text-alignment: center; --framer-text-color: var(--token-ba518e49-fd81-4146-90b5-735c8c21a788, #0c0c0c); --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; }','@media (max-width: 1319px) and (min-width: 810px) { .framer-lK8cY .framer-styles-preset-17msl27:not(.rich-text-wrapper), .framer-lK8cY .framer-styles-preset-17msl27.rich-text-wrapper h5 { --framer-font-family: \"Bricolage Grotesque\", \"Bricolage Grotesque Placeholder\", sans-serif; --framer-font-family-bold: \"Bricolage Grotesque\", \"Bricolage Grotesque Placeholder\", sans-serif; --framer-font-open-type-features: normal; --framer-font-size: 22px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-weight: 600; --framer-font-weight-bold: 700; --framer-letter-spacing: 0em; --framer-line-height: 150%; --framer-paragraph-spacing: 40px; --framer-text-alignment: center; --framer-text-color: var(--token-ba518e49-fd81-4146-90b5-735c8c21a788, #0c0c0c); --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; } }','@media (max-width: 809px) and (min-width: 0px) { .framer-lK8cY .framer-styles-preset-17msl27:not(.rich-text-wrapper), .framer-lK8cY .framer-styles-preset-17msl27.rich-text-wrapper h5 { --framer-font-family: \"Bricolage Grotesque\", \"Bricolage Grotesque Placeholder\", sans-serif; --framer-font-family-bold: \"Bricolage Grotesque\", \"Bricolage Grotesque Placeholder\", sans-serif; --framer-font-open-type-features: normal; --framer-font-size: 20px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-weight: 600; --framer-font-weight-bold: 700; --framer-letter-spacing: 0em; --framer-line-height: 150%; --framer-paragraph-spacing: 40px; --framer-text-alignment: center; --framer-text-color: var(--token-ba518e49-fd81-4146-90b5-735c8c21a788, #0c0c0c); --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; } }'];export const className=\"framer-lK8cY\";\nexport const __FramerMetadata__ = {\"exports\":{\"css\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"className\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"fonts\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (ff86393)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,getFontsFromSharedStyle,getLoadingLazyAtYPosition,Image,RichText,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import*as sharedStyle1 from\"https://framerusercontent.com/modules/fCWfm5uMI86QVc7Y9Zbm/Tek7w6e2lghz2fc1H4x2/iNaWndAoT.js\";import*as sharedStyle from\"https://framerusercontent.com/modules/KGPMdCprRPG86Ne4afbh/HHaSQf2JVlk1xJLIrT9f/JEtrUOgj1.js\";const cycleOrder=[\"MMeCrm32B\",\"pUR7LGPNd\"];const serializationHash=\"framer-CqenO\";const variantClassNames={MMeCrm32B:\"framer-v-1sk67kd\",pUR7LGPNd:\"framer-v-1470v2y\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:40,delay:0,mass:1,stiffness:400,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={Closed:\"MMeCrm32B\",Open:\"pUR7LGPNd\"};const getProps=({answer,click,height,id,question,serialNo,width,...props})=>{var _ref,_humanReadableVariantMap_props_variant,_ref1,_ref2,_ref3;return{...props,aBh2HMxgA:click!==null&&click!==void 0?click:props.aBh2HMxgA,T8rQFvSBR:(_ref=answer!==null&&answer!==void 0?answer:props.T8rQFvSBR)!==null&&_ref!==void 0?_ref:\"Answer\",variant:(_ref1=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref1!==void 0?_ref1:\"MMeCrm32B\",vgp_kbGYi:(_ref2=serialNo!==null&&serialNo!==void 0?serialNo:props.vgp_kbGYi)!==null&&_ref2!==void 0?_ref2:\"1\",W88zB8mIG:(_ref3=question!==null&&question!==void 0?question:props.W88zB8mIG)!==null&&_ref3!==void 0?_ref3:\"Question\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,vgp_kbGYi,W88zB8mIG,T8rQFvSBR,aBh2HMxgA,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"MMeCrm32B\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onTapslsegg=activeVariantCallback(async(...args)=>{setGestureState({isPressed:false});if(aBh2HMxgA){const res=await aBh2HMxgA(...args);if(res===false)return false;}});const onTap1np0k9f=activeVariantCallback(async(...args)=>{setVariant(\"pUR7LGPNd\");});const onTap1kzpbop=activeVariantCallback(async(...args)=>{setVariant(\"MMeCrm32B\");});const ref1=React.useRef(null);const isDisplayed=()=>{if(baseVariant===\"pUR7LGPNd\")return true;return false;};const defaultLayoutId=React.useId();const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(motion.div,{...restProps,...gestureHandlers,className:cx(serializationHash,...sharedStyleClassNames,\"framer-1sk67kd\",className,classNames),\"data-framer-name\":\"Closed\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"MMeCrm32B\",onTap:onTapslsegg,ref:ref!==null&&ref!==void 0?ref:ref1,style:{...style},...addPropertyOverrides({pUR7LGPNd:{\"data-framer-name\":\"Open\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-12vzf67\",\"data-framer-name\":\"Question\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"WePDWcW2J\",onTap:onTap1np0k9f,...addPropertyOverrides({pUR7LGPNd:{onTap:onTap1kzpbop}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1ai1t09\",\"data-framer-name\":\"Icon Container\",layoutDependency:layoutDependency,layoutId:\"RXrh2wjfU\",style:{backgroundColor:\"var(--token-e4fdc027-410b-4747-8d19-b7d6252d4400, rgb(28, 28, 28))\",borderBottomLeftRadius:10,borderBottomRightRadius:10,borderTopLeftRadius:10,borderTopRightRadius:10},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7QnJpY29sYWdlIEdyb3Rlc3F1ZS02MDA=\",\"--framer-font-family\":'\"Bricolage Grotesque\", \"Bricolage Grotesque Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"150%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"1\"})}),className:\"framer-b8k8wo\",\"data-framer-name\":\"Heading\",fonts:[\"GF;Bricolage Grotesque-600\"],layoutDependency:layoutDependency,layoutId:\"ZUwJAYWv4\",style:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\",\"--framer-paragraph-spacing\":\"0px\"},text:vgp_kbGYi,verticalAlignment:\"center\",withExternalLayout:true})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h3,{className:\"framer-styles-preset-17msl27\",\"data-styles-preset\":\"JEtrUOgj1\",style:{\"--framer-text-alignment\":\"left\"},children:\"Question\"})}),className:\"framer-2qhidt\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"cfMaarGtJ\",style:{\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\",\"--framer-paragraph-spacing\":\"0px\"},text:W88zB8mIG,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-vjp9cl\",\"data-framer-name\":\"Icon\",layoutDependency:layoutDependency,layoutId:\"q2sj_yq1U\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+0+30+5329070518200751e-30),pixelHeight:24,pixelWidth:24,src:\"https://framerusercontent.com/images/7inRgTVe65d6lLDKJ70vPgiBunw.svg\"},className:\"framer-t8oubt\",\"data-framer-name\":\"Minus Icon\",layoutDependency:layoutDependency,layoutId:\"f9wXyRztQ\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+0+30+5329070518200751e-30),pixelHeight:24,pixelWidth:24,src:\"https://framerusercontent.com/images/xKKC8WOsN7YnbSziOLUVIVCLM.svg\"},className:\"framer-1n76031\",\"data-framer-name\":\"Plus Icon\",layoutDependency:layoutDependency,layoutId:\"eUAIezaXB\",style:{opacity:1},variants:{pUR7LGPNd:{opacity:0}}})]})]}),isDisplayed()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-1tmdw8c\",\"data-framer-name\":\"Answer\",layoutDependency:layoutDependency,layoutId:\"CQGIFvi7A\",style:{opacity:0},variants:{pUR7LGPNd:{opacity:1}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-16upl8m\",\"data-styles-preset\":\"iNaWndAoT\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-fd9e8734-3b55-496a-bb4a-155ca7313ddd, rgb(61, 73, 91)))\"},children:\"Framer is a web builder for creative pros. Be sure to check out framer.com to learn more.\"})}),className:\"framer-10n7vrz\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"kOz0F29S_\",style:{\"--extracted-r6o4lv\":\"var(--token-fd9e8734-3b55-496a-bb4a-155ca7313ddd, rgb(61, 73, 91))\",\"--framer-paragraph-spacing\":\"0px\",opacity:.6},text:T8rQFvSBR,variants:{pUR7LGPNd:{opacity:1}},verticalAlignment:\"top\",withExternalLayout:true})})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-CqenO.framer-18j5eya, .framer-CqenO .framer-18j5eya { display: block; }\",\".framer-CqenO.framer-1sk67kd { align-content: flex-start; align-items: flex-start; cursor: pointer; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 400px; }\",\".framer-CqenO .framer-12vzf67 { -webkit-user-select: none; align-content: center; align-items: center; cursor: pointer; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 12px; height: min-content; justify-content: flex-start; overflow: visible; padding: 20px 0px 16px 0px; position: relative; user-select: none; width: 100%; }\",\".framer-CqenO .framer-1ai1t09 { 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: 10px; position: relative; width: min-content; }\",\".framer-CqenO .framer-b8k8wo { flex: none; height: 24px; position: relative; white-space: pre-wrap; width: 24px; word-break: break-word; word-wrap: break-word; }\",\".framer-CqenO .framer-2qhidt { flex: 1 0 0px; height: auto; position: relative; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; }\",\".framer-CqenO .framer-vjp9cl { flex: none; height: 24px; overflow: hidden; position: relative; width: 24px; z-index: 1; }\",\".framer-CqenO .framer-t8oubt, .framer-CqenO .framer-1n76031 { flex: none; height: 24px; left: calc(50.00000000000002% - 24px / 2); overflow: visible; position: absolute; top: calc(50.00000000000002% - 24px / 2); width: 24px; }\",\".framer-CqenO .framer-1tmdw8c { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px 0px 20px 0px; position: relative; width: 100%; }\",\".framer-CqenO .framer-10n7vrz { -webkit-user-select: none; flex: none; height: auto; position: relative; user-select: none; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-CqenO.framer-1sk67kd, .framer-CqenO .framer-12vzf67, .framer-CqenO .framer-1ai1t09, .framer-CqenO .framer-1tmdw8c { gap: 0px; } .framer-CqenO.framer-1sk67kd > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-CqenO.framer-1sk67kd > :first-child, .framer-CqenO .framer-1tmdw8c > :first-child { margin-top: 0px; } .framer-CqenO.framer-1sk67kd > :last-child, .framer-CqenO .framer-1tmdw8c > :last-child { margin-bottom: 0px; } .framer-CqenO .framer-12vzf67 > * { margin: 0px; margin-left: calc(12px / 2); margin-right: calc(12px / 2); } .framer-CqenO .framer-12vzf67 > :first-child, .framer-CqenO .framer-1ai1t09 > :first-child { margin-left: 0px; } .framer-CqenO .framer-12vzf67 > :last-child, .framer-CqenO .framer-1ai1t09 > :last-child { margin-right: 0px; } .framer-CqenO .framer-1ai1t09 > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-CqenO .framer-1tmdw8c > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } }\",\".framer-CqenO.framer-v-1470v2y .framer-1tmdw8c { padding: 0px 20px 20px 0px; }\",...sharedStyle.css,...sharedStyle1.css];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 80\n * @framerIntrinsicWidth 400\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"pUR7LGPNd\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerVariables {\"vgp_kbGYi\":\"serialNo\",\"W88zB8mIG\":\"question\",\"T8rQFvSBR\":\"answer\",\"aBh2HMxgA\":\"click\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const Framerv8NNvvLRE=withCSS(Component,css,\"framer-CqenO\");export default Framerv8NNvvLRE;Framerv8NNvvLRE.displayName=\"Process FAQ item\";Framerv8NNvvLRE.defaultProps={height:80,width:400};addPropertyControls(Framerv8NNvvLRE,{variant:{options:[\"MMeCrm32B\",\"pUR7LGPNd\"],optionTitles:[\"Closed\",\"Open\"],title:\"Variant\",type:ControlType.Enum},vgp_kbGYi:{defaultValue:\"1\",displayTextArea:false,title:\"Serial No\",type:ControlType.String},W88zB8mIG:{defaultValue:\"Question\",displayTextArea:true,title:\"Question\",type:ControlType.String},T8rQFvSBR:{defaultValue:\"Answer\",displayTextArea:true,title:\"Answer\",type:ControlType.String},aBh2HMxgA:{title:\"Click\",type:ControlType.EventHandler}});addFonts(Framerv8NNvvLRE,[{explicitInter:true,fonts:[{family:\"Bricolage Grotesque\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/bricolagegrotesque/v7/3y9U6as8bTXq_nANBjzKo3IeZx8z6up5BeSl5jBNz_19PpbpMXuECpwUxJBOm_OJWiaaD30YfKfjZZoLvcXlyMgvs-wJDtw.woff2\",weight:\"600\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/5vvr9Vy74if2I6bQbJvbw7SY1pQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/EOr0mi4hNtlgWNn9if640EZzXCo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Y9k9QrlZAqio88Klkmbd8VoMQc.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/OYrD2tBIBPvoJXiIHnLoOXnY9M.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/JeYwfuaPfZHQhEG8U5gtPDZ7WQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/vQyevYAyHtARFwPqUzQGpnDs.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/b6Y37FthZeALduNqHicBT6FutY.woff2\",weight:\"400\"}]},...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"Framerv8NNvvLRE\",\"slots\":[],\"annotations\":{\"framerIntrinsicWidth\":\"400\",\"framerComponentViewportWidth\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerIntrinsicHeight\":\"80\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"pUR7LGPNd\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerVariables\":\"{\\\"vgp_kbGYi\\\":\\\"serialNo\\\",\\\"W88zB8mIG\\\":\\\"question\\\",\\\"T8rQFvSBR\\\":\\\"answer\\\",\\\"aBh2HMxgA\\\":\\\"click\\\"}\",\"framerContractVersion\":\"1\",\"framerImmutableVariables\":\"true\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./v8NNvvLRE.map", "// Generated by Framer (ea53337)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import ProcessFAQItem from\"https://framerusercontent.com/modules/of5zYBk5UOm35gF4u8pF/djL7Z9SaNtqfrRuSkVDV/v8NNvvLRE.js\";const ProcessFAQItemFonts=getFonts(ProcessFAQItem);const cycleOrder=[\"ZgCVh6rY5\",\"wfGB_WOtx\",\"UcH5POAGz\",\"yToFTnL_9\"];const serializationHash=\"framer-s5IzY\";const variantClassNames={UcH5POAGz:\"framer-v-57s418\",wfGB_WOtx:\"framer-v-rj5liu\",yToFTnL_9:\"framer-v-4lo2qb\",ZgCVh6rY5:\"framer-v-15047ux\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:40,delay:0,mass:1,stiffness:400,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={\"1st Open\":\"ZgCVh6rY5\",\"2nd Open\":\"wfGB_WOtx\",\"3rd Open\":\"UcH5POAGz\",Small:\"yToFTnL_9\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"ZgCVh6rY5\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"ZgCVh6rY5\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const aBh2HMxgA1jgyv4e=activeVariantCallback(async(...args)=>{setVariant(\"ZgCVh6rY5\");});const aBh2HMxgA1cgofm6=activeVariantCallback(async(...args)=>{setVariant(\"wfGB_WOtx\");});const aBh2HMxgAav3h7q=activeVariantCallback(async(...args)=>{setVariant(\"UcH5POAGz\");});const sharedStyleClassNames=[];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const ref1=React.useRef(null);const defaultLayoutId=React.useId();const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(motion.div,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-15047ux\",className,classNames),\"data-framer-name\":\"1st Open\",layoutDependency:layoutDependency,layoutId:\"ZgCVh6rY5\",ref:ref??ref1,style:{...style},...addPropertyOverrides({UcH5POAGz:{\"data-framer-name\":\"3rd Open\"},wfGB_WOtx:{\"data-framer-name\":\"2nd Open\"},yToFTnL_9:{\"data-framer-name\":\"Small\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:80,width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+0,children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-l3l69o-container\",layoutDependency:layoutDependency,layoutId:\"AHde0mA1g-container\",children:/*#__PURE__*/_jsx(ProcessFAQItem,{aBh2HMxgA:aBh2HMxgA1jgyv4e,height:\"100%\",id:\"AHde0mA1g\",layoutId:\"AHde0mA1g\",style:{width:\"100%\"},T8rQFvSBR:\"Why spend hours drafting proposals that barely move the needle?\",variant:\"pUR7LGPNd\",vgp_kbGYi:\"1\",W88zB8mIG:\"Time wasted, no deals\",width:\"100%\",...addPropertyOverrides({UcH5POAGz:{variant:\"MMeCrm32B\"},wfGB_WOtx:{variant:\"MMeCrm32B\"},yToFTnL_9:{aBh2HMxgA:undefined}},baseVariant,gestureVariant)})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-f5cjro\",\"data-framer-name\":\"Line\",layoutDependency:layoutDependency,layoutId:\"D9710amNo\",style:{backgroundColor:\"var(--token-fa6afd35-81ed-4b44-8bcf-b09739b6783c, rgb(221, 229, 237))\"}}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:80,width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+81,children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-11l6d8r-container\",layoutDependency:layoutDependency,layoutId:\"paxZc1koo-container\",children:/*#__PURE__*/_jsx(ProcessFAQItem,{aBh2HMxgA:aBh2HMxgA1cgofm6,height:\"100%\",id:\"paxZc1koo\",layoutId:\"paxZc1koo\",style:{width:\"100%\"},T8rQFvSBR:\"Sent 10 proposals? No clue who replied, who ghosted, or who\u2019s ready to sign?\",variant:\"MMeCrm32B\",vgp_kbGYi:\"2\",W88zB8mIG:\"Losing track of what\u2019s where\",width:\"100%\",...addPropertyOverrides({wfGB_WOtx:{variant:\"pUR7LGPNd\"},yToFTnL_9:{aBh2HMxgA:undefined,variant:\"pUR7LGPNd\"}},baseVariant,gestureVariant)})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-7zk6ng\",\"data-framer-name\":\"Line\",layoutDependency:layoutDependency,layoutId:\"xerNh4Q53\",style:{backgroundColor:\"var(--token-fa6afd35-81ed-4b44-8bcf-b09739b6783c, rgb(221, 229, 237))\"}}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:80,width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+162,children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1nly84g-container\",layoutDependency:layoutDependency,layoutId:\"jSyFc0TVN-container\",children:/*#__PURE__*/_jsx(ProcessFAQItem,{aBh2HMxgA:aBh2HMxgAav3h7q,height:\"100%\",id:\"jSyFc0TVN\",layoutId:\"jSyFc0TVN\",style:{width:\"100%\"},T8rQFvSBR:\"Multiple tiny \u2018can you just add this\u2019 can sink your entire project.\",variant:\"MMeCrm32B\",vgp_kbGYi:\"3\",W88zB8mIG:\"Scope creep destroys your Success\",width:\"100%\",...addPropertyOverrides({UcH5POAGz:{variant:\"pUR7LGPNd\"},yToFTnL_9:{aBh2HMxgA:undefined,variant:\"pUR7LGPNd\"}},baseVariant,gestureVariant)})})})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-s5IzY.framer-jwsokw, .framer-s5IzY .framer-jwsokw { display: block; }\",\".framer-s5IzY.framer-15047ux { align-content: flex-start; align-items: flex-start; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 1000px; }\",\".framer-s5IzY .framer-l3l69o-container, .framer-s5IzY .framer-11l6d8r-container, .framer-s5IzY .framer-1nly84g-container { flex: none; height: auto; position: relative; width: 100%; }\",\".framer-s5IzY .framer-f5cjro, .framer-s5IzY .framer-7zk6ng { flex: none; height: 1px; overflow: hidden; position: relative; width: 100%; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-s5IzY.framer-15047ux { gap: 0px; } .framer-s5IzY.framer-15047ux > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-s5IzY.framer-15047ux > :first-child { margin-top: 0px; } .framer-s5IzY.framer-15047ux > :last-child { margin-bottom: 0px; } }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 289\n * @framerIntrinsicWidth 1000\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"wfGB_WOtx\":{\"layout\":[\"fixed\",\"auto\"]},\"UcH5POAGz\":{\"layout\":[\"fixed\",\"auto\"]},\"yToFTnL_9\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerRT2RcQg55=withCSS(Component,css,\"framer-s5IzY\");export default FramerRT2RcQg55;FramerRT2RcQg55.displayName=\"Process FAQ Container 2\";FramerRT2RcQg55.defaultProps={height:289,width:1e3};addPropertyControls(FramerRT2RcQg55,{variant:{options:[\"ZgCVh6rY5\",\"wfGB_WOtx\",\"UcH5POAGz\",\"yToFTnL_9\"],optionTitles:[\"1st Open\",\"2nd Open\",\"3rd Open\",\"Small\"],title:\"Variant\",type:ControlType.Enum}});addFonts(FramerRT2RcQg55,[{explicitInter:true,fonts:[]},...ProcessFAQItemFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerRT2RcQg55\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\",\"framerIntrinsicHeight\":\"289\",\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicWidth\":\"1000\",\"framerImmutableVariables\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"wfGB_WOtx\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"UcH5POAGz\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"yToFTnL_9\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerDisplayContentsDiv\":\"false\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./RT2RcQg55.map", "function addUniqueItem(t,e){-1===t.indexOf(e)&&t.push(e)}function removeItem(t,e){const n=t.indexOf(e);n>-1&&t.splice(n,1)}const clamp=(t,e,n)=>Math.min(Math.max(n,t),e);const t={duration:.3,delay:0,endDelay:0,repeat:0,easing:\"ease\"};const isNumber=t=>\"number\"===typeof t;const isEasingList=t=>Array.isArray(t)&&!isNumber(t[0]);const wrap=(t,e,n)=>{const o=e-t;return((n-t)%o+o)%o+t};function getEasingForSegment(t,e){return isEasingList(t)?t[wrap(0,t.length,e)]:t}const mix=(t,e,n)=>-n*t+n*e+t;const noop=()=>{};const noopReturn=t=>t;const progress=(t,e,n)=>e-t===0?1:(n-t)/(e-t);function fillOffset(t,e){const n=t[t.length-1];for(let o=1;o<=e;o++){const s=progress(0,e,o);t.push(mix(n,1,s))}}function defaultOffset(t){const e=[0];fillOffset(e,t-1);return e}function interpolate(t,e=defaultOffset(t.length),n=noopReturn){const o=t.length;const s=o-e.length;s>0&&fillOffset(e,s);return s=>{let f=0;for(;f<o-2;f++)if(s<e[f+1])break;let r=clamp(0,1,progress(e[f],e[f+1],s));const c=getEasingForSegment(n,f);r=c(r);return mix(t[f],t[f+1],r)}}const isCubicBezier=t=>Array.isArray(t)&&isNumber(t[0]);const isEasingGenerator=t=>\"object\"===typeof t&&Boolean(t.createAnimation);const isFunction=t=>\"function\"===typeof t;const isString=t=>\"string\"===typeof t;const e={ms:t=>1e3*t,s:t=>t/1e3};\n/*\n  Convert velocity into velocity per second\n\n  @param [number]: Unit per frame\n  @param [number]: Frame duration in ms\n*/function velocityPerSecond(t,e){return e?t*(1e3/e):0}export{addUniqueItem,clamp,defaultOffset,t as defaults,fillOffset,getEasingForSegment,interpolate,isCubicBezier,isEasingGenerator,isEasingList,isFunction,isNumber,isString,mix,noop,noopReturn,progress,removeItem,e as time,velocityPerSecond,wrap};\n\n//# sourceMappingURL=index.es.js.map", "import{noopReturn as t,clamp as n}from\"@motionone/utils\";const calcBezier=(t,n,e)=>(((1-3*e+3*n)*t+(3*e-6*n))*t+3*n)*t;const e=1e-7;const i=12;function binarySubdivide(t,n,o,r,c){let u;let a;let s=0;do{a=n+(o-n)/2;u=calcBezier(a,r,c)-t;u>0?o=a:n=a}while(Math.abs(u)>e&&++s<i);return a}function cubicBezier(n,e,i,o){if(n===e&&i===o)return t;const getTForX=t=>binarySubdivide(t,0,1,n,i);return t=>0===t||1===t?t:calcBezier(getTForX(t),e,o)}const steps=(t,e=\"end\")=>i=>{i=\"end\"===e?Math.min(i,.999):Math.max(i,.001);const o=i*t;const r=\"end\"===e?Math.floor(o):Math.ceil(o);return n(0,1,r/t)};export{cubicBezier,steps};\n\n//# sourceMappingURL=index.es.js.map", "import{noopReturn as t,defaults as i,isEasingGenerator as e,isEasingList as s,interpolate as a}from\"@motionone/utils\";import{cubicBezier as n,steps as r}from\"@motionone/easing\";const o={ease:n(.25,.1,.25,1),\"ease-in\":n(.42,0,1,1),\"ease-in-out\":n(.42,0,.58,1),\"ease-out\":n(0,0,.58,1)};const h=/\\((.*?)\\)/;function getEasingFunction(i){if(\"function\"===typeof i)return i;if(Array.isArray(i))return n(...i);if(o[i])return o[i];if(i.startsWith(\"steps\")){const t=h.exec(i);if(t){const i=t[1].split(\",\");return r(parseFloat(i[0]),i[1].trim())}}return t}class Animation{constructor(n,r=[0,1],{easing:o,duration:h=i.duration,delay:u=i.delay,endDelay:l=i.endDelay,repeat:m=i.repeat,offset:c,direction:p=\"normal\"}={}){this.startTime=null;this.rate=1;this.t=0;this.cancelTimestamp=null;this.easing=t;this.duration=0;this.totalDuration=0;this.repeat=0;this.playState=\"idle\";this.finished=new Promise(((t,i)=>{this.resolve=t;this.reject=i}));o=o||i.easing;if(e(o)){const t=o.createAnimation(r,(()=>\"0\"),true);o=t.easing;void 0!==t.keyframes&&(r=t.keyframes);void 0!==t.duration&&(h=t.duration)}this.repeat=m;this.easing=s(o)?t:getEasingFunction(o);this.updateDuration(h);const d=a(r,c,s(o)?o.map(getEasingFunction):t);this.tick=t=>{var i;u=u;let e=0;e=void 0!==this.pauseTime?this.pauseTime:(t-this.startTime)*this.rate;this.t=e;e/=1e3;e=Math.max(e-u,0);\"finished\"===this.playState&&void 0===this.pauseTime&&(e=this.totalDuration);const s=e/this.duration;let a=Math.floor(s);let r=s%1;!r&&s>=1&&(r=1);1===r&&a--;const o=a%2;(\"reverse\"===p||\"alternate\"===p&&o||\"alternate-reverse\"===p&&!o)&&(r=1-r);const h=e>=this.totalDuration?1:Math.min(r,1);const m=d(this.easing(h));n(m);const c=void 0===this.pauseTime&&(\"finished\"===this.playState||e>=this.totalDuration+l);if(c){this.playState=\"finished\";null===(i=this.resolve)||void 0===i?void 0:i.call(this,m)}else\"idle\"!==this.playState&&(this.frameRequestId=requestAnimationFrame(this.tick))};this.play()}play(){const t=performance.now();this.playState=\"running\";void 0!==this.pauseTime?this.startTime=t-this.pauseTime:this.startTime||(this.startTime=t);this.cancelTimestamp=this.startTime;this.pauseTime=void 0;this.frameRequestId=requestAnimationFrame(this.tick)}pause(){this.playState=\"paused\";this.pauseTime=this.t}finish(){this.playState=\"finished\";this.tick(0)}stop(){var t;this.playState=\"idle\";void 0!==this.frameRequestId&&cancelAnimationFrame(this.frameRequestId);null===(t=this.reject)||void 0===t?void 0:t.call(this,false)}cancel(){this.stop();this.tick(this.cancelTimestamp)}reverse(){this.rate*=-1}commitStyles(){}updateDuration(t){this.duration=t;this.totalDuration=t*(this.repeat+1)}get currentTime(){return this.t}set currentTime(t){void 0!==this.pauseTime||0===this.rate?this.pauseTime=t:this.startTime=performance.now()-t/this.rate}get playbackRate(){return this.rate}set playbackRate(t){this.rate=t}}export{Animation,getEasingFunction};\n\n//# sourceMappingURL=index.es.js.map", "var extendStatics=function(e,t){extendStatics=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(e,t){e.__proto__=t}||function(e,t){for(var r in t)Object.prototype.hasOwnProperty.call(t,r)&&(e[r]=t[r])};return extendStatics(e,t)};function __extends(e,t){if(\"function\"!==typeof t&&null!==t)throw new TypeError(\"Class extends value \"+String(t)+\" is not a constructor or null\");extendStatics(e,t);function __(){this.constructor=e}e.prototype=null===t?Object.create(t):(__.prototype=t.prototype,new __)}var __assign=function(){__assign=Object.assign||function __assign(e){for(var t,r=1,n=arguments.length;r<n;r++){t=arguments[r];for(var o in t)Object.prototype.hasOwnProperty.call(t,o)&&(e[o]=t[o])}return e};return __assign.apply(this,arguments)};function __rest(e,t){var r={};for(var n in e)Object.prototype.hasOwnProperty.call(e,n)&&t.indexOf(n)<0&&(r[n]=e[n]);if(null!=e&&\"function\"===typeof Object.getOwnPropertySymbols){var o=0;for(n=Object.getOwnPropertySymbols(e);o<n.length;o++)t.indexOf(n[o])<0&&Object.prototype.propertyIsEnumerable.call(e,n[o])&&(r[n[o]]=e[n[o]])}return r}function __decorate(e,t,r,n){var o,a=arguments.length,i=a<3?t:null===n?n=Object.getOwnPropertyDescriptor(t,r):n;if(\"object\"===typeof Reflect&&\"function\"===typeof Reflect.decorate)i=Reflect.decorate(e,t,r,n);else for(var c=e.length-1;c>=0;c--)(o=e[c])&&(i=(a<3?o(i):a>3?o(t,r,i):o(t,r))||i);return a>3&&i&&Object.defineProperty(t,r,i),i}function __param(e,t){return function(r,n){t(r,n,e)}}function __metadata(e,t){if(\"object\"===typeof Reflect&&\"function\"===typeof Reflect.metadata)return Reflect.metadata(e,t)}function __awaiter(e,t,r,n){function adopt(e){return e instanceof r?e:new r((function(t){t(e)}))}return new(r||(r=Promise))((function(r,o){function fulfilled(e){try{step(n.next(e))}catch(e){o(e)}}function rejected(e){try{step(n.throw(e))}catch(e){o(e)}}function step(e){e.done?r(e.value):adopt(e.value).then(fulfilled,rejected)}step((n=n.apply(e,t||[])).next())}))}function __generator(e,t){var r,n,o,a,i={label:0,sent:function(){if(1&o[0])throw o[1];return o[1]},trys:[],ops:[]};return a={next:verb(0),throw:verb(1),return:verb(2)},\"function\"===typeof Symbol&&(a[Symbol.iterator]=function(){return this}),a;function verb(e){return function(t){return step([e,t])}}function step(a){if(r)throw new TypeError(\"Generator is already executing.\");while(i)try{if(r=1,n&&(o=2&a[0]?n.return:a[0]?n.throw||((o=n.return)&&o.call(n),0):n.next)&&!(o=o.call(n,a[1])).done)return o;(n=0,o)&&(a=[2&a[0],o.value]);switch(a[0]){case 0:case 1:o=a;break;case 4:i.label++;return{value:a[1],done:false};case 5:i.label++;n=a[1];a=[0];continue;case 7:a=i.ops.pop();i.trys.pop();continue;default:if(!(o=i.trys,o=o.length>0&&o[o.length-1])&&(6===a[0]||2===a[0])){i=0;continue}if(3===a[0]&&(!o||a[1]>o[0]&&a[1]<o[3])){i.label=a[1];break}if(6===a[0]&&i.label<o[1]){i.label=o[1];o=a;break}if(o&&i.label<o[2]){i.label=o[2];i.ops.push(a);break}o[2]&&i.ops.pop();i.trys.pop();continue}a=t.call(e,i)}catch(e){a=[6,e];n=0}finally{r=o=0}if(5&a[0])throw a[1];return{value:a[0]?a[1]:void 0,done:true}}}var e=Object.create?function(e,t,r,n){void 0===n&&(n=r);var o=Object.getOwnPropertyDescriptor(t,r);o&&!(\"get\"in o?!t.__esModule:o.writable||o.configurable)||(o={enumerable:true,get:function(){return t[r]}});Object.defineProperty(e,n,o)}:function(e,t,r,n){void 0===n&&(n=r);e[n]=t[r]};function __exportStar(t,r){for(var n in t)\"default\"===n||Object.prototype.hasOwnProperty.call(r,n)||e(r,t,n)}function __values(e){var t=\"function\"===typeof Symbol&&Symbol.iterator,r=t&&e[t],n=0;if(r)return r.call(e);if(e&&\"number\"===typeof e.length)return{next:function(){e&&n>=e.length&&(e=void 0);return{value:e&&e[n++],done:!e}}};throw new TypeError(t?\"Object is not iterable.\":\"Symbol.iterator is not defined.\")}function __read(e,t){var r=\"function\"===typeof Symbol&&e[Symbol.iterator];if(!r)return e;var n,o,a=r.call(e),i=[];try{while((void 0===t||t-- >0)&&!(n=a.next()).done)i.push(n.value)}catch(e){o={error:e}}finally{try{n&&!n.done&&(r=a.return)&&r.call(a)}finally{if(o)throw o.error}}return i}\n/** @deprecated */function __spread(){for(var e=[],t=0;t<arguments.length;t++)e=e.concat(__read(arguments[t]));return e}\n/** @deprecated */function __spreadArrays(){for(var e=0,t=0,r=arguments.length;t<r;t++)e+=arguments[t].length;var n=Array(e),o=0;for(t=0;t<r;t++)for(var a=arguments[t],i=0,c=a.length;i<c;i++,o++)n[o]=a[i];return n}function __spreadArray(e,t,r){if(r||2===arguments.length)for(var n,o=0,a=t.length;o<a;o++)if(n||!(o in t)){n||(n=Array.prototype.slice.call(t,0,o));n[o]=t[o]}return e.concat(n||Array.prototype.slice.call(t))}function __await(e){return this instanceof __await?(this.v=e,this):new __await(e)}function __asyncGenerator(e,t,r){if(!Symbol.asyncIterator)throw new TypeError(\"Symbol.asyncIterator is not defined.\");var n,o=r.apply(e,t||[]),a=[];return n={},verb(\"next\"),verb(\"throw\"),verb(\"return\"),n[Symbol.asyncIterator]=function(){return this},n;function verb(e){o[e]&&(n[e]=function(t){return new Promise((function(r,n){a.push([e,t,r,n])>1||resume(e,t)}))})}function resume(e,t){try{step(o[e](t))}catch(e){settle(a[0][3],e)}}function step(e){e.value instanceof __await?Promise.resolve(e.value.v).then(fulfill,reject):settle(a[0][2],e)}function fulfill(e){resume(\"next\",e)}function reject(e){resume(\"throw\",e)}function settle(e,t){(e(t),a.shift(),a.length)&&resume(a[0][0],a[0][1])}}function __asyncDelegator(e){var t,r;return t={},verb(\"next\"),verb(\"throw\",(function(e){throw e})),verb(\"return\"),t[Symbol.iterator]=function(){return this},t;function verb(n,o){t[n]=e[n]?function(t){return(r=!r)?{value:__await(e[n](t)),done:\"return\"===n}:o?o(t):t}:o}}function __asyncValues(e){if(!Symbol.asyncIterator)throw new TypeError(\"Symbol.asyncIterator is not defined.\");var t,r=e[Symbol.asyncIterator];return r?r.call(e):(e=\"function\"===typeof __values?__values(e):e[Symbol.iterator](),t={},verb(\"next\"),verb(\"throw\"),verb(\"return\"),t[Symbol.asyncIterator]=function(){return this},t);function verb(r){t[r]=e[r]&&function(t){return new Promise((function(n,o){t=e[r](t),settle(n,o,t.done,t.value)}))}}function settle(e,t,r,n){Promise.resolve(n).then((function(t){e({value:t,done:r})}),t)}}function __makeTemplateObject(e,t){Object.defineProperty?Object.defineProperty(e,\"raw\",{value:t}):e.raw=t;return e}var t=Object.create?function(e,t){Object.defineProperty(e,\"default\",{enumerable:true,value:t})}:function(e,t){e.default=t};function __importStar(r){if(r&&r.__esModule)return r;var n={};if(null!=r)for(var o in r)\"default\"!==o&&Object.prototype.hasOwnProperty.call(r,o)&&e(n,r,o);t(n,r);return n}function __importDefault(e){return e&&e.__esModule?e:{default:e}}function __classPrivateFieldGet(e,t,r,n){if(\"a\"===r&&!n)throw new TypeError(\"Private accessor was defined without a getter\");if(\"function\"===typeof t?e!==t||!n:!t.has(e))throw new TypeError(\"Cannot read private member from an object whose class did not declare it\");return\"m\"===r?n:\"a\"===r?n.call(e):n?n.value:t.get(e)}function __classPrivateFieldSet(e,t,r,n,o){if(\"m\"===n)throw new TypeError(\"Private method is not writable\");if(\"a\"===n&&!o)throw new TypeError(\"Private accessor was defined without a setter\");if(\"function\"===typeof t?e!==t||!o:!t.has(e))throw new TypeError(\"Cannot write private member to an object whose class did not declare it\");return\"a\"===n?o.call(e,r):o?o.value=r:t.set(e,r),r}function __classPrivateFieldIn(e,t){if(null===t||\"object\"!==typeof t&&\"function\"!==typeof t)throw new TypeError(\"Cannot use 'in' operator on non-object\");return\"function\"===typeof e?t===e:e.has(t)}export{__assign,__asyncDelegator,__asyncGenerator,__asyncValues,__await,__awaiter,__classPrivateFieldGet,__classPrivateFieldIn,__classPrivateFieldSet,e as __createBinding,__decorate,__exportStar,__extends,__generator,__importDefault,__importStar,__makeTemplateObject,__metadata,__param,__read,__rest,__spread,__spreadArray,__spreadArrays,__values};\n\n//# sourceMappingURL=tslib.es6.js.map", "var n={};Object.defineProperty(n,\"__esModule\",{value:true});n.warning=function(){};n.invariant=function(){};const e=n.__esModule,t=n.warning,r=n.invariant;export default n;export{e as __esModule,r as invariant,t as warning};\n\n//# sourceMappingURL=index.js.map", "import{velocityPerSecond as e,time as t}from\"@motionone/utils\";const s=5;function calcGeneratorVelocity(t,n,r){const a=Math.max(n-s,0);return e(r-t(a),n-a)}const n={stiffness:100,damping:10,mass:1};const calcDampingRatio=(e=n.stiffness,t=n.damping,s=n.mass)=>t/(2*Math.sqrt(e*s));function hasReachedTarget(e,t,s){return e<t&&s>=t||e>t&&s<=t}const spring=({stiffness:e=n.stiffness,damping:s=n.damping,mass:r=n.mass,from:a=0,to:o=1,velocity:c=0,restSpeed:i=2,restDistance:h=.5}={})=>{c=c?t.s(c):0;const u={done:false,hasReachedTarget:false,current:a,target:o};const d=o-a;const f=Math.sqrt(e/r)/1e3;const l=calcDampingRatio(e,s,r);let g;if(l<1){const e=f*Math.sqrt(1-l*l);g=t=>o-Math.exp(-l*f*t)*((l*f*d-c)/e*Math.sin(e*t)+d*Math.cos(e*t))}else g=e=>o-Math.exp(-f*e)*(d+(f*d-c)*e);return e=>{u.current=g(e);const t=0===e?c:calcGeneratorVelocity(g,e,u.current);const s=Math.abs(t)<=i;const n=Math.abs(o-u.current)<=h;u.done=s&&n;u.hasReachedTarget=hasReachedTarget(a,o,u.current);return u}};const glide=({from:e=0,velocity:s=0,power:n=.8,decay:r=.325,bounceDamping:a,bounceStiffness:o,changeTarget:c,min:i,max:h,restDistance:u=.5,restSpeed:d})=>{r=t.ms(r);const f={hasReachedTarget:false,done:false,current:e,target:e};const isOutOfBounds=e=>void 0!==i&&e<i||void 0!==h&&e>h;const nearestBoundary=e=>void 0===i?h:void 0===h||Math.abs(i-e)<Math.abs(h-e)?i:h;let l=n*s;const g=e+l;const m=void 0===c?g:c(g);f.target=m;m!==g&&(l=m-e);const calcDelta=e=>-l*Math.exp(-e/r);const calcLatest=e=>m+calcDelta(e);const applyFriction=e=>{const t=calcDelta(e);const s=calcLatest(e);f.done=Math.abs(t)<=u;f.current=f.done?m:s};let p;let M;const checkCatchBoundary=e=>{if(isOutOfBounds(f.current)){p=e;M=spring({from:f.current,to:nearestBoundary(f.current),velocity:calcGeneratorVelocity(calcLatest,e,f.current),damping:a,stiffness:o,restDistance:u,restSpeed:d})}};checkCatchBoundary(0);return e=>{let t=false;if(!M&&void 0===p){t=true;applyFriction(e);checkCatchBoundary(e)}if(void 0!==p&&e>p){f.hasReachedTarget=true;return M(e-p)}f.hasReachedTarget=false;!t&&applyFriction(e);return f}};const r=10;const a=1e4;function pregenerateKeyframes(e){let t;let s=r;let n=e(0);const o=[n.current];while(!n.done&&s<a){n=e(s);o.push(n.done?n.target:n.current);void 0===t&&n.hasReachedTarget&&(t=s);s+=r}const c=s-r;1===o.length&&o.push(n.current);return{keyframes:o,duration:c/1e3,overshootDuration:(null!==t&&void 0!==t?t:c)/1e3}}export{calcGeneratorVelocity,glide,pregenerateKeyframes,spring};\n\n//# sourceMappingURL=index.es.js.map", "import{MotionValue as e}from\"@motionone/types\";import{noopReturn as t,addUniqueItem as n,isCubicBezier as o,defaults as i,isEasingGenerator as s,isNumber as r,time as a,isEasingList as c,noop as l,removeItem as f,mix as u,getEasingForSegment as d,isString as g,defaultOffset as m,fillOffset as h,progress as p,velocityPerSecond as v,interpolate as y}from\"@motionone/utils\";import{Animation as w,getEasingFunction as E}from\"@motionone/animation\";import{__rest as b}from\"tslib\";import{invariant as S}from\"hey-listen\";import{pregenerateKeyframes as A,calcGeneratorVelocity as O,spring as x,glide as V}from\"@motionone/generators\";const z=new WeakMap;function getAnimationData(e){z.has(e)||z.set(e,{transforms:[],values:new Map});return z.get(e)}function getMotionValue(t,n){t.has(n)||t.set(n,new e);return t.get(n)}const W=[\"\",\"X\",\"Y\",\"Z\"];const L=[\"translate\",\"scale\",\"rotate\",\"skew\"];const T={x:\"translateX\",y:\"translateY\",z:\"translateZ\"};const D={syntax:\"<angle>\",initialValue:\"0deg\",toDefaultUnit:e=>e+\"deg\"};const M={translate:{syntax:\"<length-percentage>\",initialValue:\"0px\",toDefaultUnit:e=>e+\"px\"},rotate:D,scale:{syntax:\"<number>\",initialValue:1,toDefaultUnit:t},skew:D};const k=new Map;const asTransformCssVar=e=>`--motion-${e}`;const B=[\"x\",\"y\",\"z\"];L.forEach((e=>{W.forEach((t=>{B.push(e+t);k.set(asTransformCssVar(e+t),M[e])}))}));const compareTransformOrder=(e,t)=>B.indexOf(e)-B.indexOf(t);const j=new Set(B);const isTransform=e=>j.has(e);const addTransformToElement=(e,t)=>{T[t]&&(t=T[t]);const{transforms:o}=getAnimationData(e);n(o,t);e.style.transform=buildTransformTemplate(o)};const buildTransformTemplate=e=>e.sort(compareTransformOrder).reduce(transformListToString,\"\").trim();const transformListToString=(e,t)=>`${e} ${t}(var(${asTransformCssVar(t)}))`;const isCssVar=e=>e.startsWith(\"--\");const P=new Set;function registerCssVariable(e){if(!P.has(e)){P.add(e);try{const{syntax:t,initialValue:n}=k.has(e)?k.get(e):{};CSS.registerProperty({name:e,inherits:false,syntax:t,initialValue:n})}catch(e){}}}const convertEasing=e=>o(e)?cubicBezierAsString(e):e;const cubicBezierAsString=([e,t,n,o])=>`cubic-bezier(${e}, ${t}, ${n}, ${o})`;const testAnimation=e=>document.createElement(\"div\").animate(e,{duration:.001});const C={cssRegisterProperty:()=>\"undefined\"!==typeof CSS&&Object.hasOwnProperty.call(CSS,\"registerProperty\"),waapi:()=>Object.hasOwnProperty.call(Element.prototype,\"animate\"),partialKeyframes:()=>{try{testAnimation({opacity:[1]})}catch(e){return false}return true},finished:()=>Boolean(testAnimation({opacity:[0,1]}).finished)};const $={};const R={};for(const e in C)R[e]=()=>{void 0===$[e]&&($[e]=C[e]());return $[e]};function hydrateKeyframes(e,t){for(let n=0;n<e.length;n++)null===e[n]&&(e[n]=n?e[n-1]:t());return e}const keyframesList=e=>Array.isArray(e)?e:[e];function getStyleName(e){T[e]&&(e=T[e]);return isTransform(e)?asTransformCssVar(e):e}const H={get:(e,t)=>{t=getStyleName(t);let n=isCssVar(t)?e.style.getPropertyValue(t):getComputedStyle(e)[t];if(!n&&0!==n){const e=k.get(t);e&&(n=e.initialValue)}return n},set:(e,t,n)=>{t=getStyleName(t);isCssVar(t)?e.style.setProperty(t,n):e.style[t]=n}};function stopAnimation(e,t=true){if(e&&\"finished\"!==e.playState)try{if(e.stop)e.stop();else{t&&e.commitStyles();e.cancel()}}catch(e){}}function getDevToolsRecord(){return window.__MOTION_DEV_TOOLS_RECORD}function animateStyle(e,t,n,o={}){const f=getDevToolsRecord();const u=false!==o.record&&f;let d;let{duration:g=i.duration,delay:m=i.delay,endDelay:h=i.endDelay,repeat:p=i.repeat,easing:v=i.easing,direction:y,offset:E,allowWebkitAcceleration:b=false}=o;const S=getAnimationData(e);let A=R.waapi();const O=isTransform(t);O&&addTransformToElement(e,t);const x=getStyleName(t);const V=getMotionValue(S.values,x);const z=k.get(x);stopAnimation(V.animation,!(s(v)&&V.generator)&&false!==o.record);return()=>{const readInitialValue=()=>{var t,n;return null!==(n=null!==(t=H.get(e,x))&&void 0!==t?t:null===z||void 0===z?void 0:z.initialValue)&&void 0!==n?n:0};let i=hydrateKeyframes(keyframesList(n),readInitialValue);if(s(v)){const e=v.createAnimation(i,readInitialValue,O,x,V);v=e.easing;void 0!==e.keyframes&&(i=e.keyframes);void 0!==e.duration&&(g=e.duration)}isCssVar(x)&&(R.cssRegisterProperty()?registerCssVariable(x):A=false);if(A){z&&(i=i.map((e=>r(e)?z.toDefaultUnit(e):e)));1!==i.length||R.partialKeyframes()&&!u||i.unshift(readInitialValue());const t={delay:a.ms(m),duration:a.ms(g),endDelay:a.ms(h),easing:c(v)?void 0:convertEasing(v),direction:y,iterations:p+1,fill:\"both\"};d=e.animate({[x]:i,offset:E,easing:c(v)?v.map(convertEasing):void 0},t);d.finished||(d.finished=new Promise(((e,t)=>{d.onfinish=e;d.oncancel=t})));const n=i[i.length-1];d.finished.then((()=>{H.set(e,x,n);d.cancel()})).catch(l);b||(d.playbackRate=1.000001)}else if(O){i=i.map((e=>\"string\"===typeof e?parseFloat(e):e));1===i.length&&i.unshift(parseFloat(readInitialValue()));const render=t=>{z&&(t=z.toDefaultUnit(t));H.set(e,x,t)};d=new w(render,i,Object.assign(Object.assign({},o),{duration:g,easing:v}))}else{const t=i[i.length-1];H.set(e,x,z&&r(t)?z.toDefaultUnit(t):t)}u&&f(e,t,i,{duration:g,delay:m,easing:v,repeat:p,offset:E},\"motion-one\");V.setAnimation(d);return d}}const getOptions=(e,t)=>e[t]?Object.assign(Object.assign({},e),e[t]):Object.assign({},e);function resolveElements(e,t){var n;if(\"string\"===typeof e)if(t){null!==(n=t[e])&&void 0!==n?n:t[e]=document.querySelectorAll(e);e=t[e]}else e=document.querySelectorAll(e);else e instanceof Element&&(e=[e]);return Array.from(e||[])}const createAnimation=e=>e();const withControls=(e,t,n=i.duration)=>new Proxy({animations:e.map(createAnimation).filter(Boolean),duration:n,options:t},I);const getActiveAnimation=e=>e.animations[0];const I={get:(e,t)=>{const n=getActiveAnimation(e);switch(t){case\"duration\":return e.duration;case\"currentTime\":return a.s((null===n||void 0===n?void 0:n[t])||0);case\"playbackRate\":case\"playState\":return null===n||void 0===n?void 0:n[t];case\"finished\":e.finished||(e.finished=Promise.all(e.animations.map(selectFinished)).catch(l));return e.finished;case\"stop\":return()=>{e.animations.forEach((e=>stopAnimation(e)))};case\"forEachNative\":return t=>{e.animations.forEach((n=>t(n,e)))};default:return\"undefined\"===typeof(null===n||void 0===n?void 0:n[t])?void 0:()=>e.animations.forEach((e=>e[t]()))}},set:(e,t,n)=>{switch(t){case\"currentTime\":n=a.ms(n);case\"currentTime\":case\"playbackRate\":for(let o=0;o<e.animations.length;o++)e.animations[o][t]=n;return true}return false}};const selectFinished=e=>e.finished;function stagger(e=.1,{start:t=0,from:n=0,easing:o}={}){return(i,s)=>{const a=r(n)?n:getFromIndex(n,s);const c=Math.abs(a-i);let l=e*c;if(o){const t=s*e;const n=E(o);l=n(l/t)*t}return t+l}}function getFromIndex(e,t){if(\"first\"===e)return 0;{const n=t-1;return\"last\"===e?n:n/2}}function resolveOption(e,t,n){return\"function\"===typeof e?e(t,n):e}function animate(e,t,n={}){e=resolveElements(e);const o=e.length;const i=[];for(let s=0;s<o;s++){const r=e[s];for(const e in t){const a=getOptions(n,e);a.delay=resolveOption(a.delay,s,o);const c=animateStyle(r,e,t[e],a);i.push(c)}}return withControls(i,n,n.duration)}function calcNextTime(e,t,n,o){var i;return r(t)?t:t.startsWith(\"-\")||t.startsWith(\"+\")?Math.max(0,e+parseFloat(t)):\"<\"===t?n:null!==(i=o.get(t))&&void 0!==i?i:e}function eraseKeyframes(e,t,n){for(let o=0;o<e.length;o++){const i=e[o];if(i.at>t&&i.at<n){f(e,i);o--}}}function addKeyframes(e,t,n,o,i,s){eraseKeyframes(e,i,s);for(let r=0;r<t.length;r++)e.push({value:t[r],at:u(i,s,o[r]),easing:d(n,r)})}function compareByTime(e,t){return e.at===t.at?null===e.value?1:-1:e.at-t.at}function timeline(e,t={}){var n;const o=createAnimationsFromTimeline(e,t);const i=o.map((e=>animateStyle(...e))).filter(Boolean);return withControls(i,t,null===(n=o[0])||void 0===n?void 0:n[3].duration)}function createAnimationsFromTimeline(e,t={}){var{defaultOptions:n={}}=t,o=b(t,[\"defaultOptions\"]);const r=[];const a=new Map;const c={};const l=new Map;let f=0;let u=0;let d=0;for(let t=0;t<e.length;t++){const o=e[t];if(g(o)){l.set(o,u);continue}if(!Array.isArray(o)){l.set(o.name,calcNextTime(u,o.at,f,l));continue}const[r,p,v={}]=o;void 0!==v.at&&(u=calcNextTime(u,v.at,f,l));let y=0;const w=resolveElements(r,c);const E=w.length;for(let e=0;e<E;e++){const t=w[e];const o=getElementSequence(t,a);for(const t in p){const r=getValueSequence(t,o);let a=keyframesList(p[t]);const c=getOptions(v,t);let{duration:l=n.duration||i.duration,easing:f=n.easing||i.easing}=c;if(s(f)){const e=isTransform(t);S(2===a.length||!e,\"spring must be provided 2 keyframes within timeline\");const n=f.createAnimation(a,(()=>\"0\"),e);f=n.easing;void 0!==n.keyframes&&(a=n.keyframes);void 0!==n.duration&&(l=n.duration)}const g=resolveOption(v.delay,e,E)||0;const w=u+g;const b=w+l;let{offset:A=m(a.length)}=c;1===A.length&&0===A[0]&&(A[1]=1);const O=length-a.length;O>0&&h(A,O);1===a.length&&a.unshift(null);addKeyframes(r,a,f,A,w,b);y=Math.max(g+l,y);d=Math.max(b,d)}}f=u;u+=y}a.forEach(((e,t)=>{for(const s in e){const a=e[s];a.sort(compareByTime);const c=[];const l=[];const f=[];for(let e=0;e<a.length;e++){const{at:t,value:n,easing:o}=a[e];c.push(n);l.push(p(0,d,t));f.push(o||i.easing)}if(0!==l[0]){l.unshift(0);c.unshift(c[0]);f.unshift(\"linear\")}if(1!==l[l.length-1]){l.push(1);c.push(null)}r.push([t,s,c,Object.assign(Object.assign(Object.assign({},n),{duration:d,easing:f,offset:l}),o)])}}));return r}function getElementSequence(e,t){!t.has(e)&&t.set(e,{});return t.get(e)}function getValueSequence(e,t){t[e]||(t[e]=[]);return t[e]}function createGeneratorEasing(e){const t=new WeakMap;return(n={})=>{const o=new Map;const getGenerator=(t=0,i=100,s=0,r=false)=>{const a=`${t}-${i}-${s}-${r}`;o.has(a)||o.set(a,e(Object.assign({from:t,to:i,velocity:s,restSpeed:r?.05:2,restDistance:r?.01:.5},n)));return o.get(a)};const getKeyframes=e=>{t.has(e)||t.set(e,A(e));return t.get(e)};return{createAnimation:(e,t,n,o,i)=>{var s,r;let a;const c=e.length;let l=n&&c<=2&&e.every(isNumberOrNull);if(l){const n=e[c-1];const l=1===c?null:e[0];let f=0;let u=0;const d=null===i||void 0===i?void 0:i.generator;if(d){const{animation:t,generatorStartTime:n}=i;const o=(null===t||void 0===t?void 0:t.startTime)||n||0;const r=(null===t||void 0===t?void 0:t.currentTime)||performance.now()-o;const a=d(r).current;u=null!==(s=l)&&void 0!==s?s:a;(1===c||2===c&&null===e[0])&&(f=O((e=>d(e).current),r,a))}else u=null!==(r=l)&&void 0!==r?r:parseFloat(t());const g=getGenerator(u,n,f,null===o||void 0===o?void 0:o.includes(\"scale\"));const m=getKeyframes(g);a=Object.assign(Object.assign({},m),{easing:\"linear\"});if(i){i.generator=g;i.generatorStartTime=performance.now()}}else{const e=getKeyframes(getGenerator(0,100));a={easing:\"ease\",duration:e.overshootDuration}}return a}}}}const isNumberOrNull=e=>\"string\"!==typeof e;const N=createGeneratorEasing(x);const F=createGeneratorEasing(V);const U={any:0,all:1};function inView$1(e,t,{root:n,margin:o,amount:i=\"any\"}={}){if(\"undefined\"===typeof IntersectionObserver)return()=>{};const s=resolveElements(e);const r=new WeakMap;const onIntersectionChange=e=>{e.forEach((e=>{const n=r.get(e.target);if(e.isIntersecting!==Boolean(n))if(e.isIntersecting){const n=t(e);\"function\"===typeof n?r.set(e.target,n):a.unobserve(e.target)}else if(n){n(e);r.delete(e.target)}}))};const a=new IntersectionObserver(onIntersectionChange,{root:n,rootMargin:o,threshold:\"number\"===typeof i?i:U[i]});s.forEach((e=>a.observe(e)));return()=>a.disconnect()}const q=new WeakMap;let K;function getElementSize(e,t){if(t){const{inlineSize:e,blockSize:n}=t[0];return{width:e,height:n}}return e instanceof SVGElement&&\"getBBox\"in e?e.getBBox():{width:e.offsetWidth,height:e.offsetHeight}}function notifyTarget({target:e,contentRect:t,borderBoxSize:n}){var o;null===(o=q.get(e))||void 0===o?void 0:o.forEach((o=>{o({target:e,contentSize:t,get size(){return getElementSize(e,n)}})}))}function notifyAll(e){e.forEach(notifyTarget)}function createResizeObserver(){\"undefined\"!==typeof ResizeObserver&&(K=new ResizeObserver(notifyAll))}function resizeElement(e,t){K||createResizeObserver();const n=resolveElements(e);n.forEach((e=>{let n=q.get(e);if(!n){n=new Set;q.set(e,n)}n.add(t);null===K||void 0===K?void 0:K.observe(e)}));return()=>{n.forEach((e=>{const n=q.get(e);null===n||void 0===n?void 0:n.delete(t);(null===n||void 0===n?void 0:n.size)||(null===K||void 0===K?void 0:K.unobserve(e))}))}}const G=new Set;let _;function createWindowResizeHandler(){_=()=>{const e={width:window.innerWidth,height:window.innerHeight};const t={target:window,size:e,contentSize:e};G.forEach((e=>e(t)))};window.addEventListener(\"resize\",_)}function resizeWindow(e){G.add(e);_||createWindowResizeHandler();return()=>{G.delete(e);!G.size&&_&&(_=void 0)}}function resize(e,t){return\"function\"===typeof e?resizeWindow(e):resizeElement(e,t)}const Z=50;const createAxisInfo=()=>({current:0,offset:[],progress:0,scrollLength:0,targetOffset:0,targetLength:0,containerLength:0,velocity:0});const createScrollInfo=()=>({time:0,x:createAxisInfo(),y:createAxisInfo()});const X={x:{length:\"Width\",position:\"Left\"},y:{length:\"Height\",position:\"Top\"}};function updateAxisInfo(e,t,n,o){const i=n[t];const{length:s,position:r}=X[t];const a=i.current;const c=n.time;i.current=e[\"scroll\"+r];i.scrollLength=e[\"scroll\"+s]-e[\"client\"+s];i.offset.length=0;i.offset[0]=0;i.offset[1]=i.scrollLength;i.progress=p(0,i.scrollLength,i.current);const l=o-c;i.velocity=l>Z?0:v(i.current-a,l)}function updateScrollInfo(e,t,n){updateAxisInfo(e,\"x\",t,n);updateAxisInfo(e,\"y\",t,n);t.time=n}function calcInset(e,t){let n={x:0,y:0};let o=e;while(o&&o!==t)if(o instanceof HTMLElement){n.x+=o.offsetLeft;n.y+=o.offsetTop;o=o.offsetParent}else if(o instanceof SVGGraphicsElement&&\"getBBox\"in o){const{top:e,left:t}=o.getBBox();n.x+=t;n.y+=e;while(o&&\"svg\"!==o.tagName)o=o.parentNode}return n}const Y={Enter:[[0,1],[1,1]],Exit:[[0,0],[1,0]],Any:[[1,0],[0,1]],All:[[0,0],[1,1]]};const J={start:0,center:.5,end:1};function resolveEdge(e,t,n=0){let o=0;void 0!==J[e]&&(e=J[e]);if(g(e)){const t=parseFloat(e);e.endsWith(\"px\")?o=t:e.endsWith(\"%\")?e=t/100:e.endsWith(\"vw\")?o=t/100*document.documentElement.clientWidth:e.endsWith(\"vh\")?o=t/100*document.documentElement.clientHeight:e=t}r(e)&&(o=t*e);return n+o}const Q=[0,0];function resolveOffset(e,t,n,o){let i=Array.isArray(e)?e:Q;let s=0;let a=0;if(r(e))i=[e,e];else if(g(e)){e=e.trim();i=e.includes(\" \")?e.split(\" \"):[e,J[e]?e:\"0\"]}s=resolveEdge(i[0],n,o);a=resolveEdge(i[1],t);return s-a}const ee={x:0,y:0};function resolveOffsets(e,t,n){let{offset:o=Y.All}=n;const{target:i=e,axis:s=\"y\"}=n;const r=\"y\"===s?\"height\":\"width\";const a=i!==e?calcInset(i,e):ee;const c=i===e?{width:e.scrollWidth,height:e.scrollHeight}:{width:i.clientWidth,height:i.clientHeight};const l={width:e.clientWidth,height:e.clientHeight};t[s].offset.length=0;let f=!t[s].interpolate;const u=o.length;for(let e=0;e<u;e++){const n=resolveOffset(o[e],l[r],c[r],a[s]);f||n===t[s].interpolatorOffsets[e]||(f=true);t[s].offset[e]=n}if(f){t[s].interpolate=y(m(u),t[s].offset);t[s].interpolatorOffsets=[...t[s].offset]}t[s].progress=t[s].interpolate(t[s].current)}function measure(e,t=e,n){n.x.targetOffset=0;n.y.targetOffset=0;if(t!==e){let o=t;while(o&&o!=e){n.x.targetOffset+=o.offsetLeft;n.y.targetOffset+=o.offsetTop;o=o.offsetParent}}n.x.targetLength=t===e?t.scrollWidth:t.clientWidth;n.y.targetLength=t===e?t.scrollHeight:t.clientHeight;n.x.containerLength=e.clientWidth;n.y.containerLength=e.clientHeight}function createOnScrollHandler(e,t,n,o={}){const i=o.axis||\"y\";return{measure:()=>measure(e,o.target,n),update:t=>{updateScrollInfo(e,n,t);(o.offset||o.target)&&resolveOffsets(e,n,o)},notify:\"function\"===typeof t?()=>t(n):scrubAnimation(t,n[i])}}function scrubAnimation(e,n){e.pause();e.forEachNative(((e,{easing:n})=>{var o,i;if(e.updateDuration){n||(e.easing=t);e.updateDuration(1)}else{const t={duration:1e3};n||(t.easing=\"linear\");null===(i=null===(o=e.effect)||void 0===o?void 0:o.updateTiming)||void 0===i?void 0:i.call(o,t)}}));return()=>{e.currentTime=n.progress}}const te=new WeakMap;const ne=new WeakMap;const oe=new WeakMap;const getEventTarget=e=>e===document.documentElement?window:e;function scroll(e,t={}){var{container:n=document.documentElement}=t,o=b(t,[\"container\"]);let i=oe.get(n);if(!i){i=new Set;oe.set(n,i)}const s=createScrollInfo();const r=createOnScrollHandler(n,e,s,o);i.add(r);if(!te.has(n)){const listener=()=>{const e=performance.now();for(const e of i)e.measure();for(const t of i)t.update(e);for(const e of i)e.notify()};te.set(n,listener);const e=getEventTarget(n);window.addEventListener(\"resize\",listener,{passive:true});n!==document.documentElement&&ne.set(n,resize(n,listener));e.addEventListener(\"scroll\",listener,{passive:true})}const a=te.get(n);const c=requestAnimationFrame(a);return()=>{var t;\"function\"!==typeof e&&e.stop();cancelAnimationFrame(c);const o=oe.get(n);if(!o)return;o.delete(r);if(o.size)return;const i=te.get(n);te.delete(n);if(i){getEventTarget(n).removeEventListener(\"scroll\",i);null===(t=ne.get(n))||void 0===t?void 0:t();window.removeEventListener(\"resize\",i)}}}function hasChanged(e,t){return typeof e!==typeof t||(Array.isArray(e)&&Array.isArray(t)?!shallowCompare(e,t):e!==t)}function shallowCompare(e,t){const n=t.length;if(n!==e.length)return false;for(let o=0;o<n;o++)if(t[o]!==e[o])return false;return true}function isVariant(e){return\"object\"===typeof e}function resolveVariant(e,t){return isVariant(e)?e:e&&t?t[e]:void 0}let ie;function processScheduledAnimations(){if(!ie)return;const e=ie.sort(compareByDepth).map(fireAnimateUpdates);e.forEach(fireNext);e.forEach(fireNext);ie=void 0}function scheduleAnimation(e){if(ie)n(ie,e);else{ie=[e];requestAnimationFrame(processScheduledAnimations)}}function unscheduleAnimation(e){ie&&f(ie,e)}const compareByDepth=(e,t)=>e.getDepth()-t.getDepth();const fireAnimateUpdates=e=>e.animateUpdates();const fireNext=e=>e.next();const motionEvent=(e,t)=>new CustomEvent(e,{detail:{target:t}});function dispatchPointerEvent(e,t,n){e.dispatchEvent(new CustomEvent(t,{detail:{originalEvent:n}}))}function dispatchViewEvent(e,t,n){e.dispatchEvent(new CustomEvent(t,{detail:{originalEntry:n}}))}const se={isActive:e=>Boolean(e.inView),subscribe:(e,{enable:t,disable:n},{inViewOptions:o={}})=>{const{once:i}=o,s=b(o,[\"once\"]);return inView$1(e,(o=>{t();dispatchViewEvent(e,\"viewenter\",o);if(!i)return t=>{n();dispatchViewEvent(e,\"viewleave\",t)}}),s)}};const mouseEvent=(e,t,n)=>o=>{if(!o.pointerType||\"mouse\"===o.pointerType){n();dispatchPointerEvent(e,t,o)}};const re={isActive:e=>Boolean(e.hover),subscribe:(e,{enable:t,disable:n})=>{const o=mouseEvent(e,\"hoverstart\",t);const i=mouseEvent(e,\"hoverend\",n);e.addEventListener(\"pointerenter\",o);e.addEventListener(\"pointerleave\",i);return()=>{e.removeEventListener(\"pointerenter\",o);e.removeEventListener(\"pointerleave\",i)}}};const ae={isActive:e=>Boolean(e.press),subscribe:(e,{enable:t,disable:n})=>{const onPointerUp=t=>{n();dispatchPointerEvent(e,\"pressend\",t);window.removeEventListener(\"pointerup\",onPointerUp)};const onPointerDown=n=>{t();dispatchPointerEvent(e,\"pressstart\",n);window.addEventListener(\"pointerup\",onPointerUp)};e.addEventListener(\"pointerdown\",onPointerDown);return()=>{e.removeEventListener(\"pointerdown\",onPointerDown);window.removeEventListener(\"pointerup\",onPointerUp)}}};const ce={inView:se,hover:re,press:ae};const le=[\"initial\",\"animate\",...Object.keys(ce),\"exit\"];const fe=new WeakMap;function createMotionState(e={},t){let n;let o=t?t.getDepth()+1:0;const i={initial:true,animate:true};const s={};const r={};for(const n of le)r[n]=\"string\"===typeof e[n]?e[n]:null===t||void 0===t?void 0:t.getContext()[n];const a=false===e.initial?\"animate\":\"initial\";let c=resolveVariant(e[a]||r[a],e.variants)||{},f=b(c,[\"transition\"]);const u=Object.assign({},f);function*animateUpdates(){var t,o;const s=f;f={};const r={};for(const n of le){if(!i[n])continue;const s=resolveVariant(e[n]);if(s)for(const n in s)if(\"transition\"!==n){f[n]=s[n];r[n]=getOptions(null!==(o=null!==(t=s.transition)&&void 0!==t?t:e.transition)&&void 0!==o?o:{},n)}}const a=new Set([...Object.keys(f),...Object.keys(s)]);const c=[];a.forEach((e=>{var t;void 0===f[e]&&(f[e]=u[e]);if(hasChanged(s[e],f[e])){null!==(t=u[e])&&void 0!==t?t:u[e]=H.get(n,e);c.push(animateStyle(n,e,f[e],r[e]))}}));yield;const d=c.map((e=>e())).filter(Boolean);if(!d.length)return;const g=f;n.dispatchEvent(motionEvent(\"motionstart\",g));Promise.all(d.map((e=>e.finished))).then((()=>{n.dispatchEvent(motionEvent(\"motioncomplete\",g))})).catch(l)}const setGesture=(e,t)=>()=>{i[e]=t;scheduleAnimation(d)};const updateGestureSubscriptions=()=>{for(const t in ce){const o=ce[t].isActive(e);const i=s[t];if(o&&!i)s[t]=ce[t].subscribe(n,{enable:setGesture(t,true),disable:setGesture(t,false)},e);else if(!o&&i){i();delete s[t]}}};const d={update:t=>{if(n){e=t;updateGestureSubscriptions();scheduleAnimation(d)}},setActive:(e,t)=>{if(n){i[e]=t;scheduleAnimation(d)}},animateUpdates:animateUpdates,getDepth:()=>o,getTarget:()=>f,getOptions:()=>e,getContext:()=>r,mount:e=>{S(Boolean(e),\"Animation state must be mounted with valid Element\");n=e;fe.set(n,d);updateGestureSubscriptions();return()=>{fe.delete(n);unscheduleAnimation(d);for(const e in s)s[e]()}},isMounted:()=>Boolean(n)};return d}function createStyles(e){const t={};const n=[];for(let o in e){const i=e[o];if(isTransform(o)){T[o]&&(o=T[o]);n.push(o);o=asTransformCssVar(o)}let s=Array.isArray(i)?i[0]:i;const a=k.get(o);a&&(s=r(i)?a.toDefaultUnit(i):i);t[o]=s}n.length&&(t.transform=buildTransformTemplate(n));return t}const camelLetterToPipeLetter=e=>`-${e.toLowerCase()}`;const camelToPipeCase=e=>e.replace(/[A-Z]/g,camelLetterToPipeLetter);function createStyleString(e={}){const t=createStyles(e);let n=\"\";for(const e in t){n+=e.startsWith(\"--\")?e:camelToPipeCase(e);n+=`: ${t[e]}; `}return n}export{Y as ScrollOffset,animate,animateStyle,createMotionState,createStyleString,createStyles,getAnimationData,getStyleName,F as glide,inView$1 as inView,fe as mountedStates,resize,scroll,N as spring,stagger,H as style,timeline,withControls};\n\n//# sourceMappingURL=index.es.js.map", "import{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{Children,useEffect,useState,useRef,useMemo,createRef,useCallback,cloneElement}from\"react\";import{addPropertyControls,ControlType,RenderTarget}from\"framer\";import{useAnimationFrame,useReducedMotion,LayoutGroup,useInView,useMotionValue,useTransform,motion,wrap,frame}from\"framer-motion\";import{resize}from\"@motionone/dom\";const MAX_DUPLICATED_ITEMS=100;const MAX_AREA=5e6;const CSS_VAR_NAME=\"--ticker-offset\";const supportsWaapi=typeof Animation!==\"undefined\"&&typeof Animation.prototype.updatePlaybackRate===\"function\";let supportsRegisterProperty=true;if(typeof window!==\"undefined\"){try{window.CSS.registerProperty({name:CSS_VAR_NAME,syntax:\"<length>\",initialValue:\"0px\",inherits:false});}catch(e){supportsRegisterProperty=false;}}/**\n *\n * @framerIntrinsicWidth 400\n * @framerIntrinsicHeight 200\n *\n * @framerDisableUnlink\n *\n * @framerSupportedLayoutWidth fixed\n * @framerSupportedLayoutHeight fixed\n */export default function Ticker(props){/* Props */let{slots,gap,padding,paddingPerSide,paddingTop,paddingRight,paddingBottom,paddingLeft,speed,hoverFactor,direction,alignment,sizingOptions,fadeOptions,style}=props;const{fadeContent,overflow,fadeWidth,fadeInset,fadeAlpha}=fadeOptions;const{widthType,heightType}=sizingOptions;const paddingValue=paddingPerSide?`${paddingTop}px ${paddingRight}px ${paddingBottom}px ${paddingLeft}px`:`${padding}px`;/* Checks */const isCanvas=RenderTarget.current()===RenderTarget.canvas;// Remove empty slots (such as hidden layers)\nconst filteredSlots=slots.filter(Boolean);const numChildren=Children.count(filteredSlots);const hasChildren=numChildren>0;if(direction===true){direction=\"left\";}const isHorizontal=direction===\"left\"||direction===\"right\";const offset=useMotionValue(0);const axis=isHorizontal?\"X\":\"Y\";const minus=direction===\"left\"||direction===\"top\"?\"-\":\"\";const transform=useTransform(()=>`translate${axis}(${minus}${offset.get()}px)`);/* Refs and State */const parentRef=useRef(null);const childrenRef=useMemo(()=>{return[/*#__PURE__*/createRef(),/*#__PURE__*/createRef()];},[]);const[size,setSize]=useState({parent:null,children:null,childrenArea:null});/* Arrays */let clonedChildren=[];let dupedChildren=[];/* Duplicate value */let duplicateBy=0;let opacity=0;if(isCanvas){duplicateBy=numChildren?Math.floor(10/numChildren):0;opacity=1;}if(!isCanvas&&hasChildren&&size.parent){duplicateBy=Math.round(size.parent/size.children*2)+1;duplicateBy=Math.min(duplicateBy,MAX_DUPLICATED_ITEMS);opacity=1;}const fullChildrenArea=size.childrenArea===null?null:size.childrenArea*(duplicateBy+1);const isLayerTooBig=fullChildrenArea===null?null:fullChildrenArea>MAX_AREA;/* Measure parent and child */const measure=useCallback(()=>{if(hasChildren&&parentRef.current){const parentLength=isHorizontal?parentRef.current.offsetWidth:parentRef.current.offsetHeight;const[firstChild,lastChild]=childrenRef;const childrenLeft=firstChild.current?firstChild.current.offsetLeft:0;const childrenRight=lastChild.current?lastChild.current.offsetLeft+lastChild.current.offsetWidth:0;const childrenTop=firstChild.current?firstChild.current.offsetTop:0;const childrenBottom=lastChild.current?lastChild.current.offsetTop+lastChild.current.offsetHeight:0;const childrenWidth=childrenRight-childrenLeft;const childrenHeight=childrenBottom-childrenTop;const childrenArea=childrenWidth*childrenHeight;const childrenLength=(isHorizontal?childrenWidth:childrenHeight)+gap;setSize({parent:parentLength,children:childrenLength,childrenArea});}},[]);const childrenStyles=isCanvas?{contentVisibility:\"auto\"}:{};/* Add refs to first and last child */if(hasChildren){// TODO: These conditional hooks will be unsafe if hasChildren ever changes outside the canvas.\nif(!isCanvas){/**\n             * Track whether this is the initial resize event. By default this will fire on mount,\n             * which we do in the useEffect. We should only fire it on subsequent resizes.\n             */let initialResize=useRef(true);useEffect(()=>{frame.read(measure);return resize(parentRef.current,({contentSize})=>{if(!initialResize.current&&(contentSize.width||contentSize.height)){frame.read(measure);}initialResize.current=false;});},[]);}clonedChildren=Children.map(filteredSlots,(child,index)=>{var _child_props,_child_props1,_child_props2,_child_props3;let ref;if(index===0){ref=childrenRef[0];}if(index===filteredSlots.length-1){ref=childrenRef[1];}const size={width:widthType?(_child_props=child.props)===null||_child_props===void 0?void 0:_child_props.width:\"100%\",height:heightType?(_child_props1=child.props)===null||_child_props1===void 0?void 0:_child_props1.height:\"100%\"};return /*#__PURE__*/_jsx(LayoutGroup,{inherit:\"id\",children:/*#__PURE__*/_jsx(\"li\",{ref:ref,style:size,children:/*#__PURE__*/cloneElement(child,{style:{...(_child_props2=child.props)===null||_child_props2===void 0?void 0:_child_props2.style,...size,flexShrink:0,...childrenStyles},layoutId:child.props.layoutId?child.props.layoutId+\"-original-\"+index:undefined},(_child_props3=child.props)===null||_child_props3===void 0?void 0:_child_props3.children)})},index+\"-original\");});}if(!isCanvas){for(let i=0;i<duplicateBy;i++){dupedChildren=[...dupedChildren,...Children.map(filteredSlots,(child,childIndex)=>{var _child_props,_child_props1,_child_props2,_child_props3,_child_props4,_child_props5;const size={width:widthType?(_child_props=child.props)===null||_child_props===void 0?void 0:_child_props.width:\"100%\",height:heightType?(_child_props1=child.props)===null||_child_props1===void 0?void 0:_child_props1.height:\"100%\",willChange:isLayerTooBig===true?\"auto\":\"transform\"};return /*#__PURE__*/_jsx(LayoutGroup,{inherit:\"id\",children:/*#__PURE__*/_jsx(\"li\",{style:size,\"aria-hidden\":true,children:/*#__PURE__*/cloneElement(child,{key:i+\" \"+childIndex,style:{...(_child_props2=child.props)===null||_child_props2===void 0?void 0:_child_props2.style,width:widthType?(_child_props3=child.props)===null||_child_props3===void 0?void 0:_child_props3.width:\"100%\",height:heightType?(_child_props4=child.props)===null||_child_props4===void 0?void 0:_child_props4.height:\"100%\",flexShrink:0,...childrenStyles},layoutId:child.props.layoutId?child.props.layoutId+\"-dupe-\"+i:undefined},(_child_props5=child.props)===null||_child_props5===void 0?void 0:_child_props5.children)},i+\"li\"+childIndex)},i+\"lg\"+childIndex);})];}}const animateToValue=size.children+size.children*Math.round(size.parent/size.children);const initialTime=useRef(null);const prevTime=useRef(null);const xOrY=useRef(0);const isHover=useRef(false);const isReducedMotion=useReducedMotion();const listRef=useRef(null);const animationRef=useRef(null);/**\n     * Setup animations\n     */if(!isCanvas){const isInView=useInView(parentRef);/**\n         * If this is an animation we can hardware accelerate, animate with WAAPI\n         */if(supportsWaapi&&(!isLayerTooBig||isLayerTooBig&&supportsRegisterProperty)){useEffect(()=>{if(isReducedMotion||!animateToValue||!speed||isLayerTooBig===null){return;}if(isLayerTooBig){try{window.CSS.registerProperty({name:CSS_VAR_NAME,syntax:\"<length>\",initialValue:\"0px\",inherits:false});}catch(e){}}/**\n                 * If the layer is too big we want to animate a CSS variable instead of the transform\n                 * to avoid promoting the layer to the GPU.\n                 */const keyframes=isLayerTooBig?{[CSS_VAR_NAME]:[\"0px\",`${minus}${animateToValue}px`]}:{transform:[`translate${axis}(0px)`,`translate${axis}(${minus}${animateToValue}px)`]};animationRef.current=listRef.current.animate(keyframes,{duration:Math.abs(animateToValue)/speed*1e3,iterations:Infinity,easing:\"linear\"});return()=>animationRef.current.cancel();},[hoverFactor,animateToValue,speed,isLayerTooBig]);// Pause the animation when it's out of view\nuseEffect(()=>{if(!animationRef.current)return;if(isInView&&animationRef.current.playState===\"paused\"){animationRef.current.play();}else if(!isInView&&animationRef.current.playState===\"running\"){animationRef.current.pause();}},[isInView]);}else{/**\n             * If we can't accelerate this animation because we have a hoverFactor defined\n             * animate with a rAF loop.\n             */useAnimationFrame(t=>{if(!animateToValue||isReducedMotion||supportsWaapi){return;}/**\n                 * In case this animation is delayed from starting because we're running a bunch\n                 * of other work, we want to set an initial time rather than counting from 0.\n                 * That ensures that if the animation is delayed, it starts from the first frame\n                 * rather than jumping.\n                 */if(initialTime.current===null){initialTime.current=t;}t=t-initialTime.current;const timeSince=prevTime.current===null?0:t-prevTime.current;let delta=timeSince*(speed/1e3);if(isHover.current){delta*=hoverFactor;}xOrY.current+=delta;xOrY.current=wrap(0,animateToValue,xOrY.current);prevTime.current=t;if(!isInView)return;offset.set(xOrY.current);});}}/* Fades */const fadeDirection=isHorizontal?\"to right\":\"to bottom\";const fadeWidthStart=fadeWidth/2;const fadeWidthEnd=100-fadeWidth/2;const fadeInsetStart=clamp(fadeInset,0,fadeWidthStart);const fadeInsetEnd=100-fadeInset;const fadeMask=`linear-gradient(${fadeDirection}, rgba(0, 0, 0, ${fadeAlpha}) ${fadeInsetStart}%, rgba(0, 0, 0, 1) ${fadeWidthStart}%, rgba(0, 0, 0, 1) ${fadeWidthEnd}%, rgba(0, 0, 0, ${fadeAlpha}) ${fadeInsetEnd}%)`;/* Empty state */if(!hasChildren){return /*#__PURE__*/_jsxs(\"section\",{style:placeholderStyles,children:[/*#__PURE__*/_jsx(\"div\",{style:emojiStyles,children:\"\u2728\"}),/*#__PURE__*/_jsx(\"p\",{style:titleStyles,children:\"Connect to Content\"}),/*#__PURE__*/_jsx(\"p\",{style:subtitleStyles,children:\"Add layers or components to infinitely loop on your page.\"})]});}return /*#__PURE__*/_jsx(\"section\",{style:{...containerStyle,opacity:opacity,WebkitMaskImage:fadeContent?fadeMask:undefined,MozMaskImage:fadeContent?fadeMask:undefined,maskImage:fadeContent?fadeMask:undefined,overflow:overflow?\"visible\":\"hidden\",padding:paddingValue},ref:parentRef,children:/*#__PURE__*/_jsxs(motion.ul,{ref:listRef,style:{...containerStyle,gap:gap,top:direction===\"bottom\"&&isValidNumber(animateToValue)?-animateToValue:undefined,left:direction===\"right\"&&isValidNumber(animateToValue)?-animateToValue:undefined,placeItems:alignment,position:\"relative\",flexDirection:isHorizontal?\"row\":\"column\",...style,willChange:isCanvas||isLayerTooBig?\"auto\":\"transform\",transform:supportsWaapi?isLayerTooBig?`translate${axis}(var(${CSS_VAR_NAME}))`:\"none\":transform},onMouseEnter:()=>{isHover.current=true;if(animationRef.current){// TODO Replace with updatePlaybackRate when Chrome bugs sorted\nanimationRef.current.playbackRate=hoverFactor;}},onMouseLeave:()=>{isHover.current=false;if(animationRef.current){// TODO Replace with updatePlaybackRate when Chrome bugs sorted\nanimationRef.current.playbackRate=1;}},children:[clonedChildren,dupedChildren]})});}/* Default Properties */Ticker.defaultProps={gap:10,padding:10,sizingOptions:{widthType:true,heightType:true},fadeOptions:{fadeContent:true,overflow:false,fadeWidth:25,fadeAlpha:0,fadeInset:0},direction:true};/* Property Controls */addPropertyControls(Ticker,{slots:{type:ControlType.Array,title:\"Children\",control:{type:ControlType.ComponentInstance}},speed:{type:ControlType.Number,title:\"Speed\",min:0,max:1e3,defaultValue:100,unit:\"%\",displayStepper:true,step:5},direction:{type:ControlType.Enum,title:\"Direction\",options:[\"left\",\"right\",\"top\",\"bottom\"],optionIcons:[\"direction-left\",\"direction-right\",\"direction-up\",\"direction-down\"],optionTitles:[\"Left\",\"Right\",\"Top\",\"Bottom\"],defaultValue:\"left\",displaySegmentedControl:true},alignment:{type:ControlType.Enum,title:\"Align\",options:[\"flex-start\",\"center\",\"flex-end\"],optionIcons:{direction:{right:[\"align-top\",\"align-middle\",\"align-bottom\"],left:[\"align-top\",\"align-middle\",\"align-bottom\"],top:[\"align-left\",\"align-center\",\"align-right\"],bottom:[\"align-left\",\"align-center\",\"align-right\"]}},defaultValue:\"center\",displaySegmentedControl:true},gap:{type:ControlType.Number,title:\"Gap\"},padding:{title:\"Padding\",type:ControlType.FusedNumber,toggleKey:\"paddingPerSide\",toggleTitles:[\"Padding\",\"Padding per side\"],valueKeys:[\"paddingTop\",\"paddingRight\",\"paddingBottom\",\"paddingLeft\"],valueLabels:[\"T\",\"R\",\"B\",\"L\"],min:0},sizingOptions:{type:ControlType.Object,title:\"Sizing\",controls:{widthType:{type:ControlType.Boolean,title:\"Width\",enabledTitle:\"Auto\",disabledTitle:\"Stretch\",defaultValue:true},heightType:{type:ControlType.Boolean,title:\"Height\",enabledTitle:\"Auto\",disabledTitle:\"Stretch\",defaultValue:true}}},fadeOptions:{type:ControlType.Object,title:\"Clipping\",controls:{fadeContent:{type:ControlType.Boolean,title:\"Fade\",defaultValue:true},overflow:{type:ControlType.Boolean,title:\"Overflow\",enabledTitle:\"Show\",disabledTitle:\"Hide\",defaultValue:false,hidden(props){return props.fadeContent===true;}},fadeWidth:{type:ControlType.Number,title:\"Width\",defaultValue:25,min:0,max:100,unit:\"%\",hidden(props){return props.fadeContent===false;}},fadeInset:{type:ControlType.Number,title:\"Inset\",defaultValue:0,min:0,max:100,unit:\"%\",hidden(props){return props.fadeContent===false;}},fadeAlpha:{type:ControlType.Number,title:\"Opacity\",defaultValue:0,min:0,max:1,step:.05,hidden(props){return props.fadeContent===false;}}}},hoverFactor:{type:ControlType.Number,title:\"Hover\",min:0,max:1,unit:\"x\",defaultValue:1,step:.1,displayStepper:true,description:\"Slows down the speed while you are hovering.\"}});/* Placeholder Styles */const containerStyle={display:\"flex\",width:\"100%\",height:\"100%\",maxWidth:\"100%\",maxHeight:\"100%\",placeItems:\"center\",margin:0,padding:0,listStyleType:\"none\",textIndent:\"none\"};/* Styles */const placeholderStyles={display:\"flex\",width:\"100%\",height:\"100%\",placeContent:\"center\",placeItems:\"center\",flexDirection:\"column\",color:\"#96F\",background:\"rgba(136, 85, 255, 0.1)\",fontSize:11,overflow:\"hidden\",padding:\"20px 20px 30px 20px\"};const emojiStyles={fontSize:32,marginBottom:10};const titleStyles={margin:0,marginBottom:10,fontWeight:600,textAlign:\"center\"};const subtitleStyles={margin:0,opacity:.7,maxWidth:150,lineHeight:1.5,textAlign:\"center\"};/* Clamp function, used for fadeInset */const clamp=(num,min,max)=>Math.min(Math.max(num,min),max);const isValidNumber=value=>typeof value===\"number\"&&!isNaN(value);\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"Ticker\",\"slots\":[],\"annotations\":{\"framerSupportedLayoutWidth\":\"fixed\",\"framerSupportedLayoutHeight\":\"fixed\",\"framerIntrinsicWidth\":\"400\",\"framerIntrinsicHeight\":\"200\",\"framerContractVersion\":\"1\",\"framerDisableUnlink\":\"*\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Ticker.map", "// Generated by Framer (ea53337)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,getFontsFromSharedStyle,Image,RichText,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import Ticker from\"https://framerusercontent.com/modules/B2xAlJLcN0gOnt11mSPw/RLUeKLNmERbgkhrJQwKX/Ticker.js\";import*as sharedStyle from\"https://framerusercontent.com/modules/qi4tGdg94YsO3oqbxfiR/9uHvt3OSXzQ7fTKry0aa/iNaWndAoT.js\";const TickerFonts=getFonts(Ticker);const serializationHash=\"framer-qAsEN\";const variantClassNames={n4MDV5HFa:\"framer-v-mqa2r9\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={bounce:.2,delay:0,duration:.4,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const getProps=({gap,height,id,width,...props})=>{return{...props,ctG_fDQi4:gap??props.ctG_fDQi4??30};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,ctG_fDQi4,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({defaultVariant:\"n4MDV5HFa\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const sharedStyleClassNames=[sharedStyle.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const ref1=React.useRef(null);const defaultLayoutId=React.useId();const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(motion.div,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-mqa2r9\",className,classNames),\"data-framer-name\":\"Hero Ticker\",layoutDependency:layoutDependency,layoutId:\"n4MDV5HFa\",ref:ref??ref1,style:{\"--w7otrl\":ctG_fDQi4,...style},children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-g6mric\",\"data-framer-name\":\"Content\",layoutDependency:layoutDependency,layoutId:\"Lye99pvwA\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-16upl8m\",\"data-styles-preset\":\"iNaWndAoT\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-e4fdc027-410b-4747-8d19-b7d6252d4400, rgb(28, 28, 28)))\"},children:\"Trusted by 1,000+ devs and designers, including teams at:\"})}),className:\"framer-x3qg4g\",\"data-framer-name\":\"Heading\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"Q1GkZGYdF\",style:{\"--extracted-r6o4lv\":\"var(--token-e4fdc027-410b-4747-8d19-b7d6252d4400, rgb(28, 28, 28))\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-16fa5ch-container\",layoutDependency:layoutDependency,layoutId:\"IplznIoAP-container\",children:/*#__PURE__*/_jsx(Ticker,{alignment:\"center\",direction:\"left\",fadeOptions:{fadeAlpha:0,fadeContent:true,fadeInset:0,fadeWidth:25,overflow:false},gap:96,height:\"100%\",hoverFactor:1,id:\"IplznIoAP\",layoutId:\"IplznIoAP\",padding:0,paddingBottom:0,paddingLeft:0,paddingPerSide:false,paddingRight:0,paddingTop:0,sizingOptions:{heightType:true,widthType:true},slots:[/*#__PURE__*/_jsx(Image,{background:{alt:\"Logo\",fit:\"fit\",pixelHeight:151,pixelWidth:844,positionX:\"center\",positionY:\"center\",sizes:\"170px\",src:\"https://framerusercontent.com/images/b2KmKj0TpurlspJoMIt9e0qEQ.svg\",srcSet:\"https://framerusercontent.com/images/b2KmKj0TpurlspJoMIt9e0qEQ.svg?scale-down-to=512 512w,https://framerusercontent.com/images/b2KmKj0TpurlspJoMIt9e0qEQ.svg 844w\"},className:\"framer-8u4r71\",\"data-framer-name\":\"Logo\",layoutDependency:layoutDependency,layoutId:\"YhY29oZog\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"Logo\",fit:\"fit\",pixelHeight:147,pixelWidth:765,positionX:\"center\",positionY:\"center\",sizes:\"126px\",src:\"https://framerusercontent.com/images/wd5YYlDUbOwKYiw51ZRdkD3PY.svg\",srcSet:\"https://framerusercontent.com/images/wd5YYlDUbOwKYiw51ZRdkD3PY.svg?scale-down-to=512 512w,https://framerusercontent.com/images/wd5YYlDUbOwKYiw51ZRdkD3PY.svg 765w\"},className:\"framer-q4kmkq\",\"data-framer-name\":\"Logo\",layoutDependency:layoutDependency,layoutId:\"JqXW9CCDB\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"Logo\",fit:\"fit\",pixelHeight:150,pixelWidth:532,positionX:\"center\",positionY:\"center\",sizes:\"149px\",src:\"https://framerusercontent.com/images/X3w2Kw2wAX6re3dXbtQ1zipWSU.svg\",srcSet:\"https://framerusercontent.com/images/X3w2Kw2wAX6re3dXbtQ1zipWSU.svg?scale-down-to=512 512w,https://framerusercontent.com/images/X3w2Kw2wAX6re3dXbtQ1zipWSU.svg 532w\"},className:\"framer-1ndqs4j\",\"data-framer-name\":\"Logo\",layoutDependency:layoutDependency,layoutId:\"Yt0Z7QHQ5\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"Logo\",fit:\"fit\",pixelHeight:154,pixelWidth:834,positionX:\"center\",positionY:\"center\",sizes:\"204px\",src:\"https://framerusercontent.com/images/87O6VnTNzHpJ3XMy54Y5IciUmTo.svg\",srcSet:\"https://framerusercontent.com/images/87O6VnTNzHpJ3XMy54Y5IciUmTo.svg?scale-down-to=512 512w,https://framerusercontent.com/images/87O6VnTNzHpJ3XMy54Y5IciUmTo.svg 834w\"},className:\"framer-1armpp6\",\"data-framer-name\":\"Logo\",layoutDependency:layoutDependency,layoutId:\"UxCWa9aNT\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"Logo\",fit:\"fit\",pixelHeight:157,pixelWidth:478,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/YsPozM0PAKBj01IkIAXRuUZHQ.svg\"},className:\"framer-h0vfvc\",\"data-framer-name\":\"Logo\",layoutDependency:layoutDependency,layoutId:\"iLo1nPf5a\"})],speed:50,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-qAsEN.framer-iq8c03, .framer-qAsEN .framer-iq8c03 { display: block; }\",\".framer-qAsEN.framer-mqa2r9 { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: calc(max(0, var(--w7otrl)) * 1px); height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 1162px; }\",\".framer-qAsEN .framer-g6mric { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-qAsEN .framer-x3qg4g { flex: 1 0 0px; height: auto; position: relative; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; }\",\".framer-qAsEN .framer-16fa5ch-container { flex: none; height: 42px; position: relative; width: 100%; }\",\".framer-qAsEN .framer-8u4r71 { height: 42px; overflow: hidden; position: relative; width: 170px; }\",\".framer-qAsEN .framer-q4kmkq, .framer-qAsEN .framer-h0vfvc { height: 42px; overflow: hidden; position: relative; width: 126px; }\",\".framer-qAsEN .framer-1ndqs4j { height: 42px; overflow: hidden; position: relative; width: 149px; }\",\".framer-qAsEN .framer-1armpp6 { height: 42px; overflow: hidden; position: relative; width: 204px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-qAsEN.framer-mqa2r9, .framer-qAsEN .framer-g6mric { gap: 0px; } .framer-qAsEN.framer-mqa2r9 > * { margin: 0px; margin-bottom: calc(calc(max(0, var(--w7otrl)) * 1px) / 2); margin-top: calc(calc(max(0, var(--w7otrl)) * 1px) / 2); } .framer-qAsEN.framer-mqa2r9 > :first-child { margin-top: 0px; } .framer-qAsEN.framer-mqa2r9 > :last-child { margin-bottom: 0px; } .framer-qAsEN .framer-g6mric > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-qAsEN .framer-g6mric > :first-child { margin-left: 0px; } .framer-qAsEN .framer-g6mric > :last-child { margin-right: 0px; } }\",...sharedStyle.css];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 99\n * @framerIntrinsicWidth 1162\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerVariables {\"ctG_fDQi4\":\"gap\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FrameruFFVz2_Nx=withCSS(Component,css,\"framer-qAsEN\");export default FrameruFFVz2_Nx;FrameruFFVz2_Nx.displayName=\"Hero Ticker\";FrameruFFVz2_Nx.defaultProps={height:99,width:1162};addPropertyControls(FrameruFFVz2_Nx,{ctG_fDQi4:{defaultValue:30,min:0,title:\"Gap\",type:ControlType.Number}});addFonts(FrameruFFVz2_Nx,[{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\"}]},...TickerFonts,...getFontsFromSharedStyle(sharedStyle.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FrameruFFVz2_Nx\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\",\"framerImmutableVariables\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerIntrinsicHeight\":\"99\",\"framerVariables\":\"{\\\"ctG_fDQi4\\\":\\\"gap\\\"}\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicWidth\":\"1162\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./uFFVz2_Nx.map", "// Generated by Framer (99efa6a)\nimport{fontStore}from\"framer\";fontStore.loadFonts([\"GF;Bricolage Grotesque-600\",\"Inter-Black\",\"Inter-BlackItalic\",\"Inter-BoldItalic\"]);export const fonts=[{explicitInter:true,fonts:[{family:\"Bricolage Grotesque\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/bricolagegrotesque/v8/3y9U6as8bTXq_nANBjzKo3IeZx8z6up5BeSl5jBNz_19PpbpMXuECpwUxJBOm_OJWiaaD30YfKfjZZoLvcXlyMgvs-wJDtw.woff2\",weight:\"600\"},{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/mkY5Sgyq51ik0AMrSBwhm9DJg.woff2\",weight:\"900\"},{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/X5hj6qzcHUYv7h1390c8Rhm6550.woff2\",weight:\"900\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/gQhNpS3tN86g8RcVKYUUaKt2oMQ.woff2\",weight:\"900\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/cugnVhSraaRyANCaUtI5FV17wk.woff2\",weight:\"900\"},{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/5HcVoGak8k5agFJSaKa4floXVu0.woff2\",weight:\"900\"},{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/jn4BtSPLlS0NDp1KiFAtFKiiY0o.woff2\",weight:\"900\"},{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/P2Bw01CtL0b9wqygO0sSVogWbo.woff2\",weight:\"900\"},{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/05KsVHGDmqXSBXM4yRZ65P8i0s.woff2\",weight:\"900\"},{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/ky8ovPukK4dJ1Pxq74qGhOqCYI.woff2\",weight:\"900\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/vvNSqIj42qeQ2bvCRBIWKHscrc.woff2\",weight:\"900\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/3ZmXbBKToJifDV9gwcifVd1tEY.woff2\",weight:\"900\"},{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/FNfhX3dt4ChuLJq2PwdlxHO7PU.woff2\",weight:\"900\"},{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/g0c8vEViiXNlKAgI4Ymmk3Ig.woff2\",weight:\"900\"},{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/efTfQcBJ53kM2pB1hezSZ3RDUFs.woff2\",weight:\"900\"},{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/H89BbHkbHDzlxZzxi8uPzTsp90.woff2\",weight:\"700\"},{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/u6gJwDuwB143kpNK1T1MDKDWkMc.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/43sJ6MfOPh1LCJt46OvyDuSbA6o.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/wccHG0r4gBDAIRhfHiOlq6oEkqw.woff2\",weight:\"700\"},{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/WZ367JPwf9bRW6LdTHN8rXgSjw.woff2\",weight:\"700\"},{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/QxmhnWTzLtyjIiZcfaLIJ8EFBXU.woff2\",weight:\"700\"},{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/2A4Xx7CngadFGlVV4xrO06OBHY.woff2\",weight:\"700\"}]}];export const css=['.framer-oLDDa .framer-styles-preset-sgxnuw:not(.rich-text-wrapper), .framer-oLDDa .framer-styles-preset-sgxnuw.rich-text-wrapper h5 { --framer-font-family: \"Bricolage Grotesque\", \"Bricolage Grotesque Placeholder\", sans-serif; --framer-font-family-bold: \"Inter\", sans-serif; --framer-font-family-bold-italic: \"Inter\", sans-serif; --framer-font-family-italic: \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-open-type-features: normal; --framer-font-size: 22px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-style-bold-italic: italic; --framer-font-style-italic: italic; --framer-font-variation-axes: normal; --framer-font-weight: 600; --framer-font-weight-bold: 900; --framer-font-weight-bold-italic: 900; --framer-font-weight-italic: 700; --framer-letter-spacing: 0em; --framer-line-height: 100%; --framer-paragraph-spacing: 40px; --framer-text-alignment: left; --framer-text-color: var(--token-ba518e49-fd81-4146-90b5-735c8c21a788, #0c0c0c); --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; }'];export const className=\"framer-oLDDa\";\nexport const __FramerMetadata__ = {\"exports\":{\"fonts\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"className\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"css\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (2306ade)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,ComponentViewportProvider,cx,getFonts,getFontsFromSharedStyle,RichText,SmartComponentScopedContainer,useComponentViewport,useLocaleInfo,useVariantState,withCodeBoundaryForOverrides,withCSS,withMappedReactProps}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import{trackLeadEvent}from\"https://framerusercontent.com/modules/VbgW92sa5Jj3Kbesb2IK/2Xzl9V7grzqJwQtjcj4q/LeadEventTracker.js\";import*as sharedStyle from\"https://framerusercontent.com/modules/gOG3LgmdsawDhc4AGuIG/DLpLaACUckCa0IA0omDU/zSk8gBtdV.js\";import ButtonsPrimaryButton,*as ButtonsPrimaryButtonInfo from\"https://framerusercontent.com/modules/zEjWvQD3ulMQi2xxG4xC/lz4mf2iy3RRA34R1BnQu/MgIT3hfmM.js\";const ButtonsPrimaryButtonFonts=getFonts(ButtonsPrimaryButton);const ButtonsPrimaryButtonTrackLeadEvent1irxtd4WithMappedReactProps8b5nzg=withMappedReactProps(withCodeBoundaryForOverrides(ButtonsPrimaryButton,{nodeId:\"X8q7CgEcX\",override:trackLeadEvent,scopeId:\"xUYKtLlNa\"}),ButtonsPrimaryButtonInfo);const serializationHash=\"framer-Ztdbi\";const variantClassNames={FdQ9568iG:\"framer-v-kgxrxa\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={bounce:.2,delay:0,duration:.4,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const getProps=({height,id,width,...props})=>{return{...props};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const fallbackRef=useRef(null);const refBinding=ref??fallbackRef;const defaultLayoutId=React.useId();const{activeLocale,setLocale}=useLocaleInfo();const componentViewport=useComponentViewport();const{style,className,layoutId,variant,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({defaultVariant:\"FdQ9568iG\",ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const sharedStyleClassNames=[sharedStyle.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(motion.div,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-kgxrxa\",className,classNames),\"data-framer-name\":\"Variant 1\",layoutDependency:layoutDependency,layoutId:\"FdQ9568iG\",ref:refBinding,style:{backdropFilter:\"blur(5px)\",borderTopLeftRadius:20,borderTopRightRadius:20,WebkitBackdropFilter:\"blur(5px)\",...style},children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-qpjai5\",layoutDependency:layoutDependency,layoutId:\"Zm1oqISRw\",style:{backgroundColor:\"rgba(0, 0, 0, 0.75)\"},children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-7vg39i\",layoutDependency:layoutDependency,layoutId:\"WeKGYSzvx\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(motion.h5,{className:\"framer-styles-preset-sgxnuw\",\"data-styles-preset\":\"zSk8gBtdV\",style:{\"--framer-text-color\":\"var(--extracted-1lwpl3i, var(--token-f9e45599-fd40-48ec-aab5-41b4b1e1cd80, rgb(255, 255, 255)))\"},children:[\"Create your\",/*#__PURE__*/_jsx(motion.br,{}),\"proposal\u2014it's free\"]})}),className:\"framer-11k83bd\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"RWI6Pbpx_\",style:{\"--extracted-1lwpl3i\":\"var(--token-f9e45599-fd40-48ec-aab5-41b4b1e1cd80, rgb(255, 255, 255))\"},verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-bbmd8q\",layoutDependency:layoutDependency,layoutId:\"xD1Joifzw\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:57,y:(componentViewport?.y||0)+(0+((componentViewport?.height||71)-0-1e3)/2)+0+471.5,children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1irxtd4-container\",layoutDependency:layoutDependency,layoutId:\"X8q7CgEcX-container\",nodeId:\"X8q7CgEcX\",rendersWithMotion:true,scopeId:\"xUYKtLlNa\",children:/*#__PURE__*/_jsx(ButtonsPrimaryButtonTrackLeadEvent1irxtd4WithMappedReactProps8b5nzg,{ALqHfl2FI:\"rgb(0, 0, 0)\",DThcZ2dbv:\"Let's go\",EvBVi6gZB:\"https://app.powerdocs.so/signup\",height:\"100%\",id:\"X8q7CgEcX\",IrVDgirDQ:\"var(--token-f9e45599-fd40-48ec-aab5-41b4b1e1cd80, rgb(255, 255, 255))\",jvwT12xlX:\"var(--token-98ef2284-e59b-49b6-84b5-8559d133923a, rgb(161, 159, 159))\",layoutId:\"X8q7CgEcX\",width:\"100%\"})})})})]})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-Ztdbi.framer-1cfpi5m, .framer-Ztdbi .framer-1cfpi5m { display: block; }\",\".framer-Ztdbi.framer-kgxrxa { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 71px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 390px; will-change: var(--framer-will-change-override, transform); }\",\".framer-Ztdbi .framer-qpjai5 { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: calc(var(--framer-viewport-height, 100vh) * 1); justify-content: center; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-Ztdbi .framer-7vg39i { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: 100%; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-Ztdbi .framer-11k83bd { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-Ztdbi .framer-bbmd8q { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: 100%; justify-content: center; overflow: visible; padding: 0px 20px 0px 20px; position: relative; width: min-content; }\",\".framer-Ztdbi .framer-1irxtd4-container { flex: none; height: auto; position: relative; width: auto; }\",...sharedStyle.css];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 71\n * @framerIntrinsicWidth 390\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerAutoSizeImages true\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n */const FramerxUYKtLlNa=withCSS(Component,css,\"framer-Ztdbi\");export default FramerxUYKtLlNa;FramerxUYKtLlNa.displayName=\"CTA Bar\";FramerxUYKtLlNa.defaultProps={height:71,width:390};addFonts(FramerxUYKtLlNa,[{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\"}]},...ButtonsPrimaryButtonFonts,...getFontsFromSharedStyle(sharedStyle.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerxUYKtLlNa\",\"slots\":[],\"annotations\":{\"framerImmutableVariables\":\"true\",\"framerAutoSizeImages\":\"true\",\"framerIntrinsicWidth\":\"390\",\"framerDisplayContentsDiv\":\"false\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerIntrinsicHeight\":\"71\",\"framerContractVersion\":\"1\",\"framerColorSyntax\":\"true\",\"framerComponentViewportWidth\":\"true\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./xUYKtLlNa.map", "// Generated by Framer (2a0d5ab)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,ComponentViewportProvider,Container,cx,GeneratedComponentContext,getFonts,getFontsFromSharedStyle,getLoadingLazyAtYPosition,Image,PropertyOverrides,RichText,useComponentViewport,useCustomCursors,useHydratedBreakpointVariants,useIsOnFramerCanvas,useLocaleInfo,useRouteElementId,withCodeBoundaryForOverrides,withCSS,withFX,withMappedReactProps,withOptimizedAppearEffect}from\"framer\";import{LayoutGroup,motion}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import{Youtube as YouTube}from\"https://framerusercontent.com/modules/NEd4VmDdsxM3StIUbddO/1de6WpgIbCrKkRcPfQcW/YouTube.js\";import{Icon as Phosphor}from\"https://framerusercontent.com/modules/tYScH7LTqUtz5KUaUAYP/p8dptk4UIND8hbFWz9V7/Phosphor.js\";import CardsFeaturesCard from\"#framer/local/canvasComponent/AMAzF8NUx/AMAzF8NUx.js\";import PricingComponent from\"#framer/local/canvasComponent/dnPkheplk/dnPkheplk.js\";import Navbar from\"#framer/local/canvasComponent/GnHJ3EwqU/GnHJ3EwqU.js\";import HelperSectionHeader from\"#framer/local/canvasComponent/JYoWWwvWd/JYoWWwvWd.js\";import ButtonsPrimaryButton,*as ButtonsPrimaryButtonInfo from\"#framer/local/canvasComponent/MgIT3hfmM/MgIT3hfmM.js\";import FAQContainer from\"#framer/local/canvasComponent/n5mjjmxcd/n5mjjmxcd.js\";import ProcessFAQContainer2 from\"#framer/local/canvasComponent/RT2RcQg55/RT2RcQg55.js\";import HeroTicker from\"#framer/local/canvasComponent/uFFVz2_Nx/uFFVz2_Nx.js\";import CTABar from\"#framer/local/canvasComponent/xUYKtLlNa/xUYKtLlNa.js\";import Footer from\"#framer/local/canvasComponent/XYwj8bUK9/XYwj8bUK9.js\";import{trackLeadEvent}from\"#framer/local/codeFile/wLZgStV/LeadEventTracker.js\";import*as sharedStyle3 from\"#framer/local/css/axp3qiRpa/axp3qiRpa.js\";import*as sharedStyle5 from\"#framer/local/css/HpSEqHCri/HpSEqHCri.js\";import*as sharedStyle from\"#framer/local/css/hvr5rXD6E/hvr5rXD6E.js\";import*as sharedStyle2 from\"#framer/local/css/iNaWndAoT/iNaWndAoT.js\";import*as sharedStyle4 from\"#framer/local/css/JEtrUOgj1/JEtrUOgj1.js\";import*as sharedStyle1 from\"#framer/local/css/VxPaxhv1R/VxPaxhv1R.js\";import*as sharedStyle6 from\"#framer/local/css/WLC3eUxJe/WLC3eUxJe.js\";import metadataProvider from\"#framer/local/webPageMetadata/augiA20Il/augiA20Il.js\";const NavbarFonts=getFonts(Navbar);const CTABarFonts=getFonts(CTABar);const MotionDivWithFX=withFX(motion.div);const ImageWithFX=withFX(Image);const RichTextWithFX=withFX(RichText);const ButtonsPrimaryButtonFonts=getFonts(ButtonsPrimaryButton);const ButtonsPrimaryButtonTrackLeadEventuec2tcWithMappedReactProps8b5nzg=withMappedReactProps(withCodeBoundaryForOverrides(ButtonsPrimaryButton,{nodeId:\"HWGvgnfBq\",override:trackLeadEvent,scopeId:\"augiA20Il\"}),ButtonsPrimaryButtonInfo);const HeroTickerFonts=getFonts(HeroTicker);const YouTubeFonts=getFonts(YouTube);const MotionDivWithOptimizedAppearEffect=withOptimizedAppearEffect(motion.div);const PhosphorFonts=getFonts(Phosphor);const ProcessFAQContainer2Fonts=getFonts(ProcessFAQContainer2);const HelperSectionHeaderFonts=getFonts(HelperSectionHeader);const CardsFeaturesCardFonts=getFonts(CardsFeaturesCard);const PricingComponentFonts=getFonts(PricingComponent);const ButtonsPrimaryButtonTrackLeadEventqyrwsoWithMappedReactProps8b5nzg=withMappedReactProps(withCodeBoundaryForOverrides(ButtonsPrimaryButton,{nodeId:\"Oxus0c9GW\",override:trackLeadEvent,scopeId:\"augiA20Il\"}),ButtonsPrimaryButtonInfo);const FAQContainerFonts=getFonts(FAQContainer);const FooterFonts=getFonts(Footer);const breakpoints={Bas1J9Bgj:\"(min-width: 810px) and (max-width: 1319px)\",OU_xE9Dym:\"(max-width: 809px)\",WQLkyLRf1:\"(min-width: 1320px)\"};const isBrowser=()=>typeof document!==\"undefined\";const serializationHash=\"framer-uP40b\";const variantClassNames={Bas1J9Bgj:\"framer-v-lru0p9\",OU_xE9Dym:\"framer-v-7kk902\",WQLkyLRf1:\"framer-v-72rtr7\"};const animation={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:.95,skewX:0,skewY:0,x:0,y:20};const transition1={damping:30,delay:.1,mass:1,stiffness:150,type:\"spring\"};const animation1={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:.8,skewX:0,skewY:0,x:0,y:30};const transition2={damping:50,delay:.5,mass:1,stiffness:150,type:\"spring\"};const animation2={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0};const transition3={delay:.8,duration:.6,ease:[.5,0,.88,.77],type:\"tween\"};const animation3={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:.8,skewX:0,skewY:0,x:0,y:40};const transition4={damping:50,delay:.2,mass:1,stiffness:150,type:\"spring\"};const transition5={damping:50,delay:.3,mass:1,stiffness:150,type:\"spring\"};const transition6={damping:50,delay:.4,mass:1,stiffness:150,type:\"spring\"};const transformTemplate1=(_,t)=>`translateX(-50%) ${t}`;const transition7={damping:50,delay:.6,mass:1,stiffness:150,type:\"spring\"};const animation4={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition7,x:0,y:0};const animation5={opacity:.001,rotate:0,rotateX:0,rotateY:0,scale:.9,skewX:0,skewY:0,x:0,y:40};const HTMLStyle=({value})=>{const onCanvas=useIsOnFramerCanvas();if(onCanvas)return null;return /*#__PURE__*/_jsx(\"style\",{dangerouslySetInnerHTML:{__html:value},\"data-framer-html-style\":\"\"});};const humanReadableVariantMap={Desktop:\"WQLkyLRf1\",Phone:\"OU_xE9Dym\",Tablet:\"Bas1J9Bgj\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"WQLkyLRf1\"};};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const fallbackRef=useRef(null);const refBinding=ref??fallbackRef;const defaultLayoutId=React.useId();const{activeLocale,setLocale}=useLocaleInfo();const componentViewport=useComponentViewport();const{style,className,layoutId,variant,...restProps}=getProps(props);React.useEffect(()=>{const metadata=metadataProvider(undefined,activeLocale);if(metadata.robots){let robotsTag=document.querySelector('meta[name=\"robots\"]');if(robotsTag){robotsTag.setAttribute(\"content\",metadata.robots);}else{robotsTag=document.createElement(\"meta\");robotsTag.setAttribute(\"name\",\"robots\");robotsTag.setAttribute(\"content\",metadata.robots);document.head.appendChild(robotsTag);}}},[undefined,activeLocale]);React.useInsertionEffect(()=>{const metadata=metadataProvider(undefined,activeLocale);document.title=metadata.title||\"\";if(metadata.viewport){document.querySelector('meta[name=\"viewport\"]')?.setAttribute(\"content\",metadata.viewport);}},[undefined,activeLocale]);const[baseVariant,hydratedBaseVariant]=useHydratedBreakpointVariants(variant,breakpoints,false);const gestureVariant=undefined;const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className,sharedStyle2.className,sharedStyle3.className,sharedStyle4.className,sharedStyle5.className,sharedStyle6.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const isDisplayed=()=>{if(!isBrowser())return true;if(baseVariant===\"OU_xE9Dym\")return true;return false;};const elementId=useRouteElementId(\"kdT6XXSTf\");const ref1=React.useRef(null);const isDisplayed1=()=>{if(!isBrowser())return true;if(baseVariant===\"OU_xE9Dym\")return false;return true;};const elementId1=useRouteElementId(\"oLb82gX_m\");const ref2=React.useRef(null);const isDisplayed2=()=>{if(!isBrowser())return true;if([\"Bas1J9Bgj\",\"OU_xE9Dym\"].includes(baseVariant))return false;return true;};const elementId2=useRouteElementId(\"FE6oMxLeh\");const ref3=React.useRef(null);const elementId3=useRouteElementId(\"c5BM7GAcZ\");const ref4=React.useRef(null);const isDisplayed3=()=>{if(!isBrowser())return true;if(baseVariant===\"Bas1J9Bgj\")return false;return true;};const isDisplayed4=()=>{if(!isBrowser())return true;if(baseVariant===\"Bas1J9Bgj\")return true;return false;};const elementId4=useRouteElementId(\"bvPDP_VxJ\");const ref5=React.useRef(null);const elementId5=useRouteElementId(\"JlMaMstIa\");const ref6=React.useRef(null);const elementId6=useRouteElementId(\"umU4mn0gU\");const ref7=React.useRef(null);useCustomCursors({});return /*#__PURE__*/_jsx(GeneratedComponentContext.Provider,{value:{primaryVariantId:\"WQLkyLRf1\",variantClassNames},children:/*#__PURE__*/_jsxs(LayoutGroup,{id:layoutId??defaultLayoutId,children:[/*#__PURE__*/_jsx(HTMLStyle,{value:\"html body { background: var(--token-f9e45599-fd40-48ec-aab5-41b4b1e1cd80, rgb(255, 255, 255)); }\"}),/*#__PURE__*/_jsxs(motion.div,{...restProps,className:cx(scopingClassNames,\"framer-72rtr7\",className),ref:refBinding,style:{...style},children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:117,width:componentViewport?.width||\"100vw\",y:0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-m5lud7-container\",layoutScroll:true,nodeId:\"Hd1WHWV9U\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Bas1J9Bgj:{variant:\"NyMjW5JHf\"},OU_xE9Dym:{variant:\"H0GzXorq2\"}},children:/*#__PURE__*/_jsx(Navbar,{height:\"100%\",id:\"Hd1WHWV9U\",layoutId:\"Hd1WHWV9U\",style:{width:\"100%\"},variant:\"WwkyvtjId\",width:\"100%\"})})})}),isDisplayed()&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{OU_xE9Dym:{height:103,width:\"390px\",y:897}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-m2dcna-container hidden-72rtr7 hidden-lru0p9\",layoutScroll:true,nodeId:\"O59dA1FjE\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(CTABar,{height:\"100%\",id:\"O59dA1FjE\",layoutId:\"O59dA1FjE\",style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})}),/*#__PURE__*/_jsxs(\"main\",{className:\"framer-1ctn9r5\",\"data-framer-name\":\"Body\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1jlf3s4\",\"data-framer-name\":\"Top Sections\",children:[/*#__PURE__*/_jsx(\"section\",{className:\"framer-8d5z2f\",\"data-framer-name\":\"Hero\",id:elementId,ref:ref1,children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-pli3q7\",\"data-framer-name\":\"Container\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-jdn1zn\",\"data-framer-name\":\"Sub Container\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1qajplf\",\"data-framer-name\":\"Container\",children:[/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-pecz8h\",\"data-framer-name\":\"Container\",children:/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation1,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1b5p8ma\",\"data-border\":true,\"data-framer-name\":\"Sub Container\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Bas1J9Bgj:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+0+0+0+175+0+0+0+0+0+0+0+0+6),pixelHeight:24,pixelWidth:25,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/IMr6LHJrnxrNlwu88UNWxCvghkA.svg\"}},OU_xE9Dym:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+0+0+0+160+0+0+0+0+0+0+0+0+6),pixelHeight:24,pixelWidth:25,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/IMr6LHJrnxrNlwu88UNWxCvghkA.svg\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+0+0+0+180+0+0+0+0+0+0+0+0+6),pixelHeight:24,pixelWidth:25,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/IMr6LHJrnxrNlwu88UNWxCvghkA.svg\"},className:\"framer-1vh5e4l\",\"data-framer-name\":\"Icon\"})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-dvup99\",\"data-styles-preset\":\"hvr5rXD6E\",style:{\"--framer-text-color\":\"var(--token-fd9e8734-3b55-496a-bb4a-155ca7313ddd, rgb(61, 73, 91))\"},children:\"#1 AI proposals platform\"})}),className:\"framer-pl1a7f\",\"data-framer-name\":\"Text\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-rhlza0\",\"data-framer-name\":\"Text Container\",children:[isDisplayed1()&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Bas1J9Bgj:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+0+0+0+175+0+0+0+0+0+0+48+134),pixelHeight:12,pixelWidth:380,src:\"https://framerusercontent.com/images/NF8p4aZlPVgB3iD2M7iB4r2LakI.png\"}}},children:/*#__PURE__*/_jsx(ImageWithFX,{__framer__animate:{transition:transition3},__framer__animateOnce:true,__framer__enter:animation2,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+0+0+0+180+0+0+0+0+0+0+48+159),pixelHeight:12,pixelWidth:380,src:\"https://framerusercontent.com/images/NF8p4aZlPVgB3iD2M7iB4r2LakI.png\"},className:\"framer-1li826g hidden-7kk902\",\"data-framer-name\":\"Brushes\"})}),/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition4},__framer__animateOnce:true,__framer__enter:animation3,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{className:\"framer-styles-preset-183af4l\",\"data-styles-preset\":\"VxPaxhv1R\",children:\"Create, share, and track proposals effortlessly\"})}),className:\"framer-167cll9\",\"data-framer-name\":\"Heading\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition5},__framer__animateOnce:true,__framer__enter:animation3,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1r4syup\",\"data-framer-name\":\"Paragraph Container\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-16upl8m\",\"data-styles-preset\":\"iNaWndAoT\",style:{\"--framer-text-alignment\":\"center\"},children:\"Get blazing-fast proposals built for designers, developers, and agencies\u2014no more tedious drafting, no legal nightmares, no scope creep.\"})}),className:\"framer-1qb30mz\",\"data-framer-name\":\"Paragraph\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-jirxrg\",\"data-framer-name\":\"Container\",children:[/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition6},__framer__animateOnce:true,__framer__enter:animation1,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-lcjfoh\",\"data-framer-name\":\"Container\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Bas1J9Bgj:{y:(componentViewport?.y||0)+0+0+0+0+0+0+175+0+0+0+0+328.6+0+0+0},OU_xE9Dym:{y:(componentViewport?.y||0)+0+0+0+0+0+0+160+0+0+0+0+314.6+0+0+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:57,y:(componentViewport?.y||0)+0+0+0+0+0+0+180+0+0+0+0+328.6+0+0+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-uec2tc-container\",nodeId:\"HWGvgnfBq\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(ButtonsPrimaryButtonTrackLeadEventuec2tcWithMappedReactProps8b5nzg,{ALqHfl2FI:\"var(--token-f9e45599-fd40-48ec-aab5-41b4b1e1cd80, rgb(255, 255, 255))\",DThcZ2dbv:\"Automate your proposal game\",EvBVi6gZB:\"https://app.powerdocs.so/signup\",height:\"100%\",id:\"HWGvgnfBq\",IrVDgirDQ:\"var(--token-e4fdc027-410b-4747-8d19-b7d6252d4400, rgb(28, 28, 28))\",jvwT12xlX:\"var(--token-09920af5-e3bc-4f2c-8ef0-faf72c25158d, rgb(51, 51, 51))\",layoutId:\"HWGvgnfBq\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Bas1J9Bgj:{y:(componentViewport?.y||0)+0+0+0+0+0+0+175+0+0+0+0+328.6+0+0+0},OU_xE9Dym:{y:(componentViewport?.y||0)+0+0+0+0+0+0+160+0+0+0+0+314.6+0+0+0+67}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:57,y:(componentViewport?.y||0)+0+0+0+0+0+0+180+0+0+0+0+328.6+0+0+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1g7v228-container\",nodeId:\"ET21s4VPw\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(ButtonsPrimaryButton,{ALqHfl2FI:\"rgb(255, 255, 255)\",DThcZ2dbv:\"Get a demo\",EvBVi6gZB:\"https://powerdocs.so/demo\",height:\"100%\",id:\"ET21s4VPw\",IrVDgirDQ:\"rgb(0, 0, 0)\",jvwT12xlX:\"var(--token-09920af5-e3bc-4f2c-8ef0-faf72c25158d, rgb(51, 51, 51))\",layoutId:\"ET21s4VPw\",width:\"100%\"})})})})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Bas1J9Bgj:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:266,intrinsicWidth:716,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+0+0+0+175+0+0+0+0+328.6+0+87),pixelHeight:532,pixelWidth:1432,sizes:\"164px\",src:\"https://framerusercontent.com/images/A0GtmHbqtMJPuPWlPw4x3fwcPWA.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/A0GtmHbqtMJPuPWlPw4x3fwcPWA.png?scale-down-to=512 512w,https://framerusercontent.com/images/A0GtmHbqtMJPuPWlPw4x3fwcPWA.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/A0GtmHbqtMJPuPWlPw4x3fwcPWA.png 1432w\"}},OU_xE9Dym:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:266,intrinsicWidth:716,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+0+0+0+160+0+0+0+0+314.6+0+148),pixelHeight:532,pixelWidth:1432,sizes:\"164px\",src:\"https://framerusercontent.com/images/A0GtmHbqtMJPuPWlPw4x3fwcPWA.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/A0GtmHbqtMJPuPWlPw4x3fwcPWA.png?scale-down-to=512 512w,https://framerusercontent.com/images/A0GtmHbqtMJPuPWlPw4x3fwcPWA.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/A0GtmHbqtMJPuPWlPw4x3fwcPWA.png 1432w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:266,intrinsicWidth:716,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+0+0+0+180+0+0+0+0+328.6+0+87),pixelHeight:532,pixelWidth:1432,sizes:\"164px\",src:\"https://framerusercontent.com/images/A0GtmHbqtMJPuPWlPw4x3fwcPWA.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/A0GtmHbqtMJPuPWlPw4x3fwcPWA.png?scale-down-to=512 512w,https://framerusercontent.com/images/A0GtmHbqtMJPuPWlPw4x3fwcPWA.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/A0GtmHbqtMJPuPWlPw4x3fwcPWA.png 1432w\"},className:\"framer-zjr6d7\",\"data-framer-name\":\"Backed by Y Combinator\"})})]})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1spyqun\",\"data-framer-name\":\"Client logos\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Bas1J9Bgj:{width:`min(min(min(${componentViewport?.width||\"100vw\"}, 800px) - 60px, 800px), 1200px)`,y:(componentViewport?.y||0)+0+0+0+0+0+0+175+0+0+543.6+0+0},OU_xE9Dym:{width:`min(min(${componentViewport?.width||\"100vw\"}, 450px) - 32px, 450px)`,y:(componentViewport?.y||0)+0+0+0+0+0+0+160+0+0+590.6+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:99,width:`min(min(min(${componentViewport?.width||\"100vw\"} * 0.88, 1200px), 1360px), 1200px)`,y:(componentViewport?.y||0)+0+0+0+0+0+0+180+0+0+543.6+0+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-zlondu-container\",nodeId:\"tmLT52PIH\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{OU_xE9Dym:{ctG_fDQi4:24}},children:/*#__PURE__*/_jsx(HeroTicker,{ctG_fDQi4:30,height:\"100%\",id:\"tmLT52PIH\",layoutId:\"tmLT52PIH\",style:{width:\"100%\"},width:\"100%\"})})})})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-ts6pz6\",\"data-framer-name\":\"Sub Container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Bas1J9Bgj:{background:{alt:\"Background\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+0+0+0+175+0+0+709.6+180+0),pixelHeight:604,pixelWidth:1364,positionX:\"center\",positionY:\"top\",sizes:`min(min(${componentViewport?.width||\"100vw\"}, 800px) - 60px, 800px)`,src:\"https://framerusercontent.com/images/6MVK4w2oq1OEVNC2BLDT4xOFw.svg\",srcSet:\"https://framerusercontent.com/images/6MVK4w2oq1OEVNC2BLDT4xOFw.svg?scale-down-to=512 512w,https://framerusercontent.com/images/6MVK4w2oq1OEVNC2BLDT4xOFw.svg?scale-down-to=1024 1024w,https://framerusercontent.com/images/6MVK4w2oq1OEVNC2BLDT4xOFw.svg 1364w\"}},OU_xE9Dym:{background:{alt:\"Background\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+0+0+0+160+0+0+756.6+80+0),pixelHeight:604,pixelWidth:1364,positionX:\"center\",positionY:\"top\",sizes:`min(min(${componentViewport?.width||\"100vw\"}, 450px) - 32px, 450px)`,src:\"https://framerusercontent.com/images/6MVK4w2oq1OEVNC2BLDT4xOFw.svg\",srcSet:\"https://framerusercontent.com/images/6MVK4w2oq1OEVNC2BLDT4xOFw.svg?scale-down-to=512 512w,https://framerusercontent.com/images/6MVK4w2oq1OEVNC2BLDT4xOFw.svg?scale-down-to=1024 1024w,https://framerusercontent.com/images/6MVK4w2oq1OEVNC2BLDT4xOFw.svg 1364w\"}}},children:/*#__PURE__*/_jsxs(Image,{background:{alt:\"Background\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+0+0+0+180+0+0+709.6+436+0),pixelHeight:604,pixelWidth:1364,positionX:\"center\",positionY:\"top\",sizes:`min(min(${componentViewport?.width||\"100vw\"} * 0.88, 1200px), 1360px)`,src:\"https://framerusercontent.com/images/6MVK4w2oq1OEVNC2BLDT4xOFw.svg\",srcSet:\"https://framerusercontent.com/images/6MVK4w2oq1OEVNC2BLDT4xOFw.svg?scale-down-to=512 512w,https://framerusercontent.com/images/6MVK4w2oq1OEVNC2BLDT4xOFw.svg?scale-down-to=1024 1024w,https://framerusercontent.com/images/6MVK4w2oq1OEVNC2BLDT4xOFw.svg 1364w\"},className:\"framer-8be4u2\",\"data-framer-name\":\"Container\",children:[/*#__PURE__*/_jsx(MotionDivWithOptimizedAppearEffect,{animate:animation4,className:\"framer-rujy02\",\"data-framer-appear-id\":\"rujy02\",\"data-framer-name\":\"Ui Container\",initial:animation5,optimized:true,transformTemplate:transformTemplate1,children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1bst6uh-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"IWReG7lXx\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(YouTube,{borderRadius:0,bottomLeftRadius:0,bottomRightRadius:0,height:\"100%\",id:\"IWReG7lXx\",isMixedBorderRadius:false,isRed:true,layoutId:\"IWReG7lXx\",play:\"Off\",shouldMute:true,style:{height:\"100%\",width:\"100%\"},thumbnail:\"Medium Quality\",topLeftRadius:0,topRightRadius:0,url:\"https://youtu.be/njUzBJwCrRM\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Bas1J9Bgj:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+0+0+0+175+0+0+709.6+180+0+10),pixelHeight:236,pixelWidth:1344,sizes:`calc(min(min(${componentViewport?.width||\"100vw\"}, 800px) - 60px, 800px) - 20px)`,src:\"https://framerusercontent.com/images/RSB3RaVzZzLl89FgKNNA9ZPblY.svg\",srcSet:\"https://framerusercontent.com/images/RSB3RaVzZzLl89FgKNNA9ZPblY.svg?scale-down-to=512 512w,https://framerusercontent.com/images/RSB3RaVzZzLl89FgKNNA9ZPblY.svg?scale-down-to=1024 1024w,https://framerusercontent.com/images/RSB3RaVzZzLl89FgKNNA9ZPblY.svg 1344w\"}},OU_xE9Dym:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+0+0+0+160+0+0+756.6+80+0+10),pixelHeight:236,pixelWidth:1344,sizes:`calc(min(min(${componentViewport?.width||\"100vw\"}, 450px) - 32px, 450px) - 20px)`,src:\"https://framerusercontent.com/images/RSB3RaVzZzLl89FgKNNA9ZPblY.svg\",srcSet:\"https://framerusercontent.com/images/RSB3RaVzZzLl89FgKNNA9ZPblY.svg?scale-down-to=512 512w,https://framerusercontent.com/images/RSB3RaVzZzLl89FgKNNA9ZPblY.svg?scale-down-to=1024 1024w,https://framerusercontent.com/images/RSB3RaVzZzLl89FgKNNA9ZPblY.svg 1344w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+0+0+0+180+0+0+709.6+436+0+10),pixelHeight:236,pixelWidth:1344,sizes:`calc(min(min(${componentViewport?.width||\"100vw\"} * 0.88, 1200px), 1360px) - 20px)`,src:\"https://framerusercontent.com/images/RSB3RaVzZzLl89FgKNNA9ZPblY.svg\",srcSet:\"https://framerusercontent.com/images/RSB3RaVzZzLl89FgKNNA9ZPblY.svg?scale-down-to=512 512w,https://framerusercontent.com/images/RSB3RaVzZzLl89FgKNNA9ZPblY.svg?scale-down-to=1024 1024w,https://framerusercontent.com/images/RSB3RaVzZzLl89FgKNNA9ZPblY.svg 1344w\"},className:\"framer-1vaeb67\",\"data-framer-name\":\"Shape\"})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-p6inl1\",\"data-framer-name\":\"Sub Container\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Bas1J9Bgj:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+0+0+0+175+0+0+709.6+180+0+236+0+61.75),pixelHeight:24,pixelWidth:25,src:\"https://framerusercontent.com/images/gJmClwmVIPZAuSVHIZ7k95jx04.svg\"}},OU_xE9Dym:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+0+0+0+160+0+0+756.6+80+0+120+0+16+0),pixelHeight:24,pixelWidth:25,src:\"https://framerusercontent.com/images/gJmClwmVIPZAuSVHIZ7k95jx04.svg\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+0+0+0+180+0+0+709.6+436+0+200+0+10.75),pixelHeight:24,pixelWidth:25,src:\"https://framerusercontent.com/images/gJmClwmVIPZAuSVHIZ7k95jx04.svg\"},className:\"framer-7bgym\",\"data-framer-name\":\"Icon\"})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Bas1J9Bgj:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-qujlfr\",\"data-styles-preset\":\"axp3qiRpa\",style:{\"--framer-text-alignment\":\"left\"},children:\"Effortlessly grow your business with AI-fueled proposals and lightning speed.\"})})},OU_xE9Dym:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-qujlfr\",\"data-styles-preset\":\"axp3qiRpa\",style:{\"--framer-text-alignment\":\"left\"},children:\"Effortlessly grow your business with AI-fueled proposals and lightning speed.\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-qujlfr\",\"data-styles-preset\":\"axp3qiRpa\",children:\"Effortlessly grow your business with AI-fueled proposals and lightning speed.\"})}),className:\"framer-1fkgtj5\",\"data-framer-name\":\"Text\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]})]})})})]})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1di5yod\",\"data-framer-name\":\"Process\",id:elementId1,ref:ref2,children:[isDisplayed2()&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-cvbjjx hidden-lru0p9 hidden-7kk902\",\"data-framer-name\":\"Sub Container\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+0+0+1790.1+236.8+0),pixelHeight:2048,pixelWidth:2048,sizes:`max((min(${componentViewport?.width||\"100vw\"} * 0.88, 1200px) - 60px) / 2, 1px)`,src:\"https://framerusercontent.com/images/H5b3GmABjQmdgFOQgbTgJvmeRQ.jpg\",srcSet:\"https://framerusercontent.com/images/H5b3GmABjQmdgFOQgbTgJvmeRQ.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/H5b3GmABjQmdgFOQgbTgJvmeRQ.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/H5b3GmABjQmdgFOQgbTgJvmeRQ.jpg 2048w\"},className:\"framer-ctzs1e\",\"data-framer-name\":\"Image\"})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-ah7slq\",\"data-framer-name\":\"Sub Container\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-149wspr\",\"data-framer-name\":\"Container\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1bos8z6\",\"data-border\":true,\"data-framer-name\":\"Container\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-3rufqx-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"b5wRlCcoX\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"var(--token-e4fdc027-410b-4747-8d19-b7d6252d4400, rgb(28, 28, 28))\",height:\"100%\",iconSearch:\"House\",iconSelection:\"Timer\",id:\"b5wRlCcoX\",layoutId:\"b5wRlCcoX\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"regular\",width:\"100%\"})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-16upl8m\",\"data-styles-preset\":\"iNaWndAoT\",style:{\"--framer-text-color\":\"var(--token-e4fdc027-410b-4747-8d19-b7d6252d4400, rgb(28, 28, 28))\"},children:\"Don't waste time\"})}),className:\"framer-1f6ziac\",\"data-framer-name\":\"Text\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Bas1J9Bgj:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"R0Y7QnJpY29sYWdlIEdyb3Rlc3F1ZS03MDA=\",\"--framer-font-family\":'\"Bricolage Grotesque\", \"Bricolage Grotesque Placeholder\", sans-serif',\"--framer-font-size\":\"58px\",\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"120%\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-ba518e49-fd81-4146-90b5-735c8c21a788, rgb(12, 12, 12))\"},children:\"Stop letting your proposals slow you down\"})})},OU_xE9Dym:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"R0Y7QnJpY29sYWdlIEdyb3Rlc3F1ZS03MDA=\",\"--framer-font-family\":'\"Bricolage Grotesque\", \"Bricolage Grotesque Placeholder\", sans-serif',\"--framer-font-size\":\"34px\",\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"120%\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-ba518e49-fd81-4146-90b5-735c8c21a788, rgb(12, 12, 12))\"},children:\"Stop letting your proposals slow you down\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"R0Y7QnJpY29sYWdlIEdyb3Rlc3F1ZS03MDA=\",\"--framer-font-family\":'\"Bricolage Grotesque\", \"Bricolage Grotesque Placeholder\", sans-serif',\"--framer-font-size\":\"68px\",\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"120%\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-ba518e49-fd81-4146-90b5-735c8c21a788, rgb(12, 12, 12))\"},children:\"Stop letting your proposals slow you down\"})}),className:\"framer-1d9iks3\",\"data-framer-name\":\"Heading\",fonts:[\"GF;Bricolage Grotesque-700\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Bas1J9Bgj:{width:`min(min(${componentViewport?.width||\"100vw\"}, 800px) - 60px, 570px)`,y:(componentViewport?.y||0)+0+0+0+0+0+1648.1+0+0+0+172.6},OU_xE9Dym:{width:`calc(min(${componentViewport?.width||\"100vw\"}, 450px) - 32px)`,y:(componentViewport?.y||0)+0+0+0+0+0+1432.1+0+0+0+133.8}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:289,width:`max((min(${componentViewport?.width||\"100vw\"} * 0.88, 1200px) - 60px) / 2, 1px)`,y:(componentViewport?.y||0)+0+0+0+0+0+1790.1+0+0+184.6,children:/*#__PURE__*/_jsx(Container,{className:\"framer-adnzmz-container\",nodeId:\"LnDiYpCyS\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(ProcessFAQContainer2,{height:\"100%\",id:\"LnDiYpCyS\",layoutId:\"LnDiYpCyS\",style:{width:\"100%\"},variant:\"yToFTnL_9\",width:\"100%\"})})})})]})]}),/*#__PURE__*/_jsxs(\"section\",{className:\"framer-1x8sba1\",\"data-framer-name\":\"Solution\",id:elementId2,ref:ref3,children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Bas1J9Bgj:{width:`calc(min(${componentViewport?.width||\"100vw\"}, 800px) - 60px)`,y:(componentViewport?.y||0)+0+0+0+0+0+2259.7+0+0},OU_xE9Dym:{width:`calc(min(${componentViewport?.width||\"100vw\"}, 450px) - 32px)`,y:(componentViewport?.y||0)+0+0+0+0+0+1934.9+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:202,width:`min(${componentViewport?.width||\"100vw\"} * 0.88, 1200px)`,y:(componentViewport?.y||0)+0+0+0+0+0+2402.7+0+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-oc1xgd-container\",nodeId:\"l47nGKz80\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Bas1J9Bgj:{variant:\"zrEK8IOIb\"},OU_xE9Dym:{variant:\"JCud3KTgy\"}},children:/*#__PURE__*/_jsx(HelperSectionHeader,{height:\"100%\",id:\"l47nGKz80\",jfwOkHVse:\"Lightning\",layoutId:\"l47nGKz80\",Ns9Tp9KAe:true,style:{width:\"100%\"},uosFAel17:\"Get more done\",variant:\"ekbfTPVRx\",VGUVLjDGC:\"Close more deals, skip the busywork\",width:\"100%\",ZizefppcZ:\"Powerdocs gets you from a blank page to a polished proposal in seconds. Let our AI do the heavy lifting while you focus on what you do best.\"})})})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1qp2nvh\",\"data-framer-name\":\"Sub Container\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Bas1J9Bgj:{width:`max((min(${componentViewport?.width||\"100vw\"}, 800px) - 80px) / 2, 50px)`,y:(componentViewport?.y||0)+0+0+0+0+0+2259.7+0+262+0+0},OU_xE9Dym:{width:`min(min(${componentViewport?.width||\"100vw\"}, 450px) - 32px, 318px)`,y:(componentViewport?.y||0)+0+0+0+0+0+1934.9+0+242+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:231,width:`max((min(${componentViewport?.width||\"100vw\"} * 0.88, 1200px) - 40px) / 3, 50px)`,y:(componentViewport?.y||0)+0+0+0+0+0+2402.7+0+262+0+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-3es0va-container\",nodeId:\"nrrUb8e_Z\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(CardsFeaturesCard,{CQNbR4UaJ:\"Instant proposals\",height:\"100%\",id:\"nrrUb8e_Z\",layoutId:\"nrrUb8e_Z\",style:{width:\"100%\"},SXwloxtpB:\"RocketLaunch\",width:\"100%\",yr4axvj5s:\"Cut hours of drafting by tapping into thousands of proven templates at once.\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Bas1J9Bgj:{width:`max((min(${componentViewport?.width||\"100vw\"}, 800px) - 80px) / 2, 50px)`,y:(componentViewport?.y||0)+0+0+0+0+0+2259.7+0+262+0+0},OU_xE9Dym:{width:`min(min(${componentViewport?.width||\"100vw\"}, 450px) - 32px, 318px)`,y:(componentViewport?.y||0)+0+0+0+0+0+1934.9+0+242+0+251}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:231,width:`max((min(${componentViewport?.width||\"100vw\"} * 0.88, 1200px) - 40px) / 3, 50px)`,y:(componentViewport?.y||0)+0+0+0+0+0+2402.7+0+262+0+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-11rk2b2-container\",nodeId:\"s6BaoKPnj\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(CardsFeaturesCard,{CQNbR4UaJ:\"Legally rock-solid\",height:\"100%\",id:\"s6BaoKPnj\",layoutId:\"s6BaoKPnj\",style:{width:\"100%\"},SXwloxtpB:\"Handshake\",width:\"100%\",yr4axvj5s:\"Stay protected from liability pitfalls and scope creep with AI-fortified contracts.\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Bas1J9Bgj:{width:`max((min(${componentViewport?.width||\"100vw\"}, 800px) - 80px) / 2, 50px)`,y:(componentViewport?.y||0)+0+0+0+0+0+2259.7+0+262+0+251},OU_xE9Dym:{width:`min(min(${componentViewport?.width||\"100vw\"}, 450px) - 32px, 318px)`,y:(componentViewport?.y||0)+0+0+0+0+0+1934.9+0+242+0+502}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:231,width:`max((min(${componentViewport?.width||\"100vw\"} * 0.88, 1200px) - 40px) / 3, 50px)`,y:(componentViewport?.y||0)+0+0+0+0+0+2402.7+0+262+0+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-6jazev-container\",nodeId:\"P2iJuiR6S\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(CardsFeaturesCard,{CQNbR4UaJ:\"Seamless tracking\",height:\"100%\",id:\"P2iJuiR6S\",layoutId:\"P2iJuiR6S\",style:{width:\"100%\"},SXwloxtpB:\"Checks\",width:\"100%\",yr4axvj5s:\"Know exactly when clients open, view, and sign\u2014no more guessing games.\"})})})})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-gw6m5j\",\"data-framer-name\":\"Features\",id:elementId3,ref:ref4,children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Bas1J9Bgj:{width:`calc(min(${componentViewport?.width||\"100vw\"}, 800px) - 60px)`,y:(componentViewport?.y||0)+0+0+0+0+0+3153.7+0+0},OU_xE9Dym:{width:`calc(min(${componentViewport?.width||\"100vw\"}, 450px) - 32px)`,y:(componentViewport?.y||0)+0+0+0+0+0+2989.9+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:202,width:`min(${componentViewport?.width||\"100vw\"} * 0.88, 1200px)`,y:(componentViewport?.y||0)+0+0+0+0+0+3034.7+0+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-bdy9nk-container\",nodeId:\"R8etDrjqD\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Bas1J9Bgj:{variant:\"zrEK8IOIb\"},OU_xE9Dym:{variant:\"JCud3KTgy\"}},children:/*#__PURE__*/_jsx(HelperSectionHeader,{height:\"100%\",id:\"R8etDrjqD\",jfwOkHVse:\"Sparkle\",layoutId:\"R8etDrjqD\",Ns9Tp9KAe:true,style:{width:\"100%\"},uosFAel17:\"AI-fueled\",variant:\"ekbfTPVRx\",VGUVLjDGC:\"Power up your proposal game\",width:\"100%\",ZizefppcZ:\"All the must-have features to help you close faster and worry less.\"})})})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-6m08m6\",\"data-framer-name\":\"Container\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1yx039f\",\"data-framer-name\":\"Card Container\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-b77iz1\",\"data-border\":true,\"data-framer-name\":\"Card\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-cl24vt\",\"data-framer-name\":\"Container\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Bas1J9Bgj:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+0+0+3153.7+0+262+0+0+0+0+0+0),pixelHeight:256,pixelWidth:385,src:\"https://framerusercontent.com/images/uib9ps4S43U6J4hzZTV29Z5EULA.svg\"}},OU_xE9Dym:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+0+0+2989.9+0+262+0+0+0+0+0+0+0),pixelHeight:256,pixelWidth:385,src:\"https://framerusercontent.com/images/uib9ps4S43U6J4hzZTV29Z5EULA.svg\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+0+0+3034.7+0+282+0+0+0+0+0+0),pixelHeight:256,pixelWidth:385,src:\"https://framerusercontent.com/images/uib9ps4S43U6J4hzZTV29Z5EULA.svg\"},className:\"framer-66djpf\",\"data-framer-name\":\"BG\"})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Bas1J9Bgj:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+0+0+3153.7+0+262+0+0+0+0+0+4.5),pixelHeight:868,pixelWidth:1304,sizes:\"370px\",src:\"https://framerusercontent.com/images/oWsQ3o6Ud8RssVgkPHnKF1rK80.png\",srcSet:\"https://framerusercontent.com/images/oWsQ3o6Ud8RssVgkPHnKF1rK80.png?scale-down-to=512 512w,https://framerusercontent.com/images/oWsQ3o6Ud8RssVgkPHnKF1rK80.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/oWsQ3o6Ud8RssVgkPHnKF1rK80.png 1304w\"}},OU_xE9Dym:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+0+0+2989.9+0+262+0+0+0+0+0+0+4.5),pixelHeight:868,pixelWidth:1304,sizes:\"370px\",src:\"https://framerusercontent.com/images/oWsQ3o6Ud8RssVgkPHnKF1rK80.png\",srcSet:\"https://framerusercontent.com/images/oWsQ3o6Ud8RssVgkPHnKF1rK80.png?scale-down-to=512 512w,https://framerusercontent.com/images/oWsQ3o6Ud8RssVgkPHnKF1rK80.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/oWsQ3o6Ud8RssVgkPHnKF1rK80.png 1304w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+0+0+3034.7+0+282+0+0+0+0+0+4.5),pixelHeight:868,pixelWidth:1304,sizes:\"370px\",src:\"https://framerusercontent.com/images/oWsQ3o6Ud8RssVgkPHnKF1rK80.png\",srcSet:\"https://framerusercontent.com/images/oWsQ3o6Ud8RssVgkPHnKF1rK80.png?scale-down-to=512 512w,https://framerusercontent.com/images/oWsQ3o6Ud8RssVgkPHnKF1rK80.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/oWsQ3o6Ud8RssVgkPHnKF1rK80.png 1304w\"},className:\"framer-1s41cto\",\"data-framer-name\":\"Image\"})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-18bw4zx\",\"data-framer-name\":\"Text Container\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Bas1J9Bgj:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+0+0+3153.7+0+262+0+0+0+0+257+-46),pixelHeight:46,pixelWidth:33,src:\"https://framerusercontent.com/images/WspPVNQXQwNE7FEvMzKcqp8RcU.svg\"}},OU_xE9Dym:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+0+0+2989.9+0+262+0+0+0+0+0+257+-46),pixelHeight:46,pixelWidth:33,src:\"https://framerusercontent.com/images/WspPVNQXQwNE7FEvMzKcqp8RcU.svg\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+0+0+3034.7+0+282+0+0+0+0+257+-46),pixelHeight:46,pixelWidth:33,src:\"https://framerusercontent.com/images/WspPVNQXQwNE7FEvMzKcqp8RcU.svg\"},className:\"framer-1g33phj\",\"data-framer-name\":\"Shape\"})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Bas1J9Bgj:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+0+0+3153.7+0+262+0+0+0+0+257+-46),pixelHeight:46,pixelWidth:32,src:\"https://framerusercontent.com/images/w7p2OGpBX6wtIQOZpL5Ytn8y4nw.svg\"}},OU_xE9Dym:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+0+0+2989.9+0+262+0+0+0+0+0+257+-46),pixelHeight:46,pixelWidth:32,src:\"https://framerusercontent.com/images/w7p2OGpBX6wtIQOZpL5Ytn8y4nw.svg\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+0+0+3034.7+0+282+0+0+0+0+257+-46),pixelHeight:46,pixelWidth:32,src:\"https://framerusercontent.com/images/w7p2OGpBX6wtIQOZpL5Ytn8y4nw.svg\"},className:\"framer-1c4ffhu\",\"data-framer-name\":\"Shape\"})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-17msl27\",\"data-styles-preset\":\"JEtrUOgj1\",style:{\"--framer-text-alignment\":\"left\"},children:\"Bulk Proposal Generation\"})}),className:\"framer-17ixf09\",\"data-framer-name\":\"Heading\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-16upl8m\",\"data-styles-preset\":\"iNaWndAoT\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-f5be0458-7744-4467-9ed4-43d7618ea1c4, rgb(82, 98, 121))\"},children:\"Upload a project description or use our simple Chrome extension to spin up tailored, professional proposals with one click\u2014anywhere you find work, from Upwork to public tenders.\"})}),className:\"framer-zwghra\",\"data-framer-name\":\"Paragraph\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-48vvxt\",\"data-border\":true,\"data-framer-name\":\"Card\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-hoibac\",\"data-framer-name\":\"Container\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Bas1J9Bgj:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+0+0+3153.7+0+262+0+0+0+0+0+0),pixelHeight:256,pixelWidth:385,src:\"https://framerusercontent.com/images/uib9ps4S43U6J4hzZTV29Z5EULA.svg\"}},OU_xE9Dym:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+0+0+2989.9+0+262+0+0+0+503+0+0+0),pixelHeight:256,pixelWidth:385,src:\"https://framerusercontent.com/images/uib9ps4S43U6J4hzZTV29Z5EULA.svg\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+0+0+3034.7+0+282+0+0+0+0+0+0),pixelHeight:256,pixelWidth:385,src:\"https://framerusercontent.com/images/uib9ps4S43U6J4hzZTV29Z5EULA.svg\"},className:\"framer-3w7zlr\",\"data-framer-name\":\"BG\"})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Bas1J9Bgj:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+0+0+3153.7+0+262+0+0+0+0+0+0),pixelHeight:868,pixelWidth:1304,sizes:`max((min(${componentViewport?.width||\"100vw\"}, 800px) - 84px) / 2, 1px)`,src:\"https://framerusercontent.com/images/QgUH9LDrSpzbYfY1JaQqJUp5CE.png\",srcSet:\"https://framerusercontent.com/images/QgUH9LDrSpzbYfY1JaQqJUp5CE.png?scale-down-to=512 512w,https://framerusercontent.com/images/QgUH9LDrSpzbYfY1JaQqJUp5CE.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/QgUH9LDrSpzbYfY1JaQqJUp5CE.png 1304w\"}},OU_xE9Dym:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+0+0+2989.9+0+262+0+0+0+503+0+0+0),pixelHeight:868,pixelWidth:1304,sizes:`max(min(${componentViewport?.width||\"100vw\"}, 450px) - 32px, 1px)`,src:\"https://framerusercontent.com/images/QgUH9LDrSpzbYfY1JaQqJUp5CE.png\",srcSet:\"https://framerusercontent.com/images/QgUH9LDrSpzbYfY1JaQqJUp5CE.png?scale-down-to=512 512w,https://framerusercontent.com/images/QgUH9LDrSpzbYfY1JaQqJUp5CE.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/QgUH9LDrSpzbYfY1JaQqJUp5CE.png 1304w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+0+0+3034.7+0+282+0+0+0+0+0+0),pixelHeight:868,pixelWidth:1304,sizes:`max((min(${componentViewport?.width||\"100vw\"} * 0.88, 1200px) - 48px) / 3, 1px)`,src:\"https://framerusercontent.com/images/QgUH9LDrSpzbYfY1JaQqJUp5CE.png\",srcSet:\"https://framerusercontent.com/images/QgUH9LDrSpzbYfY1JaQqJUp5CE.png?scale-down-to=512 512w,https://framerusercontent.com/images/QgUH9LDrSpzbYfY1JaQqJUp5CE.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/QgUH9LDrSpzbYfY1JaQqJUp5CE.png 1304w\"},className:\"framer-1y8n4ud\",\"data-framer-name\":\"Image\"})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-no2lw9\",\"data-framer-name\":\"Text Container\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Bas1J9Bgj:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+0+0+3153.7+0+262+0+0+0+0+253+-46),pixelHeight:46,pixelWidth:33,src:\"https://framerusercontent.com/images/WspPVNQXQwNE7FEvMzKcqp8RcU.svg\"}},OU_xE9Dym:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+0+0+2989.9+0+262+0+0+0+503+0+257+-46),pixelHeight:46,pixelWidth:33,src:\"https://framerusercontent.com/images/WspPVNQXQwNE7FEvMzKcqp8RcU.svg\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+0+0+3034.7+0+282+0+0+0+0+248+-46),pixelHeight:46,pixelWidth:33,src:\"https://framerusercontent.com/images/WspPVNQXQwNE7FEvMzKcqp8RcU.svg\"},className:\"framer-1fex1gl\",\"data-framer-name\":\"Shape\"})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Bas1J9Bgj:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+0+0+3153.7+0+262+0+0+0+0+253+-46),pixelHeight:46,pixelWidth:32,src:\"https://framerusercontent.com/images/w7p2OGpBX6wtIQOZpL5Ytn8y4nw.svg\"}},OU_xE9Dym:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+0+0+2989.9+0+262+0+0+0+503+0+257+-46),pixelHeight:46,pixelWidth:32,src:\"https://framerusercontent.com/images/w7p2OGpBX6wtIQOZpL5Ytn8y4nw.svg\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+0+0+3034.7+0+282+0+0+0+0+248+-46),pixelHeight:46,pixelWidth:32,src:\"https://framerusercontent.com/images/w7p2OGpBX6wtIQOZpL5Ytn8y4nw.svg\"},className:\"framer-p79518\",\"data-framer-name\":\"Shape\"})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-17msl27\",\"data-styles-preset\":\"JEtrUOgj1\",style:{\"--framer-text-alignment\":\"left\"},children:/*#__PURE__*/_jsx(\"strong\",{children:\"Customizable Templates\"})})}),className:\"framer-1j1zi8g\",\"data-framer-name\":\"Heading\",fonts:[\"Inter\",\"Inter-Bold\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-16upl8m\",\"data-styles-preset\":\"iNaWndAoT\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-f5be0458-7744-4467-9ed4-43d7618ea1c4, rgb(82, 98, 121))\"},children:\"Personalize every proposal with your own style, instructions, and branding\u2014let your unique identity shine through and stand out from the competition, no matter what projects you\u2019re pitching.\"})}),className:\"framer-1ddf81w\",\"data-framer-name\":\"Paragraph\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})]}),isDisplayed3()&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-av3sg6 hidden-lru0p9\",\"data-border\":true,\"data-framer-name\":\"Card\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1ny9orv\",\"data-framer-name\":\"Container\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{OU_xE9Dym:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+0+0+2989.9+0+262+0+0+0+1006+0+0+0),pixelHeight:256,pixelWidth:385,src:\"https://framerusercontent.com/images/uib9ps4S43U6J4hzZTV29Z5EULA.svg\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+0+0+3034.7+0+282+0+0+0+0+0+0),pixelHeight:256,pixelWidth:385,src:\"https://framerusercontent.com/images/uib9ps4S43U6J4hzZTV29Z5EULA.svg\"},className:\"framer-hea75e\",\"data-framer-name\":\"BG\"})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{OU_xE9Dym:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+0+0+2989.9+0+262+0+0+0+1006+0+0+0),pixelHeight:1736,pixelWidth:2608,sizes:`max(min(${componentViewport?.width||\"100vw\"}, 450px) - 32px, 1px)`,src:\"https://framerusercontent.com/images/mlxqJgBSZoBrVgGcupnALJIKTM.png\",srcSet:\"https://framerusercontent.com/images/mlxqJgBSZoBrVgGcupnALJIKTM.png?scale-down-to=512 512w,https://framerusercontent.com/images/mlxqJgBSZoBrVgGcupnALJIKTM.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/mlxqJgBSZoBrVgGcupnALJIKTM.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/mlxqJgBSZoBrVgGcupnALJIKTM.png 2608w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+0+0+3034.7+0+282+0+0+0+0+0+0),pixelHeight:1736,pixelWidth:2608,sizes:`max((min(${componentViewport?.width||\"100vw\"} * 0.88, 1200px) - 48px) / 3, 1px)`,src:\"https://framerusercontent.com/images/mlxqJgBSZoBrVgGcupnALJIKTM.png\",srcSet:\"https://framerusercontent.com/images/mlxqJgBSZoBrVgGcupnALJIKTM.png?scale-down-to=512 512w,https://framerusercontent.com/images/mlxqJgBSZoBrVgGcupnALJIKTM.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/mlxqJgBSZoBrVgGcupnALJIKTM.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/mlxqJgBSZoBrVgGcupnALJIKTM.png 2608w\"},className:\"framer-cy6rez\",\"data-framer-name\":\"Image\"})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-5sx7tz\",\"data-framer-name\":\"Text Container\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{OU_xE9Dym:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+0+0+2989.9+0+262+0+0+0+1006+0+257+-46),pixelHeight:46,pixelWidth:33,src:\"https://framerusercontent.com/images/WspPVNQXQwNE7FEvMzKcqp8RcU.svg\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+0+0+3034.7+0+282+0+0+0+0+248+-46),pixelHeight:46,pixelWidth:33,src:\"https://framerusercontent.com/images/WspPVNQXQwNE7FEvMzKcqp8RcU.svg\"},className:\"framer-17tuljz\",\"data-framer-name\":\"Shape\"})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{OU_xE9Dym:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+0+0+2989.9+0+262+0+0+0+1006+0+257+-46),pixelHeight:46,pixelWidth:32,src:\"https://framerusercontent.com/images/w7p2OGpBX6wtIQOZpL5Ytn8y4nw.svg\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+0+0+3034.7+0+282+0+0+0+0+248+-46),pixelHeight:46,pixelWidth:32,src:\"https://framerusercontent.com/images/w7p2OGpBX6wtIQOZpL5Ytn8y4nw.svg\"},className:\"framer-17tadm3\",\"data-framer-name\":\"Shape\"})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-17msl27\",\"data-styles-preset\":\"JEtrUOgj1\",style:{\"--framer-text-alignment\":\"left\"},children:/*#__PURE__*/_jsx(\"strong\",{children:\"Real-Time Collaboration\"})})}),className:\"framer-1l3oh74\",\"data-framer-name\":\"Heading\",fonts:[\"Inter\",\"Inter-Bold\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-16upl8m\",\"data-styles-preset\":\"iNaWndAoT\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-f5be0458-7744-4467-9ed4-43d7618ea1c4, rgb(82, 98, 121))\"},children:\"Edit proposals in real-time with your entire team\u2014collaborate effortlessly, maintain version control, and keep everyone on the same page from first draft to final approval.\"})}),className:\"framer-1koaexx\",\"data-framer-name\":\"Paragraph\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})]})]}),isDisplayed4()&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-11n3izn hidden-72rtr7 hidden-7kk902\",\"data-framer-name\":\"Card Container\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1hu7jn2\",\"data-border\":true,\"data-framer-name\":\"Card\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1t9qa6j\",\"data-framer-name\":\"Container\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Bas1J9Bgj:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+0+0+3153.7+0+262+0+503+0+0+0+0),pixelHeight:256,pixelWidth:385,src:\"https://framerusercontent.com/images/uib9ps4S43U6J4hzZTV29Z5EULA.svg\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:256,pixelWidth:385,src:\"https://framerusercontent.com/images/uib9ps4S43U6J4hzZTV29Z5EULA.svg\"},className:\"framer-w9jp1f\",\"data-framer-name\":\"BG\"})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Bas1J9Bgj:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+0+0+3153.7+0+262+0+503+0+0+0+0),pixelHeight:256,pixelWidth:385,src:\"https://framerusercontent.com/images/DtiFPqKbnVTg1ldvb5Itunio2U.svg\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:256,pixelWidth:385,src:\"https://framerusercontent.com/images/DtiFPqKbnVTg1ldvb5Itunio2U.svg\"},className:\"framer-u9d9bo\",\"data-framer-name\":\"Image\"})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-p7hpxa\",\"data-framer-name\":\"Text Container\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Bas1J9Bgj:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+0+0+3153.7+0+262+0+503+0+0+253+-46),pixelHeight:46,pixelWidth:33,src:\"https://framerusercontent.com/images/WspPVNQXQwNE7FEvMzKcqp8RcU.svg\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:46,pixelWidth:33,src:\"https://framerusercontent.com/images/WspPVNQXQwNE7FEvMzKcqp8RcU.svg\"},className:\"framer-1rajal8\",\"data-framer-name\":\"Shape\"})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Bas1J9Bgj:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+0+0+3153.7+0+262+0+503+0+0+253+-46),pixelHeight:46,pixelWidth:32,src:\"https://framerusercontent.com/images/w7p2OGpBX6wtIQOZpL5Ytn8y4nw.svg\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:46,pixelWidth:32,src:\"https://framerusercontent.com/images/w7p2OGpBX6wtIQOZpL5Ytn8y4nw.svg\"},className:\"framer-eujri\",\"data-framer-name\":\"Shape\"})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-17msl27\",\"data-styles-preset\":\"JEtrUOgj1\",style:{\"--framer-text-alignment\":\"left\"},children:\"Progress Tracking\"})}),className:\"framer-obetbp\",\"data-framer-name\":\"Heading\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-16upl8m\",\"data-styles-preset\":\"iNaWndAoT\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-f5be0458-7744-4467-9ed4-43d7618ea1c4, rgb(82, 98, 121))\"},children:\"Monitor goals and milestones with real-time updates.\"})}),className:\"framer-1eg6wm9\",\"data-framer-name\":\"Paragraph\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-19bkmuf\",\"data-border\":true,\"data-framer-name\":\"Card\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-oei8t5\",\"data-framer-name\":\"Container\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Bas1J9Bgj:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+0+0+3153.7+0+262+0+503+0+0+0+0),pixelHeight:256,pixelWidth:352,src:\"https://framerusercontent.com/images/wui4Vru9IgB1wehifcOHr9ZuDXw.png\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:256,pixelWidth:352,src:\"https://framerusercontent.com/images/wui4Vru9IgB1wehifcOHr9ZuDXw.png\"},className:\"framer-mfmct6\",\"data-framer-name\":\"BG\"})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Bas1J9Bgj:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+0+0+3153.7+0+262+0+503+0+0+0+0),pixelHeight:256,pixelWidth:352,src:\"https://framerusercontent.com/images/ULSMxr42Akt8UiMTkl0ECyO3JwM.svg\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:256,pixelWidth:352,src:\"https://framerusercontent.com/images/ULSMxr42Akt8UiMTkl0ECyO3JwM.svg\"},className:\"framer-e3ujw4\",\"data-framer-name\":\"Image\"})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1m27ue2\",\"data-framer-name\":\"Text Container\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Bas1J9Bgj:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+0+0+3153.7+0+262+0+503+0+0+253+-46),pixelHeight:46,pixelWidth:33,src:\"https://framerusercontent.com/images/WspPVNQXQwNE7FEvMzKcqp8RcU.svg\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:46,pixelWidth:33,src:\"https://framerusercontent.com/images/WspPVNQXQwNE7FEvMzKcqp8RcU.svg\"},className:\"framer-12t877h\",\"data-framer-name\":\"Shape\"})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Bas1J9Bgj:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+0+0+3153.7+0+262+0+503+0+0+253+-46),pixelHeight:46,pixelWidth:32,src:\"https://framerusercontent.com/images/w7p2OGpBX6wtIQOZpL5Ytn8y4nw.svg\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:46,pixelWidth:32,src:\"https://framerusercontent.com/images/w7p2OGpBX6wtIQOZpL5Ytn8y4nw.svg\"},className:\"framer-wz3w4i\",\"data-framer-name\":\"Shape\"})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-17msl27\",\"data-styles-preset\":\"JEtrUOgj1\",style:{\"--framer-text-alignment\":\"left\"},children:\"Document Upload\"})}),className:\"framer-15m1wpa\",\"data-framer-name\":\"Heading\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-16upl8m\",\"data-styles-preset\":\"iNaWndAoT\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-f5be0458-7744-4467-9ed4-43d7618ea1c4, rgb(82, 98, 121))\"},children:\"Securely store and share essential files in seconds.\"})}),className:\"framer-15dchvc\",\"data-framer-name\":\"Paragraph\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-bdp0n2\",\"data-framer-name\":\"Card Container\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1bmv8uj\",\"data-border\":true,\"data-framer-name\":\"Card\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1pkwi4j\",\"data-framer-name\":\"Container\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Bas1J9Bgj:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+0+0+3153.7+0+262+0+1002+0+0+0+0),pixelHeight:256,pixelWidth:517,sizes:`max((min(${componentViewport?.width||\"100vw\"}, 800px) - 84px) / 2, 1px)`,src:\"https://framerusercontent.com/images/vwmeNKkwZPHtIlXrFMLWgxIOI.svg\",srcSet:\"https://framerusercontent.com/images/vwmeNKkwZPHtIlXrFMLWgxIOI.svg?scale-down-to=512 512w,https://framerusercontent.com/images/vwmeNKkwZPHtIlXrFMLWgxIOI.svg 517w\"}},OU_xE9Dym:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+0+0+2989.9+0+262+0+1509+0+0+0+0+0),pixelHeight:256,pixelWidth:517,sizes:`calc(min(${componentViewport?.width||\"100vw\"}, 450px) - 32px)`,src:\"https://framerusercontent.com/images/vwmeNKkwZPHtIlXrFMLWgxIOI.svg\",srcSet:\"https://framerusercontent.com/images/vwmeNKkwZPHtIlXrFMLWgxIOI.svg?scale-down-to=512 512w,https://framerusercontent.com/images/vwmeNKkwZPHtIlXrFMLWgxIOI.svg 517w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+0+0+3034.7+0+282+0+503+0+0+0+0),pixelHeight:256,pixelWidth:517,sizes:`max((min(${componentViewport?.width||\"100vw\"} * 0.88, 1200px) - 48px) / 3, 1px)`,src:\"https://framerusercontent.com/images/vwmeNKkwZPHtIlXrFMLWgxIOI.svg\",srcSet:\"https://framerusercontent.com/images/vwmeNKkwZPHtIlXrFMLWgxIOI.svg?scale-down-to=512 512w,https://framerusercontent.com/images/vwmeNKkwZPHtIlXrFMLWgxIOI.svg 517w\"},className:\"framer-l79lsu\",\"data-framer-name\":\"BG\"})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Bas1J9Bgj:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+0+0+3153.7+0+262+0+1002+0+0+0+0),pixelHeight:500,pixelWidth:1002,sizes:`max((min(${componentViewport?.width||\"100vw\"}, 800px) - 84px) / 2, 1px)`,src:\"https://framerusercontent.com/images/9Ly12BUQzEK0XdXiUC0bWK1JM.png\",srcSet:\"https://framerusercontent.com/images/9Ly12BUQzEK0XdXiUC0bWK1JM.png?scale-down-to=512 512w,https://framerusercontent.com/images/9Ly12BUQzEK0XdXiUC0bWK1JM.png 1002w\"}},OU_xE9Dym:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+0+0+2989.9+0+262+0+1509+0+0+0+0+0),pixelHeight:500,pixelWidth:1002,positionX:\"right\",positionY:\"center\",sizes:`max(min(${componentViewport?.width||\"100vw\"}, 450px) - 32px, 1px)`,src:\"https://framerusercontent.com/images/9Ly12BUQzEK0XdXiUC0bWK1JM.png\",srcSet:\"https://framerusercontent.com/images/9Ly12BUQzEK0XdXiUC0bWK1JM.png?scale-down-to=512 512w,https://framerusercontent.com/images/9Ly12BUQzEK0XdXiUC0bWK1JM.png 1002w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+0+0+3034.7+0+282+0+503+0+0+0+0),pixelHeight:500,pixelWidth:1002,sizes:`max((min(${componentViewport?.width||\"100vw\"} * 0.88, 1200px) - 48px) / 3, 1px)`,src:\"https://framerusercontent.com/images/9Ly12BUQzEK0XdXiUC0bWK1JM.png\",srcSet:\"https://framerusercontent.com/images/9Ly12BUQzEK0XdXiUC0bWK1JM.png?scale-down-to=512 512w,https://framerusercontent.com/images/9Ly12BUQzEK0XdXiUC0bWK1JM.png 1002w\"},className:\"framer-ahgd5l\",\"data-framer-name\":\"Image\"})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1cut7jm\",\"data-framer-name\":\"Text Container\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Bas1J9Bgj:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+0+0+3153.7+0+262+0+1002+0+0+257+-46),pixelHeight:46,pixelWidth:33,src:\"https://framerusercontent.com/images/WspPVNQXQwNE7FEvMzKcqp8RcU.svg\"}},OU_xE9Dym:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+0+0+2989.9+0+262+0+1509+0+0+0+257+-46),pixelHeight:46,pixelWidth:33,src:\"https://framerusercontent.com/images/WspPVNQXQwNE7FEvMzKcqp8RcU.svg\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+0+0+3034.7+0+282+0+503+0+0+257+-46),pixelHeight:46,pixelWidth:33,src:\"https://framerusercontent.com/images/WspPVNQXQwNE7FEvMzKcqp8RcU.svg\"},className:\"framer-1p7qi1f\",\"data-framer-name\":\"Shape\"})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Bas1J9Bgj:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+0+0+3153.7+0+262+0+1002+0+0+257+-46),pixelHeight:46,pixelWidth:32,src:\"https://framerusercontent.com/images/w7p2OGpBX6wtIQOZpL5Ytn8y4nw.svg\"}},OU_xE9Dym:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+0+0+2989.9+0+262+0+1509+0+0+0+257+-46),pixelHeight:46,pixelWidth:32,src:\"https://framerusercontent.com/images/w7p2OGpBX6wtIQOZpL5Ytn8y4nw.svg\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+0+0+3034.7+0+282+0+503+0+0+257+-46),pixelHeight:46,pixelWidth:32,src:\"https://framerusercontent.com/images/w7p2OGpBX6wtIQOZpL5Ytn8y4nw.svg\"},className:\"framer-13arm7g\",\"data-framer-name\":\"Shape\"})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-17msl27\",\"data-styles-preset\":\"JEtrUOgj1\",style:{\"--framer-text-alignment\":\"left\"},children:/*#__PURE__*/_jsx(\"strong\",{children:\"Instant Client Sharing\"})})}),className:\"framer-8cj22s\",\"data-framer-name\":\"Heading\",fonts:[\"Inter\",\"Inter-Bold\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-16upl8m\",\"data-styles-preset\":\"iNaWndAoT\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-f5be0458-7744-4467-9ed4-43d7618ea1c4, rgb(82, 98, 121))\"},children:\"Share proposals as live links to gather feedback and request approvals in a snap\u2014eliminate back-and-forth emails, streamline communication, and speed up decision-making.\"})}),className:\"framer-1e1l3c1\",\"data-framer-name\":\"Paragraph\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})]}),isDisplayed3()&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-je402k hidden-lru0p9\",\"data-border\":true,\"data-framer-name\":\"Card\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-dmq3fe\",\"data-framer-name\":\"Container\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{OU_xE9Dym:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+0+0+2989.9+0+262+0+1509+0+503+0+0+0),pixelHeight:256,pixelWidth:352,src:\"https://framerusercontent.com/images/wui4Vru9IgB1wehifcOHr9ZuDXw.png\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+0+0+3034.7+0+282+0+503+0+0+0+0),pixelHeight:256,pixelWidth:352,src:\"https://framerusercontent.com/images/wui4Vru9IgB1wehifcOHr9ZuDXw.png\"},className:\"framer-gks1hc\",\"data-framer-name\":\"BG\"})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{OU_xE9Dym:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+0+0+2989.9+0+262+0+1509+0+503+0+0+0),pixelHeight:868,pixelWidth:1304,sizes:`max(min(${componentViewport?.width||\"100vw\"}, 450px) - 32px, 1px)`,src:\"https://framerusercontent.com/images/FlC6Y0oEWDr7AHHFHL8kz9FP5U.png\",srcSet:\"https://framerusercontent.com/images/FlC6Y0oEWDr7AHHFHL8kz9FP5U.png?scale-down-to=512 512w,https://framerusercontent.com/images/FlC6Y0oEWDr7AHHFHL8kz9FP5U.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/FlC6Y0oEWDr7AHHFHL8kz9FP5U.png 1304w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+0+0+3034.7+0+282+0+503+0+0+0+0),pixelHeight:868,pixelWidth:1304,sizes:`max(min(max((min(${componentViewport?.width||\"100vw\"} * 0.88, 1200px) - 48px) / 3, 1px), 351px), 1px)`,src:\"https://framerusercontent.com/images/FlC6Y0oEWDr7AHHFHL8kz9FP5U.png\",srcSet:\"https://framerusercontent.com/images/FlC6Y0oEWDr7AHHFHL8kz9FP5U.png?scale-down-to=512 512w,https://framerusercontent.com/images/FlC6Y0oEWDr7AHHFHL8kz9FP5U.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/FlC6Y0oEWDr7AHHFHL8kz9FP5U.png 1304w\"},className:\"framer-5nx865\",\"data-framer-name\":\"Image\"})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-z77gua\",\"data-framer-name\":\"Text Container\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{OU_xE9Dym:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+0+0+2989.9+0+262+0+1509+0+503+0+257+-46),pixelHeight:46,pixelWidth:33,src:\"https://framerusercontent.com/images/WspPVNQXQwNE7FEvMzKcqp8RcU.svg\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+0+0+3034.7+0+282+0+503+0+0+257+-46),pixelHeight:46,pixelWidth:33,src:\"https://framerusercontent.com/images/WspPVNQXQwNE7FEvMzKcqp8RcU.svg\"},className:\"framer-4sigaz\",\"data-framer-name\":\"Shape\"})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{OU_xE9Dym:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+0+0+2989.9+0+262+0+1509+0+503+0+257+-46),pixelHeight:46,pixelWidth:32,src:\"https://framerusercontent.com/images/w7p2OGpBX6wtIQOZpL5Ytn8y4nw.svg\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+0+0+3034.7+0+282+0+503+0+0+257+-46),pixelHeight:46,pixelWidth:32,src:\"https://framerusercontent.com/images/w7p2OGpBX6wtIQOZpL5Ytn8y4nw.svg\"},className:\"framer-uc4m30\",\"data-framer-name\":\"Shape\"})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-17msl27\",\"data-styles-preset\":\"JEtrUOgj1\",style:{\"--framer-text-alignment\":\"left\"},children:/*#__PURE__*/_jsx(\"strong\",{children:\"Smart Proposal Tracking\"})})}),className:\"framer-xzrwky\",\"data-framer-name\":\"Heading\",fonts:[\"Inter\",\"Inter-Bold\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-16upl8m\",\"data-styles-preset\":\"iNaWndAoT\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-f5be0458-7744-4467-9ed4-43d7618ea1c4, rgb(82, 98, 121))\"},children:\"Track every stage in a centralized dashboard\u2014monitor status, approvals, and feedback at a glance, ensuring you never miss a follow-up or an important deadline.\"})}),className:\"framer-14w0dzj\",\"data-framer-name\":\"Paragraph\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1hpd5ud\",\"data-framer-name\":\"Container\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-xvegok\",\"data-border\":true,\"data-framer-name\":\"Card\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1djbbxw\",\"data-framer-name\":\"Text Container\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7QnJpY29sYWdlIEdyb3Rlc3F1ZS03MDA=\",\"--framer-font-family\":'\"Bricolage Grotesque\", \"Bricolage Grotesque Placeholder\", sans-serif',\"--framer-font-size\":\"50px\",\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"70%\",\"--framer-text-color\":\"var(--token-e4fdc027-410b-4747-8d19-b7d6252d4400, rgb(28, 28, 28))\"},children:\"98%\"})}),className:\"framer-cjdn0y\",\"data-framer-name\":\"Number\",fonts:[\"GF;Bricolage Grotesque-700\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"150%\",\"--framer-text-color\":\"var(--token-fd9e8734-3b55-496a-bb4a-155ca7313ddd, rgb(61, 73, 91))\"},children:\"Faster proposal creation\"})}),className:\"framer-a0yyeh\",\"data-framer-name\":\"Text\",fonts:[\"Inter-Medium\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-fdjrdh\",\"data-framer-name\":\"Sub Container\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Bas1J9Bgj:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+0+0+3153.7+0+262+0+1002+0+0+0+40+123+0+0),pixelHeight:20,pixelWidth:117,src:\"https://framerusercontent.com/images/Dqk2NqYwmUnrBUMOKZUzyPpD5d8.svg\"}},OU_xE9Dym:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+0+0+2989.9+0+262+0+1509+0+1006+0+0+40+337+0+0),pixelHeight:20,pixelWidth:117,src:\"https://framerusercontent.com/images/Dqk2NqYwmUnrBUMOKZUzyPpD5d8.svg\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+0+0+3034.7+0+282+0+503+0+0+0+40+123+0+0),pixelHeight:20,pixelWidth:117,src:\"https://framerusercontent.com/images/Dqk2NqYwmUnrBUMOKZUzyPpD5d8.svg\"},className:\"framer-hteonv\",\"data-framer-name\":\"Stars\"})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-3tbga2\",\"data-framer-name\":\"Text Container\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"150%\",\"--framer-text-color\":\"var(--token-e4fdc027-410b-4747-8d19-b7d6252d4400, rgb(28, 28, 28))\"},children:\"4.8\"})}),className:\"framer-bo3tc0\",\"data-framer-name\":\"Text\",fonts:[\"Inter-SemiBold\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"150%\",\"--framer-text-color\":\"var(--token-6c9f3e2c-5ff2-454c-a6dc-44dcc56aa738, rgb(92, 111, 137))\"},children:\"Average User Rating\"})}),className:\"framer-1e7wxg1\",\"data-framer-name\":\"Text\",fonts:[\"Inter-Medium\"],verticalAlignment:\"top\",withExternalLayout:true})]})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1qmi9s7\",\"data-framer-name\":\"Card\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7QnJpY29sYWdlIEdyb3Rlc3F1ZS03MDA=\",\"--framer-font-family\":'\"Bricolage Grotesque\", \"Bricolage Grotesque Placeholder\", sans-serif',\"--framer-font-size\":\"50px\",\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"80%\",\"--framer-text-color\":\"var(--token-f9e45599-fd40-48ec-aab5-41b4b1e1cd80, rgb(255, 255, 255))\"},children:\"10x\"})}),className:\"framer-1xevw5n\",\"data-framer-name\":\"Number\",fonts:[\"GF;Bricolage Grotesque-700\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"150%\",\"--framer-text-color\":\"var(--token-f9e45599-fd40-48ec-aab5-41b4b1e1cd80, rgb(255, 255, 255))\"},children:\"Increase in productivity\"})}),className:\"framer-suegfb\",\"data-framer-name\":\"Text\",fonts:[\"Inter-Medium\"],verticalAlignment:\"top\",withExternalLayout:true})]})]})]})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1n59eog\",\"data-framer-name\":\"About Us\",id:elementId4,ref:ref5,children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-alwcir\",\"data-framer-name\":\"Sub Container\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-a2yh5a\",\"data-framer-name\":\"Container\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1gn1ny5\",\"data-border\":true,\"data-framer-name\":\"Container\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Bas1J9Bgj:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+0+0+5046.7+0+0+0+0+0+0+9.5),pixelHeight:24,pixelWidth:24,src:\"https://framerusercontent.com/images/E4gaXRJn0xLMVubszzKYcceE2T4.svg\"}},OU_xE9Dym:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+0+0+6753.9+0+0+0+0+0+0+9.5),pixelHeight:24,pixelWidth:24,src:\"https://framerusercontent.com/images/E4gaXRJn0xLMVubszzKYcceE2T4.svg\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+0+0+4437.7+146.2456+0+0+0+0+9.5),pixelHeight:24,pixelWidth:24,src:\"https://framerusercontent.com/images/E4gaXRJn0xLMVubszzKYcceE2T4.svg\"},className:\"framer-ks0rgh\",\"data-framer-name\":\"Icon\"})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-16upl8m\",\"data-styles-preset\":\"iNaWndAoT\",style:{\"--framer-text-color\":\"var(--token-e4fdc027-410b-4747-8d19-b7d6252d4400, rgb(28, 28, 28))\"},children:\"About Us\"})}),className:\"framer-qx5wr8\",\"data-framer-name\":\"Text\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-jxrfvx\",\"data-framer-name\":\"Text Container\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Bas1J9Bgj:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-131n2km\",\"data-styles-preset\":\"HpSEqHCri\",style:{\"--framer-text-alignment\":\"center\"},children:\"Built by people who\u2019ve been in your shoes\"})})},OU_xE9Dym:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-131n2km\",\"data-styles-preset\":\"HpSEqHCri\",style:{\"--framer-text-alignment\":\"center\"},children:\"Built by people who\u2019ve been in your shoes\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-131n2km\",\"data-styles-preset\":\"HpSEqHCri\",children:\"Built by people who\u2019ve been in your shoes\"})}),className:\"framer-1424kpp\",\"data-framer-name\":\"Heading\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Bas1J9Bgj:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-16upl8m\",\"data-styles-preset\":\"iNaWndAoT\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-fd9e8734-3b55-496a-bb4a-155ca7313ddd, rgb(61, 73, 91))\"},children:\"We started as a creative agency, churning out proposal after proposal, wrestling with scope creep and messy contract clauses. We analyzed thousands more across all sorts of projects to pinpoint exactly what separates the winners from the forgettables. Powerdocs is the result\u2014your all-in-one way to craft, send, and track proposals so you can focus on the work you love.\"})})},OU_xE9Dym:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-16upl8m\",\"data-styles-preset\":\"iNaWndAoT\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-fd9e8734-3b55-496a-bb4a-155ca7313ddd, rgb(61, 73, 91))\"},children:\"We started as a creative agency, churning out proposal after proposal, wrestling with scope creep and messy contract clauses. We analyzed thousands more across all sorts of projects to pinpoint exactly what separates the winners from the forgettables. Powerdocs is the result\u2014your all-in-one way to craft, send, and track proposals so you can focus on the work you love.\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-16upl8m\",\"data-styles-preset\":\"iNaWndAoT\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-fd9e8734-3b55-496a-bb4a-155ca7313ddd, rgb(61, 73, 91))\"},children:\"We started as a creative agency, churning out proposal after proposal, wrestling with scope creep and messy contract clauses. We analyzed thousands more across all sorts of projects to pinpoint exactly what separates the winners from the forgettables. Powerdocs is the result\u2014your all-in-one way to craft, send, and track proposals so you can focus on the work you love.\"})}),className:\"framer-kqxvdw\",\"data-framer-name\":\"Paragraph\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]})]})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1nzyzlx\",\"data-framer-name\":\"Sub Container\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Bas1J9Bgj:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+0+0+5046.7+0+331.6+0+0),pixelHeight:500,pixelWidth:1002,sizes:`calc(min(${componentViewport?.width||\"100vw\"}, 800px) - 60px)`,src:\"https://framerusercontent.com/images/C4MGsEEaLSRLluREKboC3MaNqeo.png\",srcSet:\"https://framerusercontent.com/images/C4MGsEEaLSRLluREKboC3MaNqeo.png?scale-down-to=512 512w,https://framerusercontent.com/images/C4MGsEEaLSRLluREKboC3MaNqeo.png 1002w\"}},OU_xE9Dym:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+0+0+6753.9+0+311.6+0+0),pixelHeight:500,pixelWidth:1002,positionX:\"right\",positionY:\"center\",sizes:`calc(min(${componentViewport?.width||\"100vw\"}, 450px) - 32px)`,src:\"https://framerusercontent.com/images/C4MGsEEaLSRLluREKboC3MaNqeo.png\",srcSet:\"https://framerusercontent.com/images/C4MGsEEaLSRLluREKboC3MaNqeo.png?scale-down-to=512 512w,https://framerusercontent.com/images/C4MGsEEaLSRLluREKboC3MaNqeo.png 1002w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+0+0+4437.7+0+0+0),pixelHeight:500,pixelWidth:1002,sizes:`max((min(${componentViewport?.width||\"100vw\"} * 0.88, 1200px) - 60px) / 2, 1px)`,src:\"https://framerusercontent.com/images/C4MGsEEaLSRLluREKboC3MaNqeo.png\",srcSet:\"https://framerusercontent.com/images/C4MGsEEaLSRLluREKboC3MaNqeo.png?scale-down-to=512 512w,https://framerusercontent.com/images/C4MGsEEaLSRLluREKboC3MaNqeo.png 1002w\"},className:\"framer-2c93ao\",\"data-framer-name\":\"image\"})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1ub7k3u\",\"data-framer-name\":\"Items Container\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-s9oqw9\",\"data-border\":true,\"data-framer-name\":\"Card\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1xv0f4v\",\"data-framer-name\":\"Container\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-uwy9j9\",\"data-framer-name\":\"Icon Container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Bas1J9Bgj:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+0+0+5046.7+0+331.6+0+323.0912+0+0+24+0+0+10),pixelHeight:23,pixelWidth:23,src:\"https://framerusercontent.com/images/16Nc5rE74CKbxC2OsOAaesfLu0.svg\"}},OU_xE9Dym:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+0+0+6753.9+0+311.6+0+323.0912+0+0+24+0+0+10),pixelHeight:23,pixelWidth:23,src:\"https://framerusercontent.com/images/16Nc5rE74CKbxC2OsOAaesfLu0.svg\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+0+0+4437.7+0+0+323.0912+0+24+0+0+10),pixelHeight:23,pixelWidth:23,src:\"https://framerusercontent.com/images/16Nc5rE74CKbxC2OsOAaesfLu0.svg\"},className:\"framer-1ay2qfz\",\"data-framer-name\":\"Icon\"})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-17msl27\",\"data-styles-preset\":\"JEtrUOgj1\",style:{\"--framer-text-alignment\":\"left\"},children:\"Our Mission\"})}),className:\"framer-pwajeo\",\"data-framer-name\":\"Heading\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-16upl8m\",\"data-styles-preset\":\"iNaWndAoT\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-fd9e8734-3b55-496a-bb4a-155ca7313ddd, rgb(61, 73, 91))\"},children:\"To empower creative hustlers with frictionless proposals and let them focus on their craft\u2014not the paperwork.\"})}),className:\"framer-1cxuh1k\",\"data-framer-name\":\"Paragraph\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-f5r11f\",\"data-border\":true,\"data-framer-name\":\"Card\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1bwpw5l\",\"data-framer-name\":\"Container\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-16jq98d\",\"data-framer-name\":\"Icon Container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Bas1J9Bgj:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+0+0+5046.7+0+331.6+0+323.0912+0+261+24+0+0+10),pixelHeight:23,pixelWidth:23,src:\"https://framerusercontent.com/images/16Nc5rE74CKbxC2OsOAaesfLu0.svg\"}},OU_xE9Dym:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+0+0+6753.9+0+311.6+0+323.0912+0+261+24+0+0+10),pixelHeight:23,pixelWidth:23,src:\"https://framerusercontent.com/images/16Nc5rE74CKbxC2OsOAaesfLu0.svg\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+0+0+4437.7+0+0+323.0912+0+24+0+0+10),pixelHeight:23,pixelWidth:23,src:\"https://framerusercontent.com/images/16Nc5rE74CKbxC2OsOAaesfLu0.svg\"},className:\"framer-913wpp\",\"data-framer-name\":\"Icon\"})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-17msl27\",\"data-styles-preset\":\"JEtrUOgj1\",style:{\"--framer-text-alignment\":\"left\"},children:\"Our Vision\"})}),className:\"framer-ompzex\",\"data-framer-name\":\"Heading\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-16upl8m\",\"data-styles-preset\":\"iNaWndAoT\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-fd9e8734-3b55-496a-bb4a-155ca7313ddd, rgb(61, 73, 91))\"},children:\"A world where every freelancer and agency can close better deals, faster, with zero administrative pain.\"})}),className:\"framer-1n7s4v1\",\"data-framer-name\":\"Paragraph\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})]})]})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-ymunh0\",\"data-framer-name\":\"Bottom Sections\",children:[/*#__PURE__*/_jsxs(\"section\",{className:\"framer-558ovv\",\"data-framer-name\":\"Pricing\",id:elementId5,ref:ref6,children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Bas1J9Bgj:{width:`calc(min(${componentViewport?.width||\"100vw\"}, 800px) - 60px)`,y:(componentViewport?.y||0)+0+0+0+6353.3912+0+0+0+0},OU_xE9Dym:{width:`calc(min(${componentViewport?.width||\"100vw\"}, 450px) - 32px)`,y:(componentViewport?.y||0)+0+0+0+7970.5912+0+0+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:202,width:`min(${componentViewport?.width||\"100vw\"} * 0.88, 1200px)`,y:(componentViewport?.y||0)+0+0+0+5181.7912+0+0+0+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-18e1ya8-container\",nodeId:\"xreAqcNIk\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Bas1J9Bgj:{variant:\"zrEK8IOIb\"},OU_xE9Dym:{variant:\"JCud3KTgy\"}},children:/*#__PURE__*/_jsx(HelperSectionHeader,{height:\"100%\",id:\"xreAqcNIk\",jfwOkHVse:\"Coins\",layoutId:\"xreAqcNIk\",Ns9Tp9KAe:true,style:{width:\"100%\"},uosFAel17:\"Pricing\",variant:\"ekbfTPVRx\",VGUVLjDGC:\"Simple pricing\",width:\"100%\",ZizefppcZ:\"Choose the plan that fits your needs and start creating proposals effortlessly\u2014no hidden costs, no complications.\"})})})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-jc0c8h\",\"data-framer-name\":\"Sub Container\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Bas1J9Bgj:{width:`calc(min(${componentViewport?.width||\"100vw\"}, 800px) - 60px)`,y:(componentViewport?.y||0)+0+0+0+6353.3912+0+0+0+262+0+0},OU_xE9Dym:{width:`calc(min(${componentViewport?.width||\"100vw\"}, 450px) - 32px)`,y:(componentViewport?.y||0)+0+0+0+7970.5912+0+0+0+242+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:997,width:`min(${componentViewport?.width||\"100vw\"} * 0.88, 1200px)`,y:(componentViewport?.y||0)+0+0+0+5181.7912+0+0+0+262+0+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-skyqpr-container\",nodeId:\"ZqO6BCM_8\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Bas1J9Bgj:{variant:\"mpgKEKNb5\"},OU_xE9Dym:{variant:\"swjSyzn6e\"}},children:/*#__PURE__*/_jsx(PricingComponent,{height:\"100%\",id:\"ZqO6BCM_8\",layoutId:\"ZqO6BCM_8\",style:{width:\"100%\"},variant:\"S1jThe6Ze\",width:\"100%\"})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Bas1J9Bgj:{background:{alt:\"Background\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+6353.3912+0+0+0+262+0+1037),pixelHeight:1360,pixelWidth:3972,sizes:`min(min(${componentViewport?.width||\"100vw\"}, 800px) - 60px, 993px)`,src:\"https://framerusercontent.com/images/DfiB3qHyYna2nNMpuA5dsz7rpA.png\",srcSet:\"https://framerusercontent.com/images/DfiB3qHyYna2nNMpuA5dsz7rpA.png?scale-down-to=512 512w,https://framerusercontent.com/images/DfiB3qHyYna2nNMpuA5dsz7rpA.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/DfiB3qHyYna2nNMpuA5dsz7rpA.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/DfiB3qHyYna2nNMpuA5dsz7rpA.png 3972w\"}},OU_xE9Dym:{background:{alt:\"Background\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+7970.5912+0+0+0+242+0+1037),pixelHeight:1360,pixelWidth:3972,sizes:`min(min(${componentViewport?.width||\"100vw\"}, 450px) - 32px, 993px)`,src:\"https://framerusercontent.com/images/DfiB3qHyYna2nNMpuA5dsz7rpA.png\",srcSet:\"https://framerusercontent.com/images/DfiB3qHyYna2nNMpuA5dsz7rpA.png?scale-down-to=512 512w,https://framerusercontent.com/images/DfiB3qHyYna2nNMpuA5dsz7rpA.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/DfiB3qHyYna2nNMpuA5dsz7rpA.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/DfiB3qHyYna2nNMpuA5dsz7rpA.png 3972w\"}}},children:/*#__PURE__*/_jsxs(Image,{background:{alt:\"Background\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+5181.7912+0+0+0+262+0+1047),pixelHeight:1360,pixelWidth:3972,sizes:`min(min(${componentViewport?.width||\"100vw\"} * 0.88, 1200px), 993px)`,src:\"https://framerusercontent.com/images/DfiB3qHyYna2nNMpuA5dsz7rpA.png\",srcSet:\"https://framerusercontent.com/images/DfiB3qHyYna2nNMpuA5dsz7rpA.png?scale-down-to=512 512w,https://framerusercontent.com/images/DfiB3qHyYna2nNMpuA5dsz7rpA.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/DfiB3qHyYna2nNMpuA5dsz7rpA.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/DfiB3qHyYna2nNMpuA5dsz7rpA.png 3972w\"},className:\"framer-i723ry\",\"data-framer-name\":\"Sub Container\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1gym4jl\",\"data-framer-name\":\"Container\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-mgcu9n\",\"data-framer-name\":\"Text Container\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{OU_xE9Dym:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-t9p173\",\"data-styles-preset\":\"WLC3eUxJe\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-f9e45599-fd40-48ec-aab5-41b4b1e1cd80, rgb(255, 255, 255))\"},children:\"Get started now\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-t9p173\",\"data-styles-preset\":\"WLC3eUxJe\",style:{\"--framer-text-color\":\"var(--token-f9e45599-fd40-48ec-aab5-41b4b1e1cd80, rgb(255, 255, 255))\"},children:\"Get started now\"})}),className:\"framer-1cp2eff\",\"data-framer-name\":\"Heading\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-17c1u7s\",\"data-framer-name\":\"Paragraph Container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{OU_xE9Dym:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-16upl8m\",\"data-styles-preset\":\"iNaWndAoT\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(153, 153, 153)\"},children:\"Start exploring Powerdocs completely risk-free and boost your proposals game right away.\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-16upl8m\",\"data-styles-preset\":\"iNaWndAoT\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(153, 153, 153)\"},children:\"Start exploring Powerdocs completely risk-free and boost your proposals game right away.\"})}),className:\"framer-e9czeb\",\"data-framer-name\":\"Paragraph\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Bas1J9Bgj:{y:(componentViewport?.y||0)+0+0+0+6353.3912+0+0+0+262+0+1037+50+0+203.8},OU_xE9Dym:{width:`max(min(min(${componentViewport?.width||\"100vw\"}, 450px) - 32px, 993px) - 48px, 1px)`,y:(componentViewport?.y||0)+0+0+0+7970.5912+0+0+0+242+0+1037+40+0+203.8}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:57,y:(componentViewport?.y||0)+0+0+0+5181.7912+0+0+0+262+0+1047+80+0+203.8,children:/*#__PURE__*/_jsx(Container,{className:\"framer-qyrwso-container\",nodeId:\"Oxus0c9GW\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{OU_xE9Dym:{style:{width:\"100%\"}}},children:/*#__PURE__*/_jsx(ButtonsPrimaryButtonTrackLeadEventqyrwsoWithMappedReactProps8b5nzg,{ALqHfl2FI:\"var(--token-2cfb2c8d-54c4-43ad-8abd-a02cba626afb, rgb(38, 38, 38))\",DThcZ2dbv:\"Create your first document\",EvBVi6gZB:\"https://app.powerdocs.so/signup\",height:\"100%\",id:\"Oxus0c9GW\",IrVDgirDQ:\"var(--token-f9e45599-fd40-48ec-aab5-41b4b1e1cd80, rgb(255, 255, 255))\",jvwT12xlX:\"var(--token-62ba3379-217d-4ce2-b1d9-d7b634eff720, rgb(238, 241, 246))\",layoutId:\"Oxus0c9GW\",width:\"100%\"})})})})})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-14o1478\",\"data-framer-name\":\"Container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Bas1J9Bgj:{background:{alt:\"Ui Image\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+6353.3912+0+0+0+262+0+1037+360.8-269+-8),pixelHeight:400,pixelWidth:400,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/qO9TeMpn8yotNMT8RD2GL8mfU.png\"}},OU_xE9Dym:{background:{alt:\"Ui Image\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+7970.5912+0+0+0+242+0+1037+540.8-230+0),pixelHeight:400,pixelWidth:400,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/qO9TeMpn8yotNMT8RD2GL8mfU.png\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"Ui Image\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+5181.7912+0+0+0+262+0+1047+420.8-340+6),pixelHeight:400,pixelWidth:400,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/qO9TeMpn8yotNMT8RD2GL8mfU.png\"},className:\"framer-486q4m\",\"data-framer-name\":\"Image\"})})})]})})]})]}),/*#__PURE__*/_jsxs(\"section\",{className:\"framer-xczn4v\",\"data-framer-name\":\"FAQs\",id:elementId6,ref:ref7,children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Bas1J9Bgj:{width:`min(min(${componentViewport?.width||\"100vw\"}, 800px) - 60px, 662px)`,y:(componentViewport?.y||0)+0+0+0+6353.3912+0+1809.8+0+0},OU_xE9Dym:{width:`min(min(${componentViewport?.width||\"100vw\"}, 450px) - 32px, 662px)`,y:(componentViewport?.y||0)+0+0+0+7970.5912+0+1899.8+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:202,width:`min(${componentViewport?.width||\"100vw\"} * 0.88, 1200px)`,y:(componentViewport?.y||0)+0+0+0+5181.7912+0+1929.8+0+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-70jv5e-container\",nodeId:\"CEo8QXIiG\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Bas1J9Bgj:{variant:\"zrEK8IOIb\"},OU_xE9Dym:{variant:\"JCud3KTgy\"}},children:/*#__PURE__*/_jsx(HelperSectionHeader,{height:\"100%\",id:\"CEo8QXIiG\",jfwOkHVse:\"Question\",layoutId:\"CEo8QXIiG\",Ns9Tp9KAe:false,style:{width:\"100%\"},uosFAel17:\"FAQs\",variant:\"ekbfTPVRx\",VGUVLjDGC:\"Frequently Asked Questions\",width:\"100%\",ZizefppcZ:\"Explore the tools and capabilities that elevate your productivity and streamline tasks.\"})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Bas1J9Bgj:{width:`min(min(${componentViewport?.width||\"100vw\"}, 800px) - 60px, 662px)`,y:(componentViewport?.y||0)+0+0+0+6353.3912+0+1809.8+0+282},OU_xE9Dym:{width:`min(min(${componentViewport?.width||\"100vw\"}, 450px) - 32px, 662px)`,y:(componentViewport?.y||0)+0+0+0+7970.5912+0+1899.8+0+242}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:368,width:`min(${componentViewport?.width||\"100vw\"} * 0.88, 1200px)`,y:(componentViewport?.y||0)+0+0+0+5181.7912+0+1929.8+0+282,children:/*#__PURE__*/_jsx(Container,{className:\"framer-9mz9al-container\",nodeId:\"DIiY0D8mz\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Bas1J9Bgj:{variant:\"zYmCRRMCy\"},OU_xE9Dym:{variant:\"PLPeuez_u\"}},children:/*#__PURE__*/_jsx(FAQContainer,{height:\"100%\",id:\"DIiY0D8mz\",layoutId:\"DIiY0D8mz\",style:{width:\"100%\"},variant:\"xhu0oWgIg\",width:\"100%\"})})})})})]})]})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Bas1J9Bgj:{y:(componentViewport?.y||0)+0+8963.1912},OU_xE9Dym:{y:(componentViewport?.y||0)+0+10560.3912}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:529,width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+7961.5912,children:/*#__PURE__*/_jsx(Container,{className:\"framer-m4at31-container\",nodeId:\"RjekCOh6c\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Bas1J9Bgj:{variant:\"xkWrFRlkc\"},OU_xE9Dym:{variant:\"ftIma9xej\"}},children:/*#__PURE__*/_jsx(Footer,{height:\"100%\",id:\"RjekCOh6c\",layoutId:\"RjekCOh6c\",style:{width:\"100%\"},variant:\"ucwJ8871L\",width:\"100%\"})})})})})]}),/*#__PURE__*/_jsx(\"div\",{id:\"overlay\"})]})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-uP40b.framer-lux5qc, .framer-uP40b .framer-lux5qc { display: block; }\",\".framer-uP40b.framer-72rtr7 { align-content: center; align-items: center; background-color: var(--token-f9e45599-fd40-48ec-aab5-41b4b1e1cd80, #ffffff); display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 1320px; }\",\".framer-uP40b .framer-m5lud7-container { flex: none; height: auto; left: 0px; position: fixed; right: 0px; top: 0px; z-index: 10; }\",\".framer-uP40b .framer-m2dcna-container { bottom: 0px; flex: none; height: 103px; left: calc(50.00000000000002% - 390px / 2); position: fixed; width: 390px; z-index: 10; }\",\".framer-uP40b .framer-1ctn9r5 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 180px; height: min-content; justify-content: center; overflow: visible; padding: 0px 0px 200px 0px; position: relative; width: 100%; }\",\".framer-uP40b .framer-1jlf3s4 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 139px; height: min-content; justify-content: center; max-width: 1200px; overflow: visible; padding: 0px; position: relative; width: 88%; }\",\".framer-uP40b .framer-8d5z2f { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 60px; height: min-content; justify-content: center; max-width: 1360px; overflow: hidden; padding: 180px 0px 0px 0px; position: relative; width: 100%; }\",\".framer-uP40b .framer-pli3q7 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 67px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-uP40b .framer-jdn1zn { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: flex-start; max-width: 956px; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-uP40b .framer-1qajplf { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 12px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-uP40b .framer-pecz8h { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-uP40b .framer-1b5p8ma { --border-bottom-width: 1px; --border-color: var(--token-fa6afd35-81ed-4b44-8bcf-b09739b6783c, #dde5ed); --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; align-content: center; align-items: center; background-color: var(--token-fb34f388-cd1d-45d7-a628-4c35c84c8877, #f8fafc); border-bottom-left-radius: 100px; border-bottom-right-radius: 100px; border-top-left-radius: 100px; border-top-right-radius: 100px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 6px; height: min-content; justify-content: flex-start; overflow: visible; padding: 6px 12px 6px 6px; position: relative; width: min-content; }\",\".framer-uP40b .framer-1vh5e4l, .framer-uP40b .framer-7bgym, .framer-uP40b .framer-ks0rgh { flex: none; height: 24px; overflow: hidden; position: relative; width: 24px; }\",\".framer-uP40b .framer-pl1a7f, .framer-uP40b .framer-1fkgtj5, .framer-uP40b .framer-1f6ziac, .framer-uP40b .framer-bo3tc0, .framer-uP40b .framer-1e7wxg1, .framer-uP40b .framer-qx5wr8 { --framer-paragraph-spacing: 0px; flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-uP40b .framer-rhlza0 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-uP40b .framer-1li826g { flex: none; height: 8px; overflow: hidden; position: absolute; right: 190px; top: 159px; width: 253px; z-index: 1; }\",\".framer-uP40b .framer-167cll9, .framer-uP40b .framer-1d9iks3, .framer-uP40b .framer-17ixf09, .framer-uP40b .framer-zwghra, .framer-uP40b .framer-1j1zi8g, .framer-uP40b .framer-1ddf81w, .framer-uP40b .framer-1l3oh74, .framer-uP40b .framer-1koaexx, .framer-uP40b .framer-obetbp, .framer-uP40b .framer-1eg6wm9, .framer-uP40b .framer-15m1wpa, .framer-uP40b .framer-15dchvc, .framer-uP40b .framer-8cj22s, .framer-uP40b .framer-1e1l3c1, .framer-uP40b .framer-xzrwky, .framer-uP40b .framer-14w0dzj, .framer-uP40b .framer-cjdn0y, .framer-uP40b .framer-a0yyeh, .framer-uP40b .framer-1xevw5n, .framer-uP40b .framer-suegfb, .framer-uP40b .framer-1424kpp, .framer-uP40b .framer-kqxvdw, .framer-uP40b .framer-1cxuh1k, .framer-uP40b .framer-1n7s4v1, .framer-uP40b .framer-1cp2eff { --framer-paragraph-spacing: 0px; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-uP40b .framer-1r4syup { 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 200px 0px 200px; position: relative; width: 100%; }\",\".framer-uP40b .framer-1qb30mz, .framer-uP40b .framer-pwajeo, .framer-uP40b .framer-ompzex, .framer-uP40b .framer-e9czeb { --framer-paragraph-spacing: 0px; flex: 1 0 0px; height: auto; position: relative; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; }\",\".framer-uP40b .framer-jirxrg { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 30px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-uP40b .framer-lcjfoh { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-uP40b .framer-uec2tc-container, .framer-uP40b .framer-1g7v228-container, .framer-uP40b .framer-qyrwso-container { flex: none; height: auto; position: relative; width: auto; }\",\".framer-uP40b .framer-zjr6d7 { aspect-ratio: 2.691729323308271 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 61px); overflow: visible; position: relative; width: 164px; }\",\".framer-uP40b .framer-1spyqun { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: flex-start; max-width: 1200px; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-uP40b .framer-zlondu-container, .framer-uP40b .framer-adnzmz-container, .framer-uP40b .framer-oc1xgd-container, .framer-uP40b .framer-bdy9nk-container, .framer-uP40b .framer-18e1ya8-container, .framer-uP40b .framer-skyqpr-container, .framer-uP40b .framer-70jv5e-container, .framer-uP40b .framer-9mz9al-container, .framer-uP40b .framer-m4at31-container { flex: none; height: auto; position: relative; width: 100%; }\",\".framer-uP40b .framer-ts6pz6 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: visible; padding: 436px 0px 0px 0px; position: relative; width: 100%; }\",\".framer-uP40b .framer-8be4u2 { align-content: center; align-items: center; border-bottom-left-radius: 30px; border-bottom-right-radius: 30px; border-top-left-radius: 55px; border-top-right-radius: 55px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 50px; height: min-content; justify-content: center; overflow: visible; padding: 200px 80px 80px 80px; position: relative; width: 100%; z-index: 0; }\",\".framer-uP40b .framer-rujy02 { -webkit-backdrop-filter: blur(6px); align-content: flex-start; align-items: flex-start; backdrop-filter: blur(6px); background: linear-gradient(180deg, #ffffff 0%, rgba(255, 255, 255, 0.2) 100%); border-bottom-left-radius: 24px; border-bottom-right-radius: 24px; border-top-left-radius: 24px; border-top-right-radius: 24px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; left: 50%; overflow: visible; padding: 6px; position: absolute; top: -440px; transform: translateX(-50%); width: 88%; will-change: var(--framer-will-change-effect-override, transform); z-index: 1; }\",\".framer-uP40b .framer-1bst6uh-container { flex: none; height: 571px; position: relative; width: 100%; }\",\".framer-uP40b .framer-1vaeb67 { aspect-ratio: 5.694915254237288 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 201px); left: 10px; position: absolute; right: 10px; top: 10px; z-index: 0; }\",\".framer-uP40b .framer-p6inl1 { align-content: center; align-items: center; background-color: var(--token-2cfb2c8d-54c4-43ad-8abd-a02cba626afb, #262626); border-bottom-left-radius: 100px; border-bottom-right-radius: 100px; border-top-left-radius: 100px; border-top-right-radius: 100px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 4px; height: min-content; justify-content: flex-start; overflow: visible; padding: 10px 16px 10px 10px; position: relative; width: min-content; }\",\".framer-uP40b .framer-1di5yod, .framer-uP40b .framer-1n59eog { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 60px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; scroll-margin-top: 150px; width: 100%; }\",\".framer-uP40b .framer-cvbjjx { align-content: flex-start; align-items: flex-start; border-bottom-left-radius: 16px; border-bottom-right-radius: 16px; border-top-left-radius: 16px; border-top-right-radius: 16px; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; min-height: 545px; overflow: hidden; padding: 0px; position: relative; width: 1px; will-change: var(--framer-will-change-override, transform); z-index: 1; }\",\".framer-uP40b .framer-ctzs1e { bottom: 0px; flex: none; left: 0px; overflow: hidden; position: absolute; right: 0px; top: 0px; z-index: 1; }\",\".framer-uP40b .framer-ah7slq { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 50px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-uP40b .framer-149wspr, .framer-uP40b .framer-a2yh5a { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-uP40b .framer-1bos8z6, .framer-uP40b .framer-1gn1ny5 { --border-bottom-width: 1px; --border-color: var(--token-fa6afd35-81ed-4b44-8bcf-b09739b6783c, #dde5ed); --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; align-content: center; align-items: center; background-color: var(--token-fb34f388-cd1d-45d7-a628-4c35c84c8877, #f8fafc); border-bottom-left-radius: 100px; border-bottom-right-radius: 100px; border-top-left-radius: 100px; border-top-right-radius: 100px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 4px; height: min-content; justify-content: flex-start; overflow: visible; padding: 8px 12px 8px 12px; position: relative; width: min-content; }\",\".framer-uP40b .framer-3rufqx-container { flex: none; height: 24px; position: relative; width: 24px; }\",\".framer-uP40b .framer-1x8sba1, .framer-uP40b .framer-558ovv { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 60px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; scroll-margin-top: 150px; width: 100%; }\",\".framer-uP40b .framer-1qp2nvh { display: grid; flex: none; gap: 20px; grid-auto-rows: minmax(0, 1fr); grid-template-columns: repeat(3, minmax(50px, 1fr)); grid-template-rows: repeat(1, minmax(0, 1fr)); height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-uP40b .framer-3es0va-container, .framer-uP40b .framer-11rk2b2-container, .framer-uP40b .framer-6jazev-container { align-self: start; flex: none; height: 100%; justify-self: start; position: relative; width: 100%; }\",\".framer-uP40b .framer-gw6m5j { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 80px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; scroll-margin-top: 150px; width: 100%; }\",\".framer-uP40b .framer-6m08m6 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-uP40b .framer-1yx039f, .framer-uP40b .framer-11n3izn, .framer-uP40b .framer-bdp0n2 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-uP40b .framer-b77iz1, .framer-uP40b .framer-48vvxt, .framer-uP40b .framer-av3sg6, .framer-uP40b .framer-1hu7jn2, .framer-uP40b .framer-19bkmuf, .framer-uP40b .framer-1bmv8uj { --border-bottom-width: 1px; --border-color: var(--token-fa6afd35-81ed-4b44-8bcf-b09739b6783c, #dde5ed); --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; align-content: center; align-items: center; background-color: var(--token-fb34f388-cd1d-45d7-a628-4c35c84c8877, #f8fafc); border-bottom-left-radius: 20px; border-bottom-right-radius: 20px; border-top-left-radius: 20px; border-top-right-radius: 20px; box-shadow: 0px 0px 0px 5px #ffffff, 0px 0px 26.100000381469727px 0px rgba(146, 146, 190, 0.1), 0px 13px 26.100000381469727px 0px rgba(146, 146, 190, 0.1), 0px 4px 3px 0px rgba(0, 0, 0, 0.25); display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 1px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 1px; will-change: var(--framer-will-change-override, transform); }\",\".framer-uP40b .framer-cl24vt { align-content: center; align-items: center; aspect-ratio: 1.50390625 / 1; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: var(--framer-aspect-ratio-supported, 247px); justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-uP40b .framer-66djpf, .framer-uP40b .framer-3w7zlr, .framer-uP40b .framer-hea75e, .framer-uP40b .framer-w9jp1f, .framer-uP40b .framer-mfmct6, .framer-uP40b .framer-l79lsu, .framer-uP40b .framer-gks1hc { bottom: 0px; flex: none; left: 0px; overflow: hidden; position: absolute; right: 0px; top: 0px; z-index: 0; }\",\".framer-uP40b .framer-1s41cto { flex: none; height: 247px; overflow: hidden; position: relative; width: 370px; }\",\".framer-uP40b .framer-18bw4zx, .framer-uP40b .framer-no2lw9, .framer-uP40b .framer-5sx7tz, .framer-uP40b .framer-p7hpxa, .framer-uP40b .framer-1m27ue2, .framer-uP40b .framer-1cut7jm, .framer-uP40b .framer-z77gua { align-content: flex-start; align-items: flex-start; background-color: #ffffff; border-bottom-left-radius: 20px; border-bottom-right-radius: 20px; box-shadow: 0px -1px 2px 0px rgba(178, 180, 187, 0.2); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 6px; height: min-content; justify-content: flex-start; overflow: visible; padding: 24px; position: relative; width: 100%; }\",\".framer-uP40b .framer-1g33phj, .framer-uP40b .framer-1fex1gl, .framer-uP40b .framer-17tuljz, .framer-uP40b .framer-1rajal8, .framer-uP40b .framer-12t877h, .framer-uP40b .framer-1p7qi1f, .framer-uP40b .framer-4sigaz { flex: none; height: 46px; left: 0px; overflow: hidden; position: absolute; top: -46px; width: 33px; z-index: 1; }\",\".framer-uP40b .framer-1c4ffhu, .framer-uP40b .framer-p79518, .framer-uP40b .framer-17tadm3, .framer-uP40b .framer-eujri, .framer-uP40b .framer-wz3w4i, .framer-uP40b .framer-13arm7g, .framer-uP40b .framer-uc4m30 { flex: none; height: 46px; overflow: hidden; position: absolute; right: 1px; top: -46px; width: 33px; z-index: 1; }\",\".framer-uP40b .framer-hoibac { align-content: center; align-items: center; aspect-ratio: 1.5060728744939271 / 1; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: var(--framer-aspect-ratio-supported, 247px); justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-uP40b .framer-1y8n4ud, .framer-uP40b .framer-cy6rez, .framer-uP40b .framer-u9d9bo, .framer-uP40b .framer-e3ujw4, .framer-uP40b .framer-ahgd5l, .framer-uP40b .framer-5nx865 { flex: 1 0 0px; height: 100%; overflow: hidden; position: relative; width: 1px; }\",\".framer-uP40b .framer-1ny9orv { align-content: center; align-items: center; aspect-ratio: 1.5020242914979758 / 1; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: var(--framer-aspect-ratio-supported, 247px); justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-uP40b .framer-1t9qa6j, .framer-uP40b .framer-oei8t5 { align-content: center; align-items: center; aspect-ratio: 1.4206349206349207 / 1; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: var(--framer-aspect-ratio-supported, 141px); justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-uP40b .framer-1pkwi4j { align-content: center; align-items: center; aspect-ratio: 2.01953125 / 1; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: var(--framer-aspect-ratio-supported, 237px); justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-uP40b .framer-je402k { --border-bottom-width: 1px; --border-color: var(--token-fa6afd35-81ed-4b44-8bcf-b09739b6783c, #dde5ed); --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; align-content: center; align-items: center; background-color: var(--token-fb34f388-cd1d-45d7-a628-4c35c84c8877, #f8fafc); border-bottom-left-radius: 20px; border-bottom-right-radius: 20px; border-top-left-radius: 20px; border-top-right-radius: 20px; box-shadow: 0px 0px 0px 5px #ffffff, 0px 0px 26.100000381469727px 0px rgba(146, 146, 190, 0.1), 0px 13px 26.100000381469727px 0px rgba(146, 146, 190, 0.1), 0px 4px 3px 0px rgba(0, 0, 0, 0.25); display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 1px; height: min-content; justify-content: flex-start; max-width: 351px; overflow: hidden; padding: 0px; position: relative; width: 1px; will-change: var(--framer-will-change-override, transform); }\",\".framer-uP40b .framer-dmq3fe { align-content: center; align-items: center; aspect-ratio: 1.37109375 / 1; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: var(--framer-aspect-ratio-supported, 256px); justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-uP40b .framer-1hpd5ud { 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: flex-start; max-width: 285px; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-uP40b .framer-xvegok { --border-bottom-width: 1px; --border-color: #dde5ed; --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; align-content: flex-start; align-items: flex-start; background-color: #f8fafc; border-bottom-left-radius: 20px; border-bottom-right-radius: 20px; border-top-left-radius: 20px; border-top-right-radius: 20px; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 30px; height: 1px; justify-content: center; overflow: visible; padding: 40px 24px 40px 24px; position: relative; width: 100%; }\",\".framer-uP40b .framer-1djbbxw { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 12px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-uP40b .framer-fdjrdh { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-uP40b .framer-hteonv { flex: none; height: 20px; overflow: hidden; position: relative; width: 116px; }\",\".framer-uP40b .framer-3tbga2 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 6px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-uP40b .framer-1qmi9s7 { align-content: flex-start; align-items: flex-start; background-color: #1c1c1c; border-bottom-left-radius: 20px; border-bottom-right-radius: 20px; border-top-left-radius: 20px; border-top-right-radius: 20px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: center; overflow: visible; padding: 40px 24px 40px 24px; position: relative; width: 100%; }\",\".framer-uP40b .framer-alwcir { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 60px; height: min-content; justify-content: flex-start; max-width: 579px; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-uP40b .framer-jxrfvx { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 14px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-uP40b .framer-1nzyzlx { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-uP40b .framer-2c93ao { border-bottom-left-radius: 12px; border-bottom-right-radius: 12px; border-top-left-radius: 12px; border-top-right-radius: 12px; flex: none; height: 303px; position: relative; width: 100%; }\",\".framer-uP40b .framer-1ub7k3u { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-uP40b .framer-s9oqw9, .framer-uP40b .framer-f5r11f { --border-bottom-width: 1px; --border-color: var(--token-fa6afd35-81ed-4b44-8bcf-b09739b6783c, #dde5ed); --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; align-content: flex-start; align-items: flex-start; background-color: var(--token-fb34f388-cd1d-45d7-a628-4c35c84c8877, #f8fafc); border-bottom-left-radius: 16px; border-bottom-right-radius: 16px; border-top-left-radius: 16px; border-top-right-radius: 16px; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: center; overflow: visible; padding: 24px; position: relative; width: 1px; }\",\".framer-uP40b .framer-1xv0f4v, .framer-uP40b .framer-1bwpw5l { 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-uP40b .framer-uwy9j9, .framer-uP40b .framer-16jq98d { align-content: center; align-items: center; background-color: #1c1c1c; 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: min-content; justify-content: flex-start; overflow: visible; padding: 10px; position: relative; width: min-content; }\",\".framer-uP40b .framer-1ay2qfz, .framer-uP40b .framer-913wpp { flex: none; height: 22px; overflow: hidden; position: relative; width: 22px; }\",\".framer-uP40b .framer-ymunh0 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 200px; height: min-content; justify-content: center; max-width: 1200px; overflow: visible; padding: 0px; position: relative; width: 88%; }\",\".framer-uP40b .framer-jc0c8h { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 50px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-uP40b .framer-i723ry { align-content: center; align-items: center; border-bottom-left-radius: 24px; border-bottom-right-radius: 24px; border-top-left-radius: 24px; border-top-right-radius: 24px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: flex-start; max-width: 993px; overflow: hidden; padding: 80px 470px 80px 60px; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-uP40b .framer-1gym4jl { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 30px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-uP40b .framer-mgcu9n { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-uP40b .framer-17c1u7s { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-uP40b .framer-14o1478 { bottom: 0px; flex: none; gap: 0px; height: 340px; overflow: visible; position: absolute; right: 0px; width: 450px; z-index: 1; }\",\".framer-uP40b .framer-486q4m { border-bottom-left-radius: 12px; border-bottom-right-radius: 12px; border-top-left-radius: 12px; border-top-right-radius: 12px; flex: none; height: 334px; left: 14px; position: absolute; top: 6px; width: 415px; }\",\".framer-uP40b .framer-xczn4v { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 80px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; scroll-margin-top: 150px; width: 100%; }\",...sharedStyle.css,...sharedStyle1.css,...sharedStyle2.css,...sharedStyle3.css,...sharedStyle4.css,...sharedStyle5.css,...sharedStyle6.css,'.framer-uP40b[data-border=\"true\"]::after, .framer-uP40b [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: 1319px) { .framer-uP40b.framer-72rtr7 { width: 810px; } .framer-uP40b .framer-1ctn9r5 { gap: 150px; padding: 0px 0px 150px 0px; } .framer-uP40b .framer-1jlf3s4, .framer-uP40b .framer-ymunh0 { gap: 150px; max-width: 800px; padding: 0px 30px 0px 30px; width: 100%; } .framer-uP40b .framer-8d5z2f { gap: 50px; max-width: 800px; padding: 175px 0px 0px 0px; } .framer-uP40b .framer-rhlza0 { max-width: 780px; } .framer-uP40b .framer-1li826g { right: 88px; top: 134px; } .framer-uP40b .framer-1r4syup { padding: 0px 120px 0px 120px; } .framer-uP40b .framer-ts6pz6 { padding: 180px 0px 0px 0px; } .framer-uP40b .framer-8be4u2 { border-top-left-radius: 40px; border-top-right-radius: 40px; gap: 40px; padding: 236px 50px 50px 50px; } .framer-uP40b .framer-rujy02 { border-bottom-left-radius: 20px; border-bottom-right-radius: 20px; border-top-left-radius: 20px; border-top-right-radius: 20px; top: -220px; width: 93%; } .framer-uP40b .framer-1bst6uh-container { height: 381px; order: 0; } .framer-uP40b .framer-1vaeb67 { height: var(--framer-aspect-ratio-supported, 127px); } .framer-uP40b .framer-p6inl1 { border-bottom-left-radius: 12px; border-bottom-right-radius: 12px; border-top-left-radius: 12px; border-top-right-radius: 12px; gap: 12px; width: 100%; } .framer-uP40b .framer-1fkgtj5 { flex: 1 0 0px; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; } .framer-uP40b .framer-1di5yod { flex-direction: column; max-width: 570px; } .framer-uP40b .framer-ah7slq, .framer-uP40b .framer-1nzyzlx, .framer-uP40b .framer-s9oqw9, .framer-uP40b .framer-f5r11f { flex: none; width: 100%; } .framer-uP40b .framer-149wspr, .framer-uP40b .framer-a2yh5a { align-content: center; align-items: center; } .framer-uP40b .framer-1qp2nvh { grid-template-columns: repeat(2, minmax(50px, 1fr)); } .framer-uP40b .framer-gw6m5j { gap: 60px; } .framer-uP40b .framer-cl24vt { aspect-ratio: 1.41796875 / 1; height: var(--framer-aspect-ratio-supported, 253px); } .framer-uP40b .framer-hoibac { aspect-ratio: 1.4206349206349207 / 1; height: var(--framer-aspect-ratio-supported, 252px); } .framer-uP40b .framer-1t9qa6j, .framer-uP40b .framer-oei8t5 { height: var(--framer-aspect-ratio-supported, 252px); } .framer-uP40b .framer-1pkwi4j { aspect-ratio: 1.71875 / 1; height: var(--framer-aspect-ratio-supported, 251px); } .framer-uP40b .framer-1n59eog, .framer-uP40b .framer-1ub7k3u { flex-direction: column; } .framer-uP40b .framer-alwcir { align-content: center; align-items: center; flex: none; width: 100%; } .framer-uP40b .framer-jc0c8h { gap: 40px; } .framer-uP40b .framer-i723ry { padding: 50px 265px 50px 50px; } .framer-uP40b .framer-17c1u7s { padding: 0px 40px 0px 0px; } .framer-uP40b .framer-14o1478 { height: 269px; width: 300px; } .framer-uP40b .framer-486q4m { aspect-ratio: 1.8359133126934986 / 1; border-bottom-left-radius: 10px; border-bottom-right-radius: 10px; border-top-left-radius: 10px; border-top-right-radius: 10px; height: var(--framer-aspect-ratio-supported, 263px); left: -93px; top: -8px; width: 482px; } .framer-uP40b .framer-xczn4v { max-width: 662px; }}\",\"@media (max-width: 809px) { .framer-uP40b.framer-72rtr7 { width: 390px; } .framer-uP40b .framer-1ctn9r5 { gap: 80px; padding: 0px 0px 80px 0px; } .framer-uP40b .framer-1jlf3s4, .framer-uP40b .framer-ymunh0 { gap: 80px; max-width: 450px; padding: 0px 16px 0px 16px; width: 100%; } .framer-uP40b .framer-8d5z2f { gap: 30px; max-width: 450px; padding: 160px 0px 0px 0px; } .framer-uP40b .framer-jdn1zn { gap: 30px; } .framer-uP40b .framer-rhlza0 { gap: 20px; max-width: 780px; } .framer-uP40b .framer-1r4syup { padding: 0px; } .framer-uP40b .framer-jirxrg { gap: 24px; } .framer-uP40b .framer-lcjfoh, .framer-uP40b .framer-1yx039f, .framer-uP40b .framer-bdp0n2, .framer-uP40b .framer-1ub7k3u { flex-direction: column; } .framer-uP40b .framer-1spyqun { gap: 30px; max-width: 450px; } .framer-uP40b .framer-ts6pz6 { padding: 80px 0px 0px 0px; } .framer-uP40b .framer-8be4u2 { border-bottom-left-radius: 24px; border-bottom-right-radius: 24px; border-top-left-radius: 24px; border-top-right-radius: 24px; gap: 30px; padding: 120px 20px 40px 20px; } .framer-uP40b .framer-rujy02 { border-bottom-left-radius: 16px; border-bottom-right-radius: 16px; border-top-left-radius: 16px; border-top-right-radius: 16px; max-width: 358px; top: -130px; width: 100%; } .framer-uP40b .framer-1bst6uh-container { height: 195px; order: 0; } .framer-uP40b .framer-1vaeb67 { height: var(--framer-aspect-ratio-supported, 59px); } .framer-uP40b .framer-p6inl1 { align-content: flex-start; align-items: flex-start; border-bottom-left-radius: 12px; border-bottom-right-radius: 12px; border-top-left-radius: 12px; border-top-right-radius: 12px; flex-direction: column; gap: 12px; padding: 16px; width: 100%; } .framer-uP40b .framer-1fkgtj5 { white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; } .framer-uP40b .framer-1di5yod { flex-direction: column; gap: 50px; } .framer-uP40b .framer-ah7slq { flex: none; gap: 40px; width: 100%; } .framer-uP40b .framer-149wspr, .framer-uP40b .framer-a2yh5a, .framer-uP40b .framer-1gym4jl { align-content: center; align-items: center; } .framer-uP40b .framer-1x8sba1 { align-content: center; align-items: center; gap: 40px; } .framer-uP40b .framer-1qp2nvh { align-content: flex-start; align-items: flex-start; display: flex; flex-direction: column; flex-wrap: nowrap; justify-content: flex-start; max-width: 318px; } .framer-uP40b .framer-3es0va-container, .framer-uP40b .framer-11rk2b2-container, .framer-uP40b .framer-6jazev-container { align-self: unset; height: auto; } .framer-uP40b .framer-gw6m5j { gap: 60px; } .framer-uP40b .framer-b77iz1, .framer-uP40b .framer-48vvxt, .framer-uP40b .framer-av3sg6, .framer-uP40b .framer-1bmv8uj, .framer-uP40b .framer-alwcir, .framer-uP40b .framer-1nzyzlx, .framer-uP40b .framer-s9oqw9, .framer-uP40b .framer-f5r11f { flex: none; width: 100%; } .framer-uP40b .framer-cl24vt, .framer-uP40b .framer-hoibac, .framer-uP40b .framer-1ny9orv, .framer-uP40b .framer-1pkwi4j { aspect-ratio: 1.3984375 / 1; height: var(--framer-aspect-ratio-supported, 256px); } .framer-uP40b .framer-l79lsu { order: 0; } .framer-uP40b .framer-ahgd5l { order: 1; } .framer-uP40b .framer-je402k { flex: none; max-width: unset; width: 100%; } .framer-uP40b .framer-dmq3fe { height: var(--framer-aspect-ratio-supported, 261px); } .framer-uP40b .framer-1hpd5ud { align-self: unset; flex: none; height: min-content; max-width: unset; width: 100%; } .framer-uP40b .framer-xvegok { flex: none; height: min-content; } .framer-uP40b .framer-1n59eog { flex-direction: column; gap: 40px; } .framer-uP40b .framer-558ovv, .framer-uP40b .framer-jc0c8h { gap: 40px; } .framer-uP40b .framer-i723ry { border-bottom-left-radius: 16px; border-bottom-right-radius: 16px; border-top-left-radius: 16px; border-top-right-radius: 16px; padding: 40px 24px 240px 24px; } .framer-uP40b .framer-qyrwso-container { width: 100%; } .framer-uP40b .framer-14o1478 { height: 230px; width: 358px; } .framer-uP40b .framer-486q4m { aspect-ratio: 1.8359133126934986 / 1; border-bottom-left-radius: 10px; border-bottom-right-radius: 10px; border-top-left-radius: 10px; border-top-right-radius: 10px; height: var(--framer-aspect-ratio-supported, 223px); left: -25px; top: 0px; width: 409px; } .framer-uP40b .framer-xczn4v { gap: 40px; max-width: 662px; }}\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 8919.5\n * @framerIntrinsicWidth 1320\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"Bas1J9Bgj\":{\"layout\":[\"fixed\",\"auto\"]},\"OU_xE9Dym\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerAutoSizeImages true\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n * @framerAcceptsLayoutTemplate true\n * @framerScrollSections {\"kdT6XXSTf\":{\"pattern\":\":kdT6XXSTf\",\"name\":\"hero\"},\"oLb82gX_m\":{\"pattern\":\":oLb82gX_m\",\"name\":\"process\"},\"FE6oMxLeh\":{\"pattern\":\":FE6oMxLeh\",\"name\":\"features\"},\"c5BM7GAcZ\":{\"pattern\":\":c5BM7GAcZ\",\"name\":\"overview\"},\"bvPDP_VxJ\":{\"pattern\":\":bvPDP_VxJ\",\"name\":\"about-us\"},\"JlMaMstIa\":{\"pattern\":\":JlMaMstIa\",\"name\":\"pricing\"},\"umU4mn0gU\":{\"pattern\":\":umU4mn0gU\",\"name\":\"faq\"}}\n * @framerResponsiveScreen\n */const FrameraugiA20Il=withCSS(Component,css,\"framer-uP40b\");export default FrameraugiA20Il;FrameraugiA20Il.displayName=\"Home\";FrameraugiA20Il.defaultProps={height:8919.5,width:1320};addFonts(FrameraugiA20Il,[{explicitInter:true,fonts:[{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/5vvr9Vy74if2I6bQbJvbw7SY1pQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/EOr0mi4hNtlgWNn9if640EZzXCo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Y9k9QrlZAqio88Klkmbd8VoMQc.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/OYrD2tBIBPvoJXiIHnLoOXnY9M.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/JeYwfuaPfZHQhEG8U5gtPDZ7WQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/vQyevYAyHtARFwPqUzQGpnDs.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/b6Y37FthZeALduNqHicBT6FutY.woff2\",weight:\"400\"},{family:\"Bricolage Grotesque\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/bricolagegrotesque/v8/3y9U6as8bTXq_nANBjzKo3IeZx8z6up5BeSl5jBNz_19PpbpMXuECpwUxJBOm_OJWiaaD30YfKfjZZoLvfzlyMgvs-wJDtw.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:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/5A3Ce6C9YYmCjpQx9M4inSaKU.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/Qx95Xyt0Ka3SGhinnbXIGpEIyP4.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/6mJuEAguuIuMog10gGvH5d3cl8.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/xYYWaj7wCU5zSQH0eXvSaS19wo.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/otTaNuNpVK4RbdlT7zDDdKvQBA.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/d3tHnaQIAeqiE5hGcRw4mmgWYU.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/DolVirEGb34pEXEp8t8FQBSK4.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/hyOgCu0Xnghbimh0pE8QTvtt2AU.woff2\",weight:\"600\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/NeGmSOXrPBfEFIy5YZeHq17LEDA.woff2\",weight:\"600\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/oYaAX5himiTPYuN8vLWnqBbfD2s.woff2\",weight:\"600\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/lEJLP4R0yuCaMCjSXYHtJw72M.woff2\",weight:\"600\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/cRJyLNuTJR5jbyKzGi33wU9cqIQ.woff2\",weight:\"600\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/1ZFS7N918ojhhd0nQWdj3jz4w.woff2\",weight:\"600\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/A0Wcc7NgXMjUuFdquHDrIZpzZw0.woff2\",weight:\"600\"}]},...NavbarFonts,...CTABarFonts,...ButtonsPrimaryButtonFonts,...HeroTickerFonts,...YouTubeFonts,...PhosphorFonts,...ProcessFAQContainer2Fonts,...HelperSectionHeaderFonts,...CardsFeaturesCardFonts,...PricingComponentFonts,...FAQContainerFonts,...FooterFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts),...getFontsFromSharedStyle(sharedStyle2.fonts),...getFontsFromSharedStyle(sharedStyle3.fonts),...getFontsFromSharedStyle(sharedStyle4.fonts),...getFontsFromSharedStyle(sharedStyle5.fonts),...getFontsFromSharedStyle(sharedStyle6.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FrameraugiA20Il\",\"slots\":[],\"annotations\":{\"framerScrollSections\":\"{\\\"kdT6XXSTf\\\":{\\\"pattern\\\":\\\":kdT6XXSTf\\\",\\\"name\\\":\\\"hero\\\"},\\\"oLb82gX_m\\\":{\\\"pattern\\\":\\\":oLb82gX_m\\\",\\\"name\\\":\\\"process\\\"},\\\"FE6oMxLeh\\\":{\\\"pattern\\\":\\\":FE6oMxLeh\\\",\\\"name\\\":\\\"features\\\"},\\\"c5BM7GAcZ\\\":{\\\"pattern\\\":\\\":c5BM7GAcZ\\\",\\\"name\\\":\\\"overview\\\"},\\\"bvPDP_VxJ\\\":{\\\"pattern\\\":\\\":bvPDP_VxJ\\\",\\\"name\\\":\\\"about-us\\\"},\\\"JlMaMstIa\\\":{\\\"pattern\\\":\\\":JlMaMstIa\\\",\\\"name\\\":\\\"pricing\\\"},\\\"umU4mn0gU\\\":{\\\"pattern\\\":\\\":umU4mn0gU\\\",\\\"name\\\":\\\"faq\\\"}}\",\"framerAcceptsLayoutTemplate\":\"true\",\"framerResponsiveScreen\":\"\",\"framerIntrinsicWidth\":\"1320\",\"framerContractVersion\":\"1\",\"framerIntrinsicHeight\":\"8919.5\",\"framerComponentViewportWidth\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"Bas1J9Bgj\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"OU_xE9Dym\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerDisplayContentsDiv\":\"false\",\"framerColorSyntax\":\"true\",\"framerAutoSizeImages\":\"true\",\"framerImmutableVariables\":\"true\"}},\"__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", "PhosphorFonts", "getFonts", "Icon", "PhosphorControls", "getPropertyControls", "serializationHash", "variantClassNames", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "getProps", "height", "iconName", "id", "subText", "text", "width", "props", "createLayoutDependency", "variants", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "variant", "CQNbR4UaJ", "yr4axvj5s", "SXwloxtpB", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "variantClassNames", "layoutDependency", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "u", "cx", "serializationHash", "ComponentViewportProvider", "Icon", "RichText2", "css", "FramerAMAzF8NUx", "withCSS", "AMAzF8NUx_default", "addPropertyControls", "ControlType", "PhosphorControls", "addFonts", "PhosphorFonts", "getFontsFromSharedStyle", "fonts", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "click", "click2", "height", "id", "text", "width", "props", "_ref", "_humanReadableVariantMap_props_variant", "_ref1", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "uZvJx_VCq", "hv3PeQmyN", "vWCJQmwXj", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onTap1g09o89", "args", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "cx", "RichText2", "css", "FramerCHwD1SPDS", "withCSS", "CHwD1SPDS_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "height", "id", "text", "width", "props", "_ref", "_humanReadableVariantMap_props_variant", "_ref1", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "jp9rzvDxm", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "u", "cx", "Image2", "RichText2", "css", "FramersuQ7EoNIR", "withCSS", "suQ7EoNIR_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts", "ButtonsPricingButtonFonts", "getFonts", "CHwD1SPDS_default", "ButtonsPrimaryButtonFonts", "MgIT3hfmM_default", "ButtonsPrimaryButtonTrackLeadEventj9b5d9WithMappedReactProps8b5nzg", "withMappedReactProps", "withCodeBoundaryForOverrides", "trackLeadEvent", "MgIT3hfmM_exports", "HelperPointerFonts", "suQ7EoNIR_default", "ButtonsPrimaryButtonTrackLeadEventfpmacdWithMappedReactProps8b5nzg", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "transformTemplate1", "_", "t", "transformTemplate2", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "hv3PeQmyN17893bc", "args", "hv3PeQmyNtdwv5m", "hv3PeQmyN1jlt9ro", "vWCJQmwXj1aoie3r", "vWCJQmwXj1lc4dou", "vWCJQmwXjq8l2yh", "scopingClassNames", "cx", "LayoutGroup", "u", "ComponentViewportProvider", "SmartComponentScopedContainer", "Image2", "getLoadingLazyAtYPosition", "RichText2", "css", "FramerdnPkheplk", "withCSS", "dnPkheplk_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts", "fontStore", "fonts", "css", "className", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "answer", "click", "height", "id", "question", "serialNo", "width", "props", "_ref", "_humanReadableVariantMap_props_variant", "_ref1", "_ref2", "_ref3", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "vgp_kbGYi", "W88zB8mIG", "T8rQFvSBR", "aBh2HMxgA", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onTapslsegg", "args", "onTap1np0k9f", "onTap1kzpbop", "ref1", "pe", "isDisplayed", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "u", "cx", "RichText2", "Image2", "getLoadingLazyAtYPosition", "css", "Framerv8NNvvLRE", "withCSS", "v8NNvvLRE_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts", "ProcessFAQItemFonts", "getFonts", "v8NNvvLRE_default", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "aBh2HMxgA1jgyv4e", "args", "aBh2HMxgA1cgofm6", "aBh2HMxgAav3h7q", "scopingClassNames", "cx", "ref1", "pe", "defaultLayoutId", "ae", "componentViewport", "useComponentViewport", "LayoutGroup", "u", "ComponentViewportProvider", "css", "FramerRT2RcQg55", "withCSS", "RT2RcQg55_default", "addPropertyControls", "ControlType", "addFonts", "noopReturn", "t", "e", "t", "velocityPerSecond", "calcBezier", "t", "n", "e", "i", "binarySubdivide", "r", "c", "a", "s", "cubicBezier", "o", "noopReturn", "getTForX", "o", "cubicBezier", "__rest", "e", "t", "r", "n", "o", "n", "e", "t", "r", "s", "calcGeneratorVelocity", "t", "n", "r", "a", "velocityPerSecond", "calcDampingRatio", "e", "hasReachedTarget", "spring", "o", "c", "i", "h", "u", "d", "f", "l", "g", "glide", "isOutOfBounds", "nearestBoundary", "m", "calcDelta", "calcLatest", "applyFriction", "p", "M", "checkCatchBoundary", "pregenerateKeyframes", "W", "L", "D", "e", "M", "noopReturn", "k", "asTransformCssVar", "B", "L", "W", "t", "j", "B", "testAnimation", "e", "C", "$", "R", "resolveElements", "e", "t", "n", "createGeneratorEasing", "e", "t", "n", "o", "getGenerator", "i", "s", "r", "a", "getKeyframes", "pregenerateKeyframes", "c", "isNumberOrNull", "l", "f", "u", "d", "calcGeneratorVelocity", "g", "N", "spring", "F", "glide", "U", "inView$1", "resolveElements", "onIntersectionChange", "q", "K", "getElementSize", "notifyTarget", "notifyAll", "createResizeObserver", "resizeElement", "G", "_", "createWindowResizeHandler", "window", "resizeWindow", "resize", "dispatchPointerEvent", "e", "t", "n", "dispatchViewEvent", "se", "o", "i", "s", "__rest", "inView$1", "mouseEvent", "re", "ae", "onPointerUp", "window", "onPointerDown", "ce", "le", "MAX_DUPLICATED_ITEMS", "MAX_AREA", "CSS_VAR_NAME", "supportsWaapi", "supportsRegisterProperty", "window", "Ticker", "props", "slots", "gap", "padding", "paddingPerSide", "paddingTop", "paddingRight", "paddingBottom", "paddingLeft", "speed", "hoverFactor", "direction", "alignment", "sizingOptions", "fadeOptions", "style", "fadeContent", "overflow", "fadeWidth", "fadeInset", "fadeAlpha", "widthType", "heightType", "paddingValue", "isCanvas", "RenderTarget", "filteredSlots", "numChildren", "j", "hasChildren", "isHorizontal", "offset", "useMotionValue", "axis", "minus", "transform", "useTransform", "parentRef", "pe", "childrenRef", "se", "W", "size", "setSize", "ye", "clonedChildren", "dupedChildren", "duplicateBy", "opacity", "fullChildrenArea", "isLayerTooBig", "measure", "te", "parentLength", "firstChild", "lastChild", "childrenLeft", "childrenRight", "childrenTop", "childrenBottom", "childrenWidth", "childrenHeight", "childrenArea", "childrenLength", "childrenStyles", "initialResize", "ue", "frame", "resize", "contentSize", "child", "index", "_child_props", "_child_props1", "_child_props2", "_child_props3", "ref", "p", "LayoutGroup", "q", "i", "childIndex", "_child_props4", "_child_props5", "animateToValue", "initialTime", "prevTime", "xOrY", "isHover", "isReducedMotion", "useReducedMotion", "listRef", "animationRef", "isInView", "useInView", "keyframes", "useAnimationFrame", "t", "delta", "wrap", "fadeDirection", "fadeWidthStart", "fadeWidthEnd", "fadeInsetStart", "clamp", "fadeInsetEnd", "fadeMask", "containerStyle", "u", "motion", "isValidNumber", "placeholderStyles", "emojiStyles", "titleStyles", "subtitleStyles", "addPropertyControls", "ControlType", "num", "min", "max", "value", "TickerFonts", "getFonts", "Ticker", "serializationHash", "variantClassNames", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "getProps", "gap", "height", "id", "width", "props", "createLayoutDependency", "variants", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "variant", "ctG_fDQi4", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "variantClassNames", "layoutDependency", "scopingClassNames", "cx", "serializationHash", "ref1", "pe", "defaultLayoutId", "ae", "componentViewport", "useComponentViewport", "LayoutGroup", "u", "RichText2", "ComponentViewportProvider", "Ticker", "Image2", "css", "FrameruFFVz2_Nx", "withCSS", "uFFVz2_Nx_default", "addPropertyControls", "ControlType", "addFonts", "TickerFonts", "getFontsFromSharedStyle", "fonts", "fontStore", "fonts", "css", "className", "ButtonsPrimaryButtonFonts", "getFonts", "MgIT3hfmM_default", "ButtonsPrimaryButtonTrackLeadEvent1irxtd4WithMappedReactProps8b5nzg", "withMappedReactProps", "withCodeBoundaryForOverrides", "trackLeadEvent", "MgIT3hfmM_exports", "serializationHash", "variantClassNames", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "getProps", "height", "id", "width", "props", "createLayoutDependency", "variants", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "variant", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "variantClassNames", "layoutDependency", "scopingClassNames", "cx", "serializationHash", "LayoutGroup", "u", "RichText2", "ComponentViewportProvider", "SmartComponentScopedContainer", "ButtonsPrimaryButtonTrackLeadEvent1irxtd4WithMappedReactProps8b5nzg", "css", "FramerxUYKtLlNa", "withCSS", "xUYKtLlNa_default", "addFonts", "ButtonsPrimaryButtonFonts", "getFontsFromSharedStyle", "fonts", "NavbarFonts", "getFonts", "GnHJ3EwqU_default", "CTABarFonts", "xUYKtLlNa_default", "MotionDivWithFX", "withFX", "motion", "ImageWithFX", "Image2", "RichTextWithFX", "RichText2", "ButtonsPrimaryButtonFonts", "MgIT3hfmM_default", "ButtonsPrimaryButtonTrackLeadEventuec2tcWithMappedReactProps8b5nzg", "withMappedReactProps", "withCodeBoundaryForOverrides", "trackLeadEvent", "MgIT3hfmM_exports", "HeroTickerFonts", "uFFVz2_Nx_default", "YouTubeFonts", "Youtube", "MotionDivWithOptimizedAppearEffect", "withOptimizedAppearEffect", "PhosphorFonts", "Icon", "ProcessFAQContainer2Fonts", "RT2RcQg55_default", "HelperSectionHeaderFonts", "JYoWWwvWd_default", "CardsFeaturesCardFonts", "AMAzF8NUx_default", "PricingComponentFonts", "dnPkheplk_default", "ButtonsPrimaryButtonTrackLeadEventqyrwsoWithMappedReactProps8b5nzg", "FAQContainerFonts", "n5mjjmxcd_default", "FooterFonts", "XYwj8bUK9_default", "breakpoints", "isBrowser", "serializationHash", "variantClassNames", "animation", "transition1", "animation1", "transition2", "animation2", "transition3", "animation3", "transition4", "transition5", "transition6", "transformTemplate1", "_", "t", "transition7", "animation4", "animation5", "HTMLStyle", "value", "useIsOnFramerCanvas", "p", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "variant", "restProps", "ue", "metadata", "robotsTag", "ie", "baseVariant", "hydratedBaseVariant", "useHydratedBreakpointVariants", "gestureVariant", "scopingClassNames", "cx", "isDisplayed", "elementId", "useRouteElementId", "ref1", "isDisplayed1", "elementId1", "ref2", "isDisplayed2", "elementId2", "ref3", "elementId3", "ref4", "isDisplayed3", "isDisplayed4", "elementId4", "ref5", "elementId5", "ref6", "elementId6", "ref7", "useCustomCursors", "GeneratedComponentContext", "u", "LayoutGroup", "ComponentViewportProvider", "Container", "PropertyOverrides2", "getLoadingLazyAtYPosition", "x", "css", "FrameraugiA20Il", "withCSS", "augiA20Il_default", "addFonts", "getFontsFromSharedStyle", "fonts", "__FramerMetadata__"]
}
