{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/lRDHiNWNVWmE0lqtoVHP/K0mI40rrezffFjPjHAZX/Video.js", "ssg:https://framerusercontent.com/modules/joKTTP3brPuJ8YK13Ysj/dxu6QPDzb9908gAfrvfo/hvBRmybTb.js", "ssg:https://framerusercontent.com/modules/2N7NkrYGqW4jFuCFwqh9/8rhGrMzdrPaYpKsY87bw/augiA20Il.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 video=videoRef.current;if(!video)return;video.preload=\"auto\"// makes sure browsers don't throttle: https://html.spec.whatwg.org/multipage/media.html#:~:text=When%20the%20media%20resource%20is%20playing%2C%20hints%20to%20the%20user%20agent%20that%20bandwidth%20is%20to%20be%20considered%20scarce%2C%20e.g.%20suggesting%20throttling%20the%20download%20so%20that%20the%20media%20data%20is%20obtained%20at%20the%20slowest%20possible%20rate%20that%20still%20maintains%20consistent%20playback.\n;const isPlaying=video.currentTime>0&&video.onplaying&&!video.paused&&!video.ended&&video.readyState>video.HAVE_CURRENT_DATA;if(!isPlaying&&video&&!requestingPlay.current&&isInCurrentNavigationTarget){requestingPlay.current=true;video.play().catch(e=>{})// It's likely fine, swallow error\n.finally(()=>requestingPlay.current=false);}},[]);const pause=useCallback(()=>{if(!videoRef.current||requestingPlay.current)return;videoRef.current.pause();},[]);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);const isCloseToViewport=isOnCanvas?false:useInView(videoRef,{margin:\"100px\",once:true});// 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===\"URL\")return srcUrl+fragment;if(srcType===\"Upload\")return srcFile+fragment;},[srcType,srcFile,srcUrl,startTime]);// Autoplay via JS to work in Safari\nuseEffect(()=>{if(isSafari&&videoRef.current&&autoplayBehavior===\"on-mount\"){setTimeout(()=>play(),50);}},[]);// Volume Control\nuseEffect(()=>{if(videoRef.current&&!muted)videoRef.current.volume=(volume!==null&&volume!==void 0?volume:0)/100;},[volume]);// When video is ready, set start-time, then autoplay if needed\nconst handleReady=()=>{const video=videoRef.current;if(!video)return;if(video.currentTime<.3&&startTime>0)setProgress((startTime!==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=>onSeeked===null||onSeeked===void 0?void 0:onSeeked(e),onPause:e=>onPause===null||onPause===void 0?void 0:onPause(e),onPlay:e=>onPlay===null||onPlay===void 0?void 0:onPlay(e),onEnded:e=>onEnd===null||onEnd===void 0?void 0:onEnd(e),autoPlay:autoplayBehavior===\"on-mount\",preload:autoplayBehavior!==\"on-mount\"&&posterEnabled&&!isCloseToViewport?\"none\":// `autoplay` overrides this too\n\"metadata\",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:\"URL\",srcUrl:\"https://assets.mixkit.co/videos/preview/mixkit-shining-sun-in-the-sky-surrounded-by-moving-clouds-31793-small.mp4\",srcFile:\"\",posterEnabled:false,controls:false,playing:true,loop:true,muted:true,playsinline:true,restartOnEnter:false,objectFit:\"cover\",backgroundColor:\"rgba(0,0,0,0)\",radius:0,volume:25,startTime: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=[\"cover\",\"fill\",\"contain\",\"scale-down\",\"none\"];addPropertyControls(Video,{srcType:{type:ControlType.Enum,displaySegmentedControl:true,title:\"Source\",options:[\"URL\",\"Upload\"]},srcUrl:{type:ControlType.String,title:\"URL\",placeholder:\"../example.mp4\",hidden(props){return props.srcType===\"Upload\";},description:\"Hosted video file URL. For YouTube, use the YouTube component.\"},srcFile:{type:ControlType.File,title:\"File\",allowedFileTypes:[\"mp4\",\"webm\"],hidden(props){return props.srcType===\"URL\";}},playing:{type:ControlType.Boolean,title:\"Playing\",enabledTitle:\"Yes\",disabledTitle:\"No\"},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\":{\"Video\":{\"type\":\"reactComponent\",\"name\":\"Video\",\"slots\":[],\"annotations\":{\"framerSupportedLayoutWidth\":\"fixed\",\"framerIntrinsicWidth\":\"200\",\"framerContractVersion\":\"1\",\"framerSupportedLayoutHeight\":\"any-prefer-fixed\",\"framerIntrinsicHeight\":\"112\"}},\"VideoProps\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"titleCase\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Video.map", "// Generated by Framer (0623976)\nimport{jsx as _jsx}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,RichText,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useOnVariantChange,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";const cycleOrder=[\"CkTcwamaj\",\"UIe_Bsgrd\",\"hTh9RzRGK\"];const serializationHash=\"framer-WPlC5\";const variantClassNames={CkTcwamaj:\"framer-v-ddvvoh\",hTh9RzRGK:\"framer-v-9cek5b\",UIe_Bsgrd:\"framer-v-9d2df7\"};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={bounce:.2,delay:0,duration:.4,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.create(React.Fragment);const humanReadableVariantMap={\"Variant 1\":\"CkTcwamaj\",\"Variant 2\":\"UIe_Bsgrd\",\"Variant 3\":\"hTh9RzRGK\"};const getProps=({height,id,width,...props})=>{var _humanReadableVariantMap_props_variant,_ref;return{...props,variant:(_ref=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref!==void 0?_ref:\"CkTcwamaj\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"CkTcwamaj\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onAppearg2nbja=activeVariantCallback(async(...args)=>{await delay(()=>setVariant(\"UIe_Bsgrd\"),5e3);});const onAppear1fuhl4y=activeVariantCallback(async(...args)=>{await delay(()=>setVariant(\"hTh9RzRGK\"),3e3);});useOnVariantChange(baseVariant,{default:onAppearg2nbja,UIe_Bsgrd:onAppear1fuhl4y});const isDisplayed=()=>{if(baseVariant===\"hTh9RzRGK\")return false;return true;};const ref1=React.useRef(null);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:isDisplayed()&&/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(motion.div,{...restProps,...gestureHandlers,className:cx(serializationHash,...sharedStyleClassNames,\"framer-ddvvoh\",className,classNames),\"data-framer-name\":\"Variant 1\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"CkTcwamaj\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{backgroundColor:\"rgb(0, 176, 80)\",borderBottomLeftRadius:500,borderBottomRightRadius:500,borderTopLeftRadius:500,borderTopRightRadius:500,boxShadow:\"0px 10px 20px 0px rgba(0,0,0,0.05)\",opacity:1,...style},variants:{UIe_Bsgrd:{opacity:0}},...addPropertyOverrides({UIe_Bsgrd:{\"data-framer-name\":\"Variant 2\"}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlM7TW9udHNlcnJhdC1zZW1pYm9sZA==\",\"--framer-font-family\":'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',\"--framer-font-weight\":\"600\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"Thanks for signing up! Check your email for more details.\"})}),className:\"framer-n6ftak\",fonts:[\"FS;Montserrat-semibold\"],layoutDependency:layoutDependency,layoutId:\"N9V42mqKH\",style:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\"},verticalAlignment:\"top\",withExternalLayout:true})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-WPlC5.framer-6t2ey3, .framer-WPlC5 .framer-6t2ey3 { display: block; }\",\".framer-WPlC5.framer-ddvvoh { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 17px 35px 17px 35px; position: relative; width: 540px; will-change: var(--framer-will-change-override, transform); }\",\".framer-WPlC5 .framer-n6ftak { flex: 1 0 0px; height: auto; position: relative; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-WPlC5.framer-ddvvoh { gap: 0px; } .framer-WPlC5.framer-ddvvoh > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-WPlC5.framer-ddvvoh > :first-child { margin-left: 0px; } .framer-WPlC5.framer-ddvvoh > :last-child { margin-right: 0px; } }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 53\n * @framerIntrinsicWidth 539.5\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"UIe_Bsgrd\":{\"layout\":[\"fixed\",\"auto\"]},\"hTh9RzRGK\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerhvBRmybTb=withCSS(Component,css,\"framer-WPlC5\");export default FramerhvBRmybTb;FramerhvBRmybTb.displayName=\"Toast\";FramerhvBRmybTb.defaultProps={height:53,width:539.5};addPropertyControls(FramerhvBRmybTb,{variant:{options:[\"CkTcwamaj\",\"UIe_Bsgrd\",\"hTh9RzRGK\"],optionTitles:[\"Variant 1\",\"Variant 2\",\"Variant 3\"],title:\"Variant\",type:ControlType.Enum}});addFonts(FramerhvBRmybTb,[{explicitInter:true,fonts:[{family:\"Montserrat\",source:\"fontshare\",style:\"normal\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/DELXRVKO253LHPYOBD6KD7EW3TJKXCXF/L6SILXET3P727LN5N75LL5PG77IET2IT/6DP3DAT2N5LSQGN5ISPRN63WPP32A54A.woff2\",weight:\"600\"}]}],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerhvBRmybTb\",\"slots\":[],\"annotations\":{\"framerIntrinsicHeight\":\"53\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"UIe_Bsgrd\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"hTh9RzRGK\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerIntrinsicWidth\":\"539.5\",\"framerImmutableVariables\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerComponentViewportWidth\":\"true\",\"framerContractVersion\":\"1\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./hvBRmybTb.map", "// Generated by Framer (0623976)\nimport{jsx as _jsx,jsxs as _jsxs,Fragment as _Fragment}from\"react/jsx-runtime\";import{addFonts,ChildrenCanSuspend,ComponentViewportProvider,Container,cx,GeneratedComponentContext,getFonts,getFontsFromSharedStyle,Image,Link,PathVariablesContext,PropertyOverrides,ResolveLinks,RichText,useActiveVariantCallback,useCustomCursors,useHydratedBreakpointVariants,useLocaleInfo,useOverlayState,useQueryData,useRouteElementId,useRouter,withCSS,withFX,withMappedReactProps,withOptimizedAppearEffect,withVariantAppearEffect}from\"framer\";import{AnimatePresence,LayoutGroup,motion}from\"framer-motion\";import*as React from\"react\";import*as ReactDOM from\"react-dom\";import Ticker from\"https://framerusercontent.com/modules/B2xAlJLcN0gOnt11mSPw/XVUmpmPn1EPL0dzocT35/Ticker.js\";import Superform from\"https://framerusercontent.com/modules/Gc5hx3hz23t3MTn4ImUu/pu7A40ZNfTA3irUWL27l/Superform.js\";import{Video}from\"https://framerusercontent.com/modules/lRDHiNWNVWmE0lqtoVHP/K0mI40rrezffFjPjHAZX/Video.js\";import{Lottie}from\"https://framerusercontent.com/modules/YbkSqZ7STzW5WsMb1yan/7oWoX9MqdnxameM59dqC/Lottie.js\";import FakeButtons from\"#framer/local/canvasComponent/e93AOwumg/e93AOwumg.js\";import PricingTable,*as PricingTableInfo from\"#framer/local/canvasComponent/Gj25Ysmu6/Gj25Ysmu6.js\";import Toast from\"#framer/local/canvasComponent/hvBRmybTb/hvBRmybTb.js\";import Overlays from\"#framer/local/canvasComponent/MGDq4X6ut/MGDq4X6ut.js\";import Header from\"#framer/local/canvasComponent/pFX5VBIgf/pFX5VBIgf.js\";import PrimaryButtons from\"#framer/local/canvasComponent/QfRCjqrdG/QfRCjqrdG.js\";import Footer from\"#framer/local/canvasComponent/ujctO_0sc/ujctO_0sc.js\";import{showForAnonymous,showForSinglePlan_rmkyMD9g}from\"#framer/local/codeFile/ruUMW5Z/Outseta.js\";import{TruncatedText}from\"#framer/local/codeFile/SwJizdJ/Truncated_Text.js\";import Playbooks from\"#framer/local/collection/fLF0Yv9Mm/fLF0Yv9Mm.js\";import Interviews from\"#framer/local/collection/gzn6H1ur3/gzn6H1ur3.js\";import Experts from\"#framer/local/collection/PaW11FxFr/PaW11FxFr.js\";import*as sharedStyle3 from\"#framer/local/css/b9SmhEDKG/b9SmhEDKG.js\";import*as sharedStyle1 from\"#framer/local/css/FUPaZj5jg/FUPaZj5jg.js\";import*as sharedStyle6 from\"#framer/local/css/FXnTL8Nf9/FXnTL8Nf9.js\";import*as sharedStyle4 from\"#framer/local/css/R4a0NMZ7P/R4a0NMZ7P.js\";import*as sharedStyle5 from\"#framer/local/css/UnfHP7tms/UnfHP7tms.js\";import*as sharedStyle2 from\"#framer/local/css/X1nIqX55n/X1nIqX55n.js\";import*as sharedStyle from\"#framer/local/css/yClqYqIbk/yClqYqIbk.js\";import metadataProvider from\"#framer/local/webPageMetadata/augiA20Il/augiA20Il.js\";const HeaderFonts=getFonts(Header);const HeaderWithVariantAppearEffect=withVariantAppearEffect(Header);const ContainerWithFX=withFX(Container);const SuperformFonts=getFonts(Superform);const ToastFonts=getFonts(Toast);const ContainerWithOptimizedAppearEffect=withOptimizedAppearEffect(Container);const MotionDivShowForAnonymous=showForAnonymous(motion.div);const TickerFonts=getFonts(Ticker);const MotionDivWithOptimizedAppearEffect=withOptimizedAppearEffect(motion.div);const VideoFonts=getFonts(Video);const LottieFonts=getFonts(Lottie);const ContainerWithFXWithOptimizedAppearEffect=withOptimizedAppearEffect(withFX(Container));const PricingTableFonts=getFonts(PricingTable);const PricingTableShowForAnonymousWithMappedReactProps1jqp4g3=withMappedReactProps(showForAnonymous(PricingTable),PricingTableInfo);const OverlaysFonts=getFonts(Overlays);const RichTextTruncatedText=TruncatedText(RichText);const FakeButtonsFonts=getFonts(FakeButtons);const PrimaryButtonsFonts=getFonts(PrimaryButtons);const MotionDivShowForSinglePlan_rmkyMD9g=showForSinglePlan_rmkyMD9g(motion.div);const FooterFonts=getFonts(Footer);const breakpoints={m4eHcOoxF:\"(min-width: 810px) and (max-width: 1599px)\",WQLkyLRf1:\"(min-width: 1600px)\",yO6j_T3Vd:\"(max-width: 809px)\"};const isBrowser=()=>typeof document!==\"undefined\";const serializationHash=\"framer-jjb1G\";const variantClassNames={m4eHcOoxF:\"framer-v-scspqy\",WQLkyLRf1:\"framer-v-72rtr7\",yO6j_T3Vd:\"framer-v-1qsw85k\"};const transition1={bounce:.2,delay:0,duration:.4,type:\"spring\"};const animation={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0};const animation1={filter:\"blur(5px)\",opacity:.001,rotate:0,scale:1,skewX:0,skewY:0,x:0,y:10};const transition2={damping:50,delay:.05,mass:1,stiffness:400,type:\"spring\"};const textEffect={effect:animation1,tokenization:\"word\",transition:transition2,trigger:\"onMount\",type:\"appear\"};const textEffect1={effect:animation1,repeat:false,startDelay:.5,tokenization:\"word\",transition:transition2,trigger:\"onMount\",type:\"appear\"};const transition3={bounce:.2,delay:1.5,duration:1,type:\"spring\"};const animation2={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition3,x:0,y:0};const animation3={opacity:.001,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0};const Overlay=({children,blockDocumentScrolling,enabled=true})=>{const[visible,setVisible]=useOverlayState({blockDocumentScrolling});return children({hide:()=>setVisible(false),show:()=>setVisible(true),toggle:()=>setVisible(!visible),visible:enabled&&visible});};const transition4={bounce:.2,delay:2,duration:1,type:\"spring\"};const animation4={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition4,x:0,y:0};const transition5={damping:30,delay:0,mass:1,stiffness:400,type:\"spring\"};const animation5={backgroundColor:\"rgba(22, 77, 67, 0.27)\",opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition5};const transition6={bounce:.2,delay:.2,duration:5,type:\"spring\"};const animation6={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition6,x:0,y:0};const transformTemplate1=(_,t)=>`translateX(-50%) ${t}`;const transition7={bounce:.2,delay:2,duration:.5,type:\"spring\"};const animation7={opacity:.5,rotate:90,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition7,x:0,y:0};const animation8={boxShadow:\"0px 0.421531111242075px 2.107655556210375px -0.6666666666666666px rgba(5, 166, 101, 0.1607), 0px 1.60197331227042px 8.0098665613521px -1.3333333333333333px rgba(5, 166, 101, 0.17385), 0px 7px 35px -2px rgba(5, 166, 101, 0.234)\",opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition5,y:-10};const equals=(a,b)=>{return typeof a===\"string\"&&typeof b===\"string\"?a.toLowerCase()===b.toLowerCase():a===b;};const QueryData=({query,pageSize,children})=>{const data=useQueryData(query);return children(data);};const animation9={boxShadow:\"0px 0.48174984141951427px 2.4087492070975713px -0.9166666666666666px rgba(242, 137, 0, 0.54398), 0px 1.8308266425947657px 9.154133212973829px -1.8333333333333333px rgba(242, 137, 0, 0.52711), 0px 8px 40px -2.75px rgba(242, 137, 0, 0.45)\",opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition5,y:-10};const toResponsiveImage=value=>{if(typeof value===\"object\"&&value!==null&&typeof value.src===\"string\"){return value;}return typeof value===\"string\"?{src:value}:undefined;};const animation10={boxShadow:\"0px 0.48174984141951427px 2.4087492070975713px -0.8333333333333333px rgba(7, 61, 48, 0.5), 0px 1.8308266425947657px 9.154133212973829px -1.6666666666666665px rgba(7, 61, 48, 0.5), 0px 8px 40px -2.5px rgba(7, 61, 48, 0.5)\",opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition5,y:-10};const metadata=metadataProvider();const humanReadableVariantMap={\"Desktop HD\":\"WQLkyLRf1\",Phone:\"yO6j_T3Vd\",Tablet:\"m4eHcOoxF\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"WQLkyLRf1\"};};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,LDTQFuITvIRXIpLu9Z,i_fSc7kv5IRXIpLu9Z,ZMrV3O2YqIRXIpLu9Z,AuMLoP5LoIRXIpLu9Z,vxuYMamB6IRXIpLu9Z,idIRXIpLu9Z,Ruj7DG9KsaeFLj_kgA,mi2BcUDqZaeFLj_kgA,EaoFlBOTYaeFLj_kgA,ETCy6YJZ4aeFLj_kgA,ziUOxx_Uw_LDTQFuITvaeFLj_kgA,XARyNcPH_aeFLj_kgA,idaeFLj_kgA,i_fSc7kv5iQZNWBU4E,ZMrV3O2YqiQZNWBU4E,AuMLoP5LoiQZNWBU4E,vxuYMamB6iQZNWBU4E,idiQZNWBU4E,LDTQFuITviQZNWBU4E,HTZbF5r1fU0zsqAZ7F,fBSTm5H2RU0zsqAZ7F,idU0zsqAZ7F,F6DZBfVhwU0zsqAZ7F,...restProps}=getProps(props);React.useEffect(()=>{const metadata1=metadataProvider(undefined,activeLocale);if(metadata1.robots){let robotsTag=document.querySelector('meta[name=\"robots\"]');if(robotsTag){robotsTag.setAttribute(\"content\",metadata1.robots);}else{robotsTag=document.createElement(\"meta\");robotsTag.setAttribute(\"name\",\"robots\");robotsTag.setAttribute(\"content\",metadata1.robots);document.head.appendChild(robotsTag);}}},[undefined,activeLocale]);React.useInsertionEffect(()=>{const metadata1=metadataProvider(undefined,activeLocale);document.title=metadata1.title||\"\";if(metadata1.viewport){document.querySelector('meta[name=\"viewport\"]')?.setAttribute(\"content\",metadata1.viewport);}const bodyCls=metadata1.bodyClassName;if(bodyCls){const body=document.body;body.classList.forEach(c=>c.startsWith(\"framer-body-\")&&body.classList.remove(c));body.classList.add(`${metadata1.bodyClassName}-framer-jjb1G`);}return()=>{if(bodyCls)document.body.classList.remove(`${metadata1.bodyClassName}-framer-jjb1G`);};},[undefined,activeLocale]);const[baseVariant,hydratedBaseVariant]=useHydratedBreakpointVariants(variant,breakpoints,false);const gestureVariant=undefined;const{activeVariantCallback,delay}=useActiveVariantCallback(undefined);const onSubmitwelu7j=({overlay,paginationInfo})=>activeVariantCallback(async(...args)=>{overlay.toggle();});const e3PemVyd7welu7j=({overlay,paginationInfo})=>activeVariantCallback(async(...args)=>{overlay.toggle();});const Kja1YIJBDwelu7j=({overlay,paginationInfo})=>activeVariantCallback(async(...args)=>{overlay.toggle();});const utsSte6Mc1wvko5h=({overlay,paginationInfo})=>activeVariantCallback(async(...args)=>{overlay.hide();});const WC_uaukVGwelu7j=({overlay,paginationInfo})=>activeVariantCallback(async(...args)=>{overlay.toggle();});const ref1=React.useRef(null);const ref2=React.useRef(null);const elementId=useRouteElementId(\"zz4aRIU3z\");const ref3=React.useRef(null);const router=useRouter();const elementId1=useRouteElementId(\"zxvvwXbuG\");const ref4=React.useRef(null);const elementId2=useRouteElementId(\"N8wOHB1zC\");const elementId3=useRouteElementId(\"c1YL1QTz0\");const ref5=React.useRef(null);const defaultLayoutId=React.useId();const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className,sharedStyle2.className,sharedStyle3.className,sharedStyle4.className,sharedStyle5.className,sharedStyle6.className];useCustomCursors({});return /*#__PURE__*/_jsx(GeneratedComponentContext.Provider,{value:{primaryVariantId:\"WQLkyLRf1\",variantClassNames},children:/*#__PURE__*/_jsxs(LayoutGroup,{id:layoutId??defaultLayoutId,children:[/*#__PURE__*/_jsxs(motion.div,{...restProps,className:cx(serializationHash,...sharedStyleClassNames,\"framer-72rtr7\",className),ref:ref??ref1,style:{...style},children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:115,width:\"100vw\",y:0,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{yO6j_T3Vd:{__framer__animate:{transition:transition1},__framer__animateOnce:false,__framer__scrollDirection:{direction:\"down\",target:animation},__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1}},children:/*#__PURE__*/_jsx(ContainerWithFX,{className:\"framer-1jtrdfr-container\",layoutScroll:true,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{m4eHcOoxF:{variant:\"WvmxnOnii\"},yO6j_T3Vd:{__framer__variantAppearEffectEnabled:undefined,variant:\"onb6NswsY\"}},children:/*#__PURE__*/_jsx(HeaderWithVariantAppearEffect,{__framer__animateOnce:false,__framer__targets:[{offset:0,ref:ref2,target:\"j5YhHC_Yj\"}],__framer__threshold:.5,__framer__variantAppearEffectEnabled:true,height:\"100%\",id:\"zOFRJ513t\",layoutId:\"zOFRJ513t\",style:{width:\"100%\"},variant:\"p3b9WeDEo\",width:\"100%\"})})})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-2fmyny\",\"data-framer-name\":\"Hero\",name:\"Hero\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1lpvtd8\",\"data-framer-name\":\"Content\",name:\"Content\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-100dfyq\",\"data-framer-name\":\"Container\",name:\"Container\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-zeyf1v\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-qrer9g\",\"data-framer-name\":\"Wrapper\",name:\"Wrapper\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1qsxg54\",\"data-framer-name\":\"Copy + Form\",name:\"Copy + Form\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1mwst6b\",\"data-framer-name\":\"Copy\",name:\"Copy\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{className:\"framer-styles-preset-w4s6rw\",\"data-styles-preset\":\"yClqYqIbk\",style:{\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Learn From the Brightest Founders and CEOs in Medtech and Healthtech\"})}),className:\"framer-1a7snmh\",effect:textEffect,fonts:[\"Inter\"],id:elementId,ref:ref3,verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsxs(MotionDivShowForAnonymous,{className:\"framer-171wl6g\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-yf4vlf\",\"data-styles-preset\":\"FUPaZj5jg\",style:{\"--framer-text-color\":\"rgba(230, 255, 241, 0.7)\"},children:\"Join tens of thousands of readers and get powerful business advice delivered straight to your inbox.\"})}),className:\"framer-qkov8b\",effect:textEffect1,fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(Overlay,{blockDocumentScrolling:false,children:overlay=>/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"augiA20Il\"},implicitPathVariables:undefined},{href:{webPageId:\"augiA20Il\"},implicitPathVariables:undefined},{href:{webPageId:\"augiA20Il\"},implicitPathVariables:undefined}],children:resolvedLinks=>/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsxs(ContainerWithOptimizedAppearEffect,{animate:animation2,className:\"framer-mu5vl1-container\",\"data-framer-appear-id\":\"mu5vl1\",id:\"mu5vl1\",initial:animation3,optimized:true,children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{m4eHcOoxF:{link:resolvedLinks[1]},yO6j_T3Vd:{link:resolvedLinks[2]}},children:/*#__PURE__*/_jsx(Superform,{button:{label:\"Subscribe\",shouldAppear:true},contentType:\"application/json\",height:\"100%\",id:\"xt7JnHkkY\",inputs:[{gridColumn:\"1\",label:\"\",max:\"\",min:\"\",name:\"email\",options:[],placeholder:\"Type your email...\",required:true,step:0,type:\"email\",value:\"\"}],layoutId:\"xt7JnHkkY\",link:resolvedLinks[0],method:\"post\",onSubmit:onSubmitwelu7j({overlay}),redirectAs:\"overlay\",style:{maxWidth:\"100%\",width:\"100%\"},styles:{button:{align:\"stretch\",borderRadius:500,color:\"rgb(255, 255, 255)\",fill:\"rgb(0, 176, 80)\",font:{fontFamily:'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',fontSize:\"18px\",fontStyle:\"normal\",fontWeight:600,letterSpacing:\"0em\",lineHeight:\"1em\"},padding:15,paddingBottom:18,paddingLeft:30,paddingPerSide:true,paddingRight:30,paddingTop:18},form:{columnGap:8,columns:\"1\",fill:\"rgba(255, 255, 255, 0)\",rowGap:8},input:{borderRadius:500,color:\"rgb(0, 0, 0)\",fill:\"rgb(236, 241, 238)\",font:{fontFamily:'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',fontSize:\"15px\",fontStyle:\"normal\",fontWeight:600,letterSpacing:\"0em\",lineHeight:\"1em\"},padding:12,paddingBottom:20,paddingLeft:30,paddingPerSide:true,paddingRight:30,paddingTop:20,placeholderColor:\"rgb(135, 135, 135)\"},label:{borderRadius:8,color:\"rgb(0, 0, 0)\",fill:\"rgba(0, 0, 0, 0)\",font:{},padding:0,paddingBottom:20,paddingLeft:30,paddingPerSide:true,paddingRight:30,paddingTop:20}},url:\"https://medsider.outseta.com/email/lists/gWKO82Wp/subscribe\",width:\"100%\"})}),/*#__PURE__*/_jsx(AnimatePresence,{children:overlay.visible&&/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/ReactDOM.createPortal(/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(motion.div,{animate:{opacity:1,transition:{delay:0,duration:0,ease:[.5,0,.88,.77],type:\"tween\"}},className:\"framer-nk4v4h\",\"data-framer-portal-id\":\"mu5vl1\",exit:{opacity:0,transition:{delay:4,duration:0,ease:[.12,.23,.5,1],type:\"tween\"}},initial:{opacity:0},onTap:()=>overlay.hide()},\"EGKxvcRC7\"),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1nquml1\",\"data-framer-portal-id\":\"mu5vl1\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{yO6j_T3Vd:{width:\"max(100vw - 60px, 1px)\"}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:53,y:897.0000000000002,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1uririx-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{yO6j_T3Vd:{style:{width:\"100%\"}}},children:/*#__PURE__*/_jsx(Toast,{height:\"100%\",id:\"XUrnauvel\",layoutId:\"XUrnauvel\",variant:\"CkTcwamaj\",width:\"100%\"})})})})})})]}),document.querySelector(\"#overlay\"))})})]})})})})})]})]}),/*#__PURE__*/_jsxs(MotionDivWithOptimizedAppearEffect,{animate:animation4,className:\"framer-12uc1yv\",\"data-framer-appear-id\":\"12uc1yv\",\"data-framer-name\":\"Interviews Ticker\",initial:animation3,name:\"Interviews Ticker\",optimized:true,children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-yf4vlf\",\"data-styles-preset\":\"FUPaZj5jg\",children:\"Interviews with\u2026\"})}),className:\"framer-1e3yq38\",effect:textEffect1,fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{yO6j_T3Vd:{style:{scale:.8}}},children:/*#__PURE__*/_jsx(Container,{className:\"framer-gkvcj8-container\",id:elementId1,ref:ref4,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{yO6j_T3Vd:{fadeOptions:{fadeAlpha:0,fadeContent:false,fadeInset:0,fadeWidth:100,overflow:false}}},children:/*#__PURE__*/_jsx(Ticker,{alignment:\"flex-start\",direction:\"left\",fadeOptions:{fadeAlpha:0,fadeContent:true,fadeInset:0,fadeWidth:100,overflow:false},gap:25,height:\"100%\",hoverFactor:1,id:\"zxvvwXbuG\",layoutId:\"zxvvwXbuG\",padding:0,paddingBottom:0,paddingLeft:0,paddingPerSide:false,paddingRight:0,paddingTop:0,sizingOptions:{heightType:true,widthType:true},slots:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-lvq19s\",\"data-border\":true,\"data-framer-name\":\"Daniel Hawkins\",name:\"Daniel Hawkins\",whileHover:animation5,children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:156,pixelWidth:156,src:\"https://framerusercontent.com/images/o1jZoGjh28dy1fkKjd55YXlbzpw.png\"},className:\"framer-1d7c09u\"}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1its1rt\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC02MDA=\",\"--framer-font-family\":'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',\"--framer-font-size\":\"19.2px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"26.88px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Daniel Hawkins\"})}),className:\"framer-23pmxv\",fonts:[\"GF;Montserrat-600\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC1yZWd1bGFy\",\"--framer-font-family\":'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',\"--framer-font-size\":\"14.4px\",\"--framer-line-height\":\"20.16px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(221, 223, 221)\"},children:\"CEO, Shockwave Medical\"})}),className:\"framer-1o8sme6\",fonts:[\"GF;Montserrat-regular\"],verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-11hzjrk\",\"data-border\":true,\"data-framer-name\":\"Erica Rogers\",name:\"Erica Rogers\",whileHover:animation5,children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:156,pixelWidth:156,src:\"https://framerusercontent.com/images/P9V4MaqLyBnfGcE00mrAI7uI44.png\"},className:\"framer-1h0wnm0\"}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-19f2667\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC02MDA=\",\"--framer-font-family\":'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',\"--framer-font-size\":\"19.2px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"26.88px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Erica Rogers\"})}),className:\"framer-1j1pnlb\",fonts:[\"GF;Montserrat-600\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC1yZWd1bGFy\",\"--framer-font-family\":'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',\"--framer-font-size\":\"14.4px\",\"--framer-line-height\":\"20.16px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(221, 223, 221)\"},children:\"CEO, Silk Road Medical\"})}),className:\"framer-1hhplvc\",fonts:[\"GF;Montserrat-regular\"],verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-eiuo66\",\"data-border\":true,\"data-framer-name\":\"Nadim Yared\",name:\"Nadim Yared\",whileHover:animation5,children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:156,pixelWidth:156,src:\"https://framerusercontent.com/images/uTnzsTKHfmGKjUcYVd0NKX1ziY.png\"},className:\"framer-1pfrjlz\"}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-679it7\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC02MDA=\",\"--framer-font-family\":'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',\"--framer-font-size\":\"19.2px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"26.88px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Nadim Yared\"})}),className:\"framer-p6djtq\",fonts:[\"GF;Montserrat-600\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC1yZWd1bGFy\",\"--framer-font-family\":'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',\"--framer-font-size\":\"14.4px\",\"--framer-line-height\":\"20.16px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(221, 223, 221)\"},children:\"CEO, CVRx\"})}),className:\"framer-1k6cu2s\",fonts:[\"GF;Montserrat-regular\"],verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-tvwwrh\",\"data-border\":true,\"data-framer-name\":\"Dr. David Albert\",name:\"Dr. David Albert\",whileHover:animation5,children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:156,intrinsicWidth:156,pixelHeight:156,pixelWidth:156,src:\"https://framerusercontent.com/images/XgvArEcsrGoFpZb92BxqLR3WRFw.jpg\"},className:\"framer-k8ptrq\"}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-cqjaiz\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC02MDA=\",\"--framer-font-family\":'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',\"--framer-font-size\":\"19.2px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"26.88px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Dr. David Albert\"})}),className:\"framer-1w528id\",fonts:[\"GF;Montserrat-600\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC1yZWd1bGFy\",\"--framer-font-family\":'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',\"--framer-font-size\":\"14.4px\",\"--framer-line-height\":\"20.16px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(221, 223, 221)\"},children:\"Founder, AliveCor\"})}),className:\"framer-gekp69\",fonts:[\"GF;Montserrat-regular\"],verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-fi0v6a\",\"data-border\":true,\"data-framer-name\":\"Dr. Scott Wolf\",name:\"Dr. Scott Wolf\",whileHover:animation5,children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:156,pixelWidth:156,src:\"https://framerusercontent.com/images/kiPZuaxt0uhPc4s4WbSjx9UNcI.png\"},className:\"framer-c0jwdu\"}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1jbim9t\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC02MDA=\",\"--framer-font-family\":'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',\"--framer-font-size\":\"19.2px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"26.88px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Dr. Scott Wolf\"})}),className:\"framer-1hlib07\",fonts:[\"GF;Montserrat-600\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC1yZWd1bGFy\",\"--framer-font-family\":'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',\"--framer-font-size\":\"14.4px\",\"--framer-line-height\":\"20.16px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(221, 223, 221)\"},children:\"Founder, Aerin Medical\"})}),className:\"framer-8w9eal\",fonts:[\"GF;Montserrat-regular\"],verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1ujwsxx\",\"data-border\":true,\"data-framer-name\":\"Renee Ryan\",name:\"Renee Ryan\",whileHover:animation5,children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:156,intrinsicWidth:156,pixelHeight:156,pixelWidth:156,src:\"https://framerusercontent.com/images/EYTzzTSvL4Wv78MVb3aXBn2oCY.jpg\"},className:\"framer-d5xhbi\"}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1qi0o9i\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC02MDA=\",\"--framer-font-family\":'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',\"--framer-font-size\":\"19.2px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"26.88px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Renee Ryan\"})}),className:\"framer-adcxzg\",fonts:[\"GF;Montserrat-600\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC1yZWd1bGFy\",\"--framer-font-family\":'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',\"--framer-font-size\":\"14.4px\",\"--framer-line-height\":\"20.16px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(221, 223, 221)\"},children:\"CEO, Cala Health\"})}),className:\"framer-o59w0e\",fonts:[\"GF;Montserrat-regular\"],verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1w9cch1\",\"data-border\":true,\"data-framer-name\":\"Kate Rumrill\",name:\"Kate Rumrill\",whileHover:animation5,children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:156,intrinsicWidth:156,pixelHeight:500,pixelWidth:500,src:\"https://framerusercontent.com/images/d4icJ2St0jiQ5T61h8bqSvtsySM.jpg\"},className:\"framer-k7in2i\"}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-bwahvo\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC02MDA=\",\"--framer-font-family\":'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',\"--framer-font-size\":\"19.2px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"26.88px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Kate Rumrill\"})}),className:\"framer-13ep2ye\",fonts:[\"GF;Montserrat-600\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC1yZWd1bGFy\",\"--framer-font-family\":'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',\"--framer-font-size\":\"14.4px\",\"--framer-line-height\":\"20.16px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(221, 223, 221)\"},children:\"CEO, Ablative Solutions\"})}),className:\"framer-1tz4qi5\",fonts:[\"GF;Montserrat-regular\"],verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-xggemj\",\"data-border\":true,\"data-framer-name\":\"Gabriel Jones\",name:\"Gabriel Jones\",whileHover:animation5,children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:1999,pixelWidth:2999,sizes:\"50px\",src:\"https://framerusercontent.com/images/kDnhNzFZwj7ANhNLjYGEBIPmlA.jpeg\",srcSet:\"https://framerusercontent.com/images/kDnhNzFZwj7ANhNLjYGEBIPmlA.jpeg?scale-down-to=512 512w,https://framerusercontent.com/images/kDnhNzFZwj7ANhNLjYGEBIPmlA.jpeg?scale-down-to=1024 1024w,https://framerusercontent.com/images/kDnhNzFZwj7ANhNLjYGEBIPmlA.jpeg?scale-down-to=2048 2048w,https://framerusercontent.com/images/kDnhNzFZwj7ANhNLjYGEBIPmlA.jpeg 2999w\"},className:\"framer-1qzcdj\"}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-13muyqq\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC02MDA=\",\"--framer-font-family\":'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',\"--framer-font-size\":\"19.2px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"26.88px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Gabriel Jones\"})}),className:\"framer-1w8q6d2\",fonts:[\"GF;Montserrat-600\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC1yZWd1bGFy\",\"--framer-font-family\":'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',\"--framer-font-size\":\"14.4px\",\"--framer-line-height\":\"20.16px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(221, 223, 221)\"},children:\"CEO, Proprio\"})}),className:\"framer-1qtmq2y\",fonts:[\"GF;Montserrat-regular\"],verticalAlignment:\"top\",withExternalLayout:true})]})]})],speed:60,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})})})]})]})})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-10bl17s\",\"data-framer-name\":\"Cover Background\",name:\"Cover Background\",children:/*#__PURE__*/_jsx(MotionDivWithOptimizedAppearEffect,{animate:animation6,className:\"framer-1il049y\",\"data-framer-appear-id\":\"1il049y\",initial:animation3,optimized:true,children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-2rudou-container\",\"data-framer-name\":\"Video #1\",name:\"Video #1\",children:/*#__PURE__*/_jsx(Video,{backgroundColor:\"rgba(0, 0, 0, 0)\",borderRadius:0,bottomLeftRadius:0,bottomRightRadius:0,controls:false,height:\"100%\",id:\"Tiqfmvb7s\",isMixedBorderRadius:false,layoutId:\"Tiqfmvb7s\",loop:true,muted:true,name:\"Video #1\",objectFit:\"cover\",playing:true,posterEnabled:false,srcFile:\"https://framerusercontent.com/assets/jqAkf7hHFO3XghBUSz9HsQmIq0.mp4\",srcType:\"Upload\",srcUrl:\"https://assets.mixkit.co/videos/preview/mixkit-shining-sun-in-the-sky-surrounded-by-moving-clouds-31793-small.mp4\",startTime:0,style:{height:\"100%\",width:\"100%\"},topLeftRadius:0,topRightRadius:0,volume:25,width:\"100%\"})})})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(ContainerWithFXWithOptimizedAppearEffect,{__framer__spring:{damping:40,delay:0,duration:.3,ease:[.44,0,.56,1],mass:1,stiffness:400,type:\"spring\"},__framer__styleTransformEffectEnabled:true,__framer__transformTargets:[{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0}},{ref:ref3,target:{opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:40}}],__framer__transformTrigger:\"onScrollTarget\",__framer__transformViewportThreshold:0,__perspectiveFX:false,__targetOpacity:.5,animate:animation7,className:\"framer-1s8v3a8-container\",\"data-framer-appear-id\":\"1s8v3a8\",\"data-framer-name\":\"Scroll Down Icon\",initial:animation3,name:\"Scroll Down Icon\",optimized:true,style:{rotate:90},transformTemplate:transformTemplate1,children:/*#__PURE__*/_jsx(Lottie,{height:\"100%\",id:\"bGNYkTOgs\",isForwardsDirection:true,layoutId:\"bGNYkTOgs\",loop:true,name:\"Scroll Down Icon\",playing:true,poster:\"Auto\",posterProgress:0,progress:0,speed:1,srcFile:\"https://framerusercontent.com/assets/QcC2t8GgTInUz1g7Bf3DeGRYbug.json\",srcType:\"Upload\",srcUrl:\"https://raw.githubusercontent.com/framer/Lottie/master/Lottie.framerfx/assets/logo.json\",style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-8fugc\",\"data-framer-name\":\"BTF\",id:elementId2,name:\"BTF\",ref:ref2,children:[/*#__PURE__*/_jsx(Overlay,{blockDocumentScrolling:true,children:overlay2=>/*#__PURE__*/_jsx(Overlay,{blockDocumentScrolling:true,children:overlay1=>/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:1180,width:\"100vw\",children:/*#__PURE__*/_jsxs(Container,{className:\"framer-1r5imfj-container\",id:elementId3,ref:ref5,children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{m4eHcOoxF:{variant:\"UxlYzs0Vp\"},yO6j_T3Vd:{variant:\"nEPlp6lcE\"}},children:/*#__PURE__*/_jsx(PricingTableShowForAnonymousWithMappedReactProps1jqp4g3,{e3PemVyd7:e3PemVyd7welu7j({overlay:overlay1}),height:\"100%\",id:\"c1YL1QTz0\",Kja1YIJBD:Kja1YIJBDwelu7j({overlay:overlay2}),layoutId:\"c1YL1QTz0\",style:{width:\"100%\"},variant:\"Lf5oi6oH6\",width:\"100%\"})}),/*#__PURE__*/_jsx(AnimatePresence,{children:overlay1.visible&&/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/ReactDOM.createPortal(/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(motion.div,{animate:{opacity:1,transition:{delay:0,duration:0,ease:[.5,0,.88,.77],type:\"tween\"}},className:\"framer-1i3e3t3\",\"data-framer-name\":\"Sign Up Free Overlay\",\"data-framer-portal-id\":elementId3,exit:{opacity:0,transition:{delay:0,duration:0,ease:[.12,.23,.5,1],type:\"tween\"}},initial:{opacity:0},name:\"Sign Up Free Overlay\",onTap:()=>overlay1.hide()},\"yCDw09TV6\"),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1n2v3ze\",\"data-framer-portal-id\":elementId3,children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:1e3,width:\"max(100vw, 1px)\",y:0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-w1ehg1-container\",\"data-framer-name\":\"Subscribe for Free\",name:\"Subscribe for Free\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{m4eHcOoxF:{Z896BCKPL:\"0px 70px 0px 70px\"},yO6j_T3Vd:{L5XrPsXW8:\"15px 20px 15px 20px\",Z896BCKPL:\"80px 30px 80px 30px\"}},children:/*#__PURE__*/_jsx(Overlays,{height:\"100%\",id:\"XkhLCECdG\",L5XrPsXW8:\"20px 30px 20px 30px\",layoutId:\"XkhLCECdG\",name:\"Subscribe for Free\",style:{height:\"100%\",width:\"100%\"},tCWBEtx_f:18,utsSte6Mc:utsSte6Mc1wvko5h({overlay:overlay1}),variant:\"CjzsBodHS\",width:\"100%\",X2EFxNikU:\"18px 30px 18px 30px\",Z896BCKPL:\"0px 0px 0px 0px\"})})})})})]}),document.querySelector(\"#overlay\"))})}),/*#__PURE__*/_jsx(AnimatePresence,{children:overlay2.visible&&/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/ReactDOM.createPortal(/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(motion.div,{animate:{opacity:1,transition:{delay:0,duration:0,ease:[.5,0,.88,.77],type:\"tween\"}},className:\"framer-17q2sk2\",\"data-framer-name\":\"Learn More Overlay\",\"data-framer-portal-id\":elementId3,exit:{opacity:0,transition:{delay:0,duration:0,ease:[.12,.23,.5,1],type:\"tween\"}},initial:{opacity:0},name:\"Learn More Overlay\",onTap:()=>overlay2.hide()},\"ht9xggtZa\"),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1lx8rgh\",\"data-framer-portal-id\":elementId3,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{yO6j_T3Vd:{height:860,width:\"390px\"}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:1e3,width:\"max(100vw, 1px)\",y:0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-wwttfc-container\",\"data-framer-name\":\"Learn More\",name:\"Learn More\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{m4eHcOoxF:{Z896BCKPL:\"0px 70px 0px 70px\"},yO6j_T3Vd:{L5XrPsXW8:\"15px 20px 15px 20px\",tCWBEtx_f:16,X2EFxNikU:\"15px 30px 15px 30px\",Z896BCKPL:\"80px 30px 80px 30px\"}},children:/*#__PURE__*/_jsx(Overlays,{height:\"100%\",id:\"IUwjNQMQb\",L5XrPsXW8:\"20px 30px 20px 30px\",layoutId:\"IUwjNQMQb\",name:\"Learn More\",style:{height:\"100%\",width:\"100%\"},tCWBEtx_f:18,utsSte6Mc:utsSte6Mc1wvko5h({overlay:overlay2}),variant:\"FZodU4_Jq\",width:\"100%\",X2EFxNikU:\"18px 30px 18px 30px\",Z896BCKPL:\"0px 0px 0px 0px\"})})})})})})]}),document.querySelector(\"#overlay\"))})})]})})})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-10w820q\",\"data-framer-name\":\"Posts\",name:\"Posts\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1wbgiob\",\"data-framer-name\":\"Container\",name:\"Container\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-12hw1i0\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-hkebsh\",\"data-styles-preset\":\"X1nIqX55n\",children:\"Understand How the Best Startups Win\"})}),className:\"framer-nue5xj\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-dn04q9\",\"data-styles-preset\":\"b9SmhEDKG\",children:\"We unpack the insights, tactics, and secrets behind the most successful medtech and healthtech companies. From CEOs of multinational corporations to startup entrepreneurs, Medsider is consumed by tens and thousands of ambitious people every week.\"})}),className:\"framer-9wdtca\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1ppw1ea\",\"data-framer-name\":\"Latest Premium Interviews CMS Collection\",name:\"Latest Premium Interviews CMS Collection\",children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(QueryData,{query:{from:{alias:\"IRXIpLu9Z\",data:Interviews,type:\"Collection\"},limit:{type:\"LiteralValue\",value:3},select:[{collection:\"IRXIpLu9Z\",name:\"LDTQFuITv\",type:\"Identifier\"},{collection:\"IRXIpLu9Z\",name:\"i_fSc7kv5\",type:\"Identifier\"},{collection:\"IRXIpLu9Z\",name:\"ZMrV3O2Yq\",type:\"Identifier\"},{collection:\"IRXIpLu9Z\",name:\"AuMLoP5Lo\",type:\"Identifier\"},{collection:\"IRXIpLu9Z\",name:\"vxuYMamB6\",type:\"Identifier\"},{collection:\"IRXIpLu9Z\",name:\"id\",type:\"Identifier\"}],where:{left:{collection:\"IRXIpLu9Z\",name:\"ZMrV3O2Yq\",type:\"Identifier\"},operator:\"==\",right:{type:\"LiteralValue\",value:\"h1IbZ7Qk3\"},type:\"BinaryOperation\"}},children:(collection,paginationInfo,loadMore)=>/*#__PURE__*/_jsx(_Fragment,{children:collection.map(({\"LDTQFuITv\":LDTQFuITvIRXIpLu9Z,\"i_fSc7kv5\":i_fSc7kv5IRXIpLu9Z,\"ZMrV3O2Yq\":ZMrV3O2YqIRXIpLu9Z,\"AuMLoP5Lo\":AuMLoP5LoIRXIpLu9Z,\"vxuYMamB6\":vxuYMamB6IRXIpLu9Z,\"id\":idIRXIpLu9Z},i)=>{LDTQFuITvIRXIpLu9Z??=\"\";i_fSc7kv5IRXIpLu9Z??=\"\";AuMLoP5LoIRXIpLu9Z??=\"\";vxuYMamB6IRXIpLu9Z??=\"\";const visible=equals(ZMrV3O2YqIRXIpLu9Z,\"wbjwaYfu9\");const visible1=equals(ZMrV3O2YqIRXIpLu9Z,\"h1IbZ7Qk3\");return /*#__PURE__*/_jsx(LayoutGroup,{id:`IRXIpLu9Z-${idIRXIpLu9Z}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{LDTQFuITv:LDTQFuITvIRXIpLu9Z},children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-1jsnhn5\",children:/*#__PURE__*/_jsx(Link,{href:{pathVariables:{LDTQFuITv:LDTQFuITvIRXIpLu9Z},webPageId:\"ZZ4QyFr2a\"},nodeId:\"JEQbuyuq2\",children:/*#__PURE__*/_jsxs(motion.a,{className:\"framer-kc6tf3 framer-lux5qc\",whileHover:animation8,children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-jt4bkc\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-1y7zo0d\",\"data-styles-preset\":\"R4a0NMZ7P\",children:\"Identifying and Mitigating Key Risk Factors in Medtech Startups\"})}),className:\"framer-ukl878\",\"data-framer-name\":\"Name\",fonts:[\"Inter\"],name:\"Name\",text:i_fSc7kv5IRXIpLu9Z,verticalAlignment:\"top\",withExternalLayout:true}),visible&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC02MDA=\",\"--framer-font-family\":'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"1.6em\",\"--framer-text-color\":\"rgb(253, 137, 3)\"},children:\"Interview with Reimagine Care CEO Dan Nardi\"})}),className:\"framer-1w7j6g\",\"data-framer-name\":\"Main Header\",fonts:[\"GF;Montserrat-600\"],name:\"Main Header\",text:AuMLoP5LoIRXIpLu9Z,verticalAlignment:\"top\",withExternalLayout:true}),visible1&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{className:\"framer-styles-preset-14kt8ap\",\"data-styles-preset\":\"UnfHP7tms\",style:{\"--framer-text-color\":\"var(--token-1ee55703-829b-418d-bd58-dcf1f8912244, rgb(0, 176, 80))\"},children:\"Interview with Adona Medical CEO Brian Fahey\"})}),className:\"framer-1rjj5h7\",\"data-framer-name\":\"Main Header\",fonts:[\"Inter\"],name:\"Main Header\",text:AuMLoP5LoIRXIpLu9Z,verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(RichTextTruncatedText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1ltq8o9\",\"data-styles-preset\":\"FXnTL8Nf9\",children:\"Brian Fahey, CEO of Adona Medical, is leading the development of the Adona Interatrial Shunt, a smart implant designed to manage heart failure. This adjustable shunt, integrated with bi-atrial pressure monitoring, helps regulate blood flow between the heart's upper chambers and enables remote monitoring of patients. In this interview, Brian talks about the importance of identifying and mitigating medtech\u2019s three major risk factors, how to assess ideas strategically, and how to approach investors and potential M&A transactions.\"})}),className:\"framer-1ffnvyf\",\"data-framer-name\":\"Lines: 7\",fonts:[\"Inter\"],name:\"Lines: 7\",text:vxuYMamB6IRXIpLu9Z,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{m4eHcOoxF:{width:undefined},yO6j_T3Vd:{width:undefined}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:55,width:\"calc(max(max((min(max(100vw, 1px), 1440px) - 60px) / 3, 330px), 200px) - 80px)\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-tgkbnf-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{yO6j_T3Vd:{RH8gHvOZ3:16,ZGYS7GH9k:\"15px 30px 15px 30px\"}},children:/*#__PURE__*/_jsx(FakeButtons,{bLqbbWCkp:{damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"},height:\"100%\",id:\"GxXFWR7bd\",layoutId:\"GxXFWR7bd\",RH8gHvOZ3:18,style:{width:\"100%\"},variant:\"f65RRLzof\",width:\"100%\",XcCwIVynb:\"Read More\",ZGYS7GH9k:\"18px 30px 18px 30px\"})})})})})]})})})})},idIRXIpLu9Z);})})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"kNeQDgO9Q\"},implicitPathVariables:undefined},{href:{webPageId:\"kNeQDgO9Q\"},implicitPathVariables:undefined},{href:{webPageId:\"kNeQDgO9Q\"},implicitPathVariables:undefined}],children:resolvedLinks1=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{yO6j_T3Vd:{width:\"calc(max(min(max(100vw, 1px), 1440px), 330px) - 60px)\"}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:55,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1130llx-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{m4eHcOoxF:{RlZWQ17Hr:resolvedLinks1[1]},yO6j_T3Vd:{RH8gHvOZ3:16,RlZWQ17Hr:resolvedLinks1[2],style:{width:\"100%\"},ZGYS7GH9k:\"15px 30px 15px 30px\"}},children:/*#__PURE__*/_jsx(PrimaryButtons,{bLqbbWCkp:{damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"},height:\"100%\",id:\"eodBUoxjM\",layoutId:\"eodBUoxjM\",RH8gHvOZ3:18,RlZWQ17Hr:resolvedLinks1[0],sRsdTLA9h:false,variant:\"lfWAX8_Kt\",width:\"100%\",XcCwIVynb:\"See the Latest\",ZGYS7GH9k:\"18px 30px 18px 30px\"})})})})})})]})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-o4ev16\",\"data-framer-name\":\"Testimonials #1\",name:\"Testimonials #1\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-10u59gk\",\"data-framer-name\":\"Container\",name:\"Container\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1hfky2m\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-q61u0n\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-hkebsh\",\"data-styles-preset\":\"X1nIqX55n\",children:\"Medsider is Trusted by Thousands of Your Peers\"})}),className:\"framer-19pnv6b\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-dn04q9\",\"data-styles-preset\":\"b9SmhEDKG\",children:\"Folks just like you \u2014 men & women, managers, entrepreneurs, and ambitious doers \u2014 read and listen to Medsider to learn from proven medical device and health technology experts.\"})}),className:\"framer-wdh8yo\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-b4a103\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1g52k6x-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{yO6j_T3Vd:{fadeOptions:{fadeAlpha:0,fadeContent:false,fadeInset:0,fadeWidth:30,overflow:false}}},children:/*#__PURE__*/_jsx(Ticker,{alignment:\"center\",direction:\"left\",fadeOptions:{fadeAlpha:0,fadeContent:true,fadeInset:0,fadeWidth:30,overflow:false},gap:25,height:\"100%\",hoverFactor:1,id:\"GCs6s1HIa\",layoutId:\"GCs6s1HIa\",padding:0,paddingBottom:0,paddingLeft:0,paddingPerSide:false,paddingRight:0,paddingTop:0,sizingOptions:{heightType:true,widthType:true},slots:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-emwdxv\",\"data-border\":true,children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC02MDA=\",\"--framer-font-family\":'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"29px\",\"--framer-text-color\":\"var(--token-1ee55703-829b-418d-bd58-dcf1f8912244, rgb(0, 176, 80))\"},children:'\"Pick up a premium Medsider membership. It\u2019s a no-brainer.\"'})}),className:\"framer-18pzeg7\",fonts:[\"GF;Montserrat-600\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1tmul3a\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:88,intrinsicWidth:88,pixelHeight:88,pixelWidth:88,src:\"https://framerusercontent.com/images/bjIFVp7AHOMQv8bfWVRZsDOlE8.jpg\"},className:\"framer-3d01qm\"}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-w3ddbc\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC02MDA=\",\"--framer-font-family\":'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',\"--framer-font-size\":\"15px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"21.6px\",\"--framer-text-color\":\"rgb(23, 24, 24)\"},children:\"Jim R.\"})}),className:\"framer-7poaid\",fonts:[\"GF;Montserrat-600\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC1yZWd1bGFy\",\"--framer-font-family\":'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-line-height\":\"22.5px\",\"--framer-text-color\":\"rgb(83, 87, 99)\"},children:\"Sr. VP, Boston Scientific\"})}),className:\"framer-1b9yxu0\",fonts:[\"GF;Montserrat-regular\"],verticalAlignment:\"top\",withExternalLayout:true})]})]})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1bgskm\",\"data-border\":true,children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC02MDA=\",\"--framer-font-family\":'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"29px\",\"--framer-text-color\":\"var(--token-1ee55703-829b-418d-bd58-dcf1f8912244, rgb(0, 176, 80))\"},children:'\"Medsider is so good. If you\u2019re in medtech, definitely get their newsletter.\"'})}),className:\"framer-12gby36\",fonts:[\"GF;Montserrat-600\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1kv2jym\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:88,intrinsicWidth:88,pixelHeight:88,pixelWidth:88,src:\"https://framerusercontent.com/images/Qwsj0K7EtZ95PQgnC9594pbmHc.png\"},className:\"framer-1b7uub\"}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1xi6idl\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC02MDA=\",\"--framer-font-family\":'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',\"--framer-font-size\":\"15px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"21.6px\",\"--framer-text-color\":\"rgb(23, 24, 24)\"},children:\"Pat R.\"})}),className:\"framer-3frlfs\",fonts:[\"GF;Montserrat-600\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC1yZWd1bGFy\",\"--framer-font-family\":'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-line-height\":\"22.5px\",\"--framer-text-color\":\"rgb(83, 87, 99)\"},children:\"Sr. Manager, Medtronic\"})}),className:\"framer-1giamrc\",fonts:[\"GF;Montserrat-regular\"],verticalAlignment:\"top\",withExternalLayout:true})]})]})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-qoohws\",\"data-border\":true,children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC02MDA=\",\"--framer-font-family\":'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"29px\",\"--framer-text-color\":\"var(--token-1ee55703-829b-418d-bd58-dcf1f8912244, rgb(0, 176, 80))\"},children:'\"My favorite medtech newsletter is Medsider. I read every email word-for-word.\"'})}),className:\"framer-1l7d8wo\",fonts:[\"GF;Montserrat-600\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-jzg76t\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:88,intrinsicWidth:88,pixelHeight:88,pixelWidth:88,src:\"https://framerusercontent.com/images/dXrsM9wZfAy2G6IUkQwhyWIqO3Q.png\"},className:\"framer-yml3k1\"}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-inwit7\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC02MDA=\",\"--framer-font-family\":'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',\"--framer-font-size\":\"15px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"21.6px\",\"--framer-text-color\":\"rgb(23, 24, 24)\"},children:\"Sarah M.\"})}),className:\"framer-uc19pt\",fonts:[\"GF;Montserrat-600\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC1yZWd1bGFy\",\"--framer-font-family\":'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-line-height\":\"22.5px\",\"--framer-text-color\":\"rgb(83, 87, 99)\"},children:\"Sr. VP, Becton Dickinson\"})}),className:\"framer-yp7t30\",fonts:[\"GF;Montserrat-regular\"],verticalAlignment:\"top\",withExternalLayout:true})]})]})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-17y1s36\",\"data-border\":true,children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC02MDA=\",\"--framer-font-family\":'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"29px\",\"--framer-text-color\":\"var(--token-1ee55703-829b-418d-bd58-dcf1f8912244, rgb(0, 176, 80))\"},children:'\"Huge thanks to Medsider for their next-level newsletter. Their interviews are the best.\"'})}),className:\"framer-1wq2y07\",fonts:[\"GF;Montserrat-600\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1ly2vii\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:88,intrinsicWidth:88,pixelHeight:88,pixelWidth:88,src:\"https://framerusercontent.com/images/kHKLOzz5mR6ltPRFdxNAyvTMJ0.png\"},className:\"framer-10ryud3\"}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-234uci\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC02MDA=\",\"--framer-font-family\":'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',\"--framer-font-size\":\"15px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"21.6px\",\"--framer-text-color\":\"rgb(23, 24, 24)\"},children:\"Jason D.\"})}),className:\"framer-u7d0ig\",fonts:[\"GF;Montserrat-600\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC1yZWd1bGFy\",\"--framer-font-family\":'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-line-height\":\"22.5px\",\"--framer-text-color\":\"rgb(83, 87, 99)\"},children:\"Manager, Intuitive Surgical\"})}),className:\"framer-1mmxxgl\",fonts:[\"GF;Montserrat-regular\"],verticalAlignment:\"top\",withExternalLayout:true})]})]})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-a08o4v\",\"data-border\":true,children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC02MDA=\",\"--framer-font-family\":'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"29px\",\"--framer-text-color\":\"var(--token-1ee55703-829b-418d-bd58-dcf1f8912244, rgb(0, 176, 80))\"},children:'\"Entertaining and educational. My entire team listens to Medsider interviews.\"'})}),className:\"framer-1kr0pvj\",fonts:[\"GF;Montserrat-600\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-2nauqg\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:88,intrinsicWidth:88,pixelHeight:88,pixelWidth:88,src:\"https://framerusercontent.com/images/9utNkgN4ZVKmGyb11PgO9dbMm0.png\"},className:\"framer-1q1kx80\"}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-ana2qv\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC02MDA=\",\"--framer-font-family\":'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',\"--framer-font-size\":\"15px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"21.6px\",\"--framer-text-color\":\"rgb(23, 24, 24)\"},children:\"Codie S.\"})}),className:\"framer-1q2lc1d\",fonts:[\"GF;Montserrat-600\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC1yZWd1bGFy\",\"--framer-font-family\":'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-line-height\":\"22.5px\",\"--framer-text-color\":\"rgb(83, 87, 99)\"},children:\"Sr. Director, Philips\"})}),className:\"framer-y7be90\",fonts:[\"GF;Montserrat-regular\"],verticalAlignment:\"top\",withExternalLayout:true})]})]})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-e4d5lt\",\"data-border\":true,children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC02MDA=\",\"--framer-font-family\":'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"29px\",\"--framer-text-color\":\"var(--token-1ee55703-829b-418d-bd58-dcf1f8912244, rgb(0, 176, 80))\"},children:'\"Medsider is a go-to resource. You should be reading all their articles.\"'})}),className:\"framer-12xqywo\",fonts:[\"GF;Montserrat-600\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-cyhr9f\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:88,intrinsicWidth:88,pixelHeight:88,pixelWidth:88,src:\"https://framerusercontent.com/images/emRF0ZH1oz91j6KN5h5EtLOLCA.png\"},className:\"framer-5blzif\"}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-12wpyxt\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC02MDA=\",\"--framer-font-family\":'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',\"--framer-font-size\":\"15px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"21.6px\",\"--framer-text-color\":\"rgb(23, 24, 24)\"},children:\"Andrew W.\"})}),className:\"framer-vyrfb8\",fonts:[\"GF;Montserrat-600\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC1yZWd1bGFy\",\"--framer-font-family\":'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-line-height\":\"22.5px\",\"--framer-text-color\":\"rgb(83, 87, 99)\"},children:\"VP, Cardinal Health\"})}),className:\"framer-8ow2nl\",fonts:[\"GF;Montserrat-regular\"],verticalAlignment:\"top\",withExternalLayout:true})]})]})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-ch0yi6\",\"data-border\":true,children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC02MDA=\",\"--framer-font-family\":'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"29px\",\"--framer-text-color\":\"var(--token-1ee55703-829b-418d-bd58-dcf1f8912244, rgb(0, 176, 80))\"},children:'\"My favorite medical device newsletter is Medsider. Hands down.\"'})}),className:\"framer-1p9z3xa\",fonts:[\"GF;Montserrat-600\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-16nmay\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:88,intrinsicWidth:88,pixelHeight:88,pixelWidth:88,src:\"https://framerusercontent.com/images/ps21AebWk9xL9oCqWdEmlTZbDQ.png\"},className:\"framer-1j5w7kl\"}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1mfixhx\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC02MDA=\",\"--framer-font-family\":'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',\"--framer-font-size\":\"15px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"21.6px\",\"--framer-text-color\":\"rgb(23, 24, 24)\"},children:\"Mick R.\"})}),className:\"framer-gy3pxv\",fonts:[\"GF;Montserrat-600\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC1yZWd1bGFy\",\"--framer-font-family\":'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-line-height\":\"22.5px\",\"--framer-text-color\":\"rgb(83, 87, 99)\"},children:\"Director, Medtronic\"})}),className:\"framer-1tdiizm\",fonts:[\"GF;Montserrat-regular\"],verticalAlignment:\"top\",withExternalLayout:true})]})]})]})],speed:60,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-16cqs4r-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{yO6j_T3Vd:{fadeOptions:{fadeAlpha:0,fadeContent:false,fadeInset:0,fadeWidth:30,overflow:false}}},children:/*#__PURE__*/_jsx(Ticker,{alignment:\"center\",direction:\"right\",fadeOptions:{fadeAlpha:0,fadeContent:true,fadeInset:0,fadeWidth:30,overflow:false},gap:25,height:\"100%\",hoverFactor:1,id:\"byiI1u0xv\",layoutId:\"byiI1u0xv\",padding:0,paddingBottom:0,paddingLeft:0,paddingPerSide:false,paddingRight:0,paddingTop:0,sizingOptions:{heightType:true,widthType:true},slots:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-me0rio\",\"data-border\":true,children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC02MDA=\",\"--framer-font-family\":'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"29px\",\"--framer-text-color\":\"var(--token-1ee55703-829b-418d-bd58-dcf1f8912244, rgb(0, 176, 80))\"},children:'\"I\u2019m convinced that everyone should be reading Medsider interviews.\"'})}),className:\"framer-9bc7u0\",fonts:[\"GF;Montserrat-600\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-xoa34f\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:88,intrinsicWidth:88,pixelHeight:88,pixelWidth:88,src:\"https://framerusercontent.com/images/GVSqFReUSg94Bx4LYzAej8QBlSQ.png\"},className:\"framer-32zb9h\"}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-12m5iko\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC02MDA=\",\"--framer-font-family\":'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',\"--framer-font-size\":\"15px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"21.6px\",\"--framer-text-color\":\"rgb(23, 24, 24)\"},children:\"Melissa P.\"})}),className:\"framer-1kvrzey\",fonts:[\"GF;Montserrat-600\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC1yZWd1bGFy\",\"--framer-font-family\":'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-line-height\":\"22.5px\",\"--framer-text-color\":\"rgb(83, 87, 99)\"},children:\"Director, Baxter\"})}),className:\"framer-1av5g8k\",fonts:[\"GF;Montserrat-regular\"],verticalAlignment:\"top\",withExternalLayout:true})]})]})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-11ht41b\",\"data-border\":true,children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC02MDA=\",\"--framer-font-family\":'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"29px\",\"--framer-text-color\":\"var(--token-1ee55703-829b-418d-bd58-dcf1f8912244, rgb(0, 176, 80))\"},children:\"\u201CMedsider is awesome. Informative and fun. Highly recommend.\u201D\"})}),className:\"framer-1to42s9\",fonts:[\"GF;Montserrat-600\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1m2qg4o\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:88,intrinsicWidth:88,pixelHeight:88,pixelWidth:88,src:\"https://framerusercontent.com/images/Xa56Ly7KGSyyxtHUH3Xwf8GFVvM.png\"},className:\"framer-16y6pxm\"}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-gx4vt2\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC02MDA=\",\"--framer-font-family\":'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',\"--framer-font-size\":\"15px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"21.6px\",\"--framer-text-color\":\"rgb(23, 24, 24)\"},children:\"Robyn Y.\"})}),className:\"framer-4974m4\",fonts:[\"GF;Montserrat-600\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC1yZWd1bGFy\",\"--framer-font-family\":'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-line-height\":\"22.5px\",\"--framer-text-color\":\"rgb(83, 87, 99)\"},children:\"Manager, Abbott\"})}),className:\"framer-1fri878\",fonts:[\"GF;Montserrat-regular\"],verticalAlignment:\"top\",withExternalLayout:true})]})]})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1grc5kc\",\"data-border\":true,children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC02MDA=\",\"--framer-font-family\":'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"29px\",\"--framer-text-color\":\"var(--token-1ee55703-829b-418d-bd58-dcf1f8912244, rgb(0, 176, 80))\"},children:\"\u201CI get all the medical device newsletters. Medisder is the best by far.\u201D\"})}),className:\"framer-1u7djq4\",fonts:[\"GF;Montserrat-600\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1prifu5\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:88,intrinsicWidth:88,pixelHeight:88,pixelWidth:88,src:\"https://framerusercontent.com/images/0GKboTqDG2102FO3BJYm6MfvPY.png\"},className:\"framer-1ii75h2\"}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-o8429s\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC02MDA=\",\"--framer-font-family\":'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',\"--framer-font-size\":\"15px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"21.6px\",\"--framer-text-color\":\"rgb(23, 24, 24)\"},children:\"Scott B.\"})}),className:\"framer-uwfjtg\",fonts:[\"GF;Montserrat-600\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC1yZWd1bGFy\",\"--framer-font-family\":'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-line-height\":\"22.5px\",\"--framer-text-color\":\"rgb(83, 87, 99)\"},children:\"Director, Johnson & Johnson\"})}),className:\"framer-ln774c\",fonts:[\"GF;Montserrat-regular\"],verticalAlignment:\"top\",withExternalLayout:true})]})]})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-kf4vui\",\"data-border\":true,children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC02MDA=\",\"--framer-font-family\":'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"29px\",\"--framer-text-color\":\"var(--token-1ee55703-829b-418d-bd58-dcf1f8912244, rgb(0, 176, 80))\"},children:'\"Thanks to Medsider for keeping me informed on all things medtech!\"'})}),className:\"framer-r9w5up\",fonts:[\"GF;Montserrat-600\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1tj9cnz\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:88,intrinsicWidth:88,pixelHeight:88,pixelWidth:88,src:\"https://framerusercontent.com/images/85eau3AdbCMzyq9zL7Nb9S3tFTY.png\"},className:\"framer-om1yn3\"}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-jlnu7d\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC02MDA=\",\"--framer-font-family\":'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',\"--framer-font-size\":\"15px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"21.6px\",\"--framer-text-color\":\"rgb(23, 24, 24)\"},children:\"Amanda C.\"})}),className:\"framer-1w9nlwh\",fonts:[\"GF;Montserrat-600\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC1yZWd1bGFy\",\"--framer-font-family\":'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-line-height\":\"22.5px\",\"--framer-text-color\":\"rgb(83, 87, 99)\"},children:\"Sr. Manager, Boston Scientific\"})}),className:\"framer-10pcd51\",fonts:[\"GF;Montserrat-regular\"],verticalAlignment:\"top\",withExternalLayout:true})]})]})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1ki9jxn\",\"data-border\":true,children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC02MDA=\",\"--framer-font-family\":'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"29px\",\"--framer-text-color\":\"var(--token-1ee55703-829b-418d-bd58-dcf1f8912244, rgb(0, 176, 80))\"},children:'\"Medsider is so good. If you\u2019re in medtech, definitely get their newsletter.\"'})}),className:\"framer-ki50ti\",fonts:[\"GF;Montserrat-600\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-2bnwrc\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:88,intrinsicWidth:88,pixelHeight:88,pixelWidth:88,src:\"https://framerusercontent.com/images/TneHrfoIIQjBMTAfmXVpmBaSASA.png\"},className:\"framer-490bbz\"}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1ej8hsp\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC02MDA=\",\"--framer-font-family\":'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',\"--framer-font-size\":\"15px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"21.6px\",\"--framer-text-color\":\"rgb(23, 24, 24)\"},children:\"Megan T.\"})}),className:\"framer-1hpi6g7\",fonts:[\"GF;Montserrat-600\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC1yZWd1bGFy\",\"--framer-font-family\":'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-line-height\":\"22.5px\",\"--framer-text-color\":\"rgb(83, 87, 99)\"},children:\"Manager, Medtronic\"})}),className:\"framer-7nbr9b\",fonts:[\"GF;Montserrat-regular\"],verticalAlignment:\"top\",withExternalLayout:true})]})]})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1rzp2cj\",\"data-border\":true,children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC02MDA=\",\"--framer-font-family\":'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"29px\",\"--framer-text-color\":\"var(--token-1ee55703-829b-418d-bd58-dcf1f8912244, rgb(0, 176, 80))\"},children:'\"Entertaining and educational. My entire team listens to Medsider interviews.\"'})}),className:\"framer-1sksf9f\",fonts:[\"GF;Montserrat-600\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-16mqqla\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:88,intrinsicWidth:88,pixelHeight:88,pixelWidth:88,src:\"https://framerusercontent.com/images/85eau3AdbCMzyq9zL7Nb9S3tFTY.png\"},className:\"framer-145f6kt\"}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-11wqc8e\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC02MDA=\",\"--framer-font-family\":'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',\"--framer-font-size\":\"15px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"21.6px\",\"--framer-text-color\":\"rgb(23, 24, 24)\"},children:\"Codie S.\"})}),className:\"framer-1mx4w0x\",fonts:[\"GF;Montserrat-600\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC1yZWd1bGFy\",\"--framer-font-family\":'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-line-height\":\"22.5px\",\"--framer-text-color\":\"rgb(83, 87, 99)\"},children:\"Sr. Director, Philips\"})}),className:\"framer-c6qojb\",fonts:[\"GF;Montserrat-regular\"],verticalAlignment:\"top\",withExternalLayout:true})]})]})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1b664aj\",\"data-border\":true,children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC02MDA=\",\"--framer-font-family\":'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"29px\",\"--framer-text-color\":\"var(--token-1ee55703-829b-418d-bd58-dcf1f8912244, rgb(0, 176, 80))\"},children:'\"Medsider is hands-down the best medical device podcast out there.\"'})}),className:\"framer-eboz4q\",fonts:[\"GF;Montserrat-600\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-nt010v\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:88,intrinsicWidth:88,pixelHeight:88,pixelWidth:88,src:\"https://framerusercontent.com/images/9AnumCT3GzAdZ9J97IL5vJo2j9I.png\"},className:\"framer-1j0ieiv\"}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-dmexj5\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC02MDA=\",\"--framer-font-family\":'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',\"--framer-font-size\":\"15px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"21.6px\",\"--framer-text-color\":\"rgb(23, 24, 24)\"},children:\"Bryan C.\"})}),className:\"framer-gqb2p2\",fonts:[\"GF;Montserrat-600\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC1yZWd1bGFy\",\"--framer-font-family\":'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-line-height\":\"22.5px\",\"--framer-text-color\":\"rgb(83, 87, 99)\"},children:\"Director, Philips\"})}),className:\"framer-9wogp1\",fonts:[\"GF;Montserrat-regular\"],verticalAlignment:\"top\",withExternalLayout:true})]})]})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-gszab8\",\"data-border\":true,children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC02MDA=\",\"--framer-font-family\":'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"29px\",\"--framer-text-color\":\"var(--token-1ee55703-829b-418d-bd58-dcf1f8912244, rgb(0, 176, 80))\"},children:'\"If I could only choose one medtech newsletter to read, Medsider would be it.\"'})}),className:\"framer-1erxje4\",fonts:[\"GF;Montserrat-600\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1vkbrvi\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:88,intrinsicWidth:88,pixelHeight:88,pixelWidth:88,src:\"https://framerusercontent.com/images/6RmX3sbXcYmauvHUPbxzW1diZo.png\"},className:\"framer-cxqn1v\"}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1ew7cv0\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC02MDA=\",\"--framer-font-family\":'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',\"--framer-font-size\":\"15px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"21.6px\",\"--framer-text-color\":\"rgb(23, 24, 24)\"},children:\"Brett J.\"})}),className:\"framer-1ykct3c\",fonts:[\"GF;Montserrat-600\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC1yZWd1bGFy\",\"--framer-font-family\":'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-line-height\":\"22.5px\",\"--framer-text-color\":\"rgb(83, 87, 99)\"},children:\"Sr. Manager, Abbott\"})}),className:\"framer-e4muwo\",fonts:[\"GF;Montserrat-regular\"],verticalAlignment:\"top\",withExternalLayout:true})]})]})]})],speed:60,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-rn1edz\",children:/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"YGwCAJ92a\"},implicitPathVariables:undefined},{href:{webPageId:\"YGwCAJ92a\"},implicitPathVariables:undefined},{href:{webPageId:\"YGwCAJ92a\"},implicitPathVariables:undefined}],children:resolvedLinks2=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{yO6j_T3Vd:{width:\"calc(max(100vw, 1px) - 60px)\"}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:55,children:/*#__PURE__*/_jsx(Container,{className:\"framer-td3yqh-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{m4eHcOoxF:{RlZWQ17Hr:resolvedLinks2[1]},yO6j_T3Vd:{RH8gHvOZ3:16,RlZWQ17Hr:resolvedLinks2[2],style:{width:\"100%\"},ZGYS7GH9k:\"15px 30px 15px 30px\"}},children:/*#__PURE__*/_jsx(PrimaryButtons,{bLqbbWCkp:{damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"},height:\"100%\",id:\"RTJBcyjOf\",layoutId:\"RTJBcyjOf\",RH8gHvOZ3:18,RlZWQ17Hr:resolvedLinks2[0],sRsdTLA9h:false,variant:\"lfWAX8_Kt\",width:\"100%\",XcCwIVynb:\"Start Now\",ZGYS7GH9k:\"18px 30px 18px 30px\"})})})})})})})]})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-13a4sm1\",\"data-framer-name\":\"Interviews\",name:\"Interviews\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-vw2awh\",\"data-framer-name\":\"Container\",name:\"Container\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-2rqoeb\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-hkebsh\",\"data-styles-preset\":\"X1nIqX55n\",style:{\"--framer-text-color\":\"var(--token-3214e550-3b4c-4692-8da7-5980bc237872, rgb(89, 46, 0))\"},children:\"Check Out Some of Our Most Popular Expert Interviews\"})}),className:\"framer-5wg2x9\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-dn04q9\",\"data-styles-preset\":\"b9SmhEDKG\",style:{\"--framer-text-color\":\"var(--token-db80d157-0c5e-40b5-90a7-8626b24f2acf, rgb(145, 108, 58))\"},children:\"Learn from some of the best medical device and health technology leaders in the world.\"})}),className:\"framer-mzadn5\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-10vgp2i\",children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{m4eHcOoxF:{query:{from:{constraint:{left:{collection:\"aeFLj_kgA\",name:\"ziUOxx_Uw\",type:\"Identifier\"},operator:\"==\",right:{collection:\"ziUOxx_Uw\",name:\"id\",type:\"Identifier\"},type:\"BinaryOperation\"},left:{alias:\"aeFLj_kgA\",data:Experts,type:\"Collection\"},right:{alias:\"ziUOxx_Uw\",data:Interviews,type:\"Collection\"},type:\"LeftJoin\"},limit:{type:\"LiteralValue\",value:6},select:[{collection:\"aeFLj_kgA\",name:\"Ruj7DG9Ks\",type:\"Identifier\"},{collection:\"aeFLj_kgA\",name:\"mi2BcUDqZ\",type:\"Identifier\"},{collection:\"aeFLj_kgA\",name:\"EaoFlBOTY\",type:\"Identifier\"},{collection:\"aeFLj_kgA\",name:\"ETCy6YJZ4\",type:\"Identifier\"},{alias:\"ziUOxx_Uw.LDTQFuITv\",collection:\"ziUOxx_Uw\",name:\"LDTQFuITv\",type:\"Identifier\"},{collection:\"aeFLj_kgA\",name:\"XARyNcPH_\",type:\"Identifier\"},{collection:\"aeFLj_kgA\",name:\"id\",type:\"Identifier\"}],where:{collection:\"aeFLj_kgA\",name:\"OBvFEvUVw\",type:\"Identifier\"}}},yO6j_T3Vd:{query:{from:{constraint:{left:{collection:\"aeFLj_kgA\",name:\"ziUOxx_Uw\",type:\"Identifier\"},operator:\"==\",right:{collection:\"ziUOxx_Uw\",name:\"id\",type:\"Identifier\"},type:\"BinaryOperation\"},left:{alias:\"aeFLj_kgA\",data:Experts,type:\"Collection\"},right:{alias:\"ziUOxx_Uw\",data:Interviews,type:\"Collection\"},type:\"LeftJoin\"},limit:{type:\"LiteralValue\",value:6},select:[{collection:\"aeFLj_kgA\",name:\"Ruj7DG9Ks\",type:\"Identifier\"},{collection:\"aeFLj_kgA\",name:\"mi2BcUDqZ\",type:\"Identifier\"},{collection:\"aeFLj_kgA\",name:\"EaoFlBOTY\",type:\"Identifier\"},{collection:\"aeFLj_kgA\",name:\"ETCy6YJZ4\",type:\"Identifier\"},{alias:\"ziUOxx_Uw.LDTQFuITv\",collection:\"ziUOxx_Uw\",name:\"LDTQFuITv\",type:\"Identifier\"},{collection:\"aeFLj_kgA\",name:\"XARyNcPH_\",type:\"Identifier\"},{collection:\"aeFLj_kgA\",name:\"id\",type:\"Identifier\"}],where:{collection:\"aeFLj_kgA\",name:\"OBvFEvUVw\",type:\"Identifier\"}}}},children:/*#__PURE__*/_jsx(QueryData,{query:{from:{constraint:{left:{collection:\"aeFLj_kgA\",name:\"ziUOxx_Uw\",type:\"Identifier\"},operator:\"==\",right:{collection:\"ziUOxx_Uw\",name:\"id\",type:\"Identifier\"},type:\"BinaryOperation\"},left:{alias:\"aeFLj_kgA\",data:Experts,type:\"Collection\"},right:{alias:\"ziUOxx_Uw\",data:Interviews,type:\"Collection\"},type:\"LeftJoin\"},limit:{type:\"LiteralValue\",value:12},select:[{collection:\"aeFLj_kgA\",name:\"Ruj7DG9Ks\",type:\"Identifier\"},{collection:\"aeFLj_kgA\",name:\"mi2BcUDqZ\",type:\"Identifier\"},{collection:\"aeFLj_kgA\",name:\"EaoFlBOTY\",type:\"Identifier\"},{collection:\"aeFLj_kgA\",name:\"ETCy6YJZ4\",type:\"Identifier\"},{alias:\"ziUOxx_Uw.LDTQFuITv\",collection:\"ziUOxx_Uw\",name:\"LDTQFuITv\",type:\"Identifier\"},{collection:\"aeFLj_kgA\",name:\"XARyNcPH_\",type:\"Identifier\"},{collection:\"aeFLj_kgA\",name:\"id\",type:\"Identifier\"}],where:{collection:\"aeFLj_kgA\",name:\"OBvFEvUVw\",type:\"Identifier\"}},children:(collection1,paginationInfo1,loadMore1)=>/*#__PURE__*/_jsx(_Fragment,{children:collection1.map(({\"Ruj7DG9Ks\":Ruj7DG9KsaeFLj_kgA,\"mi2BcUDqZ\":mi2BcUDqZaeFLj_kgA,\"EaoFlBOTY\":EaoFlBOTYaeFLj_kgA,\"ETCy6YJZ4\":ETCy6YJZ4aeFLj_kgA,\"ziUOxx_Uw.LDTQFuITv\":ziUOxx_Uw_LDTQFuITvaeFLj_kgA,\"XARyNcPH_\":XARyNcPH_aeFLj_kgA,\"id\":idaeFLj_kgA},i)=>{mi2BcUDqZaeFLj_kgA??=\"\";EaoFlBOTYaeFLj_kgA??=\"\";ETCy6YJZ4aeFLj_kgA??=\"\";ziUOxx_Uw_LDTQFuITvaeFLj_kgA??=\"\";XARyNcPH_aeFLj_kgA??=\"\";return /*#__PURE__*/_jsx(LayoutGroup,{id:`aeFLj_kgA-${idaeFLj_kgA}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{XARyNcPH_:XARyNcPH_aeFLj_kgA},children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1ul801f\",whileHover:animation9,children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-579jcd\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-il59mh\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1dsk872\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:88,intrinsicWidth:88,pixelHeight:156,pixelWidth:156,sizes:\"50px\",...toResponsiveImage(Ruj7DG9KsaeFLj_kgA)},className:\"framer-wl0vdt\"}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1v44ccu\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-1y7zo0d\",\"data-styles-preset\":\"R4a0NMZ7P\",children:\"Dr. Scott Wolf\"})}),className:\"framer-287bsl\",\"data-framer-name\":\"Name\",fonts:[\"Inter\"],name:\"Name\",text:mi2BcUDqZaeFLj_kgA,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1ltq8o9\",\"data-styles-preset\":\"FXnTL8Nf9\",children:\"Founder, Aerin Medical\"})}),className:\"framer-dd01jz\",\"data-framer-name\":\"Title\",fonts:[\"Inter\"],name:\"Title\",text:EaoFlBOTYaeFLj_kgA,verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsx(RichTextTruncatedText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1ltq8o9\",\"data-styles-preset\":\"FXnTL8Nf9\",children:\"Scott highlights the benefits of cash-pay over insurance reimbursement and offers tips for turning ideas into prototypes.\"})}),className:\"framer-1wgabk5\",\"data-framer-name\":\"Description\",fonts:[\"Inter\"],name:\"Description\",text:ETCy6YJZ4aeFLj_kgA,verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1o6bmw7\",children:[/*#__PURE__*/_jsx(MotionDivShowForSinglePlan_rmkyMD9g,{className:\"framer-643is4\",children:/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{pathVariables:{LDTQFuITv:ziUOxx_Uw_LDTQFuITvaeFLj_kgA},webPageId:\"ZZ4QyFr2a\"},implicitPathVariables:undefined},{href:{pathVariables:{LDTQFuITv:ziUOxx_Uw_LDTQFuITvaeFLj_kgA},webPageId:\"ZZ4QyFr2a\"},implicitPathVariables:undefined},{href:{pathVariables:{LDTQFuITv:ziUOxx_Uw_LDTQFuITvaeFLj_kgA},webPageId:\"ZZ4QyFr2a\"},implicitPathVariables:undefined}],children:resolvedLinks3=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{m4eHcOoxF:{width:undefined},yO6j_T3Vd:{width:\"calc(max(max(min(max(100vw, 1px), 1440px), 330px) - 60px, 330px) - 60px)\"}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:55,width:\"calc(max((min(max(100vw, 1px), 1440px) - 80px) / 3, 450px) - 80px)\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-1xus4cf-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{m4eHcOoxF:{RlZWQ17Hr:resolvedLinks3[1]},yO6j_T3Vd:{RH8gHvOZ3:16,RlZWQ17Hr:resolvedLinks3[2],ZGYS7GH9k:\"15px 30px 15px 30px\"}},children:/*#__PURE__*/_jsx(PrimaryButtons,{bLqbbWCkp:{damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"},height:\"100%\",id:\"m2NH4UBqr\",layoutId:\"m2NH4UBqr\",RH8gHvOZ3:17,RlZWQ17Hr:resolvedLinks3[0],sRsdTLA9h:false,style:{width:\"100%\"},variant:\"Rc_4bewUX\",width:\"100%\",XcCwIVynb:\"Read Interview\",ZGYS7GH9k:\"18px 30px 18px 30px\"})})})})})})}),/*#__PURE__*/_jsx(MotionDivShowForAnonymous,{className:\"framer-1jifcr9\",children:/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{pathVariables:{LDTQFuITv:ziUOxx_Uw_LDTQFuITvaeFLj_kgA},webPageId:\"ZZ4QyFr2a\"},implicitPathVariables:undefined},{href:{pathVariables:{LDTQFuITv:ziUOxx_Uw_LDTQFuITvaeFLj_kgA},webPageId:\"ZZ4QyFr2a\"},implicitPathVariables:undefined},{href:{pathVariables:{LDTQFuITv:ziUOxx_Uw_LDTQFuITvaeFLj_kgA},webPageId:\"ZZ4QyFr2a\"},implicitPathVariables:undefined}],children:resolvedLinks4=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{m4eHcOoxF:{width:undefined},yO6j_T3Vd:{width:\"calc(max(max(min(max(100vw, 1px), 1440px), 330px) - 60px, 330px) - 60px)\"}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:55,width:\"calc(max((min(max(100vw, 1px), 1440px) - 80px) / 3, 450px) - 80px)\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-m7795b-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{m4eHcOoxF:{RlZWQ17Hr:resolvedLinks4[1]},yO6j_T3Vd:{RH8gHvOZ3:16,RlZWQ17Hr:resolvedLinks4[2],ZGYS7GH9k:\"15px 30px 15px 30px\"}},children:/*#__PURE__*/_jsx(PrimaryButtons,{bLqbbWCkp:{damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"},height:\"100%\",id:\"Spm5mvJvW\",layoutId:\"Spm5mvJvW\",RH8gHvOZ3:17,RlZWQ17Hr:resolvedLinks4[0],sRsdTLA9h:false,style:{width:\"100%\"},variant:\"lfWAX8_Kt\",width:\"100%\",XcCwIVynb:\"Read Sample\",ZGYS7GH9k:\"18px 30px 18px 30px\"})})})})})})})]})]})})})},idaeFLj_kgA);})})})})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1ol8syb\",children:/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"kNeQDgO9Q\"},implicitPathVariables:undefined},{href:{webPageId:\"kNeQDgO9Q\"},implicitPathVariables:undefined},{href:{webPageId:\"kNeQDgO9Q\"},implicitPathVariables:undefined}],children:resolvedLinks5=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{yO6j_T3Vd:{width:\"calc(max(min(max(100vw, 1px), 1440px), 330px) - 120px)\"}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:55,children:/*#__PURE__*/_jsx(Container,{className:\"framer-zq5pvb-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{m4eHcOoxF:{RlZWQ17Hr:resolvedLinks5[1]},yO6j_T3Vd:{RH8gHvOZ3:16,RlZWQ17Hr:resolvedLinks5[2],style:{width:\"100%\"},ZGYS7GH9k:\"15px 30px 15px 30px\"}},children:/*#__PURE__*/_jsx(PrimaryButtons,{bLqbbWCkp:{damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"},height:\"100%\",id:\"Jt6DSNSZW\",layoutId:\"Jt6DSNSZW\",RH8gHvOZ3:18,RlZWQ17Hr:resolvedLinks5[0],sRsdTLA9h:false,variant:\"Rc_4bewUX\",width:\"100%\",XcCwIVynb:\"See All\",ZGYS7GH9k:\"18px 30px 18px 30px\"})})})})})})})]})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-13bh4y1\",\"data-border\":true,\"data-framer-name\":\"Premium Callout\",name:\"Premium Callout\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-usdghf\",\"data-framer-name\":\"Container\",name:\"Container\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-2uqjs8\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-10xy76q\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-291yz7\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-10kqoc6\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-hkebsh\",\"data-styles-preset\":\"X1nIqX55n\",style:{\"--framer-text-color\":\"var(--token-3214e550-3b4c-4692-8da7-5980bc237872, rgb(89, 46, 0))\"},children:\"Medsider Interviews\"})}),className:\"framer-lqpeo6\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1ltq8o9\",\"data-styles-preset\":\"FXnTL8Nf9\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-db80d157-0c5e-40b5-90a7-8626b24f2acf, rgb(145, 108, 58))\"},children:\"Over 200 Medsider interviews with the brightest founders and CEOs in medtech and healthtech.\"})}),className:\"framer-1c8nn4l\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"kNeQDgO9Q\"},implicitPathVariables:undefined},{href:{webPageId:\"kNeQDgO9Q\"},implicitPathVariables:undefined},{href:{webPageId:\"kNeQDgO9Q\"},implicitPathVariables:undefined}],children:resolvedLinks6=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{yO6j_T3Vd:{width:\"calc(max(min(max(100vw, 1px), 1440px) - 60px, 330px) - 60px)\"}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:55,children:/*#__PURE__*/_jsx(Container,{className:\"framer-x3p7is-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{m4eHcOoxF:{RlZWQ17Hr:resolvedLinks6[1]},yO6j_T3Vd:{RH8gHvOZ3:16,RlZWQ17Hr:resolvedLinks6[2],style:{width:\"100%\"},ZGYS7GH9k:\"15px 30px 15px 30px\"}},children:/*#__PURE__*/_jsx(PrimaryButtons,{bLqbbWCkp:{damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"},height:\"100%\",id:\"Qx6ZJrqKv\",layoutId:\"Qx6ZJrqKv\",RH8gHvOZ3:18,RlZWQ17Hr:resolvedLinks6[0],sRsdTLA9h:false,variant:\"Rc_4bewUX\",width:\"100%\",XcCwIVynb:\"Check Out Interviews\",ZGYS7GH9k:\"18px 30px 18px 30px\"})})})})})})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1gkmxzu\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-1rdup7\",\"data-framer-name\":\"Latest Premium Interviews CMS Collection\",name:\"Latest Premium Interviews CMS Collection\",children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(QueryData,{query:{from:{alias:\"iQZNWBU4E\",data:Interviews,type:\"Collection\"},limit:{type:\"LiteralValue\",value:1},select:[{collection:\"iQZNWBU4E\",name:\"i_fSc7kv5\",type:\"Identifier\"},{collection:\"iQZNWBU4E\",name:\"ZMrV3O2Yq\",type:\"Identifier\"},{collection:\"iQZNWBU4E\",name:\"AuMLoP5Lo\",type:\"Identifier\"},{collection:\"iQZNWBU4E\",name:\"vxuYMamB6\",type:\"Identifier\"},{collection:\"iQZNWBU4E\",name:\"id\",type:\"Identifier\"},{collection:\"iQZNWBU4E\",name:\"LDTQFuITv\",type:\"Identifier\"}],where:{left:{collection:\"iQZNWBU4E\",name:\"ZMrV3O2Yq\",type:\"Identifier\"},operator:\"==\",right:{type:\"LiteralValue\",value:\"wbjwaYfu9\"},type:\"BinaryOperation\"}},children:(collection2,paginationInfo2,loadMore2)=>/*#__PURE__*/_jsx(_Fragment,{children:collection2.map(({\"i_fSc7kv5\":i_fSc7kv5iQZNWBU4E,\"ZMrV3O2Yq\":ZMrV3O2YqiQZNWBU4E,\"AuMLoP5Lo\":AuMLoP5LoiQZNWBU4E,\"vxuYMamB6\":vxuYMamB6iQZNWBU4E,\"id\":idiQZNWBU4E,\"LDTQFuITv\":LDTQFuITviQZNWBU4E},i)=>{i_fSc7kv5iQZNWBU4E??=\"\";AuMLoP5LoiQZNWBU4E??=\"\";vxuYMamB6iQZNWBU4E??=\"\";LDTQFuITviQZNWBU4E??=\"\";const visible2=equals(ZMrV3O2YqiQZNWBU4E,\"wbjwaYfu9\");const visible3=equals(ZMrV3O2YqiQZNWBU4E,\"h1IbZ7Qk3\");return /*#__PURE__*/_jsx(LayoutGroup,{id:`iQZNWBU4E-${idiQZNWBU4E}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{LDTQFuITv:LDTQFuITviQZNWBU4E},children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1p553em\",whileHover:animation9,children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"kNeQDgO9Q\"},nodeId:\"Up51ruQuC\",openInNewTab:false,children:/*#__PURE__*/_jsxs(\"a\",{className:\"framer-cudaq5 framer-lux5qc\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-q7297z\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-1y7zo0d\",\"data-styles-preset\":\"R4a0NMZ7P\",children:\"Identifying and Mitigating Key Risk Factors in Medtech Startups\"})}),className:\"framer-6t1f3i\",\"data-framer-name\":\"Name\",fonts:[\"Inter\"],name:\"Name\",text:i_fSc7kv5iQZNWBU4E,verticalAlignment:\"top\",withExternalLayout:true}),visible2&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{className:\"framer-styles-preset-14kt8ap\",\"data-styles-preset\":\"UnfHP7tms\",style:{\"--framer-text-color\":\"var(--token-f0ca3a3d-dca9-498e-b412-906fca4c1034, rgb(243, 138, 3))\"},children:\"Interview with Reimagine Care CEO Dan Nardi\"})}),className:\"framer-1op5ix6\",\"data-framer-name\":\"Main Header\",fonts:[\"Inter\"],name:\"Main Header\",text:AuMLoP5LoiQZNWBU4E,verticalAlignment:\"top\",withExternalLayout:true}),visible3&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{className:\"framer-styles-preset-14kt8ap\",\"data-styles-preset\":\"UnfHP7tms\",style:{\"--framer-text-color\":\"var(--token-1ee55703-829b-418d-bd58-dcf1f8912244, rgb(0, 176, 80))\"},children:\"Interview with Adona Medical CEO Brian Fahey\"})}),className:\"framer-uq8l7s\",\"data-framer-name\":\"Main Header\",fonts:[\"Inter\"],name:\"Main Header\",text:AuMLoP5LoiQZNWBU4E,verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(RichTextTruncatedText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1ltq8o9\",\"data-styles-preset\":\"FXnTL8Nf9\",children:\"Dan Nardi is known for his operational expertise, understanding of value-based care, and success in building high-performing teams. Today, as the CEO of Reimagine Care, he\u2019s working to extend cancer care beyond the clinic, giving patients a break from the arduous treatment journey, and alleviating the strain on caregivers, clinical teams, and the broader healthcare system. In this interview, Dan shares how he forms strategic partnerships that prioritize long-term value over short-term gains, how to leverage early adopters, and how he\u2019s positioned his company in the emerging fee-for-value healthcare model.\"})}),className:\"framer-qgbojr\",\"data-framer-name\":\"Lines: 7\",fonts:[\"Inter\"],name:\"Lines: 7\",text:vxuYMamB6iQZNWBU4E,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{m4eHcOoxF:{width:\"calc(max(max(max(min(max(100vw, 1px), 1440px) - 140px, 330px) - 80px, 1px), 200px) - 80px)\"},yO6j_T3Vd:{width:\"calc(max(max(max(min(max(100vw, 1px), 1440px) - 60px, 330px) - 60px, 1px), 200px) - 60px)\"}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:55,width:\"calc(max(max(max((min(max(100vw, 1px), 1440px) - 80px) / 3, 330px) - 80px, 1px), 200px) - 80px)\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-1wh1rvc-container\",children:/*#__PURE__*/_jsx(FakeButtons,{bLqbbWCkp:{damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"},height:\"100%\",id:\"uZFbHd0qz\",layoutId:\"uZFbHd0qz\",RH8gHvOZ3:18,style:{width:\"100%\"},variant:\"f65RRLzof\",width:\"100%\",XcCwIVynb:\"Read More\",ZGYS7GH9k:\"18px 30px 18px 30px\"})})})})]})})})})},idiQZNWBU4E);})})})})})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-10u6q7j\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1wm3heu\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-d3832x\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-hkebsh\",\"data-styles-preset\":\"X1nIqX55n\",style:{\"--framer-text-color\":\"var(--token-3214e550-3b4c-4692-8da7-5980bc237872, rgb(89, 46, 0))\"},children:\"Medsider Mentors\"})}),className:\"framer-19pxetx\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1ltq8o9\",\"data-styles-preset\":\"FXnTL8Nf9\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-db80d157-0c5e-40b5-90a7-8626b24f2acf, rgb(145, 108, 58))\"},children:\"Digital book volumes summarizing best practices from top medtech and healthtech entrepreneurs.\"})}),className:\"framer-ytqr60\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"lAUSoC81t\"},implicitPathVariables:undefined},{href:{webPageId:\"lAUSoC81t\"},implicitPathVariables:undefined},{href:{webPageId:\"lAUSoC81t\"},implicitPathVariables:undefined}],children:resolvedLinks7=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{yO6j_T3Vd:{width:\"calc(max(min(max(100vw, 1px), 1440px) - 60px, 330px) - 60px)\"}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:55,children:/*#__PURE__*/_jsx(Container,{className:\"framer-un4kp8-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{m4eHcOoxF:{RlZWQ17Hr:resolvedLinks7[1]},yO6j_T3Vd:{RH8gHvOZ3:16,RlZWQ17Hr:resolvedLinks7[2],style:{width:\"100%\"},ZGYS7GH9k:\"15px 30px 15px 30px\"}},children:/*#__PURE__*/_jsx(PrimaryButtons,{bLqbbWCkp:{damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"},height:\"100%\",id:\"yzGeIzbJb\",layoutId:\"yzGeIzbJb\",RH8gHvOZ3:18,RlZWQ17Hr:resolvedLinks7[0],sRsdTLA9h:false,variant:\"Rc_4bewUX\",width:\"100%\",XcCwIVynb:\"Check Out Mentors\",ZGYS7GH9k:\"18px 30px 18px 30px\"})})})})})})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-92j7fb\",children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"lAUSoC81t\"},nodeId:\"gQkkXeG5_\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{m4eHcOoxF:{background:{alt:\"\",fit:\"fit\",pixelHeight:1800,pixelWidth:1200,positionX:\"center\",positionY:\"center\",sizes:\"max(max(min(max(100vw, 1px), 1440px) - 140px, 330px) - 80px, 1px)\",src:\"https://framerusercontent.com/images/fvTDLD9ZghQWVVpPJf37VD11RWA.png\",srcSet:\"https://framerusercontent.com/images/fvTDLD9ZghQWVVpPJf37VD11RWA.png?scale-down-to=1024 682w,https://framerusercontent.com/images/fvTDLD9ZghQWVVpPJf37VD11RWA.png 1200w\"}},yO6j_T3Vd:{background:{alt:\"\",fit:\"fit\",pixelHeight:1800,pixelWidth:1200,positionX:\"center\",positionY:\"center\",sizes:\"max(max(min(max(100vw, 1px), 1440px) - 60px, 330px) - 60px, 1px)\",src:\"https://framerusercontent.com/images/fvTDLD9ZghQWVVpPJf37VD11RWA.png\",srcSet:\"https://framerusercontent.com/images/fvTDLD9ZghQWVVpPJf37VD11RWA.png?scale-down-to=1024 682w,https://framerusercontent.com/images/fvTDLD9ZghQWVVpPJf37VD11RWA.png 1200w\"}}},children:/*#__PURE__*/_jsx(Image,{as:\"a\",background:{alt:\"\",fit:\"fit\",pixelHeight:1800,pixelWidth:1200,positionX:\"center\",positionY:\"center\",sizes:\"max(max((min(max(100vw, 1px), 1440px) - 80px) / 3, 330px) - 80px, 1px)\",src:\"https://framerusercontent.com/images/fvTDLD9ZghQWVVpPJf37VD11RWA.png\",srcSet:\"https://framerusercontent.com/images/fvTDLD9ZghQWVVpPJf37VD11RWA.png?scale-down-to=1024 682w,https://framerusercontent.com/images/fvTDLD9ZghQWVVpPJf37VD11RWA.png 1200w\"},className:\"framer-1ocln16 framer-lux5qc\",\"data-framer-name\":\"Assets/Dashboard\",name:\"Assets/Dashboard\",whileHover:animation10})})})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1vfs045\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1iszlmy\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1mgbjrb\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-hkebsh\",\"data-styles-preset\":\"X1nIqX55n\",style:{\"--framer-text-color\":\"var(--token-3214e550-3b4c-4692-8da7-5980bc237872, rgb(89, 46, 0))\"},children:\"Medsider Playbooks\"})}),className:\"framer-qvn8qs\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1ltq8o9\",\"data-styles-preset\":\"FXnTL8Nf9\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-db80d157-0c5e-40b5-90a7-8626b24f2acf, rgb(145, 108, 58))\"},children:\"Collections of insights from past Medsider guests on fundraising, reimbursement, and more.\"})}),className:\"framer-nd6nkp\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"XhISVQf0w\"},implicitPathVariables:undefined},{href:{webPageId:\"XhISVQf0w\"},implicitPathVariables:undefined},{href:{webPageId:\"XhISVQf0w\"},implicitPathVariables:undefined}],children:resolvedLinks8=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{yO6j_T3Vd:{width:\"calc(max(min(max(100vw, 1px), 1440px) - 60px, 330px) - 60px)\"}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:55,children:/*#__PURE__*/_jsx(Container,{className:\"framer-107e6p3-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{m4eHcOoxF:{RlZWQ17Hr:resolvedLinks8[1]},yO6j_T3Vd:{RH8gHvOZ3:16,RlZWQ17Hr:resolvedLinks8[2],style:{width:\"100%\"},ZGYS7GH9k:\"15px 30px 15px 30px\"}},children:/*#__PURE__*/_jsx(PrimaryButtons,{bLqbbWCkp:{damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"},height:\"100%\",id:\"LX5n3hVPA\",layoutId:\"LX5n3hVPA\",RH8gHvOZ3:18,RlZWQ17Hr:resolvedLinks8[0],sRsdTLA9h:false,variant:\"Rc_4bewUX\",width:\"100%\",XcCwIVynb:\"Check Out Playbooks\",ZGYS7GH9k:\"18px 30px 18px 30px\"})})})})})})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1sp40a6\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-1nxoq4s\",\"data-framer-name\":\"Playbooks CMS Collection\",name:\"Playbooks CMS Collection\",children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(QueryData,{query:{from:{alias:\"U0zsqAZ7F\",data:Playbooks,type:\"Collection\"},limit:{type:\"LiteralValue\",value:1},select:[{collection:\"U0zsqAZ7F\",name:\"HTZbF5r1f\",type:\"Identifier\"},{collection:\"U0zsqAZ7F\",name:\"fBSTm5H2R\",type:\"Identifier\"},{collection:\"U0zsqAZ7F\",name:\"id\",type:\"Identifier\"},{collection:\"U0zsqAZ7F\",name:\"F6DZBfVhw\",type:\"Identifier\"}]},children:(collection3,paginationInfo3,loadMore3)=>/*#__PURE__*/_jsx(_Fragment,{children:collection3.map(({\"HTZbF5r1f\":HTZbF5r1fU0zsqAZ7F,\"fBSTm5H2R\":fBSTm5H2RU0zsqAZ7F,\"id\":idU0zsqAZ7F,\"F6DZBfVhw\":F6DZBfVhwU0zsqAZ7F},i)=>{HTZbF5r1fU0zsqAZ7F??=\"\";fBSTm5H2RU0zsqAZ7F??=\"\";F6DZBfVhwU0zsqAZ7F??=\"\";return /*#__PURE__*/_jsx(LayoutGroup,{id:`U0zsqAZ7F-${idU0zsqAZ7F}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{F6DZBfVhw:F6DZBfVhwU0zsqAZ7F},children:/*#__PURE__*/_jsx(motion.div,{\"aria-label\":\"cmsitem\",className:\"framer-g6697a\",whileHover:animation9,children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"XhISVQf0w\"},nodeId:\"vLu8y56Ve\",openInNewTab:false,children:/*#__PURE__*/_jsxs(\"a\",{className:\"framer-btc3y2 framer-lux5qc\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1fg8iup\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-1unri33\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1rsbgnn\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{className:\"framer-styles-preset-14kt8ap\",\"data-styles-preset\":\"UnfHP7tms\",style:{\"--framer-text-color\":\"var(--token-f0ca3a3d-dca9-498e-b412-906fca4c1034, rgb(243, 138, 3))\"},children:\"Playbook\"})}),className:\"framer-1mh6cxa\",\"data-framer-name\":\"Sub Header\",fonts:[\"Inter\"],name:\"Sub Header\",verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-1y7zo0d\",\"data-styles-preset\":\"R4a0NMZ7P\",children:\"A Guide to Widespread Adoption in Medtech\"})}),className:\"framer-g0x966\",\"data-framer-name\":\"Name\",fonts:[\"Inter\"],name:\"Name\",text:HTZbF5r1fU0zsqAZ7F,verticalAlignment:\"top\",withExternalLayout:true})]})})}),/*#__PURE__*/_jsx(RichTextTruncatedText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1ltq8o9\",\"data-styles-preset\":\"FXnTL8Nf9\",children:\"In medtech, developing novel, impactful technology is often just the starting line. The real race begins when you try to integrate your solution into the often-resistant healthcare system \u2013 a hurdle that has tripped up countless promising companies. Here are the key strategies and lessons from five veterans in the medtech space on how to overcome this hurdle.\"})}),className:\"framer-ojfgm4\",\"data-framer-name\":\"Lines: 6\",fonts:[\"Inter\"],name:\"Lines: 6\",text:fBSTm5H2RU0zsqAZ7F,verticalAlignment:\"top\",withExternalLayout:true})]})})})})},idU0zsqAZ7F);})})})})})})]})]})})})]}),/*#__PURE__*/_jsx(Overlay,{blockDocumentScrolling:true,children:overlay3=>/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:235,width:\"100vw\",children:/*#__PURE__*/_jsxs(Container,{className:\"framer-fahyhv-container\",id:\"fahyhv\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{m4eHcOoxF:{variant:\"zF8jAprTn\"},yO6j_T3Vd:{variant:\"CCm_b_1mw\"}},children:/*#__PURE__*/_jsx(Footer,{height:\"100%\",id:\"lMn7LbAVT\",layoutId:\"lMn7LbAVT\",style:{width:\"100%\"},variant:\"HpqS1oQB6\",WC_uaukVG:WC_uaukVGwelu7j({overlay:overlay3}),width:\"100%\"})}),/*#__PURE__*/_jsx(AnimatePresence,{children:overlay3.visible&&/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/ReactDOM.createPortal(/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(motion.div,{animate:{opacity:1,transition:{delay:0,duration:0,ease:[.5,0,.88,.77],type:\"tween\"}},className:\"framer-14qb4xv\",\"data-framer-portal-id\":\"fahyhv\",exit:{opacity:0,transition:{delay:0,duration:0,ease:[.12,.23,.5,1],type:\"tween\"}},initial:{opacity:0},onTap:()=>overlay3.hide()},\"NGegWx_Dl\"),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:1e3,width:\"100vw\",y:0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-181gt0n-container\",\"data-framer-portal-id\":\"fahyhv\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{m4eHcOoxF:{Z896BCKPL:\"0px 70px 0px 70px\"},yO6j_T3Vd:{L5XrPsXW8:\"15px 20px 15px 20px\",Z896BCKPL:\"80px 30px 80px 30px\"}},children:/*#__PURE__*/_jsx(Overlays,{height:\"100%\",id:\"P3M173WOT\",L5XrPsXW8:\"20px 30px 20px 30px\",layoutId:\"P3M173WOT\",style:{height:\"100%\",width:\"100%\"},tCWBEtx_f:18,utsSte6Mc:utsSte6Mc1wvko5h({overlay:overlay3}),variant:\"wPuOdwTK7\",width:\"100%\",X2EFxNikU:\"18px 30px 18px 30px\",Z896BCKPL:\"0px 0px 0px 0px\"})})})})]}),document.querySelector(\"#overlay\"))})})]})})})})]}),/*#__PURE__*/_jsx(\"div\",{className:cx(serializationHash,...sharedStyleClassNames),id:\"overlay\"})]})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",`.${metadata.bodyClassName}-framer-jjb1G { background: white; }`,\".framer-jjb1G.framer-lux5qc, .framer-jjb1G .framer-lux5qc { display: block; }\",\".framer-jjb1G.framer-72rtr7 { align-content: center; align-items: center; background-color: #ffffff; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 1600px; }\",\".framer-jjb1G .framer-1jtrdfr-container { flex: none; height: auto; left: 0px; position: fixed; top: 0px; width: 100%; z-index: 9; }\",\".framer-jjb1G .framer-2fmyny { align-content: center; align-items: center; background: linear-gradient(270deg, #090a09 0%, #0f221c 100%); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: 100vh; justify-content: center; min-height: 900px; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-jjb1G .framer-1lpvtd8 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; z-index: 1; }\",\".framer-jjb1G .framer-100dfyq { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-jjb1G .framer-zeyf1v { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-jjb1G .framer-qrer9g { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 100px; height: min-content; justify-content: center; overflow: hidden; padding: 120px 0px 60px 0px; position: relative; width: 100%; }\",\".framer-jjb1G .framer-1qsxg54 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 15px; height: min-content; justify-content: center; max-width: 880px; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-jjb1G .framer-1mwst6b, .framer-jjb1G .framer-12uc1yv, .framer-jjb1G .framer-b4a103, .framer-jjb1G .framer-il59mh, .framer-jjb1G .framer-1unri33 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-jjb1G .framer-1a7snmh { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; --framer-text-wrap-override: balance; flex: none; height: auto; position: relative; width: 100%; }\",\".framer-jjb1G .framer-171wl6g { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-jjb1G .framer-qkov8b { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; --framer-text-wrap-override: balance; flex: none; height: auto; position: relative; width: 75%; }\",\".framer-jjb1G .framer-mu5vl1-container { flex: none; height: auto; max-width: 650px; position: relative; width: 70%; }\",\".framer-jjb1G .framer-nk4v4h { inset: 0px; position: fixed; user-select: none; z-index: -1; }\",\".framer-jjb1G .framer-1nquml1 { -webkit-user-select: none; align-content: flex-end; align-items: flex-end; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: 100vh; justify-content: center; left: calc(50.00000000000002% - 100% / 2); overflow: hidden; padding: 0px 0px 50px 0px; pointer-events: none; position: fixed; top: calc(50.00000000000002% - 100vh / 2); user-select: none; width: 100%; z-index: 10; }\",\".framer-jjb1G .framer-1uririx-container { flex: none; height: auto; position: relative; width: auto; z-index: 11; }\",\".framer-jjb1G .framer-1e3yq38 { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; --framer-text-wrap-override: balance; flex: none; height: auto; position: relative; width: auto; }\",\".framer-jjb1G .framer-gkvcj8-container { flex: none; height: 102px; position: relative; width: 100%; }\",\".framer-jjb1G .framer-lvq19s, .framer-jjb1G .framer-11hzjrk, .framer-jjb1G .framer-eiuo66, .framer-jjb1G .framer-tvwwrh, .framer-jjb1G .framer-fi0v6a, .framer-jjb1G .framer-1ujwsxx, .framer-jjb1G .framer-1w9cch1, .framer-jjb1G .framer-xggemj { --border-bottom-width: 1px; --border-color: rgba(22, 77, 67, 0.85); --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; align-content: center; align-items: center; background-color: rgba(22, 77, 67, 0.32); border-bottom-left-radius: 10px; border-bottom-right-radius: 10px; border-top-left-radius: 10px; border-top-right-radius: 10px; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; overflow: visible; padding: 25px 30px 25px 30px; position: relative; width: min-content; }\",\".framer-jjb1G .framer-1d7c09u, .framer-jjb1G .framer-1h0wnm0, .framer-jjb1G .framer-1pfrjlz, .framer-jjb1G .framer-c0jwdu, .framer-jjb1G .framer-1qzcdj { border-bottom-left-radius: 100px; border-bottom-right-radius: 100px; border-top-left-radius: 100px; border-top-right-radius: 100px; flex: none; height: 50px; position: relative; width: 50px; }\",\".framer-jjb1G .framer-1its1rt, .framer-jjb1G .framer-19f2667, .framer-jjb1G .framer-679it7, .framer-jjb1G .framer-cqjaiz, .framer-jjb1G .framer-1jbim9t, .framer-jjb1G .framer-1qi0o9i, .framer-jjb1G .framer-bwahvo, .framer-jjb1G .framer-13muyqq { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 3px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-jjb1G .framer-23pmxv, .framer-jjb1G .framer-1o8sme6, .framer-jjb1G .framer-1j1pnlb, .framer-jjb1G .framer-1hhplvc, .framer-jjb1G .framer-p6djtq, .framer-jjb1G .framer-1k6cu2s, .framer-jjb1G .framer-1w528id, .framer-jjb1G .framer-gekp69, .framer-jjb1G .framer-1hlib07, .framer-jjb1G .framer-8w9eal, .framer-jjb1G .framer-adcxzg, .framer-jjb1G .framer-o59w0e, .framer-jjb1G .framer-13ep2ye, .framer-jjb1G .framer-1tz4qi5, .framer-jjb1G .framer-1w8q6d2, .framer-jjb1G .framer-1qtmq2y, .framer-jjb1G .framer-7poaid, .framer-jjb1G .framer-1b9yxu0, .framer-jjb1G .framer-3frlfs, .framer-jjb1G .framer-1giamrc, .framer-jjb1G .framer-uc19pt, .framer-jjb1G .framer-yp7t30, .framer-jjb1G .framer-u7d0ig, .framer-jjb1G .framer-1mmxxgl, .framer-jjb1G .framer-1q2lc1d, .framer-jjb1G .framer-y7be90, .framer-jjb1G .framer-vyrfb8, .framer-jjb1G .framer-8ow2nl, .framer-jjb1G .framer-gy3pxv, .framer-jjb1G .framer-1tdiizm, .framer-jjb1G .framer-1kvrzey, .framer-jjb1G .framer-1av5g8k, .framer-jjb1G .framer-4974m4, .framer-jjb1G .framer-1fri878, .framer-jjb1G .framer-uwfjtg, .framer-jjb1G .framer-ln774c, .framer-jjb1G .framer-1w9nlwh, .framer-jjb1G .framer-10pcd51, .framer-jjb1G .framer-1hpi6g7, .framer-jjb1G .framer-7nbr9b, .framer-jjb1G .framer-1mx4w0x, .framer-jjb1G .framer-c6qojb, .framer-jjb1G .framer-gqb2p2, .framer-jjb1G .framer-9wogp1, .framer-jjb1G .framer-1ykct3c, .framer-jjb1G .framer-e4muwo { -webkit-user-select: none; flex: none; height: auto; pointer-events: auto; position: relative; user-select: none; white-space: pre; width: auto; }\",\".framer-jjb1G .framer-k8ptrq, .framer-jjb1G .framer-d5xhbi, .framer-jjb1G .framer-k7in2i { aspect-ratio: 1 / 1; border-bottom-left-radius: 100px; border-bottom-right-radius: 100px; border-top-left-radius: 100px; border-top-right-radius: 100px; flex: none; height: var(--framer-aspect-ratio-supported, 50px); position: relative; width: 50px; }\",\".framer-jjb1G .framer-10bl17s { -webkit-filter: blur(0px); align-content: center; align-items: center; background: linear-gradient(270deg, #090a09 0%, #0f221c 100%); display: flex; filter: blur(0px); flex: none; flex-direction: row; flex-wrap: nowrap; height: 100%; justify-content: space-between; left: calc(50.00000000000002% - 100% / 2); overflow: hidden; padding: 0px; position: absolute; top: calc(50.00000000000002% - 100% / 2); width: 100%; z-index: 0; }\",\".framer-jjb1G .framer-1il049y { -webkit-filter: brightness(1.1) hue-rotate(19deg) saturate(0); align-content: center; align-items: center; display: flex; filter: brightness(1.1) hue-rotate(19deg) saturate(0); flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 100%; justify-content: center; mix-blend-mode: color-dodge; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-jjb1G .framer-2rudou-container { flex: none; height: 100%; position: relative; width: 100%; }\",\".framer-jjb1G .framer-1s8v3a8-container { aspect-ratio: 1.4444444444444444 / 1; bottom: 60px; flex: none; height: var(--framer-aspect-ratio-supported, 23px); left: 50%; opacity: 0.5; position: absolute; transform: translateX(-50%); width: 33px; z-index: 1; }\",\".framer-jjb1G .framer-8fugc { 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: 100%; }\",\".framer-jjb1G .framer-1r5imfj-container { flex: none; height: auto; position: relative; width: 100%; z-index: 1; }\",\".framer-jjb1G .framer-1i3e3t3, .framer-jjb1G .framer-17q2sk2, .framer-jjb1G .framer-14qb4xv { inset: 0px; position: fixed; user-select: none; z-index: 10; }\",\".framer-jjb1G .framer-1n2v3ze { align-content: flex-start; align-items: flex-start; bottom: 0px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; justify-content: center; left: 0px; overflow: auto; padding: 0px; position: fixed; right: 0px; top: 0px; z-index: 10; }\",\".framer-jjb1G .framer-w1ehg1-container, .framer-jjb1G .framer-wwttfc-container { flex: 1 0 0px; height: 100%; min-height: 860px; position: relative; width: 1px; z-index: 10; }\",\".framer-jjb1G .framer-1lx8rgh { align-content: flex-start; align-items: flex-start; bottom: 0px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; justify-content: center; left: 0px; overflow: auto; padding: 0px; position: fixed; right: 0px; top: 0px; z-index: 10; }\",\".framer-jjb1G .framer-10w820q { align-content: center; align-items: center; background-color: #ecf1ee; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; z-index: 1; }\",\".framer-jjb1G .framer-1wbgiob { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 70px; height: min-content; justify-content: center; max-width: 1440px; overflow: hidden; padding: 120px 0px 120px 0px; position: relative; width: 1px; }\",\".framer-jjb1G .framer-12hw1i0, .framer-jjb1G .framer-rn1edz, .framer-jjb1G .framer-2rqoeb, .framer-jjb1G .framer-1o6bmw7, .framer-jjb1G .framer-643is4, .framer-jjb1G .framer-1jifcr9, .framer-jjb1G .framer-1ol8syb, .framer-jjb1G .framer-10kqoc6, .framer-jjb1G .framer-d3832x, .framer-jjb1G .framer-1mgbjrb, .framer-jjb1G .framer-1rsbgnn { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-jjb1G .framer-nue5xj, .framer-jjb1G .framer-19pnv6b, .framer-jjb1G .framer-lqpeo6, .framer-jjb1G .framer-1c8nn4l, .framer-jjb1G .framer-19pxetx, .framer-jjb1G .framer-ytqr60, .framer-jjb1G .framer-qvn8qs, .framer-jjb1G .framer-nd6nkp, .framer-jjb1G .framer-g0x966 { --framer-text-wrap-override: balance; -webkit-user-select: none; flex: none; height: auto; pointer-events: auto; position: relative; user-select: none; width: 100%; }\",\".framer-jjb1G .framer-9wdtca, .framer-jjb1G .framer-wdh8yo, .framer-jjb1G .framer-5wg2x9, .framer-jjb1G .framer-mzadn5 { --framer-text-wrap-override: balance; flex: none; height: auto; position: relative; width: 100%; }\",\".framer-jjb1G .framer-1ppw1ea { display: grid; flex: none; gap: 30px; grid-auto-rows: min-content; grid-template-columns: repeat(3, minmax(330px, 1fr)); height: min-content; justify-content: center; padding: 0px; position: relative; width: 100%; }\",\".framer-jjb1G .framer-1jsnhn5 { align-content: center; align-items: center; align-self: start; display: flex; flex: none; flex-direction: row; flex-wrap: wrap; gap: 40px; height: auto; justify-content: flex-start; justify-self: start; padding: 0px; position: relative; width: 100%; }\",\".framer-jjb1G .framer-kc6tf3 { align-content: center; align-items: center; background-color: #ffffff; border-bottom-left-radius: 10px; border-bottom-right-radius: 10px; border-top-left-radius: 10px; border-top-right-radius: 10px; box-shadow: 0px 0.421531111242075px 0.590143555738905px -1.25px rgba(0, 117, 90, 0.23), 0px 1.60197331227042px 2.242762637178588px -2.5px rgba(0, 117, 90, 0.20338), 0px 7px 9.8px -3.75px rgba(0, 117, 90, 0.08); display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: flex-start; min-width: 200px; overflow: hidden; padding: 40px; position: relative; text-decoration: none; width: 1px; will-change: var(--framer-will-change-override, transform); }\",\".framer-jjb1G .framer-jt4bkc, .framer-jjb1G .framer-q7297z { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-jjb1G .framer-ukl878, .framer-jjb1G .framer-1w7j6g, .framer-jjb1G .framer-1rjj5h7, .framer-jjb1G .framer-287bsl, .framer-jjb1G .framer-dd01jz, .framer-jjb1G .framer-6t1f3i, .framer-jjb1G .framer-1op5ix6, .framer-jjb1G .framer-uq8l7s, .framer-jjb1G .framer-1mh6cxa { -webkit-user-select: none; flex: none; height: auto; pointer-events: auto; position: relative; user-select: none; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-jjb1G .framer-1ffnvyf, .framer-jjb1G .framer-1wgabk5, .framer-jjb1G .framer-qgbojr, .framer-jjb1G .framer-ojfgm4 { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-jjb1G .framer-tgkbnf-container, .framer-jjb1G .framer-1wh1rvc-container { flex: none; height: auto; position: relative; width: 100%; z-index: 2; }\",\".framer-jjb1G .framer-1130llx-container, .framer-jjb1G .framer-td3yqh-container, .framer-jjb1G .framer-zq5pvb-container, .framer-jjb1G .framer-x3p7is-container, .framer-jjb1G .framer-un4kp8-container, .framer-jjb1G .framer-107e6p3-container { flex: none; height: auto; position: relative; width: auto; }\",\".framer-jjb1G .framer-o4ev16 { align-content: center; align-items: center; background-color: #ffffff; 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%; z-index: 1; }\",\".framer-jjb1G .framer-10u59gk { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 120px 0px 120px 0px; position: relative; width: 1px; }\",\".framer-jjb1G .framer-1hfky2m { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 70px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-jjb1G .framer-q61u0n { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; max-width: 1440px; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-jjb1G .framer-1g52k6x-container, .framer-jjb1G .framer-16cqs4r-container { flex: none; height: 155px; position: relative; width: 100%; }\",\".framer-jjb1G .framer-emwdxv, .framer-jjb1G .framer-1bgskm, .framer-jjb1G .framer-qoohws, .framer-jjb1G .framer-17y1s36, .framer-jjb1G .framer-a08o4v, .framer-jjb1G .framer-e4d5lt, .framer-jjb1G .framer-ch0yi6, .framer-jjb1G .framer-me0rio, .framer-jjb1G .framer-11ht41b, .framer-jjb1G .framer-1grc5kc, .framer-jjb1G .framer-kf4vui, .framer-jjb1G .framer-1ki9jxn, .framer-jjb1G .framer-1rzp2cj, .framer-jjb1G .framer-1b664aj, .framer-jjb1G .framer-gszab8 { --border-bottom-width: 1px; --border-color: #b7e5c8; --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; align-content: center; align-items: center; background-color: rgba(235, 240, 237, 0.32); border-bottom-left-radius: 10px; border-bottom-right-radius: 10px; border-top-left-radius: 10px; border-top-right-radius: 10px; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 29px; height: 147px; justify-content: center; overflow: visible; padding: 30px; position: relative; width: min-content; }\",\".framer-jjb1G .framer-18pzeg7, .framer-jjb1G .framer-12gby36, .framer-jjb1G .framer-1l7d8wo, .framer-jjb1G .framer-1wq2y07, .framer-jjb1G .framer-1kr0pvj, .framer-jjb1G .framer-12xqywo, .framer-jjb1G .framer-1p9z3xa, .framer-jjb1G .framer-9bc7u0, .framer-jjb1G .framer-1to42s9, .framer-jjb1G .framer-1u7djq4, .framer-jjb1G .framer-r9w5up, .framer-jjb1G .framer-ki50ti, .framer-jjb1G .framer-1sksf9f, .framer-jjb1G .framer-eboz4q, .framer-jjb1G .framer-1erxje4 { -webkit-user-select: none; flex: none; height: auto; pointer-events: auto; position: relative; user-select: none; white-space: pre-wrap; width: 300px; word-break: break-word; word-wrap: break-word; }\",\".framer-jjb1G .framer-1tmul3a, .framer-jjb1G .framer-1kv2jym, .framer-jjb1G .framer-jzg76t, .framer-jjb1G .framer-1ly2vii, .framer-jjb1G .framer-2nauqg, .framer-jjb1G .framer-cyhr9f, .framer-jjb1G .framer-16nmay, .framer-jjb1G .framer-xoa34f, .framer-jjb1G .framer-1m2qg4o, .framer-jjb1G .framer-1prifu5, .framer-jjb1G .framer-1tj9cnz, .framer-jjb1G .framer-2bnwrc, .framer-jjb1G .framer-16mqqla, .framer-jjb1G .framer-nt010v, .framer-jjb1G .framer-1vkbrvi { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-jjb1G .framer-3d01qm, .framer-jjb1G .framer-1b7uub, .framer-jjb1G .framer-yml3k1, .framer-jjb1G .framer-10ryud3, .framer-jjb1G .framer-1q1kx80, .framer-jjb1G .framer-5blzif, .framer-jjb1G .framer-1j5w7kl, .framer-jjb1G .framer-32zb9h, .framer-jjb1G .framer-16y6pxm, .framer-jjb1G .framer-1ii75h2, .framer-jjb1G .framer-om1yn3, .framer-jjb1G .framer-490bbz, .framer-jjb1G .framer-145f6kt, .framer-jjb1G .framer-1j0ieiv, .framer-jjb1G .framer-cxqn1v { aspect-ratio: 1 / 1; border-bottom-left-radius: 100px; border-bottom-right-radius: 100px; border-top-left-radius: 100px; border-top-right-radius: 100px; flex: none; height: var(--framer-aspect-ratio-supported, 44px); position: relative; width: 44px; }\",\".framer-jjb1G .framer-w3ddbc, .framer-jjb1G .framer-1xi6idl, .framer-jjb1G .framer-inwit7, .framer-jjb1G .framer-234uci, .framer-jjb1G .framer-ana2qv, .framer-jjb1G .framer-12wpyxt, .framer-jjb1G .framer-1mfixhx, .framer-jjb1G .framer-12m5iko, .framer-jjb1G .framer-gx4vt2, .framer-jjb1G .framer-o8429s, .framer-jjb1G .framer-jlnu7d, .framer-jjb1G .framer-1ej8hsp, .framer-jjb1G .framer-11wqc8e, .framer-jjb1G .framer-dmexj5, .framer-jjb1G .framer-1ew7cv0 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-jjb1G .framer-13a4sm1 { align-content: center; align-items: center; background-color: var(--token-0c625cd7-aa2e-4d45-b610-d71828a97a93, #f7f1e9); 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%; z-index: 1; }\",\".framer-jjb1G .framer-vw2awh { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 70px; height: min-content; justify-content: center; max-width: 1440px; overflow: visible; padding: 120px 0px 120px 0px; position: relative; width: 1px; }\",\".framer-jjb1G .framer-10vgp2i { display: grid; flex: none; gap: 40px; grid-auto-rows: min-content; grid-template-columns: repeat(3, minmax(450px, 1fr)); height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-jjb1G .framer-1ul801f { align-content: center; align-items: center; 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 -0.421531111242075px 2.107655556210375px -1.25px rgba(207, 117, 0, 0.39), 0px -1.60197331227042px 8.0098665613521px -2.5px rgba(207, 117, 0, 0.34321), 0px -7px 35px -3.75px rgba(207, 117, 0, 0.135); display: flex; flex: none; flex-direction: row; flex-wrap: wrap; gap: 40px; height: auto; justify-content: flex-start; justify-self: start; padding: 0px; position: relative; width: 100%; }\",\".framer-jjb1G .framer-579jcd { align-content: flex-start; align-items: flex-start; background-color: #ffffff; border-bottom-left-radius: 10px; border-bottom-right-radius: 10px; border-top-left-radius: 10px; border-top-right-radius: 10px; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; height: min-content; justify-content: space-between; min-height: 355px; overflow: hidden; padding: 40px; position: relative; width: 1px; will-change: var(--framer-will-change-override, transform); }\",\".framer-jjb1G .framer-1dsk872 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-jjb1G .framer-wl0vdt { aspect-ratio: 1 / 1; border-bottom-left-radius: 100px; border-bottom-right-radius: 100px; border-top-left-radius: 100px; border-top-right-radius: 100px; flex: none; height: var(--framer-aspect-ratio-supported, 50px); position: relative; width: 50px; z-index: 1; }\",\".framer-jjb1G .framer-1v44ccu { align-content: center; align-items: center; 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-jjb1G .framer-1xus4cf-container, .framer-jjb1G .framer-m7795b-container { flex: none; height: auto; position: relative; width: 100%; z-index: 0; }\",\".framer-jjb1G .framer-13bh4y1 { --border-bottom-width: 2px; --border-color: var(--token-09c9bd95-0eb9-4246-8570-20fdde79012a, #ecf1ee); --border-left-width: 0px; --border-right-width: 0px; --border-style: solid; --border-top-width: 0px; align-content: center; align-items: center; background-color: #ffffff; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; z-index: 1; }\",\".framer-jjb1G .framer-usdghf { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: center; max-width: 1440px; overflow: hidden; padding: 120px 0px 120px 0px; position: relative; width: 1px; }\",\".framer-jjb1G .framer-2uqjs8 { display: grid; flex: none; gap: 40px; grid-auto-rows: min-content; grid-template-columns: repeat(3, minmax(330px, 1fr)); grid-template-rows: repeat(1, min-content); height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-jjb1G .framer-10xy76q, .framer-jjb1G .framer-10u6q7j, .framer-jjb1G .framer-1vfs045 { align-content: center; align-items: center; align-self: start; background-color: var(--token-0c625cd7-aa2e-4d45-b610-d71828a97a93, #f7f1e9); border-bottom-left-radius: 20px; border-bottom-right-radius: 20px; border-top-left-radius: 20px; border-top-right-radius: 20px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 70px; height: auto; justify-content: center; justify-self: start; min-width: 330px; overflow: hidden; padding: 70px 40px 40px 40px; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-jjb1G .framer-291yz7, .framer-jjb1G .framer-1wm3heu, .framer-jjb1G .framer-1iszlmy { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 30px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-jjb1G .framer-1gkmxzu, .framer-jjb1G .framer-1sp40a6 { align-content: flex-start; align-items: flex-start; border-bottom-left-radius: 8px; border-bottom-right-radius: 8px; border-top-left-radius: 8px; border-top-right-radius: 8px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 20px; height: 210px; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-jjb1G .framer-1rdup7 { 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: flex-start; padding: 0px; position: relative; width: 1px; }\",\".framer-jjb1G .framer-1p553em { align-content: center; align-items: center; border-bottom-left-radius: 10px; border-bottom-right-radius: 10px; border-top-left-radius: 10px; border-top-right-radius: 10px; box-shadow: 0px -0.421531111242075px 2.107655556210375px -1.25px rgba(207, 117, 0, 0.39), 0px -1.60197331227042px 8.0098665613521px -2.5px rgba(207, 117, 0, 0.34321), 0px -7px 35px -3.75px rgba(207, 117, 0, 0.135); display: flex; flex: none; flex-direction: row; flex-wrap: wrap; gap: 40px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-jjb1G .framer-cudaq5 { align-content: center; align-items: center; background-color: #ffffff; border-bottom-left-radius: 10px; border-bottom-right-radius: 10px; border-top-left-radius: 10px; border-top-right-radius: 10px; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: flex-start; min-width: 200px; overflow: hidden; padding: 40px; position: relative; text-decoration: none; width: 1px; will-change: var(--framer-will-change-override, transform); }\",\".framer-jjb1G .framer-92j7fb { align-content: flex-start; align-items: flex-start; border-bottom-left-radius: 10px; border-bottom-right-radius: 10px; border-top-left-radius: 10px; border-top-right-radius: 10px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: 210px; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-jjb1G .framer-1ocln16 { align-content: center; align-items: center; aspect-ratio: 0.6648841354723708 / 1; border-bottom-left-radius: 10px; border-bottom-right-radius: 10px; border-top-left-radius: 10px; border-top-right-radius: 10px; box-shadow: 0px -0.421531111242075px 2.107655556210375px -1.25px rgba(207, 117, 0, 0.39), 0px -1.60197331227042px 8.0098665613521px -2.5px rgba(207, 117, 0, 0.34321), 0px -7px 35px -3.75px rgba(207, 117, 0, 0.135); display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; height: var(--framer-aspect-ratio-supported, 562px); justify-content: space-between; overflow: visible; padding: 0px; position: relative; text-decoration: none; width: 1px; z-index: 1; }\",\".framer-jjb1G .framer-1nxoq4s { display: grid; flex: 1 0 0px; gap: 40px; grid-auto-rows: min-content; grid-template-columns: repeat(1, minmax(50px, 1fr)); height: min-content; justify-content: center; padding: 0px; position: relative; width: 1px; }\",\".framer-jjb1G .framer-g6697a { align-content: center; align-items: center; 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 -0.421531111242075px 2.107655556210375px -1.25px rgba(207, 117, 0, 0.39), 0px -1.60197331227042px 8.0098665613521px -2.5px rgba(207, 117, 0, 0.34321), 0px -7px 35px -3.75px rgba(207, 117, 0, 0.135); display: flex; flex: none; flex-direction: row; flex-wrap: wrap; gap: 40px; height: auto; justify-content: flex-start; justify-self: start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-jjb1G .framer-btc3y2 { align-content: flex-start; align-items: flex-start; background-color: #ffffff; border-bottom-left-radius: 10px; border-bottom-right-radius: 10px; border-top-left-radius: 10px; border-top-right-radius: 10px; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; min-width: 200px; overflow: hidden; padding: 40px; position: relative; text-decoration: none; width: 1px; will-change: var(--framer-will-change-override, transform); }\",\".framer-jjb1G .framer-1fg8iup { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 19px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-jjb1G .framer-fahyhv-container { flex: none; height: auto; position: relative; width: 100%; }\",\".framer-jjb1G .framer-181gt0n-container { flex: none; height: 100%; left: 0px; min-height: 860px; position: fixed; right: 0px; top: 0px; z-index: 10; }\",\"@supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-jjb1G.framer-72rtr7, .framer-jjb1G .framer-2fmyny, .framer-jjb1G .framer-1lpvtd8, .framer-jjb1G .framer-100dfyq, .framer-jjb1G .framer-zeyf1v, .framer-jjb1G .framer-qrer9g, .framer-jjb1G .framer-1qsxg54, .framer-jjb1G .framer-1mwst6b, .framer-jjb1G .framer-171wl6g, .framer-jjb1G .framer-1nquml1, .framer-jjb1G .framer-12uc1yv, .framer-jjb1G .framer-lvq19s, .framer-jjb1G .framer-1its1rt, .framer-jjb1G .framer-11hzjrk, .framer-jjb1G .framer-19f2667, .framer-jjb1G .framer-eiuo66, .framer-jjb1G .framer-679it7, .framer-jjb1G .framer-tvwwrh, .framer-jjb1G .framer-cqjaiz, .framer-jjb1G .framer-fi0v6a, .framer-jjb1G .framer-1jbim9t, .framer-jjb1G .framer-1ujwsxx, .framer-jjb1G .framer-1qi0o9i, .framer-jjb1G .framer-1w9cch1, .framer-jjb1G .framer-bwahvo, .framer-jjb1G .framer-xggemj, .framer-jjb1G .framer-13muyqq, .framer-jjb1G .framer-1il049y, .framer-jjb1G .framer-8fugc, .framer-jjb1G .framer-1n2v3ze, .framer-jjb1G .framer-1lx8rgh, .framer-jjb1G .framer-10w820q, .framer-jjb1G .framer-1wbgiob, .framer-jjb1G .framer-12hw1i0, .framer-jjb1G .framer-1jsnhn5, .framer-jjb1G .framer-kc6tf3, .framer-jjb1G .framer-jt4bkc, .framer-jjb1G .framer-10u59gk, .framer-jjb1G .framer-1hfky2m, .framer-jjb1G .framer-q61u0n, .framer-jjb1G .framer-b4a103, .framer-jjb1G .framer-emwdxv, .framer-jjb1G .framer-1tmul3a, .framer-jjb1G .framer-w3ddbc, .framer-jjb1G .framer-1bgskm, .framer-jjb1G .framer-1kv2jym, .framer-jjb1G .framer-1xi6idl, .framer-jjb1G .framer-qoohws, .framer-jjb1G .framer-jzg76t, .framer-jjb1G .framer-inwit7, .framer-jjb1G .framer-17y1s36, .framer-jjb1G .framer-1ly2vii, .framer-jjb1G .framer-234uci, .framer-jjb1G .framer-a08o4v, .framer-jjb1G .framer-2nauqg, .framer-jjb1G .framer-ana2qv, .framer-jjb1G .framer-e4d5lt, .framer-jjb1G .framer-cyhr9f, .framer-jjb1G .framer-12wpyxt, .framer-jjb1G .framer-ch0yi6, .framer-jjb1G .framer-16nmay, .framer-jjb1G .framer-1mfixhx, .framer-jjb1G .framer-me0rio, .framer-jjb1G .framer-xoa34f, .framer-jjb1G .framer-12m5iko, .framer-jjb1G .framer-11ht41b, .framer-jjb1G .framer-1m2qg4o, .framer-jjb1G .framer-gx4vt2, .framer-jjb1G .framer-1grc5kc, .framer-jjb1G .framer-1prifu5, .framer-jjb1G .framer-o8429s, .framer-jjb1G .framer-kf4vui, .framer-jjb1G .framer-1tj9cnz, .framer-jjb1G .framer-jlnu7d, .framer-jjb1G .framer-1ki9jxn, .framer-jjb1G .framer-2bnwrc, .framer-jjb1G .framer-1ej8hsp, .framer-jjb1G .framer-1rzp2cj, .framer-jjb1G .framer-16mqqla, .framer-jjb1G .framer-11wqc8e, .framer-jjb1G .framer-1b664aj, .framer-jjb1G .framer-nt010v, .framer-jjb1G .framer-dmexj5, .framer-jjb1G .framer-gszab8, .framer-jjb1G .framer-1vkbrvi, .framer-jjb1G .framer-1ew7cv0, .framer-jjb1G .framer-rn1edz, .framer-jjb1G .framer-13a4sm1, .framer-jjb1G .framer-vw2awh, .framer-jjb1G .framer-2rqoeb, .framer-jjb1G .framer-1ul801f, .framer-jjb1G .framer-il59mh, .framer-jjb1G .framer-1dsk872, .framer-jjb1G .framer-1v44ccu, .framer-jjb1G .framer-1o6bmw7, .framer-jjb1G .framer-643is4, .framer-jjb1G .framer-1jifcr9, .framer-jjb1G .framer-1ol8syb, .framer-jjb1G .framer-13bh4y1, .framer-jjb1G .framer-usdghf, .framer-jjb1G .framer-10xy76q, .framer-jjb1G .framer-291yz7, .framer-jjb1G .framer-10kqoc6, .framer-jjb1G .framer-1gkmxzu, .framer-jjb1G .framer-1rdup7, .framer-jjb1G .framer-1p553em, .framer-jjb1G .framer-cudaq5, .framer-jjb1G .framer-q7297z, .framer-jjb1G .framer-10u6q7j, .framer-jjb1G .framer-1wm3heu, .framer-jjb1G .framer-d3832x, .framer-jjb1G .framer-92j7fb, .framer-jjb1G .framer-1vfs045, .framer-jjb1G .framer-1iszlmy, .framer-jjb1G .framer-1mgbjrb, .framer-jjb1G .framer-1sp40a6, .framer-jjb1G .framer-g6697a, .framer-jjb1G .framer-btc3y2, .framer-jjb1G .framer-1fg8iup, .framer-jjb1G .framer-1unri33, .framer-jjb1G .framer-1rsbgnn { gap: 0px; } .framer-jjb1G.framer-72rtr7 > *, .framer-jjb1G .framer-8fugc > *, .framer-jjb1G .framer-w3ddbc > *, .framer-jjb1G .framer-1xi6idl > *, .framer-jjb1G .framer-inwit7 > *, .framer-jjb1G .framer-234uci > *, .framer-jjb1G .framer-ana2qv > *, .framer-jjb1G .framer-12wpyxt > *, .framer-jjb1G .framer-1mfixhx > *, .framer-jjb1G .framer-12m5iko > *, .framer-jjb1G .framer-gx4vt2 > *, .framer-jjb1G .framer-o8429s > *, .framer-jjb1G .framer-jlnu7d > *, .framer-jjb1G .framer-1ej8hsp > *, .framer-jjb1G .framer-11wqc8e > *, .framer-jjb1G .framer-dmexj5 > *, .framer-jjb1G .framer-1ew7cv0 > *, .framer-jjb1G .framer-1v44ccu > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-jjb1G.framer-72rtr7 > :first-child, .framer-jjb1G .framer-2fmyny > :first-child, .framer-jjb1G .framer-zeyf1v > :first-child, .framer-jjb1G .framer-qrer9g > :first-child, .framer-jjb1G .framer-1qsxg54 > :first-child, .framer-jjb1G .framer-1mwst6b > :first-child, .framer-jjb1G .framer-171wl6g > :first-child, .framer-jjb1G .framer-12uc1yv > :first-child, .framer-jjb1G .framer-1its1rt > :first-child, .framer-jjb1G .framer-19f2667 > :first-child, .framer-jjb1G .framer-679it7 > :first-child, .framer-jjb1G .framer-cqjaiz > :first-child, .framer-jjb1G .framer-1jbim9t > :first-child, .framer-jjb1G .framer-1qi0o9i > :first-child, .framer-jjb1G .framer-bwahvo > :first-child, .framer-jjb1G .framer-13muyqq > :first-child, .framer-jjb1G .framer-8fugc > :first-child, .framer-jjb1G .framer-1wbgiob > :first-child, .framer-jjb1G .framer-12hw1i0 > :first-child, .framer-jjb1G .framer-kc6tf3 > :first-child, .framer-jjb1G .framer-jt4bkc > :first-child, .framer-jjb1G .framer-1hfky2m > :first-child, .framer-jjb1G .framer-q61u0n > :first-child, .framer-jjb1G .framer-b4a103 > :first-child, .framer-jjb1G .framer-w3ddbc > :first-child, .framer-jjb1G .framer-1xi6idl > :first-child, .framer-jjb1G .framer-inwit7 > :first-child, .framer-jjb1G .framer-234uci > :first-child, .framer-jjb1G .framer-ana2qv > :first-child, .framer-jjb1G .framer-12wpyxt > :first-child, .framer-jjb1G .framer-1mfixhx > :first-child, .framer-jjb1G .framer-12m5iko > :first-child, .framer-jjb1G .framer-gx4vt2 > :first-child, .framer-jjb1G .framer-o8429s > :first-child, .framer-jjb1G .framer-jlnu7d > :first-child, .framer-jjb1G .framer-1ej8hsp > :first-child, .framer-jjb1G .framer-11wqc8e > :first-child, .framer-jjb1G .framer-dmexj5 > :first-child, .framer-jjb1G .framer-1ew7cv0 > :first-child, .framer-jjb1G .framer-rn1edz > :first-child, .framer-jjb1G .framer-vw2awh > :first-child, .framer-jjb1G .framer-2rqoeb > :first-child, .framer-jjb1G .framer-il59mh > :first-child, .framer-jjb1G .framer-1v44ccu > :first-child, .framer-jjb1G .framer-1o6bmw7 > :first-child, .framer-jjb1G .framer-643is4 > :first-child, .framer-jjb1G .framer-1jifcr9 > :first-child, .framer-jjb1G .framer-1ol8syb > :first-child, .framer-jjb1G .framer-usdghf > :first-child, .framer-jjb1G .framer-10xy76q > :first-child, .framer-jjb1G .framer-291yz7 > :first-child, .framer-jjb1G .framer-10kqoc6 > :first-child, .framer-jjb1G .framer-1rdup7 > :first-child, .framer-jjb1G .framer-cudaq5 > :first-child, .framer-jjb1G .framer-q7297z > :first-child, .framer-jjb1G .framer-10u6q7j > :first-child, .framer-jjb1G .framer-1wm3heu > :first-child, .framer-jjb1G .framer-d3832x > :first-child, .framer-jjb1G .framer-1vfs045 > :first-child, .framer-jjb1G .framer-1iszlmy > :first-child, .framer-jjb1G .framer-1mgbjrb > :first-child, .framer-jjb1G .framer-btc3y2 > :first-child, .framer-jjb1G .framer-1fg8iup > :first-child, .framer-jjb1G .framer-1unri33 > :first-child, .framer-jjb1G .framer-1rsbgnn > :first-child { margin-top: 0px; } .framer-jjb1G.framer-72rtr7 > :last-child, .framer-jjb1G .framer-2fmyny > :last-child, .framer-jjb1G .framer-zeyf1v > :last-child, .framer-jjb1G .framer-qrer9g > :last-child, .framer-jjb1G .framer-1qsxg54 > :last-child, .framer-jjb1G .framer-1mwst6b > :last-child, .framer-jjb1G .framer-171wl6g > :last-child, .framer-jjb1G .framer-12uc1yv > :last-child, .framer-jjb1G .framer-1its1rt > :last-child, .framer-jjb1G .framer-19f2667 > :last-child, .framer-jjb1G .framer-679it7 > :last-child, .framer-jjb1G .framer-cqjaiz > :last-child, .framer-jjb1G .framer-1jbim9t > :last-child, .framer-jjb1G .framer-1qi0o9i > :last-child, .framer-jjb1G .framer-bwahvo > :last-child, .framer-jjb1G .framer-13muyqq > :last-child, .framer-jjb1G .framer-8fugc > :last-child, .framer-jjb1G .framer-1wbgiob > :last-child, .framer-jjb1G .framer-12hw1i0 > :last-child, .framer-jjb1G .framer-kc6tf3 > :last-child, .framer-jjb1G .framer-jt4bkc > :last-child, .framer-jjb1G .framer-1hfky2m > :last-child, .framer-jjb1G .framer-q61u0n > :last-child, .framer-jjb1G .framer-b4a103 > :last-child, .framer-jjb1G .framer-w3ddbc > :last-child, .framer-jjb1G .framer-1xi6idl > :last-child, .framer-jjb1G .framer-inwit7 > :last-child, .framer-jjb1G .framer-234uci > :last-child, .framer-jjb1G .framer-ana2qv > :last-child, .framer-jjb1G .framer-12wpyxt > :last-child, .framer-jjb1G .framer-1mfixhx > :last-child, .framer-jjb1G .framer-12m5iko > :last-child, .framer-jjb1G .framer-gx4vt2 > :last-child, .framer-jjb1G .framer-o8429s > :last-child, .framer-jjb1G .framer-jlnu7d > :last-child, .framer-jjb1G .framer-1ej8hsp > :last-child, .framer-jjb1G .framer-11wqc8e > :last-child, .framer-jjb1G .framer-dmexj5 > :last-child, .framer-jjb1G .framer-1ew7cv0 > :last-child, .framer-jjb1G .framer-rn1edz > :last-child, .framer-jjb1G .framer-vw2awh > :last-child, .framer-jjb1G .framer-2rqoeb > :last-child, .framer-jjb1G .framer-il59mh > :last-child, .framer-jjb1G .framer-1v44ccu > :last-child, .framer-jjb1G .framer-1o6bmw7 > :last-child, .framer-jjb1G .framer-643is4 > :last-child, .framer-jjb1G .framer-1jifcr9 > :last-child, .framer-jjb1G .framer-1ol8syb > :last-child, .framer-jjb1G .framer-usdghf > :last-child, .framer-jjb1G .framer-10xy76q > :last-child, .framer-jjb1G .framer-291yz7 > :last-child, .framer-jjb1G .framer-10kqoc6 > :last-child, .framer-jjb1G .framer-1rdup7 > :last-child, .framer-jjb1G .framer-cudaq5 > :last-child, .framer-jjb1G .framer-q7297z > :last-child, .framer-jjb1G .framer-10u6q7j > :last-child, .framer-jjb1G .framer-1wm3heu > :last-child, .framer-jjb1G .framer-d3832x > :last-child, .framer-jjb1G .framer-1vfs045 > :last-child, .framer-jjb1G .framer-1iszlmy > :last-child, .framer-jjb1G .framer-1mgbjrb > :last-child, .framer-jjb1G .framer-btc3y2 > :last-child, .framer-jjb1G .framer-1fg8iup > :last-child, .framer-jjb1G .framer-1unri33 > :last-child, .framer-jjb1G .framer-1rsbgnn > :last-child { margin-bottom: 0px; } .framer-jjb1G .framer-2fmyny > *, .framer-jjb1G .framer-zeyf1v > *, .framer-jjb1G .framer-12hw1i0 > *, .framer-jjb1G .framer-q61u0n > *, .framer-jjb1G .framer-rn1edz > *, .framer-jjb1G .framer-2rqoeb > *, .framer-jjb1G .framer-1o6bmw7 > *, .framer-jjb1G .framer-643is4 > *, .framer-jjb1G .framer-1jifcr9 > *, .framer-jjb1G .framer-1ol8syb > *, .framer-jjb1G .framer-10kqoc6 > *, .framer-jjb1G .framer-d3832x > *, .framer-jjb1G .framer-1mgbjrb > *, .framer-jjb1G .framer-1rsbgnn > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-jjb1G .framer-1lpvtd8 > *, .framer-jjb1G .framer-100dfyq > *, .framer-jjb1G .framer-1il049y > *, .framer-jjb1G .framer-1n2v3ze > *, .framer-jjb1G .framer-10w820q > *, .framer-jjb1G .framer-10u59gk > *, .framer-jjb1G .framer-1tmul3a > *, .framer-jjb1G .framer-1kv2jym > *, .framer-jjb1G .framer-jzg76t > *, .framer-jjb1G .framer-1ly2vii > *, .framer-jjb1G .framer-2nauqg > *, .framer-jjb1G .framer-cyhr9f > *, .framer-jjb1G .framer-16nmay > *, .framer-jjb1G .framer-xoa34f > *, .framer-jjb1G .framer-1m2qg4o > *, .framer-jjb1G .framer-1prifu5 > *, .framer-jjb1G .framer-1tj9cnz > *, .framer-jjb1G .framer-2bnwrc > *, .framer-jjb1G .framer-16mqqla > *, .framer-jjb1G .framer-nt010v > *, .framer-jjb1G .framer-1vkbrvi > *, .framer-jjb1G .framer-13bh4y1 > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-jjb1G .framer-1lpvtd8 > :first-child, .framer-jjb1G .framer-100dfyq > :first-child, .framer-jjb1G .framer-1nquml1 > :first-child, .framer-jjb1G .framer-lvq19s > :first-child, .framer-jjb1G .framer-11hzjrk > :first-child, .framer-jjb1G .framer-eiuo66 > :first-child, .framer-jjb1G .framer-tvwwrh > :first-child, .framer-jjb1G .framer-fi0v6a > :first-child, .framer-jjb1G .framer-1ujwsxx > :first-child, .framer-jjb1G .framer-1w9cch1 > :first-child, .framer-jjb1G .framer-xggemj > :first-child, .framer-jjb1G .framer-1il049y > :first-child, .framer-jjb1G .framer-1n2v3ze > :first-child, .framer-jjb1G .framer-1lx8rgh > :first-child, .framer-jjb1G .framer-10w820q > :first-child, .framer-jjb1G .framer-1jsnhn5 > :first-child, .framer-jjb1G .framer-10u59gk > :first-child, .framer-jjb1G .framer-emwdxv > :first-child, .framer-jjb1G .framer-1tmul3a > :first-child, .framer-jjb1G .framer-1bgskm > :first-child, .framer-jjb1G .framer-1kv2jym > :first-child, .framer-jjb1G .framer-qoohws > :first-child, .framer-jjb1G .framer-jzg76t > :first-child, .framer-jjb1G .framer-17y1s36 > :first-child, .framer-jjb1G .framer-1ly2vii > :first-child, .framer-jjb1G .framer-a08o4v > :first-child, .framer-jjb1G .framer-2nauqg > :first-child, .framer-jjb1G .framer-e4d5lt > :first-child, .framer-jjb1G .framer-cyhr9f > :first-child, .framer-jjb1G .framer-ch0yi6 > :first-child, .framer-jjb1G .framer-16nmay > :first-child, .framer-jjb1G .framer-me0rio > :first-child, .framer-jjb1G .framer-xoa34f > :first-child, .framer-jjb1G .framer-11ht41b > :first-child, .framer-jjb1G .framer-1m2qg4o > :first-child, .framer-jjb1G .framer-1grc5kc > :first-child, .framer-jjb1G .framer-1prifu5 > :first-child, .framer-jjb1G .framer-kf4vui > :first-child, .framer-jjb1G .framer-1tj9cnz > :first-child, .framer-jjb1G .framer-1ki9jxn > :first-child, .framer-jjb1G .framer-2bnwrc > :first-child, .framer-jjb1G .framer-1rzp2cj > :first-child, .framer-jjb1G .framer-16mqqla > :first-child, .framer-jjb1G .framer-1b664aj > :first-child, .framer-jjb1G .framer-nt010v > :first-child, .framer-jjb1G .framer-gszab8 > :first-child, .framer-jjb1G .framer-1vkbrvi > :first-child, .framer-jjb1G .framer-13a4sm1 > :first-child, .framer-jjb1G .framer-1ul801f > :first-child, .framer-jjb1G .framer-1dsk872 > :first-child, .framer-jjb1G .framer-13bh4y1 > :first-child, .framer-jjb1G .framer-1gkmxzu > :first-child, .framer-jjb1G .framer-1p553em > :first-child, .framer-jjb1G .framer-92j7fb > :first-child, .framer-jjb1G .framer-1sp40a6 > :first-child, .framer-jjb1G .framer-g6697a > :first-child { margin-left: 0px; } .framer-jjb1G .framer-1lpvtd8 > :last-child, .framer-jjb1G .framer-100dfyq > :last-child, .framer-jjb1G .framer-1nquml1 > :last-child, .framer-jjb1G .framer-lvq19s > :last-child, .framer-jjb1G .framer-11hzjrk > :last-child, .framer-jjb1G .framer-eiuo66 > :last-child, .framer-jjb1G .framer-tvwwrh > :last-child, .framer-jjb1G .framer-fi0v6a > :last-child, .framer-jjb1G .framer-1ujwsxx > :last-child, .framer-jjb1G .framer-1w9cch1 > :last-child, .framer-jjb1G .framer-xggemj > :last-child, .framer-jjb1G .framer-1il049y > :last-child, .framer-jjb1G .framer-1n2v3ze > :last-child, .framer-jjb1G .framer-1lx8rgh > :last-child, .framer-jjb1G .framer-10w820q > :last-child, .framer-jjb1G .framer-1jsnhn5 > :last-child, .framer-jjb1G .framer-10u59gk > :last-child, .framer-jjb1G .framer-emwdxv > :last-child, .framer-jjb1G .framer-1tmul3a > :last-child, .framer-jjb1G .framer-1bgskm > :last-child, .framer-jjb1G .framer-1kv2jym > :last-child, .framer-jjb1G .framer-qoohws > :last-child, .framer-jjb1G .framer-jzg76t > :last-child, .framer-jjb1G .framer-17y1s36 > :last-child, .framer-jjb1G .framer-1ly2vii > :last-child, .framer-jjb1G .framer-a08o4v > :last-child, .framer-jjb1G .framer-2nauqg > :last-child, .framer-jjb1G .framer-e4d5lt > :last-child, .framer-jjb1G .framer-cyhr9f > :last-child, .framer-jjb1G .framer-ch0yi6 > :last-child, .framer-jjb1G .framer-16nmay > :last-child, .framer-jjb1G .framer-me0rio > :last-child, .framer-jjb1G .framer-xoa34f > :last-child, .framer-jjb1G .framer-11ht41b > :last-child, .framer-jjb1G .framer-1m2qg4o > :last-child, .framer-jjb1G .framer-1grc5kc > :last-child, .framer-jjb1G .framer-1prifu5 > :last-child, .framer-jjb1G .framer-kf4vui > :last-child, .framer-jjb1G .framer-1tj9cnz > :last-child, .framer-jjb1G .framer-1ki9jxn > :last-child, .framer-jjb1G .framer-2bnwrc > :last-child, .framer-jjb1G .framer-1rzp2cj > :last-child, .framer-jjb1G .framer-16mqqla > :last-child, .framer-jjb1G .framer-1b664aj > :last-child, .framer-jjb1G .framer-nt010v > :last-child, .framer-jjb1G .framer-gszab8 > :last-child, .framer-jjb1G .framer-1vkbrvi > :last-child, .framer-jjb1G .framer-13a4sm1 > :last-child, .framer-jjb1G .framer-1ul801f > :last-child, .framer-jjb1G .framer-1dsk872 > :last-child, .framer-jjb1G .framer-13bh4y1 > :last-child, .framer-jjb1G .framer-1gkmxzu > :last-child, .framer-jjb1G .framer-1p553em > :last-child, .framer-jjb1G .framer-92j7fb > :last-child, .framer-jjb1G .framer-1sp40a6 > :last-child, .framer-jjb1G .framer-g6697a > :last-child { margin-right: 0px; } .framer-jjb1G .framer-qrer9g > * { margin: 0px; margin-bottom: calc(100px / 2); margin-top: calc(100px / 2); } .framer-jjb1G .framer-1qsxg54 > * { margin: 0px; margin-bottom: calc(15px / 2); margin-top: calc(15px / 2); } .framer-jjb1G .framer-1mwst6b > *, .framer-jjb1G .framer-12uc1yv > *, .framer-jjb1G .framer-kc6tf3 > *, .framer-jjb1G .framer-b4a103 > *, .framer-jjb1G .framer-il59mh > *, .framer-jjb1G .framer-cudaq5 > *, .framer-jjb1G .framer-btc3y2 > *, .framer-jjb1G .framer-1unri33 > * { margin: 0px; margin-bottom: calc(20px / 2); margin-top: calc(20px / 2); } .framer-jjb1G .framer-171wl6g > *, .framer-jjb1G .framer-usdghf > * { margin: 0px; margin-bottom: calc(40px / 2); margin-top: calc(40px / 2); } .framer-jjb1G .framer-1nquml1 > *, .framer-jjb1G .framer-1lx8rgh > *, .framer-jjb1G .framer-13a4sm1 > *, .framer-jjb1G .framer-92j7fb > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } .framer-jjb1G .framer-lvq19s > *, .framer-jjb1G .framer-11hzjrk > *, .framer-jjb1G .framer-eiuo66 > *, .framer-jjb1G .framer-tvwwrh > *, .framer-jjb1G .framer-fi0v6a > *, .framer-jjb1G .framer-1ujwsxx > *, .framer-jjb1G .framer-1w9cch1 > *, .framer-jjb1G .framer-xggemj > *, .framer-jjb1G .framer-1dsk872 > *, .framer-jjb1G .framer-1gkmxzu > *, .framer-jjb1G .framer-1sp40a6 > * { margin: 0px; margin-left: calc(20px / 2); margin-right: calc(20px / 2); } .framer-jjb1G .framer-1its1rt > *, .framer-jjb1G .framer-19f2667 > *, .framer-jjb1G .framer-679it7 > *, .framer-jjb1G .framer-cqjaiz > *, .framer-jjb1G .framer-1jbim9t > *, .framer-jjb1G .framer-1qi0o9i > *, .framer-jjb1G .framer-bwahvo > *, .framer-jjb1G .framer-13muyqq > * { margin: 0px; margin-bottom: calc(3px / 2); margin-top: calc(3px / 2); } .framer-jjb1G .framer-1wbgiob > *, .framer-jjb1G .framer-1hfky2m > *, .framer-jjb1G .framer-vw2awh > *, .framer-jjb1G .framer-10xy76q > *, .framer-jjb1G .framer-10u6q7j > *, .framer-jjb1G .framer-1vfs045 > * { margin: 0px; margin-bottom: calc(70px / 2); margin-top: calc(70px / 2); } .framer-jjb1G .framer-1jsnhn5 > *, .framer-jjb1G .framer-1ul801f > *, .framer-jjb1G .framer-1p553em > *, .framer-jjb1G .framer-g6697a > * { margin: 0px; margin-left: calc(40px / 2); margin-right: calc(40px / 2); } .framer-jjb1G .framer-jt4bkc > *, .framer-jjb1G .framer-q7297z > * { margin: 0px; margin-bottom: calc(8px / 2); margin-top: calc(8px / 2); } .framer-jjb1G .framer-emwdxv > *, .framer-jjb1G .framer-1bgskm > *, .framer-jjb1G .framer-qoohws > *, .framer-jjb1G .framer-17y1s36 > *, .framer-jjb1G .framer-a08o4v > *, .framer-jjb1G .framer-e4d5lt > *, .framer-jjb1G .framer-ch0yi6 > *, .framer-jjb1G .framer-me0rio > *, .framer-jjb1G .framer-11ht41b > *, .framer-jjb1G .framer-1grc5kc > *, .framer-jjb1G .framer-kf4vui > *, .framer-jjb1G .framer-1ki9jxn > *, .framer-jjb1G .framer-1rzp2cj > *, .framer-jjb1G .framer-1b664aj > *, .framer-jjb1G .framer-gszab8 > * { margin: 0px; margin-left: calc(29px / 2); margin-right: calc(29px / 2); } .framer-jjb1G .framer-291yz7 > *, .framer-jjb1G .framer-1rdup7 > *, .framer-jjb1G .framer-1wm3heu > *, .framer-jjb1G .framer-1iszlmy > * { margin: 0px; margin-bottom: calc(30px / 2); margin-top: calc(30px / 2); } .framer-jjb1G .framer-1fg8iup > * { margin: 0px; margin-bottom: calc(19px / 2); margin-top: calc(19px / 2); } }\",`@media (min-width: 810px) and (max-width: 1599px) { .${metadata.bodyClassName}-framer-jjb1G { background: white; } .framer-jjb1G.framer-72rtr7 { width: 810px; } .framer-jjb1G .framer-1qsxg54, .framer-jjb1G .framer-q61u0n { padding: 0px 70px 0px 70px; } .framer-jjb1G .framer-1wbgiob, .framer-jjb1G .framer-vw2awh, .framer-jjb1G .framer-usdghf { padding: 100px 70px 100px 70px; } .framer-jjb1G .framer-1ppw1ea { grid-template-columns: repeat(auto-fill, minmax(330px, 1fr)); } .framer-jjb1G .framer-10u59gk { padding: 100px 0px 100px 0px; } .framer-jjb1G .framer-10vgp2i { gap: 30px; grid-template-columns: repeat(auto-fill, minmax(450px, 1fr)); } .framer-jjb1G .framer-2uqjs8 { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: wrap; gap: 20px; } .framer-jjb1G .framer-10xy76q, .framer-jjb1G .framer-10u6q7j, .framer-jjb1G .framer-1vfs045 { align-self: unset; flex: 1 0 0px; height: min-content; width: 1px; } .framer-jjb1G .framer-1ocln16 { height: var(--framer-aspect-ratio-supported, 888px); } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-jjb1G .framer-10vgp2i, .framer-jjb1G .framer-2uqjs8 { gap: 0px; } .framer-jjb1G .framer-10vgp2i > *, .framer-jjb1G .framer-10vgp2i > :first-child, .framer-jjb1G .framer-10vgp2i > :last-child { margin: 0px; } .framer-jjb1G .framer-2uqjs8 > * { margin: 0px; margin-left: calc(20px / 2); margin-right: calc(20px / 2); } .framer-jjb1G .framer-2uqjs8 > :first-child { margin-left: 0px; } .framer-jjb1G .framer-2uqjs8 > :last-child { margin-right: 0px; } }}`,`@media (max-width: 809px) { .${metadata.bodyClassName}-framer-jjb1G { background: white; } .framer-jjb1G.framer-72rtr7 { width: 390px; } .framer-jjb1G .framer-2fmyny { gap: 0px; } .framer-jjb1G .framer-1lpvtd8 { flex: 1 0 0px; height: 1px; } .framer-jjb1G .framer-100dfyq, .framer-jjb1G .framer-zeyf1v { height: 100%; } .framer-jjb1G .framer-qrer9g { gap: 50px; padding: 0px; } .framer-jjb1G .framer-1qsxg54, .framer-jjb1G .framer-rn1edz, .framer-jjb1G .framer-1ol8syb { padding: 0px 30px 0px 30px; } .framer-jjb1G .framer-171wl6g { gap: 20px; } .framer-jjb1G .framer-qkov8b, .framer-jjb1G .framer-mu5vl1-container, .framer-jjb1G .framer-1130llx-container, .framer-jjb1G .framer-td3yqh-container, .framer-jjb1G .framer-zq5pvb-container, .framer-jjb1G .framer-x3p7is-container, .framer-jjb1G .framer-un4kp8-container, .framer-jjb1G .framer-107e6p3-container { width: 100%; } .framer-jjb1G .framer-1nquml1 { padding: 0px 30px 50px 30px; } .framer-jjb1G .framer-1uririx-container { flex: 1 0 0px; width: 1px; } .framer-jjb1G .framer-gkvcj8-container { width: 200%; } .framer-jjb1G .framer-1s8v3a8-container { bottom: 45px; left: 50%; } .framer-jjb1G .framer-wwttfc-container { flex: none; height: 860px; width: 390px; } .framer-jjb1G .framer-1wbgiob, .framer-jjb1G .framer-vw2awh { min-width: 330px; padding: 80px 30px 80px 30px; } .framer-jjb1G .framer-1ppw1ea { grid-template-columns: repeat(auto-fill, minmax(330px, 1fr)); } .framer-jjb1G .framer-10u59gk { gap: 0px; padding: 80px 0px 80px 0px; } .framer-jjb1G .framer-q61u0n { min-width: 330px; padding: 0px 30px 0px 30px; } .framer-jjb1G .framer-b4a103 { gap: 10px; } .framer-jjb1G .framer-10vgp2i, .framer-jjb1G .framer-2uqjs8 { gap: 30px; grid-template-columns: repeat(1, minmax(330px, 1fr)); } .framer-jjb1G .framer-579jcd, .framer-jjb1G .framer-cudaq5 { padding: 30px; } .framer-jjb1G .framer-usdghf { gap: 30px; padding: 30px; } .framer-jjb1G .framer-10xy76q, .framer-jjb1G .framer-10u6q7j, .framer-jjb1G .framer-1vfs045 { gap: 30px; padding: 70px 30px 40px 30px; } .framer-jjb1G .framer-1ocln16 { height: var(--framer-aspect-ratio-supported, 406px); } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-jjb1G .framer-2fmyny, .framer-jjb1G .framer-qrer9g, .framer-jjb1G .framer-171wl6g, .framer-jjb1G .framer-10u59gk, .framer-jjb1G .framer-b4a103, .framer-jjb1G .framer-10vgp2i, .framer-jjb1G .framer-usdghf, .framer-jjb1G .framer-2uqjs8, .framer-jjb1G .framer-10xy76q, .framer-jjb1G .framer-10u6q7j, .framer-jjb1G .framer-1vfs045 { gap: 0px; } .framer-jjb1G .framer-2fmyny > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-jjb1G .framer-2fmyny > :first-child, .framer-jjb1G .framer-qrer9g > :first-child, .framer-jjb1G .framer-171wl6g > :first-child, .framer-jjb1G .framer-b4a103 > :first-child, .framer-jjb1G .framer-usdghf > :first-child, .framer-jjb1G .framer-10xy76q > :first-child, .framer-jjb1G .framer-10u6q7j > :first-child, .framer-jjb1G .framer-1vfs045 > :first-child { margin-top: 0px; } .framer-jjb1G .framer-2fmyny > :last-child, .framer-jjb1G .framer-qrer9g > :last-child, .framer-jjb1G .framer-171wl6g > :last-child, .framer-jjb1G .framer-b4a103 > :last-child, .framer-jjb1G .framer-usdghf > :last-child, .framer-jjb1G .framer-10xy76q > :last-child, .framer-jjb1G .framer-10u6q7j > :last-child, .framer-jjb1G .framer-1vfs045 > :last-child { margin-bottom: 0px; } .framer-jjb1G .framer-qrer9g > * { margin: 0px; margin-bottom: calc(50px / 2); margin-top: calc(50px / 2); } .framer-jjb1G .framer-171wl6g > * { margin: 0px; margin-bottom: calc(20px / 2); margin-top: calc(20px / 2); } .framer-jjb1G .framer-10u59gk > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } .framer-jjb1G .framer-10u59gk > :first-child { margin-left: 0px; } .framer-jjb1G .framer-10u59gk > :last-child { margin-right: 0px; } .framer-jjb1G .framer-b4a103 > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-jjb1G .framer-10vgp2i > *, .framer-jjb1G .framer-10vgp2i > :first-child, .framer-jjb1G .framer-10vgp2i > :last-child, .framer-jjb1G .framer-2uqjs8 > *, .framer-jjb1G .framer-2uqjs8 > :first-child, .framer-jjb1G .framer-2uqjs8 > :last-child { margin: 0px; } .framer-jjb1G .framer-usdghf > *, .framer-jjb1G .framer-10xy76q > *, .framer-jjb1G .framer-10u6q7j > *, .framer-jjb1G .framer-1vfs045 > * { margin: 0px; margin-bottom: calc(30px / 2); margin-top: calc(30px / 2); } }}`,...sharedStyle.css,...sharedStyle1.css,...sharedStyle2.css,...sharedStyle3.css,...sharedStyle4.css,...sharedStyle5.css,...sharedStyle6.css,'.framer-jjb1G[data-border=\"true\"]::after, .framer-jjb1G [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; }'];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 7761.5\n * @framerIntrinsicWidth 1600\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"m4eHcOoxF\":{\"layout\":[\"fixed\",\"auto\"]},\"yO6j_T3Vd\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n * @framerResponsiveScreen\n */const FrameraugiA20Il=withCSS(Component,css,\"framer-jjb1G\");export default FrameraugiA20Il;FrameraugiA20Il.displayName=\"Home\";FrameraugiA20Il.defaultProps={height:7761.5,width:1600};addFonts(FrameraugiA20Il,[{explicitInter:true,fonts:[{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://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:\"Montserrat\",source:\"fontshare\",style:\"normal\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/DELXRVKO253LHPYOBD6KD7EW3TJKXCXF/L6SILXET3P727LN5N75LL5PG77IET2IT/6DP3DAT2N5LSQGN5ISPRN63WPP32A54A.woff2\",weight:\"600\"},{family:\"Montserrat\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/montserrat/v29/JTUHjIg1_i6t8kCHKm4532VJOt5-QNFgpCu170w7Y3tcoqK5.woff2\",weight:\"600\"},{family:\"Montserrat\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/montserrat/v29/JTUHjIg1_i6t8kCHKm4532VJOt5-QNFgpCtr6Ew7Y3tcoqK5.woff2\",weight:\"400\"}]},...HeaderFonts,...SuperformFonts,...ToastFonts,...TickerFonts,...VideoFonts,...LottieFonts,...PricingTableFonts,...OverlaysFonts,...FakeButtonsFonts,...PrimaryButtonsFonts,...FooterFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts),...getFontsFromSharedStyle(sharedStyle2.fonts),...getFontsFromSharedStyle(sharedStyle3.fonts),...getFontsFromSharedStyle(sharedStyle4.fonts),...getFontsFromSharedStyle(sharedStyle5.fonts),...getFontsFromSharedStyle(sharedStyle6.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FrameraugiA20Il\",\"slots\":[],\"annotations\":{\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"m4eHcOoxF\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"yO6j_T3Vd\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicHeight\":\"7761.5\",\"framerDisplayContentsDiv\":\"false\",\"framerImmutableVariables\":\"true\",\"framerContractVersion\":\"1\",\"framerIntrinsicWidth\":\"1600\",\"framerResponsiveScreen\":\"\"}},\"__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", "video", "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", "isCloseToViewport", "startTime", "ue", "rawProgressValue", "isMotionValue", "value", "useOnEnter", "useOnExit", "src", "se", "fragment", "groupsRegex", "capitalizeFirstLetter", "titleCase", "objectFitOptions", "addPropertyControls", "ControlType", "borderRadiusControl", "defaultEvents", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "_humanReadableVariantMap_props_variant", "_ref", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onAppearg2nbja", "args", "onAppear1fuhl4y", "useOnVariantChange", "isDisplayed", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "cx", "RichText2", "css", "FramerhvBRmybTb", "withCSS", "hvBRmybTb_default", "addPropertyControls", "ControlType", "addFonts", "HeaderFonts", "getFonts", "pFX5VBIgf_default", "HeaderWithVariantAppearEffect", "withVariantAppearEffect", "ContainerWithFX", "withFX", "Container", "SuperformFonts", "Superform_default", "ToastFonts", "hvBRmybTb_default", "ContainerWithOptimizedAppearEffect", "withOptimizedAppearEffect", "MotionDivShowForAnonymous", "showForAnonymous", "motion", "TickerFonts", "Ticker", "MotionDivWithOptimizedAppearEffect", "VideoFonts", "Video", "LottieFonts", "Lottie", "ContainerWithFXWithOptimizedAppearEffect", "PricingTableFonts", "Gj25Ysmu6_default", "PricingTableShowForAnonymousWithMappedReactProps1jqp4g3", "withMappedReactProps", "Gj25Ysmu6_exports", "OverlaysFonts", "MGDq4X6ut_default", "RichTextTruncatedText", "TruncatedText", "RichText2", "FakeButtonsFonts", "e93AOwumg_default", "PrimaryButtonsFonts", "QfRCjqrdG_default", "MotionDivShowForSinglePlan_rmkyMD9g", "showForSinglePlan_rmkyMD9g", "FooterFonts", "ujctO_0sc_default", "breakpoints", "serializationHash", "variantClassNames", "transition1", "animation", "animation1", "transition2", "textEffect", "textEffect1", "transition3", "animation2", "animation3", "Overlay", "children", "blockDocumentScrolling", "enabled", "visible", "setVisible", "useOverlayState", "transition4", "animation4", "transition5", "animation5", "transition6", "animation6", "transformTemplate1", "_", "t", "transition7", "animation7", "animation8", "equals", "a", "b", "QueryData", "query", "pageSize", "data", "useQueryData", "animation9", "toResponsiveImage", "value", "animation10", "metadata", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "variant", "LDTQFuITvIRXIpLu9Z", "i_fSc7kv5IRXIpLu9Z", "ZMrV3O2YqIRXIpLu9Z", "AuMLoP5LoIRXIpLu9Z", "vxuYMamB6IRXIpLu9Z", "idIRXIpLu9Z", "Ruj7DG9KsaeFLj_kgA", "mi2BcUDqZaeFLj_kgA", "EaoFlBOTYaeFLj_kgA", "ETCy6YJZ4aeFLj_kgA", "ziUOxx_Uw_LDTQFuITvaeFLj_kgA", "XARyNcPH_aeFLj_kgA", "idaeFLj_kgA", "i_fSc7kv5iQZNWBU4E", "ZMrV3O2YqiQZNWBU4E", "AuMLoP5LoiQZNWBU4E", "vxuYMamB6iQZNWBU4E", "idiQZNWBU4E", "LDTQFuITviQZNWBU4E", "HTZbF5r1fU0zsqAZ7F", "fBSTm5H2RU0zsqAZ7F", "idU0zsqAZ7F", "F6DZBfVhwU0zsqAZ7F", "restProps", "ue", "metadata1", "robotsTag", "ie", "bodyCls", "body", "c", "baseVariant", "hydratedBaseVariant", "useHydratedBreakpointVariants", "breakpoints", "gestureVariant", "activeVariantCallback", "delay", "useActiveVariantCallback", "onSubmitwelu7j", "overlay", "paginationInfo", "args", "e3PemVyd7welu7j", "Kja1YIJBDwelu7j", "utsSte6Mc1wvko5h", "WC_uaukVGwelu7j", "ref1", "pe", "ref2", "elementId", "useRouteElementId", "ref3", "router", "useRouter", "elementId1", "ref4", "elementId2", "elementId3", "ref5", "defaultLayoutId", "ae", "sharedStyleClassNames", "useCustomCursors", "p", "GeneratedComponentContext", "u", "LayoutGroup", "motion", "cx", "ComponentViewportProvider", "PropertyOverrides2", "ContainerWithFX", "HeaderWithVariantAppearEffect", "RichText2", "x", "MotionDivShowForAnonymous", "l", "ResolveLinks", "resolvedLinks", "ContainerWithOptimizedAppearEffect", "Superform_default", "AnimatePresence", "Ga", "Container", "hvBRmybTb_default", "MotionDivWithOptimizedAppearEffect", "Ticker", "Image2", "Video", "ContainerWithFXWithOptimizedAppearEffect", "Lottie", "overlay2", "overlay1", "PricingTableShowForAnonymousWithMappedReactProps1jqp4g3", "MGDq4X6ut_default", "ChildrenCanSuspend", "gzn6H1ur3_default", "collection", "loadMore", "i", "visible1", "PathVariablesContext", "Link", "RichTextTruncatedText", "e93AOwumg_default", "resolvedLinks1", "QfRCjqrdG_default", "resolvedLinks2", "PaW11FxFr_default", "collection1", "paginationInfo1", "loadMore1", "MotionDivShowForSinglePlan_rmkyMD9g", "resolvedLinks3", "resolvedLinks4", "resolvedLinks5", "resolvedLinks6", "collection2", "paginationInfo2", "loadMore2", "visible2", "visible3", "resolvedLinks7", "resolvedLinks8", "fLF0Yv9Mm_default", "collection3", "paginationInfo3", "loadMore3", "overlay3", "ujctO_0sc_default", "css", "FrameraugiA20Il", "withCSS", "augiA20Il_default", "addFonts", "HeaderFonts", "SuperformFonts", "ToastFonts", "TickerFonts", "VideoFonts", "LottieFonts", "PricingTableFonts", "OverlaysFonts", "FakeButtonsFonts", "PrimaryButtonsFonts", "FooterFonts", "getFontsFromSharedStyle", "fonts", "__FramerMetadata__"]
}
