{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/B2xAlJLcN0gOnt11mSPw/l6rHYi79svcFRVrC1q12/Ticker.js", "ssg:https://framerusercontent.com/modules/PVY2kQ7WtX3GEvnfFaVg/A2AfnGnORm9cftUq60jG/b5bIbZw7M.js", "ssg:https://framerusercontent.com/modules/ehOeUXsLNns2dcd5hIXD/LvbHSknUdOYGhRWFyAOZ/GCf9nKZ6u.js", "ssg:https://framerusercontent.com/modules/48CYzoShqQNc4tGtABTS/bXZJp7pdrO3QFOGYVZM6/augiA20Il.js"],
  "sourcesContent": ["import{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{Children,useEffect,useState,useRef,useMemo,createRef,useCallback,cloneElement}from\"react\";import{addPropertyControls,ControlType,RenderTarget}from\"framer\";import{useAnimationFrame,useReducedMotion,LayoutGroup,useInView,useMotionValue,useTransform,motion,wrap,frame}from\"framer-motion\";import{resize}from\"@motionone/dom\";const MAX_DUPLICATED_ITEMS=100;const directionTransformers={left:offset=>`translateX(-${offset}px)`,right:offset=>`translateX(${offset}px)`,top:offset=>`translateY(-${offset}px)`,bottom:offset=>`translateY(${offset}px)`};const supportsAcceleratedAnimations=typeof Animation!==\"undefined\"&&typeof Animation.prototype.updatePlaybackRate===\"function\";/**\n *\n * @framerIntrinsicWidth 400\n * @framerIntrinsicHeight 200\n *\n * @framerDisableUnlink\n *\n * @framerSupportedLayoutWidth fixed\n * @framerSupportedLayoutHeight fixed\n */export default function Ticker(props){/* Props */let{slots,gap,padding,paddingPerSide,paddingTop,paddingRight,paddingBottom,paddingLeft,speed,hoverFactor,direction,alignment,sizingOptions,fadeOptions,style}=props;const{fadeContent,overflow,fadeWidth,fadeInset,fadeAlpha}=fadeOptions;const{widthType,heightType}=sizingOptions;const paddingValue=paddingPerSide?`${paddingTop}px ${paddingRight}px ${paddingBottom}px ${paddingLeft}px`:`${padding}px`;/* Checks */const isCanvas=RenderTarget.current()===RenderTarget.canvas;const numChildren=Children.count(slots);const hasChildren=numChildren>0;if(direction===true){direction=\"left\";}const isHorizontal=direction===\"left\"||direction===\"right\";const offset=useMotionValue(0);const transformer=directionTransformers[direction];const transform=useTransform(offset,transformer);/* Refs and State */const parentRef=useRef(null);const childrenRef=useMemo(()=>{return[/*#__PURE__*/createRef(),/*#__PURE__*/createRef()];},[]);const[size,setSize]=useState({parent:null,children:null});/* Arrays */let clonedChildren=[];let dupedChildren=[];/* Duplicate value */let duplicateBy=0;let opacity=0;if(isCanvas){duplicateBy=numChildren?Math.floor(10/numChildren):0;opacity=1;}if(!isCanvas&&hasChildren&&size.parent){duplicateBy=Math.round(size.parent/size.children*2)+1;duplicateBy=Math.min(duplicateBy,MAX_DUPLICATED_ITEMS);opacity=1;}/* Measure parent and child */const measure=useCallback(()=>{if(hasChildren&&parentRef.current){const parentLength=isHorizontal?parentRef.current.offsetWidth:parentRef.current.offsetHeight;const start=childrenRef[0].current?isHorizontal?childrenRef[0].current.offsetLeft:childrenRef[0].current.offsetTop:0;const end=childrenRef[1].current?isHorizontal?childrenRef[1].current.offsetLeft+childrenRef[1].current.offsetWidth:childrenRef[1].current.offsetTop+childrenRef[1].current.offsetHeight:0;const childrenLength=end-start+gap;setSize({parent:parentLength,children:childrenLength});}},[]);const childrenStyles=isCanvas?{contentVisibility:\"auto\"}:{};/* Add refs to first and last child */if(hasChildren){// TODO: These conditional hooks will be unsafe if hasChildren ever changes outside the canvas.\nif(!isCanvas){/**\n             * Track whether this is the initial resize event. By default this will fire on mount,\n             * which we do in the useEffect. We should only fire it on subsequent resizes.\n             */let initialResize=useRef(true);useEffect(()=>{frame.read(measure);return resize(parentRef.current,({contentSize})=>{if(!initialResize.current&&(contentSize.width||contentSize.height)){frame.read(measure);}initialResize.current=false;});},[]);}clonedChildren=Children.map(slots,(child,index)=>{var _child_props,_child_props1,_child_props2,_child_props3;let ref;if(index===0){ref=childrenRef[0];}if(index===slots.length-1){ref=childrenRef[1];}const size={width:widthType?(_child_props=child.props)===null||_child_props===void 0?void 0:_child_props.width:\"100%\",height:heightType?(_child_props1=child.props)===null||_child_props1===void 0?void 0:_child_props1.height:\"100%\"};return /*#__PURE__*/_jsx(LayoutGroup,{inherit:\"id\",children:/*#__PURE__*/_jsx(\"li\",{ref:ref,style:size,children:/*#__PURE__*/cloneElement(child,{style:{...(_child_props2=child.props)===null||_child_props2===void 0?void 0:_child_props2.style,...size,flexShrink:0,...childrenStyles},layoutId:child.props.layoutId?child.props.layoutId+\"-original-\"+index:undefined},(_child_props3=child.props)===null||_child_props3===void 0?void 0:_child_props3.children)})});});}if(!isCanvas){for(let i=0;i<duplicateBy;i++){dupedChildren=[...dupedChildren,...Children.map(slots,(child,childIndex)=>{var _child_props,_child_props1,_child_props2,_child_props3,_child_props4,_child_props5;const size={width:widthType?(_child_props=child.props)===null||_child_props===void 0?void 0:_child_props.width:\"100%\",height:heightType?(_child_props1=child.props)===null||_child_props1===void 0?void 0:_child_props1.height:\"100%\"};return /*#__PURE__*/_jsx(LayoutGroup,{inherit:\"id\",children:/*#__PURE__*/_jsx(\"li\",{style:size,\"aria-hidden\":true,children:/*#__PURE__*/cloneElement(child,{key:i+\" \"+childIndex,style:{...(_child_props2=child.props)===null||_child_props2===void 0?void 0:_child_props2.style,width:widthType?(_child_props3=child.props)===null||_child_props3===void 0?void 0:_child_props3.width:\"100%\",height:heightType?(_child_props4=child.props)===null||_child_props4===void 0?void 0:_child_props4.height:\"100%\",flexShrink:0,...childrenStyles},layoutId:child.props.layoutId?child.props.layoutId+\"-dupe-\"+i:undefined},(_child_props5=child.props)===null||_child_props5===void 0?void 0:_child_props5.children)},i+\"li\"+childIndex)},i+\"lg\"+childIndex);})];}}const animateToValue=size.children+size.children*Math.round(size.parent/size.children);const initialTime=useRef(null);const prevTime=useRef(null);const xOrY=useRef(0);const isHover=useRef(false);const isReducedMotion=useReducedMotion();const listRef=useRef(null);const animationRef=useRef(null);/**\n     * Setup animations\n     */if(!isCanvas){const isInView=useInView(parentRef);/**\n         * If this is an animation we can hardware accelerate, animate with WAAPI\n         */if(supportsAcceleratedAnimations){useEffect(()=>{if(isReducedMotion||!animateToValue||!speed){return;}animationRef.current=listRef.current.animate({transform:[transformer(0),transformer(animateToValue)]},{duration:Math.abs(animateToValue)/speed*1e3,iterations:Infinity,easing:\"linear\"});return()=>animationRef.current.cancel();},[hoverFactor,animateToValue,speed]);}else{/**\n             * If we can't accelerate this animation because we have a hoverFactor defined\n             * animate with a rAF loop.\n             */useAnimationFrame(t=>{if(!animateToValue||isReducedMotion||supportsAcceleratedAnimations){return;}/**\n                 * In case this animation is delayed from starting because we're running a bunch\n                 * of other work, we want to set an initial time rather than counting from 0.\n                 * That ensures that if the animation is delayed, it starts from the first frame\n                 * rather than jumping.\n                 */if(initialTime.current===null){initialTime.current=t;}t=t-initialTime.current;const timeSince=prevTime.current===null?0:t-prevTime.current;let delta=timeSince*(speed/1e3);if(isHover.current){delta*=hoverFactor;}xOrY.current+=delta;xOrY.current=wrap(0,animateToValue,xOrY.current);prevTime.current=t;if(!isInView)return;offset.set(xOrY.current);});}}/* Fades */const fadeDirection=isHorizontal?\"to right\":\"to bottom\";const fadeWidthStart=fadeWidth/2;const fadeWidthEnd=100-fadeWidth/2;const fadeInsetStart=clamp(fadeInset,0,fadeWidthStart);const fadeInsetEnd=100-fadeInset;const fadeMask=`linear-gradient(${fadeDirection}, rgba(0, 0, 0, ${fadeAlpha}) ${fadeInsetStart}%, rgba(0, 0, 0, 1) ${fadeWidthStart}%, rgba(0, 0, 0, 1) ${fadeWidthEnd}%, rgba(0, 0, 0, ${fadeAlpha}) ${fadeInsetEnd}%)`;/* Empty state */if(!hasChildren){return /*#__PURE__*/_jsxs(\"section\",{style:placeholderStyles,children:[/*#__PURE__*/_jsx(\"div\",{style:emojiStyles,children:\"\u2728\"}),/*#__PURE__*/_jsx(\"p\",{style:titleStyles,children:\"Connect to Content\"}),/*#__PURE__*/_jsx(\"p\",{style:subtitleStyles,children:\"Add layers or components to infinitely loop on your page.\"})]});}return /*#__PURE__*/_jsx(\"section\",{style:{...containerStyle,opacity:opacity,WebkitMaskImage:fadeContent?fadeMask:undefined,MozMaskImage:fadeContent?fadeMask:undefined,maskImage:fadeContent?fadeMask:undefined,overflow:overflow?\"visible\":\"hidden\",padding:paddingValue},ref:parentRef,children:/*#__PURE__*/_jsxs(motion.ul,{ref:listRef,style:{...containerStyle,gap:gap,top:direction===\"bottom\"&&isValidNumber(animateToValue)?-animateToValue:undefined,left:direction===\"right\"&&isValidNumber(animateToValue)?-animateToValue:undefined,placeItems:alignment,position:\"relative\",flexDirection:isHorizontal?\"row\":\"column\",...style,transform:supportsAcceleratedAnimations?undefined:transform,willChange:isCanvas?\"auto\":\"transform\"},onMouseEnter:()=>{isHover.current=true;if(animationRef.current){animationRef.current.updatePlaybackRate(hoverFactor);}},onMouseLeave:()=>{isHover.current=false;if(animationRef.current){animationRef.current.updatePlaybackRate(1);}},children:[clonedChildren,dupedChildren]})});}/* Default Properties */Ticker.defaultProps={gap:10,padding:10,sizingOptions:{widthType:true,heightType:true},fadeOptions:{fadeContent:true,overflow:false,fadeWidth:25,fadeAlpha:0,fadeInset:0},direction:true};/* Property Controls */addPropertyControls(Ticker,{slots:{type:ControlType.Array,title:\"Children\",control:{type:ControlType.ComponentInstance}},speed:{type:ControlType.Number,title:\"Speed\",min:0,max:1e3,defaultValue:100,unit:\"%\",displayStepper:true,step:5},direction:{type:ControlType.Enum,title:\"Direction\",options:[\"left\",\"right\",\"top\",\"bottom\"],optionIcons:[\"direction-left\",\"direction-right\",\"direction-up\",\"direction-down\"],optionTitles:[\"Left\",\"Right\",\"Top\",\"Bottom\"],defaultValue:\"left\",displaySegmentedControl:true},alignment:{type:ControlType.Enum,title:\"Align\",options:[\"flex-start\",\"center\",\"flex-end\"],optionIcons:{direction:{right:[\"align-top\",\"align-middle\",\"align-bottom\"],left:[\"align-top\",\"align-middle\",\"align-bottom\"],top:[\"align-left\",\"align-center\",\"align-right\"],bottom:[\"align-left\",\"align-center\",\"align-right\"]}},defaultValue:\"center\",displaySegmentedControl:true},gap:{type:ControlType.Number,title:\"Gap\"},padding:{title:\"Padding\",type:ControlType.FusedNumber,toggleKey:\"paddingPerSide\",toggleTitles:[\"Padding\",\"Padding per side\"],valueKeys:[\"paddingTop\",\"paddingRight\",\"paddingBottom\",\"paddingLeft\"],valueLabels:[\"T\",\"R\",\"B\",\"L\"],min:0},sizingOptions:{type:ControlType.Object,title:\"Sizing\",controls:{widthType:{type:ControlType.Boolean,title:\"Width\",enabledTitle:\"Auto\",disabledTitle:\"Stretch\",defaultValue:true},heightType:{type:ControlType.Boolean,title:\"Height\",enabledTitle:\"Auto\",disabledTitle:\"Stretch\",defaultValue:true}}},fadeOptions:{type:ControlType.Object,title:\"Clipping\",controls:{fadeContent:{type:ControlType.Boolean,title:\"Fade\",defaultValue:true},overflow:{type:ControlType.Boolean,title:\"Overflow\",enabledTitle:\"Show\",disabledTitle:\"Hide\",defaultValue:false,hidden(props){return props.fadeContent===true;}},fadeWidth:{type:ControlType.Number,title:\"Width\",defaultValue:25,min:0,max:100,unit:\"%\",hidden(props){return props.fadeContent===false;}},fadeInset:{type:ControlType.Number,title:\"Inset\",defaultValue:0,min:0,max:100,unit:\"%\",hidden(props){return props.fadeContent===false;}},fadeAlpha:{type:ControlType.Number,title:\"Opacity\",defaultValue:0,min:0,max:1,step:.05,hidden(props){return props.fadeContent===false;}}}},hoverFactor:{type:ControlType.Number,title:\"Hover\",min:0,max:1,unit:\"x\",defaultValue:1,step:.1,displayStepper:true,description:\"Slows down the speed while you are hovering.\"}});/* Placeholder Styles */const containerStyle={display:\"flex\",width:\"100%\",height:\"100%\",maxWidth:\"100%\",maxHeight:\"100%\",placeItems:\"center\",margin:0,padding:0,listStyleType:\"none\",textIndent:\"none\"};/* Styles */const placeholderStyles={display:\"flex\",width:\"100%\",height:\"100%\",placeContent:\"center\",placeItems:\"center\",flexDirection:\"column\",color:\"#96F\",background:\"rgba(136, 85, 255, 0.1)\",fontSize:11,overflow:\"hidden\",padding:\"20px 20px 30px 20px\"};const emojiStyles={fontSize:32,marginBottom:10};const titleStyles={margin:0,marginBottom:10,fontWeight:600,textAlign:\"center\"};const subtitleStyles={margin:0,opacity:.7,maxWidth:150,lineHeight:1.5,textAlign:\"center\"};/* Clamp function, used for fadeInset */const clamp=(num,min,max)=>Math.min(Math.max(num,min),max);const isValidNumber=value=>typeof value===\"number\"&&!isNaN(value);\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"Ticker\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\",\"framerIntrinsicHeight\":\"200\",\"framerSupportedLayoutHeight\":\"fixed\",\"framerDisableUnlink\":\"*\",\"framerIntrinsicWidth\":\"400\",\"framerSupportedLayoutWidth\":\"fixed\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Ticker.map", "// Generated by Framer (38fb4ea)\nimport{jsx as _jsx}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,Image,Link,optimizeAppear,RichText,useComponentViewport,useLocaleInfo,useVariantState,withCSS,withFX}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";const RichTextWithFX=withFX(RichText);const MotionDivWithFX=withFX(motion.div);const enabledGestures={jrZMsryTN:{hover:true}};const cycleOrder=[\"jrZMsryTN\"];const serializationHash=\"framer-avgVE\";const variantClassNames={jrZMsryTN:\"framer-v-3r07nz\"};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 toResponsiveImage=value=>{if(typeof value===\"object\"&&value!==null&&typeof value.src===\"string\"){return value;}return typeof value===\"string\"?{src:value}:undefined;};const transition1={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const transition2={delay:0,duration:.3,ease:[.12,.23,.5,1],type:\"tween\"};const animation={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition2,x:0,y:0};const animation1={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition2,x:0,y:0};const animation2={opacity:.001,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0};const transition3={delay:0,duration:.3,ease:[.15,.45,.15,1.35],type:\"tween\"};const animation3={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:.5,skewX:0,skewY:0,transition:transition3,x:0,y:0};const animation4={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition3,x:0,y:0};const animation5={opacity:.001,rotate:0,rotateX:0,rotateY:0,scale:.5,skewX:0,skewY:0,x:0,y:0};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion(React.Fragment);const getProps=({height,id,image,link,name1,width,...props})=>{var _ref,_ref1;return{...props,H_AmHrY7m:link!==null&&link!==void 0?link:props.H_AmHrY7m,OBCK_ixr9:(_ref=image!==null&&image!==void 0?image:props.OBCK_ixr9)!==null&&_ref!==void 0?_ref:{src:\"https://framerusercontent.com/images/J9rc21DaagJskVJEeBwOszEUDrg.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/J9rc21DaagJskVJEeBwOszEUDrg.png?scale-down-to=1024 727w,https://framerusercontent.com/images/J9rc21DaagJskVJEeBwOszEUDrg.png 892w\"},Y7s7YoQbs:(_ref1=name1!==null&&name1!==void 0?name1:props.Y7s7YoQbs)!==null&&_ref1!==void 0?_ref1:\"Leonardo\"};};const createLayoutDependency=(props,variants)=>variants.join(\"-\")+props.layoutDependency;const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,OBCK_ixr9,Y7s7YoQbs,H_AmHrY7m,...restProps}=getProps(props);const{baseVariant,classNames,gestureVariant,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"jrZMsryTN\",enabledGestures,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const ref1=React.useRef(null);const isDisplayed=()=>{if(gestureVariant===\"jrZMsryTN-hover\")return true;return false;};const defaultLayoutId=React.useId();const sharedStyleClassNames=[];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(Link,{...addPropertyOverrides({\"jrZMsryTN-hover\":{href:H_AmHrY7m,openInNewTab:false,smoothScroll:true}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(Image,{...restProps,background:{alt:\"\",fit:\"fill\",sizes:(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\",...toResponsiveImage(OBCK_ixr9),...{positionX:\"center\",positionY:\"center\"}},className:`${cx(serializationHash,...sharedStyleClassNames,\"framer-3r07nz\",className,classNames)} framer-1098f45`,\"data-framer-name\":\"Variant 1\",layoutDependency:layoutDependency,layoutId:\"jrZMsryTN\",onHoverEnd:()=>setGestureState({isHovered:false}),onHoverStart:()=>setGestureState({isHovered:true}),onTap:()=>setGestureState({isPressed:false}),onTapCancel:()=>setGestureState({isPressed:false}),onTapStart:()=>setGestureState({isPressed:true}),ref:ref!==null&&ref!==void 0?ref:ref1,style:{borderBottomLeftRadius:20,borderBottomRightRadius:20,borderTopLeftRadius:20,borderTopRightRadius:20,...style},...addPropertyOverrides({\"jrZMsryTN-hover\":{\"data-framer-name\":undefined,as:\"a\"}},baseVariant,gestureVariant),children:isDisplayed()&&/*#__PURE__*/_jsx(MotionDivWithFX,{className:\"framer-1u1ivln\",layoutDependency:layoutDependency,layoutId:\"vH8xLSFYl\",style:{backdropFilter:\"blur(0px)\",backgroundColor:\"rgba(0, 0, 0, 0)\",borderBottomLeftRadius:0,borderBottomRightRadius:0,borderTopLeftRadius:0,borderTopRightRadius:0,WebkitBackdropFilter:\"blur(0px)\"},variants:{\"jrZMsryTN-hover\":{backgroundColor:\"rgba(0, 0, 0, 0.73)\",borderBottomLeftRadius:20,borderBottomRightRadius:20,borderTopLeftRadius:20,borderTopRightRadius:20,transformPerspective:1200}},...addPropertyOverrides({\"jrZMsryTN-hover\":{__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,\"data-framer-appear-id\":\"1f46dxl\",animate:optimizeAppear(\"animate\",\"1f46dxl\",animation1,\"12b66wr\"),exit:animation,initial:optimizeAppear(\"initial\",\"1f46dxl\",animation2,\"12b66wr\")}},baseVariant,gestureVariant),children:isDisplayed()&&/*#__PURE__*/_jsx(RichTextWithFX,{__fromCanvasComponent:true,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,animate:optimizeAppear(\"animate\",\"11rjmap\",animation4,\"3r07nz\"),children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7TnVuaXRvLTcwMA==\",\"--framer-font-family\":'\"Nunito\", \"Nunito Placeholder\", sans-serif',\"--framer-font-size\":\"21px\",\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"180%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"Leonardo\"})}),className:\"framer-11rjmap\",\"data-framer-appear-id\":\"11rjmap\",exit:animation3,fonts:[\"GF;Nunito-700\"],initial:optimizeAppear(\"initial\",\"11rjmap\",animation5,\"3r07nz\"),layoutDependency:layoutDependency,layoutId:\"rMvVigibf\",style:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\",transformPerspective:1200},text:Y7s7YoQbs,verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({\"jrZMsryTN-hover\":{\"data-framer-appear-id\":\"1gplmsg\",animate:optimizeAppear(\"animate\",\"1gplmsg\",animation4,\"12b66wr\"),initial:optimizeAppear(\"initial\",\"1gplmsg\",animation5,\"12b66wr\")}},baseVariant,gestureVariant)})})})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-avgVE.framer-1098f45, .framer-avgVE .framer-1098f45 { display: block; }\",\".framer-avgVE.framer-3r07nz { cursor: pointer; height: 219px; overflow: hidden; position: relative; width: 156px; will-change: var(--framer-will-change-override, transform); }\",\".framer-avgVE .framer-1u1ivln { align-content: center; align-items: center; bottom: 0px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; justify-content: center; left: 0px; overflow: visible; padding: 0px; position: absolute; right: 0px; top: 0px; }\",\".framer-avgVE .framer-11rjmap { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-avgVE .framer-1u1ivln { gap: 0px; } .framer-avgVE .framer-1u1ivln > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-avgVE .framer-1u1ivln > :first-child { margin-top: 0px; } .framer-avgVE .framer-1u1ivln > :last-child { margin-bottom: 0px; } }\",\".framer-avgVE.framer-v-3r07nz.hover.framer-3r07nz { aspect-ratio: 0.7124600638977636 / 1; height: var(--framer-aspect-ratio-supported, 219px); text-decoration: none; }\",\".framer-avgVE.framer-v-3r07nz.hover .framer-1u1ivln { overflow: hidden; will-change: var(--framer-will-change-override, transform); }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 218\n * @framerIntrinsicWidth 155\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]},\"Gox2mO39G\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerVariables {\"OBCK_ixr9\":\"image\",\"Y7s7YoQbs\":\"name1\",\"H_AmHrY7m\":\"link\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const Framerb5bIbZw7M=withCSS(Component,css,\"framer-avgVE\");export default Framerb5bIbZw7M;Framerb5bIbZw7M.displayName=\"ticker card\";Framerb5bIbZw7M.defaultProps={height:218,width:155};addPropertyControls(Framerb5bIbZw7M,{OBCK_ixr9:{__defaultAssetReference:\"data:framer/asset-reference,J9rc21DaagJskVJEeBwOszEUDrg.png?originalFilename=Rectangle+189.png&preferredSize=auto\",title:\"Image\",type:ControlType.ResponsiveImage},Y7s7YoQbs:{defaultValue:\"Leonardo\",displayTextArea:false,title:\"Name\",type:ControlType.String},H_AmHrY7m:{title:\"Link\",type:ControlType.Link}});addFonts(Framerb5bIbZw7M,[{explicitInter:true,fonts:[{family:\"Nunito\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/nunito/v26/XRXI3I6Li01BKofiOc5wtlZ2di8HDFwmRTY9jo7eTWk.woff2\",weight:\"700\"}]}],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"Framerb5bIbZw7M\",\"slots\":[],\"annotations\":{\"framerIntrinsicHeight\":\"218\",\"framerVariables\":\"{\\\"OBCK_ixr9\\\":\\\"image\\\",\\\"Y7s7YoQbs\\\":\\\"name1\\\",\\\"H_AmHrY7m\\\":\\\"link\\\"}\",\"framerComponentViewportWidth\":\"true\",\"framerContractVersion\":\"1\",\"framerIntrinsicWidth\":\"155\",\"framerDisplayContentsDiv\":\"false\",\"framerImmutableVariables\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"Gox2mO39G\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./b5bIbZw7M.map", "// Generated by Framer (e182fd8)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,ComponentViewportProvider,cx,getFonts,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import Row from\"https://framerusercontent.com/modules/4YWWzj4Km7yqicjoCm2H/jO5zdHqCH551J62O4W3P/JDIZfHyyT.js\";const RowFonts=getFonts(Row);const cycleOrder=[\"oEV7pDFRq\"];const serializationHash=\"framer-SuylQ\";const variantClassNames={oEV7pDFRq:\"framer-v-is2ab0\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:40,delay:0,mass:1,stiffness:400,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion(React.Fragment);const getProps=({height,id,width,...props})=>{return{...props};};const createLayoutDependency=(props,variants)=>variants.join(\"-\")+props.layoutDependency;const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,...restProps}=getProps(props);const{baseVariant,classNames,gestureVariant,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"oEV7pDFRq\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);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:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(motion.div,{...restProps,className:cx(serializationHash,...sharedStyleClassNames,\"framer-is2ab0\",className,classNames),\"data-framer-name\":\"Variant 1\",layoutDependency:layoutDependency,layoutId:\"oEV7pDFRq\",onHoverEnd:()=>setGestureState({isHovered:false}),onHoverStart:()=>setGestureState({isHovered:true}),onTap:()=>setGestureState({isPressed:false}),onTapCancel:()=>setGestureState({isPressed:false}),onTapStart:()=>setGestureState({isPressed:true}),ref:ref!==null&&ref!==void 0?ref:ref1,style:{backgroundColor:\"var(--token-40c03004-286a-43c1-b36f-58b60663152c, rgb(242, 242, 242))\",borderBottomLeftRadius:20,borderBottomRightRadius:20,borderTopLeftRadius:20,borderTopRightRadius:20,...style},children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-w7u4gt-container\",layoutDependency:layoutDependency,layoutId:\"PkRXsLl5I-container\",children:/*#__PURE__*/_jsx(Row,{answer:\"We understand the importance of realistic and reliable training equipment in the healthcare industry, which is why we provide our clients with only the best simulation manikins on the market.\\n\\nWith years of experience in the market, we have established ourselves as a trusted source for medical simulators. We carefully design and manufacture our medical training manikins to meet the highest standards of quality and accuracy, making them perfect for training. At MedVision, we offer a wide range of hospital training manikins, from basic models for beginners to advanced options for experienced professionals. We build our products with cutting-edge technology and realistic features to provide a hands-on learning experience for our clients; if you want to improve patient care, you want MedVision. \",height:\"100%\",id:\"PkRXsLl5I\",layoutId:\"PkRXsLl5I\",question:\"MedVision is your one-stop shop for top-of-the-line medical simulators.\",style:{width:\"100%\"},variant:\"N61FsPvBt\",width:\"100%\"})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-13vgqqz\",\"data-framer-name\":\"Line\",layoutDependency:layoutDependency,layoutId:\"m3JNsYwYD\",style:{backgroundColor:\"rgba(0, 0, 0, 0.05)\"}}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-45abbd\",\"data-framer-name\":\"Line\",layoutDependency:layoutDependency,layoutId:\"X4DkUnXII\",style:{backgroundColor:\"rgba(0, 0, 0, 0.05)\"}})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-SuylQ.framer-q040o8, .framer-SuylQ .framer-q040o8 { display: block; }\",\".framer-SuylQ.framer-is2ab0 { align-content: flex-start; align-items: flex-start; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px 20px 0px 20px; position: relative; width: 1000px; will-change: var(--framer-will-change-override, transform); }\",\".framer-SuylQ .framer-w7u4gt-container { flex: none; height: auto; position: relative; width: 100%; }\",\".framer-SuylQ .framer-13vgqqz, .framer-SuylQ .framer-45abbd { flex: none; height: 1px; overflow: hidden; position: relative; width: 100%; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-SuylQ.framer-is2ab0 { gap: 0px; } .framer-SuylQ.framer-is2ab0 > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-SuylQ.framer-is2ab0 > :first-child { margin-top: 0px; } .framer-SuylQ.framer-is2ab0 > :last-child { margin-bottom: 0px; } }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 66\n * @framerIntrinsicWidth 1000\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerGCf9nKZ6u=withCSS(Component,css,\"framer-SuylQ\");export default FramerGCf9nKZ6u;FramerGCf9nKZ6u.displayName=\"Accordion\";FramerGCf9nKZ6u.defaultProps={height:66,width:1e3};addFonts(FramerGCf9nKZ6u,[{explicitInter:true,fonts:[]},...RowFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerGCf9nKZ6u\",\"slots\":[],\"annotations\":{\"framerDisplayContentsDiv\":\"false\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerContractVersion\":\"1\",\"framerImmutableVariables\":\"true\",\"framerIntrinsicWidth\":\"1000\",\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicHeight\":\"66\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./GCf9nKZ6u.map", "// Generated by Framer (ab692b1)\nimport{jsx as _jsx,jsxs as _jsxs,Fragment as _Fragment}from\"react/jsx-runtime\";import{addFonts,ChildrenCanSuspend,ComponentViewportProvider,Container,cx,FormBooleanInput,FormContainer,FormPlainTextInput,GeneratedComponentContext,getFonts,getFontsFromSharedStyle,getLoadingLazyAtYPosition,Image,Link,PathVariablesContext,PropertyOverrides,ResolveLinks,RichText,SVG,useComponentViewport,useCustomCursors,useHydratedBreakpointVariants,useIsOnFramerCanvas,useLocaleCode,useLocaleInfo,useQueryData,useRouteElementId,useRouter,withCodeBoundaryForOverrides,withCSS,withFX,withOptimizedAppearEffect}from\"framer\";import{LayoutGroup,motion}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import Ticker from\"https://framerusercontent.com/modules/B2xAlJLcN0gOnt11mSPw/l6rHYi79svcFRVrC1q12/Ticker.js\";import Download from\"https://framerusercontent.com/modules/kBkaj3LmBqcSU2IkUsBC/kvFSr6fSU7VcYZyNyfaK/Download.js\";import{Video}from\"https://framerusercontent.com/modules/lRDHiNWNVWmE0lqtoVHP/TO50RZfUZkMws8Mz1efr/Video.js\";import{Icon as Phosphor}from\"https://framerusercontent.com/modules/tYScH7LTqUtz5KUaUAYP/p8dptk4UIND8hbFWz9V7/Phosphor.js\";import TickerCard from\"#framer/local/canvasComponent/b5bIbZw7M/b5bIbZw7M.js\";import Footer from\"#framer/local/canvasComponent/br9SQJ3q8/br9SQJ3q8.js\";import ShareWidget from\"#framer/local/canvasComponent/F9w681R3J/F9w681R3J.js\";import Accordion from\"#framer/local/canvasComponent/GCf9nKZ6u/GCf9nKZ6u.js\";import Button from\"#framer/local/canvasComponent/GF7F4k9KG/GF7F4k9KG.js\";import NavigationCopy from\"#framer/local/canvasComponent/GTtoURpxg/GTtoURpxg.js\";import ScheduleADemoForm from\"#framer/local/canvasComponent/JTXy1hW7x/JTXy1hW7x.js\";import{withUTMParams}from\"#framer/local/codeFile/mW11jT4/Form.js\";import Blog from\"#framer/local/collection/UYuCStToI/UYuCStToI.js\";import*as sharedStyle from\"#framer/local/css/hhtLhvGBX/hhtLhvGBX.js\";import*as sharedStyle2 from\"#framer/local/css/LfZ1_RP_2/LfZ1_RP_2.js\";import*as sharedStyle1 from\"#framer/local/css/xpP0zGlMt/xpP0zGlMt.js\";import metadataProvider from\"#framer/local/webPageMetadata/augiA20Il/augiA20Il.js\";const NavigationCopyFonts=getFonts(NavigationCopy);const MotionDivWithOptimizedAppearEffect=withOptimizedAppearEffect(motion.div);const MotionAWithOptimizedAppearEffect=withOptimizedAppearEffect(motion.a);const DownloadFonts=getFonts(Download);const TickerCardFonts=getFonts(TickerCard);const TickerFonts=getFonts(Ticker);const ContainerWithFX=withFX(Container);const PhosphorFonts=getFonts(Phosphor);const ScheduleADemoFormFonts=getFonts(ScheduleADemoForm);const ImageWithFX=withFX(Image);const MotionDivWithFX=withFX(motion.div);const ImageWithOptimizedAppearEffect=withOptimizedAppearEffect(Image);const VideoFonts=getFonts(Video);const RichTextWithFX=withFX(RichText);const MotionAWithFX=withFX(motion.a);const ButtonFonts=getFonts(Button);const FormContainerWithUTMParams1i9vpeq=withCodeBoundaryForOverrides(FormContainer,{nodeId:\"rp6FH1TYL\",override:withUTMParams,scopeId:\"augiA20Il\"});const AccordionFonts=getFonts(Accordion);const FooterFonts=getFonts(Footer);const ShareWidgetFonts=getFonts(ShareWidget);const breakpoints={GyoKVFaps:\"(min-width: 810px) and (max-width: 1199px)\",WFTIh__jF:\"(max-width: 809px)\",WQLkyLRf1:\"(min-width: 1200px)\"};const isBrowser=()=>typeof document!==\"undefined\";const serializationHash=\"framer-5YDjC\";const variantClassNames={GyoKVFaps:\"framer-v-11jdvea\",WFTIh__jF:\"framer-v-116vbbm\",WQLkyLRf1:\"framer-v-72rtr7\"};const transition1={damping:30,delay:0,mass:1,stiffness:400,type:\"spring\"};const animation={opacity:.06,rotate:30,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition1,x:0,y:0};const animation1={opacity:.001,rotate:30,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:0,y:0};const animation2={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1.1,skewX:0,skewY:0,transition:transition1};const animation3={backgroundColor:'var(--token-e94c9d7d-0bec-47e0-9944-cf0c4701c808, rgb(255, 121, 0)) /* {\"name\":\"Orange button\"} */',opacity:1,rotate:0,rotateX:0,rotateY:0,scale:.9,skewX:0,skewY:0,transition:transition1};const transition2={damping:70,delay:.2,mass:3,stiffness:400,type:\"spring\"};const animation4={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition2,x:0,y:0};const animation5={opacity:.001,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:0,y:150};const animation6={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition2,x:0,y:0};const animation7={opacity:.001,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:150};const addImageAlt=(image,alt)=>{if(!image||typeof image!==\"object\"){return;}return{...image,alt};};const transition3={damping:97,delay:0,mass:1,stiffness:1e3,type:\"spring\"};const animation8={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:0,y:150};const transition4={damping:30,delay:.1,mass:1,stiffness:400,type:\"spring\"};const transition5={damping:30,delay:.3,mass:1,stiffness:400,type:\"spring\"};const transition6={damping:30,delay:.4,mass:1,stiffness:400,type:\"spring\"};const transformTemplate1=(_,t)=>`translateX(-50%) ${t}`;const animation9={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition1,x:0,y:0};const animation10={opacity:.001,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:0,y:0};const animation11={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:.5,skewX:0,skewY:0,transformPerspective:1200,x:0,y:0};const transition7={delay:0,duration:40,ease:[0,0,1,1],type:\"tween\"};const animation12={opacity:1,rotate:360,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0};const animation13={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:.9,skewX:0,skewY:0,transition:transition1};const toResponsiveImage=value=>{if(typeof value===\"object\"&&value!==null&&typeof value.src===\"string\"){return value;}return typeof value===\"string\"?{src:value}:undefined;};const toDateString=(value,options={},activeLocale)=>{if(typeof value!==\"string\")return\"\";const date=new Date(value);if(isNaN(date.getTime()))return\"\";const display=options.display?options.display:\"date\";const dateOptions={dateStyle:display!==\"time\"?options.dateStyle:undefined,timeStyle:display===\"date\"?undefined:\"short\",timeZone:\"UTC\"};const fallbackLocale=\"en-US\";const locale=options.locale||activeLocale||fallbackLocale;// We add a try block because an invalid language code results in a crash\ntry{return date.toLocaleString(locale,dateOptions);}catch{return date.toLocaleString(fallbackLocale,dateOptions);}};const QueryData=({query,pageSize,children})=>{const data=useQueryData(query);return children(data);};const formVariants=(form,variants,currentVariant)=>{switch(form.state){case\"success\":return variants.success??currentVariant;case\"pending\":return variants.pending??currentVariant;case\"error\":return variants.error??currentVariant;case\"incomplete\":return variants.incomplete??currentVariant;}};const HTMLStyle=({value})=>{const onCanvas=useIsOnFramerCanvas();if(onCanvas)return null;return /*#__PURE__*/_jsx(\"style\",{dangerouslySetInnerHTML:{__html:value},\"data-framer-html-style\":\"\"});};const humanReadableVariantMap={Desktop:\"WQLkyLRf1\",Phone:\"WFTIh__jF\",Tablet:\"GyoKVFaps\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"WQLkyLRf1\"};};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const fallbackRef=useRef(null);const refBinding=ref??fallbackRef;const defaultLayoutId=React.useId();const{activeLocale,setLocale}=useLocaleInfo();const componentViewport=useComponentViewport();const{style,className,layoutId,variant,rJxapUZTvTM42peFMQ,uM4QESgnlTM42peFMQ,MQyS8YPWnTM42peFMQ,vgZ_x3P30TM42peFMQ,idTM42peFMQ,...restProps}=getProps(props);React.useEffect(()=>{const metadata=metadataProvider(undefined,activeLocale);if(metadata.robots){let robotsTag=document.querySelector('meta[name=\"robots\"]');if(robotsTag){robotsTag.setAttribute(\"content\",metadata.robots);}else{robotsTag=document.createElement(\"meta\");robotsTag.setAttribute(\"name\",\"robots\");robotsTag.setAttribute(\"content\",metadata.robots);document.head.appendChild(robotsTag);}}},[undefined,activeLocale]);React.useInsertionEffect(()=>{const metadata=metadataProvider(undefined,activeLocale);document.title=metadata.title||\"\";if(metadata.viewport){document.querySelector('meta[name=\"viewport\"]')?.setAttribute(\"content\",metadata.viewport);}},[undefined,activeLocale]);const[baseVariant,hydratedBaseVariant]=useHydratedBreakpointVariants(variant,breakpoints,false);const gestureVariant=undefined;const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className,sharedStyle2.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const isDisplayed=()=>{if(!isBrowser())return true;if(baseVariant===\"WFTIh__jF\")return false;return true;};const router=useRouter();const elementId=useRouteElementId(\"Mvt0sD87O\");const ref1=React.useRef(null);const isDisplayed1=()=>{if(!isBrowser())return true;if(baseVariant===\"WFTIh__jF\")return true;return false;};const elementId1=useRouteElementId(\"bva33aJ8u\");const ref2=React.useRef(null);const elementId2=useRouteElementId(\"ksqOnB5g7\");const ref3=React.useRef(null);const elementId3=useRouteElementId(\"rNDMJ3iie\");const ref4=React.useRef(null);const activeLocaleCode=useLocaleCode();useCustomCursors({});return /*#__PURE__*/_jsx(GeneratedComponentContext.Provider,{value:{primaryVariantId:\"WQLkyLRf1\",variantClassNames},children:/*#__PURE__*/_jsxs(LayoutGroup,{id:layoutId??defaultLayoutId,children:[/*#__PURE__*/_jsx(HTMLStyle,{value:\"html body { background: rgb(255, 255, 255); }\"}),/*#__PURE__*/_jsxs(motion.div,{...restProps,className:cx(scopingClassNames,\"framer-72rtr7\",className),ref:refBinding,style:{...style},children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{GyoKVFaps:{height:64,width:\"100vw\",y:0},WFTIh__jF:{height:64,width:\"100vw\",y:0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:80,width:\"1160px\",y:20,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1tg6fnw-container\",\"data-framer-name\":\"header\",layoutScroll:true,name:\"header\",nodeId:\"Un8mqRsmf\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{GyoKVFaps:{style:{width:\"100%\"},variant:\"iOjsaarb_\"},WFTIh__jF:{style:{width:\"100%\"},variant:\"iOjsaarb_\"}},children:/*#__PURE__*/_jsx(NavigationCopy,{height:\"100%\",id:\"Un8mqRsmf\",layoutId:\"Un8mqRsmf\",name:\"header\",style:{height:\"100%\",width:\"100%\"},variant:\"Qfr0fh5SI\",width:\"100%\"})})})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-e4tjwc\",\"data-framer-name\":\"main wrapper\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1ks7fl5\",\"data-framer-name\":\"Hero\",children:[/*#__PURE__*/_jsx(MotionDivWithOptimizedAppearEffect,{animate:animation,className:\"framer-b464a2\",\"data-framer-appear-id\":\"b464a2\",initial:animation1,optimized:true,style:{rotate:30,transformPerspective:1200},children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{WFTIh__jF:{svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 1243 380\"><path d=\"M 1104.267 200.962 L 1229.195 352.83 C 1224.576 356.003 1219.744 358.855 1214.733 361.365 C 1203.354 367.091 1190.716 369.86 1177.984 369.418 C 1165.615 369.799 1153.336 367.197 1142.185 361.833 C 1133.337 357.197 1125.329 351.11 1118.495 343.827 C 1107.338 331.755 1098.578 317.768 1088.137 305.213 L 1053.772 263.749 Z M 152.67 291.46 C 134.186 315.166 113.318 348.095 87.01 362.549 C 63.867 372.958 37.371 372.958 14.229 362.549 C 9.323 359.984 4.572 357.134 0 354.014 L 229.238 74.422 C 242.985 59.514 255.078 42.692 270.023 28.237 C 278.036 20.314 287.041 13.461 296.814 7.848 C 308.345 2.345 321.024 -0.33 333.797 0.044 C 346.16 -0.34 358.434 2.256 369.58 7.615 C 378.439 12.248 386.457 18.335 393.3 25.621 C 399.69 32.738 415.586 53.098 409.883 46.959 L 408.23 45.293 C 377.887 21.602 343.741 55.962 330.229 72.302 C 326.441 77.272 168.083 272.752 152.67 291.46 Z M 342.337 89.358 C 360.104 60.698 401.825 40.075 426.013 68.517 L 609.026 287.675 C 588.641 309.715 563.62 339.559 522.499 307.581 L 342.337 89.373 Z M 894.931 78.455 L 719.741 304.497 C 707.102 320.64 693.481 335.991 678.956 350.462 C 670.996 358.114 661.973 364.577 652.166 369.652 C 640.635 375.161 627.957 377.841 615.183 377.472 C 602.839 377.927 590.566 375.411 579.399 370.135 C 570.592 365.419 562.587 359.342 555.679 352.128 C 549.64 345.42 544.098 336.885 539.096 329.372 C 567.773 351.88 607.359 323.453 623.255 301.662 C 645.541 271.086 786.6 96.71 799.863 80.122 C 812.415 63.906 825.953 48.477 840.4 33.922 C 848.379 26.398 857.306 19.947 866.956 14.732 C 878.412 9.252 891.008 6.572 903.705 6.913 C 916.148 6.527 928.503 9.123 939.737 14.484 C 948.603 19.1 956.619 25.188 963.442 32.49 L 971.032 41.025 C 942.106 26.103 912.479 58.33 895.633 78.455 Z M 992.133 65.901 L 1028.634 113.298 L 979.557 174.42 L 910.578 89.841 C 928.594 65.185 968.414 36.977 992.133 65.901 Z\" fill=\"rgb(38,82,207)\"></path><path d=\"M 948.526 358.998 C 943.319 362.965 937.764 366.452 931.928 369.418 C 920.533 375.097 907.907 377.864 895.179 377.472 C 882.808 377.881 870.522 375.278 859.381 369.886 C 850.461 365.364 842.434 359.263 835.691 351.88 C 829.194 345.033 823.17 337.752 817.66 330.088 C 844.933 345.011 881.199 318.718 899.449 296.678 L 1078.924 79.888 L 1119.709 33.688 C 1136.254 16.467 1159.096 6.711 1182.985 6.665 C 1195.355 6.288 1207.634 8.895 1218.783 14.265 C 1222.366 16.384 1225.847 18.664 1229.21 21.134 C 1149.804 115.9 1074.639 210.681 998.553 305.447 C 983.253 325.197 966.191 343.517 947.575 360.182 M 694.384 182.239 C 650.294 129.872 612.843 85.339 568.036 33.206 C 573.213 29.6 578.682 26.432 584.385 23.735 C 607.311 12.715 634.007 12.715 656.933 23.735 C 677.381 40.284 695.698 59.303 711.464 80.355 L 744.879 118.502 Z M 795.856 303.313 L 767.633 271.086 L 817.192 207.363 L 883.802 286.958 C 862.233 310.416 820.278 331.74 795.856 303.328 Z\" fill=\"rgb(255,122,0)\"></path></svg>',svgContentId:11388782658}},children:/*#__PURE__*/_jsx(SVG,{className:\"framer-6jd4yk\",\"data-framer-name\":\"logo\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 1717 525\"><path d=\"M 1525.363 277.644 L 1697.931 487.463 C 1691.55 491.847 1684.875 495.787 1677.953 499.255 C 1662.235 507.165 1644.778 510.991 1627.191 510.381 C 1610.105 510.907 1593.144 507.312 1577.741 499.901 C 1565.519 493.496 1554.457 485.087 1545.017 475.024 C 1529.605 458.345 1517.505 439.021 1503.082 421.676 L 1455.612 364.39 Z M 210.888 402.675 C 185.355 435.427 156.53 480.92 120.19 500.89 C 88.222 515.271 51.623 515.271 19.655 500.89 C 12.878 497.346 6.316 493.409 0 489.098 L 316.655 102.819 C 335.643 82.223 352.349 58.982 372.993 39.012 C 384.061 28.065 396.5 18.597 409.999 10.843 C 425.928 3.24 443.441 -0.456 461.085 0.061 C 478.163 -0.47 495.117 3.118 510.515 10.52 C 522.751 16.922 533.826 25.331 543.279 35.397 C 552.106 45.231 574.064 73.359 566.186 64.878 L 563.903 62.576 C 521.988 29.844 474.821 77.316 456.156 99.891 C 450.925 106.757 232.179 376.829 210.888 402.675 Z M 472.882 123.456 C 497.425 83.859 555.056 55.367 588.466 94.662 L 841.269 397.445 C 813.111 427.895 778.548 469.128 721.746 424.947 L 472.882 123.476 Z M 1236.2 108.392 L 994.204 420.687 C 976.745 442.99 957.93 464.198 937.866 484.191 C 926.871 494.763 914.407 503.692 900.859 510.704 C 884.932 518.314 867.419 522.018 849.774 521.507 C 832.723 522.137 815.77 518.66 800.344 511.37 C 788.18 504.855 777.122 496.459 767.58 486.493 C 759.237 477.225 751.581 465.433 744.673 455.054 C 784.285 486.15 838.967 446.876 860.924 416.769 C 891.709 374.527 1086.558 133.613 1104.879 110.694 C 1122.218 88.291 1140.918 66.975 1160.874 46.866 C 1171.896 36.471 1184.228 27.559 1197.557 20.354 C 1213.382 12.783 1230.781 9.08 1248.32 9.551 C 1265.508 9.017 1282.574 12.604 1298.092 20.011 C 1310.339 26.388 1321.411 34.8 1330.837 44.888 L 1341.32 56.68 C 1301.365 36.063 1260.44 80.588 1237.169 108.392 Z M 1370.469 91.047 L 1420.888 156.531 L 1353.097 240.975 L 1257.814 124.122 C 1282.7 90.058 1337.705 51.087 1370.469 91.047 Z\" fill=\"rgb(38,82,207)\"></path><path d=\"M 1310.233 495.984 C 1303.04 501.464 1295.367 506.283 1287.306 510.381 C 1271.565 518.226 1254.124 522.049 1236.543 521.507 C 1219.454 522.073 1202.483 518.476 1187.093 511.027 C 1174.771 504.779 1163.684 496.351 1154.369 486.15 C 1145.395 476.69 1137.074 466.631 1129.463 456.043 C 1167.136 476.66 1217.232 440.334 1242.441 409.884 L 1490.356 110.371 L 1546.694 46.543 C 1569.548 22.75 1601.101 9.272 1634.099 9.208 C 1651.187 8.688 1668.148 12.289 1683.549 19.708 C 1688.498 22.636 1693.305 25.786 1697.951 29.198 C 1588.265 160.125 1484.437 291.072 1379.337 421.999 C 1358.203 449.285 1334.634 474.595 1308.92 497.619 M 959.177 251.778 C 898.274 179.429 846.542 117.903 784.649 45.877 C 791.799 40.895 799.353 36.518 807.232 32.792 C 838.9 17.567 875.777 17.567 907.445 32.792 C 935.69 55.656 960.992 81.931 982.77 111.017 L 1028.927 163.719 Z M 1099.345 419.051 L 1060.359 374.527 L 1128.816 286.488 L 1220.827 396.456 C 1191.032 428.864 1133.079 458.325 1099.345 419.071 Z\" fill=\"rgb(255,122,0)\"></path></svg>',svgContentId:11485651847,withExternalLayout:true})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1e5o15s\",\"data-framer-name\":\"Info block\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{GyoKVFaps:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h1\",{style:{\"--font-selector\":\"RlM7TnVuaXRvLWJvbGQ=\",\"--framer-font-family\":'\"Nunito\", \"Nunito Placeholder\", sans-serif',\"--framer-font-size\":\"60px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.01em\",\"--framer-line-height\":\"100%\",\"--framer-text-alignment\":\"center\"},children:[\"Innovative solutions for \",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-53662e5a-6ce0-4175-8a47-70b89b47e3ee, rgb(28, 59, 145))\"},children:\"simulation training\"})]})})},WFTIh__jF:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h1\",{style:{\"--font-selector\":\"RlM7TnVuaXRvLWJvbGQ=\",\"--framer-font-family\":'\"Nunito\", \"Nunito Placeholder\", sans-serif',\"--framer-font-size\":\"44px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.01em\",\"--framer-line-height\":\"100%\"},children:[\"Innovative solutions for \",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-53662e5a-6ce0-4175-8a47-70b89b47e3ee, rgb(28, 59, 145))\"},children:\"simulation training\"})]})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h1\",{style:{\"--font-selector\":\"RlM7TnVuaXRvLWJvbGQ=\",\"--framer-font-family\":'\"Nunito\", \"Nunito Placeholder\", sans-serif',\"--framer-font-size\":\"60px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.01em\",\"--framer-line-height\":\"100%\"},children:[\"Innovative solutions for \",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-53662e5a-6ce0-4175-8a47-70b89b47e3ee, rgb(28, 59, 145))\"},children:\"simulation training\"})]})}),className:\"framer-143bj78\",\"data-framer-name\":\"Innovative solutions\",fonts:[\"FS;Nunito-bold\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1o1h3zy\",children:[/*#__PURE__*/_jsx(Link,{href:{hash:\":bva33aJ8u\",webPageId:\"augiA20Il\"},motionChild:true,nodeId:\"o4KbN027S\",openInNewTab:false,scopeId:\"augiA20Il\",smoothScroll:true,children:/*#__PURE__*/_jsxs(MotionAWithOptimizedAppearEffect,{animate:animation4,className:\"framer-ygsyk6 framer-lux5qc\",\"data-framer-appear-id\":\"ygsyk6\",\"data-framer-name\":\"button\",initial:animation5,optimized:true,style:{transformPerspective:1200},whileHover:animation2,whileTap:animation3,children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{WFTIh__jF:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TnVuaXRvLTcwMA==\",\"--framer-font-family\":'\"Nunito\", \"Nunito Placeholder\", sans-serif',\"--framer-font-size\":\"21px\",\"--framer-font-weight\":\"700\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"View simulators family\"})}),fonts:[\"GF;Nunito-700\"]}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TnVuaXRvLTYwMA==\",\"--framer-font-family\":'\"Nunito\", \"Nunito Placeholder\", sans-serif',\"--framer-font-size\":\"21px\",\"--framer-font-weight\":\"600\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"View simulators family\"})}),className:\"framer-qprfj1\",\"data-framer-name\":\"View simulators family\",fonts:[\"GF;Nunito-600\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1oqz31v\",\"data-framer-name\":\"Frame 738001420\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 40 40\"><path d=\"M 0 20 C 0 8.954 8.954 0 20 0 C 31.046 0 40 8.954 40 20 C 40 31.046 31.046 40 20 40 C 8.954 40 0 31.046 0 20 Z\" fill=\"rgb(255, 255, 255)\"></path><path d=\"M 15.851 13.491 L 25.633 13.491 C 26.233 13.491 26.72 13.977 26.72 14.578 L 26.72 24.36 C 26.72 24.96 26.233 25.447 25.633 25.447 C 25.033 25.447 24.546 24.96 24.546 24.36 L 24.546 17.202 L 15.533 26.215 C 15.108 26.64 14.42 26.64 13.995 26.215 C 13.571 25.791 13.571 25.103 13.995 24.678 L 23.009 15.665 L 15.851 15.665 C 15.251 15.665 14.764 15.178 14.764 14.578 C 14.764 13.977 15.251 13.491 15.851 13.491 Z\" fill=\"var(--token-e94c9d7d-0bec-47e0-9944-cf0c4701c808, rgb(255, 121, 0)) /* {&quot;name&quot;:&quot;Orange button&quot;} */\"></path></svg>',svgContentId:11102317287,withExternalLayout:true})]})}),/*#__PURE__*/_jsx(MotionDivWithOptimizedAppearEffect,{animate:animation6,className:\"framer-mq3s5r\",\"data-border\":true,\"data-framer-appear-id\":\"mq3s5r\",initial:animation7,optimized:true,children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-12b16g0-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"EfmlZLdIL\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Download,{fontControl:{fontFamily:'\"Nunito\", \"Nunito Placeholder\", sans-serif',fontSize:\"21px\",fontStyle:\"normal\",fontWeight:700,letterSpacing:\"0em\",lineHeight:\"1em\"},height:\"100%\",hoverOptions:{backgroundColor:\"rgb(51, 51, 51)\",color:\"rgb(255, 255, 255)\",scale:1.1,transition:{damping:30,delay:0,mass:1,stiffness:400,type:\"spring\"}},iconOptions:{alignment:\"end\",color:\"var(--token-e94c9d7d-0bec-47e0-9944-cf0c4701c808, rgb(255, 121, 0))\",size:20,type:\"Default\"},id:\"EfmlZLdIL\",layoutId:\"EfmlZLdIL\",srcFile:\"https://framerusercontent.com/assets/llnuYex86PiNK8YtxSCwHIu4A.pdf\",srcType:\"Upload\",srcURL:\"\",style:{height:\"100%\"},styleOptions:{backgroundColor:\"rgba(245, 245, 242, 0)\",borderRadius:999,color:\"var(--token-35620033-eb15-4a82-82d4-aef6ded4849d, rgb(0, 0, 0))\",gap:12,padding:10,paddingBottom:12,paddingLeft:0,paddingPerSide:true,paddingRight:0,paddingTop:12},text:\"Download catalog\",width:\"100%\"})})})})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1yvu9zc\",children:[isDisplayed()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1n57yt1-container hidden-116vbbm\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"pJld_PIiG\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{GyoKVFaps:{direction:\"right\"}},children:/*#__PURE__*/_jsx(Ticker,{alignment:\"center\",direction:\"top\",fadeOptions:{fadeAlpha:.3,fadeContent:false,fadeInset:0,fadeWidth:15,overflow:false},gap:12,height:\"100%\",hoverFactor:.2,id:\"pJld_PIiG\",layoutId:\"pJld_PIiG\",padding:0,paddingBottom:0,paddingLeft:0,paddingPerSide:false,paddingRight:0,paddingTop:0,sizingOptions:{heightType:true,widthType:true},slots:[/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"rnfBxMrY1\"},implicitPathVariables:undefined}],children:resolvedLinks=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:219,width:\"156px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-1jejdfq-container\",inComponentSlot:true,nodeId:\"gSW3F_7Vz\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(TickerCard,{H_AmHrY7m:resolvedLinks[0],height:\"100%\",id:\"gSW3F_7Vz\",layoutId:\"gSW3F_7Vz\",style:{height:\"100%\",width:\"100%\"},width:\"100%\",Y7s7YoQbs:\"Leonardo\"})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"CPv2RMSw8\"},implicitPathVariables:undefined}],children:resolvedLinks1=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:219,width:\"156px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-1bb533c-container\",inComponentSlot:true,nodeId:\"ZXEVI6osi\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(TickerCard,{H_AmHrY7m:resolvedLinks1[0],height:\"100%\",id:\"ZXEVI6osi\",layoutId:\"ZXEVI6osi\",OBCK_ixr9:addImageAlt({src:\"https://framerusercontent.com/images/MPnZoSCCqc0WpMc0Qj1zffy6Ds.png\",srcSet:\"https://framerusercontent.com/images/MPnZoSCCqc0WpMc0Qj1zffy6Ds.png 446w\"},\"\"),style:{height:\"100%\",width:\"100%\"},width:\"100%\",Y7s7YoQbs:\"Arthur\"})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"qgPFDxNzG\"},implicitPathVariables:undefined}],children:resolvedLinks2=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:219,width:\"156px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-1civrfr-container\",inComponentSlot:true,nodeId:\"daN_jvwMo\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(TickerCard,{H_AmHrY7m:resolvedLinks2[0],height:\"100%\",id:\"daN_jvwMo\",layoutId:\"daN_jvwMo\",OBCK_ixr9:addImageAlt({src:\"https://framerusercontent.com/images/vXdCy3IC57YHkXOQJQ4L23BumU.png\",srcSet:\"https://framerusercontent.com/images/vXdCy3IC57YHkXOQJQ4L23BumU.png 446w\"},\"\"),style:{height:\"100%\",width:\"100%\"},width:\"100%\",Y7s7YoQbs:\"MATT\"})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"ZvYUDkala\"},implicitPathVariables:undefined}],children:resolvedLinks3=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:219,width:\"156px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-14g5cni-container\",inComponentSlot:true,nodeId:\"MEnMhHImN\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(TickerCard,{H_AmHrY7m:resolvedLinks3[0],height:\"100%\",id:\"MEnMhHImN\",layoutId:\"MEnMhHImN\",OBCK_ixr9:addImageAlt({src:\"https://framerusercontent.com/images/OoVWf9Y5KhRvd7uIaBleIqCZbU.png\",srcSet:\"https://framerusercontent.com/images/OoVWf9Y5KhRvd7uIaBleIqCZbU.png 446w\"},\"\"),style:{height:\"100%\",width:\"100%\"},width:\"100%\",Y7s7YoQbs:\"Mia\"})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"zQRe74nTR\"},implicitPathVariables:undefined}],children:resolvedLinks4=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:219,width:\"156px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-m5gbmk-container\",inComponentSlot:true,nodeId:\"F8DnTMwKj\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(TickerCard,{H_AmHrY7m:resolvedLinks4[0],height:\"100%\",id:\"F8DnTMwKj\",layoutId:\"F8DnTMwKj\",OBCK_ixr9:addImageAlt({src:\"https://framerusercontent.com/images/wEx5UKSQr9NDh4cPsPYUV2BLyg.jpg\",srcSet:\"https://framerusercontent.com/images/wEx5UKSQr9NDh4cPsPYUV2BLyg.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/wEx5UKSQr9NDh4cPsPYUV2BLyg.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/wEx5UKSQr9NDh4cPsPYUV2BLyg.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/wEx5UKSQr9NDh4cPsPYUV2BLyg.jpg 3600w\"},\"\"),style:{height:\"100%\",width:\"100%\"},width:\"100%\",Y7s7YoQbs:\"Lisa\"})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"rnfBxMrY1\"},implicitPathVariables:undefined}],children:resolvedLinks5=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:219,width:\"156px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-1tf9so0-container\",inComponentSlot:true,nodeId:\"MJ_7vKAvY\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(TickerCard,{H_AmHrY7m:resolvedLinks5[0],height:\"100%\",id:\"MJ_7vKAvY\",layoutId:\"MJ_7vKAvY\",OBCK_ixr9:addImageAlt({src:\"https://framerusercontent.com/images/xpnsZ3u9SnB0IHc2QtADpremkKE.png\",srcSet:\"https://framerusercontent.com/images/xpnsZ3u9SnB0IHc2QtADpremkKE.png 446w\"},\"\"),style:{height:\"100%\",width:\"100%\"},width:\"100%\",Y7s7YoQbs:\"Leonardo\"})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"qgPFDxNzG\"},implicitPathVariables:undefined}],children:resolvedLinks6=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:219,width:\"156px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-10eao7n-container\",inComponentSlot:true,nodeId:\"xA9UwbiP5\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(TickerCard,{H_AmHrY7m:resolvedLinks6[0],height:\"100%\",id:\"xA9UwbiP5\",layoutId:\"xA9UwbiP5\",OBCK_ixr9:addImageAlt({src:\"https://framerusercontent.com/images/sRj5NIRbeZD8m1yYZxEqVR5MfA.png\",srcSet:\"https://framerusercontent.com/images/sRj5NIRbeZD8m1yYZxEqVR5MfA.png 446w\"},\"\"),style:{height:\"100%\",width:\"100%\"},width:\"100%\",Y7s7YoQbs:\"MATT\"})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"ZvYUDkala\"},implicitPathVariables:undefined}],children:resolvedLinks7=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:219,width:\"156px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-5vj3u2-container\",inComponentSlot:true,nodeId:\"kj21AXqSA\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(TickerCard,{H_AmHrY7m:resolvedLinks7[0],height:\"100%\",id:\"kj21AXqSA\",layoutId:\"kj21AXqSA\",OBCK_ixr9:addImageAlt({src:\"https://framerusercontent.com/images/SwzyOvlNoqZjwiEChx0c085oSJ4.png\"},\"\"),style:{height:\"100%\",width:\"100%\"},width:\"100%\",Y7s7YoQbs:\"Mia\"})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"IvvIuUQPN\"},implicitPathVariables:undefined}],children:resolvedLinks8=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:219,width:\"156px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-15dkdnc-container\",inComponentSlot:true,nodeId:\"sKI7hisje\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(TickerCard,{H_AmHrY7m:resolvedLinks8[0],height:\"100%\",id:\"sKI7hisje\",layoutId:\"sKI7hisje\",OBCK_ixr9:addImageAlt({src:\"https://framerusercontent.com/images/5qzAZAYoqo5mEvjlWbFZPLLWmzw.png\",srcSet:\"https://framerusercontent.com/images/5qzAZAYoqo5mEvjlWbFZPLLWmzw.png 446w\"},\"\"),style:{height:\"100%\",width:\"100%\"},width:\"100%\",Y7s7YoQbs:\"Anatomy\"})})})})],speed:20,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{WFTIh__jF:{__framer__animate:{transition:transition3},__framer__animateOnce:false,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,style:{transformPerspective:1200}}},children:/*#__PURE__*/_jsx(ContainerWithFX,{className:\"framer-15u8irb-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"FuetiWIMc\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{GyoKVFaps:{direction:\"left\"},WFTIh__jF:{direction:\"right\",speed:40}},children:/*#__PURE__*/_jsx(Ticker,{alignment:\"center\",direction:\"bottom\",fadeOptions:{fadeAlpha:.3,fadeContent:false,fadeInset:0,fadeWidth:15,overflow:false},gap:12,height:\"100%\",hoverFactor:.1,id:\"FuetiWIMc\",layoutId:\"FuetiWIMc\",padding:0,paddingBottom:0,paddingLeft:0,paddingPerSide:false,paddingRight:0,paddingTop:0,sizingOptions:{heightType:true,widthType:true},slots:[/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"rnfBxMrY1\"},implicitPathVariables:undefined}],children:resolvedLinks9=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:219,width:\"156px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-13l1eik-container\",inComponentSlot:true,nodeId:\"Jnh8fBXWV\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(TickerCard,{H_AmHrY7m:resolvedLinks9[0],height:\"100%\",id:\"Jnh8fBXWV\",layoutId:\"Jnh8fBXWV\",OBCK_ixr9:addImageAlt({src:\"https://framerusercontent.com/images/1tR8qh76c9lnJoLpKU7ZNgAIomo.png\",srcSet:\"https://framerusercontent.com/images/1tR8qh76c9lnJoLpKU7ZNgAIomo.png 446w\"},\"\"),style:{height:\"100%\",width:\"100%\"},width:\"100%\",Y7s7YoQbs:\"Leonardo\"})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"CPv2RMSw8\"},implicitPathVariables:undefined}],children:resolvedLinks10=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:219,width:\"156px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-1gu3ivi-container\",inComponentSlot:true,nodeId:\"mGaC1CpSw\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(TickerCard,{H_AmHrY7m:resolvedLinks10[0],height:\"100%\",id:\"mGaC1CpSw\",layoutId:\"mGaC1CpSw\",OBCK_ixr9:addImageAlt({src:\"https://framerusercontent.com/images/OWD9qSmyO9GUIQBLu1eq4Dm5HEM.png\",srcSet:\"https://framerusercontent.com/images/OWD9qSmyO9GUIQBLu1eq4Dm5HEM.png 446w\"},\"\"),style:{height:\"100%\",width:\"100%\"},width:\"100%\",Y7s7YoQbs:\"Arthur\"})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"qgPFDxNzG\"},implicitPathVariables:undefined}],children:resolvedLinks11=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:219,width:\"156px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-1dezto9-container\",inComponentSlot:true,nodeId:\"nhrarOwjs\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(TickerCard,{H_AmHrY7m:resolvedLinks11[0],height:\"100%\",id:\"nhrarOwjs\",layoutId:\"nhrarOwjs\",OBCK_ixr9:addImageAlt({src:\"https://framerusercontent.com/images/v1kb4wGC9ag7nNIFCSIdcgKOU4.png\",srcSet:\"https://framerusercontent.com/images/v1kb4wGC9ag7nNIFCSIdcgKOU4.png 446w\"},\"\"),style:{height:\"100%\",width:\"100%\"},width:\"100%\",Y7s7YoQbs:\"MATT\"})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"ZvYUDkala\"},implicitPathVariables:undefined}],children:resolvedLinks12=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:219,width:\"156px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-rrv9cm-container\",inComponentSlot:true,nodeId:\"nhOlWwf4K\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(TickerCard,{H_AmHrY7m:resolvedLinks12[0],height:\"100%\",id:\"nhOlWwf4K\",layoutId:\"nhOlWwf4K\",OBCK_ixr9:addImageAlt({src:\"https://framerusercontent.com/images/zP0oMk9Vq2Bt86fpNPz1UKwAks.png\",srcSet:\"https://framerusercontent.com/images/zP0oMk9Vq2Bt86fpNPz1UKwAks.png 446w\"},\"\"),style:{height:\"100%\",width:\"100%\"},width:\"100%\",Y7s7YoQbs:\"Mia\"})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"zQRe74nTR\"},implicitPathVariables:undefined}],children:resolvedLinks13=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:219,width:\"156px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-yzdk2n-container\",inComponentSlot:true,nodeId:\"ALe3pdKEq\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(TickerCard,{H_AmHrY7m:resolvedLinks13[0],height:\"100%\",id:\"ALe3pdKEq\",layoutId:\"ALe3pdKEq\",OBCK_ixr9:addImageAlt({src:\"https://framerusercontent.com/images/WPNQEY4ri3jZhPhNEJD5k5c4SM.jpg\",srcSet:\"https://framerusercontent.com/images/WPNQEY4ri3jZhPhNEJD5k5c4SM.jpg?scale-down-to=1024 682w,https://framerusercontent.com/images/WPNQEY4ri3jZhPhNEJD5k5c4SM.jpg?scale-down-to=2048 1365w,https://framerusercontent.com/images/WPNQEY4ri3jZhPhNEJD5k5c4SM.jpg?scale-down-to=4096 2730w,https://framerusercontent.com/images/WPNQEY4ri3jZhPhNEJD5k5c4SM.jpg 3000w\"},\"\"),style:{height:\"100%\",width:\"100%\"},width:\"100%\",Y7s7YoQbs:\"Lisa\"})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"rnfBxMrY1\"},implicitPathVariables:undefined}],children:resolvedLinks14=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:219,width:\"156px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-of2r7n-container\",inComponentSlot:true,nodeId:\"Ih3cLAOW8\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(TickerCard,{H_AmHrY7m:resolvedLinks14[0],height:\"100%\",id:\"Ih3cLAOW8\",layoutId:\"Ih3cLAOW8\",OBCK_ixr9:addImageAlt({src:\"https://framerusercontent.com/images/m4QKbmhESqg0hlctukN88oUw.png\",srcSet:\"https://framerusercontent.com/images/m4QKbmhESqg0hlctukN88oUw.png 446w\"},\"\"),style:{height:\"100%\",width:\"100%\"},width:\"100%\",Y7s7YoQbs:\"Leonardo\"})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"CQnYDXLAO\"},implicitPathVariables:undefined}],children:resolvedLinks15=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:219,width:\"156px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-1k24db2-container\",inComponentSlot:true,nodeId:\"tj_Q3S6wE\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(TickerCard,{H_AmHrY7m:resolvedLinks15[0],height:\"100%\",id:\"tj_Q3S6wE\",layoutId:\"tj_Q3S6wE\",OBCK_ixr9:addImageAlt({src:\"https://framerusercontent.com/images/FoO5vBJXQooYTsLuS750zCIGW8.png\",srcSet:\"https://framerusercontent.com/images/FoO5vBJXQooYTsLuS750zCIGW8.png 446w\"},\"\"),style:{height:\"100%\",width:\"100%\"},width:\"100%\",Y7s7YoQbs:\"SonoVision\"})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"IvvIuUQPN\"},implicitPathVariables:undefined}],children:resolvedLinks16=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:219,width:\"156px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-qdshy7-container\",inComponentSlot:true,nodeId:\"rNBQKxBfY\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(TickerCard,{H_AmHrY7m:resolvedLinks16[0],height:\"100%\",id:\"rNBQKxBfY\",layoutId:\"rNBQKxBfY\",OBCK_ixr9:addImageAlt({src:\"https://framerusercontent.com/images/4t3wZMxXnbx878JUwxz1PQn4yc.png\",srcSet:\"https://framerusercontent.com/images/4t3wZMxXnbx878JUwxz1PQn4yc.png 446w\"},\"\"),style:{height:\"100%\",width:\"100%\"},width:\"100%\",Y7s7YoQbs:\"Anatomy\"})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"rnfBxMrY1\"},implicitPathVariables:undefined}],children:resolvedLinks17=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:219,width:\"156px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-dzkbvu-container\",inComponentSlot:true,nodeId:\"daNnhr3uP\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(TickerCard,{H_AmHrY7m:resolvedLinks17[0],height:\"100%\",id:\"daNnhr3uP\",layoutId:\"daNnhr3uP\",OBCK_ixr9:addImageAlt({src:\"https://framerusercontent.com/images/7cCazD44WYYh0qbzEQvF6lfl8Jw.png\"},\"\"),style:{height:\"100%\",width:\"100%\"},width:\"100%\",Y7s7YoQbs:\"Leonardo\"})})})})],speed:20,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})})})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-8lzj0e\",\"data-framer-name\":\"feature section\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-zrhxai\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1rruia4-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"leaPEQWG5\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"var(--token-e94c9d7d-0bec-47e0-9944-cf0c4701c808, rgb(255, 121, 0))\",height:\"100%\",iconSearch:\"House\",iconSelection:\"Wrench\",id:\"leaPEQWG5\",layoutId:\"leaPEQWG5\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"regular\",width:\"100%\"})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-uy1bz1\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{style:{\"--font-selector\":\"R0Y7TnVuaXRvLTcwMA==\",\"--framer-font-family\":'\"Nunito\", \"Nunito Placeholder\", sans-serif',\"--framer-font-size\":\"21px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"0.72px\",\"--framer-line-height\":\"110%\",\"--framer-text-color\":\"rgb(255, 121, 0)\"},children:\"Free installation\"})}),className:\"framer-1ux5zfb\",\"data-framer-name\":\"MATT\",fonts:[\"GF;Nunito-700\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TnVuaXRvLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Nunito\", \"Nunito Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"110%\"},children:\"We take care of everything for you!\"})}),className:\"framer-1jr0f8k\",\"data-framer-name\":\"Auscultation task trainor\",fonts:[\"GF;Nunito-regular\"],verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1mfzil7\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-uglm2o-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"bfZofxhD5\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"var(--token-e94c9d7d-0bec-47e0-9944-cf0c4701c808, rgb(255, 121, 0))\",height:\"100%\",iconSearch:\"House\",iconSelection:\"Certificate\",id:\"bfZofxhD5\",layoutId:\"bfZofxhD5\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"regular\",width:\"100%\"})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-k6c91d\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{style:{\"--font-selector\":\"R0Y7TnVuaXRvLTcwMA==\",\"--framer-font-family\":'\"Nunito\", \"Nunito Placeholder\", sans-serif',\"--framer-font-size\":\"21px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"0.72px\",\"--framer-line-height\":\"110%\",\"--framer-text-color\":\"rgb(255, 121, 0)\"},children:\"1-year warranty\"})}),className:\"framer-8zzebl\",\"data-framer-name\":\"MATT\",fonts:[\"GF;Nunito-700\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TnVuaXRvLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Nunito\", \"Nunito Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"110%\"},children:\"Enjoy peace of mind with full support\"})}),className:\"framer-1nbn8jd\",\"data-framer-name\":\"Auscultation task trainor\",fonts:[\"GF;Nunito-regular\"],verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-okvx56\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1hs74ib-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"nSprmLMJY\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"var(--token-e94c9d7d-0bec-47e0-9944-cf0c4701c808, rgb(255, 121, 0))\",height:\"100%\",iconSearch:\"House\",iconSelection:\"AppWindow\",id:\"nSprmLMJY\",layoutId:\"nSprmLMJY\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"regular\",width:\"100%\"})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1n1n85\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{style:{\"--font-selector\":\"R0Y7TnVuaXRvLTcwMA==\",\"--framer-font-family\":'\"Nunito\", \"Nunito Placeholder\", sans-serif',\"--framer-font-size\":\"21px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"0.72px\",\"--framer-line-height\":\"110%\",\"--framer-text-color\":\"rgb(255, 121, 0)\"},children:\"Software included\"})}),className:\"framer-9oqcm1\",\"data-framer-name\":\"MATT\",fonts:[\"GF;Nunito-700\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TnVuaXRvLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Nunito\", \"Nunito Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"110%\"},children:\"No extra charges, it\u2019s all part of the package\"})}),className:\"framer-1mb7ayk\",\"data-framer-name\":\"Auscultation task trainor\",fonts:[\"GF;Nunito-regular\"],verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1h00j0f\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-n74y5f-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"vYC0TBtWP\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"var(--token-e94c9d7d-0bec-47e0-9944-cf0c4701c808, rgb(255, 121, 0))\",height:\"100%\",iconSearch:\"House\",iconSelection:\"GraduationCap\",id:\"vYC0TBtWP\",layoutId:\"vYC0TBtWP\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"regular\",width:\"100%\"})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-p34htw\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{style:{\"--font-selector\":\"R0Y7TnVuaXRvLTcwMA==\",\"--framer-font-family\":'\"Nunito\", \"Nunito Placeholder\", sans-serif',\"--framer-font-size\":\"21px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"0.72px\",\"--framer-line-height\":\"110%\",\"--framer-text-color\":\"rgb(255, 121, 0)\"},children:\"Free training\"})}),className:\"framer-1wn4e80\",\"data-framer-name\":\"MATT\",fonts:[\"GF;Nunito-700\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TnVuaXRvLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Nunito\", \"Nunito Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"110%\"},children:\"Our experts will guide you every step of the way\"})}),className:\"framer-1cc3fgu\",\"data-framer-name\":\"Auscultation task trainor\",fonts:[\"GF;Nunito-regular\"],verticalAlignment:\"top\",withExternalLayout:true})]})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1i0gc3r\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1p7h2ui\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-oyntvx\",\"data-styles-preset\":\"hhtLhvGBX\",style:{\"--framer-text-color\":\"var(--token-e94c9d7d-0bec-47e0-9944-cf0c4701c808, rgb(255, 121, 0))\"},children:\"Our simulators and training solutions are designed for:\"})}),className:\"framer-lo9x70\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-hw2z7x\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1884r1r\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{style:{\"--font-selector\":\"RlM7TnVuaXRvLWJvbGQ=\",\"--framer-font-family\":'\"Nunito\", \"Nunito Placeholder\", sans-serif',\"--framer-font-size\":\"22px\",\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"1.4em\",\"--framer-text-color\":\"var(--token-53662e5a-6ce0-4175-8a47-70b89b47e3ee, rgb(28, 59, 145))\"},children:\"Medical universities and colleges\"})}),className:\"framer-agv3ex\",fonts:[\"FS;Nunito-bold\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TnVuaXRvLTUwMA==\",\"--framer-font-family\":'\"Nunito\", \"Nunito Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"130%\",\"--framer-text-color\":\"rgb(143, 143, 143)\"},children:\"to train students and practice practical skills\"})}),className:\"framer-1agr133\",fonts:[\"GF;Nunito-500\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1ghmhj1\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{WFTIh__jF:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{style:{\"--font-selector\":\"RlM7TnVuaXRvLWJvbGQ=\",\"--framer-font-family\":'\"Nunito\", \"Nunito Placeholder\", sans-serif',\"--framer-font-size\":\"22px\",\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"1.4em\",\"--framer-text-color\":\"var(--token-53662e5a-6ce0-4175-8a47-70b89b47e3ee, rgb(28, 59, 145))\"},children:\"Simulation centers\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h3\",{style:{\"--font-selector\":\"RlM7TnVuaXRvLWJvbGQ=\",\"--framer-font-family\":'\"Nunito\", \"Nunito Placeholder\", sans-serif',\"--framer-font-size\":\"22px\",\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"1.4em\",\"--framer-text-color\":\"var(--token-53662e5a-6ce0-4175-8a47-70b89b47e3ee, rgb(28, 59, 145))\"},children:[\"Simulation\",/*#__PURE__*/_jsx(\"br\",{}),\"centers\"]})}),className:\"framer-147cnlv\",fonts:[\"FS;Nunito-bold\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TnVuaXRvLTUwMA==\",\"--framer-font-family\":'\"Nunito\", \"Nunito Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"130%\",\"--framer-text-color\":\"rgb(143, 143, 143)\"},children:\"to create realistic training scenarios\"})}),className:\"framer-nsl0b7\",fonts:[\"GF;Nunito-500\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1lf1k8h\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{style:{\"--font-selector\":\"RlM7TnVuaXRvLWJvbGQ=\",\"--framer-font-family\":'\"Nunito\", \"Nunito Placeholder\", sans-serif',\"--framer-font-size\":\"22px\",\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"1.4em\",\"--framer-text-color\":\"var(--token-53662e5a-6ce0-4175-8a47-70b89b47e3ee, rgb(28, 59, 145))\"},children:\"Hospitals and clinics\"})}),className:\"framer-k0nngd\",fonts:[\"FS;Nunito-bold\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TnVuaXRvLTUwMA==\",\"--framer-font-family\":'\"Nunito\", \"Nunito Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"130%\",\"--framer-text-color\":\"rgb(143, 143, 143)\"},children:\"for advanced training of medical personnel\"})}),className:\"framer-1bn18tz\",fonts:[\"GF;Nunito-500\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1ty4i2g\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{style:{\"--font-selector\":\"RlM7TnVuaXRvLWJvbGQ=\",\"--framer-font-family\":'\"Nunito\", \"Nunito Placeholder\", sans-serif',\"--framer-font-size\":\"22px\",\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"1.4em\",\"--framer-text-color\":\"var(--token-53662e5a-6ce0-4175-8a47-70b89b47e3ee, rgb(28, 59, 145))\"},children:\"Military and tactical medicine\"})}),className:\"framer-phfhj9\",fonts:[\"FS;Nunito-bold\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TnVuaXRvLTUwMA==\",\"--framer-font-family\":'\"Nunito\", \"Nunito Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"130%\",\"--framer-text-color\":\"rgb(143, 143, 143)\"},children:\"for emergency response training\"})}),className:\"framer-3fcut4\",fonts:[\"GF;Nunito-500\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1xs2d2c\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{style:{\"--font-selector\":\"RlM7TnVuaXRvLWJvbGQ=\",\"--framer-font-family\":'\"Nunito\", \"Nunito Placeholder\", sans-serif',\"--framer-font-size\":\"22px\",\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"1.4em\",\"--framer-text-color\":\"var(--token-53662e5a-6ce0-4175-8a47-70b89b47e3ee, rgb(28, 59, 145))\"},children:\"Training laboratories and research centers\"})}),className:\"framer-cm3rvc\",fonts:[\"FS;Nunito-bold\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TnVuaXRvLTUwMA==\",\"--framer-font-family\":'\"Nunito\", \"Nunito Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"130%\",\"--framer-text-color\":\"rgb(143, 143, 143)\"},children:\"for the development of new teaching methods\"})}),className:\"framer-4e4x71\",fonts:[\"GF;Nunito-500\"],verticalAlignment:\"top\",withExternalLayout:true})]})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-rg0ux0\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-oyntvx\",\"data-styles-preset\":\"hhtLhvGBX\",style:{\"--framer-text-color\":\"var(--token-e94c9d7d-0bec-47e0-9944-cf0c4701c808, rgb(255, 121, 0))\"},children:\"Advantages of MedVision\"})}),className:\"framer-jfvi44\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-dal55a\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1cpi0hr\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{style:{\"--font-selector\":\"RlM7TnVuaXRvLWJvbGQ=\",\"--framer-font-family\":'\"Nunito\", \"Nunito Placeholder\", sans-serif',\"--framer-font-size\":\"22px\",\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"1.4em\",\"--framer-text-color\":\"var(--token-53662e5a-6ce0-4175-8a47-70b89b47e3ee, rgb(28, 59, 145))\"},children:\"High-quality materials\"})}),className:\"framer-e5670r\",fonts:[\"FS;Nunito-bold\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TnVuaXRvLTUwMA==\",\"--framer-font-family\":'\"Nunito\", \"Nunito Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"130%\",\"--framer-text-color\":\"rgb(143, 143, 143)\"},children:\"durability, reliability and realism in every component\"})}),className:\"framer-13pk0m3\",fonts:[\"GF;Nunito-500\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-2n437d\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{WFTIh__jF:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{style:{\"--font-selector\":\"RlM7TnVuaXRvLWJvbGQ=\",\"--framer-font-family\":'\"Nunito\", \"Nunito Placeholder\", sans-serif',\"--framer-font-size\":\"22px\",\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"1.4em\",\"--framer-text-color\":\"var(--token-53662e5a-6ce0-4175-8a47-70b89b47e3ee, rgb(28, 59, 145))\"},children:\"Simulation centers\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h3\",{style:{\"--font-selector\":\"RlM7TnVuaXRvLWJvbGQ=\",\"--framer-font-family\":'\"Nunito\", \"Nunito Placeholder\", sans-serif',\"--framer-font-size\":\"22px\",\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"1.4em\",\"--framer-text-color\":\"var(--token-53662e5a-6ce0-4175-8a47-70b89b47e3ee, rgb(28, 59, 145))\"},children:[\"Maximum\",/*#__PURE__*/_jsx(\"br\",{}),\"realism\"]})}),className:\"framer-108zw1a\",fonts:[\"FS;Nunito-bold\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TnVuaXRvLTUwMA==\",\"--framer-font-family\":'\"Nunito\", \"Nunito Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"130%\",\"--framer-text-color\":\"rgb(143, 143, 143)\"},children:\"simulators simulate physiological reactions and real clinical situations\"})}),className:\"framer-1ujvrzf\",fonts:[\"GF;Nunito-500\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-btm4wo\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h3\",{style:{\"--font-selector\":\"RlM7TnVuaXRvLWJvbGQ=\",\"--framer-font-family\":'\"Nunito\", \"Nunito Placeholder\", sans-serif',\"--framer-font-size\":\"22px\",\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"1.4em\",\"--framer-text-color\":\"var(--token-53662e5a-6ce0-4175-8a47-70b89b47e3ee, rgb(28, 59, 145))\"},children:[\"Interactive\",/*#__PURE__*/_jsx(\"br\",{}),\"training\"]})}),className:\"framer-20rtrp\",fonts:[\"FS;Nunito-bold\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TnVuaXRvLTUwMA==\",\"--framer-font-family\":'\"Nunito\", \"Nunito Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"130%\",\"--framer-text-color\":\"rgb(143, 143, 143)\"},children:\"modern technologies and software for convenient and effective training\"})}),className:\"framer-l05lfl\",fonts:[\"GF;Nunito-500\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1k5pw3q\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{style:{\"--font-selector\":\"RlM7TnVuaXRvLWJvbGQ=\",\"--framer-font-family\":'\"Nunito\", \"Nunito Placeholder\", sans-serif',\"--framer-font-size\":\"22px\",\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"1.4em\",\"--framer-text-color\":\"var(--token-53662e5a-6ce0-4175-8a47-70b89b47e3ee, rgb(28, 59, 145))\"},children:\"Global support\"})}),className:\"framer-13j347n\",fonts:[\"FS;Nunito-bold\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TnVuaXRvLTUwMA==\",\"--framer-font-family\":'\"Nunito\", \"Nunito Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"130%\",\"--framer-text-color\":\"rgb(143, 143, 143)\"},children:\"technical assistance and consulting at all stages of use\"})}),className:\"framer-kdhr8l\",fonts:[\"GF;Nunito-500\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-14yic9b\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{style:{\"--font-selector\":\"RlM7TnVuaXRvLWJvbGQ=\",\"--framer-font-family\":'\"Nunito\", \"Nunito Placeholder\", sans-serif',\"--framer-font-size\":\"22px\",\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"1.4em\",\"--framer-text-color\":\"var(--token-53662e5a-6ce0-4175-8a47-70b89b47e3ee, rgb(28, 59, 145))\"},children:\"Flexible solutions\"})}),className:\"framer-vfblbf\",fonts:[\"FS;Nunito-bold\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TnVuaXRvLTUwMA==\",\"--framer-font-family\":'\"Nunito\", \"Nunito Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"130%\",\"--framer-text-color\":\"rgb(143, 143, 143)\"},children:\"suitable for different levels of training and specializations\"})}),className:\"framer-t5mxot\",fonts:[\"GF;Nunito-500\"],verticalAlignment:\"top\",withExternalLayout:true})]})]})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1r9e2dh\",\"data-framer-name\":\"about section\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1kkba49\",\"data-framer-name\":\"Testimonials 2\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-oyntvx\",\"data-styles-preset\":\"hhtLhvGBX\",children:\"About us\"})}),className:\"framer-1y2jvov\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1pdeh3o\",\"data-styles-preset\":\"xpP0zGlMt\",style:{\"--framer-text-color\":\"rgb(143, 143, 143)\"},children:\"Medvision is a global leader in medical simulation, dedicated to advancing healthcare training through cutting-edge technology. Our high-fidelity patient simulators, ultrasound trainers, and anatomy solutions provide realistic, hands-on learning experiences for medical professionals and students. With a commitment to innovation and excellence, Medvision empowers educators and institutions to enhance clinical skills, improve patient outcomes, and redefine medical training.\"})}),className:\"framer-ice7d5\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-99eclz\",\"data-framer-name\":\"Testimonials 2\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-oyntvx\",\"data-styles-preset\":\"hhtLhvGBX\",children:\"Our Mission\"})}),className:\"framer-s49ue6\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1pdeh3o\",\"data-styles-preset\":\"xpP0zGlMt\",style:{\"--framer-text-color\":\"rgb(143, 143, 143)\"},children:\"We strive to bridge the gap between theory and practice, equipping healthcare professionals with the confidence and skills they need to provide exceptional patient care.\"})}),className:\"framer-1qtn5wb\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{GyoKVFaps:{width:`calc(min(${componentViewport?.width||\"100vw\"}, 1920px) - 40px)`},WFTIh__jF:{width:`calc(min(${componentViewport?.width||\"100vw\"}, 1920px) - 24px)`,y:(componentViewport?.y||0)+0+0+76+4649.2}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:354,width:\"1160px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-f9b8dn-container\",nodeId:\"scALC8vs7\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{GyoKVFaps:{variant:\"vmAHalBMP\"},WFTIh__jF:{variant:\"izAbDaZgs\"}},children:/*#__PURE__*/_jsx(ScheduleADemoForm,{height:\"100%\",id:\"scALC8vs7\",layoutId:\"scALC8vs7\",style:{width:\"100%\"},variant:\"v_woMdmgb\",width:\"100%\"})})})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-cpnfsn\",\"data-framer-name\":\"screen 1\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-m9sccg\",id:elementId,ref:ref1,children:[isDisplayed1()&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-gcti9l hidden-72rtr7 hidden-11jdvea\",\"data-framer-name\":\"info\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC03MDA=\",\"--framer-font-family\":'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',\"--framer-font-size\":\"28px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.01em\",\"--framer-line-height\":\"100%\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"All-inclusive ready-to-run solutions\"})}),className:\"framer-10sycj4\",\"data-framer-name\":\"All-inclusive ready-to-run solutions\",fonts:[\"GF;Montserrat-700\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-o4nrmm\",\"data-framer-name\":\"Frame 738001310\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-6iwj1b\",\"data-framer-name\":\"Frame 738001304\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-4vt0nw\",\"data-framer-name\":\"bullet\",fill:\"black\",intrinsicHeight:22,intrinsicWidth:22,svg:'<svg width=\"22\" height=\"22\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><rect width=\"22\" height=\"22\" rx=\"11\" fill=\"#fff\" fill-opacity=\".5\"/><circle cx=\"11\" cy=\"11\" r=\"3\" fill=\"#FF7900\"/></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TnVuaXRvLTUwMA==\",\"--framer-font-family\":'\"Nunito\", \"Nunito Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"110%\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"All hardware and software included\"})}),className:\"framer-58w6ix\",\"data-framer-name\":\"All hardware and software included\",fonts:[\"GF;Nunito-500\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-12v1jrv\",\"data-framer-name\":\"Frame 738001305\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-8pfd02\",\"data-framer-name\":\"bullet\",fill:\"black\",intrinsicHeight:22,intrinsicWidth:22,svg:'<svg width=\"22\" height=\"22\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><rect width=\"22\" height=\"22\" rx=\"11\" fill=\"#fff\" fill-opacity=\".5\"/><circle cx=\"11\" cy=\"11\" r=\"3\" fill=\"#FF7900\"/></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TnVuaXRvLTUwMA==\",\"--framer-font-family\":'\"Nunito\", \"Nunito Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"110%\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Installation and training included\"})}),className:\"framer-128q3aw\",\"data-framer-name\":\"All hardware and software included\",fonts:[\"GF;Nunito-500\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1umawws\",\"data-framer-name\":\"Frame 738001306\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-i3204q\",\"data-framer-name\":\"bullet\",fill:\"black\",intrinsicHeight:22,intrinsicWidth:22,svg:'<svg width=\"22\" height=\"22\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><rect width=\"22\" height=\"22\" rx=\"11\" fill=\"#fff\" fill-opacity=\".5\"/><circle cx=\"11\" cy=\"11\" r=\"3\" fill=\"#FF7900\"/></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TnVuaXRvLTUwMA==\",\"--framer-font-family\":'\"Nunito\", \"Nunito Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"110%\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"We keep it simple and easy\"})}),className:\"framer-1awb5o\",\"data-framer-name\":\"All hardware and software included\",fonts:[\"GF;Nunito-500\"],verticalAlignment:\"top\",withExternalLayout:true})]})]})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{GyoKVFaps:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:626,intrinsicWidth:1048,pixelHeight:2433,pixelWidth:4928,sizes:`calc(min(${componentViewport?.width||\"100vw\"}, 1920px) - 40px)`,src:\"https://framerusercontent.com/images/ihnJYdjK6C60hxTZCGTHBbq6qE.jpg?scale-down-to=2048\",srcSet:\"https://framerusercontent.com/images/ihnJYdjK6C60hxTZCGTHBbq6qE.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/ihnJYdjK6C60hxTZCGTHBbq6qE.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/ihnJYdjK6C60hxTZCGTHBbq6qE.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/ihnJYdjK6C60hxTZCGTHBbq6qE.jpg?scale-down-to=4096 4096w,https://framerusercontent.com/images/ihnJYdjK6C60hxTZCGTHBbq6qE.jpg 4928w\"}},WFTIh__jF:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:626,intrinsicWidth:1048,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+76+5123.2+0+138+0+429),pixelHeight:3280,pixelWidth:4928,sizes:`calc(min(${componentViewport?.width||\"100vw\"}, 1920px) - 24px)`,src:\"https://framerusercontent.com/images/iDGfSLVCTTuJNatljM8QfLUfIQQ.jpg?scale-down-to=2048\",srcSet:\"https://framerusercontent.com/images/iDGfSLVCTTuJNatljM8QfLUfIQQ.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/iDGfSLVCTTuJNatljM8QfLUfIQQ.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/iDGfSLVCTTuJNatljM8QfLUfIQQ.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/iDGfSLVCTTuJNatljM8QfLUfIQQ.jpg?scale-down-to=4096 4096w,https://framerusercontent.com/images/iDGfSLVCTTuJNatljM8QfLUfIQQ.jpg 4928w\"}}},children:/*#__PURE__*/_jsx(ImageWithFX,{__framer__animate:{transition:transition4},__framer__animateOnce:false,__framer__enter:animation8,__framer__styleAppearEffectEnabled:true,__framer__targets:[{ref:ref1,target:\"animate\"}],__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,background:{alt:\"\",fit:\"fit\",intrinsicHeight:1158,intrinsicWidth:1340,pixelHeight:1737,pixelWidth:2010,positionX:\"center\",positionY:\"center\",sizes:\"671px\",src:\"https://framerusercontent.com/images/Vdxt3VNYFpdjgj9dZAO9YBWo4c.png\",srcSet:\"https://framerusercontent.com/images/Vdxt3VNYFpdjgj9dZAO9YBWo4c.png?scale-down-to=512 512w,https://framerusercontent.com/images/Vdxt3VNYFpdjgj9dZAO9YBWo4c.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/Vdxt3VNYFpdjgj9dZAO9YBWo4c.png 2010w\"},className:\"framer-5mlksx\",\"data-framer-name\":\"big card\",style:{transformPerspective:1200},children:isDisplayed()&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-dkk4bc hidden-116vbbm\",\"data-framer-name\":\"info\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{GyoKVFaps:{children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC03MDA=\",\"--framer-font-family\":'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',\"--framer-font-size\":\"32px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.01em\",\"--framer-line-height\":\"100%\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"All-inclusive\"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC03MDA=\",\"--framer-font-family\":'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',\"--framer-font-size\":\"32px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.01em\",\"--framer-line-height\":\"100%\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"ready-to-run solutions\"})]}),fonts:[\"GF;Montserrat-700\"]}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7TnVuaXRvLWJvbGQ=\",\"--framer-font-family\":'\"Nunito\", \"Nunito Placeholder\", sans-serif',\"--framer-font-size\":\"48px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.01em\",\"--framer-line-height\":\"100%\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"All-inclusive\"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7TnVuaXRvLWJvbGQ=\",\"--framer-font-family\":'\"Nunito\", \"Nunito Placeholder\", sans-serif',\"--framer-font-size\":\"48px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.01em\",\"--framer-line-height\":\"100%\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"ready-to-run solutions\"})]}),className:\"framer-gkcsjw\",\"data-framer-name\":\"All-inclusive ready-to-run solutions\",fonts:[\"FS;Nunito-bold\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-9d0ho8\",\"data-framer-name\":\"Frame 738001329\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-9ro3km\",\"data-framer-name\":\"Frame 738001310\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1xlvont\",\"data-framer-name\":\"Frame 738001304\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-18qhmuf\",\"data-framer-name\":\"bullet\",fill:\"black\",intrinsicHeight:22,intrinsicWidth:22,svg:'<svg width=\"22\" height=\"22\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><rect width=\"22\" height=\"22\" rx=\"11\" fill=\"#fff\" fill-opacity=\".5\"/><circle cx=\"11\" cy=\"11\" r=\"3\" fill=\"#FF7900\"/></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TnVuaXRvLTUwMA==\",\"--framer-font-family\":'\"Nunito\", \"Nunito Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"110%\",\"--framer-text-color\":\"rgb(13, 19, 33)\"},children:\"All hardware and software included\"})}),className:\"framer-k1glct\",\"data-framer-name\":\"All hardware and software included\",fonts:[\"GF;Nunito-500\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1bqriyt\",\"data-framer-name\":\"Frame 738001305\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-e1swie\",\"data-framer-name\":\"bullet\",fill:\"black\",intrinsicHeight:22,intrinsicWidth:22,svg:'<svg width=\"22\" height=\"22\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><rect width=\"22\" height=\"22\" rx=\"11\" fill=\"#fff\" fill-opacity=\".5\"/><circle cx=\"11\" cy=\"11\" r=\"3\" fill=\"#FF7900\"/></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TnVuaXRvLTUwMA==\",\"--framer-font-family\":'\"Nunito\", \"Nunito Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"110%\",\"--framer-text-color\":\"rgb(13, 19, 33)\"},children:\"Installation and training included\"})}),className:\"framer-c7fgsx\",\"data-framer-name\":\"All hardware and software included\",fonts:[\"GF;Nunito-500\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1upvdno\",\"data-framer-name\":\"Frame 738001306\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-tnhzt1\",\"data-framer-name\":\"bullet\",fill:\"black\",intrinsicHeight:22,intrinsicWidth:22,svg:'<svg width=\"22\" height=\"22\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><rect width=\"22\" height=\"22\" rx=\"11\" fill=\"#fff\" fill-opacity=\".5\"/><circle cx=\"11\" cy=\"11\" r=\"3\" fill=\"#FF7900\"/></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TnVuaXRvLTUwMA==\",\"--framer-font-family\":'\"Nunito\", \"Nunito Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"110%\",\"--framer-text-color\":\"rgb(13, 19, 33)\"},children:\"We keep it simple and easy\"})}),className:\"framer-i6ha8h\",\"data-framer-name\":\"All hardware and software included\",fonts:[\"GF;Nunito-500\"],verticalAlignment:\"top\",withExternalLayout:true})]})]})})]})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-gs2g19\",\"data-framer-name\":\"right side\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{GyoKVFaps:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1080,intrinsicWidth:1080,pixelHeight:2795,pixelWidth:2795,sizes:`calc(min(${componentViewport?.width||\"100vw\"}, 1920px) - 40px)`,src:\"https://framerusercontent.com/images/4xTJDIsD54Zl2T4Zf3vsRTBRY.jpg?scale-down-to=2048\",srcSet:\"https://framerusercontent.com/images/4xTJDIsD54Zl2T4Zf3vsRTBRY.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/4xTJDIsD54Zl2T4Zf3vsRTBRY.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/4xTJDIsD54Zl2T4Zf3vsRTBRY.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/4xTJDIsD54Zl2T4Zf3vsRTBRY.jpg 2795w\"}},WFTIh__jF:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1080,intrinsicWidth:1080,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+76+5123.2+0+138+0+703+0+504),pixelHeight:2795,pixelWidth:2795,sizes:`calc(min(${componentViewport?.width||\"100vw\"}, 1920px) - 24px)`,src:\"https://framerusercontent.com/images/4xTJDIsD54Zl2T4Zf3vsRTBRY.jpg?scale-down-to=2048\",srcSet:\"https://framerusercontent.com/images/4xTJDIsD54Zl2T4Zf3vsRTBRY.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/4xTJDIsD54Zl2T4Zf3vsRTBRY.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/4xTJDIsD54Zl2T4Zf3vsRTBRY.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/4xTJDIsD54Zl2T4Zf3vsRTBRY.jpg 2795w\"}}},children:/*#__PURE__*/_jsx(ImageWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:false,__framer__enter:animation8,__framer__styleAppearEffectEnabled:true,__framer__targets:[{ref:ref1,target:\"animate\"}],__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,background:{alt:\"\",fit:\"fit\",intrinsicHeight:826,intrinsicWidth:948,pixelHeight:1239,pixelWidth:1422,positionX:\"center\",positionY:\"center\",sizes:\"474px\",src:\"https://framerusercontent.com/images/7bhz9S4Wr5ilHC2TGCoOI1wxIoM.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/7bhz9S4Wr5ilHC2TGCoOI1wxIoM.png?scale-down-to=512 512w,https://framerusercontent.com/images/7bhz9S4Wr5ilHC2TGCoOI1wxIoM.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/7bhz9S4Wr5ilHC2TGCoOI1wxIoM.png 1422w\"},className:\"framer-102ea37\",\"data-framer-name\":\"photo\",style:{transformPerspective:1200}})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-e9hhhy\",children:[/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition5},__framer__animateOnce:false,__framer__enter:animation8,__framer__styleAppearEffectEnabled:true,__framer__targets:[{ref:ref1,target:\"animate\"}],__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1ycb9mc\",\"data-framer-name\":\"orange card\",style:{transformPerspective:1200},children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TnVuaXRvLTkwMA==\",\"--framer-font-family\":'\"Nunito\", sans-serif',\"--framer-font-size\":\"36px\",\"--framer-font-weight\":\"900\",\"--framer-letter-spacing\":\"-0.01em\",\"--framer-line-height\":\"100%\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"1 year\"})}),className:\"framer-udw8s3\",\"data-framer-name\":\"1 year\",fonts:[\"GF;Nunito-900\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TnVuaXRvLTUwMA==\",\"--framer-font-family\":'\"Nunito\", \"Nunito Placeholder\", sans-serif',\"--framer-font-size\":\"22px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"110%\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"warranty included\"})}),className:\"framer-14dev17\",\"data-framer-name\":\"warranty included\",fonts:[\"GF;Nunito-500\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition6},__framer__animateOnce:false,__framer__enter:animation8,__framer__styleAppearEffectEnabled:true,__framer__targets:[{ref:ref1,target:\"animate\"}],__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-7e19ih\",\"data-framer-name\":\"blue card\",style:{transformPerspective:1200},children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TnVuaXRvLTkwMA==\",\"--framer-font-family\":'\"Nunito\", sans-serif',\"--framer-font-size\":\"36px\",\"--framer-font-weight\":\"900\",\"--framer-letter-spacing\":\"-0.01em\",\"--framer-line-height\":\"100%\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Price\"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TnVuaXRvLTkwMA==\",\"--framer-font-family\":'\"Nunito\", sans-serif',\"--framer-font-size\":\"36px\",\"--framer-font-weight\":\"900\",\"--framer-letter-spacing\":\"-0.01em\",\"--framer-line-height\":\"100%\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"transparency \"})]}),className:\"framer-3jwisk\",\"data-framer-name\":\"Price transparency\",fonts:[\"GF;Nunito-900\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TnVuaXRvLTUwMA==\",\"--framer-font-family\":'\"Nunito\", \"Nunito Placeholder\", sans-serif',\"--framer-font-size\":\"22px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"110%\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"providing a clear and comprehensive breakdown of\\xa0prices\"})}),className:\"framer-1amvec3\",\"data-framer-name\":\"warranty included\",fonts:[\"GF;Nunito-500\"],verticalAlignment:\"top\",withExternalLayout:true})]})]})]})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{GyoKVFaps:{transformTemplate:undefined},WFTIh__jF:{transformTemplate:undefined}},children:/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:false,__framer__enter:animation8,__framer__styleAppearEffectEnabled:true,__framer__targets:[{ref:ref1,target:\"animate\"}],__framer__threshold:1,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1pojp8b\",style:{transformPerspective:1200},transformTemplate:transformTemplate1,children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{GyoKVFaps:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"RlM7TnVuaXRvLWJvbGQ=\",\"--framer-font-family\":'\"Nunito\", \"Nunito Placeholder\", sans-serif',\"--framer-font-size\":\"38px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.01em\",\"--framer-line-height\":\"100%\",\"--framer-text-color\":\"var(--token-35620033-eb15-4a82-82d4-aef6ded4849d, rgb(0, 0, 0))\"},children:\"New technology\"})})},WFTIh__jF:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC03MDA=\",\"--framer-font-family\":'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',\"--framer-font-size\":\"38px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.01em\",\"--framer-line-height\":\"100%\",\"--framer-text-color\":\"var(--token-35620033-eb15-4a82-82d4-aef6ded4849d, rgb(0, 0, 0))\"},children:\"New technology\"})}),fonts:[\"GF;Montserrat-700\"]}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"RlM7TnVuaXRvLWJvbGQ=\",\"--framer-font-family\":'\"Nunito\", \"Nunito Placeholder\", sans-serif',\"--framer-font-size\":\"48px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.01em\",\"--framer-line-height\":\"100%\",\"--framer-text-color\":\"var(--token-35620033-eb15-4a82-82d4-aef6ded4849d, rgb(0, 0, 0))\"},children:\"New technology\"})}),className:\"framer-1qhlqi\",\"data-framer-name\":\"New technology\",fonts:[\"FS;Nunito-bold\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1tgmws8\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{GyoKVFaps:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"RlM7TnVuaXRvLWJvbGQ=\",\"--framer-font-family\":'\"Nunito\", \"Nunito Placeholder\", sans-serif',\"--framer-font-size\":\"38px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.01em\",\"--framer-line-height\":\"100%\",\"--framer-text-color\":\"var(--token-35620033-eb15-4a82-82d4-aef6ded4849d, rgb(0, 0, 0))\"},children:\"for\"})})},WFTIh__jF:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC03MDA=\",\"--framer-font-family\":'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',\"--framer-font-size\":\"38px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.01em\",\"--framer-line-height\":\"100%\",\"--framer-text-color\":\"var(--token-35620033-eb15-4a82-82d4-aef6ded4849d, rgb(0, 0, 0))\"},children:\"for\"})}),fonts:[\"GF;Montserrat-700\"]}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"RlM7TnVuaXRvLWJvbGQ=\",\"--framer-font-family\":'\"Nunito\", \"Nunito Placeholder\", sans-serif',\"--framer-font-size\":\"48px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.01em\",\"--framer-line-height\":\"100%\",\"--framer-text-color\":\"var(--token-35620033-eb15-4a82-82d4-aef6ded4849d, rgb(0, 0, 0))\"},children:\"for\"})}),className:\"framer-1dw7s9d\",\"data-framer-name\":\"for\",fonts:[\"FS;Nunito-bold\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-py2ne2\",\"data-framer-name\":\"Frame 738001252\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{GyoKVFaps:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"RlM7TnVuaXRvLWJvbGQ=\",\"--framer-font-family\":'\"Nunito\", \"Nunito Placeholder\", sans-serif',\"--framer-font-size\":\"38px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.01em\",\"--framer-line-height\":\"100%\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"new skills\"})})},WFTIh__jF:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC03MDA=\",\"--framer-font-family\":'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',\"--framer-font-size\":\"38px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.01em\",\"--framer-line-height\":\"100%\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"new skills\"})}),fonts:[\"GF;Montserrat-700\"]}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"RlM7TnVuaXRvLWJvbGQ=\",\"--framer-font-family\":'\"Nunito\", \"Nunito Placeholder\", sans-serif',\"--framer-font-size\":\"48px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.01em\",\"--framer-line-height\":\"100%\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"new skills\"})}),className:\"framer-a3yhyz\",\"data-framer-name\":\"new skills\",fonts:[\"FS;Nunito-bold\"],verticalAlignment:\"top\",withExternalLayout:true})})})]})]})})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-w0n8d9\",\"data-framer-name\":\"screen 3\",id:elementId1,ref:ref2,children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-1e8q8hi\",\"data-framer-name\":\"Frame 738001366\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-xm4pyg\",\"data-framer-name\":\"Frame 738001365\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{GyoKVFaps:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"RlM7TnVuaXRvLWJvbGQ=\",\"--framer-font-family\":'\"Nunito\", \"Nunito Placeholder\", sans-serif',\"--framer-font-size\":\"38px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.01em\",\"--framer-line-height\":\"100%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-35620033-eb15-4a82-82d4-aef6ded4849d, rgb(0, 0, 0))\"},children:\"Meet simulators family\"})})},WFTIh__jF:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"RlM7TnVuaXRvLWJvbGQ=\",\"--framer-font-family\":'\"Nunito\", \"Nunito Placeholder\", sans-serif',\"--framer-font-size\":\"32px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.01em\",\"--framer-line-height\":\"100%\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-35620033-eb15-4a82-82d4-aef6ded4849d, rgb(0, 0, 0))\"},children:\"Meet simulators family\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"RlM7TnVuaXRvLWJvbGQ=\",\"--framer-font-family\":'\"Nunito\", \"Nunito Placeholder\", sans-serif',\"--framer-font-size\":\"48px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.01em\",\"--framer-line-height\":\"100%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-35620033-eb15-4a82-82d4-aef6ded4849d, rgb(0, 0, 0))\"},children:\"Meet simulators family\"})}),className:\"framer-dsklxm\",\"data-framer-name\":\"headline\",fonts:[\"FS;Nunito-bold\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-tkny9d\",\"data-framer-name\":\"sim family\",children:[/*#__PURE__*/_jsx(Link,{href:{webPageId:\"IvvIuUQPN\"},motionChild:true,nodeId:\"XT22OSMOZ\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsxs(motion.a,{className:\"framer-8wx2df framer-lux5qc\",\"data-framer-name\":\"Anatomy\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{GyoKVFaps:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1080,intrinsicWidth:1080,pixelHeight:1200,pixelWidth:1200,sizes:`max((min(${componentViewport?.width||\"100vw\"}, 1920px) - 104px) / 3, 175px)`,src:\"https://framerusercontent.com/images/0jnS3no2WqrFAe4bYtN0sMX8EY.png\",srcSet:\"https://framerusercontent.com/images/0jnS3no2WqrFAe4bYtN0sMX8EY.png?scale-down-to=512 512w,https://framerusercontent.com/images/0jnS3no2WqrFAe4bYtN0sMX8EY.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/0jnS3no2WqrFAe4bYtN0sMX8EY.png 1200w\"}},WFTIh__jF:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1080,intrinsicWidth:1080,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+76+6939.2+0+0+0+0+0+74+0+0+0+0),pixelHeight:1200,pixelWidth:1200,sizes:`max((min(${componentViewport?.width||\"100vw\"}, 1920px) - 36px) / 2, 175px)`,src:\"https://framerusercontent.com/images/0jnS3no2WqrFAe4bYtN0sMX8EY.png\",srcSet:\"https://framerusercontent.com/images/0jnS3no2WqrFAe4bYtN0sMX8EY.png?scale-down-to=512 512w,https://framerusercontent.com/images/0jnS3no2WqrFAe4bYtN0sMX8EY.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/0jnS3no2WqrFAe4bYtN0sMX8EY.png 1200w\"}}},children:/*#__PURE__*/_jsx(ImageWithOptimizedAppearEffect,{animate:animation9,background:{alt:\"\",fit:\"fill\",intrinsicHeight:1080,intrinsicWidth:1080,pixelHeight:1200,pixelWidth:1200,sizes:\"365.3333px\",src:\"https://framerusercontent.com/images/0jnS3no2WqrFAe4bYtN0sMX8EY.png\",srcSet:\"https://framerusercontent.com/images/0jnS3no2WqrFAe4bYtN0sMX8EY.png?scale-down-to=512 512w,https://framerusercontent.com/images/0jnS3no2WqrFAe4bYtN0sMX8EY.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/0jnS3no2WqrFAe4bYtN0sMX8EY.png 1200w\"},className:\"framer-ef3ob9\",\"data-framer-appear-id\":\"ef3ob9\",\"data-framer-name\":\"Rectangle 170\",initial:animation10,optimized:true,style:{transformPerspective:1200}})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TnVuaXRvLTcwMA==\",\"--framer-font-family\":'\"Nunito\", \"Nunito Placeholder\", sans-serif',\"--framer-font-size\":\"21px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"0.72px\",\"--framer-line-height\":\"110%\",\"--framer-text-color\":\"rgb(255, 121, 0)\"},children:\"Anatomy\"})}),className:\"framer-1g44bbc\",\"data-framer-name\":\"Mia\",fonts:[\"GF;Nunito-700\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TnVuaXRvLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Nunito\", \"Nunito Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"110%\"},children:\"Interactive\"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TnVuaXRvLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Nunito\", \"Nunito Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"110%\"},children:\"3D Anatomy Table\"})]}),className:\"framer-1bwt736\",\"data-framer-name\":\"Training for acute neonatal emergencies\",fonts:[\"GF;Nunito-regular\"],verticalAlignment:\"top\",withExternalLayout:true})]})}),/*#__PURE__*/_jsx(Link,{href:{webPageId:\"rnfBxMrY1\"},motionChild:true,nodeId:\"yVTWgEvyn\",openInNewTab:false,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsxs(motion.a,{className:\"framer-inl5pu framer-lux5qc\",\"data-framer-name\":\"Leonardo\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{GyoKVFaps:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1080,intrinsicWidth:1080,pixelHeight:1200,pixelWidth:1200,sizes:`max((min(${componentViewport?.width||\"100vw\"}, 1920px) - 104px) / 3, 175px)`,src:\"https://framerusercontent.com/images/4F51b6Xq2CbUTFxLWeOMUe38Rq0.png\",srcSet:\"https://framerusercontent.com/images/4F51b6Xq2CbUTFxLWeOMUe38Rq0.png?scale-down-to=512 512w,https://framerusercontent.com/images/4F51b6Xq2CbUTFxLWeOMUe38Rq0.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/4F51b6Xq2CbUTFxLWeOMUe38Rq0.png 1200w\"}},WFTIh__jF:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1080,intrinsicWidth:1080,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+76+6939.2+0+0+0+0+0+74+0+0+0+0),pixelHeight:1200,pixelWidth:1200,sizes:`max((min(${componentViewport?.width||\"100vw\"}, 1920px) - 36px) / 2, 175px)`,src:\"https://framerusercontent.com/images/4F51b6Xq2CbUTFxLWeOMUe38Rq0.png\",srcSet:\"https://framerusercontent.com/images/4F51b6Xq2CbUTFxLWeOMUe38Rq0.png?scale-down-to=512 512w,https://framerusercontent.com/images/4F51b6Xq2CbUTFxLWeOMUe38Rq0.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/4F51b6Xq2CbUTFxLWeOMUe38Rq0.png 1200w\"}}},children:/*#__PURE__*/_jsx(ImageWithOptimizedAppearEffect,{animate:animation9,background:{alt:\"\",fit:\"fill\",intrinsicHeight:1080,intrinsicWidth:1080,pixelHeight:1200,pixelWidth:1200,sizes:\"365.3333px\",src:\"https://framerusercontent.com/images/4F51b6Xq2CbUTFxLWeOMUe38Rq0.png\",srcSet:\"https://framerusercontent.com/images/4F51b6Xq2CbUTFxLWeOMUe38Rq0.png?scale-down-to=512 512w,https://framerusercontent.com/images/4F51b6Xq2CbUTFxLWeOMUe38Rq0.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/4F51b6Xq2CbUTFxLWeOMUe38Rq0.png 1200w\"},className:\"framer-xytgdj\",\"data-framer-appear-id\":\"xytgdj\",\"data-framer-name\":\"Rectangle 170\",initial:animation10,optimized:true,style:{transformPerspective:1200}})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TnVuaXRvLTcwMA==\",\"--framer-font-family\":'\"Nunito\", \"Nunito Placeholder\", sans-serif',\"--framer-font-size\":\"21px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"0.72px\",\"--framer-line-height\":\"110%\",\"--framer-text-color\":\"rgb(255, 121, 0)\"},children:\"Leonardo\"})}),className:\"framer-1uj1n6a\",\"data-framer-name\":\"Arthur\",fonts:[\"GF;Nunito-700\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TnVuaXRvLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Nunito\", \"Nunito Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"110%\"},children:\"Patient Simulator\"})}),className:\"framer-1bdwg3z\",\"data-framer-name\":\"Pediatric patient simulator\",fonts:[\"GF;Nunito-regular\"],verticalAlignment:\"top\",withExternalLayout:true})]})}),/*#__PURE__*/_jsx(Link,{href:{webPageId:\"qgPFDxNzG\"},motionChild:true,nodeId:\"ApJUcDX5c\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsxs(motion.a,{className:\"framer-10aavsi framer-lux5qc\",\"data-framer-name\":\"MATT\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{GyoKVFaps:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1080,intrinsicWidth:1080,pixelHeight:1200,pixelWidth:1200,positionX:\"center\",positionY:\"top\",sizes:`max((min(${componentViewport?.width||\"100vw\"}, 1920px) - 104px) / 3, 175px)`,src:\"https://framerusercontent.com/images/IQ4HRuJc1wrofA0jS1rPZ0eEjQc.png\",srcSet:\"https://framerusercontent.com/images/IQ4HRuJc1wrofA0jS1rPZ0eEjQc.png?scale-down-to=512 512w,https://framerusercontent.com/images/IQ4HRuJc1wrofA0jS1rPZ0eEjQc.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/IQ4HRuJc1wrofA0jS1rPZ0eEjQc.png 1200w\"}},WFTIh__jF:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1080,intrinsicWidth:1080,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+76+6939.2+0+0+0+0+0+74+0+342.5+0+0),pixelHeight:1200,pixelWidth:1200,positionX:\"center\",positionY:\"top\",sizes:`max((min(${componentViewport?.width||\"100vw\"}, 1920px) - 36px) / 2, 175px)`,src:\"https://framerusercontent.com/images/IQ4HRuJc1wrofA0jS1rPZ0eEjQc.png\",srcSet:\"https://framerusercontent.com/images/IQ4HRuJc1wrofA0jS1rPZ0eEjQc.png?scale-down-to=512 512w,https://framerusercontent.com/images/IQ4HRuJc1wrofA0jS1rPZ0eEjQc.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/IQ4HRuJc1wrofA0jS1rPZ0eEjQc.png 1200w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1080,intrinsicWidth:1080,pixelHeight:1200,pixelWidth:1200,positionX:\"center\",positionY:\"top\",sizes:\"365.3333px\",src:\"https://framerusercontent.com/images/IQ4HRuJc1wrofA0jS1rPZ0eEjQc.png\",srcSet:\"https://framerusercontent.com/images/IQ4HRuJc1wrofA0jS1rPZ0eEjQc.png?scale-down-to=512 512w,https://framerusercontent.com/images/IQ4HRuJc1wrofA0jS1rPZ0eEjQc.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/IQ4HRuJc1wrofA0jS1rPZ0eEjQc.png 1200w\"},className:\"framer-r9t5ta\",\"data-framer-name\":\"Rectangle 170\"})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TnVuaXRvLTcwMA==\",\"--framer-font-family\":'\"Nunito\", \"Nunito Placeholder\", sans-serif',\"--framer-font-size\":\"21px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"0.72px\",\"--framer-line-height\":\"110%\",\"--framer-text-color\":\"rgb(255, 121, 0)\"},children:\"MATT\"})}),className:\"framer-29xobn\",\"data-framer-name\":\"MATT\",fonts:[\"GF;Nunito-700\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TnVuaXRvLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Nunito\", \"Nunito Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"110%\"},children:\"Auscultation Task Trainer\"})}),className:\"framer-hwdttt\",\"data-framer-name\":\"Auscultation task trainor\",fonts:[\"GF;Nunito-regular\"],verticalAlignment:\"top\",withExternalLayout:true})]})}),/*#__PURE__*/_jsx(Link,{href:{webPageId:\"CPv2RMSw8\"},motionChild:true,nodeId:\"pa1U2EV7I\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsxs(motion.a,{className:\"framer-1mpgxm7 framer-lux5qc\",\"data-framer-name\":\"Arthur\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{GyoKVFaps:{background:{alt:\"\",fit:\"fill\",pixelHeight:1200,pixelWidth:1200,sizes:`max((min(${componentViewport?.width||\"100vw\"}, 1920px) - 104px) / 3, 175px)`,src:\"https://framerusercontent.com/images/oxhCBLuKvXR8iZqhvVKfdXLYHvU.png\",srcSet:\"https://framerusercontent.com/images/oxhCBLuKvXR8iZqhvVKfdXLYHvU.png?scale-down-to=512 512w,https://framerusercontent.com/images/oxhCBLuKvXR8iZqhvVKfdXLYHvU.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/oxhCBLuKvXR8iZqhvVKfdXLYHvU.png 1200w\"}},WFTIh__jF:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+76+6939.2+0+0+0+0+0+74+0+342.5+0+0),pixelHeight:1200,pixelWidth:1200,sizes:`max((min(${componentViewport?.width||\"100vw\"}, 1920px) - 36px) / 2, 175px)`,src:\"https://framerusercontent.com/images/oxhCBLuKvXR8iZqhvVKfdXLYHvU.png\",srcSet:\"https://framerusercontent.com/images/oxhCBLuKvXR8iZqhvVKfdXLYHvU.png?scale-down-to=512 512w,https://framerusercontent.com/images/oxhCBLuKvXR8iZqhvVKfdXLYHvU.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/oxhCBLuKvXR8iZqhvVKfdXLYHvU.png 1200w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:1200,pixelWidth:1200,sizes:\"365.3333px\",src:\"https://framerusercontent.com/images/oxhCBLuKvXR8iZqhvVKfdXLYHvU.png\",srcSet:\"https://framerusercontent.com/images/oxhCBLuKvXR8iZqhvVKfdXLYHvU.png?scale-down-to=512 512w,https://framerusercontent.com/images/oxhCBLuKvXR8iZqhvVKfdXLYHvU.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/oxhCBLuKvXR8iZqhvVKfdXLYHvU.png 1200w\"},className:\"framer-2z4mb1\",\"data-framer-name\":\"Rectangle 170\"})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TnVuaXRvLTcwMA==\",\"--framer-font-family\":'\"Nunito\", \"Nunito Placeholder\", sans-serif',\"--framer-font-size\":\"21px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"0.72px\",\"--framer-line-height\":\"110%\",\"--framer-text-color\":\"rgb(255, 121, 0)\"},children:\"Arthur\"})}),className:\"framer-19fegzx\",\"data-framer-name\":\"MATT\",fonts:[\"GF;Nunito-700\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TnVuaXRvLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Nunito\", \"Nunito Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"110%\"},children:\"Pediatric Patient Simulator\"})}),className:\"framer-1wna0j7\",\"data-framer-name\":\"Auscultation task trainor\",fonts:[\"GF;Nunito-regular\"],verticalAlignment:\"top\",withExternalLayout:true})]})}),/*#__PURE__*/_jsx(Link,{href:{webPageId:\"ZvYUDkala\"},motionChild:true,nodeId:\"E7ojV5qg0\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsxs(motion.a,{className:\"framer-1g73fya framer-lux5qc\",\"data-framer-name\":\"Mia\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{GyoKVFaps:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1080,intrinsicWidth:1080,pixelHeight:1200,pixelWidth:1200,sizes:`max((min(${componentViewport?.width||\"100vw\"}, 1920px) - 104px) / 3, 175px)`,src:\"https://framerusercontent.com/images/OkFtYmFTGEylrf3x9IWulTPxw.png\",srcSet:\"https://framerusercontent.com/images/OkFtYmFTGEylrf3x9IWulTPxw.png?scale-down-to=512 512w,https://framerusercontent.com/images/OkFtYmFTGEylrf3x9IWulTPxw.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/OkFtYmFTGEylrf3x9IWulTPxw.png 1200w\"}},WFTIh__jF:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1080,intrinsicWidth:1080,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+76+6939.2+0+0+0+0+0+74+0+586+0+0),pixelHeight:1200,pixelWidth:1200,sizes:`max((min(${componentViewport?.width||\"100vw\"}, 1920px) - 36px) / 2, 175px)`,src:\"https://framerusercontent.com/images/OkFtYmFTGEylrf3x9IWulTPxw.png\",srcSet:\"https://framerusercontent.com/images/OkFtYmFTGEylrf3x9IWulTPxw.png?scale-down-to=512 512w,https://framerusercontent.com/images/OkFtYmFTGEylrf3x9IWulTPxw.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/OkFtYmFTGEylrf3x9IWulTPxw.png 1200w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1080,intrinsicWidth:1080,pixelHeight:1200,pixelWidth:1200,sizes:\"365.3333px\",src:\"https://framerusercontent.com/images/OkFtYmFTGEylrf3x9IWulTPxw.png\",srcSet:\"https://framerusercontent.com/images/OkFtYmFTGEylrf3x9IWulTPxw.png?scale-down-to=512 512w,https://framerusercontent.com/images/OkFtYmFTGEylrf3x9IWulTPxw.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/OkFtYmFTGEylrf3x9IWulTPxw.png 1200w\"},className:\"framer-1bp65cf\",\"data-framer-name\":\"Rectangle 170\"})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TnVuaXRvLTcwMA==\",\"--framer-font-family\":'\"Nunito\", \"Nunito Placeholder\", sans-serif',\"--framer-font-size\":\"21px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"0.72px\",\"--framer-line-height\":\"110%\",\"--framer-text-color\":\"rgb(255, 121, 0)\"},children:\"Mia\"})}),className:\"framer-1ryq6m4\",\"data-framer-name\":\"Arthur\",fonts:[\"GF;Nunito-700\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TnVuaXRvLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Nunito\", \"Nunito Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"110%\"},children:\"Infant Patient Simulator\"})}),className:\"framer-14ijzp8\",\"data-framer-name\":\"Pediatric patient simulator\",fonts:[\"GF;Nunito-regular\"],verticalAlignment:\"top\",withExternalLayout:true})]})}),/*#__PURE__*/_jsx(Link,{href:{webPageId:\"CQnYDXLAO\"},motionChild:true,nodeId:\"CUb2as6xR\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsxs(motion.a,{className:\"framer-249ppl framer-lux5qc\",\"data-framer-name\":\"Sonovision\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{GyoKVFaps:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1080,intrinsicWidth:1080,pixelHeight:847,pixelWidth:1280,sizes:`max((min(${componentViewport?.width||\"100vw\"}, 1920px) - 104px) / 3, 175px)`,src:\"https://framerusercontent.com/images/29VXy8asKUvgwEqLg9TmgXaZNC8.jpeg\",srcSet:\"https://framerusercontent.com/images/29VXy8asKUvgwEqLg9TmgXaZNC8.jpeg?scale-down-to=512 512w,https://framerusercontent.com/images/29VXy8asKUvgwEqLg9TmgXaZNC8.jpeg?scale-down-to=1024 1024w,https://framerusercontent.com/images/29VXy8asKUvgwEqLg9TmgXaZNC8.jpeg 1280w\"}},WFTIh__jF:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1080,intrinsicWidth:1080,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+76+6939.2+0+0+0+0+0+74+0+586+0+0),pixelHeight:847,pixelWidth:1280,sizes:`max((min(${componentViewport?.width||\"100vw\"}, 1920px) - 36px) / 2, 175px)`,src:\"https://framerusercontent.com/images/29VXy8asKUvgwEqLg9TmgXaZNC8.jpeg\",srcSet:\"https://framerusercontent.com/images/29VXy8asKUvgwEqLg9TmgXaZNC8.jpeg?scale-down-to=512 512w,https://framerusercontent.com/images/29VXy8asKUvgwEqLg9TmgXaZNC8.jpeg?scale-down-to=1024 1024w,https://framerusercontent.com/images/29VXy8asKUvgwEqLg9TmgXaZNC8.jpeg 1280w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1080,intrinsicWidth:1080,pixelHeight:847,pixelWidth:1280,sizes:\"365.3333px\",src:\"https://framerusercontent.com/images/29VXy8asKUvgwEqLg9TmgXaZNC8.jpeg\",srcSet:\"https://framerusercontent.com/images/29VXy8asKUvgwEqLg9TmgXaZNC8.jpeg?scale-down-to=512 512w,https://framerusercontent.com/images/29VXy8asKUvgwEqLg9TmgXaZNC8.jpeg?scale-down-to=1024 1024w,https://framerusercontent.com/images/29VXy8asKUvgwEqLg9TmgXaZNC8.jpeg 1280w\"},className:\"framer-jtyctl\",\"data-framer-name\":\"Rectangle 170\"})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TnVuaXRvLTcwMA==\",\"--framer-font-family\":'\"Nunito\", \"Nunito Placeholder\", sans-serif',\"--framer-font-size\":\"21px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"0.72px\",\"--framer-line-height\":\"110%\",\"--framer-text-color\":\"rgb(255, 121, 0)\"},children:\"SonoVision\"})}),className:\"framer-19vy576\",\"data-framer-name\":\"Arthur\",fonts:[\"GF;Nunito-700\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TnVuaXRvLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Nunito\", \"Nunito Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"110%\"},children:\"Ultrasound Diagnostic Simulator\"})}),className:\"framer-1slvfag\",\"data-framer-name\":\"Pediatric patient simulator\",fonts:[\"GF;Nunito-regular\"],verticalAlignment:\"top\",withExternalLayout:true})]})}),/*#__PURE__*/_jsx(Link,{href:{webPageId:\"r0kMb8SGj\"},motionChild:true,nodeId:\"vDFoIYoU6\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsxs(motion.a,{className:\"framer-1xr11fb framer-lux5qc\",\"data-framer-name\":\"LapVision\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{GyoKVFaps:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1080,intrinsicWidth:1080,pixelHeight:2564,pixelWidth:3840,sizes:`max((min(${componentViewport?.width||\"100vw\"}, 1920px) - 104px) / 3, 175px)`,src:\"https://framerusercontent.com/images/pRzh3iOfIbrdTqDAx1IYNY5OIo.jpg?scale-down-to=2048\",srcSet:\"https://framerusercontent.com/images/pRzh3iOfIbrdTqDAx1IYNY5OIo.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/pRzh3iOfIbrdTqDAx1IYNY5OIo.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/pRzh3iOfIbrdTqDAx1IYNY5OIo.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/pRzh3iOfIbrdTqDAx1IYNY5OIo.jpg 3840w\"}},WFTIh__jF:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1080,intrinsicWidth:1080,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+76+6939.2+0+0+0+0+0+74+0+941+0+0),pixelHeight:2564,pixelWidth:3840,sizes:`max((min(${componentViewport?.width||\"100vw\"}, 1920px) - 36px) / 2, 175px)`,src:\"https://framerusercontent.com/images/pRzh3iOfIbrdTqDAx1IYNY5OIo.jpg?scale-down-to=2048\",srcSet:\"https://framerusercontent.com/images/pRzh3iOfIbrdTqDAx1IYNY5OIo.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/pRzh3iOfIbrdTqDAx1IYNY5OIo.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/pRzh3iOfIbrdTqDAx1IYNY5OIo.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/pRzh3iOfIbrdTqDAx1IYNY5OIo.jpg 3840w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1080,intrinsicWidth:1080,pixelHeight:2564,pixelWidth:3840,sizes:\"365.3333px\",src:\"https://framerusercontent.com/images/pRzh3iOfIbrdTqDAx1IYNY5OIo.jpg?scale-down-to=2048\",srcSet:\"https://framerusercontent.com/images/pRzh3iOfIbrdTqDAx1IYNY5OIo.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/pRzh3iOfIbrdTqDAx1IYNY5OIo.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/pRzh3iOfIbrdTqDAx1IYNY5OIo.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/pRzh3iOfIbrdTqDAx1IYNY5OIo.jpg 3840w\"},className:\"framer-1pgox0g\",\"data-framer-name\":\"Rectangle 170\"})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TnVuaXRvLTcwMA==\",\"--framer-font-family\":'\"Nunito\", \"Nunito Placeholder\", sans-serif',\"--framer-font-size\":\"21px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"0.72px\",\"--framer-line-height\":\"110%\",\"--framer-text-color\":\"rgb(255, 121, 0)\"},children:\"LapVision\"})}),className:\"framer-1ut1c2v\",\"data-framer-name\":\"Mia\",fonts:[\"GF;Nunito-700\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TnVuaXRvLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Nunito\", \"Nunito Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"110%\"},children:\"Simulator for laparoscopy\"})}),className:\"framer-1ijdfkd\",\"data-framer-name\":\"Training for acute neonatal emergencies\",fonts:[\"GF;Nunito-regular\"],verticalAlignment:\"top\",withExternalLayout:true})]})}),/*#__PURE__*/_jsx(Link,{href:{webPageId:\"fqLNmqjMK\"},motionChild:true,nodeId:\"SGIrS1VuY\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsxs(motion.a,{className:\"framer-1e8td7f framer-lux5qc\",\"data-framer-name\":\"HystVision/TUR\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{GyoKVFaps:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1080,intrinsicWidth:1080,pixelHeight:3244,pixelWidth:4e3,positionX:\"center\",positionY:\"center\",sizes:`max((min(${componentViewport?.width||\"100vw\"}, 1920px) - 104px) / 3, 175px)`,src:\"https://framerusercontent.com/images/TEoagYdLsCXu9BmjyFXqJD4ksOc.jpg?scale-down-to=2048\",srcSet:\"https://framerusercontent.com/images/TEoagYdLsCXu9BmjyFXqJD4ksOc.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/TEoagYdLsCXu9BmjyFXqJD4ksOc.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/TEoagYdLsCXu9BmjyFXqJD4ksOc.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/TEoagYdLsCXu9BmjyFXqJD4ksOc.jpg 4000w\"}},WFTIh__jF:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1080,intrinsicWidth:1080,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+76+6939.2+0+0+0+0+0+74+0+941+0+0),pixelHeight:3244,pixelWidth:4e3,positionX:\"center\",positionY:\"center\",sizes:`max((min(${componentViewport?.width||\"100vw\"}, 1920px) - 36px) / 2, 175px)`,src:\"https://framerusercontent.com/images/TEoagYdLsCXu9BmjyFXqJD4ksOc.jpg?scale-down-to=2048\",srcSet:\"https://framerusercontent.com/images/TEoagYdLsCXu9BmjyFXqJD4ksOc.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/TEoagYdLsCXu9BmjyFXqJD4ksOc.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/TEoagYdLsCXu9BmjyFXqJD4ksOc.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/TEoagYdLsCXu9BmjyFXqJD4ksOc.jpg 4000w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1080,intrinsicWidth:1080,pixelHeight:3244,pixelWidth:4e3,positionX:\"center\",positionY:\"center\",sizes:\"365.3333px\",src:\"https://framerusercontent.com/images/TEoagYdLsCXu9BmjyFXqJD4ksOc.jpg?scale-down-to=2048\",srcSet:\"https://framerusercontent.com/images/TEoagYdLsCXu9BmjyFXqJD4ksOc.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/TEoagYdLsCXu9BmjyFXqJD4ksOc.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/TEoagYdLsCXu9BmjyFXqJD4ksOc.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/TEoagYdLsCXu9BmjyFXqJD4ksOc.jpg 4000w\"},className:\"framer-lle371\",\"data-framer-name\":\"Rectangle 170\"})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TnVuaXRvLTcwMA==\",\"--framer-font-family\":'\"Nunito\", \"Nunito Placeholder\", sans-serif',\"--framer-font-size\":\"21px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"0.72px\",\"--framer-line-height\":\"110%\",\"--framer-text-color\":\"rgb(255, 121, 0)\"},children:\"HystVision/TUR\"})}),className:\"framer-1qpzal3\",\"data-framer-name\":\"Mia\",fonts:[\"GF;Nunito-700\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TnVuaXRvLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Nunito\", \"Nunito Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"110%\"},children:\"Simulator for hysteroscopy and urology\"})}),className:\"framer-1qde6kp\",\"data-framer-name\":\"Training for acute neonatal emergencies\",fonts:[\"GF;Nunito-regular\"],verticalAlignment:\"top\",withExternalLayout:true})]})}),/*#__PURE__*/_jsx(Link,{href:{webPageId:\"kgqBUQJCO\"},motionChild:true,nodeId:\"LzODdvA4g\",openInNewTab:false,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsxs(motion.a,{className:\"framer-ycuau framer-lux5qc\",\"data-framer-name\":\"AngioVision\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{GyoKVFaps:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1080,intrinsicWidth:1080,pixelHeight:4320,pixelWidth:7680,positionX:\"center\",positionY:\"center\",sizes:`max((min(${componentViewport?.width||\"100vw\"}, 1920px) - 104px) / 3, 175px)`,src:\"https://framerusercontent.com/images/sqLIQapfZi7ll7WswwBg4Q53Mh4.jpg?scale-down-to=2048\",srcSet:\"https://framerusercontent.com/images/sqLIQapfZi7ll7WswwBg4Q53Mh4.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/sqLIQapfZi7ll7WswwBg4Q53Mh4.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/sqLIQapfZi7ll7WswwBg4Q53Mh4.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/sqLIQapfZi7ll7WswwBg4Q53Mh4.jpg?scale-down-to=4096 4096w,https://framerusercontent.com/images/sqLIQapfZi7ll7WswwBg4Q53Mh4.jpg 7680w\"}},WFTIh__jF:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1080,intrinsicWidth:1080,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+76+6939.2+0+0+0+0+0+74+0+1184.5+0+0),pixelHeight:4320,pixelWidth:7680,positionX:\"center\",positionY:\"center\",sizes:`max((min(${componentViewport?.width||\"100vw\"}, 1920px) - 36px) / 2, 175px)`,src:\"https://framerusercontent.com/images/sqLIQapfZi7ll7WswwBg4Q53Mh4.jpg?scale-down-to=2048\",srcSet:\"https://framerusercontent.com/images/sqLIQapfZi7ll7WswwBg4Q53Mh4.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/sqLIQapfZi7ll7WswwBg4Q53Mh4.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/sqLIQapfZi7ll7WswwBg4Q53Mh4.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/sqLIQapfZi7ll7WswwBg4Q53Mh4.jpg?scale-down-to=4096 4096w,https://framerusercontent.com/images/sqLIQapfZi7ll7WswwBg4Q53Mh4.jpg 7680w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1080,intrinsicWidth:1080,pixelHeight:4320,pixelWidth:7680,positionX:\"center\",positionY:\"center\",sizes:\"365.3333px\",src:\"https://framerusercontent.com/images/sqLIQapfZi7ll7WswwBg4Q53Mh4.jpg?scale-down-to=2048\",srcSet:\"https://framerusercontent.com/images/sqLIQapfZi7ll7WswwBg4Q53Mh4.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/sqLIQapfZi7ll7WswwBg4Q53Mh4.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/sqLIQapfZi7ll7WswwBg4Q53Mh4.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/sqLIQapfZi7ll7WswwBg4Q53Mh4.jpg?scale-down-to=4096 4096w,https://framerusercontent.com/images/sqLIQapfZi7ll7WswwBg4Q53Mh4.jpg 7680w\"},className:\"framer-17dtfh2\",\"data-framer-name\":\"Rectangle 170\"})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TnVuaXRvLTcwMA==\",\"--framer-font-family\":'\"Nunito\", \"Nunito Placeholder\", sans-serif',\"--framer-font-size\":\"21px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"0.72px\",\"--framer-line-height\":\"110%\",\"--framer-text-color\":\"rgb(255, 121, 0)\"},children:\"AngioVision\"})}),className:\"framer-ugk7sz\",\"data-framer-name\":\"Mia\",fonts:[\"GF;Nunito-700\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TnVuaXRvLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Nunito\", \"Nunito Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"110%\"},children:\"Simulator for angiography\"})}),className:\"framer-vgcgr2\",\"data-framer-name\":\"Training for acute neonatal emergencies\",fonts:[\"GF;Nunito-regular\"],verticalAlignment:\"top\",withExternalLayout:true})]})})]})]})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1c9ohq7\",\"data-framer-name\":\"video block\",id:elementId2,ref:ref3,children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation11,__framer__styleAppearEffectEnabled:true,__framer__targets:[{ref:ref3,target:\"animate\"}],__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1rkzisd-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"uW1YFG0p1\",rendersWithMotion:true,scopeId:\"augiA20Il\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(Video,{backgroundColor:\"rgba(0, 0, 0, 0)\",borderRadius:24,bottomLeftRadius:24,bottomRightRadius:24,controls:false,height:\"100%\",id:\"uW1YFG0p1\",isMixedBorderRadius:false,layoutId:\"uW1YFG0p1\",loop:true,muted:true,objectFit:\"cover\",playing:true,posterEnabled:false,srcFile:\"https://framerusercontent.com/assets/8jVHKsWLzrMAFgQFwNGs9NwPw.mp4\",srcType:\"Upload\",srcUrl:\"https://assets.mixkit.co/videos/preview/mixkit-ice-cream-glass-of-red-soda-5094-small.mp4\",startTime:0,style:{height:\"100%\",width:\"100%\"},topLeftRadius:24,topRightRadius:24,volume:25,width:\"100%\"})})}),/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__loop:animation12,__framer__loopEffectEnabled:true,__framer__loopRepeatDelay:0,__framer__loopRepeatType:\"loop\",__framer__loopTransition:transition7,__framer__spring:{damping:100,delay:0,duration:.3,ease:[.44,0,.56,1],mass:1,stiffness:482,type:\"spring\"},__framer__styleTransformEffectEnabled:true,__framer__transformTargets:[{target:{opacity:1,rotate:360,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0}},{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0}}],__framer__transformTrigger:\"onScroll\",__perspectiveFX:false,__targetOpacity:.2,className:\"framer-c1xsjh\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(SVG,{className:\"framer-klerkz\",\"data-framer-name\":\"element-2\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:160,intrinsicWidth:165,svg:'<svg width=\"165\" height=\"160\" viewBox=\"0 0 165 160\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M165 79.9863C165 93.2591 153.95 104 140.295 104H89.6932C72.2036 104 58 90.1938 58 73.1936V24.0137C58 10.7409 69.05 0 82.7049 0C96.3598 0 107.41 10.7409 107.41 24.0137V55.9726H140.289C153.944 55.9726 164.994 66.7564 164.994 79.9863H165Z\" fill=\"#EF7F1A\"/>\\n<path d=\"M0 80.0123C0 66.7402 11.05 56 24.7049 56H75.3068C92.7964 56 107 69.8054 107 86.8046V135.988C107 149.26 95.9499 160 82.2951 160C68.6402 160 57.5902 149.26 57.5902 135.988V104.031H24.7112C11.0564 104.031 0.0063071 93.2904 0.0063071 80.0184L0 80.0123Z\" fill=\"#587DFF\"/>\\n<path d=\"M107 86.5897V104H89.5471C72.1381 104 58 90.2909 58 73.4103V56H75.4529C92.8619 56 107 69.7091 107 86.5897Z\" fill=\"#2720FF\"/>\\n</svg>\\n',withExternalLayout:true})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-ami0gm\",\"data-framer-name\":\"info\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-25rpfs\",\"data-framer-name\":\"text\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{WFTIh__jF:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{style:{\"--font-selector\":\"RlM7TnVuaXRvLWJvbGQ=\",\"--framer-font-family\":'\"Nunito\", \"Nunito Placeholder\", sans-serif',\"--framer-font-size\":\"32px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.01em\",\"--framer-text-color\":\"rgb(28, 59, 145)\"},children:\"Elevate Practice with\\xa0MedVision\"})})}},children:/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation8,__framer__styleAppearEffectEnabled:true,__framer__targets:[{ref:ref3,target:\"animate\"}],__framer__threshold:.5,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{style:{\"--font-selector\":\"RlM7TnVuaXRvLWJvbGQ=\",\"--framer-font-family\":'\"Nunito\", \"Nunito Placeholder\", sans-serif',\"--framer-font-size\":\"48px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.01em\",\"--framer-text-color\":\"rgb(28, 59, 145)\"},children:\"Elevate Practice with\\xa0MedVision\"})}),className:\"framer-po3hgp\",\"data-framer-name\":\"Schedule a demo\",fonts:[\"FS;Nunito-bold\"],style:{transformPerspective:1200},verticalAlignment:\"top\",withExternalLayout:true})})}),/*#__PURE__*/_jsx(Link,{href:{webPageId:\"vHPUneaXI\"},motionChild:true,nodeId:\"wjig8tnQm\",openInNewTab:false,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(MotionAWithFX,{__framer__animate:{transition:transition4},__framer__animateOnce:true,__framer__enter:animation8,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-x4kco8 framer-lux5qc\",\"data-framer-name\":\"Frame 21\",style:{transformPerspective:1200},whileTap:animation13,children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TnVuaXRvLTcwMA==\",\"--framer-font-family\":'\"Nunito\", \"Nunito Placeholder\", sans-serif',\"--framer-font-size\":\"21px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"110%\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Get a quote\"})}),className:\"framer-1fxc4f\",\"data-framer-name\":\"Send form\",fonts:[\"GF;Nunito-700\"],verticalAlignment:\"top\",withExternalLayout:true})})})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1wvruxa\",\"data-framer-name\":\"Testimonials\",id:elementId3,ref:ref4,children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{GyoKVFaps:{children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"RlM7TnVuaXRvLWJvbGQ=\",\"--framer-font-family\":'\"Nunito\", \"Nunito Placeholder\", sans-serif',\"--framer-font-size\":\"38px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.01em\",\"--framer-line-height\":\"100%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-35620033-eb15-4a82-82d4-aef6ded4849d, rgb(0, 0, 0))\"},children:\"Our customers \"}),/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"RlM7TnVuaXRvLWJvbGQ=\",\"--framer-font-family\":'\"Nunito\", \"Nunito Placeholder\", sans-serif',\"--framer-font-size\":\"38px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.01em\",\"--framer-line-height\":\"100%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-35620033-eb15-4a82-82d4-aef6ded4849d, rgb(0, 0, 0))\"},children:\"appreciate simulators\"})]})},WFTIh__jF:{children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"h4\",{style:{\"--font-selector\":\"RlM7TnVuaXRvLWJvbGQ=\",\"--framer-font-family\":'\"Nunito\", \"Nunito Placeholder\", sans-serif',\"--framer-font-size\":\"32px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.01em\",\"--framer-line-height\":\"100%\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-35620033-eb15-4a82-82d4-aef6ded4849d, rgb(0, 0, 0))\"},children:\"Our customers \"}),/*#__PURE__*/_jsx(\"h4\",{style:{\"--font-selector\":\"RlM7TnVuaXRvLWJvbGQ=\",\"--framer-font-family\":'\"Nunito\", \"Nunito Placeholder\", sans-serif',\"--framer-font-size\":\"32px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.01em\",\"--framer-line-height\":\"100%\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-35620033-eb15-4a82-82d4-aef6ded4849d, rgb(0, 0, 0))\"},children:\"appreciate simulators\"})]})}},children:/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation8,__framer__styleAppearEffectEnabled:true,__framer__targets:[{ref:ref4,target:\"animate\"}],__framer__threshold:1,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"RlM7TnVuaXRvLWJvbGQ=\",\"--framer-font-family\":'\"Nunito\", \"Nunito Placeholder\", sans-serif',\"--framer-font-size\":\"48px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.01em\",\"--framer-line-height\":\"100%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-35620033-eb15-4a82-82d4-aef6ded4849d, rgb(0, 0, 0))\"},children:\"Our customers \"}),/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"RlM7TnVuaXRvLWJvbGQ=\",\"--framer-font-family\":'\"Nunito\", \"Nunito Placeholder\", sans-serif',\"--framer-font-size\":\"48px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.01em\",\"--framer-line-height\":\"100%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-35620033-eb15-4a82-82d4-aef6ded4849d, rgb(0, 0, 0))\"},children:\"appreciate simulators\"})]}),className:\"framer-1xhrf8b\",\"data-framer-name\":\"headline\",fonts:[\"FS;Nunito-bold\"],style:{transformPerspective:1200},verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1kg1bhg\",children:[/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:false,__framer__enter:animation8,__framer__styleAppearEffectEnabled:true,__framer__targets:[{ref:ref4,target:\"animate\"}],__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-tqp20y\",\"data-framer-name\":\"Card\",style:{transformPerspective:1200},children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1f2ahn9\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{style:{\"--font-selector\":\"R0Y7TnVuaXRvLTYwMA==\",\"--framer-font-family\":'\"Nunito\", \"Nunito Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-0.5px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-b9c3c957-2c66-49c4-9732-fa196fddac20, rgb(0, 17, 34))\"},children:\"Jared McClure, Ed.D.\"})}),className:\"framer-yhzsu5\",fonts:[\"GF;Nunito-600\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TnVuaXRvLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Nunito\", \"Nunito Placeholder\", sans-serif',\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\"},children:\"Clinical Simulation Learning Center,\"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TnVuaXRvLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Nunito\", \"Nunito Placeholder\", sans-serif',\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\"},children:\"Mayborn College of Health Sciences\"})]}),className:\"framer-tw8arg\",fonts:[\"GF;Nunito-regular\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TnVuaXRvLWl0YWxpYw==\",\"--framer-font-family\":'\"Nunito\", \"Nunito Placeholder\", sans-serif',\"--framer-font-style\":\"italic\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"1.6em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(13, 19, 33)\"},children:\"We purchase the MATT trainer just a few years ago and our educators love it. Some of the popular features are its ease of use for one-on-one training, visuals that aid in a larger group training session, and the large realistic sound library. Our Techs like how easy it is set up for training and pack away when not in use.\"})}),className:\"framer-1or7452\",fonts:[\"GF;Nunito-italic\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-10m6ot3\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-11dicnp\",\"data-framer-name\":\"\u201E\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:32,intrinsicWidth:38,svg:'<svg width=\"38\" height=\"32\" viewBox=\"-1 -1 38 32\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M4.9754 29.5055C4.54825 29.8352 4.09439 30 3.61384 30C3.34687 30 3.0532 29.9451 2.73284 29.8352C1.98532 29.6154 1.42468 29.1209 1.05092 28.3516C0.677155 27.5824 0.597063 26.7857 0.810641 25.9615C1.07761 25.1374 1.55816 24.478 2.25229 23.9835C5.56274 21.456 7.35145 18.2418 7.61842 14.3407C7.61842 13.8462 7.35145 13.5989 6.81751 13.5989C5.0021 13.5989 3.45366 13.022 2.1722 11.8681C0.890732 10.6593 0.25 9.06593 0.25 7.08791C0.25 4.94505 0.864035 3.24176 2.09211 1.97802C3.32018 0.659341 4.89531 0 6.81751 0C9.38043 0 11.3293 1.01648 12.6642 3.04945C14.0524 5.02747 14.7466 7.82967 14.7466 11.456C14.7466 19.2033 11.4895 25.2198 4.9754 29.5055ZM25.4788 29.5055C25.0517 29.8352 24.5978 30 24.1173 30C23.8503 30 23.5566 29.9451 23.2363 29.8352C22.4887 29.6154 21.9281 29.1209 21.5543 28.3516C21.1806 27.5824 21.1005 26.7857 21.3141 25.9615C21.581 25.1374 22.0616 24.478 22.7557 23.9835C26.0662 21.456 27.8549 18.2418 28.1219 14.3407C28.1219 13.8462 27.8549 13.5989 27.3209 13.5989C25.5055 13.5989 23.9571 13.022 22.6756 11.8681C21.3942 10.6593 20.7534 9.06593 20.7534 7.08791C20.7534 4.94505 21.3675 3.24176 22.5955 1.97802C23.8236 0.659341 25.3987 0 27.3209 0C29.8839 0 31.8328 1.01648 33.1676 3.04945C34.5559 5.02747 35.25 7.82967 35.25 11.456C35.25 19.2033 31.9929 25.2198 25.4788 29.5055Z\" fill=\"#FF7900\"/>\\n</svg>\\n',withExternalLayout:true})})]}),/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:false,__framer__enter:animation8,__framer__styleAppearEffectEnabled:true,__framer__targets:[{ref:ref4,target:\"animate\"}],__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-mv0vsf\",\"data-framer-name\":\"Card\",style:{transformPerspective:1200},children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-9m365z\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{style:{\"--font-selector\":\"R0Y7TnVuaXRvLTYwMA==\",\"--framer-font-family\":'\"Nunito\", \"Nunito Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-0.5px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-b9c3c957-2c66-49c4-9732-fa196fddac20, rgb(0, 17, 34))\"},children:\"Jackie Holland, MHL, RRT\"})}),className:\"framer-ew3e5n\",fonts:[\"GF;Nunito-600\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TnVuaXRvLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Nunito\", \"Nunito Placeholder\", sans-serif',\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\"},children:\"Program Director Respiratory Therapy\"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TnVuaXRvLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Nunito\", \"Nunito Placeholder\", sans-serif',\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\"},children:\"Pickens Technical College\"})]}),className:\"framer-qxv33t\",fonts:[\"GF;Nunito-regular\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TnVuaXRvLWl0YWxpYw==\",\"--framer-font-family\":'\"Nunito\", \"Nunito Placeholder\", sans-serif',\"--framer-font-style\":\"italic\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"1.6em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(13, 19, 33)\"},children:\"Hi Jason,\"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TnVuaXRvLWl0YWxpYw==\",\"--framer-font-family\":'\"Nunito\", \"Nunito Placeholder\", sans-serif',\"--framer-font-style\":\"italic\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"1.6em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(13, 19, 33)\"},children:\"I wanted to express my sincere gratitude for taking the time to come out and set up MATT (MedVision Auscultation Task Trainer ) at our school. The demonstration you provided was incredibly informative, and I can already see how MATT will greatly benefit our students' training.\"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TnVuaXRvLWl0YWxpYw==\",\"--framer-font-family\":'\"Nunito\", \"Nunito Placeholder\", sans-serif',\"--framer-font-style\":\"italic\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"1.6em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(13, 19, 33)\"},children:\"By having the ability to hear a variety of different breath sounds, our students will be able to enhance their learning and improve their skills. MATT provides students with proper placement of their stethoscopes because the auscultation points light up. This hands-on experience will undoubtedly contribute to their development as future healthcare professionals.\"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TnVuaXRvLWl0YWxpYw==\",\"--framer-font-family\":'\"Nunito\", \"Nunito Placeholder\", sans-serif',\"--framer-font-style\":\"italic\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"1.6em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(13, 19, 33)\"},children:\"Thank you once again for your support and for introducing us to this valuable educational resource. We truly appreciate your dedication and willingness to help our students succeed.\"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TnVuaXRvLWl0YWxpYw==\",\"--framer-font-family\":'\"Nunito\", \"Nunito Placeholder\", sans-serif',\"--framer-font-style\":\"italic\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"1.6em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(13, 19, 33)\"},children:\"Best Regards\"})]}),className:\"framer-1iizz6w\",fonts:[\"GF;Nunito-italic\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-4yffg6\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1y9kg3z\",\"data-framer-name\":\"\u201E\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:32,intrinsicWidth:38,svg:'<svg width=\"38\" height=\"32\" viewBox=\"-1 -1 38 32\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M4.9754 29.5055C4.54825 29.8352 4.09439 30 3.61384 30C3.34687 30 3.0532 29.9451 2.73284 29.8352C1.98532 29.6154 1.42468 29.1209 1.05092 28.3516C0.677155 27.5824 0.597063 26.7857 0.810641 25.9615C1.07761 25.1374 1.55816 24.478 2.25229 23.9835C5.56274 21.456 7.35145 18.2418 7.61842 14.3407C7.61842 13.8462 7.35145 13.5989 6.81751 13.5989C5.0021 13.5989 3.45366 13.022 2.1722 11.8681C0.890732 10.6593 0.25 9.06593 0.25 7.08791C0.25 4.94505 0.864035 3.24176 2.09211 1.97802C3.32018 0.659341 4.89531 0 6.81751 0C9.38043 0 11.3293 1.01648 12.6642 3.04945C14.0524 5.02747 14.7466 7.82967 14.7466 11.456C14.7466 19.2033 11.4895 25.2198 4.9754 29.5055ZM25.4788 29.5055C25.0517 29.8352 24.5978 30 24.1173 30C23.8503 30 23.5566 29.9451 23.2363 29.8352C22.4887 29.6154 21.9281 29.1209 21.5543 28.3516C21.1806 27.5824 21.1005 26.7857 21.3141 25.9615C21.581 25.1374 22.0616 24.478 22.7557 23.9835C26.0662 21.456 27.8549 18.2418 28.1219 14.3407C28.1219 13.8462 27.8549 13.5989 27.3209 13.5989C25.5055 13.5989 23.9571 13.022 22.6756 11.8681C21.3942 10.6593 20.7534 9.06593 20.7534 7.08791C20.7534 4.94505 21.3675 3.24176 22.5955 1.97802C23.8236 0.659341 25.3987 0 27.3209 0C29.8839 0 31.8328 1.01648 33.1676 3.04945C34.5559 5.02747 35.25 7.82967 35.25 11.456C35.25 19.2033 31.9929 25.2198 25.4788 29.5055Z\" fill=\"#FF7900\"/>\\n</svg>\\n',withExternalLayout:true})})]}),/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:false,__framer__enter:animation8,__framer__styleAppearEffectEnabled:true,__framer__targets:[{ref:ref4,target:\"animate\"}],__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-ek3hzw\",\"data-framer-name\":\"Card\",style:{transformPerspective:1200},children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1vape9a\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1rp0zc7\",\"data-framer-name\":\"\u201E\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:32,intrinsicWidth:38,svg:'<svg width=\"38\" height=\"32\" viewBox=\"-1 -1 38 32\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M4.9754 29.5055C4.54825 29.8352 4.09439 30 3.61384 30C3.34687 30 3.0532 29.9451 2.73284 29.8352C1.98532 29.6154 1.42468 29.1209 1.05092 28.3516C0.677155 27.5824 0.597063 26.7857 0.810641 25.9615C1.07761 25.1374 1.55816 24.478 2.25229 23.9835C5.56274 21.456 7.35145 18.2418 7.61842 14.3407C7.61842 13.8462 7.35145 13.5989 6.81751 13.5989C5.0021 13.5989 3.45366 13.022 2.1722 11.8681C0.890732 10.6593 0.25 9.06593 0.25 7.08791C0.25 4.94505 0.864035 3.24176 2.09211 1.97802C3.32018 0.659341 4.89531 0 6.81751 0C9.38043 0 11.3293 1.01648 12.6642 3.04945C14.0524 5.02747 14.7466 7.82967 14.7466 11.456C14.7466 19.2033 11.4895 25.2198 4.9754 29.5055ZM25.4788 29.5055C25.0517 29.8352 24.5978 30 24.1173 30C23.8503 30 23.5566 29.9451 23.2363 29.8352C22.4887 29.6154 21.9281 29.1209 21.5543 28.3516C21.1806 27.5824 21.1005 26.7857 21.3141 25.9615C21.581 25.1374 22.0616 24.478 22.7557 23.9835C26.0662 21.456 27.8549 18.2418 28.1219 14.3407C28.1219 13.8462 27.8549 13.5989 27.3209 13.5989C25.5055 13.5989 23.9571 13.022 22.6756 11.8681C21.3942 10.6593 20.7534 9.06593 20.7534 7.08791C20.7534 4.94505 21.3675 3.24176 22.5955 1.97802C23.8236 0.659341 25.3987 0 27.3209 0C29.8839 0 31.8328 1.01648 33.1676 3.04945C34.5559 5.02747 35.25 7.82967 35.25 11.456C35.25 19.2033 31.9929 25.2198 25.4788 29.5055Z\" fill=\"#FF7900\"/>\\n</svg>\\n',withExternalLayout:true})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-rua47b\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{style:{\"--font-selector\":\"R0Y7TnVuaXRvLTYwMA==\",\"--framer-font-family\":'\"Nunito\", \"Nunito Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-0.5px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-b9c3c957-2c66-49c4-9732-fa196fddac20, rgb(0, 17, 34))\"},children:\"Douglas S.Gardenhire\"})}),className:\"framer-17ml9hn\",fonts:[\"GF;Nunito-600\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TnVuaXRvLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Nunito\", \"Nunito Placeholder\", sans-serif',\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\"},children:\"International Initiatives Lewis College of Nursing and Health Professions Georgia State University\"})}),className:\"framer-xcoefk\",fonts:[\"GF;Nunito-regular\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TnVuaXRvLWl0YWxpYw==\",\"--framer-font-family\":'\"Nunito\", \"Nunito Placeholder\", sans-serif',\"--framer-font-style\":\"italic\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"1.6em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(13, 19, 33)\"},children:\"The two Matt's we purchased have been instrumental in preparing our students for live patient interaction.\"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TnVuaXRvLWl0YWxpYw==\",\"--framer-font-family\":'\"Nunito\", \"Nunito Placeholder\", sans-serif',\"--framer-font-style\":\"italic\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"1.6em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(13, 19, 33)\"},children:\"MATT provides a visual understanding of the external pulmonary anatomy and the use of correct stethoscope placement, allowing students to grasp more complexities in later courses.\"})]}),className:\"framer-1xzcpd8\",fonts:[\"GF;Nunito-italic\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:false,__framer__enter:animation8,__framer__styleAppearEffectEnabled:true,__framer__targets:[{ref:ref4,target:\"animate\"}],__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-ny477z\",\"data-framer-name\":\"Card\",style:{transformPerspective:1200},children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1kvrmsl\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1mey0nf\",\"data-framer-name\":\"\u201E\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:32,intrinsicWidth:38,svg:'<svg width=\"38\" height=\"32\" viewBox=\"-1 -1 38 32\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M4.9754 29.5055C4.54825 29.8352 4.09439 30 3.61384 30C3.34687 30 3.0532 29.9451 2.73284 29.8352C1.98532 29.6154 1.42468 29.1209 1.05092 28.3516C0.677155 27.5824 0.597063 26.7857 0.810641 25.9615C1.07761 25.1374 1.55816 24.478 2.25229 23.9835C5.56274 21.456 7.35145 18.2418 7.61842 14.3407C7.61842 13.8462 7.35145 13.5989 6.81751 13.5989C5.0021 13.5989 3.45366 13.022 2.1722 11.8681C0.890732 10.6593 0.25 9.06593 0.25 7.08791C0.25 4.94505 0.864035 3.24176 2.09211 1.97802C3.32018 0.659341 4.89531 0 6.81751 0C9.38043 0 11.3293 1.01648 12.6642 3.04945C14.0524 5.02747 14.7466 7.82967 14.7466 11.456C14.7466 19.2033 11.4895 25.2198 4.9754 29.5055ZM25.4788 29.5055C25.0517 29.8352 24.5978 30 24.1173 30C23.8503 30 23.5566 29.9451 23.2363 29.8352C22.4887 29.6154 21.9281 29.1209 21.5543 28.3516C21.1806 27.5824 21.1005 26.7857 21.3141 25.9615C21.581 25.1374 22.0616 24.478 22.7557 23.9835C26.0662 21.456 27.8549 18.2418 28.1219 14.3407C28.1219 13.8462 27.8549 13.5989 27.3209 13.5989C25.5055 13.5989 23.9571 13.022 22.6756 11.8681C21.3942 10.6593 20.7534 9.06593 20.7534 7.08791C20.7534 4.94505 21.3675 3.24176 22.5955 1.97802C23.8236 0.659341 25.3987 0 27.3209 0C29.8839 0 31.8328 1.01648 33.1676 3.04945C34.5559 5.02747 35.25 7.82967 35.25 11.456C35.25 19.2033 31.9929 25.2198 25.4788 29.5055Z\" fill=\"#FF7900\"/>\\n</svg>\\n',withExternalLayout:true})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1a8wil\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{style:{\"--font-selector\":\"R0Y7TnVuaXRvLTYwMA==\",\"--framer-font-family\":'\"Nunito\", \"Nunito Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-0.5px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-b9c3c957-2c66-49c4-9732-fa196fddac20, rgb(0, 17, 34))\"},children:\"RT department\"})}),className:\"framer-fqrd7d\",fonts:[\"GF;Nunito-600\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TnVuaXRvLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Nunito\", \"Nunito Placeholder\", sans-serif',\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\"},children:\"Working with Leonardo on Ventilator\"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TnVuaXRvLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Nunito\", \"Nunito Placeholder\", sans-serif',\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\"},children:\"Brandon\"})]}),className:\"framer-ug8oqc\",fonts:[\"GF;Nunito-regular\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TnVuaXRvLWl0YWxpYw==\",\"--framer-font-family\":'\"Nunito\", \"Nunito Placeholder\", sans-serif',\"--framer-font-style\":\"italic\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"1.6em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(13, 19, 33)\"},children:\"We used Leonardo for two different simulation sessions this Summer.\"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TnVuaXRvLWl0YWxpYw==\",\"--framer-font-family\":'\"Nunito\", \"Nunito Placeholder\", sans-serif',\"--framer-font-style\":\"italic\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"1.6em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(13, 19, 33)\"},children:\"It worked very well for lung compliance and resistance disease scenarios. It could not be used for simulating spontaneous breathing trials (SBI) and Rapid Shallow Breathing Indexes(RSBI).\"})]}),className:\"framer-1cw8rfy\",fonts:[\"GF;Nunito-italic\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:false,__framer__enter:animation8,__framer__styleAppearEffectEnabled:true,__framer__targets:[{ref:ref4,target:\"animate\"}],__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1mjglq8\",\"data-framer-name\":\"Card\",style:{transformPerspective:1200},children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1p2yb0q\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-b5o4re\",\"data-framer-name\":\"\u201E\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:32,intrinsicWidth:38,svg:'<svg width=\"38\" height=\"32\" viewBox=\"-1 -1 38 32\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M4.9754 29.5055C4.54825 29.8352 4.09439 30 3.61384 30C3.34687 30 3.0532 29.9451 2.73284 29.8352C1.98532 29.6154 1.42468 29.1209 1.05092 28.3516C0.677155 27.5824 0.597063 26.7857 0.810641 25.9615C1.07761 25.1374 1.55816 24.478 2.25229 23.9835C5.56274 21.456 7.35145 18.2418 7.61842 14.3407C7.61842 13.8462 7.35145 13.5989 6.81751 13.5989C5.0021 13.5989 3.45366 13.022 2.1722 11.8681C0.890732 10.6593 0.25 9.06593 0.25 7.08791C0.25 4.94505 0.864035 3.24176 2.09211 1.97802C3.32018 0.659341 4.89531 0 6.81751 0C9.38043 0 11.3293 1.01648 12.6642 3.04945C14.0524 5.02747 14.7466 7.82967 14.7466 11.456C14.7466 19.2033 11.4895 25.2198 4.9754 29.5055ZM25.4788 29.5055C25.0517 29.8352 24.5978 30 24.1173 30C23.8503 30 23.5566 29.9451 23.2363 29.8352C22.4887 29.6154 21.9281 29.1209 21.5543 28.3516C21.1806 27.5824 21.1005 26.7857 21.3141 25.9615C21.581 25.1374 22.0616 24.478 22.7557 23.9835C26.0662 21.456 27.8549 18.2418 28.1219 14.3407C28.1219 13.8462 27.8549 13.5989 27.3209 13.5989C25.5055 13.5989 23.9571 13.022 22.6756 11.8681C21.3942 10.6593 20.7534 9.06593 20.7534 7.08791C20.7534 4.94505 21.3675 3.24176 22.5955 1.97802C23.8236 0.659341 25.3987 0 27.3209 0C29.8839 0 31.8328 1.01648 33.1676 3.04945C34.5559 5.02747 35.25 7.82967 35.25 11.456C35.25 19.2033 31.9929 25.2198 25.4788 29.5055Z\" fill=\"#FF7900\"/>\\n</svg>\\n',withExternalLayout:true})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-joxjtg\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{style:{\"--font-selector\":\"R0Y7TnVuaXRvLTYwMA==\",\"--framer-font-family\":'\"Nunito\", \"Nunito Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-0.5px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-b9c3c957-2c66-49c4-9732-fa196fddac20, rgb(0, 17, 34))\"},children:\"Adam Dodson, NRP, NCEE, CCEMTP\"})}),className:\"framer-1drupgv\",fonts:[\"GF;Nunito-600\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TnVuaXRvLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Nunito\", \"Nunito Placeholder\", sans-serif',\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\"},children:\"Operations Manager\"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TnVuaXRvLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Nunito\", \"Nunito Placeholder\", sans-serif',\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\"},children:\"The Johns Hopkins Medicine Simulation Center\"})]}),className:\"framer-1x5fes5\",fonts:[\"GF;Nunito-regular\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TnVuaXRvLWl0YWxpYw==\",\"--framer-font-family\":'\"Nunito\", \"Nunito Placeholder\", sans-serif',\"--framer-font-style\":\"italic\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"1.6em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(13, 19, 33)\"},children:\"In the past six months I have been working with the new Leonardo from MedVision. He has helped with data acquisition, objectives and skills other high-fidelity simulators could not do, and so much more. His realism is unmatched. I hope to highlight a few items in this letter that really stand-out to the industry.\"})}),className:\"framer-rj6zrw\",fonts:[\"GF;Nunito-italic\"],verticalAlignment:\"top\",withExternalLayout:true})]})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1klz3mn\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{WFTIh__jF:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{style:{\"--font-selector\":\"RlM7TnVuaXRvLWJvbGQ=\",\"--framer-font-family\":'\"Nunito\", \"Nunito Placeholder\", sans-serif',\"--framer-font-size\":\"48px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.01em\",\"--framer-line-height\":\"100%\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-35620033-eb15-4a82-82d4-aef6ded4849d, rgb(0, 0, 0))\"},children:\"Our blog\"})})}},children:/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation8,__framer__styleAppearEffectEnabled:true,__framer__targets:[{ref:ref4,target:\"animate\"}],__framer__threshold:1,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"RlM7TnVuaXRvLWJvbGQ=\",\"--framer-font-family\":'\"Nunito\", \"Nunito Placeholder\", sans-serif',\"--framer-font-size\":\"48px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.01em\",\"--framer-line-height\":\"100%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-35620033-eb15-4a82-82d4-aef6ded4849d, rgb(0, 0, 0))\"},children:\"Our blog\"})}),className:\"framer-dcog5b\",\"data-framer-name\":\"headline\",fonts:[\"FS;Nunito-bold\"],style:{transformPerspective:1200},verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-zgsvhr\",children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{WFTIh__jF:{query:{from:{alias:\"TM42peFMQ\",data:Blog,type:\"Collection\"},limit:{type:\"LiteralValue\",value:3},select:[{collection:\"TM42peFMQ\",name:\"rJxapUZTv\",type:\"Identifier\"},{collection:\"TM42peFMQ\",name:\"uM4QESgnl\",type:\"Identifier\"},{collection:\"TM42peFMQ\",name:\"MQyS8YPWn\",type:\"Identifier\"},{collection:\"TM42peFMQ\",name:\"vgZ_x3P30\",type:\"Identifier\"},{collection:\"TM42peFMQ\",name:\"id\",type:\"Identifier\"}]}}},children:/*#__PURE__*/_jsx(QueryData,{query:{from:{alias:\"TM42peFMQ\",data:Blog,type:\"Collection\"},limit:{type:\"LiteralValue\",value:4},select:[{collection:\"TM42peFMQ\",name:\"rJxapUZTv\",type:\"Identifier\"},{collection:\"TM42peFMQ\",name:\"uM4QESgnl\",type:\"Identifier\"},{collection:\"TM42peFMQ\",name:\"MQyS8YPWn\",type:\"Identifier\"},{collection:\"TM42peFMQ\",name:\"vgZ_x3P30\",type:\"Identifier\"},{collection:\"TM42peFMQ\",name:\"id\",type:\"Identifier\"}]},children:(collection,paginationInfo,loadMore)=>/*#__PURE__*/_jsx(_Fragment,{children:collection?.map(({id:idTM42peFMQ,MQyS8YPWn:MQyS8YPWnTM42peFMQ,rJxapUZTv:rJxapUZTvTM42peFMQ,uM4QESgnl:uM4QESgnlTM42peFMQ,vgZ_x3P30:vgZ_x3P30TM42peFMQ},index)=>{rJxapUZTvTM42peFMQ??=\"\";MQyS8YPWnTM42peFMQ??=\"\";const textContent=toDateString(vgZ_x3P30TM42peFMQ,{dateStyle:\"medium\",locale:\"\"},activeLocaleCode);return /*#__PURE__*/_jsx(LayoutGroup,{id:`TM42peFMQ-${idTM42peFMQ}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{rJxapUZTv:rJxapUZTvTM42peFMQ},children:/*#__PURE__*/_jsx(Link,{href:{pathVariables:{rJxapUZTv:rJxapUZTvTM42peFMQ},webPageId:\"whzyEvIAU\"},motionChild:true,nodeId:\"sF4WCboEU\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsxs(motion.a,{className:\"framer-1gnzzc6 framer-lux5qc\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{WFTIh__jF:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+76+12385.6+0+88+0+840.8+0+0),sizes:`calc(min(${componentViewport?.width||\"100vw\"}, 1920px) - 24px)`,...toResponsiveImage(uM4QESgnlTM42peFMQ)}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",sizes:\"150px\",...toResponsiveImage(uM4QESgnlTM42peFMQ)},className:\"framer-vsmjzh\"})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-ysh504\",\"data-framer-name\":\"Post\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{WFTIh__jF:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"R0Y7TnVuaXRvLTgwMA==\",\"--framer-font-family\":'\"Nunito\", \"Nunito Placeholder\", sans-serif',\"--framer-font-size\":\"21px\",\"--framer-font-weight\":\"800\",\"--framer-line-height\":\"1.4em\",\"--framer-text-color\":\"rgb(51, 51, 51)\"},children:\"Nursing Simulation: Revolutionizing Healthcare Education Through Immersive Learning\"})}),fonts:[\"GF;Nunito-800\"]}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-oyntvx\",\"data-styles-preset\":\"hhtLhvGBX\",children:\"Simulation and Patient Safety: Enhancing Outcomes Through Realistic Training Scenarios\"})}),className:\"framer-1o8pa9i\",\"data-framer-name\":\"Title\",fonts:[\"Inter\"],text:MQyS8YPWnTM42peFMQ,verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{WFTIh__jF:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TnVuaXRvLTUwMA==\",\"--framer-font-family\":'\"Nunito\", \"Nunito Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"130%\",\"--framer-text-color\":\"rgb(153, 153, 153)\"},children:\"Feb 13, 2025\"})}),fonts:[\"GF;Nunito-500\"]}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1pdeh3o\",\"data-styles-preset\":\"xpP0zGlMt\",style:{\"--framer-text-color\":\"rgb(153, 153, 153)\"},children:\"Mar 17, 2025\"})}),className:\"framer-5x6roc\",\"data-framer-name\":\"Date\",fonts:[\"Inter\"],text:textContent,verticalAlignment:\"top\",withExternalLayout:true})})]})]})})})},idTM42peFMQ);})})})})})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-wupqs3\",\"data-framer-name\":\"schedule a demo form\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1w11ywf\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{GyoKVFaps:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{style:{\"--font-selector\":\"RlM7TnVuaXRvLWJvbGQ=\",\"--framer-font-family\":'\"Nunito\", \"Nunito Placeholder\", sans-serif',\"--framer-font-size\":\"38px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.01em\",\"--framer-line-height\":\"100%\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Keep in touch\"})}),fonts:[\"FS;Nunito-bold\"]},WFTIh__jF:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"RlM7TnVuaXRvLWJvbGQ=\",\"--framer-font-family\":'\"Nunito\", \"Nunito Placeholder\", sans-serif',\"--framer-font-size\":\"38px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.01em\",\"--framer-line-height\":\"100%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Schedule a\\xa0demo\"})}),fonts:[\"FS;Nunito-bold\"]}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{className:\"framer-styles-preset-1sdc691\",\"data-styles-preset\":\"LfZ1_RP_2\",style:{\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Keep in touch\"})}),className:\"framer-1c0qv12\",\"data-framer-name\":\"Schedule a demo\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-13xpyb5\",children:/*#__PURE__*/_jsx(FormContainerWithUTMParams1i9vpeq,{action:\"https://api.framer.com/forms/v1/forms/6683b03b-1e5c-430e-9819-963d7e266452/submit\",className:\"framer-1i9vpeq\",nodeId:\"rp6FH1TYL\",redirectUrl:{webPageId:\"lV_2PlpoX\"},children:formState=>/*#__PURE__*/_jsxs(_Fragment,{children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-s34jxu\",children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-14qd8ha\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-4u3d5i\",children:[/*#__PURE__*/_jsx(motion.label,{className:\"framer-1cqk99j\",children:/*#__PURE__*/_jsx(FormPlainTextInput,{className:\"framer-41slkw\",inputName:\"Name\",placeholder:\"First Name\",required:true,type:\"text\"})}),/*#__PURE__*/_jsx(motion.label,{className:\"framer-1rplimn\",children:/*#__PURE__*/_jsx(FormPlainTextInput,{className:\"framer-fchhuq\",inputName:\"Name\",placeholder:\"Last Name\",required:true,type:\"text\"})})]}),/*#__PURE__*/_jsx(motion.label,{className:\"framer-1lgby3m\",children:/*#__PURE__*/_jsx(FormPlainTextInput,{className:\"framer-1ybu06c\",inputName:\"Email\",placeholder:\"Email address\",required:true,type:\"email\"})})]})}),/*#__PURE__*/_jsxs(motion.label,{className:\"framer-16srgis\",children:[/*#__PURE__*/_jsx(FormBooleanInput,{className:\"framer-1b270tk\",defaultChecked:true,inputName:\"Privacy Policy\",required:true,type:\"checkbox\"}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"500\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"I have read and agree to the Privacy Policy\"})}),className:\"framer-1km0bnq\",fonts:[\"Inter-Medium\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{GyoKVFaps:{width:`max(min(min(${componentViewport?.width||\"100vw\"}, 1920px) - 136px, 1000px), 1px)`},WFTIh__jF:{width:`max(min(min(${componentViewport?.width||\"100vw\"}, 1920px) - 72px, 1000px), 1px)`,y:(componentViewport?.y||0)+0+0+76+13814.8+48+70+0+0+196.8}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:40,width:\"964px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-aewlgb-container\",nodeId:\"aixBHSEcK\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Button,{height:\"100%\",id:\"aixBHSEcK\",layoutId:\"aixBHSEcK\",style:{height:\"100%\",width:\"100%\"},type:\"submit\",variant:formVariants(formState,{error:\"KYUxp9zjj\",pending:\"bE3Rkhfqp\",success:\"H2hTJbBFk\"},\"gDI8eXC3p\"),width:\"100%\"})})})})]})})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-18dyl0o\",\"data-framer-name\":\"FAQ\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"RlM7TnVuaXRvLWJvbGQ=\",\"--framer-font-family\":'\"Nunito\", \"Nunito Placeholder\", sans-serif',\"--framer-font-size\":\"50px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-2.6px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(51, 51, 51)\"},children:\"Medical Simulators\"})}),className:\"framer-158lzwx\",fonts:[\"FS;Nunito-bold\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-fgvmq\",\"data-framer-name\":\"Column\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{WFTIh__jF:{width:`max(min(1000px, min(${componentViewport?.width||\"100vw\"}, 1920px) - 24px), 1px)`,y:(componentViewport?.y||0)+0+0+76+14337.6+60+120+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:66,width:`max(min(1000px, min(${componentViewport?.width||\"100vw\"}, 1920px) - 40px), 1px)`,children:/*#__PURE__*/_jsx(Container,{className:\"framer-16hjs11-container\",nodeId:\"goLsJdRJk\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Accordion,{height:\"100%\",id:\"goLsJdRJk\",layoutId:\"goLsJdRJk\",style:{width:\"100%\"},width:\"100%\"})})})})})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{WFTIh__jF:{width:`calc(min(${componentViewport?.width||\"100vw\"}, 1920px) - 24px)`,y:(componentViewport?.y||0)+0+0+76+14763.6}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:495,width:`calc(min(${componentViewport?.width||\"100vw\"}, 1920px) - 40px)`,children:/*#__PURE__*/_jsx(Container,{className:\"framer-16hrc01-container\",nodeId:\"tCG1f8swP\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{GyoKVFaps:{variant:\"Mo0cz2aEu\"},WFTIh__jF:{variant:\"guuAJC3ty\"}},children:/*#__PURE__*/_jsx(Footer,{height:\"100%\",id:\"tCG1f8swP\",layoutId:\"tCG1f8swP\",style:{width:\"100%\"},variant:\"NNLbsd1l2\",width:\"100%\"})})})})})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{GyoKVFaps:{y:307.5741},WFTIh__jF:{y:667}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:233,y:308.5,children:/*#__PURE__*/_jsx(Container,{className:\"framer-h13cf7-container\",layoutScroll:true,nodeId:\"CXCW496HW\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{GyoKVFaps:{variant:\"oYvBqaOGC\"},WFTIh__jF:{variant:\"SSdgrzG9t\"}},children:/*#__PURE__*/_jsx(ShareWidget,{height:\"100%\",id:\"CXCW496HW\",layoutId:\"CXCW496HW\",variant:\"GkG5CMIEs\",width:\"100%\"})})})})})]}),/*#__PURE__*/_jsx(\"div\",{id:\"overlay\"})]})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-5YDjC.framer-lux5qc, .framer-5YDjC .framer-lux5qc { display: block; }\",\".framer-5YDjC.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: 1200px; }\",\".framer-5YDjC .framer-1tg6fnw-container { flex: none; height: 80px; left: calc(50.00000000000002% - 1160px / 2); position: fixed; top: 20px; width: 1160px; z-index: 10; }\",\".framer-5YDjC .framer-e4tjwc { align-content: center; align-items: center; background-color: var(--token-1a1a6796-83e1-4b64-8053-68c101d0fc2a, #f6f6f4); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 146px; height: min-content; justify-content: flex-start; max-width: 1920px; overflow: visible; padding: 120px 20px 20px 20px; position: relative; width: 100%; }\",\".framer-5YDjC .framer-1ks7fl5 { align-content: center; align-items: center; background-color: #fbfcff; border-bottom-left-radius: 40px; border-bottom-right-radius: 40px; border-top-left-radius: 40px; border-top-right-radius: 40px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; height: 85vh; justify-content: space-between; overflow: hidden; padding: 0px 48px 0px 48px; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-5YDjC .framer-b464a2 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; left: -631px; opacity: 0.06; overflow: hidden; padding: 0px; position: absolute; top: -52px; width: min-content; will-change: var(--framer-will-change-effect-override, transform); z-index: 0; }\",\".framer-5YDjC .framer-6jd4yk { flex: none; height: 525px; position: relative; width: 1717px; }\",\".framer-5YDjC .framer-1e5o15s { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 48px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-5YDjC .framer-143bj78 { --framer-text-wrap: balance; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 740px; word-break: break-word; word-wrap: break-word; }\",\".framer-5YDjC .framer-1o1h3zy { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 740px; }\",\".framer-5YDjC .framer-ygsyk6 { align-content: center; align-items: center; background-color: #ff7900; border-bottom-left-radius: 999px; border-bottom-right-radius: 999px; border-top-left-radius: 999px; border-top-right-radius: 999px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: center; overflow: visible; padding: 12px 12px 12px 24px; position: relative; text-decoration: none; width: min-content; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-5YDjC .framer-qprfj1, .framer-5YDjC .framer-k1glct, .framer-5YDjC .framer-c7fgsx, .framer-5YDjC .framer-i6ha8h, .framer-5YDjC .framer-udw8s3, .framer-5YDjC .framer-1qhlqi, .framer-5YDjC .framer-1dw7s9d, .framer-5YDjC .framer-a3yhyz, .framer-5YDjC .framer-dsklxm, .framer-5YDjC .framer-1fxc4f, .framer-5YDjC .framer-1xhrf8b, .framer-5YDjC .framer-dcog5b, .framer-5YDjC .framer-1c0qv12 { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-5YDjC .framer-1oqz31v { flex: none; height: 40px; position: relative; width: 40px; }\",\".framer-5YDjC .framer-mq3s5r { --border-bottom-width: 2px; --border-color: var(--token-e94c9d7d-0bec-47e0-9944-cf0c4701c808, #ff7900); --border-left-width: 2px; --border-right-width: 2px; --border-style: solid; --border-top-width: 2px; align-content: center; align-items: center; border-bottom-left-radius: 999px; border-bottom-right-radius: 999px; border-top-left-radius: 999px; border-top-right-radius: 999px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 64px; justify-content: center; overflow: visible; padding: 0px 24px 0px 24px; position: relative; width: min-content; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-5YDjC .framer-12b16g0-container { flex: none; height: 44px; position: relative; width: auto; }\",\".framer-5YDjC .framer-1yvu9zc { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 12px; height: 100%; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-5YDjC .framer-1n57yt1-container, .framer-5YDjC .framer-15u8irb-container { flex: none; height: 100%; position: relative; width: 156px; }\",\".framer-5YDjC .framer-1jejdfq-container, .framer-5YDjC .framer-1bb533c-container, .framer-5YDjC .framer-1civrfr-container, .framer-5YDjC .framer-14g5cni-container, .framer-5YDjC .framer-m5gbmk-container, .framer-5YDjC .framer-1tf9so0-container, .framer-5YDjC .framer-10eao7n-container, .framer-5YDjC .framer-5vj3u2-container, .framer-5YDjC .framer-15dkdnc-container, .framer-5YDjC .framer-13l1eik-container, .framer-5YDjC .framer-1gu3ivi-container, .framer-5YDjC .framer-1dezto9-container, .framer-5YDjC .framer-rrv9cm-container, .framer-5YDjC .framer-yzdk2n-container, .framer-5YDjC .framer-of2r7n-container, .framer-5YDjC .framer-1k24db2-container, .framer-5YDjC .framer-qdshy7-container, .framer-5YDjC .framer-dzkbvu-container { height: 219px; position: relative; width: 156px; }\",\".framer-5YDjC .framer-8lzj0e { display: grid; flex: none; gap: 26px; grid-auto-rows: min-content; grid-template-columns: repeat(4, minmax(50px, 1fr)); grid-template-rows: repeat(1, min-content); height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-5YDjC .framer-zrhxai, .framer-5YDjC .framer-1mfzil7, .framer-5YDjC .framer-okvx56, .framer-5YDjC .framer-1h00j0f { align-content: flex-start; align-items: flex-start; align-self: center; border-bottom-left-radius: 12px; border-bottom-right-radius: 12px; border-top-left-radius: 12px; border-top-right-radius: 12px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 14px; height: min-content; justify-content: center; justify-self: center; padding: 0px; position: relative; width: 100%; }\",\".framer-5YDjC .framer-1rruia4-container, .framer-5YDjC .framer-uglm2o-container, .framer-5YDjC .framer-1hs74ib-container, .framer-5YDjC .framer-n74y5f-container { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 35px); position: relative; width: 32px; }\",\".framer-5YDjC .framer-uy1bz1, .framer-5YDjC .framer-k6c91d, .framer-5YDjC .framer-1n1n85, .framer-5YDjC .framer-p34htw { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-5YDjC .framer-1ux5zfb, .framer-5YDjC .framer-1jr0f8k, .framer-5YDjC .framer-8zzebl, .framer-5YDjC .framer-1nbn8jd, .framer-5YDjC .framer-9oqcm1, .framer-5YDjC .framer-1mb7ayk, .framer-5YDjC .framer-1wn4e80, .framer-5YDjC .framer-1cc3fgu, .framer-5YDjC .framer-10sycj4, .framer-5YDjC .framer-1amvec3, .framer-5YDjC .framer-1g44bbc, .framer-5YDjC .framer-1bwt736, .framer-5YDjC .framer-1uj1n6a, .framer-5YDjC .framer-1bdwg3z, .framer-5YDjC .framer-29xobn, .framer-5YDjC .framer-hwdttt, .framer-5YDjC .framer-19fegzx, .framer-5YDjC .framer-1wna0j7, .framer-5YDjC .framer-1ryq6m4, .framer-5YDjC .framer-14ijzp8, .framer-5YDjC .framer-19vy576, .framer-5YDjC .framer-1slvfag, .framer-5YDjC .framer-1ut1c2v, .framer-5YDjC .framer-1ijdfkd, .framer-5YDjC .framer-1qpzal3, .framer-5YDjC .framer-1qde6kp, .framer-5YDjC .framer-ugk7sz, .framer-5YDjC .framer-vgcgr2, .framer-5YDjC .framer-1o8pa9i, .framer-5YDjC .framer-5x6roc { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-5YDjC .framer-1i0gc3r { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 60px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-5YDjC .framer-1p7h2ui, .framer-5YDjC .framer-rg0ux0 { 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-5YDjC .framer-lo9x70, .framer-5YDjC .framer-jfvi44 { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-5YDjC .framer-hw2z7x, .framer-5YDjC .framer-dal55a { display: grid; flex: none; gap: 40px; grid-auto-rows: minmax(0, 1fr); grid-template-columns: repeat(5, minmax(50px, 1fr)); grid-template-rows: repeat(1, minmax(0, 1fr)); height: 150px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-5YDjC .framer-1884r1r, .framer-5YDjC .framer-1ghmhj1, .framer-5YDjC .framer-1lf1k8h, .framer-5YDjC .framer-1ty4i2g, .framer-5YDjC .framer-1xs2d2c, .framer-5YDjC .framer-1cpi0hr, .framer-5YDjC .framer-2n437d, .framer-5YDjC .framer-btm4wo, .framer-5YDjC .framer-1k5pw3q, .framer-5YDjC .framer-14yic9b { align-content: center; align-items: center; align-self: start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: 100%; justify-content: center; justify-self: start; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-5YDjC .framer-agv3ex, .framer-5YDjC .framer-147cnlv, .framer-5YDjC .framer-k0nngd, .framer-5YDjC .framer-phfhj9, .framer-5YDjC .framer-cm3rvc, .framer-5YDjC .framer-e5670r, .framer-5YDjC .framer-108zw1a, .framer-5YDjC .framer-20rtrp, .framer-5YDjC .framer-13j347n, .framer-5YDjC .framer-vfblbf { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; --framer-text-wrap: balance; flex: 1 0 0px; height: 1px; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-5YDjC .framer-1agr133, .framer-5YDjC .framer-nsl0b7, .framer-5YDjC .framer-1bn18tz, .framer-5YDjC .framer-3fcut4, .framer-5YDjC .framer-4e4x71, .framer-5YDjC .framer-13pk0m3, .framer-5YDjC .framer-1ujvrzf, .framer-5YDjC .framer-l05lfl, .framer-5YDjC .framer-kdhr8l, .framer-5YDjC .framer-t5mxot { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; --framer-text-wrap: balance; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-5YDjC .framer-1r9e2dh { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 38px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-5YDjC .framer-1kkba49, .framer-5YDjC .framer-99eclz { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 60px; height: min-content; justify-content: center; overflow: hidden; padding: 0px 20px 0px 20px; position: relative; width: 100%; }\",\".framer-5YDjC .framer-1y2jvov, .framer-5YDjC .framer-s49ue6 { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; --framer-paragraph-spacing: 0px; flex: 1 0 0px; height: auto; max-width: 300px; overflow: visible; position: relative; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; }\",\".framer-5YDjC .framer-ice7d5, .framer-5YDjC .framer-1qtn5wb { --framer-paragraph-spacing: 0px; flex: 1 0 0px; height: auto; max-width: 800px; overflow: visible; position: relative; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; }\",\".framer-5YDjC .framer-f9b8dn-container { flex: none; height: auto; position: relative; width: 1160px; }\",\".framer-5YDjC .framer-cpnfsn { flex: none; height: 709px; overflow: visible; position: relative; width: 1160px; }\",\".framer-5YDjC .framer-m9sccg { align-content: flex-end; align-items: flex-end; bottom: 0px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; justify-content: flex-end; left: 0px; overflow: hidden; padding: 0px; position: absolute; right: 0px; top: 0px; }\",\".framer-5YDjC .framer-gcti9l { -webkit-backdrop-filter: blur(30px); align-content: flex-start; align-items: flex-start; backdrop-filter: blur(30px); background-color: var(--token-e94c9d7d-0bec-47e0-9944-cf0c4701c808, #ff7900); border-bottom-left-radius: 24px; border-bottom-right-radius: 24px; border-top-left-radius: 24px; border-top-right-radius: 24px; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: flex-start; overflow: visible; padding: 24px; position: relative; width: 1px; }\",\".framer-5YDjC .framer-o4nrmm { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-5YDjC .framer-6iwj1b, .framer-5YDjC .framer-12v1jrv, .framer-5YDjC .framer-1umawws { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 12px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-5YDjC .framer-4vt0nw, .framer-5YDjC .framer-8pfd02, .framer-5YDjC .framer-i3204q, .framer-5YDjC .framer-18qhmuf, .framer-5YDjC .framer-e1swie, .framer-5YDjC .framer-tnhzt1 { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 22px); position: relative; width: 22px; }\",\".framer-5YDjC .framer-58w6ix, .framer-5YDjC .framer-128q3aw, .framer-5YDjC .framer-1awb5o { flex: 1 0 0px; height: auto; position: relative; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; }\",\".framer-5YDjC .framer-5mlksx { bottom: 0px; cursor: default; flex: none; height: 580px; left: 1px; mix-blend-mode: multiply; overflow: visible; position: absolute; width: 671px; z-index: 1; }\",\".framer-5YDjC .framer-dkk4bc { -webkit-backdrop-filter: blur(30px); align-content: flex-start; align-items: flex-start; backdrop-filter: blur(30px); background-color: rgba(255, 255, 255, 0.5); border-bottom-left-radius: 12px; border-bottom-right-radius: 12px; border-top-left-radius: 12px; border-top-right-radius: 12px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 9px; height: min-content; justify-content: flex-start; left: 50%; overflow: visible; padding: 24px; position: absolute; top: 21px; transform: translateX(-50%); width: 638px; }\",\".framer-5YDjC .framer-gkcsjw { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 590px; word-break: break-word; word-wrap: break-word; }\",\".framer-5YDjC .framer-9d0ho8 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-5YDjC .framer-9ro3km { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-5YDjC .framer-1xlvont, .framer-5YDjC .framer-1bqriyt, .framer-5YDjC .framer-1upvdno { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 12px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-5YDjC .framer-gs2g19 { align-content: flex-end; align-items: flex-end; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 12px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 572px; }\",\".framer-5YDjC .framer-102ea37 { flex: none; height: 413px; position: relative; width: 474px; }\",\".framer-5YDjC .framer-e9hhhy { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 12px; height: 280px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-5YDjC .framer-1ycb9mc { align-content: flex-start; align-items: flex-start; background-color: #ff7a00; border-bottom-left-radius: 24px; border-bottom-right-radius: 24px; border-top-left-radius: 24px; border-top-right-radius: 24px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; height: 280px; justify-content: space-between; overflow: hidden; padding: 24px; position: relative; width: 280px; will-change: var(--framer-will-change-override, transform); }\",\".framer-5YDjC .framer-14dev17, .framer-5YDjC .framer-3jwisk { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 230px; word-break: break-word; word-wrap: break-word; }\",\".framer-5YDjC .framer-7e19ih { align-content: flex-start; align-items: flex-start; background-color: #1c3b91; border-bottom-left-radius: 24px; border-bottom-right-radius: 24px; border-top-left-radius: 24px; border-top-right-radius: 24px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; height: 280px; justify-content: space-between; overflow: hidden; padding: 24px; position: relative; width: 280px; will-change: var(--framer-will-change-override, transform); }\",\".framer-5YDjC .framer-1pojp8b { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; left: 46%; overflow: hidden; padding: 0px; position: absolute; top: -29px; transform: translateX(-50%); width: min-content; }\",\".framer-5YDjC .framer-1tgmws8 { 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-5YDjC .framer-py2ne2 { align-content: center; align-items: center; background-color: var(--token-53662e5a-6ce0-4175-8a47-70b89b47e3ee, #2652cf); border-bottom-left-radius: 100px; border-bottom-right-radius: 100px; border-top-left-radius: 100px; border-top-right-radius: 100px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: visible; padding: 10px 28px 14px 28px; position: relative; width: min-content; }\",\".framer-5YDjC .framer-w0n8d9 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 32px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; scroll-margin-top: 150px; width: 1160px; }\",\".framer-5YDjC .framer-1e8q8hi { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-5YDjC .framer-xm4pyg { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 42px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-5YDjC .framer-tkny9d { display: grid; flex: none; gap: 32px; grid-auto-rows: min-content; grid-template-columns: repeat(3, minmax(175px, 1fr)); grid-template-rows: repeat(3, min-content); height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-5YDjC .framer-8wx2df, .framer-5YDjC .framer-inl5pu, .framer-5YDjC .framer-10aavsi, .framer-5YDjC .framer-1mpgxm7, .framer-5YDjC .framer-1g73fya, .framer-5YDjC .framer-249ppl, .framer-5YDjC .framer-1xr11fb, .framer-5YDjC .framer-1e8td7f, .framer-5YDjC .framer-ycuau { align-content: flex-start; align-items: flex-start; align-self: start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: flex-start; justify-self: start; overflow: visible; padding: 0px; position: relative; text-decoration: none; width: 100%; }\",\".framer-5YDjC .framer-ef3ob9, .framer-5YDjC .framer-xytgdj { aspect-ratio: 1 / 1; border-bottom-left-radius: 24px; border-bottom-right-radius: 24px; border-top-left-radius: 24px; border-top-right-radius: 24px; flex: none; height: var(--framer-aspect-ratio-supported, 365px); position: relative; width: 100%; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-5YDjC .framer-r9t5ta, .framer-5YDjC .framer-2z4mb1 { aspect-ratio: 1 / 1; border-bottom-left-radius: 24px; border-bottom-right-radius: 24px; border-top-left-radius: 24px; border-top-right-radius: 24px; flex: none; height: var(--framer-aspect-ratio-supported, 365px); position: relative; width: 100%; }\",\".framer-5YDjC .framer-1bp65cf, .framer-5YDjC .framer-jtyctl { align-content: center; align-items: center; aspect-ratio: 1 / 1; border-bottom-left-radius: 24px; border-bottom-right-radius: 24px; border-top-left-radius: 24px; border-top-right-radius: 24px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: var(--framer-aspect-ratio-supported, 365px); justify-content: center; padding: 0px; position: relative; width: 100%; }\",\".framer-5YDjC .framer-1pgox0g { aspect-ratio: 1 / 1; border-bottom-left-radius: 24px; border-bottom-right-radius: 24px; border-top-left-radius: 24px; border-top-right-radius: 24px; flex: none; height: var(--framer-aspect-ratio-supported, 366px); position: relative; width: 100%; }\",\".framer-5YDjC .framer-lle371, .framer-5YDjC .framer-17dtfh2 { aspect-ratio: 1 / 1; border-bottom-left-radius: 12px; border-bottom-right-radius: 12px; border-top-left-radius: 12px; border-top-right-radius: 12px; flex: none; height: var(--framer-aspect-ratio-supported, 366px); position: relative; width: 100%; }\",\".framer-5YDjC .framer-1c9ohq7 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 66px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-5YDjC .framer-1rkzisd-container { flex: none; height: 321px; position: relative; width: 260px; }\",\".framer-5YDjC .framer-c1xsjh { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; opacity: 0.2; overflow: hidden; padding: 0px; position: absolute; right: -106px; top: -92px; width: min-content; z-index: 0; }\",\".framer-5YDjC .framer-klerkz { aspect-ratio: 1 / 1; flex: none; height: 294px; position: relative; width: var(--framer-aspect-ratio-supported, 294px); }\",\".framer-5YDjC .framer-ami0gm { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 32px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-5YDjC .framer-25rpfs { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-5YDjC .framer-po3hgp { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 402px; word-break: break-word; word-wrap: break-word; }\",\".framer-5YDjC .framer-x4kco8 { align-content: center; align-items: center; background-color: #ff7a00; border-bottom-left-radius: 738px; border-bottom-right-radius: 738px; border-top-left-radius: 738px; border-top-right-radius: 738px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: 62px; justify-content: center; overflow: visible; padding: 8px 44px 8px 44px; position: relative; text-decoration: none; width: min-content; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-5YDjC .framer-1wvruxa { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 60px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-5YDjC .framer-1kg1bhg { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: wrap; gap: 20px; height: min-content; justify-content: center; max-width: 100%; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-5YDjC .framer-tqp20y { align-content: center; align-items: center; align-self: stretch; background-color: #ffffff; border-bottom-left-radius: 20px; border-bottom-right-radius: 20px; border-top-left-radius: 20px; border-top-right-radius: 20px; box-shadow: 0px 0.7961918735236395px 2.3885756205709185px -0.625px rgba(0, 0, 0, 0.05), 0px 2.414506143104518px 7.2435184293135535px -1.25px rgba(0, 0, 0, 0.05), 0px 6.382653521484461px 19.147960564453385px -1.875px rgba(0, 0, 0, 0.05), 0px 20px 60px -2.5px rgba(0, 0, 0, 0.05); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 30px; height: auto; justify-content: flex-start; padding: 30px; position: relative; width: 570px; }\",\".framer-5YDjC .framer-1f2ahn9, .framer-5YDjC .framer-9m365z, .framer-5YDjC .framer-rua47b, .framer-5YDjC .framer-1a8wil, .framer-5YDjC .framer-joxjtg { 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: 100%; }\",\".framer-5YDjC .framer-yhzsu5, .framer-5YDjC .framer-ew3e5n, .framer-5YDjC .framer-17ml9hn, .framer-5YDjC .framer-fqrd7d, .framer-5YDjC .framer-ug8oqc, .framer-5YDjC .framer-1drupgv, .framer-5YDjC .framer-1x5fes5 { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; overflow: visible; position: relative; white-space: pre; width: auto; }\",\".framer-5YDjC .framer-tw8arg, .framer-5YDjC .framer-qxv33t, .framer-5YDjC .framer-xcoefk { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; overflow: visible; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-5YDjC .framer-1or7452, .framer-5YDjC .framer-1iizz6w, .framer-5YDjC .framer-1xzcpd8, .framer-5YDjC .framer-1cw8rfy, .framer-5YDjC .framer-rj6zrw { flex: none; height: auto; overflow: visible; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-5YDjC .framer-10m6ot3, .framer-5YDjC .framer-4yffg6 { flex: none; height: 33px; left: 30px; overflow: hidden; position: absolute; top: -16px; width: 39px; z-index: 1; }\",\".framer-5YDjC .framer-11dicnp, .framer-5YDjC .framer-1y9kg3z { flex: none; height: 32px; left: calc(48.71794871794874% - 38px / 2); position: absolute; top: calc(48.484848484848506% - 32px / 2); width: 38px; }\",\".framer-5YDjC .framer-mv0vsf { align-content: center; align-items: center; background-color: #ffffff; border-bottom-left-radius: 20px; border-bottom-right-radius: 20px; border-top-left-radius: 20px; border-top-right-radius: 20px; box-shadow: 0px 0.7961918735236395px 2.3885756205709185px -0.625px rgba(0, 0, 0, 0.05), 0px 2.414506143104518px 7.2435184293135535px -1.25px rgba(0, 0, 0, 0.05), 0px 6.382653521484461px 19.147960564453385px -1.875px rgba(0, 0, 0, 0.05), 0px 20px 60px -2.5px rgba(0, 0, 0, 0.05); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 30px; height: min-content; justify-content: flex-start; padding: 30px; position: relative; width: 570px; }\",\".framer-5YDjC .framer-ek3hzw { align-content: center; align-items: center; background-color: #ffffff; border-bottom-left-radius: 20px; border-bottom-right-radius: 20px; border-top-left-radius: 20px; border-top-right-radius: 20px; box-shadow: 0px 0.7961918735236395px 2.3885756205709185px -0.625px rgba(0, 0, 0, 0.05), 0px 2.414506143104518px 7.2435184293135535px -1.25px rgba(0, 0, 0, 0.05), 0px 6.382653521484461px 19.147960564453385px -1.875px rgba(0, 0, 0, 0.05), 0px 20px 60px -2.5px rgba(0, 0, 0, 0.05); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: flex-start; padding: 30px; position: relative; width: 570px; }\",\".framer-5YDjC .framer-1vape9a { flex: none; height: 32px; left: 31px; overflow: hidden; position: absolute; top: -16px; width: 39px; z-index: 1; }\",\".framer-5YDjC .framer-1rp0zc7 { bottom: 0px; flex: none; left: calc(48.71794871794874% - 38px / 2); position: absolute; top: 0px; width: 38px; }\",\".framer-5YDjC .framer-ny477z, .framer-5YDjC .framer-1mjglq8 { align-content: center; align-items: center; align-self: stretch; background-color: #ffffff; border-bottom-left-radius: 20px; border-bottom-right-radius: 20px; border-top-left-radius: 20px; border-top-right-radius: 20px; box-shadow: 0px 0.7961918735236395px 2.3885756205709185px -0.625px rgba(0, 0, 0, 0.05), 0px 2.414506143104518px 7.2435184293135535px -1.25px rgba(0, 0, 0, 0.05), 0px 6.382653521484461px 19.147960564453385px -1.875px rgba(0, 0, 0, 0.05), 0px 20px 60px -2.5px rgba(0, 0, 0, 0.05); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: auto; justify-content: flex-start; padding: 30px; position: relative; width: 570px; }\",\".framer-5YDjC .framer-1kvrmsl, .framer-5YDjC .framer-1p2yb0q { flex: none; height: 32px; left: 30px; overflow: hidden; position: absolute; top: -16px; width: 38px; z-index: 1; }\",\".framer-5YDjC .framer-1mey0nf, .framer-5YDjC .framer-b5o4re { bottom: 0px; flex: none; left: 0px; position: absolute; right: 0px; top: 0px; }\",\".framer-5YDjC .framer-1klz3mn { 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-5YDjC .framer-zgsvhr { display: grid; flex: none; gap: 40px; grid-auto-rows: minmax(0, 1fr); grid-template-columns: repeat(2, minmax(50px, 1fr)); height: min-content; justify-content: center; padding: 0px; position: relative; width: 100%; }\",\".framer-5YDjC .framer-1gnzzc6 { align-content: center; align-items: center; align-self: start; display: flex; flex: none; flex-direction: row; flex-wrap: wrap; gap: 40px; height: min-content; justify-content: flex-start; justify-self: start; padding: 0px; position: relative; text-decoration: none; width: 100%; }\",\".framer-5YDjC .framer-vsmjzh { border-bottom-left-radius: 10px; border-bottom-right-radius: 10px; border-top-left-radius: 10px; border-top-right-radius: 10px; flex: none; height: 150px; position: relative; width: 150px; }\",\".framer-5YDjC .framer-ysh504 { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; min-width: 200px; padding: 0px; position: relative; width: 1px; }\",\".framer-5YDjC .framer-wupqs3 { align-content: center; align-items: center; background: linear-gradient(120.92037432144858deg, #2652cf 0%, rgba(2, 27, 121, 1) 100%); border-bottom-left-radius: 24px; border-bottom-right-radius: 24px; border-top-left-radius: 24px; border-top-right-radius: 24px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 48px; height: min-content; justify-content: center; overflow: visible; padding: 48px 98px 48px 98px; position: relative; width: 1160px; }\",\".framer-5YDjC .framer-1w11ywf { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; height: min-content; justify-content: space-between; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-5YDjC .framer-13xpyb5 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 48px; height: min-content; justify-content: center; max-width: 1000px; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-5YDjC .framer-1i9vpeq { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-5YDjC .framer-s34jxu { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 18px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-5YDjC .framer-14qd8ha { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-5YDjC .framer-4u3d5i { 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%; }\",\".framer-5YDjC .framer-1cqk99j, .framer-5YDjC .framer-1rplimn { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; padding: 0px; position: relative; width: 1px; }\",'.framer-5YDjC .framer-41slkw, .framer-5YDjC .framer-fchhuq, .framer-5YDjC .framer-1ybu06c { --framer-input-background: rgba(187, 187, 187, 0.15); --framer-input-border-bottom-width: 1px; --framer-input-border-color: rgba(136, 136, 136, 0.1); --framer-input-border-left-width: 1px; --framer-input-border-radius-bottom-left: 10px; --framer-input-border-radius-bottom-right: 10px; --framer-input-border-radius-top-left: 10px; --framer-input-border-radius-top-right: 10px; --framer-input-border-right-width: 1px; --framer-input-border-style: solid; --framer-input-border-top-width: 1px; --framer-input-focused-background: var(--token-1a1a6796-83e1-4b64-8053-68c101d0fc2a, #f6f6f4); --framer-input-focused-border-color: var(--token-e94c9d7d-0bec-47e0-9944-cf0c4701c808, #ff7900); --framer-input-focused-border-style: solid; --framer-input-focused-border-width: 1px; --framer-input-focused-box-shadow: 0px 0px 30px -10px #ff7900; --framer-input-font-color: var(--token-35620033-eb15-4a82-82d4-aef6ded4849d, #000000); --framer-input-font-family: \"Inter\"; --framer-input-font-letter-spacing: 0em; --framer-input-font-line-height: 1.2em; --framer-input-font-size: 14px; --framer-input-font-weight: 400; --framer-input-icon-color: #999999; --framer-input-padding: 12px; --framer-input-placeholder-color: #ffffff; flex: none; height: 40px; position: relative; width: 100%; }',\".framer-5YDjC .framer-1lgby3m { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; padding: 0px; position: relative; width: 100%; }\",\".framer-5YDjC .framer-16srgis { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; padding: 0px; position: relative; width: 100%; }\",\".framer-5YDjC .framer-1b270tk { --framer-input-background: rgba(187, 187, 187, 0.2); --framer-input-boolean-checked-background: rgba(255, 119, 0, 0.85); --framer-input-border-bottom-width: 1px; --framer-input-border-color: rgba(136, 136, 136, 0.2); --framer-input-border-left-width: 1px; --framer-input-border-radius-bottom-left: 4px; --framer-input-border-radius-bottom-right: 4px; --framer-input-border-radius-top-left: 4px; --framer-input-border-radius-top-right: 4px; --framer-input-border-right-width: 1px; --framer-input-border-style: solid; --framer-input-border-top-width: 1px; --framer-input-focused-border-color: var(--token-e94c9d7d-0bec-47e0-9944-cf0c4701c808, #ff7900); --framer-input-focused-border-style: solid; --framer-input-focused-border-width: 1px; --framer-input-icon-color: #ffffff; aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 16px); position: relative; width: 16px; }\",\".framer-5YDjC .framer-1km0bnq { -webkit-user-select: none; flex: none; height: auto; position: relative; user-select: none; white-space: pre; width: auto; }\",\".framer-5YDjC .framer-aewlgb-container { flex: none; height: 40px; position: relative; width: 100%; }\",\".framer-5YDjC .framer-18dyl0o { align-content: center; align-items: center; background-color: #ffffff; border-bottom-left-radius: 20px; border-bottom-right-radius: 20px; border-top-left-radius: 20px; border-top-right-radius: 20px; box-shadow: 0px 0.7961918735236395px 2.3885756205709185px -0.625px rgba(0, 0, 0, 0.13), 0px 2.414506143104518px 7.2435184293135535px -1.25px rgba(0, 0, 0, 0.125), 0px 6.382653521484461px 19.147960564453385px -1.875px rgba(0, 0, 0, 0.125), 0px 20px 60px -2.5px rgba(0, 0, 0, 0.125); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 60px; height: min-content; justify-content: center; overflow: hidden; padding: 100px 40px 100px 40px; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-5YDjC .framer-158lzwx { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; --framer-paragraph-spacing: 0px; flex: none; height: auto; overflow: visible; position: relative; white-space: pre; width: auto; }\",\".framer-5YDjC .framer-fgvmq { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; max-width: 100%; overflow: visible; padding: 0px; position: relative; width: 1000px; }\",\".framer-5YDjC .framer-16hjs11-container { flex: 1 0 0px; height: auto; position: relative; width: 1px; z-index: 2; }\",\".framer-5YDjC .framer-16hrc01-container { flex: none; height: auto; position: relative; width: 100%; }\",\".framer-5YDjC .framer-h13cf7-container { flex: none; height: auto; left: 98%; position: fixed; top: 43%; transform: translate(-50%, -50%); width: auto; z-index: 10; }\",\"@supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-5YDjC.framer-72rtr7, .framer-5YDjC .framer-e4tjwc, .framer-5YDjC .framer-b464a2, .framer-5YDjC .framer-1e5o15s, .framer-5YDjC .framer-1o1h3zy, .framer-5YDjC .framer-ygsyk6, .framer-5YDjC .framer-mq3s5r, .framer-5YDjC .framer-1yvu9zc, .framer-5YDjC .framer-zrhxai, .framer-5YDjC .framer-uy1bz1, .framer-5YDjC .framer-1mfzil7, .framer-5YDjC .framer-k6c91d, .framer-5YDjC .framer-okvx56, .framer-5YDjC .framer-1n1n85, .framer-5YDjC .framer-1h00j0f, .framer-5YDjC .framer-p34htw, .framer-5YDjC .framer-1i0gc3r, .framer-5YDjC .framer-1p7h2ui, .framer-5YDjC .framer-1884r1r, .framer-5YDjC .framer-1ghmhj1, .framer-5YDjC .framer-1lf1k8h, .framer-5YDjC .framer-1ty4i2g, .framer-5YDjC .framer-1xs2d2c, .framer-5YDjC .framer-rg0ux0, .framer-5YDjC .framer-1cpi0hr, .framer-5YDjC .framer-2n437d, .framer-5YDjC .framer-btm4wo, .framer-5YDjC .framer-1k5pw3q, .framer-5YDjC .framer-14yic9b, .framer-5YDjC .framer-1r9e2dh, .framer-5YDjC .framer-1kkba49, .framer-5YDjC .framer-99eclz, .framer-5YDjC .framer-m9sccg, .framer-5YDjC .framer-gcti9l, .framer-5YDjC .framer-o4nrmm, .framer-5YDjC .framer-6iwj1b, .framer-5YDjC .framer-12v1jrv, .framer-5YDjC .framer-1umawws, .framer-5YDjC .framer-dkk4bc, .framer-5YDjC .framer-9d0ho8, .framer-5YDjC .framer-9ro3km, .framer-5YDjC .framer-1xlvont, .framer-5YDjC .framer-1bqriyt, .framer-5YDjC .framer-1upvdno, .framer-5YDjC .framer-gs2g19, .framer-5YDjC .framer-e9hhhy, .framer-5YDjC .framer-1pojp8b, .framer-5YDjC .framer-1tgmws8, .framer-5YDjC .framer-py2ne2, .framer-5YDjC .framer-w0n8d9, .framer-5YDjC .framer-1e8q8hi, .framer-5YDjC .framer-xm4pyg, .framer-5YDjC .framer-8wx2df, .framer-5YDjC .framer-inl5pu, .framer-5YDjC .framer-10aavsi, .framer-5YDjC .framer-1mpgxm7, .framer-5YDjC .framer-1g73fya, .framer-5YDjC .framer-1bp65cf, .framer-5YDjC .framer-249ppl, .framer-5YDjC .framer-jtyctl, .framer-5YDjC .framer-1xr11fb, .framer-5YDjC .framer-1e8td7f, .framer-5YDjC .framer-ycuau, .framer-5YDjC .framer-1c9ohq7, .framer-5YDjC .framer-c1xsjh, .framer-5YDjC .framer-ami0gm, .framer-5YDjC .framer-25rpfs, .framer-5YDjC .framer-x4kco8, .framer-5YDjC .framer-1wvruxa, .framer-5YDjC .framer-1kg1bhg, .framer-5YDjC .framer-tqp20y, .framer-5YDjC .framer-1f2ahn9, .framer-5YDjC .framer-mv0vsf, .framer-5YDjC .framer-9m365z, .framer-5YDjC .framer-ek3hzw, .framer-5YDjC .framer-rua47b, .framer-5YDjC .framer-ny477z, .framer-5YDjC .framer-1a8wil, .framer-5YDjC .framer-1mjglq8, .framer-5YDjC .framer-joxjtg, .framer-5YDjC .framer-1klz3mn, .framer-5YDjC .framer-1gnzzc6, .framer-5YDjC .framer-ysh504, .framer-5YDjC .framer-wupqs3, .framer-5YDjC .framer-13xpyb5, .framer-5YDjC .framer-1i9vpeq, .framer-5YDjC .framer-s34jxu, .framer-5YDjC .framer-14qd8ha, .framer-5YDjC .framer-4u3d5i, .framer-5YDjC .framer-1cqk99j, .framer-5YDjC .framer-1rplimn, .framer-5YDjC .framer-1lgby3m, .framer-5YDjC .framer-16srgis, .framer-5YDjC .framer-18dyl0o, .framer-5YDjC .framer-fgvmq { gap: 0px; } .framer-5YDjC.framer-72rtr7 > *, .framer-5YDjC .framer-1f2ahn9 > *, .framer-5YDjC .framer-9m365z > *, .framer-5YDjC .framer-rua47b > *, .framer-5YDjC .framer-1a8wil > *, .framer-5YDjC .framer-joxjtg > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-5YDjC.framer-72rtr7 > :first-child, .framer-5YDjC .framer-e4tjwc > :first-child, .framer-5YDjC .framer-1e5o15s > :first-child, .framer-5YDjC .framer-uy1bz1 > :first-child, .framer-5YDjC .framer-k6c91d > :first-child, .framer-5YDjC .framer-1n1n85 > :first-child, .framer-5YDjC .framer-p34htw > :first-child, .framer-5YDjC .framer-1i0gc3r > :first-child, .framer-5YDjC .framer-1p7h2ui > :first-child, .framer-5YDjC .framer-1884r1r > :first-child, .framer-5YDjC .framer-1ghmhj1 > :first-child, .framer-5YDjC .framer-1lf1k8h > :first-child, .framer-5YDjC .framer-1ty4i2g > :first-child, .framer-5YDjC .framer-1xs2d2c > :first-child, .framer-5YDjC .framer-rg0ux0 > :first-child, .framer-5YDjC .framer-1cpi0hr > :first-child, .framer-5YDjC .framer-2n437d > :first-child, .framer-5YDjC .framer-btm4wo > :first-child, .framer-5YDjC .framer-1k5pw3q > :first-child, .framer-5YDjC .framer-14yic9b > :first-child, .framer-5YDjC .framer-1r9e2dh > :first-child, .framer-5YDjC .framer-gcti9l > :first-child, .framer-5YDjC .framer-o4nrmm > :first-child, .framer-5YDjC .framer-dkk4bc > :first-child, .framer-5YDjC .framer-9ro3km > :first-child, .framer-5YDjC .framer-gs2g19 > :first-child, .framer-5YDjC .framer-1pojp8b > :first-child, .framer-5YDjC .framer-w0n8d9 > :first-child, .framer-5YDjC .framer-1e8q8hi > :first-child, .framer-5YDjC .framer-xm4pyg > :first-child, .framer-5YDjC .framer-8wx2df > :first-child, .framer-5YDjC .framer-inl5pu > :first-child, .framer-5YDjC .framer-10aavsi > :first-child, .framer-5YDjC .framer-1mpgxm7 > :first-child, .framer-5YDjC .framer-1g73fya > :first-child, .framer-5YDjC .framer-249ppl > :first-child, .framer-5YDjC .framer-1xr11fb > :first-child, .framer-5YDjC .framer-1e8td7f > :first-child, .framer-5YDjC .framer-ycuau > :first-child, .framer-5YDjC .framer-ami0gm > :first-child, .framer-5YDjC .framer-25rpfs > :first-child, .framer-5YDjC .framer-1wvruxa > :first-child, .framer-5YDjC .framer-tqp20y > :first-child, .framer-5YDjC .framer-1f2ahn9 > :first-child, .framer-5YDjC .framer-mv0vsf > :first-child, .framer-5YDjC .framer-9m365z > :first-child, .framer-5YDjC .framer-ek3hzw > :first-child, .framer-5YDjC .framer-rua47b > :first-child, .framer-5YDjC .framer-ny477z > :first-child, .framer-5YDjC .framer-1a8wil > :first-child, .framer-5YDjC .framer-1mjglq8 > :first-child, .framer-5YDjC .framer-joxjtg > :first-child, .framer-5YDjC .framer-1klz3mn > :first-child, .framer-5YDjC .framer-ysh504 > :first-child, .framer-5YDjC .framer-wupqs3 > :first-child, .framer-5YDjC .framer-1i9vpeq > :first-child, .framer-5YDjC .framer-s34jxu > :first-child, .framer-5YDjC .framer-14qd8ha > :first-child, .framer-5YDjC .framer-1cqk99j > :first-child, .framer-5YDjC .framer-1rplimn > :first-child, .framer-5YDjC .framer-1lgby3m > :first-child, .framer-5YDjC .framer-18dyl0o > :first-child { margin-top: 0px; } .framer-5YDjC.framer-72rtr7 > :last-child, .framer-5YDjC .framer-e4tjwc > :last-child, .framer-5YDjC .framer-1e5o15s > :last-child, .framer-5YDjC .framer-uy1bz1 > :last-child, .framer-5YDjC .framer-k6c91d > :last-child, .framer-5YDjC .framer-1n1n85 > :last-child, .framer-5YDjC .framer-p34htw > :last-child, .framer-5YDjC .framer-1i0gc3r > :last-child, .framer-5YDjC .framer-1p7h2ui > :last-child, .framer-5YDjC .framer-1884r1r > :last-child, .framer-5YDjC .framer-1ghmhj1 > :last-child, .framer-5YDjC .framer-1lf1k8h > :last-child, .framer-5YDjC .framer-1ty4i2g > :last-child, .framer-5YDjC .framer-1xs2d2c > :last-child, .framer-5YDjC .framer-rg0ux0 > :last-child, .framer-5YDjC .framer-1cpi0hr > :last-child, .framer-5YDjC .framer-2n437d > :last-child, .framer-5YDjC .framer-btm4wo > :last-child, .framer-5YDjC .framer-1k5pw3q > :last-child, .framer-5YDjC .framer-14yic9b > :last-child, .framer-5YDjC .framer-1r9e2dh > :last-child, .framer-5YDjC .framer-gcti9l > :last-child, .framer-5YDjC .framer-o4nrmm > :last-child, .framer-5YDjC .framer-dkk4bc > :last-child, .framer-5YDjC .framer-9ro3km > :last-child, .framer-5YDjC .framer-gs2g19 > :last-child, .framer-5YDjC .framer-1pojp8b > :last-child, .framer-5YDjC .framer-w0n8d9 > :last-child, .framer-5YDjC .framer-1e8q8hi > :last-child, .framer-5YDjC .framer-xm4pyg > :last-child, .framer-5YDjC .framer-8wx2df > :last-child, .framer-5YDjC .framer-inl5pu > :last-child, .framer-5YDjC .framer-10aavsi > :last-child, .framer-5YDjC .framer-1mpgxm7 > :last-child, .framer-5YDjC .framer-1g73fya > :last-child, .framer-5YDjC .framer-249ppl > :last-child, .framer-5YDjC .framer-1xr11fb > :last-child, .framer-5YDjC .framer-1e8td7f > :last-child, .framer-5YDjC .framer-ycuau > :last-child, .framer-5YDjC .framer-ami0gm > :last-child, .framer-5YDjC .framer-25rpfs > :last-child, .framer-5YDjC .framer-1wvruxa > :last-child, .framer-5YDjC .framer-tqp20y > :last-child, .framer-5YDjC .framer-1f2ahn9 > :last-child, .framer-5YDjC .framer-mv0vsf > :last-child, .framer-5YDjC .framer-9m365z > :last-child, .framer-5YDjC .framer-ek3hzw > :last-child, .framer-5YDjC .framer-rua47b > :last-child, .framer-5YDjC .framer-ny477z > :last-child, .framer-5YDjC .framer-1a8wil > :last-child, .framer-5YDjC .framer-1mjglq8 > :last-child, .framer-5YDjC .framer-joxjtg > :last-child, .framer-5YDjC .framer-1klz3mn > :last-child, .framer-5YDjC .framer-ysh504 > :last-child, .framer-5YDjC .framer-wupqs3 > :last-child, .framer-5YDjC .framer-1i9vpeq > :last-child, .framer-5YDjC .framer-s34jxu > :last-child, .framer-5YDjC .framer-14qd8ha > :last-child, .framer-5YDjC .framer-1cqk99j > :last-child, .framer-5YDjC .framer-1rplimn > :last-child, .framer-5YDjC .framer-1lgby3m > :last-child, .framer-5YDjC .framer-18dyl0o > :last-child { margin-bottom: 0px; } .framer-5YDjC .framer-e4tjwc > * { margin: 0px; margin-bottom: calc(146px / 2); margin-top: calc(146px / 2); } .framer-5YDjC .framer-b464a2 > *, .framer-5YDjC .framer-1o1h3zy > *, .framer-5YDjC .framer-mq3s5r > *, .framer-5YDjC .framer-1tgmws8 > *, .framer-5YDjC .framer-1bp65cf > *, .framer-5YDjC .framer-jtyctl > *, .framer-5YDjC .framer-c1xsjh > *, .framer-5YDjC .framer-4u3d5i > *, .framer-5YDjC .framer-16srgis > *, .framer-5YDjC .framer-fgvmq > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-5YDjC .framer-b464a2 > :first-child, .framer-5YDjC .framer-1o1h3zy > :first-child, .framer-5YDjC .framer-ygsyk6 > :first-child, .framer-5YDjC .framer-mq3s5r > :first-child, .framer-5YDjC .framer-1yvu9zc > :first-child, .framer-5YDjC .framer-zrhxai > :first-child, .framer-5YDjC .framer-1mfzil7 > :first-child, .framer-5YDjC .framer-okvx56 > :first-child, .framer-5YDjC .framer-1h00j0f > :first-child, .framer-5YDjC .framer-1kkba49 > :first-child, .framer-5YDjC .framer-99eclz > :first-child, .framer-5YDjC .framer-m9sccg > :first-child, .framer-5YDjC .framer-6iwj1b > :first-child, .framer-5YDjC .framer-12v1jrv > :first-child, .framer-5YDjC .framer-1umawws > :first-child, .framer-5YDjC .framer-9d0ho8 > :first-child, .framer-5YDjC .framer-1xlvont > :first-child, .framer-5YDjC .framer-1bqriyt > :first-child, .framer-5YDjC .framer-1upvdno > :first-child, .framer-5YDjC .framer-e9hhhy > :first-child, .framer-5YDjC .framer-1tgmws8 > :first-child, .framer-5YDjC .framer-py2ne2 > :first-child, .framer-5YDjC .framer-1bp65cf > :first-child, .framer-5YDjC .framer-jtyctl > :first-child, .framer-5YDjC .framer-1c9ohq7 > :first-child, .framer-5YDjC .framer-c1xsjh > :first-child, .framer-5YDjC .framer-x4kco8 > :first-child, .framer-5YDjC .framer-1kg1bhg > :first-child, .framer-5YDjC .framer-1gnzzc6 > :first-child, .framer-5YDjC .framer-13xpyb5 > :first-child, .framer-5YDjC .framer-4u3d5i > :first-child, .framer-5YDjC .framer-16srgis > :first-child, .framer-5YDjC .framer-fgvmq > :first-child { margin-left: 0px; } .framer-5YDjC .framer-b464a2 > :last-child, .framer-5YDjC .framer-1o1h3zy > :last-child, .framer-5YDjC .framer-ygsyk6 > :last-child, .framer-5YDjC .framer-mq3s5r > :last-child, .framer-5YDjC .framer-1yvu9zc > :last-child, .framer-5YDjC .framer-zrhxai > :last-child, .framer-5YDjC .framer-1mfzil7 > :last-child, .framer-5YDjC .framer-okvx56 > :last-child, .framer-5YDjC .framer-1h00j0f > :last-child, .framer-5YDjC .framer-1kkba49 > :last-child, .framer-5YDjC .framer-99eclz > :last-child, .framer-5YDjC .framer-m9sccg > :last-child, .framer-5YDjC .framer-6iwj1b > :last-child, .framer-5YDjC .framer-12v1jrv > :last-child, .framer-5YDjC .framer-1umawws > :last-child, .framer-5YDjC .framer-9d0ho8 > :last-child, .framer-5YDjC .framer-1xlvont > :last-child, .framer-5YDjC .framer-1bqriyt > :last-child, .framer-5YDjC .framer-1upvdno > :last-child, .framer-5YDjC .framer-e9hhhy > :last-child, .framer-5YDjC .framer-1tgmws8 > :last-child, .framer-5YDjC .framer-py2ne2 > :last-child, .framer-5YDjC .framer-1bp65cf > :last-child, .framer-5YDjC .framer-jtyctl > :last-child, .framer-5YDjC .framer-1c9ohq7 > :last-child, .framer-5YDjC .framer-c1xsjh > :last-child, .framer-5YDjC .framer-x4kco8 > :last-child, .framer-5YDjC .framer-1kg1bhg > :last-child, .framer-5YDjC .framer-1gnzzc6 > :last-child, .framer-5YDjC .framer-13xpyb5 > :last-child, .framer-5YDjC .framer-4u3d5i > :last-child, .framer-5YDjC .framer-16srgis > :last-child, .framer-5YDjC .framer-fgvmq > :last-child { margin-right: 0px; } .framer-5YDjC .framer-1e5o15s > *, .framer-5YDjC .framer-wupqs3 > * { margin: 0px; margin-bottom: calc(48px / 2); margin-top: calc(48px / 2); } .framer-5YDjC .framer-ygsyk6 > * { margin: 0px; margin-left: calc(24px / 2); margin-right: calc(24px / 2); } .framer-5YDjC .framer-1yvu9zc > *, .framer-5YDjC .framer-6iwj1b > *, .framer-5YDjC .framer-12v1jrv > *, .framer-5YDjC .framer-1umawws > *, .framer-5YDjC .framer-1xlvont > *, .framer-5YDjC .framer-1bqriyt > *, .framer-5YDjC .framer-1upvdno > *, .framer-5YDjC .framer-e9hhhy > * { margin: 0px; margin-left: calc(12px / 2); margin-right: calc(12px / 2); } .framer-5YDjC .framer-zrhxai > *, .framer-5YDjC .framer-1mfzil7 > *, .framer-5YDjC .framer-okvx56 > *, .framer-5YDjC .framer-1h00j0f > * { margin: 0px; margin-left: calc(14px / 2); margin-right: calc(14px / 2); } .framer-5YDjC .framer-uy1bz1 > *, .framer-5YDjC .framer-k6c91d > *, .framer-5YDjC .framer-1n1n85 > *, .framer-5YDjC .framer-p34htw > *, .framer-5YDjC .framer-8wx2df > *, .framer-5YDjC .framer-inl5pu > *, .framer-5YDjC .framer-10aavsi > *, .framer-5YDjC .framer-1mpgxm7 > *, .framer-5YDjC .framer-1g73fya > *, .framer-5YDjC .framer-249ppl > *, .framer-5YDjC .framer-1xr11fb > *, .framer-5YDjC .framer-1e8td7f > *, .framer-5YDjC .framer-ycuau > *, .framer-5YDjC .framer-25rpfs > * { margin: 0px; margin-bottom: calc(8px / 2); margin-top: calc(8px / 2); } .framer-5YDjC .framer-1i0gc3r > *, .framer-5YDjC .framer-1wvruxa > *, .framer-5YDjC .framer-18dyl0o > * { margin: 0px; margin-bottom: calc(60px / 2); margin-top: calc(60px / 2); } .framer-5YDjC .framer-1p7h2ui > *, .framer-5YDjC .framer-1884r1r > *, .framer-5YDjC .framer-1ghmhj1 > *, .framer-5YDjC .framer-1lf1k8h > *, .framer-5YDjC .framer-1ty4i2g > *, .framer-5YDjC .framer-1xs2d2c > *, .framer-5YDjC .framer-rg0ux0 > *, .framer-5YDjC .framer-1cpi0hr > *, .framer-5YDjC .framer-2n437d > *, .framer-5YDjC .framer-btm4wo > *, .framer-5YDjC .framer-1k5pw3q > *, .framer-5YDjC .framer-14yic9b > *, .framer-5YDjC .framer-o4nrmm > *, .framer-5YDjC .framer-9ro3km > *, .framer-5YDjC .framer-1pojp8b > *, .framer-5YDjC .framer-ysh504 > *, .framer-5YDjC .framer-14qd8ha > *, .framer-5YDjC .framer-1cqk99j > *, .framer-5YDjC .framer-1rplimn > *, .framer-5YDjC .framer-1lgby3m > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-5YDjC .framer-1r9e2dh > * { margin: 0px; margin-bottom: calc(38px / 2); margin-top: calc(38px / 2); } .framer-5YDjC .framer-1kkba49 > *, .framer-5YDjC .framer-99eclz > * { margin: 0px; margin-left: calc(60px / 2); margin-right: calc(60px / 2); } .framer-5YDjC .framer-m9sccg > *, .framer-5YDjC .framer-py2ne2 > *, .framer-5YDjC .framer-x4kco8 > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } .framer-5YDjC .framer-gcti9l > *, .framer-5YDjC .framer-1e8q8hi > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } .framer-5YDjC .framer-dkk4bc > * { margin: 0px; margin-bottom: calc(9px / 2); margin-top: calc(9px / 2); } .framer-5YDjC .framer-9d0ho8 > *, .framer-5YDjC .framer-1kg1bhg > * { margin: 0px; margin-left: calc(20px / 2); margin-right: calc(20px / 2); } .framer-5YDjC .framer-gs2g19 > * { margin: 0px; margin-bottom: calc(12px / 2); margin-top: calc(12px / 2); } .framer-5YDjC .framer-w0n8d9 > *, .framer-5YDjC .framer-ami0gm > * { margin: 0px; margin-bottom: calc(32px / 2); margin-top: calc(32px / 2); } .framer-5YDjC .framer-xm4pyg > * { margin: 0px; margin-bottom: calc(42px / 2); margin-top: calc(42px / 2); } .framer-5YDjC .framer-1c9ohq7 > * { margin: 0px; margin-left: calc(66px / 2); margin-right: calc(66px / 2); } .framer-5YDjC .framer-tqp20y > *, .framer-5YDjC .framer-mv0vsf > * { margin: 0px; margin-bottom: calc(30px / 2); margin-top: calc(30px / 2); } .framer-5YDjC .framer-ek3hzw > *, .framer-5YDjC .framer-ny477z > *, .framer-5YDjC .framer-1mjglq8 > *, .framer-5YDjC .framer-1i9vpeq > * { margin: 0px; margin-bottom: calc(20px / 2); margin-top: calc(20px / 2); } .framer-5YDjC .framer-1klz3mn > * { margin: 0px; margin-bottom: calc(40px / 2); margin-top: calc(40px / 2); } .framer-5YDjC .framer-1gnzzc6 > * { margin: 0px; margin-left: calc(40px / 2); margin-right: calc(40px / 2); } .framer-5YDjC .framer-13xpyb5 > * { margin: 0px; margin-left: calc(48px / 2); margin-right: calc(48px / 2); } .framer-5YDjC .framer-s34jxu > * { margin: 0px; margin-bottom: calc(18px / 2); margin-top: calc(18px / 2); } }\",...sharedStyle.css,...sharedStyle1.css,...sharedStyle2.css,'.framer-5YDjC[data-border=\"true\"]::after, .framer-5YDjC [data-border=\"true\"]::after { content: \"\"; border-width: var(--border-top-width, 0) var(--border-right-width, 0) var(--border-bottom-width, 0) var(--border-left-width, 0); border-color: var(--border-color, none); border-style: var(--border-style, none); width: 100%; height: 100%; position: absolute; box-sizing: border-box; left: 0; top: 0; border-radius: inherit; pointer-events: none; }',\"@media (min-width: 810px) and (max-width: 1199px) { .framer-5YDjC.framer-72rtr7 { width: 810px; } .framer-5YDjC .framer-1tg6fnw-container { height: auto; left: 50%; top: 0px; transform: translateX(-50%); width: 100%; } .framer-5YDjC .framer-e4tjwc { padding: 80px 20px 20px 20px; } .framer-5YDjC .framer-1ks7fl5 { flex-direction: column; padding: 80px 0px 24px 0px; } .framer-5YDjC .framer-b464a2, .framer-5YDjC .framer-8wx2df { order: 0; } .framer-5YDjC .framer-1e5o15s { align-content: center; align-items: center; flex: none; order: 1; width: min-content; } .framer-5YDjC .framer-1o1h3zy { flex-direction: column; width: min-content; } .framer-5YDjC .framer-mq3s5r { align-self: stretch; padding: 0px; width: auto; } .framer-5YDjC .framer-1yvu9zc { flex-direction: column; height: min-content; order: 2; width: 100%; } .framer-5YDjC .framer-1n57yt1-container, .framer-5YDjC .framer-15u8irb-container { height: 219px; width: 100%; } .framer-5YDjC .framer-8lzj0e { gap: 48px; grid-template-columns: repeat(2, minmax(50px, 1fr)); grid-template-rows: repeat(2, min-content); } .framer-5YDjC .framer-hw2z7x, .framer-5YDjC .framer-dal55a { grid-template-columns: repeat(3, minmax(50px, 1fr)); grid-template-rows: repeat(2, minmax(0, 1fr)); height: 314px; } .framer-5YDjC .framer-1884r1r, .framer-5YDjC .framer-1ghmhj1, .framer-5YDjC .framer-1lf1k8h, .framer-5YDjC .framer-1ty4i2g, .framer-5YDjC .framer-1xs2d2c, .framer-5YDjC .framer-1cpi0hr, .framer-5YDjC .framer-2n437d, .framer-5YDjC .framer-btm4wo, .framer-5YDjC .framer-1k5pw3q, .framer-5YDjC .framer-14yic9b { height: min-content; } .framer-5YDjC .framer-agv3ex, .framer-5YDjC .framer-147cnlv, .framer-5YDjC .framer-k0nngd, .framer-5YDjC .framer-phfhj9, .framer-5YDjC .framer-cm3rvc, .framer-5YDjC .framer-e5670r, .framer-5YDjC .framer-108zw1a, .framer-5YDjC .framer-20rtrp, .framer-5YDjC .framer-13j347n, .framer-5YDjC .framer-vfblbf { flex: none; height: auto; } .framer-5YDjC .framer-1r9e2dh { gap: 48px; } .framer-5YDjC .framer-1kkba49, .framer-5YDjC .framer-99eclz { align-content: flex-start; align-items: flex-start; flex-direction: column; gap: 24px; } .framer-5YDjC .framer-1y2jvov, .framer-5YDjC .framer-ice7d5, .framer-5YDjC .framer-s49ue6, .framer-5YDjC .framer-1qtn5wb { flex: none; width: 100%; } .framer-5YDjC .framer-f9b8dn-container, .framer-5YDjC .framer-gs2g19, .framer-5YDjC .framer-w0n8d9, .framer-5YDjC .framer-mv0vsf, .framer-5YDjC .framer-ek3hzw { width: 100%; } .framer-5YDjC .framer-cpnfsn { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 42px; height: min-content; justify-content: flex-start; padding: 0px; width: 100%; } .framer-5YDjC .framer-m9sccg { bottom: unset; flex-direction: column; gap: 12px; height: min-content; left: unset; order: 1; position: relative; right: unset; top: unset; width: 100%; } .framer-5YDjC .framer-5mlksx { border-bottom-left-radius: 24px; border-bottom-right-radius: 24px; border-top-left-radius: 24px; border-top-right-radius: 24px; bottom: unset; height: 448px; left: unset; position: relative; width: 100%; } .framer-5YDjC .framer-dkk4bc { align-content: center; align-items: center; border-bottom-left-radius: 16px; border-bottom-right-radius: 16px; border-top-left-radius: 16px; border-top-right-radius: 16px; flex-direction: row; gap: 24px; left: 50%; top: 20px; width: 731px; } .framer-5YDjC .framer-gkcsjw, .framer-5YDjC .framer-9ro3km, .framer-5YDjC .framer-1ycb9mc, .framer-5YDjC .framer-7e19ih { flex: 1 0 0px; width: 1px; } .framer-5YDjC .framer-9d0ho8 { width: 326px; } .framer-5YDjC .framer-102ea37 { border-bottom-left-radius: 24px; border-bottom-right-radius: 24px; border-top-left-radius: 24px; border-top-right-radius: 24px; height: 593px; order: 0; width: 100%; } .framer-5YDjC .framer-e9hhhy, .framer-5YDjC .framer-inl5pu { order: 1; } .framer-5YDjC .framer-1pojp8b { align-content: center; align-items: center; left: unset; order: 0; position: relative; top: unset; transform: unset; width: 100%; } .framer-5YDjC .framer-xm4pyg { padding: 50px 0px 50px 0px; } .framer-5YDjC .framer-ef3ob9, .framer-5YDjC .framer-xytgdj, .framer-5YDjC .framer-r9t5ta, .framer-5YDjC .framer-2z4mb1, .framer-5YDjC .framer-1bp65cf, .framer-5YDjC .framer-jtyctl { height: var(--framer-aspect-ratio-supported, 236px); } .framer-5YDjC .framer-10aavsi { order: 3; } .framer-5YDjC .framer-1mpgxm7 { order: 4; } .framer-5YDjC .framer-1g73fya { order: 6; } .framer-5YDjC .framer-249ppl { order: 7; } .framer-5YDjC .framer-1pgox0g, .framer-5YDjC .framer-lle371, .framer-5YDjC .framer-17dtfh2 { height: var(--framer-aspect-ratio-supported, 235px); } .framer-5YDjC .framer-c1xsjh { right: -21px; top: -75px; } .framer-5YDjC .framer-klerkz { height: var(--framer-aspect-ratio-supported, 217px); width: 217px; } .framer-5YDjC .framer-1kg1bhg { flex-direction: column; gap: 60px; } .framer-5YDjC .framer-tqp20y, .framer-5YDjC .framer-ny477z, .framer-5YDjC .framer-1mjglq8 { align-self: unset; height: min-content; width: 100%; } .framer-5YDjC .framer-zgsvhr { align-content: flex-start; align-items: flex-start; display: flex; flex-direction: column; flex-wrap: nowrap; justify-content: flex-start; } .framer-5YDjC .framer-1gnzzc6 { align-self: unset; } .framer-5YDjC .framer-wupqs3 { padding: 48px; width: 100%; } .framer-5YDjC .framer-18dyl0o { padding: 80px 40px 80px 40px; } .framer-5YDjC .framer-h13cf7-container { left: unset; right: 0px; top: 42%; transform: translateY(-50%); } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-5YDjC .framer-1ks7fl5, .framer-5YDjC .framer-1o1h3zy, .framer-5YDjC .framer-1yvu9zc, .framer-5YDjC .framer-8lzj0e, .framer-5YDjC .framer-1r9e2dh, .framer-5YDjC .framer-1kkba49, .framer-5YDjC .framer-99eclz, .framer-5YDjC .framer-cpnfsn, .framer-5YDjC .framer-m9sccg, .framer-5YDjC .framer-dkk4bc, .framer-5YDjC .framer-1kg1bhg, .framer-5YDjC .framer-zgsvhr { gap: 0px; } .framer-5YDjC .framer-1ks7fl5 > *, .framer-5YDjC .framer-1ks7fl5 > :first-child, .framer-5YDjC .framer-1ks7fl5 > :last-child, .framer-5YDjC .framer-8lzj0e > *, .framer-5YDjC .framer-8lzj0e > :first-child, .framer-5YDjC .framer-8lzj0e > :last-child { margin: 0px; } .framer-5YDjC .framer-1o1h3zy > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-5YDjC .framer-1o1h3zy > :first-child, .framer-5YDjC .framer-1yvu9zc > :first-child, .framer-5YDjC .framer-1r9e2dh > :first-child, .framer-5YDjC .framer-1kkba49 > :first-child, .framer-5YDjC .framer-99eclz > :first-child, .framer-5YDjC .framer-cpnfsn > :first-child, .framer-5YDjC .framer-m9sccg > :first-child, .framer-5YDjC .framer-1kg1bhg > :first-child, .framer-5YDjC .framer-zgsvhr > :first-child { margin-top: 0px; } .framer-5YDjC .framer-1o1h3zy > :last-child, .framer-5YDjC .framer-1yvu9zc > :last-child, .framer-5YDjC .framer-1r9e2dh > :last-child, .framer-5YDjC .framer-1kkba49 > :last-child, .framer-5YDjC .framer-99eclz > :last-child, .framer-5YDjC .framer-cpnfsn > :last-child, .framer-5YDjC .framer-m9sccg > :last-child, .framer-5YDjC .framer-1kg1bhg > :last-child, .framer-5YDjC .framer-zgsvhr > :last-child { margin-bottom: 0px; } .framer-5YDjC .framer-1yvu9zc > *, .framer-5YDjC .framer-m9sccg > * { margin: 0px; margin-bottom: calc(12px / 2); margin-top: calc(12px / 2); } .framer-5YDjC .framer-1r9e2dh > * { margin: 0px; margin-bottom: calc(48px / 2); margin-top: calc(48px / 2); } .framer-5YDjC .framer-1kkba49 > *, .framer-5YDjC .framer-99eclz > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } .framer-5YDjC .framer-cpnfsn > * { margin: 0px; margin-bottom: calc(42px / 2); margin-top: calc(42px / 2); } .framer-5YDjC .framer-dkk4bc > * { margin: 0px; margin-left: calc(24px / 2); margin-right: calc(24px / 2); } .framer-5YDjC .framer-dkk4bc > :first-child { margin-left: 0px; } .framer-5YDjC .framer-dkk4bc > :last-child { margin-right: 0px; } .framer-5YDjC .framer-1kg1bhg > * { margin: 0px; margin-bottom: calc(60px / 2); margin-top: calc(60px / 2); } .framer-5YDjC .framer-zgsvhr > * { margin: 0px; margin-bottom: calc(40px / 2); margin-top: calc(40px / 2); } }}\",\"@media (max-width: 809px) { .framer-5YDjC.framer-72rtr7 { width: 390px; } .framer-5YDjC .framer-1tg6fnw-container { height: auto; left: 50%; top: 0px; transform: translateX(-50%); width: 100%; } .framer-5YDjC .framer-e4tjwc { gap: 120px; padding: 76px 12px 20px 12px; } .framer-5YDjC .framer-1ks7fl5 { flex-direction: column; order: 0; padding: 0px 0px 24px 0px; } .framer-5YDjC .framer-6jd4yk { height: 380px; width: 1243px; } .framer-5YDjC .framer-1e5o15s { flex: none; gap: 36px; padding: 64px 24px 0px 24px; width: 100%; } .framer-5YDjC .framer-143bj78 { order: 0; width: 100%; } .framer-5YDjC .framer-1o1h3zy { flex-direction: column; order: 1; width: 100%; } .framer-5YDjC .framer-ygsyk6 { gap: unset; justify-content: space-between; width: 100%; } .framer-5YDjC .framer-1yvu9zc { flex-direction: column; height: min-content; justify-content: flex-end; width: 100%; } .framer-5YDjC .framer-15u8irb-container { height: 219px; width: 100%; } .framer-5YDjC .framer-8lzj0e { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 36px; order: 1; } .framer-5YDjC .framer-zrhxai, .framer-5YDjC .framer-1mfzil7, .framer-5YDjC .framer-okvx56, .framer-5YDjC .framer-1h00j0f { align-self: unset; } .framer-5YDjC .framer-1i0gc3r { order: 2; } .framer-5YDjC .framer-hw2z7x, .framer-5YDjC .framer-dal55a { align-content: flex-start; align-items: flex-start; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: flex-start; } .framer-5YDjC .framer-1884r1r, .framer-5YDjC .framer-1ghmhj1, .framer-5YDjC .framer-1lf1k8h, .framer-5YDjC .framer-1ty4i2g, .framer-5YDjC .framer-1xs2d2c, .framer-5YDjC .framer-1cpi0hr, .framer-5YDjC .framer-2n437d, .framer-5YDjC .framer-btm4wo, .framer-5YDjC .framer-1k5pw3q, .framer-5YDjC .framer-14yic9b { align-self: unset; height: min-content; } .framer-5YDjC .framer-agv3ex, .framer-5YDjC .framer-147cnlv, .framer-5YDjC .framer-k0nngd, .framer-5YDjC .framer-phfhj9, .framer-5YDjC .framer-cm3rvc, .framer-5YDjC .framer-e5670r, .framer-5YDjC .framer-108zw1a, .framer-5YDjC .framer-20rtrp, .framer-5YDjC .framer-13j347n, .framer-5YDjC .framer-vfblbf { flex: none; height: auto; } .framer-5YDjC .framer-jfvi44, .framer-5YDjC .framer-1xhrf8b, .framer-5YDjC .framer-dcog5b, .framer-5YDjC .framer-1c0qv12 { white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; } .framer-5YDjC .framer-1r9e2dh, .framer-5YDjC .framer-10aavsi { order: 3; } .framer-5YDjC .framer-1kkba49, .framer-5YDjC .framer-99eclz { flex-direction: column; padding: 60px 20px 60px 20px; } .framer-5YDjC .framer-1y2jvov, .framer-5YDjC .framer-ice7d5, .framer-5YDjC .framer-s49ue6, .framer-5YDjC .framer-1qtn5wb, .framer-5YDjC .framer-ysh504, .framer-5YDjC .framer-1cqk99j, .framer-5YDjC .framer-1rplimn { flex: none; width: 100%; } .framer-5YDjC .framer-f9b8dn-container { order: 4; width: 100%; } .framer-5YDjC .framer-cpnfsn { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 28px; height: min-content; justify-content: flex-start; order: 5; padding: 0px; width: 100%; } .framer-5YDjC .framer-m9sccg { bottom: unset; flex-direction: column; gap: 12px; height: min-content; left: unset; order: 1; position: relative; right: unset; top: unset; width: 100%; } .framer-5YDjC .framer-gcti9l { flex: none; order: 0; width: 100%; } .framer-5YDjC .framer-5mlksx { border-bottom-left-radius: 24px; border-bottom-right-radius: 24px; border-top-left-radius: 24px; border-top-right-radius: 24px; bottom: unset; height: 262px; left: unset; order: 1; position: relative; width: 100%; } .framer-5YDjC .framer-gs2g19, .framer-5YDjC .framer-ami0gm { order: 2; width: 100%; } .framer-5YDjC .framer-102ea37 { border-bottom-left-radius: 24px; border-bottom-right-radius: 24px; border-top-left-radius: 24px; border-top-right-radius: 24px; height: 351px; order: 1; width: 100%; } .framer-5YDjC .framer-e9hhhy { flex-direction: column; height: min-content; order: 0; } .framer-5YDjC .framer-1ycb9mc { height: 240px; order: 1; width: 100%; } .framer-5YDjC .framer-7e19ih { height: 240px; order: 0; width: 100%; } .framer-5YDjC .framer-1pojp8b { left: unset; order: 0; position: relative; top: unset; transform: unset; width: 100%; } .framer-5YDjC .framer-py2ne2 { padding: 10px 24px 14px 24px; } .framer-5YDjC .framer-w0n8d9 { order: 6; width: 100%; } .framer-5YDjC .framer-dsklxm { order: 0; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; } .framer-5YDjC .framer-tkny9d { gap: 12px; grid-template-columns: repeat(2, minmax(175px, 1fr)); order: 3; } .framer-5YDjC .framer-8wx2df { order: 0; } .framer-5YDjC .framer-ef3ob9, .framer-5YDjC .framer-xytgdj, .framer-5YDjC .framer-r9t5ta, .framer-5YDjC .framer-2z4mb1, .framer-5YDjC .framer-1bp65cf, .framer-5YDjC .framer-jtyctl, .framer-5YDjC .framer-1pgox0g, .framer-5YDjC .framer-lle371, .framer-5YDjC .framer-17dtfh2 { height: var(--framer-aspect-ratio-supported, 177px); } .framer-5YDjC .framer-inl5pu { order: 1; } .framer-5YDjC .framer-1mpgxm7 { order: 4; } .framer-5YDjC .framer-1g73fya { order: 5; } .framer-5YDjC .framer-249ppl { order: 6; } .framer-5YDjC .framer-1xr11fb { order: 7; } .framer-5YDjC .framer-1e8td7f, .framer-5YDjC .framer-1wvruxa { order: 8; } .framer-5YDjC .framer-ycuau, .framer-5YDjC .framer-1klz3mn { order: 9; } .framer-5YDjC .framer-1c9ohq7 { flex-direction: column; gap: 8px; order: 7; width: 100%; } .framer-5YDjC .framer-1rkzisd-container { height: 428px; order: 0; width: 100%; } .framer-5YDjC .framer-c1xsjh { bottom: -154px; order: 1; right: 0px; top: unset; } .framer-5YDjC .framer-klerkz { height: var(--framer-aspect-ratio-supported, 154px); width: 154px; } .framer-5YDjC .framer-25rpfs, .framer-5YDjC .framer-po3hgp, .framer-5YDjC .framer-mv0vsf, .framer-5YDjC .framer-ek3hzw { width: 100%; } .framer-5YDjC .framer-1kg1bhg { flex-direction: column; gap: 60px; } .framer-5YDjC .framer-tqp20y, .framer-5YDjC .framer-ny477z, .framer-5YDjC .framer-1mjglq8 { align-self: unset; height: min-content; width: 100%; } .framer-5YDjC .framer-zgsvhr { align-content: flex-start; align-items: flex-start; display: flex; flex-direction: column; flex-wrap: nowrap; justify-content: flex-start; } .framer-5YDjC .framer-1gnzzc6 { align-self: unset; flex-direction: column; gap: 24px; } .framer-5YDjC .framer-vsmjzh { height: 200px; width: 100%; } .framer-5YDjC .framer-wupqs3 { gap: 32px; order: 10; padding: 48px 24px 48px 24px; width: 100%; } .framer-5YDjC .framer-1w11ywf { flex-direction: column; gap: 12px; justify-content: center; } .framer-5YDjC .framer-4u3d5i { flex-direction: column; } .framer-5YDjC .framer-18dyl0o { order: 11; padding: 60px 20px 60px 20px; } .framer-5YDjC .framer-158lzwx { white-space: pre-wrap; width: 390px; word-break: break-word; word-wrap: break-word; } .framer-5YDjC .framer-16hrc01-container { order: 12; } .framer-5YDjC .framer-h13cf7-container { bottom: 100px; left: unset; right: 0px; top: unset; transform: unset; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-5YDjC .framer-e4tjwc, .framer-5YDjC .framer-1ks7fl5, .framer-5YDjC .framer-1e5o15s, .framer-5YDjC .framer-1o1h3zy, .framer-5YDjC .framer-ygsyk6, .framer-5YDjC .framer-1yvu9zc, .framer-5YDjC .framer-8lzj0e, .framer-5YDjC .framer-hw2z7x, .framer-5YDjC .framer-dal55a, .framer-5YDjC .framer-1kkba49, .framer-5YDjC .framer-99eclz, .framer-5YDjC .framer-cpnfsn, .framer-5YDjC .framer-m9sccg, .framer-5YDjC .framer-e9hhhy, .framer-5YDjC .framer-tkny9d, .framer-5YDjC .framer-1c9ohq7, .framer-5YDjC .framer-1kg1bhg, .framer-5YDjC .framer-zgsvhr, .framer-5YDjC .framer-1gnzzc6, .framer-5YDjC .framer-wupqs3, .framer-5YDjC .framer-1w11ywf, .framer-5YDjC .framer-4u3d5i { gap: 0px; } .framer-5YDjC .framer-e4tjwc > * { margin: 0px; margin-bottom: calc(120px / 2); margin-top: calc(120px / 2); } .framer-5YDjC .framer-e4tjwc > :first-child, .framer-5YDjC .framer-1e5o15s > :first-child, .framer-5YDjC .framer-1o1h3zy > :first-child, .framer-5YDjC .framer-1yvu9zc > :first-child, .framer-5YDjC .framer-8lzj0e > :first-child, .framer-5YDjC .framer-hw2z7x > :first-child, .framer-5YDjC .framer-dal55a > :first-child, .framer-5YDjC .framer-1kkba49 > :first-child, .framer-5YDjC .framer-99eclz > :first-child, .framer-5YDjC .framer-cpnfsn > :first-child, .framer-5YDjC .framer-m9sccg > :first-child, .framer-5YDjC .framer-e9hhhy > :first-child, .framer-5YDjC .framer-1c9ohq7 > :first-child, .framer-5YDjC .framer-1kg1bhg > :first-child, .framer-5YDjC .framer-zgsvhr > :first-child, .framer-5YDjC .framer-1gnzzc6 > :first-child, .framer-5YDjC .framer-wupqs3 > :first-child, .framer-5YDjC .framer-1w11ywf > :first-child, .framer-5YDjC .framer-4u3d5i > :first-child { margin-top: 0px; } .framer-5YDjC .framer-e4tjwc > :last-child, .framer-5YDjC .framer-1e5o15s > :last-child, .framer-5YDjC .framer-1o1h3zy > :last-child, .framer-5YDjC .framer-1yvu9zc > :last-child, .framer-5YDjC .framer-8lzj0e > :last-child, .framer-5YDjC .framer-hw2z7x > :last-child, .framer-5YDjC .framer-dal55a > :last-child, .framer-5YDjC .framer-1kkba49 > :last-child, .framer-5YDjC .framer-99eclz > :last-child, .framer-5YDjC .framer-cpnfsn > :last-child, .framer-5YDjC .framer-m9sccg > :last-child, .framer-5YDjC .framer-e9hhhy > :last-child, .framer-5YDjC .framer-1c9ohq7 > :last-child, .framer-5YDjC .framer-1kg1bhg > :last-child, .framer-5YDjC .framer-zgsvhr > :last-child, .framer-5YDjC .framer-1gnzzc6 > :last-child, .framer-5YDjC .framer-wupqs3 > :last-child, .framer-5YDjC .framer-1w11ywf > :last-child, .framer-5YDjC .framer-4u3d5i > :last-child { margin-bottom: 0px; } .framer-5YDjC .framer-1ks7fl5 > *, .framer-5YDjC .framer-1ks7fl5 > :first-child, .framer-5YDjC .framer-1ks7fl5 > :last-child, .framer-5YDjC .framer-ygsyk6 > *, .framer-5YDjC .framer-ygsyk6 > :first-child, .framer-5YDjC .framer-ygsyk6 > :last-child, .framer-5YDjC .framer-tkny9d > *, .framer-5YDjC .framer-tkny9d > :first-child, .framer-5YDjC .framer-tkny9d > :last-child { margin: 0px; } .framer-5YDjC .framer-1e5o15s > *, .framer-5YDjC .framer-8lzj0e > * { margin: 0px; margin-bottom: calc(36px / 2); margin-top: calc(36px / 2); } .framer-5YDjC .framer-1o1h3zy > *, .framer-5YDjC .framer-4u3d5i > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-5YDjC .framer-1yvu9zc > *, .framer-5YDjC .framer-m9sccg > *, .framer-5YDjC .framer-e9hhhy > *, .framer-5YDjC .framer-1w11ywf > * { margin: 0px; margin-bottom: calc(12px / 2); margin-top: calc(12px / 2); } .framer-5YDjC .framer-hw2z7x > *, .framer-5YDjC .framer-dal55a > *, .framer-5YDjC .framer-1gnzzc6 > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } .framer-5YDjC .framer-1kkba49 > *, .framer-5YDjC .framer-99eclz > *, .framer-5YDjC .framer-1kg1bhg > * { margin: 0px; margin-bottom: calc(60px / 2); margin-top: calc(60px / 2); } .framer-5YDjC .framer-cpnfsn > * { margin: 0px; margin-bottom: calc(28px / 2); margin-top: calc(28px / 2); } .framer-5YDjC .framer-1c9ohq7 > * { margin: 0px; margin-bottom: calc(8px / 2); margin-top: calc(8px / 2); } .framer-5YDjC .framer-zgsvhr > * { margin: 0px; margin-bottom: calc(40px / 2); margin-top: calc(40px / 2); } .framer-5YDjC .framer-wupqs3 > * { margin: 0px; margin-bottom: calc(32px / 2); margin-top: calc(32px / 2); } }}\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 9441.5\n * @framerIntrinsicWidth 1200\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"GyoKVFaps\":{\"layout\":[\"fixed\",\"auto\"]},\"WFTIh__jF\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n * @framerAcceptsLayoutTemplate true\n * @framerScrollSections {\"Mvt0sD87O\":{\"pattern\":\":Mvt0sD87O\",\"name\":\"newskills\"},\"bva33aJ8u\":{\"pattern\":\":bva33aJ8u\",\"name\":\"simulatorsfamily\"},\"ksqOnB5g7\":{\"pattern\":\":ksqOnB5g7\",\"name\":\"videocta\"},\"rNDMJ3iie\":{\"pattern\":\":rNDMJ3iie\",\"name\":\"testimonials\"}}\n * @framerResponsiveScreen\n */const FrameraugiA20Il=withCSS(Component,css,\"framer-5YDjC\");export default FrameraugiA20Il;FrameraugiA20Il.displayName=\"Home\";FrameraugiA20Il.defaultProps={height:9441.5,width:1200};addFonts(FrameraugiA20Il,[{explicitInter:true,fonts:[{family:\"Nunito\",source:\"fontshare\",style:\"normal\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/4Q5HYDBTANL3ERCJ43BT3T6PCABTP525/2J7UE7LIQPPQNRFDSDUVDGBPVBD5BTAO/4V6IAVOQFOLXHZMSUY7BQKCWJG5N4TWB.woff2\",weight:\"700\"},{family:\"Nunito\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/nunito/v26/XRXI3I6Li01BKofiOc5wtlZ2di8HDGUmRTY9jo7eTWk.woff2\",weight:\"600\"},{family:\"Nunito\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/nunito/v26/XRXI3I6Li01BKofiOc5wtlZ2di8HDFwmRTY9jo7eTWk.woff2\",weight:\"700\"},{family:\"Nunito\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/nunito/v26/XRXI3I6Li01BKofiOc5wtlZ2di8HDLshRTY9jo7eTWk.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/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:\"Nunito\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/nunito/v26/XRXI3I6Li01BKofiOc5wtlZ2di8HDIkhRTY9jo7eTWk.woff2\",weight:\"500\"},{family:\"Montserrat\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/montserrat/v29/JTUHjIg1_i6t8kCHKm4532VJOt5-QNFgpCuM70w7Y3tcoqK5.woff2\",weight:\"700\"},{family:\"Nunito\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/nunito/v26/XRXI3I6Li01BKofiOc5wtlZ2di8HDBImRTY9jo7eTWk.woff2\",weight:\"900\"},{family:\"Nunito\",source:\"google\",style:\"italic\",url:\"https://fonts.gstatic.com/s/nunito/v26/XRXK3I6Li01BKofIMPyPbj8d7IEAGXNirXA3j6zbXWnoeg.woff2\",weight:\"400\"},{family:\"Nunito\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/nunito/v26/XRXI3I6Li01BKofiOc5wtlZ2di8HDDsmRTY9jo7eTWk.woff2\",weight:\"800\"},{family:\"Inter\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/inter/v18/UcCO3FwrK3iLTeHuS_nVMrMxCp50SjIw2boKoduKmMEVuLyfMZ1rib2Bg-4.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/5A3Ce6C9YYmCjpQx9M4inSaKU.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/Qx95Xyt0Ka3SGhinnbXIGpEIyP4.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/6mJuEAguuIuMog10gGvH5d3cl8.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/xYYWaj7wCU5zSQH0eXvSaS19wo.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/otTaNuNpVK4RbdlT7zDDdKvQBA.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/d3tHnaQIAeqiE5hGcRw4mmgWYU.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/DolVirEGb34pEXEp8t8FQBSK4.woff2\",weight:\"500\"}]},...NavigationCopyFonts,...DownloadFonts,...TickerCardFonts,...TickerFonts,...PhosphorFonts,...ScheduleADemoFormFonts,...VideoFonts,...ButtonFonts,...AccordionFonts,...FooterFonts,...ShareWidgetFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts),...getFontsFromSharedStyle(sharedStyle2.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FrameraugiA20Il\",\"slots\":[],\"annotations\":{\"framerDisplayContentsDiv\":\"false\",\"framerResponsiveScreen\":\"\",\"framerIntrinsicHeight\":\"9441.5\",\"framerScrollSections\":\"{\\\"Mvt0sD87O\\\":{\\\"pattern\\\":\\\":Mvt0sD87O\\\",\\\"name\\\":\\\"newskills\\\"},\\\"bva33aJ8u\\\":{\\\"pattern\\\":\\\":bva33aJ8u\\\",\\\"name\\\":\\\"simulatorsfamily\\\"},\\\"ksqOnB5g7\\\":{\\\"pattern\\\":\\\":ksqOnB5g7\\\",\\\"name\\\":\\\"videocta\\\"},\\\"rNDMJ3iie\\\":{\\\"pattern\\\":\\\":rNDMJ3iie\\\",\\\"name\\\":\\\"testimonials\\\"}}\",\"framerIntrinsicWidth\":\"1200\",\"framerComponentViewportWidth\":\"true\",\"framerContractVersion\":\"1\",\"framerImmutableVariables\":\"true\",\"framerAcceptsLayoutTemplate\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"GyoKVFaps\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"WFTIh__jF\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}"],
  "mappings": "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",
  "names": ["MAX_DUPLICATED_ITEMS", "directionTransformers", "offset", "supportsAcceleratedAnimations", "Ticker", "props", "slots", "gap", "padding", "paddingPerSide", "paddingTop", "paddingRight", "paddingBottom", "paddingLeft", "speed", "hoverFactor", "direction", "alignment", "sizingOptions", "fadeOptions", "style", "fadeContent", "overflow", "fadeWidth", "fadeInset", "fadeAlpha", "widthType", "heightType", "paddingValue", "isCanvas", "RenderTarget", "numChildren", "j", "hasChildren", "isHorizontal", "useMotionValue", "transformer", "transform", "useTransform", "parentRef", "pe", "childrenRef", "se", "W", "size", "setSize", "ye", "clonedChildren", "dupedChildren", "duplicateBy", "opacity", "measure", "te", "parentLength", "start", "childrenLength", "childrenStyles", "initialResize", "ue", "frame", "resize", "contentSize", "child", "index", "_child_props", "_child_props1", "_child_props2", "_child_props3", "ref", "p", "LayoutGroup", "q", "i", "childIndex", "_child_props4", "_child_props5", "animateToValue", "initialTime", "prevTime", "xOrY", "isHover", "isReducedMotion", "useReducedMotion", "listRef", "animationRef", "isInView", "useInView", "useAnimationFrame", "t", "delta", "wrap", "fadeDirection", "fadeWidthStart", "fadeWidthEnd", "fadeInsetStart", "clamp", "fadeInsetEnd", "fadeMask", "containerStyle", "u", "motion", "isValidNumber", "placeholderStyles", "emojiStyles", "titleStyles", "subtitleStyles", "addPropertyControls", "ControlType", "num", "min", "max", "value", "RichTextWithFX", "withFX", "RichText2", "MotionDivWithFX", "motion", "enabledGestures", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "toResponsiveImage", "value", "transition1", "transition2", "animation", "animation1", "animation2", "transition3", "animation3", "animation4", "animation5", "Transition", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "x", "getProps", "height", "id", "image", "link", "name1", "width", "props", "_ref", "_ref1", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "OBCK_ixr9", "Y7s7YoQbs", "H_AmHrY7m", "restProps", "baseVariant", "classNames", "gestureVariant", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "ref1", "pe", "isDisplayed", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "Link", "Image2", "cx", "optimizeAppear", "css", "Framerb5bIbZw7M", "withCSS", "b5bIbZw7M_default", "addPropertyControls", "ControlType", "addFonts", "RowFonts", "getFonts", "JDIZfHyyT_default", "cycleOrder", "serializationHash", "variantClassNames", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "getProps", "height", "id", "width", "props", "createLayoutDependency", "variants", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "variant", "restProps", "baseVariant", "classNames", "gestureVariant", "setGestureState", "setVariant", "useVariantState", "cycleOrder", "variantClassNames", "layoutDependency", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "u", "cx", "serializationHash", "ComponentViewportProvider", "JDIZfHyyT_default", "css", "FramerGCf9nKZ6u", "withCSS", "GCf9nKZ6u_default", "addFonts", "RowFonts", "NavigationCopyFonts", "getFonts", "GTtoURpxg_default", "MotionDivWithOptimizedAppearEffect", "withOptimizedAppearEffect", "motion", "MotionAWithOptimizedAppearEffect", "DownloadFonts", "Download", "TickerCardFonts", "b5bIbZw7M_default", "TickerFonts", "Ticker", "ContainerWithFX", "withFX", "Container", "PhosphorFonts", "Icon", "ScheduleADemoFormFonts", "JTXy1hW7x_default", "ImageWithFX", "Image2", "MotionDivWithFX", "ImageWithOptimizedAppearEffect", "VideoFonts", "Video", "RichTextWithFX", "RichText2", "MotionAWithFX", "ButtonFonts", "GF7F4k9KG_default", "FormContainerWithUTMParams1i9vpeq", "withCodeBoundaryForOverrides", "FormContainer", "withUTMParams", "AccordionFonts", "GCf9nKZ6u_default", "FooterFonts", "br9SQJ3q8_default", "ShareWidgetFonts", "F9w681R3J_default", "breakpoints", "isBrowser", "serializationHash", "variantClassNames", "transition1", "animation", "animation1", "animation2", "animation3", "transition2", "animation4", "animation5", "animation6", "animation7", "addImageAlt", "image", "alt", "transition3", "animation8", "transition4", "transition5", "transition6", "transformTemplate1", "_", "t", "animation9", "animation10", "animation11", "transition7", "animation12", "animation13", "toResponsiveImage", "value", "toDateString", "options", "activeLocale", "date", "display", "dateOptions", "fallbackLocale", "locale", "QueryData", "query", "pageSize", "children", "data", "useQueryData", "formVariants", "form", "variants", "currentVariant", "HTMLStyle", "useIsOnFramerCanvas", "p", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "variant", "rJxapUZTvTM42peFMQ", "uM4QESgnlTM42peFMQ", "MQyS8YPWnTM42peFMQ", "vgZ_x3P30TM42peFMQ", "idTM42peFMQ", "restProps", "ue", "metadata", "robotsTag", "ie", "baseVariant", "hydratedBaseVariant", "useHydratedBreakpointVariants", "gestureVariant", "scopingClassNames", "cx", "isDisplayed", "router", "useRouter", "elementId", "useRouteElementId", "ref1", "isDisplayed1", "elementId1", "ref2", "elementId2", "ref3", "elementId3", "ref4", "activeLocaleCode", "useLocaleCode", "useCustomCursors", "GeneratedComponentContext", "u", "LayoutGroup", "PropertyOverrides2", "ComponentViewportProvider", "SVG", "x", "Link", "ResolveLinks", "resolvedLinks", "resolvedLinks1", "resolvedLinks2", "resolvedLinks3", "resolvedLinks4", "resolvedLinks5", "resolvedLinks6", "resolvedLinks7", "resolvedLinks8", "resolvedLinks9", "resolvedLinks10", "resolvedLinks11", "resolvedLinks12", "resolvedLinks13", "resolvedLinks14", "resolvedLinks15", "resolvedLinks16", "resolvedLinks17", "getLoadingLazyAtYPosition", "ChildrenCanSuspend", "UYuCStToI_default", "collection", "paginationInfo", "loadMore", "l", "index", "textContent", "PathVariablesContext", "formState", "FormPlainTextInput2", "FormBooleanInput", "css", "FrameraugiA20Il", "withCSS", "augiA20Il_default", "addFonts", "getFontsFromSharedStyle", "fonts", "__FramerMetadata__"]
}
