{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/lRDHiNWNVWmE0lqtoVHP/7qT0r3So12155VV5Jq5x/Video.js", "ssg:https://framerusercontent.com/modules/46HUMfbSrh34rnvGpKL6/ZSYKtJiubx2xW9dIEaEr/V_jSjabrI.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 (d65f646)\nimport{jsx as _jsx,jsxs as _jsxs,Fragment as _Fragment}from\"react/jsx-runtime\";import{addFonts,ChildrenCanSuspend,ComponentViewportProvider,Container,cx,GeneratedComponentContext,getFonts,getFontsFromSharedStyle,getLoadingLazyAtYPosition,Image,Link,PathVariablesContext,PropertyOverrides,ResolveLinks,RichText,useComponentViewport,useCustomCursors,useHydratedBreakpointVariants,useIsOnFramerCanvas,useLocaleInfo,useQueryData,useRouter,withCSS}from\"framer\";import{LayoutGroup,motion}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import{Video}from\"https://framerusercontent.com/modules/lRDHiNWNVWmE0lqtoVHP/7qT0r3So12155VV5Jq5x/Video.js\";import ButtonPrimary from\"#framer/local/canvasComponent/DwTd6U4Br/DwTd6U4Br.js\";import MiscLabel from\"#framer/local/canvasComponent/JGqfwv9bG/JGqfwv9bG.js\";import Team from\"#framer/local/canvasComponent/XvEdGsaOG/XvEdGsaOG.js\";import SectionBook from\"#framer/local/canvasComponent/zyNqZq3bZ/zyNqZq3bZ.js\";import Therapists from\"#framer/local/collection/wxinxibqF/wxinxibqF.js\";import*as sharedStyle from\"#framer/local/css/bxpu1R9D8/bxpu1R9D8.js\";import*as sharedStyle2 from\"#framer/local/css/dnTVzDj7S/dnTVzDj7S.js\";import*as sharedStyle3 from\"#framer/local/css/E5sV_RgoP/E5sV_RgoP.js\";import*as sharedStyle1 from\"#framer/local/css/fgnGw8JAO/fgnGw8JAO.js\";import*as sharedStyle6 from\"#framer/local/css/IK0NEAs9q/IK0NEAs9q.js\";import*as sharedStyle4 from\"#framer/local/css/s0CZ5fsSj/s0CZ5fsSj.js\";import*as sharedStyle5 from\"#framer/local/css/XxCKcF1_8/XxCKcF1_8.js\";import metadataProvider from\"#framer/local/webPageMetadata/V_jSjabrI/V_jSjabrI.js\";const MiscLabelFonts=getFonts(MiscLabel);const ButtonPrimaryFonts=getFonts(ButtonPrimary);const VideoFonts=getFonts(Video);const TeamFonts=getFonts(Team);const SectionBookFonts=getFonts(SectionBook);const breakpoints={hwNFUx2vK:\"(max-width: 809px)\",tQi3oF2Aa:\"(min-width: 1200px)\",uPZ3pZ8oO:\"(min-width: 810px) and (max-width: 1199px)\"};const isBrowser=()=>typeof document!==\"undefined\";const serializationHash=\"framer-b3Bmu\";const variantClassNames={hwNFUx2vK:\"framer-v-wl992h\",tQi3oF2Aa:\"framer-v-ljc7o8\",uPZ3pZ8oO:\"framer-v-1av7n8j\"};const toResponsiveImage=value=>{if(typeof value===\"object\"&&value!==null&&typeof value.src===\"string\"){return value;}return typeof value===\"string\"?{src:value}:undefined;};const QueryData=({query,pageSize,children})=>{const data=useQueryData(query);return children(data);};const HTMLStyle=({value})=>{const onCanvas=useIsOnFramerCanvas();if(onCanvas)return null;return /*#__PURE__*/_jsx(\"style\",{dangerouslySetInnerHTML:{__html:value},\"data-framer-html-style\":\"\"});};const humanReadableVariantMap={Desktop:\"tQi3oF2Aa\",Phone:\"hwNFUx2vK\",Tablet:\"uPZ3pZ8oO\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"tQi3oF2Aa\"};};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,ervI4xiViwh09y_fWw,RLed8EL6bwh09y_fWw,xa5vcinSuwh09y_fWw,PdeASI0yCwh09y_fWw,SMD4IuFv_wh09y_fWw,Drqocu1DEwh09y_fWw,MD5PwgKbswh09y_fWw,qX53SLr6lwh09y_fWw,TUUaJG429wh09y_fWw,idwh09y_fWw,...restProps}=getProps(props);React.useEffect(()=>{const metadata=metadataProvider(undefined,activeLocale);if(metadata.robots){let robotsTag=document.querySelector('meta[name=\"robots\"]');if(robotsTag){robotsTag.setAttribute(\"content\",metadata.robots);}else{robotsTag=document.createElement(\"meta\");robotsTag.setAttribute(\"name\",\"robots\");robotsTag.setAttribute(\"content\",metadata.robots);document.head.appendChild(robotsTag);}}},[undefined,activeLocale]);React.useInsertionEffect(()=>{const metadata=metadataProvider(undefined,activeLocale);document.title=metadata.title||\"\";if(metadata.viewport){document.querySelector('meta[name=\"viewport\"]')?.setAttribute(\"content\",metadata.viewport);}},[undefined,activeLocale]);const[baseVariant,hydratedBaseVariant]=useHydratedBreakpointVariants(variant,breakpoints,false);const gestureVariant=undefined;const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className,sharedStyle2.className,sharedStyle3.className,sharedStyle4.className,sharedStyle5.className,sharedStyle6.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const router=useRouter();useCustomCursors({});return /*#__PURE__*/_jsx(GeneratedComponentContext.Provider,{value:{primaryVariantId:\"tQi3oF2Aa\",variantClassNames},children:/*#__PURE__*/_jsxs(LayoutGroup,{id:layoutId??defaultLayoutId,children:[/*#__PURE__*/_jsx(HTMLStyle,{value:\"html body { background: var(--token-effc3836-1b51-4c8f-a162-f51c81ab6768, rgb(255, 253, 245)); }\"}),/*#__PURE__*/_jsxs(motion.div,{...restProps,className:cx(scopingClassNames,\"framer-ljc7o8\",className),ref:refBinding,style:{...style},children:[/*#__PURE__*/_jsx(\"section\",{className:\"framer-13f5ws0\",\"data-framer-name\":\"Page Header\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-j0eule\",\"data-framer-name\":\"Inner\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-fsct93\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1g36y42\",\"data-framer-name\":\"Title\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1s717cs\",\"data-framer-name\":\"Breadcrumbs\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1ti1yzm\",\"data-styles-preset\":\"bxpu1R9D8\",children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"augiA20Il\"},motionChild:true,nodeId:\"PYi1pnf39\",openInNewTab:false,scopeId:\"V_jSjabrI\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1sslgnx\",\"data-styles-preset\":\"fgnGw8JAO\",children:\"Home\"})})})}),className:\"framer-1y6i5b3\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1ti1yzm\",\"data-styles-preset\":\"bxpu1R9D8\",children:\"/\"})}),className:\"framer-v4sqw2\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1ti1yzm\",\"data-styles-preset\":\"bxpu1R9D8\",children:\"About us\"})}),className:\"framer-12w7wqp\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{className:\"framer-styles-preset-dbbbvw\",\"data-styles-preset\":\"dnTVzDj7S\",children:\"We believe healing starts with being seen\"})}),className:\"framer-7frj7b\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1ll02m5\",\"data-styles-preset\":\"E5sV_RgoP\",children:\"At Owah, we create space for you to be fully human \u2014 not fixed, not polished, just present. We know that mental wellness isn't a one-size-fits-all path. It's layered. It's personal. It's sacred.\"})}),className:\"framer-15wiwgz\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1udpttg\",\"data-framer-name\":\"Image\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{hwNFUx2vK:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:5878,intrinsicWidth:3919,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+30+0+262.2+0+0),pixelHeight:5878,pixelWidth:3919,sizes:`min(max(${componentViewport?.width||\"100vw\"} - 40px, 1px), 1440px)`,src:\"https://framerusercontent.com/images/JaH0jsF1UDlfcRHOjOBwaRJeA.jpg\",srcSet:\"https://framerusercontent.com/images/JaH0jsF1UDlfcRHOjOBwaRJeA.jpg?scale-down-to=1024 682w,https://framerusercontent.com/images/JaH0jsF1UDlfcRHOjOBwaRJeA.jpg?scale-down-to=2048 1365w,https://framerusercontent.com/images/JaH0jsF1UDlfcRHOjOBwaRJeA.jpg?scale-down-to=4096 2730w,https://framerusercontent.com/images/JaH0jsF1UDlfcRHOjOBwaRJeA.jpg 3919w\"}},uPZ3pZ8oO:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:5878,intrinsicWidth:3919,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+40+0+272.2+0),pixelHeight:5878,pixelWidth:3919,sizes:`calc(min(max(${componentViewport?.width||\"100vw\"} - 60px, 1px), 1440px) * 0.3)`,src:\"https://framerusercontent.com/images/JaH0jsF1UDlfcRHOjOBwaRJeA.jpg\",srcSet:\"https://framerusercontent.com/images/JaH0jsF1UDlfcRHOjOBwaRJeA.jpg?scale-down-to=1024 682w,https://framerusercontent.com/images/JaH0jsF1UDlfcRHOjOBwaRJeA.jpg?scale-down-to=2048 1365w,https://framerusercontent.com/images/JaH0jsF1UDlfcRHOjOBwaRJeA.jpg?scale-down-to=4096 2730w,https://framerusercontent.com/images/JaH0jsF1UDlfcRHOjOBwaRJeA.jpg 3919w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:5878,intrinsicWidth:3919,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+50+0+272.2+0),pixelHeight:5878,pixelWidth:3919,sizes:`calc(min(max(${componentViewport?.width||\"100vw\"} - 80px, 1px), 1440px) * 0.3)`,src:\"https://framerusercontent.com/images/JaH0jsF1UDlfcRHOjOBwaRJeA.jpg\",srcSet:\"https://framerusercontent.com/images/JaH0jsF1UDlfcRHOjOBwaRJeA.jpg?scale-down-to=1024 682w,https://framerusercontent.com/images/JaH0jsF1UDlfcRHOjOBwaRJeA.jpg?scale-down-to=2048 1365w,https://framerusercontent.com/images/JaH0jsF1UDlfcRHOjOBwaRJeA.jpg?scale-down-to=4096 2730w,https://framerusercontent.com/images/JaH0jsF1UDlfcRHOjOBwaRJeA.jpg 3919w\"},className:\"framer-ddjpfr\",\"data-framer-name\":\"Image\"})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{hwNFUx2vK:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:4e3,intrinsicWidth:6e3,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+30+0+262.2+0+420),pixelHeight:4e3,pixelWidth:6e3,sizes:`min(max(${componentViewport?.width||\"100vw\"} - 40px, 1px), 1440px)`,src:\"https://framerusercontent.com/images/cfKQzh15jBKjGmx2MI1iOkQbMhM.jpg\",srcSet:\"https://framerusercontent.com/images/cfKQzh15jBKjGmx2MI1iOkQbMhM.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/cfKQzh15jBKjGmx2MI1iOkQbMhM.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/cfKQzh15jBKjGmx2MI1iOkQbMhM.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/cfKQzh15jBKjGmx2MI1iOkQbMhM.jpg?scale-down-to=4096 4096w,https://framerusercontent.com/images/cfKQzh15jBKjGmx2MI1iOkQbMhM.jpg 6000w\"}},uPZ3pZ8oO:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:4e3,intrinsicWidth:6e3,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+40+0+272.2+0),pixelHeight:4e3,pixelWidth:6e3,sizes:`max(min(max(${componentViewport?.width||\"100vw\"} - 60px, 1px), 1440px) * 0.7 - 20px, 1px)`,src:\"https://framerusercontent.com/images/cfKQzh15jBKjGmx2MI1iOkQbMhM.jpg\",srcSet:\"https://framerusercontent.com/images/cfKQzh15jBKjGmx2MI1iOkQbMhM.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/cfKQzh15jBKjGmx2MI1iOkQbMhM.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/cfKQzh15jBKjGmx2MI1iOkQbMhM.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/cfKQzh15jBKjGmx2MI1iOkQbMhM.jpg?scale-down-to=4096 4096w,https://framerusercontent.com/images/cfKQzh15jBKjGmx2MI1iOkQbMhM.jpg 6000w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:4e3,intrinsicWidth:6e3,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+50+0+272.2+0),pixelHeight:4e3,pixelWidth:6e3,sizes:`max(min(max(${componentViewport?.width||\"100vw\"} - 80px, 1px), 1440px) * 0.7 - 20px, 1px)`,src:\"https://framerusercontent.com/images/cfKQzh15jBKjGmx2MI1iOkQbMhM.jpg\",srcSet:\"https://framerusercontent.com/images/cfKQzh15jBKjGmx2MI1iOkQbMhM.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/cfKQzh15jBKjGmx2MI1iOkQbMhM.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/cfKQzh15jBKjGmx2MI1iOkQbMhM.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/cfKQzh15jBKjGmx2MI1iOkQbMhM.jpg?scale-down-to=4096 4096w,https://framerusercontent.com/images/cfKQzh15jBKjGmx2MI1iOkQbMhM.jpg 6000w\"},className:\"framer-h6bm7c\",\"data-framer-name\":\"Image\"})})]})]})}),/*#__PURE__*/_jsx(\"section\",{className:\"framer-16394zy\",\"data-framer-name\":\"About\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-lhb9vk\",\"data-framer-name\":\"Inner\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-139cmxn\",\"data-framer-name\":\"Container\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-qtkcw5\",\"data-framer-name\":\"Title\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{hwNFUx2vK:{y:(componentViewport?.y||0)+0+972.2+40+0+0+0+0+0+0},uPZ3pZ8oO:{y:(componentViewport?.y||0)+0+892.2+60+0+0+0+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:16,y:(componentViewport?.y||0)+0+922.2+50+0+0+0+0+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-phnzom-container\",nodeId:\"aTy2tqAkJ\",scopeId:\"V_jSjabrI\",children:/*#__PURE__*/_jsx(MiscLabel,{dj41NqKa7:\"Who we are\",height:\"100%\",id:\"aTy2tqAkJ\",layoutId:\"aTy2tqAkJ\",r4CTqFw3l:\"var(--token-31822e37-f524-4775-958f-199ea451efa7, rgb(0, 0, 0))\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-1xxg56x\",\"data-styles-preset\":\"s0CZ5fsSj\",children:\"Because everyone deserves a space to be heard, understood, and gently guided toward healing\"})}),className:\"framer-2s6xut\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{hwNFUx2vK:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:3991,intrinsicWidth:5986,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+972.2+40+0+0+0+96.4),pixelHeight:3991,pixelWidth:5986,sizes:`min(max(${componentViewport?.width||\"100vw\"} - 40px, 1px), 1440px)`,src:\"https://framerusercontent.com/images/991x7Oh18nE2OVuwVm7iMy4kms.jpg\",srcSet:\"https://framerusercontent.com/images/991x7Oh18nE2OVuwVm7iMy4kms.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/991x7Oh18nE2OVuwVm7iMy4kms.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/991x7Oh18nE2OVuwVm7iMy4kms.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/991x7Oh18nE2OVuwVm7iMy4kms.jpg?scale-down-to=4096 4096w,https://framerusercontent.com/images/991x7Oh18nE2OVuwVm7iMy4kms.jpg 5986w\"}},uPZ3pZ8oO:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:3991,intrinsicWidth:5986,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+892.2+60+0+0+96.4),pixelHeight:3991,pixelWidth:5986,sizes:`max((min(max(${componentViewport?.width||\"100vw\"} - 60px, 1px), 1440px) - 30px) / 2, 1px)`,src:\"https://framerusercontent.com/images/991x7Oh18nE2OVuwVm7iMy4kms.jpg\",srcSet:\"https://framerusercontent.com/images/991x7Oh18nE2OVuwVm7iMy4kms.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/991x7Oh18nE2OVuwVm7iMy4kms.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/991x7Oh18nE2OVuwVm7iMy4kms.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/991x7Oh18nE2OVuwVm7iMy4kms.jpg?scale-down-to=4096 4096w,https://framerusercontent.com/images/991x7Oh18nE2OVuwVm7iMy4kms.jpg 5986w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:3991,intrinsicWidth:5986,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+922.2+50+0+0+96.4),pixelHeight:3991,pixelWidth:5986,sizes:`max((min(max(${componentViewport?.width||\"100vw\"} - 80px, 1px), 1440px) - 30px) / 2, 1px)`,src:\"https://framerusercontent.com/images/991x7Oh18nE2OVuwVm7iMy4kms.jpg\",srcSet:\"https://framerusercontent.com/images/991x7Oh18nE2OVuwVm7iMy4kms.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/991x7Oh18nE2OVuwVm7iMy4kms.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/991x7Oh18nE2OVuwVm7iMy4kms.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/991x7Oh18nE2OVuwVm7iMy4kms.jpg?scale-down-to=4096 4096w,https://framerusercontent.com/images/991x7Oh18nE2OVuwVm7iMy4kms.jpg 5986w\"},className:\"framer-89egka\",\"data-framer-name\":\"Image\"})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-9007jv\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1ll02m5\",\"data-styles-preset\":\"E5sV_RgoP\",children:\"Whether you\u2019re navigating anxiety, burnout, life transitions, or simply seeking more balance, we\u2019re here to support your growth \u2014 gently, one step at a time.\"})}),className:\"framer-1y2kna6\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-lhcddl\",\"data-framer-name\":\"Action\",children:[/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"B7ak5um_B\"},implicitPathVariables:undefined},{href:{webPageId:\"B7ak5um_B\"},implicitPathVariables:undefined},{href:{webPageId:\"B7ak5um_B\"},implicitPathVariables:undefined}],children:resolvedLinks=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{hwNFUx2vK:{y:(componentViewport?.y||0)+0+972.2+40+0+0+0+916.4+0+132+0},uPZ3pZ8oO:{y:(componentViewport?.y||0)+0+892.2+60+0+0+916.4+0+132+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:42,y:(componentViewport?.y||0)+0+922.2+50+0+0+916.4+0+132+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-tnlnuu-container\",nodeId:\"yFF1BfzrY\",scopeId:\"V_jSjabrI\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{hwNFUx2vK:{DQJqww4VK:resolvedLinks[2]},uPZ3pZ8oO:{DQJqww4VK:resolvedLinks[1]}},children:/*#__PURE__*/_jsx(ButtonPrimary,{DQJqww4VK:resolvedLinks[0],height:\"100%\",id:\"yFF1BfzrY\",layoutId:\"yFF1BfzrY\",variant:\"iKOrKQoxj\",wgoAucM0f:\"Contact us\",width:\"100%\"})})})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"O4hBcaUbS\"},implicitPathVariables:undefined},{href:{webPageId:\"O4hBcaUbS\"},implicitPathVariables:undefined},{href:{webPageId:\"O4hBcaUbS\"},implicitPathVariables:undefined}],children:resolvedLinks1=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{hwNFUx2vK:{y:(componentViewport?.y||0)+0+972.2+40+0+0+0+916.4+0+132+0},uPZ3pZ8oO:{y:(componentViewport?.y||0)+0+892.2+60+0+0+916.4+0+132+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:42,y:(componentViewport?.y||0)+0+922.2+50+0+0+916.4+0+132+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-cv8ufs-container\",nodeId:\"UwDDCX71s\",scopeId:\"V_jSjabrI\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{hwNFUx2vK:{DQJqww4VK:resolvedLinks1[2]},uPZ3pZ8oO:{DQJqww4VK:resolvedLinks1[1]}},children:/*#__PURE__*/_jsx(ButtonPrimary,{DQJqww4VK:resolvedLinks1[0],height:\"100%\",id:\"UwDDCX71s\",layoutId:\"UwDDCX71s\",variant:\"jdWPzdk0a\",wgoAucM0f:\"Our services\",width:\"100%\"})})})})})})]})]})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{hwNFUx2vK:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:6e3,intrinsicWidth:4e3,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+972.2+40+0+1120.4),pixelHeight:6e3,pixelWidth:4e3,sizes:`min(max(${componentViewport?.width||\"100vw\"} - 40px, 1px), 1440px)`,src:\"https://framerusercontent.com/images/808CBeVLDtqmvP4tM4Pu6Yqv9k.jpg\",srcSet:\"https://framerusercontent.com/images/808CBeVLDtqmvP4tM4Pu6Yqv9k.jpg?scale-down-to=1024 682w,https://framerusercontent.com/images/808CBeVLDtqmvP4tM4Pu6Yqv9k.jpg?scale-down-to=2048 1365w,https://framerusercontent.com/images/808CBeVLDtqmvP4tM4Pu6Yqv9k.jpg?scale-down-to=4096 2730w,https://framerusercontent.com/images/808CBeVLDtqmvP4tM4Pu6Yqv9k.jpg 4000w\"}},uPZ3pZ8oO:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:6e3,intrinsicWidth:4e3,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+892.2+60+0),pixelHeight:6e3,pixelWidth:4e3,sizes:`max((min(max(${componentViewport?.width||\"100vw\"} - 60px, 1px), 1440px) - 30px) / 2, 1px)`,src:\"https://framerusercontent.com/images/808CBeVLDtqmvP4tM4Pu6Yqv9k.jpg\",srcSet:\"https://framerusercontent.com/images/808CBeVLDtqmvP4tM4Pu6Yqv9k.jpg?scale-down-to=1024 682w,https://framerusercontent.com/images/808CBeVLDtqmvP4tM4Pu6Yqv9k.jpg?scale-down-to=2048 1365w,https://framerusercontent.com/images/808CBeVLDtqmvP4tM4Pu6Yqv9k.jpg?scale-down-to=4096 2730w,https://framerusercontent.com/images/808CBeVLDtqmvP4tM4Pu6Yqv9k.jpg 4000w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:6e3,intrinsicWidth:4e3,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+922.2+50+0),pixelHeight:6e3,pixelWidth:4e3,sizes:`max((min(max(${componentViewport?.width||\"100vw\"} - 80px, 1px), 1440px) - 30px) / 2, 1px)`,src:\"https://framerusercontent.com/images/808CBeVLDtqmvP4tM4Pu6Yqv9k.jpg\",srcSet:\"https://framerusercontent.com/images/808CBeVLDtqmvP4tM4Pu6Yqv9k.jpg?scale-down-to=1024 682w,https://framerusercontent.com/images/808CBeVLDtqmvP4tM4Pu6Yqv9k.jpg?scale-down-to=2048 1365w,https://framerusercontent.com/images/808CBeVLDtqmvP4tM4Pu6Yqv9k.jpg?scale-down-to=4096 2730w,https://framerusercontent.com/images/808CBeVLDtqmvP4tM4Pu6Yqv9k.jpg 4000w\"},className:\"framer-hsd80n\",\"data-framer-name\":\"Image\"})})]})}),/*#__PURE__*/_jsx(\"section\",{className:\"framer-1ezsrny\",\"data-framer-name\":\"We Do\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-re9ktq\",\"data-framer-name\":\"Inner\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-rgnt6a\",\"data-framer-name\":\"Video\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-clf678-container\",isModuleExternal:true,nodeId:\"FAZgDgkH1\",scopeId:\"V_jSjabrI\",children:/*#__PURE__*/_jsx(Video,{backgroundColor:\"rgba(0, 0, 0, 0)\",borderRadius:0,bottomLeftRadius:0,bottomRightRadius:0,controls:false,height:\"100%\",id:\"FAZgDgkH1\",isMixedBorderRadius:false,layoutId:\"FAZgDgkH1\",loop:true,muted:true,objectFit:\"cover\",playing:true,posterEnabled:true,srcType:\"URL\",srcUrl:\"https://videos.pexels.com/video-files/4098651/4098651-uhd_2732_1440_25fps.mp4\",startTime:0,style:{height:\"100%\",width:\"100%\"},topLeftRadius:0,topRightRadius:0,volume:25,width:\"100%\"})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-4tolkt\",\"data-framer-name\":\"Cover\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{className:\"framer-styles-preset-1qeggl\",\"data-styles-preset\":\"XxCKcF1_8\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-72a5df20-68f8-4599-b95d-19f94a014813, rgb(255, 255, 255))\"},children:\"We don\u2019t push quick fixes or rigid paths. We offer real support, rooted in compassion and care.\"})}),className:\"framer-93j3hh\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1gfksmx\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-acehow\",\"data-styles-preset\":\"IK0NEAs9q\",style:{\"--framer-text-alignment\":\"center\"},children:\"Whether you're navigating stress, burnout, emotional overwhelm, or just craving deeper connection with yourself \u2014 we\u2019re here to help you feel seen, held, and whole.\"})}),className:\"framer-1cs0kpj\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-19fqlg5\",\"data-framer-name\":\"Fact Number\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-8jux2u\",\"data-framer-name\":\"Number\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-1xxg56x\",\"data-styles-preset\":\"s0CZ5fsSj\",children:\"98%\"})}),className:\"framer-ybu7in\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1ll02m5\",\"data-styles-preset\":\"E5sV_RgoP\",children:\"of our clients feel more confident\"})}),className:\"framer-krzst1\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-11csmvm\",\"data-framer-name\":\"Number\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-1xxg56x\",\"data-styles-preset\":\"s0CZ5fsSj\",children:\"4.6/5\"})}),className:\"framer-1ki35tf\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1ll02m5\",\"data-styles-preset\":\"E5sV_RgoP\",children:\"average rating given by our clients\"})}),className:\"framer-6aty8d\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1ycg7x5\",\"data-framer-name\":\"Number\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-1xxg56x\",\"data-styles-preset\":\"s0CZ5fsSj\",children:\"90%\"})}),className:\"framer-dw1r2u\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1ll02m5\",\"data-styles-preset\":\"E5sV_RgoP\",children:\"of our clients feel more optimistic\"})}),className:\"framer-kb80vm\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})]})]})]})}),/*#__PURE__*/_jsx(\"section\",{className:\"framer-1nx56pm\",\"data-framer-name\":\"Team\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-rbn5nu\",\"data-framer-name\":\"Inner\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-wn3oal\",\"data-framer-name\":\"Title Section\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1w6dw5v\",\"data-framer-name\":\"Title\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{hwNFUx2vK:{y:(componentViewport?.y||0)+0+3531.8+60+0+0+0+0+0+0},uPZ3pZ8oO:{y:(componentViewport?.y||0)+0+3198.2+80+0+0+0+0+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:16,y:(componentViewport?.y||0)+0+3247.8+100+0+0+0+0+0+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1xn8elz-container\",nodeId:\"oyQIgi8Py\",scopeId:\"V_jSjabrI\",children:/*#__PURE__*/_jsx(MiscLabel,{dj41NqKa7:\"Our Team\",height:\"100%\",id:\"oyQIgi8Py\",layoutId:\"oyQIgi8Py\",r4CTqFw3l:\"var(--token-31822e37-f524-4775-958f-199ea451efa7, rgb(0, 0, 0))\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-1xxg56x\",\"data-styles-preset\":\"s0CZ5fsSj\",style:{\"--framer-text-alignment\":\"center\"},children:\"Dedicated experts supporting your journey\"})}),className:\"framer-1v7oqyz\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1ll02m5\",\"data-styles-preset\":\"E5sV_RgoP\",style:{\"--framer-text-alignment\":\"center\"},children:\"We\u2019re grounded in empathy, trained in evidence-based approaches, and committed to walking beside you \u2014 not ahead of you.\"})}),className:\"framer-ejhk3j\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1elthk1\",children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(QueryData,{query:{from:{alias:\"wh09y_fWw\",data:Therapists,type:\"Collection\"},select:[{collection:\"wh09y_fWw\",name:\"ervI4xiVi\",type:\"Identifier\"},{collection:\"wh09y_fWw\",name:\"RLed8EL6b\",type:\"Identifier\"},{collection:\"wh09y_fWw\",name:\"xa5vcinSu\",type:\"Identifier\"},{collection:\"wh09y_fWw\",name:\"PdeASI0yC\",type:\"Identifier\"},{collection:\"wh09y_fWw\",name:\"SMD4IuFv_\",type:\"Identifier\"},{collection:\"wh09y_fWw\",name:\"Drqocu1DE\",type:\"Identifier\"},{collection:\"wh09y_fWw\",name:\"MD5PwgKbs\",type:\"Identifier\"},{collection:\"wh09y_fWw\",name:\"qX53SLr6l\",type:\"Identifier\"},{collection:\"wh09y_fWw\",name:\"TUUaJG429\",type:\"Identifier\"},{collection:\"wh09y_fWw\",name:\"id\",type:\"Identifier\"}]},children:(collection,paginationInfo,loadMore)=>/*#__PURE__*/_jsx(_Fragment,{children:collection?.map(({Drqocu1DE:Drqocu1DEwh09y_fWw,ervI4xiVi:ervI4xiViwh09y_fWw,id:idwh09y_fWw,MD5PwgKbs:MD5PwgKbswh09y_fWw,PdeASI0yC:PdeASI0yCwh09y_fWw,qX53SLr6l:qX53SLr6lwh09y_fWw,RLed8EL6b:RLed8EL6bwh09y_fWw,SMD4IuFv_:SMD4IuFv_wh09y_fWw,TUUaJG429:TUUaJG429wh09y_fWw,xa5vcinSu:xa5vcinSuwh09y_fWw},index)=>{ervI4xiViwh09y_fWw??=\"\";xa5vcinSuwh09y_fWw??=\"\";PdeASI0yCwh09y_fWw??=\"\";SMD4IuFv_wh09y_fWw??=\"\";Drqocu1DEwh09y_fWw??=\"\";MD5PwgKbswh09y_fWw??=\"\";qX53SLr6lwh09y_fWw??=\"\";TUUaJG429wh09y_fWw??=\"\";return /*#__PURE__*/_jsx(LayoutGroup,{id:`wh09y_fWw-${idwh09y_fWw}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{SMD4IuFv_:SMD4IuFv_wh09y_fWw},children:/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{pathVariables:{SMD4IuFv_:SMD4IuFv_wh09y_fWw},webPageId:\"Ss_y6GiTm\"},implicitPathVariables:undefined},{href:MD5PwgKbswh09y_fWw,implicitPathVariables:{SMD4IuFv_:SMD4IuFv_wh09y_fWw}},{href:qX53SLr6lwh09y_fWw,implicitPathVariables:{SMD4IuFv_:SMD4IuFv_wh09y_fWw}},{href:TUUaJG429wh09y_fWw,implicitPathVariables:{SMD4IuFv_:SMD4IuFv_wh09y_fWw}},{href:{pathVariables:{SMD4IuFv_:SMD4IuFv_wh09y_fWw},webPageId:\"Ss_y6GiTm\"},implicitPathVariables:undefined},{href:MD5PwgKbswh09y_fWw,implicitPathVariables:{SMD4IuFv_:SMD4IuFv_wh09y_fWw}},{href:qX53SLr6lwh09y_fWw,implicitPathVariables:{SMD4IuFv_:SMD4IuFv_wh09y_fWw}},{href:TUUaJG429wh09y_fWw,implicitPathVariables:{SMD4IuFv_:SMD4IuFv_wh09y_fWw}},{href:{pathVariables:{SMD4IuFv_:SMD4IuFv_wh09y_fWw},webPageId:\"Ss_y6GiTm\"},implicitPathVariables:undefined},{href:MD5PwgKbswh09y_fWw,implicitPathVariables:{SMD4IuFv_:SMD4IuFv_wh09y_fWw}},{href:qX53SLr6lwh09y_fWw,implicitPathVariables:{SMD4IuFv_:SMD4IuFv_wh09y_fWw}},{href:TUUaJG429wh09y_fWw,implicitPathVariables:{SMD4IuFv_:SMD4IuFv_wh09y_fWw}}],children:resolvedLinks2=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{hwNFUx2vK:{width:`max(min(max(${componentViewport?.width||\"100vw\"} - 40px, 1px), 1440px), 50px)`,y:(componentViewport?.y||0)+0+3531.8+60+0+248.4+0+0},uPZ3pZ8oO:{width:`max((min(max(${componentViewport?.width||\"100vw\"} - 60px, 1px), 1440px) - 20px) / 2, 50px)`,y:(componentViewport?.y||0)+0+3198.2+80+0+288.4+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:576,width:`max((min(max(${componentViewport?.width||\"100vw\"} - 80px, 1px), 1440px) - 40px) / 3, 50px)`,y:(componentViewport?.y||0)+0+3247.8+100+0+288.4+0+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-3n50tb-container\",nodeId:\"fr4su4SU0\",scopeId:\"V_jSjabrI\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{hwNFUx2vK:{KFMJ9RNJO:resolvedLinks2[9],LJcSvhApE:resolvedLinks2[11],lxHhOVXcN:resolvedLinks2[10],oU4JB40Kt:resolvedLinks2[8],variant:\"ooCGn80xS\"},uPZ3pZ8oO:{KFMJ9RNJO:resolvedLinks2[5],LJcSvhApE:resolvedLinks2[7],lxHhOVXcN:resolvedLinks2[6],oU4JB40Kt:resolvedLinks2[4],variant:\"ooCGn80xS\"}},children:/*#__PURE__*/_jsx(Team,{H3GoOF18l:toResponsiveImage(RLed8EL6bwh09y_fWw),height:\"100%\",HH6UG3mzD:ervI4xiViwh09y_fWw,id:\"fr4su4SU0\",KFMJ9RNJO:resolvedLinks2[1],layoutId:\"fr4su4SU0\",LJcSvhApE:resolvedLinks2[3],lxHhOVXcN:resolvedLinks2[2],oU4JB40Kt:resolvedLinks2[0],QI0iNLoE8:Drqocu1DEwh09y_fWw,QtdxmlNR5:xa5vcinSuwh09y_fWw,style:{width:\"100%\"},uFuofl3NM:PdeASI0yCwh09y_fWw,variant:\"GjwEi6hnG\",width:\"100%\"})})})})})})})},idwh09y_fWw);})})})})})]})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{hwNFUx2vK:{y:(componentViewport?.y||0)+0+4496.2},uPZ3pZ8oO:{y:(componentViewport?.y||0)+0+4242.6}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:824,width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+4332.2,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1l7ncb6-container\",nodeId:\"sNqRSclz1\",scopeId:\"V_jSjabrI\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{hwNFUx2vK:{variant:\"hrTwsl3Qy\"},uPZ3pZ8oO:{variant:\"Oci4uLXIZ\"}},children:/*#__PURE__*/_jsx(SectionBook,{height:\"100%\",id:\"sNqRSclz1\",layoutId:\"sNqRSclz1\",style:{width:\"100%\"},variant:\"aaJXutdHy\",width:\"100%\"})})})})})]}),/*#__PURE__*/_jsx(\"div\",{id:\"overlay\"})]})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-b3Bmu.framer-1tm83dg, .framer-b3Bmu .framer-1tm83dg { display: block; }\",\".framer-b3Bmu.framer-ljc7o8 { align-content: center; align-items: center; background-color: var(--token-effc3836-1b51-4c8f-a162-f51c81ab6768, #fffdf5); 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-b3Bmu .framer-13f5ws0, .framer-b3Bmu .framer-16394zy { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 50px 40px 100px 40px; position: relative; width: 100%; }\",\".framer-b3Bmu .framer-j0eule { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 50px; height: min-content; justify-content: center; max-width: 1440px; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-b3Bmu .framer-fsct93, .framer-b3Bmu .framer-9007jv { 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: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-b3Bmu .framer-1g36y42 { 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; max-width: 600px; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-b3Bmu .framer-1s717cs, .framer-b3Bmu .framer-lhcddl { 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: 100%; }\",\".framer-b3Bmu .framer-1y6i5b3, .framer-b3Bmu .framer-v4sqw2, .framer-b3Bmu .framer-12w7wqp { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-b3Bmu .framer-7frj7b, .framer-b3Bmu .framer-2s6xut, .framer-b3Bmu .framer-1y2kna6, .framer-b3Bmu .framer-1v7oqyz, .framer-b3Bmu .framer-ejhk3j { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-b3Bmu .framer-15wiwgz { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; max-width: 750px; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-b3Bmu .framer-1udpttg { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-b3Bmu .framer-ddjpfr { aspect-ratio: 0.6667233752977203 / 1; border-bottom-left-radius: 10px; border-bottom-right-radius: 10px; border-top-left-radius: 10px; border-top-right-radius: 10px; flex: none; height: var(--framer-aspect-ratio-supported, 504px); overflow: visible; position: relative; width: 30%; }\",\".framer-b3Bmu .framer-h6bm7c, .framer-b3Bmu .framer-hsd80n { align-self: stretch; border-bottom-left-radius: 10px; border-bottom-right-radius: 10px; border-top-left-radius: 10px; border-top-right-radius: 10px; flex: 1 0 0px; height: auto; overflow: visible; position: relative; width: 1px; }\",\".framer-b3Bmu .framer-lhb9vk { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 30px; height: min-content; justify-content: center; max-width: 1440px; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-b3Bmu .framer-139cmxn { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-b3Bmu .framer-qtkcw5 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-b3Bmu .framer-phnzom-container, .framer-b3Bmu .framer-tnlnuu-container, .framer-b3Bmu .framer-cv8ufs-container, .framer-b3Bmu .framer-1xn8elz-container { flex: none; height: auto; position: relative; width: auto; }\",\".framer-b3Bmu .framer-89egka { aspect-ratio: 1.4998747181157606 / 1; border-bottom-left-radius: 10px; border-bottom-right-radius: 10px; border-top-left-radius: 10px; border-top-right-radius: 10px; flex: none; height: var(--framer-aspect-ratio-supported, 363px); overflow: visible; position: relative; width: 100%; }\",\".framer-b3Bmu .framer-1ezsrny { align-content: center; align-items: center; background-color: var(--token-db7719c2-4052-4644-9f5d-2c5bdabbcda2, #d8d1c3); display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 100px 40px 100px 40px; position: relative; width: 100%; }\",\".framer-b3Bmu .framer-re9ktq, .framer-b3Bmu .framer-rbn5nu { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 80px; height: min-content; justify-content: center; max-width: 1440px; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-b3Bmu .framer-rgnt6a { align-content: center; align-items: center; aspect-ratio: 1.8666666666666667 / 1; border-bottom-left-radius: 10px; border-bottom-right-radius: 10px; border-top-left-radius: 10px; border-top-right-radius: 10px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: var(--framer-aspect-ratio-supported, 600px); justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-b3Bmu .framer-clf678-container { flex: none; height: 100%; left: 0px; position: absolute; top: calc(49.79079497907952% - 100% / 2); width: 100%; }\",\".framer-b3Bmu .framer-4tolkt { align-content: center; align-items: center; background-color: var(--token-49c336e7-2465-4137-82cb-bae1ee143c51, rgba(0, 0, 0, 0.5)); display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 30px; height: 100%; justify-content: center; overflow: hidden; padding: 0px 50px 0px 50px; position: relative; width: 1px; }\",\".framer-b3Bmu .framer-93j3hh { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; max-width: 500px; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-b3Bmu .framer-1gfksmx { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 50px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-b3Bmu .framer-1cs0kpj { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; max-width: 1000px; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-b3Bmu .framer-19fqlg5 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 50px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-b3Bmu .framer-8jux2u, .framer-b3Bmu .framer-11csmvm, .framer-b3Bmu .framer-1ycg7x5 { 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: center; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-b3Bmu .framer-ybu7in, .framer-b3Bmu .framer-1ki35tf, .framer-b3Bmu .framer-dw1r2u { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-b3Bmu .framer-krzst1, .framer-b3Bmu .framer-6aty8d, .framer-b3Bmu .framer-kb80vm { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: 1 0 0px; height: auto; position: relative; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; }\",\".framer-b3Bmu .framer-1nx56pm { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 100px 40px 100px 40px; position: relative; width: 100%; }\",\".framer-b3Bmu .framer-wn3oal { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; max-width: 650px; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-b3Bmu .framer-1w6dw5v { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-b3Bmu .framer-1elthk1 { display: grid; flex: none; gap: 20px; grid-auto-rows: min-content; grid-template-columns: repeat(3, minmax(50px, 1fr)); height: min-content; justify-content: center; padding: 0px; position: relative; width: 100%; }\",\".framer-b3Bmu .framer-3n50tb-container { align-self: start; flex: none; height: auto; justify-self: start; position: relative; width: 100%; }\",\".framer-b3Bmu .framer-1l7ncb6-container { flex: none; height: auto; position: relative; width: 100%; }\",...sharedStyle.css,...sharedStyle1.css,...sharedStyle2.css,...sharedStyle3.css,...sharedStyle4.css,...sharedStyle5.css,...sharedStyle6.css,\"@media (min-width: 810px) and (max-width: 1199px) { .framer-b3Bmu.framer-ljc7o8 { width: 810px; } .framer-b3Bmu .framer-13f5ws0 { padding: 40px 30px 80px 30px; } .framer-b3Bmu .framer-ddjpfr { height: var(--framer-aspect-ratio-supported, 338px); } .framer-b3Bmu .framer-16394zy { padding: 60px 30px 80px 30px; } .framer-b3Bmu .framer-89egka { height: var(--framer-aspect-ratio-supported, 240px); } .framer-b3Bmu .framer-1ezsrny, .framer-b3Bmu .framer-1nx56pm { padding: 80px 30px 80px 30px; } .framer-b3Bmu .framer-re9ktq { gap: 60px; } .framer-b3Bmu .framer-rgnt6a { height: var(--framer-aspect-ratio-supported, 402px); } .framer-b3Bmu .framer-4tolkt { padding: 0px 30px 0px 30px; } .framer-b3Bmu .framer-1gfksmx { gap: 40px; } .framer-b3Bmu .framer-19fqlg5 { gap: 30px; } .framer-b3Bmu .framer-8jux2u, .framer-b3Bmu .framer-11csmvm, .framer-b3Bmu .framer-1ycg7x5 { align-content: flex-start; align-items: flex-start; flex-direction: column; } .framer-b3Bmu .framer-krzst1, .framer-b3Bmu .framer-6aty8d, .framer-b3Bmu .framer-kb80vm { flex: none; width: 100%; } .framer-b3Bmu .framer-1w6dw5v { max-width: 650px; } .framer-b3Bmu .framer-1elthk1 { grid-template-columns: repeat(2, minmax(50px, 1fr)); }}\",\"@media (max-width: 809px) { .framer-b3Bmu.framer-ljc7o8 { width: 390px; } .framer-b3Bmu .framer-13f5ws0 { padding: 30px 20px 60px 20px; } .framer-b3Bmu .framer-j0eule, .framer-b3Bmu .framer-re9ktq, .framer-b3Bmu .framer-1gfksmx, .framer-b3Bmu .framer-rbn5nu { gap: 40px; } .framer-b3Bmu .framer-1udpttg, .framer-b3Bmu .framer-lhb9vk { flex-direction: column; } .framer-b3Bmu .framer-ddjpfr { aspect-ratio: 0.875 / 1; height: var(--framer-aspect-ratio-supported, 400px); width: 100%; } .framer-b3Bmu .framer-h6bm7c { align-self: unset; aspect-ratio: 1.75 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 200px); width: 100%; } .framer-b3Bmu .framer-16394zy { padding: 40px 20px 60px 20px; } .framer-b3Bmu .framer-139cmxn, .framer-b3Bmu .framer-8jux2u, .framer-b3Bmu .framer-11csmvm, .framer-b3Bmu .framer-1ycg7x5 { flex: none; width: 100%; } .framer-b3Bmu .framer-89egka { height: var(--framer-aspect-ratio-supported, 233px); } .framer-b3Bmu .framer-hsd80n { align-self: unset; aspect-ratio: 0.875 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 400px); width: 100%; } .framer-b3Bmu .framer-1ezsrny, .framer-b3Bmu .framer-1nx56pm { padding: 60px 20px 60px 20px; } .framer-b3Bmu .framer-rgnt6a { aspect-ratio: 1.1666666666666667 / 1; height: var(--framer-aspect-ratio-supported, 300px); } .framer-b3Bmu .framer-4tolkt { padding: 0px 20px 0px 20px; } .framer-b3Bmu .framer-19fqlg5 { flex-direction: column; gap: 30px; } .framer-b3Bmu .framer-1elthk1 { grid-template-columns: repeat(1, minmax(50px, 1fr)); }}\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 6898\n * @framerIntrinsicWidth 1200\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"uPZ3pZ8oO\":{\"layout\":[\"fixed\",\"auto\"]},\"hwNFUx2vK\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerAutoSizeImages true\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n * @framerAcceptsLayoutTemplate true\n * @framerScrollSections\n * @framerResponsiveScreen\n */const FramerV_jSjabrI=withCSS(Component,css,\"framer-b3Bmu\");export default FramerV_jSjabrI;FramerV_jSjabrI.displayName=\"Page\";FramerV_jSjabrI.defaultProps={height:6898,width:1200};addFonts(FramerV_jSjabrI,[{explicitInter:true,fonts:[{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/5vvr9Vy74if2I6bQbJvbw7SY1pQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/EOr0mi4hNtlgWNn9if640EZzXCo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Y9k9QrlZAqio88Klkmbd8VoMQc.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/OYrD2tBIBPvoJXiIHnLoOXnY9M.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/JeYwfuaPfZHQhEG8U5gtPDZ7WQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/vQyevYAyHtARFwPqUzQGpnDs.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/b6Y37FthZeALduNqHicBT6FutY.woff2\",weight:\"400\"}]},...MiscLabelFonts,...ButtonPrimaryFonts,...VideoFonts,...TeamFonts,...SectionBookFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts),...getFontsFromSharedStyle(sharedStyle2.fonts),...getFontsFromSharedStyle(sharedStyle3.fonts),...getFontsFromSharedStyle(sharedStyle4.fonts),...getFontsFromSharedStyle(sharedStyle5.fonts),...getFontsFromSharedStyle(sharedStyle6.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerV_jSjabrI\",\"slots\":[],\"annotations\":{\"framerAutoSizeImages\":\"true\",\"framerAcceptsLayoutTemplate\":\"true\",\"framerScrollSections\":\"* @framerResponsiveScreen\",\"framerContractVersion\":\"1\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"uPZ3pZ8oO\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"hwNFUx2vK\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerImmutableVariables\":\"true\",\"framerComponentViewportWidth\":\"true\",\"framerColorSyntax\":\"true\",\"framerIntrinsicWidth\":\"1200\",\"framerIntrinsicHeight\":\"6898\",\"framerDisplayContentsDiv\":\"false\"}},\"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", "MiscLabelFonts", "getFonts", "JGqfwv9bG_default", "ButtonPrimaryFonts", "DwTd6U4Br_default", "VideoFonts", "Video", "TeamFonts", "XvEdGsaOG_default", "SectionBookFonts", "zyNqZq3bZ_default", "breakpoints", "serializationHash", "variantClassNames", "toResponsiveImage", "value", "QueryData", "query", "pageSize", "children", "data", "useQueryData", "HTMLStyle", "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", "ervI4xiViwh09y_fWw", "RLed8EL6bwh09y_fWw", "xa5vcinSuwh09y_fWw", "PdeASI0yCwh09y_fWw", "SMD4IuFv_wh09y_fWw", "Drqocu1DEwh09y_fWw", "MD5PwgKbswh09y_fWw", "qX53SLr6lwh09y_fWw", "TUUaJG429wh09y_fWw", "idwh09y_fWw", "restProps", "ue", "metadata", "robotsTag", "ie", "baseVariant", "hydratedBaseVariant", "useHydratedBreakpointVariants", "breakpoints", "gestureVariant", "scopingClassNames", "cx", "router", "useRouter", "useCustomCursors", "GeneratedComponentContext", "u", "LayoutGroup", "motion", "RichText2", "x", "Link", "PropertyOverrides2", "getLoadingLazyAtYPosition", "Image2", "ComponentViewportProvider", "Container", "JGqfwv9bG_default", "ResolveLinks", "resolvedLinks", "DwTd6U4Br_default", "resolvedLinks1", "Video", "ChildrenCanSuspend", "wxinxibqF_default", "collection", "paginationInfo", "loadMore", "l", "index", "PathVariablesContext", "resolvedLinks2", "XvEdGsaOG_default", "zyNqZq3bZ_default", "css", "FramerV_jSjabrI", "withCSS", "V_jSjabrI_default", "addFonts", "MiscLabelFonts", "ButtonPrimaryFonts", "VideoFonts", "TeamFonts", "SectionBookFonts", "getFontsFromSharedStyle", "fonts", "__FramerMetadata__"]
}
