{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/o1PI5S8YtkA5bP5g4dFz/9zLIz4fn80IR9zpOx18Q/Embed.js", "ssg:https://framerusercontent.com/modules/F6ph4lMit2VgqMRzLlZX/vZRJ3PKBEeWOtCYgU2ui/FHS7SZWvU.js", "ssg:https://framerusercontent.com/modules/sEOoMhP9Bu5HG6YnHze2/Qnv5VlJIAwxloylMMqGl/augiA20Il.js"],
  "sourcesContent": ["import{jsx as _jsx,jsxs as _jsxs}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 fixed\n *\n * @framerDisableUnlink\n */ export default function Embed({type,url,html}){if(type===\"url\"&&url){return /*#__PURE__*/ _jsx(EmbedURL,{url:url});}if(type===\"html\"&&html){return /*#__PURE__*/ _jsx(EmbedHTML,{html:html});}return /*#__PURE__*/ _jsx(Instructions,{});};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\",displayTextArea:true,type:ControlType.String,hidden(props){return props.type!==\"html\";}}});function Instructions(){return /*#__PURE__*/ _jsx(\"div\",{style:{...emptyStateStyle,overflow:\"hidden\"},children:/*#__PURE__*/ _jsx(\"div\",{style:centerTextStyle,children:\"To embed a website or widget, add it to the properties\\xa0panel.\"})});}function EmbedURL({url}){// 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(!url.startsWith(\"https://\")){return /*#__PURE__*/ _jsx(ErrorMessage,{message:\"Unsupported protocol.\"});}if(state===undefined){return /*#__PURE__*/ _jsx(LoadingIndicator,{});}if(state instanceof Error){return /*#__PURE__*/ _jsx(ErrorMessage,{message:state.message});}if(state===true){const message=`Can't embed ${url} due to its content security policy.`;return /*#__PURE__*/ _jsx(ErrorMessage,{message:message});}return /*#__PURE__*/ _jsx(\"iframe\",{src:url,style:iframeStyle,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}){const ref=useRef();// If the HTML contains a script tag we can't use\n// dangerouslySetInnerHTML because it doesn't execute\n// scripts on the client. Otherwise, we can benefit\n// from SSG by using dangerouslySetInnerHTML.\nconst hasScript=html.includes(\"</script>\");useEffect(()=>{if(!hasScript)return;const div=ref.current;div.innerHTML=html;executeScripts(div);return()=>{div.innerHTML=\"\";};},[html,hasScript]);return /*#__PURE__*/ _jsx(\"div\",{ref:ref,style:htmlStyle,dangerouslySetInnerHTML:!hasScript?{__html:html}:undefined});}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}){return /*#__PURE__*/ _jsx(\"div\",{className:\"framerInternalUI-errorPlaceholder\",style:{...containerStyles,overflow:\"hidden\"},children:/*#__PURE__*/ _jsxs(\"div\",{style:centerTextStyle,children:[\"Error: \",message]})});}const centerTextStyle={textAlign:\"center\",minWidth:140};\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"Embed\",\"slots\":[],\"annotations\":{\"framerSupportedLayoutHeight\":\"fixed\",\"framerSupportedLayoutWidth\":\"fixed\",\"framerDisableUnlink\":\"\",\"framerIntrinsicWidth\":\"600\",\"framerIntrinsicHeight\":\"400\",\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Embed.map", "import{fontStore as r}from\"framer\";r.loadWebFontsFromSelectors([\"CUSTOM;Gabarito Regular\"]);export const fonts=[{family:\"Gabarito Regular\",moduleAsset:{localModuleIdentifier:\"local-module:css/FHS7SZWvU:default\",url:\"https://framerusercontent.com/assets/lZVTR2GxmjwcxrXdX3pK1bvjFfc.ttf\"},url:\"https://framerusercontent.com/assets/lZVTR2GxmjwcxrXdX3pK1bvjFfc.ttf\"}];export const css=['.framer-uF29n .framer-styles-preset-1nrlqsy:not(.rich-text-wrapper), .framer-uF29n .framer-styles-preset-1nrlqsy.rich-text-wrapper h1 { --framer-font-family: \"Gabarito Regular\", \"Gabarito Regular Placeholder\", sans-serif; --framer-font-size: 60px; --framer-font-style: normal; --framer-font-weight: 400; --framer-letter-spacing: 0em; --framer-line-height: 1.2em; --framer-paragraph-spacing: 40px; --framer-text-alignment: center; --framer-text-color: #092740; --framer-text-decoration: none; --framer-text-transform: none; }'];export const className=\"framer-uF29n\";\nexport const __FramerMetadata__ = {\"exports\":{\"className\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"fonts\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"css\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (33d5032)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,ComponentViewportProvider,Container,cx,GeneratedComponentContext,getFonts,getFontsFromSharedStyle,Image,Link,PropertyOverrides,ResolveLinks,RichText,useCustomCursors,useHydratedBreakpointVariants,useLocaleInfo,useRouteElementId,useRouter,withCSS,withFX,withMappedReactProps}from\"framer\";import{LayoutGroup,motion}from\"framer-motion\";import*as React from\"react\";import Embed from\"https://framerusercontent.com/modules/o1PI5S8YtkA5bP5g4dFz/9zLIz4fn80IR9zpOx18Q/Embed.js\";import Card from\"#framer/local/canvasComponent/bqCUO_vPW/bqCUO_vPW.js\";import CardNavi from\"#framer/local/canvasComponent/end0Zb18J/end0Zb18J.js\";import Header,*as HeaderInfo from\"#framer/local/canvasComponent/JbOlpBCcg/JbOlpBCcg.js\";import Footer from\"#framer/local/canvasComponent/Qhbkhip7c/Qhbkhip7c.js\";import{withSlideOutOnScrollUp}from\"#framer/local/codeFile/UR1iN5V/ScrollEffect.js\";import{Annotation,Body_L,GuidelinetitleM,Homepagetitle,PageheadlineM,Tag}from\"#framer/local/codeFile/lrWZDnZ/Text.js\";import*as sharedStyle2 from\"#framer/local/css/Djlrh5I7y/Djlrh5I7y.js\";import*as sharedStyle from\"#framer/local/css/FHS7SZWvU/FHS7SZWvU.js\";import*as sharedStyle3 from\"#framer/local/css/MF03EO5nU/MF03EO5nU.js\";import*as sharedStyle4 from\"#framer/local/css/nIV9v1dJ3/nIV9v1dJ3.js\";import*as sharedStyle1 from\"#framer/local/css/rBpfxsyjq/rBpfxsyjq.js\";import*as sharedStyle5 from\"#framer/local/css/TrbyYjBLQ/TrbyYjBLQ.js\";import*as sharedStyle6 from\"#framer/local/css/uLtI6Bvsn/uLtI6Bvsn.js\";import metadataProvider from\"#framer/local/webPageMetadata/augiA20Il/augiA20Il.js\";const HeaderFonts=getFonts(Header);const HeaderWithSlideOutOnScrollUpWithMappedReactPropsc9x0go=withMappedReactProps(withSlideOutOnScrollUp(Header),HeaderInfo);const RichTextHomepagetitle=Homepagetitle(RichText);const RichTextBody_L=Body_L(RichText);const CardNaviFonts=getFonts(CardNavi);const RichTextTag=Tag(RichText);const RichTextPageheadlineM=PageheadlineM(RichText);const MotionDivWithFX=withFX(motion.div);const RichTextGuidelinetitleM=GuidelinetitleM(RichText);const RichTextAnnotation=Annotation(RichText);const EmbedFonts=getFonts(Embed);const CardFonts=getFonts(Card);const FooterFonts=getFonts(Footer);const cycleOrder=[\"WQLkyLRf1\",\"lQAXrQpqD\",\"mH7iJQPkx\",\"gkSkWk9S6\",\"pPV3xx0Cp\"];const breakpoints={gkSkWk9S6:\"(min-width: 1366px) and (max-width: 1439px)\",lQAXrQpqD:\"(min-width: 1440px) and (max-width: 1919px)\",mH7iJQPkx:\"(min-width: 1920px)\",pPV3xx0Cp:\"(max-width: 1279px)\",WQLkyLRf1:\"(min-width: 1280px) and (max-width: 1365px)\"};const isBrowser=()=>typeof document!==\"undefined\";const serializationHash=\"framer-j0gty\";const variantClassNames={gkSkWk9S6:\"framer-v-ity98x\",lQAXrQpqD:\"framer-v-1ldc8ag\",mH7iJQPkx:\"framer-v-1e8ickh\",pPV3xx0Cp:\"framer-v-fvairp\",WQLkyLRf1:\"framer-v-72rtr7\"};const transformTemplate1=(_,t)=>`translateX(-50%) ${t}`;const animation={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:40};const transition1={delay:0,duration:.7,ease:[.44,0,.56,1],type:\"tween\"};const animation1={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition1,x:0,y:40};const animation2={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:60};const transition2={delay:0,duration:.9,ease:[.44,0,.56,1],type:\"tween\"};const animation3={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition2,x:0,y:60};const animation4={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:80};const transition3={damping:30,delay:.92,mass:1,stiffness:400,type:\"spring\"};const animation5={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition3,x:0,y:80};const addImageAlt=(image,alt)=>{if(!image||typeof image!==\"object\"){return;}return{...image,alt};};const metadata=metadataProvider();const humanReadableVariantMap={\"1366\":\"gkSkWk9S6\",\"1440\":\"lQAXrQpqD\",\"1920\":\"mH7iJQPkx\",Desktop:\"WQLkyLRf1\",Tablet:\"pPV3xx0Cp\"};const getProps=({height,id,width,...props})=>{var _humanReadableVariantMap_props_variant,_ref;return{...props,variant:(_ref=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref!==void 0?_ref:\"WQLkyLRf1\"};};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,...restProps}=getProps(props);React.useInsertionEffect(()=>{const metadata1=metadataProvider(undefined,activeLocale);document.title=metadata1.title||\"\";if(metadata1.viewport){var _document_querySelector;(_document_querySelector=document.querySelector('meta[name=\"viewport\"]'))===null||_document_querySelector===void 0?void 0:_document_querySelector.setAttribute(\"content\",metadata1.viewport);}if(metadata1.bodyClassName){Array.from(document.body.classList).filter(c=>c.startsWith(\"framer-body-\")).map(c=>document.body.classList.remove(c));document.body.classList.add(`${metadata1.bodyClassName}-framer-j0gty`);return()=>{document.body.classList.remove(`${metadata1.bodyClassName}-framer-j0gty`);};}},[undefined,activeLocale]);const[baseVariant,hydratedBaseVariant]=useHydratedBreakpointVariants(variant,breakpoints,false);const gestureVariant=undefined;const ref1=React.useRef(null);const router=useRouter();const id=useRouteElementId(\"FVTyPpWm0\");const ref2=React.useRef(null);const id1=useRouteElementId(\"a0EaSEC3W\");const ref3=React.useRef(null);const id2=useRouteElementId(\"SgKcI26_V\");const ref4=React.useRef(null);const id3=useRouteElementId(\"nnbHFjmWR\");const ref5=React.useRef(null);const defaultLayoutId=React.useId();const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className,sharedStyle2.className,sharedStyle3.className,sharedStyle4.className,sharedStyle5.className,sharedStyle6.className];useCustomCursors({});return /*#__PURE__*/_jsx(GeneratedComponentContext.Provider,{value:{primaryVariantId:\"WQLkyLRf1\",variantClassNames},children:/*#__PURE__*/_jsxs(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:[/*#__PURE__*/_jsxs(motion.div,{...restProps,className:cx(serializationHash,...sharedStyleClassNames,\"framer-72rtr7\",className),ref:ref!==null&&ref!==void 0?ref:ref1,style:{...style},children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{width:\"100vw\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-tqancr-container\",layoutScroll:true,transformTemplate:transformTemplate1,children:/*#__PURE__*/_jsx(HeaderWithSlideOutOnScrollUpWithMappedReactPropsc9x0go,{B3SBU08nC:\"var(--token-60e17712-5082-4b4e-981c-2f8c94fa74a4, rgb(51, 51, 51))\",height:\"100%\",id:\"XDHyzEOar\",layoutId:\"XDHyzEOar\",saBIiL3cP:\"rgba(255, 255, 255, 0)\",style:{width:\"100%\"},variant:\"nGEvwERsd\",width:\"100%\"})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-16e0e9o\",\"data-framer-name\":\"Viewpoint\",name:\"Viewpoint\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-17ga1d8\",\"data-framer-name\":\"Website Title\",name:\"Website Title\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{gkSkWk9S6:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{className:\"framer-styles-preset-1nrlqsy\",\"data-styles-preset\":\"FHS7SZWvU\",style:{\"--framer-text-alignment\":\"center\"},children:\"We design experiences for building a better digital health world\"})})},lQAXrQpqD:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{className:\"framer-styles-preset-1nrlqsy\",\"data-styles-preset\":\"FHS7SZWvU\",style:{\"--framer-text-alignment\":\"center\"},children:\"We design experiences for building a better digital health world\"})})},mH7iJQPkx:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{className:\"framer-styles-preset-1nrlqsy\",\"data-styles-preset\":\"FHS7SZWvU\",style:{\"--framer-text-alignment\":\"center\"},children:\"We design experiences for building a better digital health world\"})})}},children:/*#__PURE__*/_jsx(RichTextHomepagetitle,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{className:\"framer-styles-preset-1nrlqsy\",\"data-styles-preset\":\"FHS7SZWvU\",children:\"We design experiences for building a better digital health world\"})}),className:\"framer-yx4mx6\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(RichTextBody_L,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{className:\"framer-styles-preset-145lkq2\",\"data-styles-preset\":\"rBpfxsyjq\",style:{\"--framer-text-alignment\":\"center\"},children:[/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-d90b6b68-b5f1-4015-a3c4-6b25546fb2e4, rgb(79, 79, 79))\"},children:\"\u201CA positive digital patient experience benefits everyone, but it does not just happen; \"}),/*#__PURE__*/_jsx(\"br\",{}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-d90b6b68-b5f1-4015-a3c4-6b25546fb2e4, rgb(79, 79, 79))\"},children:\"it has to be understood, designed, and evaluated.\u201D\"})]})}),className:\"framer-bxxqfc\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-d2bm38\",\"data-framer-name\":\"Claim_Ne'w\",name:\"Claim_Ne'w\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{pPV3xx0Cp:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:2266,intrinsicWidth:4205,pixelHeight:2266,pixelWidth:4205,sizes:\"calc(100vw - 244px)\",src:\"https://framerusercontent.com/images/N6rGrzxR2XiNegzHgyRsOXGKgHQ.png\",srcSet:\"https://framerusercontent.com/images/N6rGrzxR2XiNegzHgyRsOXGKgHQ.png?scale-down-to=512 512w,https://framerusercontent.com/images/N6rGrzxR2XiNegzHgyRsOXGKgHQ.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/N6rGrzxR2XiNegzHgyRsOXGKgHQ.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/N6rGrzxR2XiNegzHgyRsOXGKgHQ.png?scale-down-to=4096 4096w,https://framerusercontent.com/images/N6rGrzxR2XiNegzHgyRsOXGKgHQ.png 4205w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:2266,intrinsicWidth:4205,pixelHeight:2266,pixelWidth:4205,sizes:\"calc((100vw - 244px) * 0.7)\",src:\"https://framerusercontent.com/images/N6rGrzxR2XiNegzHgyRsOXGKgHQ.png\",srcSet:\"https://framerusercontent.com/images/N6rGrzxR2XiNegzHgyRsOXGKgHQ.png?scale-down-to=512 512w,https://framerusercontent.com/images/N6rGrzxR2XiNegzHgyRsOXGKgHQ.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/N6rGrzxR2XiNegzHgyRsOXGKgHQ.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/N6rGrzxR2XiNegzHgyRsOXGKgHQ.png?scale-down-to=4096 4096w,https://framerusercontent.com/images/N6rGrzxR2XiNegzHgyRsOXGKgHQ.png 4205w\"},className:\"framer-6ioe7m\"})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-18f7ccr\",\"data-framer-name\":\"Card Navi\",name:\"Card Navi\",children:[/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{hash:\":nnbHFjmWR\",webPageId:\"augiA20Il\"},implicitPathVariables:undefined},{href:{hash:\":nnbHFjmWR\",webPageId:\"augiA20Il\"},implicitPathVariables:undefined},{href:{hash:\":nnbHFjmWR\",webPageId:\"augiA20Il\"},implicitPathVariables:undefined},{href:{hash:\":nnbHFjmWR\",webPageId:\"augiA20Il\"},implicitPathVariables:undefined},{href:{hash:\":nnbHFjmWR\",webPageId:\"augiA20Il\"},implicitPathVariables:undefined}],children:resolvedLinks=>/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1dktc07-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{gkSkWk9S6:{QJnsByKXW:resolvedLinks[3]},lQAXrQpqD:{QJnsByKXW:resolvedLinks[1]},mH7iJQPkx:{QJnsByKXW:resolvedLinks[2]},pPV3xx0Cp:{QJnsByKXW:resolvedLinks[4]}},children:/*#__PURE__*/_jsx(CardNavi,{GMdDfpgE3:\"Learn what is digital health and digital patient experience\",height:\"100%\",id:\"FUHTRrA8v\",layoutId:\"FUHTRrA8v\",QJnsByKXW:resolvedLinks[0],style:{width:\"100%\"},width:\"100%\",XdM3tHtCd:\"Topics of interest\"})})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{hash:\":FVTyPpWm0\",webPageId:\"augiA20Il\"},implicitPathVariables:undefined},{href:{hash:\":FVTyPpWm0\",webPageId:\"augiA20Il\"},implicitPathVariables:undefined},{href:{hash:\":FVTyPpWm0\",webPageId:\"augiA20Il\"},implicitPathVariables:undefined},{href:{hash:\":FVTyPpWm0\",webPageId:\"augiA20Il\"},implicitPathVariables:undefined},{href:{hash:\":FVTyPpWm0\",webPageId:\"augiA20Il\"},implicitPathVariables:undefined}],children:resolvedLinks1=>/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-zpfygj-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{gkSkWk9S6:{QJnsByKXW:resolvedLinks1[3]},lQAXrQpqD:{QJnsByKXW:resolvedLinks1[1]},mH7iJQPkx:{QJnsByKXW:resolvedLinks1[2]},pPV3xx0Cp:{QJnsByKXW:resolvedLinks1[4]}},children:/*#__PURE__*/_jsx(CardNavi,{GMdDfpgE3:\"Get you ready to use the guide\",height:\"100%\",id:\"FMVZG6ObR\",layoutId:\"FMVZG6ObR\",QJnsByKXW:resolvedLinks1[0],style:{height:\"100%\",width:\"100%\"},width:\"100%\",XdM3tHtCd:\"For audiences\"})})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{hash:\":SgKcI26_V\",webPageId:\"augiA20Il\"},implicitPathVariables:undefined},{href:{hash:\":SgKcI26_V\",webPageId:\"augiA20Il\"},implicitPathVariables:undefined},{href:{hash:\":SgKcI26_V\",webPageId:\"augiA20Il\"},implicitPathVariables:undefined},{href:{hash:\":SgKcI26_V\",webPageId:\"augiA20Il\"},implicitPathVariables:undefined},{href:{hash:\":SgKcI26_V\",webPageId:\"augiA20Il\"},implicitPathVariables:undefined}],children:resolvedLinks2=>/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-gbz87j-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{gkSkWk9S6:{QJnsByKXW:resolvedLinks2[3]},lQAXrQpqD:{QJnsByKXW:resolvedLinks2[1]},mH7iJQPkx:{QJnsByKXW:resolvedLinks2[2]},pPV3xx0Cp:{QJnsByKXW:resolvedLinks2[4]}},children:/*#__PURE__*/_jsx(CardNavi,{GMdDfpgE3:\"Get to know the guide and our content\",height:\"100%\",id:\"X_BHkiU3R\",layoutId:\"X_BHkiU3R\",QJnsByKXW:resolvedLinks2[0],style:{height:\"100%\",width:\"100%\"},width:\"100%\",XdM3tHtCd:\"Our contents\"})})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{hash:\":nnbHFjmWR\",webPageId:\"augiA20Il\"},implicitPathVariables:undefined},{href:{hash:\":nnbHFjmWR\",webPageId:\"augiA20Il\"},implicitPathVariables:undefined},{href:{hash:\":nnbHFjmWR\",webPageId:\"augiA20Il\"},implicitPathVariables:undefined},{href:{hash:\":nnbHFjmWR\",webPageId:\"augiA20Il\"},implicitPathVariables:undefined},{href:{hash:\":nnbHFjmWR\",webPageId:\"augiA20Il\"},implicitPathVariables:undefined}],children:resolvedLinks3=>/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-h6mn83-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{gkSkWk9S6:{QJnsByKXW:resolvedLinks3[3]},lQAXrQpqD:{QJnsByKXW:resolvedLinks3[1]},mH7iJQPkx:{QJnsByKXW:resolvedLinks3[2]},pPV3xx0Cp:{QJnsByKXW:resolvedLinks3[4]}},children:/*#__PURE__*/_jsx(CardNavi,{GMdDfpgE3:\"Learn how you can influence patients\",height:\"100%\",id:\"lYw0RAUwy\",layoutId:\"lYw0RAUwy\",QJnsByKXW:resolvedLinks3[0],style:{height:\"100%\",width:\"100%\"},width:\"100%\",XdM3tHtCd:\"Our value\"})})})})})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-twhmfs\",\"data-framer-name\":\"Concept\",id:id,name:\"Concept\",ref:ref2,children:[/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation,__framer__exit:animation1,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-16dgt6m\",\"data-framer-name\":\"Title\",name:\"Title\",style:{transformPerspective:1200},children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{mH7iJQPkx:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h6\",{className:\"framer-styles-preset-3l86f1\",\"data-styles-preset\":\"Djlrh5I7y\",style:{\"--framer-text-color\":\"rgb(0, 77, 84)\"},children:\"ToPICs of interest\"})})}},children:/*#__PURE__*/_jsx(RichTextTag,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h6\",{className:\"framer-styles-preset-3l86f1\",\"data-styles-preset\":\"Djlrh5I7y\",style:{\"--framer-text-color\":\"var(--token-afbcd533-8191-40c6-ab16-e2f9ee5e9f5f, rgb(0, 131, 143))\"},children:\"ToPICs of interest\"})}),className:\"framer-382pep\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(RichTextPageheadlineM,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{className:\"framer-styles-preset-ghqa1o\",\"data-styles-preset\":\"MF03EO5nU\",style:{\"--framer-text-color\":\"var(--token-60e17712-5082-4b4e-981c-2f8c94fa74a4, rgb(51, 51, 51))\"},children:\"What is digital health and digital patient experience?\"})}),className:\"framer-dgfku8\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation2,__framer__exit:animation3,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1uehujc\",\"data-framer-name\":\"Claim\",name:\"Claim\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(RichTextBody_L,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-145lkq2\",\"data-styles-preset\":\"rBpfxsyjq\",style:{\"--framer-text-color\":\"var(--token-d90b6b68-b5f1-4015-a3c4-6b25546fb2e4, rgb(79, 79, 79))\"},children:\"Patients have different experiences in different digital health contexts. \"}),/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-145lkq2\",\"data-styles-preset\":\"rBpfxsyjq\",style:{\"--framer-text-color\":\"var(--token-d90b6b68-b5f1-4015-a3c4-6b25546fb2e4, rgb(79, 79, 79))\"},children:\"Digital patient experience is the sum of all interactions, affected by a patient\u2019s behavioral determinants, framed by digital technologies, and shaped by organizational culture, that influence patient perceptions across the continuum of care channeling digital health. \"}),/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-145lkq2\",\"data-styles-preset\":\"rBpfxsyjq\",style:{\"--framer-text-color\":\"var(--token-d90b6b68-b5f1-4015-a3c4-6b25546fb2e4, rgb(79, 79, 79))\"},children:\"Digital health encompasses a much broader set of scientific concepts and technologies, such as digital health applications, ecosystems and platforms, patient portals, mobile health apps, eHealth records, and appointment scheduling applications.\"})]}),className:\"framer-1bt63hz\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation2,__framer__exit:animation3,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1jeiebo\",\"data-framer-name\":\"Claim\",name:\"Claim\",style:{transformPerspective:1200},children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-ks94x4\",\"data-framer-name\":\"Card Navi\",name:\"Card Navi\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{mH7iJQPkx:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:640,intrinsicWidth:640,pixelHeight:640,pixelWidth:640,sizes:\"calc((max((100vw - 391px) / 4, 1px) - 48px) * 0.32)\",src:\"https://framerusercontent.com/images/rKdBGzK8RbPSrJJ2x1MzWkMaRw.png\",srcSet:\"https://framerusercontent.com/images/rKdBGzK8RbPSrJJ2x1MzWkMaRw.png?scale-down-to=512 512w,https://framerusercontent.com/images/rKdBGzK8RbPSrJJ2x1MzWkMaRw.png 640w\"}},pPV3xx0Cp:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:640,intrinsicWidth:640,pixelHeight:640,pixelWidth:640,sizes:\"calc((max((100vw - 391px) / 4, 1px) - 48px) * 0.32)\",src:\"https://framerusercontent.com/images/iuKpcYF9rQhq0t2Ay0sihK7cJCA.png\",srcSet:\"https://framerusercontent.com/images/iuKpcYF9rQhq0t2Ay0sihK7cJCA.png?scale-down-to=512 512w,https://framerusercontent.com/images/iuKpcYF9rQhq0t2Ay0sihK7cJCA.png 640w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:640,intrinsicWidth:640,loading:\"lazy\",pixelHeight:640,pixelWidth:640,sizes:\"calc((max((100vw - 391px) / 4, 1px) - 48px) * 0.32)\",src:\"https://framerusercontent.com/images/iuKpcYF9rQhq0t2Ay0sihK7cJCA.png\",srcSet:\"https://framerusercontent.com/images/iuKpcYF9rQhq0t2Ay0sihK7cJCA.png?scale-down-to=512 512w,https://framerusercontent.com/images/iuKpcYF9rQhq0t2Ay0sihK7cJCA.png 640w\"},className:\"framer-1qbfsax\"})}),/*#__PURE__*/_jsx(RichTextGuidelinetitleM,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h5\",{className:\"framer-styles-preset-1s15kxg\",\"data-styles-preset\":\"nIV9v1dJ3\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-60e17712-5082-4b4e-981c-2f8c94fa74a4, rgb(51, 51, 51))\"},children:\"Applications\"})}),className:\"framer-x6xqlj\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-eh5kvk\"}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1bu90n8\",\"data-framer-name\":\"Card Navi\",name:\"Card Navi\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{mH7iJQPkx:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:640,intrinsicWidth:640,pixelHeight:640,pixelWidth:640,sizes:\"calc((max((100vw - 391px) / 4, 1px) - 48px) * 0.32)\",src:\"https://framerusercontent.com/images/X8PORk9ifJKMSUpRqSMscHX5S4.png\",srcSet:\"https://framerusercontent.com/images/X8PORk9ifJKMSUpRqSMscHX5S4.png?scale-down-to=512 512w,https://framerusercontent.com/images/X8PORk9ifJKMSUpRqSMscHX5S4.png 640w\"}},pPV3xx0Cp:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:640,intrinsicWidth:640,pixelHeight:640,pixelWidth:640,sizes:\"calc((max((100vw - 391px) / 4, 1px) - 48px) * 0.32)\",src:\"https://framerusercontent.com/images/w1uoMlVjx9ZJ46rd0QKmcS4Ro.png\",srcSet:\"https://framerusercontent.com/images/w1uoMlVjx9ZJ46rd0QKmcS4Ro.png?scale-down-to=512 512w,https://framerusercontent.com/images/w1uoMlVjx9ZJ46rd0QKmcS4Ro.png 640w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:640,intrinsicWidth:640,loading:\"lazy\",pixelHeight:640,pixelWidth:640,sizes:\"calc((max((100vw - 391px) / 4, 1px) - 48px) * 0.32)\",src:\"https://framerusercontent.com/images/w1uoMlVjx9ZJ46rd0QKmcS4Ro.png\",srcSet:\"https://framerusercontent.com/images/w1uoMlVjx9ZJ46rd0QKmcS4Ro.png?scale-down-to=512 512w,https://framerusercontent.com/images/w1uoMlVjx9ZJ46rd0QKmcS4Ro.png 640w\"},className:\"framer-gloc54\"})}),/*#__PURE__*/_jsx(RichTextGuidelinetitleM,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h5\",{className:\"framer-styles-preset-1s15kxg\",\"data-styles-preset\":\"nIV9v1dJ3\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-60e17712-5082-4b4e-981c-2f8c94fa74a4, rgb(51, 51, 51))\"},children:\"Platforms\"})}),className:\"framer-1mho608\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-415d4e\"}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-142cwad\",\"data-framer-name\":\"Card Navi\",name:\"Card Navi\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{mH7iJQPkx:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:640,intrinsicWidth:640,pixelHeight:640,pixelWidth:640,sizes:\"calc((max((100vw - 391px) / 4, 1px) - 48px) * 0.32)\",src:\"https://framerusercontent.com/images/cCZbDJu0QCvYjHU8E68bAZMKEm8.png\",srcSet:\"https://framerusercontent.com/images/cCZbDJu0QCvYjHU8E68bAZMKEm8.png?scale-down-to=512 512w,https://framerusercontent.com/images/cCZbDJu0QCvYjHU8E68bAZMKEm8.png 640w\"}},pPV3xx0Cp:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:640,intrinsicWidth:640,pixelHeight:640,pixelWidth:640,sizes:\"calc((max((100vw - 391px) / 4, 1px) - 48px) * 0.32)\",src:\"https://framerusercontent.com/images/9pp4yTan6VlQRr1vXQro0PCnBU.png\",srcSet:\"https://framerusercontent.com/images/9pp4yTan6VlQRr1vXQro0PCnBU.png?scale-down-to=512 512w,https://framerusercontent.com/images/9pp4yTan6VlQRr1vXQro0PCnBU.png 640w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:640,intrinsicWidth:640,loading:\"lazy\",pixelHeight:640,pixelWidth:640,sizes:\"calc((max((100vw - 391px) / 4, 1px) - 48px) * 0.32)\",src:\"https://framerusercontent.com/images/9pp4yTan6VlQRr1vXQro0PCnBU.png\",srcSet:\"https://framerusercontent.com/images/9pp4yTan6VlQRr1vXQro0PCnBU.png?scale-down-to=512 512w,https://framerusercontent.com/images/9pp4yTan6VlQRr1vXQro0PCnBU.png 640w\"},className:\"framer-ai773g\"})}),/*#__PURE__*/_jsx(RichTextGuidelinetitleM,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h5\",{className:\"framer-styles-preset-1s15kxg\",\"data-styles-preset\":\"nIV9v1dJ3\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-60e17712-5082-4b4e-981c-2f8c94fa74a4, rgb(51, 51, 51))\"},children:\"eHealth records\"})}),className:\"framer-1a6l4qw\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-u2jx2o\"}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1rrcnwl\",\"data-framer-name\":\"Card Navi\",name:\"Card Navi\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{mH7iJQPkx:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:640,intrinsicWidth:640,pixelHeight:640,pixelWidth:640,sizes:\"calc((max((100vw - 391px) / 4, 1px) - 48px) * 0.32)\",src:\"https://framerusercontent.com/images/JRj4Y7m17C1qrL5gT4HgsZq248U.png\",srcSet:\"https://framerusercontent.com/images/JRj4Y7m17C1qrL5gT4HgsZq248U.png?scale-down-to=512 512w,https://framerusercontent.com/images/JRj4Y7m17C1qrL5gT4HgsZq248U.png 640w\"}},pPV3xx0Cp:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:640,intrinsicWidth:640,pixelHeight:640,pixelWidth:640,sizes:\"calc((max((100vw - 391px) / 4, 1px) - 48px) * 0.32)\",src:\"https://framerusercontent.com/images/D21ktfAqSaR5jRVob9SyzziwCyM.png\",srcSet:\"https://framerusercontent.com/images/D21ktfAqSaR5jRVob9SyzziwCyM.png?scale-down-to=512 512w,https://framerusercontent.com/images/D21ktfAqSaR5jRVob9SyzziwCyM.png 640w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:640,intrinsicWidth:640,loading:\"lazy\",pixelHeight:640,pixelWidth:640,sizes:\"calc((max((100vw - 391px) / 4, 1px) - 48px) * 0.32)\",src:\"https://framerusercontent.com/images/D21ktfAqSaR5jRVob9SyzziwCyM.png\",srcSet:\"https://framerusercontent.com/images/D21ktfAqSaR5jRVob9SyzziwCyM.png?scale-down-to=512 512w,https://framerusercontent.com/images/D21ktfAqSaR5jRVob9SyzziwCyM.png 640w\"},className:\"framer-bzhme8\"})}),/*#__PURE__*/_jsx(RichTextGuidelinetitleM,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h5\",{className:\"framer-styles-preset-1s15kxg\",\"data-styles-preset\":\"nIV9v1dJ3\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-60e17712-5082-4b4e-981c-2f8c94fa74a4, rgb(51, 51, 51))\"},children:\"Wearble devices\"})}),className:\"framer-f4lzwj\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1v4qr5u\",\"data-framer-name\":\"Concept\",id:id1,name:\"Concept\",ref:ref3,children:[/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation,__framer__exit:animation1,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-39mbzg\",\"data-framer-name\":\"Title\",name:\"Title\",style:{transformPerspective:1200},children:[/*#__PURE__*/_jsx(RichTextTag,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h6\",{className:\"framer-styles-preset-3l86f1\",\"data-styles-preset\":\"Djlrh5I7y\",style:{\"--framer-text-color\":\"var(--token-e21fe1fb-aedb-4ee0-bd7b-6dc8a8a4d6c5, rgb(171, 112, 181))\"},children:\"OUR audience\"})}),className:\"framer-1njkt85\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichTextPageheadlineM,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{className:\"framer-styles-preset-ghqa1o\",\"data-styles-preset\":\"MF03EO5nU\",style:{\"--framer-text-color\":\"var(--token-60e17712-5082-4b4e-981c-2f8c94fa74a4, rgb(51, 51, 51))\"},children:\"Who are you?\"})}),className:\"framer-1llzoyq\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation2,__framer__exit:animation3,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-evh82p\",\"data-framer-name\":\"Claim\",name:\"Claim\",style:{transformPerspective:1200},children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-19puti3\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{mH7iJQPkx:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1130,intrinsicWidth:1426,pixelHeight:1130,pixelWidth:1426,positionX:\"center\",positionY:\"top\",sizes:\"max((100vw - 244px) / 2, 1px)\",src:\"https://framerusercontent.com/images/dXNTw5GczCMt3eMOaoggqrE4c.png\",srcSet:\"https://framerusercontent.com/images/dXNTw5GczCMt3eMOaoggqrE4c.png?scale-down-to=512 512w,https://framerusercontent.com/images/dXNTw5GczCMt3eMOaoggqrE4c.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/dXNTw5GczCMt3eMOaoggqrE4c.png 1426w\"}},pPV3xx0Cp:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1130,intrinsicWidth:1426,pixelHeight:1130,pixelWidth:1426,positionX:\"center\",positionY:\"top\",sizes:\"max((100vw - 244px) / 2, 1px)\",src:\"https://framerusercontent.com/images/dXNTw5GczCMt3eMOaoggqrE4c.png\",srcSet:\"https://framerusercontent.com/images/dXNTw5GczCMt3eMOaoggqrE4c.png?scale-down-to=512 512w,https://framerusercontent.com/images/dXNTw5GczCMt3eMOaoggqrE4c.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/dXNTw5GczCMt3eMOaoggqrE4c.png 1426w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1130,intrinsicWidth:1426,loading:\"lazy\",pixelHeight:1130,pixelWidth:1426,positionX:\"center\",positionY:\"top\",sizes:\"max((100vw - 244px) / 2, 1px)\",src:\"https://framerusercontent.com/images/dXNTw5GczCMt3eMOaoggqrE4c.png\",srcSet:\"https://framerusercontent.com/images/dXNTw5GczCMt3eMOaoggqrE4c.png?scale-down-to=512 512w,https://framerusercontent.com/images/dXNTw5GczCMt3eMOaoggqrE4c.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/dXNTw5GczCMt3eMOaoggqrE4c.png 1426w\"},className:\"framer-ge4rru\"})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1t9r7n7\",children:/*#__PURE__*/_jsx(RichTextBody_L,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-145lkq2\",\"data-styles-preset\":\"rBpfxsyjq\",style:{\"--framer-text-color\":\"var(--token-d90b6b68-b5f1-4015-a3c4-6b25546fb2e4, rgb(79, 79, 79))\"},children:\"We expect you are interested in driving digital health innovation and improving digital patient experiences, as well as familiar with the world of design, healthcare, or digital technology. \"}),/*#__PURE__*/_jsxs(\"p\",{className:\"framer-styles-preset-145lkq2\",\"data-styles-preset\":\"rBpfxsyjq\",style:{\"--framer-text-color\":\"var(--token-d90b6b68-b5f1-4015-a3c4-6b25546fb2e4, rgb(79, 79, 79))\"},children:[\"Newbies are welcome as well, and we recommend you start by exploring some \",/*#__PURE__*/_jsx(Link,{href:{hash:\":UvdDRuQeB\",webPageId:\"AQdAiRWqE\"},openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(\"a\",{className:\"framer-styles-preset-1mo2bu2\",\"data-styles-preset\":\"TrbyYjBLQ\",children:\"fundamental concepts\"})}),\".\"]})]}),className:\"framer-1po8oue\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1ccli1a\",\"data-framer-name\":\"Content\",id:id2,name:\"Content\",ref:ref4,children:[/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation,__framer__exit:animation1,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-6572ta\",\"data-framer-name\":\"Title\",name:\"Title\",style:{transformPerspective:1200},children:[/*#__PURE__*/_jsx(RichTextTag,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h6\",{className:\"framer-styles-preset-3l86f1\",\"data-styles-preset\":\"Djlrh5I7y\",style:{\"--framer-text-color\":\"var(--token-94ae1e5a-5a90-4c8c-8dc3-bae526c9d5ca, rgb(81, 135, 114))\"},children:\"OUR Content\"})}),className:\"framer-12o67cm\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichTextPageheadlineM,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{className:\"framer-styles-preset-ghqa1o\",\"data-styles-preset\":\"MF03EO5nU\",children:\"What you can learn?\"})}),className:\"framer-1wqhcgw\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichTextBody_L,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-145lkq2\",\"data-styles-preset\":\"rBpfxsyjq\",style:{\"--framer-text-color\":\"var(--token-d90b6b68-b5f1-4015-a3c4-6b25546fb2e4, rgb(79, 79, 79))\"},children:\"We aim to guide you in improving digital patient experiences and help you to...\"})}),className:\"framer-1c0xsuk\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition3},__framer__animateOnce:true,__framer__enter:animation4,__framer__exit:animation5,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1rft636\",\"data-framer-name\":\"Cards\",name:\"Cards\",style:{transformPerspective:1200},children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1cfy7kn\",\"data-framer-name\":\"1\",name:\"1\",children:[/*#__PURE__*/_jsx(RichTextGuidelinetitleM,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h5\",{className:\"framer-styles-preset-1s15kxg\",\"data-styles-preset\":\"nIV9v1dJ3\",style:{\"--framer-text-color\":\"var(--token-60e17712-5082-4b4e-981c-2f8c94fa74a4, rgb(45, 45, 45))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"eA2lynpk3\"},openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(\"a\",{className:\"framer-styles-preset-1mo2bu2\",\"data-styles-preset\":\"TrbyYjBLQ\",children:\"Manage Design Process\"})})})}),className:\"framer-1gm1oti\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichTextAnnotation,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-mm75nt\",\"data-styles-preset\":\"uLtI6Bvsn\",style:{\"--framer-text-color\":\"var(--token-d90b6b68-b5f1-4015-a3c4-6b25546fb2e4, rgb(120, 120, 120))\"},children:\"By considering related design activities, stakeholders, deliverables, challenges, and strategies.\"})}),className:\"framer-1nmwbus\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1ldztbj\",\"data-framer-name\":\"2\",name:\"2\",children:[/*#__PURE__*/_jsx(RichTextGuidelinetitleM,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h5\",{className:\"framer-styles-preset-1s15kxg\",\"data-styles-preset\":\"nIV9v1dJ3\",style:{\"--framer-text-color\":\"var(--token-60e17712-5082-4b4e-981c-2f8c94fa74a4, rgb(45, 45, 45))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"LFB2ysX4Q\"},openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(\"a\",{className:\"framer-styles-preset-1mo2bu2\",\"data-styles-preset\":\"TrbyYjBLQ\",children:\"Understand Patients\"})})})}),className:\"framer-oapb49\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichTextAnnotation,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-mm75nt\",\"data-styles-preset\":\"uLtI6Bvsn\",style:{\"--framer-text-color\":\"var(--token-d90b6b68-b5f1-4015-a3c4-6b25546fb2e4, rgb(120, 120, 120))\"},children:\"By knowing what influences the digital patient experience and how to improve it.\"})}),className:\"framer-1h6oi9h\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-djeymj\",\"data-framer-name\":\"3\",name:\"3\",children:[/*#__PURE__*/_jsx(RichTextGuidelinetitleM,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"h5\",{className:\"framer-styles-preset-1s15kxg\",\"data-styles-preset\":\"nIV9v1dJ3\",style:{\"--framer-text-color\":\"var(--token-60e17712-5082-4b4e-981c-2f8c94fa74a4, rgb(45, 45, 45))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"rmf0l1wcH\"},openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(\"a\",{className:\"framer-styles-preset-1mo2bu2\",\"data-styles-preset\":\"TrbyYjBLQ\",children:\"Evaluate\"})})}),/*#__PURE__*/_jsx(\"h5\",{className:\"framer-styles-preset-1s15kxg\",\"data-styles-preset\":\"nIV9v1dJ3\",style:{\"--framer-text-color\":\"var(--token-60e17712-5082-4b4e-981c-2f8c94fa74a4, rgb(45, 45, 45))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"rmf0l1wcH\"},openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(\"a\",{className:\"framer-styles-preset-1mo2bu2\",\"data-styles-preset\":\"TrbyYjBLQ\",children:\"Experience\"})})})]}),className:\"framer-18fm546\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichTextAnnotation,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-mm75nt\",\"data-styles-preset\":\"uLtI6Bvsn\",style:{\"--framer-text-color\":\"var(--token-d90b6b68-b5f1-4015-a3c4-6b25546fb2e4, rgb(120, 120, 120))\"},children:\"By identifying why, when, what, and how to measure the digital patient experience.\"})}),className:\"framer-i6ugb\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-pxpv9u\",\"data-framer-name\":\"4\",name:\"4\",children:[/*#__PURE__*/_jsx(RichTextGuidelinetitleM,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h5\",{className:\"framer-styles-preset-1s15kxg\",\"data-styles-preset\":\"nIV9v1dJ3\",style:{\"--framer-text-color\":\"var(--token-60e17712-5082-4b4e-981c-2f8c94fa74a4, rgb(45, 45, 45))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"x9y8uMWyU\"},openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(\"a\",{className:\"framer-styles-preset-1mo2bu2\",\"data-styles-preset\":\"TrbyYjBLQ\",children:\"Read Case Studies\"})})})}),className:\"framer-1gh44aw\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichTextAnnotation,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-mm75nt\",\"data-styles-preset\":\"uLtI6Bvsn\",style:{\"--framer-text-color\":\"var(--token-d90b6b68-b5f1-4015-a3c4-6b25546fb2e4, rgb(120, 120, 120))\"},children:\"To see what others did to design and evaluate the digital patient experience.\"})}),className:\"framer-o3ai99\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-2ggr8r\",\"data-framer-name\":\"5\",name:\"5\",children:[/*#__PURE__*/_jsx(RichTextGuidelinetitleM,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h5\",{className:\"framer-styles-preset-1s15kxg\",\"data-styles-preset\":\"nIV9v1dJ3\",style:{\"--framer-text-color\":\"var(--token-60e17712-5082-4b4e-981c-2f8c94fa74a4, rgb(45, 45, 45))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"AQdAiRWqE\"},openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(\"a\",{className:\"framer-styles-preset-1mo2bu2\",\"data-styles-preset\":\"TrbyYjBLQ\",children:\"Related Resources\"})})})}),className:\"framer-1196839\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichTextAnnotation,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-mm75nt\",\"data-styles-preset\":\"uLtI6Bvsn\",style:{\"--framer-text-color\":\"var(--token-d90b6b68-b5f1-4015-a3c4-6b25546fb2e4, rgb(120, 120, 120))\"},children:\"To gain new perspectives, inspirations, and knowledge.\"})}),className:\"framer-ueel2k\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1ghl1r7\",\"data-framer-name\":\"Concept\",id:id3,name:\"Concept\",ref:ref5,children:[/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation,__framer__exit:animation1,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-mhp8n6\",\"data-framer-name\":\"Title\",name:\"Title\",style:{transformPerspective:1200},children:[/*#__PURE__*/_jsx(RichTextTag,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h6\",{className:\"framer-styles-preset-3l86f1\",\"data-styles-preset\":\"Djlrh5I7y\",style:{\"--framer-text-color\":\"var(--token-4aea0101-0cc3-43e6-af30-0096e37cfe11, rgb(175, 99, 0))\"},children:\"Healthcare receivers\"})}),className:\"framer-1w1w3t3\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichTextPageheadlineM,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{className:\"framer-styles-preset-ghqa1o\",\"data-styles-preset\":\"MF03EO5nU\",style:{\"--framer-text-color\":\"var(--token-60e17712-5082-4b4e-981c-2f8c94fa74a4, rgb(51, 51, 51))\"},children:\"Value to Whom?\"})}),className:\"framer-tyzvex\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation2,__framer__exit:animation3,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1f2y0vr\",\"data-framer-name\":\"Claim\",name:\"Claim\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(RichTextBody_L,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsxs(\"p\",{className:\"framer-styles-preset-145lkq2\",\"data-styles-preset\":\"rBpfxsyjq\",style:{\"--framer-text-color\":\"var(--token-d90b6b68-b5f1-4015-a3c4-6b25546fb2e4, rgb(79, 79, 79))\"},children:[\"We have the mission to design a better \",/*#__PURE__*/_jsx(Link,{href:\"https://www.who.int/health-topics/digital-health#tab=tab_3\",openInNewTab:true,smoothScroll:false,children:/*#__PURE__*/_jsx(\"a\",{className:\"framer-styles-preset-1mo2bu2\",\"data-styles-preset\":\"TrbyYjBLQ\",children:\"digital health\"})}),\" world for delivering \",/*#__PURE__*/_jsx(Link,{href:\"https://www.who.int/health-topics/quality-of-care#tab=tab_1\",openInNewTab:true,smoothScroll:false,children:/*#__PURE__*/_jsx(\"a\",{className:\"framer-styles-preset-1mo2bu2\",\"data-styles-preset\":\"TrbyYjBLQ\",children:\"high-quality care\"})}),\" to various patients. \"]}),/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-145lkq2\",\"data-styles-preset\":\"rBpfxsyjq\",style:{\"--framer-text-color\":\"var(--token-d90b6b68-b5f1-4015-a3c4-6b25546fb2e4, rgb(79, 79, 79))\"},children:\"Design for healthcare is demanding. It involves multiple stakeholders with different values, such as healthcare providers, patients, and payers. Patient perspectives routinely differ from those of other stakeholders. Even within the same patient group, individual situations are also often significantly different from each other. Yet, it is not always apparent that patients were engaged in the design process and were empowered enough to voice their opinions. Listen to the patients' voices and uncover their needs; designers are expected to speak for patients.\"})]}),className:\"framer-ljgu6w\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-narfdc\",\"data-framer-name\":\"Survey\",name:\"Survey\",children:[/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation,__framer__exit:animation1,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1iwlh9m\",\"data-framer-name\":\"Title\",name:\"Title\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(RichTextTag,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h6\",{className:\"framer-styles-preset-3l86f1\",\"data-styles-preset\":\"Djlrh5I7y\",style:{\"--framer-text-color\":\"var(--token-d90b6b68-b5f1-4015-a3c4-6b25546fb2e4, rgb(79, 79, 79))\"},children:\"SURVEY\"})}),className:\"framer-10ckg3w\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-140ljt3-container\",children:/*#__PURE__*/_jsx(Embed,{height:\"100%\",html:'<iframe width=\"640px\" height=\"480px\" src=\"https://forms.office.com/Pages/ResponsePage.aspx?id=TVJuCSlpMECM04q0LeCIe6t66g3NORRMluZ8X3OvBBpUM1JFUDFPVlRaTklRTUZOTzNDSUpUUUVPTi4u&embed=true\" frameborder=\"0\" marginwidth=\"0\" marginheight=\"0\" style=\"border: none; max-width:100%; max-height:100vh\" allowfullscreen webkitallowfullscreen mozallowfullscreen msallowfullscreen> </iframe>',id:\"jFV3Vipui\",layoutId:\"jFV3Vipui\",style:{height:\"100%\",width:\"100%\"},type:\"url\",url:\"https://forms.office.com/e/8bxBDCBZXR\",width:\"100%\"})})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-6g71gx\",\"data-framer-name\":\"Tools\",name:\"Tools\",children:[/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation,__framer__exit:animation1,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-bsq2vz\",\"data-framer-name\":\"Title\",name:\"Title\",style:{transformPerspective:1200},children:[/*#__PURE__*/_jsx(RichTextTag,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h6\",{className:\"framer-styles-preset-3l86f1\",\"data-styles-preset\":\"Djlrh5I7y\",style:{\"--framer-text-color\":\"var(--token-4aea0101-0cc3-43e6-af30-0096e37cfe11, rgb(175, 99, 0))\"},children:\"TOOLS\"})}),className:\"framer-1y0fj3q\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichTextPageheadlineM,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{className:\"framer-styles-preset-ghqa1o\",\"data-styles-preset\":\"MF03EO5nU\",children:\"Templates and Articles\"})}),className:\"framer-gmeiec\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-12dkwvr\",children:[/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation2,__framer__exit:animation3,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-hpsmdp\",\"data-framer-name\":\"Cards\",name:\"Cards\",style:{transformPerspective:1200},children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1grer9a-container\",children:/*#__PURE__*/_jsx(Card,{Dfwk6EUFJ:\"https://drive.google.com/file/d/1abNHQGkg1FApaM22o_PCpxyw__4nJY0m/view?usp=drive_link\",fORiB_YiB:\"rgb(150, 150, 150)\",height:\"100%\",id:\"nKeePBc0d\",layoutId:\"nKeePBc0d\",mzfH_NnOi:addImageAlt({src:\"https://framerusercontent.com/images/4YWqW3ZccVQMy9Vrmay0u6UsM.png\"},\"\"),NAhGDapfD:\"text\",nLXyPlTWK:\"Template PDF\",NV2qlr3VG:\"var(--token-d90b6b68-b5f1-4015-a3c4-6b25546fb2e4, rgb(120, 120, 120))\",STdco9UQS:false,style:{width:\"100%\"},tleJHKX2k:\"Design problem and design goal\",TtzKMho_v:\"rgba(255, 255, 255, 0.4)\",variant:\"CXjZlXWkb\",VJhVPUfqd:true,width:\"100%\",zk1Ed0zpf:\"var(--token-60e17712-5082-4b4e-981c-2f8c94fa74a4, rgb(51, 51, 51))\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1nwtafh-container\",children:/*#__PURE__*/_jsx(Card,{Dfwk6EUFJ:\"https://drive.google.com/file/d/1zLEtUS5Qmdl4bmy50Ojr5eBMPeNfyURb/view?usp=drive_link\",fORiB_YiB:\"rgb(150, 150, 150)\",height:\"100%\",id:\"cJGHtAUhh\",layoutId:\"cJGHtAUhh\",mzfH_NnOi:addImageAlt({src:\"https://framerusercontent.com/images/lTJQoK1BmmRFaBrEc9AtwK2CU.png\"},\"\"),NAhGDapfD:\"text\",nLXyPlTWK:\"Template Link\",NV2qlr3VG:\"var(--token-d90b6b68-b5f1-4015-a3c4-6b25546fb2e4, rgb(120, 120, 120))\",STdco9UQS:false,style:{width:\"100%\"},tleJHKX2k:\"Evaluation Plan\",TtzKMho_v:\"rgba(255, 255, 255, 0.4)\",variant:\"CXjZlXWkb\",VJhVPUfqd:true,width:\"100%\",zk1Ed0zpf:\"var(--token-60e17712-5082-4b4e-981c-2f8c94fa74a4, rgb(51, 51, 51))\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-qqtjdm-container\",children:/*#__PURE__*/_jsx(Card,{Dfwk6EUFJ:\"https://drive.google.com/file/d/10fW0edisX4IOlouZOLqgdR16JBG0FVIp/view?usp=drive_link\",fORiB_YiB:\"rgb(150, 150, 150)\",height:\"100%\",id:\"LEmRwsgbm\",layoutId:\"LEmRwsgbm\",mzfH_NnOi:addImageAlt({src:\"https://framerusercontent.com/images/Vbf9hcffgdKfUBdoL5gK5kJl0.png\"},\"\"),NAhGDapfD:\"text\",nLXyPlTWK:\"Template PDF\",NV2qlr3VG:\"var(--token-d90b6b68-b5f1-4015-a3c4-6b25546fb2e4, rgb(120, 120, 120))\",STdco9UQS:false,style:{width:\"100%\"},tleJHKX2k:\"Design guideline checklist\",TtzKMho_v:\"rgba(255, 255, 255, 0.4)\",variant:\"CXjZlXWkb\",VJhVPUfqd:true,width:\"100%\",zk1Ed0zpf:\"var(--token-60e17712-5082-4b4e-981c-2f8c94fa74a4, rgb(51, 51, 51))\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-n3ctlp-container\",children:/*#__PURE__*/_jsx(Card,{Dfwk6EUFJ:\"https://drive.google.com/file/d/1DD9GK_NAklfle9leXZ6nKg9eBLTnY6AE/view?usp=drive_link\",fORiB_YiB:\"rgb(150, 150, 150)\",height:\"100%\",id:\"btAp1g1f8\",layoutId:\"btAp1g1f8\",mzfH_NnOi:addImageAlt({src:\"https://framerusercontent.com/images/h61aJabESW2d0dLiZ2IMut3QGUQ.png\"},\"\"),NAhGDapfD:\"text\",nLXyPlTWK:\"Template PDF\",NV2qlr3VG:\"var(--token-d90b6b68-b5f1-4015-a3c4-6b25546fb2e4, rgb(120, 120, 120))\",STdco9UQS:false,style:{width:\"100%\"},tleJHKX2k:\"Project plan\",TtzKMho_v:\"rgba(255, 255, 255, 0.4)\",variant:\"CXjZlXWkb\",VJhVPUfqd:true,width:\"100%\",zk1Ed0zpf:\"var(--token-60e17712-5082-4b4e-981c-2f8c94fa74a4, rgb(51, 51, 51))\"})})})]}),/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation2,__framer__exit:animation3,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-f21vt8\",\"data-framer-name\":\"Cards\",name:\"Cards\",style:{transformPerspective:1200},children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-ng5djy-container\",children:/*#__PURE__*/_jsx(Card,{Dfwk6EUFJ:\"https://dl.designresearchsociety.org/iasdr/iasdr2023/doctoralpapers/7/\",fORiB_YiB:\"rgb(150, 150, 150)\",height:\"100%\",id:\"O7AX3IXhH\",layoutId:\"O7AX3IXhH\",mzfH_NnOi:addImageAlt({src:\"https://framerusercontent.com/images/pO6iFgDjnwlUepABh2IXBELavrg.png\",srcSet:\"https://framerusercontent.com/images/pO6iFgDjnwlUepABh2IXBELavrg.png?scale-down-to=512 512w,https://framerusercontent.com/images/pO6iFgDjnwlUepABh2IXBELavrg.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/pO6iFgDjnwlUepABh2IXBELavrg.png 2046w\"},\"\"),NAhGDapfD:\"text\",nLXyPlTWK:\"Article\",NV2qlr3VG:\"var(--token-d90b6b68-b5f1-4015-a3c4-6b25546fb2e4, rgb(120, 120, 120))\",STdco9UQS:false,style:{width:\"100%\"},tleJHKX2k:\"Digital patient experience: understanding, improvement, and evaluation from a human-centered design perspective\",TtzKMho_v:\"rgba(138, 114, 83, 0.05)\",variant:\"CXjZlXWkb\",VJhVPUfqd:false,width:\"100%\",zk1Ed0zpf:\"var(--token-60e17712-5082-4b4e-981c-2f8c94fa74a4, rgb(51, 51, 51))\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-11w6kpb-container\",children:/*#__PURE__*/_jsx(Card,{Dfwk6EUFJ:\"https://link.springer.com/chapter/10.1007/978-3-031-32198-6_28\",fORiB_YiB:\"rgb(150, 150, 150)\",height:\"100%\",id:\"yuAG8VAQ2\",layoutId:\"yuAG8VAQ2\",mzfH_NnOi:addImageAlt({src:\"https://framerusercontent.com/images/gEq6nkNdiT5Qt6ZzPitmFSlyWY.png\",srcSet:\"https://framerusercontent.com/images/gEq6nkNdiT5Qt6ZzPitmFSlyWY.png?scale-down-to=512 512w,https://framerusercontent.com/images/gEq6nkNdiT5Qt6ZzPitmFSlyWY.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/gEq6nkNdiT5Qt6ZzPitmFSlyWY.png 1662w\"},\"\"),NAhGDapfD:\"text\",nLXyPlTWK:\"Article\",NV2qlr3VG:\"var(--token-d90b6b68-b5f1-4015-a3c4-6b25546fb2e4, rgb(120, 120, 120))\",STdco9UQS:false,style:{width:\"100%\"},tleJHKX2k:\"Building Understanding of Experience Design in Digital Health: Preliminary Results Based on Semi-Structured Interviews\",TtzKMho_v:\"rgba(138, 114, 83, 0.05)\",variant:\"CXjZlXWkb\",VJhVPUfqd:false,width:\"100%\",zk1Ed0zpf:\"var(--token-60e17712-5082-4b4e-981c-2f8c94fa74a4, rgb(51, 51, 51))\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1eqitod-container\",children:/*#__PURE__*/_jsx(Card,{Dfwk6EUFJ:\"https://oulurepo.oulu.fi/handle/10024/34013\",fORiB_YiB:\"rgb(150, 150, 150)\",height:\"100%\",id:\"zREwIcNOe\",layoutId:\"zREwIcNOe\",mzfH_NnOi:addImageAlt({src:\"https://framerusercontent.com/images/VoeGwOxEjcrMoBiLTkjOrSkCnQ.png\",srcSet:\"https://framerusercontent.com/images/VoeGwOxEjcrMoBiLTkjOrSkCnQ.png?scale-down-to=512 512w,https://framerusercontent.com/images/VoeGwOxEjcrMoBiLTkjOrSkCnQ.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/VoeGwOxEjcrMoBiLTkjOrSkCnQ.png 1818w\"},\"\"),NAhGDapfD:\"text\",nLXyPlTWK:\"Article\",NV2qlr3VG:\"var(--token-d90b6b68-b5f1-4015-a3c4-6b25546fb2e4, rgb(120, 120, 120))\",STdco9UQS:false,style:{width:\"100%\"},tleJHKX2k:\"Design-Relevant Factors Affecting the Patient Experience in Digital Health: Preliminary Results of an Umbrella Systematic Review\",TtzKMho_v:\"rgba(138, 114, 83, 0.05)\",variant:\"CXjZlXWkb\",VJhVPUfqd:false,width:\"100%\",zk1Ed0zpf:\"var(--token-60e17712-5082-4b4e-981c-2f8c94fa74a4, rgb(51, 51, 51))\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1paykx4-container\",children:/*#__PURE__*/_jsx(Card,{Dfwk6EUFJ:\"https://www.jmir.org/2024/1/e46308/\",fORiB_YiB:\"rgb(150, 150, 150)\",height:\"100%\",id:\"KZTXTEO9_\",layoutId:\"KZTXTEO9_\",mzfH_NnOi:addImageAlt({src:\"https://framerusercontent.com/images/XrA91wjhInVvf7EDAVLuaKGbQ.png\",srcSet:\"https://framerusercontent.com/images/XrA91wjhInVvf7EDAVLuaKGbQ.png?scale-down-to=512 512w,https://framerusercontent.com/images/XrA91wjhInVvf7EDAVLuaKGbQ.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/XrA91wjhInVvf7EDAVLuaKGbQ.png 1878w\"},\"\"),NAhGDapfD:\"text\",nLXyPlTWK:\"Article\",NV2qlr3VG:\"var(--token-d90b6b68-b5f1-4015-a3c4-6b25546fb2e4, rgb(120, 120, 120))\",STdco9UQS:false,style:{width:\"100%\"},tleJHKX2k:\"Timing, Indicators, and Approaches to Digital Patient Experience Evaluation: Umbrella Systematic Review\",TtzKMho_v:\"rgba(138, 114, 83, 0.05)\",variant:\"CXjZlXWkb\",VJhVPUfqd:false,width:\"100%\",zk1Ed0zpf:\"var(--token-60e17712-5082-4b4e-981c-2f8c94fa74a4, rgb(51, 51, 51))\"})})})]}),/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation2,__framer__exit:animation3,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1weblrd\",\"data-framer-name\":\"Cards\",name:\"Cards\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1tp2fao-container\",children:/*#__PURE__*/_jsx(Card,{Dfwk6EUFJ:\"https://www.jmir.org/2022/8/e37952/\",fORiB_YiB:\"rgb(150, 150, 150)\",height:\"100%\",id:\"C1KWM5X5R\",layoutId:\"C1KWM5X5R\",mzfH_NnOi:addImageAlt({src:\"https://framerusercontent.com/images/XrA91wjhInVvf7EDAVLuaKGbQ.png\",srcSet:\"https://framerusercontent.com/images/XrA91wjhInVvf7EDAVLuaKGbQ.png?scale-down-to=512 512w,https://framerusercontent.com/images/XrA91wjhInVvf7EDAVLuaKGbQ.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/XrA91wjhInVvf7EDAVLuaKGbQ.png 1878w\"},\"\"),NAhGDapfD:\"text\",nLXyPlTWK:\"Article\",NV2qlr3VG:\"var(--token-d90b6b68-b5f1-4015-a3c4-6b25546fb2e4, rgb(120, 120, 120))\",STdco9UQS:false,style:{height:\"100%\",width:\"100%\"},tleJHKX2k:\"Digital patient experience: umbrella systematic review\",TtzKMho_v:\"rgba(138, 114, 83, 0.05)\",variant:\"CXjZlXWkb\",VJhVPUfqd:false,width:\"100%\",zk1Ed0zpf:\"var(--token-60e17712-5082-4b4e-981c-2f8c94fa74a4, rgb(51, 51, 51))\"})})})})]})]}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1lchjhi-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{pPV3xx0Cp:{variant:\"TdNZz1Jxt\"}},children:/*#__PURE__*/_jsx(Footer,{height:\"100%\",id:\"HqmvjxJZR\",layoutId:\"HqmvjxJZR\",style:{width:\"100%\"},variant:\"Bwf4rQpV9\",width:\"100%\"})})})})]}),/*#__PURE__*/_jsx(\"div\",{className:cx(serializationHash,...sharedStyleClassNames),id:\"overlay\"})]})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",`.${metadata.bodyClassName}-framer-j0gty { background: rgb(255, 254, 252); }`,\".framer-j0gty.framer-lux5qc, .framer-j0gty .framer-lux5qc { display: block; }\",\".framer-j0gty.framer-72rtr7 { align-content: center; align-items: center; background-color: #fffefc; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 1280px; }\",\".framer-j0gty .framer-tqancr-container { flex: none; height: auto; left: 50%; position: fixed; top: 0px; transform: translateX(-50%); width: 100%; z-index: 1; }\",\".framer-j0gty .framer-16e0e9o { align-content: center; align-items: center; background-color: #fefaf7; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 60px; height: auto; justify-content: flex-start; overflow: hidden; padding: 200px 122px 140px 122px; position: relative; width: 100%; }\",\".framer-j0gty .framer-17ga1d8 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-j0gty .framer-yx4mx6, .framer-j0gty .framer-bxxqfc, .framer-j0gty .framer-12o67cm, .framer-j0gty .framer-1wqhcgw, .framer-j0gty .framer-10ckg3w, .framer-j0gty .framer-1y0fj3q, .framer-j0gty .framer-gmeiec { --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-j0gty .framer-d2bm38 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: auto; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-j0gty .framer-6ioe7m { aspect-ratio: 1.7666666666666666 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 411px); overflow: hidden; position: relative; width: 70%; }\",\".framer-j0gty .framer-18f7ccr { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-j0gty .framer-1dktc07-container { flex: 0.6 0 0px; height: auto; position: relative; width: 1px; }\",\".framer-j0gty .framer-zpfygj-container, .framer-j0gty .framer-gbz87j-container, .framer-j0gty .framer-h6mn83-container { align-self: stretch; flex: 0.6 0 0px; height: auto; position: relative; width: 1px; }\",\".framer-j0gty .framer-twhmfs { align-content: flex-start; align-items: flex-start; background-color: rgba(0, 131, 143, 0.05); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 32px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 60px 122px 60px 122px; position: relative; width: 100%; }\",\".framer-j0gty .framer-16dgt6m, .framer-j0gty .framer-39mbzg, .framer-j0gty .framer-6572ta, .framer-j0gty .framer-mhp8n6, .framer-j0gty .framer-1iwlh9m { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 12px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-j0gty .framer-382pep, .framer-j0gty .framer-dgfku8, .framer-j0gty .framer-x6xqlj, .framer-j0gty .framer-1mho608, .framer-j0gty .framer-1a6l4qw, .framer-j0gty .framer-f4lzwj, .framer-j0gty .framer-1njkt85, .framer-j0gty .framer-1llzoyq, .framer-j0gty .framer-1w1w3t3, .framer-j0gty .framer-tyzvex { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-j0gty .framer-1uehujc, .framer-j0gty .framer-evh82p, .framer-j0gty .framer-1f2y0vr { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; height: min-content; justify-content: space-between; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-j0gty .framer-1bt63hz, .framer-j0gty .framer-1po8oue, .framer-j0gty .framer-1c0xsuk, .framer-j0gty .framer-1gm1oti, .framer-j0gty .framer-1nmwbus, .framer-j0gty .framer-oapb49, .framer-j0gty .framer-1h6oi9h, .framer-j0gty .framer-18fm546, .framer-j0gty .framer-i6ugb, .framer-j0gty .framer-1gh44aw, .framer-j0gty .framer-o3ai99, .framer-j0gty .framer-1196839, .framer-j0gty .framer-ueel2k, .framer-j0gty .framer-ljgu6w { flex: none; height: auto; overflow: visible; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-j0gty .framer-1jeiebo { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 24px; height: 135px; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-j0gty .framer-ks94x4, .framer-j0gty .framer-1bu90n8, .framer-j0gty .framer-142cwad, .framer-j0gty .framer-1rrcnwl { align-content: center; align-items: center; border-bottom-left-radius: 16px; border-bottom-right-radius: 16px; border-top-left-radius: 16px; border-top-right-radius: 16px; display: flex; flex: 0.6 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: auto; justify-content: flex-start; overflow: hidden; padding: 24px; position: relative; width: 1px; will-change: var(--framer-will-change-override, transform); }\",\".framer-j0gty .framer-1qbfsax, .framer-j0gty .framer-gloc54, .framer-j0gty .framer-ai773g, .framer-j0gty .framer-bzhme8 { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 56px); overflow: hidden; position: relative; width: 32%; }\",\".framer-j0gty .framer-eh5kvk, .framer-j0gty .framer-415d4e, .framer-j0gty .framer-u2jx2o { background-color: var(--token-d90b6b68-b5f1-4015-a3c4-6b25546fb2e4, #4f4f4f); flex: none; height: 40%; overflow: hidden; position: relative; width: 1px; }\",\".framer-j0gty .framer-1v4qr5u { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 32px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 60px 122px 0px 122px; position: relative; width: 100%; }\",\".framer-j0gty .framer-19puti3 { align-content: flex-start; align-items: flex-start; align-self: stretch; border-bottom-left-radius: 60px; border-bottom-right-radius: 60px; border-top-left-radius: 60px; border-top-right-radius: 60px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: auto; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 50%; will-change: var(--framer-will-change-override, transform); }\",\".framer-j0gty .framer-ge4rru { aspect-ratio: 1.4 / 1; border-bottom-left-radius: 20px; border-bottom-right-radius: 20px; border-top-left-radius: 20px; border-top-right-radius: 20px; flex: 1 0 0px; height: var(--framer-aspect-ratio-supported, 370px); overflow: hidden; position: relative; width: 1px; will-change: var(--framer-will-change-override, transform); }\",\".framer-j0gty .framer-1t9r7n7 { align-content: flex-start; align-items: flex-start; 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: 45%; }\",\".framer-j0gty .framer-1ccli1a { align-content: flex-start; align-items: flex-start; background-color: rgba(22, 177, 199, 0.02); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 32px; height: min-content; justify-content: center; overflow: hidden; padding: 120px 122px 60px 122px; position: relative; width: 100%; }\",\".framer-j0gty .framer-1rft636 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-j0gty .framer-1cfy7kn, .framer-j0gty .framer-1ldztbj, .framer-j0gty .framer-djeymj, .framer-j0gty .framer-pxpv9u, .framer-j0gty .framer-2ggr8r { align-content: flex-start; align-items: flex-start; background-color: var(--token-8eed3285-e1a5-4722-af74-7af23a647360, #ffffff); border-bottom-left-radius: 20px; border-bottom-right-radius: 20px; border-top-left-radius: 20px; border-top-right-radius: 20px; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 12px; height: 260px; justify-content: flex-start; overflow: hidden; padding: 32px; position: relative; width: 1px; will-change: var(--framer-will-change-override, transform); }\",\".framer-j0gty .framer-1ghl1r7 { align-content: flex-start; align-items: flex-start; background-color: #ffffff; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 32px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 60px 122px 60px 122px; position: relative; width: 100%; }\",\".framer-j0gty .framer-narfdc { align-content: flex-start; align-items: flex-start; background-color: rgba(79, 79, 79, 0.02); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 60px 122px 0px 122px; position: relative; width: 100%; }\",\".framer-j0gty .framer-140ljt3-container { flex: none; height: 500px; position: relative; width: 100%; }\",\".framer-j0gty .framer-6g71gx { align-content: flex-start; align-items: flex-start; background-color: rgba(219, 131, 15, 0.02); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 120px 122px 100px 122px; position: relative; width: 100%; }\",\".framer-j0gty .framer-bsq2vz { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 12px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-j0gty .framer-12dkwvr { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-j0gty .framer-hpsmdp, .framer-j0gty .framer-f21vt8, .framer-j0gty .framer-1weblrd { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-j0gty .framer-1grer9a-container, .framer-j0gty .framer-1nwtafh-container, .framer-j0gty .framer-qqtjdm-container, .framer-j0gty .framer-n3ctlp-container, .framer-j0gty .framer-ng5djy-container, .framer-j0gty .framer-11w6kpb-container, .framer-j0gty .framer-1eqitod-container, .framer-j0gty .framer-1paykx4-container { flex: 1 0 0px; height: auto; position: relative; width: 1px; }\",\".framer-j0gty .framer-1tp2fao-container { flex: 0.25 0 0px; height: 102px; position: relative; width: 1px; }\",\".framer-j0gty .framer-1lchjhi-container { flex: none; height: auto; position: relative; width: 100%; }\",\"@supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-j0gty.framer-72rtr7, .framer-j0gty .framer-16e0e9o, .framer-j0gty .framer-17ga1d8, .framer-j0gty .framer-d2bm38, .framer-j0gty .framer-18f7ccr, .framer-j0gty .framer-twhmfs, .framer-j0gty .framer-16dgt6m, .framer-j0gty .framer-1jeiebo, .framer-j0gty .framer-ks94x4, .framer-j0gty .framer-1bu90n8, .framer-j0gty .framer-142cwad, .framer-j0gty .framer-1rrcnwl, .framer-j0gty .framer-1v4qr5u, .framer-j0gty .framer-39mbzg, .framer-j0gty .framer-19puti3, .framer-j0gty .framer-1t9r7n7, .framer-j0gty .framer-1ccli1a, .framer-j0gty .framer-6572ta, .framer-j0gty .framer-1rft636, .framer-j0gty .framer-1cfy7kn, .framer-j0gty .framer-1ldztbj, .framer-j0gty .framer-djeymj, .framer-j0gty .framer-pxpv9u, .framer-j0gty .framer-2ggr8r, .framer-j0gty .framer-1ghl1r7, .framer-j0gty .framer-mhp8n6, .framer-j0gty .framer-narfdc, .framer-j0gty .framer-1iwlh9m, .framer-j0gty .framer-6g71gx, .framer-j0gty .framer-bsq2vz, .framer-j0gty .framer-12dkwvr, .framer-j0gty .framer-hpsmdp, .framer-j0gty .framer-f21vt8, .framer-j0gty .framer-1weblrd { gap: 0px; } .framer-j0gty.framer-72rtr7 > *, .framer-j0gty .framer-d2bm38 > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-j0gty.framer-72rtr7 > :first-child, .framer-j0gty .framer-16e0e9o > :first-child, .framer-j0gty .framer-17ga1d8 > :first-child, .framer-j0gty .framer-d2bm38 > :first-child, .framer-j0gty .framer-twhmfs > :first-child, .framer-j0gty .framer-16dgt6m > :first-child, .framer-j0gty .framer-ks94x4 > :first-child, .framer-j0gty .framer-1bu90n8 > :first-child, .framer-j0gty .framer-142cwad > :first-child, .framer-j0gty .framer-1rrcnwl > :first-child, .framer-j0gty .framer-1v4qr5u > :first-child, .framer-j0gty .framer-39mbzg > :first-child, .framer-j0gty .framer-1ccli1a > :first-child, .framer-j0gty .framer-6572ta > :first-child, .framer-j0gty .framer-1cfy7kn > :first-child, .framer-j0gty .framer-1ldztbj > :first-child, .framer-j0gty .framer-djeymj > :first-child, .framer-j0gty .framer-pxpv9u > :first-child, .framer-j0gty .framer-2ggr8r > :first-child, .framer-j0gty .framer-1ghl1r7 > :first-child, .framer-j0gty .framer-mhp8n6 > :first-child, .framer-j0gty .framer-narfdc > :first-child, .framer-j0gty .framer-1iwlh9m > :first-child, .framer-j0gty .framer-6g71gx > :first-child, .framer-j0gty .framer-bsq2vz > :first-child, .framer-j0gty .framer-12dkwvr > :first-child { margin-top: 0px; } .framer-j0gty.framer-72rtr7 > :last-child, .framer-j0gty .framer-16e0e9o > :last-child, .framer-j0gty .framer-17ga1d8 > :last-child, .framer-j0gty .framer-d2bm38 > :last-child, .framer-j0gty .framer-twhmfs > :last-child, .framer-j0gty .framer-16dgt6m > :last-child, .framer-j0gty .framer-ks94x4 > :last-child, .framer-j0gty .framer-1bu90n8 > :last-child, .framer-j0gty .framer-142cwad > :last-child, .framer-j0gty .framer-1rrcnwl > :last-child, .framer-j0gty .framer-1v4qr5u > :last-child, .framer-j0gty .framer-39mbzg > :last-child, .framer-j0gty .framer-1ccli1a > :last-child, .framer-j0gty .framer-6572ta > :last-child, .framer-j0gty .framer-1cfy7kn > :last-child, .framer-j0gty .framer-1ldztbj > :last-child, .framer-j0gty .framer-djeymj > :last-child, .framer-j0gty .framer-pxpv9u > :last-child, .framer-j0gty .framer-2ggr8r > :last-child, .framer-j0gty .framer-1ghl1r7 > :last-child, .framer-j0gty .framer-mhp8n6 > :last-child, .framer-j0gty .framer-narfdc > :last-child, .framer-j0gty .framer-1iwlh9m > :last-child, .framer-j0gty .framer-6g71gx > :last-child, .framer-j0gty .framer-bsq2vz > :last-child, .framer-j0gty .framer-12dkwvr > :last-child { margin-bottom: 0px; } .framer-j0gty .framer-16e0e9o > * { margin: 0px; margin-bottom: calc(60px / 2); margin-top: calc(60px / 2); } .framer-j0gty .framer-17ga1d8 > *, .framer-j0gty .framer-narfdc > *, .framer-j0gty .framer-6g71gx > *, .framer-j0gty .framer-12dkwvr > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } .framer-j0gty .framer-18f7ccr > *, .framer-j0gty .framer-1jeiebo > * { margin: 0px; margin-left: calc(24px / 2); margin-right: calc(24px / 2); } .framer-j0gty .framer-18f7ccr > :first-child, .framer-j0gty .framer-1jeiebo > :first-child, .framer-j0gty .framer-19puti3 > :first-child, .framer-j0gty .framer-1t9r7n7 > :first-child, .framer-j0gty .framer-1rft636 > :first-child, .framer-j0gty .framer-hpsmdp > :first-child, .framer-j0gty .framer-f21vt8 > :first-child, .framer-j0gty .framer-1weblrd > :first-child { margin-left: 0px; } .framer-j0gty .framer-18f7ccr > :last-child, .framer-j0gty .framer-1jeiebo > :last-child, .framer-j0gty .framer-19puti3 > :last-child, .framer-j0gty .framer-1t9r7n7 > :last-child, .framer-j0gty .framer-1rft636 > :last-child, .framer-j0gty .framer-hpsmdp > :last-child, .framer-j0gty .framer-f21vt8 > :last-child, .framer-j0gty .framer-1weblrd > :last-child { margin-right: 0px; } .framer-j0gty .framer-twhmfs > *, .framer-j0gty .framer-1v4qr5u > *, .framer-j0gty .framer-1ccli1a > *, .framer-j0gty .framer-1ghl1r7 > * { margin: 0px; margin-bottom: calc(32px / 2); margin-top: calc(32px / 2); } .framer-j0gty .framer-16dgt6m > *, .framer-j0gty .framer-39mbzg > *, .framer-j0gty .framer-6572ta > *, .framer-j0gty .framer-1cfy7kn > *, .framer-j0gty .framer-1ldztbj > *, .framer-j0gty .framer-djeymj > *, .framer-j0gty .framer-pxpv9u > *, .framer-j0gty .framer-2ggr8r > *, .framer-j0gty .framer-mhp8n6 > *, .framer-j0gty .framer-1iwlh9m > *, .framer-j0gty .framer-bsq2vz > * { margin: 0px; margin-bottom: calc(12px / 2); margin-top: calc(12px / 2); } .framer-j0gty .framer-ks94x4 > *, .framer-j0gty .framer-1bu90n8 > *, .framer-j0gty .framer-142cwad > *, .framer-j0gty .framer-1rrcnwl > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-j0gty .framer-19puti3 > *, .framer-j0gty .framer-1t9r7n7 > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-j0gty .framer-1rft636 > * { margin: 0px; margin-left: calc(20px / 2); margin-right: calc(20px / 2); } .framer-j0gty .framer-hpsmdp > *, .framer-j0gty .framer-f21vt8 > *, .framer-j0gty .framer-1weblrd > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } }\",\"@media (min-width: 1280px) and (max-width: 1365px) { .framer-j0gty .hidden-72rtr7 { display: none !important; } }\",`@media (min-width: 1440px) and (max-width: 1919px) { .framer-j0gty .hidden-1ldc8ag { display: none !important; } .${metadata.bodyClassName}-framer-j0gty { background: rgb(255, 254, 252); } .framer-j0gty.framer-72rtr7 { width: 1440px; } .framer-j0gty .framer-d2bm38 { justify-content: center; } .framer-j0gty .framer-6ioe7m { height: var(--framer-aspect-ratio-supported, 474px); } .framer-j0gty .framer-1qbfsax, .framer-j0gty .framer-gloc54, .framer-j0gty .framer-ai773g, .framer-j0gty .framer-bzhme8 { height: var(--framer-aspect-ratio-supported, 69px); } .framer-j0gty .framer-ge4rru { height: var(--framer-aspect-ratio-supported, 427px); } .framer-j0gty .framer-1cfy7kn, .framer-j0gty .framer-1ldztbj, .framer-j0gty .framer-djeymj, .framer-j0gty .framer-pxpv9u, .framer-j0gty .framer-2ggr8r { height: 220px; }}`,`@media (min-width: 1920px) { .framer-j0gty .hidden-1e8ickh { display: none !important; } .${metadata.bodyClassName}-framer-j0gty { background: rgb(255, 254, 252); } .framer-j0gty.framer-72rtr7 { width: 1920px; } .framer-j0gty .framer-6ioe7m { aspect-ratio: 1.9157142857142857 / 1; height: var(--framer-aspect-ratio-supported, 104px); } .framer-j0gty .framer-1qbfsax, .framer-j0gty .framer-gloc54, .framer-j0gty .framer-ai773g, .framer-j0gty .framer-bzhme8 { height: var(--framer-aspect-ratio-supported, 200px); } .framer-j0gty .framer-ge4rru { height: var(--framer-aspect-ratio-supported, 143px); } .framer-j0gty .framer-1cfy7kn, .framer-j0gty .framer-1ldztbj, .framer-j0gty .framer-djeymj, .framer-j0gty .framer-pxpv9u, .framer-j0gty .framer-2ggr8r { height: 180px; }}`,`@media (min-width: 1366px) and (max-width: 1439px) { .framer-j0gty .hidden-ity98x { display: none !important; } .${metadata.bodyClassName}-framer-j0gty { background: rgb(255, 254, 252); } .framer-j0gty.framer-72rtr7 { width: 1366px; } .framer-j0gty .framer-d2bm38 { justify-content: center; } .framer-j0gty .framer-6ioe7m { aspect-ratio: 1.94875 / 1; height: var(--framer-aspect-ratio-supported, 403px); } .framer-j0gty .framer-382pep, .framer-j0gty .framer-dgfku8, .framer-j0gty .framer-1njkt85, .framer-j0gty .framer-1llzoyq, .framer-j0gty .framer-1w1w3t3, .framer-j0gty .framer-tyzvex { white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; } .framer-j0gty .framer-1qbfsax, .framer-j0gty .framer-gloc54, .framer-j0gty .framer-ai773g, .framer-j0gty .framer-bzhme8 { height: var(--framer-aspect-ratio-supported, 63px); } .framer-j0gty .framer-ge4rru { height: var(--framer-aspect-ratio-supported, 401px); } .framer-j0gty .framer-1cfy7kn, .framer-j0gty .framer-1ldztbj, .framer-j0gty .framer-djeymj, .framer-j0gty .framer-pxpv9u, .framer-j0gty .framer-2ggr8r { height: 240px; }}`,`@media (max-width: 1279px) { .framer-j0gty .hidden-fvairp { display: none !important; } .${metadata.bodyClassName}-framer-j0gty { background: rgb(255, 254, 252); } .framer-j0gty.framer-72rtr7 { width: 810px; } .framer-j0gty .framer-6ioe7m { height: var(--framer-aspect-ratio-supported, 113px); width: 100%; } .framer-j0gty .framer-1qbfsax, .framer-j0gty .framer-gloc54, .framer-j0gty .framer-ai773g, .framer-j0gty .framer-bzhme8 { height: var(--framer-aspect-ratio-supported, 200px); } .framer-j0gty .framer-ge4rru { height: var(--framer-aspect-ratio-supported, 143px); }}`,...sharedStyle.css,...sharedStyle1.css,...sharedStyle2.css,...sharedStyle3.css,...sharedStyle4.css,...sharedStyle5.css,...sharedStyle6.css];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 4979.5\n * @framerIntrinsicWidth 1280\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"lQAXrQpqD\":{\"layout\":[\"fixed\",\"auto\"]},\"mH7iJQPkx\":{\"layout\":[\"fixed\",\"auto\"]},\"gkSkWk9S6\":{\"layout\":[\"fixed\",\"auto\"]},\"pPV3xx0Cp\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n * @framerResponsiveScreen\n */const FrameraugiA20Il=withCSS(Component,css,\"framer-j0gty\");export default FrameraugiA20Il;FrameraugiA20Il.displayName=\"Home\";FrameraugiA20Il.defaultProps={height:4979.5,width:1280};addFonts(FrameraugiA20Il,[{explicitInter:true,fonts:[{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://app.framerstatic.com/Inter-Regular.cyrillic-ext-CFTLRB35.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://app.framerstatic.com/Inter-Regular.cyrillic-KKLZBALH.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://app.framerstatic.com/Inter-Regular.greek-ext-ULEBLIFV.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://app.framerstatic.com/Inter-Regular.greek-IRHSNFQB.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://app.framerstatic.com/Inter-Regular.latin-ext-VZDUGU3Q.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://app.framerstatic.com/Inter-Regular.latin-JLQMKCHE.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://app.framerstatic.com/Inter-Regular.vietnamese-QK7VSWXK.woff2\",weight:\"400\"}]},...HeaderFonts,...CardNaviFonts,...EmbedFonts,...CardFonts,...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\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FrameraugiA20Il\",\"slots\":[],\"annotations\":{\"framerImmutableVariables\":\"true\",\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicWidth\":\"1280\",\"framerContractVersion\":\"1\",\"framerIntrinsicHeight\":\"4979.5\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"lQAXrQpqD\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"mH7iJQPkx\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"gkSkWk9S6\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"pPV3xx0Cp\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerDisplayContentsDiv\":\"false\",\"framerResponsiveScreen\":\"\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}"],
  "mappings": "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",
  "names": ["Embed", "type", "url", "html", "p", "EmbedURL", "EmbedHTML", "Instructions", "addPropertyControls", "ControlType", "props", "emptyStateStyle", "centerTextStyle", "onCanvas", "useIsOnCanvas", "state", "setState", "ye", "ue", "isLastEffect", "load", "response", "isBlocked", "message", "error", "ErrorMessage", "LoadingIndicator", "iframeStyle", "getSandbox", "result", "ref", "pe", "hasScript", "div", "executeScripts", "htmlStyle", "node", "script", "name", "value", "child", "containerStyles", "u", "fontStore", "fonts", "css", "className", "HeaderFonts", "getFonts", "JbOlpBCcg_default", "HeaderWithSlideOutOnScrollUpWithMappedReactPropsc9x0go", "withMappedReactProps", "withSlideOutOnScrollUp", "JbOlpBCcg_exports", "RichTextHomepagetitle", "Homepagetitle", "RichText", "RichTextBody_L", "Body_L", "CardNaviFonts", "end0Zb18J_default", "RichTextTag", "Tag", "RichTextPageheadlineM", "PageheadlineM", "MotionDivWithFX", "withFX", "motion", "RichTextGuidelinetitleM", "GuidelinetitleM", "RichTextAnnotation", "Annotation", "EmbedFonts", "Embed", "CardFonts", "bqCUO_vPW_default", "FooterFonts", "Qhbkhip7c_default", "breakpoints", "serializationHash", "variantClassNames", "transformTemplate1", "_", "t", "animation", "transition1", "animation1", "animation2", "transition2", "animation3", "animation4", "transition3", "animation5", "addImageAlt", "image", "alt", "metadata", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "_humanReadableVariantMap_props_variant", "_ref", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "variant", "restProps", "ie", "metadata1", "_document_querySelector", "c", "baseVariant", "hydratedBaseVariant", "useHydratedBreakpointVariants", "breakpoints", "gestureVariant", "ref1", "pe", "router", "useRouter", "useRouteElementId", "ref2", "id1", "ref3", "id2", "ref4", "id3", "ref5", "defaultLayoutId", "ae", "sharedStyleClassNames", "useCustomCursors", "p", "GeneratedComponentContext", "u", "LayoutGroup", "motion", "cx", "ComponentViewportProvider", "Container", "HeaderWithSlideOutOnScrollUpWithMappedReactPropsc9x0go", "PropertyOverrides", "x", "RichTextHomepagetitle", "RichTextBody_L", "Image2", "ResolveLinks", "resolvedLinks", "end0Zb18J_default", "resolvedLinks1", "resolvedLinks2", "resolvedLinks3", "MotionDivWithFX", "RichTextTag", "RichTextPageheadlineM", "RichTextGuidelinetitleM", "Link", "RichTextAnnotation", "Embed", "bqCUO_vPW_default", "Qhbkhip7c_default", "css", "FrameraugiA20Il", "withCSS", "augiA20Il_default", "addFonts", "HeaderFonts", "CardNaviFonts", "EmbedFonts", "CardFonts", "FooterFonts", "getFontsFromSharedStyle", "fonts", "__FramerMetadata__"]
}
