{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/B2xAlJLcN0gOnt11mSPw/XVUmpmPn1EPL0dzocT35/Ticker.js", "ssg:https://framerusercontent.com/modules/A11atblsoAFJhBPxRyUS/0CGMMU4iRZyJzKWCg1o1/DeeJaRFMK.js", "ssg:https://framerusercontent.com/modules/otEH4bprfAdxMf8LFZC9/0Bt4FXDTb4hIlZ92pB9f/UAbomaNAP.js", "ssg:https://framerusercontent.com/modules/eAyDnjTZe5vDyNqznjZN/HhCoOviCx2jCxRuDO2zm/BC3meg824.js", "ssg:https://framerusercontent.com/modules/1dMLD2JHKeik7oafHF7C/lgHbpt5RLinzcPfapqGn/z9Pa7seOd.js", "ssg:https://framerusercontent.com/modules/kk3Tq7fe3bXgZSR1Qy6p/MVnJABCQRgrbFEC7IYn1/AgoZUqJgV.js", "ssg:https://framerusercontent.com/modules/s2njlOgaWRe44d0Q8bs1/zDoKEV0sEnWexXKuWagL/JXALxCXxC.js", "ssg:https://framerusercontent.com/modules/4tZNAA9qKtWRnBRIdo2S/pkpoz26U9KlJ6jnTYFCv/UorUzDcu9.js", "ssg:https://framerusercontent.com/modules/5PseullpGUhypW6SMp3n/xZkcgaQIAQSL4xkHXXdz/Us40jByny.js", "ssg:https://framerusercontent.com/modules/KNL36thpjV0EF457mmJQ/xgbgjK6XdCfWePlkxuQt/Yf7zyWye0.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;// Remove empty slots (such as hidden layers)\nconst filteredSlots=slots.filter(Boolean);const numChildren=Children.count(filteredSlots);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(filteredSlots,(child,index)=>{var _child_props,_child_props1,_child_props2,_child_props3;let ref;if(index===0){ref=childrenRef[0];}if(index===filteredSlots.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(filteredSlots,(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%\",willChange:\"transform\"};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]);// Pause the animation when it's out of view\nuseEffect(()=>{if(!animationRef.current)return;if(isInView&&animationRef.current.playState===\"paused\"){animationRef.current.play();}else if(!isInView&&animationRef.current.playState===\"running\"){animationRef.current.pause();}},[isInView]);}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,willChange:isCanvas?\"auto\":\"transform\",transform:supportsAcceleratedAnimations?transformer(0):transform},onMouseEnter:()=>{isHover.current=true;if(animationRef.current){// TODO Replace with updatePlaybackRate when Chrome bugs sorted\nanimationRef.current.playbackRate=hoverFactor;}},onMouseLeave:()=>{isHover.current=false;if(animationRef.current){// TODO Replace with updatePlaybackRate when Chrome bugs sorted\nanimationRef.current.playbackRate=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\":{\"framerDisableUnlink\":\"*\",\"framerIntrinsicWidth\":\"400\",\"framerContractVersion\":\"1\",\"framerSupportedLayoutWidth\":\"fixed\",\"framerIntrinsicHeight\":\"200\",\"framerSupportedLayoutHeight\":\"fixed\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Ticker.map", "import{fontStore}from\"framer\";fontStore.loadFonts([\"GF;Lexend-500\",\"GF;Lexend-700\"]);export const fonts=[{family:\"Lexend\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/lexend/v19/wlptgwvFAVdoq2_F94zlCfv0bz1WCwkW_LVte6KuGEo.woff2\",weight:\"500\"},{family:\"Lexend\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/lexend/v19/wlptgwvFAVdoq2_F94zlCfv0bz1WC9wR_LVte6KuGEo.woff2\",weight:\"700\"}];export const css=['.framer-lKKaE .framer-styles-preset-1a8jt41:not(.rich-text-wrapper), .framer-lKKaE .framer-styles-preset-1a8jt41.rich-text-wrapper h4 { --framer-font-family: \"Lexend\", \"Lexend Placeholder\", sans-serif; --framer-font-family-bold: \"Lexend\", \"Lexend Placeholder\", sans-serif; --framer-font-size: 42px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-weight: 500; --framer-font-weight-bold: 700; --framer-letter-spacing: -1.5px; --framer-line-height: 50px; --framer-paragraph-spacing: 40px; --framer-text-alignment: center; --framer-text-color: var(--token-32a85a80-d312-468e-9679-2600c480ecba, #282828); --framer-text-decoration: none; --framer-text-transform: none; }'];export const className=\"framer-lKKaE\";\nexport const __FramerMetadata__ = {\"exports\":{\"fonts\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"className\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"css\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (8ea6382)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,getFontsFromSharedStyle,ResolveLinks,RichText,SmartComponentScopedContainer,useComponentViewport,useLocaleInfo,useRouter,useVariantState,withCSS,withFX,withOptimizedAppearEffect}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import*as sharedStyle from\"https://framerusercontent.com/modules/hv5VOSHpKwzayS8W0rvw/HAXkxlKDn8CeoyBeaSRp/b2SxAk9Wn.js\";import*as sharedStyle2 from\"https://framerusercontent.com/modules/A11atblsoAFJhBPxRyUS/0CGMMU4iRZyJzKWCg1o1/DeeJaRFMK.js\";import*as sharedStyle1 from\"https://framerusercontent.com/modules/1TAMLpz4hxTCr718xMKY/pCdfVFxY1qd125SlPQUO/IyxCnbqgE.js\";import*as sharedStyle3 from\"https://framerusercontent.com/modules/q16GDNOdoDHvkHHiSpMY/THBNCzm23e4aMERFoIYK/Oocg1D1bL.js\";import*as sharedStyle4 from\"https://framerusercontent.com/modules/qwoBpIWP8OCdiOjtDllx/0pNYaAjLXAzfri1JUqfJ/tZUfsu_N3.js\";import Button from\"https://framerusercontent.com/modules/mSyFKvtA6BO7fMHeIti7/grCwe2pWb8PKqre6Qyej/XQYIUjp_n.js\";const RichTextWithFXWithOptimizedAppearEffect=withOptimizedAppearEffect(withFX(RichText));const ButtonFonts=getFonts(Button);const MotionDivWithFXWithOptimizedAppearEffect=withOptimizedAppearEffect(withFX(motion.div));const cycleOrder=[\"qOC8w0ukl\",\"ax_kIPo8C\",\"y0qIndf01\"];const serializationHash=\"framer-3tSJA\";const variantClassNames={ax_kIPo8C:\"framer-v-erbfg0\",qOC8w0ukl:\"framer-v-kv55f9\",y0qIndf01:\"framer-v-1ubqv5d\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const transition2={delay:0,duration:.4,ease:[.5,0,.88,.77],type:\"tween\"};const animation={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition2,x:0,y:0};const animation1={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:[.5,0,.88,.77],type:\"tween\"};const animation2={opacity:.001,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:80};const transition4={damping:30,delay:0,mass:1,stiffness:200,type:\"spring\"};const animation3={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1.1,skewX:0,skewY:0,transition:transition4};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={Desktop:\"qOC8w0ukl\",Phone:\"ax_kIPo8C\",Tablet:\"y0qIndf01\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"qOC8w0ukl\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const fallbackRef=useRef(null);const refBinding=ref??fallbackRef;const defaultLayoutId=React.useId();const{activeLocale,setLocale}=useLocaleInfo();const componentViewport=useComponentViewport();const{style,className,layoutId,variant,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"qOC8w0ukl\",ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className,sharedStyle2.className,sharedStyle3.className,sharedStyle4.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const router=useRouter();const isDisplayed=()=>{if(baseVariant===\"ax_kIPo8C\")return false;return true;};return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,...addPropertyOverrides({ax_kIPo8C:{value:transition3}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(MotionDivWithFXWithOptimizedAppearEffect,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-kv55f9\",className,classNames),\"data-framer-appear-id\":\"kv55f9\",\"data-framer-name\":\"Desktop\",layoutDependency:layoutDependency,layoutId:\"qOC8w0ukl\",ref:refBinding,style:{backgroundColor:\"var(--token-87c9f75a-e5dc-4340-a8f6-03284f64dda3, rgb(13, 110, 253))\",...style},...addPropertyOverrides({ax_kIPo8C:{__framer__presenceAnimate:animation,__framer__presenceInitial:animation1,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,\"data-framer-name\":\"Phone\",optimized:true},y0qIndf01:{\"data-framer-name\":\"Tablet\"}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-yxoir2\",\"data-framer-name\":\"Container\",layoutDependency:layoutDependency,layoutId:\"b_eBftTqq\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-7rbfrx\",\"data-framer-name\":\"Header\",layoutDependency:layoutDependency,layoutId:\"oshbxm4_H\",children:[/*#__PURE__*/_jsx(RichTextWithFXWithOptimizedAppearEffect,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h1,{className:\"framer-styles-preset-1qu4io1\",\"data-styles-preset\":\"b2SxAk9Wn\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-gdpscs, var(--token-2727a40a-6355-410e-b173-94b4ce7b76c2, rgb(255, 255, 255)))\"},children:/*#__PURE__*/_jsx(motion.strong,{children:\"AI-enabled concierge care, covered by insurance\"})})}),className:\"framer-c1sokb\",\"data-framer-appear-id\":\"c1sokb\",\"data-framer-name\":\"Title\",fonts:[\"Inter\",\"Inter-Bold\"],layoutDependency:layoutDependency,layoutId:\"xUvbnpgi1\",style:{\"--extracted-gdpscs\":\"var(--token-2727a40a-6355-410e-b173-94b4ce7b76c2, rgb(255, 255, 255))\"},variants:{ax_kIPo8C:{\"--extracted-1w1cjl5\":\"var(--token-2727a40a-6355-410e-b173-94b4ce7b76c2, rgb(255, 255, 255))\"},y0qIndf01:{\"--extracted-1eung3n\":\"var(--token-2727a40a-6355-410e-b173-94b4ce7b76c2, rgb(255, 255, 255))\"}},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({ax_kIPo8C:{__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,animate:animation,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h6,{className:\"framer-styles-preset-18kbueq\",\"data-styles-preset\":\"IyxCnbqgE\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-1w1cjl5, var(--token-2727a40a-6355-410e-b173-94b4ce7b76c2, rgb(255, 255, 255)))\"},children:/*#__PURE__*/_jsx(motion.strong,{children:\"AI-enabled concierge care, covered by insurance\"})})}),initial:animation2,optimized:true},y0qIndf01:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h4,{className:\"framer-styles-preset-1a8jt41\",\"data-styles-preset\":\"DeeJaRFMK\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-1eung3n, var(--token-2727a40a-6355-410e-b173-94b4ce7b76c2, rgb(255, 255, 255)))\"},children:/*#__PURE__*/_jsx(motion.strong,{children:\"AI-enabled concierge care, covered by insurance\"})})})}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(motion.p,{className:\"framer-styles-preset-1y12t17\",\"data-styles-preset\":\"Oocg1D1bL\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-2727a40a-6355-410e-b173-94b4ce7b76c2, rgb(255, 255, 255)))\"},children:[\"Give every chronic condition patient the support they need in between visits, \",/*#__PURE__*/_jsx(motion.strong,{children:\"without the price tag\"}),\".\"]})}),className:\"framer-1ljr7ew\",\"data-framer-name\":\"Content\",fonts:[\"Inter\",\"Inter-Bold\"],layoutDependency:layoutDependency,layoutId:\"rrq3vNgA0\",style:{\"--extracted-r6o4lv\":\"var(--token-2727a40a-6355-410e-b173-94b4ce7b76c2, rgb(255, 255, 255))\"},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({ax_kIPo8C:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(motion.p,{className:\"framer-styles-preset-xm0soh\",\"data-styles-preset\":\"tZUfsu_N3\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-2727a40a-6355-410e-b173-94b4ce7b76c2, rgb(255, 255, 255)))\"},children:[\"Give every chronic condition patient the support they need in between visits, \",/*#__PURE__*/_jsx(motion.strong,{children:\"without the price tag\"}),\".\"]})})}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"dDFpAwPF5\"},implicitPathVariables:undefined},{href:{webPageId:\"dDFpAwPF5\"},implicitPathVariables:undefined},{href:{webPageId:\"dDFpAwPF5\"},implicitPathVariables:undefined}],children:resolvedLinks=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:74,y:(componentViewport?.y||0)+80+(((componentViewport?.height||498)-80-437)/2+0+0)+0+0+0+273,...addPropertyOverrides({ax_kIPo8C:{y:(componentViewport?.y||0)+70+(((componentViewport?.height||200)-140-290)/2+0+0)+0+0+0+216},y0qIndf01:{y:(componentViewport?.y||0)+80+(((componentViewport?.height||432)-80-404)/2+0+0)+0+0+0+240}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-kvfcnz-container\",layoutDependency:layoutDependency,layoutId:\"bHg3Z6Q_L-container\",nodeId:\"bHg3Z6Q_L\",rendersWithMotion:true,scopeId:\"UAbomaNAP\",whileHover:animation3,children:/*#__PURE__*/_jsx(Button,{bWnYL7Tgp:\"var(--token-2727a40a-6355-410e-b173-94b4ce7b76c2, rgb(255, 255, 255))\",D2jRnfGwK:48,GDBvPe0Ba:resolvedLinks[0],height:\"100%\",id:\"bHg3Z6Q_L\",kN9fQFqwN:\"var(--token-32a85a80-d312-468e-9679-2600c480ecba, rgb(40, 40, 40))\",kvN6MvY_7:\"var(--token-32a85a80-d312-468e-9679-2600c480ecba, rgb(40, 40, 40))\",layoutId:\"bHg3Z6Q_L\",nR87ztHwf:false,R4J2OXJXh:\"chevron-left\",RwZpsJXvZ:\"Request a Demo\",SA9jAg9_n:false,variant:\"XA3eiZD1Q\",vjt0jl_Xl:\"var(--token-02ea8977-fd9a-49bc-8617-d6ebea91ac1a, rgb(11, 92, 213))\",width:\"100%\",wThulUfCM:false,WvHqCrdUD:\"arrow-right\",...addPropertyOverrides({ax_kIPo8C:{GDBvPe0Ba:resolvedLinks[1],variant:\"NF1R5EvzD\"},y0qIndf01:{GDBvPe0Ba:resolvedLinks[2]}},baseVariant,gestureVariant)})})})})]}),isDisplayed()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-1upyqm9\",\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"CiumeiAML\"})]})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-3tSJA.framer-wy6nz5, .framer-3tSJA .framer-wy6nz5 { display: block; }\",\".framer-3tSJA.framer-kv55f9 { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: center; overflow: hidden; padding: 80px 0px 0px 0px; position: relative; width: 1440px; }\",\".framer-3tSJA .framer-yxoir2 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: center; max-width: 800px; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-3tSJA .framer-7rbfrx { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-3tSJA .framer-c1sokb, .framer-3tSJA .framer-1ljr7ew { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-3tSJA .framer-kvfcnz-container { flex: none; height: auto; position: relative; width: auto; }\",\".framer-3tSJA .framer-1upyqm9 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: 50px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-3tSJA.framer-kv55f9, .framer-3tSJA .framer-yxoir2, .framer-3tSJA .framer-7rbfrx, .framer-3tSJA .framer-1upyqm9 { gap: 0px; } .framer-3tSJA.framer-kv55f9 > *, .framer-3tSJA .framer-yxoir2 > * { margin: 0px; margin-bottom: calc(40px / 2); margin-top: calc(40px / 2); } .framer-3tSJA.framer-kv55f9 > :first-child, .framer-3tSJA .framer-yxoir2 > :first-child, .framer-3tSJA .framer-7rbfrx > :first-child { margin-top: 0px; } .framer-3tSJA.framer-kv55f9 > :last-child, .framer-3tSJA .framer-yxoir2 > :last-child, .framer-3tSJA .framer-7rbfrx > :last-child { margin-bottom: 0px; } .framer-3tSJA .framer-7rbfrx > * { margin: 0px; margin-bottom: calc(20px / 2); margin-top: calc(20px / 2); } .framer-3tSJA .framer-1upyqm9 > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } .framer-3tSJA .framer-1upyqm9 > :first-child { margin-left: 0px; } .framer-3tSJA .framer-1upyqm9 > :last-child { margin-right: 0px; } }\",\".framer-3tSJA.framer-v-erbfg0.framer-kv55f9 { padding: 70px 16px 70px 16px; width: 390px; }\",\".framer-3tSJA.framer-v-erbfg0 .framer-yxoir2 { gap: 32px; max-width: 100%; }\",\".framer-3tSJA.framer-v-erbfg0 .framer-7rbfrx { gap: 16px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-3tSJA.framer-v-erbfg0 .framer-yxoir2, .framer-3tSJA.framer-v-erbfg0 .framer-7rbfrx { gap: 0px; } .framer-3tSJA.framer-v-erbfg0 .framer-yxoir2 > * { margin: 0px; margin-bottom: calc(32px / 2); margin-top: calc(32px / 2); } .framer-3tSJA.framer-v-erbfg0 .framer-yxoir2 > :first-child, .framer-3tSJA.framer-v-erbfg0 .framer-7rbfrx > :first-child { margin-top: 0px; } .framer-3tSJA.framer-v-erbfg0 .framer-yxoir2 > :last-child, .framer-3tSJA.framer-v-erbfg0 .framer-7rbfrx > :last-child { margin-bottom: 0px; } .framer-3tSJA.framer-v-erbfg0 .framer-7rbfrx > * { margin: 0px; margin-bottom: calc(16px / 2); margin-top: calc(16px / 2); } }\",\".framer-3tSJA.framer-v-1ubqv5d.framer-kv55f9 { padding: 80px 30px 0px 30px; width: 810px; }\",\".framer-3tSJA.framer-v-1ubqv5d .framer-yxoir2 { max-width: 100%; width: 654px; }\",...sharedStyle.css,...sharedStyle1.css,...sharedStyle2.css,...sharedStyle3.css,...sharedStyle4.css];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 498\n * @framerIntrinsicWidth 1440\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"ax_kIPo8C\":{\"layout\":[\"fixed\",\"auto\"]},\"y0qIndf01\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerUAbomaNAP=withCSS(Component,css,\"framer-3tSJA\");export default FramerUAbomaNAP;FramerUAbomaNAP.displayName=\"CTA\";FramerUAbomaNAP.defaultProps={height:498,width:1440};addPropertyControls(FramerUAbomaNAP,{variant:{options:[\"qOC8w0ukl\",\"ax_kIPo8C\",\"y0qIndf01\"],optionTitles:[\"Desktop\",\"Phone\",\"Tablet\"],title:\"Variant\",type:ControlType.Enum}});addFonts(FramerUAbomaNAP,[{explicitInter:true,fonts:[{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/5vvr9Vy74if2I6bQbJvbw7SY1pQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/EOr0mi4hNtlgWNn9if640EZzXCo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Y9k9QrlZAqio88Klkmbd8VoMQc.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/OYrD2tBIBPvoJXiIHnLoOXnY9M.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/JeYwfuaPfZHQhEG8U5gtPDZ7WQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/vQyevYAyHtARFwPqUzQGpnDs.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/b6Y37FthZeALduNqHicBT6FutY.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/DpPBYI0sL4fYLgAkX8KXOPVt7c.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/4RAEQdEOrcnDkhHiiCbJOw92Lk.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/1K3W8DizY3v4emK8Mb08YHxTbs.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/tUSCtfYVM1I1IchuyCwz9gDdQ.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/VgYFWiwsAC5OYxAycRXXvhze58.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/DXD0Q7LSl7HEvDzucnyLnGBHM.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/GIryZETIX4IFypco5pYZONKhJIo.woff2\",weight:\"700\"}]},...ButtonFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts),...getFontsFromSharedStyle(sharedStyle2.fonts),...getFontsFromSharedStyle(sharedStyle3.fonts),...getFontsFromSharedStyle(sharedStyle4.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerUAbomaNAP\",\"slots\":[],\"annotations\":{\"framerIntrinsicHeight\":\"498\",\"framerContractVersion\":\"1\",\"framerComponentViewportWidth\":\"true\",\"framerImmutableVariables\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"ax_kIPo8C\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"y0qIndf01\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerIntrinsicWidth\":\"1440\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./UAbomaNAP.map", "import{fontStore}from\"framer\";fontStore.loadFonts([\"Inter-SemiBold\",\"Inter-Black\",\"Inter-BlackItalic\",\"Inter-SemiBoldItalic\"]);export const fonts=[];export const css=['.framer-t0qUj .framer-styles-preset-1p03bzu:not(.rich-text-wrapper), .framer-t0qUj .framer-styles-preset-1p03bzu.rich-text-wrapper p { --framer-font-family: \"Inter-SemiBold\", \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-family-bold: \"Inter-Black\", \"Inter\", sans-serif; --framer-font-family-bold-italic: \"Inter-BlackItalic\", \"Inter\", sans-serif; --framer-font-family-italic: \"Inter-SemiBoldItalic\", \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-size: 20px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-style-bold-italic: italic; --framer-font-style-italic: italic; --framer-font-weight: 600; --framer-font-weight-bold: 900; --framer-font-weight-bold-italic: 900; --framer-font-weight-italic: 600; --framer-letter-spacing: 0px; --framer-line-height: 32px; --framer-paragraph-spacing: 20px; --framer-text-alignment: start; --framer-text-color: var(--token-32a85a80-d312-468e-9679-2600c480ecba, #282828); --framer-text-decoration: none; --framer-text-transform: none; }'];export const className=\"framer-t0qUj\";\nexport const __FramerMetadata__ = {\"exports\":{\"fonts\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"css\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"className\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (d6b3045)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,getFontsFromSharedStyle,getLoadingLazyAtYPosition,Image,RichText,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import*as sharedStyle from\"https://framerusercontent.com/modules/eAyDnjTZe5vDyNqznjZN/HhCoOviCx2jCxRuDO2zm/BC3meg824.js\";import*as sharedStyle1 from\"https://framerusercontent.com/modules/qhyjqauWe3Sep9xFEHQw/veLbY3jpFI3KHM7XggAS/Y8sw5swRS.js\";const cycleOrder=[\"I533:121142;532:120814\",\"wI1C4UmKW\"];const serializationHash=\"framer-kgoAz\";const variantClassNames={\"I533:121142;532:120814\":\"framer-v-1ohoqnq\",wI1C4UmKW:\"framer-v-g1c7ah\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const toResponsiveImage=value=>{if(typeof value===\"object\"&&value!==null&&typeof value.src===\"string\"){return value;}return typeof value===\"string\"?{src:value}:undefined;};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={Desktop:\"I533:121142;532:120814\",Mobile:\"wI1C4UmKW\"};const getProps=({description,height,id,image,title,width,...props})=>{var _ref,_ref1,_humanReadableVariantMap_props_variant,_ref2,_ref3;return{...props,beOEtyEXt:(_ref=description!==null&&description!==void 0?description:props.beOEtyEXt)!==null&&_ref!==void 0?_ref:\"Excepteur sint occaecat cupidat non proident sunt in culpam qui the officia mollit aliquip ex ea comm.\",oOZeIwFEe:(_ref1=title!==null&&title!==void 0?title:props.oOZeIwFEe)!==null&&_ref1!==void 0?_ref1:\"Zepplin\",variant:(_ref2=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref2!==void 0?_ref2:\"I533:121142;532:120814\",XLmOkZ8AL:(_ref3=image!==null&&image!==void 0?image:props.XLmOkZ8AL)!==null&&_ref3!==void 0?_ref3:{src:\"https://framerusercontent.com/images/fnKMbeutgNMn9Ba6drs9YmkSMg.svg\"}};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,XLmOkZ8AL,oOZeIwFEe,beOEtyEXt,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"I533:121142;532:120814\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const ref1=React.useRef(null);const defaultLayoutId=React.useId();const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className];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,...gestureHandlers,className:cx(serializationHash,...sharedStyleClassNames,\"framer-1ohoqnq\",className,classNames),\"data-framer-name\":\"Desktop\",layoutDependency:layoutDependency,layoutId:\"I533:121142;532:120814\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{backgroundColor:\"rgba(0, 0, 0, 0)\",borderBottomLeftRadius:0,borderBottomRightRadius:0,borderTopLeftRadius:0,borderTopRightRadius:0,...style},variants:{wI1C4UmKW:{backgroundColor:\"rgb(255, 255, 255)\",borderBottomLeftRadius:20,borderBottomRightRadius:20,borderTopLeftRadius:20,borderTopRightRadius:20}},...addPropertyOverrides({wI1C4UmKW:{\"data-framer-name\":\"Mobile\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-15fkg0k\",\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"XH27obn3z\",style:{backgroundColor:\"rgb(255, 255, 255)\",borderBottomLeftRadius:16,borderBottomRightRadius:16,borderTopLeftRadius:16,borderTopRightRadius:16},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",intrinsicHeight:64,intrinsicWidth:64,loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+16),pixelHeight:64,pixelWidth:64,sizes:\"32px\",...toResponsiveImage(XLmOkZ8AL),...{positionX:\"center\",positionY:\"center\"}},className:\"framer-1e2b2bj\",\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"iWofvdlfO\",style:{filter:\"drop-shadow(0px 1px 5px rgba(0, 0, 0, 0.06))\",WebkitFilter:\"drop-shadow(0px 1px 5px rgba(0, 0, 0, 0.06))\"},...addPropertyOverrides({wI1C4UmKW:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:64,intrinsicWidth:64,loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+20+0+16),pixelHeight:64,pixelWidth:64,sizes:\"32px\",...toResponsiveImage(XLmOkZ8AL),...{positionX:\"center\",positionY:\"center\"}}}},baseVariant,gestureVariant)})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-64wqrd\",\"data-framer-name\":\"Text+Tag\",layoutDependency:layoutDependency,layoutId:\"I533:121142;532:120814;532:119787\",children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1x9gg0v\",\"data-framer-name\":\"Text\",layoutDependency:layoutDependency,layoutId:\"I533:121142;532:120814;532:119788\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1p03bzu\",\"data-styles-preset\":\"BC3meg824\",children:\"Zepplin\"})}),className:\"framer-1sigipi\",\"data-framer-name\":\"Zepplin\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"I533:121142;532:120814;532:119789\",text:oOZeIwFEe,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-10yr9th\",\"data-styles-preset\":\"Y8sw5swRS\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-11fc4855-518e-48d2-ab9f-4e3689418bde, rgb(94, 105, 127)))\"},children:\"Excepteur sint occaecat cupidat non proident sunt in culpam qui the officia mollit aliquip ex ea comm.\"})}),className:\"framer-1ilsmf2\",\"data-framer-name\":\"Excepteur sint occae\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"I533:121142;532:120814;532:119790\",style:{\"--extracted-r6o4lv\":\"var(--token-11fc4855-518e-48d2-ab9f-4e3689418bde, rgb(94, 105, 127))\"},text:beOEtyEXt,verticalAlignment:\"top\",withExternalLayout:true})]})})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-kgoAz.framer-1y1y82p, .framer-kgoAz .framer-1y1y82p { display: block; }\",\".framer-kgoAz.framer-1ohoqnq { align-content: flex-start; align-items: flex-start; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 438px; }\",\".framer-kgoAz .framer-15fkg0k { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 64px; justify-content: center; overflow: visible; padding: 16px; position: relative; width: 64px; }\",\".framer-kgoAz .framer-1e2b2bj { flex: 1 0 0px; height: 100%; position: relative; width: 1px; }\",\".framer-kgoAz .framer-64wqrd { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 12px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-kgoAz .framer-1x9gg0v { 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-kgoAz .framer-1sigipi, .framer-kgoAz .framer-1ilsmf2 { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-kgoAz.framer-1ohoqnq, .framer-kgoAz .framer-15fkg0k, .framer-kgoAz .framer-64wqrd, .framer-kgoAz .framer-1x9gg0v { gap: 0px; } .framer-kgoAz.framer-1ohoqnq > * { margin: 0px; margin-left: calc(24px / 2); margin-right: calc(24px / 2); } .framer-kgoAz.framer-1ohoqnq > :first-child, .framer-kgoAz .framer-15fkg0k > :first-child { margin-left: 0px; } .framer-kgoAz.framer-1ohoqnq > :last-child, .framer-kgoAz .framer-15fkg0k > :last-child { margin-right: 0px; } .framer-kgoAz .framer-15fkg0k > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-kgoAz .framer-64wqrd > * { margin: 0px; margin-bottom: calc(12px / 2); margin-top: calc(12px / 2); } .framer-kgoAz .framer-64wqrd > :first-child, .framer-kgoAz .framer-1x9gg0v > :first-child { margin-top: 0px; } .framer-kgoAz .framer-64wqrd > :last-child, .framer-kgoAz .framer-1x9gg0v > :last-child { margin-bottom: 0px; } .framer-kgoAz .framer-1x9gg0v > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } }\",\".framer-kgoAz.framer-v-g1c7ah.framer-1ohoqnq { flex-direction: column; gap: 16px; padding: 20px; }\",\".framer-kgoAz.framer-v-g1c7ah .framer-64wqrd { flex: none; width: 100%; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-kgoAz.framer-v-g1c7ah.framer-1ohoqnq { gap: 0px; } .framer-kgoAz.framer-v-g1c7ah.framer-1ohoqnq > * { margin: 0px; margin-bottom: calc(16px / 2); margin-top: calc(16px / 2); } .framer-kgoAz.framer-v-g1c7ah.framer-1ohoqnq > :first-child { margin-top: 0px; } .framer-kgoAz.framer-v-g1c7ah.framer-1ohoqnq > :last-child { margin-bottom: 0px; } }\",...sharedStyle.css,...sharedStyle1.css];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 86\n * @framerIntrinsicWidth 438\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"wI1C4UmKW\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerVariables {\"XLmOkZ8AL\":\"image\",\"oOZeIwFEe\":\"title\",\"beOEtyEXt\":\"description\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const Framerz9Pa7seOd=withCSS(Component,css,\"framer-kgoAz\");export default Framerz9Pa7seOd;Framerz9Pa7seOd.displayName=\"Features Card\";Framerz9Pa7seOd.defaultProps={height:86,width:438};addPropertyControls(Framerz9Pa7seOd,{variant:{options:[\"I533:121142;532:120814\",\"wI1C4UmKW\"],optionTitles:[\"Desktop\",\"Mobile\"],title:\"Variant\",type:ControlType.Enum},XLmOkZ8AL:{__defaultAssetReference:\"data:framer/asset-reference,fnKMbeutgNMn9Ba6drs9YmkSMg.svg?originalFilename=slack-new-logo.svg&preferredSize=auto\",title:\"Image\",type:ControlType.ResponsiveImage},oOZeIwFEe:{defaultValue:\"Zepplin\",displayTextArea:false,title:\"Title\",type:ControlType.String},beOEtyEXt:{defaultValue:\"Excepteur sint occaecat cupidat non proident sunt in culpam qui the officia mollit aliquip ex ea comm.\",displayTextArea:true,title:\"Description\",type:ControlType.String}});addFonts(Framerz9Pa7seOd,[{explicitInter:true,fonts:[{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/5vvr9Vy74if2I6bQbJvbw7SY1pQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/EOr0mi4hNtlgWNn9if640EZzXCo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Y9k9QrlZAqio88Klkmbd8VoMQc.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/OYrD2tBIBPvoJXiIHnLoOXnY9M.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/JeYwfuaPfZHQhEG8U5gtPDZ7WQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/vQyevYAyHtARFwPqUzQGpnDs.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/b6Y37FthZeALduNqHicBT6FutY.woff2\",weight:\"400\"}]},...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"Framerz9Pa7seOd\",\"slots\":[],\"annotations\":{\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"wI1C4UmKW\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerContractVersion\":\"1\",\"framerImmutableVariables\":\"true\",\"framerVariables\":\"{\\\"XLmOkZ8AL\\\":\\\"image\\\",\\\"oOZeIwFEe\\\":\\\"title\\\",\\\"beOEtyEXt\\\":\\\"description\\\"}\",\"framerDisplayContentsDiv\":\"false\",\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicHeight\":\"86\",\"framerIntrinsicWidth\":\"438\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./z9Pa7seOd.map", "import{fontStore}from\"framer\";fontStore.loadFonts([\"Inter\",\"Inter-Bold\",\"Inter-BoldItalic\",\"Inter-Italic\"]);export const fonts=[];export const css=['.framer-hq9DW .framer-styles-preset-1a3ch1c:not(.rich-text-wrapper), .framer-hq9DW .framer-styles-preset-1a3ch1c.rich-text-wrapper p { --framer-font-family: \"Inter\", sans-serif; --framer-font-family-bold: \"Inter-Bold\", \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-family-bold-italic: \"Inter-BoldItalic\", \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-family-italic: \"Inter-Italic\", \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-size: 16px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-style-bold-italic: italic; --framer-font-style-italic: italic; --framer-font-weight: 400; --framer-font-weight-bold: 700; --framer-font-weight-bold-italic: 700; --framer-font-weight-italic: 400; --framer-letter-spacing: 0px; --framer-line-height: 26px; --framer-paragraph-spacing: 20px; --framer-text-alignment: start; --framer-text-color: var(--token-32a85a80-d312-468e-9679-2600c480ecba, #282828); --framer-text-decoration: none; --framer-text-transform: none; }'];export const className=\"framer-hq9DW\";\nexport const __FramerMetadata__ = {\"exports\":{\"fonts\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"css\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"className\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "import{fontStore}from\"framer\";fontStore.loadFonts([\"Inter\",\"Inter-Bold\",\"Inter-BoldItalic\",\"Inter-Italic\"]);export const fonts=[];export const css=['.framer-4wjIa .framer-styles-preset-1npxdzc:not(.rich-text-wrapper), .framer-4wjIa .framer-styles-preset-1npxdzc.rich-text-wrapper p { --framer-font-family: \"Inter\", sans-serif; --framer-font-family-bold: \"Inter-Bold\", \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-family-bold-italic: \"Inter-BoldItalic\", \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-family-italic: \"Inter-Italic\", \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-size: 22px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-style-bold-italic: italic; --framer-font-style-italic: italic; --framer-font-weight: 400; --framer-font-weight-bold: 700; --framer-font-weight-bold-italic: 700; --framer-font-weight-italic: 400; --framer-letter-spacing: 0px; --framer-line-height: 36px; --framer-paragraph-spacing: 20px; --framer-text-alignment: start; --framer-text-color: var(--token-32a85a80-d312-468e-9679-2600c480ecba, #282828); --framer-text-decoration: none; --framer-text-transform: none; }'];export const className=\"framer-4wjIa\";\nexport const __FramerMetadata__ = {\"exports\":{\"className\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"css\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"fonts\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (56d1180)\nimport{fontStore}from\"framer\";fontStore.loadFonts([\"GF;Lexend-500\",\"GF;Lexend-700\"]);export const fonts=[{explicitInter:true,fonts:[{family:\"Lexend\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/lexend/v23/wlptgwvFAVdoq2_F94zlCfv0bz1WCwkW_LVte6KuGEo.woff2\",weight:\"500\"},{family:\"Lexend\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/lexend/v23/wlptgwvFAVdoq2_F94zlCfv0bz1WC9wR_LVte6KuGEo.woff2\",weight:\"700\"}]}];export const css=['.framer-hSklp .framer-styles-preset-maui2v:not(.rich-text-wrapper), .framer-hSklp .framer-styles-preset-maui2v.rich-text-wrapper h1 { --framer-font-family: \"Lexend\", \"Lexend Placeholder\", sans-serif; --framer-font-family-bold: \"Lexend\", \"Lexend Placeholder\", sans-serif; --framer-font-open-type-features: normal; --framer-font-size: 72px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-weight: 500; --framer-font-weight-bold: 700; --framer-letter-spacing: -3px; --framer-line-height: 90px; --framer-paragraph-spacing: 40px; --framer-text-alignment: start; --framer-text-color: var(--token-32a85a80-d312-468e-9679-2600c480ecba, #282828); --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; }'];export const className=\"framer-hSklp\";\nexport const __FramerMetadata__ = {\"exports\":{\"css\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"fonts\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"className\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "import{fontStore}from\"framer\";fontStore.loadFonts([\"Inter-SemiBold\",\"Inter-Black\",\"Inter-BlackItalic\",\"Inter-SemiBoldItalic\"]);export const fonts=[];export const css=['.framer-amIsW .framer-styles-preset-13u89so:not(.rich-text-wrapper), .framer-amIsW .framer-styles-preset-13u89so.rich-text-wrapper p { --framer-font-family: \"Inter-SemiBold\", \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-family-bold: \"Inter-Black\", \"Inter\", sans-serif; --framer-font-family-bold-italic: \"Inter-BlackItalic\", \"Inter\", sans-serif; --framer-font-family-italic: \"Inter-SemiBoldItalic\", \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-size: 16px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-style-bold-italic: italic; --framer-font-style-italic: italic; --framer-font-weight: 600; --framer-font-weight-bold: 900; --framer-font-weight-bold-italic: 900; --framer-font-weight-italic: 600; --framer-letter-spacing: 0px; --framer-line-height: 26px; --framer-paragraph-spacing: 20px; --framer-text-alignment: start; --framer-text-color: var(--token-32a85a80-d312-468e-9679-2600c480ecba, #282828); --framer-text-decoration: none; --framer-text-transform: none; }'];export const className=\"framer-amIsW\";\nexport const __FramerMetadata__ = {\"exports\":{\"fonts\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"css\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"className\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (e22b717)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,ComponentViewportProvider,Container,cx,GeneratedComponentContext,getFonts,getFontsFromSharedStyle,getLoadingLazyAtYPosition,Image,PropertyOverrides,ResolveLinks,RichText,useComponentViewport,useCustomCursors,useHydratedBreakpointVariants,useIsOnFramerCanvas,useLocaleInfo,useRouteElementId,useRouter,withCSS,withFX,withOptimizedAppearEffect}from\"framer\";import{LayoutGroup,motion}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import ButtonsIconButton from\"https://framerusercontent.com/modules/7zCjq4pHd2FJGLp0BPJn/6QCjGk80vGnL9YhRDMkV/oHvDnt__t.js\";import Ticker from\"https://framerusercontent.com/modules/B2xAlJLcN0gOnt11mSPw/XVUmpmPn1EPL0dzocT35/Ticker.js\";import NavBar from\"#framer/local/canvasComponent/G1U9qbkD3/G1U9qbkD3.js\";import ButtonsFooterBigButton from\"#framer/local/canvasComponent/m9USNFl29/m9USNFl29.js\";import CTA from\"#framer/local/canvasComponent/UAbomaNAP/UAbomaNAP.js\";import Button from\"#framer/local/canvasComponent/XQYIUjp_n/XQYIUjp_n.js\";import FeaturesCard from\"#framer/local/canvasComponent/z9Pa7seOd/z9Pa7seOd.js\";import*as sharedStyle6 from\"#framer/local/css/AgoZUqJgV/AgoZUqJgV.js\";import*as sharedStyle2 from\"#framer/local/css/b2SxAk9Wn/b2SxAk9Wn.js\";import*as sharedStyle3 from\"#framer/local/css/b5bSPZrDH/b5bSPZrDH.js\";import*as sharedStyle7 from\"#framer/local/css/DeeJaRFMK/DeeJaRFMK.js\";import*as sharedStyle4 from\"#framer/local/css/JXALxCXxC/JXALxCXxC.js\";import*as sharedStyle5 from\"#framer/local/css/tZUfsu_N3/tZUfsu_N3.js\";import*as sharedStyle1 from\"#framer/local/css/UorUzDcu9/UorUzDcu9.js\";import*as sharedStyle from\"#framer/local/css/Us40jByny/Us40jByny.js\";import metadataProvider from\"#framer/local/webPageMetadata/Yf7zyWye0/Yf7zyWye0.js\";const NavBarFonts=getFonts(NavBar);const MotionDivWithFX=withFX(motion.div);const RichTextWithFX=withFX(RichText);const ButtonFonts=getFonts(Button);const ContainerWithFX=withFX(Container);const TickerFonts=getFonts(Ticker);const FeaturesCardFonts=getFonts(FeaturesCard);const CTAFonts=getFonts(CTA);const ButtonsIconButtonFonts=getFonts(ButtonsIconButton);const ButtonsFooterBigButtonFonts=getFonts(ButtonsFooterBigButton);const MotionDivWithOptimizedAppearEffect=withOptimizedAppearEffect(motion.div);const breakpoints={NvVjqZKLE:\"(min-width: 810px) and (max-width: 1439px)\",OOOtQ_ZJG:\"(max-width: 809px)\",uC1zg8xGR:\"(min-width: 1440px)\"};const isBrowser=()=>typeof document!==\"undefined\";const serializationHash=\"framer-84EoZ\";const variantClassNames={NvVjqZKLE:\"framer-v-1xc0p3q\",OOOtQ_ZJG:\"framer-v-11jms9u\",uC1zg8xGR:\"framer-v-xq5una\"};const animation={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:0,y:80};const transition1={damping:80,delay:.3,mass:1,stiffness:300,type:\"spring\"};const animation1={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition1,x:0,y:80};const transition2={bounce:.25,delay:0,duration:.45,type:\"spring\"};const animation2={backgroundColor:\"rgb(255, 247, 237)\",opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1.1,skewX:0,skewY:0,transition:transition2};const transition3={damping:80,delay:.4,mass:1,stiffness:300,type:\"spring\"};const animation3={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition3,x:0,y:80};const transition4={damping:80,delay:.5,mass:1,stiffness:300,type:\"spring\"};const animation4={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition4,x:0,y:80};const transition5={delay:2.5,duration:1,ease:[0,0,1,1],type:\"tween\"};const animation5={opacity:.6,rotate:60,rotateX:0,rotateY:0,scale:1.6,skewX:0,skewY:0,x:100,y:100};const transition6={delay:0,duration:3.5,ease:[0,0,1,1],type:\"tween\"};const animation6={opacity:.5,rotate:5,rotateX:0,rotateY:0,scale:1.3,skewX:0,skewY:0,x:-100,y:-100};const animation7={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1.1,skewX:0,skewY:0,transition:transition2};const animation8={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:0,y:40};const transition7={damping:80,delay:.1,mass:1,stiffness:500,type:\"spring\"};const animation9={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition7,x:0,y:40};const addImageAlt=(image,alt)=>{if(!image||typeof image!==\"object\"){return;}return{...image,alt};};const animation10={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:50};const transition8={delay:.1,duration:.5,ease:[.12,.23,.5,1],type:\"tween\"};const transition9={delay:.2,duration:.5,ease:[.12,.23,.5,1],type:\"tween\"};const transition10={damping:30,delay:0,mass:1,stiffness:400,type:\"spring\"};const animation11={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition10,y:-6};const transition11={delay:.25,duration:.5,ease:[.12,.23,.5,1],type:\"tween\"};const transition12={delay:.3,duration:.5,ease:[.12,.23,.5,1],type:\"tween\"};const transition13={delay:0,duration:.4,ease:[.5,0,.88,.77],type:\"tween\"};const animation12={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition13,x:0,y:0};const animation13={opacity:.001,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:-150,y:0};const HTMLStyle=({value})=>{const onCanvas=useIsOnFramerCanvas();if(onCanvas)return null;return /*#__PURE__*/_jsx(\"style\",{dangerouslySetInnerHTML:{__html:value},\"data-framer-html-style\":\"\"});};const humanReadableVariantMap={Desktop:\"uC1zg8xGR\",Phone:\"OOOtQ_ZJG\",Tablet:\"NvVjqZKLE\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"uC1zg8xGR\"};};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const fallbackRef=useRef(null);const refBinding=ref??fallbackRef;const defaultLayoutId=React.useId();const{activeLocale,setLocale}=useLocaleInfo();const componentViewport=useComponentViewport();const{style,className,layoutId,variant,...restProps}=getProps(props);React.useEffect(()=>{const metadata=metadataProvider(undefined,activeLocale);if(metadata.robots){let robotsTag=document.querySelector('meta[name=\"robots\"]');if(robotsTag){robotsTag.setAttribute(\"content\",metadata.robots);}else{robotsTag=document.createElement(\"meta\");robotsTag.setAttribute(\"name\",\"robots\");robotsTag.setAttribute(\"content\",metadata.robots);document.head.appendChild(robotsTag);}}},[undefined,activeLocale]);React.useInsertionEffect(()=>{const metadata=metadataProvider(undefined,activeLocale);document.title=metadata.title||\"\";if(metadata.viewport){document.querySelector('meta[name=\"viewport\"]')?.setAttribute(\"content\",metadata.viewport);}},[undefined,activeLocale]);const[baseVariant,hydratedBaseVariant]=useHydratedBreakpointVariants(variant,breakpoints,false);const gestureVariant=undefined;const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className,sharedStyle2.className,sharedStyle3.className,sharedStyle4.className,sharedStyle5.className,sharedStyle6.className,sharedStyle7.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const router=useRouter();const isDisplayed=()=>{if(!isBrowser())return true;if(baseVariant===\"NvVjqZKLE\")return false;return true;};const elementId=useRouteElementId(\"O_DMaG1Mn\");const ref1=React.useRef(null);const isDisplayed1=()=>{if(!isBrowser())return true;if(baseVariant===\"OOOtQ_ZJG\")return false;return true;};useCustomCursors({});return /*#__PURE__*/_jsx(GeneratedComponentContext.Provider,{value:{primaryVariantId:\"uC1zg8xGR\",variantClassNames},children:/*#__PURE__*/_jsxs(LayoutGroup,{id:layoutId??defaultLayoutId,children:[/*#__PURE__*/_jsx(HTMLStyle,{value:\"html body { background: var(--token-2727a40a-6355-410e-b173-94b4ce7b76c2, rgb(255, 255, 255)); }\"}),/*#__PURE__*/_jsxs(motion.div,{...restProps,className:cx(scopingClassNames,\"framer-xq5una\",className),ref:refBinding,style:{...style},children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:80,width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-lgzjd4-container\",nodeId:\"dYSTUCHrS\",scopeId:\"Yf7zyWye0\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{NvVjqZKLE:{variant:\"zfQOXGXaS\"},OOOtQ_ZJG:{variant:\"kMp5ZAoj0\"}},children:/*#__PURE__*/_jsx(NavBar,{height:\"100%\",id:\"dYSTUCHrS\",jQcddTFoz:true,layoutId:\"dYSTUCHrS\",style:{width:\"100%\"},variant:\"Y4OBWuFRo\",width:\"100%\"})})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1ttm8ew\",\"data-framer-name\":\"Wrapper\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-2s9jdz\",\"data-framer-name\":\"Header\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1io1sgm\",\"data-framer-name\":\"Wrapper\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1bf944x\",\"data-framer-name\":\"Header\",children:[/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation,__framer__exit:animation1,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-14rzr6f\",\"data-framer-name\":\"Title+Badge\",style:{transformPerspective:1200},children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1vaxun6\",\"data-border\":true,\"data-framer-name\":\"Badge\",whileHover:animation2,children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{NvVjqZKLE:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+80+0+0+0+56+0+0+0+0+0+10),pixelHeight:1200,pixelWidth:1200,positionX:\"center\",positionY:\"center\",sizes:\"24px\",src:\"https://framerusercontent.com/images/n3ggIaX9xJEnhXbDuLhyBAVPI.png\",srcSet:\"https://framerusercontent.com/images/n3ggIaX9xJEnhXbDuLhyBAVPI.png?scale-down-to=512 512w,https://framerusercontent.com/images/n3ggIaX9xJEnhXbDuLhyBAVPI.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/n3ggIaX9xJEnhXbDuLhyBAVPI.png 1200w\"}},OOOtQ_ZJG:{background:{alt:\"\",fit:\"fit\",pixelHeight:1200,pixelWidth:1200,positionX:\"center\",positionY:\"center\",sizes:\"24px\",src:\"https://framerusercontent.com/images/n3ggIaX9xJEnhXbDuLhyBAVPI.png\",srcSet:\"https://framerusercontent.com/images/n3ggIaX9xJEnhXbDuLhyBAVPI.png?scale-down-to=512 512w,https://framerusercontent.com/images/n3ggIaX9xJEnhXbDuLhyBAVPI.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/n3ggIaX9xJEnhXbDuLhyBAVPI.png 1200w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+80+0+0+0+104+0+0+0+0+0+10),pixelHeight:1200,pixelWidth:1200,positionX:\"center\",positionY:\"center\",sizes:\"24px\",src:\"https://framerusercontent.com/images/n3ggIaX9xJEnhXbDuLhyBAVPI.png\",srcSet:\"https://framerusercontent.com/images/n3ggIaX9xJEnhXbDuLhyBAVPI.png?scale-down-to=512 512w,https://framerusercontent.com/images/n3ggIaX9xJEnhXbDuLhyBAVPI.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/n3ggIaX9xJEnhXbDuLhyBAVPI.png 1200w\"},className:\"framer-1w9hxnj\"})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-13u89so\",\"data-styles-preset\":\"Us40jByny\",style:{\"--framer-text-color\":\"var(--token-fc766837-92d8-45cf-989e-b98c553fba74, rgb(64, 71, 90))\"},children:\"  Backed by Y Combinator\"})}),className:\"framer-z0ud4v\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{NvVjqZKLE:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{className:\"framer-styles-preset-1qu4io1\",\"data-styles-preset\":\"b2SxAk9Wn\",style:{\"--framer-text-alignment\":\"center\"},children:/*#__PURE__*/_jsx(\"strong\",{children:\"Launch Your AI Clinic\"})})})},OOOtQ_ZJG:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-occ56z\",\"data-styles-preset\":\"b5bSPZrDH\",style:{\"--framer-text-alignment\":\"center\"},children:/*#__PURE__*/_jsx(\"strong\",{children:\"Launch Your AI Clinic\"})})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{className:\"framer-styles-preset-maui2v\",\"data-styles-preset\":\"UorUzDcu9\",style:{\"--framer-text-alignment\":\"center\"},children:/*#__PURE__*/_jsx(\"strong\",{children:\"Launch Your AI Clinic\"})})}),className:\"framer-jluva3\",\"data-framer-name\":\"Title\",fonts:[\"Inter\",\"Inter-Bold\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{OOOtQ_ZJG:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-xm0soh\",\"data-styles-preset\":\"tZUfsu_N3\",style:{\"--framer-text-alignment\":\"center\"},children:\"Asha Health helps medical practices spin up their own AI clinic \u2014 designed to fill crucial care gaps and generate additional revenue on autopilot.\"})})}},children:/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition3},__framer__animateOnce:true,__framer__enter:animation,__framer__exit:animation3,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1npxdzc\",\"data-styles-preset\":\"JXALxCXxC\",style:{\"--framer-text-alignment\":\"center\"},children:\"Asha Health helps medical practices spin up their own AI clinic \u2014 designed to fill crucial care gaps and generate additional revenue on autopilot.\"})}),className:\"framer-1f6d5yh\",\"data-framer-name\":\"Content\",fonts:[\"Inter\"],style:{transformPerspective:1200},verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"dDFpAwPF5\"},implicitPathVariables:undefined},{href:{webPageId:\"dDFpAwPF5\"},implicitPathVariables:undefined},{href:{webPageId:\"dDFpAwPF5\"},implicitPathVariables:undefined}],children:resolvedLinks=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{NvVjqZKLE:{y:(componentViewport?.y||0)+0+0+80+0+0+0+56+0+0+359},OOOtQ_ZJG:{y:undefined}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:74,y:(componentViewport?.y||0)+0+0+80+0+0+0+104+0+0+366,children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition3},__framer__animateOnce:true,__framer__enter:animation,__framer__exit:animation3,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1izgttr-container\",nodeId:\"QNM3NU4Ka\",rendersWithMotion:true,scopeId:\"Yf7zyWye0\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{NvVjqZKLE:{GDBvPe0Ba:resolvedLinks[1]},OOOtQ_ZJG:{GDBvPe0Ba:resolvedLinks[2],variant:\"PyG7iXVdZ\"}},children:/*#__PURE__*/_jsx(Button,{bWnYL7Tgp:\"var(--token-2727a40a-6355-410e-b173-94b4ce7b76c2, rgb(255, 255, 255))\",D2jRnfGwK:48,GDBvPe0Ba:resolvedLinks[0],height:\"100%\",id:\"QNM3NU4Ka\",kN9fQFqwN:\"var(--token-87c9f75a-e5dc-4340-a8f6-03284f64dda3, rgb(13, 110, 253))\",kvN6MvY_7:\"var(--token-87c9f75a-e5dc-4340-a8f6-03284f64dda3, rgb(13, 110, 253))\",layoutId:\"QNM3NU4Ka\",nR87ztHwf:false,R4J2OXJXh:\"chevron-left\",RwZpsJXvZ:\"Launch My AI Clinic\",SA9jAg9_n:false,variant:\"n8OrJOQB0\",vjt0jl_Xl:\"var(--token-02ea8977-fd9a-49bc-8617-d6ebea91ac1a, rgb(11, 92, 213))\",width:\"100%\",wThulUfCM:false,WvHqCrdUD:\"arrow-up-circle\"})})})})})})]}),isDisplayed()&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-vrlhq9 hidden-1xc0p3q\",\"data-framer-name\":\"Artwork\",children:/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition4},__framer__animateOnce:true,__framer__enter:animation,__framer__exit:animation4,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1h7emi8\",\"data-framer-name\":\"Gradient\",style:{transformPerspective:1200},children:[/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__loop:animation5,__framer__loopEffectEnabled:true,__framer__loopRepeatDelay:.5,__framer__loopRepeatType:\"mirror\",__framer__loopTransition:transition5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1i82x79\",\"data-framer-name\":\"color\"}),/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__loop:animation6,__framer__loopEffectEnabled:true,__framer__loopRepeatDelay:0,__framer__loopRepeatType:\"mirror\",__framer__loopTransition:transition6,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1wdmfx0\",\"data-framer-name\":\"color\"})]})})]})}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-2i2r8d\",\"data-framer-name\":\"Logos\",whileHover:animation7,children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{OOOtQ_ZJG:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{className:\"framer-styles-preset-1a3ch1c\",\"data-styles-preset\":\"AgoZUqJgV\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-f2c678f2-c823-4398-aa59-1f8c27290d74, rgb(71, 84, 103))\"},children:[\"Join \",/*#__PURE__*/_jsx(\"strong\",{children:\"100+ physicians\"}),\" across specialties.\"]})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{className:\"framer-styles-preset-xm0soh\",\"data-styles-preset\":\"tZUfsu_N3\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-f2c678f2-c823-4398-aa59-1f8c27290d74, rgb(71, 84, 103))\"},children:[\"Join \",/*#__PURE__*/_jsx(\"strong\",{children:\"100+ physicians\"}),\" across specialties.\"]})}),className:\"framer-1rv3x9f\",\"data-framer-name\":\"There are many variations of passages of Lorem Ipsum available, but the majority have suffered in some form, by injected humour\",fonts:[\"Inter\",\"Inter-Bold\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-xlvxkf-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"ua2NuuCyY\",scopeId:\"Yf7zyWye0\",children:/*#__PURE__*/_jsx(Ticker,{alignment:\"center\",direction:\"left\",fadeOptions:{fadeAlpha:0,fadeContent:true,fadeInset:0,fadeWidth:60,overflow:false},gap:0,height:\"100%\",hoverFactor:1,id:\"ua2NuuCyY\",layoutId:\"ua2NuuCyY\",padding:0,paddingBottom:0,paddingLeft:0,paddingPerSide:false,paddingRight:0,paddingTop:0,sizingOptions:{heightType:true,widthType:true},slots:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1ah9rsr\",\"data-framer-name\":\"Logos\",children:/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition7},__framer__animateOnce:true,__framer__enter:animation8,__framer__exit:animation9,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-qdntm\",\"data-framer-name\":\"Wrapper\",style:{transformPerspective:1200},children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"icon\",fit:\"fit\",intrinsicHeight:40,intrinsicWidth:128,pixelHeight:60,pixelWidth:223,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/89FWIwYzwMTfC7b9z9yc3x11yk.svg\"},className:\"framer-1f3c7qg\",\"data-framer-name\":\"Logo\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"icon\",fit:\"fit\",intrinsicHeight:40,intrinsicWidth:133,pixelHeight:60,pixelWidth:196,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/ZDDnwiqagGeDzu8dI0piqjI8.svg\"},className:\"framer-1eu28yn\",\"data-framer-name\":\"Logo\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"icon\",fit:\"fit\",intrinsicHeight:81,intrinsicWidth:249,pixelHeight:60,pixelWidth:240,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/LimLra7A0zjjVkU4G8xmgvsN6E.svg\"},className:\"framer-e50mmu\",\"data-framer-name\":\"Logo\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"icon\",fit:\"fit\",intrinsicHeight:40,intrinsicWidth:121,pixelHeight:60,pixelWidth:240,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/BTy5sN2UE26RuXqJQ7vJyHtKzD8.svg\"},className:\"framer-cwblje\",\"data-framer-name\":\"Logo\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"icon\",fit:\"fit\",intrinsicHeight:40,intrinsicWidth:93,pixelHeight:60,pixelWidth:218,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/nT0UMnU02ZxuwmQjnC1Gepq4fOk.svg\"},className:\"framer-kcg054\",\"data-framer-name\":\"Logo\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"icon\",fit:\"fit\",intrinsicHeight:40,intrinsicWidth:114,pixelHeight:60,pixelWidth:228,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/97jjgGOgjzar10XemcpACPvYU.svg\"},className:\"framer-4vbkz1\",\"data-framer-name\":\"Logo\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"icon\",fit:\"fit\",intrinsicHeight:81,intrinsicWidth:214,pixelHeight:60,pixelWidth:322,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/2a1Un5NtWichR5S4Uk02t1i3V5E.svg\"},className:\"framer-bhm060\",\"data-framer-name\":\"Logo\"})]})})],speed:25,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1o8yzvd\",\"data-framer-name\":\"Features\",children:[/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation,__framer__exit:animation1,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-12nkw3f\",\"data-framer-name\":\"Header\",style:{transformPerspective:1200},children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1fy7n6m\",\"data-framer-name\":\"Header\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{OOOtQ_ZJG:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{className:\"framer-styles-preset-1a8jt41\",\"data-styles-preset\":\"DeeJaRFMK\",style:{\"--framer-text-alignment\":\"center\"},children:/*#__PURE__*/_jsx(\"strong\",{children:\"Drive ROI on Autopilot\"})})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-occ56z\",\"data-styles-preset\":\"b5bSPZrDH\",style:{\"--framer-text-alignment\":\"center\"},children:/*#__PURE__*/_jsx(\"strong\",{children:\"Drive ROI on Autopilot\"})})}),className:\"framer-mdhu8p\",\"data-framer-name\":\"Design your site in minutes with clonify library\",fonts:[\"Inter\",\"Inter-Bold\"],verticalAlignment:\"top\",withExternalLayout:true})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{OOOtQ_ZJG:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1a3ch1c\",\"data-styles-preset\":\"AgoZUqJgV\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-11fc4855-518e-48d2-ab9f-4e3689418bde, rgb(94, 105, 127))\"},children:\"Practices and health systems can configure their Asha AI Clinic to drive six types of ROI \u2014 all with zero effort from their staff.\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-xm0soh\",\"data-styles-preset\":\"tZUfsu_N3\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-11fc4855-518e-48d2-ab9f-4e3689418bde, rgb(94, 105, 127))\"},children:\"Practices and health systems can configure their Asha AI Clinic to drive six types of ROI \u2014 all with zero effort from their staff.\"})}),className:\"framer-1weog81\",\"data-framer-name\":\"There are many variations of passages of Lorem Ipsum available, but the majority have suffered in some form, by injected humour\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition4},__framer__animateOnce:true,__framer__enter:animation,__framer__exit:animation4,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1ekbc2p\",\"data-framer-name\":\"Cards\",style:{transformPerspective:1200},children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{NvVjqZKLE:{width:`max((${componentViewport?.width||\"100vw\"} - 110px) / 2, 200px)`,y:(componentViewport?.y||0)+0+0+80+897+64+270+0+0},OOOtQ_ZJG:{width:undefined,y:undefined}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:86,width:\"346.6667px\",y:(componentViewport?.y||0)+0+0+80+962+150+270+0+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-lx3jyd-container\",nodeId:\"ReU_oMq2g\",scopeId:\"Yf7zyWye0\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{NvVjqZKLE:{variant:\"wI1C4UmKW\"},OOOtQ_ZJG:{variant:\"wI1C4UmKW\"}},children:/*#__PURE__*/_jsx(FeaturesCard,{beOEtyEXt:\"Generate profits (not just revenue) so you can reinvest them to grow your business. \",height:\"100%\",id:\"ReU_oMq2g\",layoutId:\"ReU_oMq2g\",oOZeIwFEe:\"Boost care delivery margins\",style:{width:\"100%\"},variant:\"I533:121142;532:120814\",width:\"100%\",XLmOkZ8AL:addImageAlt({src:\"https://framerusercontent.com/images/4vJCcXCZeSot3LwdJ2slUC81C8.svg\"},\"\")})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{NvVjqZKLE:{width:`max((${componentViewport?.width||\"100vw\"} - 110px) / 2, 200px)`,y:(componentViewport?.y||0)+0+0+80+897+64+270+0+0},OOOtQ_ZJG:{width:undefined,y:undefined}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:86,width:\"346.6667px\",y:(componentViewport?.y||0)+0+0+80+962+150+270+0+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1ehjlw2-container\",nodeId:\"kjXg02R9C\",scopeId:\"Yf7zyWye0\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{NvVjqZKLE:{variant:\"wI1C4UmKW\"},OOOtQ_ZJG:{variant:\"wI1C4UmKW\"}},children:/*#__PURE__*/_jsx(FeaturesCard,{beOEtyEXt:\"Drive better patient outcomes and perform better in your accountable care arrangements.\",height:\"100%\",id:\"kjXg02R9C\",layoutId:\"kjXg02R9C\",oOZeIwFEe:\"Improve performance on VBC outcomes\",style:{width:\"100%\"},variant:\"I533:121142;532:120814\",width:\"100%\",XLmOkZ8AL:addImageAlt({src:\"https://framerusercontent.com/images/2MLmPZTa8Vszl4KMO1qkS9YWw8.svg\"},\"\")})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{NvVjqZKLE:{width:`max((${componentViewport?.width||\"100vw\"} - 110px) / 2, 200px)`,y:(componentViewport?.y||0)+0+0+80+897+64+270+0+116},OOOtQ_ZJG:{width:undefined,y:undefined}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:86,width:\"346.6667px\",y:(componentViewport?.y||0)+0+0+80+962+150+270+0+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1c26pc0-container\",nodeId:\"hxQ3QKq_p\",scopeId:\"Yf7zyWye0\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{NvVjqZKLE:{variant:\"wI1C4UmKW\"},OOOtQ_ZJG:{variant:\"wI1C4UmKW\"}},children:/*#__PURE__*/_jsx(FeaturesCard,{beOEtyEXt:\"Provide differentiated, concierge-level care to patients that they'll remember you for.\",height:\"100%\",id:\"hxQ3QKq_p\",layoutId:\"hxQ3QKq_p\",oOZeIwFEe:\"Increase patient engagement & retention\",style:{width:\"100%\"},variant:\"I533:121142;532:120814\",width:\"100%\",XLmOkZ8AL:addImageAlt({src:\"https://framerusercontent.com/images/tCGSR1aPMAyg1NxXPU1mGSAJ2Y.svg\"},\"\")})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{NvVjqZKLE:{width:`max((${componentViewport?.width||\"100vw\"} - 110px) / 2, 200px)`,y:(componentViewport?.y||0)+0+0+80+897+64+270+0+116},OOOtQ_ZJG:{width:undefined,y:undefined}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:86,width:\"346.6667px\",y:(componentViewport?.y||0)+0+0+80+962+150+270+0+116,children:/*#__PURE__*/_jsx(Container,{className:\"framer-10s0njc-container\",nodeId:\"YP0Fgjt1O\",scopeId:\"Yf7zyWye0\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{NvVjqZKLE:{variant:\"wI1C4UmKW\"},OOOtQ_ZJG:{variant:\"wI1C4UmKW\"}},children:/*#__PURE__*/_jsx(FeaturesCard,{beOEtyEXt:\"Alleviate administrative burden on your providers and increase their satisfaction in providing care.\",height:\"100%\",id:\"YP0Fgjt1O\",layoutId:\"YP0Fgjt1O\",oOZeIwFEe:\"Decrease burden on providers\",style:{width:\"100%\"},variant:\"I533:121142;532:120814\",width:\"100%\",XLmOkZ8AL:addImageAlt({src:\"https://framerusercontent.com/images/fnlgC2PGDWf6w8WYFtW2NfumrVQ.svg\"},\"\")})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{NvVjqZKLE:{width:`max((${componentViewport?.width||\"100vw\"} - 110px) / 2, 200px)`,y:(componentViewport?.y||0)+0+0+80+897+64+270+0+232},OOOtQ_ZJG:{width:undefined,y:undefined}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:86,width:\"346.6667px\",y:(componentViewport?.y||0)+0+0+80+962+150+270+0+116,children:/*#__PURE__*/_jsx(Container,{className:\"framer-izq8jf-container\",nodeId:\"vEJHd1hxr\",scopeId:\"Yf7zyWye0\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{NvVjqZKLE:{variant:\"wI1C4UmKW\"},OOOtQ_ZJG:{variant:\"wI1C4UmKW\"}},children:/*#__PURE__*/_jsx(FeaturesCard,{beOEtyEXt:\"Proactively take care of your entire patient population, not just the top 5% care management divisions can touch.\",height:\"100%\",id:\"vEJHd1hxr\",layoutId:\"vEJHd1hxr\",oOZeIwFEe:\"Manage 100% of your population\",style:{width:\"100%\"},variant:\"I533:121142;532:120814\",width:\"100%\",XLmOkZ8AL:addImageAlt({src:\"https://framerusercontent.com/images/5kZkxDXorMmHxUvUPtbocmMlPI4.svg\"},\"\")})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{NvVjqZKLE:{width:`max((${componentViewport?.width||\"100vw\"} - 110px) / 2, 200px)`,y:(componentViewport?.y||0)+0+0+80+897+64+270+0+232},OOOtQ_ZJG:{width:undefined,y:undefined}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:86,width:\"346.6667px\",y:(componentViewport?.y||0)+0+0+80+962+150+270+0+116,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1714k8m-container\",nodeId:\"I0egLNZlW\",scopeId:\"Yf7zyWye0\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{NvVjqZKLE:{variant:\"wI1C4UmKW\"},OOOtQ_ZJG:{variant:\"wI1C4UmKW\"}},children:/*#__PURE__*/_jsx(FeaturesCard,{beOEtyEXt:\"Provide exceptional support to patients after discharge to ensure they don't end up getting readmitted.\",height:\"100%\",id:\"I0egLNZlW\",layoutId:\"I0egLNZlW\",oOZeIwFEe:\"Reduce hospital readmissions\",style:{width:\"100%\"},variant:\"I533:121142;532:120814\",width:\"100%\",XLmOkZ8AL:addImageAlt({src:\"https://framerusercontent.com/images/OaWO3mWqClvmGIRQDr5cuIDZw24.svg\"},\"\")})})})})})]})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{NvVjqZKLE:{y:(componentViewport?.y||0)+0+0+80+1589},OOOtQ_ZJG:{y:undefined}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:498,width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+0+80+1734,children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition7},__framer__animateOnce:true,__framer__enter:animation8,__framer__exit:animation9,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-12u8yl4-container\",id:elementId,nodeId:\"O_DMaG1Mn\",ref:ref1,rendersWithMotion:true,scopeId:\"Yf7zyWye0\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{NvVjqZKLE:{variant:\"y0qIndf01\"},OOOtQ_ZJG:{variant:\"ax_kIPo8C\"}},children:/*#__PURE__*/_jsx(CTA,{height:\"100%\",id:\"O_DMaG1Mn\",layoutId:\"O_DMaG1Mn\",style:{width:\"100%\"},variant:\"qOC8w0ukl\",width:\"100%\"})})})})})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-qjud90\",\"data-framer-name\":\"Pivot\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-186vgsr\",\"data-framer-name\":\"Sub Container\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-ftew54\",\"data-framer-name\":\"Container\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-lz3tcf\",\"data-framer-name\":\"Sub Container\",children:[/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition8},__framer__animateOnce:true,__framer__enter:animation10,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1lyqohm\",\"data-border\":true,\"data-framer-name\":\"Logo Container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{NvVjqZKLE:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+2167+80+80+0+0+0+0+0+10),pixelHeight:1784,pixelWidth:2e3,positionX:\"center\",positionY:\"center\",sizes:\"40px\",src:\"https://framerusercontent.com/images/0b2Bw4OsP7QDl8lhrYI88DqLKh0.png\",srcSet:\"https://framerusercontent.com/images/0b2Bw4OsP7QDl8lhrYI88DqLKh0.png?scale-down-to=512 512w,https://framerusercontent.com/images/0b2Bw4OsP7QDl8lhrYI88DqLKh0.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/0b2Bw4OsP7QDl8lhrYI88DqLKh0.png 2000w\"}},OOOtQ_ZJG:{background:{alt:\"\",fit:\"fit\",pixelHeight:1784,pixelWidth:2e3,positionX:\"center\",positionY:\"center\",sizes:\"46px\",src:\"https://framerusercontent.com/images/0b2Bw4OsP7QDl8lhrYI88DqLKh0.png\",srcSet:\"https://framerusercontent.com/images/0b2Bw4OsP7QDl8lhrYI88DqLKh0.png?scale-down-to=512 512w,https://framerusercontent.com/images/0b2Bw4OsP7QDl8lhrYI88DqLKh0.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/0b2Bw4OsP7QDl8lhrYI88DqLKh0.png 2000w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+2312+100+80+0+0+0+0+0+6),pixelHeight:1784,pixelWidth:2e3,positionX:\"center\",positionY:\"center\",sizes:\"46px\",src:\"https://framerusercontent.com/images/0b2Bw4OsP7QDl8lhrYI88DqLKh0.png\",srcSet:\"https://framerusercontent.com/images/0b2Bw4OsP7QDl8lhrYI88DqLKh0.png?scale-down-to=512 512w,https://framerusercontent.com/images/0b2Bw4OsP7QDl8lhrYI88DqLKh0.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/0b2Bw4OsP7QDl8lhrYI88DqLKh0.png 2000w\"},className:\"framer-1816j35\",\"data-framer-name\":\"Logo\"})})}),/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition9},__framer__animateOnce:true,__framer__enter:animation10,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TWFucm9wZS01MDA=\",\"--framer-font-family\":'\"Manrope\", \"Manrope Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"150%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-39f7d06d-c0fd-47b9-80eb-527b40399b99, rgb(42, 15, 106))\"},children:\"Unlocking a new AI-native care paradigm.\"})}),className:\"framer-q1obvi\",\"data-framer-name\":\"Text\",fonts:[\"GF;Manrope-500\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1h0l8h2\",\"data-framer-name\":\"Buttons Container\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{NvVjqZKLE:{y:(componentViewport?.y||0)+0+2167+80+80+0+0+226+0},OOOtQ_ZJG:{y:undefined}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:48,y:(componentViewport?.y||0)+0+2312+100+80+0+0+224+0,children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition9},__framer__animateOnce:true,__framer__enter:animation10,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1mb1s8m-container\",isModuleExternal:true,nodeId:\"XboxyIpOb\",rendersWithMotion:true,scopeId:\"Yf7zyWye0\",whileHover:animation11,children:/*#__PURE__*/_jsx(ButtonsIconButton,{frXez2N8R:true,glOvKKMSm:false,height:\"100%\",id:\"XboxyIpOb\",jS612oDpc:false,layoutId:\"XboxyIpOb\",OKDfMzW5S:\"var(--token-a22c6191-f7e9-4ee5-9f65-474d40a4cd65, rgb(255, 255, 255))\",OmVB5ZlF1:12,sclPprRfW:addImageAlt({src:\"https://framerusercontent.com/images/f5vJm4GFu2NhncC5dZqPzogsGE.svg\"},\"Linkedin Logo\"),UT5oTBn7v:\"var(--token-1c467f48-8f26-4947-9c1b-69a153606749, rgb(248, 246, 254))\",width:\"100%\",Wl2bCBByC:\"https://www.linkedin.com/company/asha-health-ai/\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{NvVjqZKLE:{y:(componentViewport?.y||0)+0+2167+80+80+0+0+226+0},OOOtQ_ZJG:{y:undefined}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:48,y:(componentViewport?.y||0)+0+2312+100+80+0+0+224+0,children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition11},__framer__animateOnce:true,__framer__enter:animation10,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1vylo67-container\",isModuleExternal:true,nodeId:\"MMC9M6UgZ\",rendersWithMotion:true,scopeId:\"Yf7zyWye0\",whileHover:animation11,children:/*#__PURE__*/_jsx(ButtonsIconButton,{frXez2N8R:true,glOvKKMSm:false,height:\"100%\",id:\"MMC9M6UgZ\",jS612oDpc:false,layoutId:\"MMC9M6UgZ\",OKDfMzW5S:\"var(--token-a22c6191-f7e9-4ee5-9f65-474d40a4cd65, rgb(255, 255, 255))\",OmVB5ZlF1:12,sclPprRfW:addImageAlt({src:\"https://framerusercontent.com/images/5V6ojZMWV7UMp5lQHEXCJ3o2MWw.svg\"},\"X Logo\"),UT5oTBn7v:\"var(--token-1c467f48-8f26-4947-9c1b-69a153606749, rgb(248, 246, 254))\",width:\"100%\",Wl2bCBByC:\"https://x.com/asha_health_ai\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{NvVjqZKLE:{y:(componentViewport?.y||0)+0+2167+80+80+0+0+226+0},OOOtQ_ZJG:{y:undefined}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:48,y:(componentViewport?.y||0)+0+2312+100+80+0+0+224+0,children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition12},__framer__animateOnce:true,__framer__enter:animation10,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1o0i213-container\",isModuleExternal:true,nodeId:\"ED8lYcHXO\",rendersWithMotion:true,scopeId:\"Yf7zyWye0\",whileHover:animation11,children:/*#__PURE__*/_jsx(ButtonsIconButton,{frXez2N8R:true,glOvKKMSm:false,height:\"100%\",id:\"ED8lYcHXO\",jS612oDpc:false,layoutId:\"ED8lYcHXO\",OKDfMzW5S:\"var(--token-a22c6191-f7e9-4ee5-9f65-474d40a4cd65, rgb(255, 255, 255))\",OmVB5ZlF1:12,sclPprRfW:addImageAlt({src:\"https://framerusercontent.com/images/kLDjLyPailQ5QiYPIMn8QqEOU0.png\",srcSet:\"https://framerusercontent.com/images/kLDjLyPailQ5QiYPIMn8QqEOU0.png?scale-down-to=512 512w,https://framerusercontent.com/images/kLDjLyPailQ5QiYPIMn8QqEOU0.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/kLDjLyPailQ5QiYPIMn8QqEOU0.png 1753w\"},\"Insta Logo\"),UT5oTBn7v:\"var(--token-1c467f48-8f26-4947-9c1b-69a153606749, rgb(248, 246, 254))\",width:\"100%\",Wl2bCBByC:\"https://www.ycombinator.com/companies/asha-health\"})})})})]})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-pgq0ix\",\"data-framer-name\":\"Container\",children:/*#__PURE__*/_jsxs(MotionDivWithOptimizedAppearEffect,{animate:animation12,className:\"framer-9zlaa6\",\"data-framer-appear-id\":\"9zlaa6\",\"data-framer-name\":\"Sub Container\",initial:animation13,optimized:true,children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{NvVjqZKLE:{width:`max((min(${componentViewport?.width||\"100vw\"} - 120px, 760px) - 24px) / 3, 1px)`,y:(componentViewport?.y||0)+0+2167+80+80+334+0+0+0},OOOtQ_ZJG:{width:\"330px\",y:undefined}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:87,width:`max((min((${componentViewport?.width||\"100vw\"} - 80px) * 0.95 - 360px, 760px) - 24px) / 3, 1px)`,y:(componentViewport?.y||0)+0+2312+100+80+332+0+0+0,children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition8},__framer__animateOnce:true,__framer__enter:animation10,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1iiu2lr-container\",nodeId:\"tw0cAejtJ\",rendersWithMotion:true,scopeId:\"Yf7zyWye0\",children:/*#__PURE__*/_jsx(ButtonsFooterBigButton,{bxpEA6PWu:\"founders@asha.health\",height:\"100%\",id:\"tw0cAejtJ\",Ip8r90tLo:\"mailto:founders@asha.health\",layoutId:\"tw0cAejtJ\",mECNBN8PL:\"Email\",style:{width:\"100%\"},width:\"100%\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{NvVjqZKLE:{width:`max((min(${componentViewport?.width||\"100vw\"} - 120px, 760px) - 24px) / 3, 1px)`,y:(componentViewport?.y||0)+0+2167+80+80+334+0+0+0},OOOtQ_ZJG:{width:\"330px\",y:undefined}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:87,width:`max((min((${componentViewport?.width||\"100vw\"} - 80px) * 0.95 - 360px, 760px) - 24px) / 3, 1px)`,y:(componentViewport?.y||0)+0+2312+100+80+332+0+0+0,children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition9},__framer__animateOnce:true,__framer__enter:animation10,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1msqnka-container\",nodeId:\"VYeZ_KNJm\",rendersWithMotion:true,scopeId:\"Yf7zyWye0\",children:/*#__PURE__*/_jsx(ButtonsFooterBigButton,{bxpEA6PWu:\"Schedule a call\",height:\"100%\",id:\"VYeZ_KNJm\",Ip8r90tLo:\"https://calendly.com/asha-health/learn-more\",layoutId:\"VYeZ_KNJm\",mECNBN8PL:\"Call\",style:{width:\"100%\"},width:\"100%\"})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"MUpUXdUWf\"},implicitPathVariables:undefined},{href:{webPageId:\"MUpUXdUWf\"},implicitPathVariables:undefined},{href:{webPageId:\"MUpUXdUWf\"},implicitPathVariables:undefined}],children:resolvedLinks1=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{NvVjqZKLE:{width:`max((min(${componentViewport?.width||\"100vw\"} - 120px, 760px) - 24px) / 3, 1px)`,y:(componentViewport?.y||0)+0+2167+80+80+334+0+0+0},OOOtQ_ZJG:{width:\"330px\",y:undefined}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:87,width:`max((min((${componentViewport?.width||\"100vw\"} - 80px) * 0.95 - 360px, 760px) - 24px) / 3, 1px)`,y:(componentViewport?.y||0)+0+2312+100+80+332+0+0+0,children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition12},__framer__animateOnce:true,__framer__enter:animation10,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-17i7ypk-container\",nodeId:\"vg8nUKVLH\",rendersWithMotion:true,scopeId:\"Yf7zyWye0\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{NvVjqZKLE:{Ip8r90tLo:resolvedLinks1[1]},OOOtQ_ZJG:{Ip8r90tLo:resolvedLinks1[2]}},children:/*#__PURE__*/_jsx(ButtonsFooterBigButton,{bxpEA6PWu:\"Send us a message\",height:\"100%\",id:\"vg8nUKVLH\",Ip8r90tLo:resolvedLinks1[0],layoutId:\"vg8nUKVLH\",mECNBN8PL:\"Contact Us\",style:{width:\"100%\"},width:\"100%\"})})})})})})]})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1jrqred\",\"data-border\":true,\"data-framer-name\":\"Container\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{OOOtQ_ZJG:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TWFucm9wZS01MDA=\",\"--framer-font-family\":'\"Manrope\", \"Manrope Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"150%\",\"--framer-text-color\":\"var(--token-39f7d06d-c0fd-47b9-80eb-527b40399b99, rgb(42, 15, 106))\"},children:\"2024 Asha Health, Inc.\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TWFucm9wZS01MDA=\",\"--framer-font-family\":'\"Manrope\", \"Manrope Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"150%\",\"--framer-text-color\":\"var(--token-39f7d06d-c0fd-47b9-80eb-527b40399b99, rgb(42, 15, 106))\"},children:\"Asha Health, Inc.\"})}),className:\"framer-1voup6z\",\"data-framer-name\":\"Text\",fonts:[\"GF;Manrope-500\"],verticalAlignment:\"top\",withExternalLayout:true})}),isDisplayed1()&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TWFucm9wZS01MDA=\",\"--framer-font-family\":'\"Manrope\", \"Manrope Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"150%\",\"--framer-text-color\":\"var(--token-39f7d06d-c0fd-47b9-80eb-527b40399b99, rgb(42, 15, 106))\"},children:\"@2024 All Rights Reserved\"})}),className:\"framer-285li2 hidden-11jms9u\",\"data-framer-name\":\"Text\",fonts:[\"GF;Manrope-500\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{NvVjqZKLE:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+2167+80+80+481+24),pixelHeight:150,pixelWidth:200,sizes:\"100px\",src:\"https://framerusercontent.com/images/Nm7k6cqQTeWreqtiuw4bGSnQ7Q.svg\",srcSet:\"https://framerusercontent.com/images/Nm7k6cqQTeWreqtiuw4bGSnQ7Q.svg?scale-down-to=512 512w,https://framerusercontent.com/images/Nm7k6cqQTeWreqtiuw4bGSnQ7Q.svg 600w\"}},OOOtQ_ZJG:{background:{alt:\"\",fit:\"fill\",pixelHeight:150,pixelWidth:200,sizes:\"100px\",src:\"https://framerusercontent.com/images/Nm7k6cqQTeWreqtiuw4bGSnQ7Q.svg\",srcSet:\"https://framerusercontent.com/images/Nm7k6cqQTeWreqtiuw4bGSnQ7Q.svg?scale-down-to=512 512w,https://framerusercontent.com/images/Nm7k6cqQTeWreqtiuw4bGSnQ7Q.svg 600w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+2312+100+80+479+24),pixelHeight:150,pixelWidth:200,sizes:\"100px\",src:\"https://framerusercontent.com/images/Nm7k6cqQTeWreqtiuw4bGSnQ7Q.svg\",srcSet:\"https://framerusercontent.com/images/Nm7k6cqQTeWreqtiuw4bGSnQ7Q.svg?scale-down-to=512 512w,https://framerusercontent.com/images/Nm7k6cqQTeWreqtiuw4bGSnQ7Q.svg 600w\"},className:\"framer-kriyh3\"})})]}),isDisplayed1()&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{NvVjqZKLE:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+2167+80+756-596),pixelHeight:595,pixelWidth:358,sizes:\"358px\",src:\"https://framerusercontent.com/images/s1iydmR8MKKFKB0VWzwXuSglTA.svg\",srcSet:\"https://framerusercontent.com/images/s1iydmR8MKKFKB0VWzwXuSglTA.svg 358w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+2312+100+754-596),pixelHeight:595,pixelWidth:358,sizes:\"358px\",src:\"https://framerusercontent.com/images/s1iydmR8MKKFKB0VWzwXuSglTA.svg\",srcSet:\"https://framerusercontent.com/images/s1iydmR8MKKFKB0VWzwXuSglTA.svg 358w\"},className:\"framer-u2dovz hidden-11jms9u\",\"data-framer-name\":\"Right Light\"})}),isDisplayed1()&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{NvVjqZKLE:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+2167+80+756-596),pixelHeight:595,pixelWidth:358,sizes:\"358px\",src:\"https://framerusercontent.com/images/1mNJL48PwvsGzSoJZMgLWiIVkIM.svg\",srcSet:\"https://framerusercontent.com/images/1mNJL48PwvsGzSoJZMgLWiIVkIM.svg 358w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+2312+100+754-596),pixelHeight:595,pixelWidth:358,sizes:\"358px\",src:\"https://framerusercontent.com/images/1mNJL48PwvsGzSoJZMgLWiIVkIM.svg\",srcSet:\"https://framerusercontent.com/images/1mNJL48PwvsGzSoJZMgLWiIVkIM.svg 358w\"},className:\"framer-wg2kq hidden-11jms9u\",\"data-framer-name\":\"Left Light\"})})]})})]}),/*#__PURE__*/_jsx(\"div\",{id:\"overlay\"})]})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-84EoZ.framer-yp4pjy, .framer-84EoZ .framer-yp4pjy { display: block; }\",\".framer-84EoZ.framer-xq5una { align-content: center; align-items: center; background-color: var(--token-2727a40a-6355-410e-b173-94b4ce7b76c2, #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: 1440px; }\",\".framer-84EoZ .framer-lgzjd4-container { flex: none; height: auto; left: 50%; position: absolute; top: 0px; transform: translateX(-50%); width: 100%; z-index: 4; }\",\".framer-84EoZ .framer-1ttm8ew { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: hidden; padding: 80px 0px 0px 0px; position: relative; width: 100%; z-index: 1; }\",\".framer-84EoZ .framer-2s9jdz { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; z-index: 2; }\",\".framer-84EoZ .framer-1io1sgm { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: visible; padding: 104px 0px 0px 0px; position: relative; width: 100%; }\",\".framer-84EoZ .framer-1bf944x { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; max-width: 944px; overflow: visible; padding: 0px; position: relative; width: 100%; z-index: 2; }\",\".framer-84EoZ .framer-14rzr6f { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 12px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-84EoZ .framer-1vaxun6 { --border-bottom-width: 1px; --border-color: #f97316; --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; align-content: center; align-items: center; 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: 4px; height: min-content; justify-content: flex-start; overflow: visible; padding: 9px 16px 9px 16px; position: relative; width: min-content; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-84EoZ .framer-1w9hxnj { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 24px); position: relative; width: 24px; }\",\".framer-84EoZ .framer-z0ud4v { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-84EoZ .framer-jluva3 { flex: none; height: auto; overflow: visible; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-84EoZ .framer-1f6d5yh { flex: none; height: auto; max-width: 800px; overflow: hidden; position: relative; white-space: pre-wrap; width: 800px; word-break: break-word; word-wrap: break-word; }\",\".framer-84EoZ .framer-1izgttr-container { flex: none; height: auto; position: relative; width: auto; }\",\".framer-84EoZ .framer-vrlhq9 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: 8px; justify-content: center; opacity: 0.4; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-84EoZ .framer-1h7emi8 { flex: none; height: 686px; left: calc(50.00000000000002% - 1018px / 2); overflow: visible; position: absolute; top: calc(50.05780346820812% - 686px / 2); width: 1018px; z-index: 0; }\",\".framer-84EoZ .framer-1i82x79 { -webkit-filter: blur(100px); aspect-ratio: 1 / 1; background-color: #fcacf2; border-bottom-left-radius: 500px; border-bottom-right-radius: 500px; border-top-left-radius: 500px; border-top-right-radius: 500px; bottom: 96px; filter: blur(100px); flex: none; left: -456px; overflow: hidden; position: absolute; top: 113px; width: var(--framer-aspect-ratio-supported, 478px); will-change: var(--framer-will-change-override, transform); }\",\".framer-84EoZ .framer-1wdmfx0 { -webkit-filter: blur(100px); aspect-ratio: 1 / 1; background-color: #9adffc; border-bottom-left-radius: 500px; border-bottom-right-radius: 500px; border-top-left-radius: 500px; border-top-right-radius: 500px; bottom: 96px; filter: blur(100px); flex: none; left: 995px; overflow: hidden; position: absolute; top: 95px; width: var(--framer-aspect-ratio-supported, 495px); will-change: var(--framer-will-change-override, transform); }\",\".framer-84EoZ .framer-2i2r8d { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: visible; padding: 80px; position: relative; width: 100%; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-84EoZ .framer-1rv3x9f, .framer-84EoZ .framer-1weog81 { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 624px; word-break: break-word; word-wrap: break-word; }\",\".framer-84EoZ .framer-xlvxkf-container { flex: none; height: 100px; position: relative; width: 1280px; }\",\".framer-84EoZ .framer-1ah9rsr { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; height: 100px; justify-content: space-around; overflow: hidden; padding: 0px; position: relative; width: 1566px; }\",\".framer-84EoZ .framer-qdntm { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; height: 50px; justify-content: space-around; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-84EoZ .framer-1f3c7qg { aspect-ratio: 3.25 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 57px); overflow: hidden; position: relative; width: 185px; }\",\".framer-84EoZ .framer-1eu28yn { aspect-ratio: 3.25 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 50px); overflow: hidden; position: relative; width: 163px; }\",\".framer-84EoZ .framer-e50mmu { aspect-ratio: 3.25 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 61px); overflow: hidden; position: relative; width: 198px; }\",\".framer-84EoZ .framer-cwblje { aspect-ratio: 2.625 / 1; flex: none; height: 75px; overflow: hidden; position: relative; width: var(--framer-aspect-ratio-supported, 197px); }\",\".framer-84EoZ .framer-kcg054 { aspect-ratio: 2.625 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 68px); overflow: hidden; position: relative; width: 179px; }\",\".framer-84EoZ .framer-4vbkz1 { aspect-ratio: 2.625 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 71px); overflow: hidden; position: relative; width: 186px; }\",\".framer-84EoZ .framer-bhm060 { aspect-ratio: 3.25 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 81px); overflow: hidden; position: relative; width: 263px; }\",\".framer-84EoZ .framer-1o8yzvd { align-content: center; align-items: center; background: linear-gradient(180deg, #f0f4fa 0%, rgb(255, 255, 255) 100%); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 48px; height: min-content; justify-content: flex-start; overflow: visible; padding: 150px 0px 150px 0px; position: relative; width: 100%; }\",\".framer-84EoZ .framer-12nkw3f { align-content: center; align-items: center; background-color: rgba(255, 255, 255, 0); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 12px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px 80px 0px 80px; position: relative; width: 100%; }\",\".framer-84EoZ .framer-1fy7n6m { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 12px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 620px; }\",\".framer-84EoZ .framer-mdhu8p { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-84EoZ .framer-1ekbc2p { display: grid; flex: none; gap: 30px; grid-auto-rows: min-content; grid-template-columns: repeat(3, minmax(200px, 1fr)); grid-template-rows: repeat(2, min-content); height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 1100px; }\",\".framer-84EoZ .framer-lx3jyd-container, .framer-84EoZ .framer-1ehjlw2-container, .framer-84EoZ .framer-1c26pc0-container, .framer-84EoZ .framer-10s0njc-container, .framer-84EoZ .framer-izq8jf-container, .framer-84EoZ .framer-1714k8m-container { align-self: start; flex: none; height: auto; justify-self: start; position: relative; width: 100%; }\",\".framer-84EoZ .framer-12u8yl4-container { flex: none; height: auto; position: relative; width: 100%; }\",\".framer-84EoZ .framer-qjud90 { align-content: center; align-items: center; background-color: #ffffff; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: visible; padding: 100px 40px 100px 40px; position: relative; width: 100%; }\",\".framer-84EoZ .framer-186vgsr { align-content: center; align-items: center; background: linear-gradient(180deg, #e8f4ff 0%, rgb(224, 240, 255) 15.350836515426636%, rgb(214, 222, 255) 40.49542844295502%, rgb(240, 220, 250) 100%); border-bottom-left-radius: 60px; border-bottom-right-radius: 60px; border-top-left-radius: 60px; border-top-right-radius: 60px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 60px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 80px 180px 80px 180px; position: relative; width: 95%; will-change: var(--framer-will-change-override, transform); }\",\".framer-84EoZ .framer-ftew54 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 30px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-84EoZ .framer-lz3tcf { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-84EoZ .framer-1lyqohm { --border-bottom-width: 1px; --border-color: var(--token-1c467f48-8f26-4947-9c1b-69a153606749, #f8f6fe); --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; align-content: center; align-items: center; background-color: var(--token-a22c6191-f7e9-4ee5-9f65-474d40a4cd65, #ffffff); border-bottom-left-radius: 100px; border-bottom-right-radius: 100px; border-top-left-radius: 100px; border-top-right-radius: 100px; box-shadow: 0px 0px 0px 1px var(--token-a22c6191-f7e9-4ee5-9f65-474d40a4cd65, #ffffff), 0px 2px 4px 1px rgba(0, 0, 0, 0.05); display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 6px 24px 6px 24px; position: relative; width: min-content; }\",\".framer-84EoZ .framer-1816j35 { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 46px); overflow: hidden; position: relative; width: 46px; }\",\".framer-84EoZ .framer-q1obvi { --framer-paragraph-spacing: 0px; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 360px; word-break: break-word; word-wrap: break-word; }\",\".framer-84EoZ .framer-1h0l8h2 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-84EoZ .framer-1mb1s8m-container, .framer-84EoZ .framer-1vylo67-container, .framer-84EoZ .framer-1o0i213-container { flex: none; height: auto; position: relative; width: auto; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-84EoZ .framer-pgq0ix { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 30px; height: min-content; justify-content: center; max-width: 760px; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-84EoZ .framer-9zlaa6 { align-content: flex-start; align-items: flex-start; 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%; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-84EoZ .framer-1iiu2lr-container, .framer-84EoZ .framer-1msqnka-container, .framer-84EoZ .framer-17i7ypk-container { flex: 1 0 0px; height: auto; position: relative; width: 1px; }\",\".framer-84EoZ .framer-1jrqred { --border-bottom-width: 0px; --border-color: var(--token-385be127-3267-483d-88b9-2119ea5089ee, #dad2f8); --border-left-width: 0px; --border-right-width: 0px; --border-style: solid; --border-top-width: 1px; 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: 24px 0px 16px 0px; position: relative; width: 100%; }\",\".framer-84EoZ .framer-1voup6z, .framer-84EoZ .framer-285li2 { --framer-paragraph-spacing: 0px; flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-84EoZ .framer-kriyh3 { aspect-ratio: 1.3333333333333333 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 75px); position: relative; width: 100px; }\",\".framer-84EoZ .framer-u2dovz { aspect-ratio: 0.6006711409395973 / 1; bottom: 0px; flex: none; height: var(--framer-aspect-ratio-supported, 596px); overflow: hidden; position: absolute; right: 0px; width: 358px; z-index: 0; }\",\".framer-84EoZ .framer-wg2kq { aspect-ratio: 0.6006711409395973 / 1; bottom: 0px; flex: none; height: var(--framer-aspect-ratio-supported, 596px); left: 0px; overflow: hidden; position: absolute; width: 358px; z-index: 0; }\",\"@supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-84EoZ.framer-xq5una, .framer-84EoZ .framer-1ttm8ew, .framer-84EoZ .framer-2s9jdz, .framer-84EoZ .framer-1io1sgm, .framer-84EoZ .framer-1bf944x, .framer-84EoZ .framer-14rzr6f, .framer-84EoZ .framer-1vaxun6, .framer-84EoZ .framer-vrlhq9, .framer-84EoZ .framer-2i2r8d, .framer-84EoZ .framer-1o8yzvd, .framer-84EoZ .framer-12nkw3f, .framer-84EoZ .framer-1fy7n6m, .framer-84EoZ .framer-qjud90, .framer-84EoZ .framer-186vgsr, .framer-84EoZ .framer-ftew54, .framer-84EoZ .framer-lz3tcf, .framer-84EoZ .framer-1lyqohm, .framer-84EoZ .framer-1h0l8h2, .framer-84EoZ .framer-pgq0ix, .framer-84EoZ .framer-9zlaa6 { gap: 0px; } .framer-84EoZ.framer-xq5una > *, .framer-84EoZ .framer-1ttm8ew > *, .framer-84EoZ .framer-2s9jdz > *, .framer-84EoZ .framer-1io1sgm > *, .framer-84EoZ .framer-2i2r8d > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-84EoZ.framer-xq5una > :first-child, .framer-84EoZ .framer-1ttm8ew > :first-child, .framer-84EoZ .framer-2s9jdz > :first-child, .framer-84EoZ .framer-1io1sgm > :first-child, .framer-84EoZ .framer-1bf944x > :first-child, .framer-84EoZ .framer-14rzr6f > :first-child, .framer-84EoZ .framer-2i2r8d > :first-child, .framer-84EoZ .framer-1o8yzvd > :first-child, .framer-84EoZ .framer-12nkw3f > :first-child, .framer-84EoZ .framer-1fy7n6m > :first-child, .framer-84EoZ .framer-186vgsr > :first-child, .framer-84EoZ .framer-ftew54 > :first-child, .framer-84EoZ .framer-lz3tcf > :first-child, .framer-84EoZ .framer-pgq0ix > :first-child { margin-top: 0px; } .framer-84EoZ.framer-xq5una > :last-child, .framer-84EoZ .framer-1ttm8ew > :last-child, .framer-84EoZ .framer-2s9jdz > :last-child, .framer-84EoZ .framer-1io1sgm > :last-child, .framer-84EoZ .framer-1bf944x > :last-child, .framer-84EoZ .framer-14rzr6f > :last-child, .framer-84EoZ .framer-2i2r8d > :last-child, .framer-84EoZ .framer-1o8yzvd > :last-child, .framer-84EoZ .framer-12nkw3f > :last-child, .framer-84EoZ .framer-1fy7n6m > :last-child, .framer-84EoZ .framer-186vgsr > :last-child, .framer-84EoZ .framer-ftew54 > :last-child, .framer-84EoZ .framer-lz3tcf > :last-child, .framer-84EoZ .framer-pgq0ix > :last-child { margin-bottom: 0px; } .framer-84EoZ .framer-1bf944x > * { margin: 0px; margin-bottom: calc(20px / 2); margin-top: calc(20px / 2); } .framer-84EoZ .framer-14rzr6f > *, .framer-84EoZ .framer-12nkw3f > *, .framer-84EoZ .framer-1fy7n6m > * { margin: 0px; margin-bottom: calc(12px / 2); margin-top: calc(12px / 2); } .framer-84EoZ .framer-1vaxun6 > * { margin: 0px; margin-left: calc(4px / 2); margin-right: calc(4px / 2); } .framer-84EoZ .framer-1vaxun6 > :first-child, .framer-84EoZ .framer-vrlhq9 > :first-child, .framer-84EoZ .framer-qjud90 > :first-child, .framer-84EoZ .framer-1lyqohm > :first-child, .framer-84EoZ .framer-1h0l8h2 > :first-child, .framer-84EoZ .framer-9zlaa6 > :first-child { margin-left: 0px; } .framer-84EoZ .framer-1vaxun6 > :last-child, .framer-84EoZ .framer-vrlhq9 > :last-child, .framer-84EoZ .framer-qjud90 > :last-child, .framer-84EoZ .framer-1lyqohm > :last-child, .framer-84EoZ .framer-1h0l8h2 > :last-child, .framer-84EoZ .framer-9zlaa6 > :last-child { margin-right: 0px; } .framer-84EoZ .framer-vrlhq9 > *, .framer-84EoZ .framer-qjud90 > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } .framer-84EoZ .framer-1o8yzvd > * { margin: 0px; margin-bottom: calc(48px / 2); margin-top: calc(48px / 2); } .framer-84EoZ .framer-186vgsr > * { margin: 0px; margin-bottom: calc(60px / 2); margin-top: calc(60px / 2); } .framer-84EoZ .framer-ftew54 > *, .framer-84EoZ .framer-pgq0ix > * { margin: 0px; margin-bottom: calc(30px / 2); margin-top: calc(30px / 2); } .framer-84EoZ .framer-lz3tcf > * { margin: 0px; margin-bottom: calc(16px / 2); margin-top: calc(16px / 2); } .framer-84EoZ .framer-1lyqohm > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-84EoZ .framer-1h0l8h2 > * { margin: 0px; margin-left: calc(8px / 2); margin-right: calc(8px / 2); } .framer-84EoZ .framer-9zlaa6 > * { margin: 0px; margin-left: calc(12px / 2); margin-right: calc(12px / 2); } }\",...sharedStyle.css,...sharedStyle1.css,...sharedStyle2.css,...sharedStyle3.css,...sharedStyle4.css,...sharedStyle5.css,...sharedStyle6.css,...sharedStyle7.css,'.framer-84EoZ[data-border=\"true\"]::after, .framer-84EoZ [data-border=\"true\"]::after { content: \"\"; border-width: var(--border-top-width, 0) var(--border-right-width, 0) var(--border-bottom-width, 0) var(--border-left-width, 0); border-color: var(--border-color, none); border-style: var(--border-style, none); width: 100%; height: 100%; position: absolute; box-sizing: border-box; left: 0; top: 0; border-radius: inherit; pointer-events: none; }',\"@media (min-width: 810px) and (max-width: 1439px) { .framer-84EoZ.framer-xq5una { width: 810px; } .framer-84EoZ .framer-1io1sgm { height: 567px; padding: 56px 0px 0px 0px; } .framer-84EoZ .framer-14rzr6f { max-width: 100%; min-width: 810px; padding: 0px 40px 0px 40px; } .framer-84EoZ .framer-1f6d5yh { width: 75%; } .framer-84EoZ .framer-2i2r8d { padding: 40px; } .framer-84EoZ .framer-1rv3x9f, .framer-84EoZ .framer-xlvxkf-container, .framer-84EoZ .framer-1fy7n6m, .framer-84EoZ .framer-1weog81 { width: 100%; } .framer-84EoZ .framer-1o8yzvd { padding: 64px 40px 40px 40px; } .framer-84EoZ .framer-1ekbc2p { grid-template-columns: repeat(2, minmax(200px, 1fr)); width: 100%; } .framer-84EoZ .framer-qjud90 { padding: 80px 20px 80px 20px; } .framer-84EoZ .framer-186vgsr { padding: 80px 40px 80px 40px; width: 100%; z-index: 10; } .framer-84EoZ .framer-1lyqohm { padding: 10px 34px 10px 34px; } .framer-84EoZ .framer-1816j35 { height: var(--framer-aspect-ratio-supported, 40px); width: 40px; }}\",\"@media (max-width: 809px) { .framer-84EoZ.framer-xq5una { width: 390px; } .framer-84EoZ .framer-1io1sgm { padding: 32px 16px 0px 16px; } .framer-84EoZ .framer-14rzr6f { gap: 16px; } .framer-84EoZ .framer-1f6d5yh, .framer-84EoZ .framer-1rv3x9f, .framer-84EoZ .framer-xlvxkf-container, .framer-84EoZ .framer-1fy7n6m, .framer-84EoZ .framer-1weog81 { width: 100%; } .framer-84EoZ .framer-vrlhq9 { height: 124px; } .framer-84EoZ .framer-1h7emi8 { height: 500px; left: calc(50.00000000000002% - 390px / 2); top: calc(50.05780346820812% - 500px / 2); width: 390px; } .framer-84EoZ .framer-1i82x79 { width: var(--framer-aspect-ratio-supported, 292px); } .framer-84EoZ .framer-1wdmfx0 { width: var(--framer-aspect-ratio-supported, 309px); } .framer-84EoZ .framer-2i2r8d { padding: 16px; } .framer-84EoZ .framer-1o8yzvd { gap: 40px; padding: 56px 16px 40px 16px; } .framer-84EoZ .framer-12nkw3f { padding: 0px; } .framer-84EoZ .framer-1ekbc2p { grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); width: 100%; } .framer-84EoZ .framer-qjud90 { flex-direction: column; padding: 60px 20px 60px 20px; } .framer-84EoZ .framer-186vgsr { border-bottom-left-radius: 20px; border-bottom-right-radius: 20px; border-top-left-radius: 20px; border-top-right-radius: 20px; } .framer-84EoZ .framer-9zlaa6 { align-content: center; align-items: center; flex-direction: column; flex-wrap: wrap; gap: 24px; width: 0px; } .framer-84EoZ .framer-1iiu2lr-container { flex: none; order: 0; width: 330px; } .framer-84EoZ .framer-1msqnka-container { flex: none; order: 1; width: 330px; } .framer-84EoZ .framer-17i7ypk-container { flex: none; order: 2; width: 330px; } .framer-84EoZ .framer-1jrqred { --border-bottom-width: unset; --border-left-width: unset; --border-right-width: unset; --border-top-width: unset; width: 330px; } .framer-84EoZ .framer-1voup6z { order: 0; } .framer-84EoZ .framer-kriyh3 { order: 2; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-84EoZ .framer-14rzr6f, .framer-84EoZ .framer-1o8yzvd, .framer-84EoZ .framer-qjud90, .framer-84EoZ .framer-9zlaa6 { gap: 0px; } .framer-84EoZ .framer-14rzr6f > * { margin: 0px; margin-bottom: calc(16px / 2); margin-top: calc(16px / 2); } .framer-84EoZ .framer-14rzr6f > :first-child, .framer-84EoZ .framer-1o8yzvd > :first-child, .framer-84EoZ .framer-qjud90 > :first-child, .framer-84EoZ .framer-9zlaa6 > :first-child { margin-top: 0px; } .framer-84EoZ .framer-14rzr6f > :last-child, .framer-84EoZ .framer-1o8yzvd > :last-child, .framer-84EoZ .framer-qjud90 > :last-child, .framer-84EoZ .framer-9zlaa6 > :last-child { margin-bottom: 0px; } .framer-84EoZ .framer-1o8yzvd > * { margin: 0px; margin-bottom: calc(40px / 2); margin-top: calc(40px / 2); } .framer-84EoZ .framer-qjud90 > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-84EoZ .framer-9zlaa6 > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } }}\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 2960\n * @framerIntrinsicWidth 1440\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"NvVjqZKLE\":{\"layout\":[\"fixed\",\"auto\"]},\"OOOtQ_ZJG\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n * @framerAcceptsLayoutTemplate true\n * @framerScrollSections {\"O_DMaG1Mn\":{\"pattern\":\":O_DMaG1Mn\",\"name\":\"cta14\"}}\n * @framerResponsiveScreen\n */const FramerYf7zyWye0=withCSS(Component,css,\"framer-84EoZ\");export default FramerYf7zyWye0;FramerYf7zyWye0.displayName=\"Backup4\";FramerYf7zyWye0.defaultProps={height:2960,width:1440};addFonts(FramerYf7zyWye0,[{explicitInter:true,fonts:[{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/5vvr9Vy74if2I6bQbJvbw7SY1pQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/EOr0mi4hNtlgWNn9if640EZzXCo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Y9k9QrlZAqio88Klkmbd8VoMQc.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/OYrD2tBIBPvoJXiIHnLoOXnY9M.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/JeYwfuaPfZHQhEG8U5gtPDZ7WQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/vQyevYAyHtARFwPqUzQGpnDs.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/b6Y37FthZeALduNqHicBT6FutY.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/DpPBYI0sL4fYLgAkX8KXOPVt7c.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/4RAEQdEOrcnDkhHiiCbJOw92Lk.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/1K3W8DizY3v4emK8Mb08YHxTbs.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/tUSCtfYVM1I1IchuyCwz9gDdQ.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/VgYFWiwsAC5OYxAycRXXvhze58.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/DXD0Q7LSl7HEvDzucnyLnGBHM.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/GIryZETIX4IFypco5pYZONKhJIo.woff2\",weight:\"700\"},{family:\"Manrope\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/manrope/v15/xn7_YHE41ni1AdIRqAuZuw1Bx9mbZk7PFO_A87jxeN7B.woff2\",weight:\"500\"}]},...NavBarFonts,...ButtonFonts,...TickerFonts,...FeaturesCardFonts,...CTAFonts,...ButtonsIconButtonFonts,...ButtonsFooterBigButtonFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts),...getFontsFromSharedStyle(sharedStyle2.fonts),...getFontsFromSharedStyle(sharedStyle3.fonts),...getFontsFromSharedStyle(sharedStyle4.fonts),...getFontsFromSharedStyle(sharedStyle5.fonts),...getFontsFromSharedStyle(sharedStyle6.fonts),...getFontsFromSharedStyle(sharedStyle7.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerYf7zyWye0\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\",\"framerComponentViewportWidth\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"NvVjqZKLE\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"OOOtQ_ZJG\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerIntrinsicWidth\":\"1440\",\"framerIntrinsicHeight\":\"2960\",\"framerScrollSections\":\"{\\\"O_DMaG1Mn\\\":{\\\"pattern\\\":\\\":O_DMaG1Mn\\\",\\\"name\\\":\\\"cta14\\\"}}\",\"framerAcceptsLayoutTemplate\":\"true\",\"framerResponsiveScreen\":\"\",\"framerDisplayContentsDiv\":\"false\",\"framerImmutableVariables\":\"true\"}},\"__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", "filteredSlots", "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", "fontStore", "fonts", "css", "className", "RichTextWithFXWithOptimizedAppearEffect", "withOptimizedAppearEffect", "withFX", "RichText2", "ButtonFonts", "getFonts", "XQYIUjp_n_default", "MotionDivWithFXWithOptimizedAppearEffect", "motion", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "transition2", "animation", "animation1", "transition3", "animation2", "transition4", "animation3", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "x", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "scopingClassNames", "cx", "router", "useRouter", "isDisplayed", "LayoutGroup", "u", "ResolveLinks", "resolvedLinks", "ComponentViewportProvider", "SmartComponentScopedContainer", "css", "FramerUAbomaNAP", "withCSS", "UAbomaNAP_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts", "fontStore", "fonts", "css", "className", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "toResponsiveImage", "value", "Transition", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "description", "height", "id", "image", "title", "width", "props", "_ref", "_ref1", "_humanReadableVariantMap_props_variant", "_ref2", "_ref3", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "XLmOkZ8AL", "oOZeIwFEe", "beOEtyEXt", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "u", "cx", "Image2", "getLoadingLazyAtYPosition", "RichText2", "css", "Framerz9Pa7seOd", "withCSS", "z9Pa7seOd_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts", "fontStore", "fonts", "css", "className", "fontStore", "fonts", "css", "className", "fontStore", "fonts", "css", "className", "fontStore", "fonts", "css", "className", "NavBarFonts", "getFonts", "G1U9qbkD3_default", "MotionDivWithFX", "withFX", "motion", "RichTextWithFX", "RichText2", "ButtonFonts", "XQYIUjp_n_default", "ContainerWithFX", "Container", "TickerFonts", "Ticker", "FeaturesCardFonts", "z9Pa7seOd_default", "CTAFonts", "UAbomaNAP_default", "ButtonsIconButtonFonts", "oHvDnt_t_default", "ButtonsFooterBigButtonFonts", "m9USNFl29_default", "MotionDivWithOptimizedAppearEffect", "withOptimizedAppearEffect", "breakpoints", "isBrowser", "serializationHash", "variantClassNames", "animation", "transition1", "animation1", "transition2", "animation2", "transition3", "animation3", "transition4", "animation4", "transition5", "animation5", "transition6", "animation6", "animation7", "animation8", "transition7", "animation9", "addImageAlt", "image", "alt", "animation10", "transition8", "transition9", "transition10", "animation11", "transition11", "transition12", "transition13", "animation12", "animation13", "HTMLStyle", "value", "useIsOnFramerCanvas", "p", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "variant", "restProps", "ue", "metadata", "robotsTag", "ie", "baseVariant", "hydratedBaseVariant", "useHydratedBreakpointVariants", "gestureVariant", "scopingClassNames", "cx", "router", "useRouter", "isDisplayed", "elementId", "useRouteElementId", "ref1", "isDisplayed1", "useCustomCursors", "GeneratedComponentContext", "u", "LayoutGroup", "ComponentViewportProvider", "PropertyOverrides2", "getLoadingLazyAtYPosition", "Image2", "x", "ResolveLinks", "resolvedLinks", "resolvedLinks1", "css", "FramerYf7zyWye0", "withCSS", "Yf7zyWye0_default", "addFonts", "getFontsFromSharedStyle", "fonts", "__FramerMetadata__"]
}
