{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/lRDHiNWNVWmE0lqtoVHP/qXQVWG1AZxpdrbBmhE1U/Video.js", "ssg:https://framerusercontent.com/modules/9vBVpv4gcezyuhgvhXuz/VPtmlRd4IbEERnLh8i1x/hkNhAQhKW.js", "ssg:https://framerusercontent.com/modules/pAAIbrwlamPb8OJ6fqU5/KVZcBMSCc5uigcZQot1M/mh_GtELBG.js", "ssg:https://framerusercontent.com/modules/WfLpgeRm1bx3OwzEhiMk/QKLdrRRQCBvPtBICOi8Z/nxTmZyZw6.js", "ssg:https://framerusercontent.com/modules/RSQt2Gl545xgkrd1DaWc/uBMGQWRc2s0iiuBQjgBf/GLz2DcH7V.js"],
  "sourcesContent": ["import{jsx as _jsx}from\"react/jsx-runtime\";import{addPropertyControls,ControlType,useIsInCurrentNavigationTarget}from\"framer\";import{isMotionValue,useInView}from\"framer-motion\";import{borderRadiusControl,defaultEvents,useIsBrowserSafari,useIsOnCanvas,useOnEnter,useOnExit,useRadius}from\"https://framer.com/m/framer/default-utils.js@^0.45.0\";import{memo,useCallback,useEffect,useMemo,useRef,useState}from\"react\";var ObjectFitType;(function(ObjectFitType){ObjectFitType[\"Fill\"]=\"fill\";ObjectFitType[\"Contain\"]=\"contain\";ObjectFitType[\"Cover\"]=\"cover\";ObjectFitType[\"None\"]=\"none\";ObjectFitType[\"ScaleDown\"]=\"scale-down\";})(ObjectFitType||(ObjectFitType={}));var SrcType;(function(SrcType){SrcType[\"Video\"]=\"Upload\";SrcType[\"Url\"]=\"URL\";})(SrcType||(SrcType={}));// Reduce renders\nfunction getProps(props){const{width,height,topLeft,topRight,bottomRight,bottomLeft,id,children,...rest}=props;return rest;}/**\n * VIDEO\n *\n * @framerIntrinsicWidth 200\n * @framerIntrinsicHeight 112\n *\n * @framerSupportedLayoutWidth fixed\n * @framerSupportedLayoutHeight any-prefer-fixed\n */ export function Video(props){const newProps=getProps(props);return /*#__PURE__*/ _jsx(VideoMemo,{...newProps});}function usePlaybackControls(videoRef){const isInCurrentNavigationTarget=useIsInCurrentNavigationTarget();const requestingPlay=useRef(false);const setProgress=useCallback(rawProgress=>{if(!videoRef.current)return;const newProgress=(rawProgress===1?.999:rawProgress)*videoRef.current.duration;const isAlreadySet=Math.abs(videoRef.current.currentTime-newProgress)<.1;if(videoRef.current.duration>0&&!isAlreadySet){videoRef.current.currentTime=newProgress;}},[]);const play=useCallback(()=>{const isPlaying=videoRef.current.currentTime>0&&videoRef.current.onplaying&&!videoRef.current.paused&&!videoRef.current.ended&&videoRef.current.readyState>videoRef.current.HAVE_CURRENT_DATA;if(!isPlaying&&videoRef.current&&!requestingPlay.current&&isInCurrentNavigationTarget){requestingPlay.current=true;videoRef.current.play().catch(e=>{}) // It's likely fine, swallow error\n.finally(()=>requestingPlay.current=false);}},[]);const pause=useCallback(()=>{if(!videoRef.current||requestingPlay.current)return;videoRef.current.pause();},[]);return{play,pause,setProgress};}function useAutoplayBehavior({playingProp,muted,loop,playsinline,controls}){const[initialPlayingProp]=useState(()=>playingProp);const[hasPlayingPropChanged,setHasPlayingPropChanged]=useState(false);if(playingProp!==initialPlayingProp&&!hasPlayingPropChanged){setHasPlayingPropChanged(true);}const behavesAsGif=// passing `playing === true` on mount indicates that the video should\n// autoplay, like a GIF\ninitialPlayingProp&&muted&&loop&&playsinline&&!controls&&// Some users of the <Video> component use it by wrapping it with\n// another smart component and adding their own controls on top. (The\n// controls use transitions to control the video: e.g., when clicking\n// the play button, the smart component will transition to a state with\n// <Video playing={true} />.) In this case, we don't want the video to\n// behave as a gif, as it will be weird if the video suddenly started\n// acting as such (and auto-pausing when leaving the viewport) as soon\n// as the site visitor mutes it and clicks \u201CPlay\u201D.\n!hasPlayingPropChanged;let autoplay;if(behavesAsGif)autoplay=\"on-viewport\";else if(initialPlayingProp)autoplay=\"on-mount\";else autoplay=\"no-autoplay\";return autoplay;}/**\n * The Video component has some effects that sync the video element with props\n * like `startTime`, `progress`, etc. React calls these effects whenever these\n * props change. However, it also calls them on the first mount, and this is\n * troublesome \u2013 if we\u2019re doing SSR, and the user changed the video state before\n * the video was hydrated, the initial `useEffect` call will reset the video\n * state. To avoid this, we use this flag.\n */ let isMountedAndReadyForProgressChanges=false;const VideoMemo=/*#__PURE__*/ memo(function VideoInner(props){const{srcType,srcFile,srcUrl,playing:playingProp,muted,playsinline,controls,progress,objectFit,backgroundColor,onSeeked,onPause,onPlay,onEnd,onClick,onMouseEnter,onMouseLeave,onMouseDown,onMouseUp,poster,posterEnabled,startTime:startTimeProp,volume,loop}=props;const videoRef=useRef();const isSafari=useIsBrowserSafari();const wasPausedOnLeave=useRef(null);const wasEndedOnLeave=useRef(null);const isOnCanvas=useIsOnCanvas();const borderRadius=useRadius(props);// Hard-coding `autoplayBehavior` and `isInViewport` when on canvas as a\n// tiny perf optimization. isOnCanvas won\u2019t change through the lifecycle of\n// the component, so using these hooks conditionally should be safe\nconst autoplayBehavior=isOnCanvas?\"no-autoplay\":useAutoplayBehavior({playingProp,muted,loop,playsinline,controls});const isInViewport=isOnCanvas?true:useInView(videoRef);// Video elements behave oddly at 100% duration\nconst startTime=startTimeProp===100?99.9:startTimeProp;const{play,pause,setProgress}=usePlaybackControls(videoRef);// Pause/play via props\nuseEffect(()=>{if(isOnCanvas)return;if(playingProp)play();else pause();},[playingProp]);// Pause/play via viewport\nuseEffect(()=>{if(isOnCanvas)return;if(autoplayBehavior!==\"on-viewport\")return;if(isInViewport)play();else pause();},[autoplayBehavior,isInViewport]);// Allow scrubbling via progress prop\n// 1) Handle cases when the progress prop itself changes\nuseEffect(()=>{if(!isMountedAndReadyForProgressChanges){isMountedAndReadyForProgressChanges=true;return;}const rawProgressValue=isMotionValue(progress)?progress.get():(progress!==null&&progress!==void 0?progress:0)*.01;setProgress(// When the progress value exists (e.g. <Video startTime={10}\n// progress={50} />), we respect the `progress` value over\n// `startTime`, even if `startTime` changes. That\u2019s because\n// `startTime` == start == changing it shouldn\u2019t affect the current\n// progress\n(rawProgressValue!==null&&rawProgressValue!==void 0?rawProgressValue:0)||// Then why fall back to `startTime` when `progress` doesn\u2019t exist,\n// you might ask? Now, that\u2019s for\n// - canvas UX: we want the video progress to change when the user\n//   is scrobbling the \u201CStart Time\u201D in component settings.\n// - backwards compatibility: maybe some users *are* scrobbling\n//   using `startTime` instead of `progress`? We don\u2019t know, and it\n//   always supported it, so let\u2019s not break it\n(startTime!==null&&startTime!==void 0?startTime:0)/100);},[startTime,srcFile,srcUrl,progress]);// 2) Handle cases when the motion value inside the progress prop changes\nuseEffect(()=>{if(!isMotionValue(progress))return;return progress.on(\"change\",value=>setProgress(value));},[progress]);// (Prototyping) Checking if we need to play on navigation enter\nuseOnEnter(()=>{if(wasPausedOnLeave.current===null)return;if(videoRef.current){// if (restartOnEnter) setProgress(0)\nif(!wasEndedOnLeave&&loop||!wasPausedOnLeave.current)play();}});// (Prototyping) Pausing & saving playing state on navigation exit\nuseOnExit(()=>{if(videoRef.current){wasEndedOnLeave.current=videoRef.current.ended;wasPausedOnLeave.current=videoRef.current.paused;pause();}});const src=useMemo(()=>{let fragment=\"\";// if (\n//     startTime > 0 &&\n//     videoRef.current &&\n//     !isNaN(videoRef.current.duration) &&\n//     !isOnCanvas\n// ) {\n//     console.log(startTime, videoRef.current.duration)\n//     fragment = `#t=${startTime * videoRef.current.duration}`\n// }\nif(srcType===SrcType.Url)return srcUrl+fragment;if(srcType===SrcType.Video)return srcFile+fragment;},[srcType,srcFile,srcUrl,startTime]);// Autoplay via JS to work in Safari\nuseEffect(()=>{if(isSafari&&videoRef.current&&autoplayBehavior===\"on-mount\"){setTimeout(()=>play(),50);}},[]);// Volume Control\nuseEffect(()=>{if(videoRef.current&&!muted)videoRef.current.volume=(volume!==null&&volume!==void 0?volume:0)/100;},[volume]);// When video is ready, set start-time, then autoplay if needed\nconst handleReady=()=>{if(!videoRef.current)return;if(videoRef.current.currentTime<.3)setProgress((startTime!==null&&startTime!==void 0?startTime:0)*.01);if(autoplayBehavior===\"on-mount\")play();};return /*#__PURE__*/ _jsx(\"video\",{onClick,onMouseEnter,onMouseLeave,onMouseDown,onMouseUp,src:src,loop:loop,ref:videoRef,onSeeked:e=>{return onSeeked===null||onSeeked===void 0?void 0:onSeeked(e);},onPause:e=>{return onPause===null||onPause===void 0?void 0:onPause(e);},onPlay:e=>{return onPlay===null||onPlay===void 0?void 0:onPlay(e);},onEnded:e=>{return onEnd===null||onEnd===void 0?void 0:onEnd(e);},autoPlay:autoplayBehavior===\"on-mount\",poster:posterEnabled?poster:undefined,onLoadedData:handleReady,controls:controls,muted:isOnCanvas?true:muted,playsInline:playsinline,style:{cursor:!!onClick?\"pointer\":\"auto\",width:\"100%\",height:\"100%\",borderRadius,display:\"block\",objectFit:objectFit,backgroundColor:backgroundColor,objectPosition:\"50% 50%\"}});});Video.displayName=\"Video\";Video.defaultProps={srcType:SrcType.Url,srcUrl:\"https://assets.mixkit.co/videos/preview/mixkit-ice-cream-glass-of-red-soda-5094-small.mp4\",srcFile:\"\",posterEnabled:false,controls:false,playing:true,loop:true,muted:true,playsinline:true,restartOnEnter:false,objectFit:ObjectFitType.Cover,backgroundColor:\"rgba(0,0,0,0)\",radius:0,volume:25,startTime:0};const groupsRegex=/[A-Z]{2,}|[A-Z][a-z]+|[a-z]+|[A-Z]|\\d+/gu;function capitalizeFirstLetter(value){return value.charAt(0).toUpperCase()+value.slice(1);}export function titleCase(value){const groups=value.match(groupsRegex)||[];return groups.map(capitalizeFirstLetter).join(\" \");}const objectFitOptions=[ObjectFitType.Cover,ObjectFitType.Fill,ObjectFitType.Contain,ObjectFitType.ScaleDown,ObjectFitType.None,];addPropertyControls(Video,{srcType:{type:ControlType.Enum,displaySegmentedControl:true,title:\"Source\",options:[SrcType.Url,SrcType.Video]},srcUrl:{type:ControlType.String,title:\" \",placeholder:\"../example.mp4\",hidden(props){return props.srcType===SrcType.Video;},description:\"Hosted video file URL. For YouTube, use the YouTube component.\"},srcFile:{type:ControlType.File,title:\" \",allowedFileTypes:[\"mp4\"],hidden(props){return props.srcType===SrcType.Url;}},playing:{type:ControlType.Boolean,title:\"Playing\",enabledTitle:\"Yes\",disabledTitle:\"No\"},posterEnabled:{type:ControlType.Boolean,title:\"Poster\",enabledTitle:\"Yes\",disabledTitle:\"No\"},poster:{type:ControlType.Image,title:\" \",hidden:({posterEnabled})=>!posterEnabled},backgroundColor:{type:ControlType.Color,title:\"Background\"},...borderRadiusControl,startTime:{title:\"Start Time\",type:ControlType.Number,min:0,max:100,step:.1,unit:\"%\"},loop:{type:ControlType.Boolean,title:\"Loop\",enabledTitle:\"Yes\",disabledTitle:\"No\"},objectFit:{type:ControlType.Enum,title:\"Fit\",options:objectFitOptions,optionTitles:objectFitOptions.map(titleCase)},// restartOnEnter: {\n//     type: ControlType.Boolean,\n//     title: \"On ReEnter\",\n//     enabledTitle: \"Restart\",\n//     disabledTitle: \"Resume\",\n// },\ncontrols:{type:ControlType.Boolean,title:\"Controls\",enabledTitle:\"Show\",disabledTitle:\"Hide\"},muted:{type:ControlType.Boolean,title:\"Muted\",enabledTitle:\"Yes\",disabledTitle:\"No\"},volume:{type:ControlType.Number,max:100,min:0,unit:\"%\",hidden:({muted})=>muted},onEnd:{type:ControlType.EventHandler},onSeeked:{type:ControlType.EventHandler},onPause:{type:ControlType.EventHandler},onPlay:{type:ControlType.EventHandler},...defaultEvents});\nexport const __FramerMetadata__ = {\"exports\":{\"VideoProps\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"titleCase\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"Video\":{\"type\":\"reactComponent\",\"name\":\"Video\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\",\"framerIntrinsicWidth\":\"200\",\"framerSupportedLayoutHeight\":\"any-prefer-fixed\",\"framerSupportedLayoutWidth\":\"fixed\",\"framerIntrinsicHeight\":\"112\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Video.map", "// Generated by Framer (72f35ee)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,SVG,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion}from\"framer-motion\";import*as React from\"react\";const cycleOrder=[\"o4N4NIf92\",\"xnmK2FijU\",\"ZU5KeNSba\",\"ObfcRyF85\",\"e4rMuMiYs\",\"fOm9y11yV\",\"h2hifIJ4L\"];const variantClassNames={e4rMuMiYs:\"framer-v-1cew9xx\",fOm9y11yV:\"framer-v-1ikl64z\",h2hifIJ4L:\"framer-v-1siuevp\",o4N4NIf92:\"framer-v-ycolc9\",ObfcRyF85:\"framer-v-15wcyh2\",xnmK2FijU:\"framer-v-1yxv0n2\",ZU5KeNSba:\"framer-v-16ftrzf\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const humanReadableVariantMap={Cognitive:\"ObfcRyF85\",Emotional:\"o4N4NIf92\",Funcional:\"fOm9y11yV\",Nutritional:\"e4rMuMiYs\",Pain:\"xnmK2FijU\",Riskandfactors:\"ZU5KeNSba\",Strategis:\"h2hifIJ4L\"};const transitions={default:{damping:60,delay:0,duration:.3,ease:[.44,0,.56,1],mass:1,stiffness:500,type:\"spring\"}};const Component=/*#__PURE__*/ React.forwardRef(function({id,style,className,width,height,layoutId,variant:outerVariant=\"o4N4NIf92\",...restProps},ref){const outerVariantId=humanReadableVariantMap[outerVariant];const variant=outerVariantId||outerVariant;const{baseVariant,classNames,gestureVariant,setGestureState,setVariant,transition,variants}=useVariantState({cycleOrder,defaultVariant:\"o4N4NIf92\",transitions,variant,variantClassNames});const layoutDependency=variants.join(\"-\")+restProps.layoutDependency;const isDisplayed=()=>{if([\"xnmK2FijU\",\"ZU5KeNSba\",\"ObfcRyF85\",\"e4rMuMiYs\",\"fOm9y11yV\",\"h2hifIJ4L\"].includes(baseVariant))return false;return true;};const isDisplayed1=()=>{if(baseVariant===\"xnmK2FijU\")return true;return false;};const isDisplayed2=()=>{if(baseVariant===\"ZU5KeNSba\")return true;return false;};const isDisplayed3=()=>{if(baseVariant===\"ObfcRyF85\")return true;return false;};const isDisplayed4=()=>{if(baseVariant===\"e4rMuMiYs\")return true;return false;};const isDisplayed5=()=>{if(baseVariant===\"fOm9y11yV\")return true;return false;};const isDisplayed6=()=>{if(baseVariant===\"h2hifIJ4L\")return true;return false;};const defaultLayoutId=React.useId();return /*#__PURE__*/ _jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/ _jsx(motion.div,{initial:variant,animate:variants,onHoverStart:()=>setGestureState({isHovered:true}),onHoverEnd:()=>setGestureState({isHovered:false}),onTapStart:()=>setGestureState({isPressed:true}),onTap:()=>setGestureState({isPressed:false}),onTapCancel:()=>setGestureState({isPressed:false}),className:cx(\"framer-a5K0u\",classNames),style:{display:\"contents\"},children:/*#__PURE__*/ _jsxs(motion.div,{...restProps,className:cx(\"framer-ycolc9\",className),\"data-framer-name\":\"Emotional\",layoutDependency:layoutDependency,layoutId:\"o4N4NIf92\",ref:ref,style:{...style},transition:transition,...addPropertyOverrides({e4rMuMiYs:{\"data-framer-name\":\"Nutritional\"},fOm9y11yV:{\"data-framer-name\":\"Funcional\"},h2hifIJ4L:{\"data-framer-name\":\"Strategis\"},ObfcRyF85:{\"data-framer-name\":\"Cognitive\"},xnmK2FijU:{\"data-framer-name\":\"Pain\"},ZU5KeNSba:{\"data-framer-name\":\"Riskandfactors\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/ _jsx(motion.div,{className:\"framer-h83zp4\",layoutDependency:layoutDependency,layoutId:\"jbqwv15Ds\",transition:transition,children:isDisplayed()&&/*#__PURE__*/ _jsx(SVG,{className:\"framer-14va2zc\",\"data-framer-name\":\"vector\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:23,intrinsicWidth:23,layoutDependency:layoutDependency,layoutId:\"jFdPOX6_L\",svg:'<svg width=\"23\" height=\"23\" viewBox=\"0 0 23 23\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M21.727 12.8287C21.1908 12.8904 20.6218 12.3123 20.6494 11.7156C20.6727 11.2136 21.1076 10.6634 21.7669 10.674C22.4099 10.6843 22.8465 11.2292 22.8428 11.753C22.8389 12.3205 22.38 12.8672 21.727 12.8287Z\" fill=\"white\"/>\\n<path d=\"M1.78418 12.8267C1.15152 12.8621 0.677899 12.3151 0.687648 11.7511C0.698668 11.1096 1.16237 10.6594 1.77689 10.6563C2.39192 10.653 2.84554 11.1194 2.87945 11.7239C2.90861 12.2439 2.40777 12.8801 1.78418 12.8267Z\" fill=\"white\"/>\\n<path d=\"M20.402 7.82951C19.7829 7.88207 19.3152 7.30867 19.3125 6.75061C19.31 6.23282 19.7649 5.67383 20.4147 5.67383C21.0366 5.67383 21.5116 6.23977 21.5102 6.76316C21.5087 7.2918 21.0109 7.89504 20.402 7.82951Z\" fill=\"white\"/>\\n<path d=\"M3.10052 7.83289C2.54662 7.89622 1.99483 7.3084 2.02459 6.71855C2.05417 6.1315 2.51729 5.70383 3.14478 5.68407C3.76107 5.66475 4.2241 6.23188 4.21893 6.76077C4.2135 7.30891 3.76362 7.88757 3.10061 7.83289H3.10052Z\" fill=\"white\"/>\\n<path d=\"M6.77116 4.18655C6.17139 4.23004 5.67123 3.65808 5.67581 3.12351C5.68175 2.42947 6.23107 2.00298 6.75582 2.00985C7.38576 2.01807 7.861 2.45991 7.86786 3.11113C7.87363 3.65817 7.40967 4.22428 6.77116 4.18655Z\" fill=\"white\"/>\\n<path d=\"M11.7277 2.84442C11.1409 2.89282 10.6299 2.27669 10.6616 1.71813C10.6888 1.23509 11.1468 0.663046 11.8126 0.688308C12.4047 0.710773 12.8887 1.27222 12.8599 1.80493C12.8323 2.31247 12.4156 2.90198 11.7277 2.84442Z\" fill=\"white\"/>\\n<path d=\"M16.7494 4.19168C16.1149 4.23347 15.6316 3.61395 15.6615 3.10523C15.7045 2.37093 16.1932 2.02251 16.7654 2.01955C17.3483 2.0165 17.8511 2.4401 17.8504 3.14329C17.8498 3.69406 17.3724 4.2266 16.7493 4.19168H16.7494Z\" fill=\"white\"/>\\n<path d=\"M3.11895 17.8133C2.51274 17.8679 2.01071 17.2527 2.02368 16.735C2.04106 16.0409 2.57038 15.6247 3.13573 15.637C3.72906 15.6499 4.19573 16.0657 4.21497 16.7409C4.23091 17.2984 3.73889 17.8475 3.11895 17.8133Z\" fill=\"white\"/>\\n<path d=\"M20.4029 17.8143C19.8206 17.8516 19.3044 17.3219 19.3126 16.7341C19.3219 16.0654 19.8388 15.6325 20.4018 15.6367C20.9782 15.641 21.4702 16.0264 21.5029 16.7252C21.528 17.2636 21.0105 17.8675 20.4029 17.8143Z\" fill=\"white\"/>\\n<path d=\"M11.7602 5.28578C12.9116 5.26018 13.8038 6.2343 13.7829 7.28955C13.7587 8.50824 12.886 9.31731 11.7562 9.30977C10.5669 9.30188 9.75188 8.41007 9.74612 7.277C9.74061 6.20734 10.6485 5.25738 11.7602 5.28578Z\" fill=\"white\"/>\\n<path d=\"M14.472 13.807C14.472 13.91 14.472 14.0129 14.472 14.1159C14.4738 15.5335 14.4924 16.9514 14.4655 18.3684C14.4588 18.7223 14.5931 18.9034 14.8616 19.0756C15.5092 19.4908 16.1462 19.9228 16.7841 20.3531C17.0205 20.5126 17.2702 20.6625 17.4731 20.8588C17.7866 21.1623 17.85 21.557 17.6704 21.9465C17.5055 22.3045 17.228 22.5627 16.793 22.5627C14.7123 22.5629 12.6315 22.5615 10.5508 22.5617C10.0108 22.5617 9.67772 22.1698 9.57981 21.7557C9.46875 21.286 9.74901 20.7834 10.2125 20.602C10.3505 20.548 10.5083 20.524 10.6574 20.5226C11.4402 20.5149 12.2232 20.5189 13.0061 20.5187C13.0677 20.5187 13.1292 20.5187 13.1909 20.5187L13.2133 20.4755C13.1352 20.4106 13.0589 20.3432 12.9782 20.2817C12.9135 20.2323 12.8234 20.2043 12.7793 20.1421C12.6265 19.9267 12.4176 19.91 12.1791 19.9157C11.6433 19.9284 11.1071 19.9161 10.5711 19.9218C9.84438 19.9296 9.25436 20.3647 9.0532 21.0717C8.98614 21.3074 8.98453 21.566 8.98207 21.8144C8.98063 21.9566 8.95325 22.0229 8.80371 22.0306C8.14367 22.0649 7.48346 22.0985 6.82419 22.1446C6.15745 22.1911 5.69798 21.5866 5.76894 21.008C5.82319 20.5662 6.12363 20.3076 6.49883 20.106C7.32443 19.6623 8.1441 19.2074 8.9608 18.7474C9.01624 18.7162 9.05379 18.6053 9.05413 18.5312C9.05956 17.17 9.05803 15.8088 9.05795 14.4476C9.05795 14.2316 9.05795 14.0156 9.05795 13.7996C9.03845 13.7967 9.01895 13.7939 8.99954 13.7911C8.93503 14.0231 8.86958 14.2548 8.80617 14.4871C8.7008 14.8732 8.595 15.2591 8.49268 15.646C8.39519 16.0145 8.30491 16.3849 8.20615 16.753C8.10773 17.12 8.00032 17.4844 7.90156 17.8513C7.8312 18.1128 7.76296 18.3751 7.70404 18.6392C7.61334 19.046 7.38114 19.2975 6.96491 19.4065C6.66193 19.4859 6.20535 19.2835 6.04843 18.9771C5.92839 18.7427 5.88168 18.4952 5.98384 18.2151C6.1115 17.865 6.17245 17.4909 6.26935 17.1291C6.36947 16.7551 6.48221 16.3846 6.58182 16.0106C6.6799 15.6423 6.76493 15.2706 6.862 14.9021C6.95872 14.5347 7.06511 14.1698 7.16353 13.8028C7.26229 13.4349 7.35385 13.0651 7.45329 12.6973C7.55433 12.3238 7.65708 11.9506 7.76694 11.5796C7.84273 11.3237 7.90088 11.0556 8.02236 10.8217C8.19403 10.4912 8.51099 10.3143 8.85788 10.1991C9.57845 9.95976 10.3194 9.84905 11.0781 9.83947C11.3299 9.83625 11.583 9.77665 11.8326 9.79141C12.4758 9.82947 13.1235 9.85787 13.7575 9.96188C14.1929 10.0333 14.6239 10.1908 15.029 10.3721C15.4705 10.5696 15.6466 10.9856 15.7461 11.4439C15.8296 11.8288 15.9529 12.205 16.055 12.586C16.1502 12.9412 16.2383 13.2984 16.3337 13.6535C16.4377 14.04 16.5492 14.4246 16.6525 14.8114C16.7489 15.173 16.8368 15.537 16.932 15.8989C17.0321 16.2795 17.1378 16.6586 17.2383 17.039C17.3357 17.4075 17.4233 17.7788 17.5272 18.1454C17.597 18.3917 17.6367 18.6242 17.5299 18.8769C17.3724 19.2497 16.8541 19.5253 16.4566 19.3685C16.0914 19.2245 15.9048 18.9807 15.8225 18.6072C15.741 18.2376 15.613 17.8785 15.5136 17.5125C15.4172 17.1581 15.3343 16.8 15.2398 16.445C15.1384 16.0641 15.0278 15.6856 14.9263 15.3047C14.8301 14.9438 14.7414 14.5809 14.6476 14.2193C14.6114 14.0798 14.5707 13.9414 14.5321 13.8025L14.472 13.807Z\" fill=\"white\"/>\\n</svg>\\n',transition:transition,withExternalLayout:true})}),isDisplayed1()&&/*#__PURE__*/ _jsx(SVG,{className:\"framer-1t84hjn\",\"data-framer-name\":\"Capa 1\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"sQXAJ1f6H\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 22 30\"><path d=\"M 8.652 6.698 C 7.046 4.887 5.439 3.076 3.824 1.255 C 4.312 0.866 4.786 0.486 5.295 0.08 C 6.433 2.288 7.564 4.479 8.694 6.67 C 8.68 6.679 8.666 6.689 8.652 6.698 Z\" fill=\"rgb(255,255,255)\"></path><path d=\"M 9.355 0.639 C 9.965 0.733 10.542 0.822 11.143 0.915 C 10.582 2.695 10.028 4.452 9.474 6.209 L 9.425 6.205 C 9.402 4.358 9.379 2.511 9.355 0.639 Z\" fill=\"rgb(255,255,255)\"></path><path d=\"M 2.832 7.531 C 2.927 6.876 3.018 6.254 3.113 5.6 C 4.763 6.182 6.397 6.758 8.03 7.334 C 8.028 7.346 8.026 7.358 8.024 7.37 C 6.304 7.424 4.585 7.477 2.832 7.531 Z\" fill=\"rgb(255,255,255)\"></path><path d=\"M 15.017 9.995 C 14.549 10.251 14.095 10.495 13.645 10.745 C 12.239 11.529 10.837 12.32 9.426 13.095 C 9.268 13.181 9.238 13.219 9.335 13.377 C 10.395 15.106 11.422 16.855 12.51 18.565 C 13.137 19.551 13.192 20.605 13.109 21.706 C 13.06 22.358 13.031 23.011 12.98 23.663 C 12.909 24.582 12.82 25.5 12.748 26.42 C 12.697 27.06 12.665 27.702 12.617 28.343 C 12.581 28.831 12.45 29.284 11.974 29.522 C 11.496 29.762 11.008 29.738 10.547 29.457 C 10.166 29.224 10.148 28.808 10.143 28.442 C 10.133 27.749 10.195 27.054 10.231 26.36 C 10.255 25.888 10.288 25.416 10.309 24.943 C 10.335 24.329 10.345 23.714 10.375 23.1 C 10.405 22.477 10.46 21.856 10.483 21.233 C 10.489 21.064 10.458 20.867 10.374 20.725 C 9.286 18.879 8.185 17.04 7.086 15.201 C 7.016 15.083 6.932 14.974 6.814 14.802 C 6.785 15.583 6.755 16.292 6.733 17.001 C 6.709 17.776 6.745 18.559 6.653 19.326 C 6.587 19.881 6.384 20.427 6.19 20.957 C 5.296 23.391 4.377 25.816 3.483 28.249 C 3.35 28.612 3.23 28.949 2.883 29.176 C 2.407 29.488 1.622 29.441 1.253 29.024 C 0.904 28.63 0.916 28.18 1.077 27.703 C 1.804 25.558 2.525 23.411 3.241 21.262 C 3.436 20.675 3.626 20.085 3.777 19.485 C 3.857 19.168 3.855 18.828 3.877 18.497 C 3.962 17.264 4.035 16.029 4.126 14.797 C 4.195 13.865 4.273 12.934 4.37 12.005 C 4.444 11.307 4.856 10.786 5.419 10.429 C 6.319 9.858 7.254 9.341 8.184 8.82 C 10.111 7.742 12.045 6.677 13.975 5.604 C 14.765 5.165 15.573 5.174 16.102 5.646 C 16.516 6.017 16.765 6.496 16.924 7.016 C 17.458 8.76 17.931 10.524 18.526 12.247 C 18.808 13.062 18.69 13.77 18.356 14.484 C 17.691 15.907 17.01 17.323 16.303 18.725 C 16.093 19.143 15.809 19.55 15.221 19.476 C 14.669 19.407 14.343 18.993 14.507 18.473 C 14.838 17.422 15.209 16.384 15.563 15.341 C 15.8 14.646 16.026 13.947 16.279 13.258 C 16.35 13.066 16.349 12.918 16.264 12.735 C 15.845 11.833 15.438 10.925 15.017 9.995 Z\" fill=\"rgb(255,255,255)\"></path><path d=\"M 16.927 5.133 C 16.888 3.794 18.062 2.588 19.473 2.614 C 20.811 2.638 21.974 3.721 21.959 5.16 C 21.944 6.55 20.822 7.662 19.382 7.649 C 18.058 7.638 16.894 6.49 16.927 5.133 Z\" fill=\"rgb(255,255,255)\"></path></svg>',svgContentId:3652712144,transition:transition,withExternalLayout:true,...addPropertyOverrides({xnmK2FijU:{svgContentId:762181340}},baseVariant,gestureVariant)}),isDisplayed2()&&/*#__PURE__*/ _jsx(SVG,{className:\"framer-sz44z6\",\"data-framer-name\":\"+\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:18,intrinsicWidth:18,layoutDependency:layoutDependency,layoutId:\"CLab8IkrW\",svg:'<svg width=\"18\" height=\"18\" viewBox=\"-1 -1 18 18\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M5.88542 15.125V0.375H9.61458V15.125H5.88542ZM0.375 9.61458V5.88542H15.125V9.61458H0.375Z\" fill=\"white\"/>\\n</svg>\\n',transition:transition,withExternalLayout:true}),isDisplayed3()&&/*#__PURE__*/ _jsxs(motion.div,{className:\"framer-1pfn6e\",\"data-framer-name\":\"vector\",layoutDependency:layoutDependency,layoutId:\"nFJZxM1ZM\",transition:transition,children:[/*#__PURE__*/ _jsx(SVG,{className:\"framer-1fm9wro\",\"data-framer-name\":\"ic_nurse\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:22,intrinsicWidth:25,layoutDependency:layoutDependency,layoutId:\"JopWnOvhP\",svg:'<svg width=\"25\" height=\"22\" viewBox=\"0 0 25 22\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M15.7064 9.36523L15.7873 9.2532C15.757 9.23134 15.7192 9.22265 15.6825 9.2291C15.6457 9.23556 15.6131 9.25661 15.5921 9.28746L15.7064 9.36523ZM6.77656 12.1304L6.82855 12.0023L6.69781 11.9492L6.64745 12.0811L6.77656 12.1304ZM18.235 14.3555L18.3733 14.3555L18.3733 14.3554L18.235 14.3555ZM15.5921 9.28746C14.2552 11.2515 12.0435 12.5367 9.53814 12.5367V12.8132C12.1412 12.8132 14.4359 11.4773 15.8206 9.44301L15.5921 9.28746ZM9.53814 12.5367C8.58095 12.5367 7.66879 12.3435 6.82855 12.0023L6.72456 12.2584C7.59591 12.6122 8.54329 12.8132 9.53814 12.8132V12.5367ZM6.64745 12.0811C6.37812 12.786 6.22507 13.5516 6.22507 14.3555H6.50149C6.50149 13.587 6.64775 12.8548 6.90567 12.1797L6.64745 12.0811ZM6.22507 14.3555C6.22507 17.7849 8.92945 21.0184 12.2992 21.0184V20.742C9.11215 20.742 6.50149 17.6641 6.50149 14.3555H6.22507ZM12.2992 21.0184C15.6689 21.0184 18.3733 17.7848 18.3733 14.3555H18.0968C18.0968 17.664 15.4862 20.742 12.2992 20.742V21.0184ZM18.3733 14.3554C18.3732 12.2451 17.35 10.3822 15.7873 9.2532L15.6254 9.47727C17.118 10.5556 18.0967 12.3361 18.0968 14.3555L18.3733 14.3554Z\" fill=\"white\"/>\\n<ellipse cx=\"15.31\" cy=\"14.2198\" rx=\"0.700625\" ry=\"0.633899\" fill=\"white\"/>\\n<ellipse cx=\"9.46625\" cy=\"14.2198\" rx=\"0.700625\" ry=\"0.633899\" fill=\"white\"/>\\n<path d=\"M16.6523 18.8477L20.7265 17.8023C20.7265 17.8023 23.4902 8.82498 16.8881 5.67383\" stroke=\"white\" stroke-width=\"0.276425\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M8.43048 19.2245L3.97857 17.8034C3.97857 17.8034 1.3189 8.93598 7.70888 5.71484\" stroke=\"white\" stroke-width=\"0.276425\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M10.9453 17.3945C10.9453 17.3945 12.283 18.6356 13.6549 17.3945\" stroke=\"white\" stroke-width=\"0.305523\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M3.57422 12.4914C3.57422 8.60468 6.31488 6.38723 7.68522 5.76435L8.43267 5.39062L10.3013 6.88553L12.5437 8.38044L16.6547 5.39062C17.5267 6.0135 19.6445 7.25926 20.7657 10.6228C21.6968 13.4163 21.264 16.4779 20.7657 17.7236L16.6547 18.4711C17.2775 17.599 18.4486 15.3318 18.1496 13.2389C17.8506 11.146 16.6547 9.75078 15.9072 9.50162C15.5335 9.75078 14.4123 11.744 11.7962 12.4914C9.72318 13.0837 7.93437 12.8652 6.93776 12.4914C5.74184 15.1823 7.31149 18.0974 8.05895 19.2185L3.94795 17.7236C3.82337 17.599 3.57422 16.3782 3.57422 12.4914Z\" fill=\"white\"/>\\n</svg>\\n',transition:transition,withExternalLayout:true}),/*#__PURE__*/ _jsx(motion.div,{className:\"framer-5b38dh\",\"data-framer-name\":\"Heart\",layoutDependency:layoutDependency,layoutId:\"GQwJ9L328\",transition:transition,children:/*#__PURE__*/ _jsx(SVG,{className:\"framer-49noox\",\"data-framer-name\":\"Heart\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:13,intrinsicWidth:13,layoutDependency:layoutDependency,layoutId:\"It6gQKbGn\",svg:'<svg width=\"13\" height=\"13\" viewBox=\"0 0 13 13\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M6.3703 10.3665C6.3703 10.3665 1.41797 7.85729 1.41797 4.81043C1.41807 4.27191 1.62431 3.75004 2.00162 3.33356C2.37894 2.91707 2.90404 2.63167 3.48764 2.52588C4.07125 2.42009 4.67734 2.50044 5.20287 2.75327C5.72839 3.0061 6.14092 3.4158 6.3703 3.91272L6.3703 3.91273C6.59968 3.41581 7.01221 3.0061 7.53773 2.75327C8.06326 2.50044 8.66935 2.42009 9.25296 2.52588C9.83656 2.63167 10.3617 2.91707 10.739 3.33356C11.1163 3.75004 11.3225 4.27191 11.3226 4.81043C11.3226 7.85729 6.3703 10.3665 6.3703 10.3665Z\" stroke=\"white\" stroke-width=\"0.497566\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n</svg>\\n',transition:transition,withExternalLayout:true})})]}),isDisplayed4()&&/*#__PURE__*/ _jsx(SVG,{className:\"framer-jaq3ho\",\"data-framer-name\":\"Vector\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:19,intrinsicWidth:16,layoutDependency:layoutDependency,layoutId:\"JnvymwNDc\",svg:'<svg width=\"16\" height=\"19\" viewBox=\"0 0 16 19\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M4.85556 6.20603L4.85372 6.20753L4.85196 6.20923L4.85556 6.20603ZM13.0124 6.05318C12.9554 5.99823 12.8921 5.95015 12.8239 5.90993C12.7274 5.85311 12.6202 5.8167 12.509 5.80294C12.3979 5.78919 12.2851 5.79838 12.1776 5.82996C12.0701 5.86154 11.9702 5.91482 11.8842 5.98653C11.7981 6.05823 11.7277 6.14683 11.6772 6.24684C11.3949 6.80298 11.0056 7.29793 10.5316 7.70327C10.6041 7.29486 10.6406 6.88088 10.6408 6.46609C10.6424 5.20423 10.3095 3.9645 9.67607 2.87313C9.04267 1.78175 8.13137 0.877719 7.03496 0.253067C6.91418 0.1846 6.77799 0.14794 6.63916 0.146527C6.50033 0.145114 6.36342 0.178994 6.24127 0.244988C6.11912 0.310983 6.01574 0.406927 5.94083 0.52382C5.86592 0.640712 5.82193 0.77472 5.813 0.913268C5.76714 1.69024 5.56402 2.44982 5.21594 3.14598C4.86787 3.84214 4.38208 4.46038 3.78801 4.96326L3.59915 5.1169C2.97794 5.53489 2.42808 6.05017 1.97067 6.64295C1.25965 7.53869 0.767109 8.58778 0.532102 9.707C0.297095 10.8262 0.326088 11.9848 0.616782 13.0909C0.907477 14.197 1.45188 15.2201 2.20681 16.0792C2.96174 16.9382 3.90644 17.6096 4.966 18.04C5.0904 18.0908 5.22541 18.1102 5.3591 18.0966C5.4928 18.0829 5.62107 18.0365 5.73261 17.9616C5.84415 17.8866 5.93553 17.7853 5.99868 17.6667C6.06184 17.5481 6.09483 17.4157 6.09475 17.2813C6.09416 17.1944 6.0804 17.1081 6.05394 17.0253C5.87061 16.3361 5.81781 15.6188 5.89829 14.9102C6.67368 16.3727 7.91833 17.5319 9.43214 18.2016C9.61692 18.2843 9.82581 18.2954 10.0183 18.2328C11.2144 17.8468 12.2918 17.1613 13.1483 16.2416C14.0048 15.3219 14.6119 14.1984 14.9119 12.978C15.212 11.7575 15.1949 10.4806 14.8625 9.26861C14.53 8.0566 13.8931 6.94973 13.0124 6.05318ZM9.81264 16.5675C9.09834 16.2055 8.46823 15.6972 7.96328 15.0757C7.45833 14.4542 7.08984 13.7333 6.88177 12.96C6.81822 12.6997 6.76907 12.436 6.73452 12.1702C6.71112 12.0009 6.6354 11.8432 6.51796 11.7191C6.40052 11.595 6.24724 11.5107 6.07953 11.478C6.02786 11.4678 5.97533 11.4627 5.92266 11.4628C5.77864 11.4627 5.63715 11.5007 5.51246 11.5727C5.38777 11.6448 5.28429 11.7485 5.21245 11.8733C4.53253 13.0461 4.1906 14.3841 4.22455 15.7393C3.62656 15.2743 3.12679 14.6953 2.75421 14.0358C2.38163 13.3763 2.14365 12.6494 2.05407 11.8972C1.96449 11.1451 2.02508 10.3826 2.23234 9.65403C2.4396 8.92546 2.7894 8.24527 3.26147 7.65288C3.61991 7.1873 4.05231 6.78369 4.54144 6.45813C4.56262 6.44446 4.58293 6.42949 4.60226 6.41331C4.60226 6.41331 4.84541 6.21213 4.85372 6.20753C6.02117 5.22006 6.8515 3.89304 7.22905 2.41132C8.12189 3.23669 8.71723 4.33376 8.92264 5.53218C9.12804 6.7306 8.93201 7.96331 8.36499 9.0389C8.29007 9.18242 8.25934 9.34492 8.27667 9.50589C8.294 9.66686 8.35861 9.81909 8.46236 9.94339C8.5661 10.0677 8.70433 10.1585 8.85961 10.2043C9.01489 10.2501 9.18027 10.2489 9.33487 10.2009C10.5901 9.8074 11.6946 9.03883 12.4998 7.99861C12.9837 8.71341 13.3001 9.52819 13.4254 10.3823C13.5506 11.2363 13.4815 12.1076 13.2233 12.9313C12.965 13.7549 12.5241 14.5097 11.9336 15.1393C11.3431 15.7689 10.6181 16.2571 9.81264 16.5675Z\" fill=\"white\"/>\\n</svg>\\n',transition:transition,withExternalLayout:true}),isDisplayed5()&&/*#__PURE__*/ _jsx(SVG,{className:\"framer-txveie\",\"data-framer-name\":\"Vector\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:17,intrinsicWidth:19,layoutDependency:layoutDependency,layoutId:\"Ow04Yj1uI\",svg:'<svg width=\"19\" height=\"17\" viewBox=\"0 0 19 17\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M14.3559 3.29896C14.6391 3.4172 14.8236 3.69408 14.8236 4.00102V6.49781H18.1667C18.5868 6.49781 18.9274 6.83842 18.9274 7.25858C18.9274 7.67874 18.5868 8.01935 18.1667 8.01935H14.0628C13.6427 8.01935 13.302 7.67874 13.302 7.25858V5.8236L2.8778 16.1347C2.57908 16.4302 2.0974 16.4276 1.80193 16.1289C1.50646 15.8302 1.50908 15.3485 1.8078 15.053L13.5278 3.46015C13.746 3.2443 14.0726 3.18073 14.3559 3.29896Z\" fill=\"white\"/>\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M9.93965 1.16485C10.1926 0.922287 10.5784 0.883856 10.8742 1.07177L14.4707 3.35676C14.8254 3.58207 14.9302 4.05221 14.7049 4.40685C14.4796 4.76149 14.0094 4.86633 13.6548 4.64101L10.5621 2.67611L7.90455 5.22497C7.60132 5.5158 7.11974 5.50575 6.8289 5.20252C6.53807 4.89928 6.54812 4.4177 6.85135 4.12687L9.93965 1.16485Z\" fill=\"white\"/>\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M3.11328 1.31385C3.11328 0.970084 3.39196 0.691406 3.73573 0.691406H6.65521C6.99897 0.691406 7.27765 0.970084 7.27765 1.31385C7.27765 1.65762 6.99897 1.9363 6.65521 1.9363H3.73573C3.39196 1.9363 3.11328 1.65762 3.11328 1.31385Z\" fill=\"white\"/>\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M0.917969 4.00135C0.917969 3.65758 1.19665 3.37891 1.54041 3.37891H4.4599C4.80366 3.37891 5.08234 3.65758 5.08234 4.00135C5.08234 4.34512 4.80366 4.6238 4.4599 4.6238H1.54041C1.19665 4.6238 0.917969 4.34512 0.917969 4.00135Z\" fill=\"white\"/>\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M1.93359 6.70057C1.93359 6.3568 2.21227 6.07812 2.55604 6.07812H5.47508C5.81885 6.07812 6.09753 6.3568 6.09753 6.70057C6.09753 7.04434 5.81885 7.32301 5.47508 7.32301H2.55604C2.21227 7.32301 1.93359 7.04434 1.93359 6.70057Z\" fill=\"white\"/>\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M8.95337 8.11924C9.07263 7.71636 9.49591 7.48645 9.89878 7.60571L14.555 8.98408C14.8066 9.05856 15.0021 9.25741 15.0722 9.51025C15.1423 9.76308 15.0772 10.0342 14.8999 10.2276L11.0947 14.3789C10.8108 14.6887 10.3295 14.7096 10.0198 14.4257C9.71006 14.1418 9.68913 13.6606 9.97304 13.3508L12.9553 10.0973L9.4669 9.06466C9.06402 8.9454 8.8341 8.52212 8.95337 8.11924Z\" fill=\"white\"/>\\n<path d=\"M17.0534 3.45058C17.9027 3.45058 18.5912 2.76209 18.5912 1.91279C18.5912 1.06349 17.9027 0.375 17.0534 0.375C16.2041 0.375 15.5156 1.06349 15.5156 1.91279C15.5156 2.76209 16.2041 3.45058 17.0534 3.45058Z\" fill=\"white\"/>\\n</svg>\\n',transition:transition,withExternalLayout:true}),isDisplayed6()&&/*#__PURE__*/ _jsx(SVG,{className:\"framer-141ooep\",\"data-framer-name\":\"Subtract\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:15,intrinsicWidth:18,layoutDependency:layoutDependency,layoutId:\"lj3NMGv3y\",svg:'<svg width=\"18\" height=\"15\" viewBox=\"0 0 18 15\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M0.144531 4.76476C0.144531 2.34036 2.32235 0.375 5.00883 0.375C6.60003 0.375 8.01279 1.06449 8.90026 2.13048C9.78773 1.06449 11.2005 0.375 12.7917 0.375C15.4782 0.375 17.656 2.34036 17.656 4.76476C17.656 9.58374 10.1166 14.4222 8.90026 14.4222C8.01166 14.4222 3.7483 11.8398 1.51539 8.56923H3.97559C4.20626 8.56923 4.42001 8.46136 4.53869 8.28507L5.77415 6.44978L7.29269 10.5102C7.36993 10.7168 7.56939 10.868 7.81048 10.9029C8.05158 10.9378 8.29446 10.8505 8.44101 10.6763L10.214 8.56923H11.8557C12.2184 8.56923 12.5124 8.30718 12.5124 7.98393C12.5124 7.66068 12.2184 7.39863 11.8557 7.39863H9.88571C9.67901 7.39863 9.48438 7.48537 9.36037 7.63275L8.14232 9.08029L6.56861 4.87234C6.48751 4.65549 6.27221 4.50056 6.01728 4.47562C5.76236 4.45068 5.51448 4.56029 5.38253 4.75629L3.60378 7.39863H0.824962C0.400197 6.54024 0.144531 5.65217 0.144531 4.76476Z\" fill=\"white\"/>\\n</svg>\\n',transition:transition,withExternalLayout:true})]})})});});const css=['.framer-a5K0u [data-border=\"true\"]::after { content: \"\"; border-width: var(--border-top-width, 0) var(--border-right-width, 0) var(--border-bottom-width, 0) var(--border-left-width, 0); border-color: var(--border-color, none); border-style: var(--border-style, none); width: 100%; height: 100%; position: absolute; box-sizing: border-box; left: 0; top: 0; border-radius: inherit; pointer-events: none; }',\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-a5K0u .framer-7a9i3l { display: block; }\",\".framer-a5K0u .framer-ycolc9 { height: 26px; overflow: visible; position: relative; width: 26px; }\",\".framer-a5K0u .framer-h83zp4 { align-content: center; align-items: center; bottom: 0px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; justify-content: center; left: 0px; overflow: visible; padding: 0px 0px 0px 0px; position: absolute; right: 0px; top: 0px; }\",\".framer-a5K0u .framer-14va2zc { flex: none; height: 26px; position: relative; width: 26px; }\",\".framer-a5K0u .framer-1t84hjn { bottom: -6px; flex: none; height: 30px; left: calc(50.00000000000002% - 22px / 2); position: absolute; width: 22px; }\",\".framer-a5K0u .framer-sz44z6 { flex: none; height: 19px; left: calc(50.00000000000002% - 19px / 2); position: absolute; top: calc(50.00000000000002% - 19px / 2); width: 19px; }\",\".framer-a5K0u .framer-1pfn6e { flex: none; height: 24px; left: calc(50.00000000000002% - 24px / 2); overflow: visible; position: absolute; top: calc(50.00000000000002% - 24px / 2); width: 24px; }\",\".framer-a5K0u .framer-1fm9wro { flex: none; height: 22px; left: -1px; position: absolute; top: 2px; width: 25px; }\",\".framer-a5K0u .framer-5b38dh { bottom: 12px; flex: none; left: 5px; overflow: visible; position: absolute; right: 5px; top: 0px; }\",\".framer-a5K0u .framer-49noox { flex: none; height: 13px; left: 0px; position: absolute; top: -1px; width: 13px; }\",\".framer-a5K0u .framer-jaq3ho { flex: none; height: 18px; left: calc(50.00000000000002% - 15px / 2); position: absolute; top: calc(50.00000000000002% - 18px / 2); width: 15px; }\",\".framer-a5K0u .framer-txveie { flex: none; height: 17px; left: calc(46.15384615384618% - 19px / 2); position: absolute; top: calc(50.00000000000002% - 17px / 2); width: 19px; }\",\".framer-a5K0u .framer-141ooep { flex: none; height: 14px; left: calc(50.00000000000002% - 17px / 2); position: absolute; top: calc(50.00000000000002% - 14px / 2); width: 17px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-a5K0u .framer-h83zp4 { gap: 0px; } .framer-a5K0u .framer-h83zp4 > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-a5K0u .framer-h83zp4 > :first-child { margin-left: 0px; } .framer-a5K0u .framer-h83zp4 > :last-child { margin-right: 0px; } }\",\".framer-a5K0u.framer-v-1yxv0n2 .framer-ycolc9, .framer-a5K0u.framer-v-16ftrzf .framer-ycolc9, .framer-a5K0u.framer-v-15wcyh2 .framer-ycolc9, .framer-a5K0u.framer-v-1cew9xx .framer-ycolc9, .framer-a5K0u.framer-v-1ikl64z .framer-ycolc9 { overflow: hidden; }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 26\n * @framerIntrinsicWidth 26\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]},\"xnmK2FijU\":{\"layout\":[\"fixed\",\"fixed\"]},\"ZU5KeNSba\":{\"layout\":[\"fixed\",\"fixed\"]},\"ObfcRyF85\":{\"layout\":[\"fixed\",\"fixed\"]},\"e4rMuMiYs\":{\"layout\":[\"fixed\",\"fixed\"]},\"fOm9y11yV\":{\"layout\":[\"fixed\",\"fixed\"]},\"h2hifIJ4L\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n */ const FramerhkNhAQhKW=withCSS(Component,css,\"framer-a5K0u\");export default FramerhkNhAQhKW;FramerhkNhAQhKW.displayName=\"Icon_longevity\";FramerhkNhAQhKW.defaultProps={height:26,width:26};addPropertyControls(FramerhkNhAQhKW,{variant:{options:[\"o4N4NIf92\",\"xnmK2FijU\",\"ZU5KeNSba\",\"ObfcRyF85\",\"e4rMuMiYs\",\"fOm9y11yV\",\"h2hifIJ4L\"],optionTitles:[\"Emotional\",\"Pain\",\"Riskandfactors\",\"Cognitive\",\"Nutritional\",\"Funcional\",\"Strategis\"],title:\"Variant\",type:ControlType.Enum}});addFonts(FramerhkNhAQhKW,[]);\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerhkNhAQhKW\",\"slots\":[],\"annotations\":{\"framerIntrinsicWidth\":\"26\",\"framerContractVersion\":\"1\",\"framerIntrinsicHeight\":\"26\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"xnmK2FijU\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"ZU5KeNSba\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"ObfcRyF85\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"e4rMuMiYs\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"fOm9y11yV\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"h2hifIJ4L\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./hkNhAQhKW.map", "// Generated by Framer (72f35ee)\nimport{jsx as _jsx}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,cx,getFonts,getPropertyControls,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion}from\"framer-motion\";import*as React from\"react\";import Icon_longevity from\"https://framerusercontent.com/modules/9vBVpv4gcezyuhgvhXuz/VPtmlRd4IbEERnLh8i1x/hkNhAQhKW.js\";const Icon_longevityFonts=getFonts(Icon_longevity);const Icon_longevityControls=getPropertyControls(Icon_longevity);const cycleOrder=[\"M6woAK0_7\"];const variantClassNames={M6woAK0_7:\"framer-v-l458xd\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const humanReadableVariantMap={};const transitions={default:{damping:60,delay:0,duration:.3,ease:[.44,0,.56,1],mass:1,stiffness:500,type:\"spring\"}};const Component=/*#__PURE__*/ React.forwardRef(function({id,style,className,width,height,layoutId,variant:outerVariant=\"M6woAK0_7\",variant1:nUJe9AtSo=\"o4N4NIf92\",...restProps},ref){const outerVariantId=humanReadableVariantMap[outerVariant];const variant=outerVariantId||outerVariant;const{baseVariant,classNames,gestureVariant,setGestureState,setVariant,transition,variants}=useVariantState({cycleOrder,defaultVariant:\"M6woAK0_7\",transitions,variant,variantClassNames});const layoutDependency=variants.join(\"-\")+restProps.layoutDependency;const defaultLayoutId=React.useId();return /*#__PURE__*/ _jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/ _jsx(motion.div,{initial:variant,animate:variants,onHoverStart:()=>setGestureState({isHovered:true}),onHoverEnd:()=>setGestureState({isHovered:false}),onTapStart:()=>setGestureState({isPressed:true}),onTap:()=>setGestureState({isPressed:false}),onTapCancel:()=>setGestureState({isPressed:false}),className:cx(\"framer-oDdfC\",classNames),style:{display:\"contents\"},children:/*#__PURE__*/ _jsx(motion.div,{...restProps,className:cx(\"framer-l458xd\",className),\"data-framer-name\":\"Icon wrapper\",layoutDependency:layoutDependency,layoutId:\"M6woAK0_7\",ref:ref,style:{backgroundColor:\"rgb(36, 43, 115)\",borderBottomLeftRadius:999,borderBottomRightRadius:999,borderTopLeftRadius:999,borderTopRightRadius:999,...style},transition:transition,children:/*#__PURE__*/ _jsx(motion.div,{className:\"framer-1k2quqt-container\",layoutDependency:layoutDependency,layoutId:\"LDlyIzKBN-container\",transition:transition,children:/*#__PURE__*/ _jsx(Icon_longevity,{height:\"100%\",id:\"LDlyIzKBN\",layoutId:\"LDlyIzKBN\",style:{height:\"100%\",width:\"100%\"},variant:nUJe9AtSo,width:\"100%\"})})})})});});const css=['.framer-oDdfC [data-border=\"true\"]::after { content: \"\"; border-width: var(--border-top-width, 0) var(--border-right-width, 0) var(--border-bottom-width, 0) var(--border-left-width, 0); border-color: var(--border-color, none); border-style: var(--border-style, none); width: 100%; height: 100%; position: absolute; box-sizing: border-box; left: 0; top: 0; border-radius: inherit; pointer-events: none; }',\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-oDdfC .framer-62sjae { display: block; }\",\".framer-oDdfC .framer-l458xd { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 10px 10px 10px 10px; position: relative; width: min-content; }\",\".framer-oDdfC .framer-1k2quqt-container { flex: none; height: 26px; position: relative; width: 26px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-oDdfC .framer-l458xd { gap: 0px; } .framer-oDdfC .framer-l458xd > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-oDdfC .framer-l458xd > :first-child { margin-top: 0px; } .framer-oDdfC .framer-l458xd > :last-child { margin-bottom: 0px; } }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 46\n * @framerIntrinsicWidth 46\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"auto\",\"auto\"]}}}\n * @framerVariables {\"nUJe9AtSo\":\"variant1\"}\n */ const Framermh_GtELBG=withCSS(Component,css,\"framer-oDdfC\");export default Framermh_GtELBG;Framermh_GtELBG.displayName=\"Icon_circle\";Framermh_GtELBG.defaultProps={height:46,width:46};addPropertyControls(Framermh_GtELBG,{nUJe9AtSo:(Icon_longevityControls===null||Icon_longevityControls===void 0?void 0:Icon_longevityControls[\"variant\"])&&{...Icon_longevityControls[\"variant\"],defaultValue:\"o4N4NIf92\",hidden:undefined,title:\"Variant\"}});addFonts(Framermh_GtELBG,[...Icon_longevityFonts]);\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"Framermh_GtELBG\",\"slots\":[],\"annotations\":{\"framerIntrinsicWidth\":\"46\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]}}}\",\"framerIntrinsicHeight\":\"46\",\"framerContractVersion\":\"1\",\"framerVariables\":\"{\\\"nUJe9AtSo\\\":\\\"variant1\\\"}\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./mh_GtELBG.map", "// Generated by Framer (722458e)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,getPropertyControls,RichText,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import Icon_longevity from\"https://framerusercontent.com/modules/9vBVpv4gcezyuhgvhXuz/VPtmlRd4IbEERnLh8i1x/hkNhAQhKW.js\";import Icon_circle from\"https://framerusercontent.com/modules/pAAIbrwlamPb8OJ6fqU5/KVZcBMSCc5uigcZQot1M/mh_GtELBG.js\";const Icon_circleFonts=getFonts(Icon_circle);const Icon_longevityFonts=getFonts(Icon_longevity);const Icon_longevityControls=getPropertyControls(Icon_longevity);const enabledGestures={GjTPst4Ya:{hover:true}};const cycleOrder=[\"GjTPst4Ya\",\"cECOQZUig\",\"fiXdPAcFR\"];const serializationHash=\"framer-J4qt9\";const variantClassNames={cECOQZUig:\"framer-v-1p9ptun\",fiXdPAcFR:\"framer-v-5sw8ii\",GjTPst4Ya:\"framer-v-af2k3s\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion(React.Fragment);const humanReadableEnumMap={Cognitive:\"ObfcRyF85\",Emotional:\"o4N4NIf92\",Funcional:\"fOm9y11yV\",Nutritional:\"e4rMuMiYs\",Pain:\"xnmK2FijU\",Riskandfactors:\"ZU5KeNSba\",Strategis:\"h2hifIJ4L\"};const humanReadableVariantMap={\"Variant 1\":\"GjTPst4Ya\",Mobile:\"cECOQZUig\",Variant:\"fiXdPAcFR\"};const getProps=({description,height,icon,icon1,id,title,width,...props})=>{var _ref,_ref1,_ref2,_humanReadableVariantMap_props_variant,_ref3,_humanReadableEnumMap_icon,_ref4,_ref5;return{...props,fTj5SC8z2:(_ref=title!==null&&title!==void 0?title:props.fTj5SC8z2)!==null&&_ref!==void 0?_ref:\"Title\",RQPotZPC3:(_ref1=description!==null&&description!==void 0?description:props.RQPotZPC3)!==null&&_ref1!==void 0?_ref1:\"Description\",s3qlBgNqH:(_ref2=icon1!==null&&icon1!==void 0?icon1:props.s3qlBgNqH)!==null&&_ref2!==void 0?_ref2:true,variant:(_ref3=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref3!==void 0?_ref3:\"GjTPst4Ya\",zRb6iWmZQ:(_ref5=(_ref4=(_humanReadableEnumMap_icon=humanReadableEnumMap[icon])!==null&&_humanReadableEnumMap_icon!==void 0?_humanReadableEnumMap_icon:icon)!==null&&_ref4!==void 0?_ref4:props.zRb6iWmZQ)!==null&&_ref5!==void 0?_ref5:\"o4N4NIf92\"};};const createLayoutDependency=(props,variants)=>variants.join(\"-\")+props.layoutDependency;const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,fTj5SC8z2,RQPotZPC3,zRb6iWmZQ,s3qlBgNqH,...restProps}=getProps(props);const{baseVariant,classNames,gestureVariant,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"GjTPst4Ya\",enabledGestures,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const ref1=React.useRef(null);const isDisplayed=()=>{if(baseVariant===\"fiXdPAcFR\")return true;return false;};const isDisplayed1=value=>{if(baseVariant===\"fiXdPAcFR\")return false;return value;};const defaultLayoutId=React.useId();const sharedStyleClassNames=[];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(motion.div,{...restProps,className:cx(serializationHash,...sharedStyleClassNames,\"framer-af2k3s\",className,classNames),\"data-framer-name\":\"Variant 1\",layoutDependency:layoutDependency,layoutId:\"GjTPst4Ya\",onHoverEnd:()=>setGestureState({isHovered:false}),onHoverStart:()=>setGestureState({isHovered:true}),onTap:()=>setGestureState({isPressed:false}),onTapCancel:()=>setGestureState({isPressed:false}),onTapStart:()=>setGestureState({isPressed:true}),ref:ref!==null&&ref!==void 0?ref:ref1,style:{backgroundColor:\"rgb(246, 248, 248)\",...style},variants:{\"GjTPst4Ya-hover\":{backgroundColor:\"rgb(255, 255, 255)\"}},...addPropertyOverrides({\"GjTPst4Ya-hover\":{\"data-framer-name\":undefined},cECOQZUig:{\"data-framer-name\":\"Mobile\"},fiXdPAcFR:{\"data-framer-name\":undefined}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-e4c0fj\",layoutDependency:layoutDependency,layoutId:\"avI9gALeM\",children:[isDisplayed()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-y76r9p-container\",layoutDependency:layoutDependency,layoutId:\"ZqJc3HgUw-container\",children:/*#__PURE__*/_jsx(Icon_circle,{height:\"100%\",id:\"ZqJc3HgUw\",layoutId:\"ZqJc3HgUw\",variant1:\"o4N4NIf92\",width:\"100%\"})})}),isDisplayed1(s3qlBgNqH)&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-1o1kvuk\",\"data-framer-name\":\"Area\",layoutDependency:layoutDependency,layoutId:\"tXmTYAJ6C\",style:{backgroundColor:\"rgb(36, 43, 115)\",borderBottomLeftRadius:4e3,borderBottomRightRadius:4e3,borderTopLeftRadius:4e3,borderTopRightRadius:4e3},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-bjy538-container\",layoutDependency:layoutDependency,layoutId:\"SC1i4DvKl-container\",children:/*#__PURE__*/_jsx(Icon_longevity,{height:\"100%\",id:\"SC1i4DvKl\",layoutId:\"SC1i4DvKl\",style:{height:\"100%\",width:\"100%\"},variant:zRb6iWmZQ,width:\"100%\"})})})}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-smcsjd\",layoutDependency:layoutDependency,layoutId:\"beRfilBGm\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h2,{style:{\"--font-selector\":\"R0Y7SW50ZXItNzAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"1.4em\",\"--framer-text-color\":\"var(--extracted-1of0zx5, rgb(26, 31, 54))\"},children:\"Title\"})}),className:\"framer-1beu5he\",fonts:[\"GF;Inter-700\"],layoutDependency:layoutDependency,layoutId:\"C5vQwrbww\",style:{\"--extracted-1of0zx5\":\"rgb(26, 31, 54)\"},text:fTj5SC8z2,verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({cECOQZUig:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h2,{style:{\"--font-selector\":\"R0Y7Um9ib3RvLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Roboto\", \"Roboto Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-color\":\"var(--extracted-1of0zx5, rgb(26, 31, 54))\"},children:\"Title\"})}),fonts:[\"GF;Roboto-regular\"]}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7SW50ZXItcmVndWxhcg==\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-line-height\":\"150%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(90, 114, 124))\"},children:\"Description\"})}),className:\"framer-j0fdzu\",fonts:[\"GF;Inter-regular\"],layoutDependency:layoutDependency,layoutId:\"vqAZVBOM1\",style:{\"--extracted-r6o4lv\":\"rgb(90, 114, 124)\"},text:RQPotZPC3,verticalAlignment:\"top\",withExternalLayout:true})]})]})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-J4qt9.framer-681kvm, .framer-J4qt9 .framer-681kvm { display: block; }\",\".framer-J4qt9.framer-af2k3s { align-content: flex-start; align-items: flex-start; cursor: pointer; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; max-width: 1200px; overflow: visible; padding: 32px; position: relative; width: 400px; }\",\".framer-J4qt9 .framer-e4c0fj { 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: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-J4qt9 .framer-y76r9p-container { flex: none; height: auto; position: relative; width: auto; }\",\".framer-J4qt9 .framer-1o1kvuk { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: hidden; padding: 8px; position: relative; width: min-content; will-change: var(--framer-will-change-override, transform); }\",\".framer-J4qt9 .framer-bjy538-container { flex: none; height: 26px; position: relative; width: 26px; }\",\".framer-J4qt9 .framer-smcsjd { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-J4qt9 .framer-1beu5he, .framer-J4qt9 .framer-j0fdzu { flex: none; height: auto; max-width: 100%; overflow: visible; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-J4qt9.framer-af2k3s, .framer-J4qt9 .framer-e4c0fj, .framer-J4qt9 .framer-1o1kvuk, .framer-J4qt9 .framer-smcsjd { gap: 0px; } .framer-J4qt9.framer-af2k3s > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-J4qt9.framer-af2k3s > :first-child, .framer-J4qt9 .framer-smcsjd > :first-child { margin-top: 0px; } .framer-J4qt9.framer-af2k3s > :last-child, .framer-J4qt9 .framer-smcsjd > :last-child { margin-bottom: 0px; } .framer-J4qt9 .framer-e4c0fj > * { margin: 0px; margin-left: calc(24px / 2); margin-right: calc(24px / 2); } .framer-J4qt9 .framer-e4c0fj > :first-child, .framer-J4qt9 .framer-1o1kvuk > :first-child { margin-left: 0px; } .framer-J4qt9 .framer-e4c0fj > :last-child, .framer-J4qt9 .framer-1o1kvuk > :last-child { margin-right: 0px; } .framer-J4qt9 .framer-1o1kvuk > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } .framer-J4qt9 .framer-smcsjd > * { margin: 0px; margin-bottom: calc(8px / 2); margin-top: calc(8px / 2); } }\",\".framer-J4qt9.framer-v-1p9ptun.framer-af2k3s { cursor: unset; padding: 20px; }\",\".framer-J4qt9.framer-v-5sw8ii.framer-af2k3s { cursor: unset; }\",\".framer-J4qt9.framer-v-af2k3s.hover .framer-1beu5he { order: 0; }\",\".framer-J4qt9.framer-v-af2k3s.hover .framer-j0fdzu { order: 1; }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 129\n * @framerIntrinsicWidth 400\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"],\"constraints\":[null,\"1200px\",null,null]},\"cECOQZUig\":{\"layout\":[\"fixed\",\"auto\"],\"constraints\":[null,\"1200px\",null,null]},\"fiXdPAcFR\":{\"layout\":[\"fixed\",\"auto\"],\"constraints\":[null,\"1200px\",null,null]},\"p7yvmxcer\":{\"layout\":[\"fixed\",\"auto\"],\"constraints\":[null,\"1200px\",null,null]}}}\n * @framerVariables {\"fTj5SC8z2\":\"title\",\"RQPotZPC3\":\"description\",\"zRb6iWmZQ\":\"icon\",\"s3qlBgNqH\":\"icon1\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramernxTmZyZw6=withCSS(Component,css,\"framer-J4qt9\");export default FramernxTmZyZw6;FramernxTmZyZw6.displayName=\"Services Card\";FramernxTmZyZw6.defaultProps={height:129,width:400};addPropertyControls(FramernxTmZyZw6,{variant:{options:[\"GjTPst4Ya\",\"cECOQZUig\",\"fiXdPAcFR\"],optionTitles:[\"Variant 1\",\"Mobile\",\"Variant\"],title:\"Variant\",type:ControlType.Enum},fTj5SC8z2:{defaultValue:\"Title\",displayTextArea:false,title:\"Title\",type:ControlType.String},RQPotZPC3:{defaultValue:\"Description\",displayTextArea:true,title:\"Description\",type:ControlType.String},zRb6iWmZQ:(Icon_longevityControls===null||Icon_longevityControls===void 0?void 0:Icon_longevityControls[\"variant\"])&&{...Icon_longevityControls[\"variant\"],defaultValue:\"o4N4NIf92\",description:undefined,hidden:undefined,title:\"Icon\"},s3qlBgNqH:{defaultValue:true,title:\"Icon\",type:ControlType.Boolean}});addFonts(FramernxTmZyZw6,[{explicitInter:true,fonts:[{family:\"Inter\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/inter/v13/UcCO3FwrK3iLTeHuS_fvQtMwCp50KnMw2boKoduKmMEVuFuYMZ1rib2Bg-4.woff2\",weight:\"700\"},{family:\"Roboto\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/roboto/v30/KFOmCnqEu92Fr1Me4GZLCzYlKw.woff2\",weight:\"400\"},{family:\"Inter\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/inter/v13/UcCO3FwrK3iLTeHuS_fvQtMwCp50KnMw2boKoduKmMEVuLyfMZ1rib2Bg-4.woff2\",weight:\"400\"}]},...Icon_circleFonts,...Icon_longevityFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramernxTmZyZw6\",\"slots\":[],\"annotations\":{\"framerComponentViewportWidth\":\"true\",\"framerVariables\":\"{\\\"fTj5SC8z2\\\":\\\"title\\\",\\\"RQPotZPC3\\\":\\\"description\\\",\\\"zRb6iWmZQ\\\":\\\"icon\\\",\\\"s3qlBgNqH\\\":\\\"icon1\\\"}\",\"framerContractVersion\":\"1\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"],\\\"constraints\\\":[null,\\\"1200px\\\",null,null]},\\\"cECOQZUig\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"],\\\"constraints\\\":[null,\\\"1200px\\\",null,null]},\\\"fiXdPAcFR\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"],\\\"constraints\\\":[null,\\\"1200px\\\",null,null]},\\\"p7yvmxcer\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"],\\\"constraints\\\":[null,\\\"1200px\\\",null,null]}}}\",\"framerIntrinsicHeight\":\"129\",\"framerImmutableVariables\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerIntrinsicWidth\":\"400\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./nxTmZyZw6.map", "// Generated by Framer (ab692b1)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,ComponentViewportProvider,Container,cx,GeneratedComponentContext,getFonts,getLoadingLazyAtYPosition,Image,PropertyOverrides,ResolveLinks,RichText,Text,useComponentViewport,useCustomCursors,useHydratedBreakpointVariants,useIsOnFramerCanvas,useLocaleInfo,useRouteElementId,useRouter,withCSS,withFX,withOptimizedAppearEffect}from\"framer\";import{LayoutGroup,motion}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import{Video}from\"https://framerusercontent.com/modules/lRDHiNWNVWmE0lqtoVHP/qXQVWG1AZxpdrbBmhE1U/Video.js\";import{Youtube as YouTube}from\"https://framerusercontent.com/modules/NEd4VmDdsxM3StIUbddO/fJ8vwGe6kxfz7kj9H7Sk/YouTube.js\";import Menu_NewAnimation from\"#framer/local/canvasComponent/czQqGIdU8/czQqGIdU8.js\";import Testimonial from\"#framer/local/canvasComponent/GybZbmJ86/GybZbmJ86.js\";import ServicesCard from\"#framer/local/canvasComponent/nxTmZyZw6/nxTmZyZw6.js\";import Button from\"#framer/local/canvasComponent/OneP4W_UD/OneP4W_UD.js\";import FooterDark from\"#framer/local/canvasComponent/yrWs5i3Cb/yrWs5i3Cb.js\";import metadataProvider from\"#framer/local/webPageMetadata/GLz2DcH7V/GLz2DcH7V.js\";const Menu_NewAnimationFonts=getFonts(Menu_NewAnimation);const RichTextWithFX=withFX(RichText);const ButtonFonts=getFonts(Button);const MotionDivWithOptimizedAppearEffect=withOptimizedAppearEffect(motion.div);const YouTubeFonts=getFonts(YouTube);const ContainerWithOptimizedAppearEffect=withOptimizedAppearEffect(Container);const MotionDivWithFX=withFX(motion.div);const ImageWithFX=withFX(Image);const VideoFonts=getFonts(Video);const MotionFigureWithFX=withFX(motion.figure);const ServicesCardFonts=getFonts(ServicesCard);const TestimonialFonts=getFonts(Testimonial);const FooterDarkFonts=getFonts(FooterDark);const breakpoints={hf4AStI17:\"(min-width: 1440px)\",OV_DLPKnG:\"(max-width: 809px)\",pJFvs9CPn:\"(min-width: 810px) and (max-width: 1439px)\"};const isBrowser=()=>typeof document!==\"undefined\";const serializationHash=\"framer-hNZcO\";const variantClassNames={hf4AStI17:\"framer-v-165zar4\",OV_DLPKnG:\"framer-v-1c0dtk3\",pJFvs9CPn:\"framer-v-2an5nk\"};const animation={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:0,y:150};const transition1={damping:61,delay:0,mass:1.5,stiffness:400,type:\"spring\"};const animation1={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition1,x:0,y:150};const transition2={damping:30,delay:0,mass:1,stiffness:400,type:\"spring\"};const animation2={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition2,x:0,y:0};const animation3={opacity:.001,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:0,y:0};const animation4={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:0,y:100};const transition3={damping:80,delay:.1,mass:1,stiffness:400,type:\"spring\"};const animation5={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition3,x:0,y:100};const animation6={opacity:.001,rotate:0,rotateX:0,rotateY:0,scale:.5,skewX:0,skewY:0,transformPerspective:1200,x:0,y:0};const transition4={damping:80,delay:.2,mass:1,stiffness:400,type:\"spring\"};const animation7={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition4,x:0,y:100};const animation8={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:0,y:0};const animation9={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition2,x:0,y:0};const animation10={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0};const animation11={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition2,x:0,y:0};const transformTemplate1=(_,t)=>`translateY(-50%) ${t}`;const transformTemplate2=(_,t)=>`translateX(-50%) ${t}`;const HTMLStyle=({value})=>{const onCanvas=useIsOnFramerCanvas();if(onCanvas)return null;return /*#__PURE__*/_jsx(\"style\",{dangerouslySetInnerHTML:{__html:value},\"data-framer-html-style\":\"\"});};const humanReadableVariantMap={Desktop:\"hf4AStI17\",Phone:\"OV_DLPKnG\",Tablet:\"pJFvs9CPn\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"hf4AStI17\"};};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const fallbackRef=useRef(null);const refBinding=ref??fallbackRef;const defaultLayoutId=React.useId();const{activeLocale,setLocale}=useLocaleInfo();const componentViewport=useComponentViewport();const{style,className,layoutId,variant,...restProps}=getProps(props);React.useEffect(()=>{const metadata=metadataProvider(undefined,activeLocale);if(metadata.robots){let robotsTag=document.querySelector('meta[name=\"robots\"]');if(robotsTag){robotsTag.setAttribute(\"content\",metadata.robots);}else{robotsTag=document.createElement(\"meta\");robotsTag.setAttribute(\"name\",\"robots\");robotsTag.setAttribute(\"content\",metadata.robots);document.head.appendChild(robotsTag);}}},[undefined,activeLocale]);React.useInsertionEffect(()=>{const metadata=metadataProvider(undefined,activeLocale);document.title=metadata.title||\"\";if(metadata.viewport){document.querySelector('meta[name=\"viewport\"]')?.setAttribute(\"content\",metadata.viewport);}},[undefined,activeLocale]);const[baseVariant,hydratedBaseVariant]=useHydratedBreakpointVariants(variant,breakpoints,false);const gestureVariant=undefined;const sharedStyleClassNames=[];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const elementId=useRouteElementId(\"Krs4g0Tka\");const ref1=React.useRef(null);const isDisplayed=()=>{if(!isBrowser())return true;if(baseVariant===\"OV_DLPKnG\")return true;return false;};const isDisplayed1=()=>{if(!isBrowser())return true;if(baseVariant===\"pJFvs9CPn\")return true;return false;};const isDisplayed2=()=>{if(!isBrowser())return true;if([\"pJFvs9CPn\",\"OV_DLPKnG\"].includes(baseVariant))return false;return true;};const elementId1=useRouteElementId(\"M3LWPWcHj\");const ref2=React.useRef(null);const isDisplayed3=()=>{if(!isBrowser())return true;if(baseVariant===\"OV_DLPKnG\")return false;return true;};const isDisplayed4=()=>{if(!isBrowser())return true;if(baseVariant===\"pJFvs9CPn\")return false;return true;};const router=useRouter();const elementId2=useRouteElementId(\"kyZVUjEKc\");const ref3=React.useRef(null);useCustomCursors({});return /*#__PURE__*/_jsx(GeneratedComponentContext.Provider,{value:{primaryVariantId:\"hf4AStI17\",variantClassNames},children:/*#__PURE__*/_jsxs(LayoutGroup,{id:layoutId??defaultLayoutId,children:[/*#__PURE__*/_jsx(HTMLStyle,{value:\"html body { background: rgb(2, 1, 5); }\"}),/*#__PURE__*/_jsxs(motion.div,{...restProps,className:cx(scopingClassNames,\"framer-165zar4\",className),ref:refBinding,style:{...style},children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{OV_DLPKnG:{y:(componentViewport?.y||0)+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:67,width:componentViewport?.width||\"100vw\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-1rm6kjl-container\",nodeId:\"b1bdFTrUm\",scopeId:\"GLz2DcH7V\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{OV_DLPKnG:{variant:\"w1pb0wqtK\"}},children:/*#__PURE__*/_jsx(Menu_NewAnimation,{height:\"100%\",id:\"b1bdFTrUm\",layoutId:\"b1bdFTrUm\",style:{width:\"100%\"},variant:\"e_edyWxqz\",width:\"100%\"})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{OV_DLPKnG:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1024,intrinsicWidth:967,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+67),pixelHeight:1024,pixelWidth:967,sizes:componentViewport?.width||\"100vw\",src:\"https://framerusercontent.com/images/FbsrJWfHDwud6FtvSCkX2xr3iU.webp\",srcSet:\"https://framerusercontent.com/images/FbsrJWfHDwud6FtvSCkX2xr3iU.webp 967w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:2520,intrinsicWidth:4096,pixelHeight:2520,pixelWidth:4096,sizes:componentViewport?.width||\"100vw\",src:\"https://framerusercontent.com/images/p77AUYqf8lITaPOehwNd2tXoY.jpg\",srcSet:\"https://framerusercontent.com/images/p77AUYqf8lITaPOehwNd2tXoY.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/p77AUYqf8lITaPOehwNd2tXoY.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/p77AUYqf8lITaPOehwNd2tXoY.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/p77AUYqf8lITaPOehwNd2tXoY.jpg 4096w\"},className:\"framer-188a6gy\",\"data-framer-name\":\"Hero1\",id:elementId,ref:ref1,children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1maitkq\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{OV_DLPKnG:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"Q1VTVE9NO1Jvc2l0YSBMb25nZXZpdHkgQm9sZA==\",\"--framer-font-family\":'\"Rosita Longevity Bold\", sans-serif',\"--framer-font-size\":\"64px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"The Longevity coach for seniors 60+\"})})}},children:/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation,__framer__exit:animation1,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"Q1VTVE9NO1Jvc2l0YSBMb25nZXZpdHkgQm9sZA==\",\"--framer-font-family\":'\"Rosita Longevity Bold\", \"Rosita Longevity Bold Placeholder\", sans-serif',\"--framer-font-size\":\"68px\",\"--framer-line-height\":\"1em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Reach your optimal health with less pain\"})}),className:\"framer-18dffth\",fonts:[\"CUSTOM;Rosita Longevity Bold\"],style:{transformPerspective:1200},verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsxs(MotionDivWithOptimizedAppearEffect,{animate:animation2,className:\"framer-19csy8v\",\"data-framer-appear-id\":\"19csy8v\",\"data-framer-name\":\"Text and buttons\",initial:animation3,optimized:true,style:{transformPerspective:1200},children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{OV_DLPKnG:{children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter-Medium\", \"Inter\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-font-weight\":\"500\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Join the most advanced Longevity Assistant App to help seniors 60+ extend healthspan. \"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter-Medium\", \"Inter\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-font-weight\":\"500\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:/*#__PURE__*/_jsx(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter-Medium\", \"Inter\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-font-weight\":\"500\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Measure biomarkers, set quarterly objectives, and get daily tools and routines with LIVE coaching and thousands of classes to reach your health potential.\"})]})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-font-weight\":\"500\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:[\"The most comprehensive Chronic Pain Plan for seniors 60+ that aims to extend healthspan\",/*#__PURE__*/_jsx(\"br\",{}),/*#__PURE__*/_jsx(\"br\",{className:\"trailing-break\"})]})}),className:\"framer-mobof1\",fonts:[\"Inter-Medium\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsxs(MotionDivWithOptimizedAppearEffect,{animate:animation2,className:\"framer-1pl1lw8\",\"data-framer-appear-id\":\"1pl1lw8\",initial:animation3,optimized:true,style:{transformPerspective:1200},children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{OV_DLPKnG:{width:`calc(min(min(${componentViewport?.width||\"100vw\"} - 64px, 720px), 311px) - 64px)`,y:(componentViewport?.y||0)+0+67+120+0+0+76.8+0+409+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:30,width:\"273.5px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-17kkr89-container\",nodeId:\"hs1yZWhrk\",scopeId:\"GLz2DcH7V\",children:/*#__PURE__*/_jsx(Button,{EX6TsAYwP:999,height:\"100%\",id:\"hs1yZWhrk\",kBabYW3iu:\"Subscribe\",layoutId:\"hs1yZWhrk\",lvEysNOCf:12,Qoi_obRja:\"Google Play\",style:{width:\"100%\"},uDmxwZHRG:\"var(--token-274fb780-9951-4059-956e-43216c6f8956, rgb(120, 85, 255))\",ursoR0088:true,variant:\"sTxwMSNDA\",width:\"100%\",XMPsLLz6U:\"Google\",yjPoeoFXu:\"https://play.google.com/store/apps/details?id=com.heartsradiant.rosita&hl=en&gl=US&pli=1\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{OV_DLPKnG:{width:`calc(min(min(${componentViewport?.width||\"100vw\"} - 64px, 720px), 311px) - 64px)`,y:(componentViewport?.y||0)+0+67+120+0+0+76.8+0+409+0+54}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:30,width:\"273.5px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-jjn1fy-container\",nodeId:\"Lzi2rr2jz\",scopeId:\"GLz2DcH7V\",children:/*#__PURE__*/_jsx(Button,{EX6TsAYwP:999,height:\"100%\",id:\"Lzi2rr2jz\",kBabYW3iu:\"Subscribe\",layoutId:\"Lzi2rr2jz\",lvEysNOCf:12,Qoi_obRja:\"App Store\",style:{width:\"100%\"},uDmxwZHRG:\"var(--token-274fb780-9951-4059-956e-43216c6f8956, rgb(120, 85, 255))\",ursoR0088:true,variant:\"sTxwMSNDA\",width:\"100%\",XMPsLLz6U:\"Apple\",yjPoeoFXu:\"https://apps.apple.com/ES/app/id1535692117?mt=8\"})})})})]})]})]})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-bxcq3o\",\"data-framer-name\":\"Introduction\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-uhr84p\",children:[/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition3},__framer__animateOnce:true,__framer__enter:animation4,__framer__exit:animation5,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-15vg0xi\",style:{transformPerspective:1200},children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TWFucm9wZS04MDA=\",\"--framer-font-family\":'\"Manrope\", \"Manrope Placeholder\", sans-serif',\"--framer-font-weight\":\"800\",\"--framer-letter-spacing\":\"1px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-2e606580-c5cb-45c2-a66e-07cb8dbe5a38, rgb(136, 0, 255))\",\"--framer-text-transform\":\"uppercase\"},children:\"hear it from our founder Clara\"})}),className:\"framer-1kutzkt\",fonts:[\"GF;Manrope-800\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"Q1VTVE9NO1Jvc2l0YSBMb25nZXZpdHkgQm9sZA==\",\"--framer-font-family\":'\"Rosita Longevity Bold\", \"Rosita Longevity Bold Placeholder\", sans-serif',\"--framer-font-size\":\"48px\",\"--framer-letter-spacing\":\"-1.8px\",\"--framer-line-height\":\"1em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(25, 21, 78)\"},children:\"A longevity plan accessible to everyone\"})}),className:\"framer-v2bpbf\",fonts:[\"CUSTOM;Rosita Longevity Bold\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNTAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"1.7em\",\"--framer-text-color\":\"var(--token-fbf0164e-dee2-4e19-9b25-5c9f4ebdcda6, rgb(91, 94, 118))\"},children:/*#__PURE__*/_jsx(\"em\",{children:\"Life expectancy in Western countries is 85 and growing, but Healthy Life expectancy is stagnant at 65.\"})}),/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNTAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"1.7em\",\"--framer-text-color\":\"var(--token-fbf0164e-dee2-4e19-9b25-5c9f4ebdcda6, rgb(91, 94, 118))\"},children:[/*#__PURE__*/_jsx(\"br\",{}),/*#__PURE__*/_jsx(\"em\",{children:\"88% of seniors suffer more than 20 years with Chronic Pain and without a Comprehensive solution that works. \"})]}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNTAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"1.7em\",\"--framer-text-color\":\"var(--token-fbf0164e-dee2-4e19-9b25-5c9f4ebdcda6, rgb(91, 94, 118))\"},children:/*#__PURE__*/_jsx(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNTAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"1.7em\",\"--framer-text-color\":\"var(--token-fbf0164e-dee2-4e19-9b25-5c9f4ebdcda6, rgb(91, 94, 118))\"},children:/*#__PURE__*/_jsx(\"em\",{children:\"As founders of the largest Longevity Clinic for Seniors in Europe, we have helped 300,000 seniors define their healthy aging plan to live more years with good health and less pain. \"})}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNTAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"1.7em\",\"--framer-text-color\":\"var(--token-fbf0164e-dee2-4e19-9b25-5c9f4ebdcda6, rgb(91, 94, 118))\"},children:/*#__PURE__*/_jsx(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNTAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"1.7em\",\"--framer-text-color\":\"var(--token-fbf0164e-dee2-4e19-9b25-5c9f4ebdcda6, rgb(91, 94, 118))\"},children:/*#__PURE__*/_jsx(\"em\",{children:\"Today you can benefit from our 30+ years of experience using our Longevity Methodology to live with less pain from your own home with the most complete mobile App you can download today.\"})}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNTAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"1.7em\",\"--framer-text-color\":\"var(--token-fbf0164e-dee2-4e19-9b25-5c9f4ebdcda6, rgb(91, 94, 118))\"},children:/*#__PURE__*/_jsx(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNTAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"1.7em\",\"--framer-text-color\":\"var(--token-fbf0164e-dee2-4e19-9b25-5c9f4ebdcda6, rgb(91, 94, 118))\"},children:\"Clara Fern\\xe1ndez\"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNTAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"1.7em\",\"--framer-text-color\":\"var(--token-fbf0164e-dee2-4e19-9b25-5c9f4ebdcda6, rgb(91, 94, 118))\"},children:/*#__PURE__*/_jsx(\"strong\",{children:\"CEO RxLongevity\"})})]}),className:\"framer-5rbo55\",fonts:[\"GF;Inter-500\",\"GF;Inter-700\",\"GF;Inter-700italic\",\"GF;Inter-500italic\"],verticalAlignment:\"top\",withExternalLayout:true}),isDisplayed()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(ContainerWithOptimizedAppearEffect,{animate:animation2,className:\"framer-855xcv-container hidden-165zar4 hidden-2an5nk\",\"data-framer-appear-id\":\"855xcv\",initial:animation6,isAuthoredByUser:true,isModuleExternal:true,nodeId:\"Hf_8zeoL9\",optimized:true,rendersWithMotion:true,scopeId:\"GLz2DcH7V\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{OV_DLPKnG:{borderRadius:24,bottomLeftRadius:24,bottomRightRadius:24,topLeftRadius:24,topRightRadius:24}},children:/*#__PURE__*/_jsx(YouTube,{borderRadius:32,bottomLeftRadius:32,bottomRightRadius:32,height:\"100%\",id:\"Hf_8zeoL9\",isMixedBorderRadius:false,isRed:false,layoutId:\"Hf_8zeoL9\",play:\"On\",shouldMute:false,style:{height:\"100%\",maxWidth:\"100%\",width:\"100%\"},thumbnail:\"High Quality\",topLeftRadius:32,topRightRadius:32,url:\"https://youtu.be/q_PbAN-LfRc\",width:\"100%\"})})})}),isDisplayed1()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(ContainerWithOptimizedAppearEffect,{animate:animation2,className:\"framer-12nhv4e-container hidden-165zar4 hidden-1c0dtk3\",\"data-framer-appear-id\":\"12nhv4e\",initial:animation6,isAuthoredByUser:true,isModuleExternal:true,nodeId:\"ykLGvhYVV\",optimized:true,rendersWithMotion:true,scopeId:\"GLz2DcH7V\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(YouTube,{borderRadius:32,bottomLeftRadius:32,bottomRightRadius:32,height:\"100%\",id:\"ykLGvhYVV\",isMixedBorderRadius:false,isRed:false,layoutId:\"ykLGvhYVV\",play:\"On\",shouldMute:false,style:{height:\"100%\",maxWidth:\"100%\",width:\"100%\"},thumbnail:\"High Quality\",topLeftRadius:32,topRightRadius:32,url:\"https://youtu.be/q_PbAN-LfRc\",width:\"100%\"})})})]}),isDisplayed2()&&/*#__PURE__*/_jsx(ImageWithFX,{__framer__animate:{transition:transition4},__framer__animateOnce:true,__framer__enter:animation4,__framer__exit:animation7,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,background:{alt:\"Gradient\",fit:\"fill\",intrinsicHeight:2880,intrinsicWidth:5120,pixelHeight:2880,pixelWidth:5120,sizes:\"660px\",src:\"https://framerusercontent.com/images/d1xv23lohWIezwkwQogANBdUFa0.jpg\",srcSet:\"https://framerusercontent.com/images/d1xv23lohWIezwkwQogANBdUFa0.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/d1xv23lohWIezwkwQogANBdUFa0.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/d1xv23lohWIezwkwQogANBdUFa0.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/d1xv23lohWIezwkwQogANBdUFa0.jpg?scale-down-to=4096 4096w,https://framerusercontent.com/images/d1xv23lohWIezwkwQogANBdUFa0.jpg 5120w\"},className:\"framer-1tnu9dg hidden-2an5nk hidden-1c0dtk3\",\"data-border\":true,style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(ContainerWithOptimizedAppearEffect,{animate:animation2,className:\"framer-1ndqv8b-container\",\"data-framer-appear-id\":\"1ndqv8b\",initial:animation6,isAuthoredByUser:true,isModuleExternal:true,nodeId:\"VX2Hq5jIB\",optimized:true,rendersWithMotion:true,scopeId:\"GLz2DcH7V\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(YouTube,{borderRadius:32,bottomLeftRadius:32,bottomRightRadius:32,height:\"100%\",id:\"VX2Hq5jIB\",isMixedBorderRadius:false,isRed:false,layoutId:\"VX2Hq5jIB\",play:\"On\",shouldMute:true,style:{height:\"100%\",maxWidth:\"100%\",width:\"100%\"},thumbnail:\"High Quality\",topLeftRadius:32,topRightRadius:32,url:\"https://youtu.be/q_PbAN-LfRc\",width:\"100%\"})})})})]})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-9ebkif\",\"data-framer-name\":\"Metrics\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{OV_DLPKnG:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"Q1VTVE9NO1Jvc2l0YSBMb25nZXZpdHkgQm9sZA==\",\"--framer-font-family\":'\"Rosita Longevity Bold\", \"Rosita Longevity Bold Placeholder\", sans-serif',\"--framer-font-size\":\"50px\",\"--framer-letter-spacing\":\"-1.8px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(2, 2, 43)\"},children:\"It works because people use it\"})})},pJFvs9CPn:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"Q1VTVE9NO1Jvc2l0YSBMb25nZXZpdHkgQm9sZA==\",\"--framer-font-family\":'\"Rosita Longevity Bold\", \"Rosita Longevity Bold Placeholder\", sans-serif',\"--framer-font-size\":\"50px\",\"--framer-letter-spacing\":\"-1.8px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(2, 2, 43)\"},children:\"It works because people use it\"})})}},children:/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:false,__framer__enter:animation8,__framer__exit:animation9,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"Q1VTVE9NO1Jvc2l0YSBMb25nZXZpdHkgQm9sZA==\",\"--framer-font-family\":'\"Rosita Longevity Bold\", \"Rosita Longevity Bold Placeholder\", sans-serif',\"--framer-font-size\":\"50px\",\"--framer-letter-spacing\":\"-1.8px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(2, 2, 43)\"},children:\"It works because people use it\"})}),className:\"framer-mjz9jn\",fonts:[\"CUSTOM;Rosita Longevity Bold\"],style:{transformPerspective:1200},verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:false,__framer__enter:animation8,__framer__exit:animation9,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h2\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNTAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-2840d062-261b-4eca-acdb-d7c218ee2723, rgb(102, 101, 114))\"},children:[\"Most platforms \",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"rgb(110, 0, 173)\"},children:/*#__PURE__*/_jsx(\"strong\",{children:\"fail\"})}),\" because people barely use them after the first day. \",/*#__PURE__*/_jsx(\"br\",{}),/*#__PURE__*/_jsx(\"br\",{}),\"We have achieved incredible engagement metrics and long term retention leading to sustained health results in the short and long term. So it works, because people love it\"]})}),className:\"framer-2vgnhp\",fonts:[\"GF;Inter-500\",\"GF;Inter-700\"],style:{transformPerspective:1200},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:false,__framer__enter:animation8,__framer__exit:animation9,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-qvzifq\",style:{transformPerspective:1200},children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1jri064\",\"data-framer-name\":\"Card\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-cri2b5\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNjAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-0.5px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-b9c3c957-2c66-49c4-9732-fa196fddac20, rgb(0, 17, 34))\"},children:\"Weekly usage\"})}),className:\"framer-10bemvu\",fonts:[\"GF;Inter-600\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{pJFvs9CPn:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{style:{\"--font-selector\":\"Q1VTVE9NO1Jvc2l0YSBMb25nZXZpdHkgQm9sZA==\",\"--framer-font-family\":'\"Rosita Longevity Bold\", \"Rosita Longevity Bold Placeholder\", sans-serif',\"--framer-font-size\":\"48px\",\"--framer-letter-spacing\":\"-0.5px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(110, 0, 173)\"},children:\"180\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{style:{\"--font-selector\":\"Q1VTVE9NO1Jvc2l0YSBMb25nZXZpdHkgQm9sZA==\",\"--framer-font-family\":'\"Rosita Longevity Bold\", \"Rosita Longevity Bold Placeholder\", sans-serif',\"--framer-font-size\":\"80px\",\"--framer-letter-spacing\":\"-0.5px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(110, 0, 173)\"},children:\"180\"})}),className:\"framer-1sq6ub3\",fonts:[\"CUSTOM;Rosita Longevity Bold\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{pJFvs9CPn:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNTAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"1.6em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(102, 102, 102)\"},children:\" minutes per user per week \"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNTAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"1.6em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(102, 102, 102)\"},children:\" minutes per user per week \"})}),className:\"framer-dq4s97\",fonts:[\"GF;Inter-500\"],verticalAlignment:\"top\",withExternalLayout:true})})]})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1vjazh1\",\"data-framer-name\":\"Card\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-tom72m\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNjAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-0.5px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-b9c3c957-2c66-49c4-9732-fa196fddac20, rgb(0, 17, 34))\"},children:\"Leg Strength\"})}),className:\"framer-14ehw4o\",fonts:[\"GF;Inter-600\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{pJFvs9CPn:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{style:{\"--font-selector\":\"Q1VTVE9NO1Jvc2l0YSBMb25nZXZpdHkgQm9sZA==\",\"--framer-font-family\":'\"Rosita Longevity Bold\", \"Rosita Longevity Bold Placeholder\", sans-serif',\"--framer-font-size\":\"48px\",\"--framer-letter-spacing\":\"-0.5px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(110, 0, 173)\"},children:\"30%\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{style:{\"--font-selector\":\"Q1VTVE9NO1Jvc2l0YSBMb25nZXZpdHkgQm9sZA==\",\"--framer-font-family\":'\"Rosita Longevity Bold\", \"Rosita Longevity Bold Placeholder\", sans-serif',\"--framer-font-size\":\"80px\",\"--framer-letter-spacing\":\"-0.5px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(110, 0, 173)\"},children:\"30%\"})}),className:\"framer-1km1zek\",fonts:[\"CUSTOM;Rosita Longevity Bold\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{pJFvs9CPn:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNTAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"1.6em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(102, 102, 102)\"},children:\"Increase after 3 months \"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNTAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"1.6em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(102, 102, 102)\"},children:\"Increase after 3 months \"})}),className:\"framer-1lxjro1\",fonts:[\"GF;Inter-500\"],verticalAlignment:\"top\",withExternalLayout:true})})]})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-xnuc24\",\"data-framer-name\":\"Card\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-nm3g1i\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNjAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-0.5px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-b9c3c957-2c66-49c4-9732-fa196fddac20, rgb(0, 17, 34))\"},children:\"Pain Reduction\"})}),className:\"framer-b3irk6\",fonts:[\"GF;Inter-600\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{pJFvs9CPn:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{style:{\"--font-selector\":\"Q1VTVE9NO1Jvc2l0YSBMb25nZXZpdHkgQm9sZA==\",\"--framer-font-family\":'\"Rosita Longevity Bold\", \"Rosita Longevity Bold Placeholder\", sans-serif',\"--framer-font-size\":\"48px\",\"--framer-letter-spacing\":\"-0.5px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(110, 0, 173)\"},children:\"75%\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{style:{\"--font-selector\":\"Q1VTVE9NO1Jvc2l0YSBMb25nZXZpdHkgQm9sZA==\",\"--framer-font-family\":'\"Rosita Longevity Bold\", \"Rosita Longevity Bold Placeholder\", sans-serif',\"--framer-font-size\":\"80px\",\"--framer-letter-spacing\":\"-0.5px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(110, 0, 173)\"},children:\"75%\"})}),className:\"framer-1ndlkt1\",fonts:[\"CUSTOM;Rosita Longevity Bold\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{pJFvs9CPn:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNTAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"1.6em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(102, 102, 102)\"},children:\"Reported reduction in pain\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNTAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"1.6em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(102, 102, 102)\"},children:\"Reported reduction in pain\"})}),className:\"framer-c393rz\",fonts:[\"GF;Inter-500\"],verticalAlignment:\"top\",withExternalLayout:true})})]})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-flliov\",\"data-framer-name\":\"Card\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1q3hg2f\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNjAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-0.5px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-b9c3c957-2c66-49c4-9732-fa196fddac20, rgb(0, 17, 34))\"},children:\"Risk of Falling\"})}),className:\"framer-vz8cgo\",fonts:[\"GF;Inter-600\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{pJFvs9CPn:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{style:{\"--font-selector\":\"Q1VTVE9NO1Jvc2l0YSBMb25nZXZpdHkgQm9sZA==\",\"--framer-font-family\":'\"Rosita Longevity Bold\", \"Rosita Longevity Bold Placeholder\", sans-serif',\"--framer-font-size\":\"48px\",\"--framer-letter-spacing\":\"-0.5px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(110, 0, 173)\"},children:\"78%\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{style:{\"--font-selector\":\"Q1VTVE9NO1Jvc2l0YSBMb25nZXZpdHkgQm9sZA==\",\"--framer-font-family\":'\"Rosita Longevity Bold\", \"Rosita Longevity Bold Placeholder\", sans-serif',\"--framer-font-size\":\"80px\",\"--framer-letter-spacing\":\"-0.5px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(110, 0, 173)\"},children:\"78%\"})}),className:\"framer-luvuh6\",fonts:[\"CUSTOM;Rosita Longevity Bold\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{pJFvs9CPn:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNTAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"1.6em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(102, 102, 102)\"},children:\"Reduction in risk of falling\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNTAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"1.6em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(102, 102, 102)\"},children:\"Reduction in risk of falling\"})}),className:\"framer-1lnf2fg\",fonts:[\"GF;Inter-500\"],verticalAlignment:\"top\",withExternalLayout:true})})]})})]})]}),/*#__PURE__*/_jsxs(\"section\",{className:\"framer-1xuit5s\",\"data-framer-name\":\"Technology\",id:elementId1,ref:ref2,children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-17lb497\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{OV_DLPKnG:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"Q1VTVE9NO1Jvc2l0YSBMb25nZXZpdHkgQm9sZA==\",\"--framer-font-family\":'\"Rosita Longevity Bold\", \"Rosita Longevity Bold Placeholder\", sans-serif',\"--framer-font-size\":\"32px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:/*#__PURE__*/_jsx(\"span\",{\"data-text-fill\":\"true\",style:{backgroundImage:\"linear-gradient(0deg, rgb(255, 255, 255) 0%, rgba(255, 255, 255, 0.8) 100%)\"},children:\"Technology designed for Seniors 60+\"})})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"Q1VTVE9NO1Jvc2l0YSBMb25nZXZpdHkgQm9sZA==\",\"--framer-font-family\":'\"Rosita Longevity Bold\", \"Rosita Longevity Bold Placeholder\", sans-serif',\"--framer-font-size\":\"48px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:/*#__PURE__*/_jsx(\"span\",{\"data-text-fill\":\"true\",style:{backgroundImage:\"linear-gradient(0deg, rgb(255, 255, 255) 0%, rgba(255, 255, 255, 0.8) 100%)\"},children:\"Technology designed for Seniors 60+\"})})}),className:\"framer-1ms2341\",fonts:[\"CUSTOM;Rosita Longevity Bold\"],verticalAlignment:\"top\",withExternalLayout:true})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-15ve6wq\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-rp6sxp\"})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h2\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNTAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:[\"Seniors are traditionally the latests segment to receive the benefits from science and tech. But we are here for the early boomers who start to notice how their bodies are changing and need new solutions to continue living life the way they want. Our product is designed for you at every level.\",/*#__PURE__*/_jsx(\"br\",{}),/*#__PURE__*/_jsx(\"br\",{}),\"Our services are powered by AI to analyze and measure your progress, to personalize and select the right programs, and to motivate and adapt your plans and goals with a hybrid of regular calls with physiotherapists, continuous followup with AI chatbots and a community of people like you.\",/*#__PURE__*/_jsx(\"br\",{}),/*#__PURE__*/_jsx(\"br\",{}),\"Work with us to build longevity pyramid towards reaching your Optimal Health, not just avoiding pain.\"]})}),className:\"framer-134bvt2\",fonts:[\"GF;Inter-500\"],verticalAlignment:\"top\",withExternalLayout:true}),isDisplayed()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1uhl088-container hidden-165zar4 hidden-2an5nk\",isModuleExternal:true,nodeId:\"ejVO84NY2\",scopeId:\"GLz2DcH7V\",children:/*#__PURE__*/_jsx(Video,{backgroundColor:\"rgba(0, 0, 0, 0)\",borderRadius:20,bottomLeftRadius:20,bottomRightRadius:20,controls:false,height:\"100%\",id:\"ejVO84NY2\",isMixedBorderRadius:false,layoutId:\"ejVO84NY2\",loop:true,muted:true,objectFit:\"cover\",playing:true,posterEnabled:false,srcFile:\"https://framerusercontent.com/assets/4o4qd6kSNUpupanxwcLj3d6EP8Q.mp4\",srcType:\"Upload\",srcUrl:\"https://assets.mixkit.co/videos/preview/mixkit-ice-cream-glass-of-red-soda-5094-small.mp4\",startTime:0,style:{height:\"100%\",width:\"100%\"},topLeftRadius:20,topRightRadius:20,volume:25,width:\"100%\"})})}),isDisplayed3()&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-1aijq3g hidden-1c0dtk3\",\"data-framer-name\":\"Code and app\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1kcumdo\",children:[/*#__PURE__*/_jsxs(MotionFigureWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation10,__framer__exit:animation11,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-11ltf1n\",\"data-border\":true,transformTemplate:transformTemplate1,children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-x7nc4l\",children:/*#__PURE__*/_jsx(Text,{__fromCanvasComponent:true,alignment:\"center\",className:\"framer-w7zovw\",fonts:[\"GF;DM Mono-regular\"],rawHTML:\"<span style='font-size: 0; line-height: 0; tab-size: 4; white-space: inherit; word-wrap: inherit'><span style='direction: ltr; font-size: 0'><span style=''>1</span><br></span><span style='direction: ltr; font-size: 0'><span style=''>2</span><br></span><span style='direction: ltr; font-size: 0'><span style=''>3</span><br></span><span style='direction: ltr; font-size: 0'><span style=''>4</span><br></span><span style='direction: ltr; font-size: 0'><span style=''>5</span><br></span><span style='direction: ltr; font-size: 0'><span style=''>6</span><br></span><span style='direction: ltr; font-size: 0'><span style=''>7</span><br></span><span style='direction: ltr; font-size: 0'><span style=''>8</span><br></span><span style='direction: ltr; font-size: 0'><span style=''>9</span><br></span><span style='direction: ltr; font-size: 0'><span style=''>10</span><br></span><span style='direction: ltr; font-size: 0'><span style=''>11</span><br></span><span style='direction: ltr; font-size: 0'><span style=''>12</span><br></span><span style='direction: ltr; font-size: 0'><span style=''>13</span><br></span><span style='direction: ltr; font-size: 0'><span style=''>14</span><br></span><span style='direction: ltr; font-size: 0'><span style=''>15</span><br></span></span>\",verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-y505da\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"R0Y7RE0gTW9uby1yZWd1bGFy\",\"--framer-font-family\":'\"DM Mono\", monospace',\"--framer-font-size\":\"18px\",\"--framer-letter-spacing\":\"-0.2px\",\"--framer-line-height\":\"1.8em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgba(255, 255, 255, 0.4)\"},children:[\"// Analyze body to movements to\",/*#__PURE__*/_jsx(\"br\",{}),\"assess longevity biomarkers.\"]}),/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-line-height\":\"1.8em\",\"--framer-text-alignment\":\"left\"},children:/*#__PURE__*/_jsx(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"R0Y7RE0gTW9uby1yZWd1bGFy\",\"--framer-font-family\":'\"DM Mono\", monospace',\"--framer-font-size\":\"18px\",\"--framer-letter-spacing\":\"-0.2px\",\"--framer-line-height\":\"1.8em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:[/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"rgb(255, 203, 173)\"},children:\"function\"}),\" LongevityBiomarkers() { \"]}),/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"R0Y7RE0gTW9uby1yZWd1bGFy\",\"--framer-font-family\":'\"DM Mono\", monospace',\"--framer-font-size\":\"18px\",\"--framer-letter-spacing\":\"-0.2px\",\"--framer-line-height\":\"1.8em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:[\"  .\",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"rgb(229, 99, 176)\"},children:\"find\"}),\"({ \"]}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7RE0gTW9uby1yZWd1bGFy\",\"--framer-font-family\":'\"DM Mono\", monospace',\"--framer-font-size\":\"18px\",\"--framer-letter-spacing\":\"-0.2px\",\"--framer-line-height\":\"1.8em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"     body_landmarks }) \"}),/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"R0Y7RE0gTW9uby1yZWd1bGFy\",\"--framer-font-family\":'\"DM Mono\", monospace',\"--framer-font-size\":\"18px\",\"--framer-letter-spacing\":\"-0.2px\",\"--framer-line-height\":\"1.8em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(229, 99, 176)\"},children:[/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"  .\"}),\"measure\",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"({ \"})]}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7RE0gTW9uby1yZWd1bGFy\",\"--framer-font-family\":'\"DM Mono\", monospace',\"--framer-font-size\":\"18px\",\"--framer-letter-spacing\":\"-0.2px\",\"--framer-line-height\":\"1.8em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"     longevity_biomarkers: \"}),/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"R0Y7RE0gTW9uby1yZWd1bGFy\",\"--framer-font-family\":'\"DM Mono\", monospace',\"--framer-font-size\":\"18px\",\"--framer-letter-spacing\":\"-0.2px\",\"--framer-line-height\":\"1.8em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(194, 179, 255)\"},children:[/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"       { \"}),\"leg_strength\",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\", \"})]}),/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"R0Y7RE0gTW9uby1yZWd1bGFy\",\"--framer-font-family\":'\"DM Mono\", monospace',\"--framer-font-size\":\"18px\",\"--framer-letter-spacing\":\"-0.2px\",\"--framer-line-height\":\"1.8em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:[\"         \",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"rgb(194, 179, 255)\"},children:\"balance\"}),\", \"]}),/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"R0Y7RE0gTW9uby1yZWd1bGFy\",\"--framer-font-family\":'\"DM Mono\", monospace',\"--framer-font-size\":\"18px\",\"--framer-letter-spacing\":\"-0.2px\",\"--framer-line-height\":\"1.8em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(194, 179, 255)\"},children:[/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"         \"}),\"endurance,\"]}),/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"R0Y7RE0gTW9uby1yZWd1bGFy\",\"--framer-font-family\":'\"DM Mono\", monospace',\"--framer-font-size\":\"18px\",\"--framer-letter-spacing\":\"-0.2px\",\"--framer-line-height\":\"1.8em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:[\"         \",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"rgb(194, 179, 255)\"},children:\"gait,\"})]}),/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"R0Y7RE0gTW9uby1yZWd1bGFy\",\"--framer-font-family\":'\"DM Mono\", monospace',\"--framer-font-size\":\"18px\",\"--framer-letter-spacing\":\"-0.2px\",\"--framer-line-height\":\"1.8em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(194, 179, 255)\"},children:[/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"         \"}),\"joint_range\",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"} \"})]}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7RE0gTW9uby1yZWd1bGFy\",\"--framer-font-family\":'\"DM Mono\", monospace',\"--framer-font-size\":\"18px\",\"--framer-letter-spacing\":\"-0.2px\",\"--framer-line-height\":\"1.8em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"     })\"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7RE0gTW9uby1yZWd1bGFy\",\"--framer-font-family\":'\"DM Mono\", monospace',\"--framer-font-size\":\"18px\",\"--framer-letter-spacing\":\"-0.2px\",\"--framer-line-height\":\"1.8em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"}\"})]}),className:\"framer-1p8jc2v\",fonts:[\"GF;DM Mono-regular\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1vc5mgf\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-q60tio-container\",isModuleExternal:true,nodeId:\"Kh265s6vh\",scopeId:\"GLz2DcH7V\",children:/*#__PURE__*/_jsx(Video,{backgroundColor:\"rgba(0, 0, 0, 0)\",borderRadius:20,bottomLeftRadius:20,bottomRightRadius:20,controls:false,height:\"100%\",id:\"Kh265s6vh\",isMixedBorderRadius:false,layoutId:\"Kh265s6vh\",loop:true,muted:true,objectFit:\"cover\",playing:true,posterEnabled:false,srcFile:\"https://framerusercontent.com/assets/4o4qd6kSNUpupanxwcLj3d6EP8Q.mp4\",srcType:\"Upload\",srcUrl:\"https://assets.mixkit.co/videos/preview/mixkit-ice-cream-glass-of-red-soda-5094-small.mp4\",startTime:0,style:{height:\"100%\",width:\"100%\"},topLeftRadius:20,topRightRadius:20,volume:25,width:\"100%\"})})})})]})})]}),/*#__PURE__*/_jsxs(\"header\",{className:\"framer-cej545\",\"data-framer-name\":\"Header\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{OV_DLPKnG:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h2\",{style:{\"--font-selector\":\"Q1VTVE9NO1Jvc2l0YSBMb25nZXZpdHkgQm9sZA==\",\"--framer-font-family\":'\"Rosita Longevity Bold\", \"Rosita Longevity Bold Placeholder\", sans-serif',\"--framer-font-size\":\"53px\",\"--framer-letter-spacing\":\"-1.8px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(2, 2, 43)\"},children:[/*#__PURE__*/_jsx(\"br\",{}),/*#__PURE__*/_jsx(\"br\",{}),\"A program for your specific condition\"]})})},pJFvs9CPn:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h2\",{style:{\"--font-selector\":\"Q1VTVE9NO1Jvc2l0YSBMb25nZXZpdHkgQm9sZA==\",\"--framer-font-family\":'\"Rosita Longevity Bold\", \"Rosita Longevity Bold Placeholder\", sans-serif',\"--framer-font-size\":\"53px\",\"--framer-letter-spacing\":\"-1.8px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(2, 2, 43)\"},children:[/*#__PURE__*/_jsx(\"br\",{}),/*#__PURE__*/_jsx(\"br\",{}),\"A program for your specific condition\"]})})}},children:/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:false,__framer__enter:animation8,__framer__exit:animation9,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h2\",{style:{\"--font-selector\":\"Q1VTVE9NO1Jvc2l0YSBMb25nZXZpdHkgQm9sZA==\",\"--framer-font-family\":'\"Rosita Longevity Bold\", \"Rosita Longevity Bold Placeholder\", sans-serif',\"--framer-font-size\":\"53px\",\"--framer-letter-spacing\":\"-1.8px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(2, 2, 43)\"},children:[/*#__PURE__*/_jsx(\"br\",{}),/*#__PURE__*/_jsx(\"br\",{}),\"A program for your specific condition\"]})}),className:\"framer-n28e2x\",fonts:[\"CUSTOM;Rosita Longevity Bold\"],style:{transformPerspective:1200},verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:false,__framer__enter:animation8,__framer__exit:animation9,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h2\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNTAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-2840d062-261b-4eca-acdb-d7c218ee2723, rgb(102, 101, 114))\"},children:[\"Every person has a different medical background, lifestyle and emotional need, which is why our Chronic Pain Plan offers a comprehensive strategy combining thousands of specific exercises, rehabilitation, workshops and education. \",/*#__PURE__*/_jsx(\"br\",{}),/*#__PURE__*/_jsx(\"br\",{}),\"We also run more than 50 Live group sessions per week with healthcare specialists where we coach and guide people from the basics of inflammation to how to adapt their sexual life when in pain.\"]})}),className:\"framer-i6s7vu\",fonts:[\"GF;Inter-500\"],style:{transformPerspective:1200},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(\"aside\",{className:\"framer-v0dmv1\",\"data-framer-name\":\"ProgramsAvailable\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-144l95g\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{OV_DLPKnG:{height:129,width:`calc(${componentViewport?.width||\"100vw\"} - 120px)`,y:(componentViewport?.y||0)+0+5370.2+60+299.6+0+0+0+0},pJFvs9CPn:{height:129,width:`calc(${componentViewport?.width||\"100vw\"} - 128px)`}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:450,width:`max((${componentViewport?.width||\"100vw\"} - 128px) / 3, 1px)`,children:/*#__PURE__*/_jsx(Container,{className:\"framer-wk98r5-container\",nodeId:\"xVjiywXMI\",scopeId:\"GLz2DcH7V\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{OV_DLPKnG:{style:{width:\"100%\"}},pJFvs9CPn:{style:{width:\"100%\"}}},children:/*#__PURE__*/_jsx(ServicesCard,{fTj5SC8z2:\"Joint Health\",height:\"100%\",id:\"xVjiywXMI\",layoutId:\"xVjiywXMI\",RQPotZPC3:\"Pain is one of the most limiting conditions we can face as it affects functional capacity and diminishes quality of life.\\n\\nWe measure pain regularly with pain scales and provide specific exercises that can be useful for hands, feet, hips, shoulders, neck, knees or back.\",s3qlBgNqH:true,style:{height:\"100%\",width:\"100%\"},variant:\"GjTPst4Ya\",width:\"100%\",zRb6iWmZQ:\"xnmK2FijU\"})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{OV_DLPKnG:{height:129,width:`calc(${componentViewport?.width||\"100vw\"} - 120px)`,y:(componentViewport?.y||0)+0+5370.2+60+299.6+0+0+0+129},pJFvs9CPn:{height:129,width:`calc(${componentViewport?.width||\"100vw\"} - 128px)`}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:400,width:`max((${componentViewport?.width||\"100vw\"} - 128px) / 3, 1px)`,children:/*#__PURE__*/_jsx(Container,{className:\"framer-atieo2-container\",nodeId:\"Ia2smOP32\",scopeId:\"GLz2DcH7V\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{OV_DLPKnG:{style:{width:\"100%\"}},pJFvs9CPn:{style:{width:\"100%\"}}},children:/*#__PURE__*/_jsx(ServicesCard,{fTj5SC8z2:\"Metabolic Health\",height:\"100%\",id:\"Ia2smOP32\",layoutId:\"Ia2smOP32\",RQPotZPC3:\"Both weight and inflammation play a crucial role on joint health, pain perception and healthy aging in general. Our live classes and workshops are designed for each combination of pathologies and pain and aim to help you understand how your biology works and how to redesign your nutritional routines to optimize your health and minimize your pain.\\n\",s3qlBgNqH:true,style:{height:\"100%\",width:\"100%\"},variant:\"GjTPst4Ya\",width:\"100%\",zRb6iWmZQ:\"h2hifIJ4L\"})})})})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-tmp3ph\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{OV_DLPKnG:{height:129,width:`calc(${componentViewport?.width||\"100vw\"} - 120px)`,y:(componentViewport?.y||0)+0+5370.2+60+299.6+0+258+0+0},pJFvs9CPn:{height:129,width:`calc(${componentViewport?.width||\"100vw\"} - 128px)`}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:450,width:`max((${componentViewport?.width||\"100vw\"} - 128px) / 3, 1px)`,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1e3e4bs-container\",nodeId:\"Geabj9sFq\",scopeId:\"GLz2DcH7V\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{OV_DLPKnG:{style:{width:\"100%\"}},pJFvs9CPn:{style:{width:\"100%\"}}},children:/*#__PURE__*/_jsx(ServicesCard,{fTj5SC8z2:\"Diseases & Comobordities\",height:\"100%\",id:\"Geabj9sFq\",layoutId:\"Geabj9sFq\",RQPotZPC3:\"After 65, almost everyone already have diseases or high risks of developing them. Hypertension, diabetes, obesity, cardiovascular, cancer, cognitive impairments or respiratory problems. We got you. Our starting point and health goals will be totally designed based on this information that you will easily introduce in the onboarding process.\\n\",s3qlBgNqH:true,style:{height:\"100%\",width:\"100%\"},variant:\"GjTPst4Ya\",width:\"100%\",zRb6iWmZQ:\"e4rMuMiYs\"})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{OV_DLPKnG:{height:129,width:`calc(${componentViewport?.width||\"100vw\"} - 120px)`,y:(componentViewport?.y||0)+0+5370.2+60+299.6+0+258+0+129},pJFvs9CPn:{height:129,width:`calc(${componentViewport?.width||\"100vw\"} - 128px)`}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:400,width:`max((${componentViewport?.width||\"100vw\"} - 128px) / 3, 1px)`,children:/*#__PURE__*/_jsx(Container,{className:\"framer-169zej3-container\",nodeId:\"CSHbmIBAD\",scopeId:\"GLz2DcH7V\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{OV_DLPKnG:{style:{width:\"100%\"}},pJFvs9CPn:{style:{width:\"100%\"}}},children:/*#__PURE__*/_jsx(ServicesCard,{fTj5SC8z2:\"Cognitive\",height:\"100%\",id:\"CSHbmIBAD\",layoutId:\"CSHbmIBAD\",RQPotZPC3:\"Making sure your mind is ready for all the adventures ahead is crucial. Your brain is a muscle and it needs to be exercised too. With our program we will dig deeper into the basics of cognitive biology; what is known and what is being investigated, to make sure you are on the forefront of cognitive stimulation and impairment prevention. (edited) \\n\",s3qlBgNqH:true,style:{height:\"100%\",width:\"100%\"},variant:\"GjTPst4Ya\",width:\"100%\",zRb6iWmZQ:\"ObfcRyF85\"})})})})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-168lqed\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{OV_DLPKnG:{height:129,width:`calc(${componentViewport?.width||\"100vw\"} - 120px)`,y:(componentViewport?.y||0)+0+5370.2+60+299.6+0+516+0+0},pJFvs9CPn:{height:129,width:`calc(${componentViewport?.width||\"100vw\"} - 128px)`}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:450,width:`max((${componentViewport?.width||\"100vw\"} - 128px) / 3, 1px)`,children:/*#__PURE__*/_jsx(Container,{className:\"framer-jrjqg5-container\",nodeId:\"pMW0XWvWD\",scopeId:\"GLz2DcH7V\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{OV_DLPKnG:{style:{width:\"100%\"}},pJFvs9CPn:{style:{width:\"100%\"}}},children:/*#__PURE__*/_jsx(ServicesCard,{fTj5SC8z2:\"Functional Health\",height:\"100%\",id:\"pMW0XWvWD\",layoutId:\"pMW0XWvWD\",RQPotZPC3:\"Muscles and bones are fundamental to support your body and independence. We will make sure that you reach your potential so that you can live more years with less pain and also more hobbies, travelling or spicy nights.  Our AI tools will integrate Gait Analysis from your home alongside with other gold standard tests to understand your current situation and potential. Our plan will focus on cardio, strength, mobility and equilibrium with a wide range of sessions from training, yoga, tai chi, ballet, jazz, salsa , pelvic floor exercises or pilates\",s3qlBgNqH:true,style:{height:\"100%\",width:\"100%\"},variant:\"GjTPst4Ya\",width:\"100%\",zRb6iWmZQ:\"fOm9y11yV\"})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{OV_DLPKnG:{height:129,width:`calc(${componentViewport?.width||\"100vw\"} - 120px)`,y:(componentViewport?.y||0)+0+5370.2+60+299.6+0+516+0+129},pJFvs9CPn:{height:129,width:`calc(${componentViewport?.width||\"100vw\"} - 128px)`}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:400,width:`max((${componentViewport?.width||\"100vw\"} - 128px) / 3, 1px)`,children:/*#__PURE__*/_jsx(Container,{className:\"framer-hotpso-container\",nodeId:\"WE_wQN6NL\",scopeId:\"GLz2DcH7V\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{OV_DLPKnG:{style:{width:\"100%\"}},pJFvs9CPn:{style:{width:\"100%\"}}},children:/*#__PURE__*/_jsx(ServicesCard,{fTj5SC8z2:\"Emotional\",height:\"100%\",id:\"WE_wQN6NL\",layoutId:\"WE_wQN6NL\",RQPotZPC3:\"The best plan is the one you do. A big part of our experts will focus on your anxieties, fears, loneliness or other emotional blockers. We want to guide you on what emotional changes happen after 60 and how to optimize your happiness. Our sessions and workshops cover from emotions & nutrition (psycho-nutrition), life after work & kids or even sexuality with pain or after 60.\",s3qlBgNqH:true,style:{height:\"100%\",width:\"100%\"},variant:\"GjTPst4Ya\",width:\"100%\",zRb6iWmZQ:\"o4N4NIf92\"})})})})})]})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-vimhw4\",\"data-framer-name\":\"Testimonials 2\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-z5fxnk\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1djjpxk\",children:[/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition3},__framer__animateOnce:true,__framer__enter:animation4,__framer__exit:animation5,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-gurwoq\",style:{transformPerspective:1200},children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TWFucm9wZS04MDA=\",\"--framer-font-family\":'\"Manrope\", \"Manrope Placeholder\", sans-serif',\"--framer-font-size\":\"15px\",\"--framer-font-weight\":\"800\",\"--framer-letter-spacing\":\"1px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-2e606580-c5cb-45c2-a66e-07cb8dbe5a38, rgb(136, 0, 255))\",\"--framer-text-transform\":\"uppercase\"},children:\"on a mission to extend healthspan\"})}),className:\"framer-1v6dgt8\",fonts:[\"GF;Manrope-800\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{OV_DLPKnG:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"R0Y7TWFucm9wZS04MDA=\",\"--framer-font-family\":'\"Manrope\", \"Manrope Placeholder\", sans-serif',\"--framer-font-size\":\"48px\",\"--framer-font-weight\":\"800\",\"--framer-letter-spacing\":\"-1px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-b1fb229f-a8e6-4640-b958-ea29fe1a7f0e, rgb(25, 21, 78))\"},children:\"Listen to the heroes who have changed their lives for the next 20 years\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"R0Y7TWFucm9wZS04MDA=\",\"--framer-font-family\":'\"Manrope\", \"Manrope Placeholder\", sans-serif',\"--framer-font-size\":\"48px\",\"--framer-font-weight\":\"800\",\"--framer-letter-spacing\":\"-1px\",\"--framer-line-height\":\"1.3em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-b1fb229f-a8e6-4640-b958-ea29fe1a7f0e, rgb(25, 21, 78))\"},children:\"Listen to the heroes who have changed their lives for the next 20 years\"})}),className:\"framer-1fx2ubk\",fonts:[\"GF;Manrope-800\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition4},__framer__animateOnce:true,__framer__enter:animation4,__framer__exit:animation7,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-11rhaud\",style:{transformPerspective:1200},children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{OV_DLPKnG:{background:{alt:\"People in the office\",fit:\"fill\",intrinsicHeight:2712,intrinsicWidth:4821,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+6563.8+100+0+50+0+0+150.1+0+0),pixelHeight:2712,pixelWidth:4821,sizes:`max(min(${componentViewport?.width||\"100vw\"} - 80px, 1200px), 200px)`,src:\"https://framerusercontent.com/images/p9hyHOsGihvVoRCOz9af0C8Q.jpg\",srcSet:\"https://framerusercontent.com/images/p9hyHOsGihvVoRCOz9af0C8Q.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/p9hyHOsGihvVoRCOz9af0C8Q.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/p9hyHOsGihvVoRCOz9af0C8Q.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/p9hyHOsGihvVoRCOz9af0C8Q.jpg?scale-down-to=4096 4096w,https://framerusercontent.com/images/p9hyHOsGihvVoRCOz9af0C8Q.jpg 4821w\"}},pJFvs9CPn:{background:{alt:\"People in the office\",fit:\"fill\",intrinsicHeight:2712,intrinsicWidth:4821,pixelHeight:2712,pixelWidth:4821,sizes:`calc(max((min(${componentViewport?.width||\"100vw\"} - 260px, 1200px) - 24px) / 2, 200px) * 2 + 24px)`,src:\"https://framerusercontent.com/images/p9hyHOsGihvVoRCOz9af0C8Q.jpg\",srcSet:\"https://framerusercontent.com/images/p9hyHOsGihvVoRCOz9af0C8Q.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/p9hyHOsGihvVoRCOz9af0C8Q.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/p9hyHOsGihvVoRCOz9af0C8Q.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/p9hyHOsGihvVoRCOz9af0C8Q.jpg?scale-down-to=4096 4096w,https://framerusercontent.com/images/p9hyHOsGihvVoRCOz9af0C8Q.jpg 4821w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"People in the office\",fit:\"fill\",intrinsicHeight:2712,intrinsicWidth:4821,pixelHeight:2712,pixelWidth:4821,sizes:`calc(max((max(min(${componentViewport?.width||\"100vw\"} - 280px, 1200px) / 2, 1px) - 24px) / 2, 200px) * 2 + 24px)`,src:\"https://framerusercontent.com/images/p9hyHOsGihvVoRCOz9af0C8Q.jpg\",srcSet:\"https://framerusercontent.com/images/p9hyHOsGihvVoRCOz9af0C8Q.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/p9hyHOsGihvVoRCOz9af0C8Q.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/p9hyHOsGihvVoRCOz9af0C8Q.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/p9hyHOsGihvVoRCOz9af0C8Q.jpg?scale-down-to=4096 4096w,https://framerusercontent.com/images/p9hyHOsGihvVoRCOz9af0C8Q.jpg 4821w\"},className:\"framer-knwhpt\",\"data-border\":true,children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1cw0xqb-container\",isModuleExternal:true,nodeId:\"nDpLYc4WH\",scopeId:\"GLz2DcH7V\",children:/*#__PURE__*/_jsx(Video,{backgroundColor:\"rgba(0, 0, 0, 0)\",borderRadius:0,bottomLeftRadius:0,bottomRightRadius:0,controls:false,height:\"100%\",id:\"nDpLYc4WH\",isMixedBorderRadius:false,layoutId:\"nDpLYc4WH\",loop:true,muted:true,objectFit:\"cover\",playing:true,posterEnabled:false,srcFile:\"https://framerusercontent.com/assets/tnK0LexR5KMFY8XBDnOQE0k3xY4.mp4\",srcType:\"Upload\",srcUrl:\"https://assets.mixkit.co/videos/preview/mixkit-ice-cream-glass-of-red-soda-5094-small.mp4\",startTime:0,style:{height:\"100%\",width:\"100%\"},topLeftRadius:0,topRightRadius:0,volume:25,width:\"100%\"})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{OV_DLPKnG:{background:{alt:\"People in the office\",fit:\"fill\",intrinsicHeight:2665,intrinsicWidth:3997,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+6563.8+100+0+50+0+0+150.1+0+323),pixelHeight:2665,pixelWidth:3997,sizes:`max(min(${componentViewport?.width||\"100vw\"} - 80px, 1200px), 200px)`,src:\"https://framerusercontent.com/images/xTJots53J1tNU5byXL7DoqNrQJc.jpg\",srcSet:\"https://framerusercontent.com/images/xTJots53J1tNU5byXL7DoqNrQJc.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/xTJots53J1tNU5byXL7DoqNrQJc.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/xTJots53J1tNU5byXL7DoqNrQJc.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/xTJots53J1tNU5byXL7DoqNrQJc.jpg 3997w\"}},pJFvs9CPn:{background:{alt:\"People in the office\",fit:\"fill\",intrinsicHeight:2665,intrinsicWidth:3997,pixelHeight:2665,pixelWidth:3997,sizes:`max((min(${componentViewport?.width||\"100vw\"} - 260px, 1200px) - 24px) / 2, 200px)`,src:\"https://framerusercontent.com/images/xTJots53J1tNU5byXL7DoqNrQJc.jpg\",srcSet:\"https://framerusercontent.com/images/xTJots53J1tNU5byXL7DoqNrQJc.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/xTJots53J1tNU5byXL7DoqNrQJc.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/xTJots53J1tNU5byXL7DoqNrQJc.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/xTJots53J1tNU5byXL7DoqNrQJc.jpg 3997w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"People in the office\",fit:\"fill\",intrinsicHeight:2665,intrinsicWidth:3997,pixelHeight:2665,pixelWidth:3997,sizes:`max((max(min(${componentViewport?.width||\"100vw\"} - 280px, 1200px) / 2, 1px) - 24px) / 2, 200px)`,src:\"https://framerusercontent.com/images/xTJots53J1tNU5byXL7DoqNrQJc.jpg\",srcSet:\"https://framerusercontent.com/images/xTJots53J1tNU5byXL7DoqNrQJc.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/xTJots53J1tNU5byXL7DoqNrQJc.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/xTJots53J1tNU5byXL7DoqNrQJc.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/xTJots53J1tNU5byXL7DoqNrQJc.jpg 3997w\"},className:\"framer-1qwhp4p\",\"data-border\":true,children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-dawvod-container\",isModuleExternal:true,nodeId:\"hzOGNTfLP\",scopeId:\"GLz2DcH7V\",children:/*#__PURE__*/_jsx(Video,{backgroundColor:\"rgba(0, 0, 0, 0)\",borderRadius:0,bottomLeftRadius:0,bottomRightRadius:0,controls:false,height:\"100%\",id:\"hzOGNTfLP\",isMixedBorderRadius:false,layoutId:\"hzOGNTfLP\",loop:true,muted:true,objectFit:\"cover\",playing:false,posterEnabled:false,srcFile:\"https://framerusercontent.com/assets/eJjtpLLKISemBlfs8113N7gI.mp4\",srcType:\"Upload\",srcUrl:\"https://assets.mixkit.co/videos/preview/mixkit-ice-cream-glass-of-red-soda-5094-small.mp4\",startTime:0,style:{height:\"100%\",width:\"100%\"},topLeftRadius:0,topRightRadius:0,volume:25,width:\"100%\"})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{OV_DLPKnG:{background:{alt:\"People in the office\",fit:\"fill\",intrinsicHeight:1867,intrinsicWidth:2800,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+6563.8+100+0+50+0+0+150.1+0+646),pixelHeight:1867,pixelWidth:2800,sizes:`max(min(${componentViewport?.width||\"100vw\"} - 80px, 1200px), 200px)`,src:\"https://framerusercontent.com/images/9wXcOZ9Y104tkWF0G0qyPSENWys.jpg\",srcSet:\"https://framerusercontent.com/images/9wXcOZ9Y104tkWF0G0qyPSENWys.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/9wXcOZ9Y104tkWF0G0qyPSENWys.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/9wXcOZ9Y104tkWF0G0qyPSENWys.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/9wXcOZ9Y104tkWF0G0qyPSENWys.jpg 2800w\"}},pJFvs9CPn:{background:{alt:\"People in the office\",fit:\"fill\",intrinsicHeight:1867,intrinsicWidth:2800,pixelHeight:1867,pixelWidth:2800,sizes:`max((min(${componentViewport?.width||\"100vw\"} - 260px, 1200px) - 24px) / 2, 200px)`,src:\"https://framerusercontent.com/images/9wXcOZ9Y104tkWF0G0qyPSENWys.jpg\",srcSet:\"https://framerusercontent.com/images/9wXcOZ9Y104tkWF0G0qyPSENWys.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/9wXcOZ9Y104tkWF0G0qyPSENWys.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/9wXcOZ9Y104tkWF0G0qyPSENWys.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/9wXcOZ9Y104tkWF0G0qyPSENWys.jpg 2800w\"}}},children:/*#__PURE__*/_jsx(\"div\",{background:{alt:\"People in the office\",fit:\"fill\",intrinsicHeight:1867,intrinsicWidth:2800,pixelHeight:1867,pixelWidth:2800,sizes:`max((max(min(${componentViewport?.width||\"100vw\"} - 280px, 1200px) / 2, 1px) - 24px) / 2, 200px)`,src:\"https://framerusercontent.com/images/9wXcOZ9Y104tkWF0G0qyPSENWys.jpg\",srcSet:\"https://framerusercontent.com/images/9wXcOZ9Y104tkWF0G0qyPSENWys.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/9wXcOZ9Y104tkWF0G0qyPSENWys.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/9wXcOZ9Y104tkWF0G0qyPSENWys.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/9wXcOZ9Y104tkWF0G0qyPSENWys.jpg 2800w\"},className:\"framer-rys7j5\",\"data-border\":true,children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1f3t21-container\",isModuleExternal:true,nodeId:\"Wii7IAoP6\",scopeId:\"GLz2DcH7V\",children:/*#__PURE__*/_jsx(Video,{backgroundColor:\"rgba(0, 0, 0, 0)\",borderRadius:0,bottomLeftRadius:0,bottomRightRadius:0,controls:false,height:\"100%\",id:\"Wii7IAoP6\",isMixedBorderRadius:false,layoutId:\"Wii7IAoP6\",loop:true,muted:true,objectFit:\"cover\",playing:false,posterEnabled:false,srcFile:\"https://framerusercontent.com/assets/sypOhLlupyMaOn5G8bX5hijAE4.mp4\",srcType:\"Upload\",srcUrl:\"https://assets.mixkit.co/videos/preview/mixkit-ice-cream-glass-of-red-soda-5094-small.mp4\",startTime:0,style:{height:\"100%\",width:\"100%\"},topLeftRadius:0,topRightRadius:0,volume:25,width:\"100%\"})})})})})]})]})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-b2388p\",\"data-border\":true,children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{OV_DLPKnG:{height:471,width:`min(${componentViewport?.width||\"100vw\"} - 40px, 780px)`,y:(componentViewport?.y||0)+0+6563.8+100+1255.1+0+0},pJFvs9CPn:{height:471,width:`max(min(${componentViewport?.width||\"100vw\"} - 160px, 780px) / 2, 1px)`}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:0,width:`max(min(${componentViewport?.width||\"100vw\"} - 80px, 1200px) / 3, 1px)`,children:/*#__PURE__*/_jsx(Container,{className:\"framer-jsolb7-container\",nodeId:\"I3dxKF4ic\",scopeId:\"GLz2DcH7V\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{OV_DLPKnG:{style:{width:\"100%\"},variant:\"xFadebgpp\"},pJFvs9CPn:{style:{width:\"100%\"}}},children:/*#__PURE__*/_jsx(Testimonial,{gkeWNiRcE:\"I am very excited because this week I was able to go shopping with my daughter for 5 hours. A couple of months ago I couldn't walk because of my knee pain. This was a very important milestone for me.\",height:\"100%\",id:\"I3dxKF4ic\",layoutId:\"I3dxKF4ic\",qiXOO8INs:\"Maribel\",style:{height:\"100%\",width:\"100%\"},variant:\"vB8sAFhab\",width:\"100%\"})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{OV_DLPKnG:{height:471,width:`min(${componentViewport?.width||\"100vw\"} - 40px, 780px)`,y:(componentViewport?.y||0)+0+6563.8+100+1255.1+0+471},pJFvs9CPn:{height:640,width:`max(min(${componentViewport?.width||\"100vw\"} - 160px, 780px) / 2, 1px)`}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:0,width:`max(min(${componentViewport?.width||\"100vw\"} - 80px, 1200px) / 3, 1px)`,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1v4075n-container\",nodeId:\"RfzHNViHb\",scopeId:\"GLz2DcH7V\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{OV_DLPKnG:{style:{width:\"100%\"}}},children:/*#__PURE__*/_jsx(Testimonial,{gkeWNiRcE:\"I am Anabel and I enjoy the classes and activities very much. I think this is the most important App I have ever downloaded.\",height:\"100%\",id:\"RfzHNViHb\",layoutId:\"RfzHNViHb\",qiXOO8INs:\"Anabel\",style:{height:\"100%\",width:\"100%\"},variant:\"vB8sAFhab\",width:\"100%\"})})})})}),isDisplayed4()&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{OV_DLPKnG:{height:471,width:`min(${componentViewport?.width||\"100vw\"} - 40px, 780px)`,y:(componentViewport?.y||0)+0+6563.8+100+1255.1+0+942}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:0,width:`max(min(${componentViewport?.width||\"100vw\"} - 80px, 1200px) / 3, 1px)`,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1ot1suv-container hidden-2an5nk\",nodeId:\"HXpXTh0cc\",scopeId:\"GLz2DcH7V\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{OV_DLPKnG:{style:{width:\"100%\"}}},children:/*#__PURE__*/_jsx(Testimonial,{gkeWNiRcE:\"The other day someone said on TV that you are in good shape if you can stand up from the sofa without using your hands. I have never been in good shape in my life, but I did it, and I know it is only thanks to RxLongevity.\",height:\"100%\",id:\"HXpXTh0cc\",layoutId:\"HXpXTh0cc\",qiXOO8INs:\"Marian\",style:{height:\"100%\",width:\"100%\"},variant:\"vB8sAFhab\",width:\"100%\"})})})})})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-11iqtjd\",\"data-framer-name\":\"2 Columns Text Image\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-o9ctpv\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1crwzez\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{OV_DLPKnG:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"Q1VTVE9NO1Jvc2l0YSBMb25nZXZpdHkgQm9sZA==\",\"--framer-font-family\":'\"Rosita Longevity Bold\", \"Rosita Longevity Bold Placeholder\", sans-serif',\"--framer-font-size\":\"30px\",\"--framer-letter-spacing\":\"-1.2px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(51, 51, 51)\"},children:\"Start Today\"})})},pJFvs9CPn:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"Q1VTVE9NO1Jvc2l0YSBMb25nZXZpdHkgQm9sZA==\",\"--framer-font-family\":'\"Rosita Longevity Bold\", \"Rosita Longevity Bold Placeholder\", sans-serif',\"--framer-font-size\":\"40px\",\"--framer-letter-spacing\":\"-1.8px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(51, 51, 51)\"},children:\"Start Today\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"Q1VTVE9NO1Jvc2l0YSBMb25nZXZpdHkgQm9sZA==\",\"--framer-font-family\":'\"Rosita Longevity Bold\", \"Rosita Longevity Bold Placeholder\", sans-serif',\"--framer-font-size\":\"50px\",\"--framer-letter-spacing\":\"-2px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(51, 51, 51)\"},children:\"Start Today\"})}),className:\"framer-6gggdy\",fonts:[\"CUSTOM;Rosita Longevity Bold\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNTAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-2840d062-261b-4eca-acdb-d7c218ee2723, rgb(102, 101, 114))\"},children:\"RxLongevity is available as your trusted provider or directly as an individual.\"})}),className:\"framer-z2ndn3\",fonts:[\"GF;Inter-500\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-ecxslf\",children:[/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"ZYYaJg2lu\"},implicitPathVariables:undefined},{href:{webPageId:\"ZYYaJg2lu\"},implicitPathVariables:undefined},{href:{webPageId:\"ZYYaJg2lu\"},implicitPathVariables:undefined}],children:resolvedLinks=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{OV_DLPKnG:{y:(componentViewport?.y||0)+0+9431.9+0+400+0+20+112+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:30,width:\"178px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-uy9nns-container\",nodeId:\"LS29VpgeG\",scopeId:\"GLz2DcH7V\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{OV_DLPKnG:{yjPoeoFXu:resolvedLinks[2]},pJFvs9CPn:{yjPoeoFXu:resolvedLinks[1]}},children:/*#__PURE__*/_jsx(Button,{EX6TsAYwP:20,height:\"100%\",id:\"LS29VpgeG\",kBabYW3iu:\"\",layoutId:\"LS29VpgeG\",lvEysNOCf:24,Qoi_obRja:\"Individual\",style:{width:\"100%\"},uDmxwZHRG:\"rgb(255, 255, 255)\",ursoR0088:false,variant:\"jk8CyARFH\",width:\"100%\",XMPsLLz6U:\"Apple\",yjPoeoFXu:resolvedLinks[0]})})})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"l566E2x8l\"},implicitPathVariables:undefined},{href:{webPageId:\"l566E2x8l\"},implicitPathVariables:undefined},{href:{webPageId:\"l566E2x8l\"},implicitPathVariables:undefined}],children:resolvedLinks1=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{OV_DLPKnG:{y:(componentViewport?.y||0)+0+9431.9+0+400+0+20+112+0+45}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:30,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1mr58fc-container\",nodeId:\"VHcjTqP01\",scopeId:\"GLz2DcH7V\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{OV_DLPKnG:{yjPoeoFXu:resolvedLinks1[2]},pJFvs9CPn:{yjPoeoFXu:resolvedLinks1[1]}},children:/*#__PURE__*/_jsx(Button,{EX6TsAYwP:20,height:\"100%\",id:\"VHcjTqP01\",kBabYW3iu:\"\",layoutId:\"VHcjTqP01\",lvEysNOCf:24,Qoi_obRja:\"Provider\",uDmxwZHRG:\"var(--token-274fb780-9951-4059-956e-43216c6f8956, rgb(120, 85, 255))\",ursoR0088:false,variant:\"HMhFJvw_P\",width:\"100%\",XMPsLLz6U:\"Apartment\",yjPoeoFXu:resolvedLinks1[0]})})})})})})]})]})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{OV_DLPKnG:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:3161,intrinsicWidth:4742,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+9431.9+0+0),pixelHeight:3161,pixelWidth:4742,sizes:componentViewport?.width||\"100vw\",src:\"https://framerusercontent.com/images/uqcN9CuLqU2NpTsmcxMnzDPhXo.jpg\",srcSet:\"https://framerusercontent.com/images/uqcN9CuLqU2NpTsmcxMnzDPhXo.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/uqcN9CuLqU2NpTsmcxMnzDPhXo.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/uqcN9CuLqU2NpTsmcxMnzDPhXo.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/uqcN9CuLqU2NpTsmcxMnzDPhXo.jpg?scale-down-to=4096 4096w,https://framerusercontent.com/images/uqcN9CuLqU2NpTsmcxMnzDPhXo.jpg 4742w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:3161,intrinsicWidth:4742,pixelHeight:3161,pixelWidth:4742,sizes:`max(${componentViewport?.width||\"100vw\"} / 2, 1px)`,src:\"https://framerusercontent.com/images/uqcN9CuLqU2NpTsmcxMnzDPhXo.jpg\",srcSet:\"https://framerusercontent.com/images/uqcN9CuLqU2NpTsmcxMnzDPhXo.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/uqcN9CuLqU2NpTsmcxMnzDPhXo.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/uqcN9CuLqU2NpTsmcxMnzDPhXo.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/uqcN9CuLqU2NpTsmcxMnzDPhXo.jpg?scale-down-to=4096 4096w,https://framerusercontent.com/images/uqcN9CuLqU2NpTsmcxMnzDPhXo.jpg 4742w\"},className:\"framer-11qmrm6\",\"data-framer-name\":\"Image\"})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-zvjo57\",\"data-framer-name\":\"Logos\",id:elementId2,ref:ref3,children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{OV_DLPKnG:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"Q1VTVE9NO1Jvc2l0YSBMb25nZXZpdHkgQm9sZA==\",\"--framer-font-family\":'\"Rosita Longevity Bold\", \"Rosita Longevity Bold Placeholder\", sans-serif',\"--framer-font-size\":\"32px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(2, 2, 43)\"},children:\"Supported by\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"Q1VTVE9NO1Jvc2l0YSBMb25nZXZpdHkgQm9sZA==\",\"--framer-font-family\":'\"Rosita Longevity Bold\", \"Rosita Longevity Bold Placeholder\", sans-serif',\"--framer-font-size\":\"48px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(2, 2, 43)\"},children:\"Supported by\"})}),className:\"framer-qnfhiq\",fonts:[\"CUSTOM;Rosita Longevity Bold\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-4bcr5j\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-18x2qio\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-cjdjj5\",\"data-framer-name\":\"Logos inversores\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{OV_DLPKnG:{background:{alt:\"\",fit:\"stretch\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+10058.9+100+98.4+0+0+0+0+0+0),positionX:\"center\",positionY:\"center\",sizes:\"203px\",src:\"https://framerusercontent.com/images/Lm29kvcAIII83sdCFCheKnCNxG4.png\",srcSet:\"https://framerusercontent.com/images/Lm29kvcAIII83sdCFCheKnCNxG4.png?scale-down-to=512 512w,https://framerusercontent.com/images/Lm29kvcAIII83sdCFCheKnCNxG4.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/Lm29kvcAIII83sdCFCheKnCNxG4.png 1812w\"}},pJFvs9CPn:{background:{alt:\"\",fit:\"stretch\",positionX:\"center\",positionY:\"center\",sizes:\"151px\",src:\"https://framerusercontent.com/images/Lm29kvcAIII83sdCFCheKnCNxG4.png\",srcSet:\"https://framerusercontent.com/images/Lm29kvcAIII83sdCFCheKnCNxG4.png?scale-down-to=512 512w,https://framerusercontent.com/images/Lm29kvcAIII83sdCFCheKnCNxG4.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/Lm29kvcAIII83sdCFCheKnCNxG4.png 1812w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"stretch\",positionX:\"center\",positionY:\"center\",sizes:\"216px\",src:\"https://framerusercontent.com/images/Lm29kvcAIII83sdCFCheKnCNxG4.png\",srcSet:\"https://framerusercontent.com/images/Lm29kvcAIII83sdCFCheKnCNxG4.png?scale-down-to=512 512w,https://framerusercontent.com/images/Lm29kvcAIII83sdCFCheKnCNxG4.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/Lm29kvcAIII83sdCFCheKnCNxG4.png 1812w\"},className:\"framer-16rlqb1\",\"data-framer-name\":\"balneario_Cofrentes 1\"})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1895ud3\",\"data-framer-name\":\"European invesment fund\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{OV_DLPKnG:{background:{alt:\"\",fit:\"stretch\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+10058.9+100+98.4+0+0+0+99+0),positionX:\"center\",positionY:\"center\",sizes:\"140px\",src:\"https://framerusercontent.com/images/O8P9ddM8Dbz9LFMA9kdosIXUaTY.png\",srcSet:\"https://framerusercontent.com/images/O8P9ddM8Dbz9LFMA9kdosIXUaTY.png?scale-down-to=512 512w,https://framerusercontent.com/images/O8P9ddM8Dbz9LFMA9kdosIXUaTY.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/O8P9ddM8Dbz9LFMA9kdosIXUaTY.png 1812w\"}},pJFvs9CPn:{background:{alt:\"\",fit:\"stretch\",positionX:\"center\",positionY:\"center\",sizes:\"125px\",src:\"https://framerusercontent.com/images/O8P9ddM8Dbz9LFMA9kdosIXUaTY.png\",srcSet:\"https://framerusercontent.com/images/O8P9ddM8Dbz9LFMA9kdosIXUaTY.png?scale-down-to=512 512w,https://framerusercontent.com/images/O8P9ddM8Dbz9LFMA9kdosIXUaTY.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/O8P9ddM8Dbz9LFMA9kdosIXUaTY.png 1812w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"stretch\",positionX:\"center\",positionY:\"center\",sizes:\"140px\",src:\"https://framerusercontent.com/images/O8P9ddM8Dbz9LFMA9kdosIXUaTY.png\",srcSet:\"https://framerusercontent.com/images/O8P9ddM8Dbz9LFMA9kdosIXUaTY.png?scale-down-to=512 512w,https://framerusercontent.com/images/O8P9ddM8Dbz9LFMA9kdosIXUaTY.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/O8P9ddM8Dbz9LFMA9kdosIXUaTY.png 1812w\"},className:\"framer-10c3f9t\",\"data-framer-name\":\"european 2\"})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1mp0fls\",\"data-framer-name\":\"Logos inversores\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{OV_DLPKnG:{background:{alt:\"\",fit:\"stretch\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+10058.9+100+98.4+0+0+0+182+0),positionX:\"center\",positionY:\"center\",sizes:\"239px\",src:\"https://framerusercontent.com/images/7LnGIFp0dm6AWQ3fr71Ugk79cVA.png\",srcSet:\"https://framerusercontent.com/images/7LnGIFp0dm6AWQ3fr71Ugk79cVA.png?scale-down-to=512 512w,https://framerusercontent.com/images/7LnGIFp0dm6AWQ3fr71Ugk79cVA.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/7LnGIFp0dm6AWQ3fr71Ugk79cVA.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/7LnGIFp0dm6AWQ3fr71Ugk79cVA.png 2832w\"}},pJFvs9CPn:{background:{alt:\"\",fit:\"stretch\",positionX:\"center\",positionY:\"center\",sizes:\"213px\",src:\"https://framerusercontent.com/images/7LnGIFp0dm6AWQ3fr71Ugk79cVA.png\",srcSet:\"https://framerusercontent.com/images/7LnGIFp0dm6AWQ3fr71Ugk79cVA.png?scale-down-to=512 512w,https://framerusercontent.com/images/7LnGIFp0dm6AWQ3fr71Ugk79cVA.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/7LnGIFp0dm6AWQ3fr71Ugk79cVA.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/7LnGIFp0dm6AWQ3fr71Ugk79cVA.png 2832w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"stretch\",positionX:\"center\",positionY:\"center\",sizes:\"344px\",src:\"https://framerusercontent.com/images/7LnGIFp0dm6AWQ3fr71Ugk79cVA.png\",srcSet:\"https://framerusercontent.com/images/7LnGIFp0dm6AWQ3fr71Ugk79cVA.png?scale-down-to=512 512w,https://framerusercontent.com/images/7LnGIFp0dm6AWQ3fr71Ugk79cVA.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/7LnGIFp0dm6AWQ3fr71Ugk79cVA.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/7LnGIFp0dm6AWQ3fr71Ugk79cVA.png 2832w\"},className:\"framer-16dp1ww\",\"data-framer-name\":\"Google-for-startups 1\"})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-det96b\",\"data-framer-name\":\"University of chicago\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{OV_DLPKnG:{background:{alt:\"\",fit:\"stretch\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+10058.9+100+98.4+0+0+0+252+0),positionX:\"center\",positionY:\"center\",sizes:\"214px\",src:\"https://framerusercontent.com/images/GPdfOj63Adgq2IvfN20dcWIgw.png\",srcSet:\"https://framerusercontent.com/images/GPdfOj63Adgq2IvfN20dcWIgw.png?scale-down-to=512 512w,https://framerusercontent.com/images/GPdfOj63Adgq2IvfN20dcWIgw.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/GPdfOj63Adgq2IvfN20dcWIgw.png 1788w\"}},pJFvs9CPn:{background:{alt:\"\",fit:\"stretch\",positionX:\"center\",positionY:\"center\",sizes:\"119px\",src:\"https://framerusercontent.com/images/GPdfOj63Adgq2IvfN20dcWIgw.png\",srcSet:\"https://framerusercontent.com/images/GPdfOj63Adgq2IvfN20dcWIgw.png?scale-down-to=512 512w,https://framerusercontent.com/images/GPdfOj63Adgq2IvfN20dcWIgw.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/GPdfOj63Adgq2IvfN20dcWIgw.png 1788w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"stretch\",positionX:\"center\",positionY:\"center\",sizes:\"214px\",src:\"https://framerusercontent.com/images/GPdfOj63Adgq2IvfN20dcWIgw.png\",srcSet:\"https://framerusercontent.com/images/GPdfOj63Adgq2IvfN20dcWIgw.png?scale-down-to=512 512w,https://framerusercontent.com/images/GPdfOj63Adgq2IvfN20dcWIgw.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/GPdfOj63Adgq2IvfN20dcWIgw.png 1788w\"},className:\"framer-zkvuqk\",\"data-framer-name\":\"University of Chicago 1\"})})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-4fc7qj\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1qga27o\",\"data-framer-name\":\"JM Ventures\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{OV_DLPKnG:{background:{alt:\"\",fit:\"stretch\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+10058.9+100+98.4+0+354+0+0+-7.5),positionX:\"center\",positionY:\"center\",sizes:\"276px\",src:\"https://framerusercontent.com/images/82A0WsVOXAcQR0bzigQrUS9v8.png\",srcSet:\"https://framerusercontent.com/images/82A0WsVOXAcQR0bzigQrUS9v8.png?scale-down-to=512 512w,https://framerusercontent.com/images/82A0WsVOXAcQR0bzigQrUS9v8.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/82A0WsVOXAcQR0bzigQrUS9v8.png 1788w\"}},pJFvs9CPn:{background:{alt:\"\",fit:\"stretch\",positionX:\"center\",positionY:\"center\",sizes:\"220px\",src:\"https://framerusercontent.com/images/82A0WsVOXAcQR0bzigQrUS9v8.png\",srcSet:\"https://framerusercontent.com/images/82A0WsVOXAcQR0bzigQrUS9v8.png?scale-down-to=512 512w,https://framerusercontent.com/images/82A0WsVOXAcQR0bzigQrUS9v8.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/82A0WsVOXAcQR0bzigQrUS9v8.png 1788w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"stretch\",positionX:\"center\",positionY:\"center\",sizes:\"276px\",src:\"https://framerusercontent.com/images/82A0WsVOXAcQR0bzigQrUS9v8.png\",srcSet:\"https://framerusercontent.com/images/82A0WsVOXAcQR0bzigQrUS9v8.png?scale-down-to=512 512w,https://framerusercontent.com/images/82A0WsVOXAcQR0bzigQrUS9v8.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/82A0WsVOXAcQR0bzigQrUS9v8.png 1788w\"},className:\"framer-1oyarik\",\"data-framer-name\":\"009_JME Ventures\"})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-163ku9e\",\"data-framer-name\":\"Generalitat Valenciana\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{OV_DLPKnG:{background:{alt:\"\",fit:\"stretch\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+10058.9+100+98.4+0+354+0+76+0+0),positionX:\"center\",positionY:\"center\",sizes:\"186px\",src:\"https://framerusercontent.com/images/mGo0OIfttkuUiFRsFXkObwzhNg.png\",srcSet:\"https://framerusercontent.com/images/mGo0OIfttkuUiFRsFXkObwzhNg.png?scale-down-to=512 512w,https://framerusercontent.com/images/mGo0OIfttkuUiFRsFXkObwzhNg.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/mGo0OIfttkuUiFRsFXkObwzhNg.png 1788w\"}},pJFvs9CPn:{background:{alt:\"\",fit:\"stretch\",positionX:\"center\",positionY:\"center\",sizes:\"125px\",src:\"https://framerusercontent.com/images/mGo0OIfttkuUiFRsFXkObwzhNg.png\",srcSet:\"https://framerusercontent.com/images/mGo0OIfttkuUiFRsFXkObwzhNg.png?scale-down-to=512 512w,https://framerusercontent.com/images/mGo0OIfttkuUiFRsFXkObwzhNg.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/mGo0OIfttkuUiFRsFXkObwzhNg.png 1788w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"stretch\",positionX:\"center\",positionY:\"center\",sizes:\"186px\",src:\"https://framerusercontent.com/images/mGo0OIfttkuUiFRsFXkObwzhNg.png\",srcSet:\"https://framerusercontent.com/images/mGo0OIfttkuUiFRsFXkObwzhNg.png?scale-down-to=512 512w,https://framerusercontent.com/images/mGo0OIfttkuUiFRsFXkObwzhNg.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/mGo0OIfttkuUiFRsFXkObwzhNg.png 1788w\"},className:\"framer-vg2c7j\",\"data-framer-name\":\"001_Comunidad Valenciana\"})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-f72m9l\",\"data-framer-name\":\"Wayra\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{OV_DLPKnG:{background:{alt:\"\",fit:\"stretch\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+10058.9+100+98.4+0+354+0+190+0+0),positionX:\"center\",positionY:\"center\",sizes:\"142px\",src:\"https://framerusercontent.com/images/E4mDqrPIExi0cygcWnVxsE4eft8.png\",srcSet:\"https://framerusercontent.com/images/E4mDqrPIExi0cygcWnVxsE4eft8.png?scale-down-to=512 512w,https://framerusercontent.com/images/E4mDqrPIExi0cygcWnVxsE4eft8.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/E4mDqrPIExi0cygcWnVxsE4eft8.png 1612w\"}},pJFvs9CPn:{background:{alt:\"\",fit:\"stretch\",positionX:\"center\",positionY:\"center\",sizes:\"111px\",src:\"https://framerusercontent.com/images/E4mDqrPIExi0cygcWnVxsE4eft8.png\",srcSet:\"https://framerusercontent.com/images/E4mDqrPIExi0cygcWnVxsE4eft8.png?scale-down-to=512 512w,https://framerusercontent.com/images/E4mDqrPIExi0cygcWnVxsE4eft8.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/E4mDqrPIExi0cygcWnVxsE4eft8.png 1612w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"stretch\",positionX:\"center\",positionY:\"center\",sizes:\"132px\",src:\"https://framerusercontent.com/images/E4mDqrPIExi0cygcWnVxsE4eft8.png\",srcSet:\"https://framerusercontent.com/images/E4mDqrPIExi0cygcWnVxsE4eft8.png?scale-down-to=512 512w,https://framerusercontent.com/images/E4mDqrPIExi0cygcWnVxsE4eft8.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/E4mDqrPIExi0cygcWnVxsE4eft8.png 1612w\"},className:\"framer-1dkgiob\",\"data-framer-name\":\"007_W wayra\"})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-j973cm\",\"data-framer-name\":\"Mapfre\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{OV_DLPKnG:{background:{alt:\"\",fit:\"stretch\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+10058.9+100+98.4+0+354+0+280+0),positionX:\"center\",positionY:\"center\",sizes:\"147px\",src:\"https://framerusercontent.com/images/g7pDqMx9HBKPKml6u0e7WCpNVI.png\",srcSet:\"https://framerusercontent.com/images/g7pDqMx9HBKPKml6u0e7WCpNVI.png?scale-down-to=512 512w,https://framerusercontent.com/images/g7pDqMx9HBKPKml6u0e7WCpNVI.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/g7pDqMx9HBKPKml6u0e7WCpNVI.png 1784w\"}},pJFvs9CPn:{background:{alt:\"\",fit:\"stretch\",positionX:\"center\",positionY:\"center\",sizes:\"110px\",src:\"https://framerusercontent.com/images/g7pDqMx9HBKPKml6u0e7WCpNVI.png\",srcSet:\"https://framerusercontent.com/images/g7pDqMx9HBKPKml6u0e7WCpNVI.png?scale-down-to=512 512w,https://framerusercontent.com/images/g7pDqMx9HBKPKml6u0e7WCpNVI.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/g7pDqMx9HBKPKml6u0e7WCpNVI.png 1784w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"stretch\",positionX:\"center\",positionY:\"center\",sizes:\"196px\",src:\"https://framerusercontent.com/images/g7pDqMx9HBKPKml6u0e7WCpNVI.png\",srcSet:\"https://framerusercontent.com/images/g7pDqMx9HBKPKml6u0e7WCpNVI.png?scale-down-to=512 512w,https://framerusercontent.com/images/g7pDqMx9HBKPKml6u0e7WCpNVI.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/g7pDqMx9HBKPKml6u0e7WCpNVI.png 1784w\"},className:\"framer-7os1s\",\"data-framer-name\":\"MAPFRE-LOGO 1\"})})})]})]})]}),/*#__PURE__*/_jsxs(\"header\",{className:\"framer-1bwyrm0\",\"data-framer-name\":\"Header\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"blockquote\",{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"SW50ZXItTGlnaHQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"19px\",\"--framer-font-weight\":\"300\",\"--framer-letter-spacing\":\"-0.5px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(136, 136, 136)\"},children:/*#__PURE__*/_jsx(\"strong\",{children:\"Funded by CDTI under the Recovery, Transformation and Resilience Plan \u2013 NextGenerationEU.\"})})}),/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNTAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.5px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(136, 136, 136)\"},children:/*#__PURE__*/_jsx(\"br\",{className:\"trailing-break\"})})]}),className:\"framer-p7o8tu\",fonts:[\"Inter-Light\",\"Inter\",\"GF;Inter-500\",\"GF;Inter-700\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNzAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"50px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-2.6px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(2, 2, 43)\"},children:/*#__PURE__*/_jsx(\"strong\",{children:\"Science and Innovation for Healthy Longevity\"})})}),className:\"framer-2us0sm\",fonts:[\"GF;Inter-700\",\"GF;Inter-900\"],transformTemplate:transformTemplate2,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"R0Y7SW50ZXItcmVndWxhcg==\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"19px\",\"--framer-letter-spacing\":\"-0.5px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(136, 136, 136)\"},children:\"Funded by the Valencian Innovation Agency (AVI) through regional innovation support programs.\"})}),className:\"framer-1a5w3nr\",fonts:[\"GF;Inter-regular\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{OV_DLPKnG:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:720,intrinsicWidth:960,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+11064.3+600-363),pixelHeight:348,pixelWidth:481,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/JBdZhrL3jxbu1hiBPx1bjz7zHs.jpg\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",intrinsicHeight:720,intrinsicWidth:960,pixelHeight:348,pixelWidth:481,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/JBdZhrL3jxbu1hiBPx1bjz7zHs.jpg\"},className:\"framer-tl7td3\",\"data-framer-name\":\"Image\"})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{OV_DLPKnG:{background:{alt:\"\",fit:\"stretch\",intrinsicHeight:720,intrinsicWidth:960,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+11064.3+222),pixelHeight:479,pixelWidth:479,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/x4gmkpCOY3l1r0mWkAO49JBYX7E.jpg\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"stretch\",intrinsicHeight:720,intrinsicWidth:960,pixelHeight:479,pixelWidth:479,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/x4gmkpCOY3l1r0mWkAO49JBYX7E.jpg\"},className:\"framer-aujo7j\",\"data-framer-name\":\"Image\"})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{OV_DLPKnG:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h2\",{style:{\"--font-selector\":\"R0Y7SW50ZXItcmVndWxhcg==\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-letter-spacing\":\"-0.5px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(136, 136, 136)\"},children:[/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-font-size\":\"24px\"},children:/*#__PURE__*/_jsx(\"strong\",{children:\"At RX Longevity, we believe in scientific rigor, data-driven development, and actionable innovation.\"})}),/*#__PURE__*/_jsx(\"br\",{}),/*#__PURE__*/_jsx(\"br\",{}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-font-size\":\"24px\"},children:\"Our R&D efforts focus on creating next-generation health solutions that are validated, personalized, and highly impactful. We combine biomarker analysis, physiological monitoring, and artificial intelligence to deliver precise and dynamic longevity strategies.\"}),/*#__PURE__*/_jsx(\"br\",{}),/*#__PURE__*/_jsx(\"br\",{}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-font-size\":\"24px\"},children:\"By addressing multiple dimensions of health\u2014functional, metabolic, emotional, cognitive, and immune\u2014we empower people over 60 to stay in the top health percentile for their age, reducing the risk of preventable chronic conditions and enhancing quality of life through measurable, short-term results.\"})]})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h2\",{style:{\"--font-selector\":\"R0Y7SW50ZXItcmVndWxhcg==\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-letter-spacing\":\"-0.5px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(136, 136, 136)\"},children:[/*#__PURE__*/_jsx(\"strong\",{children:\"At RX Longevity, we believe in scientific rigor, data-driven development, and actionable innovation.\"}),/*#__PURE__*/_jsx(\"br\",{}),/*#__PURE__*/_jsx(\"br\",{}),\"Our R&D efforts focus on creating next-generation health solutions that are validated, personalized, and highly impactful. We combine biomarker analysis, physiological monitoring, and artificial intelligence to deliver precise and dynamic longevity strategies.\",/*#__PURE__*/_jsx(\"br\",{}),/*#__PURE__*/_jsx(\"br\",{}),\"By addressing multiple dimensions of health\u2014functional, metabolic, emotional, cognitive, and immune\u2014we empower people over 60 to stay in the top health percentile for their age, reducing the risk of preventable chronic conditions and enhancing quality of life through measurable, short-term results.\"]})}),className:\"framer-1m7ar34\",fonts:[\"GF;Inter-regular\",\"GF;Inter-700\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-hsn5mz\",\"data-framer-name\":\"Templates\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1ka93t3\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1dtvjf1\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{OV_DLPKnG:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:800,intrinsicWidth:2e3,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+11664.3+60+0+0+0+0+0),pixelHeight:301,pixelWidth:1024,positionX:\"center\",positionY:\"center\",sizes:`min(${componentViewport?.width||\"100vw\"} - 40px, 1000px)`,src:\"https://framerusercontent.com/images/nPT97gABQ5LU3W9EYC8rL8Rpjg.webp\",srcSet:\"https://framerusercontent.com/images/nPT97gABQ5LU3W9EYC8rL8Rpjg.webp?scale-down-to=512 512w,https://framerusercontent.com/images/nPT97gABQ5LU3W9EYC8rL8Rpjg.webp 1024w\"}},pJFvs9CPn:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:800,intrinsicWidth:2e3,pixelHeight:301,pixelWidth:1024,positionX:\"center\",positionY:\"center\",sizes:`max((min(${componentViewport?.width||\"100vw\"} - 80px, 1000px) - 60px) / 2, 1px)`,src:\"https://framerusercontent.com/images/nPT97gABQ5LU3W9EYC8rL8Rpjg.webp\",srcSet:\"https://framerusercontent.com/images/nPT97gABQ5LU3W9EYC8rL8Rpjg.webp?scale-down-to=512 512w,https://framerusercontent.com/images/nPT97gABQ5LU3W9EYC8rL8Rpjg.webp 1024w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",intrinsicHeight:800,intrinsicWidth:2e3,pixelHeight:301,pixelWidth:1024,positionX:\"center\",positionY:\"center\",sizes:`max((min(${componentViewport?.width||\"100vw\"} - 200px, 1000px) - 60px) / 2, 1px)`,src:\"https://framerusercontent.com/images/nPT97gABQ5LU3W9EYC8rL8Rpjg.webp\",srcSet:\"https://framerusercontent.com/images/nPT97gABQ5LU3W9EYC8rL8Rpjg.webp?scale-down-to=512 512w,https://framerusercontent.com/images/nPT97gABQ5LU3W9EYC8rL8Rpjg.webp 1024w\"},className:\"framer-120lhmm\",\"data-framer-name\":\"Image\"})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1ubon7\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{OV_DLPKnG:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:800,intrinsicWidth:2e3,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+11664.3+60+0+0+310+0+0),pixelHeight:1080,pixelWidth:1920,positionX:\"center\",positionY:\"center\",sizes:`min(${componentViewport?.width||\"100vw\"} - 40px, 1000px)`,src:\"https://framerusercontent.com/images/tFGagcIxeqbdpDVDVR2lDnMa2UQ.png\",srcSet:\"https://framerusercontent.com/images/tFGagcIxeqbdpDVDVR2lDnMa2UQ.png?scale-down-to=512 512w,https://framerusercontent.com/images/tFGagcIxeqbdpDVDVR2lDnMa2UQ.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/tFGagcIxeqbdpDVDVR2lDnMa2UQ.png 1920w\"}},pJFvs9CPn:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:800,intrinsicWidth:2e3,pixelHeight:1080,pixelWidth:1920,positionX:\"center\",positionY:\"center\",sizes:`max((min(${componentViewport?.width||\"100vw\"} - 80px, 1000px) - 60px) / 2, 1px)`,src:\"https://framerusercontent.com/images/tFGagcIxeqbdpDVDVR2lDnMa2UQ.png\",srcSet:\"https://framerusercontent.com/images/tFGagcIxeqbdpDVDVR2lDnMa2UQ.png?scale-down-to=512 512w,https://framerusercontent.com/images/tFGagcIxeqbdpDVDVR2lDnMa2UQ.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/tFGagcIxeqbdpDVDVR2lDnMa2UQ.png 1920w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",intrinsicHeight:800,intrinsicWidth:2e3,pixelHeight:1080,pixelWidth:1920,positionX:\"center\",positionY:\"center\",sizes:`max((min(${componentViewport?.width||\"100vw\"} - 200px, 1000px) - 60px) / 2, 1px)`,src:\"https://framerusercontent.com/images/tFGagcIxeqbdpDVDVR2lDnMa2UQ.png\",srcSet:\"https://framerusercontent.com/images/tFGagcIxeqbdpDVDVR2lDnMa2UQ.png?scale-down-to=512 512w,https://framerusercontent.com/images/tFGagcIxeqbdpDVDVR2lDnMa2UQ.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/tFGagcIxeqbdpDVDVR2lDnMa2UQ.png 1920w\"},className:\"framer-m5wd12\",\"data-framer-name\":\"Image\"})})})]})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{OV_DLPKnG:{y:(componentViewport?.y||0)+0+12304.3}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:562,width:componentViewport?.width||\"100vw\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-qdmlp3-container\",nodeId:\"nNRjf51vu\",scopeId:\"GLz2DcH7V\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{OV_DLPKnG:{variant:\"BPEEByVvW\"},pJFvs9CPn:{variant:\"O5yV8PJJh\"}},children:/*#__PURE__*/_jsx(FooterDark,{height:\"100%\",id:\"nNRjf51vu\",layoutId:\"nNRjf51vu\",style:{width:\"100%\"},variant:\"ifXst7RsS\",width:\"100%\"})})})})})]}),/*#__PURE__*/_jsx(\"div\",{id:\"overlay\"})]})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-hNZcO.framer-moxe1a, .framer-hNZcO .framer-moxe1a { display: block; }\",\".framer-hNZcO.framer-165zar4 { align-content: center; align-items: center; background-color: #020105; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 1440px; }\",\".framer-hNZcO .framer-1rm6kjl-container { flex: none; height: auto; position: relative; width: 100%; z-index: 1; }\",\".framer-hNZcO .framer-188a6gy { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 80px; height: 100vh; justify-content: center; overflow: visible; padding: 0px 350px 0px 350px; position: relative; width: 100%; z-index: 1; }\",\".framer-hNZcO .framer-1maitkq { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 48px; height: min-content; justify-content: center; max-width: 720px; padding: 0px; position: sticky; top: 0px; width: min-content; z-index: 1; }\",\".framer-hNZcO .framer-18dffth { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; overflow: visible; position: relative; white-space: pre-wrap; width: 722px; word-break: break-word; word-wrap: break-word; z-index: 1; }\",\".framer-hNZcO .framer-19csy8v { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 32px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 571px; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-hNZcO .framer-mobof1 { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: 90px; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-hNZcO .framer-1pl1lw8 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 24px; height: 51px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-hNZcO .framer-17kkr89-container, .framer-hNZcO .framer-jjn1fy-container { flex: 1 0 0px; height: auto; position: relative; width: 1px; }\",\".framer-hNZcO .framer-bxcq3o { align-content: center; align-items: center; background-color: #f6f4ff; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 100px; position: relative; width: 100%; }\",\".framer-hNZcO .framer-uhr84p { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 60px; height: min-content; justify-content: center; max-width: 1199.95px; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-hNZcO .framer-15vg0xi { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: flex-start; max-width: 530px; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-hNZcO .framer-1kutzkt, .framer-hNZcO .framer-1v6dgt8 { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-hNZcO .framer-v2bpbf { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 440px; word-break: break-word; word-wrap: break-word; }\",\".framer-hNZcO .framer-5rbo55 { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 530px; word-break: break-word; word-wrap: break-word; }\",\".framer-hNZcO .framer-855xcv-container { flex: none; height: 422px; max-width: 800px; position: relative; width: 670px; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-hNZcO .framer-12nhv4e-container { flex: none; height: 290px; max-width: 800px; position: relative; width: 670px; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-hNZcO .framer-1tnu9dg { --border-bottom-width: 1px; --border-color: rgba(0, 0, 0, 0.08); --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; border-bottom-left-radius: 44px; border-bottom-right-radius: 44px; border-top-left-radius: 44px; border-top-right-radius: 44px; box-shadow: 0px 10px 30px -20px rgba(0, 0, 0, 0.25); flex: none; height: 344px; overflow: hidden; position: relative; width: 660px; will-change: var(--framer-will-change-override, transform); }\",\".framer-hNZcO .framer-1ndqv8b-container { bottom: 0px; flex: none; left: -30px; max-width: 800px; position: absolute; right: 0px; top: -20px; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-hNZcO .framer-9ebkif, .framer-hNZcO .framer-vimhw4 { align-content: center; align-items: center; background-color: #ffffff; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 60px; height: min-content; justify-content: center; overflow: hidden; padding: 100px 40px 100px 40px; position: relative; width: 100%; }\",\".framer-hNZcO .framer-mjz9jn, .framer-hNZcO .framer-1p8jc2v, .framer-hNZcO .framer-qnfhiq { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; overflow: visible; position: relative; white-space: pre; width: auto; }\",\".framer-hNZcO .framer-2vgnhp, .framer-hNZcO .framer-i6s7vu { flex: none; height: auto; overflow: visible; position: relative; white-space: pre-wrap; width: 70%; word-break: break-word; word-wrap: break-word; }\",\".framer-hNZcO .framer-qvzifq { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: wrap; gap: 20px; height: min-content; justify-content: center; max-width: 100%; overflow: visible; padding: 0px; position: relative; width: 1372px; }\",\".framer-hNZcO .framer-1jri064 { align-content: center; align-items: center; background-color: #ffffff; border-bottom-left-radius: 20px; border-bottom-right-radius: 20px; border-top-left-radius: 20px; border-top-right-radius: 20px; box-shadow: 0px 0.7961918735236395px 3.9809593676181976px -0.6875px rgba(110, 0, 173, 0.13), 0px 2.414506143104518px 12.07253071552259px -1.375px rgba(110, 0, 173, 0.1291), 0px 6.382653521484461px 31.91326760742231px -2.0625px rgba(110, 0, 173, 0.12434), 0px 20px 100px -2.75px rgba(110, 0, 173, 0.108); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; min-width: 100px; overflow: hidden; padding: 0px; position: relative; width: 320px; will-change: var(--framer-will-change-override, transform); }\",\".framer-hNZcO .framer-cri2b5, .framer-hNZcO .framer-tom72m, .framer-hNZcO .framer-nm3g1i, .framer-hNZcO .framer-1q3hg2f { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; padding: 30px; position: relative; width: 100%; }\",\".framer-hNZcO .framer-10bemvu, .framer-hNZcO .framer-1sq6ub3, .framer-hNZcO .framer-14ehw4o, .framer-hNZcO .framer-1km1zek, .framer-hNZcO .framer-b3irk6, .framer-hNZcO .framer-1ndlkt1, .framer-hNZcO .framer-vz8cgo, .framer-hNZcO .framer-luvuh6, .framer-hNZcO .framer-1ms2341, .framer-hNZcO .framer-6gggdy { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; overflow: visible; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-hNZcO .framer-dq4s97, .framer-hNZcO .framer-1lxjro1, .framer-hNZcO .framer-c393rz, .framer-hNZcO .framer-1lnf2fg, .framer-hNZcO .framer-z2ndn3 { flex: none; height: auto; overflow: visible; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-hNZcO .framer-1vjazh1, .framer-hNZcO .framer-xnuc24, .framer-hNZcO .framer-flliov { align-content: center; align-items: center; background-color: #ffffff; border-bottom-left-radius: 20px; border-bottom-right-radius: 20px; border-top-left-radius: 20px; border-top-right-radius: 20px; box-shadow: 0px 0.7961918735236395px 2.3885756205709185px -0.625px rgba(110, 0, 173, 0.13), 0px 2.414506143104518px 7.2435184293135535px -1.25px rgba(110, 0, 173, 0.125), 0px 6.382653521484461px 19.147960564453385px -1.875px rgba(110, 0, 173, 0.125), 0px 20px 60px -2.5px rgba(110, 0, 173, 0.125); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 320px; will-change: var(--framer-will-change-override, transform); }\",\".framer-hNZcO .framer-1xuit5s { align-content: center; align-items: center; background-color: #02022b; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 48px; height: min-content; justify-content: center; overflow: hidden; padding: 100px; position: relative; width: 100%; }\",\".framer-hNZcO .framer-17lb497 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 32px; height: min-content; justify-content: center; max-width: 1200px; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-hNZcO .framer-15ve6wq { flex: none; height: 67px; left: calc(50.00000000000002% - 350px / 2); overflow: hidden; position: absolute; top: 0px; width: 350px; z-index: 1; }\",\".framer-hNZcO .framer-rp6sxp { background: radial-gradient(50% 50% at 50% 50%, #ff52c2 0%, rgba(171, 171, 171, 0) 100%); bottom: 0px; flex: none; opacity: 0.2; overflow: hidden; position: absolute; right: 0px; top: -48px; width: 349px; }\",\".framer-hNZcO .framer-134bvt2 { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; max-width: 1200px; overflow: visible; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-hNZcO .framer-1uhl088-container { flex: none; height: 560px; position: relative; width: 310px; }\",\".framer-hNZcO .framer-1aijq3g { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 675px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 839px; }\",\".framer-hNZcO .framer-1kcumdo { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 100%; justify-content: center; overflow: hidden; padding: 0px 32px 0px 0px; position: relative; width: 100%; }\",\".framer-hNZcO .framer-11ltf1n { --border-bottom-width: 1px; --border-color: rgba(255, 255, 255, 0.08); --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; -webkit-filter: saturate(1.2); align-content: center; align-items: center; background: linear-gradient(140deg, #060632 0%, hsl(260, 17%, 21%) 100%); border-bottom-left-radius: 10px; border-top-left-radius: 10px; box-shadow: 0px 20px 40px 0px rgba(0, 0, 0, 0.25); display: flex; filter: saturate(1.2); flex: none; flex-direction: row; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: flex-start; left: 24px; overflow: visible; padding: 40px; position: absolute; top: 50%; transform: translateY(-50%); width: 616px; z-index: 1; }\",\".framer-hNZcO .framer-x7nc4l { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; opacity: 0.2; overflow: visible; padding: 0px; position: relative; width: min-content; }\",'.framer-hNZcO .framer-w7zovw { --framer-font-family: \"DM Mono\", monospace; --framer-font-open-type-features: normal; --framer-font-size: 18px; --framer-font-style: normal; --framer-font-variation-axes: normal; --framer-font-weight: 400; --framer-letter-spacing: -0.2px; --framer-line-height: 1.8em; --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; --framer-text-alignment: center; --framer-text-color: #ffffff; --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; flex: none; height: auto; overflow: visible; position: relative; white-space: pre; width: auto; }',\".framer-hNZcO .framer-y505da { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-hNZcO .framer-1vc5mgf { bottom: 0px; flex: none; height: 675px; overflow: hidden; position: absolute; right: 0px; width: 367px; z-index: 1; }\",\".framer-hNZcO .framer-q60tio-container { flex: none; height: 582px; position: absolute; right: 0px; top: calc(49.7777777777778% - 582px / 2); width: 335px; }\",\".framer-hNZcO .framer-cej545 { align-content: center; align-items: center; background-color: #ffffff; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 100px; height: min-content; justify-content: center; overflow: hidden; padding: 40px; position: relative; width: 100%; }\",\".framer-hNZcO .framer-n28e2x { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; overflow: visible; position: relative; white-space: pre; width: auto; z-index: 1; }\",\".framer-hNZcO .framer-v0dmv1 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: hidden; padding: 24px; position: relative; width: 100%; }\",\".framer-hNZcO .framer-144l95g, .framer-hNZcO .framer-tmp3ph, .framer-hNZcO .framer-168lqed { align-content: center; align-items: center; background-color: #ffffff; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-hNZcO .framer-wk98r5-container, .framer-hNZcO .framer-1e3e4bs-container, .framer-hNZcO .framer-jrjqg5-container { flex: none; height: 450px; position: relative; width: 100%; }\",\".framer-hNZcO .framer-atieo2-container, .framer-hNZcO .framer-169zej3-container, .framer-hNZcO .framer-hotpso-container { flex: none; height: 400px; position: relative; width: 100%; }\",\".framer-hNZcO .framer-z5fxnk { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 100px; position: relative; width: 100%; }\",\".framer-hNZcO .framer-1djjpxk { 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; max-width: 1200px; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-hNZcO .framer-gurwoq { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: flex-start; max-width: 530px; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-hNZcO .framer-1fx2ubk { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 442px; word-break: break-word; word-wrap: break-word; }\",\".framer-hNZcO .framer-11rhaud { display: grid; flex: 1 0 0px; gap: 24px; grid-auto-rows: min-content; grid-template-columns: repeat(2, minmax(200px, 1fr)); grid-template-rows: repeat(2, min-content); height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-hNZcO .framer-knwhpt { --border-bottom-width: 1px; --border-color: rgba(0, 0, 0, 0.05); --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; align-self: start; aspect-ratio: 1.5050167224080269 / 1; border-bottom-left-radius: 10px; border-bottom-right-radius: 10px; border-top-left-radius: 10px; border-top-right-radius: 10px; box-shadow: 0px 10px 20px -20px rgba(0, 0, 0, 0.25); flex: none; grid-column: auto / span 2; height: var(--framer-aspect-ratio-supported, 419px); justify-self: start; overflow: hidden; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-hNZcO .framer-1cw0xqb-container, .framer-hNZcO .framer-dawvod-container { bottom: 0px; flex: none; left: 0px; position: absolute; right: 0px; top: 0px; }\",\".framer-hNZcO .framer-1qwhp4p, .framer-hNZcO .framer-rys7j5 { --border-bottom-width: 1px; --border-color: rgba(0, 0, 0, 0.05); --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; align-self: start; border-bottom-left-radius: 10px; border-bottom-right-radius: 10px; border-top-left-radius: 10px; border-top-right-radius: 10px; box-shadow: 0px 10px 20px -20px rgba(0, 0, 0, 0.25); flex: none; height: 299px; justify-self: start; overflow: hidden; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-hNZcO .framer-1f3t21-container { bottom: 0px; flex: none; left: -57px; position: absolute; right: -54px; top: -292px; }\",\".framer-hNZcO .framer-b2388p { --border-bottom-width: 0px; --border-color: var(--token-6a2cad5f-e8d7-426b-8e13-10e07ee3ce95, #e6ebec); --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; 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; max-width: 1200px; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-hNZcO .framer-jsolb7-container, .framer-hNZcO .framer-1v4075n-container, .framer-hNZcO .framer-1ot1suv-container { align-self: stretch; flex: 1 0 0px; height: auto; position: relative; width: 1px; }\",\".framer-hNZcO .framer-11iqtjd { align-content: center; align-items: center; background-color: #ffffff; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-hNZcO .framer-o9ctpv { align-content: center; align-items: center; align-self: stretch; background-color: #f6f4ff; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: auto; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-hNZcO .framer-1crwzez { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; max-width: 2018px; padding: 0px; position: relative; width: 400px; }\",\".framer-hNZcO .framer-ecxslf { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 15px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-hNZcO .framer-uy9nns-container { flex: none; height: auto; position: relative; width: 178px; }\",\".framer-hNZcO .framer-1mr58fc-container { flex: none; height: auto; position: relative; width: auto; }\",\".framer-hNZcO .framer-11qmrm6 { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: 600px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-hNZcO .framer-zvjo57 { align-content: center; align-items: center; background-color: #ffffff; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 60px; height: min-content; justify-content: center; overflow: hidden; padding: 100px 160px 100px 160px; position: relative; width: 100%; }\",\".framer-hNZcO .framer-4bcr5j { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: wrap; gap: 48px; height: min-content; justify-content: center; max-width: 1200px; opacity: 0.48; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-hNZcO .framer-18x2qio, .framer-hNZcO .framer-4fc7qj { 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-hNZcO .framer-cjdjj5, .framer-hNZcO .framer-163ku9e { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-hNZcO .framer-16rlqb1 { aspect-ratio: 3.4330563557746214 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 63px); position: relative; width: 216px; }\",\".framer-hNZcO .framer-1895ud3 { flex: none; height: 43px; opacity: 0.72; overflow: visible; position: relative; width: 140px; }\",\".framer-hNZcO .framer-10c3f9t { aspect-ratio: 3.3056478013087363 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 43px); left: 0px; position: absolute; right: 0px; top: 0px; }\",\".framer-hNZcO .framer-1mp0fls, .framer-hNZcO .framer-det96b { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-hNZcO .framer-16dp1ww { aspect-ratio: 8.231510605922965 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 42px); position: relative; width: 344px; }\",\".framer-hNZcO .framer-zkvuqk { aspect-ratio: 3.968992107249445 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 54px); position: relative; width: 214px; }\",\".framer-hNZcO .framer-1qga27o { flex: none; height: 44px; opacity: 0.72; overflow: visible; position: relative; width: 252px; }\",\".framer-hNZcO .framer-1oyarik { aspect-ratio: 4.834394831314063 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 57px); left: -12px; position: absolute; right: -12px; top: -7px; }\",\".framer-hNZcO .framer-vg2c7j { aspect-ratio: 2.2795698054537685 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 82px); position: relative; width: 186px; }\",\".framer-hNZcO .framer-f72m9l { flex: none; height: 54px; opacity: 0.72; overflow: visible; position: relative; width: 131px; }\",\".framer-hNZcO .framer-1dkgiob { aspect-ratio: 2.4596776292717033 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 54px); left: 0px; position: absolute; right: -1px; top: 0px; }\",\".framer-hNZcO .framer-j973cm { flex: none; height: 97px; overflow: visible; position: relative; width: 196px; }\",\".framer-hNZcO .framer-7os1s { aspect-ratio: 2.023255802685002 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 97px); left: 0px; position: absolute; right: 0px; top: 0px; }\",\".framer-hNZcO .framer-1bwyrm0 { align-content: center; align-items: center; background-color: #f6f4ff; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: 800px; justify-content: center; overflow: hidden; padding: 40px; position: relative; width: 100%; }\",\".framer-hNZcO .framer-p7o8tu { --framer-paragraph-spacing: 0px; flex: none; height: auto; left: 1156px; overflow: visible; position: absolute; top: 263px; white-space: pre-wrap; width: 233px; word-break: break-word; word-wrap: break-word; z-index: 1; }\",\".framer-hNZcO .framer-2us0sm { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; --framer-paragraph-spacing: 0px; flex: none; height: auto; left: 50%; max-width: 100%; position: absolute; top: 51px; transform: translateX(-50%); white-space: pre-wrap; width: auto; word-break: break-word; word-wrap: break-word; z-index: 1; }\",\".framer-hNZcO .framer-1a5w3nr { --framer-paragraph-spacing: 0px; bottom: 156px; flex: none; height: auto; left: 1156px; overflow: visible; position: absolute; white-space: pre-wrap; width: 233px; word-break: break-word; word-wrap: break-word; z-index: 1; }\",\".framer-hNZcO .framer-tl7td3 { border-bottom-left-radius: 20px; border-bottom-right-radius: 20px; border-top-left-radius: 20px; border-top-right-radius: 20px; bottom: 63px; flex: none; height: 300px; left: 901px; overflow: hidden; position: absolute; width: 239px; will-change: var(--framer-will-change-override, transform); z-index: 1; }\",\".framer-hNZcO .framer-aujo7j { border-bottom-left-radius: 20px; border-bottom-right-radius: 20px; border-top-left-radius: 20px; border-top-right-radius: 20px; bottom: 346px; flex: none; left: 901px; overflow: hidden; position: absolute; right: 294px; top: 222px; will-change: var(--framer-will-change-override, transform); z-index: 1; }\",\".framer-hNZcO .framer-1m7ar34 { --framer-paragraph-spacing: 0px; bottom: 38px; flex: none; height: auto; left: 107px; max-width: 100%; overflow: visible; position: absolute; white-space: pre-wrap; width: 695px; word-break: break-word; word-wrap: break-word; z-index: 1; }\",\".framer-hNZcO .framer-hsn5mz { align-content: center; align-items: center; background-color: #ffffff; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 60px; height: min-content; justify-content: center; overflow: hidden; padding: 0px 100px 0px 100px; position: relative; width: 100%; }\",\".framer-hNZcO .framer-1ka93t3 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 60px; height: min-content; justify-content: center; max-width: 1000px; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-hNZcO .framer-1dtvjf1, .framer-hNZcO .framer-1ubon7 { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 30px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-hNZcO .framer-120lhmm { border-bottom-left-radius: 20px; border-bottom-right-radius: 20px; border-top-left-radius: 20px; border-top-right-radius: 20px; flex: none; height: 250px; overflow: hidden; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-hNZcO .framer-m5wd12 { border-bottom-left-radius: 20px; border-bottom-right-radius: 20px; border-top-left-radius: 20px; border-top-right-radius: 20px; flex: none; height: 210px; overflow: hidden; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-hNZcO .framer-qdmlp3-container { flex: none; height: auto; position: relative; width: 100%; }\",\"@supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-hNZcO.framer-165zar4, .framer-hNZcO .framer-188a6gy, .framer-hNZcO .framer-1maitkq, .framer-hNZcO .framer-19csy8v, .framer-hNZcO .framer-1pl1lw8, .framer-hNZcO .framer-bxcq3o, .framer-hNZcO .framer-uhr84p, .framer-hNZcO .framer-15vg0xi, .framer-hNZcO .framer-9ebkif, .framer-hNZcO .framer-qvzifq, .framer-hNZcO .framer-1jri064, .framer-hNZcO .framer-cri2b5, .framer-hNZcO .framer-1vjazh1, .framer-hNZcO .framer-tom72m, .framer-hNZcO .framer-xnuc24, .framer-hNZcO .framer-nm3g1i, .framer-hNZcO .framer-flliov, .framer-hNZcO .framer-1q3hg2f, .framer-hNZcO .framer-1xuit5s, .framer-hNZcO .framer-17lb497, .framer-hNZcO .framer-1aijq3g, .framer-hNZcO .framer-1kcumdo, .framer-hNZcO .framer-11ltf1n, .framer-hNZcO .framer-x7nc4l, .framer-hNZcO .framer-y505da, .framer-hNZcO .framer-cej545, .framer-hNZcO .framer-v0dmv1, .framer-hNZcO .framer-144l95g, .framer-hNZcO .framer-tmp3ph, .framer-hNZcO .framer-168lqed, .framer-hNZcO .framer-vimhw4, .framer-hNZcO .framer-z5fxnk, .framer-hNZcO .framer-1djjpxk, .framer-hNZcO .framer-gurwoq, .framer-hNZcO .framer-b2388p, .framer-hNZcO .framer-11iqtjd, .framer-hNZcO .framer-o9ctpv, .framer-hNZcO .framer-1crwzez, .framer-hNZcO .framer-ecxslf, .framer-hNZcO .framer-11qmrm6, .framer-hNZcO .framer-zvjo57, .framer-hNZcO .framer-4bcr5j, .framer-hNZcO .framer-cjdjj5, .framer-hNZcO .framer-1mp0fls, .framer-hNZcO .framer-det96b, .framer-hNZcO .framer-163ku9e, .framer-hNZcO .framer-1bwyrm0, .framer-hNZcO .framer-hsn5mz, .framer-hNZcO .framer-1ka93t3, .framer-hNZcO .framer-1dtvjf1, .framer-hNZcO .framer-1ubon7 { gap: 0px; } .framer-hNZcO.framer-165zar4 > *, .framer-hNZcO .framer-bxcq3o > *, .framer-hNZcO .framer-1jri064 > *, .framer-hNZcO .framer-1vjazh1 > *, .framer-hNZcO .framer-xnuc24 > *, .framer-hNZcO .framer-flliov > *, .framer-hNZcO .framer-144l95g > *, .framer-hNZcO .framer-tmp3ph > *, .framer-hNZcO .framer-168lqed > *, .framer-hNZcO .framer-z5fxnk > *, .framer-hNZcO .framer-cjdjj5 > *, .framer-hNZcO .framer-163ku9e > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-hNZcO.framer-165zar4 > :first-child, .framer-hNZcO .framer-188a6gy > :first-child, .framer-hNZcO .framer-1maitkq > :first-child, .framer-hNZcO .framer-19csy8v > :first-child, .framer-hNZcO .framer-bxcq3o > :first-child, .framer-hNZcO .framer-15vg0xi > :first-child, .framer-hNZcO .framer-9ebkif > :first-child, .framer-hNZcO .framer-1jri064 > :first-child, .framer-hNZcO .framer-cri2b5 > :first-child, .framer-hNZcO .framer-1vjazh1 > :first-child, .framer-hNZcO .framer-tom72m > :first-child, .framer-hNZcO .framer-xnuc24 > :first-child, .framer-hNZcO .framer-nm3g1i > :first-child, .framer-hNZcO .framer-flliov > :first-child, .framer-hNZcO .framer-1q3hg2f > :first-child, .framer-hNZcO .framer-1xuit5s > :first-child, .framer-hNZcO .framer-17lb497 > :first-child, .framer-hNZcO .framer-x7nc4l > :first-child, .framer-hNZcO .framer-y505da > :first-child, .framer-hNZcO .framer-cej545 > :first-child, .framer-hNZcO .framer-144l95g > :first-child, .framer-hNZcO .framer-tmp3ph > :first-child, .framer-hNZcO .framer-168lqed > :first-child, .framer-hNZcO .framer-vimhw4 > :first-child, .framer-hNZcO .framer-z5fxnk > :first-child, .framer-hNZcO .framer-gurwoq > :first-child, .framer-hNZcO .framer-1crwzez > :first-child, .framer-hNZcO .framer-11qmrm6 > :first-child, .framer-hNZcO .framer-zvjo57 > :first-child, .framer-hNZcO .framer-4bcr5j > :first-child, .framer-hNZcO .framer-cjdjj5 > :first-child, .framer-hNZcO .framer-163ku9e > :first-child, .framer-hNZcO .framer-1bwyrm0 > :first-child, .framer-hNZcO .framer-hsn5mz > :first-child, .framer-hNZcO .framer-1dtvjf1 > :first-child, .framer-hNZcO .framer-1ubon7 > :first-child { margin-top: 0px; } .framer-hNZcO.framer-165zar4 > :last-child, .framer-hNZcO .framer-188a6gy > :last-child, .framer-hNZcO .framer-1maitkq > :last-child, .framer-hNZcO .framer-19csy8v > :last-child, .framer-hNZcO .framer-bxcq3o > :last-child, .framer-hNZcO .framer-15vg0xi > :last-child, .framer-hNZcO .framer-9ebkif > :last-child, .framer-hNZcO .framer-1jri064 > :last-child, .framer-hNZcO .framer-cri2b5 > :last-child, .framer-hNZcO .framer-1vjazh1 > :last-child, .framer-hNZcO .framer-tom72m > :last-child, .framer-hNZcO .framer-xnuc24 > :last-child, .framer-hNZcO .framer-nm3g1i > :last-child, .framer-hNZcO .framer-flliov > :last-child, .framer-hNZcO .framer-1q3hg2f > :last-child, .framer-hNZcO .framer-1xuit5s > :last-child, .framer-hNZcO .framer-17lb497 > :last-child, .framer-hNZcO .framer-x7nc4l > :last-child, .framer-hNZcO .framer-y505da > :last-child, .framer-hNZcO .framer-cej545 > :last-child, .framer-hNZcO .framer-144l95g > :last-child, .framer-hNZcO .framer-tmp3ph > :last-child, .framer-hNZcO .framer-168lqed > :last-child, .framer-hNZcO .framer-vimhw4 > :last-child, .framer-hNZcO .framer-z5fxnk > :last-child, .framer-hNZcO .framer-gurwoq > :last-child, .framer-hNZcO .framer-1crwzez > :last-child, .framer-hNZcO .framer-11qmrm6 > :last-child, .framer-hNZcO .framer-zvjo57 > :last-child, .framer-hNZcO .framer-4bcr5j > :last-child, .framer-hNZcO .framer-cjdjj5 > :last-child, .framer-hNZcO .framer-163ku9e > :last-child, .framer-hNZcO .framer-1bwyrm0 > :last-child, .framer-hNZcO .framer-hsn5mz > :last-child, .framer-hNZcO .framer-1dtvjf1 > :last-child, .framer-hNZcO .framer-1ubon7 > :last-child { margin-bottom: 0px; } .framer-hNZcO .framer-188a6gy > * { margin: 0px; margin-bottom: calc(80px / 2); margin-top: calc(80px / 2); } .framer-hNZcO .framer-1maitkq > *, .framer-hNZcO .framer-1xuit5s > *, .framer-hNZcO .framer-4bcr5j > * { margin: 0px; margin-bottom: calc(48px / 2); margin-top: calc(48px / 2); } .framer-hNZcO .framer-19csy8v > *, .framer-hNZcO .framer-17lb497 > * { margin: 0px; margin-bottom: calc(32px / 2); margin-top: calc(32px / 2); } .framer-hNZcO .framer-1pl1lw8 > * { margin: 0px; margin-left: calc(24px / 2); margin-right: calc(24px / 2); } .framer-hNZcO .framer-1pl1lw8 > :first-child, .framer-hNZcO .framer-uhr84p > :first-child, .framer-hNZcO .framer-qvzifq > :first-child, .framer-hNZcO .framer-1aijq3g > :first-child, .framer-hNZcO .framer-1kcumdo > :first-child, .framer-hNZcO .framer-11ltf1n > :first-child, .framer-hNZcO .framer-v0dmv1 > :first-child, .framer-hNZcO .framer-1djjpxk > :first-child, .framer-hNZcO .framer-b2388p > :first-child, .framer-hNZcO .framer-11iqtjd > :first-child, .framer-hNZcO .framer-o9ctpv > :first-child, .framer-hNZcO .framer-ecxslf > :first-child, .framer-hNZcO .framer-1mp0fls > :first-child, .framer-hNZcO .framer-det96b > :first-child, .framer-hNZcO .framer-1ka93t3 > :first-child { margin-left: 0px; } .framer-hNZcO .framer-1pl1lw8 > :last-child, .framer-hNZcO .framer-uhr84p > :last-child, .framer-hNZcO .framer-qvzifq > :last-child, .framer-hNZcO .framer-1aijq3g > :last-child, .framer-hNZcO .framer-1kcumdo > :last-child, .framer-hNZcO .framer-11ltf1n > :last-child, .framer-hNZcO .framer-v0dmv1 > :last-child, .framer-hNZcO .framer-1djjpxk > :last-child, .framer-hNZcO .framer-b2388p > :last-child, .framer-hNZcO .framer-11iqtjd > :last-child, .framer-hNZcO .framer-o9ctpv > :last-child, .framer-hNZcO .framer-ecxslf > :last-child, .framer-hNZcO .framer-1mp0fls > :last-child, .framer-hNZcO .framer-det96b > :last-child, .framer-hNZcO .framer-1ka93t3 > :last-child { margin-right: 0px; } .framer-hNZcO .framer-uhr84p > *, .framer-hNZcO .framer-1ka93t3 > * { margin: 0px; margin-left: calc(60px / 2); margin-right: calc(60px / 2); } .framer-hNZcO .framer-15vg0xi > *, .framer-hNZcO .framer-cri2b5 > *, .framer-hNZcO .framer-tom72m > *, .framer-hNZcO .framer-nm3g1i > *, .framer-hNZcO .framer-1q3hg2f > *, .framer-hNZcO .framer-y505da > *, .framer-hNZcO .framer-gurwoq > *, .framer-hNZcO .framer-1crwzez > *, .framer-hNZcO .framer-11qmrm6 > *, .framer-hNZcO .framer-1bwyrm0 > * { margin: 0px; margin-bottom: calc(20px / 2); margin-top: calc(20px / 2); } .framer-hNZcO .framer-9ebkif > *, .framer-hNZcO .framer-vimhw4 > *, .framer-hNZcO .framer-zvjo57 > *, .framer-hNZcO .framer-hsn5mz > * { margin: 0px; margin-bottom: calc(60px / 2); margin-top: calc(60px / 2); } .framer-hNZcO .framer-qvzifq > *, .framer-hNZcO .framer-11ltf1n > * { margin: 0px; margin-left: calc(20px / 2); margin-right: calc(20px / 2); } .framer-hNZcO .framer-1aijq3g > *, .framer-hNZcO .framer-1kcumdo > *, .framer-hNZcO .framer-o9ctpv > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-hNZcO .framer-x7nc4l > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-hNZcO .framer-cej545 > * { margin: 0px; margin-bottom: calc(100px / 2); margin-top: calc(100px / 2); } .framer-hNZcO .framer-v0dmv1 > *, .framer-hNZcO .framer-1djjpxk > *, .framer-hNZcO .framer-b2388p > *, .framer-hNZcO .framer-11iqtjd > *, .framer-hNZcO .framer-1mp0fls > *, .framer-hNZcO .framer-det96b > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } .framer-hNZcO .framer-ecxslf > * { margin: 0px; margin-left: calc(15px / 2); margin-right: calc(15px / 2); } .framer-hNZcO .framer-1dtvjf1 > *, .framer-hNZcO .framer-1ubon7 > * { margin: 0px; margin-bottom: calc(30px / 2); margin-top: calc(30px / 2); } }\",'.framer-hNZcO[data-border=\"true\"]::after, .framer-hNZcO [data-border=\"true\"]::after { content: \"\"; border-width: var(--border-top-width, 0) var(--border-right-width, 0) var(--border-bottom-width, 0) var(--border-left-width, 0); border-color: var(--border-color, none); border-style: var(--border-style, none); width: 100%; height: 100%; position: absolute; box-sizing: border-box; left: 0; top: 0; border-radius: inherit; pointer-events: none; }',\"@media (min-width: 810px) and (max-width: 1439px) { .framer-hNZcO.framer-165zar4 { width: 810px; } .framer-hNZcO .framer-1rm6kjl-container, .framer-hNZcO .framer-17lb497, .framer-hNZcO .framer-qnfhiq { order: 0; } .framer-hNZcO .framer-188a6gy { height: min-content; order: 1; padding: 140px 32px 120px 32px; } .framer-hNZcO .framer-18dffth { width: 535px; } .framer-hNZcO .framer-bxcq3o { background-color: var(--token-0cdf47b3-ce1f-4341-98ec-f094608541cb, #f6f4ff); order: 5; padding: 100px 50px 100px 50px; } .framer-hNZcO .framer-uhr84p { align-content: center; align-items: center; flex-direction: column; gap: 50px; } .framer-hNZcO .framer-12nhv4e-container { align-self: stretch; width: auto; } .framer-hNZcO .framer-9ebkif { order: 7; padding: 80px 40px 80px 40px; } .framer-hNZcO .framer-mjz9jn, .framer-hNZcO .framer-n28e2x { white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; } .framer-hNZcO .framer-1jri064, .framer-hNZcO .framer-1vjazh1, .framer-hNZcO .framer-xnuc24, .framer-hNZcO .framer-flliov { flex: 1 0 0px; width: 1px; } .framer-hNZcO .framer-1xuit5s { gap: 32px; order: 6; } .framer-hNZcO .framer-15ve6wq { order: 1; } .framer-hNZcO .framer-134bvt2 { order: 3; } .framer-hNZcO .framer-1aijq3g { order: 5; } .framer-hNZcO .framer-11ltf1n { left: 84px; width: 494px; } .framer-hNZcO .framer-q60tio-container { height: 560px; left: calc(50.95367847411446% - 310px / 2); right: unset; top: calc(48.14814814814817% - 560px / 2); width: 310px; } .framer-hNZcO .framer-cej545 { order: 8; } .framer-hNZcO .framer-i6s7vu { width: 90%; } .framer-hNZcO .framer-v0dmv1, .framer-hNZcO .framer-ecxslf { flex-direction: column; } .framer-hNZcO .framer-144l95g, .framer-hNZcO .framer-tmp3ph, .framer-hNZcO .framer-168lqed, .framer-hNZcO .framer-gurwoq, .framer-hNZcO .framer-11rhaud { flex: none; width: 100%; } .framer-hNZcO .framer-wk98r5-container, .framer-hNZcO .framer-atieo2-container, .framer-hNZcO .framer-jrjqg5-container, .framer-hNZcO .framer-hotpso-container { height: auto; } .framer-hNZcO .framer-1e3e4bs-container { height: auto; order: 0; } .framer-hNZcO .framer-169zej3-container { height: auto; order: 1; } .framer-hNZcO .framer-vimhw4 { order: 9; padding: 100px 80px 100px 80px; } .framer-hNZcO .framer-z5fxnk { padding: 100px 50px 100px 50px; } .framer-hNZcO .framer-1djjpxk { flex-direction: column; gap: 50px; } .framer-hNZcO .framer-knwhpt { height: var(--framer-aspect-ratio-supported, 365px); } .framer-hNZcO .framer-b2388p { max-width: 780px; } .framer-hNZcO .framer-jsolb7-container { align-self: unset; } .framer-hNZcO .framer-1v4075n-container { align-self: unset; height: 640px; } .framer-hNZcO .framer-11iqtjd { order: 10; } .framer-hNZcO .framer-1crwzez { align-content: center; align-items: center; flex: 1 0 0px; padding: 40px; width: 1px; } .framer-hNZcO .framer-11qmrm6 { height: 500px; } .framer-hNZcO .framer-zvjo57 { order: 12; padding: 100px 80px 100px 80px; } .framer-hNZcO .framer-4bcr5j { order: 1; width: 678px; } .framer-hNZcO .framer-16rlqb1 { height: var(--framer-aspect-ratio-supported, 44px); width: 151px; } .framer-hNZcO .framer-1895ud3, .framer-hNZcO .framer-f72m9l { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; padding: 0px; width: min-content; } .framer-hNZcO .framer-10c3f9t { height: var(--framer-aspect-ratio-supported, 38px); left: unset; position: relative; right: unset; top: unset; width: 125px; } .framer-hNZcO .framer-16dp1ww { height: var(--framer-aspect-ratio-supported, 26px); width: 213px; } .framer-hNZcO .framer-zkvuqk { height: var(--framer-aspect-ratio-supported, 30px); width: 119px; } .framer-hNZcO .framer-1qga27o { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; padding: 0px; width: min-content; } .framer-hNZcO .framer-1oyarik { height: var(--framer-aspect-ratio-supported, 46px); left: unset; position: relative; right: unset; top: unset; width: 220px; } .framer-hNZcO .framer-vg2c7j { height: var(--framer-aspect-ratio-supported, 55px); width: 125px; } .framer-hNZcO .framer-1dkgiob { height: var(--framer-aspect-ratio-supported, 45px); left: unset; position: relative; right: unset; top: unset; width: 111px; } .framer-hNZcO .framer-j973cm { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 0px; justify-content: center; padding: 0px; width: min-content; } .framer-hNZcO .framer-7os1s { height: var(--framer-aspect-ratio-supported, 54px); left: unset; position: relative; right: unset; top: unset; width: 110px; } .framer-hNZcO .framer-1bwyrm0 { height: 600px; order: 13; } .framer-hNZcO .framer-hsn5mz { order: 14; padding: 80px 40px 80px 40px; } .framer-hNZcO .framer-qdmlp3-container { order: 15; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-hNZcO .framer-uhr84p, .framer-hNZcO .framer-1xuit5s, .framer-hNZcO .framer-v0dmv1, .framer-hNZcO .framer-1djjpxk, .framer-hNZcO .framer-ecxslf, .framer-hNZcO .framer-1895ud3, .framer-hNZcO .framer-1qga27o, .framer-hNZcO .framer-f72m9l, .framer-hNZcO .framer-j973cm { gap: 0px; } .framer-hNZcO .framer-uhr84p > *, .framer-hNZcO .framer-1djjpxk > * { margin: 0px; margin-bottom: calc(50px / 2); margin-top: calc(50px / 2); } .framer-hNZcO .framer-uhr84p > :first-child, .framer-hNZcO .framer-1xuit5s > :first-child, .framer-hNZcO .framer-v0dmv1 > :first-child, .framer-hNZcO .framer-1djjpxk > :first-child, .framer-hNZcO .framer-ecxslf > :first-child, .framer-hNZcO .framer-1895ud3 > :first-child, .framer-hNZcO .framer-f72m9l > :first-child { margin-top: 0px; } .framer-hNZcO .framer-uhr84p > :last-child, .framer-hNZcO .framer-1xuit5s > :last-child, .framer-hNZcO .framer-v0dmv1 > :last-child, .framer-hNZcO .framer-1djjpxk > :last-child, .framer-hNZcO .framer-ecxslf > :last-child, .framer-hNZcO .framer-1895ud3 > :last-child, .framer-hNZcO .framer-f72m9l > :last-child { margin-bottom: 0px; } .framer-hNZcO .framer-1xuit5s > * { margin: 0px; margin-bottom: calc(32px / 2); margin-top: calc(32px / 2); } .framer-hNZcO .framer-v0dmv1 > *, .framer-hNZcO .framer-1895ud3 > *, .framer-hNZcO .framer-f72m9l > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-hNZcO .framer-ecxslf > * { margin: 0px; margin-bottom: calc(15px / 2); margin-top: calc(15px / 2); } .framer-hNZcO .framer-1qga27o > *, .framer-hNZcO .framer-j973cm > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } .framer-hNZcO .framer-1qga27o > :first-child, .framer-hNZcO .framer-j973cm > :first-child { margin-left: 0px; } .framer-hNZcO .framer-1qga27o > :last-child, .framer-hNZcO .framer-j973cm > :last-child { margin-right: 0px; } }}\",\"@media (max-width: 809px) { .framer-hNZcO.framer-165zar4 { width: 375px; } .framer-hNZcO .framer-1rm6kjl-container { order: 0; } .framer-hNZcO .framer-188a6gy { height: min-content; order: 2; padding: 120px 32px 67px 32px; } .framer-hNZcO .framer-1maitkq { gap: 0px; width: 100%; } .framer-hNZcO .framer-18dffth, .framer-hNZcO .framer-19csy8v, .framer-hNZcO .framer-1jri064, .framer-hNZcO .framer-1vjazh1, .framer-hNZcO .framer-xnuc24, .framer-hNZcO .framer-flliov, .framer-hNZcO .framer-i6s7vu { width: 100%; } .framer-hNZcO .framer-mobof1 { height: 377px; } .framer-hNZcO .framer-1pl1lw8 { flex-direction: column; height: min-content; max-width: 311px; padding: 0px 32px 0px 32px; } .framer-hNZcO .framer-17kkr89-container, .framer-hNZcO .framer-jjn1fy-container, .framer-hNZcO .framer-144l95g, .framer-hNZcO .framer-tmp3ph, .framer-hNZcO .framer-168lqed, .framer-hNZcO .framer-gurwoq, .framer-hNZcO .framer-1dtvjf1, .framer-hNZcO .framer-1ubon7 { flex: none; width: 100%; } .framer-hNZcO .framer-bxcq3o { background-color: var(--token-0cdf47b3-ce1f-4341-98ec-f094608541cb, #f6f4ff); order: 5; padding: 50px 20px 50px 20px; } .framer-hNZcO .framer-uhr84p, .framer-hNZcO .framer-1djjpxk { flex-direction: column; gap: 50px; } .framer-hNZcO .framer-15vg0xi { align-content: center; align-items: center; } .framer-hNZcO .framer-v2bpbf { width: 343px; } .framer-hNZcO .framer-5rbo55 { width: 336px; } .framer-hNZcO .framer-855xcv-container { height: 157px; width: 302px; } .framer-hNZcO .framer-9ebkif { order: 7; padding: 60px 20px 60px 20px; } .framer-hNZcO .framer-mjz9jn, .framer-hNZcO .framer-n28e2x { white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; } .framer-hNZcO .framer-qvzifq, .framer-hNZcO .framer-ecxslf, .framer-hNZcO .framer-1ka93t3 { flex-direction: column; } .framer-hNZcO .framer-1xuit5s { order: 6; padding: 100px 24px 100px 34px; } .framer-hNZcO .framer-17lb497 { order: 1; } .framer-hNZcO .framer-15ve6wq { left: -15px; order: 0; right: -15px; width: unset; } .framer-hNZcO .framer-134bvt2 { order: 3; width: 288px; } .framer-hNZcO .framer-1uhl088-container { order: 4; } .framer-hNZcO .framer-cej545 { order: 8; padding: 60px; } .framer-hNZcO .framer-v0dmv1 { flex-direction: column; padding: 0px; } .framer-hNZcO .framer-wk98r5-container, .framer-hNZcO .framer-atieo2-container, .framer-hNZcO .framer-1e3e4bs-container, .framer-hNZcO .framer-169zej3-container, .framer-hNZcO .framer-jrjqg5-container, .framer-hNZcO .framer-hotpso-container { height: auto; } .framer-hNZcO .framer-vimhw4 { order: 9; padding: 100px 20px 100px 20px; } .framer-hNZcO .framer-z5fxnk { padding: 50px 20px 50px 20px; } .framer-hNZcO .framer-11rhaud { flex: none; grid-template-columns: repeat(1, minmax(200px, 1fr)); width: 100%; } .framer-hNZcO .framer-knwhpt { grid-column: auto / span 1; height: var(--framer-aspect-ratio-supported, 196px); } .framer-hNZcO .framer-b2388p { flex-direction: column; max-width: 780px; } .framer-hNZcO .framer-jsolb7-container { align-self: unset; flex: none; order: 0; width: 100%; } .framer-hNZcO .framer-1v4075n-container { align-self: unset; flex: none; order: 1; width: 100%; } .framer-hNZcO .framer-1ot1suv-container { align-self: unset; flex: none; order: 2; width: 100%; } .framer-hNZcO .framer-11iqtjd { flex-direction: column; order: 10; } .framer-hNZcO .framer-o9ctpv { align-self: unset; flex: none; height: min-content; order: 1; width: 100%; } .framer-hNZcO .framer-1crwzez { align-content: center; align-items: center; flex: 1 0 0px; padding: 20px; width: 1px; } .framer-hNZcO .framer-11qmrm6 { flex: none; height: 400px; order: 0; width: 100%; } .framer-hNZcO .framer-zvjo57 { order: 12; padding: 100px 20px 100px 20px; } .framer-hNZcO .framer-18x2qio { flex-direction: column; flex-wrap: wrap; gap: 40px; justify-content: center; } .framer-hNZcO .framer-16rlqb1 { height: var(--framer-aspect-ratio-supported, 59px); width: 203px; } .framer-hNZcO .framer-10c3f9t { height: var(--framer-aspect-ratio-supported, 42px); } .framer-hNZcO .framer-16dp1ww { aspect-ratio: unset; height: 30px; width: 239px; } .framer-hNZcO .framer-4fc7qj { flex-direction: column; flex-wrap: wrap; gap: 32px; justify-content: center; } .framer-hNZcO .framer-vg2c7j { height: var(--framer-aspect-ratio-supported, 81px); } .framer-hNZcO .framer-f72m9l { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; padding: 0px; width: min-content; } .framer-hNZcO .framer-1dkgiob { height: var(--framer-aspect-ratio-supported, 58px); left: unset; position: relative; right: unset; top: unset; width: 142px; } .framer-hNZcO .framer-j973cm { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; padding: 0px; width: min-content; } .framer-hNZcO .framer-7os1s { height: var(--framer-aspect-ratio-supported, 73px); left: unset; position: relative; right: unset; top: unset; width: 147px; } .framer-hNZcO .framer-1bwyrm0 { height: 600px; order: 13; padding: 60px; } .framer-hNZcO .framer-hsn5mz { order: 14; padding: 60px 20px 60px 20px; } .framer-hNZcO .framer-qdmlp3-container { order: 15; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-hNZcO .framer-1maitkq, .framer-hNZcO .framer-1pl1lw8, .framer-hNZcO .framer-uhr84p, .framer-hNZcO .framer-qvzifq, .framer-hNZcO .framer-v0dmv1, .framer-hNZcO .framer-1djjpxk, .framer-hNZcO .framer-b2388p, .framer-hNZcO .framer-11iqtjd, .framer-hNZcO .framer-ecxslf, .framer-hNZcO .framer-18x2qio, .framer-hNZcO .framer-4fc7qj, .framer-hNZcO .framer-f72m9l, .framer-hNZcO .framer-j973cm, .framer-hNZcO .framer-1ka93t3 { gap: 0px; } .framer-hNZcO .framer-1maitkq > *, .framer-hNZcO .framer-v0dmv1 > *, .framer-hNZcO .framer-b2388p > *, .framer-hNZcO .framer-11iqtjd > *, .framer-hNZcO .framer-f72m9l > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-hNZcO .framer-1maitkq > :first-child, .framer-hNZcO .framer-1pl1lw8 > :first-child, .framer-hNZcO .framer-uhr84p > :first-child, .framer-hNZcO .framer-qvzifq > :first-child, .framer-hNZcO .framer-v0dmv1 > :first-child, .framer-hNZcO .framer-1djjpxk > :first-child, .framer-hNZcO .framer-b2388p > :first-child, .framer-hNZcO .framer-11iqtjd > :first-child, .framer-hNZcO .framer-ecxslf > :first-child, .framer-hNZcO .framer-18x2qio > :first-child, .framer-hNZcO .framer-4fc7qj > :first-child, .framer-hNZcO .framer-f72m9l > :first-child, .framer-hNZcO .framer-1ka93t3 > :first-child { margin-top: 0px; } .framer-hNZcO .framer-1maitkq > :last-child, .framer-hNZcO .framer-1pl1lw8 > :last-child, .framer-hNZcO .framer-uhr84p > :last-child, .framer-hNZcO .framer-qvzifq > :last-child, .framer-hNZcO .framer-v0dmv1 > :last-child, .framer-hNZcO .framer-1djjpxk > :last-child, .framer-hNZcO .framer-b2388p > :last-child, .framer-hNZcO .framer-11iqtjd > :last-child, .framer-hNZcO .framer-ecxslf > :last-child, .framer-hNZcO .framer-18x2qio > :last-child, .framer-hNZcO .framer-4fc7qj > :last-child, .framer-hNZcO .framer-f72m9l > :last-child, .framer-hNZcO .framer-1ka93t3 > :last-child { margin-bottom: 0px; } .framer-hNZcO .framer-1pl1lw8 > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } .framer-hNZcO .framer-uhr84p > *, .framer-hNZcO .framer-1djjpxk > * { margin: 0px; margin-bottom: calc(50px / 2); margin-top: calc(50px / 2); } .framer-hNZcO .framer-qvzifq > * { margin: 0px; margin-bottom: calc(20px / 2); margin-top: calc(20px / 2); } .framer-hNZcO .framer-ecxslf > * { margin: 0px; margin-bottom: calc(15px / 2); margin-top: calc(15px / 2); } .framer-hNZcO .framer-18x2qio > * { margin: 0px; margin-bottom: calc(40px / 2); margin-top: calc(40px / 2); } .framer-hNZcO .framer-4fc7qj > * { margin: 0px; margin-bottom: calc(32px / 2); margin-top: calc(32px / 2); } .framer-hNZcO .framer-j973cm > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } .framer-hNZcO .framer-j973cm > :first-child { margin-left: 0px; } .framer-hNZcO .framer-j973cm > :last-child { margin-right: 0px; } .framer-hNZcO .framer-1ka93t3 > * { margin: 0px; margin-bottom: calc(60px / 2); margin-top: calc(60px / 2); } }}\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 9816\n * @framerIntrinsicWidth 1440\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"pJFvs9CPn\":{\"layout\":[\"fixed\",\"auto\"]},\"OV_DLPKnG\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n * @framerAcceptsLayoutTemplate true\n * @framerScrollSections {\"Krs4g0Tka\":{\"pattern\":\":Krs4g0Tka\",\"name\":\"module-1\"},\"M3LWPWcHj\":{\"pattern\":\":M3LWPWcHj\",\"name\":\"kiko\"},\"kyZVUjEKc\":{\"pattern\":\":kyZVUjEKc\",\"name\":\"logos\"}}\n * @framerResponsiveScreen\n */const FramerGLz2DcH7V=withCSS(Component,css,\"framer-hNZcO\");export default FramerGLz2DcH7V;FramerGLz2DcH7V.displayName=\"Home\";FramerGLz2DcH7V.defaultProps={height:9816,width:1440};addFonts(FramerGLz2DcH7V,[{explicitInter:true,fonts:[{family:\"Rosita Longevity Bold\",source:\"custom\",url:\"https://framerusercontent.com/assets/llH4sHPuLNm8Z6piihi2oOIKg.otf\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/5A3Ce6C9YYmCjpQx9M4inSaKU.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/Qx95Xyt0Ka3SGhinnbXIGpEIyP4.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/6mJuEAguuIuMog10gGvH5d3cl8.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/xYYWaj7wCU5zSQH0eXvSaS19wo.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/otTaNuNpVK4RbdlT7zDDdKvQBA.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/d3tHnaQIAeqiE5hGcRw4mmgWYU.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/DolVirEGb34pEXEp8t8FQBSK4.woff2\",weight:\"500\"},{family:\"Manrope\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/manrope/v15/xn7_YHE41ni1AdIRqAuZuw1Bx9mbZk59E-_A87jxeN7B.woff2\",weight:\"800\"},{family:\"Inter\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/inter/v18/UcCO3FwrK3iLTeHuS_nVMrMxCp50SjIw2boKoduKmMEVuI6fMZ1rib2Bg-4.woff2\",weight:\"500\"},{family:\"Inter\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/inter/v18/UcCO3FwrK3iLTeHuS_nVMrMxCp50SjIw2boKoduKmMEVuFuYMZ1rib2Bg-4.woff2\",weight:\"700\"},{family:\"Inter\",source:\"google\",style:\"italic\",url:\"https://fonts.gstatic.com/s/inter/v18/UcCM3FwrK3iLTcvneQg7Ca725JhhKnNqk4j1ebLhAm8SrXTcPtxhiJ-Ek-7MeA.woff2\",weight:\"700\"},{family:\"Inter\",source:\"google\",style:\"italic\",url:\"https://fonts.gstatic.com/s/inter/v18/UcCM3FwrK3iLTcvneQg7Ca725JhhKnNqk4j1ebLhAm8SrXTc69thiJ-Ek-7MeA.woff2\",weight:\"500\"},{family:\"Inter\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/inter/v18/UcCO3FwrK3iLTeHuS_nVMrMxCp50SjIw2boKoduKmMEVuGKYMZ1rib2Bg-4.woff2\",weight:\"600\"},{family:\"DM Mono\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/dmmono/v14/aFTU7PB1QTsUX8KYhhiaBYyMcKw.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/BkDpl4ghaqvMi1btKFyG2tdbec.woff2\",weight:\"300\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/zAMK70AQRFSShJgUiaR5IiIhgzk.woff2\",weight:\"300\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/IETjvc5qzUaRoaruDpPSwCUM8.woff2\",weight:\"300\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/oLCoaT3ioA0fHdJnWR9W6k7NY.woff2\",weight:\"300\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/Sj0PCHQSBjFmEp6NBWg6FNaKc.woff2\",weight:\"300\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/v2q8JTTTs7McDMSEhnxAIBqd0.woff2\",weight:\"300\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/H4TfENUY1rh8R9UaSD6vngjJP3M.woff2\",weight:\"300\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/5vvr9Vy74if2I6bQbJvbw7SY1pQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/EOr0mi4hNtlgWNn9if640EZzXCo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Y9k9QrlZAqio88Klkmbd8VoMQc.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/OYrD2tBIBPvoJXiIHnLoOXnY9M.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/JeYwfuaPfZHQhEG8U5gtPDZ7WQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/vQyevYAyHtARFwPqUzQGpnDs.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/b6Y37FthZeALduNqHicBT6FutY.woff2\",weight:\"400\"},{family:\"Inter\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/inter/v18/UcCO3FwrK3iLTeHuS_nVMrMxCp50SjIw2boKoduKmMEVuBWYMZ1rib2Bg-4.woff2\",weight:\"900\"},{family:\"Inter\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/inter/v18/UcCO3FwrK3iLTeHuS_nVMrMxCp50SjIw2boKoduKmMEVuLyfMZ1rib2Bg-4.woff2\",weight:\"400\"}]},...Menu_NewAnimationFonts,...ButtonFonts,...YouTubeFonts,...VideoFonts,...ServicesCardFonts,...TestimonialFonts,...FooterDarkFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerGLz2DcH7V\",\"slots\":[],\"annotations\":{\"framerImmutableVariables\":\"true\",\"framerScrollSections\":\"{\\\"Krs4g0Tka\\\":{\\\"pattern\\\":\\\":Krs4g0Tka\\\",\\\"name\\\":\\\"module-1\\\"},\\\"M3LWPWcHj\\\":{\\\"pattern\\\":\\\":M3LWPWcHj\\\",\\\"name\\\":\\\"kiko\\\"},\\\"kyZVUjEKc\\\":{\\\"pattern\\\":\\\":kyZVUjEKc\\\",\\\"name\\\":\\\"logos\\\"}}\",\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicHeight\":\"9816\",\"framerAcceptsLayoutTemplate\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerContractVersion\":\"1\",\"framerResponsiveScreen\":\"\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"pJFvs9CPn\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"OV_DLPKnG\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerIntrinsicWidth\":\"1440\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}"],
  "mappings": "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",
  "names": ["ObjectFitType", "SrcType", "getProps", "props", "width", "height", "topLeft", "topRight", "bottomRight", "bottomLeft", "id", "children", "rest", "Video", "newProps", "p", "VideoMemo", "usePlaybackControls", "videoRef", "isInCurrentNavigationTarget", "useIsInCurrentNavigationTarget", "requestingPlay", "pe", "setProgress", "te", "rawProgress", "newProgress", "isAlreadySet", "play", "e", "pause", "useAutoplayBehavior", "playingProp", "muted", "loop", "playsinline", "controls", "initialPlayingProp", "ye", "hasPlayingPropChanged", "setHasPlayingPropChanged", "behavesAsGif", "autoplay", "isMountedAndReadyForProgressChanges", "X", "srcType", "srcFile", "srcUrl", "progress", "objectFit", "backgroundColor", "onSeeked", "onPause", "onPlay", "onEnd", "onClick", "onMouseEnter", "onMouseLeave", "onMouseDown", "onMouseUp", "poster", "posterEnabled", "startTimeProp", "volume", "isSafari", "useIsBrowserSafari", "wasPausedOnLeave", "wasEndedOnLeave", "isOnCanvas", "useIsOnCanvas", "borderRadius", "useRadius", "autoplayBehavior", "isInViewport", "useInView", "startTime", "ue", "rawProgressValue", "isMotionValue", "value", "useOnEnter", "useOnExit", "src", "se", "fragment", "groupsRegex", "capitalizeFirstLetter", "titleCase", "objectFitOptions", "addPropertyControls", "ControlType", "borderRadiusControl", "defaultEvents", "cycleOrder", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "humanReadableVariantMap", "transitions", "Component", "id", "style", "className", "width", "height", "layoutId", "outerVariant", "restProps", "ref", "baseVariant", "classNames", "gestureVariant", "setGestureState", "setVariant", "transition", "useVariantState", "layoutDependency", "isDisplayed", "isDisplayed1", "isDisplayed2", "isDisplayed3", "isDisplayed4", "isDisplayed5", "isDisplayed6", "defaultLayoutId", "ae", "p", "LayoutGroup", "motion", "cx", "u", "SVG", "css", "FramerhkNhAQhKW", "withCSS", "hkNhAQhKW_default", "addPropertyControls", "ControlType", "addFonts", "Icon_longevityFonts", "getFonts", "hkNhAQhKW_default", "Icon_longevityControls", "getPropertyControls", "cycleOrder", "variantClassNames", "humanReadableVariantMap", "transitions", "Component", "id", "style", "className", "width", "height", "layoutId", "outerVariant", "nUJe9AtSo", "restProps", "ref", "variant", "baseVariant", "classNames", "gestureVariant", "setGestureState", "setVariant", "transition", "variants", "useVariantState", "cycleOrder", "variantClassNames", "layoutDependency", "defaultLayoutId", "ae", "p", "LayoutGroup", "motion", "cx", "hkNhAQhKW_default", "css", "Framermh_GtELBG", "withCSS", "mh_GtELBG_default", "addPropertyControls", "Icon_longevityControls", "addFonts", "Icon_longevityFonts", "Icon_circleFonts", "getFonts", "mh_GtELBG_default", "Icon_longevityFonts", "hkNhAQhKW_default", "Icon_longevityControls", "getPropertyControls", "enabledGestures", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableEnumMap", "humanReadableVariantMap", "getProps", "description", "height", "icon", "icon1", "id", "title", "width", "props", "_ref", "_ref1", "_ref2", "_humanReadableVariantMap_props_variant", "_ref3", "_humanReadableEnumMap_icon", "_ref4", "_ref5", "createLayoutDependency", "Component", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "fTj5SC8z2", "RQPotZPC3", "zRb6iWmZQ", "s3qlBgNqH", "restProps", "baseVariant", "classNames", "gestureVariant", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "ref1", "pe", "isDisplayed", "isDisplayed1", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "cx", "u", "ComponentViewportProvider", "RichText2", "css", "FramernxTmZyZw6", "withCSS", "nxTmZyZw6_default", "addPropertyControls", "ControlType", "addFonts", "Menu_NewAnimationFonts", "getFonts", "czQqGIdU8_default", "RichTextWithFX", "withFX", "RichText2", "ButtonFonts", "OneP4W_UD_default", "MotionDivWithOptimizedAppearEffect", "withOptimizedAppearEffect", "motion", "YouTubeFonts", "Youtube", "ContainerWithOptimizedAppearEffect", "Container", "MotionDivWithFX", "ImageWithFX", "Image2", "VideoFonts", "Video", "MotionFigureWithFX", "ServicesCardFonts", "nxTmZyZw6_default", "TestimonialFonts", "GybZbmJ86_default", "FooterDarkFonts", "yrWs5i3Cb_default", "breakpoints", "isBrowser", "serializationHash", "variantClassNames", "animation", "transition1", "animation1", "transition2", "animation2", "animation3", "animation4", "transition3", "animation5", "animation6", "transition4", "animation7", "animation8", "animation9", "animation10", "animation11", "transformTemplate1", "_", "t", "transformTemplate2", "HTMLStyle", "value", "useIsOnFramerCanvas", "p", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "Component", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "variant", "restProps", "ue", "metadata", "robotsTag", "ie", "baseVariant", "hydratedBaseVariant", "useHydratedBreakpointVariants", "gestureVariant", "scopingClassNames", "cx", "elementId", "useRouteElementId", "ref1", "isDisplayed", "isDisplayed1", "isDisplayed2", "elementId1", "ref2", "isDisplayed3", "isDisplayed4", "router", "useRouter", "elementId2", "ref3", "useCustomCursors", "GeneratedComponentContext", "u", "LayoutGroup", "PropertyOverrides2", "ComponentViewportProvider", "getLoadingLazyAtYPosition", "x", "Text2", "ResolveLinks", "resolvedLinks", "resolvedLinks1", "css", "FramerGLz2DcH7V", "withCSS", "GLz2DcH7V_default", "addFonts", "__FramerMetadata__"]
}
