{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/lRDHiNWNVWmE0lqtoVHP/7qT0r3So12155VV5Jq5x/Video.js", "ssg:https://framerusercontent.com/modules/ZroKnBjIgTvxav5CAIKS/NJWUqs1AwI9Ygh1bKbIY/MCYrysSLT.js", "ssg:https://framerusercontent.com/modules/0rU0HX5Q7Kt8OiTWV1vS/KkzuI07GuAwQwi5Fs7mb/Custom_Height.js", "ssg:https://framerusercontent.com/modules/gChHKVEPZjPY00zrVxxy/xgBVs8BpdpSdvvksvVuZ/Flex_Reverse_Order.js", "ssg:https://framerusercontent.com/modules/RoR5co79XF4wDlfsNqch/I9evJM82Ke5qYrHsJWM2/I9ca44g56.js"],
  "sourcesContent": ["import{jsx as _jsx}from\"react/jsx-runtime\";import{addPropertyControls,ControlType,useIsInCurrentNavigationTarget,RenderTarget}from\"framer\";import{isMotionValue,useInView}from\"framer-motion\";import{borderRadiusControl,defaultEvents,useIsBrowserSafari,useIsOnCanvas,useOnEnter,useOnExit,useRadius,useRenderTarget}from\"https://framerusercontent.com/modules/G4IfyjvwmaeSBpdb4TWu/OIjZRBmWDcIE2B6qgG1j/index.js\";// https://framer.com/m/framer/default-utils.js@^0.45.0\nimport{memo,useCallback,useEffect,useMemo,useRef,useState}from\"react\";var ObjectFitType;(function(ObjectFitType){ObjectFitType[\"Fill\"]=\"fill\";ObjectFitType[\"Contain\"]=\"contain\";ObjectFitType[\"Cover\"]=\"cover\";ObjectFitType[\"None\"]=\"none\";ObjectFitType[\"ScaleDown\"]=\"scale-down\";})(ObjectFitType||(ObjectFitType={}));var SrcType;(function(SrcType){SrcType[\"Video\"]=\"Upload\";SrcType[\"Url\"]=\"URL\";})(SrcType||(SrcType={}));const defaultVideo=\"https://framerusercontent.com/assets/MLWPbW1dUQawJLhhun3dBwpgJak.mp4\";// Reduce renders\nfunction getProps(props){const{width,height,topLeft,topRight,bottomRight,bottomLeft,id,children,...rest}=props;return rest;}/**\n * VIDEO\n *\n * @framerIntrinsicWidth 200\n * @framerIntrinsicHeight 112\n *\n * @framerSupportedLayoutWidth fixed\n * @framerSupportedLayoutHeight any-prefer-fixed\n */export function Video(props){const newProps=getProps(props);return /*#__PURE__*/_jsx(VideoMemo,{...newProps});}function usePlaybackControls(videoRef){const isInCurrentNavigationTarget=useIsInCurrentNavigationTarget();const requestingPlay=useRef(false);const isPlayingRef=useRef(false);const setProgress=useCallback(rawProgress=>{if(!videoRef.current)return;const newProgress=(rawProgress===1?.999:rawProgress)*videoRef.current.duration;const isAlreadySet=Math.abs(videoRef.current.currentTime-newProgress)<.1;if(videoRef.current.duration>0&&!isAlreadySet){videoRef.current.currentTime=newProgress;}},[]);const play=useCallback(()=>{const video=videoRef.current;if(!video)return;video.preload=\"auto\"// makes sure browsers don't throttle: https://html.spec.whatwg.org/multipage/media.html#:~:text=When%20the%20media%20resource%20is%20playing%2C%20hints%20to%20the%20user%20agent%20that%20bandwidth%20is%20to%20be%20considered%20scarce%2C%20e.g.%20suggesting%20throttling%20the%20download%20so%20that%20the%20media%20data%20is%20obtained%20at%20the%20slowest%20possible%20rate%20that%20still%20maintains%20consistent%20playback.\n;const isPlaying=video.currentTime>0&&video.onplaying&&!video.paused&&!video.ended&&video.readyState>=video.HAVE_CURRENT_DATA;if(!isPlaying&&video&&!requestingPlay.current&&isInCurrentNavigationTarget){requestingPlay.current=true;isPlayingRef.current=true;video.play().catch(e=>{})// It's likely fine, swallow error\n.finally(()=>requestingPlay.current=false);}},[]);const pause=useCallback(()=>{if(!videoRef.current||requestingPlay.current)return;videoRef.current.pause();isPlayingRef.current=false;},[]);return{play,pause,setProgress,isPlaying:isPlayingRef};}function useAutoplayBehavior({playingProp,muted,loop,playsinline,controls}){const[initialPlayingProp]=useState(()=>playingProp);const[hasPlayingPropChanged,setHasPlayingPropChanged]=useState(false);if(playingProp!==initialPlayingProp&&!hasPlayingPropChanged){setHasPlayingPropChanged(true);}const behavesAsGif=// passing `playing === true` on mount indicates that the video should\n// autoplay, like a GIF\ninitialPlayingProp&&muted&&loop&&playsinline&&!controls&&// Some users of the <Video> component use it by wrapping it with\n// another smart component and adding their own controls on top. (The\n// controls use transitions to control the video: e.g., when clicking\n// the play button, the smart component will transition to a state with\n// <Video playing={true} />.) In this case, we don't want the video to\n// behave as a gif, as it will be weird if the video suddenly started\n// acting as such (and auto-pausing when leaving the viewport) as soon\n// as the site visitor mutes it and clicks \u201CPlay\u201D.\n!hasPlayingPropChanged;let autoplay;if(behavesAsGif)autoplay=\"on-viewport\";else if(initialPlayingProp)autoplay=\"on-mount\";else autoplay=\"no-autoplay\";return autoplay;}const VideoMemo=/*#__PURE__*/memo(function VideoInner(props){const{// default props\nsrcType=\"URL\",srcUrl,srcFile=\"\",posterEnabled=false,controls=false,playing=true,loop=true,muted=true,playsinline=true,restartOnEnter=false,objectFit=\"cover\",backgroundColor=\"rgba(0,0,0,0)\",radius=0,volume=25,startTime:startTimeProp=0,poster,playing:playingProp,progress,onSeeked,onPause,onPlay,onEnd,onClick,onMouseEnter,onMouseLeave,onMouseDown,onMouseUp}=props;const videoRef=useRef();const isSafari=useIsBrowserSafari();const wasPausedOnLeave=useRef(null);const wasEndedOnLeave=useRef(null);const isOnCanvas=useIsOnCanvas();const renderTarget=useRenderTarget();const isStaticRenderer=isOnCanvas||renderTarget===RenderTarget.export;const borderRadius=useRadius(props);// Hard-coding `autoplayBehavior` and `isInViewport` when on canvas as a\n// tiny perf optimization. isStaticRenderer won\u2019t change through the lifecycle of\n// the component, so using these hooks conditionally should be safe\nconst autoplayBehavior=isStaticRenderer?\"no-autoplay\":useAutoplayBehavior({playingProp,muted,loop,playsinline,controls});const isInViewport=isStaticRenderer?true:useInView(videoRef);const isCloseToViewport=isStaticRenderer?false:useInView(videoRef,{margin:\"10%\",once:true});// Video elements behave oddly at 100% duration\nconst startTime=startTimeProp===100?99.9:startTimeProp;const{play,pause,setProgress,isPlaying}=usePlaybackControls(videoRef);// Pause/play via props\nuseEffect(()=>{if(isStaticRenderer)return;if(autoplayBehavior===\"on-viewport\")return;if(playingProp)play();else pause();},[autoplayBehavior,playingProp]);// Pause/play via viewport\nuseEffect(()=>{if(isStaticRenderer)return;// this also explicitly retries playing for videos that play on-mount, which could fail if they're not muted for example\nif(isInViewport&&playingProp&&autoplayBehavior!==\"no-autoplay\")play();if(autoplayBehavior!==\"on-viewport\")return;pause();},[autoplayBehavior,isInViewport,playingProp]);useEffect(()=>{if(!isOnCanvas||poster||posterEnabled||startTime||!videoRef.current)return;// forces a poster to show up when the video is in an iframe; this is needed when `poster` changes\nvideoRef.current.currentTime=.01;},[posterEnabled,poster,startTime]);/**\n     * The Video component has some effects that sync the video element with props\n     * like `startTime`, `progress`, etc. React calls these effects whenever these\n     * props change. However, it also calls them on the first mount, and this is\n     * troublesome \u2013 if we\u2019re doing SSR, and the user changed the video state before\n     * the video was hydrated, the initial `useEffect` call will reset the video\n     * state. To avoid this, we use this flag.\n     */const isMountedAndReadyForProgressChanges=useRef(false);// Allow scrubbling via progress prop\n// 1) Handle cases when the progress prop itself changes\nuseEffect(()=>{if(!isMountedAndReadyForProgressChanges.current){isMountedAndReadyForProgressChanges.current=true;return;}const rawProgressValue=isMotionValue(progress)?progress.get():(progress??0)*.01;setProgress(// When the progress value exists (e.g. <Video startTime={10}\n// progress={50} />), we respect the `progress` value over\n// `startTime`, even if `startTime` changes. That\u2019s because\n// `startTime` == start == changing it shouldn\u2019t affect the current\n// progress\n(rawProgressValue??0)||// Then why fall back to `startTime` when `progress` doesn\u2019t exist,\n// you might ask? Now, that\u2019s for\n// - canvas UX: we want the video progress to change when the user\n//   is scrobbling the \u201CStart Time\u201D in component settings.\n// - backwards compatibility: maybe some users *are* scrobbling\n//   using `startTime` instead of `progress`? We don\u2019t know, and it\n//   always supported it, so let\u2019s not break it\n(startTime??0)/100);},[startTime,srcFile,srcUrl,progress]);// 2) Handle cases when the motion value inside the progress prop changes\nuseEffect(()=>{if(!isMotionValue(progress))return;return progress.on(\"change\",value=>setProgress(value));},[progress]);// (Prototyping) Checking if we need to play on navigation enter\nuseOnEnter(()=>{if(wasPausedOnLeave.current===null)return;if(videoRef.current){// if (restartOnEnter) setProgress(0)\nif(!wasEndedOnLeave&&loop||!wasPausedOnLeave.current)play();}});// (Prototyping) Pausing & saving playing state on navigation exit\nuseOnExit(()=>{if(videoRef.current){wasEndedOnLeave.current=videoRef.current.ended;wasPausedOnLeave.current=videoRef.current.paused;pause();}});const src=useMemo(()=>{let fragment=\"\";// if (\n//     startTime > 0 &&\n//     videoRef.current &&\n//     !isNaN(videoRef.current.duration) &&\n//     !isStaticRenderer\n// ) {\n//     console.log(startTime, videoRef.current.duration)\n//     fragment = `#t=${startTime * videoRef.current.duration}`\n// }\nif(srcType===\"URL\")return srcUrl+fragment;if(srcType===\"Upload\")return srcFile+fragment;},[srcType,srcFile,srcUrl,startTime]);// Autoplay via JS to work in Safari\nuseEffect(()=>{if(isSafari&&videoRef.current&&autoplayBehavior===\"on-mount\"){setTimeout(()=>play(),50);}},[]);// Volume Control\nuseEffect(()=>{if(videoRef.current&&!muted)videoRef.current.volume=(volume??0)/100;},[volume]);// When video is ready, set start-time, then autoplay if needed\nconst handleReady=()=>{const video=videoRef.current;if(!video)return;if(video.currentTime<.3&&startTime>0)setProgress((startTime??0)*.01);if(// when the component updates (e.g. only srcFile/url changes), and the video was already playing, keep playing\nisPlaying.current||autoplayBehavior===\"on-mount\"||playingProp&&autoplayBehavior===\"on-viewport\"&&isInViewport)play();};return /*#__PURE__*/_jsx(\"video\",{onClick,onMouseEnter,onMouseLeave,onMouseDown,onMouseUp,src:src,loop:loop,ref:videoRef,onSeeked:e=>onSeeked?.(e),onPause:e=>onPause?.(e),onPlay:e=>onPlay?.(e),onEnded:e=>onEnd?.(e),autoPlay:isPlaying.current||autoplayBehavior===\"on-mount\"||playingProp&&autoplayBehavior===\"on-viewport\"&&isInViewport,preload:isPlaying.current?\"auto\":isStaticRenderer&&!poster?\"metadata\":autoplayBehavior!==\"on-mount\"&&!isCloseToViewport?\"none\":// `autoplay` overrides this too\n\"metadata\",poster:posterEnabled&&!srcFile&&srcUrl===defaultVideo?\"https://framerusercontent.com/images/5ILRvlYXf72kHSVHqpa3snGzjU.jpg\":posterEnabled&&poster?poster:undefined,onLoadedData:handleReady,controls:controls,muted:isStaticRenderer?true:muted,playsInline:playsinline,style:{cursor:!!onClick?\"pointer\":\"auto\",width:\"100%\",height:\"100%\",borderRadius,display:\"block\",objectFit:objectFit,backgroundColor:backgroundColor,objectPosition:\"50% 50%\"}});});Video.displayName=\"Video\";function capitalizeFirstLetter(value){return value.charAt(0).toUpperCase()+value.slice(1);}export function titleCase(value){const groups=value.match(/[A-Z]{2,}|[A-Z][a-z]+|[a-z]+|[A-Z]|\\d+/gu)||[];return groups.map(capitalizeFirstLetter).join(\" \");}const objectFitOptions=[\"cover\",\"fill\",\"contain\",\"scale-down\",\"none\"];addPropertyControls(Video,{srcType:{type:ControlType.Enum,displaySegmentedControl:true,title:\"Source\",options:[\"URL\",\"Upload\"]},srcUrl:{type:ControlType.String,title:\"URL\",defaultValue:\"https://framerusercontent.com/assets/MLWPbW1dUQawJLhhun3dBwpgJak.mp4\",hidden(props){return props.srcType===\"Upload\";}},srcFile:{type:ControlType.File,title:\"File\",allowedFileTypes:[\"mp4\",\"webm\"],hidden(props){return props.srcType===\"URL\";}},playing:{type:ControlType.Boolean,title:\"Playing\",enabledTitle:\"Yes\",disabledTitle:\"No\"},...borderRadiusControl,posterEnabled:{type:ControlType.Boolean,title:\"Poster\",enabledTitle:\"Yes\",disabledTitle:\"No\"},poster:{type:ControlType.Image,title:\"Image\",hidden:({posterEnabled})=>!posterEnabled,description:\"We recommend adding a poster. [Learn more](https://www.framer.com/help/articles/how-are-videos-optimized-in-framer/).\"},backgroundColor:{type:ControlType.Color,title:\"Background\",defaultValue:\"rgba(0,0,0,0)\"},startTime:{title:\"Start Time\",type:ControlType.Number,min:0,max:100,step:.1,unit:\"%\"},loop:{type:ControlType.Boolean,title:\"Loop\",enabledTitle:\"Yes\",disabledTitle:\"No\"},objectFit:{type:ControlType.Enum,title:\"Fit\",options:objectFitOptions,optionTitles:objectFitOptions.map(titleCase)},// restartOnEnter: {\n//     type: ControlType.Boolean,\n//     title: \"On ReEnter\",\n//     enabledTitle: \"Restart\",\n//     disabledTitle: \"Resume\",\n// },\ncontrols:{type:ControlType.Boolean,title:\"Controls\",enabledTitle:\"Show\",disabledTitle:\"Hide\",defaultValue:false},muted:{type:ControlType.Boolean,title:\"Muted\",enabledTitle:\"Yes\",disabledTitle:\"No\"},volume:{type:ControlType.Number,max:100,min:0,unit:\"%\",hidden:({muted})=>muted,defaultValue:25},onEnd:{type:ControlType.EventHandler},onSeeked:{type:ControlType.EventHandler},onPause:{type:ControlType.EventHandler},onPlay:{type:ControlType.EventHandler},...defaultEvents});\nexport const __FramerMetadata__ = {\"exports\":{\"VideoProps\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"titleCase\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"Video\":{\"type\":\"reactComponent\",\"name\":\"Video\",\"slots\":[],\"annotations\":{\"framerIntrinsicHeight\":\"112\",\"framerContractVersion\":\"1\",\"framerSupportedLayoutWidth\":\"fixed\",\"framerIntrinsicWidth\":\"200\",\"framerSupportedLayoutHeight\":\"any-prefer-fixed\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Video.map", "// Generated by Framer (9f1494d)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,getLoadingLazyAtYPosition,Image,RichText,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";const serializationHash=\"framer-hrTm6\";const variantClassNames={uHV_yigj8:\"framer-v-1l3z7al\"};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 toResponsiveImage=value=>{if(typeof value===\"object\"&&value!==null&&typeof value.src===\"string\"){return value;}return typeof value===\"string\"?{src:value}:undefined;};const transformTemplate1=(_,t)=>`translate(-50%, -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 getProps=({height,iconBackground,iconImage,id,title,width,...props})=>{return{...props,pErTc1CqE:iconImage??props.pErTc1CqE??{src:\"https://framerusercontent.com/images/3vFNCCMcC3u8LjqP4Xo1WazXAw.svg\"},TxrwhPx3L:title??props.TxrwhPx3L??\"Automated Notes\",ZHWXy2Oif:iconBackground??props.ZHWXy2Oif??\"rgb(98, 90, 250)\"};};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,pErTc1CqE,TxrwhPx3L,ZHWXy2Oif,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({defaultVariant:\"uHV_yigj8\",ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const sharedStyleClassNames=[];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-1l3z7al\",className,classNames),\"data-framer-name\":\"Variant 1\",layoutDependency:layoutDependency,layoutId:\"uHV_yigj8\",ref:refBinding,style:{...style},children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-fq4or9\",layoutDependency:layoutDependency,layoutId:\"x2UbLqsgW\",style:{backgroundColor:ZHWXy2Oif,borderBottomLeftRadius:100,borderBottomRightRadius:100,borderTopLeftRadius:100,borderTopRightRadius:100},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+20),pixelHeight:24,pixelWidth:24,sizes:\"30px\",...toResponsiveImage(pErTc1CqE)},className:\"framer-nygbyu\",layoutDependency:layoutDependency,layoutId:\"tAK4RqXOo\",transformTemplate:transformTemplate1})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7T3V0Zml0LTYwMA==\",\"--framer-font-family\":'\"Outfit\", \"Outfit Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"32px\",\"--framer-text-alignment\":\"center\"},children:\"Automated Notes\"})}),className:\"framer-1nvon2d\",\"data-framer-name\":\"Mynd Note Taker\",fonts:[\"GF;Outfit-600\"],layoutDependency:layoutDependency,layoutId:\"aMVRZFgfx\",style:{\"--framer-paragraph-spacing\":\"24px\"},text:TxrwhPx3L,verticalAlignment:\"top\",withExternalLayout:true})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-hrTm6.framer-qmcorl, .framer-hrTm6 .framer-qmcorl { display: block; }\",\".framer-hrTm6.framer-1l3z7al { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-hrTm6 .framer-fq4or9 { flex: none; height: 70px; overflow: visible; position: relative; width: 70px; }\",\".framer-hrTm6 .framer-nygbyu { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 30px); left: 50%; position: absolute; top: 50%; width: 30px; }\",\".framer-hrTm6 .framer-1nvon2d { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 193px; word-break: break-word; word-wrap: break-word; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-hrTm6.framer-1l3z7al { gap: 0px; } .framer-hrTm6.framer-1l3z7al > * { margin: 0px; margin-bottom: calc(8px / 2); margin-top: calc(8px / 2); } .framer-hrTm6.framer-1l3z7al > :first-child { margin-top: 0px; } .framer-hrTm6.framer-1l3z7al > :last-child { margin-bottom: 0px; } }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 110\n * @framerIntrinsicWidth 193\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"auto\",\"auto\"]}}}\n * @framerVariables {\"pErTc1CqE\":\"iconImage\",\"TxrwhPx3L\":\"title\",\"ZHWXy2Oif\":\"iconBackground\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerMCYrysSLT=withCSS(Component,css,\"framer-hrTm6\");export default FramerMCYrysSLT;FramerMCYrysSLT.displayName=\"Feature-List-Icon\";FramerMCYrysSLT.defaultProps={height:110,width:193};addPropertyControls(FramerMCYrysSLT,{pErTc1CqE:{__defaultAssetReference:\"data:framer/asset-reference,3vFNCCMcC3u8LjqP4Xo1WazXAw.svg?originalFilename=calendar.svg&preferredSize=auto\",title:\"Icon Image\",type:ControlType.ResponsiveImage},TxrwhPx3L:{defaultValue:\"Automated Notes\",displayTextArea:false,title:\"Title\",type:ControlType.String},ZHWXy2Oif:{defaultValue:\"rgb(98, 90, 250)\",title:\"Icon-Background\",type:ControlType.Color}});addFonts(FramerMCYrysSLT,[{explicitInter:true,fonts:[{family:\"Outfit\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/outfit/v11/QGYyz_MVcBeNP4NjuGObqx1XmO1I4e6yC4S-EiAou6Y.woff2\",weight:\"600\"}]}],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerMCYrysSLT\",\"slots\":[],\"annotations\":{\"framerIntrinsicHeight\":\"110\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]}}}\",\"framerVariables\":\"{\\\"pErTc1CqE\\\":\\\"iconImage\\\",\\\"TxrwhPx3L\\\":\\\"title\\\",\\\"ZHWXy2Oif\\\":\\\"iconBackground\\\"}\",\"framerIntrinsicWidth\":\"193\",\"framerContractVersion\":\"1\",\"framerImmutableVariables\":\"true\",\"framerComponentViewportWidth\":\"true\",\"framerDisplayContentsDiv\":\"false\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./MCYrysSLT.map", "import{jsx as _jsx}from\"react/jsx-runtime\";// Learn more: https://www.framer.com/developers/overrides/\nexport function calcHeight(Component){return props=>{if(window!=undefined){const viewPortWidth=window.innerWidth;if(viewPortWidth>=1200){return /*#__PURE__*/_jsx(Component,{...props,style:{height:\"calc(100vh - 108px)\"}});}else{return /*#__PURE__*/_jsx(Component,{...props});}}else{return /*#__PURE__*/_jsx(Component,{...props});}};}\nexport const __FramerMetadata__ = {\"exports\":{\"calcHeight\":{\"type\":\"reactHoc\",\"name\":\"calcHeight\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Custom_Height.map", "import{jsx as _jsx}from\"react/jsx-runtime\";// Learn more: https://www.framer.com/developers/overrides/\nexport function rowReverse(Component){return props=>{return /*#__PURE__*/_jsx(Component,{...props,style:{flexDirection:\"row-reverse\"}});};}export function columnReverse(Component){return props=>{if(window!=undefined){const viewPortWidth=window.innerWidth;if(viewPortWidth<1200){return /*#__PURE__*/_jsx(Component,{...props,style:{flexDirection:\"column-reverse\"}});}else{return /*#__PURE__*/_jsx(Component,{...props});}}else{return /*#__PURE__*/_jsx(Component,{...props});}};}\nexport const __FramerMetadata__ = {\"exports\":{\"columnReverse\":{\"type\":\"reactHoc\",\"name\":\"columnReverse\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"rowReverse\":{\"type\":\"reactHoc\",\"name\":\"rowReverse\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Flex_Reverse_Order.map", "// Generated by Framer (47ebf4a)\nimport{jsx as _jsx,jsxs as _jsxs,Fragment as _Fragment}from\"react/jsx-runtime\";import{addFonts,ComponentViewportProvider,Container,cx,GeneratedComponentContext,getFonts,getFontsFromSharedStyle,getLoadingLazyAtYPosition,Image,Link,PropertyOverrides,RichText,SVG,useActiveVariantCallback,useComponentViewport,useCustomCursors,useHydratedBreakpointVariants,useIsOnFramerCanvas,useLocaleInfo,useOverlayState,useRouteElementId,withCodeBoundaryForOverrides,withCSS,withFX,withOptimizedAppearEffect}from\"framer\";import{AnimatePresence,LayoutGroup,motion}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import*as ReactDOM from\"react-dom\";import{Video}from\"https://framerusercontent.com/modules/lRDHiNWNVWmE0lqtoVHP/7qT0r3So12155VV5Jq5x/Video.js\";import{Youtube as YouTube}from\"https://framerusercontent.com/modules/NEd4VmDdsxM3StIUbddO/1de6WpgIbCrKkRcPfQcW/YouTube.js\";import FAQS from\"#framer/local/canvasComponent/BGJFfkBes/BGJFfkBes.js\";import Footer from\"#framer/local/canvasComponent/Hyh0UT6Bu/Hyh0UT6Bu.js\";import FeatureListIcon from\"#framer/local/canvasComponent/MCYrysSLT/MCYrysSLT.js\";import NavbarMain from\"#framer/local/canvasComponent/NBa_kmYy3/NBa_kmYy3.js\";import{calcHeight}from\"#framer/local/codeFile/SfzI7Sr/Custom_Height.js\";import{columnReverse}from\"#framer/local/codeFile/BwNNgCp/Flex_Reverse_Order.js\";import*as sharedStyle1 from\"#framer/local/css/DPlOy0VMe/DPlOy0VMe.js\";import*as sharedStyle from\"#framer/local/css/vB6iurUKz/vB6iurUKz.js\";import metadataProvider from\"#framer/local/webPageMetadata/I9ca44g56/I9ca44g56.js\";const NavbarMainFonts=getFonts(NavbarMain);const YouTubeFonts=getFonts(YouTube);const MotionDivWithOptimizedAppearEffect=withOptimizedAppearEffect(motion.div);const MotionDivCalcHeightrmb6fh=withCodeBoundaryForOverrides(motion.div,{nodeId:\"kpYLLjAaU\",override:calcHeight,scopeId:\"I9ca44g56\"});const RichTextWithFX=withFX(RichText);const MotionDivWithFX=withFX(motion.div);const ImageWithFX=withFX(Image);const MotionDivColumnReverselbyb2o=withCodeBoundaryForOverrides(motion.div,{nodeId:\"hEbRhZn_Y\",override:columnReverse,scopeId:\"I9ca44g56\"});const FeatureListIconFonts=getFonts(FeatureListIcon);const VideoFonts=getFonts(Video);const FAQSFonts=getFonts(FAQS);const FooterFonts=getFonts(Footer);const breakpoints={CiBw77sk3:\"(max-width: 809px)\",lvU7ihE5N:\"(min-width: 810px) and (max-width: 1199px)\",V5Mfa4X9e:\"(min-width: 1200px)\"};const isBrowser=()=>typeof document!==\"undefined\";const serializationHash=\"framer-PD9Ez\";const variantClassNames={CiBw77sk3:\"framer-v-1m418yv\",lvU7ihE5N:\"framer-v-1dbewdz\",V5Mfa4X9e:\"framer-v-1ajrugo\"};const getContainer=()=>{return document.querySelector(\"#template-overlay\")??document.querySelector(\"#overlay\")??document.body;};const Overlay=({children,blockDocumentScrolling,enabled=true})=>{const[visible,setVisible]=useOverlayState({blockDocumentScrolling});return children({hide:()=>setVisible(false),show:()=>setVisible(true),toggle:()=>setVisible(!visible),visible:enabled&&visible});};const transition1={delay:.4,duration:.7,ease:[.21,.01,.16,.98],type:\"tween\"};const animation={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition1,x:0,y:0};const animation1={opacity:.001,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:0,y:150};const transformTemplate1=(_,t)=>`translateX(-50%) ${t}`;const animation2={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0};const transition2={bounce:.2,delay:0,duration:.4,type:\"spring\"};const animation3={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition2,x:0,y:0};const transition3={bounce:.2,delay:0,duration:1,type:\"spring\"};const animation4={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition3,x:0,y:0};const addImageAlt=(image,alt)=>{if(!image||typeof image!==\"object\"){return;}return{...image,alt};};const HTMLStyle=({value})=>{const onCanvas=useIsOnFramerCanvas();if(onCanvas)return null;return /*#__PURE__*/_jsx(\"style\",{dangerouslySetInnerHTML:{__html:value},\"data-framer-html-style\":\"\"});};const humanReadableVariantMap={Desktop:\"V5Mfa4X9e\",Phone:\"CiBw77sk3\",Tablet:\"lvU7ihE5N\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"V5Mfa4X9e\"};};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const fallbackRef=useRef(null);const refBinding=ref??fallbackRef;const defaultLayoutId=React.useId();const{activeLocale,setLocale}=useLocaleInfo();const componentViewport=useComponentViewport();const{style,className,layoutId,variant,...restProps}=getProps(props);React.useEffect(()=>{const metadata=metadataProvider(undefined,activeLocale);if(metadata.robots){let robotsTag=document.querySelector('meta[name=\"robots\"]');if(robotsTag){robotsTag.setAttribute(\"content\",metadata.robots);}else{robotsTag=document.createElement(\"meta\");robotsTag.setAttribute(\"name\",\"robots\");robotsTag.setAttribute(\"content\",metadata.robots);document.head.appendChild(robotsTag);}}},[undefined,activeLocale]);React.useInsertionEffect(()=>{const metadata=metadataProvider(undefined,activeLocale);document.title=metadata.title||\"\";if(metadata.viewport){document.querySelector('meta[name=\"viewport\"]')?.setAttribute(\"content\",metadata.viewport);}},[undefined,activeLocale]);const[baseVariant,hydratedBaseVariant]=useHydratedBreakpointVariants(variant,breakpoints,false);const gestureVariant=undefined;const{activeVariantCallback,delay}=useActiveVariantCallback(undefined);const onTap3bnx0g=({overlay,loadMore})=>activeVariantCallback(async(...args)=>{overlay.toggle();});const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const isDisplayed=()=>{if(!isBrowser())return true;if([\"lvU7ihE5N\",\"CiBw77sk3\"].includes(baseVariant))return false;return true;};const elementId=useRouteElementId(\"ZZKrHtyuy\");const ref1=React.useRef(null);useCustomCursors({});return /*#__PURE__*/_jsx(GeneratedComponentContext.Provider,{value:{primaryVariantId:\"V5Mfa4X9e\",variantClassNames},children:/*#__PURE__*/_jsxs(LayoutGroup,{id:layoutId??defaultLayoutId,children:[/*#__PURE__*/_jsx(HTMLStyle,{value:\"html body { background: rgb(255, 255, 255); }\"}),/*#__PURE__*/_jsxs(motion.div,{...restProps,className:cx(scopingClassNames,\"framer-1ajrugo\",className),ref:refBinding,style:{...style},children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:108,width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1iqy489-container\",nodeId:\"eSnzXz5Hl\",scopeId:\"I9ca44g56\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{CiBw77sk3:{variant:\"R6LE0RS3C\"},lvU7ihE5N:{variant:\"kCOs2RhDe\"}},children:/*#__PURE__*/_jsx(NavbarMain,{eB9A5baF2:\"rgb(249, 249, 255)\",height:\"100%\",id:\"eSnzXz5Hl\",layoutId:\"eSnzXz5Hl\",style:{width:\"100%\"},variant:\"g5PSbA_4I\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1sq4yqf\",children:/*#__PURE__*/_jsxs(MotionDivCalcHeightrmb6fh,{className:\"framer-rmb6fh\",\"data-framer-name\":\"Hero Section Design \",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1ule7kc\",\"data-framer-name\":\"Left\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-15wiwwe\",\"data-framer-name\":\"Frame 2085664113\",children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-2vhr1i\",\"data-framer-name\":\"Frame 2085664114\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{CiBw77sk3:{children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7T3V0Zml0LWV4dHJhYm9sZA==\",\"--framer-font-family\":'\"Outfit\", \"Outfit Placeholder\", sans-serif',\"--framer-font-size\":\"65px\",\"--framer-font-weight\":\"800\",\"--framer-line-height\":\"65px\",\"--framer-text-color\":\"rgb(23, 25, 35)\"},children:\"Practice\"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7T3V0Zml0LWV4dHJhYm9sZA==\",\"--framer-font-family\":'\"Outfit\", \"Outfit Placeholder\", sans-serif',\"--framer-font-size\":\"65px\",\"--framer-font-weight\":\"800\",\"--framer-line-height\":\"65px\",\"--framer-text-color\":\"rgb(23, 25, 35)\"},children:\"Therapy,\"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7T3V0Zml0LWV4dHJhYm9sZA==\",\"--framer-font-family\":'\"Outfit\", \"Outfit Placeholder\", sans-serif',\"--framer-font-size\":\"65px\",\"--framer-font-weight\":\"800\",\"--framer-line-height\":\"65px\",\"--framer-text-color\":\"rgb(23, 25, 35)\"},children:\"Not \"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7T3V0Zml0LWV4dHJhYm9sZA==\",\"--framer-font-family\":'\"Outfit\", \"Outfit Placeholder\", sans-serif',\"--framer-font-size\":\"65px\",\"--framer-font-weight\":\"800\",\"--framer-line-height\":\"65px\",\"--framer-text-color\":\"rgb(23, 25, 35)\"},children:\"Paperwork\"})]})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7T3V0Zml0LWV4dHJhYm9sZA==\",\"--framer-font-family\":'\"Outfit\", \"Outfit Placeholder\", sans-serif',\"--framer-font-size\":\"75px\",\"--framer-font-weight\":\"800\",\"--framer-line-height\":\"75px\",\"--framer-text-color\":\"rgb(23, 25, 35)\"},children:\"Practice\"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7T3V0Zml0LWV4dHJhYm9sZA==\",\"--framer-font-family\":'\"Outfit\", \"Outfit Placeholder\", sans-serif',\"--framer-font-size\":\"75px\",\"--framer-font-weight\":\"800\",\"--framer-line-height\":\"75px\",\"--framer-text-color\":\"rgb(23, 25, 35)\"},children:\"Therapy,\"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7T3V0Zml0LWV4dHJhYm9sZA==\",\"--framer-font-family\":'\"Outfit\", \"Outfit Placeholder\", sans-serif',\"--framer-font-size\":\"75px\",\"--framer-font-weight\":\"800\",\"--framer-line-height\":\"75px\",\"--framer-text-color\":\"rgb(23, 25, 35)\"},children:\"Not \"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7T3V0Zml0LWV4dHJhYm9sZA==\",\"--framer-font-family\":'\"Outfit\", \"Outfit Placeholder\", sans-serif',\"--framer-font-size\":\"75px\",\"--framer-font-weight\":\"800\",\"--framer-line-height\":\"75px\",\"--framer-text-color\":\"rgb(23, 25, 35)\"},children:\"Paperwork\"})]}),className:\"framer-lxnitn\",\"data-framer-name\":\"More of What You Love, Less of What You Don\u2019t\",fonts:[\"FS;Outfit-extrabold\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7T3V0Zml0LTMwMA==\",\"--framer-font-family\":'\"Outfit\", \"Outfit Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"300\",\"--framer-letter-spacing\":\"0.01em\",\"--framer-line-height\":\"30px\",\"--framer-text-color\":\"rgb(92, 106, 127)\"},children:\"We help mental health professionals save 10+ hours per week. Focus on helping clients, not administrative work.\"})}),className:\"framer-df4x0r\",\"data-framer-name\":\"Our platform acts as your full-time team, handling your scheduling, note-taking, and billing, so you can reclaim your time for what truly matters.\",fonts:[\"GF;Outfit-300\"],verticalAlignment:\"top\",withExternalLayout:true})]})}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-17avgmd\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-rco14t\",\"data-framer-name\":\"Frame 2085664115\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-i9gd4w\",\"data-framer-name\":\"Start a Free Trial\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7T3V0Zml0LTYwMA==\",\"--framer-font-family\":'\"Outfit\", \"Outfit Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"120%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:/*#__PURE__*/_jsx(Link,{href:\"https://dash.mynd.app/register/\",motionChild:true,nodeId:\"POT47g7cI\",openInNewTab:true,scopeId:\"I9ca44g56\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-svp2kv\",\"data-styles-preset\":\"vB6iurUKz\",children:\"Start a Free Trial\"})})}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7T3V0Zml0LTYwMA==\",\"--framer-font-family\":'\"Outfit\", \"Outfit Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"120%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"No Credit Card Required\"})]}),className:\"framer-1lgw69b\",\"data-framer-name\":\"Start a Free Trial\",fonts:[\"GF;Outfit-600\"],verticalAlignment:\"center\",withExternalLayout:true})}),/*#__PURE__*/_jsx(Overlay,{children:overlay=>/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-93dwmp\",\"data-framer-name\":\"Frame 2085664116\",id:\"93dwmp\",onTap:onTap3bnx0g({overlay}),children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-cjdnec\",\"data-framer-name\":\"svgexport-21 (9) 1\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:16,intrinsicWidth:16,svg:'<svg width=\"16\" height=\"16\" viewBox=\"0 0 16 16\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<g clip-path=\"url(#clip0_190_3037)\">\\n<path d=\"M-0.300781 8.00007V2.80319C-0.300781 0.650066 2.03047 -0.696808 3.89297 0.381317L8.39609 2.98132L12.8992 5.58132C14.7648 6.65632 14.7648 9.35007 12.8992 10.4251L8.39609 13.0251L3.89297 15.6251C2.03047 16.6969 -0.300781 15.3532 -0.300781 13.2001V8.00007Z\" fill=\"black\"/>\\n</g>\\n<defs>\\n<clipPath id=\"clip0_190_3037\">\\n<rect width=\"16\" height=\"16\" fill=\"white\"/>\\n</clipPath>\\n</defs>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7T3V0Zml0LTUwMA==\",\"--framer-font-family\":'\"Outfit\", \"Outfit Placeholder\", sans-serif',\"--framer-font-size\":\"17px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"0.01em\",\"--framer-line-height\":\"30px\"},children:\"Watch A Demo\"})}),className:\"framer-1nh0wxz\",\"data-framer-name\":\"Watch A Demo\",fonts:[\"GF;Outfit-500\"],verticalAlignment:\"center\",withExternalLayout:true}),/*#__PURE__*/_jsx(AnimatePresence,{children:overlay.visible&&/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/ReactDOM.createPortal(/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(motion.div,{animate:{opacity:1,transition:{delay:0,duration:0,ease:[.5,0,.88,.77],type:\"tween\"}},className:cx(scopingClassNames,\"framer-aru6zm\"),\"data-framer-portal-id\":\"93dwmp\",exit:{opacity:0,transition:{delay:0,duration:0,ease:[.12,.23,.5,1],type:\"tween\"}},initial:{opacity:0},onTap:()=>overlay.hide()},\"q65TIyaSa\"),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:cx(scopingClassNames,\"framer-10od27h-container\"),\"data-framer-portal-id\":\"93dwmp\",isModuleExternal:true,nodeId:\"PmKdEHZwh\",rendersWithMotion:true,scopeId:\"I9ca44g56\",children:/*#__PURE__*/_jsx(YouTube,{borderRadius:0,bottomLeftRadius:0,bottomRightRadius:0,height:\"100%\",id:\"PmKdEHZwh\",isMixedBorderRadius:false,isRed:true,layoutId:\"PmKdEHZwh\",play:\"On\",shouldMute:false,style:{height:\"100%\",width:\"100%\"},thumbnail:\"Medium Quality\",topLeftRadius:0,topRightRadius:0,url:\"https://youtu.be/o75hFkJJTSM\",width:\"100%\"})})})]}),getContainer())})})]})})})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-11gfbp0\",\"data-framer-name\":\"Frame 2085664137\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1lg01n3\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{CiBw77sk3:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+108+0+-450.5+40+1576+0+152+0+0+0),src:\"https://framerusercontent.com/images/oNrIxgqzKSqA0OxCaoDwyuVOA4Q.png\"}},lvU7ihE5N:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+108+0+40+20+816+0+74+10.9+0),src:\"https://framerusercontent.com/images/oNrIxgqzKSqA0OxCaoDwyuVOA4Q.png\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+108+0+0+0+1336+0+74+8+0),src:\"https://framerusercontent.com/images/oNrIxgqzKSqA0OxCaoDwyuVOA4Q.png\"},className:\"framer-smvnnw\",\"data-framer-name\":\"image 64\"})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{CiBw77sk3:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+108+0+-450.5+40+1576+0+152+0+0+0),pixelHeight:68,pixelWidth:180,src:\"https://framerusercontent.com/images/uiEq5P57qEjMM6UFhgSIxDViEWg.png\"}},lvU7ihE5N:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+108+0+40+20+816+0+74+10.9+0),pixelHeight:68,pixelWidth:180,src:\"https://framerusercontent.com/images/uiEq5P57qEjMM6UFhgSIxDViEWg.png\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+108+0+0+0+1336+0+74+8+0),pixelHeight:68,pixelWidth:180,src:\"https://framerusercontent.com/images/uiEq5P57qEjMM6UFhgSIxDViEWg.png\"},className:\"framer-e7xcx0\",\"data-framer-name\":\"image 65\"})})]}),/*#__PURE__*/_jsxs(MotionDivWithOptimizedAppearEffect,{animate:animation,className:\"framer-20a6mv\",\"data-framer-appear-id\":\"20a6mv\",\"data-framer-name\":\"Join these founders\",initial:animation1,optimized:true,style:{transformPerspective:1200},children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-c0taga\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-5yq327\",\"data-framer-name\":\"Founder_imgs\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{CiBw77sk3:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:512,intrinsicWidth:512,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+108+0+-450.5+40+1576+0+152+0+43+0+0+0+0),pixelHeight:1024,pixelWidth:1024,sizes:\"25px\",src:\"https://framerusercontent.com/images/nOcomMxfANxihlsTGHIjVmfx3aM.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/nOcomMxfANxihlsTGHIjVmfx3aM.png?scale-down-to=512 512w,https://framerusercontent.com/images/nOcomMxfANxihlsTGHIjVmfx3aM.png 1024w\"}},lvU7ihE5N:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:512,intrinsicWidth:512,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+108+0+40+20+816+0+74+0+0+0+0+0),pixelHeight:1024,pixelWidth:1024,sizes:\"25px\",src:\"https://framerusercontent.com/images/nOcomMxfANxihlsTGHIjVmfx3aM.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/nOcomMxfANxihlsTGHIjVmfx3aM.png?scale-down-to=512 512w,https://framerusercontent.com/images/nOcomMxfANxihlsTGHIjVmfx3aM.png 1024w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:512,intrinsicWidth:512,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+108+0+0+0+1336+0+74+0+0+0+0+0),pixelHeight:1024,pixelWidth:1024,sizes:\"25px\",src:\"https://framerusercontent.com/images/nOcomMxfANxihlsTGHIjVmfx3aM.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/nOcomMxfANxihlsTGHIjVmfx3aM.png?scale-down-to=512 512w,https://framerusercontent.com/images/nOcomMxfANxihlsTGHIjVmfx3aM.png 1024w\"},className:\"framer-g73bt0\",\"data-border\":true,\"data-framer-name\":\"image\"})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{CiBw77sk3:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:512,intrinsicWidth:512,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+108+0+-450.5+40+1576+0+152+0+43+0+0+0+0),pixelHeight:1024,pixelWidth:1024,sizes:\"25px\",src:\"https://framerusercontent.com/images/ug0KlsedPpmgitNYnkMdpMTysGw.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/ug0KlsedPpmgitNYnkMdpMTysGw.png?scale-down-to=512 512w,https://framerusercontent.com/images/ug0KlsedPpmgitNYnkMdpMTysGw.png 1024w\"}},lvU7ihE5N:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:512,intrinsicWidth:512,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+108+0+40+20+816+0+74+0+0+0+0+0),pixelHeight:1024,pixelWidth:1024,sizes:\"25px\",src:\"https://framerusercontent.com/images/ug0KlsedPpmgitNYnkMdpMTysGw.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/ug0KlsedPpmgitNYnkMdpMTysGw.png?scale-down-to=512 512w,https://framerusercontent.com/images/ug0KlsedPpmgitNYnkMdpMTysGw.png 1024w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:512,intrinsicWidth:512,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+108+0+0+0+1336+0+74+0+0+0+0+0),pixelHeight:1024,pixelWidth:1024,sizes:\"25px\",src:\"https://framerusercontent.com/images/ug0KlsedPpmgitNYnkMdpMTysGw.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/ug0KlsedPpmgitNYnkMdpMTysGw.png?scale-down-to=512 512w,https://framerusercontent.com/images/ug0KlsedPpmgitNYnkMdpMTysGw.png 1024w\"},className:\"framer-ct8ekk\",\"data-border\":true,\"data-framer-name\":\"image\"})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{CiBw77sk3:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:512,intrinsicWidth:512,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+108+0+-450.5+40+1576+0+152+0+43+0+0+0+0),pixelHeight:1024,pixelWidth:1024,sizes:\"25px\",src:\"https://framerusercontent.com/images/Pmf6FqkhGws3Ewg0r7bDQff5gU.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/Pmf6FqkhGws3Ewg0r7bDQff5gU.png?scale-down-to=512 512w,https://framerusercontent.com/images/Pmf6FqkhGws3Ewg0r7bDQff5gU.png 1024w\"}},lvU7ihE5N:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:512,intrinsicWidth:512,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+108+0+40+20+816+0+74+0+0+0+0+0),pixelHeight:1024,pixelWidth:1024,sizes:\"25px\",src:\"https://framerusercontent.com/images/Pmf6FqkhGws3Ewg0r7bDQff5gU.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/Pmf6FqkhGws3Ewg0r7bDQff5gU.png?scale-down-to=512 512w,https://framerusercontent.com/images/Pmf6FqkhGws3Ewg0r7bDQff5gU.png 1024w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:512,intrinsicWidth:512,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+108+0+0+0+1336+0+74+0+0+0+0+0),pixelHeight:1024,pixelWidth:1024,sizes:\"25px\",src:\"https://framerusercontent.com/images/Pmf6FqkhGws3Ewg0r7bDQff5gU.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/Pmf6FqkhGws3Ewg0r7bDQff5gU.png?scale-down-to=512 512w,https://framerusercontent.com/images/Pmf6FqkhGws3Ewg0r7bDQff5gU.png 1024w\"},className:\"framer-5tgplk\",\"data-border\":true,\"data-framer-name\":\"image\",transformTemplate:transformTemplate1})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{CiBw77sk3:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:512,intrinsicWidth:512,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+108+0+-450.5+40+1576+0+152+0+43+0+0+0+0),pixelHeight:1024,pixelWidth:1024,sizes:\"25px\",src:\"https://framerusercontent.com/images/FHJDskYsglCjIBq91tLN9tT2rnY.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/FHJDskYsglCjIBq91tLN9tT2rnY.png?scale-down-to=512 512w,https://framerusercontent.com/images/FHJDskYsglCjIBq91tLN9tT2rnY.png 1024w\"}},lvU7ihE5N:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:512,intrinsicWidth:512,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+108+0+40+20+816+0+74+0+0+0+0+0),pixelHeight:1024,pixelWidth:1024,sizes:\"25px\",src:\"https://framerusercontent.com/images/FHJDskYsglCjIBq91tLN9tT2rnY.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/FHJDskYsglCjIBq91tLN9tT2rnY.png?scale-down-to=512 512w,https://framerusercontent.com/images/FHJDskYsglCjIBq91tLN9tT2rnY.png 1024w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:512,intrinsicWidth:512,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+108+0+0+0+1336+0+74+0+0+0+0+0),pixelHeight:1024,pixelWidth:1024,sizes:\"25px\",src:\"https://framerusercontent.com/images/FHJDskYsglCjIBq91tLN9tT2rnY.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/FHJDskYsglCjIBq91tLN9tT2rnY.png?scale-down-to=512 512w,https://framerusercontent.com/images/FHJDskYsglCjIBq91tLN9tT2rnY.png 1024w\"},className:\"framer-15orbnu\",\"data-border\":true,\"data-framer-name\":\"image\"})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{CiBw77sk3:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:512,intrinsicWidth:512,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+108+0+-450.5+40+1576+0+152+0+43+0+0+0+0),pixelHeight:1024,pixelWidth:1024,sizes:\"25px\",src:\"https://framerusercontent.com/images/BMMPVPrIHJTjOFIOB2GyL6csfdE.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/BMMPVPrIHJTjOFIOB2GyL6csfdE.png?scale-down-to=512 512w,https://framerusercontent.com/images/BMMPVPrIHJTjOFIOB2GyL6csfdE.png 1024w\"}},lvU7ihE5N:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:512,intrinsicWidth:512,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+108+0+40+20+816+0+74+0+0+0+0+0),pixelHeight:1024,pixelWidth:1024,sizes:\"25px\",src:\"https://framerusercontent.com/images/BMMPVPrIHJTjOFIOB2GyL6csfdE.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/BMMPVPrIHJTjOFIOB2GyL6csfdE.png?scale-down-to=512 512w,https://framerusercontent.com/images/BMMPVPrIHJTjOFIOB2GyL6csfdE.png 1024w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:512,intrinsicWidth:512,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+108+0+0+0+1336+0+74+0+0+0+0+0),pixelHeight:1024,pixelWidth:1024,sizes:\"25px\",src:\"https://framerusercontent.com/images/BMMPVPrIHJTjOFIOB2GyL6csfdE.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/BMMPVPrIHJTjOFIOB2GyL6csfdE.png?scale-down-to=512 512w,https://framerusercontent.com/images/BMMPVPrIHJTjOFIOB2GyL6csfdE.png 1024w\"},className:\"framer-9uoqi3\",\"data-border\":true,\"data-framer-name\":\"image\"})})]}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-6bdnfb\",\"data-framer-name\":\"Founder_imgs\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{CiBw77sk3:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:512,intrinsicWidth:512,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+108+0+-450.5+40+1576+0+152+0+43+0+0+25+4.5),pixelHeight:36,pixelWidth:200,src:\"https://framerusercontent.com/images/eEpZru0xnaR8vHAKkFJfNy6jZI.png\"}},lvU7ihE5N:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:512,intrinsicWidth:512,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+108+0+40+20+816+0+74+0+0+0+25+4.5),pixelHeight:36,pixelWidth:200,src:\"https://framerusercontent.com/images/eEpZru0xnaR8vHAKkFJfNy6jZI.png\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:512,intrinsicWidth:512,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+108+0+0+0+1336+0+74+0+0+0+25+4.5),pixelHeight:36,pixelWidth:200,src:\"https://framerusercontent.com/images/eEpZru0xnaR8vHAKkFJfNy6jZI.png\"},className:\"framer-1neodo7\",\"data-framer-name\":\"image\"})})})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7UG9wcGlucy02MDA=\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"141.5%\",\"--framer-text-color\":\"rgb(134, 144, 160)\"},children:\"Join more than 736+ \"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7UG9wcGlucy02MDA=\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"141.5%\",\"--framer-text-color\":\"rgb(134, 144, 160)\"},children:\"mental health professionals\"})]}),className:\"framer-171h8cp\",\"data-framer-name\":\"Fundraising Fieldnotes is read by more than 12,834 founders\",fonts:[\"GF;Poppins-600\"],verticalAlignment:\"top\",withExternalLayout:true})]})]})]})]}),isDisplayed()&&/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+108+0+264.5),sizes:\"550px\",src:\"https://framerusercontent.com/images/mui5qOTEzyoihcof6q11vsow0.png\",srcSet:\"https://framerusercontent.com/images/mui5qOTEzyoihcof6q11vsow0.png?scale-down-to=512 512w,https://framerusercontent.com/images/mui5qOTEzyoihcof6q11vsow0.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/mui5qOTEzyoihcof6q11vsow0.png 1252w\"},className:\"framer-tiee2l hidden-1dbewdz hidden-1m418yv\"})]})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-dplccv\",\"data-framer-name\":\"Does this sound familiar\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1400sd5\",\"data-framer-name\":\"Frame 2085664146\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7T3V0Zml0LTYwMA==\",\"--framer-font-family\":'\"Outfit\", \"Outfit Placeholder\", sans-serif',\"--framer-font-size\":\"36px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"44px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(26, 32, 44)\"},children:\"Does This Sound Familiar?\"})}),className:\"framer-1y2g0cy\",\"data-framer-name\":\"Your All-in-One Mental Health Practice Solution\",fonts:[\"GF;Outfit-600\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1lhypn3\",\"data-framer-name\":\"Frame 2085664179\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1roh5cu\",\"data-framer-name\":\"Frame 2085664178\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{style:{\"--font-selector\":\"RlM7T3V0Zml0LWJsYWNr\",\"--framer-font-family\":'\"Outfit\", sans-serif',\"--framer-font-size\":\"26px\",\"--framer-font-weight\":\"900\",\"--framer-line-height\":\"1.4em\",\"--framer-text-color\":\"var(--token-7f2161f2-bc0b-4d4c-9e6c-5502ae778434, rgb(35, 56, 118))\"},children:\"1\"})}),className:\"framer-hxoxet\",\"data-framer-name\":\"1\",fonts:[\"FS;Outfit-black\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{CiBw77sk3:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1y6dvwk\",\"data-styles-preset\":\"DPlOy0VMe\",style:{\"--framer-text-alignment\":\"center\"},children:\"Drowning in paperwork instead of focusing on your clients\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1y6dvwk\",\"data-styles-preset\":\"DPlOy0VMe\",children:\"Drowning in paperwork instead of focusing on your clients\"})}),className:\"framer-1mnofa6\",\"data-framer-name\":\"Smart scheduling with automated reminders\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-eo6tqv\",\"data-framer-name\":\"Frame 2085664179\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{style:{\"--font-selector\":\"RlM7T3V0Zml0LWJsYWNr\",\"--framer-font-family\":'\"Outfit\", sans-serif',\"--framer-font-size\":\"26px\",\"--framer-font-weight\":\"900\",\"--framer-line-height\":\"1.4em\",\"--framer-text-color\":\"var(--token-7f2161f2-bc0b-4d4c-9e6c-5502ae778434, rgb(35, 56, 118))\"},children:\"2\"})}),className:\"framer-1j82nnj\",\"data-framer-name\":\"2\",fonts:[\"FS;Outfit-black\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{CiBw77sk3:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1y6dvwk\",\"data-styles-preset\":\"DPlOy0VMe\",style:{\"--framer-text-alignment\":\"center\"},children:\"Trying to find time to complete session notes at the end of the week\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1y6dvwk\",\"data-styles-preset\":\"DPlOy0VMe\",children:\"Trying to find time to complete session notes at the end of the week\"})}),className:\"framer-pscs70\",\"data-framer-name\":\"Client intake and documentation\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1h1z5pr\",\"data-framer-name\":\"Frame 2085664179\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{style:{\"--font-selector\":\"RlM7T3V0Zml0LWJsYWNr\",\"--framer-font-family\":'\"Outfit\", sans-serif',\"--framer-font-size\":\"26px\",\"--framer-font-weight\":\"900\",\"--framer-line-height\":\"1.4em\",\"--framer-text-color\":\"var(--token-7f2161f2-bc0b-4d4c-9e6c-5502ae778434, rgb(35, 56, 118))\"},children:\"3\"})}),className:\"framer-1xag8qt\",\"data-framer-name\":\"3\",fonts:[\"FS;Outfit-black\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{CiBw77sk3:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1y6dvwk\",\"data-styles-preset\":\"DPlOy0VMe\",style:{\"--framer-text-alignment\":\"center\"},children:\"Losing revenue from no-shows and late cancellations\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1y6dvwk\",\"data-styles-preset\":\"DPlOy0VMe\",children:\"Losing revenue from no-shows and late cancellations\"})}),className:\"framer-v8s1ct\",\"data-framer-name\":\"Client intake and documentation\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-qlcq3a\",\"data-framer-name\":\"Frame 2085664180\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{style:{\"--font-selector\":\"RlM7T3V0Zml0LWJsYWNr\",\"--framer-font-family\":'\"Outfit\", sans-serif',\"--framer-font-size\":\"26px\",\"--framer-font-weight\":\"900\",\"--framer-line-height\":\"1.4em\",\"--framer-text-color\":\"var(--token-7f2161f2-bc0b-4d4c-9e6c-5502ae778434, rgb(35, 56, 118))\"},children:\"4\"})}),className:\"framer-9kcd8z\",\"data-framer-name\":\"4\",fonts:[\"FS;Outfit-black\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{CiBw77sk3:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1y6dvwk\",\"data-styles-preset\":\"DPlOy0VMe\",style:{\"--framer-text-alignment\":\"center\"},children:\"Struggling to market your practice while managing everything else\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1y6dvwk\",\"data-styles-preset\":\"DPlOy0VMe\",children:\"Struggling to market your practice while managing everything else\"})}),className:\"framer-1y780vs\",\"data-framer-name\":\"Telehealth or in-person session setup\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"RlM7T3V0Zml0LXJlZ3VsYXI=\",\"--framer-font-family\":'\"Outfit\", \"Outfit Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"1.6em\",\"--framer-text-color\":\"var(--token-33923584-a60b-43dd-9aa3-cb81db66a605, rgb(82, 82, 91))\"},children:[\"Mental health practitioners spend an average of\",/*#__PURE__*/_jsxs(\"span\",{style:{\"--framer-text-decoration\":\"underline\",\"--framer-text-transform\":\"capitalize\"},children:[\" \",/*#__PURE__*/_jsx(\"strong\",{children:\"20% of their day\"})]}),\" on administrative tasks. That's time that could be spent helping clients or taking care of yourself.\"]})}),className:\"framer-12firjl\",\"data-framer-name\":\"Your All-in-One Mental Health Practice Solution\",fonts:[\"FS;Outfit-regular\",\"FS;Outfit-bold\"],verticalAlignment:\"top\",withExternalLayout:true})]})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-4su1td\",\"data-framer-name\":\"Introducing Mynd\",children:[/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:false,__framer__enter:animation2,__framer__exit:animation3,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-16aon4k\",\"data-framer-name\":\"Frame 1000001036\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-e5qrri\",\"data-framer-name\":\"Why Choose Mynd?\",children:/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition3},__framer__animateOnce:false,__framer__enter:animation2,__framer__exit:animation4,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7T3V0Zml0LTcwMA==\",\"--framer-font-family\":'\"Outfit\", \"Outfit Placeholder\", sans-serif',\"--framer-font-size\":\"40px\",\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"52px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-23a245a0-89dd-4471-9e48-3df6c8e56362, rgb(98, 90, 250))\",\"--framer-text-transform\":\"capitalize\"},children:\"Introducing Mynd \"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7T3V0Zml0LTcwMA==\",\"--framer-font-family\":'\"Outfit\", \"Outfit Placeholder\", sans-serif',\"--framer-font-size\":\"40px\",\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"52px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(38, 37, 51)\",\"--framer-text-transform\":\"capitalize\"},children:\"AI-Powered Practice Management\"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7T3V0Zml0LTcwMA==\",\"--framer-font-family\":'\"Outfit\", \"Outfit Placeholder\", sans-serif',\"--framer-font-size\":\"40px\",\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"52px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(38, 37, 51)\",\"--framer-text-transform\":\"capitalize\"},children:\"Built for Mental Health\"})]}),className:\"framer-1gnjgcz\",\"data-framer-name\":\"Why Choose Mynd?\",fonts:[\"GF;Outfit-700\"],verticalAlignment:\"center\",withExternalLayout:true})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1jiy2cz\",\"data-framer-name\":\"Group 1000003474\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-iqf75z\",\"data-framer-name\":\"Frame 2085664185\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1fbyhug\",\"data-framer-name\":\"Frame 2085664182\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-vm6p5j\",\"data-framer-name\":\"Frame 2085664179\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7T3V0Zml0LTYwMA==\",\"--framer-font-family\":'\"Outfit\", \"Outfit Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"32px\"},children:\"Before Session\"})}),className:\"framer-xi099l\",\"data-framer-name\":\"Before Session\",fonts:[\"GF;Outfit-600\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-nxrrpb\",\"data-framer-name\":\"Frame 2085664178\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-vrbtd7\",\"data-framer-name\":\"sent\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:35,intrinsicWidth:34,svg:'<svg width=\"34\" height=\"35\" viewBox=\"0 0 34 35\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M29.6948 17.1301C29.8133 13.9314 14.1657 6.40967 12.6919 7.90261C11.0206 9.59559 15.0164 14.6263 15.9164 16.2283C16.4576 17.1916 16.4427 17.6094 15.8273 18.5717C13.0403 22.9299 11.6578 25.1013 12.5171 26.0399C13.8866 27.5361 29.5792 20.2517 29.6948 17.1301Z\" stroke=\"#625AFA\" stroke-width=\"1.5\"/>\\n<path d=\"M16.2635 17.059H21.2133\" stroke=\"#625AFA\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7T3V0Zml0LXJlZ3VsYXI=\",\"--framer-font-family\":'\"Outfit\", \"Outfit Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-letter-spacing\":\"-0.01em\",\"--framer-line-height\":\"28px\",\"--framer-text-color\":\"rgb(93, 107, 127)\"},children:\"Smart scheduling with automated reminders\"})}),className:\"framer-12og2m\",\"data-framer-name\":\"Smart scheduling with automated reminders\",fonts:[\"GF;Outfit-regular\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-uu8yxo\",\"data-framer-name\":\"Frame 2085664179\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-1nldjni\",\"data-framer-name\":\"sent\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:34,intrinsicWidth:34,svg:'<svg width=\"34\" height=\"34\" viewBox=\"0 0 34 34\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M29.6948 17.0712C29.8133 13.8726 14.1657 6.35084 12.6919 7.84377C11.0206 9.53675 15.0164 14.5675 15.9164 16.1695C16.4576 17.1327 16.4427 17.5506 15.8273 18.5129C13.0403 22.8711 11.6578 25.0424 12.5171 25.9811C13.8866 27.4773 29.5792 20.1929 29.6948 17.0712Z\" stroke=\"#625AFA\" stroke-width=\"1.5\"/>\\n<path d=\"M16.2635 17.0001H21.2133\" stroke=\"#625AFA\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7T3V0Zml0LXJlZ3VsYXI=\",\"--framer-font-family\":'\"Outfit\", \"Outfit Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-letter-spacing\":\"-0.01em\",\"--framer-line-height\":\"28px\",\"--framer-text-color\":\"rgb(93, 107, 127)\"},children:\"Client intake and documentation\"})}),className:\"framer-16xcf58\",\"data-framer-name\":\"Client intake and documentation\",fonts:[\"GF;Outfit-regular\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-tlsto2\",\"data-framer-name\":\"Frame 2085664180\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-19lv4md\",\"data-framer-name\":\"sent\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:35,intrinsicWidth:34,svg:'<svg width=\"34\" height=\"35\" viewBox=\"0 0 34 35\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M29.6948 18.0123C29.8133 14.8136 14.1657 7.29188 12.6919 8.78481C11.0206 10.4778 15.0164 15.5085 15.9164 17.1105C16.4576 18.0738 16.4427 18.4916 15.8273 19.4539C13.0403 23.8121 11.6578 25.9835 12.5171 26.9221C13.8866 28.4183 29.5792 21.1339 29.6948 18.0123Z\" stroke=\"#625AFA\" stroke-width=\"1.5\"/>\\n<path d=\"M16.2635 17.9412H21.2133\" stroke=\"#625AFA\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7T3V0Zml0LXJlZ3VsYXI=\",\"--framer-font-family\":'\"Outfit\", \"Outfit Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-letter-spacing\":\"-0.01em\",\"--framer-line-height\":\"28px\",\"--framer-text-color\":\"rgb(93, 107, 127)\"},children:\"Telehealth or in-person session setup\"})}),className:\"framer-1voichq\",\"data-framer-name\":\"Telehealth or in-person session setup\",fonts:[\"GF;Outfit-regular\"],verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{CiBw77sk3:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:652,intrinsicWidth:976,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+2533.6+60+804+0+0+0+0+445),pixelHeight:652,pixelWidth:976,sizes:\"300px\",src:\"https://framerusercontent.com/images/0Y1bmx0NKdsypQLY3mnoZgrUQ.png\",srcSet:\"https://framerusercontent.com/images/0Y1bmx0NKdsypQLY3mnoZgrUQ.png?scale-down-to=512 512w,https://framerusercontent.com/images/0Y1bmx0NKdsypQLY3mnoZgrUQ.png 976w\"}},lvU7ihE5N:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:652,intrinsicWidth:976,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+917.6+60+840+0+0+0+0+360),pixelHeight:652,pixelWidth:976,sizes:\"488px\",src:\"https://framerusercontent.com/images/0Y1bmx0NKdsypQLY3mnoZgrUQ.png\",srcSet:\"https://framerusercontent.com/images/0Y1bmx0NKdsypQLY3mnoZgrUQ.png?scale-down-to=512 512w,https://framerusercontent.com/images/0Y1bmx0NKdsypQLY3mnoZgrUQ.png 976w\"}}},children:/*#__PURE__*/_jsx(ImageWithFX,{__framer__animate:{transition:transition3},__framer__animateOnce:false,__framer__enter:animation2,__framer__exit:animation4,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,background:{alt:\"\",fit:\"fill\",intrinsicHeight:652,intrinsicWidth:976,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1837.6+60+804+0+0+0+0),pixelHeight:652,pixelWidth:976,sizes:\"488px\",src:\"https://framerusercontent.com/images/0Y1bmx0NKdsypQLY3mnoZgrUQ.png\",srcSet:\"https://framerusercontent.com/images/0Y1bmx0NKdsypQLY3mnoZgrUQ.png?scale-down-to=512 512w,https://framerusercontent.com/images/0Y1bmx0NKdsypQLY3mnoZgrUQ.png 976w\"},className:\"framer-15951uy\",\"data-framer-name\":\"Image\"})})]}),/*#__PURE__*/_jsxs(MotionDivColumnReverselbyb2o,{className:\"framer-lbyb2o\",\"data-framer-name\":\"Frame 2085664183\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{CiBw77sk3:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:652,intrinsicWidth:976,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+2533.6+60+804+0+0+831+0+0),pixelHeight:652,pixelWidth:976,sizes:\"300px\",src:\"https://framerusercontent.com/images/kCwWcgbJcPnlZ7pAzXRJAB2IfY.png\",srcSet:\"https://framerusercontent.com/images/kCwWcgbJcPnlZ7pAzXRJAB2IfY.png?scale-down-to=512 512w,https://framerusercontent.com/images/kCwWcgbJcPnlZ7pAzXRJAB2IfY.png 976w\"}},lvU7ihE5N:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:652,intrinsicWidth:976,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+917.6+60+840+0+0+1112+0+0),pixelHeight:652,pixelWidth:976,sizes:\"488px\",src:\"https://framerusercontent.com/images/kCwWcgbJcPnlZ7pAzXRJAB2IfY.png\",srcSet:\"https://framerusercontent.com/images/kCwWcgbJcPnlZ7pAzXRJAB2IfY.png?scale-down-to=512 512w,https://framerusercontent.com/images/kCwWcgbJcPnlZ7pAzXRJAB2IfY.png 976w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:652,intrinsicWidth:976,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1837.6+60+804+0+0+712+0),pixelHeight:652,pixelWidth:976,sizes:\"488px\",src:\"https://framerusercontent.com/images/kCwWcgbJcPnlZ7pAzXRJAB2IfY.png\",srcSet:\"https://framerusercontent.com/images/kCwWcgbJcPnlZ7pAzXRJAB2IfY.png?scale-down-to=512 512w,https://framerusercontent.com/images/kCwWcgbJcPnlZ7pAzXRJAB2IfY.png 976w\"},className:\"framer-omgqa9\",\"data-framer-name\":\"Image\"})}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-d36fel\",\"data-framer-name\":\"Frame 2085664179\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7T3V0Zml0LTYwMA==\",\"--framer-font-family\":'\"Outfit\", \"Outfit Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"32px\"},children:\"During Session\"})}),className:\"framer-1jgzne\",\"data-framer-name\":\"During Session\",fonts:[\"GF;Outfit-600\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1x5iqf9\",\"data-framer-name\":\"Frame 2085664178\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-1390lqg\",\"data-framer-name\":\"sent\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:35,intrinsicWidth:34,svg:'<svg width=\"34\" height=\"35\" viewBox=\"0 0 34 35\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M29.7536 17.1301C29.8721 13.9314 14.2245 6.40967 12.7507 7.90261C11.0794 9.59559 15.0752 14.6263 15.9752 16.2283C16.5165 17.1916 16.5015 17.6094 15.8861 18.5717C13.0991 22.9299 11.7166 25.1013 12.5759 26.0399C13.9454 27.5361 29.638 20.2517 29.7536 17.1301Z\" stroke=\"#625AFA\" stroke-width=\"1.5\"/>\\n<path d=\"M16.3223 17.059H21.272\" stroke=\"#625AFA\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7T3V0Zml0LXJlZ3VsYXI=\",\"--framer-font-family\":'\"Outfit\", \"Outfit Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-letter-spacing\":\"-0.01em\",\"--framer-line-height\":\"28px\",\"--framer-text-color\":\"rgb(93, 107, 127)\"},children:\"Focus 100% on your client\"})}),className:\"framer-ne97gw\",\"data-framer-name\":\"Focus 100% on your client\",fonts:[\"GF;Outfit-regular\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1hi1v3w\",\"data-framer-name\":\"Frame 2085664179\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-s1jlcn\",\"data-framer-name\":\"sent\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:34,intrinsicWidth:34,svg:'<svg width=\"34\" height=\"34\" viewBox=\"0 0 34 34\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M29.7536 17.0712C29.8721 13.8726 14.2245 6.35084 12.7507 7.84377C11.0794 9.53675 15.0752 14.5675 15.9752 16.1695C16.5165 17.1327 16.5015 17.5506 15.8861 18.5129C13.0991 22.8711 11.7166 25.0424 12.5759 25.9811C13.9454 27.4773 29.638 20.1929 29.7536 17.0712Z\" stroke=\"#625AFA\" stroke-width=\"1.5\"/>\\n<path d=\"M16.3223 17.0001H21.272\" stroke=\"#625AFA\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7T3V0Zml0LXJlZ3VsYXI=\",\"--framer-font-family\":'\"Outfit\", \"Outfit Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-letter-spacing\":\"-0.01em\",\"--framer-line-height\":\"28px\",\"--framer-text-color\":\"rgb(93, 107, 127)\"},children:\"AI captures and structures your notes\"})}),className:\"framer-15oph3c\",\"data-framer-name\":\"AI captures and structures your notes\",fonts:[\"GF;Outfit-regular\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-v0en8o\",\"data-framer-name\":\"Frame 2085664180\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-19hnnsq\",\"data-framer-name\":\"sent\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:35,intrinsicWidth:34,svg:'<svg width=\"34\" height=\"35\" viewBox=\"0 0 34 35\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M29.7536 18.0123C29.8721 14.8136 14.2245 7.29188 12.7507 8.78481C11.0794 10.4778 15.0752 15.5085 15.9752 17.1105C16.5165 18.0738 16.5015 18.4916 15.8861 19.4539C13.0991 23.8121 11.7166 25.9835 12.5759 26.9221C13.9454 28.4183 29.638 21.1339 29.7536 18.0123Z\" stroke=\"#625AFA\" stroke-width=\"1.5\"/>\\n<path d=\"M16.3223 17.9412H21.272\" stroke=\"#625AFA\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7T3V0Zml0LXJlZ3VsYXI=\",\"--framer-font-family\":'\"Outfit\", \"Outfit Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-letter-spacing\":\"-0.01em\",\"--framer-line-height\":\"28px\",\"--framer-text-color\":\"rgb(93, 107, 127)\"},children:\"No more typing or manual documentation\"})}),className:\"framer-u4nhcj\",\"data-framer-name\":\"No more typing or manual documentation\",fonts:[\"GF;Outfit-regular\"],verticalAlignment:\"top\",withExternalLayout:true})]})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-myhl77\",\"data-framer-name\":\"Frame 2085664184\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-hpr2i9\",\"data-framer-name\":\"Frame 2085664179\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7T3V0Zml0LTYwMA==\",\"--framer-font-family\":'\"Outfit\", \"Outfit Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"32px\"},children:\"After Session\"})}),className:\"framer-5zk87l\",\"data-framer-name\":\"After Session\",fonts:[\"GF;Outfit-600\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-jfcz9y\",\"data-framer-name\":\"Frame 2085664178\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-67cc95\",\"data-framer-name\":\"sent\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:35,intrinsicWidth:34,svg:'<svg width=\"34\" height=\"35\" viewBox=\"0 0 34 35\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M29.6948 17.1302C29.8133 13.9316 14.1657 6.4098 12.6919 7.90273C11.0206 9.59571 15.0164 14.6265 15.9164 16.2284C16.4576 17.1917 16.4427 17.6095 15.8273 18.5718C13.0403 22.93 11.6578 25.1014 12.5171 26.04C13.8866 27.5362 29.5792 20.2518 29.6948 17.1302Z\" stroke=\"#625AFA\" stroke-width=\"1.5\"/>\\n<path d=\"M16.2635 17.0589H21.2133\" stroke=\"#625AFA\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7T3V0Zml0LXJlZ3VsYXI=\",\"--framer-font-family\":'\"Outfit\", \"Outfit Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-letter-spacing\":\"-0.01em\",\"--framer-line-height\":\"28px\",\"--framer-text-color\":\"rgb(93, 107, 127)\"},children:\"Review AI-generated session notes\"})}),className:\"framer-1xmtmwt\",\"data-framer-name\":\"Review AI-generated session notes\",fonts:[\"GF;Outfit-regular\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-i1nwcl\",\"data-framer-name\":\"Frame 2085664179\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-1e8wq8r\",\"data-framer-name\":\"sent\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:34,intrinsicWidth:34,svg:'<svg width=\"34\" height=\"34\" viewBox=\"0 0 34 34\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M29.6948 17.0714C29.8133 13.8727 14.1657 6.35096 12.6919 7.84389C11.0206 9.53688 15.0164 14.5676 15.9164 16.1696C16.4576 17.1329 16.4427 17.5507 15.8273 18.513C13.0403 22.8712 11.6578 25.0426 12.5171 25.9812C13.8866 27.4774 29.5792 20.193 29.6948 17.0714Z\" stroke=\"#625AFA\" stroke-width=\"1.5\"/>\\n<path d=\"M16.2635 17H21.2133\" stroke=\"#625AFA\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7T3V0Zml0LXJlZ3VsYXI=\",\"--framer-font-family\":'\"Outfit\", \"Outfit Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-letter-spacing\":\"-0.01em\",\"--framer-line-height\":\"28px\",\"--framer-text-color\":\"rgb(93, 107, 127)\"},children:\"Automated billing and payment processing\"})}),className:\"framer-1id0ghy\",\"data-framer-name\":\"Automated billing and payment processing\",fonts:[\"GF;Outfit-regular\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1d08e8c\",\"data-framer-name\":\"Frame 2085664180\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-18q72uo\",\"data-framer-name\":\"sent\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:35,intrinsicWidth:34,svg:'<svg width=\"34\" height=\"35\" viewBox=\"0 0 34 35\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M29.6948 18.0125C29.8133 14.8139 14.1657 7.29212 12.6919 8.78506C11.0206 10.478 15.0164 15.5088 15.9164 17.1107C16.4576 18.074 16.4427 18.4919 15.8273 19.4542C13.0403 23.8123 11.6578 25.9837 12.5171 26.9223C13.8866 28.4186 29.5792 21.1342 29.6948 18.0125Z\" stroke=\"#625AFA\" stroke-width=\"1.5\"/>\\n<path d=\"M16.2635 17.9412H21.2133\" stroke=\"#625AFA\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7T3V0Zml0LXJlZ3VsYXI=\",\"--framer-font-family\":'\"Outfit\", \"Outfit Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-letter-spacing\":\"-0.01em\",\"--framer-line-height\":\"28px\",\"--framer-text-color\":\"rgb(93, 107, 127)\"},children:\"Easy client follow-up and engagement\"})}),className:\"framer-1cnx7js\",\"data-framer-name\":\"Easy client follow-up and engagement\",fonts:[\"GF;Outfit-regular\"],verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{CiBw77sk3:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:652,intrinsicWidth:976,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+2533.6+60+804+0+0+1662+0+446),pixelHeight:652,pixelWidth:976,sizes:\"300px\",src:\"https://framerusercontent.com/images/SUi5oCQG33XwW0P0gdE680Ca4.png\",srcSet:\"https://framerusercontent.com/images/SUi5oCQG33XwW0P0gdE680Ca4.png?scale-down-to=512 512w,https://framerusercontent.com/images/SUi5oCQG33XwW0P0gdE680Ca4.png 976w\"}},lvU7ihE5N:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:652,intrinsicWidth:976,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+917.6+60+840+0+0+1898+0+360),pixelHeight:652,pixelWidth:976,sizes:\"488px\",src:\"https://framerusercontent.com/images/SUi5oCQG33XwW0P0gdE680Ca4.png\",srcSet:\"https://framerusercontent.com/images/SUi5oCQG33XwW0P0gdE680Ca4.png?scale-down-to=512 512w,https://framerusercontent.com/images/SUi5oCQG33XwW0P0gdE680Ca4.png 976w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:652,intrinsicWidth:976,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1837.6+60+804+0+0+1098+0),pixelHeight:652,pixelWidth:976,sizes:\"488px\",src:\"https://framerusercontent.com/images/SUi5oCQG33XwW0P0gdE680Ca4.png\",srcSet:\"https://framerusercontent.com/images/SUi5oCQG33XwW0P0gdE680Ca4.png?scale-down-to=512 512w,https://framerusercontent.com/images/SUi5oCQG33XwW0P0gdE680Ca4.png 976w\"},className:\"framer-1r4tjvo\",\"data-framer-name\":\"Image\"})})]})]}),isDisplayed()&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1vhr4ha hidden-1dbewdz hidden-1m418yv\",\"data-framer-name\":\"Frame 1686551890\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-dvw4xz\",\"data-border\":true,\"data-framer-name\":\"_Checkbox base\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-1v7vrqp\",\"data-framer-name\":\"check\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-4zqav7\",\"data-framer-name\":\"Icon\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:9,intrinsicWidth:12,svg:'<svg width=\"12\" height=\"9\" viewBox=\"-1 -1 12 9\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M9.66665 0.5L3.24998 6.91667L0.333313 4\" stroke=\"white\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n</svg>\\n',withExternalLayout:true})})}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1ozqb99\",\"data-framer-name\":\"Vector 84\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:326,intrinsicWidth:4,svg:'<svg width=\"4\" height=\"326\" viewBox=\"-1 -1 4 326\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M1 0V323.5\" stroke=\"#625AFA\" stroke-width=\"2\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-w8zdrh\",\"data-border\":true,\"data-framer-name\":\"_Checkbox base\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-1cp7sg2\",\"data-framer-name\":\"check\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1tekmuz\",\"data-framer-name\":\"Icon\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:9,intrinsicWidth:12,svg:'<svg width=\"12\" height=\"9\" viewBox=\"-1 -1 12 9\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M9.66665 0L3.24998 6.41667L0.333313 3.5\" stroke=\"white\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n</svg>\\n',withExternalLayout:true})})}),/*#__PURE__*/_jsx(SVG,{className:\"framer-46p7if\",\"data-framer-name\":\"Vector 85\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:326,intrinsicWidth:4,svg:'<svg width=\"4\" height=\"326\" viewBox=\"-1 -1 4 326\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M1 0.5V324\" stroke=\"#A0AEC0\" stroke-width=\"2\" stroke-dasharray=\"11 11\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-vtswen\",\"data-border\":true,\"data-framer-name\":\"_Checkbox base\"})]})]})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-19yxnfl\",\"data-framer-name\":\"For Therapists\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-u8tabx\",\"data-framer-name\":\"Frame 2085664381\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7T3V0Zml0LTYwMA==\",\"--framer-font-family\":'\"Outfit\", \"Outfit Placeholder\", sans-serif',\"--framer-font-size\":\"30px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"38px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Built for Therapists by Therapists\"})}),className:\"framer-10b683t\",\"data-framer-name\":\"Built for Therapists by Therapists\",fonts:[\"GF;Outfit-600\"],verticalAlignment:\"top\",withExternalLayout:true})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-fb9vp0\",\"data-framer-name\":\"Features\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-bi3c8p\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1jdfhpr\",\"data-framer-name\":\"Frame 2085664387\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1oqtbso\",\"data-framer-name\":\"Frame 2085664146\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1ertkbh\",\"data-framer-name\":\"Frame 2085664146\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-7oa6yp\",\"data-framer-name\":\"Frame 2085664177\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7T3V0Zml0LXJlZ3VsYXI=\",\"--framer-font-family\":'\"Outfit\", \"Outfit Placeholder\", sans-serif',\"--framer-letter-spacing\":\"0.01em\",\"--framer-line-height\":\"24px\",\"--framer-text-color\":\"rgb(10, 10, 10)\"},children:\"All-In-One Platform\"})}),className:\"framer-p1dtrr\",\"data-framer-name\":\"Streamlined Workflow\",fonts:[\"GF;Outfit-regular\"],verticalAlignment:\"center\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{lvU7ihE5N:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7T3V0Zml0LTYwMA==\",\"--framer-font-family\":'\"Outfit\", \"Outfit Placeholder\", sans-serif',\"--framer-font-size\":\"36px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"44px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(26, 32, 44)\"},children:\"Comprehensive Features for a Smarter Practice\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7T3V0Zml0LTYwMA==\",\"--framer-font-family\":'\"Outfit\", \"Outfit Placeholder\", sans-serif',\"--framer-font-size\":\"36px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"44px\",\"--framer-text-color\":\"rgb(26, 32, 44)\"},children:\"Comprehensive Features for a Smarter Practice\"})}),className:\"framer-h6m8aw\",\"data-framer-name\":\"Comprehensive Features for a Smarter Practice\",fonts:[\"GF;Outfit-600\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{lvU7ihE5N:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7T3V0Zml0LXJlZ3VsYXI=\",\"--framer-font-family\":'\"Outfit\", \"Outfit Placeholder\", sans-serif',\"--framer-line-height\":\"26px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(93, 107, 127)\"},children:\"AI-powered scheduling, documentation, and billing for a seamless practice.\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7T3V0Zml0LXJlZ3VsYXI=\",\"--framer-font-family\":'\"Outfit\", \"Outfit Placeholder\", sans-serif',\"--framer-line-height\":\"26px\",\"--framer-text-color\":\"rgb(93, 107, 127)\"},children:\"AI-powered scheduling, documentation, and billing for a seamless practice.\"})}),className:\"framer-v3fxbc\",\"data-framer-name\":\"AI-powered scheduling, documentation, and billing for a seamless practice.\",fonts:[\"GF;Outfit-regular\"],verticalAlignment:\"top\",withExternalLayout:true})})]})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1qou85s\",\"data-framer-name\":\"Start a Free Trial\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7T3V0Zml0LTYwMA==\",\"--framer-font-family\":'\"Outfit\", \"Outfit Placeholder\", sans-serif',\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"150%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Explore all features\"})}),className:\"framer-elnmjq\",\"data-framer-name\":\"Explore all features\",fonts:[\"GF;Outfit-600\"],verticalAlignment:\"center\",withExternalLayout:true})})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1x7vnc\",\"data-framer-name\":\"Frame 2085664398\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1pzm9lt\",\"data-framer-name\":\"Frame 2085664385\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{CiBw77sk3:{width:`max((min(${componentViewport?.width||\"100vw\"} - 80px, 1200px) - 116px) / 2, 50px)`,y:(componentViewport?.y||0)+0+5891.6+80+0+0+550+60+0+0+0},lvU7ihE5N:{width:`max((min(${componentViewport?.width||\"100vw\"} - 100px, 1200px) - 188px) / 4, 50px)`,y:(componentViewport?.y||0)+0+5065.6+80+0+0+562+60+0+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:110,width:`max((min(${componentViewport?.width||\"100vw\"} - 240px, 1200px) - 188px) / 4, 50px)`,y:(componentViewport?.y||0)+0+4137.6+80+0+0+462+60+0+0+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-m5b8jg-container\",nodeId:\"hQQ_cWuPc\",scopeId:\"I9ca44g56\",children:/*#__PURE__*/_jsx(FeatureListIcon,{height:\"100%\",id:\"hQQ_cWuPc\",layoutId:\"hQQ_cWuPc\",pErTc1CqE:addImageAlt({src:\"https://framerusercontent.com/images/4OZrc48ucE2r5jjUF5Gs428S18.svg\"},\"\"),style:{width:\"100%\"},TxrwhPx3L:\"Automated Notes\",width:\"100%\",ZHWXy2Oif:\"rgb(239, 247, 255)\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{CiBw77sk3:{width:`max((min(${componentViewport?.width||\"100vw\"} - 80px, 1200px) - 116px) / 2, 50px)`,y:(componentViewport?.y||0)+0+5891.6+80+0+0+550+60+0+0+0},lvU7ihE5N:{width:`max((min(${componentViewport?.width||\"100vw\"} - 100px, 1200px) - 188px) / 4, 50px)`,y:(componentViewport?.y||0)+0+5065.6+80+0+0+562+60+0+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:110,width:`max((min(${componentViewport?.width||\"100vw\"} - 240px, 1200px) - 188px) / 4, 50px)`,y:(componentViewport?.y||0)+0+4137.6+80+0+0+462+60+0+0+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-23q13a-container\",nodeId:\"pizq64e6z\",scopeId:\"I9ca44g56\",children:/*#__PURE__*/_jsx(FeatureListIcon,{height:\"100%\",id:\"pizq64e6z\",layoutId:\"pizq64e6z\",pErTc1CqE:addImageAlt({src:\"https://framerusercontent.com/images/HzqEquHiQjHnVa66v0gyIfnIcs.svg\"},\"\"),style:{width:\"100%\"},TxrwhPx3L:\"Scheduling\",width:\"100%\",ZHWXy2Oif:\"rgb(244, 254, 239)\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{CiBw77sk3:{width:`max((min(${componentViewport?.width||\"100vw\"} - 80px, 1200px) - 116px) / 2, 50px)`,y:(componentViewport?.y||0)+0+5891.6+80+0+0+550+60+0+0+146},lvU7ihE5N:{width:`max((min(${componentViewport?.width||\"100vw\"} - 100px, 1200px) - 188px) / 4, 50px)`,y:(componentViewport?.y||0)+0+5065.6+80+0+0+562+60+0+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:110,width:`max((min(${componentViewport?.width||\"100vw\"} - 240px, 1200px) - 188px) / 4, 50px)`,y:(componentViewport?.y||0)+0+4137.6+80+0+0+462+60+0+0+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-w7euyt-container\",nodeId:\"xUXczx3rI\",scopeId:\"I9ca44g56\",children:/*#__PURE__*/_jsx(FeatureListIcon,{height:\"100%\",id:\"xUXczx3rI\",layoutId:\"xUXczx3rI\",pErTc1CqE:addImageAlt({src:\"https://framerusercontent.com/images/dQD9jsbBXxqiiNyENmqZwMLFU.svg\"},\"\"),style:{width:\"100%\"},TxrwhPx3L:\"Telehealth\",width:\"100%\",ZHWXy2Oif:\"rgb(255, 239, 241)\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{CiBw77sk3:{width:`max((min(${componentViewport?.width||\"100vw\"} - 80px, 1200px) - 116px) / 2, 50px)`,y:(componentViewport?.y||0)+0+5891.6+80+0+0+550+60+0+0+146},lvU7ihE5N:{width:`max((min(${componentViewport?.width||\"100vw\"} - 100px, 1200px) - 188px) / 4, 50px)`,y:(componentViewport?.y||0)+0+5065.6+80+0+0+562+60+0+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:110,width:`max((min(${componentViewport?.width||\"100vw\"} - 240px, 1200px) - 188px) / 4, 50px)`,y:(componentViewport?.y||0)+0+4137.6+80+0+0+462+60+0+0+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1r824dq-container\",nodeId:\"KnwqwVnEE\",scopeId:\"I9ca44g56\",children:/*#__PURE__*/_jsx(FeatureListIcon,{height:\"100%\",id:\"KnwqwVnEE\",layoutId:\"KnwqwVnEE\",pErTc1CqE:addImageAlt({src:\"https://framerusercontent.com/images/QQrCRI0c4MkK51Vm5S03szabm1g.svg\"},\"\"),style:{width:\"100%\"},TxrwhPx3L:\"Billing\",width:\"100%\",ZHWXy2Oif:\"rgb(255, 239, 255)\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{CiBw77sk3:{width:`max((min(${componentViewport?.width||\"100vw\"} - 80px, 1200px) - 116px) / 2, 50px)`,y:(componentViewport?.y||0)+0+5891.6+80+0+0+550+60+0+0+292},lvU7ihE5N:{width:`max((min(${componentViewport?.width||\"100vw\"} - 100px, 1200px) - 188px) / 4, 50px)`,y:(componentViewport?.y||0)+0+5065.6+80+0+0+562+60+0+0+146}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:110,width:`max((min(${componentViewport?.width||\"100vw\"} - 240px, 1200px) - 188px) / 4, 50px)`,y:(componentViewport?.y||0)+0+4137.6+80+0+0+462+60+0+0+146,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1440bqd-container\",nodeId:\"oQG_5BUfy\",scopeId:\"I9ca44g56\",children:/*#__PURE__*/_jsx(FeatureListIcon,{height:\"100%\",id:\"oQG_5BUfy\",layoutId:\"oQG_5BUfy\",pErTc1CqE:addImageAlt({src:\"https://framerusercontent.com/images/o2k3sM87CHTH4LDEmsuw2d4hSI.svg\"},\"\"),style:{width:\"100%\"},TxrwhPx3L:\"Reporting & Analytics\",width:\"100%\",ZHWXy2Oif:\"rgb(255, 252, 239)\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{CiBw77sk3:{width:`max((min(${componentViewport?.width||\"100vw\"} - 80px, 1200px) - 116px) / 2, 50px)`,y:(componentViewport?.y||0)+0+5891.6+80+0+0+550+60+0+0+292},lvU7ihE5N:{width:`max((min(${componentViewport?.width||\"100vw\"} - 100px, 1200px) - 188px) / 4, 50px)`,y:(componentViewport?.y||0)+0+5065.6+80+0+0+562+60+0+0+146}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:110,width:`max((min(${componentViewport?.width||\"100vw\"} - 240px, 1200px) - 188px) / 4, 50px)`,y:(componentViewport?.y||0)+0+4137.6+80+0+0+462+60+0+0+146,children:/*#__PURE__*/_jsx(Container,{className:\"framer-3kh4r0-container\",nodeId:\"NuwN2Y9jD\",scopeId:\"I9ca44g56\",children:/*#__PURE__*/_jsx(FeatureListIcon,{height:\"100%\",id:\"NuwN2Y9jD\",layoutId:\"NuwN2Y9jD\",pErTc1CqE:addImageAlt({src:\"https://framerusercontent.com/images/9wNYC9V8HHrZxajDzTq6mAbYBTE.svg\"},\"\"),style:{width:\"100%\"},TxrwhPx3L:\"Patient Portal\",width:\"100%\",ZHWXy2Oif:\"rgb(239, 247, 255)\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{CiBw77sk3:{width:`max((min(${componentViewport?.width||\"100vw\"} - 80px, 1200px) - 116px) / 2, 50px)`,y:(componentViewport?.y||0)+0+5891.6+80+0+0+550+60+0+0+438},lvU7ihE5N:{width:`max((min(${componentViewport?.width||\"100vw\"} - 100px, 1200px) - 188px) / 4, 50px)`,y:(componentViewport?.y||0)+0+5065.6+80+0+0+562+60+0+0+146}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:110,width:`max((min(${componentViewport?.width||\"100vw\"} - 240px, 1200px) - 188px) / 4, 50px)`,y:(componentViewport?.y||0)+0+4137.6+80+0+0+462+60+0+0+146,children:/*#__PURE__*/_jsx(Container,{className:\"framer-33bp2e-container\",nodeId:\"DsZsWL_dA\",scopeId:\"I9ca44g56\",children:/*#__PURE__*/_jsx(FeatureListIcon,{height:\"100%\",id:\"DsZsWL_dA\",layoutId:\"DsZsWL_dA\",pErTc1CqE:addImageAlt({src:\"https://framerusercontent.com/images/yGywAiBVnCYg1t987N2kiVh0js.svg\"},\"\"),style:{width:\"100%\"},TxrwhPx3L:\"Marketing\",width:\"100%\",ZHWXy2Oif:\"rgb(244, 254, 239)\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{CiBw77sk3:{width:`max((min(${componentViewport?.width||\"100vw\"} - 80px, 1200px) - 116px) / 2, 50px)`,y:(componentViewport?.y||0)+0+5891.6+80+0+0+550+60+0+0+438},lvU7ihE5N:{width:`max((min(${componentViewport?.width||\"100vw\"} - 100px, 1200px) - 188px) / 4, 50px)`,y:(componentViewport?.y||0)+0+5065.6+80+0+0+562+60+0+0+146}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:110,width:`max((min(${componentViewport?.width||\"100vw\"} - 240px, 1200px) - 188px) / 4, 50px)`,y:(componentViewport?.y||0)+0+4137.6+80+0+0+462+60+0+0+146,children:/*#__PURE__*/_jsx(Container,{className:\"framer-y3h6it-container\",nodeId:\"fi6l111NF\",scopeId:\"I9ca44g56\",children:/*#__PURE__*/_jsx(FeatureListIcon,{height:\"100%\",id:\"fi6l111NF\",layoutId:\"fi6l111NF\",pErTc1CqE:addImageAlt({src:\"https://framerusercontent.com/images/kCoYXKt9ZCNDJVdTnmqrt83Hsc.svg\"},\"\"),style:{width:\"100%\"},TxrwhPx3L:\"Intake & Onboarding\",width:\"100%\",ZHWXy2Oif:\"rgb(255, 239, 241)\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{CiBw77sk3:{width:`max((min(${componentViewport?.width||\"100vw\"} - 80px, 1200px) - 116px) / 2, 50px)`,y:(componentViewport?.y||0)+0+5891.6+80+0+0+550+60+0+0+584},lvU7ihE5N:{width:`max((min(${componentViewport?.width||\"100vw\"} - 100px, 1200px) - 188px) / 4, 50px)`,y:(componentViewport?.y||0)+0+5065.6+80+0+0+562+60+0+0+292}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:110,width:`max((min(${componentViewport?.width||\"100vw\"} - 240px, 1200px) - 188px) / 4, 50px)`,y:(componentViewport?.y||0)+0+4137.6+80+0+0+462+60+0+0+292,children:/*#__PURE__*/_jsx(Container,{className:\"framer-7iy4vn-container\",nodeId:\"r476HOznv\",scopeId:\"I9ca44g56\",children:/*#__PURE__*/_jsx(FeatureListIcon,{height:\"100%\",id:\"r476HOznv\",layoutId:\"r476HOznv\",pErTc1CqE:addImageAlt({src:\"https://framerusercontent.com/images/ZM6qGQCDv2yf7mmFu23porZAJqQ.svg\"},\"\"),style:{width:\"100%\"},TxrwhPx3L:\"Forms\",width:\"100%\",ZHWXy2Oif:\"rgb(255, 239, 255)\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{CiBw77sk3:{width:`max((min(${componentViewport?.width||\"100vw\"} - 80px, 1200px) - 116px) / 2, 50px)`,y:(componentViewport?.y||0)+0+5891.6+80+0+0+550+60+0+0+584},lvU7ihE5N:{width:`max((min(${componentViewport?.width||\"100vw\"} - 100px, 1200px) - 188px) / 4, 50px)`,y:(componentViewport?.y||0)+0+5065.6+80+0+0+562+60+0+0+292}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:110,width:`max((min(${componentViewport?.width||\"100vw\"} - 240px, 1200px) - 188px) / 4, 50px)`,y:(componentViewport?.y||0)+0+4137.6+80+0+0+462+60+0+0+292,children:/*#__PURE__*/_jsx(Container,{className:\"framer-9hccep-container\",nodeId:\"AkRVlXsYU\",scopeId:\"I9ca44g56\",children:/*#__PURE__*/_jsx(FeatureListIcon,{height:\"100%\",id:\"AkRVlXsYU\",layoutId:\"AkRVlXsYU\",pErTc1CqE:addImageAlt({src:\"https://framerusercontent.com/images/Qst7k6cjcCQlc8CmhMtG8ODajc.svg\"},\"\"),style:{width:\"100%\"},TxrwhPx3L:\"AI Assistants\",width:\"100%\",ZHWXy2Oif:\"rgb(255, 252, 239)\"})})})})]})})]})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1ob0nva\",\"data-framer-name\":\"Reviews\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-5g0c1v\",\"data-framer-name\":\"Frame 2085664146\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-j0fcn9\",\"data-framer-name\":\"Frame 2085664146\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-mru8f7\",\"data-framer-name\":\"Frame 2085664177\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7T3V0Zml0LXJlZ3VsYXI=\",\"--framer-font-family\":'\"Outfit\", \"Outfit Placeholder\", sans-serif',\"--framer-letter-spacing\":\"0.01em\",\"--framer-line-height\":\"24px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(10, 10, 10)\"},children:\"Testimonials\"})}),className:\"framer-pp942n\",\"data-framer-name\":\"Testimonials\",fonts:[\"GF;Outfit-regular\"],verticalAlignment:\"center\",withExternalLayout:true})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7T3V0Zml0LTYwMA==\",\"--framer-font-family\":'\"Outfit\", \"Outfit Placeholder\", sans-serif',\"--framer-font-size\":\"36px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"44px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(26, 32, 44)\"},children:\"What Our Clients Say\"})}),className:\"framer-1pw7k5b\",\"data-framer-name\":\"What Our Clients Say\",fonts:[\"GF;Outfit-600\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7T3V0Zml0LXJlZ3VsYXI=\",\"--framer-font-family\":'\"Outfit\", \"Outfit Placeholder\", sans-serif',\"--framer-line-height\":\"26px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(93, 107, 127)\"},children:\"Hear from mental health professionals who have transformed their practice with our platform.\"})}),className:\"framer-runs7j\",\"data-framer-name\":\"Hear from mental health professionals who have transformed their practice with our platform.\",fonts:[\"GF;Outfit-regular\"],verticalAlignment:\"top\",withExternalLayout:true})]})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-8r6ctn\",\"data-framer-name\":\"Frame 2085664396\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1fgmibi\",\"data-framer-name\":\"Frame 2085664391\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-bg3yj2\",\"data-framer-name\":\"Frame 2085664399\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7T3V0Zml0LTYwMA==\",\"--framer-font-family\":'\"Outfit\", \"Outfit Placeholder\", sans-serif',\"--framer-font-size\":\"36px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"44px\",\"--framer-text-color\":\"rgb(26, 32, 44)\"},children:\"Real Stories, Real Impact\"})}),className:\"framer-sl3kob\",\"data-framer-name\":\"Real Stories, Real Impact\",fonts:[\"GF;Outfit-600\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7T3V0Zml0LXJlZ3VsYXI=\",\"--framer-font-family\":'\"Outfit\", \"Outfit Placeholder\", sans-serif',\"--framer-line-height\":\"26px\",\"--framer-text-color\":\"rgb(93, 107, 127)\"},children:\"Watch how mental health professionals streamline their workflow and enhance client care.\"})}),className:\"framer-fp76p4\",\"data-framer-name\":\"Watch how therapists and counselors streamline their workflow and enhance client care.\",fonts:[\"GF;Outfit-regular\"],verticalAlignment:\"top\",withExternalLayout:true})]})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-zof9k4\",\"data-framer-name\":\"Frame 2085664395\",children:/*#__PURE__*/_jsx(Overlay,{children:overlay1=>/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{CiBw77sk3:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+7415.6+80+462+0+392+0),pixelHeight:1249,pixelWidth:706,positionX:\"center\",positionY:\"top\",sizes:\"300px\",src:\"https://framerusercontent.com/images/9DrZqyg7tfd5Hp1V4xSQxETiBw.png\",srcSet:\"https://framerusercontent.com/images/9DrZqyg7tfd5Hp1V4xSQxETiBw.png?scale-down-to=1024 578w,https://framerusercontent.com/images/9DrZqyg7tfd5Hp1V4xSQxETiBw.png 706w\"}},lvU7ihE5N:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+6309.6+80+462+0+0),pixelHeight:1249,pixelWidth:706,positionX:\"center\",positionY:\"top\",sizes:\"340px\",src:\"https://framerusercontent.com/images/9DrZqyg7tfd5Hp1V4xSQxETiBw.png\",srcSet:\"https://framerusercontent.com/images/9DrZqyg7tfd5Hp1V4xSQxETiBw.png?scale-down-to=1024 578w,https://framerusercontent.com/images/9DrZqyg7tfd5Hp1V4xSQxETiBw.png 706w\"}}},children:/*#__PURE__*/_jsxs(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+5281.6+80+462+0+0),pixelHeight:1249,pixelWidth:706,positionX:\"center\",positionY:\"top\",sizes:\"340px\",src:\"https://framerusercontent.com/images/9DrZqyg7tfd5Hp1V4xSQxETiBw.png\",srcSet:\"https://framerusercontent.com/images/9DrZqyg7tfd5Hp1V4xSQxETiBw.png?scale-down-to=1024 578w,https://framerusercontent.com/images/9DrZqyg7tfd5Hp1V4xSQxETiBw.png 706w\"},className:\"framer-mp66yy\",\"data-framer-name\":\"Frame 2085664392\",id:\"mp66yy\",onTap:onTap3bnx0g({overlay:overlay1}),children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-bf68dn\",\"data-border\":true,\"data-framer-name\":\"Frame 2085664397\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-1c2g1kx\",\"data-framer-name\":\"play\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-kfas7h\",\"data-framer-name\":\"Icon\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:22,intrinsicWidth:17,svg:'<svg width=\"17\" height=\"22\" viewBox=\"-1 -1 17 22\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M0 2.98951C0 2.01835 0 1.53277 0.20249 1.2651C0.378894 1.03191 0.648522 0.887606 0.940398 0.870179C1.27544 0.850174 1.67946 1.11953 2.48752 1.65823L13.0031 8.6686C13.6708 9.11373 14.0046 9.33629 14.1209 9.61681C14.2227 9.86207 14.2227 10.1377 14.1209 10.383C14.0046 10.6635 13.6708 10.886 13.0031 11.3312L2.48752 18.3415C1.67946 18.8802 1.27544 19.1496 0.940398 19.1296C0.648522 19.1122 0.378894 18.9679 0.20249 18.7347C0 18.467 0 17.9814 0 17.0103V2.98951Z\" fill=\"white\"/>\\n</svg>\\n',withExternalLayout:true})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-176hut5\",\"data-framer-name\":\"User Identity\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7T3V0Zml0LTYwMA==\",\"--framer-font-family\":'\"Outfit\", \"Outfit Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"0.01em\",\"--framer-line-height\":\"30px\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Asli S.\"})}),className:\"framer-clcwsm\",\"data-framer-name\":\"Rebecca Smith\",fonts:[\"GF;Outfit-600\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7T3V0Zml0LXJlZ3VsYXI=\",\"--framer-font-family\":'\"Outfit\", \"Outfit Placeholder\", sans-serif',\"--framer-letter-spacing\":\"0.01em\",\"--framer-line-height\":\"24px\",\"--framer-text-color\":\"rgb(241, 244, 249)\"},children:\"Therapist\"})}),className:\"framer-rys8ev\",\"data-framer-name\":\"CEO, Consonants\",fonts:[\"GF;Outfit-regular\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(AnimatePresence,{children:overlay1.visible&&/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/ReactDOM.createPortal(/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(motion.div,{animate:{opacity:1,transition:{delay:0,duration:0,ease:[.5,0,.88,.77],type:\"tween\"}},className:cx(scopingClassNames,\"framer-r0gjhn\"),\"data-framer-portal-id\":\"mp66yy\",exit:{opacity:0,transition:{delay:0,duration:0,ease:[.12,.23,.5,1],type:\"tween\"}},initial:{opacity:0},onTap:()=>overlay1.hide()},\"P5erwN6Th\"),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:cx(scopingClassNames,\"framer-1huuiyp-container\"),\"data-framer-portal-id\":\"mp66yy\",isModuleExternal:true,nodeId:\"WPmXj4rHv\",scopeId:\"I9ca44g56\",children:/*#__PURE__*/_jsx(Video,{backgroundColor:\"rgba(0, 0, 0, 0)\",borderRadius:0,bottomLeftRadius:0,bottomRightRadius:0,controls:false,height:\"100%\",id:\"WPmXj4rHv\",isMixedBorderRadius:false,layoutId:\"WPmXj4rHv\",loop:true,muted:false,objectFit:\"contain\",playing:true,posterEnabled:true,srcType:\"URL\",srcUrl:\"https://mediamynd.s3.ca-central-1.amazonaws.com/public/Asli+-+testimonial.mp4\",startTime:0,style:{height:\"100%\",width:\"100%\"},topLeftRadius:0,topRightRadius:0,volume:25,width:\"100%\"})})})]}),getContainer())})})]})})})})})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-f0db3c\",\"data-framer-name\":\"Frame 2085664390\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1bobctc\",\"data-framer-name\":\"Frame 2085664388\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-x3n6go\",\"data-framer-name\":\"Card\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-teiuy7\",\"data-framer-name\":\"client feedback\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-12ze6c\",\"data-framer-name\":\"Rating star\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:24,intrinsicWidth:136,svg:'<svg width=\"136\" height=\"24\" viewBox=\"0 0 136 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M12 0L14.6942 8.2918H23.4127L16.3593 13.4164L19.0534 21.7082L12 16.5836L4.94658 21.7082L7.64074 13.4164L0.587322 8.2918H9.30583L12 0Z\" fill=\"#EF7D14\"/>\\n<path d=\"M40 0L42.6942 8.2918H51.4127L44.3593 13.4164L47.0534 21.7082L40 16.5836L32.9466 21.7082L35.6407 13.4164L28.5873 8.2918H37.3058L40 0Z\" fill=\"#EF7D14\"/>\\n<path d=\"M68 0L70.6942 8.2918H79.4127L72.3593 13.4164L75.0534 21.7082L68 16.5836L60.9466 21.7082L63.6407 13.4164L56.5873 8.2918H65.3058L68 0Z\" fill=\"#EF7D14\"/>\\n<path d=\"M96 0L98.6942 8.2918H107.413L100.359 13.4164L103.053 21.7082L96 16.5836L88.9466 21.7082L91.6407 13.4164L84.5873 8.2918H93.3058L96 0Z\" fill=\"#EF7D14\"/>\\n<path d=\"M124 0L126.694 8.2918H135.413L128.359 13.4164L131.053 21.7082L124 16.5836L116.947 21.7082L119.641 13.4164L112.587 8.2918H121.306L124 0Z\" fill=\"#EF7D14\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7T3V0Zml0LXJlZ3VsYXI=\",\"--framer-font-family\":'\"Outfit\", \"Outfit Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-letter-spacing\":\"-0.01em\",\"--framer-line-height\":\"28px\",\"--framer-text-color\":\"rgb(63, 72, 106)\"},children:\"From the onboarding, to learning how to use the platform, to working with the team, the whole experience has been phenomenal.\"})}),className:\"framer-4zg3wz\",\"data-framer-name\":\"Card comtent\",fonts:[\"GF;Outfit-regular\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1nhhf8r\",\"data-framer-name\":\"User Identity\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7T3V0Zml0LTYwMA==\",\"--framer-font-family\":'\"Outfit\", \"Outfit Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"0.01em\",\"--framer-line-height\":\"30px\",\"--framer-text-color\":\"rgb(19, 33, 59)\"},children:\"Asli S.\"})}),className:\"framer-1t54lql\",\"data-framer-name\":\"Rebecca Smith -\",fonts:[\"GF;Outfit-600\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7T3V0Zml0LXJlZ3VsYXI=\",\"--framer-font-family\":'\"Outfit\", \"Outfit Placeholder\", sans-serif',\"--framer-letter-spacing\":\"0.01em\",\"--framer-line-height\":\"24px\",\"--framer-text-color\":\"rgb(63, 72, 106)\"},children:\"Therapist\"})}),className:\"framer-196ihzh\",\"data-framer-name\":\"CEO, Consonants\",fonts:[\"GF;Outfit-regular\"],verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1a74vm3\",\"data-framer-name\":\"Card\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1ayxhys\",\"data-framer-name\":\"client feedback\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-1ltfm3l\",\"data-framer-name\":\"Rating star\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:24,intrinsicWidth:136,svg:'<svg width=\"136\" height=\"24\" viewBox=\"0 0 136 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M12 0L14.6942 8.2918H23.4127L16.3593 13.4164L19.0534 21.7082L12 16.5836L4.94658 21.7082L7.64074 13.4164L0.587322 8.2918H9.30583L12 0Z\" fill=\"#EF7D14\"/>\\n<path d=\"M40 0L42.6942 8.2918H51.4127L44.3593 13.4164L47.0534 21.7082L40 16.5836L32.9466 21.7082L35.6407 13.4164L28.5873 8.2918H37.3058L40 0Z\" fill=\"#EF7D14\"/>\\n<path d=\"M68 0L70.6942 8.2918H79.4127L72.3593 13.4164L75.0534 21.7082L68 16.5836L60.9466 21.7082L63.6407 13.4164L56.5873 8.2918H65.3058L68 0Z\" fill=\"#EF7D14\"/>\\n<path d=\"M96 0L98.6942 8.2918H107.413L100.359 13.4164L103.053 21.7082L96 16.5836L88.9466 21.7082L91.6407 13.4164L84.5873 8.2918H93.3058L96 0Z\" fill=\"#EF7D14\"/>\\n<path d=\"M124 0L126.694 8.2918H135.413L128.359 13.4164L131.053 21.7082L124 16.5836L116.947 21.7082L119.641 13.4164L112.587 8.2918H121.306L124 0Z\" fill=\"#EF7D14\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7T3V0Zml0LXJlZ3VsYXI=\",\"--framer-font-family\":'\"Outfit\", \"Outfit Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-letter-spacing\":\"-0.01em\",\"--framer-line-height\":\"28px\",\"--framer-text-color\":\"rgb(63, 72, 106)\"},children:\"The platform is incredibly intuitive, and I was up and running in minutes. Their support team responds almost instantly whenever I have questions.\"})}),className:\"framer-1ye85gv\",\"data-framer-name\":\"Card comtent\",fonts:[\"GF;Outfit-regular\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-cfd1j9\",\"data-framer-name\":\"User Identity\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7T3V0Zml0LTYwMA==\",\"--framer-font-family\":'\"Outfit\", \"Outfit Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"0.01em\",\"--framer-line-height\":\"30px\",\"--framer-text-color\":\"rgb(19, 33, 59)\"},children:\"Dr. Rachel M.\"})}),className:\"framer-p1tvjp\",\"data-framer-name\":\"Rebecca Smith -\",fonts:[\"GF;Outfit-600\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7T3V0Zml0LXJlZ3VsYXI=\",\"--framer-font-family\":'\"Outfit\", \"Outfit Placeholder\", sans-serif',\"--framer-letter-spacing\":\"0.01em\",\"--framer-line-height\":\"24px\",\"--framer-text-color\":\"rgb(63, 72, 106)\"},children:\"Psychologist\"})}),className:\"framer-1s0aved\",\"data-framer-name\":\"CEO, Consonants\",fonts:[\"GF;Outfit-regular\"],verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-njc13\",\"data-framer-name\":\"Card\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1mrb3ny\",\"data-framer-name\":\"client feedback\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-1xf7ycl\",\"data-framer-name\":\"Rating star\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:24,intrinsicWidth:136,svg:'<svg width=\"136\" height=\"24\" viewBox=\"0 0 136 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M12 0L14.6942 8.2918H23.4127L16.3593 13.4164L19.0534 21.7082L12 16.5836L4.94658 21.7082L7.64074 13.4164L0.587322 8.2918H9.30583L12 0Z\" fill=\"#EF7D14\"/>\\n<path d=\"M40 0L42.6942 8.2918H51.4127L44.3593 13.4164L47.0534 21.7082L40 16.5836L32.9466 21.7082L35.6407 13.4164L28.5873 8.2918H37.3058L40 0Z\" fill=\"#EF7D14\"/>\\n<path d=\"M68 0L70.6942 8.2918H79.4127L72.3593 13.4164L75.0534 21.7082L68 16.5836L60.9466 21.7082L63.6407 13.4164L56.5873 8.2918H65.3058L68 0Z\" fill=\"#EF7D14\"/>\\n<path d=\"M96 0L98.6942 8.2918H107.413L100.359 13.4164L103.053 21.7082L96 16.5836L88.9466 21.7082L91.6407 13.4164L84.5873 8.2918H93.3058L96 0Z\" fill=\"#EF7D14\"/>\\n<path d=\"M124 0L126.694 8.2918H135.413L128.359 13.4164L131.053 21.7082L124 16.5836L116.947 21.7082L119.641 13.4164L112.587 8.2918H121.306L124 0Z\" fill=\"#EF7D14\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7T3V0Zml0LXJlZ3VsYXI=\",\"--framer-font-family\":'\"Outfit\", \"Outfit Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-letter-spacing\":\"-0.01em\",\"--framer-line-height\":\"28px\",\"--framer-text-color\":\"rgb(63, 72, 106)\"},children:\"Mynd saves at least 5-10 hours weekly on paperwork. The interface is simple even for someone not tech-savvy like me. Support is always helpful.\"})}),className:\"framer-vt7el1\",\"data-framer-name\":\"Card comtent\",fonts:[\"GF;Outfit-regular\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-7piw8k\",\"data-framer-name\":\"User Identity\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7T3V0Zml0LTYwMA==\",\"--framer-font-family\":'\"Outfit\", \"Outfit Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"0.01em\",\"--framer-line-height\":\"30px\",\"--framer-text-color\":\"rgb(19, 33, 59)\"},children:\"Micheal T.\"})}),className:\"framer-ri94ok\",\"data-framer-name\":\"Rebecca Smith -\",fonts:[\"GF;Outfit-600\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7T3V0Zml0LXJlZ3VsYXI=\",\"--framer-font-family\":'\"Outfit\", \"Outfit Placeholder\", sans-serif',\"--framer-letter-spacing\":\"0.01em\",\"--framer-line-height\":\"24px\",\"--framer-text-color\":\"rgb(63, 72, 106)\"},children:\"LCSW\"})}),className:\"framer-o3etp7\",\"data-framer-name\":\"CEO, Consonants\",fonts:[\"GF;Outfit-regular\"],verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1nbesdp\",\"data-framer-name\":\"Card\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-10v9uj4\",\"data-framer-name\":\"client feedback\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-1nthpo6\",\"data-framer-name\":\"Rating star\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:24,intrinsicWidth:136,svg:'<svg width=\"136\" height=\"24\" viewBox=\"0 0 136 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M12 0L14.6942 8.2918H23.4127L16.3593 13.4164L19.0534 21.7082L12 16.5836L4.94658 21.7082L7.64074 13.4164L0.587322 8.2918H9.30583L12 0Z\" fill=\"#EF7D14\"/>\\n<path d=\"M40 0L42.6942 8.2918H51.4127L44.3593 13.4164L47.0534 21.7082L40 16.5836L32.9466 21.7082L35.6407 13.4164L28.5873 8.2918H37.3058L40 0Z\" fill=\"#EF7D14\"/>\\n<path d=\"M68 0L70.6942 8.2918H79.4127L72.3593 13.4164L75.0534 21.7082L68 16.5836L60.9466 21.7082L63.6407 13.4164L56.5873 8.2918H65.3058L68 0Z\" fill=\"#EF7D14\"/>\\n<path d=\"M96 0L98.6942 8.2918H107.413L100.359 13.4164L103.053 21.7082L96 16.5836L88.9466 21.7082L91.6407 13.4164L84.5873 8.2918H93.3058L96 0Z\" fill=\"#EF7D14\"/>\\n<path d=\"M124 0L126.694 8.2918H135.413L128.359 13.4164L131.053 21.7082L124 16.5836L116.947 21.7082L119.641 13.4164L112.587 8.2918H121.306L124 0Z\" fill=\"#EF7D14\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7T3V0Zml0LXJlZ3VsYXI=\",\"--framer-font-family\":'\"Outfit\", \"Outfit Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-letter-spacing\":\"-0.01em\",\"--framer-line-height\":\"28px\",\"--framer-text-color\":\"rgb(63, 72, 106)\"},children:\"After using three different platforms, Mynd is by far the most user-friendly. Their team made switching painless and helped transfer all my files.\"})}),className:\"framer-1gayofn\",\"data-framer-name\":\"Card comtent\",fonts:[\"GF;Outfit-regular\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1kerrbk\",\"data-framer-name\":\"User Identity\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7T3V0Zml0LTYwMA==\",\"--framer-font-family\":'\"Outfit\", \"Outfit Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"0.01em\",\"--framer-line-height\":\"30px\",\"--framer-text-color\":\"rgb(19, 33, 59)\"},children:\"Amara P.\"})}),className:\"framer-jy854u\",\"data-framer-name\":\"Rebecca Smith -\",fonts:[\"GF;Outfit-600\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7T3V0Zml0LXJlZ3VsYXI=\",\"--framer-font-family\":'\"Outfit\", \"Outfit Placeholder\", sans-serif',\"--framer-letter-spacing\":\"0.01em\",\"--framer-line-height\":\"24px\",\"--framer-text-color\":\"rgb(63, 72, 106)\"},children:\"Psychotherapist\"})}),className:\"framer-bekyqw\",\"data-framer-name\":\"CEO, Consonants\",fonts:[\"GF;Outfit-regular\"],verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-ckiqdk\",\"data-framer-name\":\"Card\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-bii5dq\",\"data-framer-name\":\"client feedback\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-30q2kc\",\"data-framer-name\":\"Rating star\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:24,intrinsicWidth:136,svg:'<svg width=\"136\" height=\"24\" viewBox=\"0 0 136 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M12 0L14.6942 8.2918H23.4127L16.3593 13.4164L19.0534 21.7082L12 16.5836L4.94658 21.7082L7.64074 13.4164L0.587322 8.2918H9.30583L12 0Z\" fill=\"#EF7D14\"/>\\n<path d=\"M40 0L42.6942 8.2918H51.4127L44.3593 13.4164L47.0534 21.7082L40 16.5836L32.9466 21.7082L35.6407 13.4164L28.5873 8.2918H37.3058L40 0Z\" fill=\"#EF7D14\"/>\\n<path d=\"M68 0L70.6942 8.2918H79.4127L72.3593 13.4164L75.0534 21.7082L68 16.5836L60.9466 21.7082L63.6407 13.4164L56.5873 8.2918H65.3058L68 0Z\" fill=\"#EF7D14\"/>\\n<path d=\"M96 0L98.6942 8.2918H107.413L100.359 13.4164L103.053 21.7082L96 16.5836L88.9466 21.7082L91.6407 13.4164L84.5873 8.2918H93.3058L96 0Z\" fill=\"#EF7D14\"/>\\n<path d=\"M124 0L126.694 8.2918H135.413L128.359 13.4164L131.053 21.7082L124 16.5836L116.947 21.7082L119.641 13.4164L112.587 8.2918H121.306L124 0Z\" fill=\"#EF7D14\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7T3V0Zml0LXJlZ3VsYXI=\",\"--framer-font-family\":'\"Outfit\", \"Outfit Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-letter-spacing\":\"-0.01em\",\"--framer-line-height\":\"28px\",\"--framer-text-color\":\"rgb(63, 72, 106)\"},children:\"Automated reminders cut my no-shows by 30%. The interface is clean and simple, and their support team is always ready to help.\"})}),className:\"framer-1b51u27\",\"data-framer-name\":\"Card comtent\",fonts:[\"GF;Outfit-regular\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1c4hhlr\",\"data-framer-name\":\"User Identity\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7T3V0Zml0LTYwMA==\",\"--framer-font-family\":'\"Outfit\", \"Outfit Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"0.01em\",\"--framer-line-height\":\"30px\",\"--framer-text-color\":\"rgb(19, 33, 59)\"},children:\"Jason R.\"})}),className:\"framer-1dp2d2\",\"data-framer-name\":\"Rebecca Smith -\",fonts:[\"GF;Outfit-600\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7T3V0Zml0LXJlZ3VsYXI=\",\"--framer-font-family\":'\"Outfit\", \"Outfit Placeholder\", sans-serif',\"--framer-letter-spacing\":\"0.01em\",\"--framer-line-height\":\"24px\",\"--framer-text-color\":\"rgb(63, 72, 106)\"},children:\"Therapist\"})}),className:\"framer-17yx3cs\",\"data-framer-name\":\"CEO, Consonants\",fonts:[\"GF;Outfit-regular\"],verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-350bm9\",\"data-framer-name\":\"Card\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-13ch7dl\",\"data-framer-name\":\"client feedback\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-14x2627\",\"data-framer-name\":\"Rating star\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:24,intrinsicWidth:136,svg:'<svg width=\"136\" height=\"24\" viewBox=\"0 0 136 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M12 0L14.6942 8.2918H23.4127L16.3593 13.4164L19.0534 21.7082L12 16.5836L4.94658 21.7082L7.64074 13.4164L0.587322 8.2918H9.30583L12 0Z\" fill=\"#EF7D14\"/>\\n<path d=\"M40 0L42.6942 8.2918H51.4127L44.3593 13.4164L47.0534 21.7082L40 16.5836L32.9466 21.7082L35.6407 13.4164L28.5873 8.2918H37.3058L40 0Z\" fill=\"#EF7D14\"/>\\n<path d=\"M68 0L70.6942 8.2918H79.4127L72.3593 13.4164L75.0534 21.7082L68 16.5836L60.9466 21.7082L63.6407 13.4164L56.5873 8.2918H65.3058L68 0Z\" fill=\"#EF7D14\"/>\\n<path d=\"M96 0L98.6942 8.2918H107.413L100.359 13.4164L103.053 21.7082L96 16.5836L88.9466 21.7082L91.6407 13.4164L84.5873 8.2918H93.3058L96 0Z\" fill=\"#EF7D14\"/>\\n<path d=\"M124 0L126.694 8.2918H135.413L128.359 13.4164L131.053 21.7082L124 16.5836L116.947 21.7082L119.641 13.4164L112.587 8.2918H121.306L124 0Z\" fill=\"#EF7D14\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7T3V0Zml0LXJlZ3VsYXI=\",\"--framer-font-family\":'\"Outfit\", \"Outfit Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-letter-spacing\":\"-0.01em\",\"--framer-line-height\":\"28px\",\"--framer-text-color\":\"rgb(63, 72, 106)\"},children:\"Mynd saves me an hour daily on paperwork. Everything is exactly where you'd expect it to be. Their team checks in regularly\u2014exceptional service!\"})}),className:\"framer-82vb4j\",\"data-framer-name\":\"Card comtent\",fonts:[\"GF;Outfit-regular\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1wmrztq\",\"data-framer-name\":\"User Identity\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7T3V0Zml0LTYwMA==\",\"--framer-font-family\":'\"Outfit\", \"Outfit Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"0.01em\",\"--framer-line-height\":\"30px\",\"--framer-text-color\":\"rgb(19, 33, 59)\"},children:\"Sarah W.\"})}),className:\"framer-cr3ctu\",\"data-framer-name\":\"Rebecca Smith -\",fonts:[\"GF;Outfit-600\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7T3V0Zml0LXJlZ3VsYXI=\",\"--framer-font-family\":'\"Outfit\", \"Outfit Placeholder\", sans-serif',\"--framer-letter-spacing\":\"0.01em\",\"--framer-line-height\":\"24px\",\"--framer-text-color\":\"rgb(63, 72, 106)\"},children:\"Counselor\"})}),className:\"framer-10dbiss\",\"data-framer-name\":\"CEO, Consonants\",fonts:[\"GF;Outfit-regular\"],verticalAlignment:\"top\",withExternalLayout:true})]})]})]})})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-a0tj25\",\"data-framer-name\":\"Security\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1ohvwxq\",\"data-framer-name\":\"Frame 2085664401\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-9h2wmm\",\"data-framer-name\":\"Frame 2085664401\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7T3V0Zml0LTUwMA==\",\"--framer-font-family\":'\"Outfit\", \"Outfit Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"0.01em\",\"--framer-line-height\":\"30px\",\"--framer-text-color\":\"rgb(93, 107, 127)\"},children:\"We prioritize your privacy with end-to-end encryption, secure data storage, and HIPAA compliance, ensuring that all client and practice information remains protected and confidential at all times.\"})}),className:\"framer-1g4l8oo\",\"data-framer-name\":\"We prioritize your privacy with end-to-end encryption, secure data storage, and HIPAA compliance, ensuring that all client and practice information remains protected and confidential at all times.\",fonts:[\"GF;Outfit-500\"],verticalAlignment:\"center\",withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-q1hrly\",\"data-framer-name\":\"Frame 2085664116\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7T3V0Zml0LTUwMA==\",\"--framer-font-family\":'\"Outfit\", \"Outfit Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"0.01em\",\"--framer-line-height\":\"30px\"},children:\"Learn More\"})}),className:\"framer-1ywl6ho\",\"data-framer-name\":\"Learn More\",fonts:[\"GF;Outfit-500\"],verticalAlignment:\"center\",withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-zaul8l\",\"data-framer-name\":\"arrow-right-double\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:25,intrinsicWidth:24,svg:'<svg width=\"24\" height=\"25\" viewBox=\"0 0 24 25\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M12.5 18.8232C12.5 18.8232 18.5 14.4043 18.5 12.8232C18.5 11.242 12.5 6.82324 12.5 6.82324\" stroke=\"black\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M5.50005 18.8232C5.50005 18.8232 11.5 14.4043 11.5 12.8232C11.5 11.242 5.5 6.82324 5.5 6.82324\" stroke=\"black\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n</svg>\\n',withExternalLayout:true})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1wpuij4\",\"data-framer-name\":\"Frame 2085664412\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{CiBw77sk3:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+10874.6+80+30+254+0+0),src:\"https://framerusercontent.com/images/M74PjdpnRip6dIUU7NrMUeA1M0.png\"}},lvU7ihE5N:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+8374.6+80+30+190+0),src:\"https://framerusercontent.com/images/M74PjdpnRip6dIUU7NrMUeA1M0.png\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+7012.6+80+30+190+0),src:\"https://framerusercontent.com/images/M74PjdpnRip6dIUU7NrMUeA1M0.png\"},className:\"framer-mor308\",\"data-framer-name\":\"image 64\"})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{CiBw77sk3:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+10874.6+80+30+254+0+0),src:\"https://framerusercontent.com/images/m5A5FMbnBWpKQ3GJ6Kh3kftFtE.png\"}},lvU7ihE5N:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+8374.6+80+30+190+0),src:\"https://framerusercontent.com/images/m5A5FMbnBWpKQ3GJ6Kh3kftFtE.png\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+7012.6+80+30+190+0),src:\"https://framerusercontent.com/images/m5A5FMbnBWpKQ3GJ6Kh3kftFtE.png\"},className:\"framer-eegfg8\",\"data-framer-name\":\"phipa\"})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{CiBw77sk3:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+10874.6+80+30+254+0+110.8255),src:\"https://framerusercontent.com/images/biGigUTqhRLJNYR8GN3bxmwXs.png\"}},lvU7ihE5N:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+8374.6+80+30+190+14.3791),src:\"https://framerusercontent.com/images/biGigUTqhRLJNYR8GN3bxmwXs.png\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+7012.6+80+30+190+14.3791),src:\"https://framerusercontent.com/images/biGigUTqhRLJNYR8GN3bxmwXs.png\"},className:\"framer-1gje4s8\",\"data-framer-name\":\"image 70\"})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{CiBw77sk3:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+10874.6+80+30+254+0+110.8255),src:\"https://framerusercontent.com/images/8qbcZHJXixPvvKde6J5yPew7Cc.png\"}},lvU7ihE5N:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+8374.6+80+30+190+13.8061),src:\"https://framerusercontent.com/images/8qbcZHJXixPvvKde6J5yPew7Cc.png\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+7012.6+80+30+190+13.8061),src:\"https://framerusercontent.com/images/8qbcZHJXixPvvKde6J5yPew7Cc.png\"},className:\"framer-1y67v08\",\"data-framer-name\":\"image 69\"})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{CiBw77sk3:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+10874.6+80+30+254+0+221.651),src:\"https://framerusercontent.com/images/C3RvRBsl1aVcoFpoFCR0gD2vzE.png\"}},lvU7ihE5N:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+8374.6+80+30+190+0),src:\"https://framerusercontent.com/images/C3RvRBsl1aVcoFpoFCR0gD2vzE.png\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+7012.6+80+30+190+0),src:\"https://framerusercontent.com/images/C3RvRBsl1aVcoFpoFCR0gD2vzE.png\"},className:\"framer-ir83ao\",\"data-framer-name\":\"image 66\"})})]})]})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{CiBw77sk3:{y:(componentViewport?.y||0)+0+11641.0765},lvU7ihE5N:{y:(componentViewport?.y||0)+0+8855.4255}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:968,width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+7493.4255,children:/*#__PURE__*/_jsx(Container,{className:\"framer-bwjc43-container\",id:elementId,nodeId:\"ZZKrHtyuy\",ref:ref1,scopeId:\"I9ca44g56\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{CiBw77sk3:{variant:\"fgAn9KVDL\"}},children:/*#__PURE__*/_jsx(FAQS,{height:\"100%\",id:\"ZZKrHtyuy\",layoutId:\"ZZKrHtyuy\",style:{width:\"100%\"},variant:\"t0fUI6V4w\",width:\"100%\"})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{CiBw77sk3:{y:(componentViewport?.y||0)+0+12609.0765},lvU7ihE5N:{y:(componentViewport?.y||0)+0+9823.4255}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:697,width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+8461.4255,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1d731zu-container\",nodeId:\"UMYf9FPgd\",scopeId:\"I9ca44g56\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{CiBw77sk3:{variant:\"QTxlk9Nxf\"},lvU7ihE5N:{variant:\"Ivt1gTDRz\"}},children:/*#__PURE__*/_jsx(Footer,{height:\"100%\",id:\"UMYf9FPgd\",layoutId:\"UMYf9FPgd\",style:{width:\"100%\"},variant:\"LHXQx14xL\",width:\"100%\"})})})})})]}),/*#__PURE__*/_jsx(\"div\",{id:\"overlay\"})]})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-PD9Ez.framer-co1log, .framer-PD9Ez .framer-co1log { display: block; }\",\".framer-PD9Ez.framer-1ajrugo { align-content: center; align-items: center; background-color: #ffffff; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 1200px; }\",\".framer-PD9Ez .framer-1iqy489-container { flex: none; height: auto; position: relative; width: 100%; z-index: 9; }\",\".framer-PD9Ez .framer-1sq4yqf { align-content: center; align-items: center; background-color: #f9f9ff; 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-PD9Ez .framer-rmb6fh { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: 100vh; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1200px; }\",\".framer-PD9Ez .framer-1ule7kc { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 50px; height: 100%; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 550px; }\",\".framer-PD9Ez .framer-15wiwwe { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 45px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-PD9Ez .framer-2vhr1i { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 36px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-PD9Ez .framer-lxnitn, .framer-PD9Ez .framer-df4x0r { --framer-paragraph-spacing: 20px; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-PD9Ez .framer-17avgmd { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-PD9Ez .framer-rco14t, .framer-PD9Ez .framer-zof9k4 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-PD9Ez .framer-i9gd4w { align-content: center; align-items: center; background-color: #625afa; border-bottom-left-radius: 20px; border-bottom-right-radius: 20px; border-top-left-radius: 20px; border-top-right-radius: 20px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 0px 13px 0px 13px; position: relative; width: 190px; }\",\".framer-PD9Ez .framer-1lgw69b { --framer-paragraph-spacing: 0px; flex: none; height: 54px; position: relative; white-space: pre-wrap; width: 188px; word-break: break-word; word-wrap: break-word; }\",\".framer-PD9Ez .framer-93dwmp { align-content: center; align-items: center; cursor: pointer; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 14px; height: min-content; justify-content: flex-start; overflow: visible; padding: 17px 10px 17px 10px; position: relative; width: min-content; }\",\".framer-PD9Ez .framer-cjdnec { flex: none; height: 16px; position: relative; width: 16px; }\",\".framer-PD9Ez .framer-1nh0wxz, .framer-PD9Ez .framer-clcwsm, .framer-PD9Ez .framer-1t54lql, .framer-PD9Ez .framer-p1tvjp, .framer-PD9Ez .framer-ri94ok, .framer-PD9Ez .framer-jy854u, .framer-PD9Ez .framer-1dp2d2, .framer-PD9Ez .framer-cr3ctu, .framer-PD9Ez .framer-1ywl6ho { --framer-paragraph-spacing: 20px; flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-PD9Ez.framer-aru6zm, .framer-PD9Ez.framer-r0gjhn { background-color: rgba(0, 0, 0, 0.8); inset: 0px; position: fixed; user-select: none; }\",\".framer-PD9Ez.framer-10od27h-container { flex: none; height: 80%; left: calc(50.00000000000002% - 80% / 2); position: fixed; top: calc(50.00000000000002% - 80% / 2); width: 80%; }\",\".framer-PD9Ez .framer-11gfbp0, .framer-PD9Ez .framer-1roh5cu, .framer-PD9Ez .framer-eo6tqv, .framer-PD9Ez .framer-1h1z5pr, .framer-PD9Ez .framer-qlcq3a { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 15px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-PD9Ez .framer-1lg01n3 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-PD9Ez .framer-smvnnw, .framer-PD9Ez .framer-e7xcx0 { aspect-ratio: 2.659574156285784 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 34px); position: relative; width: 90px; }\",\".framer-PD9Ez .framer-20a6mv { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 1px; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-PD9Ez .framer-c0taga { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-PD9Ez .framer-5yq327, .framer-PD9Ez .framer-6bdnfb { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: 25px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 101px; z-index: 1; }\",\".framer-PD9Ez .framer-g73bt0 { --border-bottom-width: 1px; --border-color: #f0f0f4; --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; aspect-ratio: 1 / 1; border-bottom-left-radius: 256px; border-bottom-right-radius: 256px; border-top-left-radius: 256px; border-top-right-radius: 256px; bottom: 0px; flex: none; left: 55px; overflow: visible; position: absolute; top: 0px; width: var(--framer-aspect-ratio-supported, 25px); z-index: 5; }\",\".framer-PD9Ez .framer-ct8ekk { --border-bottom-width: 1px; --border-color: #f0f0f4; --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; aspect-ratio: 1 / 1; border-bottom-left-radius: 256px; border-bottom-right-radius: 256px; border-top-left-radius: 256px; border-top-right-radius: 256px; bottom: 0px; flex: none; left: 0px; overflow: visible; position: absolute; top: 0px; width: var(--framer-aspect-ratio-supported, 25px); z-index: 1; }\",\".framer-PD9Ez .framer-5tgplk { --border-bottom-width: 1px; --border-color: #f0f0f4; --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; aspect-ratio: 1 / 1; border-bottom-left-radius: 256px; border-bottom-right-radius: 256px; border-top-left-radius: 256px; border-top-right-radius: 256px; bottom: 0px; flex: none; left: 48%; overflow: visible; position: absolute; top: 0px; transform: translateX(-50%); width: var(--framer-aspect-ratio-supported, 25px); z-index: 4; }\",\".framer-PD9Ez .framer-15orbnu { --border-bottom-width: 1px; --border-color: #f0f0f4; --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; aspect-ratio: 1 / 1; border-bottom-left-radius: 256px; border-bottom-right-radius: 256px; border-top-left-radius: 256px; border-top-right-radius: 256px; bottom: 0px; flex: none; left: 19px; overflow: visible; position: absolute; top: 0px; width: var(--framer-aspect-ratio-supported, 25px); z-index: 3; }\",\".framer-PD9Ez .framer-9uoqi3 { --border-bottom-width: 1px; --border-color: #f0f0f4; --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; aspect-ratio: 1 / 1; border-bottom-left-radius: 256px; border-bottom-right-radius: 256px; border-top-left-radius: 256px; border-top-right-radius: 256px; bottom: 0px; flex: none; left: 74px; overflow: visible; position: absolute; top: 0px; width: var(--framer-aspect-ratio-supported, 25px); z-index: 6; }\",\".framer-PD9Ez .framer-1neodo7 { flex: none; height: 16px; overflow: visible; position: relative; width: 100px; z-index: 6; }\",\".framer-PD9Ez .framer-171h8cp { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-PD9Ez .framer-tiee2l { aspect-ratio: 1.2735632183908046 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 432px); position: relative; width: 550px; }\",\".framer-PD9Ez .framer-dplccv { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 60px; height: min-content; justify-content: center; overflow: hidden; padding: 80px 120px 80px 120px; position: relative; width: 100%; }\",\".framer-PD9Ez .framer-1400sd5 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 12px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 99%; }\",\".framer-PD9Ez .framer-1y2g0cy, .framer-PD9Ez .framer-12firjl { --framer-paragraph-spacing: 36px; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 742px; word-break: break-word; word-wrap: break-word; }\",\".framer-PD9Ez .framer-1lhypn3, .framer-PD9Ez .framer-vm6p5j, .framer-PD9Ez .framer-d36fel, .framer-PD9Ez .framer-hpr2i9 { 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: min-content; }\",\".framer-PD9Ez .framer-hxoxet, .framer-PD9Ez .framer-1mnofa6, .framer-PD9Ez .framer-1j82nnj, .framer-PD9Ez .framer-pscs70, .framer-PD9Ez .framer-1xag8qt, .framer-PD9Ez .framer-v8s1ct, .framer-PD9Ez .framer-9kcd8z, .framer-PD9Ez .framer-1y780vs, .framer-PD9Ez .framer-12og2m, .framer-PD9Ez .framer-16xcf58, .framer-PD9Ez .framer-1voichq, .framer-PD9Ez .framer-ne97gw, .framer-PD9Ez .framer-15oph3c, .framer-PD9Ez .framer-u4nhcj, .framer-PD9Ez .framer-1xmtmwt, .framer-PD9Ez .framer-1id0ghy, .framer-PD9Ez .framer-1cnx7js { --framer-paragraph-spacing: 18px; flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-PD9Ez .framer-4su1td { align-content: center; align-items: center; background-color: #ffffff; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: center; max-width: 1200px; overflow: visible; padding: 60px 30px 60px 30px; position: relative; width: 100%; }\",\".framer-PD9Ez .framer-16aon4k { 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; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-PD9Ez .framer-e5qrri { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-PD9Ez .framer-1gnjgcz, .framer-PD9Ez .framer-v3fxbc, .framer-PD9Ez .framer-runs7j, .framer-PD9Ez .framer-fp76p4 { --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-PD9Ez .framer-1jiy2cz { flex: none; height: 1098px; overflow: visible; position: relative; width: 1060px; }\",\".framer-PD9Ez .framer-iqf75z { 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; left: 0px; overflow: visible; padding: 0px; position: absolute; top: 0px; width: 1060px; }\",\".framer-PD9Ez .framer-1fbyhug, .framer-PD9Ez .framer-lbyb2o, .framer-PD9Ez .framer-myhl77, .framer-PD9Ez .framer-1jdfhpr, .framer-PD9Ez .framer-9h2wmm { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; height: min-content; justify-content: space-between; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-PD9Ez .framer-xi099l { --framer-paragraph-spacing: 24px; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 383px; word-break: break-word; word-wrap: break-word; }\",\".framer-PD9Ez .framer-nxrrpb, .framer-PD9Ez .framer-uu8yxo, .framer-PD9Ez .framer-tlsto2, .framer-PD9Ez .framer-1x5iqf9, .framer-PD9Ez .framer-1hi1v3w, .framer-PD9Ez .framer-v0en8o, .framer-PD9Ez .framer-jfcz9y, .framer-PD9Ez .framer-i1nwcl, .framer-PD9Ez .framer-1d08e8c { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 4px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-PD9Ez .framer-vrbtd7, .framer-PD9Ez .framer-19lv4md, .framer-PD9Ez .framer-1390lqg, .framer-PD9Ez .framer-19hnnsq, .framer-PD9Ez .framer-67cc95, .framer-PD9Ez .framer-18q72uo { flex: none; height: 35px; position: relative; width: 34px; }\",\".framer-PD9Ez .framer-1nldjni, .framer-PD9Ez .framer-s1jlcn, .framer-PD9Ez .framer-1e8wq8r { flex: none; height: 34px; position: relative; width: 34px; }\",\".framer-PD9Ez .framer-15951uy, .framer-PD9Ez .framer-omgqa9, .framer-PD9Ez .framer-1r4tjvo { aspect-ratio: 1.4969325153374233 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 326px); overflow: visible; position: relative; width: 488px; }\",\".framer-PD9Ez .framer-1jgzne { --framer-paragraph-spacing: 24px; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 364px; word-break: break-word; word-wrap: break-word; }\",\".framer-PD9Ez .framer-5zk87l { --framer-paragraph-spacing: 24px; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 371px; word-break: break-word; word-wrap: break-word; }\",\".framer-PD9Ez .framer-1vhr4ha { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 13px; height: 771px; justify-content: flex-start; left: 50%; overflow: visible; padding: 0px; position: absolute; top: 50%; transform: translate(-50%, -50%); width: min-content; }\",\".framer-PD9Ez .framer-dvw4xz, .framer-PD9Ez .framer-w8zdrh { --border-bottom-width: 1px; --border-color: #625afa; --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; aspect-ratio: 1 / 1; background-color: #625afa; border-bottom-left-radius: 600px; border-bottom-right-radius: 600px; border-top-left-radius: 600px; border-top-right-radius: 600px; flex: none; height: var(--framer-aspect-ratio-supported, 24px); overflow: hidden; position: relative; width: 24px; will-change: var(--framer-will-change-override, transform); }\",\".framer-PD9Ez .framer-1v7vrqp, .framer-PD9Ez .framer-1cp7sg2 { flex: none; height: 14px; left: calc(50% - 14px / 2); overflow: hidden; position: absolute; top: calc(50% - 14px / 2); width: 14px; }\",\".framer-PD9Ez .framer-4zqav7, .framer-PD9Ez .framer-1tekmuz { flex: none; height: 9px; left: 1px; position: absolute; top: 3px; width: 12px; }\",\".framer-PD9Ez .framer-1ozqb99, .framer-PD9Ez .framer-46p7if { flex: none; height: 326px; position: relative; width: 4px; }\",\".framer-PD9Ez .framer-vtswen { --border-bottom-width: 1px; --border-color: #a0aec0; --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; aspect-ratio: 1 / 1; border-bottom-left-radius: 600px; border-bottom-right-radius: 600px; border-top-left-radius: 600px; border-top-right-radius: 600px; flex: none; height: var(--framer-aspect-ratio-supported, 24px); overflow: hidden; position: relative; width: 24px; will-change: var(--framer-will-change-override, transform); }\",\".framer-PD9Ez .framer-19yxnfl { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 60px; height: min-content; justify-content: flex-start; max-width: 1200px; overflow: hidden; padding: 80px 120px 80px 120px; position: relative; width: 100%; }\",\".framer-PD9Ez .framer-u8tabx { align-content: center; align-items: center; background-color: #625afa; border-bottom-left-radius: 16px; border-bottom-right-radius: 16px; border-top-left-radius: 16px; border-top-right-radius: 16px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 40px 0px 40px 0px; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-PD9Ez .framer-10b683t { --framer-paragraph-spacing: 30px; flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-PD9Ez .framer-fb9vp0 { align-content: center; align-items: center; background-color: #f9f9ff; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 60px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 80px 120px 80px 120px; position: relative; width: 100%; }\",\".framer-PD9Ez .framer-bi3c8p { 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: 1200px; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-PD9Ez .framer-1oqtbso { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 12px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-PD9Ez .framer-1ertkbh { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-PD9Ez .framer-7oa6yp, .framer-PD9Ez .framer-mru8f7 { align-content: center; align-items: center; background-color: #ceccfd; border-bottom-left-radius: 40px; border-bottom-right-radius: 40px; border-top-left-radius: 40px; border-top-right-radius: 40px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 6px 12px 6px 12px; position: relative; width: min-content; }\",\".framer-PD9Ez .framer-p1dtrr, .framer-PD9Ez .framer-pp942n, .framer-PD9Ez .framer-rys8ev, .framer-PD9Ez .framer-196ihzh, .framer-PD9Ez .framer-1s0aved, .framer-PD9Ez .framer-o3etp7, .framer-PD9Ez .framer-bekyqw, .framer-PD9Ez .framer-17yx3cs, .framer-PD9Ez .framer-10dbiss { --framer-paragraph-spacing: 16px; flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-PD9Ez .framer-h6m8aw, .framer-PD9Ez .framer-1pw7k5b, .framer-PD9Ez .framer-sl3kob { --framer-paragraph-spacing: 36px; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-PD9Ez .framer-1qou85s { align-content: center; align-items: center; background-color: #625afa; 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: 10px; height: min-content; justify-content: center; overflow: visible; padding: 0px 13px 0px 13px; position: relative; width: 190px; }\",\".framer-PD9Ez .framer-elnmjq { --framer-paragraph-spacing: 0px; flex: none; height: 64px; position: relative; white-space: pre-wrap; width: 188px; word-break: break-word; word-wrap: break-word; }\",\".framer-PD9Ez .framer-1x7vnc { align-content: center; align-items: center; background-color: #ffffff; 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: 60px; height: min-content; justify-content: center; overflow: visible; padding: 60px 40px 60px 40px; position: relative; width: 100%; }\",\".framer-PD9Ez .framer-1pzm9lt { display: grid; flex: none; gap: 36px; grid-auto-rows: minmax(0, 1fr); grid-template-columns: repeat(4, minmax(50px, 1fr)); grid-template-rows: repeat(2, minmax(0, 1fr)); height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-PD9Ez .framer-m5b8jg-container, .framer-PD9Ez .framer-23q13a-container, .framer-PD9Ez .framer-w7euyt-container, .framer-PD9Ez .framer-1r824dq-container, .framer-PD9Ez .framer-1440bqd-container, .framer-PD9Ez .framer-3kh4r0-container, .framer-PD9Ez .framer-33bp2e-container, .framer-PD9Ez .framer-y3h6it-container, .framer-PD9Ez .framer-7iy4vn-container, .framer-PD9Ez .framer-9hccep-container { align-self: start; flex: none; height: auto; justify-self: start; position: relative; width: 100%; }\",\".framer-PD9Ez .framer-1ob0nva { align-content: center; align-items: center; background-color: #f7fafc; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 60px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 80px 120px 80px 120px; position: relative; width: 100%; }\",\".framer-PD9Ez .framer-5g0c1v { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 12px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 1188px; }\",\".framer-PD9Ez .framer-j0fcn9 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-PD9Ez .framer-8r6ctn { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; height: min-content; justify-content: space-around; max-width: 1200px; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-PD9Ez .framer-1fgmibi { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 32px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 400px; }\",\".framer-PD9Ez .framer-bg3yj2 { 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-PD9Ez .framer-mp66yy { border-bottom-left-radius: 16px; border-bottom-right-radius: 16px; border-top-left-radius: 16px; border-top-right-radius: 16px; cursor: pointer; flex: none; height: 405px; overflow: hidden; position: relative; width: 340px; will-change: var(--framer-will-change-override, transform); }\",\".framer-PD9Ez .framer-bf68dn { --border-bottom-width: 6px; --border-color: #efefff; --border-left-width: 6px; --border-right-width: 6px; --border-style: solid; --border-top-width: 6px; align-content: center; align-items: center; aspect-ratio: 1 / 1; background-color: #b7b3fd; border-bottom-left-radius: 60px; border-bottom-right-radius: 60px; border-top-left-radius: 60px; border-top-right-radius: 60px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: var(--framer-aspect-ratio-supported, 56px); justify-content: center; left: 50%; overflow: visible; padding: 10px; position: absolute; top: 50%; transform: translate(-50%, -50%); width: 56px; }\",\".framer-PD9Ez .framer-1c2g1kx { flex: none; height: 24px; overflow: hidden; position: relative; width: 24px; }\",\".framer-PD9Ez .framer-kfas7h { flex: none; height: 22px; left: 6px; position: absolute; top: calc(50.00000000000002% - 22px / 2); width: 17px; }\",\".framer-PD9Ez .framer-176hut5 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; left: 30px; overflow: visible; padding: 0px; position: absolute; top: 332px; width: min-content; }\",\".framer-PD9Ez.framer-1huuiyp-container { flex: none; height: 100vh; left: calc(50.00000000000002% - 50% / 2); position: fixed; top: -2px; width: 50%; }\",\".framer-PD9Ez .framer-f0db3c { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: flex-start; max-width: 1200px; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-PD9Ez .framer-1bobctc { display: grid; flex: none; gap: 24px; grid-auto-rows: minmax(0, 1fr); grid-template-columns: repeat(3, minmax(50px, 1fr)); grid-template-rows: repeat(2, minmax(0, 1fr)); height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-PD9Ez .framer-x3n6go, .framer-PD9Ez .framer-1a74vm3, .framer-PD9Ez .framer-njc13, .framer-PD9Ez .framer-1nbesdp, .framer-PD9Ez .framer-ckiqdk, .framer-PD9Ez .framer-350bm9 { align-content: flex-start; align-items: flex-start; align-self: start; background-color: #ffffff; border-bottom-left-radius: 16px; border-bottom-right-radius: 16px; border-top-left-radius: 16px; border-top-right-radius: 16px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: center; justify-self: start; overflow: visible; padding: 24px; position: relative; width: 100%; }\",\".framer-PD9Ez .framer-teiuy7, .framer-PD9Ez .framer-1ayxhys, .framer-PD9Ez .framer-1mrb3ny, .framer-PD9Ez .framer-10v9uj4, .framer-PD9Ez .framer-bii5dq, .framer-PD9Ez .framer-13ch7dl { 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-PD9Ez .framer-12ze6c, .framer-PD9Ez .framer-1ltfm3l, .framer-PD9Ez .framer-1xf7ycl, .framer-PD9Ez .framer-1nthpo6, .framer-PD9Ez .framer-30q2kc, .framer-PD9Ez .framer-14x2627 { flex: none; height: 24px; position: relative; width: 136px; }\",\".framer-PD9Ez .framer-4zg3wz, .framer-PD9Ez .framer-1ye85gv, .framer-PD9Ez .framer-vt7el1, .framer-PD9Ez .framer-1gayofn, .framer-PD9Ez .framer-1b51u27, .framer-PD9Ez .framer-82vb4j { --framer-paragraph-spacing: 18px; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-PD9Ez .framer-1nhhf8r, .framer-PD9Ez .framer-cfd1j9, .framer-PD9Ez .framer-7piw8k, .framer-PD9Ez .framer-1kerrbk, .framer-PD9Ez .framer-1c4hhlr, .framer-PD9Ez .framer-1wmrztq { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-PD9Ez .framer-a0tj25 { align-content: flex-start; align-items: flex-start; background-color: #ffffff; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 60px; height: min-content; justify-content: center; max-width: 1200px; overflow: hidden; padding: 80px 120px 80px 120px; position: relative; width: 100%; }\",\".framer-PD9Ez .framer-1ohvwxq { align-content: flex-start; align-items: flex-start; background-color: #f7fafc; border-bottom-left-radius: 24px; border-bottom-right-radius: 24px; border-top-left-radius: 24px; border-top-right-radius: 24px; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 30px; position: relative; width: 1px; will-change: var(--framer-will-change-override, transform); }\",\".framer-PD9Ez .framer-1g4l8oo { --framer-paragraph-spacing: 20px; flex: 1 0 0px; height: auto; position: relative; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; }\",\".framer-PD9Ez .framer-q1hrly { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: flex-start; overflow: visible; padding: 17px 10px 17px 10px; position: relative; width: min-content; }\",\".framer-PD9Ez .framer-zaul8l { flex: none; height: 25px; position: relative; width: 24px; }\",\".framer-PD9Ez .framer-1wpuij4 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: center; overflow: visible; padding: 0px 20px 0px 20px; position: relative; width: 100%; }\",\".framer-PD9Ez .framer-mor308, .framer-PD9Ez .framer-eegfg8, .framer-PD9Ez .framer-ir83ao { aspect-ratio: 2.6544117472804207 / 1; flex: 1 0 0px; height: var(--framer-aspect-ratio-supported, 53px); position: relative; width: 1px; }\",\".framer-PD9Ez .framer-1gje4s8 { aspect-ratio: 4.469026669847748 / 1; flex: 1 0 0px; height: var(--framer-aspect-ratio-supported, 31px); position: relative; width: 1px; }\",\".framer-PD9Ez .framer-1y67v08 { aspect-ratio: 4.350515267344038 / 1; flex: 1 0 0px; height: var(--framer-aspect-ratio-supported, 32px); position: relative; width: 1px; }\",\".framer-PD9Ez .framer-bwjc43-container, .framer-PD9Ez .framer-1d731zu-container { flex: none; height: auto; position: relative; width: 100%; }\",\"@supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-PD9Ez.framer-1ajrugo, .framer-PD9Ez .framer-1sq4yqf, .framer-PD9Ez .framer-rmb6fh, .framer-PD9Ez .framer-1ule7kc, .framer-PD9Ez .framer-15wiwwe, .framer-PD9Ez .framer-2vhr1i, .framer-PD9Ez .framer-17avgmd, .framer-PD9Ez .framer-rco14t, .framer-PD9Ez .framer-i9gd4w, .framer-PD9Ez .framer-93dwmp, .framer-PD9Ez .framer-11gfbp0, .framer-PD9Ez .framer-1lg01n3, .framer-PD9Ez .framer-20a6mv, .framer-PD9Ez .framer-c0taga, .framer-PD9Ez .framer-5yq327, .framer-PD9Ez .framer-6bdnfb, .framer-PD9Ez .framer-dplccv, .framer-PD9Ez .framer-1400sd5, .framer-PD9Ez .framer-1lhypn3, .framer-PD9Ez .framer-1roh5cu, .framer-PD9Ez .framer-eo6tqv, .framer-PD9Ez .framer-1h1z5pr, .framer-PD9Ez .framer-qlcq3a, .framer-PD9Ez .framer-4su1td, .framer-PD9Ez .framer-16aon4k, .framer-PD9Ez .framer-e5qrri, .framer-PD9Ez .framer-iqf75z, .framer-PD9Ez .framer-vm6p5j, .framer-PD9Ez .framer-nxrrpb, .framer-PD9Ez .framer-uu8yxo, .framer-PD9Ez .framer-tlsto2, .framer-PD9Ez .framer-d36fel, .framer-PD9Ez .framer-1x5iqf9, .framer-PD9Ez .framer-1hi1v3w, .framer-PD9Ez .framer-v0en8o, .framer-PD9Ez .framer-hpr2i9, .framer-PD9Ez .framer-jfcz9y, .framer-PD9Ez .framer-i1nwcl, .framer-PD9Ez .framer-1d08e8c, .framer-PD9Ez .framer-1vhr4ha, .framer-PD9Ez .framer-19yxnfl, .framer-PD9Ez .framer-u8tabx, .framer-PD9Ez .framer-fb9vp0, .framer-PD9Ez .framer-bi3c8p, .framer-PD9Ez .framer-1oqtbso, .framer-PD9Ez .framer-1ertkbh, .framer-PD9Ez .framer-7oa6yp, .framer-PD9Ez .framer-1qou85s, .framer-PD9Ez .framer-1x7vnc, .framer-PD9Ez .framer-1ob0nva, .framer-PD9Ez .framer-5g0c1v, .framer-PD9Ez .framer-j0fcn9, .framer-PD9Ez .framer-mru8f7, .framer-PD9Ez .framer-1fgmibi, .framer-PD9Ez .framer-bg3yj2, .framer-PD9Ez .framer-zof9k4, .framer-PD9Ez .framer-bf68dn, .framer-PD9Ez .framer-176hut5, .framer-PD9Ez .framer-f0db3c, .framer-PD9Ez .framer-x3n6go, .framer-PD9Ez .framer-teiuy7, .framer-PD9Ez .framer-1nhhf8r, .framer-PD9Ez .framer-1a74vm3, .framer-PD9Ez .framer-1ayxhys, .framer-PD9Ez .framer-cfd1j9, .framer-PD9Ez .framer-njc13, .framer-PD9Ez .framer-1mrb3ny, .framer-PD9Ez .framer-7piw8k, .framer-PD9Ez .framer-1nbesdp, .framer-PD9Ez .framer-10v9uj4, .framer-PD9Ez .framer-1kerrbk, .framer-PD9Ez .framer-ckiqdk, .framer-PD9Ez .framer-bii5dq, .framer-PD9Ez .framer-1c4hhlr, .framer-PD9Ez .framer-350bm9, .framer-PD9Ez .framer-13ch7dl, .framer-PD9Ez .framer-1wmrztq, .framer-PD9Ez .framer-a0tj25, .framer-PD9Ez .framer-1ohvwxq, .framer-PD9Ez .framer-q1hrly, .framer-PD9Ez .framer-1wpuij4 { gap: 0px; } .framer-PD9Ez.framer-1ajrugo > *, .framer-PD9Ez .framer-c0taga > *, .framer-PD9Ez .framer-176hut5 > *, .framer-PD9Ez .framer-1nhhf8r > *, .framer-PD9Ez .framer-cfd1j9 > *, .framer-PD9Ez .framer-7piw8k > *, .framer-PD9Ez .framer-1kerrbk > *, .framer-PD9Ez .framer-1c4hhlr > *, .framer-PD9Ez .framer-1wmrztq > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-PD9Ez.framer-1ajrugo > :first-child, .framer-PD9Ez .framer-1ule7kc > :first-child, .framer-PD9Ez .framer-15wiwwe > :first-child, .framer-PD9Ez .framer-2vhr1i > :first-child, .framer-PD9Ez .framer-17avgmd > :first-child, .framer-PD9Ez .framer-c0taga > :first-child, .framer-PD9Ez .framer-dplccv > :first-child, .framer-PD9Ez .framer-1400sd5 > :first-child, .framer-PD9Ez .framer-1lhypn3 > :first-child, .framer-PD9Ez .framer-4su1td > :first-child, .framer-PD9Ez .framer-16aon4k > :first-child, .framer-PD9Ez .framer-e5qrri > :first-child, .framer-PD9Ez .framer-iqf75z > :first-child, .framer-PD9Ez .framer-vm6p5j > :first-child, .framer-PD9Ez .framer-d36fel > :first-child, .framer-PD9Ez .framer-hpr2i9 > :first-child, .framer-PD9Ez .framer-1vhr4ha > :first-child, .framer-PD9Ez .framer-19yxnfl > :first-child, .framer-PD9Ez .framer-fb9vp0 > :first-child, .framer-PD9Ez .framer-bi3c8p > :first-child, .framer-PD9Ez .framer-1oqtbso > :first-child, .framer-PD9Ez .framer-1ertkbh > :first-child, .framer-PD9Ez .framer-1x7vnc > :first-child, .framer-PD9Ez .framer-1ob0nva > :first-child, .framer-PD9Ez .framer-5g0c1v > :first-child, .framer-PD9Ez .framer-j0fcn9 > :first-child, .framer-PD9Ez .framer-1fgmibi > :first-child, .framer-PD9Ez .framer-bg3yj2 > :first-child, .framer-PD9Ez .framer-176hut5 > :first-child, .framer-PD9Ez .framer-f0db3c > :first-child, .framer-PD9Ez .framer-x3n6go > :first-child, .framer-PD9Ez .framer-teiuy7 > :first-child, .framer-PD9Ez .framer-1nhhf8r > :first-child, .framer-PD9Ez .framer-1a74vm3 > :first-child, .framer-PD9Ez .framer-1ayxhys > :first-child, .framer-PD9Ez .framer-cfd1j9 > :first-child, .framer-PD9Ez .framer-njc13 > :first-child, .framer-PD9Ez .framer-1mrb3ny > :first-child, .framer-PD9Ez .framer-7piw8k > :first-child, .framer-PD9Ez .framer-1nbesdp > :first-child, .framer-PD9Ez .framer-10v9uj4 > :first-child, .framer-PD9Ez .framer-1kerrbk > :first-child, .framer-PD9Ez .framer-ckiqdk > :first-child, .framer-PD9Ez .framer-bii5dq > :first-child, .framer-PD9Ez .framer-1c4hhlr > :first-child, .framer-PD9Ez .framer-350bm9 > :first-child, .framer-PD9Ez .framer-13ch7dl > :first-child, .framer-PD9Ez .framer-1wmrztq > :first-child, .framer-PD9Ez .framer-1ohvwxq > :first-child { margin-top: 0px; } .framer-PD9Ez.framer-1ajrugo > :last-child, .framer-PD9Ez .framer-1ule7kc > :last-child, .framer-PD9Ez .framer-15wiwwe > :last-child, .framer-PD9Ez .framer-2vhr1i > :last-child, .framer-PD9Ez .framer-17avgmd > :last-child, .framer-PD9Ez .framer-c0taga > :last-child, .framer-PD9Ez .framer-dplccv > :last-child, .framer-PD9Ez .framer-1400sd5 > :last-child, .framer-PD9Ez .framer-1lhypn3 > :last-child, .framer-PD9Ez .framer-4su1td > :last-child, .framer-PD9Ez .framer-16aon4k > :last-child, .framer-PD9Ez .framer-e5qrri > :last-child, .framer-PD9Ez .framer-iqf75z > :last-child, .framer-PD9Ez .framer-vm6p5j > :last-child, .framer-PD9Ez .framer-d36fel > :last-child, .framer-PD9Ez .framer-hpr2i9 > :last-child, .framer-PD9Ez .framer-1vhr4ha > :last-child, .framer-PD9Ez .framer-19yxnfl > :last-child, .framer-PD9Ez .framer-fb9vp0 > :last-child, .framer-PD9Ez .framer-bi3c8p > :last-child, .framer-PD9Ez .framer-1oqtbso > :last-child, .framer-PD9Ez .framer-1ertkbh > :last-child, .framer-PD9Ez .framer-1x7vnc > :last-child, .framer-PD9Ez .framer-1ob0nva > :last-child, .framer-PD9Ez .framer-5g0c1v > :last-child, .framer-PD9Ez .framer-j0fcn9 > :last-child, .framer-PD9Ez .framer-1fgmibi > :last-child, .framer-PD9Ez .framer-bg3yj2 > :last-child, .framer-PD9Ez .framer-176hut5 > :last-child, .framer-PD9Ez .framer-f0db3c > :last-child, .framer-PD9Ez .framer-x3n6go > :last-child, .framer-PD9Ez .framer-teiuy7 > :last-child, .framer-PD9Ez .framer-1nhhf8r > :last-child, .framer-PD9Ez .framer-1a74vm3 > :last-child, .framer-PD9Ez .framer-1ayxhys > :last-child, .framer-PD9Ez .framer-cfd1j9 > :last-child, .framer-PD9Ez .framer-njc13 > :last-child, .framer-PD9Ez .framer-1mrb3ny > :last-child, .framer-PD9Ez .framer-7piw8k > :last-child, .framer-PD9Ez .framer-1nbesdp > :last-child, .framer-PD9Ez .framer-10v9uj4 > :last-child, .framer-PD9Ez .framer-1kerrbk > :last-child, .framer-PD9Ez .framer-ckiqdk > :last-child, .framer-PD9Ez .framer-bii5dq > :last-child, .framer-PD9Ez .framer-1c4hhlr > :last-child, .framer-PD9Ez .framer-350bm9 > :last-child, .framer-PD9Ez .framer-13ch7dl > :last-child, .framer-PD9Ez .framer-1wmrztq > :last-child, .framer-PD9Ez .framer-1ohvwxq > :last-child { margin-bottom: 0px; } .framer-PD9Ez .framer-1sq4yqf > *, .framer-PD9Ez .framer-i9gd4w > *, .framer-PD9Ez .framer-1lg01n3 > *, .framer-PD9Ez .framer-20a6mv > *, .framer-PD9Ez .framer-u8tabx > *, .framer-PD9Ez .framer-7oa6yp > *, .framer-PD9Ez .framer-1qou85s > *, .framer-PD9Ez .framer-mru8f7 > *, .framer-PD9Ez .framer-bf68dn > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-PD9Ez .framer-1sq4yqf > :first-child, .framer-PD9Ez .framer-rmb6fh > :first-child, .framer-PD9Ez .framer-rco14t > :first-child, .framer-PD9Ez .framer-i9gd4w > :first-child, .framer-PD9Ez .framer-93dwmp > :first-child, .framer-PD9Ez .framer-11gfbp0 > :first-child, .framer-PD9Ez .framer-1lg01n3 > :first-child, .framer-PD9Ez .framer-20a6mv > :first-child, .framer-PD9Ez .framer-5yq327 > :first-child, .framer-PD9Ez .framer-6bdnfb > :first-child, .framer-PD9Ez .framer-1roh5cu > :first-child, .framer-PD9Ez .framer-eo6tqv > :first-child, .framer-PD9Ez .framer-1h1z5pr > :first-child, .framer-PD9Ez .framer-qlcq3a > :first-child, .framer-PD9Ez .framer-nxrrpb > :first-child, .framer-PD9Ez .framer-uu8yxo > :first-child, .framer-PD9Ez .framer-tlsto2 > :first-child, .framer-PD9Ez .framer-1x5iqf9 > :first-child, .framer-PD9Ez .framer-1hi1v3w > :first-child, .framer-PD9Ez .framer-v0en8o > :first-child, .framer-PD9Ez .framer-jfcz9y > :first-child, .framer-PD9Ez .framer-i1nwcl > :first-child, .framer-PD9Ez .framer-1d08e8c > :first-child, .framer-PD9Ez .framer-u8tabx > :first-child, .framer-PD9Ez .framer-7oa6yp > :first-child, .framer-PD9Ez .framer-1qou85s > :first-child, .framer-PD9Ez .framer-mru8f7 > :first-child, .framer-PD9Ez .framer-zof9k4 > :first-child, .framer-PD9Ez .framer-bf68dn > :first-child, .framer-PD9Ez .framer-a0tj25 > :first-child, .framer-PD9Ez .framer-q1hrly > :first-child, .framer-PD9Ez .framer-1wpuij4 > :first-child { margin-left: 0px; } .framer-PD9Ez .framer-1sq4yqf > :last-child, .framer-PD9Ez .framer-rmb6fh > :last-child, .framer-PD9Ez .framer-rco14t > :last-child, .framer-PD9Ez .framer-i9gd4w > :last-child, .framer-PD9Ez .framer-93dwmp > :last-child, .framer-PD9Ez .framer-11gfbp0 > :last-child, .framer-PD9Ez .framer-1lg01n3 > :last-child, .framer-PD9Ez .framer-20a6mv > :last-child, .framer-PD9Ez .framer-5yq327 > :last-child, .framer-PD9Ez .framer-6bdnfb > :last-child, .framer-PD9Ez .framer-1roh5cu > :last-child, .framer-PD9Ez .framer-eo6tqv > :last-child, .framer-PD9Ez .framer-1h1z5pr > :last-child, .framer-PD9Ez .framer-qlcq3a > :last-child, .framer-PD9Ez .framer-nxrrpb > :last-child, .framer-PD9Ez .framer-uu8yxo > :last-child, .framer-PD9Ez .framer-tlsto2 > :last-child, .framer-PD9Ez .framer-1x5iqf9 > :last-child, .framer-PD9Ez .framer-1hi1v3w > :last-child, .framer-PD9Ez .framer-v0en8o > :last-child, .framer-PD9Ez .framer-jfcz9y > :last-child, .framer-PD9Ez .framer-i1nwcl > :last-child, .framer-PD9Ez .framer-1d08e8c > :last-child, .framer-PD9Ez .framer-u8tabx > :last-child, .framer-PD9Ez .framer-7oa6yp > :last-child, .framer-PD9Ez .framer-1qou85s > :last-child, .framer-PD9Ez .framer-mru8f7 > :last-child, .framer-PD9Ez .framer-zof9k4 > :last-child, .framer-PD9Ez .framer-bf68dn > :last-child, .framer-PD9Ez .framer-a0tj25 > :last-child, .framer-PD9Ez .framer-q1hrly > :last-child, .framer-PD9Ez .framer-1wpuij4 > :last-child { margin-right: 0px; } .framer-PD9Ez .framer-rmb6fh > *, .framer-PD9Ez .framer-5yq327 > *, .framer-PD9Ez .framer-6bdnfb > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } .framer-PD9Ez .framer-1ule7kc > * { margin: 0px; margin-bottom: calc(50px / 2); margin-top: calc(50px / 2); } .framer-PD9Ez .framer-15wiwwe > * { margin: 0px; margin-bottom: calc(45px / 2); margin-top: calc(45px / 2); } .framer-PD9Ez .framer-2vhr1i > * { margin: 0px; margin-bottom: calc(36px / 2); margin-top: calc(36px / 2); } .framer-PD9Ez .framer-17avgmd > *, .framer-PD9Ez .framer-e5qrri > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-PD9Ez .framer-rco14t > *, .framer-PD9Ez .framer-zof9k4 > * { margin: 0px; margin-left: calc(24px / 2); margin-right: calc(24px / 2); } .framer-PD9Ez .framer-93dwmp > * { margin: 0px; margin-left: calc(14px / 2); margin-right: calc(14px / 2); } .framer-PD9Ez .framer-11gfbp0 > *, .framer-PD9Ez .framer-1roh5cu > *, .framer-PD9Ez .framer-eo6tqv > *, .framer-PD9Ez .framer-1h1z5pr > *, .framer-PD9Ez .framer-qlcq3a > * { margin: 0px; margin-left: calc(15px / 2); margin-right: calc(15px / 2); } .framer-PD9Ez .framer-dplccv > *, .framer-PD9Ez .framer-iqf75z > *, .framer-PD9Ez .framer-19yxnfl > *, .framer-PD9Ez .framer-fb9vp0 > *, .framer-PD9Ez .framer-bi3c8p > *, .framer-PD9Ez .framer-1x7vnc > *, .framer-PD9Ez .framer-1ob0nva > * { margin: 0px; margin-bottom: calc(60px / 2); margin-top: calc(60px / 2); } .framer-PD9Ez .framer-1400sd5 > *, .framer-PD9Ez .framer-1lhypn3 > *, .framer-PD9Ez .framer-vm6p5j > *, .framer-PD9Ez .framer-d36fel > *, .framer-PD9Ez .framer-hpr2i9 > *, .framer-PD9Ez .framer-1oqtbso > *, .framer-PD9Ez .framer-5g0c1v > *, .framer-PD9Ez .framer-bg3yj2 > * { margin: 0px; margin-bottom: calc(12px / 2); margin-top: calc(12px / 2); } .framer-PD9Ez .framer-4su1td > *, .framer-PD9Ez .framer-f0db3c > *, .framer-PD9Ez .framer-x3n6go > *, .framer-PD9Ez .framer-1a74vm3 > *, .framer-PD9Ez .framer-njc13 > *, .framer-PD9Ez .framer-1nbesdp > *, .framer-PD9Ez .framer-ckiqdk > *, .framer-PD9Ez .framer-350bm9 > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } .framer-PD9Ez .framer-16aon4k > *, .framer-PD9Ez .framer-1ohvwxq > * { margin: 0px; margin-bottom: calc(40px / 2); margin-top: calc(40px / 2); } .framer-PD9Ez .framer-nxrrpb > *, .framer-PD9Ez .framer-uu8yxo > *, .framer-PD9Ez .framer-tlsto2 > *, .framer-PD9Ez .framer-1x5iqf9 > *, .framer-PD9Ez .framer-1hi1v3w > *, .framer-PD9Ez .framer-v0en8o > *, .framer-PD9Ez .framer-jfcz9y > *, .framer-PD9Ez .framer-i1nwcl > *, .framer-PD9Ez .framer-1d08e8c > * { margin: 0px; margin-left: calc(4px / 2); margin-right: calc(4px / 2); } .framer-PD9Ez .framer-1vhr4ha > * { margin: 0px; margin-bottom: calc(13px / 2); margin-top: calc(13px / 2); } .framer-PD9Ez .framer-1ertkbh > *, .framer-PD9Ez .framer-j0fcn9 > * { margin: 0px; margin-bottom: calc(8px / 2); margin-top: calc(8px / 2); } .framer-PD9Ez .framer-1fgmibi > * { margin: 0px; margin-bottom: calc(32px / 2); margin-top: calc(32px / 2); } .framer-PD9Ez .framer-teiuy7 > *, .framer-PD9Ez .framer-1ayxhys > *, .framer-PD9Ez .framer-1mrb3ny > *, .framer-PD9Ez .framer-10v9uj4 > *, .framer-PD9Ez .framer-bii5dq > *, .framer-PD9Ez .framer-13ch7dl > * { margin: 0px; margin-bottom: calc(20px / 2); margin-top: calc(20px / 2); } .framer-PD9Ez .framer-a0tj25 > * { margin: 0px; margin-left: calc(60px / 2); margin-right: calc(60px / 2); } .framer-PD9Ez .framer-q1hrly > * { margin: 0px; margin-left: calc(8px / 2); margin-right: calc(8px / 2); } .framer-PD9Ez .framer-1wpuij4 > * { margin: 0px; margin-left: calc(40px / 2); margin-right: calc(40px / 2); } }\",...sharedStyle.css,...sharedStyle1.css,'.framer-PD9Ez[data-border=\"true\"]::after, .framer-PD9Ez [data-border=\"true\"]::after { content: \"\"; border-width: var(--border-top-width, 0) var(--border-right-width, 0) var(--border-bottom-width, 0) var(--border-left-width, 0); border-color: var(--border-color, none); border-style: var(--border-style, none); width: 100%; height: 100%; position: absolute; box-sizing: border-box; left: 0; top: 0; border-radius: inherit; pointer-events: none; }',\"@media (min-width: 810px) and (max-width: 1199px) { .framer-PD9Ez.framer-1ajrugo { width: 810px; } .framer-PD9Ez .framer-rmb6fh { flex: 1 0 0px; height: min-content; padding: 40px 20px 40px 20px; width: 1px; } .framer-PD9Ez .framer-1ule7kc { align-self: stretch; flex: 1 0 0px; height: auto; order: 0; padding: 20px; width: 1px; } .framer-PD9Ez .framer-smvnnw, .framer-PD9Ez .framer-e7xcx0 { height: var(--framer-aspect-ratio-supported, 28px); width: 75px; } .framer-PD9Ez .framer-1400sd5, .framer-PD9Ez .framer-12firjl, .framer-PD9Ez .framer-5g0c1v { width: 100%; } .framer-PD9Ez .framer-4su1td { gap: 60px; } .framer-PD9Ez .framer-1jiy2cz { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; padding: 0px; width: 100%; } .framer-PD9Ez .framer-iqf75z { flex: 1 0 0px; gap: 100px; left: unset; position: relative; top: unset; width: 1px; } .framer-PD9Ez .framer-1fbyhug, .framer-PD9Ez .framer-lbyb2o, .framer-PD9Ez .framer-myhl77 { flex-direction: column; gap: 60px; justify-content: center; } .framer-PD9Ez .framer-fb9vp0 { padding: 80px 50px 80px 50px; } .framer-PD9Ez .framer-1jdfhpr { flex-direction: column; gap: 36px; justify-content: center; } .framer-PD9Ez .framer-1oqtbso { flex: none; width: 100%; } .framer-PD9Ez .framer-1fgmibi { width: 200px; } .framer-PD9Ez .framer-1bobctc { grid-template-columns: repeat(2, minmax(50px, 1fr)); } .framer-PD9Ez .framer-a0tj25 { padding: 80px 60px 80px 60px; } .framer-PD9Ez .framer-mor308, .framer-PD9Ez .framer-eegfg8, .framer-PD9Ez .framer-ir83ao { height: var(--framer-aspect-ratio-supported, 33px); } .framer-PD9Ez .framer-1gje4s8, .framer-PD9Ez .framer-1y67v08 { height: var(--framer-aspect-ratio-supported, 20px); } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-PD9Ez .framer-4su1td, .framer-PD9Ez .framer-1jiy2cz, .framer-PD9Ez .framer-iqf75z, .framer-PD9Ez .framer-1fbyhug, .framer-PD9Ez .framer-lbyb2o, .framer-PD9Ez .framer-myhl77, .framer-PD9Ez .framer-1jdfhpr { gap: 0px; } .framer-PD9Ez .framer-4su1td > *, .framer-PD9Ez .framer-1fbyhug > *, .framer-PD9Ez .framer-lbyb2o > *, .framer-PD9Ez .framer-myhl77 > * { margin: 0px; margin-bottom: calc(60px / 2); margin-top: calc(60px / 2); } .framer-PD9Ez .framer-4su1td > :first-child, .framer-PD9Ez .framer-iqf75z > :first-child, .framer-PD9Ez .framer-1fbyhug > :first-child, .framer-PD9Ez .framer-lbyb2o > :first-child, .framer-PD9Ez .framer-myhl77 > :first-child, .framer-PD9Ez .framer-1jdfhpr > :first-child { margin-top: 0px; } .framer-PD9Ez .framer-4su1td > :last-child, .framer-PD9Ez .framer-iqf75z > :last-child, .framer-PD9Ez .framer-1fbyhug > :last-child, .framer-PD9Ez .framer-lbyb2o > :last-child, .framer-PD9Ez .framer-myhl77 > :last-child, .framer-PD9Ez .framer-1jdfhpr > :last-child { margin-bottom: 0px; } .framer-PD9Ez .framer-1jiy2cz > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-PD9Ez .framer-1jiy2cz > :first-child { margin-left: 0px; } .framer-PD9Ez .framer-1jiy2cz > :last-child { margin-right: 0px; } .framer-PD9Ez .framer-iqf75z > * { margin: 0px; margin-bottom: calc(100px / 2); margin-top: calc(100px / 2); } .framer-PD9Ez .framer-1jdfhpr > * { margin: 0px; margin-bottom: calc(36px / 2); margin-top: calc(36px / 2); } }}\",\"@media (max-width: 809px) { .framer-PD9Ez.framer-1ajrugo { width: 390px; } .framer-PD9Ez .framer-1iqy489-container { order: 1; } .framer-PD9Ez .framer-1sq4yqf { order: 2; } .framer-PD9Ez .framer-rmb6fh { flex: 1 0 0px; padding: 20px 0px 20px 0px; width: 1px; } .framer-PD9Ez .framer-1ule7kc { height: min-content; padding: 40px 0px 40px 0px; width: 100%; } .framer-PD9Ez .framer-2vhr1i { padding: 20px; } .framer-PD9Ez .framer-lxnitn { --framer-paragraph-spacing: 0px; } .framer-PD9Ez .framer-rco14t { flex-direction: column; justify-content: center; width: 100%; } .framer-PD9Ez .framer-11gfbp0, .framer-PD9Ez .framer-1roh5cu, .framer-PD9Ez .framer-eo6tqv, .framer-PD9Ez .framer-1h1z5pr, .framer-PD9Ez .framer-qlcq3a, .framer-PD9Ez .framer-9h2wmm { flex-direction: column; } .framer-PD9Ez .framer-smvnnw, .framer-PD9Ez .framer-e7xcx0 { height: var(--framer-aspect-ratio-supported, 28px); width: 75px; } .framer-PD9Ez .framer-20a6mv { flex: none; justify-content: center; width: 100%; } .framer-PD9Ez .framer-ct8ekk, .framer-PD9Ez .framer-5tgplk, .framer-PD9Ez .framer-15orbnu { width: var(--framer-aspect-ratio-supported, 91px); } .framer-PD9Ez .framer-dplccv { order: 3; padding: 80px 40px 80px 40px; } .framer-PD9Ez .framer-1400sd5 { gap: 24px; } .framer-PD9Ez .framer-1y2g0cy, .framer-PD9Ez .framer-12firjl, .framer-PD9Ez .framer-vm6p5j, .framer-PD9Ez .framer-xi099l, .framer-PD9Ez .framer-d36fel, .framer-PD9Ez .framer-1jgzne, .framer-PD9Ez .framer-hpr2i9, .framer-PD9Ez .framer-5zk87l, .framer-PD9Ez .framer-5g0c1v, .framer-PD9Ez .framer-1fgmibi { width: 100%; } .framer-PD9Ez .framer-1lhypn3 { gap: 24px; width: 100%; } .framer-PD9Ez .framer-1mnofa6, .framer-PD9Ez .framer-pscs70, .framer-PD9Ez .framer-v8s1ct, .framer-PD9Ez .framer-1y780vs { white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; } .framer-PD9Ez .framer-4su1td { order: 4; padding: 60px 20px 60px 20px; } .framer-PD9Ez .framer-1jiy2cz { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; padding: 0px; width: 100%; } .framer-PD9Ez .framer-iqf75z { flex: 1 0 0px; left: unset; position: relative; top: unset; width: 1px; } .framer-PD9Ez .framer-1fbyhug, .framer-PD9Ez .framer-lbyb2o, .framer-PD9Ez .framer-myhl77 { flex-direction: column; gap: 40px; justify-content: center; } .framer-PD9Ez .framer-12og2m, .framer-PD9Ez .framer-u4nhcj, .framer-PD9Ez .framer-1id0ghy { flex: 1 0 0px; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; } .framer-PD9Ez .framer-15951uy, .framer-PD9Ez .framer-omgqa9, .framer-PD9Ez .framer-1r4tjvo { width: 300px; } .framer-PD9Ez .framer-19yxnfl { order: 13; } .framer-PD9Ez .framer-fb9vp0 { order: 5; padding: 80px 40px 80px 40px; } .framer-PD9Ez .framer-1jdfhpr { flex-direction: column; gap: 24px; justify-content: center; } .framer-PD9Ez .framer-1oqtbso, .framer-PD9Ez .framer-1g4l8oo { flex: none; width: 100%; } .framer-PD9Ez .framer-1pzm9lt { grid-template-columns: repeat(2, minmax(50px, 1fr)); } .framer-PD9Ez .framer-1ob0nva { order: 7; padding: 80px 40px 80px 40px; } .framer-PD9Ez .framer-8r6ctn { flex-direction: column; gap: 30px; justify-content: center; } .framer-PD9Ez .framer-mp66yy { aspect-ratio: 0.8395061728395061 / 1; height: var(--framer-aspect-ratio-supported, 405px); width: 300px; } .framer-PD9Ez .framer-1bobctc { grid-template-columns: repeat(1, minmax(50px, 1fr)); } .framer-PD9Ez .framer-a0tj25 { order: 10; padding: 80px 40px 80px 40px; } .framer-PD9Ez .framer-1wpuij4 { align-content: unset; align-items: unset; display: grid; grid-auto-rows: minmax(0, 1fr); grid-template-columns: repeat(2, minmax(50px, 1fr)); grid-template-rows: repeat(2, minmax(0, 1fr)); } .framer-PD9Ez .framer-mor308, .framer-PD9Ez .framer-eegfg8, .framer-PD9Ez .framer-ir83ao { align-self: start; flex: none; height: var(--framer-aspect-ratio-supported, 75px); justify-self: start; width: 100%; } .framer-PD9Ez .framer-1gje4s8 { align-self: start; flex: none; height: var(--framer-aspect-ratio-supported, 45px); justify-self: start; width: 100%; } .framer-PD9Ez .framer-1y67v08 { align-self: start; flex: none; height: var(--framer-aspect-ratio-supported, 46px); justify-self: start; width: 100%; } .framer-PD9Ez .framer-bwjc43-container { order: 11; } .framer-PD9Ez .framer-1d731zu-container { order: 12; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-PD9Ez .framer-rco14t, .framer-PD9Ez .framer-11gfbp0, .framer-PD9Ez .framer-1400sd5, .framer-PD9Ez .framer-1lhypn3, .framer-PD9Ez .framer-1roh5cu, .framer-PD9Ez .framer-eo6tqv, .framer-PD9Ez .framer-1h1z5pr, .framer-PD9Ez .framer-qlcq3a, .framer-PD9Ez .framer-1jiy2cz, .framer-PD9Ez .framer-1fbyhug, .framer-PD9Ez .framer-lbyb2o, .framer-PD9Ez .framer-myhl77, .framer-PD9Ez .framer-1jdfhpr, .framer-PD9Ez .framer-8r6ctn, .framer-PD9Ez .framer-9h2wmm, .framer-PD9Ez .framer-1wpuij4 { gap: 0px; } .framer-PD9Ez .framer-rco14t > *, .framer-PD9Ez .framer-1400sd5 > *, .framer-PD9Ez .framer-1lhypn3 > *, .framer-PD9Ez .framer-1jdfhpr > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } .framer-PD9Ez .framer-rco14t > :first-child, .framer-PD9Ez .framer-11gfbp0 > :first-child, .framer-PD9Ez .framer-1400sd5 > :first-child, .framer-PD9Ez .framer-1lhypn3 > :first-child, .framer-PD9Ez .framer-1roh5cu > :first-child, .framer-PD9Ez .framer-eo6tqv > :first-child, .framer-PD9Ez .framer-1h1z5pr > :first-child, .framer-PD9Ez .framer-qlcq3a > :first-child, .framer-PD9Ez .framer-1fbyhug > :first-child, .framer-PD9Ez .framer-lbyb2o > :first-child, .framer-PD9Ez .framer-myhl77 > :first-child, .framer-PD9Ez .framer-1jdfhpr > :first-child, .framer-PD9Ez .framer-8r6ctn > :first-child { margin-top: 0px; } .framer-PD9Ez .framer-rco14t > :last-child, .framer-PD9Ez .framer-11gfbp0 > :last-child, .framer-PD9Ez .framer-1400sd5 > :last-child, .framer-PD9Ez .framer-1lhypn3 > :last-child, .framer-PD9Ez .framer-1roh5cu > :last-child, .framer-PD9Ez .framer-eo6tqv > :last-child, .framer-PD9Ez .framer-1h1z5pr > :last-child, .framer-PD9Ez .framer-qlcq3a > :last-child, .framer-PD9Ez .framer-1fbyhug > :last-child, .framer-PD9Ez .framer-lbyb2o > :last-child, .framer-PD9Ez .framer-myhl77 > :last-child, .framer-PD9Ez .framer-1jdfhpr > :last-child, .framer-PD9Ez .framer-8r6ctn > :last-child { margin-bottom: 0px; } .framer-PD9Ez .framer-11gfbp0 > *, .framer-PD9Ez .framer-1roh5cu > *, .framer-PD9Ez .framer-eo6tqv > *, .framer-PD9Ez .framer-1h1z5pr > *, .framer-PD9Ez .framer-qlcq3a > * { margin: 0px; margin-bottom: calc(15px / 2); margin-top: calc(15px / 2); } .framer-PD9Ez .framer-1jiy2cz > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-PD9Ez .framer-1jiy2cz > :first-child { margin-left: 0px; } .framer-PD9Ez .framer-1jiy2cz > :last-child { margin-right: 0px; } .framer-PD9Ez .framer-1fbyhug > *, .framer-PD9Ez .framer-lbyb2o > *, .framer-PD9Ez .framer-myhl77 > * { margin: 0px; margin-bottom: calc(40px / 2); margin-top: calc(40px / 2); } .framer-PD9Ez .framer-8r6ctn > * { margin: 0px; margin-bottom: calc(30px / 2); margin-top: calc(30px / 2); } .framer-PD9Ez .framer-9h2wmm > *, .framer-PD9Ez .framer-9h2wmm > :first-child, .framer-PD9Ez .framer-9h2wmm > :last-child, .framer-PD9Ez .framer-1wpuij4 > *, .framer-PD9Ez .framer-1wpuij4 > :first-child, .framer-PD9Ez .framer-1wpuij4 > :last-child { margin: 0px; } }}\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 7530.5\n * @framerIntrinsicWidth 1200\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"lvU7ihE5N\":{\"layout\":[\"fixed\",\"auto\"]},\"CiBw77sk3\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n * @framerAcceptsLayoutTemplate true\n * @framerScrollSections {\"ZZKrHtyuy\":{\"pattern\":\":ZZKrHtyuy\",\"name\":\"faqs\"}}\n * @framerResponsiveScreen\n */const FramerI9ca44g56=withCSS(Component,css,\"framer-PD9Ez\");export default FramerI9ca44g56;FramerI9ca44g56.displayName=\"Home\";FramerI9ca44g56.defaultProps={height:7530.5,width:1200};addFonts(FramerI9ca44g56,[{explicitInter:true,fonts:[{family:\"Outfit\",source:\"fontshare\",style:\"normal\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/VMAVI5EHLU77KACBXFKSI223A33BYMYT/KGPZSBKAZPJQJIDUI6CQETV3BKZULTEA/H5PDA446U7YOJH5A6HXMFOX33XDBMWB5.woff2\",weight:\"800\"},{family:\"Outfit\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/outfit/v11/QGYyz_MVcBeNP4NjuGObqx1XmO1I4W61C4S-EiAou6Y.woff2\",weight:\"300\"},{family:\"Outfit\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/outfit/v11/QGYyz_MVcBeNP4NjuGObqx1XmO1I4e6yC4S-EiAou6Y.woff2\",weight:\"600\"},{family:\"Outfit\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/outfit/v11/QGYyz_MVcBeNP4NjuGObqx1XmO1I4QK1C4S-EiAou6Y.woff2\",weight:\"500\"},{family:\"Poppins\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/poppins/v22/pxiByp8kv8JHgFVrLEj6V15vFP-KUEg.woff2\",weight:\"600\"},{family:\"Outfit\",source:\"fontshare\",style:\"normal\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/WAAMEHKHJC5RGH5HYZXARMZDOGNO2EWO/IMX7NRNUMJVK7YFRJRZSA3UNPLUBPYIJ/QWBFHLNJNNJC3X2PA4WN6Q2H5G7OG6MX.woff2\",weight:\"900\"},{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:\"Outfit\",source:\"fontshare\",style:\"normal\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/RPEPC24XXAVK6EWUOKWQUPTOZQR35AS2/BVWMEQ5ZCLZP2VOXOHXQDCZADXNFBXUF/5REHZLR2B5PQAKMITIQJK6BDK34RDHS4.woff2\",weight:\"400\"},{family:\"Outfit\",source:\"fontshare\",style:\"normal\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/EUV6IZMPXOYBUY6KFIXKZWM47ESY5XYA/BLW2AGODUKQKRMYEVOEMMPY2ITRKBJIP/OKGWSU2PUNNFKQVFV2XFOSAHRXYREMR2.woff2\",weight:\"700\"},{family:\"Outfit\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/outfit/v11/QGYyz_MVcBeNP4NjuGObqx1XmO1I4deyC4S-EiAou6Y.woff2\",weight:\"700\"},{family:\"Outfit\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/outfit/v11/QGYyz_MVcBeNP4NjuGObqx1XmO1I4TC1C4S-EiAou6Y.woff2\",weight:\"400\"}]},...NavbarMainFonts,...YouTubeFonts,...FeatureListIconFonts,...VideoFonts,...FAQSFonts,...FooterFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerI9ca44g56\",\"slots\":[],\"annotations\":{\"framerIntrinsicHeight\":\"7530.5\",\"framerScrollSections\":\"{\\\"ZZKrHtyuy\\\":{\\\"pattern\\\":\\\":ZZKrHtyuy\\\",\\\"name\\\":\\\"faqs\\\"}}\",\"framerImmutableVariables\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"lvU7ihE5N\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"CiBw77sk3\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerAcceptsLayoutTemplate\":\"true\",\"framerResponsiveScreen\":\"\",\"framerIntrinsicWidth\":\"1200\",\"framerDisplayContentsDiv\":\"false\",\"framerContractVersion\":\"1\",\"framerComponentViewportWidth\":\"true\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}"],
  "mappings": "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",
  "names": ["ObjectFitType", "SrcType", "defaultVideo", "getProps", "props", "width", "height", "topLeft", "topRight", "bottomRight", "bottomLeft", "id", "children", "rest", "Video", "newProps", "p", "VideoMemo", "usePlaybackControls", "videoRef", "isInCurrentNavigationTarget", "useIsInCurrentNavigationTarget", "requestingPlay", "pe", "isPlayingRef", "setProgress", "te", "rawProgress", "newProgress", "isAlreadySet", "play", "video", "e", "pause", "useAutoplayBehavior", "playingProp", "muted", "loop", "playsinline", "controls", "initialPlayingProp", "ye", "hasPlayingPropChanged", "setHasPlayingPropChanged", "behavesAsGif", "autoplay", "X", "srcType", "srcUrl", "srcFile", "posterEnabled", "playing", "restartOnEnter", "objectFit", "backgroundColor", "radius", "volume", "startTimeProp", "poster", "progress", "onSeeked", "onPause", "onPlay", "onEnd", "onClick", "onMouseEnter", "onMouseLeave", "onMouseDown", "onMouseUp", "isSafari", "useIsBrowserSafari", "wasPausedOnLeave", "wasEndedOnLeave", "isOnCanvas", "useIsOnCanvas", "renderTarget", "useRenderTarget", "isStaticRenderer", "RenderTarget", "borderRadius", "useRadius", "autoplayBehavior", "isInViewport", "useInView", "isCloseToViewport", "startTime", "isPlaying", "ue", "isMountedAndReadyForProgressChanges", "rawProgressValue", "isMotionValue", "value", "useOnEnter", "useOnExit", "src", "se", "fragment", "handleReady", "capitalizeFirstLetter", "titleCase", "objectFitOptions", "addPropertyControls", "ControlType", "borderRadiusControl", "defaultEvents", "serializationHash", "variantClassNames", "transition1", "toResponsiveImage", "value", "transformTemplate1", "_", "t", "Transition", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "getProps", "height", "iconBackground", "iconImage", "id", "title", "width", "props", "createLayoutDependency", "variants", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "variant", "pErTc1CqE", "TxrwhPx3L", "ZHWXy2Oif", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "variantClassNames", "layoutDependency", "scopingClassNames", "cx", "serializationHash", "LayoutGroup", "u", "Image2", "getLoadingLazyAtYPosition", "RichText2", "css", "FramerMCYrysSLT", "withCSS", "MCYrysSLT_default", "addPropertyControls", "ControlType", "addFonts", "calcHeight", "Component", "props", "window", "p", "columnReverse", "Component", "props", "window", "p", "NavbarMainFonts", "getFonts", "NBa_kmYy3_default", "YouTubeFonts", "Youtube", "MotionDivWithOptimizedAppearEffect", "withOptimizedAppearEffect", "motion", "MotionDivCalcHeightrmb6fh", "withCodeBoundaryForOverrides", "calcHeight", "RichTextWithFX", "withFX", "RichText2", "MotionDivWithFX", "ImageWithFX", "Image2", "MotionDivColumnReverselbyb2o", "columnReverse", "FeatureListIconFonts", "MCYrysSLT_default", "VideoFonts", "Video", "FAQSFonts", "BGJFfkBes_default", "FooterFonts", "Hyh0UT6Bu_default", "breakpoints", "isBrowser", "serializationHash", "variantClassNames", "getContainer", "Overlay", "children", "blockDocumentScrolling", "enabled", "visible", "setVisible", "useOverlayState", "transition1", "animation", "animation1", "transformTemplate1", "_", "t", "animation2", "transition2", "animation3", "transition3", "animation4", "addImageAlt", "image", "alt", "HTMLStyle", "value", "useIsOnFramerCanvas", "p", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "variant", "restProps", "ue", "metadata", "robotsTag", "ie", "baseVariant", "hydratedBaseVariant", "useHydratedBreakpointVariants", "gestureVariant", "activeVariantCallback", "delay", "useActiveVariantCallback", "onTap3bnx0g", "overlay", "loadMore", "args", "scopingClassNames", "cx", "isDisplayed", "elementId", "useRouteElementId", "ref1", "useCustomCursors", "GeneratedComponentContext", "u", "LayoutGroup", "ComponentViewportProvider", "Container", "PropertyOverrides2", "x", "Link", "l", "SVG", "AnimatePresence", "Ga", "getLoadingLazyAtYPosition", "overlay1", "css", "FramerI9ca44g56", "withCSS", "I9ca44g56_default", "addFonts", "getFontsFromSharedStyle", "fonts", "__FramerMetadata__"]
}
