{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/o1PI5S8YtkA5bP5g4dFz/Xr8CO3Ul8Gb7lVfgMKTh/Embed.js", "ssg:https://framerusercontent.com/modules/AO5J4Utpg4oa1o0UKw4v/PLXAtm1PCzUMC2HvL3ie/zTVs_bZxx.js"],
  "sourcesContent": ["import{jsx as _jsx}from\"react/jsx-runtime\";import{useEffect,useRef,useState}from\"react\";import{addPropertyControls,ControlType}from\"framer\";import{useIsOnCanvas,emptyStateStyle,containerStyles}from\"https://framer.com/m/framer/default-utils.js\";/**\n * @framerIntrinsicWidth 600\n * @framerIntrinsicHeight 400\n *\n * @framerSupportedLayoutWidth fixed\n * @framerSupportedLayoutHeight any-prefer-fixed\n *\n * @framerDisableUnlink\n */export default function Embed({type,url,html,style={}}){if(type===\"url\"&&url){return /*#__PURE__*/_jsx(EmbedUrl,{url:url,style:style});}if(type===\"html\"&&html){return /*#__PURE__*/_jsx(EmbedHtml,{html:html,style:style});}return /*#__PURE__*/_jsx(Instructions,{style:style});}addPropertyControls(Embed,{type:{type:ControlType.Enum,defaultValue:\"url\",displaySegmentedControl:true,options:[\"url\",\"html\"],optionTitles:[\"URL\",\"HTML\"]},url:{title:\"URL\",type:ControlType.String,description:\"Some websites don\u2019t support embedding.\",hidden(props){return props.type!==\"url\";}},html:{title:\"HTML\",type:ControlType.String,displayTextArea:true,hidden(props){return props.type!==\"html\";}}});function Instructions({style}){return /*#__PURE__*/_jsx(\"div\",{style:{minHeight:getMinHeight(style),...emptyStateStyle,overflow:\"hidden\",...style},children:/*#__PURE__*/_jsx(\"div\",{style:centerTextStyle,children:\"To embed a website or widget, add it to the properties\\xa0panel.\"})});}function EmbedUrl({url,style}){const hasAutoHeight=!style.height;// Add https:// if the URL does not have a protocol.\nif(!/[a-z]+:\\/\\//.test(url)){url=\"https://\"+url;}const onCanvas=useIsOnCanvas();// We need to check if the url is blocked inside an iframe by the X-Frame-Options\n// or Content-Security-Policy headers on the backend.\nconst[state,setState]=useState(onCanvas?undefined:false);useEffect(()=>{// We only want to check on the canvas.\n// On the website we want to avoid the additional delay.\nif(!onCanvas)return;// TODO: We could also use AbortController here.\nlet isLastEffect=true;setState(undefined);async function load(){const response=await fetch(\"https://api.framer.com/functions/check-iframe-url?url=\"+encodeURIComponent(url));if(response.status==200){const{isBlocked}=await response.json();if(isLastEffect){setState(isBlocked);}}else{const message=await response.text();console.error(message);const error=new Error(\"This site can\u2019t be reached.\");setState(error);}}load().catch(error=>{console.error(error);setState(error);});return()=>{isLastEffect=false;};},[url]);if(onCanvas&&hasAutoHeight){return /*#__PURE__*/_jsx(ErrorMessage,{message:\"URL embeds do not support auto height.\",style:style});}if(!url.startsWith(\"https://\")){return /*#__PURE__*/_jsx(ErrorMessage,{message:\"Unsupported protocol.\",style:style});}if(state===undefined){return /*#__PURE__*/_jsx(LoadingIndicator,{});}if(state instanceof Error){return /*#__PURE__*/_jsx(ErrorMessage,{message:state.message,style:style});}if(state===true){const message=`Can\u2019t embed ${url} due to its content security policy.`;return /*#__PURE__*/_jsx(ErrorMessage,{message:message,style:style});}return /*#__PURE__*/_jsx(\"iframe\",{src:url,style:{...iframeStyle,...style},loading:\"lazy\",// @ts-ignore\nfetchPriority:onCanvas?\"low\":\"auto\",referrerPolicy:\"no-referrer\",sandbox:getSandbox(onCanvas)});}const iframeStyle={width:\"100%\",height:\"100%\",border:\"none\"};function getSandbox(onCanvas){const result=[\"allow-same-origin\",\"allow-scripts\"];if(!onCanvas){result.push(\"allow-downloads\",\"allow-forms\",\"allow-modals\",\"allow-orientation-lock\",\"allow-pointer-lock\",\"allow-popups\",\"allow-popups-to-escape-sandbox\",\"allow-presentation\",\"allow-storage-access-by-user-activation\",\"allow-top-navigation-by-user-activation\");}return result.join(\" \");}function EmbedHtml({html,...props}){const hasScript=html.includes(\"</script>\");if(hasScript){const hasSplineViewer=html.includes(\"</spline-viewer>\");const hasComment=html.includes(\"<!-- framer-direct-embed -->\");if(hasSplineViewer||hasComment){return /*#__PURE__*/_jsx(EmbedHtmlWithScripts,{html:html,...props});}return /*#__PURE__*/_jsx(EmbedHtmlInsideIframe,{html:html,...props});}return /*#__PURE__*/_jsx(EmbedHtmlWithoutScripts,{html:html,...props});}function EmbedHtmlInsideIframe({html,style}){const ref=useRef();const[iframeHeight,setIframeHeight]=useState(0);// Handle auto sizing\nuseEffect(()=>{var _ref_current;const iframeWindow=(_ref_current=ref.current)===null||_ref_current===void 0?void 0:_ref_current.contentWindow;function handleMessage(event){if(event.source!==iframeWindow)return;const data=event.data;if(typeof data!==\"object\"||data===null)return;const height=data.embedHeight;if(typeof height!==\"number\")return;setIframeHeight(height);}window.addEventListener(\"message\",handleMessage);// After SSG the iframe loads before we attach the event handler,\n// therefore we need to request the latest height from the iframe.\niframeWindow===null||iframeWindow===void 0?void 0:iframeWindow.postMessage(\"getEmbedHeight\",\"*\");return()=>{window.removeEventListener(\"message\",handleMessage);};},[]);// The CSS is mainly copied from:\n// FramerStudio/src/app/vekter/src/renderer/setDefaultFont.ts\n// FramerStudio/src/app/vekter/src/export/globalStylesForExport.ts\nconst srcDoc=`\n<html>\n    <head>\n        <style>\n            html, body {\n                margin: 0;\n                padding: 0;\n            }\n\n            body {\n                display: flex;\n                justify-content: center;\n                align-items: center;\n                min-height: 100vh;\n            }\n\n            :root {\n                -webkit-font-smoothing: antialiased;\n                -moz-osx-font-smoothing: grayscale;\n            }\n\n            * {\n                box-sizing: border-box;\n                -webkit-font-smoothing: inherit;\n            }\n\n            h1, h2, h3, h4, h5, h6, p, figure {\n                margin: 0;\n            }\n\n            body, input, textarea, select, button {\n                font-size: 12px;\n                font-family: sans-serif;\n            }\n        </style>\n    </head>\n    <body>\n        ${html}\n        <script type=\"module\">\n            let height = 0\n\n            function sendEmbedHeight() {\n                window.parent.postMessage({\n                    embedHeight: height\n                }, \"*\")\n            }\n\n            const observer = new ResizeObserver((entries) => {\n                if (entries.length !== 1) return\n                const entry = entries[0]\n                if (entry.target !== document.body) return\n\n                height = entry.contentRect.height\n                sendEmbedHeight()\n            })\n\n            observer.observe(document.body)\n\n            window.addEventListener(\"message\", (event) => {\n                if (event.source !== window.parent) return\n                if (event.data !== \"getEmbedHeight\") return\n                sendEmbedHeight()\n            })\n        </script>\n    <body>\n</html>\n`;const currentStyle={...iframeStyle,...style};const hasAutoHeight=!style.height;if(hasAutoHeight){currentStyle.height=iframeHeight+\"px\";}return /*#__PURE__*/_jsx(\"iframe\",{ref:ref,style:currentStyle,srcDoc:srcDoc});}function EmbedHtmlWithScripts({html,style}){const ref=useRef();useEffect(()=>{const div=ref.current;if(!div)return;div.innerHTML=html;executeScripts(div);return()=>{div.innerHTML=\"\";};},[html]);return /*#__PURE__*/_jsx(\"div\",{ref:ref,style:{...htmlStyle,...style}});}function EmbedHtmlWithoutScripts({html,style}){return /*#__PURE__*/_jsx(\"div\",{style:{...htmlStyle,...style},dangerouslySetInnerHTML:{__html:html}});}const htmlStyle={width:\"100%\",height:\"100%\",display:\"flex\",flexDirection:\"column\",justifyContent:\"center\",alignItems:\"center\"};// This function replaces scripts with executable ones.\n// https://stackoverflow.com/questions/1197575/can-scripts-be-inserted-with-innerhtml\nfunction executeScripts(node){if(node instanceof Element&&node.tagName===\"SCRIPT\"){const script=document.createElement(\"script\");script.text=node.innerHTML;for(const{name,value}of node.attributes){script.setAttribute(name,value);}node.parentElement.replaceChild(script,node);}else{for(const child of node.childNodes){executeScripts(child);}}}// Generic components\nfunction LoadingIndicator(){return /*#__PURE__*/_jsx(\"div\",{className:\"framerInternalUI-componentPlaceholder\",style:{...containerStyles,overflow:\"hidden\"},children:/*#__PURE__*/_jsx(\"div\",{style:centerTextStyle,children:\"Loading\u2026\"})});}function ErrorMessage({message,style}){return /*#__PURE__*/_jsx(\"div\",{className:\"framerInternalUI-errorPlaceholder\",style:{minHeight:getMinHeight(style),...containerStyles,overflow:\"hidden\",...style},children:/*#__PURE__*/_jsx(\"div\",{style:centerTextStyle,children:message})});}const centerTextStyle={textAlign:\"center\",minWidth:140};// Returns a min-height if the component is using auto-height.\nfunction getMinHeight(style){const hasAutoHeight=!style.height;if(hasAutoHeight)return 200;}\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"Embed\",\"slots\":[],\"annotations\":{\"framerIntrinsicHeight\":\"400\",\"framerIntrinsicWidth\":\"600\",\"framerContractVersion\":\"1\",\"framerSupportedLayoutHeight\":\"any-prefer-fixed\",\"framerDisableUnlink\":\"\",\"framerSupportedLayoutWidth\":\"fixed\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Embed.map", "// Generated by Framer (98a2bb2)\nimport{jsx as _jsx,jsxs as _jsxs,Fragment as _Fragment}from\"react/jsx-runtime\";import{addFonts,ComponentViewportProvider,Container,cx,GeneratedComponentContext,getFonts,getFontsFromSharedStyle,Image,PropertyOverrides,ResolveLinks,RichText,useActiveVariantCallback,useComponentViewport,useCustomCursors,useHydratedBreakpointVariants,useIsOnFramerCanvas,useLocaleInfo,useOverlayState,useRouter,withCSS}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 Vimeo from\"https://framerusercontent.com/modules/0sWquksFr1YDkaIgrl9Z/VgWe6mCMJOseqaLiMnaC/Vimeo.js\";import Embed from\"https://framerusercontent.com/modules/o1PI5S8YtkA5bP5g4dFz/Xr8CO3Ul8Gb7lVfgMKTh/Embed.js\";import ButtonsCTAButton from\"#framer/local/canvasComponent/f4hh2mMdz/f4hh2mMdz.js\";import NavbarNavbar from\"#framer/local/canvasComponent/hfO3gChsw/hfO3gChsw.js\";import Footer from\"#framer/local/canvasComponent/vzig9usOP/vzig9usOP.js\";import NavbarMobileDropdown from\"#framer/local/canvasComponent/Xlpg3cjMT/Xlpg3cjMT.js\";import*as sharedStyle5 from\"#framer/local/css/aidXa1s24/aidXa1s24.js\";import*as sharedStyle3 from\"#framer/local/css/GNXodLhQJ/GNXodLhQJ.js\";import*as sharedStyle from\"#framer/local/css/mCy4WwYQy/mCy4WwYQy.js\";import*as sharedStyle2 from\"#framer/local/css/Q4MeLYZkg/Q4MeLYZkg.js\";import*as sharedStyle4 from\"#framer/local/css/sFRhuhVMU/sFRhuhVMU.js\";import*as sharedStyle6 from\"#framer/local/css/vHTJYNL3V/vHTJYNL3V.js\";import*as sharedStyle1 from\"#framer/local/css/Z0CCrWXy0/Z0CCrWXy0.js\";import metadataProvider from\"#framer/local/webPageMetadata/zTVs_bZxx/zTVs_bZxx.js\";const NavbarNavbarFonts=getFonts(NavbarNavbar);const NavbarMobileDropdownFonts=getFonts(NavbarMobileDropdown);const ButtonsCTAButtonFonts=getFonts(ButtonsCTAButton);const VimeoFonts=getFonts(Vimeo);const EmbedFonts=getFonts(Embed);const FooterFonts=getFonts(Footer);const breakpoints={LiOTxJdE0:\"(min-width: 810px) and (max-width: 1299px)\",rqrPOdE_1:\"(max-width: 809px)\",tg0DGdPA4:\"(min-width: 1300px) and (max-width: 1559px)\",Yad3L0boE:\"(min-width: 1560px)\"};const isBrowser=()=>typeof document!==\"undefined\";const serializationHash=\"framer-mNri6\";const variantClassNames={LiOTxJdE0:\"framer-v-180jn1i\",rqrPOdE_1:\"framer-v-s51pij\",tg0DGdPA4:\"framer-v-1bfv603\",Yad3L0boE:\"framer-v-eax5f8\"};const transformTemplate1=(_,t)=>`translateX(-50%) ${t}`;const getContainer=()=>{return document.querySelector(\"#template-overlay\")??document.querySelector(\"#overlay\")??document.body;};const Overlay=({children,blockDocumentScrolling,enabled=true})=>{const[visible,setVisible]=useOverlayState({blockDocumentScrolling});return children({hide:()=>setVisible(false),show:()=>setVisible(true),toggle:()=>setVisible(!visible),visible:enabled&&visible});};const HTMLStyle=({value})=>{const onCanvas=useIsOnFramerCanvas();if(onCanvas)return null;return /*#__PURE__*/_jsx(\"style\",{dangerouslySetInnerHTML:{__html:value},\"data-framer-html-style\":\"\"});};const humanReadableVariantMap={\"Wide Desktop\":\"Yad3L0boE\",Desktop:\"tg0DGdPA4\",Phone:\"rqrPOdE_1\",Tablet:\"LiOTxJdE0\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"tg0DGdPA4\"};};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 xJqnlYCTG3bnx0g=({overlay,loadMore})=>activeVariantCallback(async(...args)=>{overlay.toggle();});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:\"tg0DGdPA4\",variantClassNames},children:/*#__PURE__*/_jsxs(LayoutGroup,{id:layoutId??defaultLayoutId,children:[/*#__PURE__*/_jsx(HTMLStyle,{value:\"html body { background: var(--token-f8ef5147-1eb8-444d-994a-240136c5caa4, rgb(255, 255, 255)); }\"}),/*#__PURE__*/_jsxs(motion.div,{...restProps,className:cx(scopingClassNames,\"framer-1bfv603\",className),ref:refBinding,style:{...style},children:[/*#__PURE__*/_jsx(Overlay,{children:overlay=>/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:98,width:componentViewport?.width||\"100vw\",children:/*#__PURE__*/_jsxs(Container,{className:\"framer-1w2nkk9-container\",id:\"1w2nkk9\",nodeId:\"ZrEzPHeMB\",scopeId:\"zTVs_bZxx\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{LiOTxJdE0:{bcJyp_zUz:\"24px 64px 24px 64px\",variant:overlay.visible?\"K3TE_zE2k\":\"v7ECS9Tbx\"},rqrPOdE_1:{bcJyp_zUz:\"24px\",variant:overlay.visible?\"K3TE_zE2k\":\"v7ECS9Tbx\"},Yad3L0boE:{bcJyp_zUz:\"24px 220px 24px 220px\"}},children:/*#__PURE__*/_jsx(NavbarNavbar,{bcJyp_zUz:\"24px 200px 24px 200px\",height:\"100%\",id:\"ZrEzPHeMB\",layoutId:\"ZrEzPHeMB\",style:{height:\"100%\",width:\"100%\"},variant:\"DoXZwqn7u\",width:\"100%\",xJqnlYCTG:xJqnlYCTG3bnx0g({overlay})})}),/*#__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-1en65d1\"),\"data-framer-portal-id\":\"1w2nkk9\",exit:{opacity:0,transition:{delay:0,duration:0,ease:[.12,.23,.5,1],type:\"tween\"}},initial:{opacity:0},onTap:()=>overlay.hide()},\"gD9tQzaL1\"),/*#__PURE__*/_jsx(ComponentViewportProvider,{width:\"100vw\",children:/*#__PURE__*/_jsx(Container,{className:cx(scopingClassNames,\"framer-12vrdxh-container\"),\"data-framer-portal-id\":\"1w2nkk9\",inComponentSlot:true,nodeId:\"wKXtkxg0l\",rendersWithMotion:true,scopeId:\"zTVs_bZxx\",transformTemplate:transformTemplate1,children:/*#__PURE__*/_jsx(NavbarMobileDropdown,{height:\"100%\",id:\"wKXtkxg0l\",layoutId:\"wKXtkxg0l\",style:{width:\"100%\"},variant:\"U3XnJFJP1\",width:\"100%\"})})})]}),getContainer())})})]})})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-df0pvr\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1pjsg0w\",\"data-framer-name\":\"Hero Section\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1eg8dxo\",\"data-framer-name\":\"Content Wrap\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-pt0dal\",\"data-styles-preset\":\"mCy4WwYQy\",style:{\"--framer-text-color\":\"var(--token-1eec984d-2009-4737-825e-ff72208c1012, rgb(13, 82, 52))\"},children:\"Transforming mental health together for a better tomorrow.\"})}),className:\"framer-tapyxo\",\"data-framer-name\":\"All the tools you need for better\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-ip30yf\",\"data-styles-preset\":\"Z0CCrWXy0\",style:{\"--framer-text-color\":\"var(--token-36a01ba3-76f2-4080-a676-4afc8ddafe95, rgb(0, 0, 0))\"},children:\"With a deeply personal mission, we aim to bridge the gaps in mental health care by addressing both mind and body. Recognizing that mental well-being is closely tied to physical health factors like sleep, nutrition, and breathing, our therapist-guided program integrates these vital elements. With 2X better outcomes than traditional therapy, we\u2019re dedicated to creating a new standard in mental health care.\"})}),className:\"framer-19oka6s\",\"data-framer-name\":\"Get continuous 1:1 care in a breakthrough digital mental health program that provides lasting recovery from depression, anxiety, and stress in 12 weeks. Better \\u2028mental health is here to stay. Start today with a free health assessment.\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"OpSojcoDJ\"},implicitPathVariables:undefined},{href:{webPageId:\"OpSojcoDJ\"},implicitPathVariables:undefined},{href:{webPageId:\"OpSojcoDJ\"},implicitPathVariables:undefined},{href:{webPageId:\"OpSojcoDJ\"},implicitPathVariables:undefined}],children:resolvedLinks=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:46,children:/*#__PURE__*/_jsx(Container,{className:\"framer-78g9q3-container\",nodeId:\"sgyebA6n_\",scopeId:\"zTVs_bZxx\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{LiOTxJdE0:{wXmpHomhw:resolvedLinks[2]},rqrPOdE_1:{wXmpHomhw:resolvedLinks[3]},Yad3L0boE:{wXmpHomhw:resolvedLinks[1]}},children:/*#__PURE__*/_jsx(ButtonsCTAButton,{geGrl2tAN:false,height:\"100%\",id:\"sgyebA6n_\",layoutId:\"sgyebA6n_\",rPbsULycI:false,variant:\"HLhXv_5mO\",vDa9eM17k:\"Our story\",width:\"100%\",wXmpHomhw:resolvedLinks[0]})})})})})]}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:1698,pixelWidth:1830,src:\"https://framerusercontent.com/images/HV0Gu5GDwZHqSxkk8ynfN4ej4.jpg\"},className:\"framer-iyt2ey\"})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-12s4pxf\",\"data-framer-name\":\"Testimonial Categories\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-87u8pz\",\"data-framer-name\":\"2\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1lketa7\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{className:\"framer-styles-preset-cztnr6\",\"data-styles-preset\":\"Q4MeLYZkg\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-f8ef5147-1eb8-444d-994a-240136c5caa4, rgb(255, 255, 255))\"},children:\"A new approach to mental health\"})}),className:\"framer-xppktw\",\"data-framer-name\":\"Personalized program designed to address the unique needs of your members.\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-107empv\",\"data-styles-preset\":\"GNXodLhQJ\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-f8ef5147-1eb8-444d-994a-240136c5caa4, rgb(255, 255, 255))\"},children:\"We are on a mission to empower 10 million people suffering from mental health challenges by 2027.\"})}),className:\"framer-1hqjf09\",\"data-framer-name\":\"Comprehensive care that offers mental health screening, coordination, and ongoing support through the Meru Health platform.\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-y2ghk9\",\"data-framer-name\":\"Program and Conditions we treat\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-84za1r\",\"data-framer-name\":\"Program\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1mmtgoj\",\"data-framer-name\":\"Frame 1000006075\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"h1\",{className:\"framer-styles-preset-cztnr6\",\"data-styles-preset\":\"Q4MeLYZkg\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-1eec984d-2009-4737-825e-ff72208c1012, rgb(13, 82, 52))\"},children:\"Our values\"}),/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-ip30yf\",\"data-styles-preset\":\"Z0CCrWXy0\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-36a01ba3-76f2-4080-a676-4afc8ddafe95, rgb(0, 0, 0))\"},children:/*#__PURE__*/_jsx(\"strong\",{children:\"Our values are the foundation of who we are and how we show up\u2014for our customers, our team, and everyone we work with. They guide our actions, shape our culture, and anchor every decision we make.\"})})]}),className:\"framer-1gqna6c\",\"data-framer-name\":\"Why offer Meru Health to your members?\\xa0\",fonts:[\"Inter\",\"Inter-Bold\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1y08r9\",\"data-framer-name\":\"Frame 1000006074\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-rlozrv\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1328109\",\"data-styles-preset\":\"sFRhuhVMU\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-1eec984d-2009-4737-825e-ff72208c1012, rgb(13, 82, 52))\"},children:\"Passion\"})}),className:\"framer-qpdhiz\",\"data-framer-name\":\"Remarkable outcomes Meru Health has effectively treated thousands with depression, anxiety and other serious mental health conditions. 89% of participants who complete our 12-week program report significant relief in experienced symptoms.\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-ip30yf\",\"data-styles-preset\":\"Z0CCrWXy0\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-36a01ba3-76f2-4080-a676-4afc8ddafe95, rgb(0, 0, 0))\"},children:\"Because our mission is personal, we genuinely believe in our work, and we do it with enthusiasm and positivity. We believe that putting our heart into our work is when true creativity comes to life making almost anything possible.\"})}),className:\"framer-1habvv\",\"data-framer-name\":\"Remarkable outcomes Meru Health has effectively treated thousands with depression, anxiety and other serious mental health conditions. 89% of participants who complete our 12-week program report significant relief in experienced symptoms.\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1uac7m2\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1328109\",\"data-styles-preset\":\"sFRhuhVMU\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-1eec984d-2009-4737-825e-ff72208c1012, rgb(13, 82, 52))\"},children:\"Integrity\"})}),className:\"framer-9m3ufa\",\"data-framer-name\":\"Remarkable outcomes Meru Health has effectively treated thousands with depression, anxiety and other serious mental health conditions. 89% of participants who complete our 12-week program report significant relief in experienced symptoms.\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-ip30yf\",\"data-styles-preset\":\"Z0CCrWXy0\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-36a01ba3-76f2-4080-a676-4afc8ddafe95, rgb(0, 0, 0))\"},children:\"Integrity is the alignment of values, thoughts, words, and actions. Our commitment to integrity means we operate as individuals and as a company from the highest moral principles, acting on our values with consistency and honesty.\"})}),className:\"framer-1w5zvxx\",\"data-framer-name\":\"Remarkable outcomes Meru Health has effectively treated thousands with depression, anxiety and other serious mental health conditions. 89% of participants who complete our 12-week program report significant relief in experienced symptoms.\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1780k4j\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1328109\",\"data-styles-preset\":\"sFRhuhVMU\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-1eec984d-2009-4737-825e-ff72208c1012, rgb(13, 82, 52))\"},children:\"Transparency\"})}),className:\"framer-zsj8o3\",\"data-framer-name\":\"Remarkable outcomes Meru Health has effectively treated thousands with depression, anxiety and other serious mental health conditions. 89% of participants who complete our 12-week program report significant relief in experienced symptoms.\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-ip30yf\",\"data-styles-preset\":\"Z0CCrWXy0\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-36a01ba3-76f2-4080-a676-4afc8ddafe95, rgb(0, 0, 0))\"},children:\"We believe in openness, accountability and stellar communication. We believe in saying and expressing things as they are, as a foundation for building trust among our customers, employees and partners.\"})}),className:\"framer-vfmbg7\",\"data-framer-name\":\"Remarkable outcomes Meru Health has effectively treated thousands with depression, anxiety and other serious mental health conditions. 89% of participants who complete our 12-week program report significant relief in experienced symptoms.\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1fy2g95\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1328109\",\"data-styles-preset\":\"sFRhuhVMU\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-1eec984d-2009-4737-825e-ff72208c1012, rgb(13, 82, 52))\"},children:\"Courage\"})}),className:\"framer-vvoooi\",\"data-framer-name\":\"Remarkable outcomes Meru Health has effectively treated thousands with depression, anxiety and other serious mental health conditions. 89% of participants who complete our 12-week program report significant relief in experienced symptoms.\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-ip30yf\",\"data-styles-preset\":\"Z0CCrWXy0\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-36a01ba3-76f2-4080-a676-4afc8ddafe95, rgb(0, 0, 0))\"},children:\"Doing our work with courage is about taking risks and confronting the uncertain, as well as believing in ourselves and our dreams. Courage is also about doing the right thing, even when it confronts established paradigms.\"})}),className:\"framer-ygqwuz\",\"data-framer-name\":\"Remarkable outcomes Meru Health has effectively treated thousands with depression, anxiety and other serious mental health conditions. 89% of participants who complete our 12-week program report significant relief in experienced symptoms.\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-s2qvud\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1328109\",\"data-styles-preset\":\"sFRhuhVMU\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-1eec984d-2009-4737-825e-ff72208c1012, rgb(13, 82, 52))\"},children:\"Compassion\"})}),className:\"framer-1m4b7p6\",\"data-framer-name\":\"Remarkable outcomes Meru Health has effectively treated thousands with depression, anxiety and other serious mental health conditions. 89% of participants who complete our 12-week program report significant relief in experienced symptoms.\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-ip30yf\",\"data-styles-preset\":\"Z0CCrWXy0\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-36a01ba3-76f2-4080-a676-4afc8ddafe95, rgb(0, 0, 0))\"},children:\"We help people suffering with mental health challenges find relief, strength, and hope\u2014equipping them with the knowledge, tools and support to heal and thrive.\"})}),className:\"framer-1rifo86\",\"data-framer-name\":\"Remarkable outcomes Meru Health has effectively treated thousands with depression, anxiety and other serious mental health conditions. 89% of participants who complete our 12-week program report significant relief in experienced symptoms.\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-t4895j\",\"data-framer-name\":\"Content Wrap\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{LiOTxJdE0:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-ca82l1\",\"data-styles-preset\":\"aidXa1s24\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-1eec984d-2009-4737-825e-ff72208c1012, rgb(13, 82, 52))\"},children:\"Hear from our Founder and CEO, Kristian, on our values\"})})},rqrPOdE_1:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-ca82l1\",\"data-styles-preset\":\"aidXa1s24\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-1eec984d-2009-4737-825e-ff72208c1012, rgb(13, 82, 52))\"},children:\"Hear from our Founder and CEO, Kristian, on our values\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-ca82l1\",\"data-styles-preset\":\"aidXa1s24\",style:{\"--framer-text-color\":\"var(--token-1eec984d-2009-4737-825e-ff72208c1012, rgb(13, 82, 52))\"},children:\"Hear from our Founder and CEO, Kristian, on our values\"})}),className:\"framer-dluzxg\",\"data-framer-name\":\"Heading\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1e9q317-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"nv2dg3RAs\",scopeId:\"zTVs_bZxx\",children:/*#__PURE__*/_jsx(Vimeo,{autoplay:false,backgroundColor:\"rgba(0, 0, 0, 0)\",borderRadius:0,bottomLeftRadius:0,bottomRightRadius:0,controls:true,height:\"100%\",id:\"nv2dg3RAs\",isMixedBorderRadius:false,layoutId:\"nv2dg3RAs\",loop:false,mute:false,style:{height:\"100%\",width:\"100%\"},topLeftRadius:0,topRightRadius:0,video:\"https://vimeo.com/1036143900/7e4f430cff?share=copy\",width:\"100%\"})})})]})]})})})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-u5mwbq\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-jql3hh\",\"data-framer-name\":\"Testimonials Section\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1cjyohh\",\"data-framer-name\":\"Frame 38\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{className:\"framer-styles-preset-cztnr6\",\"data-styles-preset\":\"Q4MeLYZkg\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-1eec984d-2009-4737-825e-ff72208c1012, rgb(13, 82, 52))\"},children:\"Supporting your well-being, inside and outside of work.\"})}),className:\"framer-eb54o0\",\"data-framer-name\":\"Supporting your well-being, inside and outside of work.\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-14jfup3\",\"data-framer-name\":\"Frame 37\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-zqt15m\",\"data-framer-name\":\"Frame 35\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-10q1dq8\",\"data-styles-preset\":\"vHTJYNL3V\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-1eec984d-2009-4737-825e-ff72208c1012, rgb(13, 82, 52))\"},children:\"4 weeks of paid time off\"})}),className:\"framer-165unby\",\"data-framer-name\":\"4 weeks of \\u2028paid time off\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-ip30yf\",\"data-styles-preset\":\"Z0CCrWXy0\",style:{\"--framer-text-color\":\"var(--token-1eec984d-2009-4737-825e-ff72208c1012, rgb(13, 82, 52))\"},children:\"Our Finnish co-founders bring Nordic vacation values to everyone!\"})}),className:\"framer-sk0yzu\",\"data-framer-name\":\"Our Finnish co-founders bring Nordic vacation values to everyone!\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-518a5o\",\"data-framer-name\":\"Frame 34\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-10q1dq8\",\"data-styles-preset\":\"vHTJYNL3V\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-1eec984d-2009-4737-825e-ff72208c1012, rgb(13, 82, 52))\"},children:\"Comprehensive insurance and wellness stipend\"})}),className:\"framer-1k4p1lz\",\"data-framer-name\":\"Comprehensive insurance and wellness stipend\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-ip30yf\",\"data-styles-preset\":\"Z0CCrWXy0\",style:{\"--framer-text-color\":\"var(--token-1eec984d-2009-4737-825e-ff72208c1012, rgb(13, 82, 52))\"},children:\"(medical, dental, and vision) and a wellness stipend to support your physical and mental well-being.\"})}),className:\"framer-nou5a7\",\"data-framer-name\":\"(medical, dental, and vision) and a wellness stipend to support your physical and mental well-being.\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-a6iu93\",\"data-framer-name\":\"Frame 32\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-10q1dq8\",\"data-styles-preset\":\"vHTJYNL3V\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-1eec984d-2009-4737-825e-ff72208c1012, rgb(13, 82, 52))\"},children:\"Prioritizing mental health\"})}),className:\"framer-vj1szl\",\"data-framer-name\":\"Prioritizing mental health\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-ip30yf\",\"data-styles-preset\":\"Z0CCrWXy0\",style:{\"--framer-text-color\":\"var(--token-1eec984d-2009-4737-825e-ff72208c1012, rgb(13, 82, 52))\"},children:\"Work alongside talented, compassionate colleagues in a company that prioritizes mental health, empowering each team member to thrive.\"})}),className:\"framer-z0shb2\",\"data-framer-name\":\"Work alongside talented, compassionate colleagues in a company that prioritizes mental health, empowering each team member to thrive.\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-ydv1nc\",\"data-framer-name\":\"Frame 33\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-10q1dq8\",\"data-styles-preset\":\"vHTJYNL3V\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-1eec984d-2009-4737-825e-ff72208c1012, rgb(13, 82, 52))\"},children:\"Our culture\"})}),className:\"framer-1klmzkq\",\"data-framer-name\":\"Our culture\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-ip30yf\",\"data-styles-preset\":\"Z0CCrWXy0\",style:{\"--framer-text-color\":\"var(--token-1eec984d-2009-4737-825e-ff72208c1012, rgb(13, 82, 52))\"},children:\"From team lunches to spontaneous hikes, our culture is built around well-being, connection, and purpose.\"})}),className:\"framer-wh0ptv\",\"data-framer-name\":\"From team lunches to spontaneous hikes, our culture is built around well-being, connection, and purpose.\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-17ulvg3\",\"data-framer-name\":\"Frame 31\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-10q1dq8\",\"data-styles-preset\":\"vHTJYNL3V\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-1eec984d-2009-4737-825e-ff72208c1012, rgb(13, 82, 52))\"},children:\"Hybrid policy\"})}),className:\"framer-l4yh8o\",\"data-framer-name\":\"Hybrid policy\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-ip30yf\",\"data-styles-preset\":\"Z0CCrWXy0\",style:{\"--framer-text-color\":\"var(--token-1eec984d-2009-4737-825e-ff72208c1012, rgb(13, 82, 52))\"},children:\"Enjoy a cozy, collaborative culture with our hybrid policy: work from our Helsinki, San Mateo, or Denver offices three days a week!\"})}),className:\"framer-15tf1or\",\"data-framer-name\":\"Enjoy a cozy, collaborative culture with our hybrid policy: work from our Helsinki, San Mateo, or Denver offices three days a week!\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1igiscv\",\"data-framer-name\":\"Frame 36\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-10q1dq8\",\"data-styles-preset\":\"vHTJYNL3V\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-1eec984d-2009-4737-825e-ff72208c1012, rgb(13, 82, 52))\"},children:\"Welcoming diversity\"})}),className:\"framer-11hnpx4\",\"data-framer-name\":\"Welcoming diversity\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-ip30yf\",\"data-styles-preset\":\"Z0CCrWXy0\",style:{\"--framer-text-color\":\"var(--token-1eec984d-2009-4737-825e-ff72208c1012, rgb(13, 82, 52))\"},children:\"We\u2019re dedicated to building a team that reflects the diversity of the people we serve. We welcome and value every voice, perspective, and experience, understanding that diversity strengthens us as a team and improves our standard of care.\"})}),className:\"framer-jk1n39\",\"data-framer-name\":\"We\u2019re dedicated to building a team that reflects the diversity of the people we serve. We welcome and value every voice, perspective, and experience, understanding that diversity strengthens us as a team and improves our standard of care.\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})]})]})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-bf0cs4\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-16f0mgj\",\"data-framer-name\":\"FAQ Section\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1arqdxt\",\"data-framer-name\":\"Text Wrap\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-pt0dal\",\"data-styles-preset\":\"mCy4WwYQy\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-1eec984d-2009-4737-825e-ff72208c1012, rgb(13, 82, 52))\"},children:\"Be part of the new standard in mental health\"})}),className:\"framer-1v3b21u\",\"data-framer-name\":\"Heading\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-107empv\",\"data-styles-preset\":\"GNXodLhQJ\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-36a01ba3-76f2-4080-a676-4afc8ddafe95, rgb(0, 0, 0))\"},children:\"Join a diverse, inclusive, and compassionate team on a mission to revolutionize mental health care for everyone. See our current job openings!\"})}),className:\"framer-18i2g8a\",\"data-framer-name\":\"Comprehensive care that offers mental health screening, coordination, and ongoing support through the Meru Health platform.\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-g6860p-container\",isModuleExternal:true,nodeId:\"gCFRymifB\",scopeId:\"zTVs_bZxx\",children:/*#__PURE__*/_jsx(Embed,{height:\"100%\",html:'<style>\\n  #job-board-container {\\n    /* Removed max-width and margin */\\n    width: 100%;\\n  }\\n</style>\\n<div id=\"job-board-container\">\\n  <div id=\"grnhse_app\"></div>\\n  <script src=\"https://boards.greenhouse.io/embed/job_board/js?for=meruhealth\"></script>\\n</div>',id:\"gCFRymifB\",layoutId:\"gCFRymifB\",style:{height:\"100%\",maxWidth:\"100%\",width:\"100%\"},type:\"html\",url:\"\",width:\"100%\"})})})]})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:739,width:componentViewport?.width||\"100vw\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-orzoym-container\",nodeId:\"jOAXp__0T\",scopeId:\"zTVs_bZxx\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{LiOTxJdE0:{variant:\"e2QmEb2HN\"},rqrPOdE_1:{variant:\"UTkGQR3Yr\"},Yad3L0boE:{variant:\"NhDbLVpaB\"}},children:/*#__PURE__*/_jsx(Footer,{height:\"100%\",id:\"jOAXp__0T\",layoutId:\"jOAXp__0T\",style:{width:\"100%\"},variant:\"Xyo3kIwvv\",width:\"100%\"})})})})]})]}),/*#__PURE__*/_jsx(\"div\",{id:\"overlay\"})]})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-mNri6.framer-1vgqy1j, .framer-mNri6 .framer-1vgqy1j { display: block; }\",\".framer-mNri6.framer-1bfv603 { align-content: center; align-items: center; background-color: var(--token-f8ef5147-1eb8-444d-994a-240136c5caa4, #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: 1300px; }\",\".framer-mNri6 .framer-1w2nkk9-container { flex: none; height: 98px; position: relative; width: 100%; z-index: 10; }\",\".framer-mNri6.framer-1en65d1 { background-color: rgba(0, 0, 0, 0.8); inset: 0px; position: fixed; user-select: none; z-index: 9; }\",\".framer-mNri6.framer-12vrdxh-container { flex: none; height: auto; left: 50%; position: fixed; top: 98px; transform: translateX(-50%); width: 100%; z-index: 9; }\",\".framer-mNri6 .framer-df0pvr { align-content: center; align-items: center; background: linear-gradient(180deg, var(--token-163b8be0-c40a-4de0-8357-35273e60a48c, #d1dffd) 0%, var(--token-1eec984d-2009-4737-825e-ff72208c1012, rgb(13, 82, 52)) 32.432432432432435%, var(--token-1eec984d-2009-4737-825e-ff72208c1012, rgb(13, 82, 52)) 54.95495495495495%, var(--token-163b8be0-c40a-4de0-8357-35273e60a48c, rgb(209, 223, 253)) 100%); border-bottom-left-radius: 40px; border-bottom-right-radius: 40px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-mNri6 .framer-1pjsg0w { align-content: flex-start; align-items: flex-start; background-color: var(--token-e837ba71-b66e-46b2-bb4b-9325dbca5e6b, #f4f1ea); border-bottom-left-radius: 40px; border-bottom-right-radius: 40px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: center; overflow: hidden; padding: 80px 200px 80px 200px; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-mNri6 .framer-1eg8dxo { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 30px; height: min-content; justify-content: center; max-width: 1300px; overflow: hidden; padding: 0px; position: relative; width: 100%; z-index: 1; }\",\".framer-mNri6 .framer-tapyxo { --framer-paragraph-spacing: 0px; flex: none; height: auto; max-width: 520px; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-mNri6 .framer-19oka6s { --framer-paragraph-spacing: 18px; flex: none; height: auto; max-width: 520px; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-mNri6 .framer-78g9q3-container { flex: none; height: auto; position: relative; width: auto; }\",\".framer-mNri6 .framer-iyt2ey { bottom: 0px; flex: none; position: absolute; right: 0px; top: 0px; width: 37%; z-index: 0; }\",\".framer-mNri6 .framer-12s4pxf { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: center; overflow: visible; padding: 60px 200px 80px 200px; position: relative; width: 100%; }\",\".framer-mNri6 .framer-87u8pz { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: center; max-width: 1300px; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-mNri6 .framer-1lketa7, .framer-mNri6 .framer-1arqdxt { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-mNri6 .framer-xppktw, .framer-mNri6 .framer-1gqna6c, .framer-mNri6 .framer-eb54o0, .framer-mNri6 .framer-165unby, .framer-mNri6 .framer-1k4p1lz, .framer-mNri6 .framer-vj1szl, .framer-mNri6 .framer-1klmzkq, .framer-mNri6 .framer-l4yh8o, .framer-mNri6 .framer-11hnpx4, .framer-mNri6 .framer-jk1n39 { --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-mNri6 .framer-1hqjf09 { --framer-paragraph-spacing: 18px; flex: none; height: auto; max-width: 800px; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-mNri6 .framer-y2ghk9, .framer-mNri6 .framer-u5mwbq { align-content: center; align-items: center; 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: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-mNri6 .framer-84za1r { align-content: center; align-items: center; background-color: var(--token-163b8be0-c40a-4de0-8357-35273e60a48c, #d1dffd); 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: column; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: center; overflow: visible; padding: 56px 200px 56px 200px; position: relative; width: 100%; }\",\".framer-mNri6 .framer-1mmtgoj { 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-mNri6 .framer-1y08r9 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: wrap; gap: 56px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-mNri6 .framer-rlozrv, .framer-mNri6 .framer-1uac7m2, .framer-mNri6 .framer-1780k4j, .framer-mNri6 .framer-1fy2g95, .framer-mNri6 .framer-s2qvud { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: center; min-width: 300px; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-mNri6 .framer-qpdhiz, .framer-mNri6 .framer-1habvv, .framer-mNri6 .framer-9m3ufa, .framer-mNri6 .framer-1w5zvxx, .framer-mNri6 .framer-zsj8o3, .framer-mNri6 .framer-vfmbg7, .framer-mNri6 .framer-vvoooi, .framer-mNri6 .framer-ygqwuz, .framer-mNri6 .framer-1m4b7p6, .framer-mNri6 .framer-1rifo86 { --framer-paragraph-spacing: 10px; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-mNri6 .framer-t4895j { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 91px; height: min-content; justify-content: center; max-width: 1300px; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-mNri6 .framer-dluzxg { --framer-paragraph-spacing: 0px; flex: 1 0 0px; height: auto; max-width: 1300px; position: relative; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; }\",\".framer-mNri6 .framer-1e9q317-container { aspect-ratio: 1.756183745583039 / 1; flex: 1.4 0 0px; height: var(--framer-aspect-ratio-supported, 268px); position: relative; width: 1px; }\",\".framer-mNri6 .framer-jql3hh { align-content: center; align-items: center; 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: column; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: center; overflow: hidden; padding: 48px 200px 48px 200px; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-mNri6 .framer-1cjyohh { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 39px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-mNri6 .framer-14jfup3 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: wrap; gap: 22px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 875px; }\",\".framer-mNri6 .framer-zqt15m, .framer-mNri6 .framer-ydv1nc { align-content: flex-start; align-items: flex-start; background-color: #d8ead4; 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: 8px; height: 180px; justify-content: flex-start; overflow: visible; padding: 16px; position: relative; width: 338px; }\",\".framer-mNri6 .framer-sk0yzu, .framer-mNri6 .framer-nou5a7, .framer-mNri6 .framer-z0shb2, .framer-mNri6 .framer-wh0ptv, .framer-mNri6 .framer-15tf1or { --framer-paragraph-spacing: 15px; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-mNri6 .framer-518a5o { align-content: flex-start; align-items: flex-start; background-color: #d1dffd; 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: 8px; height: 180px; justify-content: flex-start; overflow: visible; padding: 16px; position: relative; width: 507px; }\",\".framer-mNri6 .framer-a6iu93 { align-content: flex-start; align-items: flex-start; background-color: #f4f1ea; 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: 8px; height: 180px; justify-content: flex-start; overflow: visible; padding: 16px; position: relative; width: 507px; }\",\".framer-mNri6 .framer-17ulvg3 { align-content: flex-start; align-items: flex-start; background-color: #d1dffd; 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: 8px; height: 180px; justify-content: flex-start; overflow: visible; padding: 16px; position: relative; width: 314px; }\",\".framer-mNri6 .framer-1igiscv { align-content: flex-start; align-items: flex-start; background-color: #f4f1ea; 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: 8px; height: 180px; justify-content: flex-start; overflow: visible; padding: 16px; position: relative; width: 539px; }\",\".framer-mNri6 .framer-bf0cs4 { align-content: center; align-items: center; background-color: var(--token-84efdf15-b36e-4528-86ed-b700eb435e5a, #d8ead4); 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: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-mNri6 .framer-16f0mgj { align-content: center; align-items: center; background-color: var(--token-84efdf15-b36e-4528-86ed-b700eb435e5a, #d8ead4); 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: column; flex-wrap: nowrap; gap: 80px; height: min-content; justify-content: center; overflow: hidden; padding: 50px 200px 60px 200px; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-mNri6 .framer-1v3b21u { --framer-paragraph-spacing: 0px; flex: none; height: auto; max-width: 1300px; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-mNri6 .framer-18i2g8a { --framer-paragraph-spacing: 18px; flex: none; height: auto; max-width: 700px; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-mNri6 .framer-g6860p-container { flex: none; height: 800px; max-width: 900px; position: relative; width: 100%; }\",\".framer-mNri6 .framer-orzoym-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: 1560px) { .framer-mNri6.framer-1bfv603 { width: 1560px; } .framer-mNri6 .framer-1pjsg0w { padding: 80px 220px 80px 220px; } .framer-mNri6 .framer-iyt2ey { width: 50%; } .framer-mNri6 .framer-12s4pxf { padding: 60px 220px 80px 220px; } .framer-mNri6 .framer-84za1r { padding: 56px 220px 56px 220px; } .framer-mNri6 .framer-1y08r9 { gap: 24px; } .framer-mNri6 .framer-rlozrv, .framer-mNri6 .framer-1uac7m2, .framer-mNri6 .framer-1780k4j, .framer-mNri6 .framer-1fy2g95, .framer-mNri6 .framer-s2qvud { min-width: unset; } .framer-mNri6 .framer-1e9q317-container { height: var(--framer-aspect-ratio-supported, 342px); } .framer-mNri6 .framer-jql3hh { padding: 48px 220px 48px 220px; } .framer-mNri6 .framer-16f0mgj { padding: 50px 220px 60px 220px; }}\",\"@media (min-width: 810px) and (max-width: 1299px) { .framer-mNri6.framer-1bfv603 { width: 810px; } .framer-mNri6 .framer-1w2nkk9-container, .framer-mNri6 .framer-xppktw, .framer-mNri6 .framer-1cjyohh { order: 0; } .framer-mNri6 .framer-df0pvr { order: 1; } .framer-mNri6 .framer-1pjsg0w { border-bottom-left-radius: 20px; border-bottom-right-radius: 20px; gap: 0px; padding: 0px; } .framer-mNri6 .framer-1eg8dxo { gap: 24px; max-width: unset; padding: 40px 64px 40px 64px; } .framer-mNri6 .framer-tapyxo, .framer-mNri6 .framer-19oka6s { max-width: unset; } .framer-mNri6 .framer-iyt2ey { bottom: unset; height: 407px; position: relative; right: unset; top: unset; width: 100%; } .framer-mNri6 .framer-12s4pxf { padding: 60px 64px 80px 64px; } .framer-mNri6 .framer-1hqjf09 { max-width: 500px; order: 1; } .framer-mNri6 .framer-y2ghk9 { border-bottom-left-radius: 20px; border-bottom-right-radius: 20px; border-top-left-radius: 20px; border-top-right-radius: 20px; } .framer-mNri6 .framer-84za1r { border-bottom-left-radius: 20px; border-bottom-right-radius: 20px; border-top-left-radius: 20px; border-top-right-radius: 20px; padding: 56px 64px 56px 64px; } .framer-mNri6 .framer-t4895j { flex-direction: column; gap: 24px; } .framer-mNri6 .framer-dluzxg { flex: none; order: 1; width: 100%; } .framer-mNri6 .framer-1e9q317-container { flex: none; height: var(--framer-aspect-ratio-supported, 388px); order: 0; width: 100%; } .framer-mNri6 .framer-u5mwbq { order: 2; } .framer-mNri6 .framer-jql3hh { border-bottom-left-radius: 20px; border-bottom-right-radius: 20px; border-top-left-radius: 20px; border-top-right-radius: 20px; padding: 48px 64px 48px 64px; } .framer-mNri6 .framer-14jfup3 { width: 100%; } .framer-mNri6 .framer-zqt15m { width: 264px; } .framer-mNri6 .framer-518a5o { width: 395px; } .framer-mNri6 .framer-a6iu93 { width: 389px; } .framer-mNri6 .framer-ydv1nc { width: 268px; } .framer-mNri6 .framer-17ulvg3 { width: 245px; } .framer-mNri6 .framer-1igiscv { width: 415px; } .framer-mNri6 .framer-bf0cs4 { order: 3; } .framer-mNri6 .framer-16f0mgj { border-bottom-left-radius: 20px; border-bottom-right-radius: 20px; border-top-left-radius: 20px; border-top-right-radius: 20px; padding: 50px 64px 60px 64px; }}\",\"@media (max-width: 809px) { .framer-mNri6.framer-1bfv603 { width: 390px; } .framer-mNri6 .framer-1pjsg0w { border-bottom-left-radius: 20px; border-bottom-right-radius: 20px; gap: 0px; padding: 0px; } .framer-mNri6 .framer-1eg8dxo { gap: 24px; max-width: unset; padding: 40px 24px 40px 24px; } .framer-mNri6 .framer-iyt2ey { bottom: unset; height: 197px; position: relative; right: unset; top: unset; width: 100%; } .framer-mNri6 .framer-12s4pxf { gap: 24px; padding: 40px 24px 40px 24px; } .framer-mNri6 .framer-y2ghk9, .framer-mNri6 .framer-u5mwbq { border-bottom-left-radius: 20px; border-bottom-right-radius: 20px; border-top-left-radius: 20px; border-top-right-radius: 20px; } .framer-mNri6 .framer-84za1r, .framer-mNri6 .framer-16f0mgj { border-bottom-left-radius: 20px; border-bottom-right-radius: 20px; border-top-left-radius: 20px; border-top-right-radius: 20px; padding: 40px 24px 40px 24px; } .framer-mNri6 .framer-t4895j { flex-direction: column; gap: 40px; } .framer-mNri6 .framer-dluzxg { flex: none; order: 1; width: 100%; } .framer-mNri6 .framer-1e9q317-container { flex: none; height: var(--framer-aspect-ratio-supported, 195px); order: 0; width: 100%; } .framer-mNri6 .framer-jql3hh { border-bottom-left-radius: 20px; border-bottom-right-radius: 20px; border-top-left-radius: 20px; border-top-right-radius: 20px; gap: 16px; padding: 40px 24px 40px 24px; } .framer-mNri6 .framer-1cjyohh { order: 0; } .framer-mNri6 .framer-14jfup3 { flex-direction: column; width: 100%; } .framer-mNri6 .framer-zqt15m, .framer-mNri6 .framer-518a5o, .framer-mNri6 .framer-a6iu93, .framer-mNri6 .framer-ydv1nc, .framer-mNri6 .framer-17ulvg3, .framer-mNri6 .framer-1igiscv { height: min-content; width: 100%; }}\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 4525\n * @framerIntrinsicWidth 1300\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"Yad3L0boE\":{\"layout\":[\"fixed\",\"auto\"]},\"LiOTxJdE0\":{\"layout\":[\"fixed\",\"auto\"]},\"rqrPOdE_1\":{\"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 FramerzTVs_bZxx=withCSS(Component,css,\"framer-mNri6\");export default FramerzTVs_bZxx;FramerzTVs_bZxx.displayName=\"Employer B2b Zoom\";FramerzTVs_bZxx.defaultProps={height:4525,width:1300};addFonts(FramerzTVs_bZxx,[{explicitInter:true,fonts:[{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/5vvr9Vy74if2I6bQbJvbw7SY1pQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/EOr0mi4hNtlgWNn9if640EZzXCo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Y9k9QrlZAqio88Klkmbd8VoMQc.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/OYrD2tBIBPvoJXiIHnLoOXnY9M.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/JeYwfuaPfZHQhEG8U5gtPDZ7WQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/vQyevYAyHtARFwPqUzQGpnDs.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/b6Y37FthZeALduNqHicBT6FutY.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/DpPBYI0sL4fYLgAkX8KXOPVt7c.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/4RAEQdEOrcnDkhHiiCbJOw92Lk.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/1K3W8DizY3v4emK8Mb08YHxTbs.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/tUSCtfYVM1I1IchuyCwz9gDdQ.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/VgYFWiwsAC5OYxAycRXXvhze58.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/DXD0Q7LSl7HEvDzucnyLnGBHM.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/GIryZETIX4IFypco5pYZONKhJIo.woff2\",weight:\"700\"}]},...NavbarNavbarFonts,...NavbarMobileDropdownFonts,...ButtonsCTAButtonFonts,...VimeoFonts,...EmbedFonts,...FooterFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts),...getFontsFromSharedStyle(sharedStyle2.fonts),...getFontsFromSharedStyle(sharedStyle3.fonts),...getFontsFromSharedStyle(sharedStyle4.fonts),...getFontsFromSharedStyle(sharedStyle5.fonts),...getFontsFromSharedStyle(sharedStyle6.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerzTVs_bZxx\",\"slots\":[],\"annotations\":{\"framerComponentViewportWidth\":\"true\",\"framerContractVersion\":\"1\",\"framerImmutableVariables\":\"true\",\"framerIntrinsicWidth\":\"1300\",\"framerAutoSizeImages\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"Yad3L0boE\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"LiOTxJdE0\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"rqrPOdE_1\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerScrollSections\":\"* @framerResponsiveScreen\",\"framerDisplayContentsDiv\":\"false\",\"framerIntrinsicHeight\":\"4525\",\"framerAcceptsLayoutTemplate\":\"true\",\"framerColorSyntax\":\"true\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}"],
  "mappings": "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",
  "names": ["Embed", "type", "url", "html", "style", "p", "EmbedUrl", "EmbedHtml", "Instructions", "addPropertyControls", "ControlType", "props", "getMinHeight", "emptyStateStyle", "centerTextStyle", "hasAutoHeight", "onCanvas", "useIsOnCanvas", "state", "setState", "ye", "ue", "isLastEffect", "load", "response", "isBlocked", "message", "error", "ErrorMessage", "LoadingIndicator", "iframeStyle", "getSandbox", "result", "hasSplineViewer", "hasComment", "EmbedHtmlWithScripts", "EmbedHtmlInsideIframe", "EmbedHtmlWithoutScripts", "ref", "pe", "iframeHeight", "setIframeHeight", "_ref_current", "iframeWindow", "handleMessage", "event", "data", "height", "window", "srcDoc", "currentStyle", "div", "executeScripts", "htmlStyle", "node", "script", "name", "value", "child", "containerStyles", "NavbarNavbarFonts", "getFonts", "hfO3gChsw_default", "NavbarMobileDropdownFonts", "Xlpg3cjMT_default", "ButtonsCTAButtonFonts", "f4hh2mMdz_default", "VimeoFonts", "Vimeo_default", "EmbedFonts", "Embed", "FooterFonts", "vzig9usOP_default", "breakpoints", "serializationHash", "variantClassNames", "transformTemplate1", "_", "getContainer", "Overlay", "children", "blockDocumentScrolling", "enabled", "visible", "setVisible", "useOverlayState", "HTMLStyle", "value", "useIsOnFramerCanvas", "p", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "Component", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "variant", "restProps", "ue", "metadata", "robotsTag", "ie", "baseVariant", "hydratedBaseVariant", "useHydratedBreakpointVariants", "breakpoints", "gestureVariant", "activeVariantCallback", "delay", "useActiveVariantCallback", "xJqnlYCTG3bnx0g", "overlay", "loadMore", "args", "scopingClassNames", "cx", "router", "useRouter", "useCustomCursors", "GeneratedComponentContext", "u", "LayoutGroup", "motion", "l", "ComponentViewportProvider", "Container", "PropertyOverrides2", "hfO3gChsw_default", "AnimatePresence", "Ga", "x", "Xlpg3cjMT_default", "RichText2", "ResolveLinks", "resolvedLinks", "f4hh2mMdz_default", "Image2", "Vimeo_default", "Embed", "vzig9usOP_default", "css", "FramerzTVs_bZxx", "withCSS", "zTVs_bZxx_default", "addFonts", "NavbarNavbarFonts", "NavbarMobileDropdownFonts", "ButtonsCTAButtonFonts", "VimeoFonts", "EmbedFonts", "FooterFonts", "getFontsFromSharedStyle", "fonts", "__FramerMetadata__"]
}
